diff --git a/.Rbuildignore b/.Rbuildignore index 56e92c7..f1a18aa 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -6,3 +6,4 @@ ^data_raw$ ^LICENSE\.md$ ^CRAN-RELEASE$ +^CRAN-SUBMISSION$ diff --git a/CRAN-SUBMISSION b/CRAN-SUBMISSION new file mode 100644 index 0000000..7e18e94 --- /dev/null +++ b/CRAN-SUBMISSION @@ -0,0 +1,3 @@ +Version: 0.1.2 +Date: 2023-04-16 06:30:52 UTC +SHA: efb45230dddbd71b96c33b71c990eb6976f18b7f diff --git a/DESCRIPTION b/DESCRIPTION index c2967fb..b555d4b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: USgas Type: Package Title: The Demand for Natural Gas in the US -Version: 0.1.1 +Version: 0.1.2 Authors@R: person(given = "Rami", family ="Krispin", email = "rami.krispin@gmail.com", @@ -13,10 +13,11 @@ Encoding: UTF-8 LazyData: true Depends: R (>= 2.10) -RoxygenNote: 7.1.1 +RoxygenNote: 7.2.1 URL: https://github.com/RamiKrispin/USgas BugReports: https://github.com/RamiKrispin/USgas/issues Suggests: knitr, - rmarkdown + rmarkdown, + plotly VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 6e4b7c7..e66d4a5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +# USgas 0.1.2 + +* Add new dataset `usgas`, describing the US monthly natural gas consumption by end-use on the state and US aggregate level +* Deprecating the previous package datasets - `us_residential`, `us_total`, and `us_total`, as they can be generated by the `usgas` dataset + # USgas 0.1.1 * Fixing CRAN errors - removing the `digits` argument from the `format` function diff --git a/R/usgas.R b/R/usgas.R new file mode 100644 index 0000000..c10deda --- /dev/null +++ b/R/usgas.R @@ -0,0 +1,72 @@ +#' US Monthly Consumption of Natural Gas by End Use +#' @description The US monthly consumption of natural gas by end-use and state between 1973 (US aggregate, state level since 1989) and 2022. +#' +#' Units: Million Cubic Feet +#' +#' +#' @format A data.frame with 6 variables. +#' \describe{ +#' \item{date}{A Date, the month and year of the observation (the day set by default to 1st of the month)} +#' \item{process}{The process type description} +#' \item{state}{The US state name} +#' \item{state_abb}{the US state abbreviation} +#' \item{y}{A numeric, the monthly natural gas residential consumption in a million cubic feet} +#' } +#' @source US Energy Information Administration (EIA) \href{https://www.eia.gov/}{website}. +#' @keywords datasets timeseries natural gas us state +#' @details The dataset contains monthly summary of the consumption of natural gas +#' by end-use in the US by state and total aggregate level. The data is available +#' for the state level between January 1989 and December 2022, and for the US level +#' between January 1973 and Dec 2022. It includes the following end-use categories: +#' +#' - Commercial Consumption +#' - Delivered to Consumers +#' - Electric Power Consumption +#' - Industrial Consumption +#' - Lease and Plant Fuel Consumption +#' - Pipeline Fuel Consumption +#' - Residential Consumption +#' - Vehicle Fuel Consumption +#' +#' @examples +#' +#' library(plotly) +#' +#' data("usgas") +#' +#' head(usgas) +#' +#' # Plot the US consumption +#' +#' us_df <- usgas[which(usgas$state == "U.S."), ] +#' +#' plot_ly(data = us_df, +#' x = ~ date, +#' y = ~ y, +#' color = ~ process, +#' type = "scatter", +#' mode = "line") |> +#' layout(title = "US Monthly Consumption by End Use", +#' yaxis = list(title = "MMCF"), +#' xaxis = list(title = "Source: EIA Website"), +#' legend = list(x = 0, y = 1.05), +#' margin = list(l = 50, r = 50, b = 70, t = 60)) +#' +#' +#' # Plot the California consumption +#' +#' ca_df <- usgas[which(usgas$state == "California"), ] +#' +#' plot_ly(data = ca_df, +#' x = ~ date, +#' y = ~ y, +#' color = ~ process, +#' type = "scatter", +#' mode = "line") |> +#' layout(title = "California Monthly Consumption by End Use", +#' yaxis = list(title = "MMCF"), +#' xaxis = list(title = "Source: EIA Website"), +#' legend = list(x = 0, y = 1.05), +#' margin = list(l = 50, r = 50, b = 70, t = 60)) +#' +"usgas" diff --git a/README.Rmd b/README.Rmd index 690a436..9220c66 100644 --- a/README.Rmd +++ b/README.Rmd @@ -17,16 +17,31 @@ knitr::opts_chunk$set( # USgas -[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/USgas)](https://cran.r-project.org/package=USgas) [![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![GitHub commit](https://img.shields.io/github/last-commit/RamiKrispin/USgas)](https://github.com/RamiKrispin/USgas/commit/main) +[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/USgas)](https://cran.r-project.org/package=USgas) [![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/license/mit/) [![GitHub commit](https://img.shields.io/github/last-commit/RamiKrispin/USgas)](https://github.com/RamiKrispin/USgas/commit/main) -The **USgas** package provides an overview of demand for natural gas in the US in a time-series format. That includes the following datasets: +The **USgas** package provides an overview of demand for natural gas in the US in a time-series format. That includes the following dataset: + +* `usgas` - The monthly consumption of natural gas in the US/state level by end-use since 1973 for US level and 1989 for state level. It includes the following end-use categories: + + - Commercial Consumption + - Delivered to Consumers + - Electric Power Consumption + - Industrial Consumption + - Lease and Plant Fuel Consumption + - Pipeline Fuel Consumption + - Residential Consumption + - Vehicle Fuel Consumption + +The package also includes the following datasets, from previous release: * `us_total` - The US annual natural gas consumption by state-level between 1997 and 2019, and aggregate level between 1949 and 2019 * `us_monthly` - The monthly demand for natural gas in the US between 2001 and 2020 * `us_residential` - The US monthly natural gas residential consumption by state and aggregate level between 1989 and 2020 +The `us_total`, `us_monthly`, and `us_residential` can be derived out of the `usgas` dataset. Therefore, those datasets in the process of deprication and will be removed in the next release to CRAN. + Data source: The US Energy Information Administration [API](https://www.eia.gov/) More information about the package datasets available on this [vignette](https://ramikrispin.github.io/USgas/articles/introduction.html). @@ -47,106 +62,87 @@ devtools::install_github("RamiKrispin/USgas") ``` ## Example -Plotting the consumption of natural gas in New England states: +Let's load the data: ```{r} -data(us_total) +data("usgas") -str(us_total) +head(usgas) -head(us_total) +str(usgas) ``` -Subsetting the New England states: +Plotting the residential consumption of natural gas in the US: +``` r +library(plotly) + +us_res <- usgas[which(usgas$state == "U.S." & usgas$process == "Residential Consumption"), ] + +plot_ly(data = us_res, + x = ~ date, + y = ~ y, + type = "scatter", + mode = "line") |> + layout(title = "US Monthly Residential Consumption", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA API")) +``` -```{r} -ne <- c("Connecticut", "Maine", "Massachusetts", - "New Hampshire", "Rhode Island", "Vermont") -ne_gas <- us_total[which(us_total$state %in% ne),] +```{r, include = FALSE} +library(plotly) + +us_res <- usgas[which(usgas$state == "U.S." & usgas$process == "Residential Consumption"), ] + +p1 <- plot_ly(data = us_res, + x = ~ date, + y = ~ y, + type = "scatter", + mode = "line") |> + layout(title = "US Monthly Natural Gas Consumption by Residential Consumers", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA API")) +orca(p1, "man/figures/us_res.svg") +``` -ne_wide <- reshape(ne_gas, v.names = "y", idvar = "year", - timevar = "state", direction = "wide") -ne_wide <- ne_wide[order(ne_wide$year), ] + -names(ne_wide) <- c("year",ne) -head(ne_wide) -``` -Plotting the states series: +Plotting the total monthly natural gas delivered in the New England states: -```{r} -# Set the y and x axis ticks -at_x <- seq(from = 2000, to = 2020, by = 5) - -at_y <- pretty(ne_gas$y)[c(2, 4, 6)] - -# plot the first series -plot(ne_wide$year, ne_wide$Connecticut, - type = "l", - col = "#073b4c", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = c(at_y), col = "grey80"), - main = "New England Annual Natural Gas Consumption by State", - cex.main = 1.2, font.main = 1, col.main = "black", - xlab = "Source: https://www.eia.gov/", - font.axis = 1, cex.lab= 1, - ylab = "Million Cubic Feet", - ylim = c(min(ne_gas$y, na.rm = TRUE), max(ne_gas$y, na.rm = TRUE)), - xlim = c(min(ne_gas$year), max(ne_gas$year) + 3)) - -# Add the 5 other series -lines(ne_wide$year, ne_wide$Maine, col = "#1f77b4") -lines(ne_wide$year, ne_wide$Massachusetts, col = "#118ab2") -lines(ne_wide$year, ne_wide$`New Hampshire`, col = "#06d6a0") -lines(ne_wide$year, ne_wide$`Rhode Island`, col = "#ffd166") -lines(ne_wide$year, ne_wide$Vermont, col = "#ef476f") - -# Add the y and x axis ticks - -mtext(side =1, text = format(at_x, nsmall=0), at = at_x, - col = "grey20", line = 1, cex = 0.8) - -mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) - -# Add text -text(max(ne_wide$year) + 2, - tail(ne_wide$Connecticut,1), - "Connecticut", - col = "#073b4c", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Maine,1) * 0.95, - "Maine", - col = "#1f77b4", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Massachusetts,1), - "Massachusetts", - col = "#118ab2", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$`New Hampshire`,1) * 1.1, - "New Hampshire", - col = "#06d6a0", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$`Rhode Island`,1) * 1.05, - "Rhode Island", - col = "#ffd166", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Vermont,1), - "Vermont", - col = "#ef476f", - cex = 0.7) +```r +ne <- c("Connecticut", "Maine", "Massachusetts", + "New Hampshire", "Rhode Island", "Vermont") +ne_gas <- usgas[which(usgas$state %in% ne & usgas$process == "Delivered to Consumers"),] + +plot_ly(data = ne_gas, + x = ~ date, + y = ~ y, + color = ~ state, + type = "scatter", + mode = "line") |> + layout(title = "Total Natrual Gas Delivered to Consumers in New England States", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA API")) +``` + +```{r , include = FALSE} +ne <- c("Connecticut", "Maine", "Massachusetts", + "New Hampshire", "Rhode Island", "Vermont") +ne_gas <- usgas[which(usgas$state %in% ne & usgas$process == "Delivered to Consumers"),] + +p2 <- plot_ly(data = ne_gas, + x = ~ date, + y = ~ y, + color = ~ state, + type = "scatter", + mode = "line") |> + layout(title = "Total Natrual Gas Delivered to Consumers in New England States", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA API")) + +orca(p2, "man/figures/new_england.svg") ``` + diff --git a/README.md b/README.md index b4786c4..4537b82 100644 --- a/README.md +++ b/README.md @@ -5,24 +5,43 @@ -[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/USgas)](https://cran.r-project.org/package=USgas) +[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/USgas)](https://cran.r-project.org/package=USgas) [![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html) [![License: -MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) +MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/license/mit/) [![GitHub commit](https://img.shields.io/github/last-commit/RamiKrispin/USgas)](https://github.com/RamiKrispin/USgas/commit/main) The **USgas** package provides an overview of demand for natural gas in -the US in a time-series format. That includes the following datasets: - -- `us_total` - The US annual natural gas consumption by state-level - between 1997 and 2019, and aggregate level between 1949 and 2019 -- `us_monthly` - The monthly demand for natural gas in the US between - 2001 and 2020 -- `us_residential` - The US monthly natural gas residential - consumption by state and aggregate level between 1989 and 2020 +the US in a time-series format. That includes the following dataset: + +- `usgas` - The monthly consumption of natural gas in the US/state level + by end-use since 1973 for US level and 1989 for state level. It + includes the following end-use categories: + + - Commercial Consumption + - Delivered to Consumers + - Electric Power Consumption + - Industrial Consumption + - Lease and Plant Fuel Consumption + - Pipeline Fuel Consumption + - Residential Consumption + - Vehicle Fuel Consumption + +The package also includes the following datasets, from previous release: + +- `us_total` - The US annual natural gas consumption by state-level + between 1997 and 2019, and aggregate level between 1949 and 2019 +- `us_monthly` - The monthly demand for natural gas in the US between + 2001 and 2020 +- `us_residential` - The US monthly natural gas residential consumption + by state and aggregate level between 1989 and 2020 + +The `us_total`, `us_monthly`, and `us_residential` can be derived out of +the `usgas` dataset. Therefore, those datasets in the process of +deprication and will be removed in the next release to CRAN. Data source: The US Energy Information Administration [API](https://www.eia.gov/) @@ -48,124 +67,68 @@ devtools::install_github("RamiKrispin/USgas") ## Example -Plotting the consumption of natural gas in New England states: +Let’s load the data: ``` r -data(us_total) - -str(us_total) -#> 'data.frame': 1266 obs. of 3 variables: -#> $ year : int 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 ... -#> $ state: chr "Alabama" "Alabama" "Alabama" "Alabama" ... -#> $ y : int 324158 329134 337270 353614 332693 379343 350345 382367 353156 391093 ... - -head(us_total) -#> year state y -#> 1 1997 Alabama 324158 -#> 2 1998 Alabama 329134 -#> 3 1999 Alabama 337270 -#> 4 2000 Alabama 353614 -#> 5 2001 Alabama 332693 -#> 6 2002 Alabama 379343 +data("usgas") + +head(usgas) +#> date process state state_abb y +#> 1 1973-01-01 Commercial Consumption U.S. U.S. 392315 +#> 2 1973-01-01 Residential Consumption U.S. U.S. 843900 +#> 3 1973-02-01 Commercial Consumption U.S. U.S. 394281 +#> 4 1973-02-01 Residential Consumption U.S. U.S. 747331 +#> 5 1973-03-01 Commercial Consumption U.S. U.S. 310799 +#> 6 1973-03-01 Residential Consumption U.S. U.S. 648504 + +str(usgas) +#> 'data.frame': 92783 obs. of 5 variables: +#> $ date : Date, format: "1973-01-01" "1973-01-01" ... +#> $ process : chr "Commercial Consumption" "Residential Consumption" "Commercial Consumption" "Residential Consumption" ... +#> $ state : chr "U.S." "U.S." "U.S." "U.S." ... +#> $ state_abb: chr "U.S." "U.S." "U.S." "U.S." ... +#> $ y : int 392315 843900 394281 747331 310799 648504 231943 465867 174258 326313 ... +#> - attr(*, "units")= chr "MMCF" +#> - attr(*, "product_name")= chr "Natural Gas" +#> - attr(*, "source")= chr "EIA API: https://www.eia.gov/opendata/browser/natural-gas" ``` -Subsetting the New England states: +Plotting the residential consumption of natural gas in the US: ``` r -ne <- c("Connecticut", "Maine", "Massachusetts", - "New Hampshire", "Rhode Island", "Vermont") -ne_gas <- us_total[which(us_total$state %in% ne),] - -ne_wide <- reshape(ne_gas, v.names = "y", idvar = "year", - timevar = "state", direction = "wide") -ne_wide <- ne_wide[order(ne_wide$year), ] - -names(ne_wide) <- c("year",ne) - -head(ne_wide) -#> year Connecticut Maine Massachusetts New Hampshire Rhode Island Vermont -#> 139 1997 144708 6290 402629 20848 117707 8061 -#> 140 1998 131497 5716 358846 19127 130751 7735 -#> 141 1999 152237 6572 344790 20313 118001 8033 -#> 142 2000 159712 44779 343314 24950 88419 10426 -#> 143 2001 146278 95733 349103 23398 95607 7919 -#> 144 2002 177587 101536 393194 24901 87805 8367 +library(plotly) + +us_res <- usgas[which(usgas$state == "U.S." & usgas$process == "Residential Consumption"), ] + +plot_ly(data = us_res, + x = ~ date, + y = ~ y, + type = "scatter", + mode = "line") |> + layout(title = "US Monthly Residential Consumption", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA API")) ``` -Plotting the states series: + + +Plotting the total monthly natural gas delivered in the New England +states: ``` r -# Set the y and x axis ticks -at_x <- seq(from = 2000, to = 2020, by = 5) - -at_y <- pretty(ne_gas$y)[c(2, 4, 6)] - -# plot the first series -plot(ne_wide$year, ne_wide$Connecticut, - type = "l", - col = "#073b4c", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = c(at_y), col = "grey80"), - main = "New England Annual Natural Gas Consumption by State", - cex.main = 1.2, font.main = 1, col.main = "black", - xlab = "Source: https://www.eia.gov/", - font.axis = 1, cex.lab= 1, - ylab = "Million Cubic Feet", - ylim = c(min(ne_gas$y, na.rm = TRUE), max(ne_gas$y, na.rm = TRUE)), - xlim = c(min(ne_gas$year), max(ne_gas$year) + 3)) - -# Add the 5 other series -lines(ne_wide$year, ne_wide$Maine, col = "#1f77b4") -lines(ne_wide$year, ne_wide$Massachusetts, col = "#118ab2") -lines(ne_wide$year, ne_wide$`New Hampshire`, col = "#06d6a0") -lines(ne_wide$year, ne_wide$`Rhode Island`, col = "#ffd166") -lines(ne_wide$year, ne_wide$Vermont, col = "#ef476f") - -# Add the y and x axis ticks - -mtext(side =1, text = format(at_x, nsmall=0), at = at_x, - col = "grey20", line = 1, cex = 0.8) - -mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) - -# Add text -text(max(ne_wide$year) + 2, - tail(ne_wide$Connecticut,1), - "Connecticut", - col = "#073b4c", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Maine,1) * 0.95, - "Maine", - col = "#1f77b4", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Massachusetts,1), - "Massachusetts", - col = "#118ab2", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$`New Hampshire`,1) * 1.1, - "New Hampshire", - col = "#06d6a0", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$`Rhode Island`,1) * 1.05, - "Rhode Island", - col = "#ffd166", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Vermont,1), - "Vermont", - col = "#ef476f", - cex = 0.7) +ne <- c("Connecticut", "Maine", "Massachusetts", + "New Hampshire", "Rhode Island", "Vermont") +ne_gas <- usgas[which(usgas$state %in% ne & usgas$process == "Delivered to Consumers"),] + +plot_ly(data = ne_gas, + x = ~ date, + y = ~ y, + color = ~ state, + type = "scatter", + mode = "line") |> + layout(title = "Total Natrual Gas Delivered to Consumers in New England States", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA API")) ``` - + diff --git a/csv/us_residential.csv b/csv/us_residential.csv index 941da9c..5f63be4 100644 --- a/csv/us_residential.csv +++ b/csv/us_residential.csv @@ -1,20265 +1,21461 @@ "date","state","y" -1989-01-01,"Alabama",7406 -1989-02-01,"Alabama",7044 -1989-03-01,"Alabama",7392 -1989-04-01,"Alabama",4722 -1989-05-01,"Alabama",2856 -1989-06-01,"Alabama",1709 -1989-07-01,"Alabama",1457 -1989-08-01,"Alabama",1383 -1989-09-01,"Alabama",1404 -1989-10-01,"Alabama",1862 -1989-11-01,"Alabama",3646 -1989-12-01,"Alabama",7240 -1990-01-01,"Alabama",10893 -1990-02-01,"Alabama",6493 -1990-03-01,"Alabama",5254 -1990-04-01,"Alabama",4143 -1990-05-01,"Alabama",2657 -1990-06-01,"Alabama",1625 -1990-07-01,"Alabama",1411 -1990-08-01,"Alabama",1334 -1990-09-01,"Alabama",1356 -1990-10-01,"Alabama",1529 -1990-11-01,"Alabama",3360 -1990-12-01,"Alabama",5355 -1991-01-01,"Alabama",7299 -1991-02-01,"Alabama",8327 -1991-03-01,"Alabama",6724 -1991-04-01,"Alabama",3891 -1991-05-01,"Alabama",2059 -1991-06-01,"Alabama",1583 -1991-07-01,"Alabama",1434 -1991-08-01,"Alabama",1368 -1991-09-01,"Alabama",1389 -1991-10-01,"Alabama",1793 -1991-11-01,"Alabama",3886 -1991-12-01,"Alabama",6396 -1992-01-01,"Alabama",8777 -1992-02-01,"Alabama",9267 -1992-03-01,"Alabama",5605 -1992-04-01,"Alabama",5012 -1992-05-01,"Alabama",2714 -1992-06-01,"Alabama",1772 -1992-07-01,"Alabama",1423 -1992-08-01,"Alabama",1311 -1992-09-01,"Alabama",1373 -1992-10-01,"Alabama",1728 -1992-11-01,"Alabama",3402 -1992-12-01,"Alabama",7261 -1993-01-01,"Alabama",8110 -1993-02-01,"Alabama",8189 -1993-03-01,"Alabama",8716 -1993-04-01,"Alabama",5668 -1993-05-01,"Alabama",2848 -1993-06-01,"Alabama",1641 -1993-07-01,"Alabama",1430 -1993-08-01,"Alabama",1328 -1993-09-01,"Alabama",1330 -1993-10-01,"Alabama",1526 -1993-11-01,"Alabama",3853 -1993-12-01,"Alabama",6727 -1994-01-01,"Alabama",10714 -1994-02-01,"Alabama",10653 -1994-03-01,"Alabama",6935 -1994-04-01,"Alabama",4557 -1994-05-01,"Alabama",2208 -1994-06-01,"Alabama",1542 -1994-07-01,"Alabama",1361 -1994-08-01,"Alabama",1323 -1994-09-01,"Alabama",1325 -1994-10-01,"Alabama",1495 -1994-11-01,"Alabama",2602 -1994-12-01,"Alabama",5034 -1995-01-01,"Alabama",8338 -1995-02-01,"Alabama",9200 -1995-03-01,"Alabama",7586 -1995-04-01,"Alabama",3692 -1995-05-01,"Alabama",2206 -1995-06-01,"Alabama",1565 -1995-07-01,"Alabama",1401 -1995-08-01,"Alabama",1299 -1995-09-01,"Alabama",1279 -1995-10-01,"Alabama",1542 -1995-11-01,"Alabama",3902 -1995-12-01,"Alabama",7563 -1996-01-01,"Alabama",10893 -1996-02-01,"Alabama",11222 -1996-03-01,"Alabama",8051 -1996-04-01,"Alabama",6321 -1996-05-01,"Alabama",2948 -1996-06-01,"Alabama",1472 -1996-07-01,"Alabama",1295 -1996-08-01,"Alabama",1227 -1996-09-01,"Alabama",1321 -1996-10-01,"Alabama",1647 -1996-11-01,"Alabama",3461 -1996-12-01,"Alabama",6664 -1997-01-01,"Alabama",9322 -1997-02-01,"Alabama",9129 -1997-03-01,"Alabama",5344 -1997-04-01,"Alabama",3191 -1997-05-01,"Alabama",2648 -1997-06-01,"Alabama",1609 -1997-07-01,"Alabama",1397 -1997-08-01,"Alabama",1242 -1997-09-01,"Alabama",1254 -1997-10-01,"Alabama",1440 -1997-11-01,"Alabama",3977 -1997-12-01,"Alabama",7942 -1998-01-01,"Alabama",9683 -1998-02-01,"Alabama",9216 -1998-03-01,"Alabama",7486 -1998-04-01,"Alabama",4584 -1998-05-01,"Alabama",2354 -1998-06-01,"Alabama",1394 -1998-07-01,"Alabama",1212 -1998-08-01,"Alabama",1183 -1998-09-01,"Alabama",1196 -1998-10-01,"Alabama",1320 -1998-11-01,"Alabama",2468 -1998-12-01,"Alabama",4447 -1999-01-01,"Alabama",9018 -1999-02-01,"Alabama",6161 -1999-03-01,"Alabama",6393 -1999-04-01,"Alabama",3892 -1999-05-01,"Alabama",1873 -1999-06-01,"Alabama",1357 -1999-07-01,"Alabama",1259 -1999-08-01,"Alabama",1126 -1999-09-01,"Alabama",1185 -1999-10-01,"Alabama",1560 -1999-11-01,"Alabama",3069 -1999-12-01,"Alabama",5754 -2000-01-01,"Alabama",8671 -2000-02-01,"Alabama",9716 -2000-03-01,"Alabama",4805 -2000-04-01,"Alabama",3471 -2000-05-01,"Alabama",2320 -2000-06-01,"Alabama",1383 -2000-07-01,"Alabama",1247 -2000-08-01,"Alabama",1175 -2000-09-01,"Alabama",1202 -2000-10-01,"Alabama",1761 -2000-11-01,"Alabama",3005 -2000-12-01,"Alabama",8686 -2001-01-01,"Alabama",13490 -2001-02-01,"Alabama",8987 -2001-03-01,"Alabama",5867 -2001-04-01,"Alabama",4787 -2001-05-01,"Alabama",1968 -2001-06-01,"Alabama",1348 -2001-07-01,"Alabama",1194 -2001-08-01,"Alabama",1185 -2001-09-01,"Alabama",1164 -2001-10-01,"Alabama",1706 -2001-11-01,"Alabama",3075 -2001-12-01,"Alabama",4470 -2002-01-01,"Alabama",9350 -2002-02-01,"Alabama",7981 -2002-03-01,"Alabama",7349 -2002-04-01,"Alabama",3484 -2002-05-01,"Alabama",1688 -2002-06-01,"Alabama",1446 -2002-07-01,"Alabama",1150 -2002-08-01,"Alabama",1122 -2002-09-01,"Alabama",1130 -2002-10-01,"Alabama",1225 -2002-11-01,"Alabama",2890 -2002-12-01,"Alabama",7667 -2003-01-01,"Alabama",10529 -2003-02-01,"Alabama",10219 -2003-03-01,"Alabama",6038 -2003-04-01,"Alabama",3253 -2003-05-01,"Alabama",1909 -2003-06-01,"Alabama",1317 -2003-07-01,"Alabama",1169 -2003-08-01,"Alabama",1123 -2003-09-01,"Alabama",1116 -2003-10-01,"Alabama",1452 -2003-11-01,"Alabama",2159 -2003-12-01,"Alabama",6288 -2004-01-01,"Alabama",10044 -2004-02-01,"Alabama",9400 -2004-03-01,"Alabama",6062 -2004-04-01,"Alabama",3296 -2004-05-01,"Alabama",1960 -2004-06-01,"Alabama",1216 -2004-07-01,"Alabama",1138 -2004-08-01,"Alabama",1072 -2004-09-01,"Alabama",1124 -2004-10-01,"Alabama",1241 -2004-11-01,"Alabama",1887 -2004-12-01,"Alabama",5420 -2005-01-01,"Alabama",8212 -2005-02-01,"Alabama",7670 -2005-03-01,"Alabama",5914 -2005-04-01,"Alabama",3600 -2005-05-01,"Alabama",2028 -2005-06-01,"Alabama",1313 -2005-07-01,"Alabama",1120 -2005-08-01,"Alabama",1048 -2005-09-01,"Alabama",1056 -2005-10-01,"Alabama",1137 -2005-11-01,"Alabama",2641 -2005-12-01,"Alabama",6318 -2006-01-01,"Alabama",7838 -2006-02-01,"Alabama",6402 -2006-03-01,"Alabama",5337 -2006-04-01,"Alabama",3006 -2006-05-01,"Alabama",1337 -2006-06-01,"Alabama",1147 -2006-07-01,"Alabama",986 -2006-08-01,"Alabama",908 -2006-09-01,"Alabama",913 -2006-10-01,"Alabama",1223 -2006-11-01,"Alabama",3228 -2006-12-01,"Alabama",5806 -2007-01-01,"Alabama",6088 -2007-02-01,"Alabama",8118 -2007-03-01,"Alabama",5368 -2007-04-01,"Alabama",2562 -2007-05-01,"Alabama",1811 -2007-06-01,"Alabama",1083 -2007-07-01,"Alabama",935 -2007-08-01,"Alabama",876 -2007-09-01,"Alabama",883 -2007-10-01,"Alabama",990 -2007-11-01,"Alabama",2242 -2007-12-01,"Alabama",4525 -2008-01-01,"Alabama",7055 -2008-02-01,"Alabama",7381 -2008-03-01,"Alabama",5324 -2008-04-01,"Alabama",2862 -2008-05-01,"Alabama",1565 -2008-06-01,"Alabama",1045 -2008-07-01,"Alabama",911 -2008-08-01,"Alabama",859 -2008-09-01,"Alabama",893 -2008-10-01,"Alabama",1044 -2008-11-01,"Alabama",2606 -2008-12-01,"Alabama",6249 -2009-01-01,"Alabama",6875 -2009-02-01,"Alabama",7273 -2009-03-01,"Alabama",5135 -2009-04-01,"Alabama",2609 -2009-05-01,"Alabama",1556 -2009-06-01,"Alabama",1027 -2009-07-01,"Alabama",875 -2009-08-01,"Alabama",824 -2009-09-01,"Alabama",853 -2009-10-01,"Alabama",1182 -2009-11-01,"Alabama",2438 -2009-12-01,"Alabama",5413 -2010-01-01,"Alabama",9203 -2010-02-01,"Alabama",7762 -2010-03-01,"Alabama",6612 -2010-04-01,"Alabama",2987 -2010-05-01,"Alabama",1143 -2010-06-01,"Alabama",842 -2010-07-01,"Alabama",733 -2010-08-01,"Alabama",708 -2010-09-01,"Alabama",658 -2010-10-01,"Alabama",839 -2010-11-01,"Alabama",2757 -2010-12-01,"Alabama",7970 -2011-01-01,"Alabama",9951 -2011-02-01,"Alabama",6315 -2011-03-01,"Alabama",3513 -2011-04-01,"Alabama",1942 -2011-05-01,"Alabama",1363 -2011-06-01,"Alabama",844 -2011-07-01,"Alabama",604 -2011-08-01,"Alabama",772 -2011-09-01,"Alabama",852 -2011-10-01,"Alabama",1531 -2011-11-01,"Alabama",3426 -2011-12-01,"Alabama",5467 -2012-01-01,"Alabama",5896 -2012-02-01,"Alabama",4489 -2012-03-01,"Alabama",2207 -2012-04-01,"Alabama",1328 -2012-05-01,"Alabama",893 -2012-06-01,"Alabama",723 -2012-07-01,"Alabama",703 -2012-08-01,"Alabama",700 -2012-09-01,"Alabama",722 -2012-10-01,"Alabama",1334 -2012-11-01,"Alabama",3735 -2012-12-01,"Alabama",4849 -2013-01-01,"Alabama",6147 -2013-02-01,"Alabama",5657 -2013-03-01,"Alabama",5205 -2013-04-01,"Alabama",2198 -2013-05-01,"Alabama",1325 -2013-06-01,"Alabama",980 -2013-07-01,"Alabama",715 -2013-08-01,"Alabama",770 -2013-09-01,"Alabama",778 -2013-10-01,"Alabama",1142 -2013-11-01,"Alabama",3925 -2013-12-01,"Alabama",6216 -2014-01-01,"Alabama",10350 -2014-02-01,"Alabama",6522 -2014-03-01,"Alabama",4611 -2014-04-01,"Alabama",2192 -2014-05-01,"Alabama",1345 -2014-06-01,"Alabama",804 -2014-07-01,"Alabama",764 -2014-08-01,"Alabama",748 -2014-09-01,"Alabama",716 -2014-10-01,"Alabama",1124 -2014-11-01,"Alabama",4457 -2014-12-01,"Alabama",5373 -2015-01-01,"Alabama",8087 -2015-02-01,"Alabama",8552 -2015-03-01,"Alabama",3863 -2015-04-01,"Alabama",1697 -2015-05-01,"Alabama",1113 -2015-06-01,"Alabama",765 -2015-07-01,"Alabama",721 -2015-08-01,"Alabama",706 -2015-09-01,"Alabama",711 -2015-10-01,"Alabama",957 -2015-11-01,"Alabama",2082 -2015-12-01,"Alabama",3496 -2016-01-01,"Alabama",7195 -2016-02-01,"Alabama",5516 -2016-03-01,"Alabama",2755 -2016-04-01,"Alabama",1645 -2016-05-01,"Alabama",978 -2016-06-01,"Alabama",833 -2016-07-01,"Alabama",675 -2016-08-01,"Alabama",646 -2016-09-01,"Alabama",620 -2016-10-01,"Alabama",875 -2016-11-01,"Alabama",1790 -2016-12-01,"Alabama",4880 -2017-01-01,"Alabama",4845 -2017-02-01,"Alabama",3228 -2017-03-01,"Alabama",3177 -2017-04-01,"Alabama",1362 -2017-05-01,"Alabama",925 -2017-06-01,"Alabama",713 -2017-07-01,"Alabama",674 -2017-08-01,"Alabama",651 -2017-09-01,"Alabama",739 -2017-10-01,"Alabama",1190 -2017-11-01,"Alabama",2642 -2017-12-01,"Alabama",6192 -2018-01-01,"Alabama",9540 -2018-02-01,"Alabama",3744 -2018-03-01,"Alabama",3745 -2018-04-01,"Alabama",2500 -2018-05-01,"Alabama",1116 -2018-06-01,"Alabama",725 -2018-07-01,"Alabama",694 -2018-08-01,"Alabama",701 -2018-09-01,"Alabama",663 -2018-10-01,"Alabama",1014 -2018-11-01,"Alabama",4124 -2018-12-01,"Alabama",6159 -2019-01-01,"Alabama",7973 -2019-02-01,"Alabama",3793 -2019-03-01,"Alabama",3973 -2019-04-01,"Alabama",1904 -2019-05-01,"Alabama",1144 -2019-06-01,"Alabama",853 -2019-07-01,"Alabama",765 -2019-08-01,"Alabama",656 -2019-09-01,"Alabama",705 -2019-10-01,"Alabama",980 -2019-11-01,"Alabama",2825 -2019-12-01,"Alabama",5044 -2020-01-01,"Alabama",5624 -2020-02-01,"Alabama",5259 -2020-03-01,"Alabama",2607 -2020-04-01,"Alabama",1640 -2020-05-01,"Alabama",1204 -2020-06-01,"Alabama",817 -2020-07-01,"Alabama",713 -2020-08-01,"Alabama",687 -2020-09-01,"Alabama",794 -2020-10-01,"Alabama",1097 -2020-11-01,"Alabama",2505 -2020-12-01,"Alabama",4771 -2021-01-01,"Alabama",7100 -2021-02-01,"Alabama",6542 -1989-01-01,"Alaska",1793 -1989-02-01,"Alaska",2148 -1989-03-01,"Alaska",1566 -1989-04-01,"Alaska",1223 -1989-05-01,"Alaska",858 -1989-06-01,"Alaska",638 -1989-07-01,"Alaska",432 -1989-08-01,"Alaska",370 -1989-09-01,"Alaska",536 -1989-10-01,"Alaska",895 -1989-11-01,"Alaska",1474 -1989-12-01,"Alaska",1656 -1990-01-01,"Alaska",1745 -1990-02-01,"Alaska",2090 -1990-03-01,"Alaska",1756 -1990-04-01,"Alaska",1181 -1990-05-01,"Alaska",771 -1990-06-01,"Alaska",548 -1990-07-01,"Alaska",409 -1990-08-01,"Alaska",407 -1990-09-01,"Alaska",527 -1990-10-01,"Alaska",929 -1990-11-01,"Alaska",1586 -1990-12-01,"Alaska",2216 -1991-01-01,"Alaska",1931 -1991-02-01,"Alaska",1847 -1991-03-01,"Alaska",1477 -1991-04-01,"Alaska",1258 -1991-05-01,"Alaska",907 -1991-06-01,"Alaska",662 -1991-07-01,"Alaska",470 -1991-08-01,"Alaska",438 -1991-09-01,"Alaska",600 -1991-10-01,"Alaska",926 -1991-11-01,"Alaska",1356 -1991-12-01,"Alaska",1691 -1992-01-01,"Alaska",1777 -1992-02-01,"Alaska",1933 -1992-03-01,"Alaska",1764 -1992-04-01,"Alaska",1346 -1992-05-01,"Alaska",1012 -1992-06-01,"Alaska",628 -1992-07-01,"Alaska",474 -1992-08-01,"Alaska",438 -1992-09-01,"Alaska",643 -1992-10-01,"Alaska",1209 -1992-11-01,"Alaska",1442 -1992-12-01,"Alaska",1682 -1993-01-01,"Alaska",2079 -1993-02-01,"Alaska",2138 -1993-03-01,"Alaska",1471 -1993-04-01,"Alaska",1288 -1993-05-01,"Alaska",891 -1993-06-01,"Alaska",577 -1993-07-01,"Alaska",423 -1993-08-01,"Alaska",402 -1993-09-01,"Alaska",513 -1993-10-01,"Alaska",1043 -1993-11-01,"Alaska",1261 -1993-12-01,"Alaska",1772 -1994-01-01,"Alaska",1815 -1994-02-01,"Alaska",1763 -1994-03-01,"Alaska",1952 -1994-04-01,"Alaska",1480 -1994-05-01,"Alaska",1026 -1994-06-01,"Alaska",651 -1994-07-01,"Alaska",491 -1994-08-01,"Alaska",416 -1994-09-01,"Alaska",567 -1994-10-01,"Alaska",1042 -1994-11-01,"Alaska",1497 -1994-12-01,"Alaska",2195 -1995-01-01,"Alaska",2059 -1995-02-01,"Alaska",1923 -1995-03-01,"Alaska",1912 -1995-04-01,"Alaska",1573 -1995-05-01,"Alaska",943 -1995-06-01,"Alaska",680 -1995-07-01,"Alaska",534 -1995-08-01,"Alaska",448 -1995-09-01,"Alaska",588 -1995-10-01,"Alaska",866 -1995-11-01,"Alaska",1411 -1995-12-01,"Alaska",2294 -1996-01-01,"Alaska",2054 -1996-02-01,"Alaska",2419 -1996-03-01,"Alaska",1918 -1996-04-01,"Alaska",1424 -1996-05-01,"Alaska",964 -1996-06-01,"Alaska",647 -1996-07-01,"Alaska",493 -1996-08-01,"Alaska",544 -1996-09-01,"Alaska",589 -1996-10-01,"Alaska",1238 -1996-11-01,"Alaska",1708 -1996-12-01,"Alaska",2181 -1997-01-01,"Alaska",2249 -1997-02-01,"Alaska",1618 -1997-03-01,"Alaska",1767 -1997-04-01,"Alaska",1177 -1997-05-01,"Alaska",789 -1997-06-01,"Alaska",508 -1997-07-01,"Alaska",463 -1997-08-01,"Alaska",418 -1997-09-01,"Alaska",743 -1997-10-01,"Alaska",1569 -1997-11-01,"Alaska",1684 -1997-12-01,"Alaska",2162 -1998-01-01,"Alaska",2240 -1998-02-01,"Alaska",1716 -1998-03-01,"Alaska",1529 -1998-04-01,"Alaska",1239 -1998-05-01,"Alaska",933 -1998-06-01,"Alaska",628 -1998-07-01,"Alaska",479 -1998-08-01,"Alaska",648 -1998-09-01,"Alaska",818 -1998-10-01,"Alaska",1346 -1998-11-01,"Alaska",1858 -1998-12-01,"Alaska",2183 -1999-01-01,"Alaska",2668 -1999-02-01,"Alaska",2223 -1999-03-01,"Alaska",2075 -1999-04-01,"Alaska",1315 -1999-05-01,"Alaska",939 -1999-06-01,"Alaska",559 -1999-07-01,"Alaska",486 -1999-08-01,"Alaska",481 -1999-09-01,"Alaska",870 -1999-10-01,"Alaska",1423 -1999-11-01,"Alaska",2127 -1999-12-01,"Alaska",2466 -2000-01-01,"Alaska",2355 -2000-02-01,"Alaska",1886 -2000-03-01,"Alaska",1764 -2000-04-01,"Alaska",1234 -2000-05-01,"Alaska",864 -2000-06-01,"Alaska",646 -2000-07-01,"Alaska",475 -2000-08-01,"Alaska",618 -2000-09-01,"Alaska",927 -2000-10-01,"Alaska",1455 -2000-11-01,"Alaska",1749 -2000-12-01,"Alaska",2014 -2001-01-01,"Alaska",1885 -2001-02-01,"Alaska",1828 -2001-03-01,"Alaska",1818 -2001-04-01,"Alaska",1183 -2001-05-01,"Alaska",981 -2001-06-01,"Alaska",612 -2001-07-01,"Alaska",520 -2001-08-01,"Alaska",538 -2001-09-01,"Alaska",819 -2001-10-01,"Alaska",1662 -2001-11-01,"Alaska",2187 -2001-12-01,"Alaska",2785 -2002-01-01,"Alaska",2057 -2002-02-01,"Alaska",1933 -2002-03-01,"Alaska",2115 -2002-04-01,"Alaska",1406 -2002-05-01,"Alaska",957 -2002-06-01,"Alaska",1192 -2002-07-01,"Alaska",421 -2002-08-01,"Alaska",592 -2002-09-01,"Alaska",828 -2002-10-01,"Alaska",1214 -2002-11-01,"Alaska",1401 -2002-12-01,"Alaska",2074 -2003-01-01,"Alaska",2216 -2003-02-01,"Alaska",1705 -2003-03-01,"Alaska",2046 -2003-04-01,"Alaska",1328 -2003-05-01,"Alaska",935 -2003-06-01,"Alaska",572 -2003-07-01,"Alaska",435 -2003-08-01,"Alaska",599 -2003-09-01,"Alaska",898 -2003-10-01,"Alaska",1368 -2003-11-01,"Alaska",2322 -2003-12-01,"Alaska",2430 -2004-01-01,"Alaska",3151 -2004-02-01,"Alaska",2049 -2004-03-01,"Alaska",2061 -2004-04-01,"Alaska",1410 -2004-05-01,"Alaska",919 -2004-06-01,"Alaska",538 -2004-07-01,"Alaska",467 -2004-08-01,"Alaska",513 -2004-09-01,"Alaska",1065 -2004-10-01,"Alaska",1552 -2004-11-01,"Alaska",2006 -2004-12-01,"Alaska",2469 -2005-01-01,"Alaska",2734 -2005-02-01,"Alaska",2239 -2005-03-01,"Alaska",1901 -2005-04-01,"Alaska",1323 -2005-05-01,"Alaska",869 -2005-06-01,"Alaska",581 -2005-07-01,"Alaska",506 -2005-08-01,"Alaska",563 -2005-09-01,"Alaska",843 -2005-10-01,"Alaska",1662 -2005-11-01,"Alaska",2584 -2005-12-01,"Alaska",2224 -2006-01-01,"Alaska",3324 -2006-02-01,"Alaska",2233 -2006-03-01,"Alaska",2198 -2006-04-01,"Alaska",1683 -2006-05-01,"Alaska",910 -2006-06-01,"Alaska",725 -2006-07-01,"Alaska",574 -2006-08-01,"Alaska",698 -2006-09-01,"Alaska",946 -2006-10-01,"Alaska",1594 -2006-11-01,"Alaska",3197 -2006-12-01,"Alaska",2533 -2007-01-01,"Alaska",2841 -2007-02-01,"Alaska",2545 -2007-03-01,"Alaska",2709 -2007-04-01,"Alaska",1536 -2007-05-01,"Alaska",1033 -2007-06-01,"Alaska",679 -2007-07-01,"Alaska",594 -2007-08-01,"Alaska",587 -2007-09-01,"Alaska",890 -2007-10-01,"Alaska",1628 -2007-11-01,"Alaska",2008 -2007-12-01,"Alaska",2795 -2008-01-01,"Alaska",3134 -2008-02-01,"Alaska",2751 -2008-03-01,"Alaska",2158 -2008-04-01,"Alaska",1611 -2008-05-01,"Alaska",1128 -2008-06-01,"Alaska",733 -2008-07-01,"Alaska",702 -2008-08-01,"Alaska",700 -2008-09-01,"Alaska",1032 -2008-10-01,"Alaska",1918 -2008-11-01,"Alaska",2581 -2008-12-01,"Alaska",2992 -2009-01-01,"Alaska",3175 -2009-02-01,"Alaska",2514 -2009-03-01,"Alaska",2454 -2009-04-01,"Alaska",1589 -2009-05-01,"Alaska",892 -2009-06-01,"Alaska",663 -2009-07-01,"Alaska",553 -2009-08-01,"Alaska",636 -2009-09-01,"Alaska",933 -2009-10-01,"Alaska",1417 -2009-11-01,"Alaska",2428 -2009-12-01,"Alaska",2725 -2010-01-01,"Alaska",2730 -2010-02-01,"Alaska",2054 -2010-03-01,"Alaska",2121 -2010-04-01,"Alaska",1574 -2010-05-01,"Alaska",946 -2010-06-01,"Alaska",667 -2010-07-01,"Alaska",630 -2010-08-01,"Alaska",607 -2010-09-01,"Alaska",771 -2010-10-01,"Alaska",1529 -2010-11-01,"Alaska",2019 -2010-12-01,"Alaska",3065 -2011-01-01,"Alaska",2862 -2011-02-01,"Alaska",2755 -2011-03-01,"Alaska",2287 -2011-04-01,"Alaska",1593 -2011-05-01,"Alaska",990 -2011-06-01,"Alaska",712 -2011-07-01,"Alaska",580 -2011-08-01,"Alaska",650 -2011-09-01,"Alaska",948 -2011-10-01,"Alaska",1581 -2011-11-01,"Alaska",2851 -2011-12-01,"Alaska",2451 -2012-01-01,"Alaska",3603 -2012-02-01,"Alaska",2334 -2012-03-01,"Alaska",2333 -2012-04-01,"Alaska",1467 -2012-05-01,"Alaska",1056 -2012-06-01,"Alaska",699 -2012-07-01,"Alaska",634 -2012-08-01,"Alaska",558 -2012-09-01,"Alaska",1093 -2012-10-01,"Alaska",1730 -2012-11-01,"Alaska",2743 -2012-12-01,"Alaska",3129 -2013-01-01,"Alaska",2526 -2013-02-01,"Alaska",2130 -2013-03-01,"Alaska",2304 -2013-04-01,"Alaska",1889 -2013-05-01,"Alaska",1115 -2013-06-01,"Alaska",585 -2013-07-01,"Alaska",497 -2013-08-01,"Alaska",590 -2013-09-01,"Alaska",987 -2013-10-01,"Alaska",1314 -2013-11-01,"Alaska",2420 -2013-12-01,"Alaska",2859 -2014-01-01,"Alaska",2169 -2014-02-01,"Alaska",2443 -2014-03-01,"Alaska",2201 -2014-04-01,"Alaska",1427 -2014-05-01,"Alaska",800 -2014-06-01,"Alaska",678 -2014-07-01,"Alaska",545 -2014-08-01,"Alaska",538 -2014-09-01,"Alaska",875 -2014-10-01,"Alaska",1768 -2014-11-01,"Alaska",2070 -2014-12-01,"Alaska",2218 -2015-01-01,"Alaska",2743 -2015-02-01,"Alaska",2212 -2015-03-01,"Alaska",2174 -2015-04-01,"Alaska",1473 -2015-05-01,"Alaska",883 -2015-06-01,"Alaska",589 -2015-07-01,"Alaska",499 -2015-08-01,"Alaska",531 -2015-09-01,"Alaska",1040 -2015-10-01,"Alaska",1429 -2015-11-01,"Alaska",2317 -2015-12-01,"Alaska",2683 -2016-01-01,"Alaska",2358 -2016-02-01,"Alaska",2067 -2016-03-01,"Alaska",1885 -2016-04-01,"Alaska",1242 -2016-05-01,"Alaska",864 -2016-06-01,"Alaska",534 -2016-07-01,"Alaska",479 -2016-08-01,"Alaska",534 -2016-09-01,"Alaska",831 -2016-10-01,"Alaska",1713 -2016-11-01,"Alaska",2313 -2016-12-01,"Alaska",2969 -2017-01-01,"Alaska",3188 -2017-02-01,"Alaska",2521 -2017-03-01,"Alaska",2666 -2017-04-01,"Alaska",1472 -2017-05-01,"Alaska",983 -2017-06-01,"Alaska",656 -2017-07-01,"Alaska",552 -2017-08-01,"Alaska",601 -2017-09-01,"Alaska",892 -2017-10-01,"Alaska",1579 -2017-11-01,"Alaska",2613 -2017-12-01,"Alaska",2525 -2018-01-01,"Alaska",2708 -2018-02-01,"Alaska",2620 -2018-03-01,"Alaska",2219 -2018-04-01,"Alaska",1483 -2018-05-01,"Alaska",1032 -2018-06-01,"Alaska",672 -2018-07-01,"Alaska",500 -2018-08-01,"Alaska",591 -2018-09-01,"Alaska",755 -2018-10-01,"Alaska",1319 -2018-11-01,"Alaska",2096 -2018-12-01,"Alaska",2612 -2019-01-01,"Alaska",2803 -2019-02-01,"Alaska",2265 -2019-03-01,"Alaska",2125 -2019-04-01,"Alaska",1442 -2019-05-01,"Alaska",982 -2019-06-01,"Alaska",531 -2019-07-01,"Alaska",413 -2019-08-01,"Alaska",456 -2019-09-01,"Alaska",823 -2019-10-01,"Alaska",1447 -2019-11-01,"Alaska",1978 -2019-12-01,"Alaska",2685 -2020-01-01,"Alaska",3653 -2020-02-01,"Alaska",2749 -2020-03-01,"Alaska",2611 -2020-04-01,"Alaska",1577 -2020-05-01,"Alaska",924 -2020-06-01,"Alaska",611 -2020-07-01,"Alaska",498 -2020-08-01,"Alaska",548 -2020-09-01,"Alaska",886 -2020-10-01,"Alaska",1675 -2020-11-01,"Alaska",2604 -2020-12-01,"Alaska",2686 -2021-01-01,"Alaska",2645 -2021-02-01,"Alaska",2792 -1989-01-01,"Arizona",6104 -1989-02-01,"Arizona",4913 -1989-03-01,"Arizona",2937 -1989-04-01,"Arizona",1670 -1989-05-01,"Arizona",1205 -1989-06-01,"Arizona",1094 -1989-07-01,"Arizona",880 -1989-08-01,"Arizona",777 -1989-09-01,"Arizona",833 -1989-10-01,"Arizona",959 -1989-11-01,"Arizona",1768 -1989-12-01,"Arizona",3945 -1990-01-01,"Arizona",5994 -1990-02-01,"Arizona",5582 -1990-03-01,"Arizona",4035 -1990-04-01,"Arizona",2197 -1990-05-01,"Arizona",1427 -1990-06-01,"Arizona",1145 -1990-07-01,"Arizona",931 -1990-08-01,"Arizona",856 -1990-09-01,"Arizona",926 -1990-10-01,"Arizona",1044 -1990-11-01,"Arizona",1711 -1990-12-01,"Arizona",4473 -1991-01-01,"Arizona",6284 -1991-02-01,"Arizona",4569 -1991-03-01,"Arizona",4018 -1991-04-01,"Arizona",3214 -1991-05-01,"Arizona",1620 -1991-06-01,"Arizona",1209 -1991-07-01,"Arizona",1042 -1991-08-01,"Arizona",862 -1991-09-01,"Arizona",900 -1991-10-01,"Arizona",1077 -1991-11-01,"Arizona",1895 -1991-12-01,"Arizona",4664 -1992-01-01,"Arizona",5598 -1992-02-01,"Arizona",4220 -1992-03-01,"Arizona",3589 -1992-04-01,"Arizona",2313 -1992-05-01,"Arizona",1207 -1992-06-01,"Arizona",1132 -1992-07-01,"Arizona",947 -1992-08-01,"Arizona",815 -1992-09-01,"Arizona",870 -1992-10-01,"Arizona",1000 -1992-11-01,"Arizona",1576 -1992-12-01,"Arizona",5118 -1993-01-01,"Arizona",5504 -1993-02-01,"Arizona",4120 -1993-03-01,"Arizona",4078 -1993-04-01,"Arizona",2178 -1993-05-01,"Arizona",1297 -1993-06-01,"Arizona",1097 -1993-07-01,"Arizona",832 -1993-08-01,"Arizona",801 -1993-09-01,"Arizona",854 -1993-10-01,"Arizona",988 -1993-11-01,"Arizona",1847 -1993-12-01,"Arizona",4566 -1994-01-01,"Arizona",5663 -1994-02-01,"Arizona",5158 -1994-03-01,"Arizona",3659 -1994-04-01,"Arizona",2142 -1994-05-01,"Arizona",1443 -1994-06-01,"Arizona",1116 -1994-07-01,"Arizona",899 -1994-08-01,"Arizona",806 -1994-09-01,"Arizona",851 -1994-10-01,"Arizona",1053 -1994-11-01,"Arizona",2024 -1994-12-01,"Arizona",4869 -1995-01-01,"Arizona",5531 -1995-02-01,"Arizona",4576 -1995-03-01,"Arizona",2846 -1995-04-01,"Arizona",2428 -1995-05-01,"Arizona",1824 -1995-06-01,"Arizona",1248 -1995-07-01,"Arizona",969 -1995-08-01,"Arizona",859 -1995-09-01,"Arizona",878 -1995-10-01,"Arizona",1027 -1995-11-01,"Arizona",1554 -1995-12-01,"Arizona",3154 -1996-01-01,"Arizona",5443 -1996-02-01,"Arizona",4221 -1996-03-01,"Arizona",3366 -1996-04-01,"Arizona",2155 -1996-05-01,"Arizona",1328 -1996-06-01,"Arizona",1089 -1996-07-01,"Arizona",916 -1996-08-01,"Arizona",836 -1996-09-01,"Arizona",900 -1996-10-01,"Arizona",1082 -1996-11-01,"Arizona",2322 -1996-12-01,"Arizona",4051 -1997-01-01,"Arizona",5958 -1997-02-01,"Arizona",5075 -1997-03-01,"Arizona",4221 -1997-04-01,"Arizona",2251 -1997-05-01,"Arizona",1566 -1997-06-01,"Arizona",1150 -1997-07-01,"Arizona",1015 -1997-08-01,"Arizona",907 -1997-09-01,"Arizona",1124 -1997-10-01,"Arizona",1053 -1997-11-01,"Arizona",1973 -1997-12-01,"Arizona",4764 -1998-01-01,"Arizona",7156 -1998-02-01,"Arizona",5646 -1998-03-01,"Arizona",5362 -1998-04-01,"Arizona",3722 -1998-05-01,"Arizona",2107 -1998-06-01,"Arizona",1385 -1998-07-01,"Arizona",1070 -1998-08-01,"Arizona",902 -1998-09-01,"Arizona",940 -1998-10-01,"Arizona",1136 -1998-11-01,"Arizona",2008 -1998-12-01,"Arizona",4666 -1999-01-01,"Arizona",6382 -1999-02-01,"Arizona",5465 -1999-03-01,"Arizona",3735 -1999-04-01,"Arizona",3374 -1999-05-01,"Arizona",2108 -1999-06-01,"Arizona",1354 -1999-07-01,"Arizona",1065 -1999-08-01,"Arizona",963 -1999-09-01,"Arizona",1006 -1999-10-01,"Arizona",1165 -1999-11-01,"Arizona",1682 -1999-12-01,"Arizona",4642 -2000-01-01,"Arizona",6438 -2000-02-01,"Arizona",6328 -2000-03-01,"Arizona",4192 -2000-04-01,"Arizona",2663 -2000-05-01,"Arizona",1510 -2000-06-01,"Arizona",1178 -2000-07-01,"Arizona",996 -2000-08-01,"Arizona",903 -2000-09-01,"Arizona",971 -2000-10-01,"Arizona",1070 -2000-11-01,"Arizona",2787 -2000-12-01,"Arizona",5704 -2001-01-01,"Arizona",6767 -2001-02-01,"Arizona",7101 -2001-03-01,"Arizona",5461 -2001-04-01,"Arizona",2836 -2001-05-01,"Arizona",1904 -2001-06-01,"Arizona",1272 -2001-07-01,"Arizona",1060 -2001-08-01,"Arizona",986 -2001-09-01,"Arizona",1028 -2001-10-01,"Arizona",1156 -2001-11-01,"Arizona",1660 -2001-12-01,"Arizona",5016 -2002-01-01,"Arizona",7537 -2002-02-01,"Arizona",6684 -2002-03-01,"Arizona",4473 -2002-04-01,"Arizona",2630 -2002-05-01,"Arizona",1683 -2002-06-01,"Arizona",1355 -2002-07-01,"Arizona",1077 -2002-08-01,"Arizona",1016 -2002-09-01,"Arizona",1073 -2002-10-01,"Arizona",1265 -2002-11-01,"Arizona",2108 -2002-12-01,"Arizona",4403 -2003-01-01,"Arizona",7038 -2003-02-01,"Arizona",4914 -2003-03-01,"Arizona",4931 -2003-04-01,"Arizona",3011 -2003-05-01,"Arizona",2090 -2003-06-01,"Arizona",1366 -2003-07-01,"Arizona",1122 -2003-08-01,"Arizona",1100 -2003-09-01,"Arizona",1052 -2003-10-01,"Arizona",1399 -2003-11-01,"Arizona",2145 -2003-12-01,"Arizona",5642 -2004-01-01,"Arizona",7129 -2004-02-01,"Arizona",6902 -2004-03-01,"Arizona",4846 -2004-04-01,"Arizona",2295 -2004-05-01,"Arizona",1705 -2004-06-01,"Arizona",1254 -2004-07-01,"Arizona",1128 -2004-08-01,"Arizona",1050 -2004-09-01,"Arizona",1156 -2004-10-01,"Arizona",1492 -2004-11-01,"Arizona",2844 -2004-12-01,"Arizona",6406 -2005-01-01,"Arizona",7170 -2005-02-01,"Arizona",5600 -2005-03-01,"Arizona",4435 -2005-04-01,"Arizona",3027 -2005-05-01,"Arizona",1857 -2005-06-01,"Arizona",1382 -2005-07-01,"Arizona",1155 -2005-08-01,"Arizona",1053 -2005-09-01,"Arizona",1144 -2005-10-01,"Arizona",1379 -2005-11-01,"Arizona",2183 -2005-12-01,"Arizona",5380 -2006-01-01,"Arizona",6235 -2006-02-01,"Arizona",5727 -2006-03-01,"Arizona",4915 -2006-04-01,"Arizona",3120 -2006-05-01,"Arizona",1769 -2006-06-01,"Arizona",1344 -2006-07-01,"Arizona",1135 -2006-08-01,"Arizona",1081 -2006-09-01,"Arizona",1204 -2006-10-01,"Arizona",1544 -2006-11-01,"Arizona",2407 -2006-12-01,"Arizona",5575 -2007-01-01,"Arizona",9010 -2007-02-01,"Arizona",7144 -2007-03-01,"Arizona",4506 -2007-04-01,"Arizona",2362 -2007-05-01,"Arizona",1840 -2007-06-01,"Arizona",1385 -2007-07-01,"Arizona",1152 -2007-08-01,"Arizona",1091 -2007-09-01,"Arizona",1128 -2007-10-01,"Arizona",1483 -2007-11-01,"Arizona",2087 -2007-12-01,"Arizona",5135 -2008-01-01,"Arizona",8743 -2008-02-01,"Arizona",7515 -2008-03-01,"Arizona",4726 -2008-04-01,"Arizona",2694 -2008-05-01,"Arizona",1884 -2008-06-01,"Arizona",1505 -2008-07-01,"Arizona",1139 -2008-08-01,"Arizona",1055 -2008-09-01,"Arizona",1145 -2008-10-01,"Arizona",1435 -2008-11-01,"Arizona",2202 -2008-12-01,"Arizona",4411 -2009-01-01,"Arizona",7133 -2009-02-01,"Arizona",5352 -2009-03-01,"Arizona",3721 -2009-04-01,"Arizona",2621 -2009-05-01,"Arizona",1734 -2009-06-01,"Arizona",1356 -2009-07-01,"Arizona",1151 -2009-08-01,"Arizona",1038 -2009-09-01,"Arizona",1119 -2009-10-01,"Arizona",1471 -2009-11-01,"Arizona",2487 -2009-12-01,"Arizona",5549 -2010-01-01,"Arizona",7444 -2010-02-01,"Arizona",6015 -2010-03-01,"Arizona",5164 -2010-04-01,"Arizona",3034 -2010-05-01,"Arizona",1972 -2010-06-01,"Arizona",1418 -2010-07-01,"Arizona",1121 -2010-08-01,"Arizona",1033 -2010-09-01,"Arizona",1116 -2010-10-01,"Arizona",1377 -2010-11-01,"Arizona",2842 -2010-12-01,"Arizona",5276 -2011-01-01,"Arizona",7779 -2011-02-01,"Arizona",6951 -2011-03-01,"Arizona",4123 -2011-04-01,"Arizona",2479 -2011-05-01,"Arizona",1829 -2011-06-01,"Arizona",1398 -2011-07-01,"Arizona",1114 -2011-08-01,"Arizona",964 -2011-09-01,"Arizona",1066 -2011-10-01,"Arizona",1504 -2011-11-01,"Arizona",2839 -2011-12-01,"Arizona",6546 -2012-01-01,"Arizona",7406 -2012-02-01,"Arizona",5909 -2012-03-01,"Arizona",4487 -2012-04-01,"Arizona",2612 -2012-05-01,"Arizona",1656 -2012-06-01,"Arizona",1295 -2012-07-01,"Arizona",1096 -2012-08-01,"Arizona",1020 -2012-09-01,"Arizona",1087 -2012-10-01,"Arizona",1373 -2012-11-01,"Arizona",2417 -2012-12-01,"Arizona",4616 -2013-01-01,"Arizona",9313 -2013-02-01,"Arizona",7051 -2013-03-01,"Arizona",4809 -2013-04-01,"Arizona",2273 -2013-05-01,"Arizona",1675 -2013-06-01,"Arizona",1227 -2013-07-01,"Arizona",1053 -2013-08-01,"Arizona",1032 -2013-09-01,"Arizona",1132 -2013-10-01,"Arizona",1672 -2013-11-01,"Arizona",2542 -2013-12-01,"Arizona",5914 -2014-01-01,"Arizona",6983 -2014-02-01,"Arizona",4853 -2014-03-01,"Arizona",3162 -2014-04-01,"Arizona",2373 -2014-05-01,"Arizona",1750 -2014-06-01,"Arizona",1275 -2014-07-01,"Arizona",1096 -2014-08-01,"Arizona",1025 -2014-09-01,"Arizona",1123 -2014-10-01,"Arizona",1384 -2014-11-01,"Arizona",2482 -2014-12-01,"Arizona",4891 -2015-01-01,"Arizona",7436 -2015-02-01,"Arizona",4276 -2015-03-01,"Arizona",3201 -2015-04-01,"Arizona",2191 -2015-05-01,"Arizona",1821 -2015-06-01,"Arizona",1320 -2015-07-01,"Arizona",1066 -2015-08-01,"Arizona",978 -2015-09-01,"Arizona",1080 -2015-10-01,"Arizona",1345 -2015-11-01,"Arizona",3134 -2015-12-01,"Arizona",6667 -2016-01-01,"Arizona",8719 -2016-02-01,"Arizona",5816 -2016-03-01,"Arizona",3089 -2016-04-01,"Arizona",2422 -2016-05-01,"Arizona",1766 -2016-06-01,"Arizona",1327 -2016-07-01,"Arizona",1081 -2016-08-01,"Arizona",1031 -2016-09-01,"Arizona",1144 -2016-10-01,"Arizona",1433 -2016-11-01,"Arizona",2313 -2016-12-01,"Arizona",4980 -2017-01-01,"Arizona",6656 -2017-02-01,"Arizona",5840 -2017-03-01,"Arizona",3703 -2017-04-01,"Arizona",2358 -2017-05-01,"Arizona",1782 -2017-06-01,"Arizona",1325 -2017-07-01,"Arizona",1101 -2017-08-01,"Arizona",1011 -2017-09-01,"Arizona",1146 -2017-10-01,"Arizona",1501 -2017-11-01,"Arizona",2130 -2017-12-01,"Arizona",4269 -2018-01-01,"Arizona",5815 -2018-02-01,"Arizona",5225 -2018-03-01,"Arizona",4686 -2018-04-01,"Arizona",2404 -2018-05-01,"Arizona",1732 -2018-06-01,"Arizona",1330 -2018-07-01,"Arizona",1123 -2018-08-01,"Arizona",1050 -2018-09-01,"Arizona",1132 -2018-10-01,"Arizona",1673 -2018-11-01,"Arizona",3171 -2018-12-01,"Arizona",5784 -2019-01-01,"Arizona",8471 -2019-02-01,"Arizona",7428 -2019-03-01,"Arizona",5638 -2019-04-01,"Arizona",2746 -2019-05-01,"Arizona",2084 -2019-06-01,"Arizona",1510 -2019-07-01,"Arizona",1208 -2019-08-01,"Arizona",1088 -2019-09-01,"Arizona",1170 -2019-10-01,"Arizona",1800 -2019-11-01,"Arizona",2994 -2019-12-01,"Arizona",5947 -2020-01-01,"Arizona",8425 -2020-02-01,"Arizona",6891 -2020-03-01,"Arizona",4675 -2020-04-01,"Arizona",3110 -2020-05-01,"Arizona",1939 -2020-06-01,"Arizona",1559 -2020-07-01,"Arizona",1328 -2020-08-01,"Arizona",1139 -2020-09-01,"Arizona",1252 -2020-10-01,"Arizona",1670 -2020-11-01,"Arizona",3012 -2020-12-01,"Arizona",5886 -2021-01-01,"Arizona",8243 -2021-02-01,"Arizona",6417 -1989-01-01,"Arkansas",6774 -1989-02-01,"Arkansas",7118 -1989-03-01,"Arkansas",6736 -1989-04-01,"Arkansas",3835 -1989-05-01,"Arkansas",1927 -1989-06-01,"Arkansas",1402 -1989-07-01,"Arkansas",1237 -1989-08-01,"Arkansas",1137 -1989-09-01,"Arkansas",1239 -1989-10-01,"Arkansas",1562 -1989-11-01,"Arkansas",2987 -1989-12-01,"Arkansas",6356 -1990-01-01,"Arkansas",8681 -1990-02-01,"Arkansas",5556 -1990-03-01,"Arkansas",4628 -1990-04-01,"Arkansas",3810 -1990-05-01,"Arkansas",2161 -1990-06-01,"Arkansas",1367 -1990-07-01,"Arkansas",1154 -1990-08-01,"Arkansas",1111 -1990-09-01,"Arkansas",1170 -1990-10-01,"Arkansas",1479 -1990-11-01,"Arkansas",3267 -1990-12-01,"Arkansas",4804 -1991-01-01,"Arkansas",8475 -1991-02-01,"Arkansas",6922 -1991-03-01,"Arkansas",5073 -1991-04-01,"Arkansas",2980 -1991-05-01,"Arkansas",1671 -1991-06-01,"Arkansas",1261 -1991-07-01,"Arkansas",1103 -1991-08-01,"Arkansas",1085 -1991-09-01,"Arkansas",1170 -1991-10-01,"Arkansas",1524 -1991-11-01,"Arkansas",3895 -1991-12-01,"Arkansas",5481 -1992-01-01,"Arkansas",7150 -1992-02-01,"Arkansas",6724 -1992-03-01,"Arkansas",4305 -1992-04-01,"Arkansas",3828 -1992-05-01,"Arkansas",1854 -1992-06-01,"Arkansas",1371 -1992-07-01,"Arkansas",1194 -1992-08-01,"Arkansas",1124 -1992-09-01,"Arkansas",1096 -1992-10-01,"Arkansas",1511 -1992-11-01,"Arkansas",3132 -1992-12-01,"Arkansas",6185 -1993-01-01,"Arkansas",8141 -1993-02-01,"Arkansas",7122 -1993-03-01,"Arkansas",6736 -1993-04-01,"Arkansas",4971 -1993-05-01,"Arkansas",2257 -1993-06-01,"Arkansas",1310 -1993-07-01,"Arkansas",1109 -1993-08-01,"Arkansas",1017 -1993-09-01,"Arkansas",1103 -1993-10-01,"Arkansas",1575 -1993-11-01,"Arkansas",4024 -1993-12-01,"Arkansas",6182 -1994-01-01,"Arkansas",8723 -1994-02-01,"Arkansas",7974 -1994-03-01,"Arkansas",5659 -1994-04-01,"Arkansas",3756 -1994-05-01,"Arkansas",1800 -1994-06-01,"Arkansas",1190 -1994-07-01,"Arkansas",1068 -1994-08-01,"Arkansas",959 -1994-09-01,"Arkansas",1107 -1994-10-01,"Arkansas",1423 -1994-11-01,"Arkansas",2724 -1994-12-01,"Arkansas",5144 -1995-01-01,"Arkansas",7598 -1995-02-01,"Arkansas",6900 -1995-03-01,"Arkansas",5691 -1995-04-01,"Arkansas",2973 -1995-05-01,"Arkansas",1881 -1995-06-01,"Arkansas",1243 -1995-07-01,"Arkansas",997 -1995-08-01,"Arkansas",930 -1995-09-01,"Arkansas",1042 -1995-10-01,"Arkansas",1295 -1995-11-01,"Arkansas",3522 -1995-12-01,"Arkansas",7034 -1996-01-01,"Arkansas",9008 -1996-02-01,"Arkansas",8713 -1996-03-01,"Arkansas",6146 -1996-04-01,"Arkansas",4846 -1996-05-01,"Arkansas",1967 -1996-06-01,"Arkansas",1202 -1996-07-01,"Arkansas",930 -1996-08-01,"Arkansas",955 -1996-09-01,"Arkansas",1044 -1996-10-01,"Arkansas",1425 -1996-11-01,"Arkansas",3768 -1996-12-01,"Arkansas",6286 -1997-01-01,"Arkansas",8276 -1997-02-01,"Arkansas",7745 -1997-03-01,"Arkansas",4937 -1997-04-01,"Arkansas",3290 -1997-05-01,"Arkansas",2322 -1997-06-01,"Arkansas",1239 -1997-07-01,"Arkansas",1027 -1997-08-01,"Arkansas",917 -1997-09-01,"Arkansas",948 -1997-10-01,"Arkansas",1345 -1997-11-01,"Arkansas",4013 -1997-12-01,"Arkansas",6369 -1998-01-01,"Arkansas",7759 -1998-02-01,"Arkansas",6675 -1998-03-01,"Arkansas",6076 -1998-04-01,"Arkansas",3926 -1998-05-01,"Arkansas",1725 -1998-06-01,"Arkansas",1006 -1998-07-01,"Arkansas",963 -1998-08-01,"Arkansas",872 -1998-09-01,"Arkansas",861 -1998-10-01,"Arkansas",1109 -1998-11-01,"Arkansas",2668 -1998-12-01,"Arkansas",4550 -1999-01-01,"Arkansas",9044 -1999-02-01,"Arkansas",5257 -1999-03-01,"Arkansas",5154 -1999-04-01,"Arkansas",3730 -1999-05-01,"Arkansas",1640 -1999-06-01,"Arkansas",1030 -1999-07-01,"Arkansas",998 -1999-08-01,"Arkansas",951 -1999-09-01,"Arkansas",925 -1999-10-01,"Arkansas",1264 -1999-11-01,"Arkansas",1216 -1999-12-01,"Arkansas",5037 -2000-01-01,"Arkansas",7415 -2000-02-01,"Arkansas",5734 -2000-03-01,"Arkansas",4139 -2000-04-01,"Arkansas",2439 -2000-05-01,"Arkansas",1558 -2000-06-01,"Arkansas",916 -2000-07-01,"Arkansas",791 -2000-08-01,"Arkansas",916 -2000-09-01,"Arkansas",1154 -2000-10-01,"Arkansas",1487 -2000-11-01,"Arkansas",5332 -2000-12-01,"Arkansas",10480 -2001-01-01,"Arkansas",7917 -2001-02-01,"Arkansas",6574 -2001-03-01,"Arkansas",5743 -2001-04-01,"Arkansas",1971 -2001-05-01,"Arkansas",942 -2001-06-01,"Arkansas",811 -2001-07-01,"Arkansas",967 -2001-08-01,"Arkansas",806 -2001-09-01,"Arkansas",772 -2001-10-01,"Arkansas",1534 -2001-11-01,"Arkansas",3407 -2001-12-01,"Arkansas",5759 -2002-01-01,"Arkansas",7213 -2002-02-01,"Arkansas",6958 -2002-03-01,"Arkansas",6172 -2002-04-01,"Arkansas",3706 -2002-05-01,"Arkansas",1510 -2002-06-01,"Arkansas",1066 -2002-07-01,"Arkansas",835 -2002-08-01,"Arkansas",783 -2002-09-01,"Arkansas",796 -2002-10-01,"Arkansas",1219 -2002-11-01,"Arkansas",3121 -2002-12-01,"Arkansas",5751 -2003-01-01,"Arkansas",7744 -2003-02-01,"Arkansas",8065 -2003-03-01,"Arkansas",6369 -2003-04-01,"Arkansas",3043 -2003-05-01,"Arkansas",1480 -2003-06-01,"Arkansas",923 -2003-07-01,"Arkansas",831 -2003-08-01,"Arkansas",771 -2003-09-01,"Arkansas",803 -2003-10-01,"Arkansas",1032 -2003-11-01,"Arkansas",2065 -2003-12-01,"Arkansas",4869 -2004-01-01,"Arkansas",6994 -2004-02-01,"Arkansas",7438 -2004-03-01,"Arkansas",5198 -2004-04-01,"Arkansas",2768 -2004-05-01,"Arkansas",1446 -2004-06-01,"Arkansas",863 -2004-07-01,"Arkansas",802 -2004-08-01,"Arkansas",778 -2004-09-01,"Arkansas",820 -2004-10-01,"Arkansas",985 -2004-11-01,"Arkansas",1864 -2004-12-01,"Arkansas",4805 -2005-01-01,"Arkansas",6841 -2005-02-01,"Arkansas",6007 -2005-03-01,"Arkansas",4743 -2005-04-01,"Arkansas",3195 -2005-05-01,"Arkansas",1533 -2005-06-01,"Arkansas",868 -2005-07-01,"Arkansas",760 -2005-08-01,"Arkansas",695 -2005-09-01,"Arkansas",738 -2005-10-01,"Arkansas",930 -2005-11-01,"Arkansas",2165 -2005-12-01,"Arkansas",5131 -2006-01-01,"Arkansas",5651 -2006-02-01,"Arkansas",5467 -2006-03-01,"Arkansas",4907 -2006-04-01,"Arkansas",2631 -2006-05-01,"Arkansas",1081 -2006-06-01,"Arkansas",879 -2006-07-01,"Arkansas",724 -2006-08-01,"Arkansas",642 -2006-09-01,"Arkansas",751 -2006-10-01,"Arkansas",1123 -2006-11-01,"Arkansas",2844 -2006-12-01,"Arkansas",4795 -2007-01-01,"Arkansas",6153 -2007-02-01,"Arkansas",7629 -2007-03-01,"Arkansas",4225 -2007-04-01,"Arkansas",2395 -2007-05-01,"Arkansas",1461 -2007-06-01,"Arkansas",879 -2007-07-01,"Arkansas",734 -2007-08-01,"Arkansas",672 -2007-09-01,"Arkansas",704 -2007-10-01,"Arkansas",798 -2007-11-01,"Arkansas",2315 -2007-12-01,"Arkansas",4766 -2008-01-01,"Arkansas",6890 -2008-02-01,"Arkansas",6959 -2008-03-01,"Arkansas",5127 -2008-04-01,"Arkansas",2869 -2008-05-01,"Arkansas",1583 -2008-06-01,"Arkansas",892 -2008-07-01,"Arkansas",698 -2008-08-01,"Arkansas",682 -2008-09-01,"Arkansas",751 -2008-10-01,"Arkansas",950 -2008-11-01,"Arkansas",2469 -2008-12-01,"Arkansas",5848 -2009-01-01,"Arkansas",7256 -2009-02-01,"Arkansas",6183 -2009-03-01,"Arkansas",4408 -2009-04-01,"Arkansas",3082 -2009-05-01,"Arkansas",1285 -2009-06-01,"Arkansas",888 -2009-07-01,"Arkansas",686 -2009-08-01,"Arkansas",692 -2009-09-01,"Arkansas",700 -2009-10-01,"Arkansas",1080 -2009-11-01,"Arkansas",2091 -2009-12-01,"Arkansas",4901 -2010-01-01,"Arkansas",8272 -2010-02-01,"Arkansas",7327 -2010-03-01,"Arkansas",6266 -2010-04-01,"Arkansas",2749 -2010-05-01,"Arkansas",1033 -2010-06-01,"Arkansas",775 -2010-07-01,"Arkansas",638 -2010-08-01,"Arkansas",625 -2010-09-01,"Arkansas",644 -2010-10-01,"Arkansas",914 -2010-11-01,"Arkansas",1910 -2010-12-01,"Arkansas",5087 -2011-01-01,"Arkansas",7822 -2011-02-01,"Arkansas",6901 -2011-03-01,"Arkansas",3990 -2011-04-01,"Arkansas",2882 -2011-05-01,"Arkansas",1319 -2011-06-01,"Arkansas",813 -2011-07-01,"Arkansas",747 -2011-08-01,"Arkansas",571 -2011-09-01,"Arkansas",687 -2011-10-01,"Arkansas",943 -2011-11-01,"Arkansas",2249 -2011-12-01,"Arkansas",4812 -2012-01-01,"Arkansas",5584 -2012-02-01,"Arkansas",4658 -2012-03-01,"Arkansas",3011 -2012-04-01,"Arkansas",1147 -2012-05-01,"Arkansas",804 -2012-06-01,"Arkansas",650 -2012-07-01,"Arkansas",606 -2012-08-01,"Arkansas",551 -2012-09-01,"Arkansas",618 -2012-10-01,"Arkansas",1145 -2012-11-01,"Arkansas",2930 -2012-12-01,"Arkansas",4486 -2013-01-01,"Arkansas",6620 -2013-02-01,"Arkansas",5316 -2013-03-01,"Arkansas",4977 -2013-04-01,"Arkansas",2433 -2013-05-01,"Arkansas",1377 -2013-06-01,"Arkansas",733 -2013-07-01,"Arkansas",612 -2013-08-01,"Arkansas",613 -2013-09-01,"Arkansas",606 -2013-10-01,"Arkansas",1062 -2013-11-01,"Arkansas",3735 -2013-12-01,"Arkansas",6904 -2014-01-01,"Arkansas",9194 -2014-02-01,"Arkansas",7527 -2014-03-01,"Arkansas",5222 -2014-04-01,"Arkansas",2463 -2014-05-01,"Arkansas",1265 -2014-06-01,"Arkansas",808 -2014-07-01,"Arkansas",648 -2014-08-01,"Arkansas",684 -2014-09-01,"Arkansas",719 -2014-10-01,"Arkansas",921 -2014-11-01,"Arkansas",2698 -2014-12-01,"Arkansas",5978 -2015-01-01,"Arkansas",8080 -2015-02-01,"Arkansas",7718 -2015-03-01,"Arkansas",4846 -2015-04-01,"Arkansas",1634 -2015-05-01,"Arkansas",942 -2015-06-01,"Arkansas",667 -2015-07-01,"Arkansas",598 -2015-08-01,"Arkansas",557 -2015-09-01,"Arkansas",586 -2015-10-01,"Arkansas",795 -2015-11-01,"Arkansas",2361 -2015-12-01,"Arkansas",4266 -2016-01-01,"Arkansas",6040 -2016-02-01,"Arkansas",4944 -2016-03-01,"Arkansas",2762 -2016-04-01,"Arkansas",1510 -2016-05-01,"Arkansas",937 -2016-06-01,"Arkansas",687 -2016-07-01,"Arkansas",584 -2016-08-01,"Arkansas",545 -2016-09-01,"Arkansas",609 -2016-10-01,"Arkansas",734 -2016-11-01,"Arkansas",1830 -2016-12-01,"Arkansas",5947 -2017-01-01,"Arkansas",5740 -2017-02-01,"Arkansas",3376 -2017-03-01,"Arkansas",2952 -2017-04-01,"Arkansas",1167 -2017-05-01,"Arkansas",952 -2017-06-01,"Arkansas",620 -2017-07-01,"Arkansas",570 -2017-08-01,"Arkansas",553 -2017-09-01,"Arkansas",585 -2017-10-01,"Arkansas",931 -2017-11-01,"Arkansas",2542 -2017-12-01,"Arkansas",5716 -2018-01-01,"Arkansas",8329 -2018-02-01,"Arkansas",5216 -2018-03-01,"Arkansas",4337 -2018-04-01,"Arkansas",2688 -2018-05-01,"Arkansas",987 -2018-06-01,"Arkansas",643 -2018-07-01,"Arkansas",545 -2018-08-01,"Arkansas",564 -2018-09-01,"Arkansas",607 -2018-10-01,"Arkansas",1293 -2018-11-01,"Arkansas",4142 -2018-12-01,"Arkansas",5629 -2019-01-01,"Arkansas",6631 -2019-02-01,"Arkansas",5127 -2019-03-01,"Arkansas",5714 -2019-04-01,"Arkansas",1984 -2019-05-01,"Arkansas",1292 -2019-06-01,"Arkansas",621 -2019-07-01,"Arkansas",627 -2019-08-01,"Arkansas",541 -2019-09-01,"Arkansas",565 -2019-10-01,"Arkansas",921 -2019-11-01,"Arkansas",4256 -2019-12-01,"Arkansas",5438 -2020-01-01,"Arkansas",6195 -2020-02-01,"Arkansas",5061 -2020-03-01,"Arkansas",4386 -2020-04-01,"Arkansas",2028 -2020-05-01,"Arkansas",1463 -2020-06-01,"Arkansas",664 -2020-07-01,"Arkansas",588 -2020-08-01,"Arkansas",518 -2020-09-01,"Arkansas",628 -2020-10-01,"Arkansas",1159 -2020-11-01,"Arkansas",2587 -2020-12-01,"Arkansas",5792 -2021-01-01,"Arkansas",7081 -2021-02-01,"Arkansas",7234 -1989-01-01,"California",87958 -1989-02-01,"California",75817 -1989-03-01,"California",53779 -1989-04-01,"California",37832 -1989-05-01,"California",31161 -1989-06-01,"California",26581 -1989-07-01,"California",22730 -1989-08-01,"California",22977 -1989-09-01,"California",24184 -1989-10-01,"California",28083 -1989-11-01,"California",40070 -1989-12-01,"California",63104 -1990-01-01,"California",78572 -1990-02-01,"California",73931 -1990-03-01,"California",60247 -1990-04-01,"California",37602 -1990-05-01,"California",30979 -1990-06-01,"California",25125 -1990-07-01,"California",22555 -1990-08-01,"California",22334 -1990-09-01,"California",22093 -1990-10-01,"California",24435 -1990-11-01,"California",40091 -1990-12-01,"California",76544 -1991-01-01,"California",81885 -1991-02-01,"California",52982 -1991-03-01,"California",60602 -1991-04-01,"California",46136 -1991-05-01,"California",34795 -1991-06-01,"California",28515 -1991-07-01,"California",24971 -1991-08-01,"California",22944 -1991-09-01,"California",23383 -1991-10-01,"California",26211 -1991-11-01,"California",39238 -1991-12-01,"California",67035 -1992-01-01,"California",77875 -1992-02-01,"California",61574 -1992-03-01,"California",46860 -1992-04-01,"California",37311 -1992-05-01,"California",28422 -1992-06-01,"California",24100 -1992-07-01,"California",22397 -1992-08-01,"California",22039 -1992-09-01,"California",21969 -1992-10-01,"California",24434 -1992-11-01,"California",37291 -1992-12-01,"California",75266 -1993-01-01,"California",87565 -1993-02-01,"California",66015 -1993-03-01,"California",50594 -1993-04-01,"California",36252 -1993-05-01,"California",29411 -1993-06-01,"California",25116 -1993-07-01,"California",23646 -1993-08-01,"California",22749 -1993-09-01,"California",23934 -1993-10-01,"California",25932 -1993-11-01,"California",39240 -1993-12-01,"California",70513 -1994-01-01,"California",72586 -1994-02-01,"California",66977 -1994-03-01,"California",52478 -1994-04-01,"California",35315 -1994-05-01,"California",37223 -1994-06-01,"California",26995 -1994-07-01,"California",24541 -1994-08-01,"California",23620 -1994-09-01,"California",21949 -1994-10-01,"California",25961 -1994-11-01,"California",56469 -1994-12-01,"California",76846 -1995-01-01,"California",79509 -1995-02-01,"California",50614 -1995-03-01,"California",52461 -1995-04-01,"California",43743 -1995-05-01,"California",38489 -1995-06-01,"California",28924 -1995-07-01,"California",25181 -1995-08-01,"California",21306 -1995-09-01,"California",22148 -1995-10-01,"California",24743 -1995-11-01,"California",33646 -1995-12-01,"California",56731 -1996-01-01,"California",66779 -1996-02-01,"California",58007 -1996-03-01,"California",52226 -1996-04-01,"California",36723 -1996-05-01,"California",30001 -1996-06-01,"California",25996 -1996-07-01,"California",18649 -1996-08-01,"California",21757 -1996-09-01,"California",26104 -1996-10-01,"California",30462 -1996-11-01,"California",43702 -1996-12-01,"California",62905 -1997-01-01,"California",73871 -1997-02-01,"California",65672 -1997-03-01,"California",47664 -1997-04-01,"California",38704 -1997-05-01,"California",28268 -1997-06-01,"California",23226 -1997-07-01,"California",26444 -1997-08-01,"California",20643 -1997-09-01,"California",21448 -1997-10-01,"California",24538 -1997-11-01,"California",39940 -1997-12-01,"California",68486 -1998-01-01,"California",82305 -1998-02-01,"California",76213 -1998-03-01,"California",62009 -1998-04-01,"California",54074 -1998-05-01,"California",38119 -1998-06-01,"California",33208 -1998-07-01,"California",25149 -1998-08-01,"California",21625 -1998-09-01,"California",22038 -1998-10-01,"California",26159 -1998-11-01,"California",40200 -1998-12-01,"California",68831 -1999-01-01,"California",88358 -1999-02-01,"California",77994 -1999-03-01,"California",67420 -1999-04-01,"California",62128 -1999-05-01,"California",40605 -1999-06-01,"California",32960 -1999-07-01,"California",25727 -1999-08-01,"California",23376 -1999-09-01,"California",24496 -1999-10-01,"California",25265 -1999-11-01,"California",34488 -1999-12-01,"California",65679 -2000-01-01,"California",66741 -2000-02-01,"California",65334 -2000-03-01,"California",62855 -2000-04-01,"California",39046 -2000-05-01,"California",31735 -2000-06-01,"California",27625 -2000-07-01,"California",24448 -2000-08-01,"California",22116 -2000-09-01,"California",24496 -2000-10-01,"California",31757 -2000-11-01,"California",52106 -2000-12-01,"California",68470 -2001-01-01,"California",85495 -2001-02-01,"California",71801 -2001-03-01,"California",59144 -2001-04-01,"California",41839 -2001-05-01,"California",30699 -2001-06-01,"California",23066 -2001-07-01,"California",24195 -2001-08-01,"California",22473 -2001-09-01,"California",21331 -2001-10-01,"California",29189 -2001-11-01,"California",39037 -2001-12-01,"California",64425 -2002-01-01,"California",79491 -2002-02-01,"California",64122 -2002-03-01,"California",57999 -2002-04-01,"California",43106 -2002-05-01,"California",34646 -2002-06-01,"California",26367 -2002-07-01,"California",24891 -2002-08-01,"California",23494 -2002-09-01,"California",23150 -2002-10-01,"California",31451 -2002-11-01,"California",36668 -2002-12-01,"California",65611 -2003-01-01,"California",62742 -2003-02-01,"California",61307 -2003-03-01,"California",51363 -2003-04-01,"California",46472 -2003-05-01,"California",36234 -2003-06-01,"California",27704 -2003-07-01,"California",24968 -2003-08-01,"California",22166 -2003-09-01,"California",22084 -2003-10-01,"California",25736 -2003-11-01,"California",43421 -2003-12-01,"California",73760 -2004-01-01,"California",80607 -2004-02-01,"California",68760 -2004-03-01,"California",48651 -2004-04-01,"California",35580 -2004-05-01,"California",28303 -2004-06-01,"California",26967 -2004-07-01,"California",24110 -2004-08-01,"California",22446 -2004-09-01,"California",21547 -2004-10-01,"California",30541 -2004-11-01,"California",49852 -2004-12-01,"California",74682 -2005-01-01,"California",76870 -2005-02-01,"California",62924 -2005-03-01,"California",50895 -2005-04-01,"California",40258 -2005-05-01,"California",31785 -2005-06-01,"California",28351 -2005-07-01,"California",23745 -2005-08-01,"California",21897 -2005-09-01,"California",23432 -2005-10-01,"California",28502 -2005-11-01,"California",35080 -2005-12-01,"California",59959 -2006-01-01,"California",65421 -2006-02-01,"California",55662 -2006-03-01,"California",68793 -2006-04-01,"California",47329 -2006-05-01,"California",32929 -2006-06-01,"California",26417 -2006-07-01,"California",21133 -2006-08-01,"California",20893 -2006-09-01,"California",22020 -2006-10-01,"California",28106 -2006-11-01,"California",37412 -2006-12-01,"California",65663 -2007-01-01,"California",85741 -2007-02-01,"California",62484 -2007-03-01,"California",49689 -2007-04-01,"California",37437 -2007-05-01,"California",32317 -2007-06-01,"California",26503 -2007-07-01,"California",23004 -2007-08-01,"California",21550 -2007-09-01,"California",21367 -2007-10-01,"California",27978 -2007-11-01,"California",37115 -2007-12-01,"California",67194 -2008-01-01,"California",84770 -2008-02-01,"California",69136 -2008-03-01,"California",51311 -2008-04-01,"California",38422 -2008-05-01,"California",32935 -2008-06-01,"California",24731 -2008-07-01,"California",22623 -2008-08-01,"California",20836 -2008-09-01,"California",20849 -2008-10-01,"California",25162 -2008-11-01,"California",31620 -2008-12-01,"California",66909 -2009-01-01,"California",67619 -2009-02-01,"California",63571 -2009-03-01,"California",53611 -2009-04-01,"California",40905 -2009-05-01,"California",28637 -2009-06-01,"California",26638 -2009-07-01,"California",22862 -2009-08-01,"California",20497 -2009-09-01,"California",20461 -2009-10-01,"California",26332 -2009-11-01,"California",37012 -2009-12-01,"California",72575 -2010-01-01,"California",70666 -2010-02-01,"California",58616 -2010-03-01,"California",52024 -2010-04-01,"California",44708 -2010-05-01,"California",33082 -2010-06-01,"California",26822 -2010-07-01,"California",23450 -2010-08-01,"California",22085 -2010-09-01,"California",22790 -2010-10-01,"California",27880 -2010-11-01,"California",45455 -2010-12-01,"California",67310 -2011-01-01,"California",70482 -2011-02-01,"California",65457 -2011-03-01,"California",51570 -2011-04-01,"California",34838 -2011-05-01,"California",32739 -2011-06-01,"California",27204 -2011-07-01,"California",26695 -2011-08-01,"California",25315 -2011-09-01,"California",22626 -2011-10-01,"California",24758 -2011-11-01,"California",49546 -2011-12-01,"California",81335 -2012-01-01,"California",71879 -2012-02-01,"California",60157 -2012-03-01,"California",55899 -2012-04-01,"California",38572 -2012-05-01,"California",28728 -2012-06-01,"California",23707 -2012-07-01,"California",22631 -2012-08-01,"California",20731 -2012-09-01,"California",19607 -2012-10-01,"California",24622 -2012-11-01,"California",41236 -2012-12-01,"California",70162 -2013-01-01,"California",85488 -2013-02-01,"California",64601 -2013-03-01,"California",43465 -2013-04-01,"California",31414 -2013-05-01,"California",26196 -2013-06-01,"California",22876 -2013-07-01,"California",20894 -2013-08-01,"California",21214 -2013-09-01,"California",19699 -2013-10-01,"California",28257 -2013-11-01,"California",42264 -2013-12-01,"California",75406 -2014-01-01,"California",61049 -2014-02-01,"California",49235 -2014-03-01,"California",38959 -2014-04-01,"California",30716 -2014-05-01,"California",25224 -2014-06-01,"California",21690 -2014-07-01,"California",20299 -2014-08-01,"California",18834 -2014-09-01,"California",18456 -2014-10-01,"California",21140 -2014-11-01,"California",34011 -2014-12-01,"California",57876 -2015-01-01,"California",60216 -2015-02-01,"California",40902 -2015-03-01,"California",32140 -2015-04-01,"California",29622 -2015-05-01,"California",27358 -2015-06-01,"California",20889 -2015-07-01,"California",18932 -2015-08-01,"California",17399 -2015-09-01,"California",17032 -2015-10-01,"California",19235 -2015-11-01,"California",44392 -2015-12-01,"California",73056 -2016-01-01,"California",69803 -2016-02-01,"California",43748 -2016-03-01,"California",39795 -2016-04-01,"California",28203 -2016-05-01,"California",24772 -2016-06-01,"California",21252 -2016-07-01,"California",19533 -2016-08-01,"California",18613 -2016-09-01,"California",19918 -2016-10-01,"California",22234 -2016-11-01,"California",37485 -2016-12-01,"California",66473 -2017-01-01,"California",83528 -2017-02-01,"California",53979 -2017-03-01,"California",40607 -2017-04-01,"California",29707 -2017-05-01,"California",27253 -2017-06-01,"California",20886 -2017-07-01,"California",19094 -2017-08-01,"California",18027 -2017-09-01,"California",17775 -2017-10-01,"California",23670 -2017-11-01,"California",33950 -2017-12-01,"California",62530 -2018-01-01,"California",57512 -2018-02-01,"California",54556 -2018-03-01,"California",53115 -2018-04-01,"California",32039 -2018-05-01,"California",26759 -2018-06-01,"California",21806 -2018-07-01,"California",19784 -2018-08-01,"California",15058 -2018-09-01,"California",19154 -2018-10-01,"California",22607 -2018-11-01,"California",38251 -2018-12-01,"California",63275 -2019-01-01,"California",67257 -2019-02-01,"California",74192 -2019-03-01,"California",51706 -2019-04-01,"California",30632 -2019-05-01,"California",30649 -2019-06-01,"California",21322 -2019-07-01,"California",21403 -2019-08-01,"California",18498 -2019-09-01,"California",18490 -2019-10-01,"California",25563 -2019-11-01,"California",43975 -2019-12-01,"California",60983 -2020-01-01,"California",70232 -2020-02-01,"California",52704 -2020-03-01,"California",52770 -2020-04-01,"California",NA -2020-05-01,"California",27770 -2020-06-01,"California",22897 -2020-07-01,"California",22572 -2020-08-01,"California",19821 -2020-09-01,"California",19004 -2020-10-01,"California",23145 -2020-11-01,"California",45650 -2020-12-01,"California",67509 -2021-01-01,"California",68743 -2021-02-01,"California",52928 -1989-01-01,"Colorado",14966 -1989-02-01,"Colorado",15278 -1989-03-01,"Colorado",13652 -1989-04-01,"Colorado",8580 -1989-05-01,"Colorado",5694 -1989-06-01,"Colorado",3947 -1989-07-01,"Colorado",2778 -1989-08-01,"Colorado",2279 -1989-09-01,"Colorado",2601 -1989-10-01,"Colorado",3750 -1989-11-01,"Colorado",6975 -1989-12-01,"Colorado",11066 -1990-01-01,"Colorado",15699 -1990-02-01,"Colorado",13559 -1990-03-01,"Colorado",12631 -1990-04-01,"Colorado",9873 -1990-05-01,"Colorado",7248 -1990-06-01,"Colorado",4191 -1990-07-01,"Colorado",2478 -1990-08-01,"Colorado",2357 -1990-09-01,"Colorado",2331 -1990-10-01,"Colorado",3450 -1990-11-01,"Colorado",7142 -1990-12-01,"Colorado",10956 -1991-01-01,"Colorado",17902 -1991-02-01,"Colorado",15114 -1991-03-01,"Colorado",11686 -1991-04-01,"Colorado",9187 -1991-05-01,"Colorado",7108 -1991-06-01,"Colorado",3600 -1991-07-01,"Colorado",2569 -1991-08-01,"Colorado",2283 -1991-09-01,"Colorado",2367 -1991-10-01,"Colorado",3541 -1991-11-01,"Colorado",8076 -1991-12-01,"Colorado",14007 -1992-01-01,"Colorado",16198 -1992-02-01,"Colorado",14400 -1992-03-01,"Colorado",11499 -1992-04-01,"Colorado",8789 -1992-05-01,"Colorado",5005 -1992-06-01,"Colorado",3963 -1992-07-01,"Colorado",2809 -1992-08-01,"Colorado",2438 -1992-09-01,"Colorado",2644 -1992-10-01,"Colorado",3547 -1992-11-01,"Colorado",7607 -1992-12-01,"Colorado",15715 -1993-01-01,"Colorado",18551 -1993-02-01,"Colorado",15981 -1993-03-01,"Colorado",15025 -1993-04-01,"Colorado",9897 -1993-05-01,"Colorado",6505 -1993-06-01,"Colorado",3996 -1993-07-01,"Colorado",2851 -1993-08-01,"Colorado",2391 -1993-09-01,"Colorado",3027 -1993-10-01,"Colorado",4451 -1993-11-01,"Colorado",8984 -1993-12-01,"Colorado",14527 -1994-01-01,"Colorado",16252 -1994-02-01,"Colorado",15391 -1994-03-01,"Colorado",13500 -1994-04-01,"Colorado",9732 -1994-05-01,"Colorado",6819 -1994-06-01,"Colorado",3474 -1994-07-01,"Colorado",2546 -1994-08-01,"Colorado",2378 -1994-09-01,"Colorado",2440 -1994-10-01,"Colorado",4013 -1994-11-01,"Colorado",8388 -1994-12-01,"Colorado",14571 -1995-01-01,"Colorado",16254 -1995-02-01,"Colorado",14457 -1995-03-01,"Colorado",12862 -1995-04-01,"Colorado",9879 -1995-05-01,"Colorado",9143 -1995-06-01,"Colorado",6098 -1995-07-01,"Colorado",3590 -1995-08-01,"Colorado",2681 -1995-09-01,"Colorado",2773 -1995-10-01,"Colorado",5456 -1995-11-01,"Colorado",8830 -1995-12-01,"Colorado",12262 -1996-01-01,"Colorado",17597 -1996-02-01,"Colorado",17480 -1996-03-01,"Colorado",14685 -1996-04-01,"Colorado",11526 -1996-05-01,"Colorado",6901 -1996-06-01,"Colorado",4316 -1996-07-01,"Colorado",2869 -1996-08-01,"Colorado",2505 -1996-09-01,"Colorado",2773 -1996-10-01,"Colorado",4886 -1996-11-01,"Colorado",9571 -1996-12-01,"Colorado",15814 -1997-01-01,"Colorado",18564 -1997-02-01,"Colorado",17485 -1997-03-01,"Colorado",15768 -1997-04-01,"Colorado",10975 -1997-05-01,"Colorado",8492 -1997-06-01,"Colorado",4130 -1997-07-01,"Colorado",2965 -1997-08-01,"Colorado",2590 -1997-09-01,"Colorado",2714 -1997-10-01,"Colorado",4290 -1997-11-01,"Colorado",10147 -1997-12-01,"Colorado",17463 -1998-01-01,"Colorado",19710 -1998-02-01,"Colorado",16905 -1998-03-01,"Colorado",16272 -1998-04-01,"Colorado",11619 -1998-05-01,"Colorado",7886 -1998-06-01,"Colorado",1664 -1998-07-01,"Colorado",3454 -1998-08-01,"Colorado",2541 -1998-09-01,"Colorado",2806 -1998-10-01,"Colorado",4366 -1998-11-01,"Colorado",8806 -1998-12-01,"Colorado",14812 -1999-01-01,"Colorado",20903 -1999-02-01,"Colorado",15178 -1999-03-01,"Colorado",13479 -1999-04-01,"Colorado",10614 -1999-05-01,"Colorado",9579 -1999-06-01,"Colorado",4680 -1999-07-01,"Colorado",3086 -1999-08-01,"Colorado",2750 -1999-09-01,"Colorado",2978 -1999-10-01,"Colorado",5565 -1999-11-01,"Colorado",8173 -1999-12-01,"Colorado",14763 -2000-01-01,"Colorado",18846 -2000-02-01,"Colorado",16123 -2000-03-01,"Colorado",14321 -2000-04-01,"Colorado",11175 -2000-05-01,"Colorado",6487 -2000-06-01,"Colorado",4081 -2000-07-01,"Colorado",3005 -2000-08-01,"Colorado",2553 -2000-09-01,"Colorado",2706 -2000-10-01,"Colorado",5520 -2000-11-01,"Colorado",10855 -2000-12-01,"Colorado",20693 -2001-01-01,"Colorado",21953 -2001-02-01,"Colorado",20453 -2001-03-01,"Colorado",17880 -2001-04-01,"Colorado",12549 -2001-05-01,"Colorado",8218 -2001-06-01,"Colorado",4431 -2001-07-01,"Colorado",3058 -2001-08-01,"Colorado",2513 -2001-09-01,"Colorado",2801 -2001-10-01,"Colorado",4054 -2001-11-01,"Colorado",8518 -2001-12-01,"Colorado",17087 -2002-01-01,"Colorado",21103 -2002-02-01,"Colorado",20177 -2002-03-01,"Colorado",17430 -2002-04-01,"Colorado",8254 -2002-05-01,"Colorado",5232 -2002-06-01,"Colorado",2696 -2002-07-01,"Colorado",2617 -2002-08-01,"Colorado",2567 -2002-09-01,"Colorado",3581 -2002-10-01,"Colorado",9908 -2002-11-01,"Colorado",15622 -2002-12-01,"Colorado",19641 -2003-01-01,"Colorado",18246 -2003-02-01,"Colorado",20165 -2003-03-01,"Colorado",14786 -2003-04-01,"Colorado",8735 -2003-05-01,"Colorado",5675 -2003-06-01,"Colorado",3831 -2003-07-01,"Colorado",2769 -2003-08-01,"Colorado",2707 -2003-09-01,"Colorado",4560 -2003-10-01,"Colorado",5811 -2003-11-01,"Colorado",16094 -2003-12-01,"Colorado",20836 -2004-01-01,"Colorado",20385 -2004-02-01,"Colorado",19514 -2004-03-01,"Colorado",11395 -2004-04-01,"Colorado",8788 -2004-05-01,"Colorado",4949 -2004-06-01,"Colorado",3512 -2004-07-01,"Colorado",2837 -2004-08-01,"Colorado",2893 -2004-09-01,"Colorado",3971 -2004-10-01,"Colorado",7553 -2004-11-01,"Colorado",15431 -2004-12-01,"Colorado",19344 -2005-01-01,"Colorado",20489 -2005-02-01,"Colorado",16463 -2005-03-01,"Colorado",15332 -2005-04-01,"Colorado",10372 -2005-05-01,"Colorado",5798 -2005-06-01,"Colorado",3179 -2005-07-01,"Colorado",2847 -2005-08-01,"Colorado",2867 -2005-09-01,"Colorado",3173 -2005-10-01,"Colorado",7672 -2005-11-01,"Colorado",13372 -2005-12-01,"Colorado",22692 -2006-01-01,"Colorado",17381 -2006-02-01,"Colorado",18603 -2006-03-01,"Colorado",15870 -2006-04-01,"Colorado",8243 -2006-05-01,"Colorado",4581 -2006-06-01,"Colorado",2727 -2006-07-01,"Colorado",2847 -2006-08-01,"Colorado",2712 -2006-09-01,"Colorado",4258 -2006-10-01,"Colorado",8577 -2006-11-01,"Colorado",14259 -2006-12-01,"Colorado",19212 -2007-01-01,"Colorado",27751 -2007-02-01,"Colorado",19019 -2007-03-01,"Colorado",12351 -2007-04-01,"Colorado",10369 -2007-05-01,"Colorado",5509 -2007-06-01,"Colorado",3038 -2007-07-01,"Colorado",2782 -2007-08-01,"Colorado",2608 -2007-09-01,"Colorado",3375 -2007-10-01,"Colorado",6802 -2007-11-01,"Colorado",13654 -2007-12-01,"Colorado",23712 -2008-01-01,"Colorado",24561 -2008-02-01,"Colorado",19931 -2008-03-01,"Colorado",15898 -2008-04-01,"Colorado",10157 -2008-05-01,"Colorado",5715 -2008-06-01,"Colorado",3008 -2008-07-01,"Colorado",2824 -2008-08-01,"Colorado",3302 -2008-09-01,"Colorado",3580 -2008-10-01,"Colorado",7982 -2008-11-01,"Colorado",13048 -2008-12-01,"Colorado",23941 -2009-01-01,"Colorado",19946 -2009-02-01,"Colorado",16068 -2009-03-01,"Colorado",11497 -2009-04-01,"Colorado",11695 -2009-05-01,"Colorado",5609 -2009-06-01,"Colorado",3359 -2009-07-01,"Colorado",2865 -2009-08-01,"Colorado",2869 -2009-09-01,"Colorado",3776 -2009-10-01,"Colorado",11191 -2009-11-01,"Colorado",14873 -2009-12-01,"Colorado",25244 -2010-01-01,"Colorado",22720 -2010-02-01,"Colorado",20633 -2010-03-01,"Colorado",15526 -2010-04-01,"Colorado",10823 -2010-05-01,"Colorado",6962 -2010-06-01,"Colorado",3152 -2010-07-01,"Colorado",2842 -2010-08-01,"Colorado",3081 -2010-09-01,"Colorado",3242 -2010-10-01,"Colorado",6978 -2010-11-01,"Colorado",16284 -2010-12-01,"Colorado",18981 -2011-01-01,"Colorado",23711 -2011-02-01,"Colorado",21127 -2011-03-01,"Colorado",13420 -2011-04-01,"Colorado",9995 -2011-05-01,"Colorado",6305 -2011-06-01,"Colorado",2862 -2011-07-01,"Colorado",2523 -2011-08-01,"Colorado",2512 -2011-09-01,"Colorado",3167 -2011-10-01,"Colorado",7243 -2011-11-01,"Colorado",15031 -2011-12-01,"Colorado",22219 -2012-01-01,"Colorado",20898 -2012-02-01,"Colorado",22424 -2012-03-01,"Colorado",11633 -2012-04-01,"Colorado",5903 -2012-05-01,"Colorado",3745 -2012-06-01,"Colorado",2451 -2012-07-01,"Colorado",2396 -2012-08-01,"Colorado",2405 -2012-09-01,"Colorado",3180 -2012-10-01,"Colorado",7954 -2012-11-01,"Colorado",12657 -2012-12-01,"Colorado",20049 -2013-01-01,"Colorado",22830 -2013-02-01,"Colorado",19426 -2013-03-01,"Colorado",15454 -2013-04-01,"Colorado",12103 -2013-05-01,"Colorado",6550 -2013-06-01,"Colorado",3562 -2013-07-01,"Colorado",2610 -2013-08-01,"Colorado",2595 -2013-09-01,"Colorado",3121 -2013-10-01,"Colorado",8689 -2013-11-01,"Colorado",14493 -2013-12-01,"Colorado",23504 -2014-01-01,"Colorado",22977 -2014-02-01,"Colorado",19396 -2014-03-01,"Colorado",15296 -2014-04-01,"Colorado",9485 -2014-05-01,"Colorado",6319 -2014-06-01,"Colorado",3526 -2014-07-01,"Colorado",3220 -2014-08-01,"Colorado",2195 -2014-09-01,"Colorado",3533 -2014-10-01,"Colorado",6921 -2014-11-01,"Colorado",18632 -2014-12-01,"Colorado",20604 -2015-01-01,"Colorado",21591 -2015-02-01,"Colorado",16449 -2015-03-01,"Colorado",12871 -2015-04-01,"Colorado",8503 -2015-05-01,"Colorado",7343 -2015-06-01,"Colorado",3115 -2015-07-01,"Colorado",2633 -2015-08-01,"Colorado",2403 -2015-09-01,"Colorado",2924 -2015-10-01,"Colorado",5800 -2015-11-01,"Colorado",16187 -2015-12-01,"Colorado",22545 -2016-01-01,"Colorado",22222 -2016-02-01,"Colorado",17247 -2016-03-01,"Colorado",14373 -2016-04-01,"Colorado",10419 -2016-05-01,"Colorado",6529 -2016-06-01,"Colorado",2932 -2016-07-01,"Colorado",2560 -2016-08-01,"Colorado",2736 -2016-09-01,"Colorado",3217 -2016-10-01,"Colorado",6060 -2016-11-01,"Colorado",11559 -2016-12-01,"Colorado",22110 -2017-01-01,"Colorado",22722 -2017-02-01,"Colorado",14666 -2017-03-01,"Colorado",11823 -2017-04-01,"Colorado",8839 -2017-05-01,"Colorado",6264 -2017-06-01,"Colorado",2955 -2017-07-01,"Colorado",2657 -2017-08-01,"Colorado",2841 -2017-09-01,"Colorado",3557 -2017-10-01,"Colorado",8691 -2017-11-01,"Colorado",12514 -2017-12-01,"Colorado",21055 -2018-01-01,"Colorado",21216 -2018-02-01,"Colorado",19524 -2018-03-01,"Colorado",13764 -2018-04-01,"Colorado",9740 -2018-05-01,"Colorado",5539 -2018-06-01,"Colorado",2630 -2018-07-01,"Colorado",2507 -2018-08-01,"Colorado",2667 -2018-09-01,"Colorado",3134 -2018-10-01,"Colorado",8617 -2018-11-01,"Colorado",15984 -2018-12-01,"Colorado",22828 -2019-01-01,"Colorado",23587 -2019-02-01,"Colorado",20865 -2019-03-01,"Colorado",19642 -2019-04-01,"Colorado",9680 -2019-05-01,"Colorado",7697 -2019-06-01,"Colorado",3957 -2019-07-01,"Colorado",1028 -2019-08-01,"Colorado",2749 -2019-09-01,"Colorado",3101 -2019-10-01,"Colorado",10443 -2019-11-01,"Colorado",17685 -2019-12-01,"Colorado",22258 -2020-01-01,"Colorado",21671 -2020-02-01,"Colorado",20685 -2020-03-01,"Colorado",12625 -2020-04-01,"Colorado",12253 -2020-05-01,"Colorado",5252 -2020-06-01,"Colorado",3466 -2020-07-01,"Colorado",2804 -2020-08-01,"Colorado",2892 -2020-09-01,"Colorado",4247 -2020-10-01,"Colorado",10233 -2020-11-01,"Colorado",15888 -2020-12-01,"Colorado",23247 -2021-01-01,"Colorado",23277 -2021-02-01,"Colorado",22485 -1989-01-01,"Connecticut",6412 -1989-02-01,"Connecticut",5891 -1989-03-01,"Connecticut",5717 -1989-04-01,"Connecticut",3694 -1989-05-01,"Connecticut",2231 -1989-06-01,"Connecticut",1296 -1989-07-01,"Connecticut",1114 -1989-08-01,"Connecticut",996 -1989-09-01,"Connecticut",1138 -1989-10-01,"Connecticut",1986 -1989-11-01,"Connecticut",3221 -1989-12-01,"Connecticut",6991 -1990-01-01,"Connecticut",6690 -1990-02-01,"Connecticut",5673 -1990-03-01,"Connecticut",5000 -1990-04-01,"Connecticut",3708 -1990-05-01,"Connecticut",2203 -1990-06-01,"Connecticut",1345 -1990-07-01,"Connecticut",1100 -1990-08-01,"Connecticut",931 -1990-09-01,"Connecticut",1119 -1990-10-01,"Connecticut",1660 -1990-11-01,"Connecticut",3201 -1990-12-01,"Connecticut",4817 -1991-01-01,"Connecticut",6359 -1991-02-01,"Connecticut",5707 -1991-03-01,"Connecticut",5011 -1991-04-01,"Connecticut",3432 -1991-05-01,"Connecticut",1976 -1991-06-01,"Connecticut",1173 -1991-07-01,"Connecticut",915 -1991-08-01,"Connecticut",938 -1991-09-01,"Connecticut",1086 -1991-10-01,"Connecticut",1943 -1991-11-01,"Connecticut",3433 -1991-12-01,"Connecticut",5209 -1992-01-01,"Connecticut",6675 -1992-02-01,"Connecticut",6571 -1992-03-01,"Connecticut",5777 -1992-04-01,"Connecticut",4284 -1992-05-01,"Connecticut",2417 -1992-06-01,"Connecticut",1394 -1992-07-01,"Connecticut",1125 -1992-08-01,"Connecticut",996 -1992-09-01,"Connecticut",1155 -1992-10-01,"Connecticut",2271 -1992-11-01,"Connecticut",3876 -1992-12-01,"Connecticut",5855 -1993-01-01,"Connecticut",6726 -1993-02-01,"Connecticut",7402 -1993-03-01,"Connecticut",6255 -1993-04-01,"Connecticut",4043 -1993-05-01,"Connecticut",1947 -1993-06-01,"Connecticut",1274 -1993-07-01,"Connecticut",1040 -1993-08-01,"Connecticut",1059 -1993-09-01,"Connecticut",1128 -1993-10-01,"Connecticut",2317 -1993-11-01,"Connecticut",3922 -1993-12-01,"Connecticut",5101 -1994-01-01,"Connecticut",7795 -1994-02-01,"Connecticut",7960 -1994-03-01,"Connecticut",6527 -1994-04-01,"Connecticut",4038 -1994-05-01,"Connecticut",2162 -1994-06-01,"Connecticut",1397 -1994-07-01,"Connecticut",1022 -1994-08-01,"Connecticut",921 -1994-09-01,"Connecticut",1037 -1994-10-01,"Connecticut",1677 -1994-11-01,"Connecticut",2506 -1994-12-01,"Connecticut",4559 -1995-01-01,"Connecticut",6189 -1995-02-01,"Connecticut",6577 -1995-03-01,"Connecticut",5825 -1995-04-01,"Connecticut",4156 -1995-05-01,"Connecticut",2402 -1995-06-01,"Connecticut",1393 -1995-07-01,"Connecticut",1045 -1995-08-01,"Connecticut",884 -1995-09-01,"Connecticut",1035 -1995-10-01,"Connecticut",1479 -1995-11-01,"Connecticut",3449 -1995-12-01,"Connecticut",6389 -1996-01-01,"Connecticut",8159 -1996-02-01,"Connecticut",7147 -1996-03-01,"Connecticut",6245 -1996-04-01,"Connecticut",4399 -1996-05-01,"Connecticut",2303 -1996-06-01,"Connecticut",1274 -1996-07-01,"Connecticut",1088 -1996-08-01,"Connecticut",954 -1996-09-01,"Connecticut",992 -1996-10-01,"Connecticut",1840 -1996-11-01,"Connecticut",3522 -1996-12-01,"Connecticut",5842 -1997-01-01,"Connecticut",6335 -1997-02-01,"Connecticut",6622 -1997-03-01,"Connecticut",5243 -1997-04-01,"Connecticut",4435 -1997-05-01,"Connecticut",2362 -1997-06-01,"Connecticut",1398 -1997-07-01,"Connecticut",961 -1997-08-01,"Connecticut",914 -1997-09-01,"Connecticut",1014 -1997-10-01,"Connecticut",1629 -1997-11-01,"Connecticut",3672 -1997-12-01,"Connecticut",5977 -1998-01-01,"Connecticut",6197 -1998-02-01,"Connecticut",5526 -1998-03-01,"Connecticut",4997 -1998-04-01,"Connecticut",3600 -1998-05-01,"Connecticut",1858 -1998-06-01,"Connecticut",1183 -1998-07-01,"Connecticut",1017 -1998-08-01,"Connecticut",839 -1998-09-01,"Connecticut",927 -1998-10-01,"Connecticut",1518 -1998-11-01,"Connecticut",3224 -1998-12-01,"Connecticut",4442 -1999-01-01,"Connecticut",7147 -1999-02-01,"Connecticut",6119 -1999-03-01,"Connecticut",5814 -1999-04-01,"Connecticut",3644 -1999-05-01,"Connecticut",2004 -1999-06-01,"Connecticut",1249 -1999-07-01,"Connecticut",1066 -1999-08-01,"Connecticut",858 -1999-09-01,"Connecticut",1067 -1999-10-01,"Connecticut",1522 -1999-11-01,"Connecticut",3064 -1999-12-01,"Connecticut",4810 -2000-01-01,"Connecticut",6891 -2000-02-01,"Connecticut",7631 -2000-03-01,"Connecticut",4978 -2000-04-01,"Connecticut",3190 -2000-05-01,"Connecticut",2226 -2000-06-01,"Connecticut",1260 -2000-07-01,"Connecticut",953 -2000-08-01,"Connecticut",617 -2000-09-01,"Connecticut",979 -2000-10-01,"Connecticut",2262 -2000-11-01,"Connecticut",3793 -2000-12-01,"Connecticut",6755 -2001-01-01,"Connecticut",8497 -2001-02-01,"Connecticut",6257 -2001-03-01,"Connecticut",6176 -2001-04-01,"Connecticut",3678 -2001-05-01,"Connecticut",1317 -2001-06-01,"Connecticut",1216 -2001-07-01,"Connecticut",809 -2001-08-01,"Connecticut",1012 -2001-09-01,"Connecticut",889 -2001-10-01,"Connecticut",2135 -2001-11-01,"Connecticut",3611 -2001-12-01,"Connecticut",5425 -2002-01-01,"Connecticut",6166 -2002-02-01,"Connecticut",6316 -2002-03-01,"Connecticut",4958 -2002-04-01,"Connecticut",3934 -2002-05-01,"Connecticut",2366 -2002-06-01,"Connecticut",1424 -2002-07-01,"Connecticut",958 -2002-08-01,"Connecticut",1021 -2002-09-01,"Connecticut",991 -2002-10-01,"Connecticut",1751 -2002-11-01,"Connecticut",4066 -2002-12-01,"Connecticut",6324 -2003-01-01,"Connecticut",8306 -2003-02-01,"Connecticut",8398 -2003-03-01,"Connecticut",6612 -2003-04-01,"Connecticut",4123 -2003-05-01,"Connecticut",2579 -2003-06-01,"Connecticut",1663 -2003-07-01,"Connecticut",1165 -2003-08-01,"Connecticut",953 -2003-09-01,"Connecticut",761 -2003-10-01,"Connecticut",1846 -2003-11-01,"Connecticut",3457 -2003-12-01,"Connecticut",5764 -2004-01-01,"Connecticut",8524 -2004-02-01,"Connecticut",8190 -2004-03-01,"Connecticut",5823 -2004-04-01,"Connecticut",4393 -2004-05-01,"Connecticut",2144 -2004-06-01,"Connecticut",1449 -2004-07-01,"Connecticut",1049 -2004-08-01,"Connecticut",1060 -2004-09-01,"Connecticut",1038 -2004-10-01,"Connecticut",1841 -2004-11-01,"Connecticut",3006 -2004-12-01,"Connecticut",5661 -2005-01-01,"Connecticut",7922 -2005-02-01,"Connecticut",7531 -2005-03-01,"Connecticut",6682 -2005-04-01,"Connecticut",4323 -2005-05-01,"Connecticut",2448 -2005-06-01,"Connecticut",1505 -2005-07-01,"Connecticut",1056 -2005-08-01,"Connecticut",899 -2005-09-01,"Connecticut",980 -2005-10-01,"Connecticut",1616 -2005-11-01,"Connecticut",3349 -2005-12-01,"Connecticut",6211 -2006-01-01,"Connecticut",6808 -2006-02-01,"Connecticut",6015 -2006-03-01,"Connecticut",6341 -2006-04-01,"Connecticut",3662 -2006-05-01,"Connecticut",2327 -2006-06-01,"Connecticut",1372 -2006-07-01,"Connecticut",935 -2006-08-01,"Connecticut",979 -2006-09-01,"Connecticut",1055 -2006-10-01,"Connecticut",1743 -2006-11-01,"Connecticut",3226 -2006-12-01,"Connecticut",4607 -2007-01-01,"Connecticut",6075 -2007-02-01,"Connecticut",7861 -2007-03-01,"Connecticut",6991 -2007-04-01,"Connecticut",4825 -2007-05-01,"Connecticut",2140 -2007-06-01,"Connecticut",1462 -2007-07-01,"Connecticut",993 -2007-08-01,"Connecticut",1008 -2007-09-01,"Connecticut",1011 -2007-10-01,"Connecticut",1203 -2007-11-01,"Connecticut",3676 -2007-12-01,"Connecticut",6103 -2008-01-01,"Connecticut",7147 -2008-02-01,"Connecticut",6709 -2008-03-01,"Connecticut",6381 -2008-04-01,"Connecticut",4217 -2008-05-01,"Connecticut",2170 -2008-06-01,"Connecticut",1526 -2008-07-01,"Connecticut",1032 -2008-08-01,"Connecticut",1103 -2008-09-01,"Connecticut",1081 -2008-10-01,"Connecticut",1610 -2008-11-01,"Connecticut",3699 -2008-12-01,"Connecticut",6259 -2009-01-01,"Connecticut",8443 -2009-02-01,"Connecticut",7689 -2009-03-01,"Connecticut",6431 -2009-04-01,"Connecticut",3943 -2009-05-01,"Connecticut",1971 -2009-06-01,"Connecticut",1443 -2009-07-01,"Connecticut",1155 -2009-08-01,"Connecticut",1080 -2009-09-01,"Connecticut",983 -2009-10-01,"Connecticut",2049 -2009-11-01,"Connecticut",3187 -2009-12-01,"Connecticut",5620 -2010-01-01,"Connecticut",8705 -2010-02-01,"Connecticut",7502 -2010-03-01,"Connecticut",5377 -2010-04-01,"Connecticut",3131 -2010-05-01,"Connecticut",2013 -2010-06-01,"Connecticut",1185 -2010-07-01,"Connecticut",987 -2010-08-01,"Connecticut",1004 -2010-09-01,"Connecticut",951 -2010-10-01,"Connecticut",1699 -2010-11-01,"Connecticut",3639 -2010-12-01,"Connecticut",6536 -2011-01-01,"Connecticut",8793 -2011-02-01,"Connecticut",8037 -2011-03-01,"Connecticut",6127 -2011-04-01,"Connecticut",4344 -2011-05-01,"Connecticut",2160 -2011-06-01,"Connecticut",1345 -2011-07-01,"Connecticut",1133 -2011-08-01,"Connecticut",963 -2011-09-01,"Connecticut",1072 -2011-10-01,"Connecticut",1923 -2011-11-01,"Connecticut",3524 -2011-12-01,"Connecticut",5298 -2012-01-01,"Connecticut",7592 -2012-02-01,"Connecticut",6856 -2012-03-01,"Connecticut",4309 -2012-04-01,"Connecticut",3016 -2012-05-01,"Connecticut",1674 -2012-06-01,"Connecticut",1206 -2012-07-01,"Connecticut",1055 -2012-08-01,"Connecticut",971 -2012-09-01,"Connecticut",1253 -2012-10-01,"Connecticut",1993 -2012-11-01,"Connecticut",4686 -2012-12-01,"Connecticut",6440 -2013-01-01,"Connecticut",8251 -2013-02-01,"Connecticut",7731 -2013-03-01,"Connecticut",6390 -2013-04-01,"Connecticut",4103 -2013-05-01,"Connecticut",1886 -2013-06-01,"Connecticut",1322 -2013-07-01,"Connecticut",970 -2013-08-01,"Connecticut",930 -2013-09-01,"Connecticut",1087 -2013-10-01,"Connecticut",1715 -2013-11-01,"Connecticut",4624 -2013-12-01,"Connecticut",7795 -2014-01-01,"Connecticut",9677 -2014-02-01,"Connecticut",8875 -2014-03-01,"Connecticut",8035 -2014-04-01,"Connecticut",4620 -2014-05-01,"Connecticut",2325 -2014-06-01,"Connecticut",1311 -2014-07-01,"Connecticut",1036 -2014-08-01,"Connecticut",974 -2014-09-01,"Connecticut",1046 -2014-10-01,"Connecticut",1776 -2014-11-01,"Connecticut",4670 -2014-12-01,"Connecticut",6846 -2015-01-01,"Connecticut",10035 -2015-02-01,"Connecticut",10279 -2015-03-01,"Connecticut",8749 -2015-04-01,"Connecticut",4766 -2015-05-01,"Connecticut",2112 -2015-06-01,"Connecticut",1330 -2015-07-01,"Connecticut",1089 -2015-08-01,"Connecticut",970 -2015-09-01,"Connecticut",948 -2015-10-01,"Connecticut",2101 -2015-11-01,"Connecticut",3846 -2015-12-01,"Connecticut",4749 -2016-01-01,"Connecticut",8259 -2016-02-01,"Connecticut",7649 -2016-03-01,"Connecticut",5351 -2016-04-01,"Connecticut",4070 -2016-05-01,"Connecticut",2294 -2016-06-01,"Connecticut",1312 -2016-07-01,"Connecticut",1034 -2016-08-01,"Connecticut",897 -2016-09-01,"Connecticut",962 -2016-10-01,"Connecticut",1971 -2016-11-01,"Connecticut",4432 -2016-12-01,"Connecticut",7814 -2017-01-01,"Connecticut",8549 -2017-02-01,"Connecticut",7199 -2017-03-01,"Connecticut",7844 -2017-04-01,"Connecticut",3529 -2017-05-01,"Connecticut",2231 -2017-06-01,"Connecticut",1380 -2017-07-01,"Connecticut",1075 -2017-08-01,"Connecticut",1025 -2017-09-01,"Connecticut",1091 -2017-10-01,"Connecticut",1430 -2017-11-01,"Connecticut",4790 -2017-12-01,"Connecticut",8288 -2018-01-01,"Connecticut",10580 -2018-02-01,"Connecticut",6900 -2018-03-01,"Connecticut",7422 -2018-04-01,"Connecticut",5285 -2018-05-01,"Connecticut",2010 -2018-06-01,"Connecticut",1283 -2018-07-01,"Connecticut",1066 -2018-08-01,"Connecticut",951 -2018-09-01,"Connecticut",1052 -2018-10-01,"Connecticut",2515 -2018-11-01,"Connecticut",6067 -2018-12-01,"Connecticut",7970 -2019-01-01,"Connecticut",9800 -2019-02-01,"Connecticut",8189 -2019-03-01,"Connecticut",7201 -2019-04-01,"Connecticut",3792 -2019-05-01,"Connecticut",2278 -2019-06-01,"Connecticut",1338 -2019-07-01,"Connecticut",1025 -2019-08-01,"Connecticut",933 -2019-09-01,"Connecticut",1066 -2019-10-01,"Connecticut",1974 -2019-11-01,"Connecticut",6140 -2019-12-01,"Connecticut",8492 -2020-01-01,"Connecticut",8341 -2020-02-01,"Connecticut",8293 -2020-03-01,"Connecticut",5798 -2020-04-01,"Connecticut",4839 -2020-05-01,"Connecticut",2637 -2020-06-01,"Connecticut",1596 -2020-07-01,"Connecticut",1213 -2020-08-01,"Connecticut",1047 -2020-09-01,"Connecticut",1148 -2020-10-01,"Connecticut",2458 -2020-11-01,"Connecticut",NA -2020-12-01,"Connecticut",7963 -2021-01-01,"Connecticut",9778 -2021-02-01,"Connecticut",8755 -1989-01-01,"Delaware",1257 -1989-02-01,"Delaware",1153 -1989-03-01,"Delaware",1223 -1989-04-01,"Delaware",793 -1989-05-01,"Delaware",466 -1989-06-01,"Delaware",272 -1989-07-01,"Delaware",192 -1989-08-01,"Delaware",189 -1989-09-01,"Delaware",207 -1989-10-01,"Delaware",275 -1989-11-01,"Delaware",485 -1989-12-01,"Delaware",1085 -1990-01-01,"Delaware",1613 -1990-02-01,"Delaware",1069 -1990-03-01,"Delaware",1008 -1990-04-01,"Delaware",797 -1990-05-01,"Delaware",449 -1990-06-01,"Delaware",260 -1990-07-01,"Delaware",183 -1990-08-01,"Delaware",166 -1990-09-01,"Delaware",190 -1990-10-01,"Delaware",222 -1990-11-01,"Delaware",483 -1990-12-01,"Delaware",830 -1991-01-01,"Delaware",1249 -1991-02-01,"Delaware",1217 -1991-03-01,"Delaware",1079 -1991-04-01,"Delaware",795 -1991-05-01,"Delaware",409 -1991-06-01,"Delaware",211 -1991-07-01,"Delaware",169 -1991-08-01,"Delaware",186 -1991-09-01,"Delaware",175 -1991-10-01,"Delaware",261 -1991-11-01,"Delaware",547 -1991-12-01,"Delaware",892 -1992-01-01,"Delaware",1303 -1992-02-01,"Delaware",1417 -1992-03-01,"Delaware",1158 -1992-04-01,"Delaware",948 -1992-05-01,"Delaware",528 -1992-06-01,"Delaware",301 -1992-07-01,"Delaware",197 -1992-08-01,"Delaware",179 -1992-09-01,"Delaware",183 -1992-10-01,"Delaware",307 -1992-11-01,"Delaware",628 -1992-12-01,"Delaware",1044 -1993-01-01,"Delaware",1304 -1993-02-01,"Delaware",1386 -1993-03-01,"Delaware",1487 -1993-04-01,"Delaware",1019 -1993-05-01,"Delaware",448 -1993-06-01,"Delaware",243 -1993-07-01,"Delaware",185 -1993-08-01,"Delaware",167 -1993-09-01,"Delaware",185 -1993-10-01,"Delaware",289 -1993-11-01,"Delaware",609 -1993-12-01,"Delaware",974 -1994-01-01,"Delaware",1579 -1994-02-01,"Delaware",1836 -1994-03-01,"Delaware",1480 -1994-04-01,"Delaware",879 -1994-05-01,"Delaware",397 -1994-06-01,"Delaware",281 -1994-07-01,"Delaware",179 -1994-08-01,"Delaware",159 -1994-09-01,"Delaware",180 -1994-10-01,"Delaware",259 -1994-11-01,"Delaware",459 -1994-12-01,"Delaware",869 -1995-01-01,"Delaware",1359 -1995-02-01,"Delaware",1487 -1995-03-01,"Delaware",1417 -1995-04-01,"Delaware",865 -1995-05-01,"Delaware",501 -1995-06-01,"Delaware",264 -1995-07-01,"Delaware",197 -1995-08-01,"Delaware",177 -1995-09-01,"Delaware",176 -1995-10-01,"Delaware",230 -1995-11-01,"Delaware",601 -1995-12-01,"Delaware",1231 -1996-01-01,"Delaware",1701 -1996-02-01,"Delaware",1918 -1996-03-01,"Delaware",1504 -1996-04-01,"Delaware",1116 -1996-05-01,"Delaware",516 -1996-06-01,"Delaware",310 -1996-07-01,"Delaware",196 -1996-08-01,"Delaware",175 -1996-09-01,"Delaware",181 -1996-10-01,"Delaware",291 -1996-11-01,"Delaware",648 -1996-12-01,"Delaware",1236 -1997-01-01,"Delaware",1558 -1997-02-01,"Delaware",1621 -1997-03-01,"Delaware",1272 -1997-04-01,"Delaware",948 -1997-05-01,"Delaware",560 -1997-06-01,"Delaware",320 -1997-07-01,"Delaware",195 -1997-08-01,"Delaware",179 -1997-09-01,"Delaware",184 -1997-10-01,"Delaware",252 -1997-11-01,"Delaware",671 -1997-12-01,"Delaware",1213 -1998-01-01,"Delaware",1398 -1998-02-01,"Delaware",1351 -1998-03-01,"Delaware",1240 -1998-04-01,"Delaware",840 -1998-05-01,"Delaware",446 -1998-06-01,"Delaware",250 -1998-07-01,"Delaware",196 -1998-08-01,"Delaware",164 -1998-09-01,"Delaware",176 -1998-10-01,"Delaware",231 -1998-11-01,"Delaware",571 -1998-12-01,"Delaware",895 -1999-01-01,"Delaware",1562 -1999-02-01,"Delaware",1472 -1999-03-01,"Delaware",1577 -1999-04-01,"Delaware",991 -1999-05-01,"Delaware",498 -1999-06-01,"Delaware",254 -1999-07-01,"Delaware",202 -1999-08-01,"Delaware",168 -1999-09-01,"Delaware",169 -1999-10-01,"Delaware",278 -1999-11-01,"Delaware",576 -1999-12-01,"Delaware",1116 -2000-01-01,"Delaware",1800 -2000-02-01,"Delaware",1662 -2000-03-01,"Delaware",1178 -2000-04-01,"Delaware",985 -2000-05-01,"Delaware",655 -2000-06-01,"Delaware",294 -2000-07-01,"Delaware",246 -2000-08-01,"Delaware",188 -2000-09-01,"Delaware",172 -2000-10-01,"Delaware",270 -2000-11-01,"Delaware",615 -2000-12-01,"Delaware",1404 -2001-01-01,"Delaware",1902 -2001-02-01,"Delaware",1678 -2001-03-01,"Delaware",1531 -2001-04-01,"Delaware",1026 -2001-05-01,"Delaware",451 -2001-06-01,"Delaware",269 -2001-07-01,"Delaware",212 -2001-08-01,"Delaware",161 -2001-09-01,"Delaware",183 -2001-10-01,"Delaware",334 -2001-11-01,"Delaware",615 -2001-12-01,"Delaware",815 -2002-01-01,"Delaware",1766 -2002-02-01,"Delaware",1455 -2002-03-01,"Delaware",1352 -2002-04-01,"Delaware",955 -2002-05-01,"Delaware",483 -2002-06-01,"Delaware",279 -2002-07-01,"Delaware",201 -2002-08-01,"Delaware",171 -2002-09-01,"Delaware",180 -2002-10-01,"Delaware",275 -2002-11-01,"Delaware",865 -2002-12-01,"Delaware",1568 -2003-01-01,"Delaware",2231 -2003-02-01,"Delaware",2018 -2003-03-01,"Delaware",1566 -2003-04-01,"Delaware",966 -2003-05-01,"Delaware",535 -2003-06-01,"Delaware",350 -2003-07-01,"Delaware",217 -2003-08-01,"Delaware",181 -2003-09-01,"Delaware",194 -2003-10-01,"Delaware",412 -2003-11-01,"Delaware",759 -2003-12-01,"Delaware",1338 -2004-01-01,"Delaware",2339 -2004-02-01,"Delaware",1962 -2004-03-01,"Delaware",1330 -2004-04-01,"Delaware",905 -2004-05-01,"Delaware",398 -2004-06-01,"Delaware",219 -2004-07-01,"Delaware",193 -2004-08-01,"Delaware",180 -2004-09-01,"Delaware",199 -2004-10-01,"Delaware",345 -2004-11-01,"Delaware",818 -2004-12-01,"Delaware",1509 -2005-01-01,"Delaware",2031 -2005-02-01,"Delaware",1824 -2005-03-01,"Delaware",1705 -2005-04-01,"Delaware",790 -2005-05-01,"Delaware",468 -2005-06-01,"Delaware",276 -2005-07-01,"Delaware",197 -2005-08-01,"Delaware",181 -2005-09-01,"Delaware",182 -2005-10-01,"Delaware",285 -2005-11-01,"Delaware",721 -2005-12-01,"Delaware",1679 -2006-01-01,"Delaware",1743 -2006-02-01,"Delaware",1700 -2006-03-01,"Delaware",1346 -2006-04-01,"Delaware",710 -2006-05-01,"Delaware",343 -2006-06-01,"Delaware",232 -2006-07-01,"Delaware",192 -2006-08-01,"Delaware",176 -2006-09-01,"Delaware",182 -2006-10-01,"Delaware",363 -2006-11-01,"Delaware",808 -2006-12-01,"Delaware",1317 -2007-01-01,"Delaware",1561 -2007-02-01,"Delaware",2133 -2007-03-01,"Delaware",1594 -2007-04-01,"Delaware",916 -2007-05-01,"Delaware",421 -2007-06-01,"Delaware",256 -2007-07-01,"Delaware",188 -2007-08-01,"Delaware",168 -2007-09-01,"Delaware",183 -2007-10-01,"Delaware",221 -2007-11-01,"Delaware",798 -2007-12-01,"Delaware",1559 -2008-01-01,"Delaware",1849 -2008-02-01,"Delaware",1782 -2008-03-01,"Delaware",1393 -2008-04-01,"Delaware",770 -2008-05-01,"Delaware",423 -2008-06-01,"Delaware",306 -2008-07-01,"Delaware",176 -2008-08-01,"Delaware",176 -2008-09-01,"Delaware",165 -2008-10-01,"Delaware",278 -2008-11-01,"Delaware",882 -2008-12-01,"Delaware",1675 -2009-01-01,"Delaware",2236 -2009-02-01,"Delaware",1792 -2009-03-01,"Delaware",1466 -2009-04-01,"Delaware",806 -2009-05-01,"Delaware",370 -2009-06-01,"Delaware",242 -2009-07-01,"Delaware",190 -2009-08-01,"Delaware",175 -2009-09-01,"Delaware",186 -2009-10-01,"Delaware",370 -2009-11-01,"Delaware",702 -2009-12-01,"Delaware",1513 -2010-01-01,"Delaware",2197 -2010-02-01,"Delaware",1942 -2010-03-01,"Delaware",1309 -2010-04-01,"Delaware",585 -2010-05-01,"Delaware",348 -2010-06-01,"Delaware",228 -2010-07-01,"Delaware",195 -2010-08-01,"Delaware",192 -2010-09-01,"Delaware",180 -2010-10-01,"Delaware",296 -2010-11-01,"Delaware",755 -2010-12-01,"Delaware",1899 -2011-01-01,"Delaware",2456 -2011-02-01,"Delaware",1763 -2011-03-01,"Delaware",1383 -2011-04-01,"Delaware",747 -2011-05-01,"Delaware",359 -2011-06-01,"Delaware",177 -2011-07-01,"Delaware",148 -2011-08-01,"Delaware",200 -2011-09-01,"Delaware",176 -2011-10-01,"Delaware",435 -2011-11-01,"Delaware",861 -2011-12-01,"Delaware",1323 -2012-01-01,"Delaware",1808 -2012-02-01,"Delaware",1461 -2012-03-01,"Delaware",912 -2012-04-01,"Delaware",604 -2012-05-01,"Delaware",332 -2012-06-01,"Delaware",195 -2012-07-01,"Delaware",155 -2012-08-01,"Delaware",141 -2012-09-01,"Delaware",161 -2012-10-01,"Delaware",326 -2012-11-01,"Delaware",1132 -2012-12-01,"Delaware",1337 -2013-01-01,"Delaware",1901 -2013-02-01,"Delaware",1856 -2013-03-01,"Delaware",1688 -2013-04-01,"Delaware",723 -2013-05-01,"Delaware",343 -2013-06-01,"Delaware",200 -2013-07-01,"Delaware",152 -2013-08-01,"Delaware",160 -2013-09-01,"Delaware",183 -2013-10-01,"Delaware",313 -2013-11-01,"Delaware",1016 -2013-12-01,"Delaware",1663 -2014-01-01,"Delaware",2463 -2014-02-01,"Delaware",2138 -2014-03-01,"Delaware",1858 -2014-04-01,"Delaware",825 -2014-05-01,"Delaware",496 -2014-06-01,"Delaware",196 -2014-07-01,"Delaware",137 -2014-08-01,"Delaware",161 -2014-09-01,"Delaware",158 -2014-10-01,"Delaware",292 -2014-11-01,"Delaware",949 -2014-12-01,"Delaware",1644 -2015-01-01,"Delaware",2665 -2015-02-01,"Delaware",2533 -2015-03-01,"Delaware",2076 -2015-04-01,"Delaware",754 -2015-05-01,"Delaware",289 -2015-06-01,"Delaware",194 -2015-07-01,"Delaware",175 -2015-08-01,"Delaware",178 -2015-09-01,"Delaware",168 -2015-10-01,"Delaware",406 -2015-11-01,"Delaware",772 -2015-12-01,"Delaware",1049 -2016-01-01,"Delaware",2009 -2016-02-01,"Delaware",1812 -2016-03-01,"Delaware",1094 -2016-04-01,"Delaware",794 -2016-05-01,"Delaware",458 -2016-06-01,"Delaware",224 -2016-07-01,"Delaware",164 -2016-08-01,"Delaware",155 -2016-09-01,"Delaware",165 -2016-10-01,"Delaware",281 -2016-11-01,"Delaware",794 -2016-12-01,"Delaware",1711 -2017-01-01,"Delaware",1951 -2017-02-01,"Delaware",1397 -2017-03-01,"Delaware",1689 -2017-04-01,"Delaware",612 -2017-05-01,"Delaware",350 -2017-06-01,"Delaware",207 -2017-07-01,"Delaware",151 -2017-08-01,"Delaware",158 -2017-09-01,"Delaware",172 -2017-10-01,"Delaware",249 -2017-11-01,"Delaware",953 -2017-12-01,"Delaware",2007 -2018-01-01,"Delaware",2421 -2018-02-01,"Delaware",1655 -2018-03-01,"Delaware",2092 -2018-04-01,"Delaware",1178 -2018-05-01,"Delaware",372 -2018-06-01,"Delaware",200 -2018-07-01,"Delaware",179 -2018-08-01,"Delaware",179 -2018-09-01,"Delaware",157 -2018-10-01,"Delaware",402 -2018-11-01,"Delaware",1362 -2018-12-01,"Delaware",1879 -2019-01-01,"Delaware",2515 -2019-02-01,"Delaware",2084 -2019-03-01,"Delaware",1730 -2019-04-01,"Delaware",689 -2019-05-01,"Delaware",363 -2019-06-01,"Delaware",192 -2019-07-01,"Delaware",184 -2019-08-01,"Delaware",168 -2019-09-01,"Delaware",178 -2019-10-01,"Delaware",288 -2019-11-01,"Delaware",1266 -2019-12-01,"Delaware",1986 -2020-01-01,"Delaware",2044 -2020-02-01,"Delaware",NA -2020-03-01,"Delaware",NA -2020-04-01,"Delaware",NA -2020-05-01,"Delaware",556 -2020-06-01,"Delaware",238 -2020-07-01,"Delaware",189 -2020-08-01,"Delaware",166 -2020-09-01,"Delaware",201 -2020-10-01,"Delaware",338 -2020-11-01,"Delaware",846 -2020-12-01,"Delaware",1925 -2021-01-01,"Delaware",2417 -2021-02-01,"Delaware",2291 -1989-01-01,"District of Columbia",2903 -1989-02-01,"District of Columbia",2556 -1989-03-01,"District of Columbia",2762 -1989-04-01,"District of Columbia",1663 -1989-05-01,"District of Columbia",1025 -1989-06-01,"District of Columbia",649 -1989-07-01,"District of Columbia",507 -1989-08-01,"District of Columbia",483 -1989-09-01,"District of Columbia",494 -1989-10-01,"District of Columbia",655 -1989-11-01,"District of Columbia",1099 -1989-12-01,"District of Columbia",2637 -1990-01-01,"District of Columbia",3258 -1990-02-01,"District of Columbia",2193 -1990-03-01,"District of Columbia",1984 -1990-04-01,"District of Columbia",1522 -1990-05-01,"District of Columbia",849 -1990-06-01,"District of Columbia",596 -1990-07-01,"District of Columbia",490 -1990-08-01,"District of Columbia",433 -1990-09-01,"District of Columbia",435 -1990-10-01,"District of Columbia",542 -1990-11-01,"District of Columbia",1005 -1990-12-01,"District of Columbia",1828 -1991-01-01,"District of Columbia",2703 -1991-02-01,"District of Columbia",2543 -1991-03-01,"District of Columbia",2076 -1991-04-01,"District of Columbia",1493 -1991-05-01,"District of Columbia",804 -1991-06-01,"District of Columbia",503 -1991-07-01,"District of Columbia",460 -1991-08-01,"District of Columbia",432 -1991-09-01,"District of Columbia",463 -1991-10-01,"District of Columbia",587 -1991-11-01,"District of Columbia",1220 -1991-12-01,"District of Columbia",2001 -1992-01-01,"District of Columbia",2683 -1992-02-01,"District of Columbia",2829 -1992-03-01,"District of Columbia",2172 -1992-04-01,"District of Columbia",1820 -1992-05-01,"District of Columbia",948 -1992-06-01,"District of Columbia",630 -1992-07-01,"District of Columbia",469 -1992-08-01,"District of Columbia",420 -1992-09-01,"District of Columbia",446 -1992-10-01,"District of Columbia",642 -1992-11-01,"District of Columbia",1314 -1992-12-01,"District of Columbia",2213 -1993-01-01,"District of Columbia",2768 -1993-02-01,"District of Columbia",2823 -1993-03-01,"District of Columbia",2867 -1993-04-01,"District of Columbia",1641 -1993-05-01,"District of Columbia",825 -1993-06-01,"District of Columbia",546 -1993-07-01,"District of Columbia",437 -1993-08-01,"District of Columbia",419 -1993-09-01,"District of Columbia",427 -1993-10-01,"District of Columbia",588 -1993-11-01,"District of Columbia",1115 -1993-12-01,"District of Columbia",2134 -1994-01-01,"District of Columbia",3317 -1994-02-01,"District of Columbia",3018 -1994-03-01,"District of Columbia",2437 -1994-04-01,"District of Columbia",1402 -1994-05-01,"District of Columbia",725 -1994-06-01,"District of Columbia",527 -1994-07-01,"District of Columbia",427 -1994-08-01,"District of Columbia",389 -1994-09-01,"District of Columbia",403 -1994-10-01,"District of Columbia",547 -1994-11-01,"District of Columbia",928 -1994-12-01,"District of Columbia",1746 -1995-01-01,"District of Columbia",2503 -1995-02-01,"District of Columbia",2877 -1995-03-01,"District of Columbia",2239 -1995-04-01,"District of Columbia",1299 -1995-05-01,"District of Columbia",813 -1995-06-01,"District of Columbia",472 -1995-07-01,"District of Columbia",431 -1995-08-01,"District of Columbia",379 -1995-09-01,"District of Columbia",401 -1995-10-01,"District of Columbia",452 -1995-11-01,"District of Columbia",1246 -1995-12-01,"District of Columbia",2579 -1996-01-01,"District of Columbia",3302 -1996-02-01,"District of Columbia",3083 -1996-03-01,"District of Columbia",2376 -1996-04-01,"District of Columbia",1712 -1996-05-01,"District of Columbia",807 -1996-06-01,"District of Columbia",582 -1996-07-01,"District of Columbia",412 -1996-08-01,"District of Columbia",380 -1996-09-01,"District of Columbia",401 -1996-10-01,"District of Columbia",578 -1996-11-01,"District of Columbia",1252 -1996-12-01,"District of Columbia",2406 -1997-01-01,"District of Columbia",2708 -1997-02-01,"District of Columbia",2655 -1997-03-01,"District of Columbia",2049 -1997-04-01,"District of Columbia",1316 -1997-05-01,"District of Columbia",944 -1997-06-01,"District of Columbia",562 -1997-07-01,"District of Columbia",419 -1997-08-01,"District of Columbia",372 -1997-09-01,"District of Columbia",393 -1997-10-01,"District of Columbia",553 -1997-11-01,"District of Columbia",1414 -1997-12-01,"District of Columbia",2421 -1998-01-01,"District of Columbia",2417 -1998-02-01,"District of Columbia",2372 -1998-03-01,"District of Columbia",2038 -1998-04-01,"District of Columbia",1198 -1998-05-01,"District of Columbia",638 -1998-06-01,"District of Columbia",436 -1998-07-01,"District of Columbia",372 -1998-08-01,"District of Columbia",328 -1998-09-01,"District of Columbia",340 -1998-10-01,"District of Columbia",459 -1998-11-01,"District of Columbia",1088 -1998-12-01,"District of Columbia",1563 -1999-01-01,"District of Columbia",2916 -1999-02-01,"District of Columbia",2311 -1999-03-01,"District of Columbia",2326 -1999-04-01,"District of Columbia",1270 -1999-05-01,"District of Columbia",688 -1999-06-01,"District of Columbia",399 -1999-07-01,"District of Columbia",369 -1999-08-01,"District of Columbia",315 -1999-09-01,"District of Columbia",326 -1999-10-01,"District of Columbia",484 -1999-11-01,"District of Columbia",1029 -1999-12-01,"District of Columbia",1714 -2000-01-01,"District of Columbia",2788 -2000-02-01,"District of Columbia",3114 -2000-03-01,"District of Columbia",1747 -2000-04-01,"District of Columbia",1272 -2000-05-01,"District of Columbia",741 -2000-06-01,"District of Columbia",485 -2000-07-01,"District of Columbia",379 -2000-08-01,"District of Columbia",356 -2000-09-01,"District of Columbia",376 -2000-10-01,"District of Columbia",553 -2000-11-01,"District of Columbia",1069 -2000-12-01,"District of Columbia",2557 -2001-01-01,"District of Columbia",3057 -2001-02-01,"District of Columbia",2300 -2001-03-01,"District of Columbia",1970 -2001-04-01,"District of Columbia",1256 -2001-05-01,"District of Columbia",539 -2001-06-01,"District of Columbia",400 -2001-07-01,"District of Columbia",318 -2001-08-01,"District of Columbia",282 -2001-09-01,"District of Columbia",301 -2001-10-01,"District of Columbia",428 -2001-11-01,"District of Columbia",865 -2001-12-01,"District of Columbia",1231 -2002-01-01,"District of Columbia",2357 -2002-02-01,"District of Columbia",2015 -2002-03-01,"District of Columbia",1671 -2002-04-01,"District of Columbia",809 -2002-05-01,"District of Columbia",567 -2002-06-01,"District of Columbia",352 -2002-07-01,"District of Columbia",318 -2002-08-01,"District of Columbia",319 -2002-09-01,"District of Columbia",338 -2002-10-01,"District of Columbia",907 -2002-11-01,"District of Columbia",1825 -2002-12-01,"District of Columbia",2773 -2003-01-01,"District of Columbia",3382 -2003-02-01,"District of Columbia",2651 -2003-03-01,"District of Columbia",1698 -2003-04-01,"District of Columbia",1044 -2003-05-01,"District of Columbia",568 -2003-06-01,"District of Columbia",347 -2003-07-01,"District of Columbia",293 -2003-08-01,"District of Columbia",297 -2003-09-01,"District of Columbia",181 -2003-10-01,"District of Columbia",849 -2003-11-01,"District of Columbia",1295 -2003-12-01,"District of Columbia",2551 -2004-01-01,"District of Columbia",3486 -2004-02-01,"District of Columbia",2378 -2004-03-01,"District of Columbia",1538 -2004-04-01,"District of Columbia",1004 -2004-05-01,"District of Columbia",382 -2004-06-01,"District of Columbia",284 -2004-07-01,"District of Columbia",245 -2004-08-01,"District of Columbia",374 -2004-09-01,"District of Columbia",275 -2004-10-01,"District of Columbia",723 -2004-11-01,"District of Columbia",1307 -2004-12-01,"District of Columbia",2280 -2005-01-01,"District of Columbia",2858 -2005-02-01,"District of Columbia",2005 -2005-03-01,"District of Columbia",1952 -2005-04-01,"District of Columbia",703 -2005-05-01,"District of Columbia",555 -2005-06-01,"District of Columbia",374 -2005-07-01,"District of Columbia",321 -2005-08-01,"District of Columbia",219 -2005-09-01,"District of Columbia",300 -2005-10-01,"District of Columbia",585 -2005-11-01,"District of Columbia",1425 -2005-12-01,"District of Columbia",2556 -2006-01-01,"District of Columbia",1857 -2006-02-01,"District of Columbia",2035 -2006-03-01,"District of Columbia",1503 -2006-04-01,"District of Columbia",600 -2006-05-01,"District of Columbia",442 -2006-06-01,"District of Columbia",280 -2006-07-01,"District of Columbia",294 -2006-08-01,"District of Columbia",259 -2006-09-01,"District of Columbia",359 -2006-10-01,"District of Columbia",799 -2006-11-01,"District of Columbia",1175 -2006-12-01,"District of Columbia",1810 -2007-01-01,"District of Columbia",2164 -2007-02-01,"District of Columbia",2848 -2007-03-01,"District of Columbia",1522 -2007-04-01,"District of Columbia",1093 -2007-05-01,"District of Columbia",427 -2007-06-01,"District of Columbia",411 -2007-07-01,"District of Columbia",264 -2007-08-01,"District of Columbia",272 -2007-09-01,"District of Columbia",258 -2007-10-01,"District of Columbia",453 -2007-11-01,"District of Columbia",1422 -2007-12-01,"District of Columbia",2236 -2008-01-01,"District of Columbia",2458 -2008-02-01,"District of Columbia",2147 -2008-03-01,"District of Columbia",1551 -2008-04-01,"District of Columbia",741 -2008-05-01,"District of Columbia",476 -2008-06-01,"District of Columbia",371 -2008-07-01,"District of Columbia",255 -2008-08-01,"District of Columbia",264 -2008-09-01,"District of Columbia",284 -2008-10-01,"District of Columbia",797 -2008-11-01,"District of Columbia",1660 -2008-12-01,"District of Columbia",2220 -2009-01-01,"District of Columbia",2998 -2009-02-01,"District of Columbia",2005 -2009-03-01,"District of Columbia",1662 -2009-04-01,"District of Columbia",797 -2009-05-01,"District of Columbia",446 -2009-06-01,"District of Columbia",297 -2009-07-01,"District of Columbia",269 -2009-08-01,"District of Columbia",264 -2009-09-01,"District of Columbia",244 -2009-10-01,"District of Columbia",703 -2009-11-01,"District of Columbia",1211 -2009-12-01,"District of Columbia",2570 -2010-01-01,"District of Columbia",2821 -2010-02-01,"District of Columbia",2507 -2010-03-01,"District of Columbia",1350 -2010-04-01,"District of Columbia",542 -2010-05-01,"District of Columbia",323 -2010-06-01,"District of Columbia",262 -2010-07-01,"District of Columbia",239 -2010-08-01,"District of Columbia",224 -2010-09-01,"District of Columbia",244 -2010-10-01,"District of Columbia",629 -2010-11-01,"District of Columbia",1352 -2010-12-01,"District of Columbia",3115 -2011-01-01,"District of Columbia",2905 -2011-02-01,"District of Columbia",2032 -2011-03-01,"District of Columbia",1493 -2011-04-01,"District of Columbia",904 -2011-05-01,"District of Columbia",255 -2011-06-01,"District of Columbia",325 -2011-07-01,"District of Columbia",207 -2011-08-01,"District of Columbia",283 -2011-09-01,"District of Columbia",222 -2011-10-01,"District of Columbia",809 -2011-11-01,"District of Columbia",1070 -2011-12-01,"District of Columbia",1882 -2012-01-01,"District of Columbia",2658 -2012-02-01,"District of Columbia",1591 -2012-03-01,"District of Columbia",979 -2012-04-01,"District of Columbia",666 -2012-05-01,"District of Columbia",303 -2012-06-01,"District of Columbia",263 -2012-07-01,"District of Columbia",236 -2012-08-01,"District of Columbia",242 -2012-09-01,"District of Columbia",233 -2012-10-01,"District of Columbia",614 -2012-11-01,"District of Columbia",1762 -2012-12-01,"District of Columbia",1713 -2013-01-01,"District of Columbia",2438 -2013-02-01,"District of Columbia",2239 -2013-03-01,"District of Columbia",1948 -2013-04-01,"District of Columbia",761 -2013-05-01,"District of Columbia",449 -2013-06-01,"District of Columbia",329 -2013-07-01,"District of Columbia",281 -2013-08-01,"District of Columbia",254 -2013-09-01,"District of Columbia",281 -2013-10-01,"District of Columbia",451 -2013-11-01,"District of Columbia",1642 -2013-12-01,"District of Columbia",2139 -2014-01-01,"District of Columbia",2908 -2014-02-01,"District of Columbia",2508 -2014-03-01,"District of Columbia",2087 -2014-04-01,"District of Columbia",893 -2014-05-01,"District of Columbia",446 -2014-06-01,"District of Columbia",293 -2014-07-01,"District of Columbia",249 -2014-08-01,"District of Columbia",258 -2014-09-01,"District of Columbia",262 -2014-10-01,"District of Columbia",550 -2014-11-01,"District of Columbia",1671 -2014-12-01,"District of Columbia",2117 -2015-01-01,"District of Columbia",3166 -2015-02-01,"District of Columbia",2886 -2015-03-01,"District of Columbia",2046 -2015-04-01,"District of Columbia",866 -2015-05-01,"District of Columbia",456 -2015-06-01,"District of Columbia",256 -2015-07-01,"District of Columbia",264 -2015-08-01,"District of Columbia",262 -2015-09-01,"District of Columbia",276 -2015-10-01,"District of Columbia",567 -2015-11-01,"District of Columbia",994 -2015-12-01,"District of Columbia",1456 -2016-01-01,"District of Columbia",2464 -2016-02-01,"District of Columbia",2230 -2016-03-01,"District of Columbia",1080 -2016-04-01,"District of Columbia",772 -2016-05-01,"District of Columbia",489 -2016-06-01,"District of Columbia",280 -2016-07-01,"District of Columbia",240 -2016-08-01,"District of Columbia",211 -2016-09-01,"District of Columbia",202 -2016-10-01,"District of Columbia",337 -2016-11-01,"District of Columbia",941 -2016-12-01,"District of Columbia",2132 -2017-01-01,"District of Columbia",2348 -2017-02-01,"District of Columbia",1679 -2017-03-01,"District of Columbia",1796 -2017-04-01,"District of Columbia",616 -2017-05-01,"District of Columbia",518 -2017-06-01,"District of Columbia",340 -2017-07-01,"District of Columbia",293 -2017-08-01,"District of Columbia",287 -2017-09-01,"District of Columbia",299 -2017-10-01,"District of Columbia",410 -2017-11-01,"District of Columbia",934 -2017-12-01,"District of Columbia",2383 -2018-01-01,"District of Columbia",2669 -2018-02-01,"District of Columbia",1813 -2018-03-01,"District of Columbia",1930 -2018-04-01,"District of Columbia",994 -2018-05-01,"District of Columbia",377 -2018-06-01,"District of Columbia",267 -2018-07-01,"District of Columbia",281 -2018-08-01,"District of Columbia",286 -2018-09-01,"District of Columbia",264 -2018-10-01,"District of Columbia",528 -2018-11-01,"District of Columbia",1612 -2018-12-01,"District of Columbia",2091 -2019-01-01,"District of Columbia",2101 -2019-02-01,"District of Columbia",2150 -2019-03-01,"District of Columbia",1651 -2019-04-01,"District of Columbia",745 -2019-05-01,"District of Columbia",395 -2019-06-01,"District of Columbia",292 -2019-07-01,"District of Columbia",228 -2019-08-01,"District of Columbia",272 -2019-09-01,"District of Columbia",253 -2019-10-01,"District of Columbia",246 -2019-11-01,"District of Columbia",1481 -2019-12-01,"District of Columbia",2251 -2020-01-01,"District of Columbia",1939 -2020-02-01,"District of Columbia",1806 -2020-03-01,"District of Columbia",1187 -2020-04-01,"District of Columbia",907 -2020-05-01,"District of Columbia",581 -2020-06-01,"District of Columbia",304 -2020-07-01,"District of Columbia",260 -2020-08-01,"District of Columbia",230 -2020-09-01,"District of Columbia",262 -2020-10-01,"District of Columbia",351 -2020-11-01,"District of Columbia",956 -2020-12-01,"District of Columbia",2095 -2021-01-01,"District of Columbia",2164 -2021-02-01,"District of Columbia",2119 -1989-01-01,"Florida",1709 -1989-02-01,"Florida",1445 -1989-03-01,"Florida",1834 -1989-04-01,"Florida",1207 -1989-05-01,"Florida",817 -1989-06-01,"Florida",707 -1989-07-01,"Florida",674 -1989-08-01,"Florida",617 -1989-09-01,"Florida",641 -1989-10-01,"Florida",637 -1989-11-01,"Florida",974 -1989-12-01,"Florida",1825 -1990-01-01,"Florida",2829 -1990-02-01,"Florida",1470 -1990-03-01,"Florida",1262 -1990-04-01,"Florida",1048 -1990-05-01,"Florida",810 -1990-06-01,"Florida",699 -1990-07-01,"Florida",661 -1990-08-01,"Florida",603 -1990-09-01,"Florida",618 -1990-10-01,"Florida",633 -1990-11-01,"Florida",905 -1990-12-01,"Florida",1438 -1991-01-01,"Florida",1595 -1991-02-01,"Florida",1811 -1991-03-01,"Florida",1568 -1991-04-01,"Florida",1078 -1991-05-01,"Florida",766 -1991-06-01,"Florida",714 -1991-07-01,"Florida",653 -1991-08-01,"Florida",610 -1991-09-01,"Florida",646 -1991-10-01,"Florida",659 -1991-11-01,"Florida",1130 -1991-12-01,"Florida",1677 -1992-01-01,"Florida",2206 -1992-02-01,"Florida",2345 -1992-03-01,"Florida",1478 -1992-04-01,"Florida",1340 -1992-05-01,"Florida",936 -1992-06-01,"Florida",733 -1992-07-01,"Florida",674 -1992-08-01,"Florida",627 -1992-09-01,"Florida",636 -1992-10-01,"Florida",685 -1992-11-01,"Florida",956 -1992-12-01,"Florida",1766 -1993-01-01,"Florida",1652 -1993-02-01,"Florida",1868 -1993-03-01,"Florida",1923 -1993-04-01,"Florida",1480 -1993-05-01,"Florida",963 -1993-06-01,"Florida",772 -1993-07-01,"Florida",679 -1993-08-01,"Florida",618 -1993-09-01,"Florida",669 -1993-10-01,"Florida",706 -1993-11-01,"Florida",1007 -1993-12-01,"Florida",1605 -1994-01-01,"Florida",2725 -1994-02-01,"Florida",2089 -1994-03-01,"Florida",1472 -1994-04-01,"Florida",1152 -1994-05-01,"Florida",815 -1994-06-01,"Florida",746 -1994-07-01,"Florida",691 -1994-08-01,"Florida",665 -1994-09-01,"Florida",712 -1994-10-01,"Florida",711 -1994-11-01,"Florida",829 -1994-12-01,"Florida",1248 -1995-01-01,"Florida",2239 -1995-02-01,"Florida",2453 -1995-03-01,"Florida",1595 -1995-04-01,"Florida",1122 -1995-05-01,"Florida",841 -1995-06-01,"Florida",748 -1995-07-01,"Florida",716 -1995-08-01,"Florida",641 -1995-09-01,"Florida",729 -1995-10-01,"Florida",668 -1995-11-01,"Florida",1004 -1995-12-01,"Florida",1785 -1996-01-01,"Florida",2828 -1996-02-01,"Florida",2570 -1996-03-01,"Florida",2058 -1996-04-01,"Florida",1640 -1996-05-01,"Florida",1016 -1996-06-01,"Florida",786 -1996-07-01,"Florida",741 -1996-08-01,"Florida",658 -1996-09-01,"Florida",690 -1996-10-01,"Florida",752 -1996-11-01,"Florida",972 -1996-12-01,"Florida",1583 -1997-01-01,"Florida",1955 -1997-02-01,"Florida",1866 -1997-03-01,"Florida",1154 -1997-04-01,"Florida",914 -1997-05-01,"Florida",852 -1997-06-01,"Florida",773 -1997-07-01,"Florida",709 -1997-08-01,"Florida",670 -1997-09-01,"Florida",631 -1997-10-01,"Florida",681 -1997-11-01,"Florida",1074 -1997-12-01,"Florida",1837 -1998-01-01,"Florida",2275 -1998-02-01,"Florida",2073 -1998-03-01,"Florida",1881 -1998-04-01,"Florida",1509 -1998-05-01,"Florida",920 -1998-06-01,"Florida",779 -1998-07-01,"Florida",705 -1998-08-01,"Florida",649 -1998-09-01,"Florida",657 -1998-10-01,"Florida",685 -1998-11-01,"Florida",842 -1998-12-01,"Florida",1127 -1999-01-01,"Florida",2110 -1999-02-01,"Florida",1522 -1999-03-01,"Florida",1674 -1999-04-01,"Florida",1306 -1999-05-01,"Florida",911 -1999-06-01,"Florida",794 -1999-07-01,"Florida",752 -1999-08-01,"Florida",702 -1999-09-01,"Florida",702 -1999-10-01,"Florida",731 -1999-11-01,"Florida",1020 -1999-12-01,"Florida",1572 -2000-01-01,"Florida",2179 -2000-02-01,"Florida",2503 -2000-03-01,"Florida",1622 -2000-04-01,"Florida",1133 -2000-05-01,"Florida",967 -2000-06-01,"Florida",831 -2000-07-01,"Florida",734 -2000-08-01,"Florida",701 -2000-09-01,"Florida",700 -2000-10-01,"Florida",829 -2000-11-01,"Florida",994 -2000-12-01,"Florida",1940 -2001-01-01,"Florida",3289 -2001-02-01,"Florida",2647 -2001-03-01,"Florida",1507 -2001-04-01,"Florida",1307 -2001-05-01,"Florida",951 -2001-06-01,"Florida",778 -2001-07-01,"Florida",726 -2001-08-01,"Florida",700 -2001-09-01,"Florida",699 -2001-10-01,"Florida",762 -2001-11-01,"Florida",983 -2001-12-01,"Florida",1199 -2002-01-01,"Florida",2500 -2002-02-01,"Florida",1881 -2002-03-01,"Florida",1942 -2002-04-01,"Florida",1244 -2002-05-01,"Florida",906 -2002-06-01,"Florida",831 -2002-07-01,"Florida",774 -2002-08-01,"Florida",720 -2002-09-01,"Florida",738 -2002-10-01,"Florida",744 -2002-11-01,"Florida",931 -2002-12-01,"Florida",1915 -2003-01-01,"Florida",2904 -2003-02-01,"Florida",2846 -2003-03-01,"Florida",1600 -2003-04-01,"Florida",1193 -2003-05-01,"Florida",976 -2003-06-01,"Florida",818 -2003-07-01,"Florida",753 -2003-08-01,"Florida",737 -2003-09-01,"Florida",740 -2003-10-01,"Florida",764 -2003-11-01,"Florida",912 -2003-12-01,"Florida",1623 -2004-01-01,"Florida",2617 -2004-02-01,"Florida",2491 -2004-03-01,"Florida",1995 -2004-04-01,"Florida",1381 -2004-05-01,"Florida",1069 -2004-06-01,"Florida",832 -2004-07-01,"Florida",733 -2004-08-01,"Florida",713 -2004-09-01,"Florida",740 -2004-10-01,"Florida",787 -2004-11-01,"Florida",932 -2004-12-01,"Florida",1603 -2005-01-01,"Florida",2411 -2005-02-01,"Florida",2254 -2005-03-01,"Florida",1955 -2005-04-01,"Florida",1547 -2005-05-01,"Florida",1094 -2005-06-01,"Florida",905 -2005-07-01,"Florida",799 -2005-08-01,"Florida",742 -2005-09-01,"Florida",762 -2005-10-01,"Florida",818 -2005-11-01,"Florida",1092 -2005-12-01,"Florida",1745 -2006-01-01,"Florida",2506 -2006-02-01,"Florida",2261 -2006-03-01,"Florida",1807 -2006-04-01,"Florida",1345 -2006-05-01,"Florida",1020 -2006-06-01,"Florida",867 -2006-07-01,"Florida",794 -2006-08-01,"Florida",731 -2006-09-01,"Florida",747 -2006-10-01,"Florida",789 -2006-11-01,"Florida",1058 -2006-12-01,"Florida",1716 -2007-01-01,"Florida",1776 -2007-02-01,"Florida",2229 -2007-03-01,"Florida",1979 -2007-04-01,"Florida",1448 -2007-05-01,"Florida",1145 -2007-06-01,"Florida",950 -2007-07-01,"Florida",818 -2007-08-01,"Florida",725 -2007-09-01,"Florida",713 -2007-10-01,"Florida",793 -2007-11-01,"Florida",1047 -2007-12-01,"Florida",1442 -2008-01-01,"Florida",2161 -2008-02-01,"Florida",2070 -2008-03-01,"Florida",1753 -2008-04-01,"Florida",1425 -2008-05-01,"Florida",1097 -2008-06-01,"Florida",846 -2008-07-01,"Florida",781 -2008-08-01,"Florida",723 -2008-09-01,"Florida",742 -2008-10-01,"Florida",795 -2008-11-01,"Florida",1212 -2008-12-01,"Florida",1989 -2009-01-01,"Florida",2091 -2009-02-01,"Florida",2611 -2009-03-01,"Florida",2025 -2009-04-01,"Florida",1338 -2009-05-01,"Florida",1061 -2009-06-01,"Florida",850 -2009-07-01,"Florida",746 -2009-08-01,"Florida",709 -2009-09-01,"Florida",706 -2009-10-01,"Florida",706 -2009-11-01,"Florida",953 -2009-12-01,"Florida",1417 -2010-01-01,"Florida",3117 -2010-02-01,"Florida",2590 -2010-03-01,"Florida",2781 -2010-04-01,"Florida",1719 -2010-05-01,"Florida",1131 -2010-06-01,"Florida",769 -2010-07-01,"Florida",699 -2010-08-01,"Florida",669 -2010-09-01,"Florida",675 -2010-10-01,"Florida",830 -2010-11-01,"Florida",1146 -2010-12-01,"Florida",2619 -2011-01-01,"Florida",3392 -2011-02-01,"Florida",2453 -2011-03-01,"Florida",1676 -2011-04-01,"Florida",1183 -2011-05-01,"Florida",912 -2011-06-01,"Florida",802 -2011-07-01,"Florida",756 -2011-08-01,"Florida",723 -2011-09-01,"Florida",743 -2011-10-01,"Florida",932 -2011-11-01,"Florida",1213 -2011-12-01,"Florida",1615 -2012-01-01,"Florida",1901 -2012-02-01,"Florida",1837 -2012-03-01,"Florida",1473 -2012-04-01,"Florida",1190 -2012-05-01,"Florida",995 -2012-06-01,"Florida",837 -2012-07-01,"Florida",821 -2012-08-01,"Florida",805 -2012-09-01,"Florida",771 -2012-10-01,"Florida",823 -2012-11-01,"Florida",1257 -2012-12-01,"Florida",1655 -2013-01-01,"Florida",1962 -2013-02-01,"Florida",1687 -2013-03-01,"Florida",2147 -2013-04-01,"Florida",1646 -2013-05-01,"Florida",1069 -2013-06-01,"Florida",662 -2013-07-01,"Florida",719 -2013-08-01,"Florida",727 -2013-09-01,"Florida",663 -2013-10-01,"Florida",973 -2013-11-01,"Florida",1275 -2013-12-01,"Florida",1789 -2014-01-01,"Florida",3057 -2014-02-01,"Florida",1874 -2014-03-01,"Florida",1920 -2014-04-01,"Florida",1166 -2014-05-01,"Florida",917 -2014-06-01,"Florida",593 -2014-07-01,"Florida",709 -2014-08-01,"Florida",729 -2014-09-01,"Florida",641 -2014-10-01,"Florida",965 -2014-11-01,"Florida",1853 -2014-12-01,"Florida",2227 -2015-01-01,"Florida",2518 -2015-02-01,"Florida",2502 -2015-03-01,"Florida",1397 -2015-04-01,"Florida",1246 -2015-05-01,"Florida",946 -2015-06-01,"Florida",880 -2015-07-01,"Florida",844 -2015-08-01,"Florida",643 -2015-09-01,"Florida",641 -2015-10-01,"Florida",1096 -2015-11-01,"Florida",1233 -2015-12-01,"Florida",1459 -2016-01-01,"Florida",2738 -2016-02-01,"Florida",2333 -2016-03-01,"Florida",1694 -2016-04-01,"Florida",1221 -2016-05-01,"Florida",968 -2016-06-01,"Florida",798 -2016-07-01,"Florida",701 -2016-08-01,"Florida",683 -2016-09-01,"Florida",727 -2016-10-01,"Florida",820 -2016-11-01,"Florida",1082 -2016-12-01,"Florida",1587 -2017-01-01,"Florida",1958 -2017-02-01,"Florida",1725 -2017-03-01,"Florida",1600 -2017-04-01,"Florida",1392 -2017-05-01,"Florida",1060 -2017-06-01,"Florida",880 -2017-07-01,"Florida",778 -2017-08-01,"Florida",751 -2017-09-01,"Florida",823 -2017-10-01,"Florida",924 -2017-11-01,"Florida",1226 -2017-12-01,"Florida",1816 -2018-01-01,"Florida",3108 -2018-02-01,"Florida",2054 -2018-03-01,"Florida",1745 -2018-04-01,"Florida",1576 -2018-05-01,"Florida",1155 -2018-06-01,"Florida",992 -2018-07-01,"Florida",818 -2018-08-01,"Florida",758 -2018-09-01,"Florida",845 -2018-10-01,"Florida",855 -2018-11-01,"Florida",1193 -2018-12-01,"Florida",1993 -2019-01-01,"Florida",2451 -2019-02-01,"Florida",2169 -2019-03-01,"Florida",1678 -2019-04-01,"Florida",1556 -2019-05-01,"Florida",1190 -2019-06-01,"Florida",924 -2019-07-01,"Florida",813 -2019-08-01,"Florida",821 -2019-09-01,"Florida",886 -2019-10-01,"Florida",936 -2019-11-01,"Florida",1190 -2019-12-01,"Florida",1952 -2020-01-01,"Florida",NA -2020-02-01,"Florida",2136 -2020-03-01,"Florida",NA -2020-04-01,"Florida",1473 -2020-05-01,"Florida",NA -2020-06-01,"Florida",NA -2020-07-01,"Florida",936 -2020-08-01,"Florida",918 -2020-09-01,"Florida",904 -2020-10-01,"Florida",1067 -2020-11-01,"Florida",1343 -2020-12-01,"Florida",2155 -2021-01-01,"Florida",3025 -2021-02-01,"Florida",2514 -1989-01-01,"Georgia",15116 -1989-02-01,"Georgia",16389 -1989-03-01,"Georgia",9603 -1989-04-01,"Georgia",7211 -1989-05-01,"Georgia",4629 -1989-06-01,"Georgia",3050 -1989-07-01,"Georgia",2988 -1989-08-01,"Georgia",2792 -1989-09-01,"Georgia",3466 -1989-10-01,"Georgia",5190 -1989-11-01,"Georgia",11110 -1989-12-01,"Georgia",22137 -1990-01-01,"Georgia",16238 -1990-02-01,"Georgia",11794 -1990-03-01,"Georgia",10094 -1990-04-01,"Georgia",6398 -1990-05-01,"Georgia",3781 -1990-06-01,"Georgia",3153 -1990-07-01,"Georgia",2914 -1990-08-01,"Georgia",2900 -1990-09-01,"Georgia",2979 -1990-10-01,"Georgia",5357 -1990-11-01,"Georgia",9115 -1990-12-01,"Georgia",15540 -1991-01-01,"Georgia",18493 -1991-02-01,"Georgia",13332 -1991-03-01,"Georgia",10872 -1991-04-01,"Georgia",5129 -1991-05-01,"Georgia",3781 -1991-06-01,"Georgia",3092 -1991-07-01,"Georgia",2984 -1991-08-01,"Georgia",2965 -1991-09-01,"Georgia",2893 -1991-10-01,"Georgia",4829 -1991-11-01,"Georgia",12479 -1991-12-01,"Georgia",15812 -1992-01-01,"Georgia",19167 -1992-02-01,"Georgia",14531 -1992-03-01,"Georgia",12768 -1992-04-01,"Georgia",7360 -1992-05-01,"Georgia",4718 -1992-06-01,"Georgia",3536 -1992-07-01,"Georgia",3170 -1992-08-01,"Georgia",2981 -1992-09-01,"Georgia",3211 -1992-10-01,"Georgia",5284 -1992-11-01,"Georgia",12934 -1992-12-01,"Georgia",18555 -1993-01-01,"Georgia",17952 -1993-02-01,"Georgia",18076 -1993-03-01,"Georgia",15664 -1993-04-01,"Georgia",9279 -1993-05-01,"Georgia",4443 -1993-06-01,"Georgia",3106 -1993-07-01,"Georgia",3028 -1993-08-01,"Georgia",2939 -1993-09-01,"Georgia",2903 -1993-10-01,"Georgia",6147 -1993-11-01,"Georgia",11585 -1993-12-01,"Georgia",20533 -1994-01-01,"Georgia",23864 -1994-02-01,"Georgia",16736 -1994-03-01,"Georgia",12037 -1994-04-01,"Georgia",5297 -1994-05-01,"Georgia",4434 -1994-06-01,"Georgia",3271 -1994-07-01,"Georgia",3008 -1994-08-01,"Georgia",3149 -1994-09-01,"Georgia",2918 -1994-10-01,"Georgia",5390 -1994-11-01,"Georgia",9453 -1994-12-01,"Georgia",15880 -1995-01-01,"Georgia",20343 -1995-02-01,"Georgia",18858 -1995-03-01,"Georgia",10571 -1995-04-01,"Georgia",6026 -1995-05-01,"Georgia",3961 -1995-06-01,"Georgia",3206 -1995-07-01,"Georgia",3002 -1995-08-01,"Georgia",3000 -1995-09-01,"Georgia",3319 -1995-10-01,"Georgia",6067 -1995-11-01,"Georgia",14965 -1995-12-01,"Georgia",21351 -1996-01-01,"Georgia",24332 -1996-02-01,"Georgia",19358 -1996-03-01,"Georgia",17871 -1996-04-01,"Georgia",9875 -1996-05-01,"Georgia",4272 -1996-06-01,"Georgia",3115 -1996-07-01,"Georgia",3179 -1996-08-01,"Georgia",2972 -1996-09-01,"Georgia",3092 -1996-10-01,"Georgia",5771 -1996-11-01,"Georgia",14651 -1996-12-01,"Georgia",18574 -1997-01-01,"Georgia",21449 -1997-02-01,"Georgia",16288 -1997-03-01,"Georgia",8959 -1997-04-01,"Georgia",8183 -1997-05-01,"Georgia",3816 -1997-06-01,"Georgia",3341 -1997-07-01,"Georgia",3180 -1997-08-01,"Georgia",2930 -1997-09-01,"Georgia",3158 -1997-10-01,"Georgia",6693 -1997-11-01,"Georgia",16495 -1997-12-01,"Georgia",19892 -1998-01-01,"Georgia",20365 -1998-02-01,"Georgia",18186 -1998-03-01,"Georgia",16448 -1998-04-01,"Georgia",8076 -1998-05-01,"Georgia",3577 -1998-06-01,"Georgia",3210 -1998-07-01,"Georgia",2981 -1998-08-01,"Georgia",2850 -1998-09-01,"Georgia",2889 -1998-10-01,"Georgia",4325 -1998-11-01,"Georgia",9441 -1998-12-01,"Georgia",15049 -1999-01-01,"Georgia",18834 -1999-02-01,"Georgia",14967 -1999-03-01,"Georgia",12351 -1999-04-01,"Georgia",5469 -1999-05-01,"Georgia",1902 -1999-06-01,"Georgia",1677 -1999-07-01,"Georgia",2216 -1999-08-01,"Georgia",2349 -1999-09-01,"Georgia",3794 -1999-10-01,"Georgia",5974 -1999-11-01,"Georgia",10635 -1999-12-01,"Georgia",18610 -2000-01-01,"Georgia",26533 -2000-02-01,"Georgia",17571 -2000-03-01,"Georgia",11126 -2000-04-01,"Georgia",8441 -2000-05-01,"Georgia",4818 -2000-06-01,"Georgia",3835 -2000-07-01,"Georgia",3775 -2000-08-01,"Georgia",3833 -2000-09-01,"Georgia",4164 -2000-10-01,"Georgia",6682 -2000-11-01,"Georgia",15912 -2000-12-01,"Georgia",34149 -2001-01-01,"Georgia",28095 -2001-02-01,"Georgia",16292 -2001-03-01,"Georgia",16658 -2001-04-01,"Georgia",6945 -2001-05-01,"Georgia",4594 -2001-06-01,"Georgia",3547 -2001-07-01,"Georgia",3517 -2001-08-01,"Georgia",3546 -2001-09-01,"Georgia",3728 -2001-10-01,"Georgia",7915 -2001-11-01,"Georgia",8398 -2001-12-01,"Georgia",16734 -2002-01-01,"Georgia",22812 -2002-02-01,"Georgia",18516 -2002-03-01,"Georgia",13849 -2002-04-01,"Georgia",5836 -2002-05-01,"Georgia",4810 -2002-06-01,"Georgia",3730 -2002-07-01,"Georgia",3611 -2002-08-01,"Georgia",3505 -2002-09-01,"Georgia",3625 -2002-10-01,"Georgia",5372 -2002-11-01,"Georgia",15644 -2002-12-01,"Georgia",25357 -2003-01-01,"Georgia",29759 -2003-02-01,"Georgia",20657 -2003-03-01,"Georgia",12180 -2003-04-01,"Georgia",7256 -2003-05-01,"Georgia",4668 -2003-06-01,"Georgia",3807 -2003-07-01,"Georgia",3644 -2003-08-01,"Georgia",3397 -2003-09-01,"Georgia",3607 -2003-10-01,"Georgia",5617 -2003-11-01,"Georgia",10196 -2003-12-01,"Georgia",25117 -2004-01-01,"Georgia",26702 -2004-02-01,"Georgia",23473 -2004-03-01,"Georgia",10651 -2004-04-01,"Georgia",7111 -2004-05-01,"Georgia",4585 -2004-06-01,"Georgia",4039 -2004-07-01,"Georgia",3556 -2004-08-01,"Georgia",3685 -2004-09-01,"Georgia",3801 -2004-10-01,"Georgia",4666 -2004-11-01,"Georgia",10650 -2004-12-01,"Georgia",23572 -2005-01-01,"Georgia",21620 -2005-02-01,"Georgia",17769 -2005-03-01,"Georgia",15920 -2005-04-01,"Georgia",7502 -2005-05-01,"Georgia",5055 -2005-06-01,"Georgia",3934 -2005-07-01,"Georgia",3637 -2005-08-01,"Georgia",3712 -2005-09-01,"Georgia",3615 -2005-10-01,"Georgia",6238 -2005-11-01,"Georgia",11566 -2005-12-01,"Georgia",23991 -2006-01-01,"Georgia",17817 -2006-02-01,"Georgia",19201 -2006-03-01,"Georgia",12421 -2006-04-01,"Georgia",5345 -2006-05-01,"Georgia",4477 -2006-06-01,"Georgia",3661 -2006-07-01,"Georgia",3488 -2006-08-01,"Georgia",3428 -2006-09-01,"Georgia",3693 -2006-10-01,"Georgia",6975 -2006-11-01,"Georgia",12749 -2006-12-01,"Georgia",16992 -2007-01-01,"Georgia",21312 -2007-02-01,"Georgia",20687 -2007-03-01,"Georgia",9756 -2007-04-01,"Georgia",8309 -2007-05-01,"Georgia",4380 -2007-06-01,"Georgia",3648 -2007-07-01,"Georgia",3575 -2007-08-01,"Georgia",3391 -2007-09-01,"Georgia",3549 -2007-10-01,"Georgia",4904 -2007-11-01,"Georgia",12399 -2007-12-01,"Georgia",15984 -2008-01-01,"Georgia",24915 -2008-02-01,"Georgia",17444 -2008-03-01,"Georgia",12739 -2008-04-01,"Georgia",6959 -2008-05-01,"Georgia",4321 -2008-06-01,"Georgia",3435 -2008-07-01,"Georgia",3392 -2008-08-01,"Georgia",3431 -2008-09-01,"Georgia",3477 -2008-10-01,"Georgia",6819 -2008-11-01,"Georgia",14429 -2008-12-01,"Georgia",18014 -2009-01-01,"Georgia",22854 -2009-02-01,"Georgia",18100 -2009-03-01,"Georgia",12625 -2009-04-01,"Georgia",7406 -2009-05-01,"Georgia",4299 -2009-06-01,"Georgia",3339 -2009-07-01,"Georgia",3330 -2009-08-01,"Georgia",3459 -2009-09-01,"Georgia",3493 -2009-10-01,"Georgia",6345 -2009-11-01,"Georgia",10781 -2009-12-01,"Georgia",22557 -2010-01-01,"Georgia",29535 -2010-02-01,"Georgia",24967 -2010-03-01,"Georgia",16304 -2010-04-01,"Georgia",5575 -2010-05-01,"Georgia",4039 -2010-06-01,"Georgia",3316 -2010-07-01,"Georgia",3221 -2010-08-01,"Georgia",3272 -2010-09-01,"Georgia",3383 -2010-10-01,"Georgia",4947 -2010-11-01,"Georgia",11283 -2010-12-01,"Georgia",28830 -2011-01-01,"Georgia",28427 -2011-02-01,"Georgia",16766 -2011-03-01,"Georgia",11366 -2011-04-01,"Georgia",5386 -2011-05-01,"Georgia",4387 -2011-06-01,"Georgia",3367 -2011-07-01,"Georgia",3241 -2011-08-01,"Georgia",3297 -2011-09-01,"Georgia",3556 -2011-10-01,"Georgia",6564 -2011-11-01,"Georgia",11102 -2011-12-01,"Georgia",15878 -2012-01-01,"Georgia",18749 -2012-02-01,"Georgia",14381 -2012-03-01,"Georgia",7144 -2012-04-01,"Georgia",5164 -2012-05-01,"Georgia",3808 -2012-06-01,"Georgia",3373 -2012-07-01,"Georgia",3159 -2012-08-01,"Georgia",3398 -2012-09-01,"Georgia",3460 -2012-10-01,"Georgia",5851 -2012-11-01,"Georgia",12989 -2012-12-01,"Georgia",16188 -2013-01-01,"Georgia",18331 -2013-02-01,"Georgia",19031 -2013-03-01,"Georgia",17837 -2013-04-01,"Georgia",7153 -2013-05-01,"Georgia",5173 -2013-06-01,"Georgia",3605 -2013-07-01,"Georgia",3534 -2013-08-01,"Georgia",3566 -2013-09-01,"Georgia",3576 -2013-10-01,"Georgia",5585 -2013-11-01,"Georgia",14538 -2013-12-01,"Georgia",19700 -2014-01-01,"Georgia",32809 -2014-02-01,"Georgia",19418 -2014-03-01,"Georgia",15232 -2014-04-01,"Georgia",7145 -2014-05-01,"Georgia",4458 -2014-06-01,"Georgia",3617 -2014-07-01,"Georgia",3537 -2014-08-01,"Georgia",3540 -2014-09-01,"Georgia",3577 -2014-10-01,"Georgia",5533 -2014-11-01,"Georgia",17292 -2014-12-01,"Georgia",18324 -2015-01-01,"Georgia",26214 -2015-02-01,"Georgia",26723 -2015-03-01,"Georgia",12196 -2015-04-01,"Georgia",5538 -2015-05-01,"Georgia",4354 -2015-06-01,"Georgia",3679 -2015-07-01,"Georgia",3663 -2015-08-01,"Georgia",3751 -2015-09-01,"Georgia",3800 -2015-10-01,"Georgia",5883 -2015-11-01,"Georgia",10265 -2015-12-01,"Georgia",11963 -2016-01-01,"Georgia",26056 -2016-02-01,"Georgia",19769 -2016-03-01,"Georgia",9579 -2016-04-01,"Georgia",6476 -2016-05-01,"Georgia",4642 -2016-06-01,"Georgia",3772 -2016-07-01,"Georgia",3641 -2016-08-01,"Georgia",3830 -2016-09-01,"Georgia",3795 -2016-10-01,"Georgia",4812 -2016-11-01,"Georgia",10125 -2016-12-01,"Georgia",19426 -2017-01-01,"Georgia",18076 -2017-02-01,"Georgia",12391 -2017-03-01,"Georgia",12823 -2017-04-01,"Georgia",5704 -2017-05-01,"Georgia",4933 -2017-06-01,"Georgia",4103 -2017-07-01,"Georgia",3936 -2017-08-01,"Georgia",4044 -2017-09-01,"Georgia",4100 -2017-10-01,"Georgia",6715 -2017-11-01,"Georgia",12100 -2017-12-01,"Georgia",22326 -2018-01-01,"Georgia",30720 -2018-02-01,"Georgia",12259 -2018-03-01,"Georgia",15721 -2018-04-01,"Georgia",8844 -2018-05-01,"Georgia",4736 -2018-06-01,"Georgia",3981 -2018-07-01,"Georgia",3928 -2018-08-01,"Georgia",4105 -2018-09-01,"Georgia",3894 -2018-10-01,"Georgia",6319 -2018-11-01,"Georgia",17176 -2018-12-01,"Georgia",21401 -2019-01-01,"Georgia",24577 -2019-02-01,"Georgia",15173 -2019-03-01,"Georgia",14618 -2019-04-01,"Georgia",6864 -2019-05-01,"Georgia",4607 -2019-06-01,"Georgia",4112 -2019-07-01,"Georgia",6701 -2019-08-01,"Georgia",3952 -2019-09-01,"Georgia",3811 -2019-10-01,"Georgia",5453 -2019-11-01,"Georgia",14859 -2019-12-01,"Georgia",18521 -2020-01-01,"Georgia",21093 -2020-02-01,"Georgia",19285 -2020-03-01,"Georgia",10679 -2020-04-01,"Georgia",7420 -2020-05-01,"Georgia",5775 -2020-06-01,"Georgia",4296 -2020-07-01,"Georgia",3949 -2020-08-01,"Georgia",4023 -2020-09-01,"Georgia",4335 -2020-10-01,"Georgia",5501 -2020-11-01,"Georgia",10773 -2020-12-01,"Georgia",22744 -2021-01-01,"Georgia",24862 -2021-02-01,"Georgia",20953 -1989-01-01,"Hawaii",51 -1989-02-01,"Hawaii",52 -1989-03-01,"Hawaii",50 -1989-04-01,"Hawaii",50 -1989-05-01,"Hawaii",47 -1989-06-01,"Hawaii",49 -1989-07-01,"Hawaii",46 -1989-08-01,"Hawaii",42 -1989-09-01,"Hawaii",45 -1989-10-01,"Hawaii",43 -1989-11-01,"Hawaii",46 -1989-12-01,"Hawaii",46 -1990-01-01,"Hawaii",49 -1990-02-01,"Hawaii",52 -1990-03-01,"Hawaii",55 -1990-04-01,"Hawaii",50 -1990-05-01,"Hawaii",45 -1990-06-01,"Hawaii",49 -1990-07-01,"Hawaii",48 -1990-08-01,"Hawaii",39 -1990-09-01,"Hawaii",44 -1990-10-01,"Hawaii",42 -1990-11-01,"Hawaii",45 -1990-12-01,"Hawaii",48 -1991-01-01,"Hawaii",50 -1991-02-01,"Hawaii",50 -1991-03-01,"Hawaii",49 -1991-04-01,"Hawaii",51 -1991-05-01,"Hawaii",46 -1991-06-01,"Hawaii",45 -1991-07-01,"Hawaii",40 -1991-08-01,"Hawaii",39 -1991-09-01,"Hawaii",44 -1991-10-01,"Hawaii",42 -1991-11-01,"Hawaii",44 -1991-12-01,"Hawaii",46 -1992-01-01,"Hawaii",51 -1992-02-01,"Hawaii",50 -1992-03-01,"Hawaii",48 -1992-04-01,"Hawaii",46 -1992-05-01,"Hawaii",47 -1992-06-01,"Hawaii",46 -1992-07-01,"Hawaii",45 -1992-08-01,"Hawaii",42 -1992-09-01,"Hawaii",43 -1992-10-01,"Hawaii",42 -1992-11-01,"Hawaii",42 -1992-12-01,"Hawaii",50 -1993-01-01,"Hawaii",51 -1993-02-01,"Hawaii",51 -1993-03-01,"Hawaii",52 -1993-04-01,"Hawaii",48 -1993-05-01,"Hawaii",44 -1993-06-01,"Hawaii",47 -1993-07-01,"Hawaii",46 -1993-08-01,"Hawaii",41 -1993-09-01,"Hawaii",42 -1993-10-01,"Hawaii",42 -1993-11-01,"Hawaii",46 -1993-12-01,"Hawaii",47 -1994-01-01,"Hawaii",53 -1994-02-01,"Hawaii",53 -1994-03-01,"Hawaii",52 -1994-04-01,"Hawaii",51 -1994-05-01,"Hawaii",48 -1994-06-01,"Hawaii",49 -1994-07-01,"Hawaii",46 -1994-08-01,"Hawaii",42 -1994-09-01,"Hawaii",45 -1994-10-01,"Hawaii",43 -1994-11-01,"Hawaii",47 -1994-12-01,"Hawaii",50 -1995-01-01,"Hawaii",53 -1995-02-01,"Hawaii",52 -1995-03-01,"Hawaii",52 -1995-04-01,"Hawaii",50 -1995-05-01,"Hawaii",49 -1995-06-01,"Hawaii",50 -1995-07-01,"Hawaii",47 -1995-08-01,"Hawaii",43 -1995-09-01,"Hawaii",45 -1995-10-01,"Hawaii",44 -1995-11-01,"Hawaii",43 -1995-12-01,"Hawaii",45 -1996-01-01,"Hawaii",49 -1996-02-01,"Hawaii",51 -1996-03-01,"Hawaii",53 -1996-04-01,"Hawaii",49 -1996-05-01,"Hawaii",44 -1996-06-01,"Hawaii",45 -1996-07-01,"Hawaii",42 -1996-08-01,"Hawaii",40 -1996-09-01,"Hawaii",41 -1996-10-01,"Hawaii",39 -1996-11-01,"Hawaii",41 -1996-12-01,"Hawaii",44 -1997-01-01,"Hawaii",51 -1997-02-01,"Hawaii",49 -1997-03-01,"Hawaii",46 -1997-04-01,"Hawaii",41 -1997-05-01,"Hawaii",42 -1997-06-01,"Hawaii",41 -1997-07-01,"Hawaii",43 -1997-08-01,"Hawaii",41 -1997-09-01,"Hawaii",40 -1997-10-01,"Hawaii",39 -1997-11-01,"Hawaii",42 -1997-12-01,"Hawaii",45 -1998-01-01,"Hawaii",53 -1998-02-01,"Hawaii",52 -1998-03-01,"Hawaii",45 -1998-04-01,"Hawaii",49 -1998-05-01,"Hawaii",41 -1998-06-01,"Hawaii",47 -1998-07-01,"Hawaii",45 -1998-08-01,"Hawaii",40 -1998-09-01,"Hawaii",41 -1998-10-01,"Hawaii",39 -1998-11-01,"Hawaii",40 -1998-12-01,"Hawaii",44 -1999-01-01,"Hawaii",49 -1999-02-01,"Hawaii",48 -1999-03-01,"Hawaii",44 -1999-04-01,"Hawaii",46 -1999-05-01,"Hawaii",44 -1999-06-01,"Hawaii",43 -1999-07-01,"Hawaii",45 -1999-08-01,"Hawaii",41 -1999-09-01,"Hawaii",41 -1999-10-01,"Hawaii",44 -1999-11-01,"Hawaii",36 -1999-12-01,"Hawaii",42 -2000-01-01,"Hawaii",48 -2000-02-01,"Hawaii",49 -2000-03-01,"Hawaii",48 -2000-04-01,"Hawaii",46 -2000-05-01,"Hawaii",47 -2000-06-01,"Hawaii",45 -2000-07-01,"Hawaii",44 -2000-08-01,"Hawaii",39 -2000-09-01,"Hawaii",41 -2000-10-01,"Hawaii",41 -2000-11-01,"Hawaii",42 -2000-12-01,"Hawaii",44 -2001-01-01,"Hawaii",48 -2001-02-01,"Hawaii",43 -2001-03-01,"Hawaii",49 -2001-04-01,"Hawaii",47 -2001-05-01,"Hawaii",46 -2001-06-01,"Hawaii",47 -2001-07-01,"Hawaii",44 -2001-08-01,"Hawaii",41 -2001-09-01,"Hawaii",43 -2001-10-01,"Hawaii",40 -2001-11-01,"Hawaii",43 -2001-12-01,"Hawaii",47 -2002-01-01,"Hawaii",49 -2002-02-01,"Hawaii",48 -2002-03-01,"Hawaii",48 -2002-04-01,"Hawaii",49 -2002-05-01,"Hawaii",44 -2002-06-01,"Hawaii",41 -2002-07-01,"Hawaii",45 -2002-08-01,"Hawaii",42 -2002-09-01,"Hawaii",44 -2002-10-01,"Hawaii",36 -2002-11-01,"Hawaii",46 -2002-12-01,"Hawaii",48 -2003-01-01,"Hawaii",51 -2003-02-01,"Hawaii",50 -2003-03-01,"Hawaii",48 -2003-04-01,"Hawaii",46 -2003-05-01,"Hawaii",48 -2003-06-01,"Hawaii",40 -2003-07-01,"Hawaii",42 -2003-08-01,"Hawaii",44 -2003-09-01,"Hawaii",42 -2003-10-01,"Hawaii",39 -2003-11-01,"Hawaii",41 -2003-12-01,"Hawaii",46 -2004-01-01,"Hawaii",48 -2004-02-01,"Hawaii",46 -2004-03-01,"Hawaii",47 -2004-04-01,"Hawaii",48 -2004-05-01,"Hawaii",44 -2004-06-01,"Hawaii",42 -2004-07-01,"Hawaii",44 -2004-08-01,"Hawaii",40 -2004-09-01,"Hawaii",39 -2004-10-01,"Hawaii",40 -2004-11-01,"Hawaii",41 -2004-12-01,"Hawaii",45 -2005-01-01,"Hawaii",50 -2005-02-01,"Hawaii",44 -2005-03-01,"Hawaii",46 -2005-04-01,"Hawaii",49 -2005-05-01,"Hawaii",47 -2005-06-01,"Hawaii",42 -2005-07-01,"Hawaii",36 -2005-08-01,"Hawaii",40 -2005-09-01,"Hawaii",40 -2005-10-01,"Hawaii",35 -2005-11-01,"Hawaii",42 -2005-12-01,"Hawaii",44 -2006-01-01,"Hawaii",49 -2006-02-01,"Hawaii",43 -2006-03-01,"Hawaii",47 -2006-04-01,"Hawaii",47 -2006-05-01,"Hawaii",47 -2006-06-01,"Hawaii",44 -2006-07-01,"Hawaii",42 -2006-08-01,"Hawaii",39 -2006-09-01,"Hawaii",39 -2006-10-01,"Hawaii",39 -2006-11-01,"Hawaii",40 -2006-12-01,"Hawaii",43 -2007-01-01,"Hawaii",49 -2007-02-01,"Hawaii",45 -2007-03-01,"Hawaii",42 -2007-04-01,"Hawaii",45 -2007-05-01,"Hawaii",41 -2007-06-01,"Hawaii",43 -2007-07-01,"Hawaii",41 -2007-08-01,"Hawaii",38 -2007-09-01,"Hawaii",39 -2007-10-01,"Hawaii",39 -2007-11-01,"Hawaii",43 -2007-12-01,"Hawaii",45 -2008-01-01,"Hawaii",47 -2008-02-01,"Hawaii",46 -2008-03-01,"Hawaii",44 -2008-04-01,"Hawaii",44 -2008-05-01,"Hawaii",42 -2008-06-01,"Hawaii",41 -2008-07-01,"Hawaii",41 -2008-08-01,"Hawaii",37 -2008-09-01,"Hawaii",37 -2008-10-01,"Hawaii",38 -2008-11-01,"Hawaii",40 -2008-12-01,"Hawaii",43 -2009-01-01,"Hawaii",49 -2009-02-01,"Hawaii",44 -2009-03-01,"Hawaii",46 -2009-04-01,"Hawaii",47 -2009-05-01,"Hawaii",43 -2009-06-01,"Hawaii",43 -2009-07-01,"Hawaii",41 -2009-08-01,"Hawaii",38 -2009-09-01,"Hawaii",39 -2009-10-01,"Hawaii",37 -2009-11-01,"Hawaii",37 -2009-12-01,"Hawaii",44 -2010-01-01,"Hawaii",52 -2010-02-01,"Hawaii",43 -2010-03-01,"Hawaii",44 -2010-04-01,"Hawaii",50 -2010-05-01,"Hawaii",42 -2010-06-01,"Hawaii",42 -2010-07-01,"Hawaii",43 -2010-08-01,"Hawaii",41 -2010-09-01,"Hawaii",35 -2010-10-01,"Hawaii",37 -2010-11-01,"Hawaii",37 -2010-12-01,"Hawaii",42 -2011-01-01,"Hawaii",47 -2011-02-01,"Hawaii",41 -2011-03-01,"Hawaii",40 -2011-04-01,"Hawaii",44 -2011-05-01,"Hawaii",41 -2011-06-01,"Hawaii",41 -2011-07-01,"Hawaii",40 -2011-08-01,"Hawaii",35 -2011-09-01,"Hawaii",42 -2011-10-01,"Hawaii",36 -2011-11-01,"Hawaii",36 -2011-12-01,"Hawaii",42 -2012-01-01,"Hawaii",48 -2012-02-01,"Hawaii",41 -2012-03-01,"Hawaii",45 -2012-04-01,"Hawaii",46 -2012-05-01,"Hawaii",41 -2012-06-01,"Hawaii",42 -2012-07-01,"Hawaii",38 -2012-08-01,"Hawaii",37 -2012-09-01,"Hawaii",35 -2012-10-01,"Hawaii",34 -2012-11-01,"Hawaii",36 -2012-12-01,"Hawaii",37 -2013-01-01,"Hawaii",52 -2013-02-01,"Hawaii",50 -2013-03-01,"Hawaii",48 -2013-04-01,"Hawaii",49 -2013-05-01,"Hawaii",50 -2013-06-01,"Hawaii",50 -2013-07-01,"Hawaii",47 -2013-08-01,"Hawaii",47 -2013-09-01,"Hawaii",47 -2013-10-01,"Hawaii",44 -2013-11-01,"Hawaii",48 -2013-12-01,"Hawaii",49 -2014-01-01,"Hawaii",57 -2014-02-01,"Hawaii",53 -2014-03-01,"Hawaii",50 -2014-04-01,"Hawaii",53 -2014-05-01,"Hawaii",49 -2014-06-01,"Hawaii",48 -2014-07-01,"Hawaii",48 -2014-08-01,"Hawaii",44 -2014-09-01,"Hawaii",43 -2014-10-01,"Hawaii",43 -2014-11-01,"Hawaii",44 -2014-12-01,"Hawaii",50 -2015-01-01,"Hawaii",60 -2015-02-01,"Hawaii",52 -2015-03-01,"Hawaii",51 -2015-04-01,"Hawaii",54 -2015-05-01,"Hawaii",46 -2015-06-01,"Hawaii",46 -2015-07-01,"Hawaii",45 -2015-08-01,"Hawaii",43 -2015-09-01,"Hawaii",41 -2015-10-01,"Hawaii",44 -2015-11-01,"Hawaii",44 -2015-12-01,"Hawaii",47 -2016-01-01,"Hawaii",52 -2016-02-01,"Hawaii",47 -2016-03-01,"Hawaii",49 -2016-04-01,"Hawaii",51 -2016-05-01,"Hawaii",44 -2016-06-01,"Hawaii",45 -2016-07-01,"Hawaii",45 -2016-08-01,"Hawaii",45 -2016-09-01,"Hawaii",49 -2016-10-01,"Hawaii",45 -2016-11-01,"Hawaii",47 -2016-12-01,"Hawaii",52 -2017-01-01,"Hawaii",58 -2017-02-01,"Hawaii",52 -2017-03-01,"Hawaii",52 -2017-04-01,"Hawaii",49 -2017-05-01,"Hawaii",44 -2017-06-01,"Hawaii",49 -2017-07-01,"Hawaii",43 -2017-08-01,"Hawaii",42 -2017-09-01,"Hawaii",44 -2017-10-01,"Hawaii",43 -2017-11-01,"Hawaii",47 -2017-12-01,"Hawaii",50 -2018-01-01,"Hawaii",58 -2018-02-01,"Hawaii",51 -2018-03-01,"Hawaii",52 -2018-04-01,"Hawaii",52 -2018-05-01,"Hawaii",49 -2018-06-01,"Hawaii",50 -2018-07-01,"Hawaii",46 -2018-08-01,"Hawaii",47 -2018-09-01,"Hawaii",45 -2018-10-01,"Hawaii",44 -2018-11-01,"Hawaii",47 -2018-12-01,"Hawaii",49 -2019-01-01,"Hawaii",58 -2019-02-01,"Hawaii",51 -2019-03-01,"Hawaii",55 -2019-04-01,"Hawaii",51 -2019-05-01,"Hawaii",51 -2019-06-01,"Hawaii",44 -2019-07-01,"Hawaii",47 -2019-08-01,"Hawaii",44 -2019-09-01,"Hawaii",43 -2019-10-01,"Hawaii",45 -2019-11-01,"Hawaii",42 -2019-12-01,"Hawaii",46 -2020-01-01,"Hawaii",54 -2020-02-01,"Hawaii",49 -2020-03-01,"Hawaii",51 -2020-04-01,"Hawaii",57 -2020-05-01,"Hawaii",50 -2020-06-01,"Hawaii",50 -2020-07-01,"Hawaii",51 -2020-08-01,"Hawaii",50 -2020-09-01,"Hawaii",46 -2020-10-01,"Hawaii",48 -2020-11-01,"Hawaii",45 -2020-12-01,"Hawaii",53 -2021-01-01,"Hawaii",57 -2021-02-01,"Hawaii",52 -1989-01-01,"Idaho",1619 -1989-02-01,"Idaho",1672 -1989-03-01,"Idaho",1206 -1989-04-01,"Idaho",747 -1989-05-01,"Idaho",368 -1989-06-01,"Idaho",306 -1989-07-01,"Idaho",160 -1989-08-01,"Idaho",146 -1989-09-01,"Idaho",221 -1989-10-01,"Idaho",329 -1989-11-01,"Idaho",768 -1989-12-01,"Idaho",1241 -1990-01-01,"Idaho",1445 -1990-02-01,"Idaho",1419 -1990-03-01,"Idaho",1078 -1990-04-01,"Idaho",630 -1990-05-01,"Idaho",475 -1990-06-01,"Idaho",360 -1990-07-01,"Idaho",173 -1990-08-01,"Idaho",160 -1990-09-01,"Idaho",186 -1990-10-01,"Idaho",349 -1990-11-01,"Idaho",896 -1990-12-01,"Idaho",1397 -1991-01-01,"Idaho",2145 -1991-02-01,"Idaho",1469 -1991-03-01,"Idaho",1059 -1991-04-01,"Idaho",909 -1991-05-01,"Idaho",696 -1991-06-01,"Idaho",393 -1991-07-01,"Idaho",194 -1991-08-01,"Idaho",179 -1991-09-01,"Idaho",217 -1991-10-01,"Idaho",314 -1991-11-01,"Idaho",1088 -1991-12-01,"Idaho",1559 -1992-01-01,"Idaho",1843 -1992-02-01,"Idaho",1361 -1992-03-01,"Idaho",944 -1992-04-01,"Idaho",730 -1992-05-01,"Idaho",445 -1992-06-01,"Idaho",247 -1992-07-01,"Idaho",233 -1992-08-01,"Idaho",183 -1992-09-01,"Idaho",274 -1992-10-01,"Idaho",428 -1992-11-01,"Idaho",1024 -1992-12-01,"Idaho",1946 -1993-01-01,"Idaho",2265 -1993-02-01,"Idaho",1959 -1993-03-01,"Idaho",1705 -1993-04-01,"Idaho",1044 -1993-05-01,"Idaho",692 -1993-06-01,"Idaho",334 -1993-07-01,"Idaho",302 -1993-08-01,"Idaho",251 -1993-09-01,"Idaho",310 -1993-10-01,"Idaho",481 -1993-11-01,"Idaho",1159 -1993-12-01,"Idaho",2057 -1994-01-01,"Idaho",1929 -1994-02-01,"Idaho",1926 -1994-03-01,"Idaho",1432 -1994-04-01,"Idaho",1001 -1994-05-01,"Idaho",568 -1994-06-01,"Idaho",367 -1994-07-01,"Idaho",298 -1994-08-01,"Idaho",212 -1994-09-01,"Idaho",273 -1994-10-01,"Idaho",584 -1994-11-01,"Idaho",1456 -1994-12-01,"Idaho",2240 -1995-01-01,"Idaho",2375 -1995-02-01,"Idaho",1760 -1995-03-01,"Idaho",1503 -1995-04-01,"Idaho",1274 -1995-05-01,"Idaho",915 -1995-06-01,"Idaho",539 -1995-07-01,"Idaho",338 -1995-08-01,"Idaho",254 -1995-09-01,"Idaho",304 -1995-10-01,"Idaho",628 -1995-11-01,"Idaho",1364 -1995-12-01,"Idaho",1748 -1996-01-01,"Idaho",2369 -1996-02-01,"Idaho",2510 -1996-03-01,"Idaho",1847 -1996-04-01,"Idaho",1315 -1996-05-01,"Idaho",976 -1996-06-01,"Idaho",542 -1996-07-01,"Idaho",300 -1996-08-01,"Idaho",277 -1996-09-01,"Idaho",364 -1996-10-01,"Idaho",646 -1996-11-01,"Idaho",1570 -1996-12-01,"Idaho",2224 -1997-01-01,"Idaho",2562 -1997-02-01,"Idaho",2540 -1997-03-01,"Idaho",1907 -1997-04-01,"Idaho",1463 -1997-05-01,"Idaho",938 -1997-06-01,"Idaho",433 -1997-07-01,"Idaho",345 -1997-08-01,"Idaho",294 -1997-09-01,"Idaho",320 -1997-10-01,"Idaho",638 -1997-11-01,"Idaho",1427 -1997-12-01,"Idaho",2371 -1998-01-01,"Idaho",2980 -1998-02-01,"Idaho",2236 -1998-03-01,"Idaho",2035 -1998-04-01,"Idaho",1563 -1998-05-01,"Idaho",906 -1998-06-01,"Idaho",667 -1998-07-01,"Idaho",403 -1998-08-01,"Idaho",292 -1998-09-01,"Idaho",316 -1998-10-01,"Idaho",657 -1998-11-01,"Idaho",1510 -1998-12-01,"Idaho",2438 -1999-01-01,"Idaho",3097 -1999-02-01,"Idaho",2640 -1999-03-01,"Idaho",2263 -1999-04-01,"Idaho",1879 -1999-05-01,"Idaho",1247 -1999-06-01,"Idaho",647 -1999-07-01,"Idaho",429 -1999-08-01,"Idaho",360 -1999-09-01,"Idaho",438 -1999-10-01,"Idaho",869 -1999-11-01,"Idaho",1530 -1999-12-01,"Idaho",2514 -2000-01-01,"Idaho",3331 -2000-02-01,"Idaho",2716 -2000-03-01,"Idaho",2298 -2000-04-01,"Idaho",1695 -2000-05-01,"Idaho",909 -2000-06-01,"Idaho",633 -2000-07-01,"Idaho",438 -2000-08-01,"Idaho",349 -2000-09-01,"Idaho",484 -2000-10-01,"Idaho",859 -2000-11-01,"Idaho",2147 -2000-12-01,"Idaho",3272 -2001-01-01,"Idaho",3499 -2001-02-01,"Idaho",3464 -2001-03-01,"Idaho",2385 -2001-04-01,"Idaho",1799 -2001-05-01,"Idaho",1066 -2001-06-01,"Idaho",585 -2001-07-01,"Idaho",413 -2001-08-01,"Idaho",341 -2001-09-01,"Idaho",424 -2001-10-01,"Idaho",713 -2001-11-01,"Idaho",1601 -2001-12-01,"Idaho",2827 -2002-01-01,"Idaho",3455 -2002-02-01,"Idaho",3448 -2002-03-01,"Idaho",2802 -2002-04-01,"Idaho",1798 -2002-05-01,"Idaho",1239 -2002-06-01,"Idaho",698 -2002-07-01,"Idaho",392 -2002-08-01,"Idaho",360 -2002-09-01,"Idaho",442 -2002-10-01,"Idaho",868 -2002-11-01,"Idaho",2152 -2002-12-01,"Idaho",2744 -2003-01-01,"Idaho",3023 -2003-02-01,"Idaho",2758 -2003-03-01,"Idaho",2475 -2003-04-01,"Idaho",1857 -2003-05-01,"Idaho",1403 -2003-06-01,"Idaho",632 -2003-07-01,"Idaho",413 -2003-08-01,"Idaho",354 -2003-09-01,"Idaho",452 -2003-10-01,"Idaho",651 -2003-11-01,"Idaho",1926 -2003-12-01,"Idaho",2994 -2004-01-01,"Idaho",4010 -2004-02-01,"Idaho",3506 -2004-03-01,"Idaho",2484 -2004-04-01,"Idaho",1469 -2004-05-01,"Idaho",1019 -2004-06-01,"Idaho",713 -2004-07-01,"Idaho",461 -2004-08-01,"Idaho",395 -2004-09-01,"Idaho",535 -2004-10-01,"Idaho",813 -2004-11-01,"Idaho",2054 -2004-12-01,"Idaho",3225 -2005-01-01,"Idaho",3792 -2005-02-01,"Idaho",3278 -2005-03-01,"Idaho",2365 -2005-04-01,"Idaho",2118 -2005-05-01,"Idaho",1155 -2005-06-01,"Idaho",752 -2005-07-01,"Idaho",503 -2005-08-01,"Idaho",379 -2005-09-01,"Idaho",537 -2005-10-01,"Idaho",923 -2005-11-01,"Idaho",1919 -2005-12-01,"Idaho",3881 -2006-01-01,"Idaho",3702 -2006-02-01,"Idaho",3509 -2006-03-01,"Idaho",2961 -2006-04-01,"Idaho",2132 -2006-05-01,"Idaho",947 -2006-06-01,"Idaho",660 -2006-07-01,"Idaho",472 -2006-08-01,"Idaho",403 -2006-09-01,"Idaho",595 -2006-10-01,"Idaho",1052 -2006-11-01,"Idaho",2408 -2006-12-01,"Idaho",3608 -2007-01-01,"Idaho",4359 -2007-02-01,"Idaho",3859 -2007-03-01,"Idaho",2611 -2007-04-01,"Idaho",1826 -2007-05-01,"Idaho",1130 -2007-06-01,"Idaho",723 -2007-07-01,"Idaho",505 -2007-08-01,"Idaho",460 -2007-09-01,"Idaho",580 -2007-10-01,"Idaho",1179 -2007-11-01,"Idaho",2450 -2007-12-01,"Idaho",3738 -2008-01-01,"Idaho",4452 -2008-02-01,"Idaho",4331 -2008-03-01,"Idaho",3179 -2008-04-01,"Idaho",2656 -2008-05-01,"Idaho",1566 -2008-06-01,"Idaho",886 -2008-07-01,"Idaho",562 -2008-08-01,"Idaho",498 -2008-09-01,"Idaho",595 -2008-10-01,"Idaho",1671 -2008-11-01,"Idaho",2665 -2008-12-01,"Idaho",4471 -2009-01-01,"Idaho",4227 -2009-02-01,"Idaho",3369 -2009-03-01,"Idaho",3074 -2009-04-01,"Idaho",1774 -2009-05-01,"Idaho",1008 -2009-06-01,"Idaho",532 -2009-07-01,"Idaho",527 -2009-08-01,"Idaho",515 -2009-09-01,"Idaho",573 -2009-10-01,"Idaho",1820 -2009-11-01,"Idaho",3214 -2009-12-01,"Idaho",4897 -2010-01-01,"Idaho",3788 -2010-02-01,"Idaho",2965 -2010-03-01,"Idaho",2632 -2010-04-01,"Idaho",2048 -2010-05-01,"Idaho",1401 -2010-06-01,"Idaho",819 -2010-07-01,"Idaho",439 -2010-08-01,"Idaho",420 -2010-09-01,"Idaho",692 -2010-10-01,"Idaho",1300 -2010-11-01,"Idaho",3378 -2010-12-01,"Idaho",4094 -2011-01-01,"Idaho",4321 -2011-02-01,"Idaho",3719 -2011-03-01,"Idaho",2890 -2011-04-01,"Idaho",2272 -2011-05-01,"Idaho",1312 -2011-06-01,"Idaho",1050 -2011-07-01,"Idaho",624 -2011-08-01,"Idaho",496 -2011-09-01,"Idaho",755 -2011-10-01,"Idaho",1475 -2011-11-01,"Idaho",3328 -2011-12-01,"Idaho",4424 -2012-01-01,"Idaho",4150 -2012-02-01,"Idaho",3356 -2012-03-01,"Idaho",2694 -2012-04-01,"Idaho",1602 -2012-05-01,"Idaho",1119 -2012-06-01,"Idaho",674 -2012-07-01,"Idaho",578 -2012-08-01,"Idaho",529 -2012-09-01,"Idaho",614 -2012-10-01,"Idaho",1756 -2012-11-01,"Idaho",2803 -2012-12-01,"Idaho",4050 -2013-01-01,"Idaho",5590 -2013-02-01,"Idaho",3496 -2013-03-01,"Idaho",2777 -2013-04-01,"Idaho",1885 -2013-05-01,"Idaho",916 -2013-06-01,"Idaho",663 -2013-07-01,"Idaho",481 -2013-08-01,"Idaho",431 -2013-09-01,"Idaho",661 -2013-10-01,"Idaho",1974 -2013-11-01,"Idaho",3260 -2013-12-01,"Idaho",5235 -2014-01-01,"Idaho",4456 -2014-02-01,"Idaho",3469 -2014-03-01,"Idaho",2643 -2014-04-01,"Idaho",1787 -2014-05-01,"Idaho",870 -2014-06-01,"Idaho",617 -2014-07-01,"Idaho",552 -2014-08-01,"Idaho",541 -2014-09-01,"Idaho",628 -2014-10-01,"Idaho",1334 -2014-11-01,"Idaho",3737 -2014-12-01,"Idaho",3981 -2015-01-01,"Idaho",4346 -2015-02-01,"Idaho",2701 -2015-03-01,"Idaho",2203 -2015-04-01,"Idaho",1736 -2015-05-01,"Idaho",900 -2015-06-01,"Idaho",521 -2015-07-01,"Idaho",494 -2015-08-01,"Idaho",367 -2015-09-01,"Idaho",652 -2015-10-01,"Idaho",1017 -2015-11-01,"Idaho",3704 -2015-12-01,"Idaho",4842 -2016-01-01,"Idaho",4525 -2016-02-01,"Idaho",3284 -2016-03-01,"Idaho",2566 -2016-04-01,"Idaho",1308 -2016-05-01,"Idaho",893 -2016-06-01,"Idaho",587 -2016-07-01,"Idaho",524 -2016-08-01,"Idaho",498 -2016-09-01,"Idaho",690 -2016-10-01,"Idaho",1457 -2016-11-01,"Idaho",2661 -2016-12-01,"Idaho",5896 -2017-01-01,"Idaho",6199 -2017-02-01,"Idaho",3829 -2017-03-01,"Idaho",2669 -2017-04-01,"Idaho",2016 -2017-05-01,"Idaho",1114 -2017-06-01,"Idaho",599 -2017-07-01,"Idaho",518 -2017-08-01,"Idaho",530 -2017-09-01,"Idaho",836 -2017-10-01,"Idaho",2147 -2017-11-01,"Idaho",3069 -2017-12-01,"Idaho",5273 -2018-01-01,"Idaho",4249 -2018-02-01,"Idaho",4074 -2018-03-01,"Idaho",3218 -2018-04-01,"Idaho",1902 -2018-05-01,"Idaho",812 -2018-06-01,"Idaho",665 -2018-07-01,"Idaho",555 -2018-08-01,"Idaho",575 -2018-09-01,"Idaho",745 -2018-10-01,"Idaho",1750 -2018-11-01,"Idaho",3791 -2018-12-01,"Idaho",5150 -2019-01-01,"Idaho",4980 -2019-02-01,"Idaho",4695 -2019-03-01,"Idaho",3527 -2019-04-01,"Idaho",1891 -2019-05-01,"Idaho",1138 -2019-06-01,"Idaho",730 -2019-07-01,"Idaho",578 -2019-08-01,"Idaho",552 -2019-09-01,"Idaho",864 -2019-10-01,"Idaho",2818 -2019-11-01,"Idaho",4169 -2019-12-01,"Idaho",4861 -2020-01-01,"Idaho",4622 -2020-02-01,"Idaho",4434 -2020-03-01,"Idaho",3142 -2020-04-01,"Idaho",2087 -2020-05-01,"Idaho",1283 -2020-06-01,"Idaho",892 -2020-07-01,"Idaho",597 -2020-08-01,"Idaho",597 -2020-09-01,"Idaho",799 -2020-10-01,"Idaho",1857 -2020-11-01,"Idaho",4177 -2020-12-01,"Idaho",5445 -2021-01-01,"Idaho",5196 -2021-02-01,"Idaho",4626 -1989-01-01,"Illinois",74796 -1989-02-01,"Illinois",76868 -1989-03-01,"Illinois",64320 -1989-04-01,"Illinois",40575 -1989-05-01,"Illinois",24582 -1989-06-01,"Illinois",12602 -1989-07-01,"Illinois",10775 -1989-08-01,"Illinois",9958 -1989-09-01,"Illinois",13627 -1989-10-01,"Illinois",26027 -1989-11-01,"Illinois",51490 -1989-12-01,"Illinois",94362 -1990-01-01,"Illinois",71107 -1990-02-01,"Illinois",64322 -1990-03-01,"Illinois",52008 -1990-04-01,"Illinois",37441 -1990-05-01,"Illinois",23464 -1990-06-01,"Illinois",12361 -1990-07-01,"Illinois",10424 -1990-08-01,"Illinois",10802 -1990-09-01,"Illinois",12633 -1990-10-01,"Illinois",30333 -1990-11-01,"Illinois",40903 -1990-12-01,"Illinois",76365 -1991-01-01,"Illinois",92323 -1991-02-01,"Illinois",62627 -1991-03-01,"Illinois",54680 -1991-04-01,"Illinois",32273 -1991-05-01,"Illinois",18197 -1991-06-01,"Illinois",11041 -1991-07-01,"Illinois",10168 -1991-08-01,"Illinois",10122 -1991-09-01,"Illinois",16099 -1991-10-01,"Illinois",27231 -1991-11-01,"Illinois",61099 -1991-12-01,"Illinois",71109 -1992-01-01,"Illinois",80315 -1992-02-01,"Illinois",63013 -1992-03-01,"Illinois",59187 -1992-04-01,"Illinois",40752 -1992-05-01,"Illinois",22488 -1992-06-01,"Illinois",12963 -1992-07-01,"Illinois",10391 -1992-08-01,"Illinois",11171 -1992-09-01,"Illinois",13758 -1992-10-01,"Illinois",28742 -1992-11-01,"Illinois",54950 -1992-12-01,"Illinois",77632 -1993-01-01,"Illinois",85860 -1993-02-01,"Illinois",74466 -1993-03-01,"Illinois",67993 -1993-04-01,"Illinois",42426 -1993-05-01,"Illinois",18258 -1993-06-01,"Illinois",12716 -1993-07-01,"Illinois",10373 -1993-08-01,"Illinois",9728 -1993-09-01,"Illinois",15193 -1993-10-01,"Illinois",31937 -1993-11-01,"Illinois",51226 -1993-12-01,"Illinois",75134 -1994-01-01,"Illinois",104083 -1994-02-01,"Illinois",81098 -1994-03-01,"Illinois",57684 -1994-04-01,"Illinois",34511 -1994-05-01,"Illinois",20774 -1994-06-01,"Illinois",11747 -1994-07-01,"Illinois",10270 -1994-08-01,"Illinois",10238 -1994-09-01,"Illinois",11782 -1994-10-01,"Illinois",24121 -1994-11-01,"Illinois",42438 -1994-12-01,"Illinois",65041 -1995-01-01,"Illinois",88983 -1995-02-01,"Illinois",74502 -1995-03-01,"Illinois",54784 -1995-04-01,"Illinois",42392 -1995-05-01,"Illinois",20203 -1995-06-01,"Illinois",12034 -1995-07-01,"Illinois",11706 -1995-08-01,"Illinois",9950 -1995-09-01,"Illinois",13730 -1995-10-01,"Illinois",26650 -1995-11-01,"Illinois",64407 -1995-12-01,"Illinois",81457 -1996-01-01,"Illinois",96184 -1996-02-01,"Illinois",81430 -1996-03-01,"Illinois",71599 -1996-04-01,"Illinois",43288 -1996-05-01,"Illinois",27063 -1996-06-01,"Illinois",12437 -1996-07-01,"Illinois",11346 -1996-08-01,"Illinois",9546 -1996-09-01,"Illinois",13137 -1996-10-01,"Illinois",28081 -1996-11-01,"Illinois",63715 -1996-12-01,"Illinois",80922 -1997-01-01,"Illinois",100050 -1997-02-01,"Illinois",69319 -1997-03-01,"Illinois",61395 -1997-04-01,"Illinois",41167 -1997-05-01,"Illinois",26059 -1997-06-01,"Illinois",11606 -1997-07-01,"Illinois",10370 -1997-08-01,"Illinois",10102 -1997-09-01,"Illinois",11690 -1997-10-01,"Illinois",29455 -1997-11-01,"Illinois",56299 -1997-12-01,"Illinois",69718 -1998-01-01,"Illinois",77586 -1998-02-01,"Illinois",53096 -1998-03-01,"Illinois",60088 -1998-04-01,"Illinois",32946 -1998-05-01,"Illinois",14764 -1998-06-01,"Illinois",11525 -1998-07-01,"Illinois",9488 -1998-08-01,"Illinois",10434 -1998-09-01,"Illinois",10506 -1998-10-01,"Illinois",21536 -1998-11-01,"Illinois",43853 -1998-12-01,"Illinois",63990 -1999-01-01,"Illinois",93882 -1999-02-01,"Illinois",61494 -1999-03-01,"Illinois",61473 -1999-04-01,"Illinois",31267 -1999-05-01,"Illinois",15872 -1999-06-01,"Illinois",11128 -1999-07-01,"Illinois",9971 -1999-08-01,"Illinois",9091 -1999-09-01,"Illinois",12552 -1999-10-01,"Illinois",26435 -1999-11-01,"Illinois",38571 -1999-12-01,"Illinois",73482 -2000-01-01,"Illinois",84544 -2000-02-01,"Illinois",64000 -2000-03-01,"Illinois",45617 -2000-04-01,"Illinois",35412 -2000-05-01,"Illinois",15613 -2000-06-01,"Illinois",12052 -2000-07-01,"Illinois",9549 -2000-08-01,"Illinois",10589 -2000-09-01,"Illinois",12373 -2000-10-01,"Illinois",21839 -2000-11-01,"Illinois",55919 -2000-12-01,"Illinois",99546 -2001-01-01,"Illinois",85792 -2001-02-01,"Illinois",72298 -2001-03-01,"Illinois",61158 -2001-04-01,"Illinois",26391 -2001-05-01,"Illinois",14412 -2001-06-01,"Illinois",11415 -2001-07-01,"Illinois",9923 -2001-08-01,"Illinois",8945 -2001-09-01,"Illinois",12180 -2001-10-01,"Illinois",26244 -2001-11-01,"Illinois",34223 -2001-12-01,"Illinois",64165 -2002-01-01,"Illinois",70918 -2002-02-01,"Illinois",63278 -2002-03-01,"Illinois",64626 -2002-04-01,"Illinois",42088 -2002-05-01,"Illinois",23123 -2002-06-01,"Illinois",12078 -2002-07-01,"Illinois",9399 -2002-08-01,"Illinois",9047 -2002-09-01,"Illinois",9956 -2002-10-01,"Illinois",29026 -2002-11-01,"Illinois",52322 -2002-12-01,"Illinois",73540 -2003-01-01,"Illinois",96167 -2003-02-01,"Illinois",82225 -2003-03-01,"Illinois",59585 -2003-04-01,"Illinois",35270 -2003-05-01,"Illinois",17433 -2003-06-01,"Illinois",11715 -2003-07-01,"Illinois",9865 -2003-08-01,"Illinois",9543 -2003-09-01,"Illinois",11428 -2003-10-01,"Illinois",25469 -2003-11-01,"Illinois",44978 -2003-12-01,"Illinois",69774 -2004-01-01,"Illinois",95279 -2004-02-01,"Illinois",73647 -2004-03-01,"Illinois",51248 -2004-04-01,"Illinois",30629 -2004-05-01,"Illinois",15424 -2004-06-01,"Illinois",11154 -2004-07-01,"Illinois",9702 -2004-08-01,"Illinois",9767 -2004-09-01,"Illinois",9744 -2004-10-01,"Illinois",21618 -2004-11-01,"Illinois",40606 -2004-12-01,"Illinois",74592 -2005-01-01,"Illinois",85849 -2005-02-01,"Illinois",63390 -2005-03-01,"Illinois",61412 -2005-04-01,"Illinois",26819 -2005-05-01,"Illinois",18505 -2005-06-01,"Illinois",10470 -2005-07-01,"Illinois",9337 -2005-08-01,"Illinois",8472 -2005-09-01,"Illinois",8761 -2005-10-01,"Illinois",20443 -2005-11-01,"Illinois",42598 -2005-12-01,"Illinois",81516 -2006-01-01,"Illinois",62158 -2006-02-01,"Illinois",67517 -2006-03-01,"Illinois",54075 -2006-04-01,"Illinois",34812 -2006-05-01,"Illinois",19116 -2006-06-01,"Illinois",10853 -2006-07-01,"Illinois",10060 -2006-08-01,"Illinois",9068 -2006-09-01,"Illinois",9738 -2006-10-01,"Illinois",23866 -2006-11-01,"Illinois",40401 -2006-12-01,"Illinois",56566 -2007-01-01,"Illinois",67974 -2007-02-01,"Illinois",90231 -2007-03-01,"Illinois",64487 -2007-04-01,"Illinois",40110 -2007-05-01,"Illinois",19505 -2007-06-01,"Illinois",9107 -2007-07-01,"Illinois",8861 -2007-08-01,"Illinois",8785 -2007-09-01,"Illinois",8472 -2007-10-01,"Illinois",15467 -2007-11-01,"Illinois",35048 -2007-12-01,"Illinois",65002 -2008-01-01,"Illinois",79752 -2008-02-01,"Illinois",85028 -2008-03-01,"Illinois",68754 -2008-04-01,"Illinois",43267 -2008-05-01,"Illinois",21221 -2008-06-01,"Illinois",12724 -2008-07-01,"Illinois",8748 -2008-08-01,"Illinois",8535 -2008-09-01,"Illinois",8579 -2008-10-01,"Illinois",17864 -2008-11-01,"Illinois",35861 -2008-12-01,"Illinois",75594 -2009-01-01,"Illinois",91118 -2009-02-01,"Illinois",74506 -2009-03-01,"Illinois",59533 -2009-04-01,"Illinois",40348 -2009-05-01,"Illinois",17829 -2009-06-01,"Illinois",12280 -2009-07-01,"Illinois",8994 -2009-08-01,"Illinois",8333 -2009-09-01,"Illinois",9105 -2009-10-01,"Illinois",22990 -2009-11-01,"Illinois",31518 -2009-12-01,"Illinois",63511 -2010-01-01,"Illinois",83080 -2010-02-01,"Illinois",68555 -2010-03-01,"Illinois",53392 -2010-04-01,"Illinois",26705 -2010-05-01,"Illinois",15227 -2010-06-01,"Illinois",9805 -2010-07-01,"Illinois",7803 -2010-08-01,"Illinois",7626 -2010-09-01,"Illinois",9041 -2010-10-01,"Illinois",16144 -2010-11-01,"Illinois",38480 -2010-12-01,"Illinois",80710 -2011-01-01,"Illinois",89136 -2011-02-01,"Illinois",68957 -2011-03-01,"Illinois",54882 -2011-04-01,"Illinois",32122 -2011-05-01,"Illinois",18575 -2011-06-01,"Illinois",10256 -2011-07-01,"Illinois",8130 -2011-08-01,"Illinois",7804 -2011-09-01,"Illinois",10332 -2011-10-01,"Illinois",20218 -2011-11-01,"Illinois",38763 -2011-12-01,"Illinois",58968 -2012-01-01,"Illinois",73215 -2012-02-01,"Illinois",60650 -2012-03-01,"Illinois",29727 -2012-04-01,"Illinois",25243 -2012-05-01,"Illinois",11707 -2012-06-01,"Illinois",9099 -2012-07-01,"Illinois",7511 -2012-08-01,"Illinois",7878 -2012-09-01,"Illinois",9913 -2012-10-01,"Illinois",24148 -2012-11-01,"Illinois",44531 -2012-12-01,"Illinois",57269 -2013-01-01,"Illinois",78809 -2013-02-01,"Illinois",70482 -2013-03-01,"Illinois",64802 -2013-04-01,"Illinois",34245 -2013-05-01,"Illinois",15219 -2013-06-01,"Illinois",9853 -2013-07-01,"Illinois",8595 -2013-08-01,"Illinois",8483 -2013-09-01,"Illinois",8600 -2013-10-01,"Illinois",22640 -2013-11-01,"Illinois",50768 -2013-12-01,"Illinois",80106 -2014-01-01,"Illinois",101155 -2014-02-01,"Illinois",84515 -2014-03-01,"Illinois",66611 -2014-04-01,"Illinois",30870 -2014-05-01,"Illinois",16225 -2014-06-01,"Illinois",9640 -2014-07-01,"Illinois",8857 -2014-08-01,"Illinois",8238 -2014-09-01,"Illinois",10591 -2014-10-01,"Illinois",22380 -2014-11-01,"Illinois",57400 -2014-12-01,"Illinois",62983 -2015-01-01,"Illinois",82554 -2015-02-01,"Illinois",85540 -2015-03-01,"Illinois",54278 -2015-04-01,"Illinois",26783 -2015-05-01,"Illinois",13194 -2015-06-01,"Illinois",9419 -2015-07-01,"Illinois",7959 -2015-08-01,"Illinois",7790 -2015-09-01,"Illinois",8118 -2015-10-01,"Illinois",18138 -2015-11-01,"Illinois",36127 -2015-12-01,"Illinois",50976 -2016-01-01,"Illinois",79022 -2016-02-01,"Illinois",62741 -2016-03-01,"Illinois",41365 -2016-04-01,"Illinois",30372 -2016-05-01,"Illinois",15848 -2016-06-01,"Illinois",9531 -2016-07-01,"Illinois",7828 -2016-08-01,"Illinois",7463 -2016-09-01,"Illinois",7804 -2016-10-01,"Illinois",14683 -2016-11-01,"Illinois",32863 -2016-12-01,"Illinois",77071 -2017-01-01,"Illinois",72098 -2017-02-01,"Illinois",47529 -2017-03-01,"Illinois",52136 -2017-04-01,"Illinois",23309 -2017-05-01,"Illinois",16983 -2017-06-01,"Illinois",9182 -2017-07-01,"Illinois",8673 -2017-08-01,"Illinois",8092 -2017-09-01,"Illinois",8007 -2017-10-01,"Illinois",17826 -2017-11-01,"Illinois",44142 -2017-12-01,"Illinois",69533 -2018-01-01,"Illinois",84581 -2018-02-01,"Illinois",65052 -2018-03-01,"Illinois",55219 -2018-04-01,"Illinois",43889 -2018-05-01,"Illinois",12425 -2018-06-01,"Illinois",8979 -2018-07-01,"Illinois",7517 -2018-08-01,"Illinois",7465 -2018-09-01,"Illinois",8068 -2018-10-01,"Illinois",23490 -2018-11-01,"Illinois",57935 -2018-12-01,"Illinois",63598 -2019-01-01,"Illinois",85556 -2019-02-01,"Illinois",71860 -2019-03-01,"Illinois",60875 -2019-04-01,"Illinois",30473 -2019-05-01,"Illinois",18871 -2019-06-01,"Illinois",9751 -2019-07-01,"Illinois",7813 -2019-08-01,"Illinois",7332 -2019-09-01,"Illinois",7867 -2019-10-01,"Illinois",21239 -2019-11-01,"Illinois",56523 -2019-12-01,"Illinois",59858 -2020-01-01,"Illinois",69840 -2020-02-01,"Illinois",66414 -2020-03-01,"Illinois",46335 -2020-04-01,"Illinois",33320 -2020-05-01,"Illinois",20180 -2020-06-01,"Illinois",9771 -2020-07-01,"Illinois",7541 -2020-08-01,"Illinois",7695 -2020-09-01,"Illinois",9032 -2020-10-01,"Illinois",24255 -2020-11-01,"Illinois",36411 -2020-12-01,"Illinois",64329 -2021-01-01,"Illinois",71843 -2021-02-01,"Illinois",78190 -1989-01-01,"Indiana",23991 -1989-02-01,"Indiana",23940 -1989-03-01,"Indiana",20950 -1989-04-01,"Indiana",12801 -1989-05-01,"Indiana",7660 -1989-06-01,"Indiana",3832 -1989-07-01,"Indiana",2894 -1989-08-01,"Indiana",2868 -1989-09-01,"Indiana",3957 -1989-10-01,"Indiana",8198 -1989-11-01,"Indiana",15187 -1989-12-01,"Indiana",29656 -1990-01-01,"Indiana",25597 -1990-02-01,"Indiana",20159 -1990-03-01,"Indiana",17227 -1990-04-01,"Indiana",13294 -1990-05-01,"Indiana",7054 -1990-06-01,"Indiana",3980 -1990-07-01,"Indiana",3042 -1990-08-01,"Indiana",3116 -1990-09-01,"Indiana",3684 -1990-10-01,"Indiana",8499 -1990-11-01,"Indiana",13130 -1990-12-01,"Indiana",21711 -1991-01-01,"Indiana",28978 -1991-02-01,"Indiana",22309 -1991-03-01,"Indiana",18772 -1991-04-01,"Indiana",10680 -1991-05-01,"Indiana",5630 -1991-06-01,"Indiana",3174 -1991-07-01,"Indiana",2936 -1991-08-01,"Indiana",2947 -1991-09-01,"Indiana",3906 -1991-10-01,"Indiana",7584 -1991-11-01,"Indiana",16912 -1991-12-01,"Indiana",22617 -1992-01-01,"Indiana",26077 -1992-02-01,"Indiana",22018 -1992-03-01,"Indiana",18963 -1992-04-01,"Indiana",14093 -1992-05-01,"Indiana",7584 -1992-06-01,"Indiana",4627 -1992-07-01,"Indiana",3484 -1992-08-01,"Indiana",3312 -1992-09-01,"Indiana",3960 -1992-10-01,"Indiana",8361 -1992-11-01,"Indiana",15953 -1992-12-01,"Indiana",24261 -1993-01-01,"Indiana",27916 -1993-02-01,"Indiana",25987 -1993-03-01,"Indiana",24049 -1993-04-01,"Indiana",14401 -1993-05-01,"Indiana",6431 -1993-06-01,"Indiana",4369 -1993-07-01,"Indiana",3157 -1993-08-01,"Indiana",3096 -1993-09-01,"Indiana",4022 -1993-10-01,"Indiana",9497 -1993-11-01,"Indiana",16628 -1993-12-01,"Indiana",24391 -1994-01-01,"Indiana",35494 -1994-02-01,"Indiana",28268 -1994-03-01,"Indiana",20773 -1994-04-01,"Indiana",12918 -1994-05-01,"Indiana",7190 -1994-06-01,"Indiana",3664 -1994-07-01,"Indiana",2839 -1994-08-01,"Indiana",3077 -1994-09-01,"Indiana",3725 -1994-10-01,"Indiana",7277 -1994-11-01,"Indiana",12189 -1994-12-01,"Indiana",20054 -1995-01-01,"Indiana",28548 -1995-02-01,"Indiana",27283 -1995-03-01,"Indiana",19515 -1995-04-01,"Indiana",13049 -1995-05-01,"Indiana",7364 -1995-06-01,"Indiana",3701 -1995-07-01,"Indiana",3083 -1995-08-01,"Indiana",2826 -1995-09-01,"Indiana",3627 -1995-10-01,"Indiana",6884 -1995-11-01,"Indiana",18305 -1995-12-01,"Indiana",26875 -1996-01-01,"Indiana",33354 -1996-02-01,"Indiana",28907 -1996-03-01,"Indiana",24978 -1996-04-01,"Indiana",16823 -1996-05-01,"Indiana",8919 -1996-06-01,"Indiana",4513 -1996-07-01,"Indiana",3201 -1996-08-01,"Indiana",3117 -1996-09-01,"Indiana",3617 -1996-10-01,"Indiana",7846 -1996-11-01,"Indiana",18577 -1996-12-01,"Indiana",26087 -1997-01-01,"Indiana",32555 -1997-02-01,"Indiana",26114 -1997-03-01,"Indiana",20542 -1997-04-01,"Indiana",15114 -1997-05-01,"Indiana",9417 -1997-06-01,"Indiana",4924 -1997-07-01,"Indiana",2832 -1997-08-01,"Indiana",2968 -1997-09-01,"Indiana",3467 -1997-10-01,"Indiana",7954 -1997-11-01,"Indiana",17338 -1997-12-01,"Indiana",25914 -1998-01-01,"Indiana",27478 -1998-02-01,"Indiana",21137 -1998-03-01,"Indiana",21395 -1998-04-01,"Indiana",12074 -1998-05-01,"Indiana",5390 -1998-06-01,"Indiana",3739 -1998-07-01,"Indiana",2817 -1998-08-01,"Indiana",2803 -1998-09-01,"Indiana",3221 -1998-10-01,"Indiana",6497 -1998-11-01,"Indiana",13541 -1998-12-01,"Indiana",20031 -1999-01-01,"Indiana",32894 -1999-02-01,"Indiana",22341 -1999-03-01,"Indiana",23341 -1999-04-01,"Indiana",13205 -1999-05-01,"Indiana",5908 -1999-06-01,"Indiana",3457 -1999-07-01,"Indiana",2801 -1999-08-01,"Indiana",2766 -1999-09-01,"Indiana",3238 -1999-10-01,"Indiana",7273 -1999-11-01,"Indiana",11571 -1999-12-01,"Indiana",22735 -2000-01-01,"Indiana",31010 -2000-02-01,"Indiana",26040 -2000-03-01,"Indiana",16221 -2000-04-01,"Indiana",12837 -2000-05-01,"Indiana",6269 -2000-06-01,"Indiana",3693 -2000-07-01,"Indiana",2945 -2000-08-01,"Indiana",2927 -2000-09-01,"Indiana",3989 -2000-10-01,"Indiana",6797 -2000-11-01,"Indiana",15595 -2000-12-01,"Indiana",32899 -2001-01-01,"Indiana",33201 -2001-02-01,"Indiana",24756 -2001-03-01,"Indiana",21929 -2001-04-01,"Indiana",10943 -2001-05-01,"Indiana",4977 -2001-06-01,"Indiana",3788 -2001-07-01,"Indiana",3038 -2001-08-01,"Indiana",2775 -2001-09-01,"Indiana",3555 -2001-10-01,"Indiana",8020 -2001-11-01,"Indiana",11475 -2001-12-01,"Indiana",18881 -2002-01-01,"Indiana",26954 -2002-02-01,"Indiana",21888 -2002-03-01,"Indiana",21923 -2002-04-01,"Indiana",14179 -2002-05-01,"Indiana",8840 -2002-06-01,"Indiana",4186 -2002-07-01,"Indiana",2650 -2002-08-01,"Indiana",2892 -2002-09-01,"Indiana",2886 -2002-10-01,"Indiana",7676 -2002-11-01,"Indiana",15624 -2002-12-01,"Indiana",27110 -2003-01-01,"Indiana",34927 -2003-02-01,"Indiana",28735 -2003-03-01,"Indiana",18438 -2003-04-01,"Indiana",10431 -2003-05-01,"Indiana",6528 -2003-06-01,"Indiana",4019 -2003-07-01,"Indiana",2612 -2003-08-01,"Indiana",2587 -2003-09-01,"Indiana",3336 -2003-10-01,"Indiana",8006 -2003-11-01,"Indiana",13569 -2003-12-01,"Indiana",24169 -2004-01-01,"Indiana",33308 -2004-02-01,"Indiana",25602 -2004-03-01,"Indiana",17207 -2004-04-01,"Indiana",8819 -2004-05-01,"Indiana",5468 -2004-06-01,"Indiana",3050 -2004-07-01,"Indiana",2705 -2004-08-01,"Indiana",3019 -2004-09-01,"Indiana",2970 -2004-10-01,"Indiana",6836 -2004-11-01,"Indiana",13604 -2004-12-01,"Indiana",25999 -2005-01-01,"Indiana",29442 -2005-02-01,"Indiana",22075 -2005-03-01,"Indiana",21390 -2005-04-01,"Indiana",9080 -2005-05-01,"Indiana",5971 -2005-06-01,"Indiana",3119 -2005-07-01,"Indiana",2902 -2005-08-01,"Indiana",2581 -2005-09-01,"Indiana",2852 -2005-10-01,"Indiana",6446 -2005-11-01,"Indiana",14319 -2005-12-01,"Indiana",28478 -2006-01-01,"Indiana",20108 -2006-02-01,"Indiana",21807 -2006-03-01,"Indiana",17987 -2006-04-01,"Indiana",7713 -2006-05-01,"Indiana",5205 -2006-06-01,"Indiana",3054 -2006-07-01,"Indiana",2454 -2006-08-01,"Indiana",2611 -2006-09-01,"Indiana",3232 -2006-10-01,"Indiana",8899 -2006-11-01,"Indiana",14392 -2006-12-01,"Indiana",20185 -2007-01-01,"Indiana",25476 -2007-02-01,"Indiana",31311 -2007-03-01,"Indiana",15791 -2007-04-01,"Indiana",11712 -2007-05-01,"Indiana",4198 -2007-06-01,"Indiana",2701 -2007-07-01,"Indiana",2449 -2007-08-01,"Indiana",2530 -2007-09-01,"Indiana",2844 -2007-10-01,"Indiana",4519 -2007-11-01,"Indiana",15915 -2007-12-01,"Indiana",23097 -2008-01-01,"Indiana",30275 -2008-02-01,"Indiana",27314 -2008-03-01,"Indiana",19868 -2008-04-01,"Indiana",9943 -2008-05-01,"Indiana",4873 -2008-06-01,"Indiana",2807 -2008-07-01,"Indiana",2512 -2008-08-01,"Indiana",2442 -2008-09-01,"Indiana",2692 -2008-10-01,"Indiana",6672 -2008-11-01,"Indiana",16021 -2008-12-01,"Indiana",27281 -2009-01-01,"Indiana",32336 -2009-02-01,"Indiana",23672 -2009-03-01,"Indiana",14411 -2009-04-01,"Indiana",9616 -2009-05-01,"Indiana",4364 -2009-06-01,"Indiana",2929 -2009-07-01,"Indiana",2567 -2009-08-01,"Indiana",2546 -2009-09-01,"Indiana",3120 -2009-10-01,"Indiana",8250 -2009-11-01,"Indiana",11566 -2009-12-01,"Indiana",24366 -2010-01-01,"Indiana",30877 -2010-02-01,"Indiana",24542 -2010-03-01,"Indiana",14592 -2010-04-01,"Indiana",6144 -2010-05-01,"Indiana",4395 -2010-06-01,"Indiana",2659 -2010-07-01,"Indiana",2412 -2010-08-01,"Indiana",2494 -2010-09-01,"Indiana",2427 -2010-10-01,"Indiana",5133 -2010-11-01,"Indiana",14191 -2010-12-01,"Indiana",28547 -2011-01-01,"Indiana",29955 -2011-02-01,"Indiana",22288 -2011-03-01,"Indiana",16730 -2011-04-01,"Indiana",8444 -2011-05-01,"Indiana",5141 -2011-06-01,"Indiana",2526 -2011-07-01,"Indiana",2476 -2011-08-01,"Indiana",2253 -2011-09-01,"Indiana",3197 -2011-10-01,"Indiana",7002 -2011-11-01,"Indiana",12202 -2011-12-01,"Indiana",19879 -2012-01-01,"Indiana",24433 -2012-02-01,"Indiana",19723 -2012-03-01,"Indiana",9521 -2012-04-01,"Indiana",6856 -2012-05-01,"Indiana",3268 -2012-06-01,"Indiana",2662 -2012-07-01,"Indiana",2146 -2012-08-01,"Indiana",2318 -2012-09-01,"Indiana",2886 -2012-10-01,"Indiana",7959 -2012-11-01,"Indiana",14880 -2012-12-01,"Indiana",18871 -2013-01-01,"Indiana",26226 -2013-02-01,"Indiana",23027 -2013-03-01,"Indiana",21628 -2013-04-01,"Indiana",9466 -2013-05-01,"Indiana",4506 -2013-06-01,"Indiana",2497 -2013-07-01,"Indiana",2430 -2013-08-01,"Indiana",2292 -2013-09-01,"Indiana",2420 -2013-10-01,"Indiana",7115 -2013-11-01,"Indiana",16619 -2013-12-01,"Indiana",26270 -2014-01-01,"Indiana",34662 -2014-02-01,"Indiana",27362 -2014-03-01,"Indiana",22950 -2014-04-01,"Indiana",7911 -2014-05-01,"Indiana",4250 -2014-06-01,"Indiana",1996 -2014-07-01,"Indiana",2243 -2014-08-01,"Indiana",2417 -2014-09-01,"Indiana",2925 -2014-10-01,"Indiana",7619 -2014-11-01,"Indiana",19910 -2014-12-01,"Indiana",22394 -2015-01-01,"Indiana",29303 -2015-02-01,"Indiana",29649 -2015-03-01,"Indiana",18560 -2015-04-01,"Indiana",8643 -2015-05-01,"Indiana",3713 -2015-06-01,"Indiana",2309 -2015-07-01,"Indiana",2172 -2015-08-01,"Indiana",2008 -2015-09-01,"Indiana",2419 -2015-10-01,"Indiana",5768 -2015-11-01,"Indiana",11707 -2015-12-01,"Indiana",16792 -2016-01-01,"Indiana",27474 -2016-02-01,"Indiana",21376 -2016-03-01,"Indiana",11654 -2016-04-01,"Indiana",9343 -2016-05-01,"Indiana",4741 -2016-06-01,"Indiana",2229 -2016-07-01,"Indiana",2033 -2016-08-01,"Indiana",2201 -2016-09-01,"Indiana",2346 -2016-10-01,"Indiana",4292 -2016-11-01,"Indiana",11343 -2016-12-01,"Indiana",26006 -2017-01-01,"Indiana",23508 -2017-02-01,"Indiana",15350 -2017-03-01,"Indiana",17160 -2017-04-01,"Indiana",7076 -2017-05-01,"Indiana",5289 -2017-06-01,"Indiana",2415 -2017-07-01,"Indiana",2096 -2017-08-01,"Indiana",2016 -2017-09-01,"Indiana",2493 -2017-10-01,"Indiana",5543 -2017-11-01,"Indiana",14437 -2017-12-01,"Indiana",26465 -2018-01-01,"Indiana",29599 -2018-02-01,"Indiana",20043 -2018-03-01,"Indiana",19962 -2018-04-01,"Indiana",13648 -2018-05-01,"Indiana",3687 -2018-06-01,"Indiana",2013 -2018-07-01,"Indiana",2210 -2018-08-01,"Indiana",2110 -2018-09-01,"Indiana",2477 -2018-10-01,"Indiana",7278 -2018-11-01,"Indiana",19465 -2018-12-01,"Indiana",21714 -2019-01-01,"Indiana",29860 -2019-02-01,"Indiana",23480 -2019-03-01,"Indiana",20903 -2019-04-01,"Indiana",8727 -2019-05-01,"Indiana",4786 -2019-06-01,"Indiana",2560 -2019-07-01,"Indiana",2169 -2019-08-01,"Indiana",2013 -2019-09-01,"Indiana",2416 -2019-10-01,"Indiana",6698 -2019-11-01,"Indiana",18942 -2019-12-01,"Indiana",20252 -2020-01-01,"Indiana",23630 -2020-02-01,"Indiana",23335 -2020-03-01,"Indiana",15588 -2020-04-01,"Indiana",9814 -2020-05-01,"Indiana",6012 -2020-06-01,"Indiana",2528 -2020-07-01,"Indiana",2174 -2020-08-01,"Indiana",2218 -2020-09-01,"Indiana",2947 -2020-10-01,"Indiana",7593 -2020-11-01,"Indiana",12580 -2020-12-01,"Indiana",23947 -2021-01-01,"Indiana",25252 -2021-02-01,"Indiana",25959 -1989-01-01,"Iowa",12794 -1989-02-01,"Iowa",12643 -1989-03-01,"Iowa",12215 -1989-04-01,"Iowa",7244 -1989-05-01,"Iowa",3943 -1989-06-01,"Iowa",2063 -1989-07-01,"Iowa",1647 -1989-08-01,"Iowa",1527 -1989-09-01,"Iowa",1790 -1989-10-01,"Iowa",3225 -1989-11-01,"Iowa",5912 -1989-12-01,"Iowa",12401 -1990-01-01,"Iowa",14120 -1990-02-01,"Iowa",10664 -1990-03-01,"Iowa",9604 -1990-04-01,"Iowa",7337 -1990-05-01,"Iowa",4172 -1990-06-01,"Iowa",2452 -1990-07-01,"Iowa",1633 -1990-08-01,"Iowa",1529 -1990-09-01,"Iowa",1599 -1990-10-01,"Iowa",2866 -1990-11-01,"Iowa",5772 -1990-12-01,"Iowa",9631 -1991-01-01,"Iowa",16033 -1991-02-01,"Iowa",11730 -1991-03-01,"Iowa",9458 -1991-04-01,"Iowa",5924 -1991-05-01,"Iowa",3559 -1991-06-01,"Iowa",1991 -1991-07-01,"Iowa",1473 -1991-08-01,"Iowa",1511 -1991-09-01,"Iowa",1757 -1991-10-01,"Iowa",4082 -1991-11-01,"Iowa",8906 -1991-12-01,"Iowa",12377 -1992-01-01,"Iowa",12381 -1992-02-01,"Iowa",11637 -1992-03-01,"Iowa",8482 -1992-04-01,"Iowa",6857 -1992-05-01,"Iowa",3335 -1992-06-01,"Iowa",2186 -1992-07-01,"Iowa",1546 -1992-08-01,"Iowa",1668 -1992-09-01,"Iowa",1885 -1992-10-01,"Iowa",3725 -1992-11-01,"Iowa",8350 -1992-12-01,"Iowa",12827 -1993-01-01,"Iowa",15138 -1993-02-01,"Iowa",13050 -1993-03-01,"Iowa",11587 -1993-04-01,"Iowa",7597 -1993-05-01,"Iowa",3450 -1993-06-01,"Iowa",2382 -1993-07-01,"Iowa",1563 -1993-08-01,"Iowa",1516 -1993-09-01,"Iowa",2137 -1993-10-01,"Iowa",4595 -1993-11-01,"Iowa",8673 -1993-12-01,"Iowa",11735 -1994-01-01,"Iowa",16659 -1994-02-01,"Iowa",14415 -1994-03-01,"Iowa",9423 -1994-04-01,"Iowa",6371 -1994-05-01,"Iowa",3718 -1994-06-01,"Iowa",1867 -1994-07-01,"Iowa",1458 -1994-08-01,"Iowa",1514 -1994-09-01,"Iowa",1787 -1994-10-01,"Iowa",2862 -1994-11-01,"Iowa",6693 -1994-12-01,"Iowa",11494 -1995-01-01,"Iowa",14994 -1995-02-01,"Iowa",12569 -1995-03-01,"Iowa",7941 -1995-04-01,"Iowa",7377 -1995-05-01,"Iowa",4303 -1995-06-01,"Iowa",1334 -1995-07-01,"Iowa",1380 -1995-08-01,"Iowa",1252 -1995-09-01,"Iowa",1814 -1995-10-01,"Iowa",3803 -1995-11-01,"Iowa",11222 -1995-12-01,"Iowa",14248 -1996-01-01,"Iowa",16281 -1996-02-01,"Iowa",13725 -1996-03-01,"Iowa",11830 -1996-04-01,"Iowa",6945 -1996-05-01,"Iowa",4187 -1996-06-01,"Iowa",2343 -1996-07-01,"Iowa",1663 -1996-08-01,"Iowa",1610 -1996-09-01,"Iowa",1954 -1996-10-01,"Iowa",3620 -1996-11-01,"Iowa",9782 -1996-12-01,"Iowa",14138 -1997-01-01,"Iowa",17671 -1997-02-01,"Iowa",11951 -1997-03-01,"Iowa",9584 -1997-04-01,"Iowa",7015 -1997-05-01,"Iowa",3939 -1997-06-01,"Iowa",2107 -1997-07-01,"Iowa",1599 -1997-08-01,"Iowa",1479 -1997-09-01,"Iowa",1646 -1997-10-01,"Iowa",4048 -1997-11-01,"Iowa",8606 -1997-12-01,"Iowa",12051 -1998-01-01,"Iowa",13562 -1998-02-01,"Iowa",10267 -1998-03-01,"Iowa",10640 -1998-04-01,"Iowa",5824 -1998-05-01,"Iowa",2808 -1998-06-01,"Iowa",1436 -1998-07-01,"Iowa",1596 -1998-08-01,"Iowa",1445 -1998-09-01,"Iowa",1435 -1998-10-01,"Iowa",3030 -1998-11-01,"Iowa",6345 -1998-12-01,"Iowa",10514 -1999-01-01,"Iowa",16156 -1999-02-01,"Iowa",10639 -1999-03-01,"Iowa",9847 -1999-04-01,"Iowa",5533 -1999-05-01,"Iowa",3078 -1999-06-01,"Iowa",1595 -1999-07-01,"Iowa",1823 -1999-08-01,"Iowa",1231 -1999-09-01,"Iowa",1830 -1999-10-01,"Iowa",3465 -1999-11-01,"Iowa",5602 -1999-12-01,"Iowa",10631 -2000-01-01,"Iowa",14063 -2000-02-01,"Iowa",10992 -2000-03-01,"Iowa",7680 -2000-04-01,"Iowa",5392 -2000-05-01,"Iowa",2655 -2000-06-01,"Iowa",1611 -2000-07-01,"Iowa",1551 -2000-08-01,"Iowa",1411 -2000-09-01,"Iowa",1710 -2000-10-01,"Iowa",3116 -2000-11-01,"Iowa",8099 -2000-12-01,"Iowa",15577 -2001-01-01,"Iowa",14813 -2001-02-01,"Iowa",13133 -2001-03-01,"Iowa",11122 -2001-04-01,"Iowa",5573 -2001-05-01,"Iowa",2645 -2001-06-01,"Iowa",1934 -2001-07-01,"Iowa",1549 -2001-08-01,"Iowa",1318 -2001-09-01,"Iowa",1587 -2001-10-01,"Iowa",3531 -2001-11-01,"Iowa",4795 -2001-12-01,"Iowa",9075 -2002-01-01,"Iowa",11996 -2002-02-01,"Iowa",10308 -2002-03-01,"Iowa",10475 -2002-04-01,"Iowa",6527 -2002-05-01,"Iowa",3513 -2002-06-01,"Iowa",1867 -2002-07-01,"Iowa",1324 -2002-08-01,"Iowa",1361 -2002-09-01,"Iowa",1420 -2002-10-01,"Iowa",3967 -2002-11-01,"Iowa",7640 -2002-12-01,"Iowa",11147 -2003-01-01,"Iowa",13948 -2003-02-01,"Iowa",13698 -2003-03-01,"Iowa",10432 -2003-04-01,"Iowa",5590 -2003-05-01,"Iowa",3114 -2003-06-01,"Iowa",1813 -2003-07-01,"Iowa",1410 -2003-08-01,"Iowa",1396 -2003-09-01,"Iowa",1561 -2003-10-01,"Iowa",3054 -2003-11-01,"Iowa",7105 -2003-12-01,"Iowa",10902 -2004-01-01,"Iowa",14485 -2004-02-01,"Iowa",13171 -2004-03-01,"Iowa",8694 -2004-04-01,"Iowa",4578 -2004-05-01,"Iowa",2591 -2004-06-01,"Iowa",1570 -2004-07-01,"Iowa",1142 -2004-08-01,"Iowa",1433 -2004-09-01,"Iowa",1378 -2004-10-01,"Iowa",2913 -2004-11-01,"Iowa",5408 -2004-12-01,"Iowa",10957 -2005-01-01,"Iowa",14348 -2005-02-01,"Iowa",10285 -2005-03-01,"Iowa",9044 -2005-04-01,"Iowa",4536 -2005-05-01,"Iowa",3119 -2005-06-01,"Iowa",1482 -2005-07-01,"Iowa",1387 -2005-08-01,"Iowa",1243 -2005-09-01,"Iowa",1306 -2005-10-01,"Iowa",2642 -2005-11-01,"Iowa",5853 -2005-12-01,"Iowa",12025 -2006-01-01,"Iowa",10163 -2006-02-01,"Iowa",10552 -2006-03-01,"Iowa",8725 -2006-04-01,"Iowa",4421 -2006-05-01,"Iowa",2416 -2006-06-01,"Iowa",1578 -2006-07-01,"Iowa",1587 -2006-08-01,"Iowa",1277 -2006-09-01,"Iowa",1508 -2006-10-01,"Iowa",3853 -2006-11-01,"Iowa",6231 -2006-12-01,"Iowa",9533 -2007-01-01,"Iowa",12059 -2007-02-01,"Iowa",13981 -2007-03-01,"Iowa",8387 -2007-04-01,"Iowa",5814 -2007-05-01,"Iowa",2472 -2007-06-01,"Iowa",1397 -2007-07-01,"Iowa",1261 -2007-08-01,"Iowa",1217 -2007-09-01,"Iowa",1357 -2007-10-01,"Iowa",2133 -2007-11-01,"Iowa",5936 -2007-12-01,"Iowa",11739 -2008-01-01,"Iowa",14226 -2008-02-01,"Iowa",13643 -2008-03-01,"Iowa",10693 -2008-04-01,"Iowa",5993 -2008-05-01,"Iowa",3310 -2008-06-01,"Iowa",1886 -2008-07-01,"Iowa",1288 -2008-08-01,"Iowa",1268 -2008-09-01,"Iowa",1293 -2008-10-01,"Iowa",2779 -2008-11-01,"Iowa",6122 -2008-12-01,"Iowa",12948 -2009-01-01,"Iowa",15768 -2009-02-01,"Iowa",11538 -2009-03-01,"Iowa",8921 -2009-04-01,"Iowa",5482 -2009-05-01,"Iowa",2806 -2009-06-01,"Iowa",1567 -2009-07-01,"Iowa",1328 -2009-08-01,"Iowa",1275 -2009-09-01,"Iowa",1288 -2009-10-01,"Iowa",3746 -2009-11-01,"Iowa",5200 -2009-12-01,"Iowa",11193 -2010-01-01,"Iowa",15288 -2010-02-01,"Iowa",11923 -2010-03-01,"Iowa",8288 -2010-04-01,"Iowa",3516 -2010-05-01,"Iowa",2607 -2010-06-01,"Iowa",1411 -2010-07-01,"Iowa",1199 -2010-08-01,"Iowa",1107 -2010-09-01,"Iowa",1285 -2010-10-01,"Iowa",2213 -2010-11-01,"Iowa",6890 -2010-12-01,"Iowa",12650 -2011-01-01,"Iowa",14956 -2011-02-01,"Iowa",11093 -2011-03-01,"Iowa",9009 -2011-04-01,"Iowa",5066 -2011-05-01,"Iowa",2561 -2011-06-01,"Iowa",1458 -2011-07-01,"Iowa",1208 -2011-08-01,"Iowa",1168 -2011-09-01,"Iowa",1634 -2011-10-01,"Iowa",2719 -2011-11-01,"Iowa",6171 -2011-12-01,"Iowa",10056 -2012-01-01,"Iowa",11146 -2012-02-01,"Iowa",9673 -2012-03-01,"Iowa",4896 -2012-04-01,"Iowa",3339 -2012-05-01,"Iowa",1791 -2012-06-01,"Iowa",1327 -2012-07-01,"Iowa",1140 -2012-08-01,"Iowa",1173 -2012-09-01,"Iowa",1576 -2012-10-01,"Iowa",3228 -2012-11-01,"Iowa",6343 -2012-12-01,"Iowa",10222 -2013-01-01,"Iowa",12919 -2013-02-01,"Iowa",10673 -2013-03-01,"Iowa",10341 -2013-04-01,"Iowa",5885 -2013-05-01,"Iowa",2888 -2013-06-01,"Iowa",1586 -2013-07-01,"Iowa",1225 -2013-08-01,"Iowa",1093 -2013-09-01,"Iowa",1353 -2013-10-01,"Iowa",3350 -2013-11-01,"Iowa",7273 -2013-12-01,"Iowa",13934 -2014-01-01,"Iowa",16339 -2014-02-01,"Iowa",13717 -2014-03-01,"Iowa",10692 -2014-04-01,"Iowa",5244 -2014-05-01,"Iowa",2853 -2014-06-01,"Iowa",1447 -2014-07-01,"Iowa",1192 -2014-08-01,"Iowa",1098 -2014-09-01,"Iowa",1510 -2014-10-01,"Iowa",3224 -2014-11-01,"Iowa",8650 -2014-12-01,"Iowa",10609 -2015-01-01,"Iowa",13093 -2015-02-01,"Iowa",13542 -2015-03-01,"Iowa",7952 -2015-04-01,"Iowa",4112 -2015-05-01,"Iowa",2157 -2015-06-01,"Iowa",1394 -2015-07-01,"Iowa",1189 -2015-08-01,"Iowa",1052 -2015-09-01,"Iowa",1279 -2015-10-01,"Iowa",2408 -2015-11-01,"Iowa",5498 -2015-12-01,"Iowa",9057 -2016-01-01,"Iowa",13266 -2016-02-01,"Iowa",10221 -2016-03-01,"Iowa",6787 -2016-04-01,"Iowa",4664 -2016-05-01,"Iowa",2249 -2016-06-01,"Iowa",1181 -2016-07-01,"Iowa",1178 -2016-08-01,"Iowa",1052 -2016-09-01,"Iowa",1330 -2016-10-01,"Iowa",2016 -2016-11-01,"Iowa",4607 -2016-12-01,"Iowa",12695 -2017-01-01,"Iowa",12009 -2017-02-01,"Iowa",8380 -2017-03-01,"Iowa",8061 -2017-04-01,"Iowa",4047 -2017-05-01,"Iowa",2437 -2017-06-01,"Iowa",1276 -2017-07-01,"Iowa",1028 -2017-08-01,"Iowa",1105 -2017-09-01,"Iowa",1127 -2017-10-01,"Iowa",2952 -2017-11-01,"Iowa",6654 -2017-12-01,"Iowa",11284 -2018-01-01,"Iowa",14130 -2018-02-01,"Iowa",11403 -2018-03-01,"Iowa",8661 -2018-04-01,"Iowa",7088 -2018-05-01,"Iowa",1841 -2018-06-01,"Iowa",1187 -2018-07-01,"Iowa",958 -2018-08-01,"Iowa",1073 -2018-09-01,"Iowa",1299 -2018-10-01,"Iowa",3749 -2018-11-01,"Iowa",8960 -2018-12-01,"Iowa",10599 -2019-01-01,"Iowa",14277 -2019-02-01,"Iowa",12610 -2019-03-01,"Iowa",10039 -2019-04-01,"Iowa",4652 -2019-05-01,"Iowa",2710 -2019-06-01,"Iowa",1383 -2019-07-01,"Iowa",1102 -2019-08-01,"Iowa",1114 -2019-09-01,"Iowa",1084 -2019-10-01,"Iowa",4263 -2019-11-01,"Iowa",8180 -2019-12-01,"Iowa",9970 -2020-01-01,"Iowa",12423 -2020-02-01,"Iowa",11019 -2020-03-01,"Iowa",7324 -2020-04-01,"Iowa",5168 -2020-05-01,"Iowa",2587 -2020-06-01,"Iowa",1385 -2020-07-01,"Iowa",NA -2020-08-01,"Iowa",1110 -2020-09-01,"Iowa",1548 -2020-10-01,"Iowa",4149 -2020-11-01,"Iowa",5950 -2020-12-01,"Iowa",10757 -2021-01-01,"Iowa",11708 -2021-02-01,"Iowa",13532 -1989-01-01,"Kansas",12686 -1989-02-01,"Kansas",13761 -1989-03-01,"Kansas",11948 -1989-04-01,"Kansas",6518 -1989-05-01,"Kansas",3436 -1989-06-01,"Kansas",2203 -1989-07-01,"Kansas",1845 -1989-08-01,"Kansas",1687 -1989-09-01,"Kansas",1955 -1989-10-01,"Kansas",2901 -1989-11-01,"Kansas",5398 -1989-12-01,"Kansas",11694 -1990-01-01,"Kansas",15037 -1990-02-01,"Kansas",10951 -1990-03-01,"Kansas",9080 -1990-04-01,"Kansas",7528 -1990-05-01,"Kansas",4486 -1990-06-01,"Kansas",2458 -1990-07-01,"Kansas",1819 -1990-08-01,"Kansas",1678 -1990-09-01,"Kansas",1770 -1990-10-01,"Kansas",2515 -1990-11-01,"Kansas",5082 -1990-12-01,"Kansas",8922 -1991-01-01,"Kansas",16989 -1991-02-01,"Kansas",12186 -1991-03-01,"Kansas",8833 -1991-04-01,"Kansas",5415 -1991-05-01,"Kansas",3570 -1991-06-01,"Kansas",1982 -1991-07-01,"Kansas",1737 -1991-08-01,"Kansas",1634 -1991-09-01,"Kansas",1689 -1991-10-01,"Kansas",2494 -1991-11-01,"Kansas",7289 -1991-12-01,"Kansas",11008 -1992-01-01,"Kansas",12653 -1992-02-01,"Kansas",10939 -1992-03-01,"Kansas",7890 -1992-04-01,"Kansas",6917 -1992-05-01,"Kansas",3788 -1992-06-01,"Kansas",2609 -1992-07-01,"Kansas",1932 -1992-08-01,"Kansas",1740 -1992-09-01,"Kansas",1798 -1992-10-01,"Kansas",2421 -1992-11-01,"Kansas",6102 -1992-12-01,"Kansas",12732 -1993-01-01,"Kansas",15743 -1993-02-01,"Kansas",13423 -1993-03-01,"Kansas",13022 -1993-04-01,"Kansas",9143 -1993-05-01,"Kansas",4717 -1993-06-01,"Kansas",2454 -1993-07-01,"Kansas",1870 -1993-08-01,"Kansas",1680 -1993-09-01,"Kansas",1800 -1993-10-01,"Kansas",2677 -1993-11-01,"Kansas",6796 -1993-12-01,"Kansas",11571 -1994-01-01,"Kansas",15494 -1994-02-01,"Kansas",13162 -1994-03-01,"Kansas",8589 -1994-04-01,"Kansas",5752 -1994-05-01,"Kansas",3096 -1994-06-01,"Kansas",1911 -1994-07-01,"Kansas",1757 -1994-08-01,"Kansas",1647 -1994-09-01,"Kansas",1615 -1994-10-01,"Kansas",3828 -1994-11-01,"Kansas",6443 -1994-12-01,"Kansas",10864 -1995-01-01,"Kansas",14204 -1995-02-01,"Kansas",11140 -1995-03-01,"Kansas",9676 -1995-04-01,"Kansas",5711 -1995-05-01,"Kansas",3902 -1995-06-01,"Kansas",2078 -1995-07-01,"Kansas",1829 -1995-08-01,"Kansas",1654 -1995-09-01,"Kansas",1847 -1995-10-01,"Kansas",3440 -1995-11-01,"Kansas",6757 -1995-12-01,"Kansas",13608 -1996-01-01,"Kansas",16870 -1996-02-01,"Kansas",13787 -1996-03-01,"Kansas",11170 -1996-04-01,"Kansas",6313 -1996-05-01,"Kansas",3054 -1996-06-01,"Kansas",1734 -1996-07-01,"Kansas",1836 -1996-08-01,"Kansas",1640 -1996-09-01,"Kansas",1973 -1996-10-01,"Kansas",3163 -1996-11-01,"Kansas",9447 -1996-12-01,"Kansas",14388 -1997-01-01,"Kansas",14413 -1997-02-01,"Kansas",11040 -1997-03-01,"Kansas",7997 -1997-04-01,"Kansas",5839 -1997-05-01,"Kansas",3266 -1997-06-01,"Kansas",1506 -1997-07-01,"Kansas",1688 -1997-08-01,"Kansas",1469 -1997-09-01,"Kansas",1485 -1997-10-01,"Kansas",2153 -1997-11-01,"Kansas",8236 -1997-12-01,"Kansas",10323 -1998-01-01,"Kansas",13219 -1998-02-01,"Kansas",11354 -1998-03-01,"Kansas",11261 -1998-04-01,"Kansas",7007 -1998-05-01,"Kansas",3604 -1998-06-01,"Kansas",2092 -1998-07-01,"Kansas",1746 -1998-08-01,"Kansas",1546 -1998-09-01,"Kansas",1479 -1998-10-01,"Kansas",2322 -1998-11-01,"Kansas",5820 -1998-12-01,"Kansas",8767 -1999-01-01,"Kansas",15785 -1999-02-01,"Kansas",10828 -1999-03-01,"Kansas",9832 -1999-04-01,"Kansas",5935 -1999-05-01,"Kansas",3420 -1999-06-01,"Kansas",2065 -1999-07-01,"Kansas",1479 -1999-08-01,"Kansas",1617 -1999-09-01,"Kansas",1489 -1999-10-01,"Kansas",2658 -1999-11-01,"Kansas",3997 -1999-12-01,"Kansas",9040 -2000-01-01,"Kansas",13149 -2000-02-01,"Kansas",11829 -2000-03-01,"Kansas",8180 -2000-04-01,"Kansas",5744 -2000-05-01,"Kansas",2947 -2000-06-01,"Kansas",1799 -2000-07-01,"Kansas",1596 -2000-08-01,"Kansas",1307 -2000-09-01,"Kansas",1578 -2000-10-01,"Kansas",2524 -2000-11-01,"Kansas",5602 -2000-12-01,"Kansas",14346 -2001-01-01,"Kansas",17789 -2001-02-01,"Kansas",12219 -2001-03-01,"Kansas",11653 -2001-04-01,"Kansas",5756 -2001-05-01,"Kansas",2438 -2001-06-01,"Kansas",1742 -2001-07-01,"Kansas",1536 -2001-08-01,"Kansas",1539 -2001-09-01,"Kansas",1207 -2001-10-01,"Kansas",2057 -2001-11-01,"Kansas",3836 -2001-12-01,"Kansas",8412 -2002-01-01,"Kansas",13256 -2002-02-01,"Kansas",11202 -2002-03-01,"Kansas",10649 -2002-04-01,"Kansas",6308 -2002-05-01,"Kansas",2961 -2002-06-01,"Kansas",1985 -2002-07-01,"Kansas",1459 -2002-08-01,"Kansas",1349 -2002-09-01,"Kansas",1409 -2002-10-01,"Kansas",2377 -2002-11-01,"Kansas",7316 -2002-12-01,"Kansas",10591 -2003-01-01,"Kansas",13667 -2003-02-01,"Kansas",13290 -2003-03-01,"Kansas",11051 -2003-04-01,"Kansas",5503 -2003-05-01,"Kansas",2782 -2003-06-01,"Kansas",1691 -2003-07-01,"Kansas",1452 -2003-08-01,"Kansas",1340 -2003-09-01,"Kansas",1614 -2003-10-01,"Kansas",2121 -2003-11-01,"Kansas",4710 -2003-12-01,"Kansas",11147 -2004-01-01,"Kansas",13546 -2004-02-01,"Kansas",13875 -2004-03-01,"Kansas",8690 -2004-04-01,"Kansas",4421 -2004-05-01,"Kansas",2726 -2004-06-01,"Kansas",1697 -2004-07-01,"Kansas",1483 -2004-08-01,"Kansas",1331 -2004-09-01,"Kansas",1330 -2004-10-01,"Kansas",1798 -2004-11-01,"Kansas",4051 -2004-12-01,"Kansas",10101 -2005-01-01,"Kansas",13910 -2005-02-01,"Kansas",11374 -2005-03-01,"Kansas",8386 -2005-04-01,"Kansas",5234 -2005-05-01,"Kansas",3109 -2005-06-01,"Kansas",1633 -2005-07-01,"Kansas",1352 -2005-08-01,"Kansas",1238 -2005-09-01,"Kansas",1257 -2005-10-01,"Kansas",1866 -2005-11-01,"Kansas",4301 -2005-12-01,"Kansas",11263 -2006-01-01,"Kansas",10890 -2006-02-01,"Kansas",9547 -2006-03-01,"Kansas",8223 -2006-04-01,"Kansas",4427 -2006-05-01,"Kansas",2088 -2006-06-01,"Kansas",1545 -2006-07-01,"Kansas",1283 -2006-08-01,"Kansas",1149 -2006-09-01,"Kansas",1264 -2006-10-01,"Kansas",2058 -2006-11-01,"Kansas",5189 -2006-12-01,"Kansas",9416 -2007-01-01,"Kansas",12021 -2007-02-01,"Kansas",13846 -2007-03-01,"Kansas",8222 -2007-04-01,"Kansas",4691 -2007-05-01,"Kansas",2709 -2007-06-01,"Kansas",1544 -2007-07-01,"Kansas",1285 -2007-08-01,"Kansas",1178 -2007-09-01,"Kansas",1214 -2007-10-01,"Kansas",1503 -2007-11-01,"Kansas",4210 -2007-12-01,"Kansas",10667 -2008-01-01,"Kansas",14542 -2008-02-01,"Kansas",13061 -2008-03-01,"Kansas",10435 -2008-04-01,"Kansas",6122 -2008-05-01,"Kansas",3191 -2008-06-01,"Kansas",1516 -2008-07-01,"Kansas",1298 -2008-08-01,"Kansas",1164 -2008-09-01,"Kansas",1348 -2008-10-01,"Kansas",1786 -2008-11-01,"Kansas",4627 -2008-12-01,"Kansas",11244 -2009-01-01,"Kansas",15920 -2009-02-01,"Kansas",11824 -2009-03-01,"Kansas",8790 -2009-04-01,"Kansas",6468 -2009-05-01,"Kansas",2913 -2009-06-01,"Kansas",1602 -2009-07-01,"Kansas",1351 -2009-08-01,"Kansas",1268 -2009-09-01,"Kansas",1344 -2009-10-01,"Kansas",2857 -2009-11-01,"Kansas",5265 -2009-12-01,"Kansas",11464 -2010-01-01,"Kansas",15726 -2010-02-01,"Kansas",12445 -2010-03-01,"Kansas",9663 -2010-04-01,"Kansas",4310 -2010-05-01,"Kansas",1983 -2010-06-01,"Kansas",1516 -2010-07-01,"Kansas",1150 -2010-08-01,"Kansas",1009 -2010-09-01,"Kansas",1026 -2010-10-01,"Kansas",1548 -2010-11-01,"Kansas",5414 -2010-12-01,"Kansas",11328 -2011-01-01,"Kansas",14975 -2011-02-01,"Kansas",11876 -2011-03-01,"Kansas",8028 -2011-04-01,"Kansas",4703 -2011-05-01,"Kansas",2125 -2011-06-01,"Kansas",1478 -2011-07-01,"Kansas",1204 -2011-08-01,"Kansas",1085 -2011-09-01,"Kansas",1118 -2011-10-01,"Kansas",2209 -2011-11-01,"Kansas",6060 -2011-12-01,"Kansas",10631 -2012-01-01,"Kansas",11018 -2012-02-01,"Kansas",9071 -2012-03-01,"Kansas",4398 -2012-04-01,"Kansas",2212 -2012-05-01,"Kansas",1499 -2012-06-01,"Kansas",1372 -2012-07-01,"Kansas",1062 -2012-08-01,"Kansas",967 -2012-09-01,"Kansas",1172 -2012-10-01,"Kansas",2667 -2012-11-01,"Kansas",5273 -2012-12-01,"Kansas",9778 -2013-01-01,"Kansas",12812 -2013-02-01,"Kansas",10563 -2013-03-01,"Kansas",9990 -2013-04-01,"Kansas",5437 -2013-05-01,"Kansas",2886 -2013-06-01,"Kansas",1570 -2013-07-01,"Kansas",1292 -2013-08-01,"Kansas",1131 -2013-09-01,"Kansas",1065 -2013-10-01,"Kansas",2397 -2013-11-01,"Kansas",5313 -2013-12-01,"Kansas",13581 -2014-01-01,"Kansas",15232 -2014-02-01,"Kansas",13168 -2014-03-01,"Kansas",9658 -2014-04-01,"Kansas",4506 -2014-05-01,"Kansas",2055 -2014-06-01,"Kansas",1285 -2014-07-01,"Kansas",1190 -2014-08-01,"Kansas",1127 -2014-09-01,"Kansas",1274 -2014-10-01,"Kansas",2268 -2014-11-01,"Kansas",8023 -2014-12-01,"Kansas",11328 -2015-01-01,"Kansas",12843 -2015-02-01,"Kansas",11566 -2015-03-01,"Kansas",7324 -2015-04-01,"Kansas",2529 -2015-05-01,"Kansas",1854 -2015-06-01,"Kansas",1380 -2015-07-01,"Kansas",1151 -2015-08-01,"Kansas",1442 -2015-09-01,"Kansas",1596 -2015-10-01,"Kansas",2180 -2015-11-01,"Kansas",5587 -2015-12-01,"Kansas",8933 -2016-01-01,"Kansas",12771 -2016-02-01,"Kansas",8619 -2016-03-01,"Kansas",5100 -2016-04-01,"Kansas",2599 -2016-05-01,"Kansas",2084 -2016-06-01,"Kansas",1377 -2016-07-01,"Kansas",1080 -2016-08-01,"Kansas",990 -2016-09-01,"Kansas",1139 -2016-10-01,"Kansas",1543 -2016-11-01,"Kansas",4753 -2016-12-01,"Kansas",12004 -2017-01-01,"Kansas",12342 -2017-02-01,"Kansas",6663 -2017-03-01,"Kansas",6449 -2017-04-01,"Kansas",3063 -2017-05-01,"Kansas",1777 -2017-06-01,"Kansas",1229 -2017-07-01,"Kansas",1010 -2017-08-01,"Kansas",1064 -2017-09-01,"Kansas",1167 -2017-10-01,"Kansas",2239 -2017-11-01,"Kansas",6672 -2017-12-01,"Kansas",10771 -2018-01-01,"Kansas",13476 -2018-02-01,"Kansas",11040 -2018-03-01,"Kansas",7132 -2018-04-01,"Kansas",5824 -2018-05-01,"Kansas",1683 -2018-06-01,"Kansas",1327 -2018-07-01,"Kansas",1028 -2018-08-01,"Kansas",1121 -2018-09-01,"Kansas",1436 -2018-10-01,"Kansas",3197 -2018-11-01,"Kansas",9212 -2018-12-01,"Kansas",10657 -2019-01-01,"Kansas",14024 -2019-02-01,"Kansas",12915 -2019-03-01,"Kansas",9360 -2019-04-01,"Kansas",3260 -2019-05-01,"Kansas",1911 -2019-06-01,"Kansas",1178 -2019-07-01,"Kansas",1168 -2019-08-01,"Kansas",1025 -2019-09-01,"Kansas",1249 -2019-10-01,"Kansas",3903 -2019-11-01,"Kansas",8053 -2019-12-01,"Kansas",10077 -2020-01-01,"Kansas",12275 -2020-02-01,"Kansas",10360 -2020-03-01,"Kansas",6586 -2020-04-01,"Kansas",4535 -2020-05-01,"Kansas",2120 -2020-06-01,"Kansas",1213 -2020-07-01,"Kansas",1193 -2020-08-01,"Kansas",1064 -2020-09-01,"Kansas",1383 -2020-10-01,"Kansas",4260 -2020-11-01,"Kansas",5823 -2020-12-01,"Kansas",10336 -2021-01-01,"Kansas",12113 -2021-02-01,"Kansas",14889 -1989-01-01,"Kentucky",9700 -1989-02-01,"Kentucky",10403 -1989-03-01,"Kentucky",8293 -1989-04-01,"Kentucky",5319 -1989-05-01,"Kentucky",3161 -1989-06-01,"Kentucky",1809 -1989-07-01,"Kentucky",1332 -1989-08-01,"Kentucky",1337 -1989-09-01,"Kentucky",1446 -1989-10-01,"Kentucky",3109 -1989-11-01,"Kentucky",6141 -1989-12-01,"Kentucky",13034 -1990-01-01,"Kentucky",9736 -1990-02-01,"Kentucky",8409 -1990-03-01,"Kentucky",6367 -1990-04-01,"Kentucky",5007 -1990-05-01,"Kentucky",2448 -1990-06-01,"Kentucky",1599 -1990-07-01,"Kentucky",1376 -1990-08-01,"Kentucky",1288 -1990-09-01,"Kentucky",1375 -1990-10-01,"Kentucky",3306 -1990-11-01,"Kentucky",5741 -1990-12-01,"Kentucky",9412 -1991-01-01,"Kentucky",11629 -1991-02-01,"Kentucky",9644 -1991-03-01,"Kentucky",7168 -1991-04-01,"Kentucky",3430 -1991-05-01,"Kentucky",1805 -1991-06-01,"Kentucky",1378 -1991-07-01,"Kentucky",1278 -1991-08-01,"Kentucky",1168 -1991-09-01,"Kentucky",1487 -1991-10-01,"Kentucky",3120 -1991-11-01,"Kentucky",7676 -1991-12-01,"Kentucky",9682 -1992-01-01,"Kentucky",11805 -1992-02-01,"Kentucky",8511 -1992-03-01,"Kentucky",7813 -1992-04-01,"Kentucky",4179 -1992-05-01,"Kentucky",2626 -1992-06-01,"Kentucky",1835 -1992-07-01,"Kentucky",1326 -1992-08-01,"Kentucky",1416 -1992-09-01,"Kentucky",1413 -1992-10-01,"Kentucky",3376 -1992-11-01,"Kentucky",6997 -1992-12-01,"Kentucky",10617 -1993-01-01,"Kentucky",11143 -1993-02-01,"Kentucky",11145 -1993-03-01,"Kentucky",9198 -1993-04-01,"Kentucky",4989 -1993-05-01,"Kentucky",1908 -1993-06-01,"Kentucky",1710 -1993-07-01,"Kentucky",1289 -1993-08-01,"Kentucky",1137 -1993-09-01,"Kentucky",1410 -1993-10-01,"Kentucky",3858 -1993-11-01,"Kentucky",7612 -1993-12-01,"Kentucky",11510 -1994-01-01,"Kentucky",15487 -1994-02-01,"Kentucky",10560 -1994-03-01,"Kentucky",8417 -1994-04-01,"Kentucky",3601 -1994-05-01,"Kentucky",2314 -1994-06-01,"Kentucky",1260 -1994-07-01,"Kentucky",1178 -1994-08-01,"Kentucky",1211 -1994-09-01,"Kentucky",1300 -1994-10-01,"Kentucky",2820 -1994-11-01,"Kentucky",5209 -1994-12-01,"Kentucky",9175 -1995-01-01,"Kentucky",12353 -1995-02-01,"Kentucky",10855 -1995-03-01,"Kentucky",7410 -1995-04-01,"Kentucky",3655 -1995-05-01,"Kentucky",2403 -1995-06-01,"Kentucky",1129 -1995-07-01,"Kentucky",1208 -1995-08-01,"Kentucky",1120 -1995-09-01,"Kentucky",1338 -1995-10-01,"Kentucky",3130 -1995-11-01,"Kentucky",9224 -1995-12-01,"Kentucky",12325 -1996-01-01,"Kentucky",13638 -1996-02-01,"Kentucky",11218 -1996-03-01,"Kentucky",10254 -1996-04-01,"Kentucky",5565 -1996-05-01,"Kentucky",2255 -1996-06-01,"Kentucky",1335 -1996-07-01,"Kentucky",1108 -1996-08-01,"Kentucky",1253 -1996-09-01,"Kentucky",1389 -1996-10-01,"Kentucky",3018 -1996-11-01,"Kentucky",9022 -1996-12-01,"Kentucky",10177 -1997-01-01,"Kentucky",13968 -1997-02-01,"Kentucky",8981 -1997-03-01,"Kentucky",7304 -1997-04-01,"Kentucky",4893 -1997-05-01,"Kentucky",2959 -1997-06-01,"Kentucky",1575 -1997-07-01,"Kentucky",1499 -1997-08-01,"Kentucky",1073 -1997-09-01,"Kentucky",1451 -1997-10-01,"Kentucky",3063 -1997-11-01,"Kentucky",8091 -1997-12-01,"Kentucky",11175 -1998-01-01,"Kentucky",10589 -1998-02-01,"Kentucky",8493 -1998-03-01,"Kentucky",8142 -1998-04-01,"Kentucky",3926 -1998-05-01,"Kentucky",1955 -1998-06-01,"Kentucky",1295 -1998-07-01,"Kentucky",1293 -1998-08-01,"Kentucky",1081 -1998-09-01,"Kentucky",1150 -1998-10-01,"Kentucky",2220 -1998-11-01,"Kentucky",6112 -1998-12-01,"Kentucky",9289 -1999-01-01,"Kentucky",11542 -1999-02-01,"Kentucky",8713 -1999-03-01,"Kentucky",9196 -1999-04-01,"Kentucky",4081 -1999-05-01,"Kentucky",1792 -1999-06-01,"Kentucky",1325 -1999-07-01,"Kentucky",1165 -1999-08-01,"Kentucky",1181 -1999-09-01,"Kentucky",1391 -1999-10-01,"Kentucky",2631 -1999-11-01,"Kentucky",5413 -1999-12-01,"Kentucky",10790 -2000-01-01,"Kentucky",13590 -2000-02-01,"Kentucky",8233 -2000-03-01,"Kentucky",6183 -2000-04-01,"Kentucky",4108 -2000-05-01,"Kentucky",1415 -2000-06-01,"Kentucky",1129 -2000-07-01,"Kentucky",1071 -2000-08-01,"Kentucky",1233 -2000-09-01,"Kentucky",1446 -2000-10-01,"Kentucky",2793 -2000-11-01,"Kentucky",8161 -2000-12-01,"Kentucky",15301 -2001-01-01,"Kentucky",12636 -2001-02-01,"Kentucky",8950 -2001-03-01,"Kentucky",9204 -2001-04-01,"Kentucky",2471 -2001-05-01,"Kentucky",1312 -2001-06-01,"Kentucky",961 -2001-07-01,"Kentucky",1041 -2001-08-01,"Kentucky",1087 -2001-09-01,"Kentucky",1385 -2001-10-01,"Kentucky",3187 -2001-11-01,"Kentucky",5135 -2001-12-01,"Kentucky",9578 -2002-01-01,"Kentucky",10128 -2002-02-01,"Kentucky",9343 -2002-03-01,"Kentucky",8162 -2002-04-01,"Kentucky",3666 -2002-05-01,"Kentucky",1688 -2002-06-01,"Kentucky",1129 -2002-07-01,"Kentucky",1033 -2002-08-01,"Kentucky",1104 -2002-09-01,"Kentucky",1091 -2002-10-01,"Kentucky",3065 -2002-11-01,"Kentucky",7058 -2002-12-01,"Kentucky",11636 -2003-01-01,"Kentucky",14620 -2003-02-01,"Kentucky",11945 -2003-03-01,"Kentucky",6867 -2003-04-01,"Kentucky",3566 -2003-05-01,"Kentucky",1431 -2003-06-01,"Kentucky",1221 -2003-07-01,"Kentucky",1153 -2003-08-01,"Kentucky",1041 -2003-09-01,"Kentucky",1470 -2003-10-01,"Kentucky",2628 -2003-11-01,"Kentucky",5216 -2003-12-01,"Kentucky",10727 -2004-01-01,"Kentucky",13274 -2004-02-01,"Kentucky",10242 -2004-03-01,"Kentucky",6560 -2004-04-01,"Kentucky",3531 -2004-05-01,"Kentucky",1484 -2004-06-01,"Kentucky",1133 -2004-07-01,"Kentucky",1070 -2004-08-01,"Kentucky",1048 -2004-09-01,"Kentucky",1131 -2004-10-01,"Kentucky",1927 -2004-11-01,"Kentucky",4674 -2004-12-01,"Kentucky",10369 -2005-01-01,"Kentucky",10892 -2005-02-01,"Kentucky",8481 -2005-03-01,"Kentucky",8516 -2005-04-01,"Kentucky",3375 -2005-05-01,"Kentucky",2113 -2005-06-01,"Kentucky",1158 -2005-07-01,"Kentucky",1105 -2005-08-01,"Kentucky",1057 -2005-09-01,"Kentucky",979 -2005-10-01,"Kentucky",2383 -2005-11-01,"Kentucky",5280 -2005-12-01,"Kentucky",10803 -2006-01-01,"Kentucky",7727 -2006-02-01,"Kentucky",8534 -2006-03-01,"Kentucky",6134 -2006-04-01,"Kentucky",2801 -2006-05-01,"Kentucky",1443 -2006-06-01,"Kentucky",1133 -2006-07-01,"Kentucky",921 -2006-08-01,"Kentucky",947 -2006-09-01,"Kentucky",1069 -2006-10-01,"Kentucky",2974 -2006-11-01,"Kentucky",5807 -2006-12-01,"Kentucky",7889 -2007-01-01,"Kentucky",9755 -2007-02-01,"Kentucky",10940 -2007-03-01,"Kentucky",5915 -2007-04-01,"Kentucky",4088 -2007-05-01,"Kentucky",1573 -2007-06-01,"Kentucky",993 -2007-07-01,"Kentucky",963 -2007-08-01,"Kentucky",925 -2007-09-01,"Kentucky",944 -2007-10-01,"Kentucky",1726 -2007-11-01,"Kentucky",5120 -2007-12-01,"Kentucky",8593 -2008-01-01,"Kentucky",11545 -2008-02-01,"Kentucky",9457 -2008-03-01,"Kentucky",7350 -2008-04-01,"Kentucky",3575 -2008-05-01,"Kentucky",1677 -2008-06-01,"Kentucky",925 -2008-07-01,"Kentucky",984 -2008-08-01,"Kentucky",834 -2008-09-01,"Kentucky",809 -2008-10-01,"Kentucky",2298 -2008-11-01,"Kentucky",5977 -2008-12-01,"Kentucky",9594 -2009-01-01,"Kentucky",12153 -2009-02-01,"Kentucky",8225 -2009-03-01,"Kentucky",5548 -2009-04-01,"Kentucky",3277 -2009-05-01,"Kentucky",1503 -2009-06-01,"Kentucky",962 -2009-07-01,"Kentucky",1058 -2009-08-01,"Kentucky",982 -2009-09-01,"Kentucky",1016 -2009-10-01,"Kentucky",2787 -2009-11-01,"Kentucky",4320 -2009-12-01,"Kentucky",9989 -2010-01-01,"Kentucky",11917 -2010-02-01,"Kentucky",10999 -2010-03-01,"Kentucky",6278 -2010-04-01,"Kentucky",1848 -2010-05-01,"Kentucky",1042 -2010-06-01,"Kentucky",896 -2010-07-01,"Kentucky",845 -2010-08-01,"Kentucky",840 -2010-09-01,"Kentucky",884 -2010-10-01,"Kentucky",1858 -2010-11-01,"Kentucky",4923 -2010-12-01,"Kentucky",12060 -2011-01-01,"Kentucky",12752 -2011-02-01,"Kentucky",8347 -2011-03-01,"Kentucky",6535 -2011-04-01,"Kentucky",2584 -2011-05-01,"Kentucky",1794 -2011-06-01,"Kentucky",1050 -2011-07-01,"Kentucky",816 -2011-08-01,"Kentucky",833 -2011-09-01,"Kentucky",931 -2011-10-01,"Kentucky",2370 -2011-11-01,"Kentucky",4661 -2011-12-01,"Kentucky",8021 -2012-01-01,"Kentucky",9550 -2012-02-01,"Kentucky",7598 -2012-03-01,"Kentucky",3664 -2012-04-01,"Kentucky",2100 -2012-05-01,"Kentucky",1165 -2012-06-01,"Kentucky",962 -2012-07-01,"Kentucky",790 -2012-08-01,"Kentucky",836 -2012-09-01,"Kentucky",940 -2012-10-01,"Kentucky",2270 -2012-11-01,"Kentucky",5604 -2012-12-01,"Kentucky",7586 -2013-01-01,"Kentucky",10210 -2013-02-01,"Kentucky",8749 -2013-03-01,"Kentucky",8659 -2013-04-01,"Kentucky",3249 -2013-05-01,"Kentucky",1667 -2013-06-01,"Kentucky",1004 -2013-07-01,"Kentucky",941 -2013-08-01,"Kentucky",856 -2013-09-01,"Kentucky",896 -2013-10-01,"Kentucky",2081 -2013-11-01,"Kentucky",6289 -2013-12-01,"Kentucky",9606 -2014-01-01,"Kentucky",13627 -2014-02-01,"Kentucky",10591 -2014-03-01,"Kentucky",7890 -2014-04-01,"Kentucky",3189 -2014-05-01,"Kentucky",1563 -2014-06-01,"Kentucky",904 -2014-07-01,"Kentucky",779 -2014-08-01,"Kentucky",806 -2014-09-01,"Kentucky",970 -2014-10-01,"Kentucky",1856 -2014-11-01,"Kentucky",6898 -2014-12-01,"Kentucky",8517 -2015-01-01,"Kentucky",11564 -2015-02-01,"Kentucky",12025 -2015-03-01,"Kentucky",7078 -2015-04-01,"Kentucky",2309 -2015-05-01,"Kentucky",1217 -2015-06-01,"Kentucky",900 -2015-07-01,"Kentucky",899 -2015-08-01,"Kentucky",889 -2015-09-01,"Kentucky",885 -2015-10-01,"Kentucky",1640 -2015-11-01,"Kentucky",4167 -2015-12-01,"Kentucky",5853 -2016-01-01,"Kentucky",10651 -2016-02-01,"Kentucky",8533 -2016-03-01,"Kentucky",4655 -2016-04-01,"Kentucky",2633 -2016-05-01,"Kentucky",1491 -2016-06-01,"Kentucky",813 -2016-07-01,"Kentucky",723 -2016-08-01,"Kentucky",774 -2016-09-01,"Kentucky",772 -2016-10-01,"Kentucky",1288 -2016-11-01,"Kentucky",3863 -2016-12-01,"Kentucky",9305 -2017-01-01,"Kentucky",8265 -2017-02-01,"Kentucky",5597 -2017-03-01,"Kentucky",5648 -2017-04-01,"Kentucky",2032 -2017-05-01,"Kentucky",1188 -2017-06-01,"Kentucky",777 -2017-07-01,"Kentucky",719 -2017-08-01,"Kentucky",784 -2017-09-01,"Kentucky",975 -2017-10-01,"Kentucky",2019 -2017-11-01,"Kentucky",5305 -2017-12-01,"Kentucky",9945 -2018-01-01,"Kentucky",12087 -2018-02-01,"Kentucky",6660 -2018-03-01,"Kentucky",6913 -2018-04-01,"Kentucky",4229 -2018-05-01,"Kentucky",1220 -2018-06-01,"Kentucky",759 -2018-07-01,"Kentucky",700 -2018-08-01,"Kentucky",755 -2018-09-01,"Kentucky",856 -2018-10-01,"Kentucky",2558 -2018-11-01,"Kentucky",6936 -2018-12-01,"Kentucky",7804 -2019-01-01,"Kentucky",10700 -2019-02-01,"Kentucky",7556 -2019-03-01,"Kentucky",7153 -2019-04-01,"Kentucky",2265 -2019-05-01,"Kentucky",1196 -2019-06-01,"Kentucky",911 -2019-07-01,"Kentucky",794 -2019-08-01,"Kentucky",766 -2019-09-01,"Kentucky",743 -2019-10-01,"Kentucky",1835 -2019-11-01,"Kentucky",6904 -2019-12-01,"Kentucky",7953 -2020-01-01,"Kentucky",8570 -2020-02-01,"Kentucky",8417 -2020-03-01,"Kentucky",4690 -2020-04-01,"Kentucky",3207 -2020-05-01,"Kentucky",1806 -2020-06-01,"Kentucky",829 -2020-07-01,"Kentucky",765 -2020-08-01,"Kentucky",720 -2020-09-01,"Kentucky",891 -2020-10-01,"Kentucky",2083 -2020-11-01,"Kentucky",4382 -2020-12-01,"Kentucky",9307 -2021-01-01,"Kentucky",10027 -2021-02-01,"Kentucky",10370 -1989-01-01,"Louisiana",8279 -1989-02-01,"Louisiana",8546 -1989-03-01,"Louisiana",8377 -1989-04-01,"Louisiana",4724 -1989-05-01,"Louisiana",2816 -1989-06-01,"Louisiana",2321 -1989-07-01,"Louisiana",2189 -1989-08-01,"Louisiana",2026 -1989-09-01,"Louisiana",2035 -1989-10-01,"Louisiana",2513 -1989-11-01,"Louisiana",4166 -1989-12-01,"Louisiana",9714 -1990-01-01,"Louisiana",12359 -1990-02-01,"Louisiana",6495 -1990-03-01,"Louisiana",5729 -1990-04-01,"Louisiana",4263 -1990-05-01,"Louisiana",2775 -1990-06-01,"Louisiana",2264 -1990-07-01,"Louisiana",2028 -1990-08-01,"Louisiana",1973 -1990-09-01,"Louisiana",2033 -1990-10-01,"Louisiana",2349 -1990-11-01,"Louisiana",4380 -1990-12-01,"Louisiana",6745 -1991-01-01,"Louisiana",10169 -1991-02-01,"Louisiana",8812 -1991-03-01,"Louisiana",6321 -1991-04-01,"Louisiana",3668 -1991-05-01,"Louisiana",2540 -1991-06-01,"Louisiana",2264 -1991-07-01,"Louisiana",1911 -1991-08-01,"Louisiana",1900 -1991-09-01,"Louisiana",1974 -1991-10-01,"Louisiana",2267 -1991-11-01,"Louisiana",5200 -1991-12-01,"Louisiana",7567 -1992-01-01,"Louisiana",9861 -1992-02-01,"Louisiana",9220 -1992-03-01,"Louisiana",5650 -1992-04-01,"Louisiana",4544 -1992-05-01,"Louisiana",2799 -1992-06-01,"Louisiana",2288 -1992-07-01,"Louisiana",2067 -1992-08-01,"Louisiana",1960 -1992-09-01,"Louisiana",2014 -1992-10-01,"Louisiana",2222 -1992-11-01,"Louisiana",4185 -1992-12-01,"Louisiana",8411 -1993-01-01,"Louisiana",8577 -1993-02-01,"Louisiana",8402 -1993-03-01,"Louisiana",7933 -1993-04-01,"Louisiana",5575 -1993-05-01,"Louisiana",2944 -1993-06-01,"Louisiana",2216 -1993-07-01,"Louisiana",2110 -1993-08-01,"Louisiana",1836 -1993-09-01,"Louisiana",1888 -1993-10-01,"Louisiana",2112 -1993-11-01,"Louisiana",5120 -1993-12-01,"Louisiana",7896 -1994-01-01,"Louisiana",11755 -1994-02-01,"Louisiana",9414 -1994-03-01,"Louisiana",6612 -1994-04-01,"Louisiana",4057 -1994-05-01,"Louisiana",2495 -1994-06-01,"Louisiana",2036 -1994-07-01,"Louisiana",1924 -1994-08-01,"Louisiana",1717 -1994-09-01,"Louisiana",1882 -1994-10-01,"Louisiana",2154 -1994-11-01,"Louisiana",2985 -1994-12-01,"Louisiana",5947 -1995-01-01,"Louisiana",9590 -1995-02-01,"Louisiana",8860 -1995-03-01,"Louisiana",6640 -1995-04-01,"Louisiana",3731 -1995-05-01,"Louisiana",2434 -1995-06-01,"Louisiana",2219 -1995-07-01,"Louisiana",1758 -1995-08-01,"Louisiana",1691 -1995-09-01,"Louisiana",1816 -1995-10-01,"Louisiana",2073 -1995-11-01,"Louisiana",4391 -1995-12-01,"Louisiana",7401 -1996-01-01,"Louisiana",11865 -1996-02-01,"Louisiana",10284 -1996-03-01,"Louisiana",7507 -1996-04-01,"Louisiana",5158 -1996-05-01,"Louisiana",2562 -1996-06-01,"Louisiana",1977 -1996-07-01,"Louisiana",1820 -1996-08-01,"Louisiana",1831 -1996-09-01,"Louisiana",1836 -1996-10-01,"Louisiana",2102 -1996-11-01,"Louisiana",3511 -1996-12-01,"Louisiana",6173 -1997-01-01,"Louisiana",9792 -1997-02-01,"Louisiana",9272 -1997-03-01,"Louisiana",5700 -1997-04-01,"Louisiana",3648 -1997-05-01,"Louisiana",2866 -1997-06-01,"Louisiana",2108 -1997-07-01,"Louisiana",1746 -1997-08-01,"Louisiana",1716 -1997-09-01,"Louisiana",1710 -1997-10-01,"Louisiana",2016 -1997-11-01,"Louisiana",4176 -1997-12-01,"Louisiana",7960 -1998-01-01,"Louisiana",9326 -1998-02-01,"Louisiana",8311 -1998-03-01,"Louisiana",7043 -1998-04-01,"Louisiana",4059 -1998-05-01,"Louisiana",2464 -1998-06-01,"Louisiana",1815 -1998-07-01,"Louisiana",1774 -1998-08-01,"Louisiana",1588 -1998-09-01,"Louisiana",1719 -1998-10-01,"Louisiana",1785 -1998-11-01,"Louisiana",2703 -1998-12-01,"Louisiana",4987 -1999-01-01,"Louisiana",9279 -1999-02-01,"Louisiana",6197 -1999-03-01,"Louisiana",5547 -1999-04-01,"Louisiana",3832 -1999-05-01,"Louisiana",2304 -1999-06-01,"Louisiana",1942 -1999-07-01,"Louisiana",1792 -1999-08-01,"Louisiana",1679 -1999-09-01,"Louisiana",1699 -1999-10-01,"Louisiana",1958 -1999-11-01,"Louisiana",2935 -1999-12-01,"Louisiana",5940 -2000-01-01,"Louisiana",8827 -2000-02-01,"Louisiana",7834 -2000-03-01,"Louisiana",4490 -2000-04-01,"Louisiana",3702 -2000-05-01,"Louisiana",2062 -2000-06-01,"Louisiana",1815 -2000-07-01,"Louisiana",1724 -2000-08-01,"Louisiana",1623 -2000-09-01,"Louisiana",1714 -2000-10-01,"Louisiana",2204 -2000-11-01,"Louisiana",4251 -2000-12-01,"Louisiana",9497 -2001-01-01,"Louisiana",12858 -2001-02-01,"Louisiana",8217 -2001-03-01,"Louisiana",4805 -2001-04-01,"Louisiana",3162 -2001-05-01,"Louisiana",1996 -2001-06-01,"Louisiana",1634 -2001-07-01,"Louisiana",1862 -2001-08-01,"Louisiana",1527 -2001-09-01,"Louisiana",1588 -2001-10-01,"Louisiana",2228 -2001-11-01,"Louisiana",3325 -2001-12-01,"Louisiana",5802 -2002-01-01,"Louisiana",8946 -2002-02-01,"Louisiana",8388 -2002-03-01,"Louisiana",7003 -2002-04-01,"Louisiana",4033 -2002-05-01,"Louisiana",1949 -2002-06-01,"Louisiana",1830 -2002-07-01,"Louisiana",1642 -2002-08-01,"Louisiana",1533 -2002-09-01,"Louisiana",1597 -2002-10-01,"Louisiana",1743 -2002-11-01,"Louisiana",2875 -2002-12-01,"Louisiana",7606 -2003-01-01,"Louisiana",10166 -2003-02-01,"Louisiana",9807 -2003-03-01,"Louisiana",5721 -2003-04-01,"Louisiana",2771 -2003-05-01,"Louisiana",1945 -2003-06-01,"Louisiana",1472 -2003-07-01,"Louisiana",1650 -2003-08-01,"Louisiana",1468 -2003-09-01,"Louisiana",1612 -2003-10-01,"Louisiana",1790 -2003-11-01,"Louisiana",2147 -2003-12-01,"Louisiana",6779 -2004-01-01,"Louisiana",8760 -2004-02-01,"Louisiana",8350 -2004-03-01,"Louisiana",6005 -2004-04-01,"Louisiana",2981 -2004-05-01,"Louisiana",2032 -2004-06-01,"Louisiana",1643 -2004-07-01,"Louisiana",1584 -2004-08-01,"Louisiana",1430 -2004-09-01,"Louisiana",1541 -2004-10-01,"Louisiana",1579 -2004-11-01,"Louisiana",1997 -2004-12-01,"Louisiana",4832 -2005-01-01,"Louisiana",8496 -2005-02-01,"Louisiana",6879 -2005-03-01,"Louisiana",5276 -2005-04-01,"Louisiana",2898 -2005-05-01,"Louisiana",1885 -2005-06-01,"Louisiana",1574 -2005-07-01,"Louisiana",1459 -2005-08-01,"Louisiana",1427 -2005-09-01,"Louisiana",921 -2005-10-01,"Louisiana",1741 -2005-11-01,"Louisiana",2852 -2005-12-01,"Louisiana",5746 -2006-01-01,"Louisiana",5987 -2006-02-01,"Louisiana",5382 -2006-03-01,"Louisiana",3526 -2006-04-01,"Louisiana",2219 -2006-05-01,"Louisiana",1368 -2006-06-01,"Louisiana",1392 -2006-07-01,"Louisiana",1252 -2006-08-01,"Louisiana",1224 -2006-09-01,"Louisiana",1241 -2006-10-01,"Louisiana",1402 -2006-11-01,"Louisiana",3132 -2006-12-01,"Louisiana",5310 -2007-01-01,"Louisiana",7858 -2007-02-01,"Louisiana",6419 -2007-03-01,"Louisiana",4525 -2007-04-01,"Louisiana",2429 -2007-05-01,"Louisiana",1870 -2007-06-01,"Louisiana",1436 -2007-07-01,"Louisiana",1300 -2007-08-01,"Louisiana",1280 -2007-09-01,"Louisiana",1236 -2007-10-01,"Louisiana",1533 -2007-11-01,"Louisiana",2527 -2007-12-01,"Louisiana",4736 -2008-01-01,"Louisiana",7570 -2008-02-01,"Louisiana",5727 -2008-03-01,"Louisiana",4377 -2008-04-01,"Louisiana",2440 -2008-05-01,"Louisiana",1928 -2008-06-01,"Louisiana",1380 -2008-07-01,"Louisiana",1184 -2008-08-01,"Louisiana",1222 -2008-09-01,"Louisiana",1328 -2008-10-01,"Louisiana",1646 -2008-11-01,"Louisiana",2880 -2008-12-01,"Louisiana",5542 -2009-01-01,"Louisiana",6986 -2009-02-01,"Louisiana",5560 -2009-03-01,"Louisiana",4069 -2009-04-01,"Louisiana",2450 -2009-05-01,"Louisiana",1685 -2009-06-01,"Louisiana",1421 -2009-07-01,"Louisiana",1245 -2009-08-01,"Louisiana",1259 -2009-09-01,"Louisiana",1238 -2009-10-01,"Louisiana",1701 -2009-11-01,"Louisiana",2666 -2009-12-01,"Louisiana",6234 -2010-01-01,"Louisiana",9629 -2010-02-01,"Louisiana",8150 -2010-03-01,"Louisiana",6965 -2010-04-01,"Louisiana",2748 -2010-05-01,"Louisiana",1463 -2010-06-01,"Louisiana",1330 -2010-07-01,"Louisiana",1213 -2010-08-01,"Louisiana",1152 -2010-09-01,"Louisiana",1214 -2010-10-01,"Louisiana",1422 -2010-11-01,"Louisiana",2708 -2010-12-01,"Louisiana",7523 -2011-01-01,"Louisiana",9051 -2011-02-01,"Louisiana",7404 -2011-03-01,"Louisiana",4038 -2011-04-01,"Louisiana",1987 -2011-05-01,"Louisiana",1619 -2011-06-01,"Louisiana",1386 -2011-07-01,"Louisiana",1232 -2011-08-01,"Louisiana",1172 -2011-09-01,"Louisiana",1280 -2011-10-01,"Louisiana",1692 -2011-11-01,"Louisiana",2946 -2011-12-01,"Louisiana",5607 -2012-01-01,"Louisiana",5667 -2012-02-01,"Louisiana",4529 -2012-03-01,"Louisiana",2957 -2012-04-01,"Louisiana",1709 -2012-05-01,"Louisiana",1471 -2012-06-01,"Louisiana",1264 -2012-07-01,"Louisiana",1276 -2012-08-01,"Louisiana",1242 -2012-09-01,"Louisiana",1203 -2012-10-01,"Louisiana",1835 -2012-11-01,"Louisiana",3626 -2012-12-01,"Louisiana",5055 -2013-01-01,"Louisiana",7100 -2013-02-01,"Louisiana",4809 -2013-03-01,"Louisiana",4873 -2013-04-01,"Louisiana",2995 -2013-05-01,"Louisiana",2044 -2013-06-01,"Louisiana",1377 -2013-07-01,"Louisiana",1269 -2013-08-01,"Louisiana",1256 -2013-09-01,"Louisiana",1325 -2013-10-01,"Louisiana",1520 -2013-11-01,"Louisiana",3131 -2013-12-01,"Louisiana",7120 -2014-01-01,"Louisiana",10769 -2014-02-01,"Louisiana",7356 -2014-03-01,"Louisiana",5482 -2014-04-01,"Louisiana",2576 -2014-05-01,"Louisiana",1972 -2014-06-01,"Louisiana",1263 -2014-07-01,"Louisiana",1226 -2014-08-01,"Louisiana",1294 -2014-09-01,"Louisiana",1358 -2014-10-01,"Louisiana",1691 -2014-11-01,"Louisiana",3825 -2014-12-01,"Louisiana",5705 -2015-01-01,"Louisiana",8561 -2015-02-01,"Louisiana",7572 -2015-03-01,"Louisiana",4337 -2015-04-01,"Louisiana",1884 -2015-05-01,"Louisiana",1679 -2015-06-01,"Louisiana",1288 -2015-07-01,"Louisiana",1295 -2015-08-01,"Louisiana",1205 -2015-09-01,"Louisiana",1356 -2015-10-01,"Louisiana",1537 -2015-11-01,"Louisiana",2384 -2015-12-01,"Louisiana",3762 -2016-01-01,"Louisiana",7419 -2016-02-01,"Louisiana",4881 -2016-03-01,"Louisiana",2610 -2016-04-01,"Louisiana",1902 -2016-05-01,"Louisiana",1481 -2016-06-01,"Louisiana",1239 -2016-07-01,"Louisiana",1182 -2016-08-01,"Louisiana",1247 -2016-09-01,"Louisiana",1222 -2016-10-01,"Louisiana",1388 -2016-11-01,"Louisiana",1988 -2016-12-01,"Louisiana",4824 -2017-01-01,"Louisiana",4930 -2017-02-01,"Louisiana",2908 -2017-03-01,"Louisiana",2700 -2017-04-01,"Louisiana",1706 -2017-05-01,"Louisiana",1430 -2017-06-01,"Louisiana",1288 -2017-07-01,"Louisiana",1232 -2017-08-01,"Louisiana",1208 -2017-09-01,"Louisiana",1221 -2017-10-01,"Louisiana",1537 -2017-11-01,"Louisiana",2661 -2017-12-01,"Louisiana",6254 -2018-01-01,"Louisiana",10140 -2018-02-01,"Louisiana",4041 -2018-03-01,"Louisiana",2982 -2018-04-01,"Louisiana",2356 -2018-05-01,"Louisiana",1527 -2018-06-01,"Louisiana",1204 -2018-07-01,"Louisiana",1170 -2018-08-01,"Louisiana",1084 -2018-09-01,"Louisiana",1265 -2018-10-01,"Louisiana",1717 -2018-11-01,"Louisiana",4382 -2018-12-01,"Louisiana",5969 -2019-01-01,"Louisiana",7279 -2019-02-01,"Louisiana",4907 -2019-03-01,"Louisiana",4242 -2019-04-01,"Louisiana",2442 -2019-05-01,"Louisiana",1555 -2019-06-01,"Louisiana",1211 -2019-07-01,"Louisiana",1057 -2019-08-01,"Louisiana",1249 -2019-09-01,"Louisiana",1171 -2019-10-01,"Louisiana",1507 -2019-11-01,"Louisiana",4123 -2019-12-01,"Louisiana",5277 -2020-01-01,"Louisiana",NA -2020-02-01,"Louisiana",4811 -2020-03-01,"Louisiana",3008 -2020-04-01,"Louisiana",2018 -2020-05-01,"Louisiana",1654 -2020-06-01,"Louisiana",1375 -2020-07-01,"Louisiana",1393 -2020-08-01,"Louisiana",1220 -2020-09-01,"Louisiana",1523 -2020-10-01,"Louisiana",1980 -2020-11-01,"Louisiana",3064 -2020-12-01,"Louisiana",6158 -2021-01-01,"Louisiana",6905 -2021-02-01,"Louisiana",7411 -1989-01-01,"Maine",92 -1989-02-01,"Maine",84 -1989-03-01,"Maine",92 -1989-04-01,"Maine",66 -1989-05-01,"Maine",49 -1989-06-01,"Maine",27 -1989-07-01,"Maine",12 -1989-08-01,"Maine",19 -1989-09-01,"Maine",21 -1989-10-01,"Maine",35 -1989-11-01,"Maine",46 -1989-12-01,"Maine",95 -1990-01-01,"Maine",109 -1990-02-01,"Maine",86 -1990-03-01,"Maine",82 -1990-04-01,"Maine",67 -1990-05-01,"Maine",48 -1990-06-01,"Maine",30 -1990-07-01,"Maine",20 -1990-08-01,"Maine",19 -1990-09-01,"Maine",22 -1990-10-01,"Maine",27 -1990-11-01,"Maine",56 -1990-12-01,"Maine",83 -1991-01-01,"Maine",106 -1991-02-01,"Maine",105 -1991-03-01,"Maine",94 -1991-04-01,"Maine",76 -1991-05-01,"Maine",46 -1991-06-01,"Maine",32 -1991-07-01,"Maine",24 -1991-08-01,"Maine",19 -1991-09-01,"Maine",26 -1991-10-01,"Maine",36 -1991-11-01,"Maine",56 -1991-12-01,"Maine",102 -1992-01-01,"Maine",128 -1992-02-01,"Maine",139 -1992-03-01,"Maine",122 -1992-04-01,"Maine",96 -1992-05-01,"Maine",66 -1992-06-01,"Maine",37 -1992-07-01,"Maine",24 -1992-08-01,"Maine",22 -1992-09-01,"Maine",17 -1992-10-01,"Maine",41 -1992-11-01,"Maine",70 -1992-12-01,"Maine",111 -1993-01-01,"Maine",144 -1993-02-01,"Maine",153 -1993-03-01,"Maine",114 -1993-04-01,"Maine",71 -1993-05-01,"Maine",38 -1993-06-01,"Maine",30 -1993-07-01,"Maine",22 -1993-08-01,"Maine",22 -1993-09-01,"Maine",27 -1993-10-01,"Maine",62 -1993-11-01,"Maine",88 -1993-12-01,"Maine",129 -1994-01-01,"Maine",171 -1994-02-01,"Maine",135 -1994-03-01,"Maine",116 -1994-04-01,"Maine",69 -1994-05-01,"Maine",49 -1994-06-01,"Maine",32 -1994-07-01,"Maine",23 -1994-08-01,"Maine",22 -1994-09-01,"Maine",30 -1994-10-01,"Maine",51 -1994-11-01,"Maine",78 -1994-12-01,"Maine",117 -1995-01-01,"Maine",130 -1995-02-01,"Maine",139 -1995-03-01,"Maine",112 -1995-04-01,"Maine",81 -1995-05-01,"Maine",48 -1995-06-01,"Maine",28 -1995-07-01,"Maine",24 -1995-08-01,"Maine",24 -1995-09-01,"Maine",31 -1995-10-01,"Maine",48 -1995-11-01,"Maine",97 -1995-12-01,"Maine",151 -1996-01-01,"Maine",159 -1996-02-01,"Maine",143 -1996-03-01,"Maine",137 -1996-04-01,"Maine",81 -1996-05-01,"Maine",49 -1996-06-01,"Maine",29 -1996-07-01,"Maine",25 -1996-08-01,"Maine",23 -1996-09-01,"Maine",28 -1996-10-01,"Maine",67 -1996-11-01,"Maine",105 -1996-12-01,"Maine",120 -1997-01-01,"Maine",166 -1997-02-01,"Maine",133 -1997-03-01,"Maine",142 -1997-04-01,"Maine",85 -1997-05-01,"Maine",56 -1997-06-01,"Maine",34 -1997-07-01,"Maine",21 -1997-08-01,"Maine",26 -1997-09-01,"Maine",30 -1997-10-01,"Maine",66 -1997-11-01,"Maine",107 -1997-12-01,"Maine",142 -1998-01-01,"Maine",152 -1998-02-01,"Maine",127 -1998-03-01,"Maine",120 -1998-04-01,"Maine",71 -1998-05-01,"Maine",45 -1998-06-01,"Maine",31 -1998-07-01,"Maine",22 -1998-08-01,"Maine",25 -1998-09-01,"Maine",27 -1998-10-01,"Maine",62 -1998-11-01,"Maine",95 -1998-12-01,"Maine",132 -1999-01-01,"Maine",165 -1999-02-01,"Maine",133 -1999-03-01,"Maine",131 -1999-04-01,"Maine",76 -1999-05-01,"Maine",40 -1999-06-01,"Maine",26 -1999-07-01,"Maine",21 -1999-08-01,"Maine",25 -1999-09-01,"Maine",27 -1999-10-01,"Maine",69 -1999-11-01,"Maine",93 -1999-12-01,"Maine",151 -2000-01-01,"Maine",202 -2000-02-01,"Maine",122 -2000-03-01,"Maine",123 -2000-04-01,"Maine",89 -2000-05-01,"Maine",49 -2000-06-01,"Maine",31 -2000-07-01,"Maine",27 -2000-08-01,"Maine",26 -2000-09-01,"Maine",32 -2000-10-01,"Maine",63 -2000-11-01,"Maine",96 -2000-12-01,"Maine",176 -2001-01-01,"Maine",175 -2001-02-01,"Maine",154 -2001-03-01,"Maine",143 -2001-04-01,"Maine",91 -2001-05-01,"Maine",38 -2001-06-01,"Maine",22 -2001-07-01,"Maine",25 -2001-08-01,"Maine",25 -2001-09-01,"Maine",32 -2001-10-01,"Maine",54 -2001-11-01,"Maine",61 -2001-12-01,"Maine",132 -2002-01-01,"Maine",150 -2002-02-01,"Maine",147 -2002-03-01,"Maine",143 -2002-04-01,"Maine",94 -2002-05-01,"Maine",52 -2002-06-01,"Maine",32 -2002-07-01,"Maine",27 -2002-08-01,"Maine",28 -2002-09-01,"Maine",28 -2002-10-01,"Maine",70 -2002-11-01,"Maine",110 -2002-12-01,"Maine",175 -2003-01-01,"Maine",215 -2003-02-01,"Maine",191 -2003-03-01,"Maine",173 -2003-04-01,"Maine",114 -2003-05-01,"Maine",60 -2003-06-01,"Maine",31 -2003-07-01,"Maine",28 -2003-08-01,"Maine",29 -2003-09-01,"Maine",30 -2003-10-01,"Maine",63 -2003-11-01,"Maine",105 -2003-12-01,"Maine",172 -2004-01-01,"Maine",236 -2004-02-01,"Maine",181 -2004-03-01,"Maine",158 -2004-04-01,"Maine",102 -2004-05-01,"Maine",47 -2004-06-01,"Maine",32 -2004-07-01,"Maine",28 -2004-08-01,"Maine",28 -2004-09-01,"Maine",32 -2004-10-01,"Maine",62 -2004-11-01,"Maine",104 -2004-12-01,"Maine",179 -2005-01-01,"Maine",208 -2005-02-01,"Maine",174 -2005-03-01,"Maine",171 -2005-04-01,"Maine",86 -2005-05-01,"Maine",63 -2005-06-01,"Maine",30 -2005-07-01,"Maine",28 -2005-08-01,"Maine",30 -2005-09-01,"Maine",28 -2005-10-01,"Maine",59 -2005-11-01,"Maine",102 -2005-12-01,"Maine",170 -2006-01-01,"Maine",153 -2006-02-01,"Maine",166 -2006-03-01,"Maine",142 -2006-04-01,"Maine",87 -2006-05-01,"Maine",52 -2006-06-01,"Maine",18 -2006-07-01,"Maine",30 -2006-08-01,"Maine",27 -2006-09-01,"Maine",30 -2006-10-01,"Maine",60 -2006-11-01,"Maine",84 -2006-12-01,"Maine",137 -2007-01-01,"Maine",181 -2007-02-01,"Maine",207 -2007-03-01,"Maine",162 -2007-04-01,"Maine",110 -2007-05-01,"Maine",51 -2007-06-01,"Maine",33 -2007-07-01,"Maine",36 -2007-08-01,"Maine",19 -2007-09-01,"Maine",30 -2007-10-01,"Maine",46 -2007-11-01,"Maine",106 -2007-12-01,"Maine",186 -2008-01-01,"Maine",179 -2008-02-01,"Maine",177 -2008-03-01,"Maine",167 -2008-04-01,"Maine",88 -2008-05-01,"Maine",49 -2008-06-01,"Maine",25 -2008-07-01,"Maine",25 -2008-08-01,"Maine",29 -2008-09-01,"Maine",33 -2008-10-01,"Maine",61 -2008-11-01,"Maine",108 -2008-12-01,"Maine",160 -2009-01-01,"Maine",242 -2009-02-01,"Maine",229 -2009-03-01,"Maine",191 -2009-04-01,"Maine",127 -2009-05-01,"Maine",66 -2009-06-01,"Maine",47 -2009-07-01,"Maine",36 -2009-08-01,"Maine",26 -2009-09-01,"Maine",29 -2009-10-01,"Maine",51 -2009-11-01,"Maine",100 -2009-12-01,"Maine",142 -2010-01-01,"Maine",219 -2010-02-01,"Maine",186 -2010-03-01,"Maine",144 -2010-04-01,"Maine",107 -2010-05-01,"Maine",62 -2010-06-01,"Maine",35 -2010-07-01,"Maine",27 -2010-08-01,"Maine",28 -2010-09-01,"Maine",31 -2010-10-01,"Maine",64 -2010-11-01,"Maine",127 -2010-12-01,"Maine",203 -2011-01-01,"Maine",269 -2011-02-01,"Maine",234 -2011-03-01,"Maine",194 -2011-04-01,"Maine",134 -2011-05-01,"Maine",71 -2011-06-01,"Maine",45 -2011-07-01,"Maine",33 -2011-08-01,"Maine",25 -2011-09-01,"Maine",37 -2011-10-01,"Maine",62 -2011-11-01,"Maine",115 -2011-12-01,"Maine",190 -2012-01-01,"Maine",255 -2012-02-01,"Maine",221 -2012-03-01,"Maine",158 -2012-04-01,"Maine",103 -2012-05-01,"Maine",67 -2012-06-01,"Maine",53 -2012-07-01,"Maine",34 -2012-08-01,"Maine",32 -2012-09-01,"Maine",41 -2012-10-01,"Maine",80 -2012-11-01,"Maine",180 -2012-12-01,"Maine",264 -2013-01-01,"Maine",339 -2013-02-01,"Maine",293 -2013-03-01,"Maine",240 -2013-04-01,"Maine",165 -2013-05-01,"Maine",80 -2013-06-01,"Maine",48 -2013-07-01,"Maine",37 -2013-08-01,"Maine",34 -2013-09-01,"Maine",43 -2013-10-01,"Maine",78 -2013-11-01,"Maine",195 -2013-12-01,"Maine",338 -2014-01-01,"Maine",421 -2014-02-01,"Maine",361 -2014-03-01,"Maine",363 -2014-04-01,"Maine",206 -2014-05-01,"Maine",112 -2014-06-01,"Maine",55 -2014-07-01,"Maine",41 -2014-08-01,"Maine",41 -2014-09-01,"Maine",54 -2014-10-01,"Maine",105 -2014-11-01,"Maine",249 -2014-12-01,"Maine",350 -2015-01-01,"Maine",526 -2015-02-01,"Maine",529 -2015-03-01,"Maine",404 -2015-04-01,"Maine",224 -2015-05-01,"Maine",95 -2015-06-01,"Maine",71 -2015-07-01,"Maine",49 -2015-08-01,"Maine",48 -2015-09-01,"Maine",48 -2015-10-01,"Maine",145 -2015-11-01,"Maine",246 -2015-12-01,"Maine",315 -2016-01-01,"Maine",436 -2016-02-01,"Maine",388 -2016-03-01,"Maine",330 -2016-04-01,"Maine",255 -2016-05-01,"Maine",136 -2016-06-01,"Maine",60 -2016-07-01,"Maine",50 -2016-08-01,"Maine",44 -2016-09-01,"Maine",56 -2016-10-01,"Maine",133 -2016-11-01,"Maine",229 -2016-12-01,"Maine",449 -2017-01-01,"Maine",447 -2017-02-01,"Maine",395 -2017-03-01,"Maine",426 -2017-04-01,"Maine",235 -2017-05-01,"Maine",135 -2017-06-01,"Maine",76 -2017-07-01,"Maine",52 -2017-08-01,"Maine",54 -2017-09-01,"Maine",58 -2017-10-01,"Maine",85 -2017-11-01,"Maine",264 -2017-12-01,"Maine",520 -2018-01-01,"Maine",592 -2018-02-01,"Maine",411 -2018-03-01,"Maine",394 -2018-04-01,"Maine",277 -2018-05-01,"Maine",116 -2018-06-01,"Maine",75 -2018-07-01,"Maine",50 -2018-08-01,"Maine",55 -2018-09-01,"Maine",61 -2018-10-01,"Maine",171 -2018-11-01,"Maine",385 -2018-12-01,"Maine",492 -2019-01-01,"Maine",566 -2019-02-01,"Maine",511 -2019-03-01,"Maine",423 -2019-04-01,"Maine",260 -2019-05-01,"Maine",167 -2019-06-01,"Maine",83 -2019-07-01,"Maine",49 -2019-08-01,"Maine",49 -2019-09-01,"Maine",64 -2019-10-01,"Maine",141 -2019-11-01,"Maine",354 -2019-12-01,"Maine",467 -2020-01-01,"Maine",498 -2020-02-01,"Maine",461 -2020-03-01,"Maine",371 -2020-04-01,"Maine",283 -2020-05-01,"Maine",164 -2020-06-01,"Maine",72 -2020-07-01,"Maine",54 -2020-08-01,"Maine",53 -2020-09-01,"Maine",67 -2020-10-01,"Maine",NA -2020-11-01,"Maine",272 -2020-12-01,"Maine",424 -2021-01-01,"Maine",562 -2021-02-01,"Maine",501 -1989-01-01,"Maryland",12209 -1989-02-01,"Maryland",10880 -1989-03-01,"Maryland",11186 -1989-04-01,"Maryland",7032 -1989-05-01,"Maryland",4320 -1989-06-01,"Maryland",2681 -1989-07-01,"Maryland",2241 -1989-08-01,"Maryland",2070 -1989-09-01,"Maryland",2177 -1989-10-01,"Maryland",3134 -1989-11-01,"Maryland",5131 -1989-12-01,"Maryland",12076 -1990-01-01,"Maryland",13718 -1990-02-01,"Maryland",8971 -1990-03-01,"Maryland",8796 -1990-04-01,"Maryland",6861 -1990-05-01,"Maryland",3558 -1990-06-01,"Maryland",2659 -1990-07-01,"Maryland",2203 -1990-08-01,"Maryland",1986 -1990-09-01,"Maryland",2069 -1990-10-01,"Maryland",2672 -1990-11-01,"Maryland",4832 -1990-12-01,"Maryland",8102 -1991-01-01,"Maryland",11849 -1991-02-01,"Maryland",10304 -1991-03-01,"Maryland",9016 -1991-04-01,"Maryland",5908 -1991-05-01,"Maryland",3199 -1991-06-01,"Maryland",2317 -1991-07-01,"Maryland",2173 -1991-08-01,"Maryland",2031 -1991-09-01,"Maryland",2161 -1991-10-01,"Maryland",3691 -1991-11-01,"Maryland",6625 -1991-12-01,"Maryland",9961 -1992-01-01,"Maryland",12442 -1992-02-01,"Maryland",11583 -1992-03-01,"Maryland",9717 -1992-04-01,"Maryland",7087 -1992-05-01,"Maryland",4007 -1992-06-01,"Maryland",2577 -1992-07-01,"Maryland",2153 -1992-08-01,"Maryland",2068 -1992-09-01,"Maryland",2027 -1992-10-01,"Maryland",4038 -1992-11-01,"Maryland",6855 -1992-12-01,"Maryland",10567 -1993-01-01,"Maryland",11900 -1993-02-01,"Maryland",12922 -1993-03-01,"Maryland",12365 -1993-04-01,"Maryland",6676 -1993-05-01,"Maryland",3460 -1993-06-01,"Maryland",2471 -1993-07-01,"Maryland",1967 -1993-08-01,"Maryland",1921 -1993-09-01,"Maryland",2140 -1993-10-01,"Maryland",3629 -1993-11-01,"Maryland",6642 -1993-12-01,"Maryland",10778 -1994-01-01,"Maryland",15481 -1994-02-01,"Maryland",14047 -1994-03-01,"Maryland",10751 -1994-04-01,"Maryland",5905 -1994-05-01,"Maryland",3732 -1994-06-01,"Maryland",2579 -1994-07-01,"Maryland",2032 -1994-08-01,"Maryland",1903 -1994-09-01,"Maryland",2164 -1994-10-01,"Maryland",3356 -1994-11-01,"Maryland",5425 -1994-12-01,"Maryland",9314 -1995-01-01,"Maryland",12358 -1995-02-01,"Maryland",13230 -1995-03-01,"Maryland",9542 -1995-04-01,"Maryland",6097 -1995-05-01,"Maryland",3664 -1995-06-01,"Maryland",2228 -1995-07-01,"Maryland",1945 -1995-08-01,"Maryland",1882 -1995-09-01,"Maryland",2094 -1995-10-01,"Maryland",2927 -1995-11-01,"Maryland",7601 -1995-12-01,"Maryland",12985 -1996-01-01,"Maryland",15942 -1996-02-01,"Maryland",14280 -1996-03-01,"Maryland",11806 -1996-04-01,"Maryland",7257 -1996-05-01,"Maryland",4136 -1996-06-01,"Maryland",2709 -1996-07-01,"Maryland",2139 -1996-08-01,"Maryland",2064 -1996-09-01,"Maryland",2207 -1996-10-01,"Maryland",3738 -1996-11-01,"Maryland",7828 -1996-12-01,"Maryland",11426 -1997-01-01,"Maryland",13987 -1997-02-01,"Maryland",11954 -1997-03-01,"Maryland",9414 -1997-04-01,"Maryland",6912 -1997-05-01,"Maryland",4215 -1997-06-01,"Maryland",2677 -1997-07-01,"Maryland",1906 -1997-08-01,"Maryland",1799 -1997-09-01,"Maryland",2067 -1997-10-01,"Maryland",3543 -1997-11-01,"Maryland",7894 -1997-12-01,"Maryland",11130 -1998-01-01,"Maryland",11993 -1998-02-01,"Maryland",11172 -1998-03-01,"Maryland",9697 -1998-04-01,"Maryland",5778 -1998-05-01,"Maryland",3047 -1998-06-01,"Maryland",2139 -1998-07-01,"Maryland",1874 -1998-08-01,"Maryland",1904 -1998-09-01,"Maryland",1882 -1998-10-01,"Maryland",2863 -1998-11-01,"Maryland",6485 -1998-12-01,"Maryland",9224 -1999-01-01,"Maryland",14731 -1999-02-01,"Maryland",11037 -1999-03-01,"Maryland",11346 -1999-04-01,"Maryland",6158 -1999-05-01,"Maryland",3316 -1999-06-01,"Maryland",2182 -1999-07-01,"Maryland",1905 -1999-08-01,"Maryland",1740 -1999-09-01,"Maryland",1960 -1999-10-01,"Maryland",3540 -1999-11-01,"Maryland",6268 -1999-12-01,"Maryland",10665 -2000-01-01,"Maryland",14913 -2000-02-01,"Maryland",14599 -2000-03-01,"Maryland",8846 -2000-04-01,"Maryland",6556 -2000-05-01,"Maryland",3375 -2000-06-01,"Maryland",2267 -2000-07-01,"Maryland",1942 -2000-08-01,"Maryland",1951 -2000-09-01,"Maryland",2058 -2000-10-01,"Maryland",3809 -2000-11-01,"Maryland",8114 -2000-12-01,"Maryland",15652 -2001-01-01,"Maryland",15679 -2001-02-01,"Maryland",11419 -2001-03-01,"Maryland",10277 -2001-04-01,"Maryland",5912 -2001-05-01,"Maryland",2674 -2001-06-01,"Maryland",1948 -2001-07-01,"Maryland",1594 -2001-08-01,"Maryland",1602 -2001-09-01,"Maryland",1673 -2001-10-01,"Maryland",4517 -2001-11-01,"Maryland",5135 -2001-12-01,"Maryland",8260 -2002-01-01,"Maryland",12903 -2002-02-01,"Maryland",11915 -2002-03-01,"Maryland",9725 -2002-04-01,"Maryland",4751 -2002-05-01,"Maryland",3099 -2002-06-01,"Maryland",2067 -2002-07-01,"Maryland",1640 -2002-08-01,"Maryland",1625 -2002-09-01,"Maryland",2040 -2002-10-01,"Maryland",5033 -2002-11-01,"Maryland",9741 -2002-12-01,"Maryland",15584 -2003-01-01,"Maryland",17974 -2003-02-01,"Maryland",16168 -2003-03-01,"Maryland",11483 -2003-04-01,"Maryland",6738 -2003-05-01,"Maryland",3866 -2003-06-01,"Maryland",2339 -2003-07-01,"Maryland",1832 -2003-08-01,"Maryland",1817 -2003-09-01,"Maryland",1901 -2003-10-01,"Maryland",4707 -2003-11-01,"Maryland",7512 -2003-12-01,"Maryland",14333 -2004-01-01,"Maryland",20027 -2004-02-01,"Maryland",14935 -2004-03-01,"Maryland",10130 -2004-04-01,"Maryland",6302 -2004-05-01,"Maryland",2648 -2004-06-01,"Maryland",1657 -2004-07-01,"Maryland",1659 -2004-08-01,"Maryland",2023 -2004-09-01,"Maryland",1712 -2004-10-01,"Maryland",4299 -2004-11-01,"Maryland",7437 -2004-12-01,"Maryland",13553 -2005-01-01,"Maryland",16612 -2005-02-01,"Maryland",13433 -2005-03-01,"Maryland",12315 -2005-04-01,"Maryland",5731 -2005-05-01,"Maryland",3495 -2005-06-01,"Maryland",2209 -2005-07-01,"Maryland",1771 -2005-08-01,"Maryland",1758 -2005-09-01,"Maryland",1537 -2005-10-01,"Maryland",3826 -2005-11-01,"Maryland",7843 -2005-12-01,"Maryland",15238 -2006-01-01,"Maryland",12372 -2006-02-01,"Maryland",13031 -2006-03-01,"Maryland",9292 -2006-04-01,"Maryland",4455 -2006-05-01,"Maryland",2508 -2006-06-01,"Maryland",1972 -2006-07-01,"Maryland",1654 -2006-08-01,"Maryland",1617 -2006-09-01,"Maryland",2121 -2006-10-01,"Maryland",4315 -2006-11-01,"Maryland",7461 -2006-12-01,"Maryland",10546 -2007-01-01,"Maryland",13309 -2007-02-01,"Maryland",18189 -2007-03-01,"Maryland",10280 -2007-04-01,"Maryland",6995 -2007-05-01,"Maryland",2547 -2007-06-01,"Maryland",2114 -2007-07-01,"Maryland",1739 -2007-08-01,"Maryland",1654 -2007-09-01,"Maryland",1640 -2007-10-01,"Maryland",2698 -2007-11-01,"Maryland",8875 -2007-12-01,"Maryland",13418 -2008-01-01,"Maryland",15286 -2008-02-01,"Maryland",13723 -2008-03-01,"Maryland",9580 -2008-04-01,"Maryland",4789 -2008-05-01,"Maryland",2932 -2008-06-01,"Maryland",1987 -2008-07-01,"Maryland",1662 -2008-08-01,"Maryland",1679 -2008-09-01,"Maryland",1709 -2008-10-01,"Maryland",4464 -2008-11-01,"Maryland",9623 -2008-12-01,"Maryland",13746 -2009-01-01,"Maryland",18371 -2009-02-01,"Maryland",12990 -2009-03-01,"Maryland",10567 -2009-04-01,"Maryland",5078 -2009-05-01,"Maryland",2644 -2009-06-01,"Maryland",1814 -2009-07-01,"Maryland",1685 -2009-08-01,"Maryland",1647 -2009-09-01,"Maryland",1701 -2009-10-01,"Maryland",4091 -2009-11-01,"Maryland",7215 -2009-12-01,"Maryland",14896 -2010-01-01,"Maryland",17375 -2010-02-01,"Maryland",14765 -2010-03-01,"Maryland",8894 -2010-04-01,"Maryland",3761 -2010-05-01,"Maryland",2493 -2010-06-01,"Maryland",1766 -2010-07-01,"Maryland",1649 -2010-08-01,"Maryland",1363 -2010-09-01,"Maryland",1789 -2010-10-01,"Maryland",3245 -2010-11-01,"Maryland",8222 -2010-12-01,"Maryland",18508 -2011-01-01,"Maryland",18769 -2011-02-01,"Maryland",12455 -2011-03-01,"Maryland",10165 -2011-04-01,"Maryland",4990 -2011-05-01,"Maryland",2574 -2011-06-01,"Maryland",1658 -2011-07-01,"Maryland",1536 -2011-08-01,"Maryland",1496 -2011-09-01,"Maryland",1925 -2011-10-01,"Maryland",4130 -2011-11-01,"Maryland",6928 -2011-12-01,"Maryland",11214 -2012-01-01,"Maryland",14649 -2012-02-01,"Maryland",11275 -2012-03-01,"Maryland",6248 -2012-04-01,"Maryland",4500 -2012-05-01,"Maryland",2024 -2012-06-01,"Maryland",1878 -2012-07-01,"Maryland",1529 -2012-08-01,"Maryland",1610 -2012-09-01,"Maryland",1612 -2012-10-01,"Maryland",3817 -2012-11-01,"Maryland",9985 -2012-12-01,"Maryland",11218 -2013-01-01,"Maryland",14893 -2013-02-01,"Maryland",14270 -2013-03-01,"Maryland",12749 -2013-04-01,"Maryland",5232 -2013-05-01,"Maryland",3007 -2013-06-01,"Maryland",1859 -2013-07-01,"Maryland",1739 -2013-08-01,"Maryland",1660 -2013-09-01,"Maryland",1537 -2013-10-01,"Maryland",3433 -2013-11-01,"Maryland",9776 -2013-12-01,"Maryland",13185 -2014-01-01,"Maryland",19505 -2014-02-01,"Maryland",15335 -2014-03-01,"Maryland",13669 -2014-04-01,"Maryland",5748 -2014-05-01,"Maryland",3588 -2014-06-01,"Maryland",1724 -2014-07-01,"Maryland",1599 -2014-08-01,"Maryland",1502 -2014-09-01,"Maryland",1788 -2014-10-01,"Maryland",3078 -2014-11-01,"Maryland",9749 -2014-12-01,"Maryland",13257 -2015-01-01,"Maryland",18521 -2015-02-01,"Maryland",19141 -2015-03-01,"Maryland",12967 -2015-04-01,"Maryland",4975 -2015-05-01,"Maryland",2200 -2015-06-01,"Maryland",1783 -2015-07-01,"Maryland",1657 -2015-08-01,"Maryland",1580 -2015-09-01,"Maryland",1542 -2015-10-01,"Maryland",3881 -2015-11-01,"Maryland",6235 -2015-12-01,"Maryland",8376 -2016-01-01,"Maryland",16770 -2016-02-01,"Maryland",13589 -2016-03-01,"Maryland",7549 -2016-04-01,"Maryland",5420 -2016-05-01,"Maryland",3341 -2016-06-01,"Maryland",1783 -2016-07-01,"Maryland",1483 -2016-08-01,"Maryland",1345 -2016-09-01,"Maryland",1425 -2016-10-01,"Maryland",2645 -2016-11-01,"Maryland",6792 -2016-12-01,"Maryland",13905 -2017-01-01,"Maryland",14139 -2017-02-01,"Maryland",11029 -2017-03-01,"Maryland",11443 -2017-04-01,"Maryland",3402 -2017-05-01,"Maryland",2993 -2017-06-01,"Maryland",1789 -2017-07-01,"Maryland",1651 -2017-08-01,"Maryland",1326 -2017-09-01,"Maryland",1732 -2017-10-01,"Maryland",2426 -2017-11-01,"Maryland",8718 -2017-12-01,"Maryland",15141 -2018-01-01,"Maryland",17761 -2018-02-01,"Maryland",11360 -2018-03-01,"Maryland",13703 -2018-04-01,"Maryland",7349 -2018-05-01,"Maryland",3410 -2018-06-01,"Maryland",1859 -2018-07-01,"Maryland",1559 -2018-08-01,"Maryland",1466 -2018-09-01,"Maryland",1521 -2018-10-01,"Maryland",3593 -2018-11-01,"Maryland",10100 -2018-12-01,"Maryland",12717 -2019-01-01,"Maryland",16821 -2019-02-01,"Maryland",14653 -2019-03-01,"Maryland",11782 -2019-04-01,"Maryland",3796 -2019-05-01,"Maryland",2928 -2019-06-01,"Maryland",1749 -2019-07-01,"Maryland",1572 -2019-08-01,"Maryland",1488 -2019-09-01,"Maryland",1544 -2019-10-01,"Maryland",2203 -2019-11-01,"Maryland",9799 -2019-12-01,"Maryland",13510 -2020-01-01,"Maryland",15280 -2020-02-01,"Maryland",12064 -2020-03-01,"Maryland",8223 -2020-04-01,"Maryland",5885 -2020-05-01,"Maryland",3863 -2020-06-01,"Maryland",2027 -2020-07-01,"Maryland",1871 -2020-08-01,"Maryland",1358 -2020-09-01,"Maryland",1771 -2020-10-01,"Maryland",3248 -2020-11-01,"Maryland",6661 -2020-12-01,"Maryland",12125 -2021-01-01,"Maryland",15743 -2021-02-01,"Maryland",14714 -1989-01-01,"Massachusetts",17593 -1989-02-01,"Massachusetts",16517 -1989-03-01,"Massachusetts",16940 -1989-04-01,"Massachusetts",11858 -1989-05-01,"Massachusetts",7552 -1989-06-01,"Massachusetts",4053 -1989-07-01,"Massachusetts",3006 -1989-08-01,"Massachusetts",2683 -1989-09-01,"Massachusetts",2901 -1989-10-01,"Massachusetts",4839 -1989-11-01,"Massachusetts",7495 -1989-12-01,"Massachusetts",16224 -1990-01-01,"Massachusetts",20092 -1990-02-01,"Massachusetts",15721 -1990-03-01,"Massachusetts",14900 -1990-04-01,"Massachusetts",11633 -1990-05-01,"Massachusetts",7192 -1990-06-01,"Massachusetts",4891 -1990-07-01,"Massachusetts",3161 -1990-08-01,"Massachusetts",2635 -1990-09-01,"Massachusetts",2990 -1990-10-01,"Massachusetts",3726 -1990-11-01,"Massachusetts",7713 -1990-12-01,"Massachusetts",12157 -1991-01-01,"Massachusetts",16305 -1991-02-01,"Massachusetts",16628 -1991-03-01,"Massachusetts",14673 -1991-04-01,"Massachusetts",11075 -1991-05-01,"Massachusetts",6325 -1991-06-01,"Massachusetts",3761 -1991-07-01,"Massachusetts",3014 -1991-08-01,"Massachusetts",2723 -1991-09-01,"Massachusetts",3036 -1991-10-01,"Massachusetts",4492 -1991-11-01,"Massachusetts",8070 -1991-12-01,"Massachusetts",12854 -1992-01-01,"Massachusetts",17599 -1992-02-01,"Massachusetts",19067 -1992-03-01,"Massachusetts",16712 -1992-04-01,"Massachusetts",13384 -1992-05-01,"Massachusetts",8475 -1992-06-01,"Massachusetts",4822 -1992-07-01,"Massachusetts",3453 -1992-08-01,"Massachusetts",3203 -1992-09-01,"Massachusetts",3369 -1992-10-01,"Massachusetts",5342 -1992-11-01,"Massachusetts",10056 -1992-12-01,"Massachusetts",14189 -1993-01-01,"Massachusetts",18222 -1993-02-01,"Massachusetts",19597 -1993-03-01,"Massachusetts",18273 -1993-04-01,"Massachusetts",13178 -1993-05-01,"Massachusetts",7263 -1993-06-01,"Massachusetts",4464 -1993-07-01,"Massachusetts",3499 -1993-08-01,"Massachusetts",3084 -1993-09-01,"Massachusetts",3280 -1993-10-01,"Massachusetts",5839 -1993-11-01,"Massachusetts",10175 -1993-12-01,"Massachusetts",14355 -1994-01-01,"Massachusetts",21444 -1994-02-01,"Massachusetts",22427 -1994-03-01,"Massachusetts",18027 -1994-04-01,"Massachusetts",11263 -1994-05-01,"Massachusetts",6381 -1994-06-01,"Massachusetts",4370 -1994-07-01,"Massachusetts",3053 -1994-08-01,"Massachusetts",2786 -1994-09-01,"Massachusetts",3105 -1994-10-01,"Massachusetts",5164 -1994-11-01,"Massachusetts",8010 -1994-12-01,"Massachusetts",13611 -1995-01-01,"Massachusetts",15914 -1995-02-01,"Massachusetts",17398 -1995-03-01,"Massachusetts",15059 -1995-04-01,"Massachusetts",10980 -1995-05-01,"Massachusetts",6194 -1995-06-01,"Massachusetts",3606 -1995-07-01,"Massachusetts",2642 -1995-08-01,"Massachusetts",2358 -1995-09-01,"Massachusetts",2664 -1995-10-01,"Massachusetts",3958 -1995-11-01,"Massachusetts",9090 -1995-12-01,"Massachusetts",15933 -1996-01-01,"Massachusetts",19459 -1996-02-01,"Massachusetts",18453 -1996-03-01,"Massachusetts",16533 -1996-04-01,"Massachusetts",11564 -1996-05-01,"Massachusetts",7569 -1996-06-01,"Massachusetts",3930 -1996-07-01,"Massachusetts",2814 -1996-08-01,"Massachusetts",2463 -1996-09-01,"Massachusetts",2677 -1996-10-01,"Massachusetts",5012 -1996-11-01,"Massachusetts",9943 -1996-12-01,"Massachusetts",13947 -1997-01-01,"Massachusetts",17449 -1997-02-01,"Massachusetts",17795 -1997-03-01,"Massachusetts",15138 -1997-04-01,"Massachusetts",12131 -1997-05-01,"Massachusetts",6937 -1997-06-01,"Massachusetts",4374 -1997-07-01,"Massachusetts",2834 -1997-08-01,"Massachusetts",2484 -1997-09-01,"Massachusetts",2557 -1997-10-01,"Massachusetts",4784 -1997-11-01,"Massachusetts",10149 -1997-12-01,"Massachusetts",15677 -1998-01-01,"Massachusetts",17087 -1998-02-01,"Massachusetts",16570 -1998-03-01,"Massachusetts",14826 -1998-04-01,"Massachusetts",10361 -1998-05-01,"Massachusetts",5550 -1998-06-01,"Massachusetts",3827 -1998-07-01,"Massachusetts",2848 -1998-08-01,"Massachusetts",2370 -1998-09-01,"Massachusetts",2588 -1998-10-01,"Massachusetts",4301 -1998-11-01,"Massachusetts",9367 -1998-12-01,"Massachusetts",12366 -1999-01-01,"Massachusetts",9396 -1999-02-01,"Massachusetts",13197 -1999-03-01,"Massachusetts",17960 -1999-04-01,"Massachusetts",11224 -1999-05-01,"Massachusetts",6524 -1999-06-01,"Massachusetts",4134 -1999-07-01,"Massachusetts",3666 -1999-08-01,"Massachusetts",3327 -1999-09-01,"Massachusetts",3789 -1999-10-01,"Massachusetts",5925 -1999-11-01,"Massachusetts",9964 -1999-12-01,"Massachusetts",16601 -2000-01-01,"Massachusetts",18757 -2000-02-01,"Massachusetts",21076 -2000-03-01,"Massachusetts",13785 -2000-04-01,"Massachusetts",10203 -2000-05-01,"Massachusetts",7051 -2000-06-01,"Massachusetts",4065 -2000-07-01,"Massachusetts",2883 -2000-08-01,"Massachusetts",2588 -2000-09-01,"Massachusetts",2942 -2000-10-01,"Massachusetts",4856 -2000-11-01,"Massachusetts",9077 -2000-12-01,"Massachusetts",16794 -2001-01-01,"Massachusetts",20821 -2001-02-01,"Massachusetts",18263 -2001-03-01,"Massachusetts",17713 -2001-04-01,"Massachusetts",11658 -2001-05-01,"Massachusetts",5817 -2001-06-01,"Massachusetts",3545 -2001-07-01,"Massachusetts",2713 -2001-08-01,"Massachusetts",2435 -2001-09-01,"Massachusetts",2852 -2001-10-01,"Massachusetts",4510 -2001-11-01,"Massachusetts",7038 -2001-12-01,"Massachusetts",9272 -2002-01-01,"Massachusetts",17287 -2002-02-01,"Massachusetts",16335 -2002-03-01,"Massachusetts",14632 -2002-04-01,"Massachusetts",9942 -2002-05-01,"Massachusetts",6851 -2002-06-01,"Massachusetts",4517 -2002-07-01,"Massachusetts",3153 -2002-08-01,"Massachusetts",2276 -2002-09-01,"Massachusetts",2658 -2002-10-01,"Massachusetts",4162 -2002-11-01,"Massachusetts",10063 -2002-12-01,"Massachusetts",17403 -2003-01-01,"Massachusetts",21091 -2003-02-01,"Massachusetts",23023 -2003-03-01,"Massachusetts",19192 -2003-04-01,"Massachusetts",12916 -2003-05-01,"Massachusetts",7690 -2003-06-01,"Massachusetts",4489 -2003-07-01,"Massachusetts",2889 -2003-08-01,"Massachusetts",2576 -2003-09-01,"Massachusetts",2838 -2003-10-01,"Massachusetts",4614 -2003-11-01,"Massachusetts",8796 -2003-12-01,"Massachusetts",15766 -2004-01-01,"Massachusetts",20963 -2004-02-01,"Massachusetts",21217 -2004-03-01,"Massachusetts",15172 -2004-04-01,"Massachusetts",11321 -2004-05-01,"Massachusetts",5472 -2004-06-01,"Massachusetts",3434 -2004-07-01,"Massachusetts",3659 -2004-08-01,"Massachusetts",2928 -2004-09-01,"Massachusetts",2583 -2004-10-01,"Massachusetts",4066 -2004-11-01,"Massachusetts",8241 -2004-12-01,"Massachusetts",13721 -2005-01-01,"Massachusetts",19096 -2005-02-01,"Massachusetts",19689 -2005-03-01,"Massachusetts",20684 -2005-04-01,"Massachusetts",12144 -2005-05-01,"Massachusetts",6600 -2005-06-01,"Massachusetts",4446 -2005-07-01,"Massachusetts",2727 -2005-08-01,"Massachusetts",2304 -2005-09-01,"Massachusetts",2471 -2005-10-01,"Massachusetts",3800 -2005-11-01,"Massachusetts",7764 -2005-12-01,"Massachusetts",16893 -2006-01-01,"Massachusetts",18408 -2006-02-01,"Massachusetts",16580 -2006-03-01,"Massachusetts",17143 -2006-04-01,"Massachusetts",10286 -2006-05-01,"Massachusetts",6223 -2006-06-01,"Massachusetts",3985 -2006-07-01,"Massachusetts",2713 -2006-08-01,"Massachusetts",2348 -2006-09-01,"Massachusetts",2770 -2006-10-01,"Massachusetts",4103 -2006-11-01,"Massachusetts",7594 -2006-12-01,"Massachusetts",11729 -2007-01-01,"Massachusetts",16069 -2007-02-01,"Massachusetts",21522 -2007-03-01,"Massachusetts",18808 -2007-04-01,"Massachusetts",12742 -2007-05-01,"Massachusetts",6402 -2007-06-01,"Massachusetts",3560 -2007-07-01,"Massachusetts",2687 -2007-08-01,"Massachusetts",2402 -2007-09-01,"Massachusetts",2812 -2007-10-01,"Massachusetts",3192 -2007-11-01,"Massachusetts",8150 -2007-12-01,"Massachusetts",16852 -2008-01-01,"Massachusetts",20962 -2008-02-01,"Massachusetts",19456 -2008-03-01,"Massachusetts",19292 -2008-04-01,"Massachusetts",11319 -2008-05-01,"Massachusetts",6740 -2008-06-01,"Massachusetts",4495 -2008-07-01,"Massachusetts",3783 -2008-08-01,"Massachusetts",3624 -2008-09-01,"Massachusetts",3928 -2008-10-01,"Massachusetts",6799 -2008-11-01,"Massachusetts",13322 -2008-12-01,"Massachusetts",19096 -2009-01-01,"Massachusetts",25207 -2009-02-01,"Massachusetts",20199 -2009-03-01,"Massachusetts",17631 -2009-04-01,"Massachusetts",10316 -2009-05-01,"Massachusetts",5418 -2009-06-01,"Massachusetts",4054 -2009-07-01,"Massachusetts",3981 -2009-08-01,"Massachusetts",3415 -2009-09-01,"Massachusetts",4340 -2009-10-01,"Massachusetts",7864 -2009-11-01,"Massachusetts",10592 -2009-12-01,"Massachusetts",19866 -2010-01-01,"Massachusetts",23141 -2010-02-01,"Massachusetts",18681 -2010-03-01,"Massachusetts",14525 -2010-04-01,"Massachusetts",8651 -2010-05-01,"Massachusetts",5520 -2010-06-01,"Massachusetts",3974 -2010-07-01,"Massachusetts",3339 -2010-08-01,"Massachusetts",4341 -2010-09-01,"Massachusetts",3935 -2010-10-01,"Massachusetts",7299 -2010-11-01,"Massachusetts",12081 -2010-12-01,"Massachusetts",20117 -2011-01-01,"Massachusetts",25365 -2011-02-01,"Massachusetts",20443 -2011-03-01,"Massachusetts",16902 -2011-04-01,"Massachusetts",9742 -2011-05-01,"Massachusetts",6921 -2011-06-01,"Massachusetts",3390 -2011-07-01,"Massachusetts",2697 -2011-08-01,"Massachusetts",3887 -2011-09-01,"Massachusetts",3815 -2011-10-01,"Massachusetts",7218 -2011-11-01,"Massachusetts",12005 -2011-12-01,"Massachusetts",16831 -2012-01-01,"Massachusetts",21138 -2012-02-01,"Massachusetts",17095 -2012-03-01,"Massachusetts",12560 -2012-04-01,"Massachusetts",8046 -2012-05-01,"Massachusetts",5328 -2012-06-01,"Massachusetts",4273 -2012-07-01,"Massachusetts",2939 -2012-08-01,"Massachusetts",3514 -2012-09-01,"Massachusetts",3920 -2012-10-01,"Massachusetts",5453 -2012-11-01,"Massachusetts",13159 -2012-12-01,"Massachusetts",17885 -2013-01-01,"Massachusetts",19571 -2013-02-01,"Massachusetts",17864 -2013-03-01,"Massachusetts",15557 -2013-04-01,"Massachusetts",9386 -2013-05-01,"Massachusetts",4864 -2013-06-01,"Massachusetts",3256 -2013-07-01,"Massachusetts",2897 -2013-08-01,"Massachusetts",3093 -2013-09-01,"Massachusetts",3700 -2013-10-01,"Massachusetts",5421 -2013-11-01,"Massachusetts",12413 -2013-12-01,"Massachusetts",18845 -2014-01-01,"Massachusetts",24156 -2014-02-01,"Massachusetts",19678 -2014-03-01,"Massachusetts",19893 -2014-04-01,"Massachusetts",12741 -2014-05-01,"Massachusetts",6548 -2014-06-01,"Massachusetts",2815 -2014-07-01,"Massachusetts",2618 -2014-08-01,"Massachusetts",2411 -2014-09-01,"Massachusetts",2927 -2014-10-01,"Massachusetts",4933 -2014-11-01,"Massachusetts",11289 -2014-12-01,"Massachusetts",16894 -2015-01-01,"Massachusetts",26072 -2015-02-01,"Massachusetts",26240 -2015-03-01,"Massachusetts",20986 -2015-04-01,"Massachusetts",10124 -2015-05-01,"Massachusetts",4364 -2015-06-01,"Massachusetts",3330 -2015-07-01,"Massachusetts",2641 -2015-08-01,"Massachusetts",2463 -2015-09-01,"Massachusetts",2486 -2015-10-01,"Massachusetts",5833 -2015-11-01,"Massachusetts",9466 -2015-12-01,"Massachusetts",12658 -2016-01-01,"Massachusetts",19399 -2016-02-01,"Massachusetts",18068 -2016-03-01,"Massachusetts",13735 -2016-04-01,"Massachusetts",10051 -2016-05-01,"Massachusetts",5617 -2016-06-01,"Massachusetts",2802 -2016-07-01,"Massachusetts",2440 -2016-08-01,"Massachusetts",2281 -2016-09-01,"Massachusetts",2440 -2016-10-01,"Massachusetts",5427 -2016-11-01,"Massachusetts",10623 -2016-12-01,"Massachusetts",19200 -2017-01-01,"Massachusetts",19515 -2017-02-01,"Massachusetts",16531 -2017-03-01,"Massachusetts",20222 -2017-04-01,"Massachusetts",8696 -2017-05-01,"Massachusetts",5950 -2017-06-01,"Massachusetts",3299 -2017-07-01,"Massachusetts",2608 -2017-08-01,"Massachusetts",2497 -2017-09-01,"Massachusetts",2694 -2017-10-01,"Massachusetts",4115 -2017-11-01,"Massachusetts",12151 -2017-12-01,"Massachusetts",22904 -2018-01-01,"Massachusetts",25559 -2018-02-01,"Massachusetts",21076 -2018-03-01,"Massachusetts",18654 -2018-04-01,"Massachusetts",12333 -2018-05-01,"Massachusetts",4488 -2018-06-01,"Massachusetts",2835 -2018-07-01,"Massachusetts",2486 -2018-08-01,"Massachusetts",2364 -2018-09-01,"Massachusetts",2645 -2018-10-01,"Massachusetts",5128 -2018-11-01,"Massachusetts",13875 -2018-12-01,"Massachusetts",18853 -2019-01-01,"Massachusetts",25429 -2019-02-01,"Massachusetts",20379 -2019-03-01,"Massachusetts",19439 -2019-04-01,"Massachusetts",9992 -2019-05-01,"Massachusetts",6378 -2019-06-01,"Massachusetts",3222 -2019-07-01,"Massachusetts",2700 -2019-08-01,"Massachusetts",2600 -2019-09-01,"Massachusetts",2902 -2019-10-01,"Massachusetts",4918 -2019-11-01,"Massachusetts",14991 -2019-12-01,"Massachusetts",22166 -2020-01-01,"Massachusetts",19335 -2020-02-01,"Massachusetts",17420 -2020-03-01,"Massachusetts",14352 -2020-04-01,"Massachusetts",11752 -2020-05-01,"Massachusetts",5903 -2020-06-01,"Massachusetts",3193 -2020-07-01,"Massachusetts",2812 -2020-08-01,"Massachusetts",2046 -2020-09-01,"Massachusetts",2942 -2020-10-01,"Massachusetts",NA -2020-11-01,"Massachusetts",NA -2020-12-01,"Massachusetts",18904 -2021-01-01,"Massachusetts",21513 -2021-02-01,"Massachusetts",19834 -1989-01-01,"Michigan",55928 -1989-02-01,"Michigan",52459 -1989-03-01,"Michigan",51163 -1989-04-01,"Michigan",34224 -1989-05-01,"Michigan",20415 -1989-06-01,"Michigan",9803 -1989-07-01,"Michigan",8052 -1989-08-01,"Michigan",7957 -1989-09-01,"Michigan",9726 -1989-10-01,"Michigan",19994 -1989-11-01,"Michigan",31679 -1989-12-01,"Michigan",60266 -1990-01-01,"Michigan",55931 -1990-02-01,"Michigan",48164 -1990-03-01,"Michigan",43437 -1990-04-01,"Michigan",31606 -1990-05-01,"Michigan",19275 -1990-06-01,"Michigan",11093 -1990-07-01,"Michigan",7779 -1990-08-01,"Michigan",8253 -1990-09-01,"Michigan",9336 -1990-10-01,"Michigan",17937 -1990-11-01,"Michigan",29517 -1990-12-01,"Michigan",45069 -1991-01-01,"Michigan",61349 -1991-02-01,"Michigan",49685 -1991-03-01,"Michigan",43914 -1991-04-01,"Michigan",29081 -1991-05-01,"Michigan",18655 -1991-06-01,"Michigan",10014 -1991-07-01,"Michigan",7555 -1991-08-01,"Michigan",6594 -1991-09-01,"Michigan",9297 -1991-10-01,"Michigan",18491 -1991-11-01,"Michigan",33409 -1991-12-01,"Michigan",49160 -1992-01-01,"Michigan",56513 -1992-02-01,"Michigan",52668 -1992-03-01,"Michigan",46640 -1992-04-01,"Michigan",36421 -1992-05-01,"Michigan",21545 -1992-06-01,"Michigan",11927 -1992-07-01,"Michigan",8773 -1992-08-01,"Michigan",8655 -1992-09-01,"Michigan",9435 -1992-10-01,"Michigan",20856 -1992-11-01,"Michigan",34278 -1992-12-01,"Michigan",50376 -1993-01-01,"Michigan",59618 -1993-02-01,"Michigan",57465 -1993-03-01,"Michigan",54627 -1993-04-01,"Michigan",35109 -1993-05-01,"Michigan",18269 -1993-06-01,"Michigan",11464 -1993-07-01,"Michigan",8589 -1993-08-01,"Michigan",7199 -1993-09-01,"Michigan",10020 -1993-10-01,"Michigan",22363 -1993-11-01,"Michigan",34389 -1993-12-01,"Michigan",50690 -1994-01-01,"Michigan",72958 -1994-02-01,"Michigan",65427 -1994-03-01,"Michigan",50524 -1994-04-01,"Michigan",33363 -1994-05-01,"Michigan",20215 -1994-06-01,"Michigan",9904 -1994-07-01,"Michigan",7353 -1994-08-01,"Michigan",7536 -1994-09-01,"Michigan",8524 -1994-10-01,"Michigan",16721 -1994-11-01,"Michigan",27344 -1994-12-01,"Michigan",44719 -1995-01-01,"Michigan",58499 -1995-02-01,"Michigan",60358 -1995-03-01,"Michigan",49545 -1995-04-01,"Michigan",36085 -1995-05-01,"Michigan",21477 -1995-06-01,"Michigan",10470 -1995-07-01,"Michigan",7955 -1995-08-01,"Michigan",7101 -1995-09-01,"Michigan",9901 -1995-10-01,"Michigan",17636 -1995-11-01,"Michigan",39707 -1995-12-01,"Michigan",61290 -1996-01-01,"Michigan",68480 -1996-02-01,"Michigan",63693 -1996-03-01,"Michigan",57657 -1996-04-01,"Michigan",40288 -1996-05-01,"Michigan",24645 -1996-06-01,"Michigan",10619 -1996-07-01,"Michigan",7657 -1996-08-01,"Michigan",7300 -1996-09-01,"Michigan",9068 -1996-10-01,"Michigan",18528 -1996-11-01,"Michigan",38862 -1996-12-01,"Michigan",52724 -1997-01-01,"Michigan",66951 -1997-02-01,"Michigan",57608 -1997-03-01,"Michigan",51355 -1997-04-01,"Michigan",38297 -1997-05-01,"Michigan",26982 -1997-06-01,"Michigan",12017 -1997-07-01,"Michigan",4751 -1997-08-01,"Michigan",7269 -1997-09-01,"Michigan",8775 -1997-10-01,"Michigan",17853 -1997-11-01,"Michigan",37942 -1997-12-01,"Michigan",50037 -1998-01-01,"Michigan",57092 -1998-02-01,"Michigan",49366 -1998-03-01,"Michigan",47775 -1998-04-01,"Michigan",31983 -1998-05-01,"Michigan",13991 -1998-06-01,"Michigan",9848 -1998-07-01,"Michigan",7330 -1998-08-01,"Michigan",6782 -1998-09-01,"Michigan",7580 -1998-10-01,"Michigan",15956 -1998-11-01,"Michigan",29671 -1998-12-01,"Michigan",42328 -1999-01-01,"Michigan",69010 -1999-02-01,"Michigan",52327 -1999-03-01,"Michigan",54085 -1999-04-01,"Michigan",31738 -1999-05-01,"Michigan",16163 -1999-06-01,"Michigan",10455 -1999-07-01,"Michigan",6936 -1999-08-01,"Michigan",6458 -1999-09-01,"Michigan",7868 -1999-10-01,"Michigan",18416 -1999-11-01,"Michigan",29784 -1999-12-01,"Michigan",47495 -2000-01-01,"Michigan",64539 -2000-02-01,"Michigan",59948 -2000-03-01,"Michigan",42901 -2000-04-01,"Michigan",33067 -2000-05-01,"Michigan",18600 -2000-06-01,"Michigan",9777 -2000-07-01,"Michigan",7823 -2000-08-01,"Michigan",7550 -2000-09-01,"Michigan",9292 -2000-10-01,"Michigan",17617 -2000-11-01,"Michigan",31816 -2000-12-01,"Michigan",64797 -2001-01-01,"Michigan",66886 -2001-02-01,"Michigan",54280 -2001-03-01,"Michigan",54473 -2001-04-01,"Michigan",32694 -2001-05-01,"Michigan",16156 -2001-06-01,"Michigan",10447 -2001-07-01,"Michigan",6923 -2001-08-01,"Michigan",6180 -2001-09-01,"Michigan",8490 -2001-10-01,"Michigan",18699 -2001-11-01,"Michigan",27514 -2001-12-01,"Michigan",40939 -2002-01-01,"Michigan",59444 -2002-02-01,"Michigan",50184 -2002-03-01,"Michigan",50343 -2002-04-01,"Michigan",36212 -2002-05-01,"Michigan",23393 -2002-06-01,"Michigan",13856 -2002-07-01,"Michigan",7567 -2002-08-01,"Michigan",6485 -2002-09-01,"Michigan",7310 -2002-10-01,"Michigan",17940 -2002-11-01,"Michigan",38275 -2002-12-01,"Michigan",56756 -2003-01-01,"Michigan",70376 -2003-02-01,"Michigan",67374 -2003-03-01,"Michigan",55754 -2003-04-01,"Michigan",34678 -2003-05-01,"Michigan",20830 -2003-06-01,"Michigan",11291 -2003-07-01,"Michigan",7729 -2003-08-01,"Michigan",7057 -2003-09-01,"Michigan",8075 -2003-10-01,"Michigan",19963 -2003-11-01,"Michigan",31949 -2003-12-01,"Michigan",50491 -2004-01-01,"Michigan",70165 -2004-02-01,"Michigan",63171 -2004-03-01,"Michigan",46957 -2004-04-01,"Michigan",32678 -2004-05-01,"Michigan",18162 -2004-06-01,"Michigan",9343 -2004-07-01,"Michigan",7772 -2004-08-01,"Michigan",7060 -2004-09-01,"Michigan",7971 -2004-10-01,"Michigan",15721 -2004-11-01,"Michigan",30501 -2004-12-01,"Michigan",52522 -2005-01-01,"Michigan",66635 -2005-02-01,"Michigan",58551 -2005-03-01,"Michigan",54522 -2005-04-01,"Michigan",30243 -2005-05-01,"Michigan",19529 -2005-06-01,"Michigan",9668 -2005-07-01,"Michigan",7108 -2005-08-01,"Michigan",5970 -2005-09-01,"Michigan",6898 -2005-10-01,"Michigan",14127 -2005-11-01,"Michigan",29292 -2005-12-01,"Michigan",56082 -2006-01-01,"Michigan",51990 -2006-02-01,"Michigan",51632 -2006-03-01,"Michigan",46363 -2006-04-01,"Michigan",27486 -2006-05-01,"Michigan",14390 -2006-06-01,"Michigan",8889 -2006-07-01,"Michigan",6662 -2006-08-01,"Michigan",6257 -2006-09-01,"Michigan",7843 -2006-10-01,"Michigan",19647 -2006-11-01,"Michigan",32900 -2006-12-01,"Michigan",41710 -2007-01-01,"Michigan",51772 -2007-02-01,"Michigan",64856 -2007-03-01,"Michigan",47952 -2007-04-01,"Michigan",32434 -2007-05-01,"Michigan",15696 -2007-06-01,"Michigan",7684 -2007-07-01,"Michigan",6415 -2007-08-01,"Michigan",6279 -2007-09-01,"Michigan",6865 -2007-10-01,"Michigan",10581 -2007-11-01,"Michigan",27578 -2007-12-01,"Michigan",50319 -2008-01-01,"Michigan",56751 -2008-02-01,"Michigan",56030 -2008-03-01,"Michigan",51767 -2008-04-01,"Michigan",32680 -2008-05-01,"Michigan",16677 -2008-06-01,"Michigan",9577 -2008-07-01,"Michigan",7490 -2008-08-01,"Michigan",6365 -2008-09-01,"Michigan",6396 -2008-10-01,"Michigan",14428 -2008-11-01,"Michigan",30041 -2008-12-01,"Michigan",53551 -2009-01-01,"Michigan",67147 -2009-02-01,"Michigan",53424 -2009-03-01,"Michigan",45372 -2009-04-01,"Michigan",29950 -2009-05-01,"Michigan",15398 -2009-06-01,"Michigan",8813 -2009-07-01,"Michigan",6395 -2009-08-01,"Michigan",6348 -2009-09-01,"Michigan",6718 -2009-10-01,"Michigan",16419 -2009-11-01,"Michigan",25405 -2009-12-01,"Michigan",45722 -2010-01-01,"Michigan",57797 -2010-02-01,"Michigan",49276 -2010-03-01,"Michigan",36603 -2010-04-01,"Michigan",24548 -2010-05-01,"Michigan",13503 -2010-06-01,"Michigan",7890 -2010-07-01,"Michigan",5929 -2010-08-01,"Michigan",5357 -2010-09-01,"Michigan",6567 -2010-10-01,"Michigan",13582 -2010-11-01,"Michigan",30199 -2010-12-01,"Michigan",53080 -2011-01-01,"Michigan",63766 -2011-02-01,"Michigan",51109 -2011-03-01,"Michigan",45157 -2011-04-01,"Michigan",26117 -2011-05-01,"Michigan",12035 -2011-06-01,"Michigan",6386 -2011-07-01,"Michigan",6224 -2011-08-01,"Michigan",5729 -2011-09-01,"Michigan",8240 -2011-10-01,"Michigan",18283 -2011-11-01,"Michigan",29709 -2011-12-01,"Michigan",45249 -2012-01-01,"Michigan",51875 -2012-02-01,"Michigan",45216 -2012-03-01,"Michigan",24049 -2012-04-01,"Michigan",21633 -2012-05-01,"Michigan",7775 -2012-06-01,"Michigan",6477 -2012-07-01,"Michigan",5523 -2012-08-01,"Michigan",5790 -2012-09-01,"Michigan",8127 -2012-10-01,"Michigan",20470 -2012-11-01,"Michigan",35206 -2012-12-01,"Michigan",44638 -2013-01-01,"Michigan",55189 -2013-02-01,"Michigan",51657 -2013-03-01,"Michigan",47035 -2013-04-01,"Michigan",26582 -2013-05-01,"Michigan",10185 -2013-06-01,"Michigan",6684 -2013-07-01,"Michigan",6208 -2013-08-01,"Michigan",6008 -2013-09-01,"Michigan",8262 -2013-10-01,"Michigan",18237 -2013-11-01,"Michigan",41106 -2013-12-01,"Michigan",57059 -2014-01-01,"Michigan",71831 -2014-02-01,"Michigan",58850 -2014-03-01,"Michigan",51772 -2014-04-01,"Michigan",23659 -2014-05-01,"Michigan",11987 -2014-06-01,"Michigan",6373 -2014-07-01,"Michigan",6334 -2014-08-01,"Michigan",5627 -2014-09-01,"Michigan",8409 -2014-10-01,"Michigan",19597 -2014-11-01,"Michigan",44020 -2014-12-01,"Michigan",46254 -2015-01-01,"Michigan",64293 -2015-02-01,"Michigan",68402 -2015-03-01,"Michigan",42465 -2015-04-01,"Michigan",22109 -2015-05-01,"Michigan",10476 -2015-06-01,"Michigan",6616 -2015-07-01,"Michigan",5572 -2015-08-01,"Michigan",5872 -2015-09-01,"Michigan",6006 -2015-10-01,"Michigan",16422 -2015-11-01,"Michigan",28390 -2015-12-01,"Michigan",35475 -2016-01-01,"Michigan",55192 -2016-02-01,"Michigan",47638 -2016-03-01,"Michigan",33133 -2016-04-01,"Michigan",27259 -2016-05-01,"Michigan",12191 -2016-06-01,"Michigan",5586 -2016-07-01,"Michigan",5405 -2016-08-01,"Michigan",4898 -2016-09-01,"Michigan",6654 -2016-10-01,"Michigan",14925 -2016-11-01,"Michigan",27488 -2016-12-01,"Michigan",53783 -2017-01-01,"Michigan",52023 -2017-02-01,"Michigan",38430 -2017-03-01,"Michigan",42975 -2017-04-01,"Michigan",18831 -2017-05-01,"Michigan",13699 -2017-06-01,"Michigan",6056 -2017-07-01,"Michigan",5123 -2017-08-01,"Michigan",5408 -2017-09-01,"Michigan",7041 -2017-10-01,"Michigan",14512 -2017-11-01,"Michigan",37035 -2017-12-01,"Michigan",58024 -2018-01-01,"Michigan",60620 -2018-02-01,"Michigan",44146 -2018-03-01,"Michigan",45563 -2018-04-01,"Michigan",33126 -2018-05-01,"Michigan",8804 -2018-06-01,"Michigan",5594 -2018-07-01,"Michigan",5128 -2018-08-01,"Michigan",5879 -2018-09-01,"Michigan",6018 -2018-10-01,"Michigan",21590 -2018-11-01,"Michigan",42283 -2018-12-01,"Michigan",48210 -2019-01-01,"Michigan",64401 -2019-02-01,"Michigan",51520 -2019-03-01,"Michigan",46660 -2019-04-01,"Michigan",24615 -2019-05-01,"Michigan",13513 -2019-06-01,"Michigan",7075 -2019-07-01,"Michigan",5554 -2019-08-01,"Michigan",5128 -2019-09-01,"Michigan",5674 -2019-10-01,"Michigan",18571 -2019-11-01,"Michigan",43458 -2019-12-01,"Michigan",46084 -2020-01-01,"Michigan",51756 -2020-02-01,"Michigan",51991 -2020-03-01,"Michigan",36788 -2020-04-01,"Michigan",26901 -2020-05-01,"Michigan",16489 -2020-06-01,"Michigan",6492 -2020-07-01,"Michigan",5546 -2020-08-01,"Michigan",5472 -2020-09-01,"Michigan",8318 -2020-10-01,"Michigan",22202 -2020-11-01,"Michigan",30281 -2020-12-01,"Michigan",50083 -2021-01-01,"Michigan",56202 -2021-02-01,"Michigan",57939 -1989-01-01,"Minnesota",18926 -1989-02-01,"Minnesota",19064 -1989-03-01,"Minnesota",16511 -1989-04-01,"Minnesota",9806 -1989-05-01,"Minnesota",5523 -1989-06-01,"Minnesota",3121 -1989-07-01,"Minnesota",2388 -1989-08-01,"Minnesota",2269 -1989-09-01,"Minnesota",2682 -1989-10-01,"Minnesota",5430 -1989-11-01,"Minnesota",11067 -1989-12-01,"Minnesota",20120 -1990-01-01,"Minnesota",18979 -1990-02-01,"Minnesota",16064 -1990-03-01,"Minnesota",13558 -1990-04-01,"Minnesota",9519 -1990-05-01,"Minnesota",5540 -1990-06-01,"Minnesota",3296 -1990-07-01,"Minnesota",2372 -1990-08-01,"Minnesota",2281 -1990-09-01,"Minnesota",2621 -1990-10-01,"Minnesota",5611 -1990-11-01,"Minnesota",9947 -1990-12-01,"Minnesota",17178 -1991-01-01,"Minnesota",22882 -1991-02-01,"Minnesota",16115 -1991-03-01,"Minnesota",14249 -1991-04-01,"Minnesota",8351 -1991-05-01,"Minnesota",5656 -1991-06-01,"Minnesota",2804 -1991-07-01,"Minnesota",2303 -1991-08-01,"Minnesota",2268 -1991-09-01,"Minnesota",3236 -1991-10-01,"Minnesota",6654 -1991-11-01,"Minnesota",14101 -1991-12-01,"Minnesota",18529 -1992-01-01,"Minnesota",18895 -1992-02-01,"Minnesota",15904 -1992-03-01,"Minnesota",14009 -1992-04-01,"Minnesota",10391 -1992-05-01,"Minnesota",5136 -1992-06-01,"Minnesota",3130 -1992-07-01,"Minnesota",2702 -1992-08-01,"Minnesota",2525 -1992-09-01,"Minnesota",3021 -1992-10-01,"Minnesota",6449 -1992-11-01,"Minnesota",12857 -1992-12-01,"Minnesota",18543 -1993-01-01,"Minnesota",22379 -1993-02-01,"Minnesota",18681 -1993-03-01,"Minnesota",16369 -1993-04-01,"Minnesota",10780 -1993-05-01,"Minnesota",5399 -1993-06-01,"Minnesota",3576 -1993-07-01,"Minnesota",2574 -1993-08-01,"Minnesota",2397 -1993-09-01,"Minnesota",3548 -1993-10-01,"Minnesota",7022 -1993-11-01,"Minnesota",12508 -1993-12-01,"Minnesota",18169 -1994-01-01,"Minnesota",26272 -1994-02-01,"Minnesota",22129 -1994-03-01,"Minnesota",14653 -1994-04-01,"Minnesota",10392 -1994-05-01,"Minnesota",5067 -1994-06-01,"Minnesota",2849 -1994-07-01,"Minnesota",2477 -1994-08-01,"Minnesota",2470 -1994-09-01,"Minnesota",2798 -1994-10-01,"Minnesota",5431 -1994-11-01,"Minnesota",10383 -1994-12-01,"Minnesota",17328 -1995-01-01,"Minnesota",21158 -1995-02-01,"Minnesota",19905 -1995-03-01,"Minnesota",15592 -1995-04-01,"Minnesota",11393 -1995-05-01,"Minnesota",6033 -1995-06-01,"Minnesota",3405 -1995-07-01,"Minnesota",2584 -1995-08-01,"Minnesota",2395 -1995-09-01,"Minnesota",3271 -1995-10-01,"Minnesota",6969 -1995-11-01,"Minnesota",14915 -1995-12-01,"Minnesota",21117 -1996-01-01,"Minnesota",25430 -1996-02-01,"Minnesota",22665 -1996-03-01,"Minnesota",19126 -1996-04-01,"Minnesota",12254 -1996-05-01,"Minnesota",7335 -1996-06-01,"Minnesota",3708 -1996-07-01,"Minnesota",2583 -1996-08-01,"Minnesota",2433 -1996-09-01,"Minnesota",2968 -1996-10-01,"Minnesota",6705 -1996-11-01,"Minnesota",14959 -1996-12-01,"Minnesota",22152 -1997-01-01,"Minnesota",25497 -1997-02-01,"Minnesota",19703 -1997-03-01,"Minnesota",16686 -1997-04-01,"Minnesota",11143 -1997-05-01,"Minnesota",6467 -1997-06-01,"Minnesota",3180 -1997-07-01,"Minnesota",2385 -1997-08-01,"Minnesota",2234 -1997-09-01,"Minnesota",2542 -1997-10-01,"Minnesota",6504 -1997-11-01,"Minnesota",15098 -1997-12-01,"Minnesota",17435 -1998-01-01,"Minnesota",21618 -1998-02-01,"Minnesota",15031 -1998-03-01,"Minnesota",16348 -1998-04-01,"Minnesota",7122 -1998-05-01,"Minnesota",3735 -1998-06-01,"Minnesota",2765 -1998-07-01,"Minnesota",2540 -1998-08-01,"Minnesota",2461 -1998-09-01,"Minnesota",2678 -1998-10-01,"Minnesota",5319 -1998-11-01,"Minnesota",12193 -1998-12-01,"Minnesota",18639 -1999-01-01,"Minnesota",25407 -1999-02-01,"Minnesota",17084 -1999-03-01,"Minnesota",15312 -1999-04-01,"Minnesota",8559 -1999-05-01,"Minnesota",4966 -1999-06-01,"Minnesota",3103 -1999-07-01,"Minnesota",2243 -1999-08-01,"Minnesota",2522 -1999-09-01,"Minnesota",3367 -1999-10-01,"Minnesota",7112 -1999-11-01,"Minnesota",10624 -1999-12-01,"Minnesota",18639 -2000-01-01,"Minnesota",24500 -2000-02-01,"Minnesota",17866 -2000-03-01,"Minnesota",12764 -2000-04-01,"Minnesota",9668 -2000-05-01,"Minnesota",4924 -2000-06-01,"Minnesota",3358 -2000-07-01,"Minnesota",2866 -2000-08-01,"Minnesota",2762 -2000-09-01,"Minnesota",3260 -2000-10-01,"Minnesota",6156 -2000-11-01,"Minnesota",14875 -2000-12-01,"Minnesota",26803 -2001-01-01,"Minnesota",23155 -2001-02-01,"Minnesota",22623 -2001-03-01,"Minnesota",17575 -2001-04-01,"Minnesota",9542 -2001-05-01,"Minnesota",4821 -2001-06-01,"Minnesota",3477 -2001-07-01,"Minnesota",2723 -2001-08-01,"Minnesota",2643 -2001-09-01,"Minnesota",3217 -2001-10-01,"Minnesota",7587 -2001-11-01,"Minnesota",9708 -2001-12-01,"Minnesota",17820 -2002-01-01,"Minnesota",20708 -2002-02-01,"Minnesota",16921 -2002-03-01,"Minnesota",19626 -2002-04-01,"Minnesota",10958 -2002-05-01,"Minnesota",7887 -2002-06-01,"Minnesota",3497 -2002-07-01,"Minnesota",3018 -2002-08-01,"Minnesota",2575 -2002-09-01,"Minnesota",3336 -2002-10-01,"Minnesota",10215 -2002-11-01,"Minnesota",16032 -2002-12-01,"Minnesota",20438 -2003-01-01,"Minnesota",25795 -2003-02-01,"Minnesota",23767 -2003-03-01,"Minnesota",18073 -2003-04-01,"Minnesota",10118 -2003-05-01,"Minnesota",5537 -2003-06-01,"Minnesota",2815 -2003-07-01,"Minnesota",2699 -2003-08-01,"Minnesota",2695 -2003-09-01,"Minnesota",3313 -2003-10-01,"Minnesota",6986 -2003-11-01,"Minnesota",15373 -2003-12-01,"Minnesota",20784 -2004-01-01,"Minnesota",27631 -2004-02-01,"Minnesota",20837 -2004-03-01,"Minnesota",15830 -2004-04-01,"Minnesota",8997 -2004-05-01,"Minnesota",5673 -2004-06-01,"Minnesota",3492 -2004-07-01,"Minnesota",2637 -2004-08-01,"Minnesota",3253 -2004-09-01,"Minnesota",2960 -2004-10-01,"Minnesota",7283 -2004-11-01,"Minnesota",12461 -2004-12-01,"Minnesota",21840 -2005-01-01,"Minnesota",26485 -2005-02-01,"Minnesota",18580 -2005-03-01,"Minnesota",17278 -2005-04-01,"Minnesota",7279 -2005-05-01,"Minnesota",6603 -2005-06-01,"Minnesota",3556 -2005-07-01,"Minnesota",2751 -2005-08-01,"Minnesota",2630 -2005-09-01,"Minnesota",2641 -2005-10-01,"Minnesota",6376 -2005-11-01,"Minnesota",12888 -2005-12-01,"Minnesota",21557 -2006-01-01,"Minnesota",18305 -2006-02-01,"Minnesota",20393 -2006-03-01,"Minnesota",15676 -2006-04-01,"Minnesota",6969 -2006-05-01,"Minnesota",4679 -2006-06-01,"Minnesota",3211 -2006-07-01,"Minnesota",2625 -2006-08-01,"Minnesota",2546 -2006-09-01,"Minnesota",3536 -2006-10-01,"Minnesota",8795 -2006-11-01,"Minnesota",13068 -2006-12-01,"Minnesota",17350 -2007-01-01,"Minnesota",22886 -2007-02-01,"Minnesota",24101 -2007-03-01,"Minnesota",14935 -2007-04-01,"Minnesota",10351 -2007-05-01,"Minnesota",4046 -2007-06-01,"Minnesota",2911 -2007-07-01,"Minnesota",2658 -2007-08-01,"Minnesota",2568 -2007-09-01,"Minnesota",2663 -2007-10-01,"Minnesota",5355 -2007-11-01,"Minnesota",13600 -2007-12-01,"Minnesota",22768 -2008-01-01,"Minnesota",25841 -2008-02-01,"Minnesota",23511 -2008-03-01,"Minnesota",18795 -2008-04-01,"Minnesota",10938 -2008-05-01,"Minnesota",6032 -2008-06-01,"Minnesota",3345 -2008-07-01,"Minnesota",2672 -2008-08-01,"Minnesota",2434 -2008-09-01,"Minnesota",2855 -2008-10-01,"Minnesota",5998 -2008-11-01,"Minnesota",12941 -2008-12-01,"Minnesota",24129 -2009-01-01,"Minnesota",29111 -2009-02-01,"Minnesota",20206 -2009-03-01,"Minnesota",16878 -2009-04-01,"Minnesota",9622 -2009-05-01,"Minnesota",4619 -2009-06-01,"Minnesota",3488 -2009-07-01,"Minnesota",2744 -2009-08-01,"Minnesota",2670 -2009-09-01,"Minnesota",2813 -2009-10-01,"Minnesota",8941 -2009-11-01,"Minnesota",10590 -2009-12-01,"Minnesota",21636 -2010-01-01,"Minnesota",25820 -2010-02-01,"Minnesota",19730 -2010-03-01,"Minnesota",12767 -2010-04-01,"Minnesota",5984 -2010-05-01,"Minnesota",4939 -2010-06-01,"Minnesota",3059 -2010-07-01,"Minnesota",2369 -2010-08-01,"Minnesota",2486 -2010-09-01,"Minnesota",3090 -2010-10-01,"Minnesota",5714 -2010-11-01,"Minnesota",13543 -2010-12-01,"Minnesota",23492 -2011-01-01,"Minnesota",26129 -2011-02-01,"Minnesota",19842 -2011-03-01,"Minnesota",17244 -2011-04-01,"Minnesota",8740 -2011-05-01,"Minnesota",5321 -2011-06-01,"Minnesota",2916 -2011-07-01,"Minnesota",2604 -2011-08-01,"Minnesota",2338 -2011-09-01,"Minnesota",3079 -2011-10-01,"Minnesota",5803 -2011-11-01,"Minnesota",12840 -2011-12-01,"Minnesota",18305 -2012-01-01,"Minnesota",20987 -2012-02-01,"Minnesota",17319 -2012-03-01,"Minnesota",8604 -2012-04-01,"Minnesota",6899 -2012-05-01,"Minnesota",3467 -2012-06-01,"Minnesota",2274 -2012-07-01,"Minnesota",2492 -2012-08-01,"Minnesota",2357 -2012-09-01,"Minnesota",2852 -2012-10-01,"Minnesota",8616 -2012-11-01,"Minnesota",13009 -2012-12-01,"Minnesota",20227 -2013-01-01,"Minnesota",25249 -2013-02-01,"Minnesota",20673 -2013-03-01,"Minnesota",18115 -2013-04-01,"Minnesota",12133 -2013-05-01,"Minnesota",4633 -2013-06-01,"Minnesota",3114 -2013-07-01,"Minnesota",2177 -2013-08-01,"Minnesota",2214 -2013-09-01,"Minnesota",2612 -2013-10-01,"Minnesota",6744 -2013-11-01,"Minnesota",15228 -2013-12-01,"Minnesota",27007 -2014-01-01,"Minnesota",29694 -2014-02-01,"Minnesota",25539 -2014-03-01,"Minnesota",19467 -2014-04-01,"Minnesota",10881 -2014-05-01,"Minnesota",5522 -2014-06-01,"Minnesota",2241 -2014-07-01,"Minnesota",2068 -2014-08-01,"Minnesota",2329 -2014-09-01,"Minnesota",2982 -2014-10-01,"Minnesota",7186 -2014-11-01,"Minnesota",17807 -2014-12-01,"Minnesota",20929 -2015-01-01,"Minnesota",23468 -2015-02-01,"Minnesota",23784 -2015-03-01,"Minnesota",15011 -2015-04-01,"Minnesota",8178 -2015-05-01,"Minnesota",3958 -2015-06-01,"Minnesota",2435 -2015-07-01,"Minnesota",2292 -2015-08-01,"Minnesota",2553 -2015-09-01,"Minnesota",2331 -2015-10-01,"Minnesota",5140 -2015-11-01,"Minnesota",10603 -2015-12-01,"Minnesota",17835 -2016-01-01,"Minnesota",23813 -2016-02-01,"Minnesota",19714 -2016-03-01,"Minnesota",12540 -2016-04-01,"Minnesota",9873 -2016-05-01,"Minnesota",4253 -2016-06-01,"Minnesota",2944 -2016-07-01,"Minnesota",2306 -2016-08-01,"Minnesota",2497 -2016-09-01,"Minnesota",2599 -2016-10-01,"Minnesota",5555 -2016-11-01,"Minnesota",9848 -2016-12-01,"Minnesota",21656 -2017-01-01,"Minnesota",23423 -2017-02-01,"Minnesota",16507 -2017-03-01,"Minnesota",16657 -2017-04-01,"Minnesota",8308 -2017-05-01,"Minnesota",5044 -2017-06-01,"Minnesota",2997 -2017-07-01,"Minnesota",2276 -2017-08-01,"Minnesota",2510 -2017-09-01,"Minnesota",2556 -2017-10-01,"Minnesota",6526 -2017-11-01,"Minnesota",15032 -2017-12-01,"Minnesota",22061 -2018-01-01,"Minnesota",26409 -2018-02-01,"Minnesota",22845 -2018-03-01,"Minnesota",17014 -2018-04-01,"Minnesota",13487 -2018-05-01,"Minnesota",4376 -2018-06-01,"Minnesota",2934 -2018-07-01,"Minnesota",2194 -2018-08-01,"Minnesota",2457 -2018-09-01,"Minnesota",2826 -2018-10-01,"Minnesota",9051 -2018-11-01,"Minnesota",17398 -2018-12-01,"Minnesota",20409 -2019-01-01,"Minnesota",26464 -2019-02-01,"Minnesota",24708 -2019-03-01,"Minnesota",18683 -2019-04-01,"Minnesota",10081 -2019-05-01,"Minnesota",6455 -2019-06-01,"Minnesota",3111 -2019-07-01,"Minnesota",2234 -2019-08-01,"Minnesota",2285 -2019-09-01,"Minnesota",2679 -2019-10-01,"Minnesota",8285 -2019-11-01,"Minnesota",17333 -2019-12-01,"Minnesota",22261 -2020-01-01,"Minnesota",NA -2020-02-01,"Minnesota",NA -2020-03-01,"Minnesota",15291 -2020-04-01,"Minnesota",9816 -2020-05-01,"Minnesota",5198 -2020-06-01,"Minnesota",NA -2020-07-01,"Minnesota",2590 -2020-08-01,"Minnesota",2700 -2020-09-01,"Minnesota",3428 -2020-10-01,"Minnesota",9621 -2020-11-01,"Minnesota",14167 -2020-12-01,"Minnesota",20224 -2021-01-01,"Minnesota",22732 -2021-02-01,"Minnesota",24088 -1989-01-01,"Mississippi",3995 -1989-02-01,"Mississippi",4030 -1989-03-01,"Mississippi",4077 -1989-04-01,"Mississippi",2195 -1989-05-01,"Mississippi",1282 -1989-06-01,"Mississippi",929 -1989-07-01,"Mississippi",864 -1989-08-01,"Mississippi",829 -1989-09-01,"Mississippi",894 -1989-10-01,"Mississippi",1043 -1989-11-01,"Mississippi",1933 -1989-12-01,"Mississippi",4241 -1990-01-01,"Mississippi",6060 -1990-02-01,"Mississippi",3307 -1990-03-01,"Mississippi",2793 -1990-04-01,"Mississippi",2205 -1990-05-01,"Mississippi",1266 -1990-06-01,"Mississippi",922 -1990-07-01,"Mississippi",850 -1990-08-01,"Mississippi",809 -1990-09-01,"Mississippi",798 -1990-10-01,"Mississippi",948 -1990-11-01,"Mississippi",2070 -1990-12-01,"Mississippi",3018 -1991-01-01,"Mississippi",4628 -1991-02-01,"Mississippi",4348 -1991-03-01,"Mississippi",3390 -1991-04-01,"Mississippi",1903 -1991-05-01,"Mississippi",1117 -1991-06-01,"Mississippi",882 -1991-07-01,"Mississippi",846 -1991-08-01,"Mississippi",811 -1991-09-01,"Mississippi",824 -1991-10-01,"Mississippi",1024 -1991-11-01,"Mississippi",2357 -1991-12-01,"Mississippi",3625 -1992-01-01,"Mississippi",4724 -1992-02-01,"Mississippi",4551 -1992-03-01,"Mississippi",2850 -1992-04-01,"Mississippi",2440 -1992-05-01,"Mississippi",1287 -1992-06-01,"Mississippi",963 -1992-07-01,"Mississippi",896 -1992-08-01,"Mississippi",817 -1992-09-01,"Mississippi",856 -1992-10-01,"Mississippi",979 -1992-11-01,"Mississippi",1927 -1992-12-01,"Mississippi",4198 -1993-01-01,"Mississippi",4474 -1993-02-01,"Mississippi",4388 -1993-03-01,"Mississippi",4396 -1993-04-01,"Mississippi",2961 -1993-05-01,"Mississippi",1465 -1993-06-01,"Mississippi",947 -1993-07-01,"Mississippi",830 -1993-08-01,"Mississippi",788 -1993-09-01,"Mississippi",815 -1993-10-01,"Mississippi",933 -1993-11-01,"Mississippi",2518 -1993-12-01,"Mississippi",3832 -1994-01-01,"Mississippi",6163 -1994-02-01,"Mississippi",5192 -1994-03-01,"Mississippi",3481 -1994-04-01,"Mississippi",2254 -1994-05-01,"Mississippi",1088 -1994-06-01,"Mississippi",883 -1994-07-01,"Mississippi",845 -1994-08-01,"Mississippi",784 -1994-09-01,"Mississippi",834 -1994-10-01,"Mississippi",921 -1994-11-01,"Mississippi",1542 -1994-12-01,"Mississippi",3098 -1995-01-01,"Mississippi",5027 -1995-02-01,"Mississippi",4997 -1995-03-01,"Mississippi",3800 -1995-04-01,"Mississippi",1770 -1995-05-01,"Mississippi",1178 -1995-06-01,"Mississippi",892 -1995-07-01,"Mississippi",841 -1995-08-01,"Mississippi",811 -1995-09-01,"Mississippi",476 -1995-10-01,"Mississippi",631 -1995-11-01,"Mississippi",2326 -1995-12-01,"Mississippi",4212 -1996-01-01,"Mississippi",6151 -1996-02-01,"Mississippi",5900 -1996-03-01,"Mississippi",3851 -1996-04-01,"Mississippi",3174 -1996-05-01,"Mississippi",1366 -1996-06-01,"Mississippi",839 -1996-07-01,"Mississippi",816 -1996-08-01,"Mississippi",771 -1996-09-01,"Mississippi",804 -1996-10-01,"Mississippi",929 -1996-11-01,"Mississippi",1880 -1996-12-01,"Mississippi",3676 -1997-01-01,"Mississippi",5082 -1997-02-01,"Mississippi",4999 -1997-03-01,"Mississippi",3058 -1997-04-01,"Mississippi",1916 -1997-05-01,"Mississippi",1472 -1997-06-01,"Mississippi",926 -1997-07-01,"Mississippi",815 -1997-08-01,"Mississippi",761 -1997-09-01,"Mississippi",778 -1997-10-01,"Mississippi",902 -1997-11-01,"Mississippi",2561 -1997-12-01,"Mississippi",4355 -1998-01-01,"Mississippi",5066 -1998-02-01,"Mississippi",4516 -1998-03-01,"Mississippi",3861 -1998-04-01,"Mississippi",2283 -1998-05-01,"Mississippi",1253 -1998-06-01,"Mississippi",812 -1998-07-01,"Mississippi",729 -1998-08-01,"Mississippi",718 -1998-09-01,"Mississippi",725 -1998-10-01,"Mississippi",805 -1998-11-01,"Mississippi",1524 -1998-12-01,"Mississippi",2556 -1999-01-01,"Mississippi",5727 -1999-02-01,"Mississippi",3162 -1999-03-01,"Mississippi",3458 -1999-04-01,"Mississippi",2264 -1999-05-01,"Mississippi",1040 -1999-06-01,"Mississippi",798 -1999-07-01,"Mississippi",772 -1999-08-01,"Mississippi",705 -1999-09-01,"Mississippi",733 -1999-10-01,"Mississippi",903 -1999-11-01,"Mississippi",1685 -1999-12-01,"Mississippi",3314 -2000-01-01,"Mississippi",4956 -2000-02-01,"Mississippi",5185 -2000-03-01,"Mississippi",2585 -2000-04-01,"Mississippi",1885 -2000-05-01,"Mississippi",1195 -2000-06-01,"Mississippi",832 -2000-07-01,"Mississippi",764 -2000-08-01,"Mississippi",703 -2000-09-01,"Mississippi",717 -2000-10-01,"Mississippi",1078 -2000-11-01,"Mississippi",1749 -2000-12-01,"Mississippi",5383 -2001-01-01,"Mississippi",7897 -2001-02-01,"Mississippi",5056 -2001-03-01,"Mississippi",3262 -2001-04-01,"Mississippi",1993 -2001-05-01,"Mississippi",1156 -2001-06-01,"Mississippi",783 -2001-07-01,"Mississippi",744 -2001-08-01,"Mississippi",656 -2001-09-01,"Mississippi",722 -2001-10-01,"Mississippi",921 -2001-11-01,"Mississippi",1904 -2001-12-01,"Mississippi",2828 -2002-01-01,"Mississippi",5411 -2002-02-01,"Mississippi",4732 -2002-03-01,"Mississippi",4097 -2002-04-01,"Mississippi",2176 -2002-05-01,"Mississippi",832 -2002-06-01,"Mississippi",738 -2002-07-01,"Mississippi",721 -2002-08-01,"Mississippi",686 -2002-09-01,"Mississippi",687 -2002-10-01,"Mississippi",773 -2002-11-01,"Mississippi",1527 -2002-12-01,"Mississippi",4076 -2003-01-01,"Mississippi",5577 -2003-02-01,"Mississippi",5740 -2003-03-01,"Mississippi",3853 -2003-04-01,"Mississippi",1830 -2003-05-01,"Mississippi",1050 -2003-06-01,"Mississippi",773 -2003-07-01,"Mississippi",703 -2003-08-01,"Mississippi",687 -2003-09-01,"Mississippi",677 -2003-10-01,"Mississippi",849 -2003-11-01,"Mississippi",1216 -2003-12-01,"Mississippi",3635 -2004-01-01,"Mississippi",5124 -2004-02-01,"Mississippi",4868 -2004-03-01,"Mississippi",3338 -2004-04-01,"Mississippi",1335 -2004-05-01,"Mississippi",934 -2004-06-01,"Mississippi",679 -2004-07-01,"Mississippi",675 -2004-08-01,"Mississippi",644 -2004-09-01,"Mississippi",641 -2004-10-01,"Mississippi",771 -2004-11-01,"Mississippi",1458 -2004-12-01,"Mississippi",3669 -2005-01-01,"Mississippi",4666 -2005-02-01,"Mississippi",3932 -2005-03-01,"Mississippi",3030 -2005-04-01,"Mississippi",1608 -2005-05-01,"Mississippi",1092 -2005-06-01,"Mississippi",769 -2005-07-01,"Mississippi",716 -2005-08-01,"Mississippi",665 -2005-09-01,"Mississippi",630 -2005-10-01,"Mississippi",984 -2005-11-01,"Mississippi",1944 -2005-12-01,"Mississippi",4429 -2006-01-01,"Mississippi",3932 -2006-02-01,"Mississippi",3676 -2006-03-01,"Mississippi",2886 -2006-04-01,"Mississippi",1514 -2006-05-01,"Mississippi",411 -2006-06-01,"Mississippi",577 -2006-07-01,"Mississippi",579 -2006-08-01,"Mississippi",572 -2006-09-01,"Mississippi",619 -2006-10-01,"Mississippi",764 -2006-11-01,"Mississippi",2414 -2006-12-01,"Mississippi",3536 -2007-01-01,"Mississippi",5002 -2007-02-01,"Mississippi",3850 -2007-03-01,"Mississippi",2793 -2007-04-01,"Mississippi",1168 -2007-05-01,"Mississippi",1057 -2007-06-01,"Mississippi",409 -2007-07-01,"Mississippi",860 -2007-08-01,"Mississippi",603 -2007-09-01,"Mississippi",594 -2007-10-01,"Mississippi",912 -2007-11-01,"Mississippi",1666 -2007-12-01,"Mississippi",3313 -2008-01-01,"Mississippi",4899 -2008-02-01,"Mississippi",3823 -2008-03-01,"Mississippi",2910 -2008-04-01,"Mississippi",1251 -2008-05-01,"Mississippi",919 -2008-06-01,"Mississippi",663 -2008-07-01,"Mississippi",655 -2008-08-01,"Mississippi",577 -2008-09-01,"Mississippi",614 -2008-10-01,"Mississippi",818 -2008-11-01,"Mississippi",2201 -2008-12-01,"Mississippi",4514 -2009-01-01,"Mississippi",4599 -2009-02-01,"Mississippi",3827 -2009-03-01,"Mississippi",2798 -2009-04-01,"Mississippi",1207 -2009-05-01,"Mississippi",942 -2009-06-01,"Mississippi",652 -2009-07-01,"Mississippi",625 -2009-08-01,"Mississippi",619 -2009-09-01,"Mississippi",590 -2009-10-01,"Mississippi",1369 -2009-11-01,"Mississippi",1687 -2009-12-01,"Mississippi",4517 -2010-01-01,"Mississippi",5983 -2010-02-01,"Mississippi",5426 -2010-03-01,"Mississippi",4148 -2010-04-01,"Mississippi",1353 -2010-05-01,"Mississippi",657 -2010-06-01,"Mississippi",639 -2010-07-01,"Mississippi",584 -2010-08-01,"Mississippi",542 -2010-09-01,"Mississippi",580 -2010-10-01,"Mississippi",774 -2010-11-01,"Mississippi",1763 -2010-12-01,"Mississippi",4702 -2011-01-01,"Mississippi",5770 -2011-02-01,"Mississippi",4201 -2011-03-01,"Mississippi",3012 -2011-04-01,"Mississippi",1063 -2011-05-01,"Mississippi",858 -2011-06-01,"Mississippi",643 -2011-07-01,"Mississippi",571 -2011-08-01,"Mississippi",568 -2011-09-01,"Mississippi",612 -2011-10-01,"Mississippi",1202 -2011-11-01,"Mississippi",1873 -2011-12-01,"Mississippi",3930 -2012-01-01,"Mississippi",3902 -2012-02-01,"Mississippi",3013 -2012-03-01,"Mississippi",1760 -2012-04-01,"Mississippi",952 -2012-05-01,"Mississippi",648 -2012-06-01,"Mississippi",563 -2012-07-01,"Mississippi",580 -2012-08-01,"Mississippi",530 -2012-09-01,"Mississippi",572 -2012-10-01,"Mississippi",963 -2012-11-01,"Mississippi",2460 -2012-12-01,"Mississippi",3626 -2013-01-01,"Mississippi",4505 -2013-02-01,"Mississippi",3304 -2013-03-01,"Mississippi",3549 -2013-04-01,"Mississippi",1788 -2013-05-01,"Mississippi",1236 -2013-06-01,"Mississippi",694 -2013-07-01,"Mississippi",597 -2013-08-01,"Mississippi",562 -2013-09-01,"Mississippi",568 -2013-10-01,"Mississippi",978 -2013-11-01,"Mississippi",2275 -2013-12-01,"Mississippi",5130 -2014-01-01,"Mississippi",6617 -2014-02-01,"Mississippi",5290 -2014-03-01,"Mississippi",3748 -2014-04-01,"Mississippi",1823 -2014-05-01,"Mississippi",877 -2014-06-01,"Mississippi",627 -2014-07-01,"Mississippi",606 -2014-08-01,"Mississippi",589 -2014-09-01,"Mississippi",558 -2014-10-01,"Mississippi",987 -2014-11-01,"Mississippi",2811 -2014-12-01,"Mississippi",3730 -2015-01-01,"Mississippi",5799 -2015-02-01,"Mississippi",4909 -2015-03-01,"Mississippi",3058 -2015-04-01,"Mississippi",1060 -2015-05-01,"Mississippi",718 -2015-06-01,"Mississippi",652 -2015-07-01,"Mississippi",620 -2015-08-01,"Mississippi",589 -2015-09-01,"Mississippi",728 -2015-10-01,"Mississippi",833 -2015-11-01,"Mississippi",1833 -2015-12-01,"Mississippi",2448 -2016-01-01,"Mississippi",5167 -2016-02-01,"Mississippi",3312 -2016-03-01,"Mississippi",1733 -2016-04-01,"Mississippi",943 -2016-05-01,"Mississippi",817 -2016-06-01,"Mississippi",740 -2016-07-01,"Mississippi",595 -2016-08-01,"Mississippi",553 -2016-09-01,"Mississippi",572 -2016-10-01,"Mississippi",625 -2016-11-01,"Mississippi",1350 -2016-12-01,"Mississippi",3778 -2017-01-01,"Mississippi",3417 -2017-02-01,"Mississippi",2110 -2017-03-01,"Mississippi",2153 -2017-04-01,"Mississippi",807 -2017-05-01,"Mississippi",728 -2017-06-01,"Mississippi",526 -2017-07-01,"Mississippi",518 -2017-08-01,"Mississippi",553 -2017-09-01,"Mississippi",622 -2017-10-01,"Mississippi",882 -2017-11-01,"Mississippi",1988 -2017-12-01,"Mississippi",4142 -2018-01-01,"Mississippi",7110 -2018-02-01,"Mississippi",2622 -2018-03-01,"Mississippi",2270 -2018-04-01,"Mississippi",1558 -2018-05-01,"Mississippi",672 -2018-06-01,"Mississippi",493 -2018-07-01,"Mississippi",505 -2018-08-01,"Mississippi",552 -2018-09-01,"Mississippi",495 -2018-10-01,"Mississippi",931 -2018-11-01,"Mississippi",3082 -2018-12-01,"Mississippi",4137 -2019-01-01,"Mississippi",4764 -2019-02-01,"Mississippi",2901 -2019-03-01,"Mississippi",2991 -2019-04-01,"Mississippi",1174 -2019-05-01,"Mississippi",589 -2019-06-01,"Mississippi",479 -2019-07-01,"Mississippi",520 -2019-08-01,"Mississippi",527 -2019-09-01,"Mississippi",423 -2019-10-01,"Mississippi",796 -2019-11-01,"Mississippi",3231 -2019-12-01,"Mississippi",3723 -2020-01-01,"Mississippi",4078 -2020-02-01,"Mississippi",3769 -2020-03-01,"Mississippi",2179 -2020-04-01,"Mississippi",NA -2020-05-01,"Mississippi",738 -2020-06-01,"Mississippi",666 -2020-07-01,"Mississippi",607 -2020-08-01,"Mississippi",582 -2020-09-01,"Mississippi",589 -2020-10-01,"Mississippi",902 -2020-11-01,"Mississippi",2126 -2020-12-01,"Mississippi",4267 -2021-01-01,"Mississippi",NA -2021-02-01,"Mississippi",NA -1989-01-01,"Missouri",21508 -1989-02-01,"Missouri",22300 -1989-03-01,"Missouri",19809 -1989-04-01,"Missouri",11192 -1989-05-01,"Missouri",5793 -1989-06-01,"Missouri",3615 -1989-07-01,"Missouri",3008 -1989-08-01,"Missouri",2732 -1989-09-01,"Missouri",3111 -1989-10-01,"Missouri",5047 -1989-11-01,"Missouri",9441 -1989-12-01,"Missouri",21588 -1990-01-01,"Missouri",24889 -1990-02-01,"Missouri",16807 -1990-03-01,"Missouri",14381 -1990-04-01,"Missouri",11838 -1990-05-01,"Missouri",6241 -1990-06-01,"Missouri",3783 -1990-07-01,"Missouri",2946 -1990-08-01,"Missouri",2713 -1990-09-01,"Missouri",2876 -1990-10-01,"Missouri",4467 -1990-11-01,"Missouri",9332 -1990-12-01,"Missouri",15677 -1991-01-01,"Missouri",27020 -1991-02-01,"Missouri",20480 -1991-03-01,"Missouri",15212 -1991-04-01,"Missouri",7969 -1991-05-01,"Missouri",4851 -1991-06-01,"Missouri",3001 -1991-07-01,"Missouri",2751 -1991-08-01,"Missouri",2597 -1991-09-01,"Missouri",2764 -1991-10-01,"Missouri",4433 -1991-11-01,"Missouri",12195 -1991-12-01,"Missouri",17407 -1992-01-01,"Missouri",20977 -1992-02-01,"Missouri",18433 -1992-03-01,"Missouri",13548 -1992-04-01,"Missouri",11044 -1992-05-01,"Missouri",5858 -1992-06-01,"Missouri",3838 -1992-07-01,"Missouri",2931 -1992-08-01,"Missouri",2681 -1992-09-01,"Missouri",2942 -1992-10-01,"Missouri",4259 -1992-11-01,"Missouri",10344 -1992-12-01,"Missouri",19801 -1993-01-01,"Missouri",24602 -1993-02-01,"Missouri",21375 -1993-03-01,"Missouri",21306 -1993-04-01,"Missouri",13404 -1993-05-01,"Missouri",6009 -1993-06-01,"Missouri",3676 -1993-07-01,"Missouri",2871 -1993-08-01,"Missouri",2487 -1993-09-01,"Missouri",3096 -1993-10-01,"Missouri",4774 -1993-11-01,"Missouri",11929 -1993-12-01,"Missouri",18644 -1994-01-01,"Missouri",26174 -1994-02-01,"Missouri",29359 -1994-03-01,"Missouri",15303 -1994-04-01,"Missouri",10085 -1994-05-01,"Missouri",5393 -1994-06-01,"Missouri",3074 -1994-07-01,"Missouri",2651 -1994-08-01,"Missouri",2303 -1994-09-01,"Missouri",2743 -1994-10-01,"Missouri",3415 -1994-11-01,"Missouri",7339 -1994-12-01,"Missouri",14727 -1995-01-01,"Missouri",23360 -1995-02-01,"Missouri",22443 -1995-03-01,"Missouri",16036 -1995-04-01,"Missouri",9399 -1995-05-01,"Missouri",6828 -1995-06-01,"Missouri",3659 -1995-07-01,"Missouri",2869 -1995-08-01,"Missouri",2394 -1995-09-01,"Missouri",2842 -1995-10-01,"Missouri",4259 -1995-11-01,"Missouri",11325 -1995-12-01,"Missouri",19696 -1996-01-01,"Missouri",26654 -1996-02-01,"Missouri",24498 -1996-03-01,"Missouri",18852 -1996-04-01,"Missouri",13133 -1996-05-01,"Missouri",6252 -1996-06-01,"Missouri",3404 -1996-07-01,"Missouri",2688 -1996-08-01,"Missouri",2448 -1996-09-01,"Missouri",2749 -1996-10-01,"Missouri",4321 -1996-11-01,"Missouri",11687 -1996-12-01,"Missouri",20539 -1997-01-01,"Missouri",25327 -1997-02-01,"Missouri",23276 -1997-03-01,"Missouri",15385 -1997-04-01,"Missouri",10993 -1997-05-01,"Missouri",6460 -1997-06-01,"Missouri",3660 -1997-07-01,"Missouri",2714 -1997-08-01,"Missouri",2401 -1997-09-01,"Missouri",2623 -1997-10-01,"Missouri",3656 -1997-11-01,"Missouri",12090 -1997-12-01,"Missouri",19041 -1998-01-01,"Missouri",22476 -1998-02-01,"Missouri",19049 -1998-03-01,"Missouri",17840 -1998-04-01,"Missouri",10481 -1998-05-01,"Missouri",5002 -1998-06-01,"Missouri",3141 -1998-07-01,"Missouri",2643 -1998-08-01,"Missouri",2192 -1998-09-01,"Missouri",2627 -1998-10-01,"Missouri",3355 -1998-11-01,"Missouri",8099 -1998-12-01,"Missouri",13873 -1999-01-01,"Missouri",26223 -1999-02-01,"Missouri",17979 -1999-03-01,"Missouri",16594 -1999-04-01,"Missouri",9675 -1999-05-01,"Missouri",5311 -1999-06-01,"Missouri",3084 -1999-07-01,"Missouri",2552 -1999-08-01,"Missouri",2292 -1999-09-01,"Missouri",2743 -1999-10-01,"Missouri",4174 -1999-11-01,"Missouri",6882 -1999-12-01,"Missouri",14535 -2000-01-01,"Missouri",21401 -2000-02-01,"Missouri",20789 -2000-03-01,"Missouri",12977 -2000-04-01,"Missouri",9281 -2000-05-01,"Missouri",4869 -2000-06-01,"Missouri",2050 -2000-07-01,"Missouri",2429 -2000-08-01,"Missouri",2480 -2000-09-01,"Missouri",2508 -2000-10-01,"Missouri",4023 -2000-11-01,"Missouri",9302 -2000-12-01,"Missouri",23357 -2001-01-01,"Missouri",28969 -2001-02-01,"Missouri",21345 -2001-03-01,"Missouri",18016 -2001-04-01,"Missouri",9618 -2001-05-01,"Missouri",3850 -2001-06-01,"Missouri",3051 -2001-07-01,"Missouri",2404 -2001-08-01,"Missouri",2160 -2001-09-01,"Missouri",2592 -2001-10-01,"Missouri",3942 -2001-11-01,"Missouri",6977 -2001-12-01,"Missouri",13263 -2002-01-01,"Missouri",21030 -2002-02-01,"Missouri",18219 -2002-03-01,"Missouri",16874 -2002-04-01,"Missouri",10552 -2002-05-01,"Missouri",4765 -2002-06-01,"Missouri",3129 -2002-07-01,"Missouri",2339 -2002-08-01,"Missouri",2063 -2002-09-01,"Missouri",2375 -2002-10-01,"Missouri",4063 -2002-11-01,"Missouri",10890 -2002-12-01,"Missouri",17885 -2003-01-01,"Missouri",22553 -2003-02-01,"Missouri",23439 -2003-03-01,"Missouri",17776 -2003-04-01,"Missouri",9063 -2003-05-01,"Missouri",4744 -2003-06-01,"Missouri",3122 -2003-07-01,"Missouri",2309 -2003-08-01,"Missouri",2112 -2003-09-01,"Missouri",2464 -2003-10-01,"Missouri",3542 -2003-11-01,"Missouri",7469 -2003-12-01,"Missouri",15955 -2004-01-01,"Missouri",21642 -2004-02-01,"Missouri",23215 -2004-03-01,"Missouri",15334 -2004-04-01,"Missouri",8945 -2004-05-01,"Missouri",4660 -2004-06-01,"Missouri",2880 -2004-07-01,"Missouri",2374 -2004-08-01,"Missouri",2096 -2004-09-01,"Missouri",2660 -2004-10-01,"Missouri",3419 -2004-11-01,"Missouri",6808 -2004-12-01,"Missouri",15707 -2005-01-01,"Missouri",22031 -2005-02-01,"Missouri",18953 -2005-03-01,"Missouri",14969 -2005-04-01,"Missouri",8224 -2005-05-01,"Missouri",4983 -2005-06-01,"Missouri",2597 -2005-07-01,"Missouri",2117 -2005-08-01,"Missouri",1924 -2005-09-01,"Missouri",2340 -2005-10-01,"Missouri",2963 -2005-11-01,"Missouri",7482 -2005-12-01,"Missouri",18273 -2006-01-01,"Missouri",17821 -2006-02-01,"Missouri",16459 -2006-03-01,"Missouri",13583 -2006-04-01,"Missouri",7433 -2006-05-01,"Missouri",3610 -2006-06-01,"Missouri",2651 -2006-07-01,"Missouri",1757 -2006-08-01,"Missouri",1768 -2006-09-01,"Missouri",2098 -2006-10-01,"Missouri",3669 -2006-11-01,"Missouri",9628 -2006-12-01,"Missouri",14918 -2007-01-01,"Missouri",17889 -2007-02-01,"Missouri",22993 -2007-03-01,"Missouri",14175 -2007-04-01,"Missouri",8447 -2007-05-01,"Missouri",4101 -2007-06-01,"Missouri",2251 -2007-07-01,"Missouri",2021 -2007-08-01,"Missouri",1879 -2007-09-01,"Missouri",2134 -2007-10-01,"Missouri",1996 -2007-11-01,"Missouri",7193 -2007-12-01,"Missouri",16523 -2008-01-01,"Missouri",21602 -2008-02-01,"Missouri",22507 -2008-03-01,"Missouri",17714 -2008-04-01,"Missouri",10088 -2008-05-01,"Missouri",5024 -2008-06-01,"Missouri",2488 -2008-07-01,"Missouri",2054 -2008-08-01,"Missouri",1682 -2008-09-01,"Missouri",1930 -2008-10-01,"Missouri",2577 -2008-11-01,"Missouri",7939 -2008-12-01,"Missouri",18419 -2009-01-01,"Missouri",23594 -2009-02-01,"Missouri",19746 -2009-03-01,"Missouri",13736 -2009-04-01,"Missouri",9250 -2009-05-01,"Missouri",4044 -2009-06-01,"Missouri",2270 -2009-07-01,"Missouri",1930 -2009-08-01,"Missouri",1884 -2009-09-01,"Missouri",2000 -2009-10-01,"Missouri",4317 -2009-11-01,"Missouri",7247 -2009-12-01,"Missouri",16283 -2010-01-01,"Missouri",24105 -2010-02-01,"Missouri",20194 -2010-03-01,"Missouri",14367 -2010-04-01,"Missouri",5613 -2010-05-01,"Missouri",3027 -2010-06-01,"Missouri",2261 -2010-07-01,"Missouri",1638 -2010-08-01,"Missouri",1622 -2010-09-01,"Missouri",1733 -2010-10-01,"Missouri",3042 -2010-11-01,"Missouri",8990 -2010-12-01,"Missouri",20797 -2011-01-01,"Missouri",25159 -2011-02-01,"Missouri",18440 -2011-03-01,"Missouri",12596 -2011-04-01,"Missouri",5178 -2011-05-01,"Missouri",3770 -2011-06-01,"Missouri",2073 -2011-07-01,"Missouri",1670 -2011-08-01,"Missouri",1690 -2011-09-01,"Missouri",2018 -2011-10-01,"Missouri",3981 -2011-11-01,"Missouri",9773 -2011-12-01,"Missouri",16196 -2012-01-01,"Missouri",18053 -2012-02-01,"Missouri",14422 -2012-03-01,"Missouri",5891 -2012-04-01,"Missouri",3669 -2012-05-01,"Missouri",2336 -2012-06-01,"Missouri",1894 -2012-07-01,"Missouri",1653 -2012-08-01,"Missouri",1769 -2012-09-01,"Missouri",2105 -2012-10-01,"Missouri",5132 -2012-11-01,"Missouri",10128 -2012-12-01,"Missouri",16056 -2013-01-01,"Missouri",19908 -2013-02-01,"Missouri",17095 -2013-03-01,"Missouri",16290 -2013-04-01,"Missouri",7660 -2013-05-01,"Missouri",3924 -2013-06-01,"Missouri",1956 -2013-07-01,"Missouri",2531 -2013-08-01,"Missouri",1784 -2013-09-01,"Missouri",1765 -2013-10-01,"Missouri",2676 -2013-11-01,"Missouri",10809 -2013-12-01,"Missouri",20048 -2014-01-01,"Missouri",25916 -2014-02-01,"Missouri",21410 -2014-03-01,"Missouri",16125 -2014-04-01,"Missouri",8183 -2014-05-01,"Missouri",3221 -2014-06-01,"Missouri",2007 -2014-07-01,"Missouri",1891 -2014-08-01,"Missouri",1729 -2014-09-01,"Missouri",2106 -2014-10-01,"Missouri",3865 -2014-11-01,"Missouri",12508 -2014-12-01,"Missouri",16552 -2015-01-01,"Missouri",19731 -2015-02-01,"Missouri",20729 -2015-03-01,"Missouri",15779 -2015-04-01,"Missouri",6206 -2015-05-01,"Missouri",2514 -2015-06-01,"Missouri",1807 -2015-07-01,"Missouri",1595 -2015-08-01,"Missouri",1729 -2015-09-01,"Missouri",1646 -2015-10-01,"Missouri",3096 -2015-11-01,"Missouri",7731 -2015-12-01,"Missouri",12940 -2016-01-01,"Missouri",21002 -2016-02-01,"Missouri",14459 -2016-03-01,"Missouri",8665 -2016-04-01,"Missouri",4942 -2016-05-01,"Missouri",2869 -2016-06-01,"Missouri",1919 -2016-07-01,"Missouri",1637 -2016-08-01,"Missouri",1611 -2016-09-01,"Missouri",1526 -2016-10-01,"Missouri",2507 -2016-11-01,"Missouri",6723 -2016-12-01,"Missouri",19405 -2017-01-01,"Missouri",18939 -2017-02-01,"Missouri",10986 -2017-03-01,"Missouri",10298 -2017-04-01,"Missouri",4432 -2017-05-01,"Missouri",3319 -2017-06-01,"Missouri",1904 -2017-07-01,"Missouri",1597 -2017-08-01,"Missouri",1678 -2017-09-01,"Missouri",1794 -2017-10-01,"Missouri",2311 -2017-11-01,"Missouri",10363 -2017-12-01,"Missouri",19243 -2018-01-01,"Missouri",24647 -2018-02-01,"Missouri",16776 -2018-03-01,"Missouri",13539 -2018-04-01,"Missouri",10119 -2018-05-01,"Missouri",2293 -2018-06-01,"Missouri",1786 -2018-07-01,"Missouri",1665 -2018-08-01,"Missouri",1661 -2018-09-01,"Missouri",1743 -2018-10-01,"Missouri",5269 -2018-11-01,"Missouri",16219 -2018-12-01,"Missouri",18222 -2019-01-01,"Missouri",23133 -2019-02-01,"Missouri",19790 -2019-03-01,"Missouri",15499 -2019-04-01,"Missouri",5246 -2019-05-01,"Missouri",3231 -2019-06-01,"Missouri",1940 -2019-07-01,"Missouri",1752 -2019-08-01,"Missouri",1668 -2019-09-01,"Missouri",1610 -2019-10-01,"Missouri",5498 -2019-11-01,"Missouri",14237 -2019-12-01,"Missouri",17007 -2020-01-01,"Missouri",20675 -2020-02-01,"Missouri",18401 -2020-03-01,"Missouri",10409 -2020-04-01,"Missouri",6250 -2020-05-01,"Missouri",3746 -2020-06-01,"Missouri",1957 -2020-07-01,"Missouri",1770 -2020-08-01,"Missouri",1833 -2020-09-01,"Missouri",2097 -2020-10-01,"Missouri",3876 -2020-11-01,"Missouri",9766 -2020-12-01,"Missouri",18630 -2021-01-01,"Missouri",21174 -2021-02-01,"Missouri",22267 -1989-01-01,"Montana",2803 -1989-02-01,"Montana",2778 -1989-03-01,"Montana",2544 -1989-04-01,"Montana",1666 -1989-05-01,"Montana",965 -1989-06-01,"Montana",680 -1989-07-01,"Montana",426 -1989-08-01,"Montana",435 -1989-09-01,"Montana",568 -1989-10-01,"Montana",1084 -1989-11-01,"Montana",1728 -1989-12-01,"Montana",2518 -1990-01-01,"Montana",2625 -1990-02-01,"Montana",2421 -1990-03-01,"Montana",1900 -1990-04-01,"Montana",1459 -1990-05-01,"Montana",1104 -1990-06-01,"Montana",701 -1990-07-01,"Montana",389 -1990-08-01,"Montana",392 -1990-09-01,"Montana",450 -1990-10-01,"Montana",1040 -1990-11-01,"Montana",1694 -1990-12-01,"Montana",2673 -1991-01-01,"Montana",3533 -1991-02-01,"Montana",2139 -1991-03-01,"Montana",2087 -1991-04-01,"Montana",1585 -1991-05-01,"Montana",1244 -1991-06-01,"Montana",608 -1991-07-01,"Montana",455 -1991-08-01,"Montana",382 -1991-09-01,"Montana",559 -1991-10-01,"Montana",977 -1991-11-01,"Montana",2218 -1991-12-01,"Montana",2626 -1992-01-01,"Montana",2529 -1992-02-01,"Montana",2180 -1992-03-01,"Montana",1620 -1992-04-01,"Montana",1371 -1992-05-01,"Montana",837 -1992-06-01,"Montana",541 -1992-07-01,"Montana",485 -1992-08-01,"Montana",421 -1992-09-01,"Montana",727 -1992-10-01,"Montana",1106 -1992-11-01,"Montana",1792 -1992-12-01,"Montana",3065 -1993-01-01,"Montana",3658 -1993-02-01,"Montana",2509 -1993-03-01,"Montana",2611 -1993-04-01,"Montana",1686 -1993-05-01,"Montana",1005 -1993-06-01,"Montana",644 -1993-07-01,"Montana",608 -1993-08-01,"Montana",530 -1993-09-01,"Montana",741 -1993-10-01,"Montana",1172 -1993-11-01,"Montana",2236 -1993-12-01,"Montana",2961 -1994-01-01,"Montana",2722 -1994-02-01,"Montana",2915 -1994-03-01,"Montana",2180 -1994-04-01,"Montana",1600 -1994-05-01,"Montana",1005 -1994-06-01,"Montana",614 -1994-07-01,"Montana",461 -1994-08-01,"Montana",396 -1994-09-01,"Montana",535 -1994-10-01,"Montana",1184 -1994-11-01,"Montana",2115 -1994-12-01,"Montana",2986 -1995-01-01,"Montana",3072 -1995-02-01,"Montana",2398 -1995-03-01,"Montana",2441 -1995-04-01,"Montana",1796 -1995-05-01,"Montana",1264 -1995-06-01,"Montana",704 -1995-07-01,"Montana",532 -1995-08-01,"Montana",447 -1995-09-01,"Montana",666 -1995-10-01,"Montana",1376 -1995-11-01,"Montana",2248 -1995-12-01,"Montana",2697 -1996-01-01,"Montana",3284 -1996-02-01,"Montana",3530 -1996-03-01,"Montana",2649 -1996-04-01,"Montana",2028 -1996-05-01,"Montana",1400 -1996-06-01,"Montana",745 -1996-07-01,"Montana",462 -1996-08-01,"Montana",431 -1996-09-01,"Montana",634 -1996-10-01,"Montana",1267 -1996-11-01,"Montana",2458 -1996-12-01,"Montana",3286 -1997-01-01,"Montana",3865 -1997-02-01,"Montana",3025 -1997-03-01,"Montana",2477 -1997-04-01,"Montana",2003 -1997-05-01,"Montana",1147 -1997-06-01,"Montana",634 -1997-07-01,"Montana",413 -1997-08-01,"Montana",449 -1997-09-01,"Montana",510 -1997-10-01,"Montana",1234 -1997-11-01,"Montana",2038 -1997-12-01,"Montana",3207 -1998-01-01,"Montana",3424 -1998-02-01,"Montana",2404 -1998-03-01,"Montana",2426 -1998-04-01,"Montana",1672 -1998-05-01,"Montana",865 -1998-06-01,"Montana",669 -1998-07-01,"Montana",499 -1998-08-01,"Montana",471 -1998-09-01,"Montana",477 -1998-10-01,"Montana",1266 -1998-11-01,"Montana",2069 -1998-12-01,"Montana",2931 -1999-01-01,"Montana",3458 -1999-02-01,"Montana",2495 -1999-03-01,"Montana",2114 -1999-04-01,"Montana",1895 -1999-05-01,"Montana",1380 -1999-06-01,"Montana",645 -1999-07-01,"Montana",518 -1999-08-01,"Montana",378 -1999-09-01,"Montana",637 -1999-10-01,"Montana",1335 -1999-11-01,"Montana",1983 -1999-12-01,"Montana",2840 -2000-01-01,"Montana",3202 -2000-02-01,"Montana",2801 -2000-03-01,"Montana",2290 -2000-04-01,"Montana",1559 -2000-05-01,"Montana",972 -2000-06-01,"Montana",606 -2000-07-01,"Montana",482 -2000-08-01,"Montana",392 -2000-09-01,"Montana",610 -2000-10-01,"Montana",1308 -2000-11-01,"Montana",2411 -2000-12-01,"Montana",3483 -2001-01-01,"Montana",3284 -2001-02-01,"Montana",3338 -2001-03-01,"Montana",2590 -2001-04-01,"Montana",1910 -2001-05-01,"Montana",1050 -2001-06-01,"Montana",697 -2001-07-01,"Montana",417 -2001-08-01,"Montana",405 -2001-09-01,"Montana",503 -2001-10-01,"Montana",1160 -2001-11-01,"Montana",1842 -2001-12-01,"Montana",2952 -2002-01-01,"Montana",3329 -2002-02-01,"Montana",2812 -2002-03-01,"Montana",3222 -2002-04-01,"Montana",2093 -2002-05-01,"Montana",1418 -2002-06-01,"Montana",789 -2002-07-01,"Montana",457 -2002-08-01,"Montana",453 -2002-09-01,"Montana",562 -2002-10-01,"Montana",1459 -2002-11-01,"Montana",2272 -2002-12-01,"Montana",2844 -2003-01-01,"Montana",3232 -2003-02-01,"Montana",2987 -2003-03-01,"Montana",2881 -2003-04-01,"Montana",1618 -2003-05-01,"Montana",1264 -2003-06-01,"Montana",665 -2003-07-01,"Montana",442 -2003-08-01,"Montana",414 -2003-09-01,"Montana",557 -2003-10-01,"Montana",960 -2003-11-01,"Montana",2351 -2003-12-01,"Montana",3064 -2004-01-01,"Montana",3874 -2004-02-01,"Montana",2996 -2004-03-01,"Montana",2233 -2004-04-01,"Montana",1419 -2004-05-01,"Montana",1081 -2004-06-01,"Montana",856 -2004-07-01,"Montana",553 -2004-08-01,"Montana",382 -2004-09-01,"Montana",587 -2004-10-01,"Montana",1135 -2004-11-01,"Montana",1930 -2004-12-01,"Montana",2861 -2005-01-01,"Montana",3879 -2005-02-01,"Montana",2663 -2005-03-01,"Montana",2291 -2005-04-01,"Montana",1745 -2005-05-01,"Montana",1188 -2005-06-01,"Montana",791 -2005-07-01,"Montana",484 -2005-08-01,"Montana",440 -2005-09-01,"Montana",548 -2005-10-01,"Montana",1112 -2005-11-01,"Montana",1655 -2005-12-01,"Montana",3038 -2006-01-01,"Montana",2889 -2006-02-01,"Montana",2659 -2006-03-01,"Montana",2800 -2006-04-01,"Montana",1813 -2006-05-01,"Montana",1090 -2006-06-01,"Montana",613 -2006-07-01,"Montana",425 -2006-08-01,"Montana",396 -2006-09-01,"Montana",557 -2006-10-01,"Montana",1191 -2006-11-01,"Montana",2048 -2006-12-01,"Montana",2966 -2007-01-01,"Montana",3422 -2007-02-01,"Montana",3188 -2007-03-01,"Montana",2325 -2007-04-01,"Montana",1700 -2007-05-01,"Montana",1071 -2007-06-01,"Montana",685 -2007-07-01,"Montana",445 -2007-08-01,"Montana",387 -2007-09-01,"Montana",471 -2007-10-01,"Montana",1046 -2007-11-01,"Montana",1861 -2007-12-01,"Montana",3119 -2008-01-01,"Montana",3443 -2008-02-01,"Montana",3300 -2008-03-01,"Montana",2560 -2008-04-01,"Montana",2146 -2008-05-01,"Montana",1572 -2008-06-01,"Montana",917 -2008-07-01,"Montana",561 -2008-08-01,"Montana",399 -2008-09-01,"Montana",597 -2008-10-01,"Montana",1112 -2008-11-01,"Montana",1855 -2008-12-01,"Montana",3123 -2009-01-01,"Montana",3643 -2009-02-01,"Montana",3043 -2009-03-01,"Montana",2762 -2009-04-01,"Montana",2007 -2009-05-01,"Montana",1292 -2009-06-01,"Montana",688 -2009-07-01,"Montana",490 -2009-08-01,"Montana",400 -2009-09-01,"Montana",457 -2009-10-01,"Montana",1351 -2009-11-01,"Montana",2057 -2009-12-01,"Montana",3578 -2010-01-01,"Montana",3510 -2010-02-01,"Montana",2984 -2010-03-01,"Montana",2246 -2010-04-01,"Montana",1754 -2010-05-01,"Montana",1336 -2010-06-01,"Montana",814 -2010-07-01,"Montana",466 -2010-08-01,"Montana",365 -2010-09-01,"Montana",568 -2010-10-01,"Montana",1038 -2010-11-01,"Montana",2453 -2010-12-01,"Montana",3342 -2011-01-01,"Montana",3529 -2011-02-01,"Montana",3248 -2011-03-01,"Montana",3008 -2011-04-01,"Montana",1656 -2011-05-01,"Montana",863 -2011-06-01,"Montana",645 -2011-07-01,"Montana",428 -2011-08-01,"Montana",435 -2011-09-01,"Montana",476 -2011-10-01,"Montana",1396 -2011-11-01,"Montana",2548 -2011-12-01,"Montana",3478 -2012-01-01,"Montana",3398 -2012-02-01,"Montana",2807 -2012-03-01,"Montana",1950 -2012-04-01,"Montana",1336 -2012-05-01,"Montana",983 -2012-06-01,"Montana",580 -2012-07-01,"Montana",362 -2012-08-01,"Montana",375 -2012-09-01,"Montana",459 -2012-10-01,"Montana",1485 -2012-11-01,"Montana",2199 -2012-12-01,"Montana",3137 -2013-01-01,"Montana",3444 -2013-02-01,"Montana",2563 -2013-03-01,"Montana",2365 -2013-04-01,"Montana",1855 -2013-05-01,"Montana",857 -2013-06-01,"Montana",541 -2013-07-01,"Montana",359 -2013-08-01,"Montana",341 -2013-09-01,"Montana",551 -2013-10-01,"Montana",1679 -2013-11-01,"Montana",2510 -2013-12-01,"Montana",3749 -2014-01-01,"Montana",3307 -2014-02-01,"Montana",3633 -2014-03-01,"Montana",2700 -2014-04-01,"Montana",1642 -2014-05-01,"Montana",921 -2014-06-01,"Montana",544 -2014-07-01,"Montana",360 -2014-08-01,"Montana",362 -2014-09-01,"Montana",618 -2014-10-01,"Montana",1104 -2014-11-01,"Montana",2919 -2014-12-01,"Montana",3267 -2015-01-01,"Montana",3317 -2015-02-01,"Montana",2620 -2015-03-01,"Montana",1959 -2015-04-01,"Montana",1457 -2015-05-01,"Montana",909 -2015-06-01,"Montana",404 -2015-07-01,"Montana",385 -2015-08-01,"Montana",381 -2015-09-01,"Montana",497 -2015-10-01,"Montana",1049 -2015-11-01,"Montana",2652 -2015-12-01,"Montana",3283 -2016-01-01,"Montana",3158 -2016-02-01,"Montana",2291 -2016-03-01,"Montana",2008 -2016-04-01,"Montana",1288 -2016-05-01,"Montana",934 -2016-06-01,"Montana",515 -2016-07-01,"Montana",400 -2016-08-01,"Montana",405 -2016-09-01,"Montana",631 -2016-10-01,"Montana",1383 -2016-11-01,"Montana",2115 -2016-12-01,"Montana",3972 -2017-01-01,"Montana",4211 -2017-02-01,"Montana",2978 -2017-03-01,"Montana",2231 -2017-04-01,"Montana",1608 -2017-05-01,"Montana",902 -2017-06-01,"Montana",474 -2017-07-01,"Montana",343 -2017-08-01,"Montana",349 -2017-09-01,"Montana",637 -2017-10-01,"Montana",1587 -2017-11-01,"Montana",2535 -2017-12-01,"Montana",3627 -2018-01-01,"Montana",3712 -2018-02-01,"Montana",3652 -2018-03-01,"Montana",2594 -2018-04-01,"Montana",1936 -2018-05-01,"Montana",889 -2018-06-01,"Montana",572 -2018-07-01,"Montana",371 -2018-08-01,"Montana",397 -2018-09-01,"Montana",484 -2018-10-01,"Montana",1748 -2018-11-01,"Montana",2773 -2018-12-01,"Montana",3491 -2019-01-01,"Montana",3575 -2019-02-01,"Montana",4742 -2019-03-01,"Montana",3332 -2019-04-01,"Montana",1581 -2019-05-01,"Montana",1079 -2019-06-01,"Montana",829 -2019-07-01,"Montana",521 -2019-08-01,"Montana",269 -2019-09-01,"Montana",444 -2019-10-01,"Montana",1328 -2019-11-01,"Montana",2953 -2019-12-01,"Montana",3279 -2020-01-01,"Montana",3467 -2020-02-01,"Montana",3085 -2020-03-01,"Montana",2684 -2020-04-01,"Montana",1732 -2020-05-01,"Montana",1267 -2020-06-01,"Montana",773 -2020-07-01,"Montana",548 -2020-08-01,"Montana",406 -2020-09-01,"Montana",467 -2020-10-01,"Montana",NA -2020-11-01,"Montana",2327 -2020-12-01,"Montana",3173 -2021-01-01,"Montana",3332 -2021-02-01,"Montana",3619 -1989-01-01,"Nebraska",7006 -1989-02-01,"Nebraska",7911 -1989-03-01,"Nebraska",6742 -1989-04-01,"Nebraska",3687 -1989-05-01,"Nebraska",1968 -1989-06-01,"Nebraska",1137 -1989-07-01,"Nebraska",1078 -1989-08-01,"Nebraska",1007 -1989-09-01,"Nebraska",1212 -1989-10-01,"Nebraska",1972 -1989-11-01,"Nebraska",3788 -1989-12-01,"Nebraska",7297 -1990-01-01,"Nebraska",7593 -1990-02-01,"Nebraska",6472 -1990-03-01,"Nebraska",5262 -1990-04-01,"Nebraska",3959 -1990-05-01,"Nebraska",2276 -1990-06-01,"Nebraska",1294 -1990-07-01,"Nebraska",1056 -1990-08-01,"Nebraska",947 -1990-09-01,"Nebraska",1034 -1990-10-01,"Nebraska",1896 -1990-11-01,"Nebraska",3458 -1990-12-01,"Nebraska",6251 -1991-01-01,"Nebraska",9508 -1991-02-01,"Nebraska",6544 -1991-03-01,"Nebraska",5212 -1991-04-01,"Nebraska",3123 -1991-05-01,"Nebraska",2234 -1991-06-01,"Nebraska",1163 -1991-07-01,"Nebraska",1019 -1991-08-01,"Nebraska",953 -1991-09-01,"Nebraska",1085 -1991-10-01,"Nebraska",2062 -1991-11-01,"Nebraska",5196 -1991-12-01,"Nebraska",6573 -1992-01-01,"Nebraska",6858 -1992-02-01,"Nebraska",5956 -1992-03-01,"Nebraska",4706 -1992-04-01,"Nebraska",3760 -1992-05-01,"Nebraska",2020 -1992-06-01,"Nebraska",1311 -1992-07-01,"Nebraska",1047 -1992-08-01,"Nebraska",983 -1992-09-01,"Nebraska",1096 -1992-10-01,"Nebraska",2030 -1992-11-01,"Nebraska",4561 -1992-12-01,"Nebraska",7085 -1993-01-01,"Nebraska",9013 -1993-02-01,"Nebraska",6132 -1993-03-01,"Nebraska",7668 -1993-04-01,"Nebraska",5098 -1993-05-01,"Nebraska",2360 -1993-06-01,"Nebraska",1495 -1993-07-01,"Nebraska",1119 -1993-08-01,"Nebraska",999 -1993-09-01,"Nebraska",1217 -1993-10-01,"Nebraska",1998 -1993-11-01,"Nebraska",4336 -1993-12-01,"Nebraska",6820 -1994-01-01,"Nebraska",8455 -1994-02-01,"Nebraska",8562 -1994-03-01,"Nebraska",6098 -1994-04-01,"Nebraska",4020 -1994-05-01,"Nebraska",2328 -1994-06-01,"Nebraska",1179 -1994-07-01,"Nebraska",1014 -1994-08-01,"Nebraska",935 -1994-09-01,"Nebraska",1037 -1994-10-01,"Nebraska",1523 -1994-11-01,"Nebraska",3169 -1994-12-01,"Nebraska",6076 -1995-01-01,"Nebraska",8146 -1995-02-01,"Nebraska",7156 -1995-03-01,"Nebraska",6026 -1995-04-01,"Nebraska",4284 -1995-05-01,"Nebraska",2967 -1995-06-01,"Nebraska",1587 -1995-07-01,"Nebraska",1035 -1995-08-01,"Nebraska",906 -1995-09-01,"Nebraska",1051 -1995-10-01,"Nebraska",1577 -1995-11-01,"Nebraska",4132 -1995-12-01,"Nebraska",6188 -1996-01-01,"Nebraska",8226 -1996-02-01,"Nebraska",8807 -1996-03-01,"Nebraska",6609 -1996-04-01,"Nebraska",4786 -1996-05-01,"Nebraska",2651 -1996-06-01,"Nebraska",1475 -1996-07-01,"Nebraska",985 -1996-08-01,"Nebraska",932 -1996-09-01,"Nebraska",1017 -1996-10-01,"Nebraska",2173 -1996-11-01,"Nebraska",4043 -1996-12-01,"Nebraska",7283 -1997-01-01,"Nebraska",9688 -1997-02-01,"Nebraska",7825 -1997-03-01,"Nebraska",6229 -1997-04-01,"Nebraska",4353 -1997-05-01,"Nebraska",3176 -1997-06-01,"Nebraska",1376 -1997-07-01,"Nebraska",1015 -1997-08-01,"Nebraska",939 -1997-09-01,"Nebraska",936 -1997-10-01,"Nebraska",1382 -1997-11-01,"Nebraska",4399 -1997-12-01,"Nebraska",5787 -1998-01-01,"Nebraska",7929 -1998-02-01,"Nebraska",6666 -1998-03-01,"Nebraska",6505 -1998-04-01,"Nebraska",4339 -1998-05-01,"Nebraska",1968 -1998-06-01,"Nebraska",1202 -1998-07-01,"Nebraska",1011 -1998-08-01,"Nebraska",1030 -1998-09-01,"Nebraska",883 -1998-10-01,"Nebraska",1623 -1998-11-01,"Nebraska",3386 -1998-12-01,"Nebraska",4230 -1999-01-01,"Nebraska",8622 -1999-02-01,"Nebraska",5991 -1999-03-01,"Nebraska",5753 -1999-04-01,"Nebraska",3750 -1999-05-01,"Nebraska",2361 -1999-06-01,"Nebraska",1186 -1999-07-01,"Nebraska",1008 -1999-08-01,"Nebraska",1120 -1999-09-01,"Nebraska",799 -1999-10-01,"Nebraska",2128 -1999-11-01,"Nebraska",2733 -1999-12-01,"Nebraska",5137 -2000-01-01,"Nebraska",7375 -2000-02-01,"Nebraska",6882 -2000-03-01,"Nebraska",5815 -2000-04-01,"Nebraska",4561 -2000-05-01,"Nebraska",1467 -2000-06-01,"Nebraska",1003 -2000-07-01,"Nebraska",917 -2000-08-01,"Nebraska",790 -2000-09-01,"Nebraska",1066 -2000-10-01,"Nebraska",1908 -2000-11-01,"Nebraska",3682 -2000-12-01,"Nebraska",7044 -2001-01-01,"Nebraska",10130 -2001-02-01,"Nebraska",7786 -2001-03-01,"Nebraska",6500 -2001-04-01,"Nebraska",4713 -2001-05-01,"Nebraska",2592 -2001-06-01,"Nebraska",1209 -2001-07-01,"Nebraska",982 -2001-08-01,"Nebraska",931 -2001-09-01,"Nebraska",901 -2001-10-01,"Nebraska",1777 -2001-11-01,"Nebraska",4791 -2001-12-01,"Nebraska",4352 -2002-01-01,"Nebraska",8840 -2002-02-01,"Nebraska",6363 -2002-03-01,"Nebraska",6356 -2002-04-01,"Nebraska",4307 -2002-05-01,"Nebraska",1886 -2002-06-01,"Nebraska",1180 -2002-07-01,"Nebraska",911 -2002-08-01,"Nebraska",752 -2002-09-01,"Nebraska",896 -2002-10-01,"Nebraska",1723 -2002-11-01,"Nebraska",4290 -2002-12-01,"Nebraska",6322 -2003-01-01,"Nebraska",7895 -2003-02-01,"Nebraska",7345 -2003-03-01,"Nebraska",6648 -2003-04-01,"Nebraska",3378 -2003-05-01,"Nebraska",1743 -2003-06-01,"Nebraska",1076 -2003-07-01,"Nebraska",880 -2003-08-01,"Nebraska",903 -2003-09-01,"Nebraska",789 -2003-10-01,"Nebraska",1640 -2003-11-01,"Nebraska",3532 -2003-12-01,"Nebraska",6362 -2004-01-01,"Nebraska",8120 -2004-02-01,"Nebraska",7891 -2004-03-01,"Nebraska",5533 -2004-04-01,"Nebraska",2750 -2004-05-01,"Nebraska",1692 -2004-06-01,"Nebraska",1051 -2004-07-01,"Nebraska",908 -2004-08-01,"Nebraska",854 -2004-09-01,"Nebraska",800 -2004-10-01,"Nebraska",1341 -2004-11-01,"Nebraska",2469 -2004-12-01,"Nebraska",5190 -2005-01-01,"Nebraska",8350 -2005-02-01,"Nebraska",6736 -2005-03-01,"Nebraska",5151 -2005-04-01,"Nebraska",3023 -2005-05-01,"Nebraska",1947 -2005-06-01,"Nebraska",990 -2005-07-01,"Nebraska",830 -2005-08-01,"Nebraska",774 -2005-09-01,"Nebraska",823 -2005-10-01,"Nebraska",1142 -2005-11-01,"Nebraska",2340 -2005-12-01,"Nebraska",5858 -2006-01-01,"Nebraska",6258 -2006-02-01,"Nebraska",5325 -2006-03-01,"Nebraska",5951 -2006-04-01,"Nebraska",3510 -2006-05-01,"Nebraska",1736 -2006-06-01,"Nebraska",1037 -2006-07-01,"Nebraska",814 -2006-08-01,"Nebraska",769 -2006-09-01,"Nebraska",834 -2006-10-01,"Nebraska",1433 -2006-11-01,"Nebraska",3132 -2006-12-01,"Nebraska",5097 -2007-01-01,"Nebraska",6539 -2007-02-01,"Nebraska",7965 -2007-03-01,"Nebraska",6496 -2007-04-01,"Nebraska",3221 -2007-05-01,"Nebraska",1930 -2007-06-01,"Nebraska",980 -2007-07-01,"Nebraska",812 -2007-08-01,"Nebraska",799 -2007-09-01,"Nebraska",758 -2007-10-01,"Nebraska",1104 -2007-11-01,"Nebraska",2351 -2007-12-01,"Nebraska",5641 -2008-01-01,"Nebraska",7668 -2008-02-01,"Nebraska",8045 -2008-03-01,"Nebraska",6565 -2008-04-01,"Nebraska",4314 -2008-05-01,"Nebraska",2342 -2008-06-01,"Nebraska",1126 -2008-07-01,"Nebraska",826 -2008-08-01,"Nebraska",830 -2008-09-01,"Nebraska",888 -2008-10-01,"Nebraska",1173 -2008-11-01,"Nebraska",2626 -2008-12-01,"Nebraska",5955 -2009-01-01,"Nebraska",7927 -2009-02-01,"Nebraska",7084 -2009-03-01,"Nebraska",5978 -2009-04-01,"Nebraska",4086 -2009-05-01,"Nebraska",1889 -2009-06-01,"Nebraska",1027 -2009-07-01,"Nebraska",832 -2009-08-01,"Nebraska",798 -2009-09-01,"Nebraska",815 -2009-10-01,"Nebraska",1594 -2009-11-01,"Nebraska",2809 -2009-12-01,"Nebraska",5304 -2010-01-01,"Nebraska",7872 -2010-02-01,"Nebraska",6848 -2010-03-01,"Nebraska",6392 -2010-04-01,"Nebraska",3157 -2010-05-01,"Nebraska",1483 -2010-06-01,"Nebraska",1041 -2010-07-01,"Nebraska",741 -2010-08-01,"Nebraska",705 -2010-09-01,"Nebraska",641 -2010-10-01,"Nebraska",1056 -2010-11-01,"Nebraska",3713 -2010-12-01,"Nebraska",6483 -2011-01-01,"Nebraska",8497 -2011-02-01,"Nebraska",6809 -2011-03-01,"Nebraska",6004 -2011-04-01,"Nebraska",2724 -2011-05-01,"Nebraska",1655 -2011-06-01,"Nebraska",1066 -2011-07-01,"Nebraska",883 -2011-08-01,"Nebraska",680 -2011-09-01,"Nebraska",779 -2011-10-01,"Nebraska",1376 -2011-11-01,"Nebraska",3369 -2011-12-01,"Nebraska",5874 -2012-01-01,"Nebraska",6101 -2012-02-01,"Nebraska",5613 -2012-03-01,"Nebraska",3206 -2012-04-01,"Nebraska",1476 -2012-05-01,"Nebraska",1187 -2012-06-01,"Nebraska",864 -2012-07-01,"Nebraska",1005 -2012-08-01,"Nebraska",511 -2012-09-01,"Nebraska",661 -2012-10-01,"Nebraska",1680 -2012-11-01,"Nebraska",3235 -2012-12-01,"Nebraska",5747 -2013-01-01,"Nebraska",7358 -2013-02-01,"Nebraska",5973 -2013-03-01,"Nebraska",5685 -2013-04-01,"Nebraska",3623 -2013-05-01,"Nebraska",1844 -2013-06-01,"Nebraska",982 -2013-07-01,"Nebraska",930 -2013-08-01,"Nebraska",546 -2013-09-01,"Nebraska",702 -2013-10-01,"Nebraska",1668 -2013-11-01,"Nebraska",4183 -2013-12-01,"Nebraska",7733 -2014-01-01,"Nebraska",8326 -2014-02-01,"Nebraska",7612 -2014-03-01,"Nebraska",5589 -2014-04-01,"Nebraska",2959 -2014-05-01,"Nebraska",1713 -2014-06-01,"Nebraska",938 -2014-07-01,"Nebraska",791 -2014-08-01,"Nebraska",730 -2014-09-01,"Nebraska",811 -2014-10-01,"Nebraska",1447 -2014-11-01,"Nebraska",4644 -2014-12-01,"Nebraska",6587 -2015-01-01,"Nebraska",7214 -2015-02-01,"Nebraska",6971 -2015-03-01,"Nebraska",4219 -2015-04-01,"Nebraska",2137 -2015-05-01,"Nebraska",1343 -2015-06-01,"Nebraska",971 -2015-07-01,"Nebraska",809 -2015-08-01,"Nebraska",695 -2015-09-01,"Nebraska",683 -2015-10-01,"Nebraska",1081 -2015-11-01,"Nebraska",2921 -2015-12-01,"Nebraska",5620 -2016-01-01,"Nebraska",7072 -2016-02-01,"Nebraska",5465 -2016-03-01,"Nebraska",3500 -2016-04-01,"Nebraska",2324 -2016-05-01,"Nebraska",1371 -2016-06-01,"Nebraska",905 -2016-07-01,"Nebraska",713 -2016-08-01,"Nebraska",665 -2016-09-01,"Nebraska",706 -2016-10-01,"Nebraska",1031 -2016-11-01,"Nebraska",2374 -2016-12-01,"Nebraska",6924 -2017-01-01,"Nebraska",7563 -2017-02-01,"Nebraska",4681 -2017-03-01,"Nebraska",4156 -2017-04-01,"Nebraska",2231 -2017-05-01,"Nebraska",1512 -2017-06-01,"Nebraska",857 -2017-07-01,"Nebraska",673 -2017-08-01,"Nebraska",434 -2017-09-01,"Nebraska",619 -2017-10-01,"Nebraska",1404 -2017-11-01,"Nebraska",3973 -2017-12-01,"Nebraska",5967 -2018-01-01,"Nebraska",8245 -2018-02-01,"Nebraska",7113 -2018-03-01,"Nebraska",5055 -2018-04-01,"Nebraska",4215 -2018-05-01,"Nebraska",1545 -2018-06-01,"Nebraska",790 -2018-07-01,"Nebraska",767 -2018-08-01,"Nebraska",608 -2018-09-01,"Nebraska",687 -2018-10-01,"Nebraska",2114 -2018-11-01,"Nebraska",4872 -2018-12-01,"Nebraska",6370 -2019-01-01,"Nebraska",7568 -2019-02-01,"Nebraska",7792 -2019-03-01,"Nebraska",6194 -2019-04-01,"Nebraska",2527 -2019-05-01,"Nebraska",1745 -2019-06-01,"Nebraska",901 -2019-07-01,"Nebraska",767 -2019-08-01,"Nebraska",703 -2019-09-01,"Nebraska",643 -2019-10-01,"Nebraska",1597 -2019-11-01,"Nebraska",5380 -2019-12-01,"Nebraska",5822 -2020-01-01,"Nebraska",7590 -2020-02-01,"Nebraska",6055 -2020-03-01,"Nebraska",4589 -2020-04-01,"Nebraska",2978 -2020-05-01,"Nebraska",1632 -2020-06-01,"Nebraska",1076 -2020-07-01,"Nebraska",826 -2020-08-01,"Nebraska",755 -2020-09-01,"Nebraska",835 -2020-10-01,"Nebraska",1595 -2020-11-01,"Nebraska",3423 -2020-12-01,"Nebraska",6090 -2021-01-01,"Nebraska",6734 -2021-02-01,"Nebraska",7844 -1989-01-01,"Nevada",3128 -1989-02-01,"Nevada",2971 -1989-03-01,"Nevada",1957 -1989-04-01,"Nevada",1106 -1989-05-01,"Nevada",829 -1989-06-01,"Nevada",748 -1989-07-01,"Nevada",531 -1989-08-01,"Nevada",478 -1989-09-01,"Nevada",555 -1989-10-01,"Nevada",703 -1989-11-01,"Nevada",1400 -1989-12-01,"Nevada",2359 -1990-01-01,"Nevada",2988 -1990-02-01,"Nevada",3010 -1990-03-01,"Nevada",2208 -1990-04-01,"Nevada",1127 -1990-05-01,"Nevada",862 -1990-06-01,"Nevada",775 -1990-07-01,"Nevada",562 -1990-08-01,"Nevada",520 -1990-09-01,"Nevada",521 -1990-10-01,"Nevada",717 -1990-11-01,"Nevada",1270 -1990-12-01,"Nevada",2593 -1991-01-01,"Nevada",3919 -1991-02-01,"Nevada",2512 -1991-03-01,"Nevada",2116 -1991-04-01,"Nevada",1876 -1991-05-01,"Nevada",1208 -1991-06-01,"Nevada",853 -1991-07-01,"Nevada",622 -1991-08-01,"Nevada",546 -1991-09-01,"Nevada",547 -1991-10-01,"Nevada",680 -1991-11-01,"Nevada",1315 -1991-12-01,"Nevada",2941 -1992-01-01,"Nevada",3525 -1992-02-01,"Nevada",2611 -1992-03-01,"Nevada",2094 -1992-04-01,"Nevada",1394 -1992-05-01,"Nevada",803 -1992-06-01,"Nevada",695 -1992-07-01,"Nevada",671 -1992-08-01,"Nevada",529 -1992-09-01,"Nevada",608 -1992-10-01,"Nevada",727 -1992-11-01,"Nevada",1226 -1992-12-01,"Nevada",3302 -1993-01-01,"Nevada",3892 -1993-02-01,"Nevada",3157 -1993-03-01,"Nevada",2715 -1993-04-01,"Nevada",1503 -1993-05-01,"Nevada",1087 -1993-06-01,"Nevada",910 -1993-07-01,"Nevada",600 -1993-08-01,"Nevada",612 -1993-09-01,"Nevada",651 -1993-10-01,"Nevada",804 -1993-11-01,"Nevada",1492 -1993-12-01,"Nevada",3261 -1994-01-01,"Nevada",3597 -1994-02-01,"Nevada",3331 -1994-03-01,"Nevada",2505 -1994-04-01,"Nevada",1474 -1994-05-01,"Nevada",1151 -1994-06-01,"Nevada",883 -1994-07-01,"Nevada",669 -1994-08-01,"Nevada",587 -1994-09-01,"Nevada",632 -1994-10-01,"Nevada",829 -1994-11-01,"Nevada",1751 -1994-12-01,"Nevada",3855 -1995-01-01,"Nevada",3927 -1995-02-01,"Nevada",3102 -1995-03-01,"Nevada",2189 -1995-04-01,"Nevada",2156 -1995-05-01,"Nevada",1568 -1995-06-01,"Nevada",1087 -1995-07-01,"Nevada",801 -1995-08-01,"Nevada",655 -1995-09-01,"Nevada",677 -1995-10-01,"Nevada",817 -1995-11-01,"Nevada",1349 -1995-12-01,"Nevada",2357 -1996-01-01,"Nevada",3744 -1996-02-01,"Nevada",3264 -1996-03-01,"Nevada",2903 -1996-04-01,"Nevada",1884 -1996-05-01,"Nevada",1264 -1996-06-01,"Nevada",1011 -1996-07-01,"Nevada",779 -1996-08-01,"Nevada",678 -1996-09-01,"Nevada",732 -1996-10-01,"Nevada",894 -1996-11-01,"Nevada",2069 -1996-12-01,"Nevada",3386 -1997-01-01,"Nevada",4490 -1997-02-01,"Nevada",3843 -1997-03-01,"Nevada",3187 -1997-04-01,"Nevada",2027 -1997-05-01,"Nevada",1401 -1997-06-01,"Nevada",985 -1997-07-01,"Nevada",891 -1997-08-01,"Nevada",781 -1997-09-01,"Nevada",805 -1997-10-01,"Nevada",1024 -1997-11-01,"Nevada",1925 -1997-12-01,"Nevada",3884 -1998-01-01,"Nevada",5025 -1998-02-01,"Nevada",4149 -1998-03-01,"Nevada",3809 -1998-04-01,"Nevada",2826 -1998-05-01,"Nevada",1884 -1998-06-01,"Nevada",1487 -1998-07-01,"Nevada",977 -1998-08-01,"Nevada",813 -1998-09-01,"Nevada",824 -1998-10-01,"Nevada",1367 -1998-11-01,"Nevada",2526 -1998-12-01,"Nevada",4335 -1999-01-01,"Nevada",4935 -1999-02-01,"Nevada",4309 -1999-03-01,"Nevada",3331 -1999-04-01,"Nevada",2704 -1999-05-01,"Nevada",1843 -1999-06-01,"Nevada",1233 -1999-07-01,"Nevada",940 -1999-08-01,"Nevada",921 -1999-09-01,"Nevada",953 -1999-10-01,"Nevada",1208 -1999-11-01,"Nevada",1998 -1999-12-01,"Nevada",4396 -2000-01-01,"Nevada",4985 -2000-02-01,"Nevada",3863 -2000-03-01,"Nevada",3711 -2000-04-01,"Nevada",2027 -2000-05-01,"Nevada",1568 -2000-06-01,"Nevada",1184 -2000-07-01,"Nevada",1009 -2000-08-01,"Nevada",932 -2000-09-01,"Nevada",1085 -2000-10-01,"Nevada",1399 -2000-11-01,"Nevada",3228 -2000-12-01,"Nevada",4950 -2001-01-01,"Nevada",5541 -2001-02-01,"Nevada",5420 -2001-03-01,"Nevada",3978 -2001-04-01,"Nevada",2473 -2001-05-01,"Nevada",1641 -2001-06-01,"Nevada",1175 -2001-07-01,"Nevada",1042 -2001-08-01,"Nevada",996 -2001-09-01,"Nevada",1034 -2001-10-01,"Nevada",1245 -2001-11-01,"Nevada",2188 -2001-12-01,"Nevada",5877 -2002-01-01,"Nevada",5871 -2002-02-01,"Nevada",5596 -2002-03-01,"Nevada",3726 -2002-04-01,"Nevada",2405 -2002-05-01,"Nevada",1753 -2002-06-01,"Nevada",1296 -2002-07-01,"Nevada",1033 -2002-08-01,"Nevada",940 -2002-09-01,"Nevada",1081 -2002-10-01,"Nevada",1428 -2002-11-01,"Nevada",2603 -2002-12-01,"Nevada",4226 -2003-01-01,"Nevada",5431 -2003-02-01,"Nevada",4563 -2003-03-01,"Nevada",4059 -2003-04-01,"Nevada",2814 -2003-05-01,"Nevada",2114 -2003-06-01,"Nevada",1221 -2003-07-01,"Nevada",1114 -2003-08-01,"Nevada",994 -2003-09-01,"Nevada",1075 -2003-10-01,"Nevada",1272 -2003-11-01,"Nevada",2816 -2003-12-01,"Nevada",5374 -2004-01-01,"Nevada",6772 -2004-02-01,"Nevada",5908 -2004-03-01,"Nevada",4037 -2004-04-01,"Nevada",2025 -2004-05-01,"Nevada",1724 -2004-06-01,"Nevada",1419 -2004-07-01,"Nevada",1190 -2004-08-01,"Nevada",1083 -2004-09-01,"Nevada",1216 -2004-10-01,"Nevada",1587 -2004-11-01,"Nevada",3498 -2004-12-01,"Nevada",6075 -2005-01-01,"Nevada",6833 -2005-02-01,"Nevada",5631 -2005-03-01,"Nevada",3894 -2005-04-01,"Nevada",3081 -2005-05-01,"Nevada",2044 -2005-06-01,"Nevada",1633 -2005-07-01,"Nevada",1173 -2005-08-01,"Nevada",1115 -2005-09-01,"Nevada",1279 -2005-10-01,"Nevada",1623 -2005-11-01,"Nevada",2513 -2005-12-01,"Nevada",5578 -2006-01-01,"Nevada",6188 -2006-02-01,"Nevada",5415 -2006-03-01,"Nevada",5206 -2006-04-01,"Nevada",3334 -2006-05-01,"Nevada",1816 -2006-06-01,"Nevada",1515 -2006-07-01,"Nevada",1237 -2006-08-01,"Nevada",1147 -2006-09-01,"Nevada",1287 -2006-10-01,"Nevada",1878 -2006-11-01,"Nevada",2823 -2006-12-01,"Nevada",6092 -2007-01-01,"Nevada",8093 -2007-02-01,"Nevada",5982 -2007-03-01,"Nevada",4061 -2007-04-01,"Nevada",2447 -2007-05-01,"Nevada",1969 -2007-06-01,"Nevada",1491 -2007-07-01,"Nevada",1270 -2007-08-01,"Nevada",1155 -2007-09-01,"Nevada",1267 -2007-10-01,"Nevada",1880 -2007-11-01,"Nevada",2637 -2007-12-01,"Nevada",5834 -2008-01-01,"Nevada",8262 -2008-02-01,"Nevada",6795 -2008-03-01,"Nevada",4415 -2008-04-01,"Nevada",2774 -2008-05-01,"Nevada",1956 -2008-06-01,"Nevada",1620 -2008-07-01,"Nevada",1261 -2008-08-01,"Nevada",1142 -2008-09-01,"Nevada",1226 -2008-10-01,"Nevada",1683 -2008-11-01,"Nevada",2491 -2008-12-01,"Nevada",5038 -2009-01-01,"Nevada",7457 -2009-02-01,"Nevada",5654 -2009-03-01,"Nevada",4596 -2009-04-01,"Nevada",2974 -2009-05-01,"Nevada",1862 -2009-06-01,"Nevada",1475 -2009-07-01,"Nevada",1272 -2009-08-01,"Nevada",1147 -2009-09-01,"Nevada",1213 -2009-10-01,"Nevada",1708 -2009-11-01,"Nevada",2898 -2009-12-01,"Nevada",6484 -2010-01-01,"Nevada",7471 -2010-02-01,"Nevada",5926 -2010-03-01,"Nevada",4741 -2010-04-01,"Nevada",3255 -2010-05-01,"Nevada",2286 -2010-06-01,"Nevada",1690 -2010-07-01,"Nevada",1248 -2010-08-01,"Nevada",1102 -2010-09-01,"Nevada",1227 -2010-10-01,"Nevada",1524 -2010-11-01,"Nevada",3161 -2010-12-01,"Nevada",5748 -2011-01-01,"Nevada",7445 -2011-02-01,"Nevada",5946 -2011-03-01,"Nevada",4580 -2011-04-01,"Nevada",2953 -2011-05-01,"Nevada",2059 -2011-06-01,"Nevada",1643 -2011-07-01,"Nevada",1278 -2011-08-01,"Nevada",1180 -2011-09-01,"Nevada",1212 -2011-10-01,"Nevada",1616 -2011-11-01,"Nevada",3785 -2011-12-01,"Nevada",6896 -2012-01-01,"Nevada",7170 -2012-02-01,"Nevada",5815 -2012-03-01,"Nevada",4325 -2012-04-01,"Nevada",2717 -2012-05-01,"Nevada",1774 -2012-06-01,"Nevada",1504 -2012-07-01,"Nevada",1377 -2012-08-01,"Nevada",1054 -2012-09-01,"Nevada",1199 -2012-10-01,"Nevada",1513 -2012-11-01,"Nevada",3143 -2012-12-01,"Nevada",5479 -2013-01-01,"Nevada",9120 -2013-02-01,"Nevada",6103 -2013-03-01,"Nevada",4077 -2013-04-01,"Nevada",2476 -2013-05-01,"Nevada",1744 -2013-06-01,"Nevada",1395 -2013-07-01,"Nevada",1212 -2013-08-01,"Nevada",1106 -2013-09-01,"Nevada",1243 -2013-10-01,"Nevada",2210 -2013-11-01,"Nevada",3411 -2013-12-01,"Nevada",7568 -2014-01-01,"Nevada",6886 -2014-02-01,"Nevada",5205 -2014-03-01,"Nevada",3533 -2014-04-01,"Nevada",2585 -2014-05-01,"Nevada",1824 -2014-06-01,"Nevada",1438 -2014-07-01,"Nevada",1257 -2014-08-01,"Nevada",1168 -2014-09-01,"Nevada",1206 -2014-10-01,"Nevada",1556 -2014-11-01,"Nevada",3016 -2014-12-01,"Nevada",5459 -2015-01-01,"Nevada",7046 -2015-02-01,"Nevada",4287 -2015-03-01,"Nevada",3384 -2015-04-01,"Nevada",2366 -2015-05-01,"Nevada",1901 -2015-06-01,"Nevada",1497 -2015-07-01,"Nevada",1120 -2015-08-01,"Nevada",1189 -2015-09-01,"Nevada",1228 -2015-10-01,"Nevada",1449 -2015-11-01,"Nevada",4218 -2015-12-01,"Nevada",7344 -2016-01-01,"Nevada",8540 -2016-02-01,"Nevada",5658 -2016-03-01,"Nevada",3524 -2016-04-01,"Nevada",2500 -2016-05-01,"Nevada",1993 -2016-06-01,"Nevada",1518 -2016-07-01,"Nevada",1269 -2016-08-01,"Nevada",1208 -2016-09-01,"Nevada",1387 -2016-10-01,"Nevada",1810 -2016-11-01,"Nevada",2891 -2016-12-01,"Nevada",6777 -2017-01-01,"Nevada",8578 -2017-02-01,"Nevada",6256 -2017-03-01,"Nevada",4396 -2017-04-01,"Nevada",2794 -2017-05-01,"Nevada",2022 -2017-06-01,"Nevada",1600 -2017-07-01,"Nevada",1310 -2017-08-01,"Nevada",1153 -2017-09-01,"Nevada",1476 -2017-10-01,"Nevada",2035 -2017-11-01,"Nevada",2973 -2017-12-01,"Nevada",6316 -2018-01-01,"Nevada",6655 -2018-02-01,"Nevada",6123 -2018-03-01,"Nevada",5723 -2018-04-01,"Nevada",2891 -2018-05-01,"Nevada",2003 -2018-06-01,"Nevada",1612 -2018-07-01,"Nevada",1256 -2018-08-01,"Nevada",1154 -2018-09-01,"Nevada",1408 -2018-10-01,"Nevada",2031 -2018-11-01,"Nevada",4052 -2018-12-01,"Nevada",6929 -2019-01-01,"Nevada",8520 -2019-02-01,"Nevada",8076 -2019-03-01,"Nevada",6324 -2019-04-01,"Nevada",3021 -2019-05-01,"Nevada",2254 -2019-06-01,"Nevada",1807 -2019-07-01,"Nevada",1453 -2019-08-01,"Nevada",1310 -2019-09-01,"Nevada",1520 -2019-10-01,"Nevada",2427 -2019-11-01,"Nevada",3862 -2019-12-01,"Nevada",7356 -2020-01-01,"Nevada",8302 -2020-02-01,"Nevada",6716 -2020-03-01,"Nevada",5342 -2020-04-01,"Nevada",3572 -2020-05-01,"Nevada",2327 -2020-06-01,"Nevada",1963 -2020-07-01,"Nevada",1584 -2020-08-01,"Nevada",1316 -2020-09-01,"Nevada",1533 -2020-10-01,"Nevada",2046 -2020-11-01,"Nevada",4009 -2020-12-01,"Nevada",7207 -2021-01-01,"Nevada",8202 -2021-02-01,"Nevada",6982 -1989-01-01,"New Hampshire",1044 -1989-02-01,"New Hampshire",904 -1989-03-01,"New Hampshire",926 -1989-04-01,"New Hampshire",686 -1989-05-01,"New Hampshire",422 -1989-06-01,"New Hampshire",210 -1989-07-01,"New Hampshire",155 -1989-08-01,"New Hampshire",127 -1989-09-01,"New Hampshire",169 -1989-10-01,"New Hampshire",274 -1989-11-01,"New Hampshire",448 -1989-12-01,"New Hampshire",926 -1990-01-01,"New Hampshire",1118 -1990-02-01,"New Hampshire",890 -1990-03-01,"New Hampshire",815 -1990-04-01,"New Hampshire",655 -1990-05-01,"New Hampshire",395 -1990-06-01,"New Hampshire",262 -1990-07-01,"New Hampshire",145 -1990-08-01,"New Hampshire",128 -1990-09-01,"New Hampshire",162 -1990-10-01,"New Hampshire",203 -1990-11-01,"New Hampshire",465 -1990-12-01,"New Hampshire",665 -1991-01-01,"New Hampshire",905 -1991-02-01,"New Hampshire",943 -1991-03-01,"New Hampshire",799 -1991-04-01,"New Hampshire",599 -1991-05-01,"New Hampshire",359 -1991-06-01,"New Hampshire",189 -1991-07-01,"New Hampshire",141 -1991-08-01,"New Hampshire",127 -1991-09-01,"New Hampshire",156 -1991-10-01,"New Hampshire",249 -1991-11-01,"New Hampshire",453 -1991-12-01,"New Hampshire",690 -1992-01-01,"New Hampshire",1032 -1992-02-01,"New Hampshire",1089 -1992-03-01,"New Hampshire",869 -1992-04-01,"New Hampshire",766 -1992-05-01,"New Hampshire",461 -1992-06-01,"New Hampshire",219 -1992-07-01,"New Hampshire",159 -1992-08-01,"New Hampshire",139 -1992-09-01,"New Hampshire",151 -1992-10-01,"New Hampshire",288 -1992-11-01,"New Hampshire",526 -1992-12-01,"New Hampshire",750 -1993-01-01,"New Hampshire",1048 -1993-02-01,"New Hampshire",1081 -1993-03-01,"New Hampshire",1009 -1993-04-01,"New Hampshire",721 -1993-05-01,"New Hampshire",349 -1993-06-01,"New Hampshire",211 -1993-07-01,"New Hampshire",149 -1993-08-01,"New Hampshire",124 -1993-09-01,"New Hampshire",155 -1993-10-01,"New Hampshire",328 -1993-11-01,"New Hampshire",528 -1993-12-01,"New Hampshire",790 -1994-01-01,"New Hampshire",1294 -1994-02-01,"New Hampshire",1187 -1994-03-01,"New Hampshire",925 -1994-04-01,"New Hampshire",665 -1994-05-01,"New Hampshire",391 -1994-06-01,"New Hampshire",222 -1994-07-01,"New Hampshire",136 -1994-08-01,"New Hampshire",126 -1994-09-01,"New Hampshire",170 -1994-10-01,"New Hampshire",275 -1994-11-01,"New Hampshire",419 -1994-12-01,"New Hampshire",762 -1995-01-01,"New Hampshire",1013 -1995-02-01,"New Hampshire",1024 -1995-03-01,"New Hampshire",917 -1995-04-01,"New Hampshire",688 -1995-05-01,"New Hampshire",376 -1995-06-01,"New Hampshire",225 -1995-07-01,"New Hampshire",160 -1995-08-01,"New Hampshire",135 -1995-09-01,"New Hampshire",175 -1995-10-01,"New Hampshire",254 -1995-11-01,"New Hampshire",550 -1995-12-01,"New Hampshire",991 -1996-01-01,"New Hampshire",1193 -1996-02-01,"New Hampshire",1147 -1996-03-01,"New Hampshire",998 -1996-04-01,"New Hampshire",698 -1996-05-01,"New Hampshire",426 -1996-06-01,"New Hampshire",233 -1996-07-01,"New Hampshire",159 -1996-08-01,"New Hampshire",155 -1996-09-01,"New Hampshire",169 -1996-10-01,"New Hampshire",312 -1996-11-01,"New Hampshire",667 -1996-12-01,"New Hampshire",855 -1997-01-01,"New Hampshire",1061 -1997-02-01,"New Hampshire",1136 -1997-03-01,"New Hampshire",913 -1997-04-01,"New Hampshire",744 -1997-05-01,"New Hampshire",465 -1997-06-01,"New Hampshire",263 -1997-07-01,"New Hampshire",160 -1997-08-01,"New Hampshire",155 -1997-09-01,"New Hampshire",165 -1997-10-01,"New Hampshire",327 -1997-11-01,"New Hampshire",616 -1997-12-01,"New Hampshire",933 -1998-01-01,"New Hampshire",1140 -1998-02-01,"New Hampshire",974 -1998-03-01,"New Hampshire",853 -1998-04-01,"New Hampshire",643 -1998-05-01,"New Hampshire",355 -1998-06-01,"New Hampshire",220 -1998-07-01,"New Hampshire",169 -1998-08-01,"New Hampshire",156 -1998-09-01,"New Hampshire",159 -1998-10-01,"New Hampshire",294 -1998-11-01,"New Hampshire",566 -1998-12-01,"New Hampshire",739 -1999-01-01,"New Hampshire",1246 -1999-02-01,"New Hampshire",1036 -1999-03-01,"New Hampshire",991 -1999-04-01,"New Hampshire",672 -1999-05-01,"New Hampshire",367 -1999-06-01,"New Hampshire",188 -1999-07-01,"New Hampshire",152 -1999-08-01,"New Hampshire",141 -1999-09-01,"New Hampshire",161 -1999-10-01,"New Hampshire",325 -1999-11-01,"New Hampshire",549 -1999-12-01,"New Hampshire",783 -2000-01-01,"New Hampshire",1316 -2000-02-01,"New Hampshire",1242 -2000-03-01,"New Hampshire",973 -2000-04-01,"New Hampshire",632 -2000-05-01,"New Hampshire",432 -2000-06-01,"New Hampshire",275 -2000-07-01,"New Hampshire",178 -2000-08-01,"New Hampshire",143 -2000-09-01,"New Hampshire",182 -2000-10-01,"New Hampshire",302 -2000-11-01,"New Hampshire",566 -2000-12-01,"New Hampshire",1033 -2001-01-01,"New Hampshire",1255 -2001-02-01,"New Hampshire",1134 -2001-03-01,"New Hampshire",1059 -2001-04-01,"New Hampshire",734 -2001-05-01,"New Hampshire",406 -2001-06-01,"New Hampshire",213 -2001-07-01,"New Hampshire",153 -2001-08-01,"New Hampshire",148 -2001-09-01,"New Hampshire",184 -2001-10-01,"New Hampshire",300 -2001-11-01,"New Hampshire",490 -2001-12-01,"New Hampshire",735 -2002-01-01,"New Hampshire",1032 -2002-02-01,"New Hampshire",1053 -2002-03-01,"New Hampshire",934 -2002-04-01,"New Hampshire",634 -2002-05-01,"New Hampshire",445 -2002-06-01,"New Hampshire",303 -2002-07-01,"New Hampshire",212 -2002-08-01,"New Hampshire",140 -2002-09-01,"New Hampshire",163 -2002-10-01,"New Hampshire",273 -2002-11-01,"New Hampshire",640 -2002-12-01,"New Hampshire",1095 -2003-01-01,"New Hampshire",1345 -2003-02-01,"New Hampshire",1436 -2003-03-01,"New Hampshire",1223 -2003-04-01,"New Hampshire",827 -2003-05-01,"New Hampshire",500 -2003-06-01,"New Hampshire",254 -2003-07-01,"New Hampshire",172 -2003-08-01,"New Hampshire",162 -2003-09-01,"New Hampshire",161 -2003-10-01,"New Hampshire",317 -2003-11-01,"New Hampshire",574 -2003-12-01,"New Hampshire",970 -2004-01-01,"New Hampshire",1306 -2004-02-01,"New Hampshire",1381 -2004-03-01,"New Hampshire",964 -2004-04-01,"New Hampshire",708 -2004-05-01,"New Hampshire",344 -2004-06-01,"New Hampshire",203 -2004-07-01,"New Hampshire",163 -2004-08-01,"New Hampshire",178 -2004-09-01,"New Hampshire",201 -2004-10-01,"New Hampshire",260 -2004-11-01,"New Hampshire",528 -2004-12-01,"New Hampshire",850 -2005-01-01,"New Hampshire",1346 -2005-02-01,"New Hampshire",1308 -2005-03-01,"New Hampshire",1170 -2005-04-01,"New Hampshire",746 -2005-05-01,"New Hampshire",449 -2005-06-01,"New Hampshire",288 -2005-07-01,"New Hampshire",182 -2005-08-01,"New Hampshire",152 -2005-09-01,"New Hampshire",164 -2005-10-01,"New Hampshire",246 -2005-11-01,"New Hampshire",534 -2005-12-01,"New Hampshire",1207 -2006-01-01,"New Hampshire",1183 -2006-02-01,"New Hampshire",1043 -2006-03-01,"New Hampshire",1119 -2006-04-01,"New Hampshire",689 -2006-05-01,"New Hampshire",371 -2006-06-01,"New Hampshire",259 -2006-07-01,"New Hampshire",174 -2006-08-01,"New Hampshire",152 -2006-09-01,"New Hampshire",173 -2006-10-01,"New Hampshire",281 -2006-11-01,"New Hampshire",493 -2006-12-01,"New Hampshire",780 -2007-01-01,"New Hampshire",1053 -2007-02-01,"New Hampshire",1365 -2007-03-01,"New Hampshire",1227 -2007-04-01,"New Hampshire",779 -2007-05-01,"New Hampshire",417 -2007-06-01,"New Hampshire",219 -2007-07-01,"New Hampshire",167 -2007-08-01,"New Hampshire",151 -2007-09-01,"New Hampshire",174 -2007-10-01,"New Hampshire",205 -2007-11-01,"New Hampshire",517 -2007-12-01,"New Hampshire",1122 -2008-01-01,"New Hampshire",1238 -2008-02-01,"New Hampshire",1155 -2008-03-01,"New Hampshire",1044 -2008-04-01,"New Hampshire",556 -2008-05-01,"New Hampshire",310 -2008-06-01,"New Hampshire",167 -2008-07-01,"New Hampshire",156 -2008-08-01,"New Hampshire",111 -2008-09-01,"New Hampshire",161 -2008-10-01,"New Hampshire",395 -2008-11-01,"New Hampshire",688 -2008-12-01,"New Hampshire",1073 -2009-01-01,"New Hampshire",1440 -2009-02-01,"New Hampshire",1156 -2009-03-01,"New Hampshire",995 -2009-04-01,"New Hampshire",581 -2009-05-01,"New Hampshire",297 -2009-06-01,"New Hampshire",272 -2009-07-01,"New Hampshire",229 -2009-08-01,"New Hampshire",132 -2009-09-01,"New Hampshire",170 -2009-10-01,"New Hampshire",373 -2009-11-01,"New Hampshire",555 -2009-12-01,"New Hampshire",1013 -2010-01-01,"New Hampshire",1305 -2010-02-01,"New Hampshire",1033 -2010-03-01,"New Hampshire",780 -2010-04-01,"New Hampshire",464 -2010-05-01,"New Hampshire",299 -2010-06-01,"New Hampshire",199 -2010-07-01,"New Hampshire",159 -2010-08-01,"New Hampshire",180 -2010-09-01,"New Hampshire",153 -2010-10-01,"New Hampshire",338 -2010-11-01,"New Hampshire",663 -2010-12-01,"New Hampshire",1163 -2011-01-01,"New Hampshire",1391 -2011-02-01,"New Hampshire",1219 -2011-03-01,"New Hampshire",971 -2011-04-01,"New Hampshire",594 -2011-05-01,"New Hampshire",317 -2011-06-01,"New Hampshire",241 -2011-07-01,"New Hampshire",160 -2011-08-01,"New Hampshire",186 -2011-09-01,"New Hampshire",150 -2011-10-01,"New Hampshire",267 -2011-11-01,"New Hampshire",560 -2011-12-01,"New Hampshire",899 -2012-01-01,"New Hampshire",1231 -2012-02-01,"New Hampshire",995 -2012-03-01,"New Hampshire",765 -2012-04-01,"New Hampshire",463 -2012-05-01,"New Hampshire",287 -2012-06-01,"New Hampshire",185 -2012-07-01,"New Hampshire",146 -2012-08-01,"New Hampshire",144 -2012-09-01,"New Hampshire",128 -2012-10-01,"New Hampshire",282 -2012-11-01,"New Hampshire",750 -2012-12-01,"New Hampshire",1046 -2013-01-01,"New Hampshire",1146 -2013-02-01,"New Hampshire",1201 -2013-03-01,"New Hampshire",1024 -2013-04-01,"New Hampshire",757 -2013-05-01,"New Hampshire",389 -2013-06-01,"New Hampshire",226 -2013-07-01,"New Hampshire",136 -2013-08-01,"New Hampshire",155 -2013-09-01,"New Hampshire",184 -2013-10-01,"New Hampshire",208 -2013-11-01,"New Hampshire",507 -2013-12-01,"New Hampshire",1253 -2014-01-01,"New Hampshire",1476 -2014-02-01,"New Hampshire",1210 -2014-03-01,"New Hampshire",1207 -2014-04-01,"New Hampshire",535 -2014-05-01,"New Hampshire",454 -2014-06-01,"New Hampshire",217 -2014-07-01,"New Hampshire",142 -2014-08-01,"New Hampshire",138 -2014-09-01,"New Hampshire",172 -2014-10-01,"New Hampshire",338 -2014-11-01,"New Hampshire",795 -2014-12-01,"New Hampshire",1072 -2015-01-01,"New Hampshire",1691 -2015-02-01,"New Hampshire",1665 -2015-03-01,"New Hampshire",1197 -2015-04-01,"New Hampshire",596 -2015-05-01,"New Hampshire",244 -2015-06-01,"New Hampshire",186 -2015-07-01,"New Hampshire",151 -2015-08-01,"New Hampshire",146 -2015-09-01,"New Hampshire",153 -2015-10-01,"New Hampshire",251 -2015-11-01,"New Hampshire",680 -2015-12-01,"New Hampshire",884 -2016-01-01,"New Hampshire",1293 -2016-02-01,"New Hampshire",1101 -2016-03-01,"New Hampshire",806 -2016-04-01,"New Hampshire",606 -2016-05-01,"New Hampshire",294 -2016-06-01,"New Hampshire",168 -2016-07-01,"New Hampshire",130 -2016-08-01,"New Hampshire",129 -2016-09-01,"New Hampshire",153 -2016-10-01,"New Hampshire",231 -2016-11-01,"New Hampshire",701 -2016-12-01,"New Hampshire",1249 -2017-01-01,"New Hampshire",1235 -2017-02-01,"New Hampshire",999 -2017-03-01,"New Hampshire",1184 -2017-04-01,"New Hampshire",478 -2017-05-01,"New Hampshire",338 -2017-06-01,"New Hampshire",176 -2017-07-01,"New Hampshire",137 -2017-08-01,"New Hampshire",158 -2017-09-01,"New Hampshire",155 -2017-10-01,"New Hampshire",257 -2017-11-01,"New Hampshire",787 -2017-12-01,"New Hampshire",1428 -2018-01-01,"New Hampshire",1636 -2018-02-01,"New Hampshire",1048 -2018-03-01,"New Hampshire",1144 -2018-04-01,"New Hampshire",768 -2018-05-01,"New Hampshire",239 -2018-06-01,"New Hampshire",181 -2018-07-01,"New Hampshire",143 -2018-08-01,"New Hampshire",156 -2018-09-01,"New Hampshire",179 -2018-10-01,"New Hampshire",270 -2018-11-01,"New Hampshire",1050 -2018-12-01,"New Hampshire",1321 -2019-01-01,"New Hampshire",1639 -2019-02-01,"New Hampshire",1338 -2019-03-01,"New Hampshire",1130 -2019-04-01,"New Hampshire",610 -2019-05-01,"New Hampshire",375 -2019-06-01,"New Hampshire",182 -2019-07-01,"New Hampshire",150 -2019-08-01,"New Hampshire",150 -2019-09-01,"New Hampshire",187 -2019-10-01,"New Hampshire",253 -2019-11-01,"New Hampshire",626 -2019-12-01,"New Hampshire",1396 -2020-01-01,"New Hampshire",1276 -2020-02-01,"New Hampshire",1192 -2020-03-01,"New Hampshire",867 -2020-04-01,"New Hampshire",646 -2020-05-01,"New Hampshire",327 -2020-06-01,"New Hampshire",156 -2020-07-01,"New Hampshire",160 -2020-08-01,"New Hampshire",138 -2020-09-01,"New Hampshire",183 -2020-10-01,"New Hampshire",221 -2020-11-01,"New Hampshire",484 -2020-12-01,"New Hampshire",1238 -2021-01-01,"New Hampshire",1432 -2021-02-01,"New Hampshire",1275 -1989-01-01,"New Jersey",31078 -1989-02-01,"New Jersey",29095 -1989-03-01,"New Jersey",27754 -1989-04-01,"New Jersey",17680 -1989-05-01,"New Jersey",10547 -1989-06-01,"New Jersey",6101 -1989-07-01,"New Jersey",5231 -1989-08-01,"New Jersey",4778 -1989-09-01,"New Jersey",5283 -1989-10-01,"New Jersey",8933 -1989-11-01,"New Jersey",15715 -1989-12-01,"New Jersey",33347 -1990-01-01,"New Jersey",32311 -1990-02-01,"New Jersey",24403 -1990-03-01,"New Jersey",23115 -1990-04-01,"New Jersey",17743 -1990-05-01,"New Jersey",9578 -1990-06-01,"New Jersey",6157 -1990-07-01,"New Jersey",5017 -1990-08-01,"New Jersey",4515 -1990-09-01,"New Jersey",5336 -1990-10-01,"New Jersey",6708 -1990-11-01,"New Jersey",14180 -1990-12-01,"New Jersey",22596 -1991-01-01,"New Jersey",30731 -1991-02-01,"New Jersey",27476 -1991-03-01,"New Jersey",24120 -1991-04-01,"New Jersey",16279 -1991-05-01,"New Jersey",8515 -1991-06-01,"New Jersey",5361 -1991-07-01,"New Jersey",4707 -1991-08-01,"New Jersey",4563 -1991-09-01,"New Jersey",5168 -1991-10-01,"New Jersey",8750 -1991-11-01,"New Jersey",16235 -1991-12-01,"New Jersey",24735 -1992-01-01,"New Jersey",31150 -1992-02-01,"New Jersey",31006 -1992-03-01,"New Jersey",26880 -1992-04-01,"New Jersey",20212 -1992-05-01,"New Jersey",11680 -1992-06-01,"New Jersey",6166 -1992-07-01,"New Jersey",5239 -1992-08-01,"New Jersey",4918 -1992-09-01,"New Jersey",5338 -1992-10-01,"New Jersey",10368 -1992-11-01,"New Jersey",17953 -1992-12-01,"New Jersey",27553 -1993-01-01,"New Jersey",29736 -1993-02-01,"New Jersey",33593 -1993-03-01,"New Jersey",30688 -1993-04-01,"New Jersey",19409 -1993-05-01,"New Jersey",8489 -1993-06-01,"New Jersey",5799 -1993-07-01,"New Jersey",4956 -1993-08-01,"New Jersey",4483 -1993-09-01,"New Jersey",5149 -1993-10-01,"New Jersey",9600 -1993-11-01,"New Jersey",17162 -1993-12-01,"New Jersey",26505 -1994-01-01,"New Jersey",43772 -1994-02-01,"New Jersey",40563 -1994-03-01,"New Jersey",31677 -1994-04-01,"New Jersey",18003 -1994-05-01,"New Jersey",9046 -1994-06-01,"New Jersey",6362 -1994-07-01,"New Jersey",5307 -1994-08-01,"New Jersey",5278 -1994-09-01,"New Jersey",5873 -1994-10-01,"New Jersey",9903 -1994-11-01,"New Jersey",14676 -1994-12-01,"New Jersey",26412 -1995-01-01,"New Jersey",30505 -1995-02-01,"New Jersey",33594 -1995-03-01,"New Jersey",25526 -1995-04-01,"New Jersey",17191 -1995-05-01,"New Jersey",9274 -1995-06-01,"New Jersey",5427 -1995-07-01,"New Jersey",4768 -1995-08-01,"New Jersey",4378 -1995-09-01,"New Jersey",4957 -1995-10-01,"New Jersey",7195 -1995-11-01,"New Jersey",18422 -1995-12-01,"New Jersey",33195 -1996-01-01,"New Jersey",41314 -1996-02-01,"New Jersey",36979 -1996-03-01,"New Jersey",31467 -1996-04-01,"New Jersey",20410 -1996-05-01,"New Jersey",11915 -1996-06-01,"New Jersey",6412 -1996-07-01,"New Jersey",5103 -1996-08-01,"New Jersey",4715 -1996-09-01,"New Jersey",5472 -1996-10-01,"New Jersey",9917 -1996-11-01,"New Jersey",18933 -1996-12-01,"New Jersey",29983 -1997-01-01,"New Jersey",36513 -1997-02-01,"New Jersey",33410 -1997-03-01,"New Jersey",32686 -1997-04-01,"New Jersey",20284 -1997-05-01,"New Jersey",11505 -1997-06-01,"New Jersey",6599 -1997-07-01,"New Jersey",5214 -1997-08-01,"New Jersey",4726 -1997-09-01,"New Jersey",5397 -1997-10-01,"New Jersey",9250 -1997-11-01,"New Jersey",20208 -1997-12-01,"New Jersey",31134 -1998-01-01,"New Jersey",32534 -1998-02-01,"New Jersey",31571 -1998-03-01,"New Jersey",28392 -1998-04-01,"New Jersey",18824 -1998-05-01,"New Jersey",12559 -1998-06-01,"New Jersey",6164 -1998-07-01,"New Jersey",5345 -1998-08-01,"New Jersey",4945 -1998-09-01,"New Jersey",5100 -1998-10-01,"New Jersey",8720 -1998-11-01,"New Jersey",17413 -1998-12-01,"New Jersey",25091 -1999-01-01,"New Jersey",40333 -1999-02-01,"New Jersey",33726 -1999-03-01,"New Jersey",32578 -1999-04-01,"New Jersey",19343 -1999-05-01,"New Jersey",10520 -1999-06-01,"New Jersey",6254 -1999-07-01,"New Jersey",5041 -1999-08-01,"New Jersey",4800 -1999-09-01,"New Jersey",5432 -1999-10-01,"New Jersey",10322 -1999-11-01,"New Jersey",18160 -1999-12-01,"New Jersey",22890 -2000-01-01,"New Jersey",38111 -2000-02-01,"New Jersey",37885 -2000-03-01,"New Jersey",25021 -2000-04-01,"New Jersey",17746 -2000-05-01,"New Jersey",11043 -2000-06-01,"New Jersey",6216 -2000-07-01,"New Jersey",4998 -2000-08-01,"New Jersey",5115 -2000-09-01,"New Jersey",5939 -2000-10-01,"New Jersey",10449 -2000-11-01,"New Jersey",20021 -2000-12-01,"New Jersey",37333 -2001-01-01,"New Jersey",43411 -2001-02-01,"New Jersey",34488 -2001-03-01,"New Jersey",33780 -2001-04-01,"New Jersey",21123 -2001-05-01,"New Jersey",9488 -2001-06-01,"New Jersey",6217 -2001-07-01,"New Jersey",5039 -2001-08-01,"New Jersey",5003 -2001-09-01,"New Jersey",5671 -2001-10-01,"New Jersey",9944 -2001-11-01,"New Jersey",16307 -2001-12-01,"New Jersey",24524 -2002-01-01,"New Jersey",34373 -2002-02-01,"New Jersey",30291 -2002-03-01,"New Jersey",27277 -2002-04-01,"New Jersey",17532 -2002-05-01,"New Jersey",10513 -2002-06-01,"New Jersey",6250 -2002-07-01,"New Jersey",4973 -2002-08-01,"New Jersey",4993 -2002-09-01,"New Jersey",5117 -2002-10-01,"New Jersey",10006 -2002-11-01,"New Jersey",21927 -2002-12-01,"New Jersey",36586 -2003-01-01,"New Jersey",45576 -2003-02-01,"New Jersey",43553 -2003-03-01,"New Jersey",34147 -2003-04-01,"New Jersey",22238 -2003-05-01,"New Jersey",12159 -2003-06-01,"New Jersey",7215 -2003-07-01,"New Jersey",5605 -2003-08-01,"New Jersey",5114 -2003-09-01,"New Jersey",5162 -2003-10-01,"New Jersey",10715 -2003-11-01,"New Jersey",17750 -2003-12-01,"New Jersey",34526 -2004-01-01,"New Jersey",46941 -2004-02-01,"New Jersey",43089 -2004-03-01,"New Jersey",29563 -2004-04-01,"New Jersey",20576 -2004-05-01,"New Jersey",8867 -2004-06-01,"New Jersey",6026 -2004-07-01,"New Jersey",5433 -2004-08-01,"New Jersey",5428 -2004-09-01,"New Jersey",5387 -2004-10-01,"New Jersey",9624 -2004-11-01,"New Jersey",19039 -2004-12-01,"New Jersey",32498 -2005-01-01,"New Jersey",41748 -2005-02-01,"New Jersey",39591 -2005-03-01,"New Jersey",36983 -2005-04-01,"New Jersey",18650 -2005-05-01,"New Jersey",11646 -2005-06-01,"New Jersey",6110 -2005-07-01,"New Jersey",5255 -2005-08-01,"New Jersey",5182 -2005-09-01,"New Jersey",4991 -2005-10-01,"New Jersey",7946 -2005-11-01,"New Jersey",17217 -2005-12-01,"New Jersey",35745 -2006-01-01,"New Jersey",34405 -2006-02-01,"New Jersey",34106 -2006-03-01,"New Jersey",31475 -2006-04-01,"New Jersey",16112 -2006-05-01,"New Jersey",7601 -2006-06-01,"New Jersey",6020 -2006-07-01,"New Jersey",5385 -2006-08-01,"New Jersey",4566 -2006-09-01,"New Jersey",5621 -2006-10-01,"New Jersey",9337 -2006-11-01,"New Jersey",16732 -2006-12-01,"New Jersey",25844 -2007-01-01,"New Jersey",35171 -2007-02-01,"New Jersey",44605 -2007-03-01,"New Jersey",30977 -2007-04-01,"New Jersey",19022 -2007-05-01,"New Jersey",8036 -2007-06-01,"New Jersey",5625 -2007-07-01,"New Jersey",5288 -2007-08-01,"New Jersey",5240 -2007-09-01,"New Jersey",5487 -2007-10-01,"New Jersey",8141 -2007-11-01,"New Jersey",23620 -2007-12-01,"New Jersey",36838 -2008-01-01,"New Jersey",38100 -2008-02-01,"New Jersey",36824 -2008-03-01,"New Jersey",29239 -2008-04-01,"New Jersey",13502 -2008-05-01,"New Jersey",9073 -2008-06-01,"New Jersey",5723 -2008-07-01,"New Jersey",5242 -2008-08-01,"New Jersey",5057 -2008-09-01,"New Jersey",5086 -2008-10-01,"New Jersey",12249 -2008-11-01,"New Jersey",24556 -2008-12-01,"New Jersey",35780 -2009-01-01,"New Jersey",48896 -2009-02-01,"New Jersey",33787 -2009-03-01,"New Jersey",30448 -2009-04-01,"New Jersey",15204 -2009-05-01,"New Jersey",7442 -2009-06-01,"New Jersey",6423 -2009-07-01,"New Jersey",5302 -2009-08-01,"New Jersey",5149 -2009-09-01,"New Jersey",5214 -2009-10-01,"New Jersey",12144 -2009-11-01,"New Jersey",17955 -2009-12-01,"New Jersey",38053 -2010-01-01,"New Jersey",43536 -2010-02-01,"New Jersey",37453 -2010-03-01,"New Jersey",22975 -2010-04-01,"New Jersey",11017 -2010-05-01,"New Jersey",8093 -2010-06-01,"New Jersey",5262 -2010-07-01,"New Jersey",4510 -2010-08-01,"New Jersey",4790 -2010-09-01,"New Jersey",4639 -2010-10-01,"New Jersey",9363 -2010-11-01,"New Jersey",23528 -2010-12-01,"New Jersey",43975 -2011-01-01,"New Jersey",48881 -2011-02-01,"New Jersey",35372 -2011-03-01,"New Jersey",30676 -2011-04-01,"New Jersey",15649 -2011-05-01,"New Jersey",7831 -2011-06-01,"New Jersey",6111 -2011-07-01,"New Jersey",5540 -2011-08-01,"New Jersey",4668 -2011-09-01,"New Jersey",4920 -2011-10-01,"New Jersey",8785 -2011-11-01,"New Jersey",17569 -2011-12-01,"New Jersey",27628 -2012-01-01,"New Jersey",38527 -2012-02-01,"New Jersey",30221 -2012-03-01,"New Jersey",21637 -2012-04-01,"New Jersey",15121 -2012-05-01,"New Jersey",8417 -2012-06-01,"New Jersey",5630 -2012-07-01,"New Jersey",4836 -2012-08-01,"New Jersey",4822 -2012-09-01,"New Jersey",5000 -2012-10-01,"New Jersey",8095 -2012-11-01,"New Jersey",20129 -2012-12-01,"New Jersey",28936 -2013-01-01,"New Jersey",39912 -2013-02-01,"New Jersey",37407 -2013-03-01,"New Jersey",34257 -2013-04-01,"New Jersey",20025 -2013-05-01,"New Jersey",8898 -2013-06-01,"New Jersey",6307 -2013-07-01,"New Jersey",5088 -2013-08-01,"New Jersey",4660 -2013-09-01,"New Jersey",5035 -2013-10-01,"New Jersey",8021 -2013-11-01,"New Jersey",23199 -2013-12-01,"New Jersey",33386 -2014-01-01,"New Jersey",50138 -2014-02-01,"New Jersey",44067 -2014-03-01,"New Jersey",38911 -2014-04-01,"New Jersey",18446 -2014-05-01,"New Jersey",9581 -2014-06-01,"New Jersey",6079 -2014-07-01,"New Jersey",5388 -2014-08-01,"New Jersey",4865 -2014-09-01,"New Jersey",5091 -2014-10-01,"New Jersey",8303 -2014-11-01,"New Jersey",24417 -2014-12-01,"New Jersey",32458 -2015-01-01,"New Jersey",47059 -2015-02-01,"New Jersey",50550 -2015-03-01,"New Jersey",41241 -2015-04-01,"New Jersey",21273 -2015-05-01,"New Jersey",8995 -2015-06-01,"New Jersey",6160 -2015-07-01,"New Jersey",5481 -2015-08-01,"New Jersey",4589 -2015-09-01,"New Jersey",4507 -2015-10-01,"New Jersey",8928 -2015-11-01,"New Jersey",16145 -2015-12-01,"New Jersey",22176 -2016-01-01,"New Jersey",42724 -2016-02-01,"New Jersey",34983 -2016-03-01,"New Jersey",23954 -2016-04-01,"New Jersey",17908 -2016-05-01,"New Jersey",10809 -2016-06-01,"New Jersey",6416 -2016-07-01,"New Jersey",5739 -2016-08-01,"New Jersey",4313 -2016-09-01,"New Jersey",4706 -2016-10-01,"New Jersey",8782 -2016-11-01,"New Jersey",18709 -2016-12-01,"New Jersey",36467 -2017-01-01,"New Jersey",39766 -2017-02-01,"New Jersey",30429 -2017-03-01,"New Jersey",34082 -2017-04-01,"New Jersey",14798 -2017-05-01,"New Jersey",9356 -2017-06-01,"New Jersey",6185 -2017-07-01,"New Jersey",4857 -2017-08-01,"New Jersey",4276 -2017-09-01,"New Jersey",4338 -2017-10-01,"New Jersey",8807 -2017-11-01,"New Jersey",21619 -2017-12-01,"New Jersey",43097 -2018-01-01,"New Jersey",51148 -2018-02-01,"New Jersey",31553 -2018-03-01,"New Jersey",38286 -2018-04-01,"New Jersey",23748 -2018-05-01,"New Jersey",7904 -2018-06-01,"New Jersey",6134 -2018-07-01,"New Jersey",4944 -2018-08-01,"New Jersey",4473 -2018-09-01,"New Jersey",4872 -2018-10-01,"New Jersey",11138 -2018-11-01,"New Jersey",26587 -2018-12-01,"New Jersey",36799 -2019-01-01,"New Jersey",44555 -2019-02-01,"New Jersey",38557 -2019-03-01,"New Jersey",34457 -2019-04-01,"New Jersey",14838 -2019-05-01,"New Jersey",9825 -2019-06-01,"New Jersey",6644 -2019-07-01,"New Jersey",4900 -2019-08-01,"New Jersey",4207 -2019-09-01,"New Jersey",5000 -2019-10-01,"New Jersey",8747 -2019-11-01,"New Jersey",28230 -2019-12-01,"New Jersey",39094 -2020-01-01,"New Jersey",43677 -2020-02-01,"New Jersey",30994 -2020-03-01,"New Jersey",24118 -2020-04-01,"New Jersey",20542 -2020-05-01,"New Jersey",12651 -2020-06-01,"New Jersey",6631 -2020-07-01,"New Jersey",6385 -2020-08-01,"New Jersey",4567 -2020-09-01,"New Jersey",5312 -2020-10-01,"New Jersey",8861 -2020-11-01,"New Jersey",19768 -2020-12-01,"New Jersey",38106 -2021-01-01,"New Jersey",44224 -2021-02-01,"New Jersey",41470 -1989-01-01,"New Mexico",5623 -1989-02-01,"New Mexico",4696 -1989-03-01,"New Mexico",3345 -1989-04-01,"New Mexico",1960 -1989-05-01,"New Mexico",1111 -1989-06-01,"New Mexico",910 -1989-07-01,"New Mexico",829 -1989-08-01,"New Mexico",734 -1989-09-01,"New Mexico",765 -1989-10-01,"New Mexico",899 -1989-11-01,"New Mexico",1975 -1989-12-01,"New Mexico",3746 -1990-01-01,"New Mexico",5350 -1990-02-01,"New Mexico",4743 -1990-03-01,"New Mexico",3855 -1990-04-01,"New Mexico",2541 -1990-05-01,"New Mexico",1671 -1990-06-01,"New Mexico",1043 -1990-07-01,"New Mexico",795 -1990-08-01,"New Mexico",755 -1990-09-01,"New Mexico",811 -1990-10-01,"New Mexico",947 -1990-11-01,"New Mexico",1874 -1990-12-01,"New Mexico",3762 -1991-01-01,"New Mexico",5664 -1991-02-01,"New Mexico",4784 -1991-03-01,"New Mexico",3632 -1991-04-01,"New Mexico",3030 -1991-05-01,"New Mexico",1732 -1991-06-01,"New Mexico",1079 -1991-07-01,"New Mexico",880 -1991-08-01,"New Mexico",778 -1991-09-01,"New Mexico",811 -1991-10-01,"New Mexico",1052 -1991-11-01,"New Mexico",1926 -1991-12-01,"New Mexico",4398 -1992-01-01,"New Mexico",5968 -1992-02-01,"New Mexico",5376 -1992-03-01,"New Mexico",3842 -1992-04-01,"New Mexico",2723 -1992-05-01,"New Mexico",1514 -1992-06-01,"New Mexico",1122 -1992-07-01,"New Mexico",929 -1992-08-01,"New Mexico",851 -1992-09-01,"New Mexico",889 -1992-10-01,"New Mexico",1033 -1992-11-01,"New Mexico",1992 -1992-12-01,"New Mexico",5194 -1993-01-01,"New Mexico",5542 -1993-02-01,"New Mexico",4610 -1993-03-01,"New Mexico",3478 -1993-04-01,"New Mexico",1890 -1993-05-01,"New Mexico",979 -1993-06-01,"New Mexico",442 -1993-07-01,"New Mexico",964 -1993-08-01,"New Mexico",849 -1993-09-01,"New Mexico",929 -1993-10-01,"New Mexico",2000 -1993-11-01,"New Mexico",4358 -1993-12-01,"New Mexico",5803 -1994-01-01,"New Mexico",4824 -1994-02-01,"New Mexico",4762 -1994-03-01,"New Mexico",3326 -1994-04-01,"New Mexico",2062 -1994-05-01,"New Mexico",1070 -1994-06-01,"New Mexico",957 -1994-07-01,"New Mexico",909 -1994-08-01,"New Mexico",805 -1994-09-01,"New Mexico",872 -1994-10-01,"New Mexico",2174 -1994-11-01,"New Mexico",4024 -1994-12-01,"New Mexico",5084 -1995-01-01,"New Mexico",5335 -1995-02-01,"New Mexico",3968 -1995-03-01,"New Mexico",2699 -1995-04-01,"New Mexico",2282 -1995-05-01,"New Mexico",1734 -1995-06-01,"New Mexico",1371 -1995-07-01,"New Mexico",757 -1995-08-01,"New Mexico",815 -1995-09-01,"New Mexico",814 -1995-10-01,"New Mexico",1319 -1995-11-01,"New Mexico",3027 -1995-12-01,"New Mexico",4649 -1996-01-01,"New Mexico",7103 -1996-02-01,"New Mexico",4620 -1996-03-01,"New Mexico",3085 -1996-04-01,"New Mexico",2586 -1996-05-01,"New Mexico",610 -1996-06-01,"New Mexico",1701 -1996-07-01,"New Mexico",1623 -1996-08-01,"New Mexico",836 -1996-09-01,"New Mexico",844 -1996-10-01,"New Mexico",1330 -1996-11-01,"New Mexico",3689 -1996-12-01,"New Mexico",5663 -1997-01-01,"New Mexico",7369 -1997-02-01,"New Mexico",5668 -1997-03-01,"New Mexico",3836 -1997-04-01,"New Mexico",1513 -1997-05-01,"New Mexico",1965 -1997-06-01,"New Mexico",239 -1997-07-01,"New Mexico",820 -1997-08-01,"New Mexico",849 -1997-09-01,"New Mexico",836 -1997-10-01,"New Mexico",1217 -1997-11-01,"New Mexico",4095 -1997-12-01,"New Mexico",8217 -1998-01-01,"New Mexico",8001 -1998-02-01,"New Mexico",4387 -1998-03-01,"New Mexico",4776 -1998-04-01,"New Mexico",2609 -1998-05-01,"New Mexico",1279 -1998-06-01,"New Mexico",286 -1998-07-01,"New Mexico",828 -1998-08-01,"New Mexico",846 -1998-09-01,"New Mexico",841 -1998-10-01,"New Mexico",1171 -1998-11-01,"New Mexico",3552 -1998-12-01,"New Mexico",7299 -1999-01-01,"New Mexico",6485 -1999-02-01,"New Mexico",4070 -1999-03-01,"New Mexico",4413 -1999-04-01,"New Mexico",2419 -1999-05-01,"New Mexico",1642 -1999-06-01,"New Mexico",1117 -1999-07-01,"New Mexico",951 -1999-08-01,"New Mexico",801 -1999-09-01,"New Mexico",1024 -1999-10-01,"New Mexico",2280 -1999-11-01,"New Mexico",4083 -1999-12-01,"New Mexico",6263 -2000-01-01,"New Mexico",5161 -2000-02-01,"New Mexico",4407 -2000-03-01,"New Mexico",3424 -2000-04-01,"New Mexico",3415 -2000-05-01,"New Mexico",1149 -2000-06-01,"New Mexico",1577 -2000-07-01,"New Mexico",970 -2000-08-01,"New Mexico",984 -2000-09-01,"New Mexico",1217 -2000-10-01,"New Mexico",2505 -2000-11-01,"New Mexico",4663 -2000-12-01,"New Mexico",6450 -2001-01-01,"New Mexico",6597 -2001-02-01,"New Mexico",6721 -2001-03-01,"New Mexico",4911 -2001-04-01,"New Mexico",3231 -2001-05-01,"New Mexico",1849 -2001-06-01,"New Mexico",1058 -2001-07-01,"New Mexico",891 -2001-08-01,"New Mexico",847 -2001-09-01,"New Mexico",903 -2001-10-01,"New Mexico",1112 -2001-11-01,"New Mexico",1894 -2001-12-01,"New Mexico",4737 -2002-01-01,"New Mexico",6188 -2002-02-01,"New Mexico",6169 -2002-03-01,"New Mexico",4998 -2002-04-01,"New Mexico",2675 -2002-05-01,"New Mexico",1279 -2002-06-01,"New Mexico",968 -2002-07-01,"New Mexico",825 -2002-08-01,"New Mexico",819 -2002-09-01,"New Mexico",839 -2002-10-01,"New Mexico",1150 -2002-11-01,"New Mexico",2689 -2002-12-01,"New Mexico",4901 -2003-01-01,"New Mexico",6080 -2003-02-01,"New Mexico",5069 -2003-03-01,"New Mexico",4600 -2003-04-01,"New Mexico",3078 -2003-05-01,"New Mexico",1635 -2003-06-01,"New Mexico",1009 -2003-07-01,"New Mexico",835 -2003-08-01,"New Mexico",754 -2003-09-01,"New Mexico",815 -2003-10-01,"New Mexico",976 -2003-11-01,"New Mexico",2005 -2003-12-01,"New Mexico",4766 -2004-01-01,"New Mexico",6127 -2004-02-01,"New Mexico",6200 -2004-03-01,"New Mexico",5076 -2004-04-01,"New Mexico",2634 -2004-05-01,"New Mexico",1729 -2004-06-01,"New Mexico",996 -2004-07-01,"New Mexico",870 -2004-08-01,"New Mexico",836 -2004-09-01,"New Mexico",863 -2004-10-01,"New Mexico",1203 -2004-11-01,"New Mexico",2681 -2004-12-01,"New Mexico",5124 -2005-01-01,"New Mexico",5990 -2005-02-01,"New Mexico",5440 -2005-03-01,"New Mexico",4597 -2005-04-01,"New Mexico",3655 -2005-05-01,"New Mexico",1891 -2005-06-01,"New Mexico",1070 -2005-07-01,"New Mexico",880 -2005-08-01,"New Mexico",827 -2005-09-01,"New Mexico",869 -2005-10-01,"New Mexico",1081 -2005-11-01,"New Mexico",2100 -2005-12-01,"New Mexico",4844 -2006-01-01,"New Mexico",5103 -2006-02-01,"New Mexico",5061 -2006-03-01,"New Mexico",4165 -2006-04-01,"New Mexico",2768 -2006-05-01,"New Mexico",1313 -2006-06-01,"New Mexico",943 -2006-07-01,"New Mexico",831 -2006-08-01,"New Mexico",820 -2006-09-01,"New Mexico",887 -2006-10-01,"New Mexico",1217 -2006-11-01,"New Mexico",2470 -2006-12-01,"New Mexico",4856 -2007-01-01,"New Mexico",6769 -2007-02-01,"New Mexico",6276 -2007-03-01,"New Mexico",4802 -2007-04-01,"New Mexico",2600 -2007-05-01,"New Mexico",1892 -2007-06-01,"New Mexico",1118 -2007-07-01,"New Mexico",875 -2007-08-01,"New Mexico",841 -2007-09-01,"New Mexico",843 -2007-10-01,"New Mexico",1073 -2007-11-01,"New Mexico",1975 -2007-12-01,"New Mexico",4406 -2008-01-01,"New Mexico",6996 -2008-02-01,"New Mexico",6524 -2008-03-01,"New Mexico",4624 -2008-04-01,"New Mexico",2810 -2008-05-01,"New Mexico",1733 -2008-06-01,"New Mexico",1109 -2008-07-01,"New Mexico",876 -2008-08-01,"New Mexico",803 -2008-09-01,"New Mexico",863 -2008-10-01,"New Mexico",1084 -2008-11-01,"New Mexico",2219 -2008-12-01,"New Mexico",4355 -2009-01-01,"New Mexico",6015 -2009-02-01,"New Mexico",4445 -2009-03-01,"New Mexico",4123 -2009-04-01,"New Mexico",3227 -2009-05-01,"New Mexico",1749 -2009-06-01,"New Mexico",1025 -2009-07-01,"New Mexico",887 -2009-08-01,"New Mexico",830 -2009-09-01,"New Mexico",861 -2009-10-01,"New Mexico",1211 -2009-11-01,"New Mexico",2614 -2009-12-01,"New Mexico",5418 -2010-01-01,"New Mexico",6702 -2010-02-01,"New Mexico",6297 -2010-03-01,"New Mexico",5032 -2010-04-01,"New Mexico",3400 -2010-05-01,"New Mexico",1818 -2010-06-01,"New Mexico",1081 -2010-07-01,"New Mexico",837 -2010-08-01,"New Mexico",817 -2010-09-01,"New Mexico",828 -2010-10-01,"New Mexico",1052 -2010-11-01,"New Mexico",2355 -2010-12-01,"New Mexico",5035 -2011-01-01,"New Mexico",6501 -2011-02-01,"New Mexico",6594 -2011-03-01,"New Mexico",4217 -2011-04-01,"New Mexico",2305 -2011-05-01,"New Mexico",1641 -2011-06-01,"New Mexico",1144 -2011-07-01,"New Mexico",878 -2011-08-01,"New Mexico",784 -2011-09-01,"New Mexico",857 -2011-10-01,"New Mexico",1187 -2011-11-01,"New Mexico",2692 -2011-12-01,"New Mexico",5501 -2012-01-01,"New Mexico",6455 -2012-02-01,"New Mexico",5360 -2012-03-01,"New Mexico",3667 -2012-04-01,"New Mexico",1775 -2012-05-01,"New Mexico",1168 -2012-06-01,"New Mexico",974 -2012-07-01,"New Mexico",876 -2012-08-01,"New Mexico",899 -2012-09-01,"New Mexico",950 -2012-10-01,"New Mexico",1368 -2012-11-01,"New Mexico",3193 -2012-12-01,"New Mexico",5831 -2013-01-01,"New Mexico",7652 -2013-02-01,"New Mexico",5625 -2013-03-01,"New Mexico",3550 -2013-04-01,"New Mexico",2146 -2013-05-01,"New Mexico",1460 -2013-06-01,"New Mexico",954 -2013-07-01,"New Mexico",798 -2013-08-01,"New Mexico",935 -2013-09-01,"New Mexico",975 -2013-10-01,"New Mexico",1797 -2013-11-01,"New Mexico",3667 -2013-12-01,"New Mexico",6464 -2014-01-01,"New Mexico",6317 -2014-02-01,"New Mexico",4764 -2014-03-01,"New Mexico",3519 -2014-04-01,"New Mexico",2292 -2014-05-01,"New Mexico",1507 -2014-06-01,"New Mexico",1043 -2014-07-01,"New Mexico",936 -2014-08-01,"New Mexico",908 -2014-09-01,"New Mexico",835 -2014-10-01,"New Mexico",1275 -2014-11-01,"New Mexico",3445 -2014-12-01,"New Mexico",5533 -2015-01-01,"New Mexico",6249 -2015-02-01,"New Mexico",5014 -2015-03-01,"New Mexico",3422 -2015-04-01,"New Mexico",1919 -2015-05-01,"New Mexico",1572 -2015-06-01,"New Mexico",1262 -2015-07-01,"New Mexico",808 -2015-08-01,"New Mexico",840 -2015-09-01,"New Mexico",829 -2015-10-01,"New Mexico",1247 -2015-11-01,"New Mexico",3759 -2015-12-01,"New Mexico",6207 -2016-01-01,"New Mexico",6740 -2016-02-01,"New Mexico",4966 -2016-03-01,"New Mexico",3341 -2016-04-01,"New Mexico",2178 -2016-05-01,"New Mexico",1546 -2016-06-01,"New Mexico",1085 -2016-07-01,"New Mexico",839 -2016-08-01,"New Mexico",775 -2016-09-01,"New Mexico",933 -2016-10-01,"New Mexico",1214 -2016-11-01,"New Mexico",3068 -2016-12-01,"New Mexico",5893 -2017-01-01,"New Mexico",6024 -2017-02-01,"New Mexico",4196 -2017-03-01,"New Mexico",2973 -2017-04-01,"New Mexico",2085 -2017-05-01,"New Mexico",1409 -2017-06-01,"New Mexico",951 -2017-07-01,"New Mexico",839 -2017-08-01,"New Mexico",818 -2017-09-01,"New Mexico",866 -2017-10-01,"New Mexico",1517 -2017-11-01,"New Mexico",2871 -2017-12-01,"New Mexico",5445 -2018-01-01,"New Mexico",6205 -2018-02-01,"New Mexico",4603 -2018-03-01,"New Mexico",4389 -2018-04-01,"New Mexico",2020 -2018-05-01,"New Mexico",1117 -2018-06-01,"New Mexico",798 -2018-07-01,"New Mexico",788 -2018-08-01,"New Mexico",847 -2018-09-01,"New Mexico",808 -2018-10-01,"New Mexico",1749 -2018-11-01,"New Mexico",4857 -2018-12-01,"New Mexico",6257 -2019-01-01,"New Mexico",8222 -2019-02-01,"New Mexico",6616 -2019-03-01,"New Mexico",4615 -2019-04-01,"New Mexico",2632 -2019-05-01,"New Mexico",1786 -2019-06-01,"New Mexico",1108 -2019-07-01,"New Mexico",1005 -2019-08-01,"New Mexico",1062 -2019-09-01,"New Mexico",970 -2019-10-01,"New Mexico",2112 -2019-11-01,"New Mexico",5034 -2019-12-01,"New Mexico",7222 -2020-01-01,"New Mexico",6921 -2020-02-01,"New Mexico",NA -2020-03-01,"New Mexico",4766 -2020-04-01,"New Mexico",2454 -2020-05-01,"New Mexico",1230 -2020-06-01,"New Mexico",1050 -2020-07-01,"New Mexico",1078 -2020-08-01,"New Mexico",1001 -2020-09-01,"New Mexico",1168 -2020-10-01,"New Mexico",1740 -2020-11-01,"New Mexico",3565 -2020-12-01,"New Mexico",7031 -2021-01-01,"New Mexico",7322 -2021-02-01,"New Mexico",6287 -1989-01-01,"New York",56307 -1989-02-01,"New York",52502 -1989-03-01,"New York",51981 -1989-04-01,"New York",35963 -1989-05-01,"New York",23868 -1989-06-01,"New York",13364 -1989-07-01,"New York",10098 -1989-08-01,"New York",9189 -1989-09-01,"New York",9514 -1989-10-01,"New York",16060 -1989-11-01,"New York",28576 -1989-12-01,"New York",57291 -1990-01-01,"New York",54059 -1990-02-01,"New York",52751 -1990-03-01,"New York",46615 -1990-04-01,"New York",34434 -1990-05-01,"New York",20503 -1990-06-01,"New York",13138 -1990-07-01,"New York",10258 -1990-08-01,"New York",8933 -1990-09-01,"New York",10089 -1990-10-01,"New York",14793 -1990-11-01,"New York",29074 -1990-12-01,"New York",43341 -1991-01-01,"New York",55999 -1991-02-01,"New York",51173 -1991-03-01,"New York",47603 -1991-04-01,"New York",33457 -1991-05-01,"New York",19738 -1991-06-01,"New York",11231 -1991-07-01,"New York",9292 -1991-08-01,"New York",8622 -1991-09-01,"New York",9542 -1991-10-01,"New York",16338 -1991-11-01,"New York",29610 -1991-12-01,"New York",46288 -1992-01-01,"New York",58076 -1992-02-01,"New York",59000 -1992-03-01,"New York",53492 -1992-04-01,"New York",41548 -1992-05-01,"New York",23835 -1992-06-01,"New York",13470 -1992-07-01,"New York",10509 -1992-08-01,"New York",9649 -1992-09-01,"New York",10006 -1992-10-01,"New York",18633 -1992-11-01,"New York",30758 -1992-12-01,"New York",49715 -1993-01-01,"New York",58856 -1993-02-01,"New York",61673 -1993-03-01,"New York",60184 -1993-04-01,"New York",38778 -1993-05-01,"New York",20123 -1993-06-01,"New York",13685 -1993-07-01,"New York",10003 -1993-08-01,"New York",9069 -1993-09-01,"New York",9719 -1993-10-01,"New York",18990 -1993-11-01,"New York",33567 -1993-12-01,"New York",49569 -1994-01-01,"New York",70935 -1994-02-01,"New York",69054 -1994-03-01,"New York",56809 -1994-04-01,"New York",35998 -1994-05-01,"New York",21764 -1994-06-01,"New York",13362 -1994-07-01,"New York",10073 -1994-08-01,"New York",9505 -1994-09-01,"New York",10123 -1994-10-01,"New York",17017 -1994-11-01,"New York",27143 -1994-12-01,"New York",43626 -1995-01-01,"New York",56657 -1995-02-01,"New York",60717 -1995-03-01,"New York",52596 -1995-04-01,"New York",38254 -1995-05-01,"New York",23334 -1995-06-01,"New York",13817 -1995-07-01,"New York",10010 -1995-08-01,"New York",7634 -1995-09-01,"New York",9330 -1995-10-01,"New York",13159 -1995-11-01,"New York",32655 -1995-12-01,"New York",56841 -1996-01-01,"New York",68033 -1996-02-01,"New York",61203 -1996-03-01,"New York",57763 -1996-04-01,"New York",41232 -1996-05-01,"New York",25231 -1996-06-01,"New York",14186 -1996-07-01,"New York",10129 -1996-08-01,"New York",NA -1996-09-01,"New York",NA -1996-10-01,"New York",NA -1996-11-01,"New York",NA -1996-12-01,"New York",NA -1997-01-01,"New York",62019 -1997-02-01,"New York",56003 -1997-03-01,"New York",51213 -1997-04-01,"New York",37597 -1997-05-01,"New York",24082 -1997-06-01,"New York",14469 -1997-07-01,"New York",9719 -1997-08-01,"New York",10267 -1997-09-01,"New York",9878 -1997-10-01,"New York",17385 -1997-11-01,"New York",34936 -1997-12-01,"New York",48074 -1998-01-01,"New York",54949 -1998-02-01,"New York",51711 -1998-03-01,"New York",48382 -1998-04-01,"New York",32412 -1998-05-01,"New York",18810 -1998-06-01,"New York",12205 -1998-07-01,"New York",15342 -1998-08-01,"New York",8900 -1998-09-01,"New York",9546 -1998-10-01,"New York",15308 -1998-11-01,"New York",30010 -1998-12-01,"New York",41937 -1999-01-01,"New York",66611 -1999-02-01,"New York",57425 -1999-03-01,"New York",56954 -1999-04-01,"New York",35080 -1999-05-01,"New York",18880 -1999-06-01,"New York",14898 -1999-07-01,"New York",9890 -1999-08-01,"New York",8705 -1999-09-01,"New York",9962 -1999-10-01,"New York",17677 -1999-11-01,"New York",28487 -1999-12-01,"New York",46142 -2000-01-01,"New York",65819 -2000-02-01,"New York",66232 -2000-03-01,"New York",48138 -2000-04-01,"New York",37288 -2000-05-01,"New York",22525 -2000-06-01,"New York",14349 -2000-07-01,"New York",10847 -2000-08-01,"New York",10290 -2000-09-01,"New York",11087 -2000-10-01,"New York",18636 -2000-11-01,"New York",33940 -2000-12-01,"New York",61072 -2001-01-01,"New York",70467 -2001-02-01,"New York",60260 -2001-03-01,"New York",58547 -2001-04-01,"New York",37822 -2001-05-01,"New York",18799 -2001-06-01,"New York",13426 -2001-07-01,"New York",9813 -2001-08-01,"New York",9451 -2001-09-01,"New York",10188 -2001-10-01,"New York",16847 -2001-11-01,"New York",27651 -2001-12-01,"New York",42904 -2002-01-01,"New York",56754 -2002-02-01,"New York",51753 -2002-03-01,"New York",49309 -2002-04-01,"New York",34246 -2002-05-01,"New York",23432 -2002-06-01,"New York",13856 -2002-07-01,"New York",9740 -2002-08-01,"New York",9113 -2002-09-01,"New York",9332 -2002-10-01,"New York",17278 -2002-11-01,"New York",36764 -2002-12-01,"New York",58038 -2003-01-01,"New York",68215 -2003-02-01,"New York",73655 -2003-03-01,"New York",61494 -2003-04-01,"New York",42067 -2003-05-01,"New York",25774 -2003-06-01,"New York",14955 -2003-07-01,"New York",10049 -2003-08-01,"New York",8722 -2003-09-01,"New York",9456 -2003-10-01,"New York",17149 -2003-11-01,"New York",28397 -2003-12-01,"New York",49716 -2004-01-01,"New York",68793 -2004-02-01,"New York",70343 -2004-03-01,"New York",54933 -2004-04-01,"New York",40627 -2004-05-01,"New York",22876 -2004-06-01,"New York",13061 -2004-07-01,"New York",9913 -2004-08-01,"New York",9358 -2004-09-01,"New York",9587 -2004-10-01,"New York",15734 -2004-11-01,"New York",29113 -2004-12-01,"New York",48400 -2005-01-01,"New York",66148 -2005-02-01,"New York",68368 -2005-03-01,"New York",65007 -2005-04-01,"New York",41926 -2005-05-01,"New York",26332 -2005-06-01,"New York",14675 -2005-07-01,"New York",10303 -2005-08-01,"New York",9527 -2005-09-01,"New York",9247 -2005-10-01,"New York",14360 -2005-11-01,"New York",27186 -2005-12-01,"New York",53098 -2006-01-01,"New York",57895 -2006-02-01,"New York",59815 -2006-03-01,"New York",55702 -2006-04-01,"New York",33443 -2006-05-01,"New York",18971 -2006-06-01,"New York",12339 -2006-07-01,"New York",9517 -2006-08-01,"New York",8311 -2006-09-01,"New York",9353 -2006-10-01,"New York",18626 -2006-11-01,"New York",30329 -2006-12-01,"New York",42153 -2007-01-01,"New York",57091 -2007-02-01,"New York",71739 -2007-03-01,"New York",60533 -2007-04-01,"New York",41630 -2007-05-01,"New York",20828 -2007-06-01,"New York",11861 -2007-07-01,"New York",9467 -2007-08-01,"New York",10072 -2007-09-01,"New York",9222 -2007-10-01,"New York",12674 -2007-11-01,"New York",35026 -2007-12-01,"New York",60115 -2008-01-01,"New York",64081 -2008-02-01,"New York",63546 -2008-03-01,"New York",57550 -2008-04-01,"New York",34451 -2008-05-01,"New York",20321 -2008-06-01,"New York",12552 -2008-07-01,"New York",9373 -2008-08-01,"New York",8987 -2008-09-01,"New York",10092 -2008-10-01,"New York",18790 -2008-11-01,"New York",36074 -2008-12-01,"New York",58380 -2009-01-01,"New York",77147 -2009-02-01,"New York",65066 -2009-03-01,"New York",56360 -2009-04-01,"New York",37184 -2009-05-01,"New York",18648 -2009-06-01,"New York",12235 -2009-07-01,"New York",9666 -2009-08-01,"New York",9683 -2009-09-01,"New York",10280 -2009-10-01,"New York",20411 -2009-11-01,"New York",30620 -2009-12-01,"New York",57567 -2010-01-01,"New York",71232 -2010-02-01,"New York",64645 -2010-03-01,"New York",47703 -2010-04-01,"New York",26907 -2010-05-01,"New York",17563 -2010-06-01,"New York",10723 -2010-07-01,"New York",8767 -2010-08-01,"New York",8236 -2010-09-01,"New York",9952 -2010-10-01,"New York",17571 -2010-11-01,"New York",37152 -2010-12-01,"New York",70039 -2011-01-01,"New York",77802 -2011-02-01,"New York",65821 -2011-03-01,"New York",56516 -2011-04-01,"New York",34243 -2011-05-01,"New York",16760 -2011-06-01,"New York",11118 -2011-07-01,"New York",8975 -2011-08-01,"New York",9712 -2011-09-01,"New York",9447 -2011-10-01,"New York",19250 -2011-11-01,"New York",32448 -2011-12-01,"New York",51732 -2012-01-01,"New York",65236 -2012-02-01,"New York",57566 -2012-03-01,"New York",37978 -2012-04-01,"New York",26544 -2012-05-01,"New York",15280 -2012-06-01,"New York",10722 -2012-07-01,"New York",9079 -2012-08-01,"New York",8776 -2012-09-01,"New York",9971 -2012-10-01,"New York",17856 -2012-11-01,"New York",43467 -2012-12-01,"New York",55236 -2013-01-01,"New York",68908 -2013-02-01,"New York",65792 -2013-03-01,"New York",60057 -2013-04-01,"New York",33232 -2013-05-01,"New York",17596 -2013-06-01,"New York",11134 -2013-07-01,"New York",9459 -2013-08-01,"New York",9185 -2013-09-01,"New York",11223 -2013-10-01,"New York",16594 -2013-11-01,"New York",44459 -2013-12-01,"New York",68718 -2014-01-01,"New York",79952 -2014-02-01,"New York",74901 -2014-03-01,"New York",70836 -2014-04-01,"New York",38643 -2014-05-01,"New York",26165 -2014-06-01,"New York",12363 -2014-07-01,"New York",10686 -2014-08-01,"New York",9683 -2014-09-01,"New York",11117 -2014-10-01,"New York",16260 -2014-11-01,"New York",45075 -2014-12-01,"New York",62632 -2015-01-01,"New York",89006 -2015-02-01,"New York",91107 -2015-03-01,"New York",74731 -2015-04-01,"New York",36470 -2015-05-01,"New York",18251 -2015-06-01,"New York",13069 -2015-07-01,"New York",10330 -2015-08-01,"New York",10144 -2015-09-01,"New York",10202 -2015-10-01,"New York",20674 -2015-11-01,"New York",33880 -2015-12-01,"New York",44302 -2016-01-01,"New York",74579 -2016-02-01,"New York",66686 -2016-03-01,"New York",47537 -2016-04-01,"New York",36910 -2016-05-01,"New York",22097 -2016-06-01,"New York",12799 -2016-07-01,"New York",10775 -2016-08-01,"New York",9267 -2016-09-01,"New York",9380 -2016-10-01,"New York",18301 -2016-11-01,"New York",37991 -2016-12-01,"New York",66144 -2017-01-01,"New York",72971 -2017-02-01,"New York",60364 -2017-03-01,"New York",68073 -2017-04-01,"New York",30910 -2017-05-01,"New York",20619 -2017-06-01,"New York",13858 -2017-07-01,"New York",10732 -2017-08-01,"New York",10217 -2017-09-01,"New York",10956 -2017-10-01,"New York",15457 -2017-11-01,"New York",42671 -2017-12-01,"New York",75737 -2018-01-01,"New York",91695 -2018-02-01,"New York",64908 -2018-03-01,"New York",68622 -2018-04-01,"New York",48644 -2018-05-01,"New York",19184 -2018-06-01,"New York",12523 -2018-07-01,"New York",11062 -2018-08-01,"New York",9912 -2018-09-01,"New York",10718 -2018-10-01,"New York",23307 -2018-11-01,"New York",55996 -2018-12-01,"New York",69121 -2019-01-01,"New York",88837 -2019-02-01,"New York",73689 -2019-03-01,"New York",70167 -2019-04-01,"New York",34355 -2019-05-01,"New York",22277 -2019-06-01,"New York",12465 -2019-07-01,"New York",10211 -2019-08-01,"New York",9735 -2019-09-01,"New York",10275 -2019-10-01,"New York",17557 -2019-11-01,"New York",52629 -2019-12-01,"New York",71422 -2020-01-01,"New York",73083 -2020-02-01,"New York",65690 -2020-03-01,"New York",52224 -2020-04-01,"New York",40428 -2020-05-01,"New York",25913 -2020-06-01,"New York",13001 -2020-07-01,"New York",11144 -2020-08-01,"New York",10195 -2020-09-01,"New York",11244 -2020-10-01,"New York",17381 -2020-11-01,"New York",39102 -2020-12-01,"New York",70585 -2021-01-01,"New York",79057 -2021-02-01,"New York",76860 -1989-01-01,"North Carolina",6946 -1989-02-01,"North Carolina",5655 -1989-03-01,"North Carolina",6202 -1989-04-01,"North Carolina",3723 -1989-05-01,"North Carolina",1899 -1989-06-01,"North Carolina",1020 -1989-07-01,"North Carolina",744 -1989-08-01,"North Carolina",695 -1989-09-01,"North Carolina",745 -1989-10-01,"North Carolina",1338 -1989-11-01,"North Carolina",2823 -1989-12-01,"North Carolina",6866 -1990-01-01,"North Carolina",8535 -1990-02-01,"North Carolina",4909 -1990-03-01,"North Carolina",4402 -1990-04-01,"North Carolina",3296 -1990-05-01,"North Carolina",1604 -1990-06-01,"North Carolina",957 -1990-07-01,"North Carolina",763 -1990-08-01,"North Carolina",732 -1990-09-01,"North Carolina",752 -1990-10-01,"North Carolina",1070 -1990-11-01,"North Carolina",2985 -1990-12-01,"North Carolina",4998 -1991-01-01,"North Carolina",7073 -1991-02-01,"North Carolina",6819 -1991-03-01,"North Carolina",5529 -1991-04-01,"North Carolina",2963 -1991-05-01,"North Carolina",1490 -1991-06-01,"North Carolina",931 -1991-07-01,"North Carolina",748 -1991-08-01,"North Carolina",756 -1991-09-01,"North Carolina",782 -1991-10-01,"North Carolina",1486 -1991-11-01,"North Carolina",3751 -1991-12-01,"North Carolina",5647 -1992-01-01,"North Carolina",7573 -1992-02-01,"North Carolina",7366 -1992-03-01,"North Carolina",5194 -1992-04-01,"North Carolina",4509 -1992-05-01,"North Carolina",2222 -1992-06-01,"North Carolina",1301 -1992-07-01,"North Carolina",837 -1992-08-01,"North Carolina",734 -1992-09-01,"North Carolina",806 -1992-10-01,"North Carolina",1781 -1992-11-01,"North Carolina",3446 -1992-12-01,"North Carolina",6819 -1993-01-01,"North Carolina",8379 -1993-02-01,"North Carolina",8140 -1993-03-01,"North Carolina",8024 -1993-04-01,"North Carolina",5030 -1993-05-01,"North Carolina",1977 -1993-06-01,"North Carolina",1039 -1993-07-01,"North Carolina",829 -1993-08-01,"North Carolina",761 -1993-09-01,"North Carolina",815 -1993-10-01,"North Carolina",1459 -1993-11-01,"North Carolina",3918 -1993-12-01,"North Carolina",6733 -1994-01-01,"North Carolina",11081 -1994-02-01,"North Carolina",9487 -1994-03-01,"North Carolina",6623 -1994-04-01,"North Carolina",3521 -1994-05-01,"North Carolina",1704 -1994-06-01,"North Carolina",1206 -1994-07-01,"North Carolina",866 -1994-08-01,"North Carolina",806 -1994-09-01,"North Carolina",903 -1994-10-01,"North Carolina",1568 -1994-11-01,"North Carolina",3655 -1994-12-01,"North Carolina",6030 -1995-01-01,"North Carolina",9068 -1995-02-01,"North Carolina",9632 -1995-03-01,"North Carolina",6916 -1995-04-01,"North Carolina",3644 -1995-05-01,"North Carolina",1882 -1995-06-01,"North Carolina",1095 -1995-07-01,"North Carolina",976 -1995-08-01,"North Carolina",799 -1995-09-01,"North Carolina",938 -1995-10-01,"North Carolina",1402 -1995-11-01,"North Carolina",4445 -1995-12-01,"North Carolina",8581 -1996-01-01,"North Carolina",12737 -1996-02-01,"North Carolina",11718 -1996-03-01,"North Carolina",7391 -1996-04-01,"North Carolina",6189 -1996-05-01,"North Carolina",2131 -1996-06-01,"North Carolina",1210 -1996-07-01,"North Carolina",889 -1996-08-01,"North Carolina",862 -1996-09-01,"North Carolina",913 -1996-10-01,"North Carolina",1701 -1996-11-01,"North Carolina",4461 -1996-12-01,"North Carolina",8607 -1997-01-01,"North Carolina",10031 -1997-02-01,"North Carolina",9983 -1997-03-01,"North Carolina",5800 -1997-04-01,"North Carolina",4080 -1997-05-01,"North Carolina",2986 -1997-06-01,"North Carolina",1596 -1997-07-01,"North Carolina",1072 -1997-08-01,"North Carolina",898 -1997-09-01,"North Carolina",934 -1997-10-01,"North Carolina",1438 -1997-11-01,"North Carolina",4875 -1997-12-01,"North Carolina",9202 -1998-01-01,"North Carolina",10796 -1998-02-01,"North Carolina",9836 -1998-03-01,"North Carolina",7633 -1998-04-01,"North Carolina",5083 -1998-05-01,"North Carolina",2272 -1998-06-01,"North Carolina",1207 -1998-07-01,"North Carolina",1058 -1998-08-01,"North Carolina",914 -1998-09-01,"North Carolina",973 -1998-10-01,"North Carolina",1217 -1998-11-01,"North Carolina",4062 -1998-12-01,"North Carolina",5735 -1999-01-01,"North Carolina",11181 -1999-02-01,"North Carolina",7462 -1999-03-01,"North Carolina",9427 -1999-04-01,"North Carolina",5325 -1999-05-01,"North Carolina",2597 -1999-06-01,"North Carolina",1312 -1999-07-01,"North Carolina",1062 -1999-08-01,"North Carolina",921 -1999-09-01,"North Carolina",1034 -1999-10-01,"North Carolina",1679 -1999-11-01,"North Carolina",3942 -1999-12-01,"North Carolina",6912 -2000-01-01,"North Carolina",11018 -2000-02-01,"North Carolina",13160 -2000-03-01,"North Carolina",7550 -2000-04-01,"North Carolina",4451 -2000-05-01,"North Carolina",2225 -2000-06-01,"North Carolina",1483 -2000-07-01,"North Carolina",1007 -2000-08-01,"North Carolina",1010 -2000-09-01,"North Carolina",1052 -2000-10-01,"North Carolina",2450 -2000-11-01,"North Carolina",5969 -2000-12-01,"North Carolina",12523 -2001-01-01,"North Carolina",14705 -2001-02-01,"North Carolina",9561 -2001-03-01,"North Carolina",7702 -2001-04-01,"North Carolina",5039 -2001-05-01,"North Carolina",2040 -2001-06-01,"North Carolina",1101 -2001-07-01,"North Carolina",1086 -2001-08-01,"North Carolina",948 -2001-09-01,"North Carolina",1086 -2001-10-01,"North Carolina",2514 -2001-11-01,"North Carolina",4592 -2001-12-01,"North Carolina",6443 -2002-01-01,"North Carolina",11858 -2002-02-01,"North Carolina",9526 -2002-03-01,"North Carolina",7835 -2002-04-01,"North Carolina",4091 -2002-05-01,"North Carolina",1763 -2002-06-01,"North Carolina",1705 -2002-07-01,"North Carolina",1014 -2002-08-01,"North Carolina",885 -2002-09-01,"North Carolina",1040 -2002-10-01,"North Carolina",2051 -2002-11-01,"North Carolina",6245 -2002-12-01,"North Carolina",10891 -2003-01-01,"North Carolina",14064 -2003-02-01,"North Carolina",12890 -2003-03-01,"North Carolina",8230 -2003-04-01,"North Carolina",4754 -2003-05-01,"North Carolina",2524 -2003-06-01,"North Carolina",1454 -2003-07-01,"North Carolina",1137 -2003-08-01,"North Carolina",1004 -2003-09-01,"North Carolina",1154 -2003-10-01,"North Carolina",2290 -2003-11-01,"North Carolina",5223 -2003-12-01,"North Carolina",10686 -2004-01-01,"North Carolina",14020 -2004-02-01,"North Carolina",13510 -2004-03-01,"North Carolina",8531 -2004-04-01,"North Carolina",4921 -2004-05-01,"North Carolina",1953 -2004-06-01,"North Carolina",1228 -2004-07-01,"North Carolina",1115 -2004-08-01,"North Carolina",1047 -2004-09-01,"North Carolina",1003 -2004-10-01,"North Carolina",1600 -2004-11-01,"North Carolina",4216 -2004-12-01,"North Carolina",9656 -2005-01-01,"North Carolina",12601 -2005-02-01,"North Carolina",11599 -2005-03-01,"North Carolina",9662 -2005-04-01,"North Carolina",5311 -2005-05-01,"North Carolina",2771 -2005-06-01,"North Carolina",1450 -2005-07-01,"North Carolina",1203 -2005-08-01,"North Carolina",1024 -2005-09-01,"North Carolina",1087 -2005-10-01,"North Carolina",1724 -2005-11-01,"North Carolina",4739 -2005-12-01,"North Carolina",10695 -2006-01-01,"North Carolina",10928 -2006-02-01,"North Carolina",9647 -2006-03-01,"North Carolina",7791 -2006-04-01,"North Carolina",4414 -2006-05-01,"North Carolina",1879 -2006-06-01,"North Carolina",1418 -2006-07-01,"North Carolina",1175 -2006-08-01,"North Carolina",980 -2006-09-01,"North Carolina",1153 -2006-10-01,"North Carolina",2399 -2006-11-01,"North Carolina",5954 -2006-12-01,"North Carolina",8768 -2007-01-01,"North Carolina",10618 -2007-02-01,"North Carolina",12847 -2007-03-01,"North Carolina",8108 -2007-04-01,"North Carolina",4405 -2007-05-01,"North Carolina",2440 -2007-06-01,"North Carolina",1310 -2007-07-01,"North Carolina",1154 -2007-08-01,"North Carolina",993 -2007-09-01,"North Carolina",1053 -2007-10-01,"North Carolina",1356 -2007-11-01,"North Carolina",5134 -2007-12-01,"North Carolina",8947 -2008-01-01,"North Carolina",12948 -2008-02-01,"North Carolina",10202 -2008-03-01,"North Carolina",6938 -2008-04-01,"North Carolina",3707 -2008-05-01,"North Carolina",1521 -2008-06-01,"North Carolina",1121 -2008-07-01,"North Carolina",1058 -2008-08-01,"North Carolina",1022 -2008-09-01,"North Carolina",1388 -2008-10-01,"North Carolina",3296 -2008-11-01,"North Carolina",9524 -2008-12-01,"North Carolina",11186 -2009-01-01,"North Carolina",14881 -2009-02-01,"North Carolina",10616 -2009-03-01,"North Carolina",8259 -2009-04-01,"North Carolina",3243 -2009-05-01,"North Carolina",1315 -2009-06-01,"North Carolina",754 -2009-07-01,"North Carolina",962 -2009-08-01,"North Carolina",947 -2009-09-01,"North Carolina",1128 -2009-10-01,"North Carolina",2760 -2009-11-01,"North Carolina",6420 -2009-12-01,"North Carolina",14358 -2010-01-01,"North Carolina",17239 -2010-02-01,"North Carolina",14708 -2010-03-01,"North Carolina",7595 -2010-04-01,"North Carolina",1937 -2010-05-01,"North Carolina",1252 -2010-06-01,"North Carolina",942 -2010-07-01,"North Carolina",883 -2010-08-01,"North Carolina",904 -2010-09-01,"North Carolina",1011 -2010-10-01,"North Carolina",1873 -2010-11-01,"North Carolina",7010 -2010-12-01,"North Carolina",19166 -2011-01-01,"North Carolina",17009 -2011-02-01,"North Carolina",9734 -2011-03-01,"North Carolina",7399 -2011-04-01,"North Carolina",2890 -2011-05-01,"North Carolina",1348 -2011-06-01,"North Carolina",962 -2011-07-01,"North Carolina",889 -2011-08-01,"North Carolina",1066 -2011-09-01,"North Carolina",1048 -2011-10-01,"North Carolina",2812 -2011-11-01,"North Carolina",6982 -2011-12-01,"North Carolina",9506 -2012-01-01,"North Carolina",13091 -2012-02-01,"North Carolina",10105 -2012-03-01,"North Carolina",4113 -2012-04-01,"North Carolina",2349 -2012-05-01,"North Carolina",1452 -2012-06-01,"North Carolina",1135 -2012-07-01,"North Carolina",901 -2012-08-01,"North Carolina",1135 -2012-09-01,"North Carolina",1015 -2012-10-01,"North Carolina",2706 -2012-11-01,"North Carolina",9189 -2012-12-01,"North Carolina",9321 -2013-01-01,"North Carolina",12218 -2013-02-01,"North Carolina",12114 -2013-03-01,"North Carolina",11612 -2013-04-01,"North Carolina",3617 -2013-05-01,"North Carolina",1823 -2013-06-01,"North Carolina",942 -2013-07-01,"North Carolina",1119 -2013-08-01,"North Carolina",1011 -2013-09-01,"North Carolina",1145 -2013-10-01,"North Carolina",2345 -2013-11-01,"North Carolina",9514 -2013-12-01,"North Carolina",12192 -2014-01-01,"North Carolina",19026 -2014-02-01,"North Carolina",11969 -2014-03-01,"North Carolina",11130 -2014-04-01,"North Carolina",3272 -2014-05-01,"North Carolina",1320 -2014-06-01,"North Carolina",934 -2014-07-01,"North Carolina",1120 -2014-08-01,"North Carolina",973 -2014-09-01,"North Carolina",1133 -2014-10-01,"North Carolina",2037 -2014-11-01,"North Carolina",9724 -2014-12-01,"North Carolina",12540 -2015-01-01,"North Carolina",15464 -2015-02-01,"North Carolina",17363 -2015-03-01,"North Carolina",7387 -2015-04-01,"North Carolina",2814 -2015-05-01,"North Carolina",1308 -2015-06-01,"North Carolina",1123 -2015-07-01,"North Carolina",1016 -2015-08-01,"North Carolina",1214 -2015-09-01,"North Carolina",1092 -2015-10-01,"North Carolina",2737 -2015-11-01,"North Carolina",6169 -2015-12-01,"North Carolina",6836 -2016-01-01,"North Carolina",16193 -2016-02-01,"North Carolina",12917 -2016-03-01,"North Carolina",5133 -2016-04-01,"North Carolina",3302 -2016-05-01,"North Carolina",1657 -2016-06-01,"North Carolina",1222 -2016-07-01,"North Carolina",1047 -2016-08-01,"North Carolina",1045 -2016-09-01,"North Carolina",1088 -2016-10-01,"North Carolina",1719 -2016-11-01,"North Carolina",6306 -2016-12-01,"North Carolina",12920 -2017-01-01,"North Carolina",11943 -2017-02-01,"North Carolina",7129 -2017-03-01,"North Carolina",8165 -2017-04-01,"North Carolina",2309 -2017-05-01,"North Carolina",1514 -2017-06-01,"North Carolina",1039 -2017-07-01,"North Carolina",1135 -2017-08-01,"North Carolina",994 -2017-09-01,"North Carolina",1096 -2017-10-01,"North Carolina",2110 -2017-11-01,"North Carolina",8039 -2017-12-01,"North Carolina",14460 -2018-01-01,"North Carolina",18821 -2018-02-01,"North Carolina",7889 -2018-03-01,"North Carolina",10994 -2018-04-01,"North Carolina",4514 -2018-05-01,"North Carolina",1307 -2018-06-01,"North Carolina",1015 -2018-07-01,"North Carolina",923 -2018-08-01,"North Carolina",1005 -2018-09-01,"North Carolina",977 -2018-10-01,"North Carolina",2409 -2018-11-01,"North Carolina",10479 -2018-12-01,"North Carolina",12929 -2019-01-01,"North Carolina",15211 -2019-02-01,"North Carolina",9943 -2019-03-01,"North Carolina",9502 -2019-04-01,"North Carolina",3081 -2019-05-01,"North Carolina",1363 -2019-06-01,"North Carolina",1439 -2019-07-01,"North Carolina",975 -2019-08-01,"North Carolina",1015 -2019-09-01,"North Carolina",1021 -2019-10-01,"North Carolina",1766 -2019-11-01,"North Carolina",9945 -2019-12-01,"North Carolina",12688 -2020-01-01,"North Carolina",12931 -2020-02-01,"North Carolina",10617 -2020-03-01,"North Carolina",5725 -2020-04-01,"North Carolina",3484 -2020-05-01,"North Carolina",2629 -2020-06-01,"North Carolina",NA -2020-07-01,"North Carolina",NA -2020-08-01,"North Carolina",1095 -2020-09-01,"North Carolina",1411 -2020-10-01,"North Carolina",2046 -2020-11-01,"North Carolina",6050 -2020-12-01,"North Carolina",14724 -2021-01-01,"North Carolina",16746 -2021-02-01,"North Carolina",12227 -1989-01-01,"North Dakota",1660 -1989-02-01,"North Dakota",1590 -1989-03-01,"North Dakota",1476 -1989-04-01,"North Dakota",1040 -1989-05-01,"North Dakota",506 -1989-06-01,"North Dakota",309 -1989-07-01,"North Dakota",213 -1989-08-01,"North Dakota",166 -1989-09-01,"North Dakota",240 -1989-10-01,"North Dakota",398 -1989-11-01,"North Dakota",816 -1989-12-01,"North Dakota",1411 -1990-01-01,"North Dakota",1661 -1990-02-01,"North Dakota",1440 -1990-03-01,"North Dakota",1175 -1990-04-01,"North Dakota",949 -1990-05-01,"North Dakota",581 -1990-06-01,"North Dakota",337 -1990-07-01,"North Dakota",191 -1990-08-01,"North Dakota",167 -1990-09-01,"North Dakota",220 -1990-10-01,"North Dakota",398 -1990-11-01,"North Dakota",828 -1990-12-01,"North Dakota",1235 -1991-01-01,"North Dakota",2019 -1991-02-01,"North Dakota",1528 -1991-03-01,"North Dakota",1254 -1991-04-01,"North Dakota",859 -1991-05-01,"North Dakota",671 -1991-06-01,"North Dakota",277 -1991-07-01,"North Dakota",196 -1991-08-01,"North Dakota",193 -1991-09-01,"North Dakota",224 -1991-10-01,"North Dakota",441 -1991-11-01,"North Dakota",1187 -1991-12-01,"North Dakota",1489 -1992-01-01,"North Dakota",1500 -1992-02-01,"North Dakota",1456 -1992-03-01,"North Dakota",1128 -1992-04-01,"North Dakota",1002 -1992-05-01,"North Dakota",616 -1992-06-01,"North Dakota",311 -1992-07-01,"North Dakota",260 -1992-08-01,"North Dakota",214 -1992-09-01,"North Dakota",285 -1992-10-01,"North Dakota",458 -1992-11-01,"North Dakota",990 -1992-12-01,"North Dakota",1472 -1993-01-01,"North Dakota",2059 -1993-02-01,"North Dakota",1522 -1993-03-01,"North Dakota",1462 -1993-04-01,"North Dakota",1082 -1993-05-01,"North Dakota",568 -1993-06-01,"North Dakota",350 -1993-07-01,"North Dakota",268 -1993-08-01,"North Dakota",210 -1993-09-01,"North Dakota",271 -1993-10-01,"North Dakota",505 -1993-11-01,"North Dakota",964 -1993-12-01,"North Dakota",1457 -1994-01-01,"North Dakota",2042 -1994-02-01,"North Dakota",2019 -1994-03-01,"North Dakota",1448 -1994-04-01,"North Dakota",1031 -1994-05-01,"North Dakota",582 -1994-06-01,"North Dakota",263 -1994-07-01,"North Dakota",220 -1994-08-01,"North Dakota",183 -1994-09-01,"North Dakota",235 -1994-10-01,"North Dakota",385 -1994-11-01,"North Dakota",807 -1994-12-01,"North Dakota",1446 -1995-01-01,"North Dakota",1811 -1995-02-01,"North Dakota",1711 -1995-03-01,"North Dakota",1518 -1995-04-01,"North Dakota",1190 -1995-05-01,"North Dakota",706 -1995-06-01,"North Dakota",390 -1995-07-01,"North Dakota",235 -1995-08-01,"North Dakota",183 -1995-09-01,"North Dakota",252 -1995-10-01,"North Dakota",424 -1995-11-01,"North Dakota",1095 -1995-12-01,"North Dakota",1695 -1996-01-01,"North Dakota",1955 -1996-02-01,"North Dakota",2079 -1996-03-01,"North Dakota",1764 -1996-04-01,"North Dakota",1320 -1996-05-01,"North Dakota",736 -1996-06-01,"North Dakota",356 -1996-07-01,"North Dakota",212 -1996-08-01,"North Dakota",209 -1996-09-01,"North Dakota",256 -1996-10-01,"North Dakota",554 -1996-11-01,"North Dakota",1256 -1996-12-01,"North Dakota",1894 -1997-01-01,"North Dakota",2258 -1997-02-01,"North Dakota",1931 -1997-03-01,"North Dakota",1527 -1997-04-01,"North Dakota",1133 -1997-05-01,"North Dakota",688 -1997-06-01,"North Dakota",295 -1997-07-01,"North Dakota",190 -1997-08-01,"North Dakota",168 -1997-09-01,"North Dakota",191 -1997-10-01,"North Dakota",434 -1997-11-01,"North Dakota",1133 -1997-12-01,"North Dakota",1423 -1998-01-01,"North Dakota",1874 -1998-02-01,"North Dakota",1531 -1998-03-01,"North Dakota",1436 -1998-04-01,"North Dakota",935 -1998-05-01,"North Dakota",480 -1998-06-01,"North Dakota",286 -1998-07-01,"North Dakota",230 -1998-08-01,"North Dakota",204 -1998-09-01,"North Dakota",198 -1998-10-01,"North Dakota",475 -1998-11-01,"North Dakota",1016 -1998-12-01,"North Dakota",1427 -1999-01-01,"North Dakota",2285 -1999-02-01,"North Dakota",1538 -1999-03-01,"North Dakota",1292 -1999-04-01,"North Dakota",965 -1999-05-01,"North Dakota",615 -1999-06-01,"North Dakota",259 -1999-07-01,"North Dakota",225 -1999-08-01,"North Dakota",191 -1999-09-01,"North Dakota",296 -1999-10-01,"North Dakota",657 -1999-11-01,"North Dakota",869 -1999-12-01,"North Dakota",1380 -2000-01-01,"North Dakota",1950 -2000-02-01,"North Dakota",1675 -2000-03-01,"North Dakota",1305 -2000-04-01,"North Dakota",916 -2000-05-01,"North Dakota",496 -2000-06-01,"North Dakota",329 -2000-07-01,"North Dakota",210 -2000-08-01,"North Dakota",223 -2000-09-01,"North Dakota",251 -2000-10-01,"North Dakota",585 -2000-11-01,"North Dakota",1120 -2000-12-01,"North Dakota",1904 -2001-01-01,"North Dakota",1763 -2001-02-01,"North Dakota",1914 -2001-03-01,"North Dakota",1238 -2001-04-01,"North Dakota",809 -2001-05-01,"North Dakota",363 -2001-06-01,"North Dakota",243 -2001-07-01,"North Dakota",213 -2001-08-01,"North Dakota",279 -2001-09-01,"North Dakota",263 -2001-10-01,"North Dakota",771 -2001-11-01,"North Dakota",999 -2001-12-01,"North Dakota",1714 -2002-01-01,"North Dakota",1837 -2002-02-01,"North Dakota",1455 -2002-03-01,"North Dakota",1761 -2002-04-01,"North Dakota",1028 -2002-05-01,"North Dakota",641 -2002-06-01,"North Dakota",248 -2002-07-01,"North Dakota",195 -2002-08-01,"North Dakota",253 -2002-09-01,"North Dakota",282 -2002-10-01,"North Dakota",1046 -2002-11-01,"North Dakota",1287 -2002-12-01,"North Dakota",1692 -2003-01-01,"North Dakota",2122 -2003-02-01,"North Dakota",1970 -2003-03-01,"North Dakota",1663 -2003-04-01,"North Dakota",825 -2003-05-01,"North Dakota",462 -2003-06-01,"North Dakota",227 -2003-07-01,"North Dakota",201 -2003-08-01,"North Dakota",228 -2003-09-01,"North Dakota",317 -2003-10-01,"North Dakota",634 -2003-11-01,"North Dakota",1522 -2003-12-01,"North Dakota",1708 -2004-01-01,"North Dakota",2269 -2004-02-01,"North Dakota",1709 -2004-03-01,"North Dakota",1308 -2004-04-01,"North Dakota",784 -2004-05-01,"North Dakota",526 -2004-06-01,"North Dakota",270 -2004-07-01,"North Dakota",201 -2004-08-01,"North Dakota",230 -2004-09-01,"North Dakota",286 -2004-10-01,"North Dakota",710 -2004-11-01,"North Dakota",1085 -2004-12-01,"North Dakota",1753 -2005-01-01,"North Dakota",2201 -2005-02-01,"North Dakota",1583 -2005-03-01,"North Dakota",1377 -2005-04-01,"North Dakota",640 -2005-05-01,"North Dakota",561 -2005-06-01,"North Dakota",279 -2005-07-01,"North Dakota",185 -2005-08-01,"North Dakota",202 -2005-09-01,"North Dakota",222 -2005-10-01,"North Dakota",601 -2005-11-01,"North Dakota",1135 -2005-12-01,"North Dakota",1707 -2006-01-01,"North Dakota",1425 -2006-02-01,"North Dakota",1686 -2006-03-01,"North Dakota",1353 -2006-04-01,"North Dakota",565 -2006-05-01,"North Dakota",365 -2006-06-01,"North Dakota",211 -2006-07-01,"North Dakota",178 -2006-08-01,"North Dakota",170 -2006-09-01,"North Dakota",282 -2006-10-01,"North Dakota",800 -2006-11-01,"North Dakota",1224 -2006-12-01,"North Dakota",1385 -2007-01-01,"North Dakota",1906 -2007-02-01,"North Dakota",1874 -2007-03-01,"North Dakota",1228 -2007-04-01,"North Dakota",835 -2007-05-01,"North Dakota",350 -2007-06-01,"North Dakota",208 -2007-07-01,"North Dakota",190 -2007-08-01,"North Dakota",163 -2007-09-01,"North Dakota",258 -2007-10-01,"North Dakota",575 -2007-11-01,"North Dakota",1193 -2007-12-01,"North Dakota",1917 -2008-01-01,"North Dakota",2034 -2008-02-01,"North Dakota",1839 -2008-03-01,"North Dakota",1382 -2008-04-01,"North Dakota",821 -2008-05-01,"North Dakota",474 -2008-06-01,"North Dakota",345 -2008-07-01,"North Dakota",192 -2008-08-01,"North Dakota",169 -2008-09-01,"North Dakota",240 -2008-10-01,"North Dakota",623 -2008-11-01,"North Dakota",1203 -2008-12-01,"North Dakota",2180 -2009-01-01,"North Dakota",2203 -2009-02-01,"North Dakota",1793 -2009-03-01,"North Dakota",1555 -2009-04-01,"North Dakota",874 -2009-05-01,"North Dakota",443 -2009-06-01,"North Dakota",275 -2009-07-01,"North Dakota",189 -2009-08-01,"North Dakota",167 -2009-09-01,"North Dakota",202 -2009-10-01,"North Dakota",824 -2009-11-01,"North Dakota",991 -2009-12-01,"North Dakota",2002 -2010-01-01,"North Dakota",2027 -2010-02-01,"North Dakota",1718 -2010-03-01,"North Dakota",1185 -2010-04-01,"North Dakota",564 -2010-05-01,"North Dakota",447 -2010-06-01,"North Dakota",217 -2010-07-01,"North Dakota",172 -2010-08-01,"North Dakota",199 -2010-09-01,"North Dakota",284 -2010-10-01,"North Dakota",539 -2010-11-01,"North Dakota",1265 -2010-12-01,"North Dakota",1920 -2011-01-01,"North Dakota",2143 -2011-02-01,"North Dakota",1790 -2011-03-01,"North Dakota",1643 -2011-04-01,"North Dakota",886 -2011-05-01,"North Dakota",465 -2011-06-01,"North Dakota",267 -2011-07-01,"North Dakota",180 -2011-08-01,"North Dakota",185 -2011-09-01,"North Dakota",249 -2011-10-01,"North Dakota",520 -2011-11-01,"North Dakota",1138 -2011-12-01,"North Dakota",1471 -2012-01-01,"North Dakota",1694 -2012-02-01,"North Dakota",1512 -2012-03-01,"North Dakota",832 -2012-04-01,"North Dakota",621 -2012-05-01,"North Dakota",357 -2012-06-01,"North Dakota",195 -2012-07-01,"North Dakota",171 -2012-08-01,"North Dakota",179 -2012-09-01,"North Dakota",221 -2012-10-01,"North Dakota",754 -2012-11-01,"North Dakota",1230 -2012-12-01,"North Dakota",1830 -2013-01-01,"North Dakota",2080 -2013-02-01,"North Dakota",1626 -2013-03-01,"North Dakota",1624 -2013-04-01,"North Dakota",1107 -2013-05-01,"North Dakota",438 -2013-06-01,"North Dakota",246 -2013-07-01,"North Dakota",186 -2013-08-01,"North Dakota",167 -2013-09-01,"North Dakota",243 -2013-10-01,"North Dakota",700 -2013-11-01,"North Dakota",1361 -2013-12-01,"North Dakota",2307 -2014-01-01,"North Dakota",2260 -2014-02-01,"North Dakota",2152 -2014-03-01,"North Dakota",1662 -2014-04-01,"North Dakota",1007 -2014-05-01,"North Dakota",506 -2014-06-01,"North Dakota",248 -2014-07-01,"North Dakota",183 -2014-08-01,"North Dakota",181 -2014-09-01,"North Dakota",273 -2014-10-01,"North Dakota",625 -2014-11-01,"North Dakota",1660 -2014-12-01,"North Dakota",1749 -2015-01-01,"North Dakota",2006 -2015-02-01,"North Dakota",2055 -2015-03-01,"North Dakota",1277 -2015-04-01,"North Dakota",720 -2015-05-01,"North Dakota",447 -2015-06-01,"North Dakota",205 -2015-07-01,"North Dakota",168 -2015-08-01,"North Dakota",209 -2015-09-01,"North Dakota",199 -2015-10-01,"North Dakota",509 -2015-11-01,"North Dakota",1060 -2015-12-01,"North Dakota",1698 -2016-01-01,"North Dakota",1956 -2016-02-01,"North Dakota",1509 -2016-03-01,"North Dakota",1076 -2016-04-01,"North Dakota",770 -2016-05-01,"North Dakota",375 -2016-06-01,"North Dakota",181 -2016-07-01,"North Dakota",162 -2016-08-01,"North Dakota",175 -2016-09-01,"North Dakota",218 -2016-10-01,"North Dakota",629 -2016-11-01,"North Dakota",867 -2016-12-01,"North Dakota",2140 -2017-01-01,"North Dakota",2126 -2017-02-01,"North Dakota",1577 -2017-03-01,"North Dakota",1475 -2017-04-01,"North Dakota",737 -2017-05-01,"North Dakota",347 -2017-06-01,"North Dakota",190 -2017-07-01,"North Dakota",155 -2017-08-01,"North Dakota",177 -2017-09-01,"North Dakota",235 -2017-10-01,"North Dakota",669 -2017-11-01,"North Dakota",1388 -2017-12-01,"North Dakota",1938 -2018-01-01,"North Dakota",2102 -2018-02-01,"North Dakota",1962 -2018-03-01,"North Dakota",1658 -2018-04-01,"North Dakota",1233 -2018-05-01,"North Dakota",598 -2018-06-01,"North Dakota",234 -2018-07-01,"North Dakota",156 -2018-08-01,"North Dakota",171 -2018-09-01,"North Dakota",194 -2018-10-01,"North Dakota",945 -2018-11-01,"North Dakota",1607 -2018-12-01,"North Dakota",1819 -2019-01-01,"North Dakota",2391 -2019-02-01,"North Dakota",2536 -2019-03-01,"North Dakota",1764 -2019-04-01,"North Dakota",917 -2019-05-01,"North Dakota",574 -2019-06-01,"North Dakota",234 -2019-07-01,"North Dakota",179 -2019-08-01,"North Dakota",186 -2019-09-01,"North Dakota",198 -2019-10-01,"North Dakota",600 -2019-11-01,"North Dakota",1542 -2019-12-01,"North Dakota",2004 -2020-01-01,"North Dakota",2455 -2020-02-01,"North Dakota",2016 -2020-03-01,"North Dakota",1578 -2020-04-01,"North Dakota",1125 -2020-05-01,"North Dakota",512 -2020-06-01,"North Dakota",233 -2020-07-01,"North Dakota",190 -2020-08-01,"North Dakota",210 -2020-09-01,"North Dakota",249 -2020-10-01,"North Dakota",564 -2020-11-01,"North Dakota",1433 -2020-12-01,"North Dakota",1907 -2021-01-01,"North Dakota",2102 -2021-02-01,"North Dakota",2061 -1989-01-01,"Ohio",49326 -1989-02-01,"Ohio",56594 -1989-03-01,"Ohio",42862 -1989-04-01,"Ohio",31700 -1989-05-01,"Ohio",18482 -1989-06-01,"Ohio",7759 -1989-07-01,"Ohio",7332 -1989-08-01,"Ohio",7262 -1989-09-01,"Ohio",9812 -1989-10-01,"Ohio",20647 -1989-11-01,"Ohio",37970 -1989-12-01,"Ohio",69403 -1990-01-01,"Ohio",50210 -1990-02-01,"Ohio",47643 -1990-03-01,"Ohio",39078 -1990-04-01,"Ohio",28903 -1990-05-01,"Ohio",17232 -1990-06-01,"Ohio",9850 -1990-07-01,"Ohio",7886 -1990-08-01,"Ohio",7153 -1990-09-01,"Ohio",8553 -1990-10-01,"Ohio",16806 -1990-11-01,"Ohio",29783 -1990-12-01,"Ohio",45224 -1991-01-01,"Ohio",58400 -1991-02-01,"Ohio",51151 -1991-03-01,"Ohio",42595 -1991-04-01,"Ohio",25951 -1991-05-01,"Ohio",13621 -1991-06-01,"Ohio",7982 -1991-07-01,"Ohio",6897 -1991-08-01,"Ohio",6230 -1991-09-01,"Ohio",7805 -1991-10-01,"Ohio",17321 -1991-11-01,"Ohio",35764 -1991-12-01,"Ohio",48007 -1992-01-01,"Ohio",57528 -1992-02-01,"Ohio",50254 -1992-03-01,"Ohio",45783 -1992-04-01,"Ohio",31344 -1992-05-01,"Ohio",17276 -1992-06-01,"Ohio",10336 -1992-07-01,"Ohio",8098 -1992-08-01,"Ohio",7238 -1992-09-01,"Ohio",8111 -1992-10-01,"Ohio",20929 -1992-11-01,"Ohio",34181 -1992-12-01,"Ohio",49551 -1993-01-01,"Ohio",55994 -1993-02-01,"Ohio",58767 -1993-03-01,"Ohio",52719 -1993-04-01,"Ohio",32260 -1993-05-01,"Ohio",13835 -1993-06-01,"Ohio",11884 -1993-07-01,"Ohio",7273 -1993-08-01,"Ohio",6549 -1993-09-01,"Ohio",7996 -1993-10-01,"Ohio",20454 -1993-11-01,"Ohio",34956 -1993-12-01,"Ohio",51423 -1994-01-01,"Ohio",72950 -1994-02-01,"Ohio",59452 -1994-03-01,"Ohio",47016 -1994-04-01,"Ohio",28942 -1994-05-01,"Ohio",18242 -1994-06-01,"Ohio",9589 -1994-07-01,"Ohio",7154 -1994-08-01,"Ohio",6618 -1994-09-01,"Ohio",7106 -1994-10-01,"Ohio",16773 -1994-11-01,"Ohio",26029 -1994-12-01,"Ohio",43460 -1995-01-01,"Ohio",60093 -1995-02-01,"Ohio",58896 -1995-03-01,"Ohio",43659 -1995-04-01,"Ohio",30852 -1995-05-01,"Ohio",16763 -1995-06-01,"Ohio",8575 -1995-07-01,"Ohio",7097 -1995-08-01,"Ohio",6298 -1995-09-01,"Ohio",7397 -1995-10-01,"Ohio",17326 -1995-11-01,"Ohio",40926 -1995-12-01,"Ohio",59871 -1996-01-01,"Ohio",69244 -1996-02-01,"Ohio",58620 -1996-03-01,"Ohio",54228 -1996-04-01,"Ohio",34510 -1996-05-01,"Ohio",17670 -1996-06-01,"Ohio",10315 -1996-07-01,"Ohio",7210 -1996-08-01,"Ohio",6306 -1996-09-01,"Ohio",7026 -1996-10-01,"Ohio",18651 -1996-11-01,"Ohio",38565 -1996-12-01,"Ohio",52480 -1997-01-01,"Ohio",64295 -1997-02-01,"Ohio",51748 -1997-03-01,"Ohio",43523 -1997-04-01,"Ohio",32544 -1997-05-01,"Ohio",21260 -1997-06-01,"Ohio",14630 -1997-07-01,"Ohio",7425 -1997-08-01,"Ohio",6112 -1997-09-01,"Ohio",7124 -1997-10-01,"Ohio",19056 -1997-11-01,"Ohio",36474 -1997-12-01,"Ohio",50352 -1998-01-01,"Ohio",50903 -1998-02-01,"Ohio",44246 -1998-03-01,"Ohio",44588 -1998-04-01,"Ohio",25083 -1998-05-01,"Ohio",11640 -1998-06-01,"Ohio",8568 -1998-07-01,"Ohio",8085 -1998-08-01,"Ohio",7314 -1998-09-01,"Ohio",6390 -1998-10-01,"Ohio",16290 -1998-11-01,"Ohio",30086 -1998-12-01,"Ohio",43384 -1999-01-01,"Ohio",59224 -1999-02-01,"Ohio",49192 -1999-03-01,"Ohio",51346 -1999-04-01,"Ohio",26855 -1999-05-01,"Ohio",12575 -1999-06-01,"Ohio",7969 -1999-07-01,"Ohio",6618 -1999-08-01,"Ohio",6037 -1999-09-01,"Ohio",6862 -1999-10-01,"Ohio",17303 -1999-11-01,"Ohio",27700 -1999-12-01,"Ohio",46532 -2000-01-01,"Ohio",63131 -2000-02-01,"Ohio",53644 -2000-03-01,"Ohio",38179 -2000-04-01,"Ohio",28363 -2000-05-01,"Ohio",13699 -2000-06-01,"Ohio",7832 -2000-07-01,"Ohio",7329 -2000-08-01,"Ohio",6830 -2000-09-01,"Ohio",7681 -2000-10-01,"Ohio",15925 -2000-11-01,"Ohio",32808 -2000-12-01,"Ohio",68498 -2001-01-01,"Ohio",65224 -2001-02-01,"Ohio",50911 -2001-03-01,"Ohio",47594 -2001-04-01,"Ohio",27507 -2001-05-01,"Ohio",12105 -2001-06-01,"Ohio",8652 -2001-07-01,"Ohio",7301 -2001-08-01,"Ohio",6041 -2001-09-01,"Ohio",6755 -2001-10-01,"Ohio",15669 -2001-11-01,"Ohio",23530 -2001-12-01,"Ohio",37246 -2002-01-01,"Ohio",53506 -2002-02-01,"Ohio",47035 -2002-03-01,"Ohio",44795 -2002-04-01,"Ohio",29251 -2002-05-01,"Ohio",16654 -2002-06-01,"Ohio",9863 -2002-07-01,"Ohio",7504 -2002-08-01,"Ohio",6032 -2002-09-01,"Ohio",6003 -2002-10-01,"Ohio",16176 -2002-11-01,"Ohio",31550 -2002-12-01,"Ohio",52947 -2003-01-01,"Ohio",69723 -2003-02-01,"Ohio",62980 -2003-03-01,"Ohio",46955 -2003-04-01,"Ohio",26511 -2003-05-01,"Ohio",13351 -2003-06-01,"Ohio",8286 -2003-07-01,"Ohio",7558 -2003-08-01,"Ohio",6248 -2003-09-01,"Ohio",7113 -2003-10-01,"Ohio",18215 -2003-11-01,"Ohio",25894 -2003-12-01,"Ohio",50202 -2004-01-01,"Ohio",67004 -2004-02-01,"Ohio",58191 -2004-03-01,"Ohio",41855 -2004-04-01,"Ohio",26627 -2004-05-01,"Ohio",12495 -2004-06-01,"Ohio",6750 -2004-07-01,"Ohio",6665 -2004-08-01,"Ohio",6002 -2004-09-01,"Ohio",6567 -2004-10-01,"Ohio",14824 -2004-11-01,"Ohio",26200 -2004-12-01,"Ohio",47645 -2005-01-01,"Ohio",60120 -2005-02-01,"Ohio",51491 -2005-03-01,"Ohio",49971 -2005-04-01,"Ohio",24426 -2005-05-01,"Ohio",15669 -2005-06-01,"Ohio",7507 -2005-07-01,"Ohio",6148 -2005-08-01,"Ohio",5704 -2005-09-01,"Ohio",5751 -2005-10-01,"Ohio",13766 -2005-11-01,"Ohio",27303 -2005-12-01,"Ohio",54842 -2006-01-01,"Ohio",44333 -2006-02-01,"Ohio",46972 -2006-03-01,"Ohio",40541 -2006-04-01,"Ohio",19397 -2006-05-01,"Ohio",11557 -2006-06-01,"Ohio",6942 -2006-07-01,"Ohio",5722 -2006-08-01,"Ohio",5341 -2006-09-01,"Ohio",5995 -2006-10-01,"Ohio",17546 -2006-11-01,"Ohio",28561 -2006-12-01,"Ohio",39354 -2007-01-01,"Ohio",49323 -2007-02-01,"Ohio",62940 -2007-03-01,"Ohio",38942 -2007-04-01,"Ohio",28250 -2007-05-01,"Ohio",10358 -2007-06-01,"Ohio",6714 -2007-07-01,"Ohio",5744 -2007-08-01,"Ohio",5305 -2007-09-01,"Ohio",5783 -2007-10-01,"Ohio",9853 -2007-11-01,"Ohio",28755 -2007-12-01,"Ohio",47608 -2008-01-01,"Ohio",53823 -2008-02-01,"Ohio",54081 -2008-03-01,"Ohio",45708 -2008-04-01,"Ohio",21190 -2008-05-01,"Ohio",12099 -2008-06-01,"Ohio",6195 -2008-07-01,"Ohio",5564 -2008-08-01,"Ohio",5153 -2008-09-01,"Ohio",5545 -2008-10-01,"Ohio",14292 -2008-11-01,"Ohio",30856 -2008-12-01,"Ohio",52021 -2009-01-01,"Ohio",64457 -2009-02-01,"Ohio",49201 -2009-03-01,"Ohio",35265 -2009-04-01,"Ohio",22885 -2009-05-01,"Ohio",9429 -2009-06-01,"Ohio",6087 -2009-07-01,"Ohio",5543 -2009-08-01,"Ohio",5365 -2009-09-01,"Ohio",6140 -2009-10-01,"Ohio",17198 -2009-11-01,"Ohio",23169 -2009-12-01,"Ohio",47692 -2010-01-01,"Ohio",57270 -2010-02-01,"Ohio",51953 -2010-03-01,"Ohio",34033 -2010-04-01,"Ohio",15356 -2010-05-01,"Ohio",9542 -2010-06-01,"Ohio",5805 -2010-07-01,"Ohio",5218 -2010-08-01,"Ohio",4788 -2010-09-01,"Ohio",5838 -2010-10-01,"Ohio",13257 -2010-11-01,"Ohio",27344 -2010-12-01,"Ohio",53299 -2011-01-01,"Ohio",61413 -2011-02-01,"Ohio",48825 -2011-03-01,"Ohio",42430 -2011-04-01,"Ohio",22052 -2011-05-01,"Ohio",11865 -2011-06-01,"Ohio",6023 -2011-07-01,"Ohio",4449 -2011-08-01,"Ohio",5484 -2011-09-01,"Ohio",6258 -2011-10-01,"Ohio",12887 -2011-11-01,"Ohio",24216 -2011-12-01,"Ohio",40232 -2012-01-01,"Ohio",50128 -2012-02-01,"Ohio",41818 -2012-03-01,"Ohio",22294 -2012-04-01,"Ohio",17849 -2012-05-01,"Ohio",9925 -2012-06-01,"Ohio",5867 -2012-07-01,"Ohio",4447 -2012-08-01,"Ohio",4367 -2012-09-01,"Ohio",5682 -2012-10-01,"Ohio",16306 -2012-11-01,"Ohio",33308 -2012-12-01,"Ohio",38881 -2013-01-01,"Ohio",53574 -2013-02-01,"Ohio",50370 -2013-03-01,"Ohio",46797 -2013-04-01,"Ohio",21855 -2013-05-01,"Ohio",8462 -2013-06-01,"Ohio",5860 -2013-07-01,"Ohio",4983 -2013-08-01,"Ohio",4889 -2013-09-01,"Ohio",5499 -2013-10-01,"Ohio",9097 -2013-11-01,"Ohio",35345 -2013-12-01,"Ohio",50631 -2014-01-01,"Ohio",70548 -2014-02-01,"Ohio",58508 -2014-03-01,"Ohio",48571 -2014-04-01,"Ohio",19967 -2014-05-01,"Ohio",10181 -2014-06-01,"Ohio",6255 -2014-07-01,"Ohio",5156 -2014-08-01,"Ohio",4860 -2014-09-01,"Ohio",6185 -2014-10-01,"Ohio",13581 -2014-11-01,"Ohio",31696 -2014-12-01,"Ohio",45059 -2015-01-01,"Ohio",58799 -2015-02-01,"Ohio",61207 -2015-03-01,"Ohio",47720 -2015-04-01,"Ohio",22267 -2015-05-01,"Ohio",9819 -2015-06-01,"Ohio",6095 -2015-07-01,"Ohio",5012 -2015-08-01,"Ohio",4717 -2015-09-01,"Ohio",4677 -2015-10-01,"Ohio",12188 -2015-11-01,"Ohio",22078 -2015-12-01,"Ohio",30726 -2016-01-01,"Ohio",54299 -2016-02-01,"Ohio",44165 -2016-03-01,"Ohio",26914 -2016-04-01,"Ohio",21448 -2016-05-01,"Ohio",10510 -2016-06-01,"Ohio",4867 -2016-07-01,"Ohio",4237 -2016-08-01,"Ohio",4818 -2016-09-01,"Ohio",4721 -2016-10-01,"Ohio",10397 -2016-11-01,"Ohio",23458 -2016-12-01,"Ohio",45991 -2017-01-01,"Ohio",46915 -2017-02-01,"Ohio",33215 -2017-03-01,"Ohio",37420 -2017-04-01,"Ohio",13988 -2017-05-01,"Ohio",9987 -2017-06-01,"Ohio",5336 -2017-07-01,"Ohio",4711 -2017-08-01,"Ohio",5041 -2017-09-01,"Ohio",5670 -2017-10-01,"Ohio",12203 -2017-11-01,"Ohio",31175 -2017-12-01,"Ohio",53038 -2018-01-01,"Ohio",60134 -2018-02-01,"Ohio",39323 -2018-03-01,"Ohio",43089 -2018-04-01,"Ohio",30110 -2018-05-01,"Ohio",6013 -2018-06-01,"Ohio",4692 -2018-07-01,"Ohio",4783 -2018-08-01,"Ohio",4728 -2018-09-01,"Ohio",5106 -2018-10-01,"Ohio",17160 -2018-11-01,"Ohio",40553 -2018-12-01,"Ohio",45539 -2019-01-01,"Ohio",57776 -2019-02-01,"Ohio",47362 -2019-03-01,"Ohio",43223 -2019-04-01,"Ohio",19037 -2019-05-01,"Ohio",10285 -2019-06-01,"Ohio",5378 -2019-07-01,"Ohio",4855 -2019-08-01,"Ohio",4306 -2019-09-01,"Ohio",4874 -2019-10-01,"Ohio",12187 -2019-11-01,"Ohio",36355 -2019-12-01,"Ohio",44442 -2020-01-01,"Ohio",46020 -2020-02-01,"Ohio",47512 -2020-03-01,"Ohio",32235 -2020-04-01,"Ohio",23477 -2020-05-01,"Ohio",15432 -2020-06-01,"Ohio",5955 -2020-07-01,"Ohio",4802 -2020-08-01,"Ohio",5151 -2020-09-01,"Ohio",5754 -2020-10-01,"Ohio",12499 -2020-11-01,"Ohio",25958 -2020-12-01,"Ohio",47909 -2021-01-01,"Ohio",52418 -2021-02-01,"Ohio",53885 -1989-01-01,"Oklahoma",11577 -1989-02-01,"Oklahoma",13137 -1989-03-01,"Oklahoma",12277 -1989-04-01,"Oklahoma",5784 -1989-05-01,"Oklahoma",3043 -1989-06-01,"Oklahoma",2169 -1989-07-01,"Oklahoma",1858 -1989-08-01,"Oklahoma",1654 -1989-09-01,"Oklahoma",1886 -1989-10-01,"Oklahoma",2571 -1989-11-01,"Oklahoma",4798 -1989-12-01,"Oklahoma",11039 -1990-01-01,"Oklahoma",14092 -1990-02-01,"Oklahoma",10213 -1990-03-01,"Oklahoma",8262 -1990-04-01,"Oklahoma",6640 -1990-05-01,"Oklahoma",4024 -1990-06-01,"Oklahoma",2206 -1990-07-01,"Oklahoma",1679 -1990-08-01,"Oklahoma",1599 -1990-09-01,"Oklahoma",1563 -1990-10-01,"Oklahoma",2416 -1990-11-01,"Oklahoma",4675 -1990-12-01,"Oklahoma",8248 -1991-01-01,"Oklahoma",15898 -1991-02-01,"Oklahoma",11165 -1991-03-01,"Oklahoma",8216 -1991-04-01,"Oklahoma",4711 -1991-05-01,"Oklahoma",2853 -1991-06-01,"Oklahoma",1985 -1991-07-01,"Oklahoma",1747 -1991-08-01,"Oklahoma",1573 -1991-09-01,"Oklahoma",1741 -1991-10-01,"Oklahoma",2327 -1991-11-01,"Oklahoma",6915 -1991-12-01,"Oklahoma",10069 -1992-01-01,"Oklahoma",12164 -1992-02-01,"Oklahoma",10656 -1992-03-01,"Oklahoma",7235 -1992-04-01,"Oklahoma",5961 -1992-05-01,"Oklahoma",3219 -1992-06-01,"Oklahoma",2549 -1992-07-01,"Oklahoma",1949 -1992-08-01,"Oklahoma",1712 -1992-09-01,"Oklahoma",1775 -1992-10-01,"Oklahoma",2236 -1992-11-01,"Oklahoma",4722 -1992-12-01,"Oklahoma",11635 -1993-01-01,"Oklahoma",14565 -1993-02-01,"Oklahoma",12460 -1993-03-01,"Oklahoma",12131 -1993-04-01,"Oklahoma",8019 -1993-05-01,"Oklahoma",3907 -1993-06-01,"Oklahoma",2331 -1993-07-01,"Oklahoma",1832 -1993-08-01,"Oklahoma",1612 -1993-09-01,"Oklahoma",1729 -1993-10-01,"Oklahoma",2317 -1993-11-01,"Oklahoma",6783 -1993-12-01,"Oklahoma",10675 -1994-01-01,"Oklahoma",13551 -1994-02-01,"Oklahoma",13450 -1994-03-01,"Oklahoma",9884 -1994-04-01,"Oklahoma",5919 -1994-05-01,"Oklahoma",3639 -1994-06-01,"Oklahoma",2014 -1994-07-01,"Oklahoma",1687 -1994-08-01,"Oklahoma",1533 -1994-09-01,"Oklahoma",1667 -1994-10-01,"Oklahoma",2163 -1994-11-01,"Oklahoma",4292 -1994-12-01,"Oklahoma",9411 -1995-01-01,"Oklahoma",12929 -1995-02-01,"Oklahoma",11495 -1995-03-01,"Oklahoma",10224 -1995-04-01,"Oklahoma",5294 -1995-05-01,"Oklahoma",4033 -1995-06-01,"Oklahoma",2302 -1995-07-01,"Oklahoma",1833 -1995-08-01,"Oklahoma",1552 -1995-09-01,"Oklahoma",1715 -1995-10-01,"Oklahoma",2526 -1995-11-01,"Oklahoma",5029 -1995-12-01,"Oklahoma",9769 -1996-01-01,"Oklahoma",14851 -1996-02-01,"Oklahoma",14497 -1996-03-01,"Oklahoma",10164 -1996-04-01,"Oklahoma",7697 -1996-05-01,"Oklahoma",3321 -1996-06-01,"Oklahoma",1989 -1996-07-01,"Oklahoma",1628 -1996-08-01,"Oklahoma",1515 -1996-09-01,"Oklahoma",1679 -1996-10-01,"Oklahoma",2267 -1996-11-01,"Oklahoma",5722 -1996-12-01,"Oklahoma",11298 -1997-01-01,"Oklahoma",13930 -1997-02-01,"Oklahoma",12696 -1997-03-01,"Oklahoma",9077 -1997-04-01,"Oklahoma",6164 -1997-05-01,"Oklahoma",3860 -1997-06-01,"Oklahoma",2107 -1997-07-01,"Oklahoma",1680 -1997-08-01,"Oklahoma",1521 -1997-09-01,"Oklahoma",1549 -1997-10-01,"Oklahoma",1968 -1997-11-01,"Oklahoma",6186 -1997-12-01,"Oklahoma",11025 -1998-01-01,"Oklahoma",14022 -1998-02-01,"Oklahoma",11862 -1998-03-01,"Oklahoma",11028 -1998-04-01,"Oklahoma",6412 -1998-05-01,"Oklahoma",3326 -1998-06-01,"Oklahoma",1889 -1998-07-01,"Oklahoma",1624 -1998-08-01,"Oklahoma",1409 -1998-09-01,"Oklahoma",1449 -1998-10-01,"Oklahoma",1743 -1998-11-01,"Oklahoma",4245 -1998-12-01,"Oklahoma",7513 -1999-01-01,"Oklahoma",14975 -1999-02-01,"Oklahoma",9456 -1999-03-01,"Oklahoma",8408 -1999-04-01,"Oklahoma",6234 -1999-05-01,"Oklahoma",3083 -1999-06-01,"Oklahoma",1925 -1999-07-01,"Oklahoma",1659 -1999-08-01,"Oklahoma",1445 -1999-09-01,"Oklahoma",1463 -1999-10-01,"Oklahoma",2108 -1999-11-01,"Oklahoma",3185 -1999-12-01,"Oklahoma",7670 -2000-01-01,"Oklahoma",11321 -2000-02-01,"Oklahoma",11681 -2000-03-01,"Oklahoma",7477 -2000-04-01,"Oklahoma",5208 -2000-05-01,"Oklahoma",2785 -2000-06-01,"Oklahoma",1825 -2000-07-01,"Oklahoma",1588 -2000-08-01,"Oklahoma",1434 -2000-09-01,"Oklahoma",1496 -2000-10-01,"Oklahoma",2349 -2000-11-01,"Oklahoma",5617 -2000-12-01,"Oklahoma",14081 -2001-01-01,"Oklahoma",16896 -2001-02-01,"Oklahoma",11646 -2001-03-01,"Oklahoma",9657 -2001-04-01,"Oklahoma",5415 -2001-05-01,"Oklahoma",2300 -2001-06-01,"Oklahoma",1680 -2001-07-01,"Oklahoma",1462 -2001-08-01,"Oklahoma",1279 -2001-09-01,"Oklahoma",1271 -2001-10-01,"Oklahoma",1891 -2001-11-01,"Oklahoma",3407 -2001-12-01,"Oklahoma",7714 -2002-01-01,"Oklahoma",12991 -2002-02-01,"Oklahoma",11198 -2002-03-01,"Oklahoma",10524 -2002-04-01,"Oklahoma",6565 -2002-05-01,"Oklahoma",2758 -2002-06-01,"Oklahoma",1978 -2002-07-01,"Oklahoma",1506 -2002-08-01,"Oklahoma",1372 -2002-09-01,"Oklahoma",1363 -2002-10-01,"Oklahoma",1791 -2002-11-01,"Oklahoma",5416 -2002-12-01,"Oklahoma",9700 -2003-01-01,"Oklahoma",12608 -2003-02-01,"Oklahoma",12931 -2003-03-01,"Oklahoma",11550 -2003-04-01,"Oklahoma",5712 -2003-05-01,"Oklahoma",2747 -2003-06-01,"Oklahoma",1758 -2003-07-01,"Oklahoma",1449 -2003-08-01,"Oklahoma",1266 -2003-09-01,"Oklahoma",1318 -2003-10-01,"Oklahoma",1683 -2003-11-01,"Oklahoma",3433 -2003-12-01,"Oklahoma",9227 -2004-01-01,"Oklahoma",11804 -2004-02-01,"Oklahoma",12919 -2004-03-01,"Oklahoma",8942 -2004-04-01,"Oklahoma",4255 -2004-05-01,"Oklahoma",2607 -2004-06-01,"Oklahoma",1753 -2004-07-01,"Oklahoma",1488 -2004-08-01,"Oklahoma",1331 -2004-09-01,"Oklahoma",1381 -2004-10-01,"Oklahoma",1562 -2004-11-01,"Oklahoma",2950 -2004-12-01,"Oklahoma",8458 -2005-01-01,"Oklahoma",12708 -2005-02-01,"Oklahoma",11340 -2005-03-01,"Oklahoma",7882 -2005-04-01,"Oklahoma",5187 -2005-05-01,"Oklahoma",2866 -2005-06-01,"Oklahoma",1767 -2005-07-01,"Oklahoma",1377 -2005-08-01,"Oklahoma",1271 -2005-09-01,"Oklahoma",1280 -2005-10-01,"Oklahoma",1470 -2005-11-01,"Oklahoma",2979 -2005-12-01,"Oklahoma",9245 -2006-01-01,"Oklahoma",10195 -2006-02-01,"Oklahoma",8450 -2006-03-01,"Oklahoma",7624 -2006-04-01,"Oklahoma",4439 -2006-05-01,"Oklahoma",1938 -2006-06-01,"Oklahoma",1536 -2006-07-01,"Oklahoma",1395 -2006-08-01,"Oklahoma",1164 -2006-09-01,"Oklahoma",1266 -2006-10-01,"Oklahoma",1579 -2006-11-01,"Oklahoma",4179 -2006-12-01,"Oklahoma",8967 -2007-01-01,"Oklahoma",12091 -2007-02-01,"Oklahoma",14241 -2007-03-01,"Oklahoma",7957 -2007-04-01,"Oklahoma",4172 -2007-05-01,"Oklahoma",2684 -2007-06-01,"Oklahoma",1650 -2007-07-01,"Oklahoma",1412 -2007-08-01,"Oklahoma",1230 -2007-09-01,"Oklahoma",1265 -2007-10-01,"Oklahoma",1322 -2007-11-01,"Oklahoma",3034 -2007-12-01,"Oklahoma",8801 -2008-01-01,"Oklahoma",13923 -2008-02-01,"Oklahoma",12957 -2008-03-01,"Oklahoma",10535 -2008-04-01,"Oklahoma",5270 -2008-05-01,"Oklahoma",2684 -2008-06-01,"Oklahoma",1548 -2008-07-01,"Oklahoma",1369 -2008-08-01,"Oklahoma",1154 -2008-09-01,"Oklahoma",1276 -2008-10-01,"Oklahoma",1493 -2008-11-01,"Oklahoma",3826 -2008-12-01,"Oklahoma",10192 -2009-01-01,"Oklahoma",13897 -2009-02-01,"Oklahoma",11195 -2009-03-01,"Oklahoma",7601 -2009-04-01,"Oklahoma",5770 -2009-05-01,"Oklahoma",2729 -2009-06-01,"Oklahoma",1656 -2009-07-01,"Oklahoma",1271 -2009-08-01,"Oklahoma",1175 -2009-09-01,"Oklahoma",1250 -2009-10-01,"Oklahoma",2149 -2009-11-01,"Oklahoma",3924 -2009-12-01,"Oklahoma",9675 -2010-01-01,"Oklahoma",16232 -2010-02-01,"Oklahoma",13334 -2010-03-01,"Oklahoma",10556 -2010-04-01,"Oklahoma",5125 -2010-05-01,"Oklahoma",2211 -2010-06-01,"Oklahoma",1486 -2010-07-01,"Oklahoma",1197 -2010-08-01,"Oklahoma",1061 -2010-09-01,"Oklahoma",1122 -2010-10-01,"Oklahoma",1390 -2010-11-01,"Oklahoma",2874 -2010-12-01,"Oklahoma",8840 -2011-01-01,"Oklahoma",14331 -2011-02-01,"Oklahoma",10701 -2011-03-01,"Oklahoma",6185 -2011-04-01,"Oklahoma",4215 -2011-05-01,"Oklahoma",2274 -2011-06-01,"Oklahoma",1486 -2011-07-01,"Oklahoma",1008 -2011-08-01,"Oklahoma",941 -2011-09-01,"Oklahoma",1219 -2011-10-01,"Oklahoma",2092 -2011-11-01,"Oklahoma",5847 -2011-12-01,"Oklahoma",11087 -2012-01-01,"Oklahoma",10423 -2012-02-01,"Oklahoma",9226 -2012-03-01,"Oklahoma",4528 -2012-04-01,"Oklahoma",2188 -2012-05-01,"Oklahoma",1558 -2012-06-01,"Oklahoma",1343 -2012-07-01,"Oklahoma",1154 -2012-08-01,"Oklahoma",1121 -2012-09-01,"Oklahoma",1107 -2012-10-01,"Oklahoma",2583 -2012-11-01,"Oklahoma",4766 -2012-12-01,"Oklahoma",9054 -2013-01-01,"Oklahoma",10962 -2013-02-01,"Oklahoma",10140 -2013-03-01,"Oklahoma",10035 -2013-04-01,"Oklahoma",6569 -2013-05-01,"Oklahoma",4273 -2013-06-01,"Oklahoma",1767 -2013-07-01,"Oklahoma",1263 -2013-08-01,"Oklahoma",1157 -2013-09-01,"Oklahoma",1178 -2013-10-01,"Oklahoma",1469 -2013-11-01,"Oklahoma",4503 -2013-12-01,"Oklahoma",12791 -2014-01-01,"Oklahoma",14830 -2014-02-01,"Oklahoma",14744 -2014-03-01,"Oklahoma",11579 -2014-04-01,"Oklahoma",6476 -2014-05-01,"Oklahoma",2558 -2014-06-01,"Oklahoma",1540 -2014-07-01,"Oklahoma",1243 -2014-08-01,"Oklahoma",1150 -2014-09-01,"Oklahoma",1161 -2014-10-01,"Oklahoma",1361 -2014-11-01,"Oklahoma",3198 -2014-12-01,"Oklahoma",9210 -2015-01-01,"Oklahoma",13215 -2015-02-01,"Oklahoma",12794 -2015-03-01,"Oklahoma",6955 -2015-04-01,"Oklahoma",2647 -2015-05-01,"Oklahoma",1937 -2015-06-01,"Oklahoma",1328 -2015-07-01,"Oklahoma",1204 -2015-08-01,"Oklahoma",1227 -2015-09-01,"Oklahoma",1240 -2015-10-01,"Oklahoma",1814 -2015-11-01,"Oklahoma",5701 -2015-12-01,"Oklahoma",9337 -2016-01-01,"Oklahoma",11999 -2016-02-01,"Oklahoma",7605 -2016-03-01,"Oklahoma",4616 -2016-04-01,"Oklahoma",2370 -2016-05-01,"Oklahoma",1759 -2016-06-01,"Oklahoma",1370 -2016-07-01,"Oklahoma",1115 -2016-08-01,"Oklahoma",1175 -2016-09-01,"Oklahoma",1305 -2016-10-01,"Oklahoma",1660 -2016-11-01,"Oklahoma",3798 -2016-12-01,"Oklahoma",11803 -2017-01-01,"Oklahoma",11789 -2017-02-01,"Oklahoma",6446 -2017-03-01,"Oklahoma",4756 -2017-04-01,"Oklahoma",2737 -2017-05-01,"Oklahoma",1879 -2017-06-01,"Oklahoma",1300 -2017-07-01,"Oklahoma",1172 -2017-08-01,"Oklahoma",1298 -2017-09-01,"Oklahoma",1260 -2017-10-01,"Oklahoma",1511 -2017-11-01,"Oklahoma",4925 -2017-12-01,"Oklahoma",11996 -2018-01-01,"Oklahoma",14670 -2018-02-01,"Oklahoma",11721 -2018-03-01,"Oklahoma",6469 -2018-04-01,"Oklahoma",5506 -2018-05-01,"Oklahoma",1686 -2018-06-01,"Oklahoma",1162 -2018-07-01,"Oklahoma",1061 -2018-08-01,"Oklahoma",1116 -2018-09-01,"Oklahoma",1197 -2018-10-01,"Oklahoma",1852 -2018-11-01,"Oklahoma",9118 -2018-12-01,"Oklahoma",11782 -2019-01-01,"Oklahoma",14397 -2019-02-01,"Oklahoma",12543 -2019-03-01,"Oklahoma",9429 -2019-04-01,"Oklahoma",3481 -2019-05-01,"Oklahoma",2165 -2019-06-01,"Oklahoma",1511 -2019-07-01,"Oklahoma",1240 -2019-08-01,"Oklahoma",1118 -2019-09-01,"Oklahoma",1069 -2019-10-01,"Oklahoma",1624 -2019-11-01,"Oklahoma",8608 -2019-12-01,"Oklahoma",10706 -2020-01-01,"Oklahoma",11564 -2020-02-01,"Oklahoma",10926 -2020-03-01,"Oklahoma",6060 -2020-04-01,"Oklahoma",4279 -2020-05-01,"Oklahoma",2269 -2020-06-01,"Oklahoma",1316 -2020-07-01,"Oklahoma",1186 -2020-08-01,"Oklahoma",1249 -2020-09-01,"Oklahoma",1455 -2020-10-01,"Oklahoma",1769 -2020-11-01,"Oklahoma",5636 -2020-12-01,"Oklahoma",11620 -2021-01-01,"Oklahoma",12955 -2021-02-01,"Oklahoma",13858 -1989-01-01,"Oregon",3632 -1989-02-01,"Oregon",4026 -1989-03-01,"Oregon",3351 -1989-04-01,"Oregon",2054 -1989-05-01,"Oregon",1141 -1989-06-01,"Oregon",950 -1989-07-01,"Oregon",696 -1989-08-01,"Oregon",549 -1989-09-01,"Oregon",581 -1989-10-01,"Oregon",804 -1989-11-01,"Oregon",1835 -1989-12-01,"Oregon",2886 -1990-01-01,"Oregon",3807 -1990-02-01,"Oregon",3786 -1990-03-01,"Oregon",3219 -1990-04-01,"Oregon",1820 -1990-05-01,"Oregon",1476 -1990-06-01,"Oregon",1206 -1990-07-01,"Oregon",704 -1990-08-01,"Oregon",560 -1990-09-01,"Oregon",532 -1990-10-01,"Oregon",893 -1990-11-01,"Oregon",1973 -1990-12-01,"Oregon",3407 -1991-01-01,"Oregon",5334 -1991-02-01,"Oregon",3529 -1991-03-01,"Oregon",3075 -1991-04-01,"Oregon",2631 -1991-05-01,"Oregon",1936 -1991-06-01,"Oregon",1461 -1991-07-01,"Oregon",811 -1991-08-01,"Oregon",595 -1991-09-01,"Oregon",582 -1991-10-01,"Oregon",710 -1991-11-01,"Oregon",2106 -1991-12-01,"Oregon",3554 -1992-01-01,"Oregon",4367 -1992-02-01,"Oregon",3223 -1992-03-01,"Oregon",2477 -1992-04-01,"Oregon",1891 -1992-05-01,"Oregon",1248 -1992-06-01,"Oregon",772 -1992-07-01,"Oregon",610 -1992-08-01,"Oregon",526 -1992-09-01,"Oregon",648 -1992-10-01,"Oregon",1017 -1992-11-01,"Oregon",1993 -1992-12-01,"Oregon",4337 -1993-01-01,"Oregon",5789 -1993-02-01,"Oregon",4569 -1993-03-01,"Oregon",3843 -1993-04-01,"Oregon",2533 -1993-05-01,"Oregon",1769 -1993-06-01,"Oregon",945 -1993-07-01,"Oregon",768 -1993-08-01,"Oregon",672 -1993-09-01,"Oregon",698 -1993-10-01,"Oregon",959 -1993-11-01,"Oregon",2336 -1993-12-01,"Oregon",4896 -1994-01-01,"Oregon",4708 -1994-02-01,"Oregon",4373 -1994-03-01,"Oregon",3359 -1994-04-01,"Oregon",2394 -1994-05-01,"Oregon",1415 -1994-06-01,"Oregon",1086 -1994-07-01,"Oregon",751 -1994-08-01,"Oregon",611 -1994-09-01,"Oregon",637 -1994-10-01,"Oregon",1147 -1994-11-01,"Oregon",3247 -1994-12-01,"Oregon",5120 -1995-01-01,"Oregon",5117 -1995-02-01,"Oregon",3656 -1995-03-01,"Oregon",3532 -1995-04-01,"Oregon",2783 -1995-05-01,"Oregon",2048 -1995-06-01,"Oregon",1084 -1995-07-01,"Oregon",808 -1995-08-01,"Oregon",654 -1995-09-01,"Oregon",687 -1995-10-01,"Oregon",1128 -1995-11-01,"Oregon",2620 -1995-12-01,"Oregon",3952 -1996-01-01,"Oregon",5047 -1996-02-01,"Oregon",5586 -1996-03-01,"Oregon",4042 -1996-04-01,"Oregon",2821 -1996-05-01,"Oregon",2300 -1996-06-01,"Oregon",1386 -1996-07-01,"Oregon",839 -1996-08-01,"Oregon",673 -1996-09-01,"Oregon",821 -1996-10-01,"Oregon",1357 -1996-11-01,"Oregon",3164 -1996-12-01,"Oregon",5200 -1997-01-01,"Oregon",5671 -1997-02-01,"Oregon",5128 -1997-03-01,"Oregon",4242 -1997-04-01,"Oregon",3130 -1997-05-01,"Oregon",1883 -1997-06-01,"Oregon",1069 -1997-07-01,"Oregon",881 -1997-08-01,"Oregon",758 -1997-09-01,"Oregon",829 -1997-10-01,"Oregon",1536 -1997-11-01,"Oregon",2713 -1997-12-01,"Oregon",4684 -1998-01-01,"Oregon",6174 -1998-02-01,"Oregon",4624 -1998-03-01,"Oregon",4303 -1998-04-01,"Oregon",2900 -1998-05-01,"Oregon",2174 -1998-06-01,"Oregon",1684 -1998-07-01,"Oregon",944 -1998-08-01,"Oregon",668 -1998-09-01,"Oregon",767 -1998-10-01,"Oregon",1445 -1998-11-01,"Oregon",3180 -1998-12-01,"Oregon",5555 -1999-01-01,"Oregon",6435 -1999-02-01,"Oregon",5873 -1999-03-01,"Oregon",5125 -1999-04-01,"Oregon",3948 -1999-05-01,"Oregon",2796 -1999-06-01,"Oregon",1661 -1999-07-01,"Oregon",852 -1999-08-01,"Oregon",824 -1999-09-01,"Oregon",935 -1999-10-01,"Oregon",1617 -1999-11-01,"Oregon",3108 -1999-12-01,"Oregon",5391 -2000-01-01,"Oregon",6622 -2000-02-01,"Oregon",5776 -2000-03-01,"Oregon",5048 -2000-04-01,"Oregon",3475 -2000-05-01,"Oregon",2321 -2000-06-01,"Oregon",1530 -2000-07-01,"Oregon",997 -2000-08-01,"Oregon",801 -2000-09-01,"Oregon",977 -2000-10-01,"Oregon",1572 -2000-11-01,"Oregon",3552 -2000-12-01,"Oregon",6028 -2001-01-01,"Oregon",6324 -2001-02-01,"Oregon",5939 -2001-03-01,"Oregon",5046 -2001-04-01,"Oregon",3915 -2001-05-01,"Oregon",2653 -2001-06-01,"Oregon",1508 -2001-07-01,"Oregon",1054 -2001-08-01,"Oregon",882 -2001-09-01,"Oregon",893 -2001-10-01,"Oregon",1442 -2001-11-01,"Oregon",3342 -2001-12-01,"Oregon",5274 -2002-01-01,"Oregon",6445 -2002-02-01,"Oregon",6096 -2002-03-01,"Oregon",5257 -2002-04-01,"Oregon",3851 -2002-05-01,"Oregon",2776 -2002-06-01,"Oregon",1613 -2002-07-01,"Oregon",993 -2002-08-01,"Oregon",840 -2002-09-01,"Oregon",931 -2002-10-01,"Oregon",1464 -2002-11-01,"Oregon",3424 -2002-12-01,"Oregon",5167 -2003-01-01,"Oregon",5968 -2003-02-01,"Oregon",5064 -2003-03-01,"Oregon",4992 -2003-04-01,"Oregon",3838 -2003-05-01,"Oregon",3058 -2003-06-01,"Oregon",1600 -2003-07-01,"Oregon",997 -2003-08-01,"Oregon",819 -2003-09-01,"Oregon",904 -2003-10-01,"Oregon",1227 -2003-11-01,"Oregon",3179 -2003-12-01,"Oregon",5653 -2004-01-01,"Oregon",7559 -2004-02-01,"Oregon",6208 -2004-03-01,"Oregon",4601 -2004-04-01,"Oregon",2979 -2004-05-01,"Oregon",2077 -2004-06-01,"Oregon",1557 -2004-07-01,"Oregon",1006 -2004-08-01,"Oregon",799 -2004-09-01,"Oregon",998 -2004-10-01,"Oregon",1471 -2004-11-01,"Oregon",3569 -2004-12-01,"Oregon",5709 -2005-01-01,"Oregon",6861 -2005-02-01,"Oregon",5816 -2005-03-01,"Oregon",4374 -2005-04-01,"Oregon",3787 -2005-05-01,"Oregon",2311 -2005-06-01,"Oregon",1668 -2005-07-01,"Oregon",1101 -2005-08-01,"Oregon",855 -2005-09-01,"Oregon",1013 -2005-10-01,"Oregon",1632 -2005-11-01,"Oregon",3407 -2005-12-01,"Oregon",6982 -2006-01-01,"Oregon",6471 -2006-02-01,"Oregon",6150 -2006-03-01,"Oregon",6085 -2006-04-01,"Oregon",3858 -2006-05-01,"Oregon",2225 -2006-06-01,"Oregon",1403 -2006-07-01,"Oregon",975 -2006-08-01,"Oregon",868 -2006-09-01,"Oregon",1055 -2006-10-01,"Oregon",1712 -2006-11-01,"Oregon",3892 -2006-12-01,"Oregon",6350 -2007-01-01,"Oregon",7886 -2007-02-01,"Oregon",6842 -2007-03-01,"Oregon",4832 -2007-04-01,"Oregon",3471 -2007-05-01,"Oregon",2525 -2007-06-01,"Oregon",1452 -2007-07-01,"Oregon",1070 -2007-08-01,"Oregon",940 -2007-09-01,"Oregon",1030 -2007-10-01,"Oregon",2214 -2007-11-01,"Oregon",4145 -2007-12-01,"Oregon",6472 -2008-01-01,"Oregon",7865 -2008-02-01,"Oregon",7202 -2008-03-01,"Oregon",5457 -2008-04-01,"Oregon",5095 -2008-05-01,"Oregon",3176 -2008-06-01,"Oregon",1960 -2008-07-01,"Oregon",1204 -2008-08-01,"Oregon",965 -2008-09-01,"Oregon",1056 -2008-10-01,"Oregon",1825 -2008-11-01,"Oregon",3274 -2008-12-01,"Oregon",5974 -2009-01-01,"Oregon",7928 -2009-02-01,"Oregon",6702 -2009-03-01,"Oregon",6096 -2009-04-01,"Oregon",4327 -2009-05-01,"Oregon",2595 -2009-06-01,"Oregon",1350 -2009-07-01,"Oregon",1023 -2009-08-01,"Oregon",885 -2009-09-01,"Oregon",976 -2009-10-01,"Oregon",1849 -2009-11-01,"Oregon",4086 -2009-12-01,"Oregon",7002 -2010-01-01,"Oregon",6654 -2010-02-01,"Oregon",4893 -2010-03-01,"Oregon",4232 -2010-04-01,"Oregon",3946 -2010-05-01,"Oregon",2801 -2010-06-01,"Oregon",1937 -2010-07-01,"Oregon",1144 -2010-08-01,"Oregon",934 -2010-09-01,"Oregon",955 -2010-10-01,"Oregon",2073 -2010-11-01,"Oregon",4947 -2010-12-01,"Oregon",6304 -2011-01-01,"Oregon",7093 -2011-02-01,"Oregon",6525 -2011-03-01,"Oregon",5488 -2011-04-01,"Oregon",4400 -2011-05-01,"Oregon",2720 -2011-06-01,"Oregon",1529 -2011-07-01,"Oregon",1093 -2011-08-01,"Oregon",966 -2011-09-01,"Oregon",1029 -2011-10-01,"Oregon",2539 -2011-11-01,"Oregon",5645 -2011-12-01,"Oregon",7578 -2012-01-01,"Oregon",7455 -2012-02-01,"Oregon",5987 -2012-03-01,"Oregon",5894 -2012-04-01,"Oregon",3331 -2012-05-01,"Oregon",2205 -2012-06-01,"Oregon",1434 -2012-07-01,"Oregon",1197 -2012-08-01,"Oregon",765 -2012-09-01,"Oregon",1023 -2012-10-01,"Oregon",2512 -2012-11-01,"Oregon",4735 -2012-12-01,"Oregon",6797 -2013-01-01,"Oregon",8735 -2013-02-01,"Oregon",5795 -2013-03-01,"Oregon",4238 -2013-04-01,"Oregon",3452 -2013-05-01,"Oregon",2069 -2013-06-01,"Oregon",1102 -2013-07-01,"Oregon",919 -2013-08-01,"Oregon",859 -2013-09-01,"Oregon",1293 -2013-10-01,"Oregon",3347 -2013-11-01,"Oregon",5555 -2013-12-01,"Oregon",8890 -2014-01-01,"Oregon",7412 -2014-02-01,"Oregon",6749 -2014-03-01,"Oregon",4412 -2014-04-01,"Oregon",3197 -2014-05-01,"Oregon",1459 -2014-06-01,"Oregon",1213 -2014-07-01,"Oregon",979 -2014-08-01,"Oregon",894 -2014-09-01,"Oregon",970 -2014-10-01,"Oregon",1779 -2014-11-01,"Oregon",5703 -2014-12-01,"Oregon",6418 -2015-01-01,"Oregon",6219 -2015-02-01,"Oregon",4166 -2015-03-01,"Oregon",3525 -2015-04-01,"Oregon",3242 -2015-05-01,"Oregon",1694 -2015-06-01,"Oregon",963 -2015-07-01,"Oregon",840 -2015-08-01,"Oregon",821 -2015-09-01,"Oregon",1189 -2015-10-01,"Oregon",1763 -2015-11-01,"Oregon",5719 -2015-12-01,"Oregon",6927 -2016-01-01,"Oregon",6827 -2016-02-01,"Oregon",4904 -2016-03-01,"Oregon",4524 -2016-04-01,"Oregon",2244 -2016-05-01,"Oregon",1550 -2016-06-01,"Oregon",1127 -2016-07-01,"Oregon",920 -2016-08-01,"Oregon",622 -2016-09-01,"Oregon",1114 -2016-10-01,"Oregon",2776 -2016-11-01,"Oregon",3994 -2016-12-01,"Oregon",8788 -2017-01-01,"Oregon",9534 -2017-02-01,"Oregon",6406 -2017-03-01,"Oregon",5136 -2017-04-01,"Oregon",3766 -2017-05-01,"Oregon",2148 -2017-06-01,"Oregon",1326 -2017-07-01,"Oregon",866 -2017-08-01,"Oregon",778 -2017-09-01,"Oregon",1191 -2017-10-01,"Oregon",3149 -2017-11-01,"Oregon",5326 -2017-12-01,"Oregon",8214 -2018-01-01,"Oregon",6233 -2018-02-01,"Oregon",6335 -2018-03-01,"Oregon",5408 -2018-04-01,"Oregon",3483 -2018-05-01,"Oregon",1518 -2018-06-01,"Oregon",1299 -2018-07-01,"Oregon",945 -2018-08-01,"Oregon",897 -2018-09-01,"Oregon",1234 -2018-10-01,"Oregon",2639 -2018-11-01,"Oregon",5388 -2018-12-01,"Oregon",7246 -2019-01-01,"Oregon",7302 -2019-02-01,"Oregon",7977 -2019-03-01,"Oregon",5943 -2019-04-01,"Oregon",3332 -2019-05-01,"Oregon",1692 -2019-06-01,"Oregon",1297 -2019-07-01,"Oregon",962 -2019-08-01,"Oregon",959 -2019-09-01,"Oregon",1405 -2019-10-01,"Oregon",4322 -2019-11-01,"Oregon",5687 -2019-12-01,"Oregon",7047 -2020-01-01,"Oregon",6819 -2020-02-01,"Oregon",6263 -2020-03-01,"Oregon",5856 -2020-04-01,"Oregon",3288 -2020-05-01,"Oregon",2165 -2020-06-01,"Oregon",1575 -2020-07-01,"Oregon",1170 -2020-08-01,"Oregon",1000 -2020-09-01,"Oregon",1156 -2020-10-01,"Oregon",2910 -2020-11-01,"Oregon",6043 -2020-12-01,"Oregon",7264 -2021-01-01,"Oregon",7040 -2021-02-01,"Oregon",7119 -1989-01-01,"Pennsylvania",42523 -1989-02-01,"Pennsylvania",40317 -1989-03-01,"Pennsylvania",37886 -1989-04-01,"Pennsylvania",26310 -1989-05-01,"Pennsylvania",15825 -1989-06-01,"Pennsylvania",8128 -1989-07-01,"Pennsylvania",6400 -1989-08-01,"Pennsylvania",6014 -1989-09-01,"Pennsylvania",6716 -1989-10-01,"Pennsylvania",13222 -1989-11-01,"Pennsylvania",22442 -1989-12-01,"Pennsylvania",44960 -1990-01-01,"Pennsylvania",46618 -1990-02-01,"Pennsylvania",34274 -1990-03-01,"Pennsylvania",31872 -1990-04-01,"Pennsylvania",24487 -1990-05-01,"Pennsylvania",13211 -1990-06-01,"Pennsylvania",8393 -1990-07-01,"Pennsylvania",5973 -1990-08-01,"Pennsylvania",5697 -1990-09-01,"Pennsylvania",6665 -1990-10-01,"Pennsylvania",10603 -1990-11-01,"Pennsylvania",20874 -1990-12-01,"Pennsylvania",31349 -1991-01-01,"Pennsylvania",42638 -1991-02-01,"Pennsylvania",38146 -1991-03-01,"Pennsylvania",32729 -1991-04-01,"Pennsylvania",22324 -1991-05-01,"Pennsylvania",11101 -1991-06-01,"Pennsylvania",6704 -1991-07-01,"Pennsylvania",5716 -1991-08-01,"Pennsylvania",5399 -1991-09-01,"Pennsylvania",6792 -1991-10-01,"Pennsylvania",13403 -1991-11-01,"Pennsylvania",23637 -1991-12-01,"Pennsylvania",34139 -1992-01-01,"Pennsylvania",44113 -1992-02-01,"Pennsylvania",41812 -1992-03-01,"Pennsylvania",36068 -1992-04-01,"Pennsylvania",26243 -1992-05-01,"Pennsylvania",13989 -1992-06-01,"Pennsylvania",8047 -1992-07-01,"Pennsylvania",6134 -1992-08-01,"Pennsylvania",5902 -1992-09-01,"Pennsylvania",6950 -1992-10-01,"Pennsylvania",15853 -1992-11-01,"Pennsylvania",24806 -1992-12-01,"Pennsylvania",36609 -1993-01-01,"Pennsylvania",41969 -1993-02-01,"Pennsylvania",45019 -1993-03-01,"Pennsylvania",42350 -1993-04-01,"Pennsylvania",24988 -1993-05-01,"Pennsylvania",11007 -1993-06-01,"Pennsylvania",8560 -1993-07-01,"Pennsylvania",5614 -1993-08-01,"Pennsylvania",5688 -1993-09-01,"Pennsylvania",6754 -1993-10-01,"Pennsylvania",15261 -1993-11-01,"Pennsylvania",24357 -1993-12-01,"Pennsylvania",37429 -1994-01-01,"Pennsylvania",55091 -1994-02-01,"Pennsylvania",47970 -1994-03-01,"Pennsylvania",39926 -1994-04-01,"Pennsylvania",22900 -1994-05-01,"Pennsylvania",13510 -1994-06-01,"Pennsylvania",8233 -1994-07-01,"Pennsylvania",5541 -1994-08-01,"Pennsylvania",5463 -1994-09-01,"Pennsylvania",6181 -1994-10-01,"Pennsylvania",12677 -1994-11-01,"Pennsylvania",18904 -1994-12-01,"Pennsylvania",32009 -1995-01-01,"Pennsylvania",41264 -1995-02-01,"Pennsylvania",45212 -1995-03-01,"Pennsylvania",33973 -1995-04-01,"Pennsylvania",23525 -1995-05-01,"Pennsylvania",12140 -1995-06-01,"Pennsylvania",6588 -1995-07-01,"Pennsylvania",5638 -1995-08-01,"Pennsylvania",5084 -1995-09-01,"Pennsylvania",5805 -1995-10-01,"Pennsylvania",10640 -1995-11-01,"Pennsylvania",27801 -1995-12-01,"Pennsylvania",44456 -1996-01-01,"Pennsylvania",51522 -1996-02-01,"Pennsylvania",46086 -1996-03-01,"Pennsylvania",40492 -1996-04-01,"Pennsylvania",25624 -1996-05-01,"Pennsylvania",13490 -1996-06-01,"Pennsylvania",7575 -1996-07-01,"Pennsylvania",5688 -1996-08-01,"Pennsylvania",5295 -1996-09-01,"Pennsylvania",5907 -1996-10-01,"Pennsylvania",13202 -1996-11-01,"Pennsylvania",27037 -1996-12-01,"Pennsylvania",36688 -1997-01-01,"Pennsylvania",45904 -1997-02-01,"Pennsylvania",41208 -1997-03-01,"Pennsylvania",33473 -1997-04-01,"Pennsylvania",25082 -1997-05-01,"Pennsylvania",15416 -1997-06-01,"Pennsylvania",7510 -1997-07-01,"Pennsylvania",5254 -1997-08-01,"Pennsylvania",5236 -1997-09-01,"Pennsylvania",6214 -1997-10-01,"Pennsylvania",12927 -1997-11-01,"Pennsylvania",26561 -1997-12-01,"Pennsylvania",37709 -1998-01-01,"Pennsylvania",37739 -1998-02-01,"Pennsylvania",34880 -1998-03-01,"Pennsylvania",32685 -1998-04-01,"Pennsylvania",19457 -1998-05-01,"Pennsylvania",9648 -1998-06-01,"Pennsylvania",6834 -1998-07-01,"Pennsylvania",5332 -1998-08-01,"Pennsylvania",5058 -1998-09-01,"Pennsylvania",5161 -1998-10-01,"Pennsylvania",10204 -1998-11-01,"Pennsylvania",21159 -1998-12-01,"Pennsylvania",29772 -1999-01-01,"Pennsylvania",46069 -1999-02-01,"Pennsylvania",36823 -1999-03-01,"Pennsylvania",37573 -1999-04-01,"Pennsylvania",21743 -1999-05-01,"Pennsylvania",11281 -1999-06-01,"Pennsylvania",6529 -1999-07-01,"Pennsylvania",4974 -1999-08-01,"Pennsylvania",4817 -1999-09-01,"Pennsylvania",5334 -1999-10-01,"Pennsylvania",12407 -1999-11-01,"Pennsylvania",19812 -1999-12-01,"Pennsylvania",34106 -2000-01-01,"Pennsylvania",48338 -2000-02-01,"Pennsylvania",42456 -2000-03-01,"Pennsylvania",29615 -2000-04-01,"Pennsylvania",22060 -2000-05-01,"Pennsylvania",10832 -2000-06-01,"Pennsylvania",7890 -2000-07-01,"Pennsylvania",5827 -2000-08-01,"Pennsylvania",5650 -2000-09-01,"Pennsylvania",6985 -2000-10-01,"Pennsylvania",12518 -2000-11-01,"Pennsylvania",23668 -2000-12-01,"Pennsylvania",46950 -2001-01-01,"Pennsylvania",50948 -2001-02-01,"Pennsylvania",39596 -2001-03-01,"Pennsylvania",37782 -2001-04-01,"Pennsylvania",23207 -2001-05-01,"Pennsylvania",10118 -2001-06-01,"Pennsylvania",6350 -2001-07-01,"Pennsylvania",5025 -2001-08-01,"Pennsylvania",4923 -2001-09-01,"Pennsylvania",5351 -2001-10-01,"Pennsylvania",11085 -2001-11-01,"Pennsylvania",17515 -2001-12-01,"Pennsylvania",26949 -2002-01-01,"Pennsylvania",39692 -2002-02-01,"Pennsylvania",34740 -2002-03-01,"Pennsylvania",31742 -2002-04-01,"Pennsylvania",22210 -2002-05-01,"Pennsylvania",12217 -2002-06-01,"Pennsylvania",7277 -2002-07-01,"Pennsylvania",5179 -2002-08-01,"Pennsylvania",4467 -2002-09-01,"Pennsylvania",5158 -2002-10-01,"Pennsylvania",11314 -2002-11-01,"Pennsylvania",24419 -2002-12-01,"Pennsylvania",40708 -2003-01-01,"Pennsylvania",51246 -2003-02-01,"Pennsylvania",49909 -2003-03-01,"Pennsylvania",38575 -2003-04-01,"Pennsylvania",22365 -2003-05-01,"Pennsylvania",12283 -2003-06-01,"Pennsylvania",7554 -2003-07-01,"Pennsylvania",5305 -2003-08-01,"Pennsylvania",4865 -2003-09-01,"Pennsylvania",4907 -2003-10-01,"Pennsylvania",12331 -2003-11-01,"Pennsylvania",18643 -2003-12-01,"Pennsylvania",37038 -2004-01-01,"Pennsylvania",50259 -2004-02-01,"Pennsylvania",46933 -2004-03-01,"Pennsylvania",33116 -2004-04-01,"Pennsylvania",22863 -2004-05-01,"Pennsylvania",9906 -2004-06-01,"Pennsylvania",6559 -2004-07-01,"Pennsylvania",5036 -2004-08-01,"Pennsylvania",4682 -2004-09-01,"Pennsylvania",5028 -2004-10-01,"Pennsylvania",10532 -2004-11-01,"Pennsylvania",19662 -2004-12-01,"Pennsylvania",33211 -2005-01-01,"Pennsylvania",44640 -2005-02-01,"Pennsylvania",41862 -2005-03-01,"Pennsylvania",39536 -2005-04-01,"Pennsylvania",20678 -2005-05-01,"Pennsylvania",12263 -2005-06-01,"Pennsylvania",6431 -2005-07-01,"Pennsylvania",4598 -2005-08-01,"Pennsylvania",4296 -2005-09-01,"Pennsylvania",4538 -2005-10-01,"Pennsylvania",8949 -2005-11-01,"Pennsylvania",18786 -2005-12-01,"Pennsylvania",38521 -2006-01-01,"Pennsylvania",35942 -2006-02-01,"Pennsylvania",35609 -2006-03-01,"Pennsylvania",31866 -2006-04-01,"Pennsylvania",17012 -2006-05-01,"Pennsylvania",8861 -2006-06-01,"Pennsylvania",5671 -2006-07-01,"Pennsylvania",4279 -2006-08-01,"Pennsylvania",4148 -2006-09-01,"Pennsylvania",4770 -2006-10-01,"Pennsylvania",10899 -2006-11-01,"Pennsylvania",18771 -2006-12-01,"Pennsylvania",27985 -2007-01-01,"Pennsylvania",35326 -2007-02-01,"Pennsylvania",47087 -2007-03-01,"Pennsylvania",34741 -2007-04-01,"Pennsylvania",23982 -2007-05-01,"Pennsylvania",10004 -2007-06-01,"Pennsylvania",5278 -2007-07-01,"Pennsylvania",4433 -2007-08-01,"Pennsylvania",4060 -2007-09-01,"Pennsylvania",4690 -2007-10-01,"Pennsylvania",6695 -2007-11-01,"Pennsylvania",19927 -2007-12-01,"Pennsylvania",35083 -2008-01-01,"Pennsylvania",39899 -2008-02-01,"Pennsylvania",39853 -2008-03-01,"Pennsylvania",34208 -2008-04-01,"Pennsylvania",18553 -2008-05-01,"Pennsylvania",9853 -2008-06-01,"Pennsylvania",5908 -2008-07-01,"Pennsylvania",4406 -2008-08-01,"Pennsylvania",4118 -2008-09-01,"Pennsylvania",4489 -2008-10-01,"Pennsylvania",9980 -2008-11-01,"Pennsylvania",21215 -2008-12-01,"Pennsylvania",36772 -2009-01-01,"Pennsylvania",47628 -2009-02-01,"Pennsylvania",40683 -2009-03-01,"Pennsylvania",30896 -2009-04-01,"Pennsylvania",19180 -2009-05-01,"Pennsylvania",8731 -2009-06-01,"Pennsylvania",5320 -2009-07-01,"Pennsylvania",4579 -2009-08-01,"Pennsylvania",4087 -2009-09-01,"Pennsylvania",4714 -2009-10-01,"Pennsylvania",11181 -2009-11-01,"Pennsylvania",16955 -2009-12-01,"Pennsylvania",33761 -2010-01-01,"Pennsylvania",43694 -2010-02-01,"Pennsylvania",39423 -2010-03-01,"Pennsylvania",27737 -2010-04-01,"Pennsylvania",13190 -2010-05-01,"Pennsylvania",8276 -2010-06-01,"Pennsylvania",4803 -2010-07-01,"Pennsylvania",3977 -2010-08-01,"Pennsylvania",3989 -2010-09-01,"Pennsylvania",4603 -2010-10-01,"Pennsylvania",9910 -2010-11-01,"Pennsylvania",21205 -2010-12-01,"Pennsylvania",42837 -2011-01-01,"Pennsylvania",49202 -2011-02-01,"Pennsylvania",38447 -2011-03-01,"Pennsylvania",31234 -2011-04-01,"Pennsylvania",16312 -2011-05-01,"Pennsylvania",7914 -2011-06-01,"Pennsylvania",4600 -2011-07-01,"Pennsylvania",4013 -2011-08-01,"Pennsylvania",3912 -2011-09-01,"Pennsylvania",4565 -2011-10-01,"Pennsylvania",11307 -2011-11-01,"Pennsylvania",18370 -2011-12-01,"Pennsylvania",29569 -2012-01-01,"Pennsylvania",39056 -2012-02-01,"Pennsylvania",32249 -2012-03-01,"Pennsylvania",19282 -2012-04-01,"Pennsylvania",14320 -2012-05-01,"Pennsylvania",7457 -2012-06-01,"Pennsylvania",4528 -2012-07-01,"Pennsylvania",3948 -2012-08-01,"Pennsylvania",4133 -2012-09-01,"Pennsylvania",4723 -2012-10-01,"Pennsylvania",10279 -2012-11-01,"Pennsylvania",26153 -2012-12-01,"Pennsylvania",31185 -2013-01-01,"Pennsylvania",41758 -2013-02-01,"Pennsylvania",39594 -2013-03-01,"Pennsylvania",35141 -2013-04-01,"Pennsylvania",16952 -2013-05-01,"Pennsylvania",8224 -2013-06-01,"Pennsylvania",4991 -2013-07-01,"Pennsylvania",4018 -2013-08-01,"Pennsylvania",4059 -2013-09-01,"Pennsylvania",4689 -2013-10-01,"Pennsylvania",9447 -2013-11-01,"Pennsylvania",24510 -2013-12-01,"Pennsylvania",38477 -2014-01-01,"Pennsylvania",53292 -2014-02-01,"Pennsylvania",45671 -2014-03-01,"Pennsylvania",39581 -2014-04-01,"Pennsylvania",17444 -2014-05-01,"Pennsylvania",8707 -2014-06-01,"Pennsylvania",5014 -2014-07-01,"Pennsylvania",4150 -2014-08-01,"Pennsylvania",4251 -2014-09-01,"Pennsylvania",4770 -2014-10-01,"Pennsylvania",9532 -2014-11-01,"Pennsylvania",25074 -2014-12-01,"Pennsylvania",37330 -2015-01-01,"Pennsylvania",48403 -2015-02-01,"Pennsylvania",51857 -2015-03-01,"Pennsylvania",37965 -2015-04-01,"Pennsylvania",17159 -2015-05-01,"Pennsylvania",7626 -2015-06-01,"Pennsylvania",5380 -2015-07-01,"Pennsylvania",4148 -2015-08-01,"Pennsylvania",4063 -2015-09-01,"Pennsylvania",4797 -2015-10-01,"Pennsylvania",11557 -2015-11-01,"Pennsylvania",18222 -2015-12-01,"Pennsylvania",24492 -2016-01-01,"Pennsylvania",44428 -2016-02-01,"Pennsylvania",37256 -2016-03-01,"Pennsylvania",22482 -2016-04-01,"Pennsylvania",16928 -2016-05-01,"Pennsylvania",9401 -2016-06-01,"Pennsylvania",5191 -2016-07-01,"Pennsylvania",4156 -2016-08-01,"Pennsylvania",3943 -2016-09-01,"Pennsylvania",4167 -2016-10-01,"Pennsylvania",8820 -2016-11-01,"Pennsylvania",20030 -2016-12-01,"Pennsylvania",38711 -2017-01-01,"Pennsylvania",39962 -2017-02-01,"Pennsylvania",30972 -2017-03-01,"Pennsylvania",33765 -2017-04-01,"Pennsylvania",13739 -2017-05-01,"Pennsylvania",9495 -2017-06-01,"Pennsylvania",5099 -2017-07-01,"Pennsylvania",4196 -2017-08-01,"Pennsylvania",3878 -2017-09-01,"Pennsylvania",4601 -2017-10-01,"Pennsylvania",7875 -2017-11-01,"Pennsylvania",22852 -2017-12-01,"Pennsylvania",42299 -2018-01-01,"Pennsylvania",52279 -2018-02-01,"Pennsylvania",33224 -2018-03-01,"Pennsylvania",38763 -2018-04-01,"Pennsylvania",23113 -2018-05-01,"Pennsylvania",6648 -2018-06-01,"Pennsylvania",4538 -2018-07-01,"Pennsylvania",4166 -2018-08-01,"Pennsylvania",4120 -2018-09-01,"Pennsylvania",4390 -2018-10-01,"Pennsylvania",12759 -2018-11-01,"Pennsylvania",30818 -2018-12-01,"Pennsylvania",37903 -2019-01-01,"Pennsylvania",50391 -2019-02-01,"Pennsylvania",40218 -2019-03-01,"Pennsylvania",35444 -2019-04-01,"Pennsylvania",14432 -2019-05-01,"Pennsylvania",8448 -2019-06-01,"Pennsylvania",4855 -2019-07-01,"Pennsylvania",4013 -2019-08-01,"Pennsylvania",3931 -2019-09-01,"Pennsylvania",4202 -2019-10-01,"Pennsylvania",7970 -2019-11-01,"Pennsylvania",23738 -2019-12-01,"Pennsylvania",38989 -2020-01-01,"Pennsylvania",39637 -2020-02-01,"Pennsylvania",35859 -2020-03-01,"Pennsylvania",25257 -2020-04-01,"Pennsylvania",19820 -2020-05-01,"Pennsylvania",12797 -2020-06-01,"Pennsylvania",5656 -2020-07-01,"Pennsylvania",3759 -2020-08-01,"Pennsylvania",3933 -2020-09-01,"Pennsylvania",4534 -2020-10-01,"Pennsylvania",9673 -2020-11-01,"Pennsylvania",18947 -2020-12-01,"Pennsylvania",38219 -2021-01-01,"Pennsylvania",46470 -2021-02-01,"Pennsylvania",42725 -1989-01-01,"Rhode Island",2864 -1989-02-01,"Rhode Island",2682 -1989-03-01,"Rhode Island",2711 -1989-04-01,"Rhode Island",1828 -1989-05-01,"Rhode Island",1223 -1989-06-01,"Rhode Island",590 -1989-07-01,"Rhode Island",500 -1989-08-01,"Rhode Island",464 -1989-09-01,"Rhode Island",497 -1989-10-01,"Rhode Island",855 -1989-11-01,"Rhode Island",1325 -1989-12-01,"Rhode Island",2744 -1990-01-01,"Rhode Island",3256 -1990-02-01,"Rhode Island",2532 -1990-03-01,"Rhode Island",2455 -1990-04-01,"Rhode Island",1867 -1990-05-01,"Rhode Island",1218 -1990-06-01,"Rhode Island",762 -1990-07-01,"Rhode Island",481 -1990-08-01,"Rhode Island",480 -1990-09-01,"Rhode Island",539 -1990-10-01,"Rhode Island",688 -1990-11-01,"Rhode Island",1353 -1990-12-01,"Rhode Island",2093 -1991-01-01,"Rhode Island",2788 -1991-02-01,"Rhode Island",2714 -1991-03-01,"Rhode Island",2448 -1991-04-01,"Rhode Island",1758 -1991-05-01,"Rhode Island",1087 -1991-06-01,"Rhode Island",565 -1991-07-01,"Rhode Island",498 -1991-08-01,"Rhode Island",525 -1991-09-01,"Rhode Island",491 -1991-10-01,"Rhode Island",870 -1991-11-01,"Rhode Island",1436 -1991-12-01,"Rhode Island",2186 -1992-01-01,"Rhode Island",2997 -1992-02-01,"Rhode Island",3092 -1992-03-01,"Rhode Island",2802 -1992-04-01,"Rhode Island",2271 -1992-05-01,"Rhode Island",1446 -1992-06-01,"Rhode Island",771 -1992-07-01,"Rhode Island",639 -1992-08-01,"Rhode Island",423 -1992-09-01,"Rhode Island",547 -1992-10-01,"Rhode Island",890 -1992-11-01,"Rhode Island",1720 -1992-12-01,"Rhode Island",2403 -1993-01-01,"Rhode Island",3091 -1993-02-01,"Rhode Island",3326 -1993-03-01,"Rhode Island",3291 -1993-04-01,"Rhode Island",2200 -1993-05-01,"Rhode Island",1117 -1993-06-01,"Rhode Island",671 -1993-07-01,"Rhode Island",558 -1993-08-01,"Rhode Island",472 -1993-09-01,"Rhode Island",487 -1993-10-01,"Rhode Island",975 -1993-11-01,"Rhode Island",1510 -1993-12-01,"Rhode Island",2023 -1994-01-01,"Rhode Island",3061 -1994-02-01,"Rhode Island",3269 -1994-03-01,"Rhode Island",2694 -1994-04-01,"Rhode Island",1698 -1994-05-01,"Rhode Island",1098 -1994-06-01,"Rhode Island",602 -1994-07-01,"Rhode Island",439 -1994-08-01,"Rhode Island",422 -1994-09-01,"Rhode Island",427 -1994-10-01,"Rhode Island",736 -1994-11-01,"Rhode Island",1060 -1994-12-01,"Rhode Island",1877 -1995-01-01,"Rhode Island",2054 -1995-02-01,"Rhode Island",2903 -1995-03-01,"Rhode Island",2634 -1995-04-01,"Rhode Island",1834 -1995-05-01,"Rhode Island",1195 -1995-06-01,"Rhode Island",711 -1995-07-01,"Rhode Island",448 -1995-08-01,"Rhode Island",448 -1995-09-01,"Rhode Island",474 -1995-10-01,"Rhode Island",672 -1995-11-01,"Rhode Island",1336 -1995-12-01,"Rhode Island",2634 -1996-01-01,"Rhode Island",3342 -1996-02-01,"Rhode Island",3119 -1996-03-01,"Rhode Island",2664 -1996-04-01,"Rhode Island",1901 -1996-05-01,"Rhode Island",1216 -1996-06-01,"Rhode Island",692 -1996-07-01,"Rhode Island",484 -1996-08-01,"Rhode Island",450 -1996-09-01,"Rhode Island",467 -1996-10-01,"Rhode Island",738 -1996-11-01,"Rhode Island",1416 -1996-12-01,"Rhode Island",2350 -1997-01-01,"Rhode Island",2890 -1997-02-01,"Rhode Island",2891 -1997-03-01,"Rhode Island",2462 -1997-04-01,"Rhode Island",1994 -1997-05-01,"Rhode Island",1171 -1997-06-01,"Rhode Island",727 -1997-07-01,"Rhode Island",480 -1997-08-01,"Rhode Island",443 -1997-09-01,"Rhode Island",473 -1997-10-01,"Rhode Island",659 -1997-11-01,"Rhode Island",1464 -1997-12-01,"Rhode Island",2509 -1998-01-01,"Rhode Island",2781 -1998-02-01,"Rhode Island",2720 -1998-03-01,"Rhode Island",2402 -1998-04-01,"Rhode Island",1662 -1998-05-01,"Rhode Island",1001 -1998-06-01,"Rhode Island",622 -1998-07-01,"Rhode Island",462 -1998-08-01,"Rhode Island",438 -1998-09-01,"Rhode Island",436 -1998-10-01,"Rhode Island",645 -1998-11-01,"Rhode Island",1408 -1998-12-01,"Rhode Island",1883 -1999-01-01,"Rhode Island",3083 -1999-02-01,"Rhode Island",2662 -1999-03-01,"Rhode Island",2704 -1999-04-01,"Rhode Island",1702 -1999-05-01,"Rhode Island",949 -1999-06-01,"Rhode Island",557 -1999-07-01,"Rhode Island",448 -1999-08-01,"Rhode Island",399 -1999-09-01,"Rhode Island",445 -1999-10-01,"Rhode Island",691 -1999-11-01,"Rhode Island",1227 -1999-12-01,"Rhode Island",1736 -2000-01-01,"Rhode Island",2857 -2000-02-01,"Rhode Island",3500 -2000-03-01,"Rhode Island",2581 -2000-04-01,"Rhode Island",1812 -2000-05-01,"Rhode Island",1279 -2000-06-01,"Rhode Island",715 -2000-07-01,"Rhode Island",482 -2000-08-01,"Rhode Island",451 -2000-09-01,"Rhode Island",506 -2000-10-01,"Rhode Island",722 -2000-11-01,"Rhode Island",1262 -2000-12-01,"Rhode Island",2487 -2001-01-01,"Rhode Island",3471 -2001-02-01,"Rhode Island",2966 -2001-03-01,"Rhode Island",2881 -2001-04-01,"Rhode Island",2133 -2001-05-01,"Rhode Island",1030 -2001-06-01,"Rhode Island",644 -2001-07-01,"Rhode Island",476 -2001-08-01,"Rhode Island",450 -2001-09-01,"Rhode Island",506 -2001-10-01,"Rhode Island",617 -2001-11-01,"Rhode Island",1153 -2001-12-01,"Rhode Island",1609 -2002-01-01,"Rhode Island",2847 -2002-02-01,"Rhode Island",2573 -2002-03-01,"Rhode Island",2282 -2002-04-01,"Rhode Island",1807 -2002-05-01,"Rhode Island",1232 -2002-06-01,"Rhode Island",763 -2002-07-01,"Rhode Island",465 -2002-08-01,"Rhode Island",431 -2002-09-01,"Rhode Island",417 -2002-10-01,"Rhode Island",603 -2002-11-01,"Rhode Island",1580 -2002-12-01,"Rhode Island",2546 -2003-01-01,"Rhode Island",3197 -2003-02-01,"Rhode Island",3703 -2003-03-01,"Rhode Island",3246 -2003-04-01,"Rhode Island",2137 -2003-05-01,"Rhode Island",1418 -2003-06-01,"Rhode Island",812 -2003-07-01,"Rhode Island",495 -2003-08-01,"Rhode Island",468 -2003-09-01,"Rhode Island",420 -2003-10-01,"Rhode Island",665 -2003-11-01,"Rhode Island",1354 -2003-12-01,"Rhode Island",2261 -2004-01-01,"Rhode Island",3245 -2004-02-01,"Rhode Island",4047 -2004-03-01,"Rhode Island",2617 -2004-04-01,"Rhode Island",2325 -2004-05-01,"Rhode Island",1168 -2004-06-01,"Rhode Island",643 -2004-07-01,"Rhode Island",495 -2004-08-01,"Rhode Island",427 -2004-09-01,"Rhode Island",435 -2004-10-01,"Rhode Island",594 -2004-11-01,"Rhode Island",1359 -2004-12-01,"Rhode Island",2116 -2005-01-01,"Rhode Island",3120 -2005-02-01,"Rhode Island",3461 -2005-03-01,"Rhode Island",2997 -2005-04-01,"Rhode Island",2214 -2005-05-01,"Rhode Island",1162 -2005-06-01,"Rhode Island",831 -2005-07-01,"Rhode Island",504 -2005-08-01,"Rhode Island",411 -2005-09-01,"Rhode Island",463 -2005-10-01,"Rhode Island",507 -2005-11-01,"Rhode Island",1130 -2005-12-01,"Rhode Island",2288 -2006-01-01,"Rhode Island",2914 -2006-02-01,"Rhode Island",2298 -2006-03-01,"Rhode Island",2774 -2006-04-01,"Rhode Island",2094 -2006-05-01,"Rhode Island",1216 -2006-06-01,"Rhode Island",758 -2006-07-01,"Rhode Island",491 -2006-08-01,"Rhode Island",404 -2006-09-01,"Rhode Island",473 -2006-10-01,"Rhode Island",589 -2006-11-01,"Rhode Island",1121 -2006-12-01,"Rhode Island",1738 -2007-01-01,"Rhode Island",2258 -2007-02-01,"Rhode Island",3232 -2007-03-01,"Rhode Island",3162 -2007-04-01,"Rhode Island",2169 -2007-05-01,"Rhode Island",1291 -2007-06-01,"Rhode Island",641 -2007-07-01,"Rhode Island",463 -2007-08-01,"Rhode Island",396 -2007-09-01,"Rhode Island",462 -2007-10-01,"Rhode Island",477 -2007-11-01,"Rhode Island",986 -2007-12-01,"Rhode Island",2136 -2008-01-01,"Rhode Island",3009 -2008-02-01,"Rhode Island",3091 -2008-03-01,"Rhode Island",2606 -2008-04-01,"Rhode Island",1965 -2008-05-01,"Rhode Island",1323 -2008-06-01,"Rhode Island",702 -2008-07-01,"Rhode Island",467 -2008-08-01,"Rhode Island",445 -2008-09-01,"Rhode Island",402 -2008-10-01,"Rhode Island",513 -2008-11-01,"Rhode Island",1048 -2008-12-01,"Rhode Island",2121 -2009-01-01,"Rhode Island",3096 -2009-02-01,"Rhode Island",3440 -2009-03-01,"Rhode Island",2700 -2009-04-01,"Rhode Island",2068 -2009-05-01,"Rhode Island",1058 -2009-06-01,"Rhode Island",594 -2009-07-01,"Rhode Island",536 -2009-08-01,"Rhode Island",455 -2009-09-01,"Rhode Island",404 -2009-10-01,"Rhode Island",604 -2009-11-01,"Rhode Island",1114 -2009-12-01,"Rhode Island",1844 -2010-01-01,"Rhode Island",3138 -2010-02-01,"Rhode Island",2824 -2010-03-01,"Rhode Island",1899 -2010-04-01,"Rhode Island",857 -2010-05-01,"Rhode Island",633 -2010-06-01,"Rhode Island",417 -2010-07-01,"Rhode Island",332 -2010-08-01,"Rhode Island",467 -2010-09-01,"Rhode Island",396 -2010-10-01,"Rhode Island",835 -2010-11-01,"Rhode Island",1780 -2010-12-01,"Rhode Island",3365 -2011-01-01,"Rhode Island",3638 -2011-02-01,"Rhode Island",2861 -2011-03-01,"Rhode Island",2330 -2011-04-01,"Rhode Island",1187 -2011-05-01,"Rhode Island",690 -2011-06-01,"Rhode Island",308 -2011-07-01,"Rhode Island",377 -2011-08-01,"Rhode Island",418 -2011-09-01,"Rhode Island",405 -2011-10-01,"Rhode Island",840 -2011-11-01,"Rhode Island",1326 -2011-12-01,"Rhode Island",2483 -2012-01-01,"Rhode Island",3184 -2012-02-01,"Rhode Island",2312 -2012-03-01,"Rhode Island",1772 -2012-04-01,"Rhode Island",1012 -2012-05-01,"Rhode Island",613 -2012-06-01,"Rhode Island",542 -2012-07-01,"Rhode Island",433 -2012-08-01,"Rhode Island",411 -2012-09-01,"Rhode Island",398 -2012-10-01,"Rhode Island",830 -2012-11-01,"Rhode Island",2052 -2012-12-01,"Rhode Island",2324 -2013-01-01,"Rhode Island",3407 -2013-02-01,"Rhode Island",2951 -2013-03-01,"Rhode Island",1841 -2013-04-01,"Rhode Island",1121 -2013-05-01,"Rhode Island",750 -2013-06-01,"Rhode Island",481 -2013-07-01,"Rhode Island",375 -2013-08-01,"Rhode Island",402 -2013-09-01,"Rhode Island",517 -2013-10-01,"Rhode Island",963 -2013-11-01,"Rhode Island",2336 -2013-12-01,"Rhode Island",3078 -2014-01-01,"Rhode Island",3664 -2014-02-01,"Rhode Island",3047 -2014-03-01,"Rhode Island",2946 -2014-04-01,"Rhode Island",2332 -2014-05-01,"Rhode Island",667 -2014-06-01,"Rhode Island",583 -2014-07-01,"Rhode Island",427 -2014-08-01,"Rhode Island",395 -2014-09-01,"Rhode Island",473 -2014-10-01,"Rhode Island",499 -2014-11-01,"Rhode Island",2030 -2014-12-01,"Rhode Island",2662 -2015-01-01,"Rhode Island",4211 -2015-02-01,"Rhode Island",4154 -2015-03-01,"Rhode Island",3296 -2015-04-01,"Rhode Island",1426 -2015-05-01,"Rhode Island",577 -2015-06-01,"Rhode Island",498 -2015-07-01,"Rhode Island",437 -2015-08-01,"Rhode Island",404 -2015-09-01,"Rhode Island",391 -2015-10-01,"Rhode Island",1063 -2015-11-01,"Rhode Island",1632 -2015-12-01,"Rhode Island",1952 -2016-01-01,"Rhode Island",3320 -2016-02-01,"Rhode Island",2791 -2016-03-01,"Rhode Island",1935 -2016-04-01,"Rhode Island",1498 -2016-05-01,"Rhode Island",746 -2016-06-01,"Rhode Island",325 -2016-07-01,"Rhode Island",268 -2016-08-01,"Rhode Island",236 -2016-09-01,"Rhode Island",360 -2016-10-01,"Rhode Island",906 -2016-11-01,"Rhode Island",1753 -2016-12-01,"Rhode Island",3064 -2017-01-01,"Rhode Island",2961 -2017-02-01,"Rhode Island",2513 -2017-03-01,"Rhode Island",3126 -2017-04-01,"Rhode Island",1192 -2017-05-01,"Rhode Island",798 -2017-06-01,"Rhode Island",462 -2017-07-01,"Rhode Island",414 -2017-08-01,"Rhode Island",407 -2017-09-01,"Rhode Island",386 -2017-10-01,"Rhode Island",628 -2017-11-01,"Rhode Island",2051 -2017-12-01,"Rhode Island",3485 -2018-01-01,"Rhode Island",4130 -2018-02-01,"Rhode Island",2521 -2018-03-01,"Rhode Island",3031 -2018-04-01,"Rhode Island",1956 -2018-05-01,"Rhode Island",476 -2018-06-01,"Rhode Island",428 -2018-07-01,"Rhode Island",386 -2018-08-01,"Rhode Island",393 -2018-09-01,"Rhode Island",377 -2018-10-01,"Rhode Island",1278 -2018-11-01,"Rhode Island",2456 -2018-12-01,"Rhode Island",3090 -2019-01-01,"Rhode Island",3781 -2019-02-01,"Rhode Island",3061 -2019-03-01,"Rhode Island",2783 -2019-04-01,"Rhode Island",1374 -2019-05-01,"Rhode Island",860 -2019-06-01,"Rhode Island",444 -2019-07-01,"Rhode Island",342 -2019-08-01,"Rhode Island",360 -2019-09-01,"Rhode Island",423 -2019-10-01,"Rhode Island",933 -2019-11-01,"Rhode Island",2399 -2019-12-01,"Rhode Island",3130 -2020-01-01,"Rhode Island",3119 -2020-02-01,"Rhode Island",2775 -2020-03-01,"Rhode Island",2202 -2020-04-01,"Rhode Island",1824 -2020-05-01,"Rhode Island",871 -2020-06-01,"Rhode Island",431 -2020-07-01,"Rhode Island",424 -2020-08-01,"Rhode Island",424 -2020-09-01,"Rhode Island",453 -2020-10-01,"Rhode Island",535 -2020-11-01,"Rhode Island",1728 -2020-12-01,"Rhode Island",3112 -2021-01-01,"Rhode Island",3604 -2021-02-01,"Rhode Island",3170 -1989-01-01,"South Carolina",3768 -1989-02-01,"South Carolina",3029 -1989-03-01,"South Carolina",3327 -1989-04-01,"South Carolina",1875 -1989-05-01,"South Carolina",879 -1989-06-01,"South Carolina",468 -1989-07-01,"South Carolina",395 -1989-08-01,"South Carolina",327 -1989-09-01,"South Carolina",346 -1989-10-01,"South Carolina",620 -1989-11-01,"South Carolina",1526 -1989-12-01,"South Carolina",3911 -1990-01-01,"South Carolina",4887 -1990-02-01,"South Carolina",2591 -1990-03-01,"South Carolina",2252 -1990-04-01,"South Carolina",1538 -1990-05-01,"South Carolina",737 -1990-06-01,"South Carolina",439 -1990-07-01,"South Carolina",366 -1990-08-01,"South Carolina",346 -1990-09-01,"South Carolina",375 -1990-10-01,"South Carolina",483 -1990-11-01,"South Carolina",1605 -1990-12-01,"South Carolina",2776 -1991-01-01,"South Carolina",3764 -1991-02-01,"South Carolina",3740 -1991-03-01,"South Carolina",2875 -1991-04-01,"South Carolina",1318 -1991-05-01,"South Carolina",604 -1991-06-01,"South Carolina",439 -1991-07-01,"South Carolina",375 -1991-08-01,"South Carolina",370 -1991-09-01,"South Carolina",390 -1991-10-01,"South Carolina",645 -1991-11-01,"South Carolina",1969 -1991-12-01,"South Carolina",3122 -1992-01-01,"South Carolina",4203 -1992-02-01,"South Carolina",4071 -1992-03-01,"South Carolina",2650 -1992-04-01,"South Carolina",2295 -1992-05-01,"South Carolina",1033 -1992-06-01,"South Carolina",597 -1992-07-01,"South Carolina",424 -1992-08-01,"South Carolina",386 -1992-09-01,"South Carolina",409 -1992-10-01,"South Carolina",792 -1992-11-01,"South Carolina",1750 -1992-12-01,"South Carolina",3784 -1993-01-01,"South Carolina",4276 -1993-02-01,"South Carolina",4291 -1993-03-01,"South Carolina",4274 -1993-04-01,"South Carolina",2559 -1993-05-01,"South Carolina",956 -1993-06-01,"South Carolina",501 -1993-07-01,"South Carolina",407 -1993-08-01,"South Carolina",377 -1993-09-01,"South Carolina",391 -1993-10-01,"South Carolina",630 -1993-11-01,"South Carolina",2030 -1993-12-01,"South Carolina",3652 -1994-01-01,"South Carolina",5997 -1994-02-01,"South Carolina",4969 -1994-03-01,"South Carolina",3024 -1994-04-01,"South Carolina",1526 -1994-05-01,"South Carolina",714 -1994-06-01,"South Carolina",528 -1994-07-01,"South Carolina",439 -1994-08-01,"South Carolina",429 -1994-09-01,"South Carolina",444 -1994-10-01,"South Carolina",734 -1994-11-01,"South Carolina",1590 -1994-12-01,"South Carolina",3090 -1995-01-01,"South Carolina",4919 -1995-02-01,"South Carolina",5128 -1995-03-01,"South Carolina",3604 -1995-04-01,"South Carolina",1584 -1995-05-01,"South Carolina",746 -1995-06-01,"South Carolina",510 -1995-07-01,"South Carolina",472 -1995-08-01,"South Carolina",397 -1995-09-01,"South Carolina",475 -1995-10-01,"South Carolina",646 -1995-11-01,"South Carolina",2262 -1995-12-01,"South Carolina",4422 -1996-01-01,"South Carolina",6602 -1996-02-01,"South Carolina",5943 -1996-03-01,"South Carolina",3741 -1996-04-01,"South Carolina",2996 -1996-05-01,"South Carolina",954 -1996-06-01,"South Carolina",547 -1996-07-01,"South Carolina",425 -1996-08-01,"South Carolina",419 -1996-09-01,"South Carolina",476 -1996-10-01,"South Carolina",800 -1996-11-01,"South Carolina",2168 -1996-12-01,"South Carolina",4336 -1997-01-01,"South Carolina",5150 -1997-02-01,"South Carolina",5046 -1997-03-01,"South Carolina",2619 -1997-04-01,"South Carolina",1794 -1997-05-01,"South Carolina",1243 -1997-06-01,"South Carolina",709 -1997-07-01,"South Carolina",517 -1997-08-01,"South Carolina",449 -1997-09-01,"South Carolina",471 -1997-10-01,"South Carolina",637 -1997-11-01,"South Carolina",2424 -1997-12-01,"South Carolina",4683 -1998-01-01,"South Carolina",5525 -1998-02-01,"South Carolina",5280 -1998-03-01,"South Carolina",4060 -1998-04-01,"South Carolina",2457 -1998-05-01,"South Carolina",1067 -1998-06-01,"South Carolina",543 -1998-07-01,"South Carolina",461 -1998-08-01,"South Carolina",446 -1998-09-01,"South Carolina",471 -1998-10-01,"South Carolina",575 -1998-11-01,"South Carolina",1726 -1998-12-01,"South Carolina",2818 -1999-01-01,"South Carolina",5679 -1999-02-01,"South Carolina",3583 -1999-03-01,"South Carolina",4369 -1999-04-01,"South Carolina",2223 -1999-05-01,"South Carolina",1193 -1999-06-01,"South Carolina",569 -1999-07-01,"South Carolina",491 -1999-08-01,"South Carolina",448 -1999-09-01,"South Carolina",487 -1999-10-01,"South Carolina",734 -1999-11-01,"South Carolina",2093 -1999-12-01,"South Carolina",3799 -2000-01-01,"South Carolina",5559 -2000-02-01,"South Carolina",6445 -2000-03-01,"South Carolina",2880 -2000-04-01,"South Carolina",1919 -2000-05-01,"South Carolina",1141 -2000-06-01,"South Carolina",577 -2000-07-01,"South Carolina",495 -2000-08-01,"South Carolina",466 -2000-09-01,"South Carolina",533 -2000-10-01,"South Carolina",1007 -2000-11-01,"South Carolina",2023 -2000-12-01,"South Carolina",6012 -2001-01-01,"South Carolina",8131 -2001-02-01,"South Carolina",4815 -2001-03-01,"South Carolina",3346 -2001-04-01,"South Carolina",2640 -2001-05-01,"South Carolina",989 -2001-06-01,"South Carolina",575 -2001-07-01,"South Carolina",499 -2001-08-01,"South Carolina",473 -2001-09-01,"South Carolina",516 -2001-10-01,"South Carolina",892 -2001-11-01,"South Carolina",2071 -2001-12-01,"South Carolina",2537 -2002-01-01,"South Carolina",5900 -2002-02-01,"South Carolina",4612 -2002-03-01,"South Carolina",4243 -2002-04-01,"South Carolina",1895 -2002-05-01,"South Carolina",829 -2002-06-01,"South Carolina",718 -2002-07-01,"South Carolina",535 -2002-08-01,"South Carolina",462 -2002-09-01,"South Carolina",496 -2002-10-01,"South Carolina",609 -2002-11-01,"South Carolina",2031 -2002-12-01,"South Carolina",5291 -2003-01-01,"South Carolina",6404 -2003-02-01,"South Carolina",6462 -2003-03-01,"South Carolina",4180 -2003-04-01,"South Carolina",2235 -2003-05-01,"South Carolina",1162 -2003-06-01,"South Carolina",632 -2003-07-01,"South Carolina",533 -2003-08-01,"South Carolina",495 -2003-09-01,"South Carolina",497 -2003-10-01,"South Carolina",738 -2003-11-01,"South Carolina",1376 -2003-12-01,"South Carolina",4441 -2004-01-01,"South Carolina",6522 -2004-02-01,"South Carolina",6979 -2004-03-01,"South Carolina",4416 -2004-04-01,"South Carolina",2303 -2004-05-01,"South Carolina",918 -2004-06-01,"South Carolina",556 -2004-07-01,"South Carolina",500 -2004-08-01,"South Carolina",479 -2004-09-01,"South Carolina",515 -2004-10-01,"South Carolina",597 -2004-11-01,"South Carolina",1480 -2004-12-01,"South Carolina",4049 -2005-01-01,"South Carolina",5723 -2005-02-01,"South Carolina",5325 -2005-03-01,"South Carolina",4209 -2005-04-01,"South Carolina",2179 -2005-05-01,"South Carolina",1064 -2005-06-01,"South Carolina",580 -2005-07-01,"South Carolina",498 -2005-08-01,"South Carolina",444 -2005-09-01,"South Carolina",515 -2005-10-01,"South Carolina",825 -2005-11-01,"South Carolina",2118 -2005-12-01,"South Carolina",5058 -2006-01-01,"South Carolina",4785 -2006-02-01,"South Carolina",4618 -2006-03-01,"South Carolina",3305 -2006-04-01,"South Carolina",1677 -2006-05-01,"South Carolina",676 -2006-06-01,"South Carolina",549 -2006-07-01,"South Carolina",490 -2006-08-01,"South Carolina",422 -2006-09-01,"South Carolina",541 -2006-10-01,"South Carolina",958 -2006-11-01,"South Carolina",2708 -2006-12-01,"South Carolina",4198 -2007-01-01,"South Carolina",4757 -2007-02-01,"South Carolina",5659 -2007-03-01,"South Carolina",3143 -2007-04-01,"South Carolina",1838 -2007-05-01,"South Carolina",960 -2007-06-01,"South Carolina",554 -2007-07-01,"South Carolina",517 -2007-08-01,"South Carolina",432 -2007-09-01,"South Carolina",480 -2007-10-01,"South Carolina",579 -2007-11-01,"South Carolina",2416 -2007-12-01,"South Carolina",3824 -2008-01-01,"South Carolina",5750 -2008-02-01,"South Carolina",4372 -2008-03-01,"South Carolina",3068 -2008-04-01,"South Carolina",1555 -2008-05-01,"South Carolina",709 -2008-06-01,"South Carolina",447 -2008-07-01,"South Carolina",479 -2008-08-01,"South Carolina",471 -2008-09-01,"South Carolina",531 -2008-10-01,"South Carolina",1057 -2008-11-01,"South Carolina",3831 -2008-12-01,"South Carolina",4829 -2009-01-01,"South Carolina",5788 -2009-02-01,"South Carolina",4961 -2009-03-01,"South Carolina",3263 -2009-04-01,"South Carolina",1550 -2009-05-01,"South Carolina",702 -2009-06-01,"South Carolina",465 -2009-07-01,"South Carolina",456 -2009-08-01,"South Carolina",441 -2009-09-01,"South Carolina",479 -2009-10-01,"South Carolina",1032 -2009-11-01,"South Carolina",2457 -2009-12-01,"South Carolina",5565 -2010-01-01,"South Carolina",7528 -2010-02-01,"South Carolina",6116 -2010-03-01,"South Carolina",3939 -2010-04-01,"South Carolina",1149 -2010-05-01,"South Carolina",533 -2010-06-01,"South Carolina",487 -2010-07-01,"South Carolina",481 -2010-08-01,"South Carolina",424 -2010-09-01,"South Carolina",498 -2010-10-01,"South Carolina",752 -2010-11-01,"South Carolina",2762 -2010-12-01,"South Carolina",7761 -2011-01-01,"South Carolina",7938 -2011-02-01,"South Carolina",4301 -2011-03-01,"South Carolina",2810 -2011-04-01,"South Carolina",1281 -2011-05-01,"South Carolina",691 -2011-06-01,"South Carolina",420 -2011-07-01,"South Carolina",459 -2011-08-01,"South Carolina",457 -2011-09-01,"South Carolina",480 -2011-10-01,"South Carolina",1091 -2011-11-01,"South Carolina",2873 -2011-12-01,"South Carolina",4051 -2012-01-01,"South Carolina",5088 -2012-02-01,"South Carolina",3921 -2012-03-01,"South Carolina",1753 -2012-04-01,"South Carolina",836 -2012-05-01,"South Carolina",653 -2012-06-01,"South Carolina",484 -2012-07-01,"South Carolina",431 -2012-08-01,"South Carolina",500 -2012-09-01,"South Carolina",462 -2012-10-01,"South Carolina",1000 -2012-11-01,"South Carolina",3602 -2012-12-01,"South Carolina",4105 -2013-01-01,"South Carolina",5003 -2013-02-01,"South Carolina",5216 -2013-03-01,"South Carolina",4751 -2013-04-01,"South Carolina",1586 -2013-05-01,"South Carolina",824 -2013-06-01,"South Carolina",497 -2013-07-01,"South Carolina",440 -2013-08-01,"South Carolina",487 -2013-09-01,"South Carolina",472 -2013-10-01,"South Carolina",815 -2013-11-01,"South Carolina",3651 -2013-12-01,"South Carolina",4901 -2014-01-01,"South Carolina",8096 -2014-02-01,"South Carolina",4995 -2014-03-01,"South Carolina",4487 -2014-04-01,"South Carolina",1580 -2014-05-01,"South Carolina",676 -2014-06-01,"South Carolina",472 -2014-07-01,"South Carolina",453 -2014-08-01,"South Carolina",476 -2014-09-01,"South Carolina",490 -2014-10-01,"South Carolina",836 -2014-11-01,"South Carolina",4224 -2014-12-01,"South Carolina",5119 -2015-01-01,"South Carolina",7182 -2015-02-01,"South Carolina",7323 -2015-03-01,"South Carolina",3299 -2015-04-01,"South Carolina",1104 -2015-05-01,"South Carolina",712 -2015-06-01,"South Carolina",514 -2015-07-01,"South Carolina",520 -2015-08-01,"South Carolina",531 -2015-09-01,"South Carolina",569 -2015-10-01,"South Carolina",1070 -2015-11-01,"South Carolina",2461 -2015-12-01,"South Carolina",3129 -2016-01-01,"South Carolina",6866 -2016-02-01,"South Carolina",5686 -2016-03-01,"South Carolina",2282 -2016-04-01,"South Carolina",1342 -2016-05-01,"South Carolina",719 -2016-06-01,"South Carolina",499 -2016-07-01,"South Carolina",447 -2016-08-01,"South Carolina",484 -2016-09-01,"South Carolina",502 -2016-10-01,"South Carolina",730 -2016-11-01,"South Carolina",2620 -2016-12-01,"South Carolina",5384 -2017-01-01,"South Carolina",4970 -2017-02-01,"South Carolina",3032 -2017-03-01,"South Carolina",3395 -2017-04-01,"South Carolina",1224 -2017-05-01,"South Carolina",683 -2017-06-01,"South Carolina",547 -2017-07-01,"South Carolina",581 -2017-08-01,"South Carolina",501 -2017-09-01,"South Carolina",563 -2017-10-01,"South Carolina",868 -2017-11-01,"South Carolina",3095 -2017-12-01,"South Carolina",6078 -2018-01-01,"South Carolina",8891 -2018-02-01,"South Carolina",3316 -2018-03-01,"South Carolina",3977 -2018-04-01,"South Carolina",1950 -2018-05-01,"South Carolina",735 -2018-06-01,"South Carolina",509 -2018-07-01,"South Carolina",481 -2018-08-01,"South Carolina",503 -2018-09-01,"South Carolina",494 -2018-10-01,"South Carolina",929 -2018-11-01,"South Carolina",4123 -2018-12-01,"South Carolina",6086 -2019-01-01,"South Carolina",6471 -2019-02-01,"South Carolina",4302 -2019-03-01,"South Carolina",3680 -2019-04-01,"South Carolina",1668 -2019-05-01,"South Carolina",584 -2019-06-01,"South Carolina",544 -2019-07-01,"South Carolina",505 -2019-08-01,"South Carolina",491 -2019-09-01,"South Carolina",536 -2019-10-01,"South Carolina",719 -2019-11-01,"South Carolina",3863 -2019-12-01,"South Carolina",5509 -2020-01-01,"South Carolina",5835 -2020-02-01,"South Carolina",5217 -2020-03-01,"South Carolina",2684 -2020-04-01,"South Carolina",1405 -2020-05-01,"South Carolina",1142 -2020-06-01,"South Carolina",690 -2020-07-01,"South Carolina",522 -2020-08-01,"South Carolina",481 -2020-09-01,"South Carolina",628 -2020-10-01,"South Carolina",904 -2020-11-01,"South Carolina",2231 -2020-12-01,"South Carolina",6567 -2021-01-01,"South Carolina",7309 -2021-02-01,"South Carolina",6239 -1989-01-01,"South Dakota",1762 -1989-02-01,"South Dakota",1865 -1989-03-01,"South Dakota",1639 -1989-04-01,"South Dakota",1036 -1989-05-01,"South Dakota",562 -1989-06-01,"South Dakota",340 -1989-07-01,"South Dakota",245 -1989-08-01,"South Dakota",221 -1989-09-01,"South Dakota",298 -1989-10-01,"South Dakota",535 -1989-11-01,"South Dakota",1076 -1989-12-01,"South Dakota",1764 -1990-01-01,"South Dakota",1769 -1990-02-01,"South Dakota",1529 -1990-03-01,"South Dakota",1293 -1990-04-01,"South Dakota",959 -1990-05-01,"South Dakota",600 -1990-06-01,"South Dakota",346 -1990-07-01,"South Dakota",231 -1990-08-01,"South Dakota",215 -1990-09-01,"South Dakota",237 -1990-10-01,"South Dakota",527 -1990-11-01,"South Dakota",973 -1990-12-01,"South Dakota",1524 -1991-01-01,"South Dakota",2199 -1991-02-01,"South Dakota",1522 -1991-03-01,"South Dakota",1341 -1991-04-01,"South Dakota",845 -1991-05-01,"South Dakota",645 -1991-06-01,"South Dakota",301 -1991-07-01,"South Dakota",227 -1991-08-01,"South Dakota",215 -1991-09-01,"South Dakota",286 -1991-10-01,"South Dakota",609 -1991-11-01,"South Dakota",1434 -1991-12-01,"South Dakota",1595 -1992-01-01,"South Dakota",1639 -1992-02-01,"South Dakota",1497 -1992-03-01,"South Dakota",1202 -1992-04-01,"South Dakota",996 -1992-05-01,"South Dakota",638 -1992-06-01,"South Dakota",321 -1992-07-01,"South Dakota",265 -1992-08-01,"South Dakota",254 -1992-09-01,"South Dakota",315 -1992-10-01,"South Dakota",602 -1992-11-01,"South Dakota",1267 -1992-12-01,"South Dakota",1797 -1993-01-01,"South Dakota",2291 -1993-02-01,"South Dakota",1784 -1993-03-01,"South Dakota",1678 -1993-04-01,"South Dakota",1153 -1993-05-01,"South Dakota",606 -1993-06-01,"South Dakota",370 -1993-07-01,"South Dakota",281 -1993-08-01,"South Dakota",236 -1993-09-01,"South Dakota",363 -1993-10-01,"South Dakota",641 -1993-11-01,"South Dakota",1261 -1993-12-01,"South Dakota",1768 -1994-01-01,"South Dakota",2234 -1994-02-01,"South Dakota",2249 -1994-03-01,"South Dakota",1558 -1994-04-01,"South Dakota",1034 -1994-05-01,"South Dakota",603 -1994-06-01,"South Dakota",270 -1994-07-01,"South Dakota",181 -1994-08-01,"South Dakota",259 -1994-09-01,"South Dakota",274 -1994-10-01,"South Dakota",503 -1994-11-01,"South Dakota",1098 -1994-12-01,"South Dakota",1794 -1995-01-01,"South Dakota",2027 -1995-02-01,"South Dakota",1867 -1995-03-01,"South Dakota",1622 -1995-04-01,"South Dakota",1255 -1995-05-01,"South Dakota",782 -1995-06-01,"South Dakota",408 -1995-07-01,"South Dakota",271 -1995-08-01,"South Dakota",206 -1995-09-01,"South Dakota",307 -1995-10-01,"South Dakota",705 -1995-11-01,"South Dakota",1332 -1995-12-01,"South Dakota",1828 -1996-01-01,"South Dakota",2343 -1996-02-01,"South Dakota",2221 -1996-03-01,"South Dakota",1865 -1996-04-01,"South Dakota",1367 -1996-05-01,"South Dakota",803 -1996-06-01,"South Dakota",464 -1996-07-01,"South Dakota",239 -1996-08-01,"South Dakota",231 -1996-09-01,"South Dakota",316 -1996-10-01,"South Dakota",578 -1996-11-01,"South Dakota",1414 -1996-12-01,"South Dakota",2243 -1997-01-01,"South Dakota",2735 -1997-02-01,"South Dakota",2089 -1997-03-01,"South Dakota",1625 -1997-04-01,"South Dakota",1250 -1997-05-01,"South Dakota",784 -1997-06-01,"South Dakota",368 -1997-07-01,"South Dakota",248 -1997-08-01,"South Dakota",233 -1997-09-01,"South Dakota",261 -1997-10-01,"South Dakota",537 -1997-11-01,"South Dakota",1339 -1997-12-01,"South Dakota",1734 -1998-01-01,"South Dakota",2196 -1998-02-01,"South Dakota",1666 -1998-03-01,"South Dakota",1738 -1998-04-01,"South Dakota",1127 -1998-05-01,"South Dakota",508 -1998-06-01,"South Dakota",304 -1998-07-01,"South Dakota",274 -1998-08-01,"South Dakota",227 -1998-09-01,"South Dakota",248 -1998-10-01,"South Dakota",533 -1998-11-01,"South Dakota",1157 -1998-12-01,"South Dakota",1669 -1999-01-01,"South Dakota",2516 -1999-02-01,"South Dakota",1719 -1999-03-01,"South Dakota",1486 -1999-04-01,"South Dakota",1140 -1999-05-01,"South Dakota",629 -1999-06-01,"South Dakota",324 -1999-07-01,"South Dakota",274 -1999-08-01,"South Dakota",224 -1999-09-01,"South Dakota",300 -1999-10-01,"South Dakota",607 -1999-11-01,"South Dakota",918 -1999-12-01,"South Dakota",1628 -2000-01-01,"South Dakota",2149 -2000-02-01,"South Dakota",1772 -2000-03-01,"South Dakota",1360 -2000-04-01,"South Dakota",1057 -2000-05-01,"South Dakota",573 -2000-06-01,"South Dakota",333 -2000-07-01,"South Dakota",248 -2000-08-01,"South Dakota",243 -2000-09-01,"South Dakota",277 -2000-10-01,"South Dakota",601 -2000-11-01,"South Dakota",1375 -2000-12-01,"South Dakota",2621 -2001-01-01,"South Dakota",2172 -2001-02-01,"South Dakota",2179 -2001-03-01,"South Dakota",1776 -2001-04-01,"South Dakota",1042 -2001-05-01,"South Dakota",549 -2001-06-01,"South Dakota",370 -2001-07-01,"South Dakota",248 -2001-08-01,"South Dakota",277 -2001-09-01,"South Dakota",279 -2001-10-01,"South Dakota",670 -2001-11-01,"South Dakota",974 -2001-12-01,"South Dakota",1801 -2002-01-01,"South Dakota",2030 -2002-02-01,"South Dakota",1730 -2002-03-01,"South Dakota",1947 -2002-04-01,"South Dakota",1235 -2002-05-01,"South Dakota",759 -2002-06-01,"South Dakota",327 -2002-07-01,"South Dakota",224 -2002-08-01,"South Dakota",239 -2002-09-01,"South Dakota",285 -2002-10-01,"South Dakota",933 -2002-11-01,"South Dakota",1491 -2002-12-01,"South Dakota",1698 -2003-01-01,"South Dakota",2427 -2003-02-01,"South Dakota",2132 -2003-03-01,"South Dakota",1870 -2003-04-01,"South Dakota",1040 -2003-05-01,"South Dakota",585 -2003-06-01,"South Dakota",348 -2003-07-01,"South Dakota",246 -2003-08-01,"South Dakota",226 -2003-09-01,"South Dakota",320 -2003-10-01,"South Dakota",590 -2003-11-01,"South Dakota",1464 -2003-12-01,"South Dakota",1929 -2004-01-01,"South Dakota",2506 -2004-02-01,"South Dakota",2214 -2004-03-01,"South Dakota",1437 -2004-04-01,"South Dakota",868 -2004-05-01,"South Dakota",545 -2004-06-01,"South Dakota",355 -2004-07-01,"South Dakota",201 -2004-08-01,"South Dakota",255 -2004-09-01,"South Dakota",269 -2004-10-01,"South Dakota",605 -2004-11-01,"South Dakota",1119 -2004-12-01,"South Dakota",1907 -2005-01-01,"South Dakota",2398 -2005-02-01,"South Dakota",1857 -2005-03-01,"South Dakota",1520 -2005-04-01,"South Dakota",947 -2005-05-01,"South Dakota",640 -2005-06-01,"South Dakota",307 -2005-07-01,"South Dakota",238 -2005-08-01,"South Dakota",265 -2005-09-01,"South Dakota",251 -2005-10-01,"South Dakota",573 -2005-11-01,"South Dakota",1063 -2005-12-01,"South Dakota",2154 -2006-01-01,"South Dakota",1656 -2006-02-01,"South Dakota",1906 -2006-03-01,"South Dakota",1580 -2006-04-01,"South Dakota",870 -2006-05-01,"South Dakota",495 -2006-06-01,"South Dakota",275 -2006-07-01,"South Dakota",273 -2006-08-01,"South Dakota",213 -2006-09-01,"South Dakota",314 -2006-10-01,"South Dakota",815 -2006-11-01,"South Dakota",1243 -2006-12-01,"South Dakota",1874 -2007-01-01,"South Dakota",2270 -2007-02-01,"South Dakota",2386 -2007-03-01,"South Dakota",1499 -2007-04-01,"South Dakota",1036 -2007-05-01,"South Dakota",401 -2007-06-01,"South Dakota",279 -2007-07-01,"South Dakota",227 -2007-08-01,"South Dakota",231 -2007-09-01,"South Dakota",257 -2007-10-01,"South Dakota",507 -2007-11-01,"South Dakota",1222 -2007-12-01,"South Dakota",2085 -2008-01-01,"South Dakota",2460 -2008-02-01,"South Dakota",2336 -2008-03-01,"South Dakota",1791 -2008-04-01,"South Dakota",1166 -2008-05-01,"South Dakota",743 -2008-06-01,"South Dakota",352 -2008-07-01,"South Dakota",227 -2008-08-01,"South Dakota",238 -2008-09-01,"South Dakota",257 -2008-10-01,"South Dakota",586 -2008-11-01,"South Dakota",1245 -2008-12-01,"South Dakota",2166 -2009-01-01,"South Dakota",2645 -2009-02-01,"South Dakota",1983 -2009-03-01,"South Dakota",1766 -2009-04-01,"South Dakota",1154 -2009-05-01,"South Dakota",608 -2009-06-01,"South Dakota",379 -2009-07-01,"South Dakota",280 -2009-08-01,"South Dakota",241 -2009-09-01,"South Dakota",255 -2009-10-01,"South Dakota",965 -2009-11-01,"South Dakota",1098 -2009-12-01,"South Dakota",2221 -2010-01-01,"South Dakota",2612 -2010-02-01,"South Dakota",2119 -2010-03-01,"South Dakota",1499 -2010-04-01,"South Dakota",821 -2010-05-01,"South Dakota",628 -2010-06-01,"South Dakota",260 -2010-07-01,"South Dakota",210 -2010-08-01,"South Dakota",196 -2010-09-01,"South Dakota",274 -2010-10-01,"South Dakota",516 -2010-11-01,"South Dakota",1372 -2010-12-01,"South Dakota",2308 -2011-01-01,"South Dakota",2628 -2011-02-01,"South Dakota",2076 -2011-03-01,"South Dakota",1779 -2011-04-01,"South Dakota",1054 -2011-05-01,"South Dakota",540 -2011-06-01,"South Dakota",278 -2011-07-01,"South Dakota",216 -2011-08-01,"South Dakota",227 -2011-09-01,"South Dakota",287 -2011-10-01,"South Dakota",654 -2011-11-01,"South Dakota",1330 -2011-12-01,"South Dakota",1892 -2012-01-01,"South Dakota",2005 -2012-02-01,"South Dakota",1775 -2012-03-01,"South Dakota",860 -2012-04-01,"South Dakota",643 -2012-05-01,"South Dakota",430 -2012-06-01,"South Dakota",244 -2012-07-01,"South Dakota",181 -2012-08-01,"South Dakota",230 -2012-09-01,"South Dakota",264 -2012-10-01,"South Dakota",772 -2012-11-01,"South Dakota",1343 -2012-12-01,"South Dakota",1995 -2013-01-01,"South Dakota",2442 -2013-02-01,"South Dakota",1948 -2013-03-01,"South Dakota",1849 -2013-04-01,"South Dakota",1272 -2013-05-01,"South Dakota",546 -2013-06-01,"South Dakota",265 -2013-07-01,"South Dakota",230 -2013-08-01,"South Dakota",221 -2013-09-01,"South Dakota",245 -2013-10-01,"South Dakota",834 -2013-11-01,"South Dakota",1429 -2013-12-01,"South Dakota",2637 -2014-01-01,"South Dakota",2722 -2014-02-01,"South Dakota",2414 -2014-03-01,"South Dakota",1862 -2014-04-01,"South Dakota",1001 -2014-05-01,"South Dakota",545 -2014-06-01,"South Dakota",286 -2014-07-01,"South Dakota",193 -2014-08-01,"South Dakota",220 -2014-09-01,"South Dakota",330 -2014-10-01,"South Dakota",718 -2014-11-01,"South Dakota",1724 -2014-12-01,"South Dakota",2197 -2015-01-01,"South Dakota",2357 -2015-02-01,"South Dakota",2162 -2015-03-01,"South Dakota",1358 -2015-04-01,"South Dakota",783 -2015-05-01,"South Dakota",508 -2015-06-01,"South Dakota",278 -2015-07-01,"South Dakota",190 -2015-08-01,"South Dakota",219 -2015-09-01,"South Dakota",228 -2015-10-01,"South Dakota",478 -2015-11-01,"South Dakota",1174 -2015-12-01,"South Dakota",2016 -2016-01-01,"South Dakota",2289 -2016-02-01,"South Dakota",1766 -2016-03-01,"South Dakota",1303 -2016-04-01,"South Dakota",973 -2016-05-01,"South Dakota",523 -2016-06-01,"South Dakota",230 -2016-07-01,"South Dakota",196 -2016-08-01,"South Dakota",209 -2016-09-01,"South Dakota",239 -2016-10-01,"South Dakota",520 -2016-11-01,"South Dakota",901 -2016-12-01,"South Dakota",2513 -2017-01-01,"South Dakota",2486 -2017-02-01,"South Dakota",1668 -2017-03-01,"South Dakota",1539 -2017-04-01,"South Dakota",905 -2017-05-01,"South Dakota",482 -2017-06-01,"South Dakota",265 -2017-07-01,"South Dakota",195 -2017-08-01,"South Dakota",221 -2017-09-01,"South Dakota",244 -2017-10-01,"South Dakota",684 -2017-11-01,"South Dakota",1282 -2017-12-01,"South Dakota",2176 -2018-01-01,"South Dakota",2604 -2018-02-01,"South Dakota",2300 -2018-03-01,"South Dakota",1814 -2018-04-01,"South Dakota",1444 -2018-05-01,"South Dakota",630 -2018-06-01,"South Dakota",252 -2018-07-01,"South Dakota",210 -2018-08-01,"South Dakota",196 -2018-09-01,"South Dakota",215 -2018-10-01,"South Dakota",934 -2018-11-01,"South Dakota",1534 -2018-12-01,"South Dakota",2149 -2019-01-01,"South Dakota",2657 -2019-02-01,"South Dakota",2763 -2019-03-01,"South Dakota",2105 -2019-04-01,"South Dakota",1144 -2019-05-01,"South Dakota",734 -2019-06-01,"South Dakota",283 -2019-07-01,"South Dakota",244 -2019-08-01,"South Dakota",214 -2019-09-01,"South Dakota",220 -2019-10-01,"South Dakota",765 -2019-11-01,"South Dakota",1703 -2019-12-01,"South Dakota",1976 -2020-01-01,"South Dakota",2567 -2020-02-01,"South Dakota",2142 -2020-03-01,"South Dakota",1521 -2020-04-01,"South Dakota",1225 -2020-05-01,"South Dakota",543 -2020-06-01,"South Dakota",289 -2020-07-01,"South Dakota",210 -2020-08-01,"South Dakota",208 -2020-09-01,"South Dakota",270 -2020-10-01,"South Dakota",640 -2020-11-01,"South Dakota",1234 -2020-12-01,"South Dakota",2076 -2021-01-01,"South Dakota",2154 -2021-02-01,"South Dakota",2471 -1989-01-01,"Tennessee",8323 -1989-02-01,"Tennessee",8151 -1989-03-01,"Tennessee",7961 -1989-04-01,"Tennessee",4311 -1989-05-01,"Tennessee",2220 -1989-06-01,"Tennessee",1347 -1989-07-01,"Tennessee",1041 -1989-08-01,"Tennessee",961 -1989-09-01,"Tennessee",1044 -1989-10-01,"Tennessee",1683 -1989-11-01,"Tennessee",3555 -1989-12-01,"Tennessee",8601 -1990-01-01,"Tennessee",11556 -1990-02-01,"Tennessee",6514 -1990-03-01,"Tennessee",5575 -1990-04-01,"Tennessee",4407 -1990-05-01,"Tennessee",2119 -1990-06-01,"Tennessee",1304 -1990-07-01,"Tennessee",993 -1990-08-01,"Tennessee",963 -1990-09-01,"Tennessee",1017 -1990-10-01,"Tennessee",1582 -1990-11-01,"Tennessee",4018 -1990-12-01,"Tennessee",6293 -1991-01-01,"Tennessee",9950 -1991-02-01,"Tennessee",8803 -1991-03-01,"Tennessee",6940 -1991-04-01,"Tennessee",3245 -1991-05-01,"Tennessee",1629 -1991-06-01,"Tennessee",1128 -1991-07-01,"Tennessee",1034 -1991-08-01,"Tennessee",961 -1991-09-01,"Tennessee",1069 -1991-10-01,"Tennessee",1898 -1991-11-01,"Tennessee",5085 -1991-12-01,"Tennessee",7616 -1992-01-01,"Tennessee",10132 -1992-02-01,"Tennessee",8849 -1992-03-01,"Tennessee",6002 -1992-04-01,"Tennessee",4859 -1992-05-01,"Tennessee",2186 -1992-06-01,"Tennessee",1437 -1992-07-01,"Tennessee",1120 -1992-08-01,"Tennessee",1051 -1992-09-01,"Tennessee",1100 -1992-10-01,"Tennessee",1885 -1992-11-01,"Tennessee",4473 -1992-12-01,"Tennessee",9125 -1993-01-01,"Tennessee",10319 -1993-02-01,"Tennessee",9273 -1993-03-01,"Tennessee",10041 -1993-04-01,"Tennessee",5755 -1993-05-01,"Tennessee",2317 -1993-06-01,"Tennessee",1365 -1993-07-01,"Tennessee",1109 -1993-08-01,"Tennessee",1011 -1993-09-01,"Tennessee",1111 -1993-10-01,"Tennessee",1839 -1993-11-01,"Tennessee",5774 -1993-12-01,"Tennessee",9003 -1994-01-01,"Tennessee",13829 -1994-02-01,"Tennessee",11693 -1994-03-01,"Tennessee",7753 -1994-04-01,"Tennessee",4606 -1994-05-01,"Tennessee",2027 -1994-06-01,"Tennessee",1350 -1994-07-01,"Tennessee",1133 -1994-08-01,"Tennessee",1081 -1994-09-01,"Tennessee",1145 -1994-10-01,"Tennessee",1668 -1994-11-01,"Tennessee",3570 -1994-12-01,"Tennessee",7480 -1995-01-01,"Tennessee",11673 -1995-02-01,"Tennessee",11830 -1995-03-01,"Tennessee",7907 -1995-04-01,"Tennessee",3361 -1995-05-01,"Tennessee",2007 -1995-06-01,"Tennessee",1350 -1995-07-01,"Tennessee",1149 -1995-08-01,"Tennessee",1054 -1995-09-01,"Tennessee",1065 -1995-10-01,"Tennessee",1801 -1995-11-01,"Tennessee",7624 -1995-12-01,"Tennessee",9171 -1996-01-01,"Tennessee",14796 -1996-02-01,"Tennessee",13801 -1996-03-01,"Tennessee",9516 -1996-04-01,"Tennessee",7058 -1996-05-01,"Tennessee",2355 -1996-06-01,"Tennessee",1327 -1996-07-01,"Tennessee",1166 -1996-08-01,"Tennessee",1101 -1996-09-01,"Tennessee",1190 -1996-10-01,"Tennessee",1987 -1996-11-01,"Tennessee",5949 -1996-12-01,"Tennessee",10177 -1997-01-01,"Tennessee",12717 -1997-02-01,"Tennessee",11997 -1997-03-01,"Tennessee",6666 -1997-04-01,"Tennessee",4776 -1997-05-01,"Tennessee",3007 -1997-06-01,"Tennessee",1652 -1997-07-01,"Tennessee",1115 -1997-08-01,"Tennessee",1075 -1997-09-01,"Tennessee",1182 -1997-10-01,"Tennessee",1829 -1997-11-01,"Tennessee",6602 -1997-12-01,"Tennessee",11511 -1998-01-01,"Tennessee",12233 -1998-02-01,"Tennessee",11323 -1998-03-01,"Tennessee",9552 -1998-04-01,"Tennessee",4992 -1998-05-01,"Tennessee",2586 -1998-06-01,"Tennessee",1397 -1998-07-01,"Tennessee",1164 -1998-08-01,"Tennessee",1093 -1998-09-01,"Tennessee",1159 -1998-10-01,"Tennessee",1447 -1998-11-01,"Tennessee",4397 -1998-12-01,"Tennessee",8043 -1999-01-01,"Tennessee",14847 -1999-02-01,"Tennessee",8993 -1999-03-01,"Tennessee",9699 -1999-04-01,"Tennessee",4777 -1999-05-01,"Tennessee",1809 -1999-06-01,"Tennessee",1428 -1999-07-01,"Tennessee",1070 -1999-08-01,"Tennessee",1167 -1999-09-01,"Tennessee",1539 -1999-10-01,"Tennessee",1909 -1999-11-01,"Tennessee",4521 -1999-12-01,"Tennessee",8802 -2000-01-01,"Tennessee",13569 -2000-02-01,"Tennessee",13170 -2000-03-01,"Tennessee",6748 -2000-04-01,"Tennessee",4825 -2000-05-01,"Tennessee",2531 -2000-06-01,"Tennessee",1319 -2000-07-01,"Tennessee",1198 -2000-08-01,"Tennessee",1112 -2000-09-01,"Tennessee",1224 -2000-10-01,"Tennessee",2384 -2000-11-01,"Tennessee",5209 -2000-12-01,"Tennessee",15140 -2001-01-01,"Tennessee",19716 -2001-02-01,"Tennessee",11916 -2001-03-01,"Tennessee",9553 -2001-04-01,"Tennessee",5382 -2001-05-01,"Tennessee",1981 -2001-06-01,"Tennessee",1295 -2001-07-01,"Tennessee",1139 -2001-08-01,"Tennessee",1125 -2001-09-01,"Tennessee",1228 -2001-10-01,"Tennessee",2198 -2001-11-01,"Tennessee",4509 -2001-12-01,"Tennessee",8012 -2002-01-01,"Tennessee",14576 -2002-02-01,"Tennessee",11396 -2002-03-01,"Tennessee",10380 -2002-04-01,"Tennessee",5414 -2002-05-01,"Tennessee",2096 -2002-06-01,"Tennessee",1623 -2002-07-01,"Tennessee",1201 -2002-08-01,"Tennessee",1094 -2002-09-01,"Tennessee",1144 -2002-10-01,"Tennessee",1852 -2002-11-01,"Tennessee",5751 -2002-12-01,"Tennessee",12804 -2003-01-01,"Tennessee",15336 -2003-02-01,"Tennessee",15713 -2003-03-01,"Tennessee",10227 -2003-04-01,"Tennessee",4288 -2003-05-01,"Tennessee",2146 -2003-06-01,"Tennessee",1436 -2003-07-01,"Tennessee",1251 -2003-08-01,"Tennessee",1074 -2003-09-01,"Tennessee",1250 -2003-10-01,"Tennessee",2092 -2003-11-01,"Tennessee",3826 -2003-12-01,"Tennessee",11108 -2004-01-01,"Tennessee",14597 -2004-02-01,"Tennessee",14823 -2004-03-01,"Tennessee",9500 -2004-04-01,"Tennessee",5266 -2004-05-01,"Tennessee",2645 -2004-06-01,"Tennessee",1387 -2004-07-01,"Tennessee",1258 -2004-08-01,"Tennessee",1182 -2004-09-01,"Tennessee",1267 -2004-10-01,"Tennessee",1537 -2004-11-01,"Tennessee",2921 -2004-12-01,"Tennessee",8948 -2005-01-01,"Tennessee",13370 -2005-02-01,"Tennessee",12627 -2005-03-01,"Tennessee",10024 -2005-04-01,"Tennessee",5979 -2005-05-01,"Tennessee",2939 -2005-06-01,"Tennessee",1640 -2005-07-01,"Tennessee",1197 -2005-08-01,"Tennessee",1122 -2005-09-01,"Tennessee",1258 -2005-10-01,"Tennessee",1438 -2005-11-01,"Tennessee",4052 -2005-12-01,"Tennessee",10630 -2006-01-01,"Tennessee",12251 -2006-02-01,"Tennessee",10927 -2006-03-01,"Tennessee",9273 -2006-04-01,"Tennessee",4846 -2006-05-01,"Tennessee",1795 -2006-06-01,"Tennessee",1485 -2006-07-01,"Tennessee",1167 -2006-08-01,"Tennessee",1068 -2006-09-01,"Tennessee",1128 -2006-10-01,"Tennessee",1775 -2006-11-01,"Tennessee",5685 -2006-12-01,"Tennessee",9618 -2007-01-01,"Tennessee",11015 -2007-02-01,"Tennessee",14465 -2007-03-01,"Tennessee",9852 -2007-04-01,"Tennessee",4286 -2007-05-01,"Tennessee",2674 -2007-06-01,"Tennessee",1299 -2007-07-01,"Tennessee",1154 -2007-08-01,"Tennessee",1084 -2007-09-01,"Tennessee",1057 -2007-10-01,"Tennessee",1304 -2007-11-01,"Tennessee",3910 -2007-12-01,"Tennessee",8636 -2008-01-01,"Tennessee",12843 -2008-02-01,"Tennessee",13285 -2008-03-01,"Tennessee",10359 -2008-04-01,"Tennessee",5456 -2008-05-01,"Tennessee",2380 -2008-06-01,"Tennessee",1406 -2008-07-01,"Tennessee",1149 -2008-08-01,"Tennessee",1077 -2008-09-01,"Tennessee",1185 -2008-10-01,"Tennessee",1678 -2008-11-01,"Tennessee",6030 -2008-12-01,"Tennessee",12335 -2009-01-01,"Tennessee",14421 -2009-02-01,"Tennessee",12835 -2009-03-01,"Tennessee",9054 -2009-04-01,"Tennessee",4787 -2009-05-01,"Tennessee",2210 -2009-06-01,"Tennessee",1271 -2009-07-01,"Tennessee",1183 -2009-08-01,"Tennessee",1082 -2009-09-01,"Tennessee",1202 -2009-10-01,"Tennessee",2185 -2009-11-01,"Tennessee",4862 -2009-12-01,"Tennessee",11018 -2010-01-01,"Tennessee",16697 -2010-02-01,"Tennessee",14701 -2010-03-01,"Tennessee",11128 -2010-04-01,"Tennessee",4022 -2010-05-01,"Tennessee",1468 -2010-06-01,"Tennessee",1206 -2010-07-01,"Tennessee",1036 -2010-08-01,"Tennessee",956 -2010-09-01,"Tennessee",1043 -2010-10-01,"Tennessee",1742 -2010-11-01,"Tennessee",5688 -2010-12-01,"Tennessee",14629 -2011-01-01,"Tennessee",17826 -2011-02-01,"Tennessee",11229 -2011-03-01,"Tennessee",7676 -2011-04-01,"Tennessee",3858 -2011-05-01,"Tennessee",1944 -2011-06-01,"Tennessee",1205 -2011-07-01,"Tennessee",992 -2011-08-01,"Tennessee",1004 -2011-09-01,"Tennessee",1148 -2011-10-01,"Tennessee",2633 -2011-11-01,"Tennessee",6407 -2011-12-01,"Tennessee",11269 -2012-01-01,"Tennessee",11922 -2012-02-01,"Tennessee",9668 -2012-03-01,"Tennessee",3986 -2012-04-01,"Tennessee",2149 -2012-05-01,"Tennessee",1431 -2012-06-01,"Tennessee",1079 -2012-07-01,"Tennessee",975 -2012-08-01,"Tennessee",1019 -2012-09-01,"Tennessee",1146 -2012-10-01,"Tennessee",2728 -2012-11-01,"Tennessee",7744 -2012-12-01,"Tennessee",9963 -2013-01-01,"Tennessee",13889 -2013-02-01,"Tennessee",11719 -2013-03-01,"Tennessee",11085 -2013-04-01,"Tennessee",4774 -2013-05-01,"Tennessee",2394 -2013-06-01,"Tennessee",1259 -2013-07-01,"Tennessee",1107 -2013-08-01,"Tennessee",1115 -2013-09-01,"Tennessee",1117 -2013-10-01,"Tennessee",2092 -2013-11-01,"Tennessee",6931 -2013-12-01,"Tennessee",13758 -2014-01-01,"Tennessee",19749 -2014-02-01,"Tennessee",14673 -2014-03-01,"Tennessee",10222 -2014-04-01,"Tennessee",4088 -2014-05-01,"Tennessee",1868 -2014-06-01,"Tennessee",1191 -2014-07-01,"Tennessee",1152 -2014-08-01,"Tennessee",1163 -2014-09-01,"Tennessee",1239 -2014-10-01,"Tennessee",2308 -2014-11-01,"Tennessee",8372 -2014-12-01,"Tennessee",12369 -2015-01-01,"Tennessee",16604 -2015-02-01,"Tennessee",18022 -2015-03-01,"Tennessee",9122 -2015-04-01,"Tennessee",3088 -2015-05-01,"Tennessee",1606 -2015-06-01,"Tennessee",1202 -2015-07-01,"Tennessee",1033 -2015-08-01,"Tennessee",995 -2015-09-01,"Tennessee",1155 -2015-10-01,"Tennessee",1967 -2015-11-01,"Tennessee",4811 -2015-12-01,"Tennessee",7708 -2016-01-01,"Tennessee",15073 -2016-02-01,"Tennessee",11341 -2016-03-01,"Tennessee",5466 -2016-04-01,"Tennessee",3107 -2016-05-01,"Tennessee",1627 -2016-06-01,"Tennessee",1157 -2016-07-01,"Tennessee",1004 -2016-08-01,"Tennessee",926 -2016-09-01,"Tennessee",1020 -2016-10-01,"Tennessee",1410 -2016-11-01,"Tennessee",4391 -2016-12-01,"Tennessee",12402 -2017-01-01,"Tennessee",11248 -2017-02-01,"Tennessee",7217 -2017-03-01,"Tennessee",6888 -2017-04-01,"Tennessee",2363 -2017-05-01,"Tennessee",1721 -2017-06-01,"Tennessee",1168 -2017-07-01,"Tennessee",1008 -2017-08-01,"Tennessee",983 -2017-09-01,"Tennessee",1253 -2017-10-01,"Tennessee",1899 -2017-11-01,"Tennessee",6831 -2017-12-01,"Tennessee",14083 -2018-01-01,"Tennessee",19824 -2018-02-01,"Tennessee",9777 -2018-03-01,"Tennessee",8418 -2018-04-01,"Tennessee",6088 -2018-05-01,"Tennessee",2217 -2018-06-01,"Tennessee",1216 -2018-07-01,"Tennessee",1105 -2018-08-01,"Tennessee",931 -2018-09-01,"Tennessee",1130 -2018-10-01,"Tennessee",2056 -2018-11-01,"Tennessee",8687 -2018-12-01,"Tennessee",13352 -2019-01-01,"Tennessee",15503 -2019-02-01,"Tennessee",10247 -2019-03-01,"Tennessee",9929 -2019-04-01,"Tennessee",3403 -2019-05-01,"Tennessee",1599 -2019-06-01,"Tennessee",1186 -2019-07-01,"Tennessee",1101 -2019-08-01,"Tennessee",910 -2019-09-01,"Tennessee",1139 -2019-10-01,"Tennessee",1692 -2019-11-01,"Tennessee",10191 -2019-12-01,"Tennessee",11788 -2020-01-01,"Tennessee",12769 -2020-02-01,"Tennessee",12708 -2020-03-01,"Tennessee",NA -2020-04-01,"Tennessee",4016 -2020-05-01,"Tennessee",NA -2020-06-01,"Tennessee",1518 -2020-07-01,"Tennessee",1173 -2020-08-01,"Tennessee",1156 -2020-09-01,"Tennessee",1287 -2020-10-01,"Tennessee",2161 -2020-11-01,"Tennessee",5676 -2020-12-01,"Tennessee",14282 -2021-01-01,"Tennessee",16162 -2021-02-01,"Tennessee",15847 -1989-01-01,"Texas",33465 -1989-02-01,"Texas",40274 -1989-03-01,"Texas",29982 -1989-04-01,"Texas",15648 -1989-05-01,"Texas",9324 -1989-06-01,"Texas",8127 -1989-07-01,"Texas",7726 -1989-08-01,"Texas",7211 -1989-09-01,"Texas",7869 -1989-10-01,"Texas",9777 -1989-11-01,"Texas",16927 -1989-12-01,"Texas",43770 -1990-01-01,"Texas",42528 -1990-02-01,"Texas",27019 -1990-03-01,"Texas",23049 -1990-04-01,"Texas",15292 -1990-05-01,"Texas",10830 -1990-06-01,"Texas",8563 -1990-07-01,"Texas",7665 -1990-08-01,"Texas",7565 -1990-09-01,"Texas",7536 -1990-10-01,"Texas",10268 -1990-11-01,"Texas",16744 -1990-12-01,"Texas",33597 -1991-01-01,"Texas",47614 -1991-02-01,"Texas",31260 -1991-03-01,"Texas",22702 -1991-04-01,"Texas",13394 -1991-05-01,"Texas",9031 -1991-06-01,"Texas",8293 -1991-07-01,"Texas",7856 -1991-08-01,"Texas",7440 -1991-09-01,"Texas",7768 -1991-10-01,"Texas",10188 -1991-11-01,"Texas",23812 -1991-12-01,"Texas",32840 -1992-01-01,"Texas",39747 -1992-02-01,"Texas",33008 -1992-03-01,"Texas",21265 -1992-04-01,"Texas",14934 -1992-05-01,"Texas",10307 -1992-06-01,"Texas",8776 -1992-07-01,"Texas",8119 -1992-08-01,"Texas",7553 -1992-09-01,"Texas",7750 -1992-10-01,"Texas",8584 -1992-11-01,"Texas",19205 -1992-12-01,"Texas",35434 -1993-01-01,"Texas",41675 -1993-02-01,"Texas",34630 -1993-03-01,"Texas",27431 -1993-04-01,"Texas",17469 -1993-05-01,"Texas",10765 -1993-06-01,"Texas",8508 -1993-07-01,"Texas",7809 -1993-08-01,"Texas",7451 -1993-09-01,"Texas",7270 -1993-10-01,"Texas",11527 -1993-11-01,"Texas",24155 -1993-12-01,"Texas",33110 -1994-01-01,"Texas",42609 -1994-02-01,"Texas",37064 -1994-03-01,"Texas",25521 -1994-04-01,"Texas",15288 -1994-05-01,"Texas",10159 -1994-06-01,"Texas",8312 -1994-07-01,"Texas",7504 -1994-08-01,"Texas",7176 -1994-09-01,"Texas",7502 -1994-10-01,"Texas",9242 -1994-11-01,"Texas",15760 -1994-12-01,"Texas",27295 -1995-01-01,"Texas",37828 -1995-02-01,"Texas",30036 -1995-03-01,"Texas",26496 -1995-04-01,"Texas",14952 -1995-05-01,"Texas",9947 -1995-06-01,"Texas",8008 -1995-07-01,"Texas",7545 -1995-08-01,"Texas",6707 -1995-09-01,"Texas",7378 -1995-10-01,"Texas",8860 -1995-11-01,"Texas",17917 -1995-12-01,"Texas",30741 -1996-01-01,"Texas",46282 -1996-02-01,"Texas",35808 -1996-03-01,"Texas",28242 -1996-04-01,"Texas",19123 -1996-05-01,"Texas",9574 -1996-06-01,"Texas",7819 -1996-07-01,"Texas",7216 -1996-08-01,"Texas",6534 -1996-09-01,"Texas",7495 -1996-10-01,"Texas",9479 -1996-11-01,"Texas",17793 -1996-12-01,"Texas",33952 -1997-01-01,"Texas",47522 -1997-02-01,"Texas",36893 -1997-03-01,"Texas",25245 -1997-04-01,"Texas",15606 -1997-05-01,"Texas",11595 -1997-06-01,"Texas",8451 -1997-07-01,"Texas",7599 -1997-08-01,"Texas",6789 -1997-09-01,"Texas",7140 -1997-10-01,"Texas",9175 -1997-11-01,"Texas",21561 -1997-12-01,"Texas",37410 -1998-01-01,"Texas",40941 -1998-02-01,"Texas",33882 -1998-03-01,"Texas",27829 -1998-04-01,"Texas",15365 -1998-05-01,"Texas",9090 -1998-06-01,"Texas",6086 -1998-07-01,"Texas",6039 -1998-08-01,"Texas",5774 -1998-09-01,"Texas",5893 -1998-10-01,"Texas",7323 -1998-11-01,"Texas",12931 -1998-12-01,"Texas",28302 -1999-01-01,"Texas",41853 -1999-02-01,"Texas",23810 -1999-03-01,"Texas",19955 -1999-04-01,"Texas",15422 -1999-05-01,"Texas",8745 -1999-06-01,"Texas",7070 -1999-07-01,"Texas",6286 -1999-08-01,"Texas",5569 -1999-09-01,"Texas",6126 -1999-10-01,"Texas",7143 -1999-11-01,"Texas",11193 -1999-12-01,"Texas",22736 -2000-01-01,"Texas",33787 -2000-02-01,"Texas",31489 -2000-03-01,"Texas",17589 -2000-04-01,"Texas",14597 -2000-05-01,"Texas",8503 -2000-06-01,"Texas",7118 -2000-07-01,"Texas",6220 -2000-08-01,"Texas",5687 -2000-09-01,"Texas",5805 -2000-10-01,"Texas",8324 -2000-11-01,"Texas",15821 -2000-12-01,"Texas",38615 -2001-01-01,"Texas",50098 -2001-02-01,"Texas",36621 -2001-03-01,"Texas",24066 -2001-04-01,"Texas",14627 -2001-05-01,"Texas",7979 -2001-06-01,"Texas",6521 -2001-07-01,"Texas",5422 -2001-08-01,"Texas",7310 -2001-09-01,"Texas",5229 -2001-10-01,"Texas",7927 -2001-11-01,"Texas",12891 -2001-12-01,"Texas",29757 -2002-01-01,"Texas",39507 -2002-02-01,"Texas",37745 -2002-03-01,"Texas",29187 -2002-04-01,"Texas",14429 -2002-05-01,"Texas",6596 -2002-06-01,"Texas",6000 -2002-07-01,"Texas",5920 -2002-08-01,"Texas",5647 -2002-09-01,"Texas",5703 -2002-10-01,"Texas",8784 -2002-11-01,"Texas",17864 -2002-12-01,"Texas",32569 -2003-01-01,"Texas",45246 -2003-02-01,"Texas",40596 -2003-03-01,"Texas",28283 -2003-04-01,"Texas",10943 -2003-05-01,"Texas",8006 -2003-06-01,"Texas",6043 -2003-07-01,"Texas",5893 -2003-08-01,"Texas",5558 -2003-09-01,"Texas",5794 -2003-10-01,"Texas",7112 -2003-11-01,"Texas",13732 -2003-12-01,"Texas",29487 -2004-01-01,"Texas",37903 -2004-02-01,"Texas",38823 -2004-03-01,"Texas",20063 -2004-04-01,"Texas",11255 -2004-05-01,"Texas",8409 -2004-06-01,"Texas",6469 -2004-07-01,"Texas",6094 -2004-08-01,"Texas",5611 -2004-09-01,"Texas",5892 -2004-10-01,"Texas",6637 -2004-11-01,"Texas",14683 -2004-12-01,"Texas",29668 -2005-01-01,"Texas",39852 -2005-02-01,"Texas",32025 -2005-03-01,"Texas",23000 -2005-04-01,"Texas",12685 -2005-05-01,"Texas",8028 -2005-06-01,"Texas",6470 -2005-07-01,"Texas",6008 -2005-08-01,"Texas",5536 -2005-09-01,"Texas",5879 -2005-10-01,"Texas",6711 -2005-11-01,"Texas",10798 -2005-12-01,"Texas",28133 -2006-01-01,"Texas",30497 -2006-02-01,"Texas",25942 -2006-03-01,"Texas",23936 -2006-04-01,"Texas",11741 -2006-05-01,"Texas",6993 -2006-06-01,"Texas",6310 -2006-07-01,"Texas",5573 -2006-08-01,"Texas",5382 -2006-09-01,"Texas",5334 -2006-10-01,"Texas",6430 -2006-11-01,"Texas",11696 -2006-12-01,"Texas",26392 -2007-01-01,"Texas",41545 -2007-02-01,"Texas",43863 -2007-03-01,"Texas",25022 -2007-04-01,"Texas",12667 -2007-05-01,"Texas",9616 -2007-06-01,"Texas",7802 -2007-07-01,"Texas",6270 -2007-08-01,"Texas",5858 -2007-09-01,"Texas",5354 -2007-10-01,"Texas",6529 -2007-11-01,"Texas",9756 -2007-12-01,"Texas",25520 -2008-01-01,"Texas",42644 -2008-02-01,"Texas",32448 -2008-03-01,"Texas",22673 -2008-04-01,"Texas",11397 -2008-05-01,"Texas",7940 -2008-06-01,"Texas",6107 -2008-07-01,"Texas",5617 -2008-08-01,"Texas",5355 -2008-09-01,"Texas",5559 -2008-10-01,"Texas",7449 -2008-11-01,"Texas",13512 -2008-12-01,"Texas",32048 -2009-01-01,"Texas",38425 -2009-02-01,"Texas",27914 -2009-03-01,"Texas",19967 -2009-04-01,"Texas",13313 -2009-05-01,"Texas",7519 -2009-06-01,"Texas",6785 -2009-07-01,"Texas",5762 -2009-08-01,"Texas",5384 -2009-09-01,"Texas",5457 -2009-10-01,"Texas",8809 -2009-11-01,"Texas",13137 -2009-12-01,"Texas",39681 -2010-01-01,"Texas",49862 -2010-02-01,"Texas",47290 -2010-03-01,"Texas",34693 -2010-04-01,"Texas",14367 -2010-05-01,"Texas",7534 -2010-06-01,"Texas",6112 -2010-07-01,"Texas",5872 -2010-08-01,"Texas",5211 -2010-09-01,"Texas",5365 -2010-10-01,"Texas",6760 -2010-11-01,"Texas",13798 -2010-12-01,"Texas",29580 -2011-01-01,"Texas",43060 -2011-02-01,"Texas",43878 -2011-03-01,"Texas",21304 -2011-04-01,"Texas",9557 -2011-05-01,"Texas",7431 -2011-06-01,"Texas",6235 -2011-07-01,"Texas",5214 -2011-08-01,"Texas",5247 -2011-09-01,"Texas",4986 -2011-10-01,"Texas",6897 -2011-11-01,"Texas",14118 -2011-12-01,"Texas",32031 -2012-01-01,"Texas",36745 -2012-02-01,"Texas",28000 -2012-03-01,"Texas",18156 -2012-04-01,"Texas",8599 -2012-05-01,"Texas",6339 -2012-06-01,"Texas",5454 -2012-07-01,"Texas",5585 -2012-08-01,"Texas",5063 -2012-09-01,"Texas",5091 -2012-10-01,"Texas",8185 -2012-11-01,"Texas",13761 -2012-12-01,"Texas",29003 -2013-01-01,"Texas",44556 -2013-02-01,"Texas",27347 -2013-03-01,"Texas",23570 -2013-04-01,"Texas",13573 -2013-05-01,"Texas",9759 -2013-06-01,"Texas",6114 -2013-07-01,"Texas",5883 -2013-08-01,"Texas",5280 -2013-09-01,"Texas",5276 -2013-10-01,"Texas",7264 -2013-11-01,"Texas",15719 -2013-12-01,"Texas",42807 -2014-01-01,"Texas",56481 -2014-02-01,"Texas",45335 -2014-03-01,"Texas",30199 -2014-04-01,"Texas",15627 -2014-05-01,"Texas",8855 -2014-06-01,"Texas",6977 -2014-07-01,"Texas",6188 -2014-08-01,"Texas",5661 -2014-09-01,"Texas",5951 -2014-10-01,"Texas",6881 -2014-11-01,"Texas",14635 -2014-12-01,"Texas",31730 -2015-01-01,"Texas",53622 -2015-02-01,"Texas",36891 -2015-03-01,"Texas",34514 -2015-04-01,"Texas",10986 -2015-05-01,"Texas",6857 -2015-06-01,"Texas",6360 -2015-07-01,"Texas",6479 -2015-08-01,"Texas",4875 -2015-09-01,"Texas",5401 -2015-10-01,"Texas",6334 -2015-11-01,"Texas",11027 -2015-12-01,"Texas",28033 -2016-01-01,"Texas",41423 -2016-02-01,"Texas",30067 -2016-03-01,"Texas",16632 -2016-04-01,"Texas",11584 -2016-05-01,"Texas",7373 -2016-06-01,"Texas",7078 -2016-07-01,"Texas",5756 -2016-08-01,"Texas",5380 -2016-09-01,"Texas",5353 -2016-10-01,"Texas",6508 -2016-11-01,"Texas",9112 -2016-12-01,"Texas",29065 -2017-01-01,"Texas",39036 -2017-02-01,"Texas",22127 -2017-03-01,"Texas",16023 -2017-04-01,"Texas",9413 -2017-05-01,"Texas",7747 -2017-06-01,"Texas",5821 -2017-07-01,"Texas",6000 -2017-08-01,"Texas",5436 -2017-09-01,"Texas",5885 -2017-10-01,"Texas",7769 -2017-11-01,"Texas",13231 -2017-12-01,"Texas",25659 -2018-01-01,"Texas",57953 -2018-02-01,"Texas",34748 -2018-03-01,"Texas",24585 -2018-04-01,"Texas",13484 -2018-05-01,"Texas",8214 -2018-06-01,"Texas",5448 -2018-07-01,"Texas",4910 -2018-08-01,"Texas",4989 -2018-09-01,"Texas",5132 -2018-10-01,"Texas",8068 -2018-11-01,"Texas",23135 -2018-12-01,"Texas",36361 -2019-01-01,"Texas",45205 -2019-02-01,"Texas",38167 -2019-03-01,"Texas",33326 -2019-04-01,"Texas",16990 -2019-05-01,"Texas",7913 -2019-06-01,"Texas",6613 -2019-07-01,"Texas",6208 -2019-08-01,"Texas",5213 -2019-09-01,"Texas",5045 -2019-10-01,"Texas",7328 -2019-11-01,"Texas",24293 -2019-12-01,"Texas",31828 -2020-01-01,"Texas",38096 -2020-02-01,"Texas",34257 -2020-03-01,"Texas",18708 -2020-04-01,"Texas",10547 -2020-05-01,"Texas",8322 -2020-06-01,"Texas",7010 -2020-07-01,"Texas",6835 -2020-08-01,"Texas",6428 -2020-09-01,"Texas",6453 -2020-10-01,"Texas",NA -2020-11-01,"Texas",16177 -2020-12-01,"Texas",39667 -2021-01-01,"Texas",38953 -2021-02-01,"Texas",50595 -1973-01-01,"U.S.",843900 -1973-02-01,"U.S.",747331 -1973-03-01,"U.S.",648504 -1973-04-01,"U.S.",465867 -1973-05-01,"U.S.",326313 -1973-06-01,"U.S.",207172 -1973-07-01,"U.S.",150349 -1973-08-01,"U.S.",142498 -1973-09-01,"U.S.",159378 -1973-10-01,"U.S.",205013 -1973-11-01,"U.S.",392459 -1973-12-01,"U.S.",590602 -1974-01-01,"U.S.",816943 -1974-02-01,"U.S.",688478 -1974-03-01,"U.S.",597641 -1974-04-01,"U.S.",482013 -1974-05-01,"U.S.",315920 -1974-06-01,"U.S.",215382 -1974-07-01,"U.S.",166289 -1974-08-01,"U.S.",142086 -1974-09-01,"U.S.",154824 -1974-10-01,"U.S.",235176 -1974-11-01,"U.S.",358546 -1974-12-01,"U.S.",612830 -1975-01-01,"U.S.",750713 -1975-02-01,"U.S.",732408 -1975-03-01,"U.S.",677687 -1975-04-01,"U.S.",596831 -1975-05-01,"U.S.",337326 -1975-06-01,"U.S.",203708 -1975-07-01,"U.S.",167293 -1975-08-01,"U.S.",143604 -1975-09-01,"U.S.",153980 -1975-10-01,"U.S.",223383 -1975-11-01,"U.S.",329397 -1975-12-01,"U.S.",607794 -1976-01-01,"U.S.",843235 -1976-02-01,"U.S.",739592 -1976-03-01,"U.S.",578491 -1976-04-01,"U.S.",442648 -1976-05-01,"U.S.",315760 -1976-06-01,"U.S.",220871 -1976-07-01,"U.S.",170257 -1976-08-01,"U.S.",140774 -1976-09-01,"U.S.",152346 -1976-10-01,"U.S.",241902 -1976-11-01,"U.S.",471326 -1976-12-01,"U.S.",734158 -1977-01-01,"U.S.",936793 -1977-02-01,"U.S.",823439 -1977-03-01,"U.S.",560779 -1977-04-01,"U.S.",401258 -1977-05-01,"U.S.",251756 -1977-06-01,"U.S.",182212 -1977-07-01,"U.S.",146064 -1977-08-01,"U.S.",131330 -1977-09-01,"U.S.",140661 -1977-10-01,"U.S.",223663 -1977-11-01,"U.S.",371888 -1977-12-01,"U.S.",651640 -1978-01-01,"U.S.",816411 -1978-02-01,"U.S.",837768 -1978-03-01,"U.S.",680825 -1978-04-01,"U.S.",445702 -1978-05-01,"U.S.",307604 -1978-06-01,"U.S.",184388 -1978-07-01,"U.S.",146989 -1978-08-01,"U.S.",130270 -1978-09-01,"U.S.",135489 -1978-10-01,"U.S.",209515 -1978-11-01,"U.S.",376411 -1978-12-01,"U.S.",631636 -1979-01-01,"U.S.",867301 -1979-02-01,"U.S.",892145 -1979-03-01,"U.S.",659720 -1979-04-01,"U.S.",463492 -1979-05-01,"U.S.",287548 -1979-06-01,"U.S.",189143 -1979-07-01,"U.S.",147607 -1979-08-01,"U.S.",133244 -1979-09-01,"U.S.",137611 -1979-10-01,"U.S.",215151 -1979-11-01,"U.S.",378577 -1979-12-01,"U.S.",593825 -1980-01-01,"U.S.",722000 -1980-02-01,"U.S.",774000 -1980-03-01,"U.S.",673000 -1980-04-01,"U.S.",451000 -1980-05-01,"U.S.",279000 -1980-06-01,"U.S.",191000 -1980-07-01,"U.S.",145000 -1980-08-01,"U.S.",129000 -1980-09-01,"U.S.",135000 -1980-10-01,"U.S.",214000 -1980-11-01,"U.S.",392000 -1980-12-01,"U.S.",646000 -1981-01-01,"U.S.",831000 -1981-02-01,"U.S.",740000 -1981-03-01,"U.S.",585000 -1981-04-01,"U.S.",372000 -1981-05-01,"U.S.",260000 -1981-06-01,"U.S.",168000 -1981-07-01,"U.S.",136000 -1981-08-01,"U.S.",123000 -1981-09-01,"U.S.",133000 -1981-10-01,"U.S.",232000 -1981-11-01,"U.S.",364000 -1981-12-01,"U.S.",601000 -1982-01-01,"U.S.",866000 -1982-02-01,"U.S.",786000 -1982-03-01,"U.S.",602000 -1982-04-01,"U.S.",451000 -1982-05-01,"U.S.",233000 -1982-06-01,"U.S.",165000 -1982-07-01,"U.S.",138000 -1982-08-01,"U.S.",123000 -1982-09-01,"U.S.",136000 -1982-10-01,"U.S.",204000 -1982-11-01,"U.S.",372000 -1982-12-01,"U.S.",557000 -1983-01-01,"U.S.",849621 -1983-02-01,"U.S.",671628 -1983-03-01,"U.S.",580985 -1983-04-01,"U.S.",444247 -1983-05-01,"U.S.",276395 -1983-06-01,"U.S.",164337 -1983-07-01,"U.S.",124457 -1983-08-01,"U.S.",114458 -1983-09-01,"U.S.",122538 -1983-10-01,"U.S.",175875 -1983-11-01,"U.S.",310895 -1983-12-01,"U.S.",545164 -1984-01-01,"U.S.",886307 -1984-02-01,"U.S.",699925 -1984-03-01,"U.S.",605372 -1984-04-01,"U.S.",462950 -1984-05-01,"U.S.",286928 -1984-06-01,"U.S.",169942 -1984-07-01,"U.S.",128314 -1984-08-01,"U.S.",118045 -1984-09-01,"U.S.",126625 -1984-10-01,"U.S.",182438 -1984-11-01,"U.S.",322693 -1984-12-01,"U.S.",565927 -1985-01-01,"U.S.",743223 -1985-02-01,"U.S.",837245 -1985-03-01,"U.S.",566386 -1985-04-01,"U.S.",396625 -1985-05-01,"U.S.",212164 -1985-06-01,"U.S.",156549 -1985-07-01,"U.S.",129851 -1985-08-01,"U.S.",118932 -1985-09-01,"U.S.",129314 -1985-10-01,"U.S.",189799 -1985-11-01,"U.S.",306427 -1985-12-01,"U.S.",646863 -1986-01-01,"U.S.",790569 -1986-02-01,"U.S.",684541 -1986-03-01,"U.S.",579901 -1986-04-01,"U.S.",363277 -1986-05-01,"U.S.",236207 -1986-06-01,"U.S.",154889 -1986-07-01,"U.S.",126494 -1986-08-01,"U.S.",117487 -1986-09-01,"U.S.",130597 -1986-10-01,"U.S.",185265 -1986-11-01,"U.S.",345659 -1986-12-01,"U.S.",599085 -1987-01-01,"U.S.",741338 -1987-02-01,"U.S.",688699 -1987-03-01,"U.S.",575299 -1987-04-01,"U.S.",401848 -1987-05-01,"U.S.",222779 -1987-06-01,"U.S.",146812 -1987-07-01,"U.S.",125625 -1987-08-01,"U.S.",117471 -1987-09-01,"U.S.",126348 -1987-10-01,"U.S.",222825 -1987-11-01,"U.S.",354076 -1987-12-01,"U.S.",591715 -1988-01-01,"U.S.",852076 -1988-02-01,"U.S.",754526 -1988-03-01,"U.S.",596846 -1988-04-01,"U.S.",400177 -1988-05-01,"U.S.",257781 -1988-06-01,"U.S.",152204 -1988-07-01,"U.S.",122908 -1988-08-01,"U.S.",114411 -1988-09-01,"U.S.",124739 -1988-10-01,"U.S.",232157 -1988-11-01,"U.S.",391420 -1988-12-01,"U.S.",631086 -1989-01-01,"U.S.",751166 -1989-02-01,"U.S.",743050 -1989-03-01,"U.S.",645859 -1989-04-01,"U.S.",414487 -1989-05-01,"U.S.",256551 -1989-06-01,"U.S.",155449 -1989-07-01,"U.S.",128662 -1989-08-01,"U.S.",121009 -1989-09-01,"U.S.",139486 -1989-10-01,"U.S.",228672 -1989-11-01,"U.S.",405314 -1989-12-01,"U.S.",790934 -1990-01-01,"U.S.",788596 -1990-02-01,"U.S.",642665 -1990-03-01,"U.S.",551987 -1990-04-01,"U.S.",399624 -1990-05-01,"U.S.",248272 -1990-06-01,"U.S.",160823 -1990-07-01,"U.S.",126501 -1990-08-01,"U.S.",121276 -1990-09-01,"U.S.",132115 -1990-10-01,"U.S.",213538 -1990-11-01,"U.S.",375652 -1990-12-01,"U.S.",630275 -1991-01-01,"U.S.",843832 -1991-02-01,"U.S.",664218 -1991-03-01,"U.S.",573093 -1991-04-01,"U.S.",372922 -1991-05-01,"U.S.",228742 -1991-06-01,"U.S.",147839 -1991-07-01,"U.S.",126156 -1991-08-01,"U.S.",117851 -1991-09-01,"U.S.",137994 -1991-10-01,"U.S.",225108 -1991-11-01,"U.S.",459455 -1991-12-01,"U.S.",658449 -1992-01-01,"U.S.",785718 -1992-02-01,"U.S.",696082 -1992-03-01,"U.S.",573979 -1992-04-01,"U.S.",431401 -1992-05-01,"U.S.",251416 -1992-06-01,"U.S.",162378 -1992-07-01,"U.S.",131801 -1992-08-01,"U.S.",125580 -1992-09-01,"U.S.",137106 -1992-10-01,"U.S.",240662 -1992-11-01,"U.S.",436771 -1992-12-01,"U.S.",717170 -1993-01-01,"U.S.",830874 -1993-02-01,"U.S.",768365 -1993-03-01,"U.S.",703183 -1993-04-01,"U.S.",449738 -1993-05-01,"U.S.",232154 -1993-06-01,"U.S.",163642 -1993-07-01,"U.S.",129719 -1993-08-01,"U.S.",120331 -1993-09-01,"U.S.",141580 -1993-10-01,"U.S.",254494 -1993-11-01,"U.S.",457330 -1993-12-01,"U.S.",705034 -1994-01-01,"U.S.",952520 -1994-02-01,"U.S.",841815 -1994-03-01,"U.S.",630616 -1994-04-01,"U.S.",392153 -1994-05-01,"U.S.",246872 -1994-06-01,"U.S.",154411 -1994-07-01,"U.S.",126805 -1994-08-01,"U.S.",121952 -1994-09-01,"U.S.",130370 -1994-10-01,"U.S.",220553 -1994-11-01,"U.S.",391460 -1994-12-01,"U.S.",638175 -1995-01-01,"U.S.",815547 -1995-02-01,"U.S.",754491 -1995-03-01,"U.S.",600034 -1995-04-01,"U.S.",418820 -1995-05-01,"U.S.",260367 -1995-06-01,"U.S.",158908 -1995-07-01,"U.S.",130717 -1995-08-01,"U.S.",114415 -1995-09-01,"U.S.",133951 -1995-10-01,"U.S.",216412 -1995-11-01,"U.S.",488812 -1995-12-01,"U.S.",757844 -1996-01-01,"U.S.",933642 -1996-02-01,"U.S.",830912 -1996-03-01,"U.S.",705207 -1996-04-01,"U.S.",473842 -1996-05-01,"U.S.",271486 -1996-06-01,"U.S.",162277 -1996-07-01,"U.S.",124371 -1996-08-01,"U.S.",118296 -1996-09-01,"U.S.",137556 -1996-10-01,"U.S.",243121 -1996-11-01,"U.S.",502981 -1996-12-01,"U.S.",737722 -1997-01-01,"U.S.",902399 -1997-02-01,"U.S.",757457 -1997-03-01,"U.S.",605856 -1997-04-01,"U.S.",433073 -1997-05-01,"U.S.",283739 -1997-06-01,"U.S.",163591 -1997-07-01,"U.S.",127805 -1997-08-01,"U.S.",117900 -1997-09-01,"U.S.",129388 -1997-10-01,"U.S.",234223 -1997-11-01,"U.S.",497310 -1997-12-01,"U.S.",731030 -1998-01-01,"U.S.",812108 -1998-02-01,"U.S.",691819 -1998-03-01,"U.S.",647619 -1998-04-01,"U.S.",407752 -1998-05-01,"U.S.",220830 -1998-06-01,"U.S.",152708 -1998-07-01,"U.S.",132390 -1998-08-01,"U.S.",116631 -1998-09-01,"U.S.",121417 -1998-10-01,"U.S.",202996 -1998-11-01,"U.S.",398094 -1998-12-01,"U.S.",615913 -1999-01-01,"U.S.",911162 -1999-02-01,"U.S.",689687 -1999-03-01,"U.S.",669270 -1999-04-01,"U.S.",420192 -1999-05-01,"U.S.",234764 -1999-06-01,"U.S.",158235 -1999-07-01,"U.S.",126561 -1999-08-01,"U.S.",116231 -1999-09-01,"U.S.",134861 -1999-10-01,"U.S.",233508 -1999-11-01,"U.S.",371595 -1999-12-01,"U.S.",659606 -2000-01-01,"U.S.",862900 -2000-02-01,"U.S.",775235 -2000-03-01,"U.S.",550261 -2000-04-01,"U.S.",400886 -2000-05-01,"U.S.",228439 -2000-06-01,"U.S.",154183 -2000-07-01,"U.S.",128363 -2000-08-01,"U.S.",122408 -2000-09-01,"U.S.",140766 -2000-10-01,"U.S.",235799 -2000-11-01,"U.S.",482600 -2000-12-01,"U.S.",914339 -2001-01-01,"U.S.",976677 -2001-02-01,"U.S.",780482 -2001-03-01,"U.S.",681884 -2001-04-01,"U.S.",400728 -2001-05-01,"U.S.",209327 -2001-06-01,"U.S.",146837 -2001-07-01,"U.S.",123777 -2001-08-01,"U.S.",116934 -2001-09-01,"U.S.",127482 -2001-10-01,"U.S.",237466 -2001-11-01,"U.S.",360721 -2001-12-01,"U.S.",609025 -2002-01-01,"U.S.",815227 -2002-02-01,"U.S.",712863 -2002-03-01,"U.S.",660430 -2002-04-01,"U.S.",415196 -2002-05-01,"U.S.",255083 -2002-06-01,"U.S.",159973 -2002-07-01,"U.S.",125065 -2002-08-01,"U.S.",115678 -2002-09-01,"U.S.",123904 -2002-10-01,"U.S.",250573 -2002-11-01,"U.S.",483192 -2002-12-01,"U.S.",771634 -2003-01-01,"U.S.",945975 -2003-02-01,"U.S.",884238 -2003-03-01,"U.S.",674582 -2003-04-01,"U.S.",414495 -2003-05-01,"U.S.",247693 -2003-06-01,"U.S.",157454 -2003-07-01,"U.S.",126624 -2003-08-01,"U.S.",115852 -2003-09-01,"U.S.",128621 -2003-10-01,"U.S.",231558 -2003-11-01,"U.S.",413663 -2003-12-01,"U.S.",738596 -2004-01-01,"U.S.",962910 -2004-02-01,"U.S.",857450 -2004-03-01,"U.S.",591428 -2004-04-01,"U.S.",379642 -2004-05-01,"U.S.",213645 -2004-06-01,"U.S.",144885 -2004-07-01,"U.S.",124882 -2004-08-01,"U.S.",119809 -2004-09-01,"U.S.",124924 -2004-10-01,"U.S.",216417 -2004-11-01,"U.S.",407202 -2004-12-01,"U.S.",725603 -2005-01-01,"U.S.",892345 -2005-02-01,"U.S.",759126 -2005-03-01,"U.S.",678019 -2005-04-01,"U.S.",384163 -2005-05-01,"U.S.",247525 -2005-06-01,"U.S.",152020 -2005-07-01,"U.S.",122282 -2005-08-01,"U.S.",112600 -2005-09-01,"U.S.",118261 -2005-10-01,"U.S.",202172 -2005-11-01,"U.S.",387025 -2005-12-01,"U.S.",771237 -2006-01-01,"U.S.",713698 -2006-02-01,"U.S.",702280 -2006-03-01,"U.S.",625925 -2006-04-01,"U.S.",355496 -2006-05-01,"U.S.",203512 -2006-06-01,"U.S.",141157 -2006-07-01,"U.S.",115586 -2006-08-01,"U.S.",108439 -2006-09-01,"U.S.",124922 -2006-10-01,"U.S.",240448 -2006-11-01,"U.S.",413409 -2006-12-01,"U.S.",623595 -2007-01-01,"U.S.",803075 -2007-02-01,"U.S.",899461 -2007-03-01,"U.S.",616531 -2007-04-01,"U.S.",407708 -2007-05-01,"U.S.",215724 -2007-06-01,"U.S.",137169 -2007-07-01,"U.S.",117616 -2007-08-01,"U.S.",112015 -2007-09-01,"U.S.",116439 -2007-10-01,"U.S.",174272 -2007-11-01,"U.S.",405477 -2007-12-01,"U.S.",716871 -2008-01-01,"U.S.",883643 -2008-02-01,"U.S.",818272 -2008-03-01,"U.S.",656262 -2008-04-01,"U.S.",388459 -2008-05-01,"U.S.",230229 -2008-06-01,"U.S.",144313 -2008-07-01,"U.S.",118416 -2008-08-01,"U.S.",111287 -2008-09-01,"U.S.",118100 -2008-10-01,"U.S.",218058 -2008-11-01,"U.S.",433370 -2008-12-01,"U.S.",771868 -2009-01-01,"U.S.",947740 -2009-02-01,"U.S.",756341 -2009-03-01,"U.S.",600328 -2009-04-01,"U.S.",390344 -2009-05-01,"U.S.",201447 -2009-06-01,"U.S.",141121 -2009-07-01,"U.S.",118624 -2009-08-01,"U.S.",111479 -2009-09-01,"U.S.",119681 -2009-10-01,"U.S.",251028 -2009-11-01,"U.S.",376488 -2009-12-01,"U.S.",764286 -2010-01-01,"U.S.",932605 -2010-02-01,"U.S.",794779 -2010-03-01,"U.S.",579243 -2010-04-01,"U.S.",313171 -2010-05-01,"U.S.",197513 -2010-06-01,"U.S.",134038 -2010-07-01,"U.S.",111307 -2010-08-01,"U.S.",107074 -2010-09-01,"U.S.",117299 -2010-10-01,"U.S.",201580 -2010-11-01,"U.S.",446801 -2010-12-01,"U.S.",847001 -2011-01-01,"U.S.",969775 -2011-02-01,"U.S.",767994 -2011-03-01,"U.S.",594929 -2011-04-01,"U.S.",340552 -2011-05-01,"U.S.",205399 -2011-06-01,"U.S.",132672 -2011-07-01,"U.S.",114187 -2011-08-01,"U.S.",112280 -2011-09-01,"U.S.",122751 -2011-10-01,"U.S.",225506 -2011-11-01,"U.S.",434502 -2011-12-01,"U.S.",693232 -2012-01-01,"U.S.",794368 -2012-02-01,"U.S.",662056 -2012-03-01,"U.S.",403150 -2012-04-01,"U.S.",279211 -2012-05-01,"U.S.",163083 -2012-06-01,"U.S.",123336 -2012-07-01,"U.S.",107517 -2012-08-01,"U.S.",105604 -2012-09-01,"U.S.",118611 -2012-10-01,"U.S.",240105 -2012-11-01,"U.S.",482134 -2012-12-01,"U.S.",670344 -2013-01-01,"U.S.",872291 -2013-02-01,"U.S.",750082 -2013-03-01,"U.S.",662262 -2013-04-01,"U.S.",366420 -2013-05-01,"U.S.",193222 -2013-06-01,"U.S.",127659 -2013-07-01,"U.S.",111509 -2013-08-01,"U.S.",107731 -2013-09-01,"U.S.",117803 -2013-10-01,"U.S.",222668 -2013-11-01,"U.S.",517529 -2013-12-01,"U.S.",848195 -2014-01-01,"U.S.",1037197 -2014-02-01,"U.S.",852927 -2014-03-01,"U.S.",699921 -2014-04-01,"U.S.",356142 -2014-05-01,"U.S.",203456 -2014-06-01,"U.S.",125596 -2014-07-01,"U.S.",112785 -2014-08-01,"U.S.",105187 -2014-09-01,"U.S.",121736 -2014-10-01,"U.S.",212079 -2014-11-01,"U.S.",543538 -2014-12-01,"U.S.",716907 -2015-01-01,"U.S.",937954 -2015-02-01,"U.S.",902364 -2015-03-01,"U.S.",633081 -2015-04-01,"U.S.",319285 -2015-05-01,"U.S.",177570 -2015-06-01,"U.S.",124066 -2015-07-01,"U.S.",108160 -2015-08-01,"U.S.",102855 -2015-09-01,"U.S.",108491 -2015-10-01,"U.S.",201540 -2015-11-01,"U.S.",406610 -2015-12-01,"U.S.",590911 -2016-01-01,"U.S.",878936 -2016-02-01,"U.S.",690077 -2016-03-01,"U.S.",455001 -2016-04-01,"U.S.",328059 -2016-05-01,"U.S.",193922 -2016-06-01,"U.S.",122640 -2016-07-01,"U.S.",106420 -2016-08-01,"U.S.",100455 -2016-09-01,"U.S.",109782 -2016-10-01,"U.S.",187385 -2016-11-01,"U.S.",379746 -2016-12-01,"U.S.",794164 -2017-01-01,"U.S.",830917 -2017-02-01,"U.S.",579458 -2017-03-01,"U.S.",579941 -2017-04-01,"U.S.",278972 -2017-05-01,"U.S.",199486 -2017-06-01,"U.S.",124057 -2017-07-01,"U.S.",107443 -2017-08-01,"U.S.",103835 -2017-09-01,"U.S.",114508 -2017-10-01,"U.S.",205087 -2017-11-01,"U.S.",467729 -2017-12-01,"U.S.",821890 -2018-01-01,"U.S.",981276 -2018-02-01,"U.S.",689887 -2018-03-01,"U.S.",659389 -2018-04-01,"U.S.",440848 -2018-05-01,"U.S.",169019 -2018-06-01,"U.S.",119244 -2018-07-01,"U.S.",105918 -2018-08-01,"U.S.",99781 -2018-09-01,"U.S.",112317 -2018-10-01,"U.S.",255318 -2018-11-01,"U.S.",598977 -2018-12-01,"U.S.",765580 -2019-01-01,"U.S.",953171 -2019-02-01,"U.S.",808724 -2019-03-01,"U.S.",688144 -2019-04-01,"U.S.",328421 -2019-05-01,"U.S.",212341 -2019-06-01,"U.S.",129157 -2019-07-01,"U.S.",111629 -2019-08-01,"U.S.",101840 -2019-09-01,"U.S.",109775 -2019-10-01,"U.S.",231622 -2019-11-01,"U.S.",588674 -2019-12-01,"U.S.",752105 -2020-01-01,"U.S.",820510 -2020-02-01,"U.S.",732603 -2020-03-01,"U.S.",524858 -2020-04-01,"U.S.",375432 -2020-05-01,"U.S.",235016 -2020-06-01,"U.S.",135813 -2020-07-01,"U.S.",117405 -2020-08-01,"U.S.",108838 -2020-09-01,"U.S.",125476 -2020-10-01,"U.S.",240412 -2020-11-01,"U.S.",439021 -2020-12-01,"U.S.",792881 -2021-01-01,"U.S.",876088 -2021-02-01,"U.S.",860334 -1989-01-01,"Utah",8316 -1989-02-01,"Utah",8290 -1989-03-01,"Utah",5786 -1989-04-01,"Utah",3585 -1989-05-01,"Utah",2215 -1989-06-01,"Utah",1763 -1989-07-01,"Utah",1374 -1989-08-01,"Utah",1235 -1989-09-01,"Utah",1322 -1989-10-01,"Utah",1718 -1989-11-01,"Utah",3640 -1989-12-01,"Utah",5923 -1990-01-01,"Utah",7169 -1990-02-01,"Utah",6949 -1990-03-01,"Utah",5699 -1990-04-01,"Utah",3287 -1990-05-01,"Utah",2576 -1990-06-01,"Utah",1880 -1990-07-01,"Utah",1314 -1990-08-01,"Utah",1236 -1990-09-01,"Utah",1222 -1990-10-01,"Utah",1932 -1990-11-01,"Utah",3699 -1990-12-01,"Utah",6463 -1991-01-01,"Utah",9582 -1991-02-01,"Utah",7276 -1991-03-01,"Utah",5715 -1991-04-01,"Utah",4514 -1991-05-01,"Utah",3544 -1991-06-01,"Utah",2041 -1991-07-01,"Utah",1348 -1991-08-01,"Utah",1269 -1991-09-01,"Utah",1347 -1991-10-01,"Utah",1802 -1991-11-01,"Utah",4293 -1991-12-01,"Utah",7841 -1992-01-01,"Utah",8422 -1992-02-01,"Utah",7132 -1992-03-01,"Utah",4869 -1992-04-01,"Utah",3184 -1992-05-01,"Utah",1986 -1992-06-01,"Utah",1524 -1992-07-01,"Utah",1406 -1992-08-01,"Utah",1255 -1992-09-01,"Utah",1321 -1992-10-01,"Utah",1802 -1992-11-01,"Utah",3844 -1992-12-01,"Utah",7957 -1993-01-01,"Utah",8919 -1993-02-01,"Utah",8045 -1993-03-01,"Utah",6589 -1993-04-01,"Utah",4375 -1993-05-01,"Utah",3055 -1993-06-01,"Utah",1845 -1993-07-01,"Utah",1533 -1993-08-01,"Utah",1353 -1993-09-01,"Utah",1449 -1993-10-01,"Utah",2322 -1993-11-01,"Utah",4676 -1993-12-01,"Utah",7619 -1994-01-01,"Utah",7251 -1994-02-01,"Utah",7329 -1994-03-01,"Utah",4831 -1994-04-01,"Utah",3524 -1994-05-01,"Utah",1577 -1994-06-01,"Utah",1404 -1994-07-01,"Utah",1369 -1994-08-01,"Utah",1306 -1994-09-01,"Utah",1457 -1994-10-01,"Utah",3845 -1994-11-01,"Utah",6969 -1994-12-01,"Utah",8059 -1995-01-01,"Utah",7769 -1995-02-01,"Utah",6009 -1995-03-01,"Utah",5407 -1995-04-01,"Utah",4336 -1995-05-01,"Utah",2965 -1995-06-01,"Utah",1956 -1995-07-01,"Utah",1386 -1995-08-01,"Utah",1422 -1995-09-01,"Utah",1970 -1995-10-01,"Utah",3857 -1995-11-01,"Utah",4684 -1995-12-01,"Utah",7214 -1996-01-01,"Utah",8555 -1996-02-01,"Utah",8571 -1996-03-01,"Utah",5419 -1996-04-01,"Utah",4540 -1996-05-01,"Utah",2252 -1996-06-01,"Utah",1351 -1996-07-01,"Utah",1533 -1996-08-01,"Utah",1416 -1996-09-01,"Utah",2540 -1996-10-01,"Utah",4215 -1996-11-01,"Utah",5749 -1996-12-01,"Utah",8203 -1997-01-01,"Utah",9878 -1997-02-01,"Utah",8367 -1997-03-01,"Utah",5945 -1997-04-01,"Utah",4876 -1997-05-01,"Utah",1821 -1997-06-01,"Utah",1602 -1997-07-01,"Utah",1502 -1997-08-01,"Utah",1466 -1997-09-01,"Utah",1957 -1997-10-01,"Utah",4299 -1997-11-01,"Utah",6018 -1997-12-01,"Utah",10376 -1998-01-01,"Utah",8412 -1998-02-01,"Utah",8209 -1998-03-01,"Utah",6494 -1998-04-01,"Utah",4863 -1998-05-01,"Utah",2248 -1998-06-01,"Utah",1962 -1998-07-01,"Utah",1266 -1998-08-01,"Utah",1335 -1998-09-01,"Utah",1916 -1998-10-01,"Utah",4472 -1998-11-01,"Utah",5820 -1998-12-01,"Utah",9846 -1999-01-01,"Utah",8220 -1999-02-01,"Utah",7725 -1999-03-01,"Utah",5425 -1999-04-01,"Utah",5267 -1999-05-01,"Utah",2663 -1999-06-01,"Utah",1648 -1999-07-01,"Utah",2254 -1999-08-01,"Utah",1484 -1999-09-01,"Utah",2285 -1999-10-01,"Utah",3567 -1999-11-01,"Utah",5321 -1999-12-01,"Utah",9614 -2000-01-01,"Utah",8319 -2000-02-01,"Utah",7038 -2000-03-01,"Utah",6792 -2000-04-01,"Utah",2967 -2000-05-01,"Utah",1809 -2000-06-01,"Utah",1494 -2000-07-01,"Utah",1492 -2000-08-01,"Utah",1444 -2000-09-01,"Utah",2415 -2000-10-01,"Utah",3824 -2000-11-01,"Utah",8379 -2000-12-01,"Utah",9652 -2001-01-01,"Utah",10012 -2001-02-01,"Utah",8160 -2001-03-01,"Utah",5528 -2001-04-01,"Utah",4096 -2001-05-01,"Utah",1877 -2001-06-01,"Utah",1771 -2001-07-01,"Utah",1414 -2001-08-01,"Utah",1442 -2001-09-01,"Utah",1589 -2001-10-01,"Utah",3468 -2001-11-01,"Utah",5575 -2001-12-01,"Utah",10075 -2002-01-01,"Utah",10613 -2002-02-01,"Utah",9355 -2002-03-01,"Utah",7806 -2002-04-01,"Utah",3271 -2002-05-01,"Utah",2297 -2002-06-01,"Utah",1587 -2002-07-01,"Utah",1424 -2002-08-01,"Utah",1424 -2002-09-01,"Utah",2018 -2002-10-01,"Utah",4514 -2002-11-01,"Utah",6759 -2002-12-01,"Utah",8328 -2003-01-01,"Utah",8173 -2003-02-01,"Utah",8462 -2003-03-01,"Utah",6045 -2003-04-01,"Utah",4414 -2003-05-01,"Utah",2489 -2003-06-01,"Utah",1540 -2003-07-01,"Utah",1358 -2003-08-01,"Utah",1355 -2003-09-01,"Utah",1856 -2003-10-01,"Utah",2988 -2003-11-01,"Utah",6914 -2003-12-01,"Utah",9037 -2004-01-01,"Utah",12149 -2004-02-01,"Utah",9483 -2004-03-01,"Utah",4845 -2004-04-01,"Utah",3998 -2004-05-01,"Utah",2342 -2004-06-01,"Utah",1328 -2004-07-01,"Utah",1607 -2004-08-01,"Utah",1585 -2004-09-01,"Utah",2277 -2004-10-01,"Utah",4253 -2004-11-01,"Utah",7395 -2004-12-01,"Utah",9265 -2005-01-01,"Utah",9909 -2005-02-01,"Utah",8520 -2005-03-01,"Utah",6983 -2005-04-01,"Utah",6432 -2005-05-01,"Utah",3925 -2005-06-01,"Utah",2526 -2005-07-01,"Utah",1807 -2005-08-01,"Utah",1347 -2005-09-01,"Utah",1645 -2005-10-01,"Utah",2329 -2005-11-01,"Utah",3730 -2005-12-01,"Utah",8890 -2006-01-01,"Utah",10103 -2006-02-01,"Utah",8992 -2006-03-01,"Utah",8165 -2006-04-01,"Utah",6167 -2006-05-01,"Utah",2983 -2006-06-01,"Utah",2172 -2006-07-01,"Utah",1523 -2006-08-01,"Utah",1425 -2006-09-01,"Utah",1708 -2006-10-01,"Utah",2823 -2006-11-01,"Utah",5126 -2006-12-01,"Utah",8829 -2007-01-01,"Utah",11868 -2007-02-01,"Utah",10560 -2007-03-01,"Utah",7470 -2007-04-01,"Utah",4689 -2007-05-01,"Utah",3237 -2007-06-01,"Utah",2252 -2007-07-01,"Utah",1624 -2007-08-01,"Utah",1407 -2007-09-01,"Utah",1584 -2007-10-01,"Utah",2700 -2007-11-01,"Utah",4865 -2007-12-01,"Utah",8308 -2008-01-01,"Utah",12546 -2008-02-01,"Utah",11678 -2008-03-01,"Utah",8540 -2008-04-01,"Utah",6501 -2008-05-01,"Utah",4455 -2008-06-01,"Utah",2592 -2008-07-01,"Utah",1728 -2008-08-01,"Utah",1521 -2008-09-01,"Utah",1595 -2008-10-01,"Utah",2405 -2008-11-01,"Utah",4645 -2008-12-01,"Utah",7768 -2009-01-01,"Utah",12231 -2009-02-01,"Utah",9463 -2009-03-01,"Utah",7825 -2009-04-01,"Utah",6765 -2009-05-01,"Utah",3822 -2009-06-01,"Utah",2138 -2009-07-01,"Utah",1892 -2009-08-01,"Utah",1558 -2009-09-01,"Utah",1627 -2009-10-01,"Utah",2896 -2009-11-01,"Utah",4803 -2009-12-01,"Utah",10163 -2010-01-01,"Utah",11934 -2010-02-01,"Utah",8322 -2010-03-01,"Utah",7636 -2010-04-01,"Utah",6560 -2010-05-01,"Utah",4119 -2010-06-01,"Utah",2670 -2010-07-01,"Utah",1749 -2010-08-01,"Utah",1469 -2010-09-01,"Utah",1610 -2010-10-01,"Utah",2999 -2010-11-01,"Utah",7592 -2010-12-01,"Utah",9427 -2011-01-01,"Utah",12615 -2011-02-01,"Utah",9389 -2011-03-01,"Utah",6905 -2011-04-01,"Utah",5984 -2011-05-01,"Utah",4033 -2011-06-01,"Utah",3130 -2011-07-01,"Utah",1752 -2011-08-01,"Utah",1493 -2011-09-01,"Utah",1658 -2011-10-01,"Utah",2275 -2011-11-01,"Utah",8186 -2011-12-01,"Utah",12657 -2012-01-01,"Utah",10998 -2012-02-01,"Utah",9006 -2012-03-01,"Utah",5993 -2012-04-01,"Utah",3752 -2012-05-01,"Utah",2822 -2012-06-01,"Utah",2259 -2012-07-01,"Utah",1483 -2012-08-01,"Utah",1773 -2012-09-01,"Utah",1167 -2012-10-01,"Utah",3673 -2012-11-01,"Utah",6231 -2012-12-01,"Utah",10645 -2013-01-01,"Utah",15510 -2013-02-01,"Utah",9654 -2013-03-01,"Utah",6853 -2013-04-01,"Utah",4975 -2013-05-01,"Utah",1957 -2013-06-01,"Utah",1872 -2013-07-01,"Utah",2159 -2013-08-01,"Utah",1437 -2013-09-01,"Utah",1687 -2013-10-01,"Utah",2814 -2013-11-01,"Utah",7222 -2013-12-01,"Utah",14349 -2014-01-01,"Utah",11664 -2014-02-01,"Utah",7635 -2014-03-01,"Utah",7302 -2014-04-01,"Utah",4143 -2014-05-01,"Utah",3941 -2014-06-01,"Utah",2241 -2014-07-01,"Utah",1746 -2014-08-01,"Utah",1298 -2014-09-01,"Utah",1602 -2014-10-01,"Utah",3046 -2014-11-01,"Utah",8191 -2014-12-01,"Utah",9648 -2015-01-01,"Utah",10176 -2015-02-01,"Utah",6449 -2015-03-01,"Utah",5112 -2015-04-01,"Utah",4515 -2015-05-01,"Utah",3129 -2015-06-01,"Utah",1958 -2015-07-01,"Utah",1634 -2015-08-01,"Utah",1555 -2015-09-01,"Utah",1329 -2015-10-01,"Utah",2015 -2015-11-01,"Utah",8345 -2015-12-01,"Utah",12346 -2016-01-01,"Utah",12419 -2016-02-01,"Utah",9030 -2016-03-01,"Utah",6228 -2016-04-01,"Utah",4452 -2016-05-01,"Utah",2994 -2016-06-01,"Utah",1463 -2016-07-01,"Utah",1714 -2016-08-01,"Utah",1366 -2016-09-01,"Utah",1781 -2016-10-01,"Utah",2979 -2016-11-01,"Utah",6363 -2016-12-01,"Utah",13140 -2017-01-01,"Utah",13980 -2017-02-01,"Utah",7427 -2017-03-01,"Utah",5704 -2017-04-01,"Utah",4976 -2017-05-01,"Utah",2890 -2017-06-01,"Utah",2227 -2017-07-01,"Utah",1680 -2017-08-01,"Utah",1471 -2017-09-01,"Utah",1821 -2017-10-01,"Utah",4527 -2017-11-01,"Utah",6973 -2017-12-01,"Utah",13023 -2018-01-01,"Utah",10495 -2018-02-01,"Utah",8393 -2018-03-01,"Utah",9335 -2018-04-01,"Utah",4463 -2018-05-01,"Utah",2311 -2018-06-01,"Utah",2030 -2018-07-01,"Utah",1595 -2018-08-01,"Utah",1553 -2018-09-01,"Utah",1646 -2018-10-01,"Utah",4541 -2018-11-01,"Utah",8907 -2018-12-01,"Utah",12146 -2019-01-01,"Utah",13813 -2019-02-01,"Utah",11743 -2019-03-01,"Utah",9212 -2019-04-01,"Utah",3970 -2019-05-01,"Utah",4707 -2019-06-01,"Utah",2032 -2019-07-01,"Utah",2005 -2019-08-01,"Utah",1552 -2019-09-01,"Utah",1916 -2019-10-01,"Utah",3612 -2019-11-01,"Utah",8205 -2019-12-01,"Utah",13171 -2020-01-01,"Utah",12308 -2020-02-01,"Utah",10782 -2020-03-01,"Utah",6919 -2020-04-01,"Utah",NA -2020-05-01,"Utah",2820 -2020-06-01,"Utah",2865 -2020-07-01,"Utah",2115 -2020-08-01,"Utah",1719 -2020-09-01,"Utah",1896 -2020-10-01,"Utah",2418 -2020-11-01,"Utah",5752 -2020-12-01,"Utah",14162 -2021-01-01,"Utah",12301 -2021-02-01,"Utah",9576 -1989-01-01,"Vermont",353 -1989-02-01,"Vermont",314 -1989-03-01,"Vermont",314 -1989-04-01,"Vermont",227 -1989-05-01,"Vermont",122 -1989-06-01,"Vermont",61 -1989-07-01,"Vermont",40 -1989-08-01,"Vermont",37 -1989-09-01,"Vermont",43 -1989-10-01,"Vermont",97 -1989-11-01,"Vermont",165 -1989-12-01,"Vermont",353 -1990-01-01,"Vermont",402 -1990-02-01,"Vermont",327 -1990-03-01,"Vermont",304 -1990-04-01,"Vermont",219 -1990-05-01,"Vermont",130 -1990-06-01,"Vermont",82 -1990-07-01,"Vermont",43 -1990-08-01,"Vermont",40 -1990-09-01,"Vermont",51 -1990-10-01,"Vermont",95 -1990-11-01,"Vermont",183 -1990-12-01,"Vermont",273 -1991-01-01,"Vermont",381 -1991-02-01,"Vermont",366 -1991-03-01,"Vermont",299 -1991-04-01,"Vermont",225 -1991-05-01,"Vermont",124 -1991-06-01,"Vermont",64 -1991-07-01,"Vermont",46 -1991-08-01,"Vermont",40 -1991-09-01,"Vermont",49 -1991-10-01,"Vermont",110 -1991-11-01,"Vermont",187 -1991-12-01,"Vermont",314 -1992-01-01,"Vermont",431 -1992-02-01,"Vermont",426 -1992-03-01,"Vermont",367 -1992-04-01,"Vermont",284 -1992-05-01,"Vermont",145 -1992-06-01,"Vermont",72 -1992-07-01,"Vermont",53 -1992-08-01,"Vermont",49 -1992-09-01,"Vermont",53 -1992-10-01,"Vermont",129 -1992-11-01,"Vermont",205 -1992-12-01,"Vermont",308 -1993-01-01,"Vermont",412 -1993-02-01,"Vermont",446 -1993-03-01,"Vermont",433 -1993-04-01,"Vermont",271 -1993-05-01,"Vermont",138 -1993-06-01,"Vermont",84 -1993-07-01,"Vermont",50 -1993-08-01,"Vermont",45 -1993-09-01,"Vermont",51 -1993-10-01,"Vermont",127 -1993-11-01,"Vermont",189 -1993-12-01,"Vermont",285 -1994-01-01,"Vermont",478 -1994-02-01,"Vermont",456 -1994-03-01,"Vermont",369 -1994-04-01,"Vermont",261 -1994-05-01,"Vermont",139 -1994-06-01,"Vermont",84 -1994-07-01,"Vermont",48 -1994-08-01,"Vermont",45 -1994-09-01,"Vermont",54 -1994-10-01,"Vermont",93 -1994-11-01,"Vermont",134 -1994-12-01,"Vermont",277 -1995-01-01,"Vermont",352 -1995-02-01,"Vermont",372 -1995-03-01,"Vermont",333 -1995-04-01,"Vermont",266 -1995-05-01,"Vermont",136 -1995-06-01,"Vermont",79 -1995-07-01,"Vermont",49 -1995-08-01,"Vermont",42 -1995-09-01,"Vermont",54 -1995-10-01,"Vermont",86 -1995-11-01,"Vermont",176 -1995-12-01,"Vermont",353 -1996-01-01,"Vermont",467 -1996-02-01,"Vermont",418 -1996-03-01,"Vermont",354 -1996-04-01,"Vermont",268 -1996-05-01,"Vermont",167 -1996-06-01,"Vermont",85 -1996-07-01,"Vermont",51 -1996-08-01,"Vermont",47 -1996-09-01,"Vermont",56 -1996-10-01,"Vermont",100 -1996-11-01,"Vermont",208 -1996-12-01,"Vermont",302 -1997-01-01,"Vermont",419 -1997-02-01,"Vermont",416 -1997-03-01,"Vermont",383 -1997-04-01,"Vermont",283 -1997-05-01,"Vermont",189 -1997-06-01,"Vermont",97 -1997-07-01,"Vermont",57 -1997-08-01,"Vermont",52 -1997-09-01,"Vermont",59 -1997-10-01,"Vermont",118 -1997-11-01,"Vermont",214 -1997-12-01,"Vermont",345 -1998-01-01,"Vermont",427 -1998-02-01,"Vermont",397 -1998-03-01,"Vermont",340 -1998-04-01,"Vermont",266 -1998-05-01,"Vermont",118 -1998-06-01,"Vermont",77 -1998-07-01,"Vermont",56 -1998-08-01,"Vermont",57 -1998-09-01,"Vermont",114 -1998-10-01,"Vermont",102 -1998-11-01,"Vermont",213 -1998-12-01,"Vermont",289 -1999-01-01,"Vermont",493 -1999-02-01,"Vermont",384 -1999-03-01,"Vermont",374 -1999-04-01,"Vermont",282 -1999-05-01,"Vermont",158 -1999-06-01,"Vermont",77 -1999-07-01,"Vermont",56 -1999-08-01,"Vermont",56 -1999-09-01,"Vermont",58 -1999-10-01,"Vermont",123 -1999-11-01,"Vermont",212 -1999-12-01,"Vermont",293 -2000-01-01,"Vermont",465 -2000-02-01,"Vermont",510 -2000-03-01,"Vermont",396 -2000-04-01,"Vermont",268 -2000-05-01,"Vermont",179 -2000-06-01,"Vermont",110 -2000-07-01,"Vermont",70 -2000-08-01,"Vermont",62 -2000-09-01,"Vermont",72 -2000-10-01,"Vermont",124 -2000-11-01,"Vermont",210 -2000-12-01,"Vermont",376 -2001-01-01,"Vermont",544 -2001-02-01,"Vermont",446 -2001-03-01,"Vermont",420 -2001-04-01,"Vermont",316 -2001-05-01,"Vermont",146 -2001-06-01,"Vermont",96 -2001-07-01,"Vermont",65 -2001-08-01,"Vermont",54 -2001-09-01,"Vermont",67 -2001-10-01,"Vermont",91 -2001-11-01,"Vermont",203 -2001-12-01,"Vermont",270 -2002-01-01,"Vermont",419 -2002-02-01,"Vermont",441 -2002-03-01,"Vermont",346 -2002-04-01,"Vermont",312 -2002-05-01,"Vermont",182 -2002-06-01,"Vermont",119 -2002-07-01,"Vermont",64 -2002-08-01,"Vermont",58 -2002-09-01,"Vermont",63 -2002-10-01,"Vermont",98 -2002-11-01,"Vermont",274 -2002-12-01,"Vermont",385 -2003-01-01,"Vermont",504 -2003-02-01,"Vermont",580 -2003-03-01,"Vermont",483 -2003-04-01,"Vermont",332 -2003-05-01,"Vermont",188 -2003-06-01,"Vermont",95 -2003-07-01,"Vermont",65 -2003-08-01,"Vermont",60 -2003-09-01,"Vermont",63 -2003-10-01,"Vermont",119 -2003-11-01,"Vermont",235 -2003-12-01,"Vermont",394 -2004-01-01,"Vermont",539 -2004-02-01,"Vermont",581 -2004-03-01,"Vermont",432 -2004-04-01,"Vermont",331 -2004-05-01,"Vermont",177 -2004-06-01,"Vermont",98 -2004-07-01,"Vermont",68 -2004-08-01,"Vermont",64 -2004-09-01,"Vermont",76 -2004-10-01,"Vermont",110 -2004-11-01,"Vermont",252 -2004-12-01,"Vermont",385 -2005-01-01,"Vermont",541 -2005-02-01,"Vermont",537 -2005-03-01,"Vermont",495 -2005-04-01,"Vermont",302 -2005-05-01,"Vermont",180 -2005-06-01,"Vermont",116 -2005-07-01,"Vermont",64 -2005-08-01,"Vermont",61 -2005-09-01,"Vermont",68 -2005-10-01,"Vermont",98 -2005-11-01,"Vermont",224 -2005-12-01,"Vermont",402 -2006-01-01,"Vermont",480 -2006-02-01,"Vermont",445 -2006-03-01,"Vermont",492 -2006-04-01,"Vermont",288 -2006-05-01,"Vermont",163 -2006-06-01,"Vermont",113 -2006-07-01,"Vermont",70 -2006-08-01,"Vermont",62 -2006-09-01,"Vermont",78 -2006-10-01,"Vermont",122 -2006-11-01,"Vermont",226 -2006-12-01,"Vermont",335 -2007-01-01,"Vermont",438 -2007-02-01,"Vermont",589 -2007-03-01,"Vermont",541 -2007-04-01,"Vermont",367 -2007-05-01,"Vermont",187 -2007-06-01,"Vermont",102 -2007-07-01,"Vermont",77 -2007-08-01,"Vermont",66 -2007-09-01,"Vermont",71 -2007-10-01,"Vermont",94 -2007-11-01,"Vermont",223 -2007-12-01,"Vermont",454 -2008-01-01,"Vermont",487 -2008-02-01,"Vermont",503 -2008-03-01,"Vermont",465 -2008-04-01,"Vermont",365 -2008-05-01,"Vermont",164 -2008-06-01,"Vermont",104 -2008-07-01,"Vermont",72 -2008-08-01,"Vermont",65 -2008-09-01,"Vermont",75 -2008-10-01,"Vermont",119 -2008-11-01,"Vermont",233 -2008-12-01,"Vermont",421 -2009-01-01,"Vermont",604 -2009-02-01,"Vermont",575 -2009-03-01,"Vermont",461 -2009-04-01,"Vermont",326 -2009-05-01,"Vermont",164 -2009-06-01,"Vermont",114 -2009-07-01,"Vermont",80 -2009-08-01,"Vermont",70 -2009-09-01,"Vermont",74 -2009-10-01,"Vermont",140 -2009-11-01,"Vermont",243 -2009-12-01,"Vermont",333 -2010-01-01,"Vermont",538 -2010-02-01,"Vermont",494 -2010-03-01,"Vermont",357 -2010-04-01,"Vermont",270 -2010-05-01,"Vermont",155 -2010-06-01,"Vermont",95 -2010-07-01,"Vermont",73 -2010-08-01,"Vermont",64 -2010-09-01,"Vermont",69 -2010-10-01,"Vermont",173 -2010-11-01,"Vermont",300 -2010-12-01,"Vermont",489 -2011-01-01,"Vermont",596 -2011-02-01,"Vermont",512 -2011-03-01,"Vermont",449 -2011-04-01,"Vermont",368 -2011-05-01,"Vermont",137 -2011-06-01,"Vermont",86 -2011-07-01,"Vermont",70 -2011-08-01,"Vermont",70 -2011-09-01,"Vermont",80 -2011-10-01,"Vermont",151 -2011-11-01,"Vermont",253 -2011-12-01,"Vermont",441 -2012-01-01,"Vermont",578 -2012-02-01,"Vermont",475 -2012-03-01,"Vermont",347 -2012-04-01,"Vermont",258 -2012-05-01,"Vermont",126 -2012-06-01,"Vermont",79 -2012-07-01,"Vermont",70 -2012-08-01,"Vermont",68 -2012-09-01,"Vermont",82 -2012-10-01,"Vermont",149 -2012-11-01,"Vermont",290 -2012-12-01,"Vermont",491 -2013-01-01,"Vermont",608 -2013-02-01,"Vermont",554 -2013-03-01,"Vermont",465 -2013-04-01,"Vermont",285 -2013-05-01,"Vermont",145 -2013-06-01,"Vermont",99 -2013-07-01,"Vermont",81 -2013-08-01,"Vermont",74 -2013-09-01,"Vermont",86 -2013-10-01,"Vermont",143 -2013-11-01,"Vermont",333 -2013-12-01,"Vermont",544 -2014-01-01,"Vermont",706 -2014-02-01,"Vermont",608 -2014-03-01,"Vermont",617 -2014-04-01,"Vermont",354 -2014-05-01,"Vermont",175 -2014-06-01,"Vermont",96 -2014-07-01,"Vermont",82 -2014-08-01,"Vermont",79 -2014-09-01,"Vermont",96 -2014-10-01,"Vermont",158 -2014-11-01,"Vermont",349 -2014-12-01,"Vermont",507 -2015-01-01,"Vermont",725 -2015-02-01,"Vermont",760 -2015-03-01,"Vermont",610 -2015-04-01,"Vermont",367 -2015-05-01,"Vermont",156 -2015-06-01,"Vermont",107 -2015-07-01,"Vermont",89 -2015-08-01,"Vermont",74 -2015-09-01,"Vermont",81 -2015-10-01,"Vermont",168 -2015-11-01,"Vermont",294 -2015-12-01,"Vermont",402 -2016-01-01,"Vermont",598 -2016-02-01,"Vermont",562 -2016-03-01,"Vermont",395 -2016-04-01,"Vermont",362 -2016-05-01,"Vermont",204 -2016-06-01,"Vermont",113 -2016-07-01,"Vermont",93 -2016-08-01,"Vermont",77 -2016-09-01,"Vermont",87 -2016-10-01,"Vermont",149 -2016-11-01,"Vermont",326 -2016-12-01,"Vermont",555 -2017-01-01,"Vermont",556 -2017-02-01,"Vermont",507 -2017-03-01,"Vermont",570 -2017-04-01,"Vermont",311 -2017-05-01,"Vermont",187 -2017-06-01,"Vermont",131 -2017-07-01,"Vermont",82 -2017-08-01,"Vermont",78 -2017-09-01,"Vermont",87 -2017-10-01,"Vermont",111 -2017-11-01,"Vermont",301 -2017-12-01,"Vermont",587 -2018-01-01,"Vermont",773 -2018-02-01,"Vermont",582 -2018-03-01,"Vermont",536 -2018-04-01,"Vermont",439 -2018-05-01,"Vermont",185 -2018-06-01,"Vermont",113 -2018-07-01,"Vermont",83 -2018-08-01,"Vermont",75 -2018-09-01,"Vermont",87 -2018-10-01,"Vermont",182 -2018-11-01,"Vermont",436 -2018-12-01,"Vermont",592 -2019-01-01,"Vermont",758 -2019-02-01,"Vermont",680 -2019-03-01,"Vermont",573 -2019-04-01,"Vermont",383 -2019-05-01,"Vermont",224 -2019-06-01,"Vermont",128 -2019-07-01,"Vermont",82 -2019-08-01,"Vermont",81 -2019-09-01,"Vermont",90 -2019-10-01,"Vermont",140 -2019-11-01,"Vermont",422 -2019-12-01,"Vermont",578 -2020-01-01,"Vermont",624 -2020-02-01,"Vermont",610 -2020-03-01,"Vermont",419 -2020-04-01,"Vermont",368 -2020-05-01,"Vermont",238 -2020-06-01,"Vermont",122 -2020-07-01,"Vermont",85 -2020-08-01,"Vermont",78 -2020-09-01,"Vermont",103 -2020-10-01,"Vermont",149 -2020-11-01,"Vermont",319 -2020-12-01,"Vermont",521 -2021-01-01,"Vermont",651 -2021-02-01,"Vermont",634 -1989-01-01,"Virginia",9913 -1989-02-01,"Virginia",9446 -1989-03-01,"Virginia",9042 -1989-04-01,"Virginia",5421 -1989-05-01,"Virginia",2881 -1989-06-01,"Virginia",1713 -1989-07-01,"Virginia",1479 -1989-08-01,"Virginia",1340 -1989-09-01,"Virginia",1374 -1989-10-01,"Virginia",2831 -1989-11-01,"Virginia",4799 -1989-12-01,"Virginia",11473 -1990-01-01,"Virginia",10632 -1990-02-01,"Virginia",7167 -1990-03-01,"Virginia",6755 -1990-04-01,"Virginia",4591 -1990-05-01,"Virginia",2400 -1990-06-01,"Virginia",1732 -1990-07-01,"Virginia",1391 -1990-08-01,"Virginia",1367 -1990-09-01,"Virginia",1595 -1990-10-01,"Virginia",2086 -1990-11-01,"Virginia",4429 -1990-12-01,"Virginia",7292 -1991-01-01,"Virginia",9653 -1991-02-01,"Virginia",9064 -1991-03-01,"Virginia",7241 -1991-04-01,"Virginia",4516 -1991-05-01,"Virginia",2150 -1991-06-01,"Virginia",1621 -1991-07-01,"Virginia",1400 -1991-08-01,"Virginia",1365 -1991-09-01,"Virginia",1418 -1991-10-01,"Virginia",2516 -1991-11-01,"Virginia",5473 -1991-12-01,"Virginia",7782 -1992-01-01,"Virginia",10805 -1992-02-01,"Virginia",10106 -1992-03-01,"Virginia",7953 -1992-04-01,"Virginia",5884 -1992-05-01,"Virginia",3269 -1992-06-01,"Virginia",1788 -1992-07-01,"Virginia",1495 -1992-08-01,"Virginia",1406 -1992-09-01,"Virginia",1467 -1992-10-01,"Virginia",3307 -1992-11-01,"Virginia",5553 -1992-12-01,"Virginia",9396 -1993-01-01,"Virginia",10835 -1993-02-01,"Virginia",11634 -1993-03-01,"Virginia",10506 -1993-04-01,"Virginia",5868 -1993-05-01,"Virginia",2438 -1993-06-01,"Virginia",1632 -1993-07-01,"Virginia",1442 -1993-08-01,"Virginia",1412 -1993-09-01,"Virginia",1435 -1993-10-01,"Virginia",2695 -1993-11-01,"Virginia",5569 -1993-12-01,"Virginia",10007 -1994-01-01,"Virginia",14437 -1994-02-01,"Virginia",12113 -1994-03-01,"Virginia",9306 -1994-04-01,"Virginia",4487 -1994-05-01,"Virginia",2623 -1994-06-01,"Virginia",1850 -1994-07-01,"Virginia",1380 -1994-08-01,"Virginia",1386 -1994-09-01,"Virginia",1439 -1994-10-01,"Virginia",2880 -1994-11-01,"Virginia",4667 -1994-12-01,"Virginia",8605 -1995-01-01,"Virginia",11505 -1995-02-01,"Virginia",12596 -1995-03-01,"Virginia",8887 -1995-04-01,"Virginia",4876 -1995-05-01,"Virginia",2830 -1995-06-01,"Virginia",1626 -1995-07-01,"Virginia",1494 -1995-08-01,"Virginia",1459 -1995-09-01,"Virginia",1383 -1995-10-01,"Virginia",2245 -1995-11-01,"Virginia",7059 -1995-12-01,"Virginia",12753 -1996-01-01,"Virginia",14643 -1996-02-01,"Virginia",13709 -1996-03-01,"Virginia",11185 -1996-04-01,"Virginia",6501 -1996-05-01,"Virginia",2536 -1996-06-01,"Virginia",2088 -1996-07-01,"Virginia",1502 -1996-08-01,"Virginia",1424 -1996-09-01,"Virginia",1414 -1996-10-01,"Virginia",2879 -1996-11-01,"Virginia",7388 -1996-12-01,"Virginia",10946 -1997-01-01,"Virginia",13047 -1997-02-01,"Virginia",11670 -1997-03-01,"Virginia",9068 -1997-04-01,"Virginia",6622 -1997-05-01,"Virginia",4201 -1997-06-01,"Virginia",2042 -1997-07-01,"Virginia",1589 -1997-08-01,"Virginia",1467 -1997-09-01,"Virginia",1630 -1997-10-01,"Virginia",2989 -1997-11-01,"Virginia",7452 -1997-12-01,"Virginia",12127 -1998-01-01,"Virginia",11615 -1998-02-01,"Virginia",11135 -1998-03-01,"Virginia",9677 -1998-04-01,"Virginia",4741 -1998-05-01,"Virginia",2525 -1998-06-01,"Virginia",1747 -1998-07-01,"Virginia",1435 -1998-08-01,"Virginia",1075 -1998-09-01,"Virginia",1467 -1998-10-01,"Virginia",2499 -1998-11-01,"Virginia",6203 -1998-12-01,"Virginia",9067 -1999-01-01,"Virginia",13127 -1999-02-01,"Virginia",11294 -1999-03-01,"Virginia",11382 -1999-04-01,"Virginia",5129 -1999-05-01,"Virginia",2726 -1999-06-01,"Virginia",1602 -1999-07-01,"Virginia",1521 -1999-08-01,"Virginia",1407 -1999-09-01,"Virginia",1497 -1999-10-01,"Virginia",2943 -1999-11-01,"Virginia",5985 -1999-12-01,"Virginia",10575 -2000-01-01,"Virginia",15108 -2000-02-01,"Virginia",14073 -2000-03-01,"Virginia",8387 -2000-04-01,"Virginia",5521 -2000-05-01,"Virginia",2870 -2000-06-01,"Virginia",1804 -2000-07-01,"Virginia",1573 -2000-08-01,"Virginia",1487 -2000-09-01,"Virginia",1712 -2000-10-01,"Virginia",3287 -2000-11-01,"Virginia",8190 -2000-12-01,"Virginia",15690 -2001-01-01,"Virginia",16837 -2001-02-01,"Virginia",12367 -2001-03-01,"Virginia",10548 -2001-04-01,"Virginia",5566 -2001-05-01,"Virginia",2317 -2001-06-01,"Virginia",1760 -2001-07-01,"Virginia",1497 -2001-08-01,"Virginia",1538 -2001-09-01,"Virginia",1454 -2001-10-01,"Virginia",3088 -2001-11-01,"Virginia",5192 -2001-12-01,"Virginia",8084 -2002-01-01,"Virginia",13376 -2002-02-01,"Virginia",10960 -2002-03-01,"Virginia",9246 -2002-04-01,"Virginia",4284 -2002-05-01,"Virginia",2730 -2002-06-01,"Virginia",1678 -2002-07-01,"Virginia",1489 -2002-08-01,"Virginia",1611 -2002-09-01,"Virginia",1553 -2002-10-01,"Virginia",4235 -2002-11-01,"Virginia",9286 -2002-12-01,"Virginia",15028 -2003-01-01,"Virginia",19009 -2003-02-01,"Virginia",15813 -2003-03-01,"Virginia",9711 -2003-04-01,"Virginia",5958 -2003-05-01,"Virginia",2705 -2003-06-01,"Virginia",1850 -2003-07-01,"Virginia",1570 -2003-08-01,"Virginia",1500 -2003-09-01,"Virginia",1493 -2003-10-01,"Virginia",4164 -2003-11-01,"Virginia",6856 -2003-12-01,"Virginia",14703 -2004-01-01,"Virginia",19556 -2004-02-01,"Virginia",14794 -2004-03-01,"Virginia",9419 -2004-04-01,"Virginia",5721 -2004-05-01,"Virginia",2021 -2004-06-01,"Virginia",1635 -2004-07-01,"Virginia",1414 -2004-08-01,"Virginia",1784 -2004-09-01,"Virginia",1659 -2004-10-01,"Virginia",3485 -2004-11-01,"Virginia",7720 -2004-12-01,"Virginia",13547 -2005-01-01,"Virginia",17045 -2005-02-01,"Virginia",13932 -2005-03-01,"Virginia",12540 -2005-04-01,"Virginia",5010 -2005-05-01,"Virginia",3305 -2005-06-01,"Virginia",1948 -2005-07-01,"Virginia",1555 -2005-08-01,"Virginia",1401 -2005-09-01,"Virginia",1621 -2005-10-01,"Virginia",3617 -2005-11-01,"Virginia",7627 -2005-12-01,"Virginia",15754 -2006-01-01,"Virginia",12364 -2006-02-01,"Virginia",13064 -2006-03-01,"Virginia",10271 -2006-04-01,"Virginia",3785 -2006-05-01,"Virginia",2510 -2006-06-01,"Virginia",1537 -2006-07-01,"Virginia",1594 -2006-08-01,"Virginia",1499 -2006-09-01,"Virginia",1909 -2006-10-01,"Virginia",4454 -2006-11-01,"Virginia",7460 -2006-12-01,"Virginia",11246 -2007-01-01,"Virginia",13833 -2007-02-01,"Virginia",17539 -2007-03-01,"Virginia",9879 -2007-04-01,"Virginia",6179 -2007-05-01,"Virginia",2689 -2007-06-01,"Virginia",2013 -2007-07-01,"Virginia",1567 -2007-08-01,"Virginia",1540 -2007-09-01,"Virginia",1639 -2007-10-01,"Virginia",2545 -2007-11-01,"Virginia",8386 -2007-12-01,"Virginia",13149 -2008-01-01,"Virginia",15770 -2008-02-01,"Virginia",12968 -2008-03-01,"Virginia",9093 -2008-04-01,"Virginia",4904 -2008-05-01,"Virginia",2699 -2008-06-01,"Virginia",1952 -2008-07-01,"Virginia",1573 -2008-08-01,"Virginia",1492 -2008-09-01,"Virginia",1653 -2008-10-01,"Virginia",4295 -2008-11-01,"Virginia",9684 -2008-12-01,"Virginia",13642 -2009-01-01,"Virginia",18886 -2009-02-01,"Virginia",13522 -2009-03-01,"Virginia",11066 -2009-04-01,"Virginia",5009 -2009-05-01,"Virginia",2550 -2009-06-01,"Virginia",1677 -2009-07-01,"Virginia",1631 -2009-08-01,"Virginia",1534 -2009-09-01,"Virginia",1628 -2009-10-01,"Virginia",4052 -2009-11-01,"Virginia",7184 -2009-12-01,"Virginia",15704 -2010-01-01,"Virginia",18930 -2010-02-01,"Virginia",16981 -2010-03-01,"Virginia",9139 -2010-04-01,"Virginia",3514 -2010-05-01,"Virginia",2130 -2010-06-01,"Virginia",1769 -2010-07-01,"Virginia",1591 -2010-08-01,"Virginia",1274 -2010-09-01,"Virginia",1671 -2010-10-01,"Virginia",3194 -2010-11-01,"Virginia",8266 -2010-12-01,"Virginia",19697 -2011-01-01,"Virginia",20344 -2011-02-01,"Virginia",13184 -2011-03-01,"Virginia",10374 -2011-04-01,"Virginia",4704 -2011-05-01,"Virginia",2262 -2011-06-01,"Virginia",1709 -2011-07-01,"Virginia",1415 -2011-08-01,"Virginia",1562 -2011-09-01,"Virginia",1286 -2011-10-01,"Virginia",4143 -2011-11-01,"Virginia",7123 -2011-12-01,"Virginia",11196 -2012-01-01,"Virginia",14061 -2012-02-01,"Virginia",12212 -2012-03-01,"Virginia",4940 -2012-04-01,"Virginia",4192 -2012-05-01,"Virginia",2181 -2012-06-01,"Virginia",1760 -2012-07-01,"Virginia",1431 -2012-08-01,"Virginia",1369 -2012-09-01,"Virginia",1829 -2012-10-01,"Virginia",3929 -2012-11-01,"Virginia",10469 -2012-12-01,"Virginia",12066 -2013-01-01,"Virginia",15302 -2013-02-01,"Virginia",14632 -2013-03-01,"Virginia",13462 -2013-04-01,"Virginia",6358 -2013-05-01,"Virginia",2827 -2013-06-01,"Virginia",2108 -2013-07-01,"Virginia",1440 -2013-08-01,"Virginia",1346 -2013-09-01,"Virginia",1686 -2013-10-01,"Virginia",2995 -2013-11-01,"Virginia",9631 -2013-12-01,"Virginia",13916 -2014-01-01,"Virginia",20627 -2014-02-01,"Virginia",16176 -2014-03-01,"Virginia",14439 -2014-04-01,"Virginia",5389 -2014-05-01,"Virginia",2489 -2014-06-01,"Virginia",1698 -2014-07-01,"Virginia",1488 -2014-08-01,"Virginia",1533 -2014-09-01,"Virginia",1623 -2014-10-01,"Virginia",2843 -2014-11-01,"Virginia",9971 -2014-12-01,"Virginia",14540 -2015-01-01,"Virginia",19331 -2015-02-01,"Virginia",20861 -2015-03-01,"Virginia",13596 -2015-04-01,"Virginia",4750 -2015-05-01,"Virginia",2226 -2015-06-01,"Virginia",1649 -2015-07-01,"Virginia",1526 -2015-08-01,"Virginia",1475 -2015-09-01,"Virginia",1903 -2015-10-01,"Virginia",3540 -2015-11-01,"Virginia",6455 -2015-12-01,"Virginia",8151 -2016-01-01,"Virginia",17158 -2016-02-01,"Virginia",14427 -2016-03-01,"Virginia",8174 -2016-04-01,"Virginia",5420 -2016-05-01,"Virginia",2968 -2016-06-01,"Virginia",2052 -2016-07-01,"Virginia",1429 -2016-08-01,"Virginia",1376 -2016-09-01,"Virginia",1450 -2016-10-01,"Virginia",2883 -2016-11-01,"Virginia",6527 -2016-12-01,"Virginia",13307 -2017-01-01,"Virginia",15380 -2017-02-01,"Virginia",10403 -2017-03-01,"Virginia",11067 -2017-04-01,"Virginia",3795 -2017-05-01,"Virginia",2501 -2017-06-01,"Virginia",1798 -2017-07-01,"Virginia",1658 -2017-08-01,"Virginia",1587 -2017-09-01,"Virginia",1690 -2017-10-01,"Virginia",2857 -2017-11-01,"Virginia",8093 -2017-12-01,"Virginia",16076 -2018-01-01,"Virginia",21489 -2018-02-01,"Virginia",11379 -2018-03-01,"Virginia",13881 -2018-04-01,"Virginia",6767 -2018-05-01,"Virginia",2316 -2018-06-01,"Virginia",1591 -2018-07-01,"Virginia",1705 -2018-08-01,"Virginia",1547 -2018-09-01,"Virginia",1666 -2018-10-01,"Virginia",3464 -2018-11-01,"Virginia",8890 -2018-12-01,"Virginia",14342 -2019-01-01,"Virginia",18500 -2019-02-01,"Virginia",14417 -2019-03-01,"Virginia",11686 -2019-04-01,"Virginia",4451 -2019-05-01,"Virginia",1926 -2019-06-01,"Virginia",1813 -2019-07-01,"Virginia",1475 -2019-08-01,"Virginia",1486 -2019-09-01,"Virginia",1502 -2019-10-01,"Virginia",2260 -2019-11-01,"Virginia",8690 -2019-12-01,"Virginia",13627 -2020-01-01,"Virginia",14028 -2020-02-01,"Virginia",11519 -2020-03-01,"Virginia",7297 -2020-04-01,"Virginia",4927 -2020-05-01,"Virginia",NA -2020-06-01,"Virginia",1945 -2020-07-01,"Virginia",1744 -2020-08-01,"Virginia",1592 -2020-09-01,"Virginia",1782 -2020-10-01,"Virginia",3175 -2020-11-01,"Virginia",5991 -2020-12-01,"Virginia",14520 -2021-01-01,"Virginia",16962 -2021-02-01,"Virginia",14277 -1989-01-01,"Washington",6051 -1989-02-01,"Washington",6660 -1989-03-01,"Washington",5730 -1989-04-01,"Washington",3625 -1989-05-01,"Washington",1822 -1989-06-01,"Washington",1501 -1989-07-01,"Washington",1002 -1989-08-01,"Washington",801 -1989-09-01,"Washington",969 -1989-10-01,"Washington",1622 -1989-11-01,"Washington",3484 -1989-12-01,"Washington",5091 -1990-01-01,"Washington",5949 -1990-02-01,"Washington",6383 -1990-03-01,"Washington",5338 -1990-04-01,"Washington",3315 -1990-05-01,"Washington",2575 -1990-06-01,"Washington",1945 -1990-07-01,"Washington",1050 -1990-08-01,"Washington",795 -1990-09-01,"Washington",941 -1990-10-01,"Washington",1966 -1990-11-01,"Washington",3946 -1990-12-01,"Washington",6144 -1991-01-01,"Washington",8514 -1991-02-01,"Washington",6250 -1991-03-01,"Washington",5558 -1991-04-01,"Washington",4714 -1991-05-01,"Washington",3090 -1991-06-01,"Washington",2292 -1991-07-01,"Washington",1292 -1991-08-01,"Washington",952 -1991-09-01,"Washington",1105 -1991-10-01,"Washington",1716 -1991-11-01,"Washington",4403 -1991-12-01,"Washington",6336 -1992-01-01,"Washington",7286 -1992-02-01,"Washington",5966 -1992-03-01,"Washington",4719 -1992-04-01,"Washington",3736 -1992-05-01,"Washington",2377 -1992-06-01,"Washington",1384 -1992-07-01,"Washington",910 -1992-08-01,"Washington",956 -1992-09-01,"Washington",1310 -1992-10-01,"Washington",2236 -1992-11-01,"Washington",4236 -1992-12-01,"Washington",7930 -1993-01-01,"Washington",9680 -1993-02-01,"Washington",7331 -1993-03-01,"Washington",6669 -1993-04-01,"Washington",4665 -1993-05-01,"Washington",3123 -1993-06-01,"Washington",2619 -1993-07-01,"Washington",1424 -1993-08-01,"Washington",1243 -1993-09-01,"Washington",1376 -1993-10-01,"Washington",2169 -1993-11-01,"Washington",4650 -1993-12-01,"Washington",8309 -1994-01-01,"Washington",7905 -1994-02-01,"Washington",7815 -1994-03-01,"Washington",6670 -1994-04-01,"Washington",4519 -1994-05-01,"Washington",2648 -1994-06-01,"Washington",1960 -1994-07-01,"Washington",1460 -1994-08-01,"Washington",1040 -1994-09-01,"Washington",1263 -1994-10-01,"Washington",2558 -1994-11-01,"Washington",6171 -1994-12-01,"Washington",9135 -1995-01-01,"Washington",9018 -1995-02-01,"Washington",7028 -1995-03-01,"Washington",6878 -1995-04-01,"Washington",5064 -1995-05-01,"Washington",3088 -1995-06-01,"Washington",1926 -1995-07-01,"Washington",1361 -1995-08-01,"Washington",1251 -1995-09-01,"Washington",1411 -1995-10-01,"Washington",2444 -1995-11-01,"Washington",5683 -1995-12-01,"Washington",7611 -1996-01-01,"Washington",9011 -1996-02-01,"Washington",10162 -1996-03-01,"Washington",7642 -1996-04-01,"Washington",5418 -1996-05-01,"Washington",4456 -1996-06-01,"Washington",2610 -1996-07-01,"Washington",1628 -1996-08-01,"Washington",1250 -1996-09-01,"Washington",1572 -1996-10-01,"Washington",2930 -1996-11-01,"Washington",6207 -1996-12-01,"Washington",9804 -1997-01-01,"Washington",8735 -1997-02-01,"Washington",7525 -1997-03-01,"Washington",6526 -1997-04-01,"Washington",3680 -1997-05-01,"Washington",4487 -1997-06-01,"Washington",2451 -1997-07-01,"Washington",1995 -1997-08-01,"Washington",1791 -1997-09-01,"Washington",2002 -1997-10-01,"Washington",3623 -1997-11-01,"Washington",7594 -1997-12-01,"Washington",11405 -1998-01-01,"Washington",11762 -1998-02-01,"Washington",9711 -1998-03-01,"Washington",8950 -1998-04-01,"Washington",5827 -1998-05-01,"Washington",3221 -1998-06-01,"Washington",2312 -1998-07-01,"Washington",1765 -1998-08-01,"Washington",1574 -1998-09-01,"Washington",1667 -1998-10-01,"Washington",2427 -1998-11-01,"Washington",4731 -1998-12-01,"Washington",7989 -1999-01-01,"Washington",12151 -1999-02-01,"Washington",9992 -1999-03-01,"Washington",8964 -1999-04-01,"Washington",6858 -1999-05-01,"Washington",4654 -1999-06-01,"Washington",3059 -1999-07-01,"Washington",1958 -1999-08-01,"Washington",1750 -1999-09-01,"Washington",1953 -1999-10-01,"Washington",4024 -1999-11-01,"Washington",6596 -1999-12-01,"Washington",9745 -2000-01-01,"Washington",11393 -2000-02-01,"Washington",10369 -2000-03-01,"Washington",9196 -2000-04-01,"Washington",6568 -2000-05-01,"Washington",4583 -2000-06-01,"Washington",3119 -2000-07-01,"Washington",1997 -2000-08-01,"Washington",1614 -2000-09-01,"Washington",2023 -2000-10-01,"Washington",3234 -2000-11-01,"Washington",6796 -2000-12-01,"Washington",10887 -2001-01-01,"Washington",11086 -2001-02-01,"Washington",10982 -2001-03-01,"Washington",8884 -2001-04-01,"Washington",7279 -2001-05-01,"Washington",4900 -2001-06-01,"Washington",3025 -2001-07-01,"Washington",2008 -2001-08-01,"Washington",1656 -2001-09-01,"Washington",1780 -2001-10-01,"Washington",5692 -2001-11-01,"Washington",11145 -2001-12-01,"Washington",15980 -2002-01-01,"Washington",10931 -2002-02-01,"Washington",11228 -2002-03-01,"Washington",10270 -2002-04-01,"Washington",7880 -2002-05-01,"Washington",5536 -2002-06-01,"Washington",3025 -2002-07-01,"Washington",1881 -2002-08-01,"Washington",1587 -2002-09-01,"Washington",1784 -2002-10-01,"Washington",3158 -2002-11-01,"Washington",6861 -2002-12-01,"Washington",9204 -2003-01-01,"Washington",10368 -2003-02-01,"Washington",9580 -2003-03-01,"Washington",9371 -2003-04-01,"Washington",7061 -2003-05-01,"Washington",5102 -2003-06-01,"Washington",2919 -2003-07-01,"Washington",1899 -2003-08-01,"Washington",1546 -2003-09-01,"Washington",1838 -2003-10-01,"Washington",2903 -2003-11-01,"Washington",7581 -2003-12-01,"Washington",10942 -2004-01-01,"Washington",13304 -2004-02-01,"Washington",10362 -2004-03-01,"Washington",8373 -2004-04-01,"Washington",5626 -2004-05-01,"Washington",3552 -2004-06-01,"Washington",2842 -2004-07-01,"Washington",1860 -2004-08-01,"Washington",1598 -2004-09-01,"Washington",2024 -2004-10-01,"Washington",3494 -2004-11-01,"Washington",7531 -2004-12-01,"Washington",10366 -2005-01-01,"Washington",12508 -2005-02-01,"Washington",9921 -2005-03-01,"Washington",8268 -2005-04-01,"Washington",7088 -2005-05-01,"Washington",3692 -2005-06-01,"Washington",2879 -2005-07-01,"Washington",2015 -2005-08-01,"Washington",1683 -2005-09-01,"Washington",2063 -2005-10-01,"Washington",3631 -2005-11-01,"Washington",7456 -2005-12-01,"Washington",12420 -2006-01-01,"Washington",10414 -2006-02-01,"Washington",11287 -2006-03-01,"Washington",10365 -2006-04-01,"Washington",6762 -2006-05-01,"Washington",4308 -2006-06-01,"Washington",2647 -2006-07-01,"Washington",1887 -2006-08-01,"Washington",1721 -2006-09-01,"Washington",2136 -2006-10-01,"Washington",3880 -2006-11-01,"Washington",8040 -2006-12-01,"Washington",12044 -2007-01-01,"Washington",13609 -2007-02-01,"Washington",11561 -2007-03-01,"Washington",9168 -2007-04-01,"Washington",6770 -2007-05-01,"Washington",4683 -2007-06-01,"Washington",2925 -2007-07-01,"Washington",2029 -2007-08-01,"Washington",1850 -2007-09-01,"Washington",2218 -2007-10-01,"Washington",4726 -2007-11-01,"Washington",8341 -2007-12-01,"Washington",12273 -2008-01-01,"Washington",13347 -2008-02-01,"Washington",12931 -2008-03-01,"Washington",9964 -2008-04-01,"Washington",9030 -2008-05-01,"Washington",5940 -2008-06-01,"Washington",3789 -2008-07-01,"Washington",2357 -2008-08-01,"Washington",1970 -2008-09-01,"Washington",2232 -2008-10-01,"Washington",4209 -2008-11-01,"Washington",7086 -2008-12-01,"Washington",11653 -2009-01-01,"Washington",14455 -2009-02-01,"Washington",12274 -2009-03-01,"Washington",11195 -2009-04-01,"Washington",8018 -2009-05-01,"Washington",4895 -2009-06-01,"Washington",2608 -2009-07-01,"Washington",1934 -2009-08-01,"Washington",1717 -2009-09-01,"Washington",2006 -2009-10-01,"Washington",4351 -2009-11-01,"Washington",7793 -2009-12-01,"Washington",12897 -2010-01-01,"Washington",11018 -2010-02-01,"Washington",8686 -2010-03-01,"Washington",7948 -2010-04-01,"Washington",6868 -2010-05-01,"Washington",4974 -2010-06-01,"Washington",3388 -2010-07-01,"Washington",2180 -2010-08-01,"Washington",1927 -2010-09-01,"Washington",2006 -2010-10-01,"Washington",4898 -2010-11-01,"Washington",10024 -2010-12-01,"Washington",11637 -2011-01-01,"Washington",12605 -2011-02-01,"Washington",11649 -2011-03-01,"Washington",9926 -2011-04-01,"Washington",8128 -2011-05-01,"Washington",4993 -2011-06-01,"Washington",2792 -2011-07-01,"Washington",2063 -2011-08-01,"Washington",1985 -2011-09-01,"Washington",2014 -2011-10-01,"Washington",5410 -2011-11-01,"Washington",10715 -2011-12-01,"Washington",13113 -2012-01-01,"Washington",12997 -2012-02-01,"Washington",11257 -2012-03-01,"Washington",10663 -2012-04-01,"Washington",5779 -2012-05-01,"Washington",4010 -2012-06-01,"Washington",2979 -2012-07-01,"Washington",2045 -2012-08-01,"Washington",1933 -2012-09-01,"Washington",2181 -2012-10-01,"Washington",5175 -2012-11-01,"Washington",8711 -2012-12-01,"Washington",12161 -2013-01-01,"Washington",14568 -2013-02-01,"Washington",10267 -2013-03-01,"Washington",9142 -2013-04-01,"Washington",6638 -2013-05-01,"Washington",3713 -2013-06-01,"Washington",2404 -2013-07-01,"Washington",1728 -2013-08-01,"Washington",1912 -2013-09-01,"Washington",2209 -2013-10-01,"Washington",6588 -2013-11-01,"Washington",9774 -2013-12-01,"Washington",14423 -2014-01-01,"Washington",12903 -2014-02-01,"Washington",12665 -2014-03-01,"Washington",8911 -2014-04-01,"Washington",5843 -2014-05-01,"Washington",3390 -2014-06-01,"Washington",2360 -2014-07-01,"Washington",1916 -2014-08-01,"Washington",1722 -2014-09-01,"Washington",2089 -2014-10-01,"Washington",3689 -2014-11-01,"Washington",11480 -2014-12-01,"Washington",11782 -2015-01-01,"Washington",11781 -2015-02-01,"Washington",8079 -2015-03-01,"Washington",7225 -2015-04-01,"Washington",5971 -2015-05-01,"Washington",3103 -2015-06-01,"Washington",1914 -2015-07-01,"Washington",1700 -2015-08-01,"Washington",1637 -2015-09-01,"Washington",2613 -2015-10-01,"Washington",4199 -2015-11-01,"Washington",11216 -2015-12-01,"Washington",12469 -2016-01-01,"Washington",12921 -2016-02-01,"Washington",9272 -2016-03-01,"Washington",8903 -2016-04-01,"Washington",4151 -2016-05-01,"Washington",3170 -2016-06-01,"Washington",2300 -2016-07-01,"Washington",1855 -2016-08-01,"Washington",1776 -2016-09-01,"Washington",2551 -2016-10-01,"Washington",5551 -2016-11-01,"Washington",7845 -2016-12-01,"Washington",16027 -2017-01-01,"Washington",16845 -2017-02-01,"Washington",12452 -2017-03-01,"Washington",10426 -2017-04-01,"Washington",7033 -2017-05-01,"Washington",4046 -2017-06-01,"Washington",2226 -2017-07-01,"Washington",1802 -2017-08-01,"Washington",1749 -2017-09-01,"Washington",2441 -2017-10-01,"Washington",6464 -2017-11-01,"Washington",10582 -2017-12-01,"Washington",14960 -2018-01-01,"Washington",12237 -2018-02-01,"Washington",12079 -2018-03-01,"Washington",11113 -2018-04-01,"Washington",7325 -2018-05-01,"Washington",2831 -2018-06-01,"Washington",2449 -2018-07-01,"Washington",2010 -2018-08-01,"Washington",1585 -2018-09-01,"Washington",2610 -2018-10-01,"Washington",6120 -2018-11-01,"Washington",10052 -2018-12-01,"Washington",13155 -2019-01-01,"Washington",13304 -2019-02-01,"Washington",15673 -2019-03-01,"Washington",10491 -2019-04-01,"Washington",6195 -2019-05-01,"Washington",3194 -2019-06-01,"Washington",2415 -2019-07-01,"Washington",1974 -2019-08-01,"Washington",1704 -2019-09-01,"Washington",2622 -2019-10-01,"Washington",8230 -2019-11-01,"Washington",11277 -2019-12-01,"Washington",12890 -2020-01-01,"Washington",13006 -2020-02-01,"Washington",10967 -2020-03-01,"Washington",NA -2020-04-01,"Washington",6508 -2020-05-01,"Washington",3901 -2020-06-01,"Washington",2786 -2020-07-01,"Washington",2345 -2020-08-01,"Washington",1994 -2020-09-01,"Washington",2303 -2020-10-01,"Washington",6446 -2020-11-01,"Washington",11118 -2020-12-01,"Washington",12924 -2021-01-01,"Washington",NA -2021-02-01,"Washington",13322 -1989-01-01,"West Virginia",5838 -1989-02-01,"West Virginia",5621 -1989-03-01,"West Virginia",5179 -1989-04-01,"West Virginia",3608 -1989-05-01,"West Virginia",2263 -1989-06-01,"West Virginia",1001 -1989-07-01,"West Virginia",741 -1989-08-01,"West Virginia",695 -1989-09-01,"West Virginia",824 -1989-10-01,"West Virginia",1738 -1989-11-01,"West Virginia",3240 -1989-12-01,"West Virginia",6382 -1990-01-01,"West Virginia",6858 -1990-02-01,"West Virginia",4690 -1990-03-01,"West Virginia",4174 -1990-04-01,"West Virginia",3403 -1990-05-01,"West Virginia",1747 -1990-06-01,"West Virginia",1055 -1990-07-01,"West Virginia",724 -1990-08-01,"West Virginia",696 -1990-09-01,"West Virginia",800 -1990-10-01,"West Virginia",1353 -1990-11-01,"West Virginia",3031 -1990-12-01,"West Virginia",4069 -1991-01-01,"West Virginia",5561 -1991-02-01,"West Virginia",5527 -1991-03-01,"West Virginia",4858 -1991-04-01,"West Virginia",2876 -1991-05-01,"West Virginia",1372 -1991-06-01,"West Virginia",707 -1991-07-01,"West Virginia",629 -1991-08-01,"West Virginia",622 -1991-09-01,"West Virginia",765 -1991-10-01,"West Virginia",1738 -1991-11-01,"West Virginia",3210 -1991-12-01,"West Virginia",4722 -1992-01-01,"West Virginia",6183 -1992-02-01,"West Virginia",6231 -1992-03-01,"West Virginia",4328 -1992-04-01,"West Virginia",4038 -1992-05-01,"West Virginia",2076 -1992-06-01,"West Virginia",1105 -1992-07-01,"West Virginia",683 -1992-08-01,"West Virginia",661 -1992-09-01,"West Virginia",819 -1992-10-01,"West Virginia",1899 -1992-11-01,"West Virginia",3120 -1992-12-01,"West Virginia",4146 -1993-01-01,"West Virginia",5220 -1993-02-01,"West Virginia",5960 -1993-03-01,"West Virginia",5767 -1993-04-01,"West Virginia",3560 -1993-05-01,"West Virginia",1608 -1993-06-01,"West Virginia",962 -1993-07-01,"West Virginia",533 -1993-08-01,"West Virginia",620 -1993-09-01,"West Virginia",740 -1993-10-01,"West Virginia",1818 -1993-11-01,"West Virginia",3347 -1993-12-01,"West Virginia",5072 -1994-01-01,"West Virginia",7397 -1994-02-01,"West Virginia",6344 -1994-03-01,"West Virginia",5136 -1994-04-01,"West Virginia",3281 -1994-05-01,"West Virginia",1841 -1994-06-01,"West Virginia",926 -1994-07-01,"West Virginia",541 -1994-08-01,"West Virginia",625 -1994-09-01,"West Virginia",789 -1994-10-01,"West Virginia",1511 -1994-11-01,"West Virginia",2462 -1994-12-01,"West Virginia",4348 -1995-01-01,"West Virginia",5783 -1995-02-01,"West Virginia",6546 -1995-03-01,"West Virginia",4592 -1995-04-01,"West Virginia",3173 -1995-05-01,"West Virginia",1776 -1995-06-01,"West Virginia",702 -1995-07-01,"West Virginia",574 -1995-08-01,"West Virginia",560 -1995-09-01,"West Virginia",740 -1995-10-01,"West Virginia",1441 -1995-11-01,"West Virginia",3626 -1995-12-01,"West Virginia",5867 -1996-01-01,"West Virginia",6958 -1996-02-01,"West Virginia",6602 -1996-03-01,"West Virginia",5495 -1996-04-01,"West Virginia",3877 -1996-05-01,"West Virginia",1652 -1996-06-01,"West Virginia",817 -1996-07-01,"West Virginia",590 -1996-08-01,"West Virginia",537 -1996-09-01,"West Virginia",696 -1996-10-01,"West Virginia",1609 -1996-11-01,"West Virginia",3391 -1996-12-01,"West Virginia",5166 -1997-01-01,"West Virginia",5908 -1997-02-01,"West Virginia",5572 -1997-03-01,"West Virginia",4273 -1997-04-01,"West Virginia",3386 -1997-05-01,"West Virginia",2223 -1997-06-01,"West Virginia",952 -1997-07-01,"West Virginia",492 -1997-08-01,"West Virginia",598 -1997-09-01,"West Virginia",776 -1997-10-01,"West Virginia",1737 -1997-11-01,"West Virginia",4061 -1997-12-01,"West Virginia",6017 -1998-01-01,"West Virginia",5676 -1998-02-01,"West Virginia",4894 -1998-03-01,"West Virginia",4540 -1998-04-01,"West Virginia",2879 -1998-05-01,"West Virginia",1278 -1998-06-01,"West Virginia",670 -1998-07-01,"West Virginia",513 -1998-08-01,"West Virginia",526 -1998-09-01,"West Virginia",623 -1998-10-01,"West Virginia",1300 -1998-11-01,"West Virginia",2791 -1998-12-01,"West Virginia",3974 -1999-01-01,"West Virginia",6202 -1999-02-01,"West Virginia",4957 -1999-03-01,"West Virginia",5443 -1999-04-01,"West Virginia",2957 -1999-05-01,"West Virginia",1398 -1999-06-01,"West Virginia",657 -1999-07-01,"West Virginia",527 -1999-08-01,"West Virginia",505 -1999-09-01,"West Virginia",681 -1999-10-01,"West Virginia",1339 -1999-11-01,"West Virginia",2541 -1999-12-01,"West Virginia",4195 -2000-01-01,"West Virginia",5832 -2000-02-01,"West Virginia",6279 -2000-03-01,"West Virginia",3818 -2000-04-01,"West Virginia",2491 -2000-05-01,"West Virginia",1898 -2000-06-01,"West Virginia",747 -2000-07-01,"West Virginia",520 -2000-08-01,"West Virginia",535 -2000-09-01,"West Virginia",599 -2000-10-01,"West Virginia",1372 -2000-11-01,"West Virginia",2177 -2000-12-01,"West Virginia",5331 -2001-01-01,"West Virginia",6696 -2001-02-01,"West Virginia",5275 -2001-03-01,"West Virginia",4997 -2001-04-01,"West Virginia",3394 -2001-05-01,"West Virginia",963 -2001-06-01,"West Virginia",442 -2001-07-01,"West Virginia",386 -2001-08-01,"West Virginia",448 -2001-09-01,"West Virginia",752 -2001-10-01,"West Virginia",1527 -2001-11-01,"West Virginia",3089 -2001-12-01,"West Virginia",3970 -2002-01-01,"West Virginia",4915 -2002-02-01,"West Virginia",4814 -2002-03-01,"West Virginia",4528 -2002-04-01,"West Virginia",2641 -2002-05-01,"West Virginia",1609 -2002-06-01,"West Virginia",533 -2002-07-01,"West Virginia",537 -2002-08-01,"West Virginia",448 -2002-09-01,"West Virginia",549 -2002-10-01,"West Virginia",1556 -2002-11-01,"West Virginia",3357 -2002-12-01,"West Virginia",5306 -2003-01-01,"West Virginia",6785 -2003-02-01,"West Virginia",6223 -2003-03-01,"West Virginia",4385 -2003-04-01,"West Virginia",2285 -2003-05-01,"West Virginia",1171 -2003-06-01,"West Virginia",600 -2003-07-01,"West Virginia",477 -2003-08-01,"West Virginia",443 -2003-09-01,"West Virginia",680 -2003-10-01,"West Virginia",1816 -2003-11-01,"West Virginia",2379 -2003-12-01,"West Virginia",4964 -2004-01-01,"West Virginia",6178 -2004-02-01,"West Virginia",6569 -2004-03-01,"West Virginia",4455 -2004-04-01,"West Virginia",2958 -2004-05-01,"West Virginia",1262 -2004-06-01,"West Virginia",484 -2004-07-01,"West Virginia",486 -2004-08-01,"West Virginia",449 -2004-09-01,"West Virginia",491 -2004-10-01,"West Virginia",1065 -2004-11-01,"West Virginia",1959 -2004-12-01,"West Virginia",3974 -2005-01-01,"West Virginia",5162 -2005-02-01,"West Virginia",5469 -2005-03-01,"West Virginia",5157 -2005-04-01,"West Virginia",2534 -2005-05-01,"West Virginia",1660 -2005-06-01,"West Virginia",636 -2005-07-01,"West Virginia",399 -2005-08-01,"West Virginia",396 -2005-09-01,"West Virginia",419 -2005-10-01,"West Virginia",756 -2005-11-01,"West Virginia",2339 -2005-12-01,"West Virginia",4868 -2006-01-01,"West Virginia",4679 -2006-02-01,"West Virginia",4570 -2006-03-01,"West Virginia",4193 -2006-04-01,"West Virginia",2280 -2006-05-01,"West Virginia",1145 -2006-06-01,"West Virginia",618 -2006-07-01,"West Virginia",355 -2006-08-01,"West Virginia",365 -2006-09-01,"West Virginia",500 -2006-10-01,"West Virginia",1159 -2006-11-01,"West Virginia",2623 -2006-12-01,"West Virginia",3597 -2007-01-01,"West Virginia",4242 -2007-02-01,"West Virginia",5694 -2007-03-01,"West Virginia",4898 -2007-04-01,"West Virginia",2305 -2007-05-01,"West Virginia",736 -2007-06-01,"West Virginia",355 -2007-07-01,"West Virginia",363 -2007-08-01,"West Virginia",331 -2007-09-01,"West Virginia",343 -2007-10-01,"West Virginia",889 -2007-11-01,"West Virginia",2568 -2007-12-01,"West Virginia",3806 -2008-01-01,"West Virginia",5137 -2008-02-01,"West Virginia",4779 -2008-03-01,"West Virginia",3983 -2008-04-01,"West Virginia",1765 -2008-05-01,"West Virginia",993 -2008-06-01,"West Virginia",425 -2008-07-01,"West Virginia",364 -2008-08-01,"West Virginia",369 -2008-09-01,"West Virginia",440 -2008-10-01,"West Virginia",1519 -2008-11-01,"West Virginia",3186 -2008-12-01,"West Virginia",4557 -2009-01-01,"West Virginia",5706 -2009-02-01,"West Virginia",4672 -2009-03-01,"West Virginia",3336 -2009-04-01,"West Virginia",1937 -2009-05-01,"West Virginia",755 -2009-06-01,"West Virginia",340 -2009-07-01,"West Virginia",370 -2009-08-01,"West Virginia",348 -2009-09-01,"West Virginia",503 -2009-10-01,"West Virginia",1636 -2009-11-01,"West Virginia",2128 -2009-12-01,"West Virginia",4442 -2010-01-01,"West Virginia",5549 -2010-02-01,"West Virginia",5003 -2010-03-01,"West Virginia",2971 -2010-04-01,"West Virginia",1496 -2010-05-01,"West Virginia",807 -2010-06-01,"West Virginia",399 -2010-07-01,"West Virginia",350 -2010-08-01,"West Virginia",387 -2010-09-01,"West Virginia",436 -2010-10-01,"West Virginia",1239 -2010-11-01,"West Virginia",2796 -2010-12-01,"West Virginia",5587 -2011-01-01,"West Virginia",5695 -2011-02-01,"West Virginia",4049 -2011-03-01,"West Virginia",3538 -2011-04-01,"West Virginia",1740 -2011-05-01,"West Virginia",801 -2011-06-01,"West Virginia",523 -2011-07-01,"West Virginia",363 -2011-08-01,"West Virginia",333 -2011-09-01,"West Virginia",462 -2011-10-01,"West Virginia",1374 -2011-11-01,"West Virginia",2362 -2011-12-01,"West Virginia",3832 -2012-01-01,"West Virginia",4430 -2012-02-01,"West Virginia",4096 -2012-03-01,"West Virginia",1961 -2012-04-01,"West Virginia",1907 -2012-05-01,"West Virginia",458 -2012-06-01,"West Virginia",327 -2012-07-01,"West Virginia",233 -2012-08-01,"West Virginia",379 -2012-09-01,"West Virginia",631 -2012-10-01,"West Virginia",1363 -2012-11-01,"West Virginia",3300 -2012-12-01,"West Virginia",3454 -2013-01-01,"West Virginia",4530 -2013-02-01,"West Virginia",4486 -2013-03-01,"West Virginia",4560 -2013-04-01,"West Virginia",1982 -2013-05-01,"West Virginia",824 -2013-06-01,"West Virginia",467 -2013-07-01,"West Virginia",331 -2013-08-01,"West Virginia",362 -2013-09-01,"West Virginia",549 -2013-10-01,"West Virginia",1356 -2013-11-01,"West Virginia",3198 -2013-12-01,"West Virginia",3870 -2014-01-01,"West Virginia",5909 -2014-02-01,"West Virginia",4950 -2014-03-01,"West Virginia",4484 -2014-04-01,"West Virginia",1972 -2014-05-01,"West Virginia",913 -2014-06-01,"West Virginia",466 -2014-07-01,"West Virginia",360 -2014-08-01,"West Virginia",360 -2014-09-01,"West Virginia",517 -2014-10-01,"West Virginia",1147 -2014-11-01,"West Virginia",3249 -2014-12-01,"West Virginia",3929 -2015-01-01,"West Virginia",5121 -2015-02-01,"West Virginia",5640 -2015-03-01,"West Virginia",4563 -2015-04-01,"West Virginia",1631 -2015-05-01,"West Virginia",668 -2015-06-01,"West Virginia",416 -2015-07-01,"West Virginia",243 -2015-08-01,"West Virginia",337 -2015-09-01,"West Virginia",385 -2015-10-01,"West Virginia",1235 -2015-11-01,"West Virginia",2120 -2015-12-01,"West Virginia",2449 -2016-01-01,"West Virginia",5275 -2016-02-01,"West Virginia",4160 -2016-03-01,"West Virginia",2617 -2016-04-01,"West Virginia",1784 -2016-05-01,"West Virginia",726 -2016-06-01,"West Virginia",371 -2016-07-01,"West Virginia",363 -2016-08-01,"West Virginia",323 -2016-09-01,"West Virginia",360 -2016-10-01,"West Virginia",884 -2016-11-01,"West Virginia",2265 -2016-12-01,"West Virginia",4083 -2017-01-01,"West Virginia",4081 -2017-02-01,"West Virginia",3118 -2017-03-01,"West Virginia",3489 -2017-04-01,"West Virginia",1372 -2017-05-01,"West Virginia",758 -2017-06-01,"West Virginia",325 -2017-07-01,"West Virginia",356 -2017-08-01,"West Virginia",304 -2017-09-01,"West Virginia",485 -2017-10-01,"West Virginia",1014 -2017-11-01,"West Virginia",2610 -2017-12-01,"West Virginia",4473 -2018-01-01,"West Virginia",5522 -2018-02-01,"West Virginia",3644 -2018-03-01,"West Virginia",4242 -2018-04-01,"West Virginia",2439 -2018-05-01,"West Virginia",592 -2018-06-01,"West Virginia",385 -2018-07-01,"West Virginia",330 -2018-08-01,"West Virginia",297 -2018-09-01,"West Virginia",348 -2018-10-01,"West Virginia",1311 -2018-11-01,"West Virginia",3135 -2018-12-01,"West Virginia",4011 -2019-01-01,"West Virginia",5017 -2019-02-01,"West Virginia",3677 -2019-03-01,"West Virginia",3842 -2019-04-01,"West Virginia",1355 -2019-05-01,"West Virginia",654 -2019-06-01,"West Virginia",314 -2019-07-01,"West Virginia",331 -2019-08-01,"West Virginia",343 -2019-09-01,"West Virginia",297 -2019-10-01,"West Virginia",1089 -2019-11-01,"West Virginia",3172 -2019-12-01,"West Virginia",3758 -2020-01-01,"West Virginia",4223 -2020-02-01,"West Virginia",3987 -2020-03-01,"West Virginia",2660 -2020-04-01,"West Virginia",1931 -2020-05-01,"West Virginia",940 -2020-06-01,"West Virginia",669 -2020-07-01,"West Virginia",322 -2020-08-01,"West Virginia",315 -2020-09-01,"West Virginia",500 -2020-10-01,"West Virginia",1072 -2020-11-01,"West Virginia",2085 -2020-12-01,"West Virginia",3904 -2021-01-01,"West Virginia",4954 -2021-02-01,"West Virginia",4689 -1989-01-01,"Wisconsin",19372 -1989-02-01,"Wisconsin",19607 -1989-03-01,"Wisconsin",18950 -1989-04-01,"Wisconsin",12003 -1989-05-01,"Wisconsin",7875 -1989-06-01,"Wisconsin",3777 -1989-07-01,"Wisconsin",2736 -1989-08-01,"Wisconsin",2220 -1989-09-01,"Wisconsin",3173 -1989-10-01,"Wisconsin",6052 -1989-11-01,"Wisconsin",10581 -1989-12-01,"Wisconsin",20661 -1990-01-01,"Wisconsin",19353 -1990-02-01,"Wisconsin",17314 -1990-03-01,"Wisconsin",14811 -1990-04-01,"Wisconsin",10034 -1990-05-01,"Wisconsin",6598 -1990-06-01,"Wisconsin",3564 -1990-07-01,"Wisconsin",2344 -1990-08-01,"Wisconsin",2475 -1990-09-01,"Wisconsin",3081 -1990-10-01,"Wisconsin",6656 -1990-11-01,"Wisconsin",10282 -1990-12-01,"Wisconsin",17537 -1991-01-01,"Wisconsin",23338 -1991-02-01,"Wisconsin",17258 -1991-03-01,"Wisconsin",15734 -1991-04-01,"Wisconsin",9699 -1991-05-01,"Wisconsin",6053 -1991-06-01,"Wisconsin",2500 -1991-07-01,"Wisconsin",2753 -1991-08-01,"Wisconsin",2464 -1991-09-01,"Wisconsin",3648 -1991-10-01,"Wisconsin",7348 -1991-11-01,"Wisconsin",14481 -1991-12-01,"Wisconsin",18803 -1992-01-01,"Wisconsin",19941 -1992-02-01,"Wisconsin",17320 -1992-03-01,"Wisconsin",15740 -1992-04-01,"Wisconsin",11914 -1992-05-01,"Wisconsin",6373 -1992-06-01,"Wisconsin",3681 -1992-07-01,"Wisconsin",2604 -1992-08-01,"Wisconsin",2662 -1992-09-01,"Wisconsin",3229 -1992-10-01,"Wisconsin",7630 -1992-11-01,"Wisconsin",13233 -1992-12-01,"Wisconsin",19080 -1993-01-01,"Wisconsin",23133 -1993-02-01,"Wisconsin",18435 -1993-03-01,"Wisconsin",18166 -1993-04-01,"Wisconsin",12585 -1993-05-01,"Wisconsin",5585 -1993-06-01,"Wisconsin",3750 -1993-07-01,"Wisconsin",2503 -1993-08-01,"Wisconsin",2586 -1993-09-01,"Wisconsin",3900 -1993-10-01,"Wisconsin",7884 -1993-11-01,"Wisconsin",13043 -1993-12-01,"Wisconsin",18564 -1994-01-01,"Wisconsin",25797 -1994-02-01,"Wisconsin",22434 -1994-03-01,"Wisconsin",16632 -1994-04-01,"Wisconsin",10937 -1994-05-01,"Wisconsin",5763 -1994-06-01,"Wisconsin",3020 -1994-07-01,"Wisconsin",2812 -1994-08-01,"Wisconsin",2832 -1994-09-01,"Wisconsin",3179 -1994-10-01,"Wisconsin",6185 -1994-11-01,"Wisconsin",11079 -1994-12-01,"Wisconsin",17505 -1995-01-01,"Wisconsin",22180 -1995-02-01,"Wisconsin",20703 -1995-03-01,"Wisconsin",15794 -1995-04-01,"Wisconsin",12184 -1995-05-01,"Wisconsin",5804 -1995-06-01,"Wisconsin",3488 -1995-07-01,"Wisconsin",2699 -1995-08-01,"Wisconsin",2698 -1995-09-01,"Wisconsin",3699 -1995-10-01,"Wisconsin",7000 -1995-11-01,"Wisconsin",16784 -1995-12-01,"Wisconsin",22980 -1996-01-01,"Wisconsin",25405 -1996-02-01,"Wisconsin",22563 -1996-03-01,"Wisconsin",20320 -1996-04-01,"Wisconsin",12774 -1996-05-01,"Wisconsin",8015 -1996-06-01,"Wisconsin",4415 -1996-07-01,"Wisconsin",2753 -1996-08-01,"Wisconsin",2726 -1996-09-01,"Wisconsin",3130 -1996-10-01,"Wisconsin",7783 -1996-11-01,"Wisconsin",16724 -1996-12-01,"Wisconsin",21285 -1997-01-01,"Wisconsin",26289 -1997-02-01,"Wisconsin",19211 -1997-03-01,"Wisconsin",17278 -1997-04-01,"Wisconsin",11047 -1997-05-01,"Wisconsin",7413 -1997-06-01,"Wisconsin",2948 -1997-07-01,"Wisconsin",2862 -1997-08-01,"Wisconsin",2535 -1997-09-01,"Wisconsin",2957 -1997-10-01,"Wisconsin",8106 -1997-11-01,"Wisconsin",16127 -1997-12-01,"Wisconsin",19045 -1998-01-01,"Wisconsin",22074 -1998-02-01,"Wisconsin",15358 -1998-03-01,"Wisconsin",17107 -1998-04-01,"Wisconsin",9186 -1998-05-01,"Wisconsin",4075 -1998-06-01,"Wisconsin",3444 -1998-07-01,"Wisconsin",2421 -1998-08-01,"Wisconsin",2768 -1998-09-01,"Wisconsin",2723 -1998-10-01,"Wisconsin",6381 -1998-11-01,"Wisconsin",11701 -1998-12-01,"Wisconsin",18710 -1999-01-01,"Wisconsin",26866 -1999-02-01,"Wisconsin",16977 -1999-03-01,"Wisconsin",16389 -1999-04-01,"Wisconsin",9040 -1999-05-01,"Wisconsin",5007 -1999-06-01,"Wisconsin",3265 -1999-07-01,"Wisconsin",2669 -1999-08-01,"Wisconsin",2815 -1999-09-01,"Wisconsin",3434 -1999-10-01,"Wisconsin",7969 -1999-11-01,"Wisconsin",11440 -1999-12-01,"Wisconsin",21737 -2000-01-01,"Wisconsin",25349 -2000-02-01,"Wisconsin",18333 -2000-03-01,"Wisconsin",13106 -2000-04-01,"Wisconsin",11201 -2000-05-01,"Wisconsin",5027 -2000-06-01,"Wisconsin",2662 -2000-07-01,"Wisconsin",2704 -2000-08-01,"Wisconsin",2908 -2000-09-01,"Wisconsin",3595 -2000-10-01,"Wisconsin",6852 -2000-11-01,"Wisconsin",15551 -2000-12-01,"Wisconsin",27807 -2001-01-01,"Wisconsin",22957 -2001-02-01,"Wisconsin",22069 -2001-03-01,"Wisconsin",20892 -2001-04-01,"Wisconsin",8178 -2001-05-01,"Wisconsin",4620 -2001-06-01,"Wisconsin",3245 -2001-07-01,"Wisconsin",2803 -2001-08-01,"Wisconsin",2302 -2001-09-01,"Wisconsin",3549 -2001-10-01,"Wisconsin",7696 -2001-11-01,"Wisconsin",9205 -2001-12-01,"Wisconsin",17762 -2002-01-01,"Wisconsin",21077 -2002-02-01,"Wisconsin",18121 -2002-03-01,"Wisconsin",20577 -2002-04-01,"Wisconsin",11395 -2002-05-01,"Wisconsin",7905 -2002-06-01,"Wisconsin",3486 -2002-07-01,"Wisconsin",2604 -2002-08-01,"Wisconsin",2673 -2002-09-01,"Wisconsin",2905 -2002-10-01,"Wisconsin",9705 -2002-11-01,"Wisconsin",15807 -2002-12-01,"Wisconsin",20980 -2003-01-01,"Wisconsin",27895 -2003-02-01,"Wisconsin",23640 -2003-03-01,"Wisconsin",18072 -2003-04-01,"Wisconsin",11933 -2003-05-01,"Wisconsin",6295 -2003-06-01,"Wisconsin",3321 -2003-07-01,"Wisconsin",2689 -2003-08-01,"Wisconsin",2615 -2003-09-01,"Wisconsin",3472 -2003-10-01,"Wisconsin",7549 -2003-11-01,"Wisconsin",14281 -2003-12-01,"Wisconsin",20304 -2004-01-01,"Wisconsin",28933 -2004-02-01,"Wisconsin",20258 -2004-03-01,"Wisconsin",16472 -2004-04-01,"Wisconsin",9760 -2004-05-01,"Wisconsin",5859 -2004-06-01,"Wisconsin",3250 -2004-07-01,"Wisconsin",2798 -2004-08-01,"Wisconsin",2627 -2004-09-01,"Wisconsin",2770 -2004-10-01,"Wisconsin",6840 -2004-11-01,"Wisconsin",12477 -2004-12-01,"Wisconsin",23127 -2005-01-01,"Wisconsin",25678 -2005-02-01,"Wisconsin",18937 -2005-03-01,"Wisconsin",18643 -2005-04-01,"Wisconsin",8694 -2005-05-01,"Wisconsin",6385 -2005-06-01,"Wisconsin",2792 -2005-07-01,"Wisconsin",2562 -2005-08-01,"Wisconsin",2739 -2005-09-01,"Wisconsin",2557 -2005-10-01,"Wisconsin",6067 -2005-11-01,"Wisconsin",12988 -2005-12-01,"Wisconsin",23173 -2006-01-01,"Wisconsin",18195 -2006-02-01,"Wisconsin",20461 -2006-03-01,"Wisconsin",16017 -2006-04-01,"Wisconsin",8047 -2006-05-01,"Wisconsin",5083 -2006-06-01,"Wisconsin",3209 -2006-07-01,"Wisconsin",2617 -2006-08-01,"Wisconsin",2457 -2006-09-01,"Wisconsin",3431 -2006-10-01,"Wisconsin",9516 -2006-11-01,"Wisconsin",12580 -2006-12-01,"Wisconsin",18953 -2007-01-01,"Wisconsin",22699 -2007-02-01,"Wisconsin",25909 -2007-03-01,"Wisconsin",14363 -2007-04-01,"Wisconsin",11580 -2007-05-01,"Wisconsin",4145 -2007-06-01,"Wisconsin",2723 -2007-07-01,"Wisconsin",2626 -2007-08-01,"Wisconsin",2496 -2007-09-01,"Wisconsin",2868 -2007-10-01,"Wisconsin",4989 -2007-11-01,"Wisconsin",14271 -2007-12-01,"Wisconsin",22493 -2008-01-01,"Wisconsin",25394 -2008-02-01,"Wisconsin",23898 -2008-03-01,"Wisconsin",18582 -2008-04-01,"Wisconsin",9991 -2008-05-01,"Wisconsin",5483 -2008-06-01,"Wisconsin",2535 -2008-07-01,"Wisconsin",2536 -2008-08-01,"Wisconsin",2602 -2008-09-01,"Wisconsin",2738 -2008-10-01,"Wisconsin",6807 -2008-11-01,"Wisconsin",14480 -2008-12-01,"Wisconsin",25530 -2009-01-01,"Wisconsin",28469 -2009-02-01,"Wisconsin",20004 -2009-03-01,"Wisconsin",16655 -2009-04-01,"Wisconsin",10691 -2009-05-01,"Wisconsin",4747 -2009-06-01,"Wisconsin",3152 -2009-07-01,"Wisconsin",2756 -2009-08-01,"Wisconsin",2566 -2009-09-01,"Wisconsin",2973 -2009-10-01,"Wisconsin",8721 -2009-11-01,"Wisconsin",10593 -2009-12-01,"Wisconsin",21850 -2010-01-01,"Wisconsin",25508 -2010-02-01,"Wisconsin",19477 -2010-03-01,"Wisconsin",13193 -2010-04-01,"Wisconsin",7185 -2010-05-01,"Wisconsin",4861 -2010-06-01,"Wisconsin",3203 -2010-07-01,"Wisconsin",2429 -2010-08-01,"Wisconsin",2472 -2010-09-01,"Wisconsin",2833 -2010-10-01,"Wisconsin",5597 -2010-11-01,"Wisconsin",12885 -2010-12-01,"Wisconsin",23974 -2011-01-01,"Wisconsin",26389 -2011-02-01,"Wisconsin",20797 -2011-03-01,"Wisconsin",17622 -2011-04-01,"Wisconsin",11138 -2011-05-01,"Wisconsin",5941 -2011-06-01,"Wisconsin",2571 -2011-07-01,"Wisconsin",2442 -2011-08-01,"Wisconsin",2232 -2011-09-01,"Wisconsin",3313 -2011-10-01,"Wisconsin",6635 -2011-11-01,"Wisconsin",12003 -2011-12-01,"Wisconsin",18361 -2012-01-01,"Wisconsin",22415 -2012-02-01,"Wisconsin",18869 -2012-03-01,"Wisconsin",9470 -2012-04-01,"Wisconsin",8622 -2012-05-01,"Wisconsin",3711 -2012-06-01,"Wisconsin",2682 -2012-07-01,"Wisconsin",2159 -2012-08-01,"Wisconsin",2195 -2012-09-01,"Wisconsin",3202 -2012-10-01,"Wisconsin",7823 -2012-11-01,"Wisconsin",13109 -2012-12-01,"Wisconsin",18297 -2013-01-01,"Wisconsin",24180 -2013-02-01,"Wisconsin",21428 -2013-03-01,"Wisconsin",19759 -2013-04-01,"Wisconsin",11962 -2013-05-01,"Wisconsin",5541 -2013-06-01,"Wisconsin",3085 -2013-07-01,"Wisconsin",2541 -2013-08-01,"Wisconsin",2415 -2013-09-01,"Wisconsin",2694 -2013-10-01,"Wisconsin",7295 -2013-11-01,"Wisconsin",16075 -2013-12-01,"Wisconsin",26010 -2014-01-01,"Wisconsin",30789 -2014-02-01,"Wisconsin",25727 -2014-03-01,"Wisconsin",20074 -2014-04-01,"Wisconsin",11561 -2014-05-01,"Wisconsin",5305 -2014-06-01,"Wisconsin",3251 -2014-07-01,"Wisconsin",2642 -2014-08-01,"Wisconsin",2397 -2014-09-01,"Wisconsin",3365 -2014-10-01,"Wisconsin",7477 -2014-11-01,"Wisconsin",18409 -2014-12-01,"Wisconsin",19411 -2015-01-01,"Wisconsin",25705 -2015-02-01,"Wisconsin",27502 -2015-03-01,"Wisconsin",16213 -2015-04-01,"Wisconsin",9496 -2015-05-01,"Wisconsin",4550 -2015-06-01,"Wisconsin",2481 -2015-07-01,"Wisconsin",2478 -2015-08-01,"Wisconsin",2310 -2015-09-01,"Wisconsin",2502 -2015-10-01,"Wisconsin",6091 -2015-11-01,"Wisconsin",11077 -2015-12-01,"Wisconsin",16449 -2016-01-01,"Wisconsin",25000 -2016-02-01,"Wisconsin",19942 -2016-03-01,"Wisconsin",14393 -2016-04-01,"Wisconsin",11242 -2016-05-01,"Wisconsin",5056 -2016-06-01,"Wisconsin",2605 -2016-07-01,"Wisconsin",2361 -2016-08-01,"Wisconsin",2124 -2016-09-01,"Wisconsin",2403 -2016-10-01,"Wisconsin",5590 -2016-11-01,"Wisconsin",10367 -2016-12-01,"Wisconsin",24366 -2017-01-01,"Wisconsin",23539 -2017-02-01,"Wisconsin",17252 -2017-03-01,"Wisconsin",18653 -2017-04-01,"Wisconsin",8439 -2017-05-01,"Wisconsin",5967 -2017-06-01,"Wisconsin",2795 -2017-07-01,"Wisconsin",2306 -2017-08-01,"Wisconsin",2503 -2017-09-01,"Wisconsin",2739 -2017-10-01,"Wisconsin",6281 -2017-11-01,"Wisconsin",15335 -2017-12-01,"Wisconsin",25210 -2018-01-01,"Wisconsin",26214 -2018-02-01,"Wisconsin",22632 -2018-03-01,"Wisconsin",18462 -2018-04-01,"Wisconsin",15087 -2018-05-01,"Wisconsin",4026 -2018-06-01,"Wisconsin",2659 -2018-07-01,"Wisconsin",2325 -2018-08-01,"Wisconsin",2343 -2018-09-01,"Wisconsin",2943 -2018-10-01,"Wisconsin",8780 -2018-11-01,"Wisconsin",18652 -2018-12-01,"Wisconsin",20397 -2019-01-01,"Wisconsin",29084 -2019-02-01,"Wisconsin",24516 -2019-03-01,"Wisconsin",19697 -2019-04-01,"Wisconsin",11515 -2019-05-01,"Wisconsin",7050 -2019-06-01,"Wisconsin",3127 -2019-07-01,"Wisconsin",2366 -2019-08-01,"Wisconsin",2350 -2019-09-01,"Wisconsin",2607 -2019-10-01,"Wisconsin",9004 -2019-11-01,"Wisconsin",19034 -2019-12-01,"Wisconsin",21241 -2020-01-01,"Wisconsin",22909 -2020-02-01,"Wisconsin",22530 -2020-03-01,"Wisconsin",16225 -2020-04-01,"Wisconsin",12160 -2020-05-01,"Wisconsin",6361 -2020-06-01,"Wisconsin",2794 -2020-07-01,"Wisconsin",2469 -2020-08-01,"Wisconsin",2522 -2020-09-01,"Wisconsin",3167 -2020-10-01,"Wisconsin",10400 -2020-11-01,"Wisconsin",12233 -2020-12-01,"Wisconsin",22161 -2021-01-01,"Wisconsin",24372 -2021-02-01,"Wisconsin",26190 +1973-01-01,"U.S.",843900 +1973-02-01,"U.S.",747331 +1973-03-01,"U.S.",648504 +1973-04-01,"U.S.",465867 +1973-05-01,"U.S.",326313 +1973-06-01,"U.S.",207172 +1973-07-01,"U.S.",150349 +1973-08-01,"U.S.",142498 +1973-09-01,"U.S.",159378 +1973-10-01,"U.S.",205013 +1973-11-01,"U.S.",392459 +1973-12-01,"U.S.",590602 +1974-01-01,"U.S.",816943 +1974-02-01,"U.S.",688478 +1974-03-01,"U.S.",597641 +1974-04-01,"U.S.",482013 +1974-05-01,"U.S.",315920 +1974-06-01,"U.S.",215382 +1974-07-01,"U.S.",166289 +1974-08-01,"U.S.",142086 +1974-09-01,"U.S.",154824 +1974-10-01,"U.S.",235176 +1974-11-01,"U.S.",358546 +1974-12-01,"U.S.",612830 +1975-01-01,"U.S.",750713 +1975-02-01,"U.S.",732408 +1975-03-01,"U.S.",677687 +1975-04-01,"U.S.",596831 +1975-05-01,"U.S.",337326 +1975-06-01,"U.S.",203708 +1975-07-01,"U.S.",167293 +1975-08-01,"U.S.",143604 +1975-09-01,"U.S.",153980 +1975-10-01,"U.S.",223383 +1975-11-01,"U.S.",329397 +1975-12-01,"U.S.",607794 +1976-01-01,"U.S.",843235 +1976-02-01,"U.S.",739592 +1976-03-01,"U.S.",578491 +1976-04-01,"U.S.",442648 +1976-05-01,"U.S.",315760 +1976-06-01,"U.S.",220871 +1976-07-01,"U.S.",170257 +1976-08-01,"U.S.",140774 +1976-09-01,"U.S.",152346 +1976-10-01,"U.S.",241902 +1976-11-01,"U.S.",471326 +1976-12-01,"U.S.",734158 +1977-01-01,"U.S.",936793 +1977-02-01,"U.S.",823439 +1977-03-01,"U.S.",560779 +1977-04-01,"U.S.",401258 +1977-05-01,"U.S.",251756 +1977-06-01,"U.S.",182212 +1977-07-01,"U.S.",146064 +1977-08-01,"U.S.",131330 +1977-09-01,"U.S.",140661 +1977-10-01,"U.S.",223663 +1977-11-01,"U.S.",371888 +1977-12-01,"U.S.",651640 +1978-01-01,"U.S.",816411 +1978-02-01,"U.S.",837768 +1978-03-01,"U.S.",680825 +1978-04-01,"U.S.",445702 +1978-05-01,"U.S.",307604 +1978-06-01,"U.S.",184388 +1978-07-01,"U.S.",146989 +1978-08-01,"U.S.",130270 +1978-09-01,"U.S.",135489 +1978-10-01,"U.S.",209515 +1978-11-01,"U.S.",376411 +1978-12-01,"U.S.",631636 +1979-01-01,"U.S.",867301 +1979-02-01,"U.S.",892145 +1979-03-01,"U.S.",659720 +1979-04-01,"U.S.",463492 +1979-05-01,"U.S.",287548 +1979-06-01,"U.S.",189143 +1979-07-01,"U.S.",147607 +1979-08-01,"U.S.",133244 +1979-09-01,"U.S.",137611 +1979-10-01,"U.S.",215151 +1979-11-01,"U.S.",378577 +1979-12-01,"U.S.",593825 +1980-01-01,"U.S.",722000 +1980-02-01,"U.S.",774000 +1980-03-01,"U.S.",673000 +1980-04-01,"U.S.",451000 +1980-05-01,"U.S.",279000 +1980-06-01,"U.S.",191000 +1980-07-01,"U.S.",145000 +1980-08-01,"U.S.",129000 +1980-09-01,"U.S.",135000 +1980-10-01,"U.S.",214000 +1980-11-01,"U.S.",392000 +1980-12-01,"U.S.",646000 +1981-01-01,"U.S.",831000 +1981-02-01,"U.S.",740000 +1981-03-01,"U.S.",585000 +1981-04-01,"U.S.",372000 +1981-05-01,"U.S.",260000 +1981-06-01,"U.S.",168000 +1981-07-01,"U.S.",136000 +1981-08-01,"U.S.",123000 +1981-09-01,"U.S.",133000 +1981-10-01,"U.S.",232000 +1981-11-01,"U.S.",364000 +1981-12-01,"U.S.",601000 +1982-01-01,"U.S.",866000 +1982-02-01,"U.S.",786000 +1982-03-01,"U.S.",602000 +1982-04-01,"U.S.",451000 +1982-05-01,"U.S.",233000 +1982-06-01,"U.S.",165000 +1982-07-01,"U.S.",138000 +1982-08-01,"U.S.",123000 +1982-09-01,"U.S.",136000 +1982-10-01,"U.S.",204000 +1982-11-01,"U.S.",372000 +1982-12-01,"U.S.",557000 +1983-01-01,"U.S.",849621 +1983-02-01,"U.S.",671628 +1983-03-01,"U.S.",580985 +1983-04-01,"U.S.",444247 +1983-05-01,"U.S.",276395 +1983-06-01,"U.S.",164337 +1983-07-01,"U.S.",124457 +1983-08-01,"U.S.",114458 +1983-09-01,"U.S.",122538 +1983-10-01,"U.S.",175875 +1983-11-01,"U.S.",310895 +1983-12-01,"U.S.",545164 +1984-01-01,"U.S.",886307 +1984-02-01,"U.S.",699925 +1984-03-01,"U.S.",605372 +1984-04-01,"U.S.",462950 +1984-05-01,"U.S.",286928 +1984-06-01,"U.S.",169942 +1984-07-01,"U.S.",128314 +1984-08-01,"U.S.",118045 +1984-09-01,"U.S.",126625 +1984-10-01,"U.S.",182438 +1984-11-01,"U.S.",322693 +1984-12-01,"U.S.",565927 +1985-01-01,"U.S.",743223 +1985-02-01,"U.S.",837245 +1985-03-01,"U.S.",566386 +1985-04-01,"U.S.",396625 +1985-05-01,"U.S.",212164 +1985-06-01,"U.S.",156549 +1985-07-01,"U.S.",129851 +1985-08-01,"U.S.",118932 +1985-09-01,"U.S.",129314 +1985-10-01,"U.S.",189799 +1985-11-01,"U.S.",306427 +1985-12-01,"U.S.",646863 +1986-01-01,"U.S.",790569 +1986-02-01,"U.S.",684541 +1986-03-01,"U.S.",579901 +1986-04-01,"U.S.",363277 +1986-05-01,"U.S.",236207 +1986-06-01,"U.S.",154889 +1986-07-01,"U.S.",126494 +1986-08-01,"U.S.",117487 +1986-09-01,"U.S.",130597 +1986-10-01,"U.S.",185265 +1986-11-01,"U.S.",345659 +1986-12-01,"U.S.",599085 +1987-01-01,"U.S.",741338 +1987-02-01,"U.S.",688699 +1987-03-01,"U.S.",575299 +1987-04-01,"U.S.",401848 +1987-05-01,"U.S.",222779 +1987-06-01,"U.S.",146812 +1987-07-01,"U.S.",125625 +1987-08-01,"U.S.",117471 +1987-09-01,"U.S.",126348 +1987-10-01,"U.S.",222825 +1987-11-01,"U.S.",354076 +1987-12-01,"U.S.",591715 +1988-01-01,"U.S.",852076 +1988-02-01,"U.S.",754526 +1988-03-01,"U.S.",596846 +1988-04-01,"U.S.",400177 +1988-05-01,"U.S.",257781 +1988-06-01,"U.S.",152204 +1988-07-01,"U.S.",122908 +1988-08-01,"U.S.",114411 +1988-09-01,"U.S.",124739 +1988-10-01,"U.S.",232157 +1988-11-01,"U.S.",391420 +1988-12-01,"U.S.",631086 +1989-01-01,"Louisiana",8279 +1989-01-01,"Pennsylvania",42523 +1989-01-01,"Washington",6051 +1989-01-01,"Montana",2803 +1989-01-01,"California",87958 +1989-01-01,"Florida",1709 +1989-01-01,"New York",56307 1989-01-01,"Wyoming",1923 +1989-01-01,"Tennessee",8323 +1989-01-01,"Nebraska",7006 +1989-01-01,"West Virginia",5838 +1989-01-01,"Mississippi",3995 +1989-01-01,"Massachusetts",17593 +1989-01-01,"South Dakota",1762 +1989-01-01,"Rhode Island",2864 +1989-01-01,"Idaho",1619 +1989-01-01,"South Carolina",3768 +1989-01-01,"New Mexico",5623 +1989-01-01,"Iowa",12794 +1989-01-01,"Wisconsin",19372 +1989-01-01,"District of Columbia",2903 +1989-01-01,"Michigan",55928 +1989-01-01,"Ohio",49326 +1989-01-01,"Oregon",3632 +1989-01-01,"Maine",92 +1989-01-01,"Oklahoma",11577 +1989-01-01,"Alabama",7406 +1989-01-01,"Missouri",21508 +1989-01-01,"Illinois",74796 +1989-01-01,"Arizona",6104 +1989-01-01,"Connecticut",6412 +1989-01-01,"Maryland",12209 +1989-01-01,"North Carolina",6946 +1989-01-01,"Vermont",353 +1989-01-01,"Nevada",3128 +1989-01-01,"North Dakota",1660 +1989-01-01,"New Hampshire",1044 +1989-01-01,"Hawaii",51 +1989-01-01,"Utah",8316 +1989-01-01,"New Jersey",31078 +1989-01-01,"Texas",33465 +1989-01-01,"U.S.",751166 +1989-01-01,"Delaware",1257 +1989-01-01,"Virginia",9913 +1989-01-01,"Colorado",14966 +1989-01-01,"Alaska",1793 +1989-01-01,"Kentucky",9700 +1989-01-01,"Indiana",23991 +1989-01-01,"Georgia",15116 +1989-01-01,"Minnesota",18926 +1989-01-01,"Kansas",12686 +1989-01-01,"Arkansas",6774 +1989-02-01,"South Dakota",1865 +1989-02-01,"Michigan",52459 +1989-02-01,"Colorado",15278 +1989-02-01,"South Carolina",3029 +1989-02-01,"Nevada",2971 +1989-02-01,"Indiana",23940 +1989-02-01,"Minnesota",19064 +1989-02-01,"Virginia",9446 +1989-02-01,"Hawaii",52 +1989-02-01,"Iowa",12643 +1989-02-01,"Maryland",10880 +1989-02-01,"Florida",1445 +1989-02-01,"Mississippi",4030 +1989-02-01,"District of Columbia",2556 +1989-02-01,"North Carolina",5655 +1989-02-01,"Utah",8290 +1989-02-01,"North Dakota",1590 +1989-02-01,"U.S.",743050 +1989-02-01,"Delaware",1153 +1989-02-01,"Nebraska",7911 +1989-02-01,"New Hampshire",904 +1989-02-01,"Kentucky",10403 +1989-02-01,"Maine",84 +1989-02-01,"Oklahoma",13137 +1989-02-01,"New Jersey",29095 +1989-02-01,"Missouri",22300 +1989-02-01,"Oregon",4026 +1989-02-01,"New Mexico",4696 +1989-02-01,"Alabama",7044 +1989-02-01,"Alaska",2148 +1989-02-01,"Illinois",76868 +1989-02-01,"Idaho",1672 +1989-02-01,"Connecticut",5891 +1989-02-01,"Wisconsin",19607 +1989-02-01,"New York",52502 +1989-02-01,"Georgia",16389 +1989-02-01,"Arkansas",7118 +1989-02-01,"Pennsylvania",40317 +1989-02-01,"West Virginia",5621 +1989-02-01,"California",75817 +1989-02-01,"Rhode Island",2682 +1989-02-01,"Louisiana",8546 +1989-02-01,"Ohio",56594 +1989-02-01,"Arizona",4913 +1989-02-01,"Washington",6660 +1989-02-01,"Montana",2778 +1989-02-01,"Vermont",314 1989-02-01,"Wyoming",1964 +1989-02-01,"Massachusetts",16517 +1989-02-01,"Texas",40274 +1989-02-01,"Tennessee",8151 +1989-02-01,"Kansas",13761 +1989-03-01,"South Dakota",1639 +1989-03-01,"Louisiana",8377 +1989-03-01,"Pennsylvania",37886 +1989-03-01,"Washington",5730 +1989-03-01,"California",53779 +1989-03-01,"Oklahoma",12277 +1989-03-01,"Georgia",9603 +1989-03-01,"Colorado",13652 +1989-03-01,"Hawaii",50 +1989-03-01,"Kentucky",8293 +1989-03-01,"Idaho",1206 +1989-03-01,"Tennessee",7961 +1989-03-01,"Illinois",64320 +1989-03-01,"Wisconsin",18950 +1989-03-01,"New Mexico",3345 +1989-03-01,"District of Columbia",2762 +1989-03-01,"Rhode Island",2711 +1989-03-01,"Ohio",42862 +1989-03-01,"Iowa",12215 +1989-03-01,"Oregon",3351 +1989-03-01,"Florida",1834 +1989-03-01,"Mississippi",4077 +1989-03-01,"U.S.",645859 +1989-03-01,"Arizona",2937 +1989-03-01,"Connecticut",5717 +1989-03-01,"Maine",92 +1989-03-01,"Vermont",314 +1989-03-01,"Massachusetts",16940 +1989-03-01,"Minnesota",16511 +1989-03-01,"Delaware",1223 +1989-03-01,"Kansas",11948 +1989-03-01,"Michigan",51163 +1989-03-01,"Alaska",1566 +1989-03-01,"West Virginia",5179 +1989-03-01,"South Carolina",3327 +1989-03-01,"Maryland",11186 1989-03-01,"Wyoming",1597 +1989-03-01,"Utah",5786 +1989-03-01,"Texas",29982 +1989-03-01,"Virginia",9042 +1989-03-01,"Nebraska",6742 +1989-03-01,"Montana",2544 +1989-03-01,"Nevada",1957 +1989-03-01,"Indiana",20950 +1989-03-01,"North Dakota",1476 +1989-03-01,"Missouri",19809 +1989-03-01,"Arkansas",6736 +1989-03-01,"New Hampshire",926 +1989-03-01,"North Carolina",6202 +1989-03-01,"New York",51981 +1989-03-01,"New Jersey",27754 +1989-03-01,"Alabama",7392 +1989-04-01,"New Hampshire",686 +1989-04-01,"Louisiana",4724 +1989-04-01,"Illinois",40575 +1989-04-01,"Washington",3625 +1989-04-01,"Connecticut",3694 +1989-04-01,"Wisconsin",12003 +1989-04-01,"Montana",1666 +1989-04-01,"Vermont",227 +1989-04-01,"Massachusetts",11858 +1989-04-01,"U.S.",414487 +1989-04-01,"South Dakota",1036 +1989-04-01,"Kentucky",5319 +1989-04-01,"Texas",15648 +1989-04-01,"Nebraska",3687 +1989-04-01,"Maryland",7032 +1989-04-01,"Maine",66 +1989-04-01,"Missouri",11192 +1989-04-01,"Arkansas",3835 +1989-04-01,"North Carolina",3723 +1989-04-01,"Florida",1207 +1989-04-01,"Oklahoma",5784 +1989-04-01,"District of Columbia",1663 +1989-04-01,"Georgia",7211 +1989-04-01,"Colorado",8580 +1989-04-01,"Pennsylvania",26310 +1989-04-01,"Arizona",1670 +1989-04-01,"California",37832 +1989-04-01,"Mississippi",2195 +1989-04-01,"Tennessee",4311 +1989-04-01,"Alaska",1223 +1989-04-01,"Ohio",31700 +1989-04-01,"West Virginia",3608 1989-04-01,"Wyoming",1180 +1989-04-01,"Utah",3585 +1989-04-01,"Rhode Island",1828 +1989-04-01,"Iowa",7244 +1989-04-01,"Oregon",2054 +1989-04-01,"Idaho",747 +1989-04-01,"South Carolina",1875 +1989-04-01,"New Mexico",1960 +1989-04-01,"New Jersey",17680 +1989-04-01,"North Dakota",1040 +1989-04-01,"Minnesota",9806 +1989-04-01,"Michigan",34224 +1989-04-01,"Hawaii",50 +1989-04-01,"New York",35963 +1989-04-01,"Nevada",1106 +1989-04-01,"Indiana",12801 +1989-04-01,"Alabama",4722 +1989-04-01,"Delaware",793 +1989-04-01,"Kansas",6518 +1989-04-01,"Virginia",5421 +1989-05-01,"South Dakota",562 +1989-05-01,"South Carolina",879 +1989-05-01,"Indiana",7660 +1989-05-01,"Massachusetts",7552 +1989-05-01,"Tennessee",2220 +1989-05-01,"North Dakota",506 +1989-05-01,"Pennsylvania",15825 +1989-05-01,"Ohio",18482 +1989-05-01,"Oregon",1141 +1989-05-01,"Florida",817 +1989-05-01,"Vermont",122 +1989-05-01,"Utah",2215 +1989-05-01,"U.S.",256551 +1989-05-01,"Wisconsin",7875 +1989-05-01,"New Mexico",1111 1989-05-01,"Wyoming",743 +1989-05-01,"Minnesota",5523 +1989-05-01,"Alabama",2856 +1989-05-01,"Kansas",3436 +1989-05-01,"Virginia",2881 +1989-05-01,"Colorado",5694 +1989-05-01,"Hawaii",47 +1989-05-01,"Kentucky",3161 +1989-05-01,"Idaho",368 +1989-05-01,"Mississippi",1282 +1989-05-01,"Texas",9324 +1989-05-01,"Iowa",3943 +1989-05-01,"West Virginia",2263 +1989-05-01,"California",31161 +1989-05-01,"Maine",49 +1989-05-01,"Georgia",4629 +1989-05-01,"Delaware",466 +1989-05-01,"Arkansas",1927 +1989-05-01,"New Hampshire",422 +1989-05-01,"Rhode Island",1223 +1989-05-01,"Illinois",24582 +1989-05-01,"Arizona",1205 +1989-05-01,"New York",23868 +1989-05-01,"Alaska",858 +1989-05-01,"Washington",1822 +1989-05-01,"Connecticut",2231 +1989-05-01,"Maryland",4320 +1989-05-01,"North Carolina",1899 +1989-05-01,"Oklahoma",3043 +1989-05-01,"New Jersey",10547 +1989-05-01,"Missouri",5793 +1989-05-01,"Nebraska",1968 +1989-05-01,"Michigan",20415 +1989-05-01,"Louisiana",2816 +1989-05-01,"Montana",965 +1989-05-01,"Nevada",829 +1989-05-01,"District of Columbia",1025 +1989-06-01,"Arizona",1094 +1989-06-01,"West Virginia",1001 +1989-06-01,"Oklahoma",2169 +1989-06-01,"New York",13364 +1989-06-01,"Kansas",2203 +1989-06-01,"Virginia",1713 +1989-06-01,"Missouri",3615 +1989-06-01,"New Hampshire",210 +1989-06-01,"Pennsylvania",8128 +1989-06-01,"Alabama",1709 +1989-06-01,"Kentucky",1809 +1989-06-01,"Florida",707 +1989-06-01,"Maine",27 +1989-06-01,"District of Columbia",649 +1989-06-01,"Texas",8127 +1989-06-01,"Tennessee",1347 +1989-06-01,"South Dakota",340 +1989-06-01,"Michigan",9803 +1989-06-01,"Rhode Island",590 +1989-06-01,"Hawaii",49 +1989-06-01,"Illinois",12602 +1989-06-01,"Oregon",950 +1989-06-01,"Washington",1501 +1989-06-01,"Montana",680 +1989-06-01,"Nevada",748 1989-06-01,"Wyoming",517 +1989-06-01,"Minnesota",3121 +1989-06-01,"Delaware",272 +1989-06-01,"Nebraska",1137 +1989-06-01,"Arkansas",1402 +1989-06-01,"Idaho",306 +1989-06-01,"Mississippi",929 +1989-06-01,"Indiana",3832 +1989-06-01,"Massachusetts",4053 +1989-06-01,"New Jersey",6101 +1989-06-01,"Georgia",3050 +1989-06-01,"Colorado",3947 +1989-06-01,"Iowa",2063 +1989-06-01,"South Carolina",468 +1989-06-01,"Connecticut",1296 +1989-06-01,"North Carolina",1020 +1989-06-01,"California",26581 +1989-06-01,"North Dakota",309 +1989-06-01,"U.S.",155449 +1989-06-01,"Alaska",638 +1989-06-01,"Louisiana",2321 +1989-06-01,"Ohio",7759 +1989-06-01,"Maryland",2681 +1989-06-01,"Wisconsin",3777 +1989-06-01,"Vermont",61 +1989-06-01,"New Mexico",910 +1989-06-01,"Utah",1763 +1989-07-01,"Colorado",2778 +1989-07-01,"Maryland",2241 +1989-07-01,"North Carolina",744 +1989-07-01,"Mississippi",864 +1989-07-01,"Indiana",2894 +1989-07-01,"District of Columbia",507 +1989-07-01,"Massachusetts",3006 +1989-07-01,"North Dakota",213 +1989-07-01,"Illinois",10775 +1989-07-01,"Hawaii",46 +1989-07-01,"Arizona",880 +1989-07-01,"South Carolina",395 +1989-07-01,"California",22730 +1989-07-01,"New York",10098 +1989-07-01,"Georgia",2988 +1989-07-01,"Delaware",192 +1989-07-01,"Arkansas",1237 +1989-07-01,"Michigan",8052 +1989-07-01,"Oregon",696 +1989-07-01,"Oklahoma",1858 +1989-07-01,"Utah",1374 +1989-07-01,"Texas",7726 +1989-07-01,"Kansas",1845 +1989-07-01,"Nebraska",1078 +1989-07-01,"Alaska",432 +1989-07-01,"Louisiana",2189 +1989-07-01,"Idaho",160 +1989-07-01,"Nevada",531 1989-07-01,"Wyoming",344 +1989-07-01,"New Jersey",5231 +1989-07-01,"U.S.",128662 +1989-07-01,"Minnesota",2388 +1989-07-01,"Rhode Island",500 +1989-07-01,"Washington",1002 +1989-07-01,"Wisconsin",2736 +1989-07-01,"Montana",426 +1989-07-01,"New Mexico",829 +1989-07-01,"Pennsylvania",6400 +1989-07-01,"Florida",674 +1989-07-01,"Alabama",1457 +1989-07-01,"Ohio",7332 +1989-07-01,"Iowa",1647 +1989-07-01,"Maine",12 +1989-07-01,"Virginia",1479 +1989-07-01,"Missouri",3008 +1989-07-01,"South Dakota",245 +1989-07-01,"New Hampshire",155 +1989-07-01,"Kentucky",1332 +1989-07-01,"West Virginia",741 +1989-07-01,"Connecticut",1114 +1989-07-01,"Vermont",40 +1989-07-01,"Tennessee",1041 +1989-08-01,"Colorado",2279 +1989-08-01,"Alaska",370 +1989-08-01,"New Hampshire",127 +1989-08-01,"Oregon",549 +1989-08-01,"Washington",801 +1989-08-01,"Texas",7211 +1989-08-01,"Tennessee",961 +1989-08-01,"Michigan",7957 +1989-08-01,"Idaho",146 +1989-08-01,"Connecticut",996 +1989-08-01,"Florida",617 +1989-08-01,"Massachusetts",2683 +1989-08-01,"North Dakota",166 +1989-08-01,"Kansas",1687 +1989-08-01,"Virginia",1340 +1989-08-01,"Louisiana",2026 +1989-08-01,"Pennsylvania",6014 +1989-08-01,"Hawaii",42 +1989-08-01,"Arizona",777 +1989-08-01,"Iowa",1527 +1989-08-01,"Wisconsin",2220 +1989-08-01,"Montana",435 +1989-08-01,"Mississippi",829 +1989-08-01,"New Jersey",4778 +1989-08-01,"North Carolina",695 +1989-08-01,"New Mexico",734 1989-08-01,"Wyoming",259 +1989-08-01,"Utah",1235 +1989-08-01,"Oklahoma",1654 +1989-08-01,"New York",9189 +1989-08-01,"Nevada",478 +1989-08-01,"District of Columbia",483 +1989-08-01,"U.S.",121009 +1989-08-01,"Missouri",2732 +1989-08-01,"Arkansas",1137 +1989-08-01,"Rhode Island",464 +1989-08-01,"Ohio",7262 +1989-08-01,"Kentucky",1337 +1989-08-01,"California",22977 +1989-08-01,"Maine",19 +1989-08-01,"Georgia",2792 +1989-08-01,"Minnesota",2269 +1989-08-01,"Nebraska",1007 +1989-08-01,"South Dakota",221 +1989-08-01,"Illinois",9958 +1989-08-01,"South Carolina",327 +1989-08-01,"Maryland",2070 +1989-08-01,"Indiana",2868 +1989-08-01,"Delaware",189 +1989-08-01,"West Virginia",695 +1989-08-01,"Vermont",37 +1989-08-01,"Alabama",1383 +1989-09-01,"Connecticut",1138 +1989-09-01,"New Jersey",5283 +1989-09-01,"U.S.",139486 +1989-09-01,"Missouri",3111 +1989-09-01,"Michigan",9726 +1989-09-01,"Ohio",9812 +1989-09-01,"Utah",1322 +1989-09-01,"Alabama",1404 +1989-09-01,"Arkansas",1239 +1989-09-01,"South Dakota",298 +1989-09-01,"Kentucky",1446 +1989-09-01,"Washington",969 +1989-09-01,"North Carolina",745 +1989-09-01,"Texas",7869 +1989-09-01,"Kansas",1955 +1989-09-01,"Colorado",2601 +1989-09-01,"West Virginia",824 +1989-09-01,"Montana",568 +1989-09-01,"Maine",21 +1989-09-01,"Mississippi",894 +1989-09-01,"Nevada",555 +1989-09-01,"Massachusetts",2901 +1989-09-01,"North Dakota",240 +1989-09-01,"Rhode Island",497 +1989-09-01,"Arizona",833 +1989-09-01,"Iowa",1790 +1989-09-01,"South Carolina",346 +1989-09-01,"Maryland",2177 +1989-09-01,"Florida",641 +1989-09-01,"New York",9514 1989-09-01,"Wyoming",350 +1989-09-01,"Georgia",3466 +1989-09-01,"Minnesota",2682 +1989-09-01,"Virginia",1374 +1989-09-01,"Nebraska",1212 +1989-09-01,"Alaska",536 +1989-09-01,"Illinois",13627 +1989-09-01,"Pennsylvania",6716 +1989-09-01,"Hawaii",45 +1989-09-01,"Vermont",43 +1989-09-01,"Indiana",3957 +1989-09-01,"Delaware",207 +1989-09-01,"New Hampshire",169 +1989-09-01,"Louisiana",2035 +1989-09-01,"Oregon",581 +1989-09-01,"Idaho",221 +1989-09-01,"Wisconsin",3173 +1989-09-01,"New Mexico",765 +1989-09-01,"Oklahoma",1886 +1989-09-01,"District of Columbia",494 +1989-09-01,"Tennessee",1044 +1989-09-01,"California",24184 +1989-10-01,"Michigan",19994 +1989-10-01,"Ohio",20647 +1989-10-01,"West Virginia",1738 +1989-10-01,"Mississippi",1043 +1989-10-01,"New Mexico",899 +1989-10-01,"Indiana",8198 1989-10-01,"Wyoming",518 +1989-10-01,"District of Columbia",655 +1989-10-01,"Massachusetts",4839 +1989-10-01,"North Dakota",398 +1989-10-01,"Kansas",2901 +1989-10-01,"Missouri",5047 +1989-10-01,"Alaska",895 +1989-10-01,"Illinois",26027 +1989-10-01,"Washington",1622 +1989-10-01,"Oklahoma",2571 +1989-10-01,"Alabama",1862 +1989-10-01,"Arkansas",1562 +1989-10-01,"New Hampshire",274 +1989-10-01,"Rhode Island",855 +1989-10-01,"Louisiana",2513 +1989-10-01,"Vermont",97 +1989-10-01,"New York",16060 +1989-10-01,"Texas",9777 +1989-10-01,"Nebraska",1972 +1989-10-01,"South Dakota",535 +1989-10-01,"Arizona",959 +1989-10-01,"Iowa",3225 +1989-10-01,"Kentucky",3109 +1989-10-01,"Oregon",804 +1989-10-01,"South Carolina",620 +1989-10-01,"Maryland",3134 +1989-10-01,"Montana",1084 +1989-10-01,"Georgia",5190 +1989-10-01,"Colorado",3750 +1989-10-01,"Pennsylvania",13222 +1989-10-01,"Idaho",329 +1989-10-01,"Wisconsin",6052 +1989-10-01,"California",28083 +1989-10-01,"Maine",35 +1989-10-01,"Tennessee",1683 +1989-10-01,"Delaware",275 +1989-10-01,"Virginia",2831 +1989-10-01,"Hawaii",43 +1989-10-01,"North Carolina",1338 +1989-10-01,"Florida",637 +1989-10-01,"Utah",1718 +1989-10-01,"New Jersey",8933 +1989-10-01,"U.S.",228672 +1989-10-01,"Connecticut",1986 +1989-10-01,"Nevada",703 +1989-10-01,"Minnesota",5430 +1989-11-01,"Louisiana",4166 +1989-11-01,"Hawaii",46 +1989-11-01,"Connecticut",3221 +1989-11-01,"North Carolina",2823 +1989-11-01,"District of Columbia",1099 +1989-11-01,"Kansas",5398 +1989-11-01,"Arizona",1768 +1989-11-01,"Washington",3484 +1989-11-01,"South Carolina",1526 +1989-11-01,"California",40070 1989-11-01,"Wyoming",973 +1989-11-01,"Tennessee",3555 +1989-11-01,"Alabama",3646 +1989-11-01,"South Dakota",1076 +1989-11-01,"New Hampshire",448 +1989-11-01,"Rhode Island",1325 +1989-11-01,"Kentucky",6141 +1989-11-01,"Wisconsin",10581 +1989-11-01,"Maine",46 +1989-11-01,"Delaware",485 +1989-11-01,"Colorado",6975 +1989-11-01,"Alaska",1474 +1989-11-01,"West Virginia",3240 +1989-11-01,"Florida",974 +1989-11-01,"New York",28576 +1989-11-01,"Indiana",15187 +1989-11-01,"Massachusetts",7495 +1989-11-01,"Georgia",11110 +1989-11-01,"Virginia",4799 +1989-11-01,"Illinois",51490 +1989-11-01,"Ohio",37970 +1989-11-01,"Idaho",768 +1989-11-01,"New Mexico",1975 +1989-11-01,"Utah",3640 +1989-11-01,"New Jersey",15715 +1989-11-01,"North Dakota",816 +1989-11-01,"Oregon",1835 +1989-11-01,"Maryland",5131 +1989-11-01,"Montana",1728 +1989-11-01,"Minnesota",11067 +1989-11-01,"Michigan",31679 +1989-11-01,"Pennsylvania",22442 +1989-11-01,"Iowa",5912 +1989-11-01,"Mississippi",1933 +1989-11-01,"Oklahoma",4798 +1989-11-01,"Nevada",1400 +1989-11-01,"U.S.",405314 +1989-11-01,"Missouri",9441 +1989-11-01,"Arkansas",2987 +1989-11-01,"Vermont",165 +1989-11-01,"Texas",16927 +1989-11-01,"Nebraska",3788 +1989-12-01,"New Hampshire",926 +1989-12-01,"West Virginia",6382 +1989-12-01,"Washington",5091 +1989-12-01,"Wisconsin",20661 +1989-12-01,"North Dakota",1411 +1989-12-01,"Alabama",7240 +1989-12-01,"Arkansas",6356 +1989-12-01,"Hawaii",46 +1989-12-01,"Indiana",29656 1989-12-01,"Wyoming",1412 +1989-12-01,"New Jersey",33347 +1989-12-01,"Alaska",1656 +1989-12-01,"Montana",2518 +1989-12-01,"Georgia",22137 +1989-12-01,"Kansas",11694 +1989-12-01,"South Dakota",1764 +1989-12-01,"Colorado",11066 +1989-12-01,"Rhode Island",2744 +1989-12-01,"Kentucky",13034 +1989-12-01,"Connecticut",6991 +1989-12-01,"North Carolina",6866 +1989-12-01,"Maine",95 +1989-12-01,"Vermont",353 +1989-12-01,"Oklahoma",11039 +1989-12-01,"New York",57291 +1989-12-01,"Tennessee",8601 +1989-12-01,"Missouri",21588 +1989-12-01,"Nebraska",7297 +1989-12-01,"Massachusetts",16224 +1989-12-01,"Minnesota",20120 +1989-12-01,"Louisiana",9714 +1989-12-01,"Ohio",69403 +1989-12-01,"Iowa",12401 +1989-12-01,"Maryland",12076 +1989-12-01,"U.S.",790934 +1989-12-01,"Illinois",94362 +1989-12-01,"Pennsylvania",44960 +1989-12-01,"Oregon",2886 +1989-12-01,"California",63104 +1989-12-01,"Florida",1825 +1989-12-01,"Mississippi",4241 +1989-12-01,"New Mexico",3746 +1989-12-01,"Nevada",2359 +1989-12-01,"Utah",5923 +1989-12-01,"District of Columbia",2637 +1989-12-01,"Texas",43770 +1989-12-01,"Virginia",11473 +1989-12-01,"Michigan",60266 +1989-12-01,"Arizona",3945 +1989-12-01,"Idaho",1241 +1989-12-01,"South Carolina",3911 +1989-12-01,"Delaware",1085 +1990-01-01,"Mississippi",6060 +1990-01-01,"U.S.",788596 +1990-01-01,"Kansas",15037 +1990-01-01,"Missouri",24889 +1990-01-01,"Alaska",1745 +1990-01-01,"Iowa",14120 +1990-01-01,"Wisconsin",19353 +1990-01-01,"Maine",109 +1990-01-01,"Vermont",402 +1990-01-01,"New Mexico",5350 +1990-01-01,"Oklahoma",14092 +1990-01-01,"Colorado",15699 +1990-01-01,"Kentucky",9736 +1990-01-01,"West Virginia",6858 +1990-01-01,"Idaho",1445 +1990-01-01,"Maryland",13718 1990-01-01,"Wyoming",1832 +1990-01-01,"District of Columbia",3258 +1990-01-01,"Michigan",55931 +1990-01-01,"Illinois",71107 +1990-01-01,"Pennsylvania",46618 +1990-01-01,"Montana",2625 +1990-01-01,"New York",54059 +1990-01-01,"Utah",7169 +1990-01-01,"Georgia",16238 +1990-01-01,"Arkansas",8681 +1990-01-01,"Ohio",50210 +1990-01-01,"Arizona",5994 +1990-01-01,"Oregon",3807 +1990-01-01,"California",78572 +1990-01-01,"North Dakota",1661 +1990-01-01,"Virginia",10632 +1990-01-01,"New Hampshire",1118 +1990-01-01,"Louisiana",12359 +1990-01-01,"South Carolina",4887 +1990-01-01,"North Carolina",8535 +1990-01-01,"Massachusetts",20092 +1990-01-01,"Minnesota",18979 +1990-01-01,"Delaware",1613 +1990-01-01,"South Dakota",1769 +1990-01-01,"Hawaii",49 +1990-01-01,"Washington",5949 +1990-01-01,"Indiana",25597 +1990-01-01,"New Jersey",32311 +1990-01-01,"Nebraska",7593 +1990-01-01,"Rhode Island",3256 +1990-01-01,"Connecticut",6690 +1990-01-01,"Florida",2829 +1990-01-01,"Nevada",2988 +1990-01-01,"Texas",42528 +1990-01-01,"Tennessee",11556 +1990-01-01,"Alabama",10893 +1990-02-01,"Louisiana",6495 +1990-02-01,"Pennsylvania",34274 +1990-02-01,"Arizona",5582 +1990-02-01,"Idaho",1419 +1990-02-01,"North Carolina",4909 +1990-02-01,"California",73931 +1990-02-01,"Florida",1470 +1990-02-01,"Ohio",47643 +1990-02-01,"Iowa",10664 +1990-02-01,"Washington",6383 +1990-02-01,"Maryland",8971 +1990-02-01,"New York",52751 +1990-02-01,"U.S.",642665 +1990-02-01,"Minnesota",16064 +1990-02-01,"Alaska",2090 +1990-02-01,"Rhode Island",2532 +1990-02-01,"Hawaii",52 +1990-02-01,"South Carolina",2591 +1990-02-01,"Indiana",20159 1990-02-01,"Wyoming",1692 +1990-02-01,"Illinois",64322 +1990-02-01,"West Virginia",4690 +1990-02-01,"Nevada",3010 +1990-02-01,"Massachusetts",15721 +1990-02-01,"New Jersey",24403 +1990-02-01,"Virginia",7167 +1990-02-01,"Nebraska",6472 +1990-02-01,"South Dakota",1529 +1990-02-01,"Michigan",48164 +1990-02-01,"New Hampshire",890 +1990-02-01,"Montana",2421 +1990-02-01,"Oklahoma",10213 +1990-02-01,"District of Columbia",2193 +1990-02-01,"Texas",27019 +1990-02-01,"Tennessee",6514 +1990-02-01,"Delaware",1069 +1990-02-01,"Kansas",10951 +1990-02-01,"Arkansas",5556 +1990-02-01,"Colorado",13559 +1990-02-01,"Kentucky",8409 +1990-02-01,"Oregon",3786 +1990-02-01,"Vermont",327 +1990-02-01,"North Dakota",1440 +1990-02-01,"Georgia",11794 +1990-02-01,"Alabama",6493 +1990-02-01,"Connecticut",5673 +1990-02-01,"Wisconsin",17314 +1990-02-01,"Maine",86 +1990-02-01,"Mississippi",3307 +1990-02-01,"New Mexico",4743 +1990-02-01,"Utah",6949 +1990-02-01,"Missouri",16807 +1990-03-01,"South Dakota",1293 +1990-03-01,"Pennsylvania",31872 +1990-03-01,"West Virginia",4174 +1990-03-01,"Idaho",1078 +1990-03-01,"Wisconsin",14811 +1990-03-01,"North Carolina",4402 +1990-03-01,"California",60247 +1990-03-01,"Utah",5699 +1990-03-01,"District of Columbia",1984 +1990-03-01,"Massachusetts",14900 +1990-03-01,"Missouri",14381 +1990-03-01,"Iowa",9604 +1990-03-01,"Kentucky",6367 +1990-03-01,"Minnesota",13558 +1990-03-01,"South Carolina",2252 +1990-03-01,"Florida",1262 +1990-03-01,"Maine",82 +1990-03-01,"Oklahoma",8262 +1990-03-01,"New York",46615 +1990-03-01,"New Jersey",23115 +1990-03-01,"Texas",23049 +1990-03-01,"Georgia",10094 +1990-03-01,"Alabama",5254 +1990-03-01,"Delaware",1008 +1990-03-01,"Nebraska",5262 +1990-03-01,"Arkansas",4628 +1990-03-01,"Alaska",1756 +1990-03-01,"Ohio",39078 +1990-03-01,"Washington",5338 +1990-03-01,"Vermont",304 +1990-03-01,"Colorado",12631 +1990-03-01,"Rhode Island",2455 +1990-03-01,"Illinois",52008 +1990-03-01,"Hawaii",55 +1990-03-01,"Arizona",4035 +1990-03-01,"Connecticut",5000 +1990-03-01,"New Mexico",3855 +1990-03-01,"U.S.",551987 +1990-03-01,"New Hampshire",815 +1990-03-01,"Louisiana",5729 +1990-03-01,"Maryland",8796 +1990-03-01,"Montana",1900 1990-03-01,"Wyoming",1511 +1990-03-01,"Tennessee",5575 +1990-03-01,"North Dakota",1175 +1990-03-01,"Oregon",3219 +1990-03-01,"Mississippi",2793 +1990-03-01,"Indiana",17227 +1990-03-01,"Virginia",6755 +1990-03-01,"Michigan",43437 +1990-03-01,"Nevada",2208 +1990-03-01,"Kansas",9080 +1990-04-01,"Maryland",6861 +1990-04-01,"Wisconsin",10034 +1990-04-01,"Oklahoma",6640 +1990-04-01,"Utah",3287 +1990-04-01,"Missouri",11838 +1990-04-01,"New Hampshire",655 +1990-04-01,"Pennsylvania",24487 +1990-04-01,"Nevada",1127 +1990-04-01,"Indiana",13294 +1990-04-01,"U.S.",399624 +1990-04-01,"Minnesota",9519 +1990-04-01,"Virginia",4591 +1990-04-01,"Colorado",9873 +1990-04-01,"Alaska",1181 +1990-04-01,"Arizona",2197 +1990-04-01,"Idaho",630 +1990-04-01,"South Carolina",1538 +1990-04-01,"Connecticut",3708 +1990-04-01,"Florida",1048 1990-04-01,"Wyoming",1140 +1990-04-01,"New Jersey",17743 +1990-04-01,"South Dakota",959 +1990-04-01,"Michigan",31606 +1990-04-01,"Illinois",37441 +1990-04-01,"West Virginia",3403 +1990-04-01,"Montana",1459 +1990-04-01,"North Carolina",3296 +1990-04-01,"New Mexico",2541 +1990-04-01,"New York",34434 +1990-04-01,"Kansas",7528 +1990-04-01,"Rhode Island",1867 +1990-04-01,"Louisiana",4263 +1990-04-01,"Iowa",7337 +1990-04-01,"Washington",3315 +1990-04-01,"California",37602 +1990-04-01,"Vermont",219 +1990-04-01,"Mississippi",2205 +1990-04-01,"Massachusetts",11633 +1990-04-01,"Texas",15292 +1990-04-01,"Alabama",4143 +1990-04-01,"Nebraska",3959 +1990-04-01,"Ohio",28903 +1990-04-01,"Oregon",1820 +1990-04-01,"North Dakota",949 +1990-04-01,"Maine",67 +1990-04-01,"District of Columbia",1522 +1990-04-01,"Tennessee",4407 +1990-04-01,"Delaware",797 +1990-04-01,"Hawaii",50 +1990-04-01,"Kentucky",5007 +1990-04-01,"Georgia",6398 +1990-04-01,"Arkansas",3810 +1990-05-01,"Arizona",1427 +1990-05-01,"Kentucky",2448 +1990-05-01,"Oklahoma",4024 +1990-05-01,"Indiana",7054 +1990-05-01,"Texas",10830 +1990-05-01,"North Dakota",581 +1990-05-01,"Louisiana",2775 +1990-05-01,"Maryland",3558 +1990-05-01,"Massachusetts",7192 +1990-05-01,"Alabama",2657 +1990-05-01,"Nebraska",2276 +1990-05-01,"South Dakota",600 +1990-05-01,"California",30979 +1990-05-01,"District of Columbia",849 +1990-05-01,"New Jersey",9578 +1990-05-01,"Kansas",4486 +1990-05-01,"Colorado",7248 +1990-05-01,"Hawaii",45 +1990-05-01,"Ohio",17232 +1990-05-01,"West Virginia",1747 +1990-05-01,"Montana",1104 +1990-05-01,"Mississippi",1266 1990-05-01,"Wyoming",849 +1990-05-01,"Delaware",449 +1990-05-01,"Arkansas",2161 +1990-05-01,"South Carolina",737 +1990-05-01,"Connecticut",2203 +1990-05-01,"North Carolina",1604 +1990-05-01,"Tennessee",2119 +1990-05-01,"Michigan",19275 +1990-05-01,"Rhode Island",1218 +1990-05-01,"Pennsylvania",13211 +1990-05-01,"Iowa",4172 +1990-05-01,"Oregon",1476 +1990-05-01,"Washington",2575 +1990-05-01,"Florida",810 +1990-05-01,"Maine",48 +1990-05-01,"Minnesota",5540 +1990-05-01,"Missouri",6241 +1990-05-01,"New Hampshire",395 +1990-05-01,"New Mexico",1671 +1990-05-01,"New York",20503 +1990-05-01,"Nevada",862 +1990-05-01,"Utah",2576 +1990-05-01,"Georgia",3781 +1990-05-01,"U.S.",248272 +1990-05-01,"Virginia",2400 +1990-05-01,"Alaska",771 +1990-05-01,"Illinois",23464 +1990-05-01,"Idaho",475 +1990-05-01,"Wisconsin",6598 +1990-05-01,"Vermont",130 +1990-06-01,"South Dakota",346 +1990-06-01,"Oregon",1206 +1990-06-01,"Idaho",360 +1990-06-01,"Wisconsin",3564 +1990-06-01,"Florida",699 +1990-06-01,"Tennessee",1304 +1990-06-01,"U.S.",160823 +1990-06-01,"Alabama",1625 +1990-06-01,"Ohio",9850 +1990-06-01,"West Virginia",1055 +1990-06-01,"South Carolina",439 +1990-06-01,"Maryland",2659 +1990-06-01,"Nevada",775 +1990-06-01,"Kansas",2458 +1990-06-01,"Alaska",548 +1990-06-01,"New Hampshire",262 +1990-06-01,"Iowa",2452 +1990-06-01,"Connecticut",1345 +1990-06-01,"District of Columbia",596 +1990-06-01,"Texas",8563 +1990-06-01,"Colorado",4191 +1990-06-01,"Louisiana",2264 +1990-06-01,"Montana",701 +1990-06-01,"Indiana",3980 +1990-06-01,"Virginia",1732 +1990-06-01,"Missouri",3783 +1990-06-01,"Arkansas",1367 +1990-06-01,"Hawaii",49 +1990-06-01,"Oklahoma",2206 +1990-06-01,"Massachusetts",4891 +1990-06-01,"Nebraska",1294 +1990-06-01,"Michigan",11093 +1990-06-01,"Rhode Island",762 +1990-06-01,"Pennsylvania",8393 +1990-06-01,"Utah",1880 +1990-06-01,"New Jersey",6157 +1990-06-01,"North Dakota",337 +1990-06-01,"Kentucky",1599 +1990-06-01,"Vermont",82 +1990-06-01,"Georgia",3153 +1990-06-01,"Illinois",12361 +1990-06-01,"Arizona",1145 +1990-06-01,"Washington",1945 +1990-06-01,"North Carolina",957 +1990-06-01,"California",25125 +1990-06-01,"Maine",30 +1990-06-01,"Mississippi",922 +1990-06-01,"New Mexico",1043 +1990-06-01,"New York",13138 1990-06-01,"Wyoming",585 +1990-06-01,"Minnesota",3296 +1990-06-01,"Delaware",260 +1990-07-01,"Hawaii",48 +1990-07-01,"West Virginia",724 +1990-07-01,"Connecticut",1100 +1990-07-01,"Maryland",2203 +1990-07-01,"Nevada",562 +1990-07-01,"Indiana",3042 +1990-07-01,"U.S.",126501 +1990-07-01,"Kansas",1819 +1990-07-01,"Missouri",2946 +1990-07-01,"Michigan",7779 +1990-07-01,"South Carolina",366 +1990-07-01,"Wisconsin",2344 +1990-07-01,"District of Columbia",490 +1990-07-01,"South Dakota",231 +1990-07-01,"New Hampshire",145 +1990-07-01,"Illinois",10424 +1990-07-01,"Arizona",931 +1990-07-01,"Washington",1050 +1990-07-01,"Florida",661 +1990-07-01,"New Mexico",795 1990-07-01,"Wyoming",320 +1990-07-01,"Virginia",1391 +1990-07-01,"Idaho",173 +1990-07-01,"North Carolina",763 +1990-07-01,"Oklahoma",1679 +1990-07-01,"Alabama",1411 +1990-07-01,"Vermont",43 +1990-07-01,"New York",10258 +1990-07-01,"Massachusetts",3161 +1990-07-01,"Tennessee",993 +1990-07-01,"Georgia",2914 +1990-07-01,"Delaware",183 +1990-07-01,"Nebraska",1056 +1990-07-01,"Alaska",409 +1990-07-01,"Oregon",704 +1990-07-01,"Mississippi",850 +1990-07-01,"Texas",7665 +1990-07-01,"Rhode Island",481 +1990-07-01,"Montana",389 +1990-07-01,"California",22555 +1990-07-01,"Maine",20 +1990-07-01,"Utah",1314 +1990-07-01,"Arkansas",1154 +1990-07-01,"Colorado",2478 +1990-07-01,"Louisiana",2028 +1990-07-01,"Pennsylvania",5973 +1990-07-01,"Ohio",7886 +1990-07-01,"Iowa",1633 +1990-07-01,"Kentucky",1376 +1990-07-01,"New Jersey",5017 +1990-07-01,"North Dakota",191 +1990-07-01,"Minnesota",2372 +1990-08-01,"Michigan",8253 +1990-08-01,"Colorado",2357 +1990-08-01,"Louisiana",1973 +1990-08-01,"Pennsylvania",5697 +1990-08-01,"Arizona",856 +1990-08-01,"Tennessee",963 +1990-08-01,"Georgia",2900 +1990-08-01,"Alabama",1334 +1990-08-01,"New Hampshire",128 +1990-08-01,"Montana",392 +1990-08-01,"North Carolina",732 +1990-08-01,"Oklahoma",1599 +1990-08-01,"Texas",7565 +1990-08-01,"Minnesota",2281 +1990-08-01,"Arkansas",1111 +1990-08-01,"Hawaii",39 +1990-08-01,"Maryland",1986 +1990-08-01,"Wisconsin",2475 +1990-08-01,"Mississippi",809 +1990-08-01,"U.S.",121276 +1990-08-01,"South Dakota",215 +1990-08-01,"Alaska",407 +1990-08-01,"South Carolina",346 +1990-08-01,"Florida",603 +1990-08-01,"Kansas",1678 +1990-08-01,"West Virginia",696 +1990-08-01,"California",22334 +1990-08-01,"Maine",19 +1990-08-01,"Massachusetts",2635 +1990-08-01,"Delaware",166 +1990-08-01,"Nebraska",947 +1990-08-01,"Kentucky",1288 +1990-08-01,"Washington",795 +1990-08-01,"Idaho",160 +1990-08-01,"Connecticut",931 +1990-08-01,"Indiana",3116 1990-08-01,"Wyoming",288 +1990-08-01,"North Dakota",167 +1990-08-01,"Rhode Island",480 +1990-08-01,"Iowa",1529 +1990-08-01,"Oregon",560 +1990-08-01,"Vermont",40 +1990-08-01,"New Mexico",755 +1990-08-01,"New York",8933 +1990-08-01,"Utah",1236 +1990-08-01,"District of Columbia",433 +1990-08-01,"New Jersey",4515 +1990-08-01,"Virginia",1367 +1990-08-01,"Illinois",10802 +1990-08-01,"Ohio",7153 +1990-08-01,"Nevada",520 +1990-08-01,"Missouri",2713 +1990-09-01,"South Dakota",237 +1990-09-01,"New Mexico",811 +1990-09-01,"Maryland",2069 +1990-09-01,"California",22093 +1990-09-01,"Nevada",521 +1990-09-01,"Minnesota",2621 +1990-09-01,"Missouri",2876 +1990-09-01,"Michigan",9336 +1990-09-01,"Alaska",527 +1990-09-01,"West Virginia",800 +1990-09-01,"Connecticut",1119 +1990-09-01,"North Carolina",752 +1990-09-01,"U.S.",132115 +1990-09-01,"Kansas",1770 +1990-09-01,"Rhode Island",539 +1990-09-01,"Pennsylvania",6665 +1990-09-01,"Hawaii",44 +1990-09-01,"Ohio",8553 +1990-09-01,"Arizona",926 +1990-09-01,"Montana",450 +1990-09-01,"Florida",618 +1990-09-01,"New Jersey",5336 +1990-09-01,"Texas",7536 +1990-09-01,"Georgia",2979 +1990-09-01,"Delaware",190 +1990-09-01,"Arkansas",1170 +1990-09-01,"Iowa",1599 +1990-09-01,"Wisconsin",3081 +1990-09-01,"Mississippi",798 +1990-09-01,"New York",10089 +1990-09-01,"Tennessee",1017 +1990-09-01,"Colorado",2331 +1990-09-01,"Louisiana",2033 +1990-09-01,"Washington",941 1990-09-01,"Wyoming",256 +1990-09-01,"Utah",1222 +1990-09-01,"District of Columbia",435 +1990-09-01,"Oregon",532 +1990-09-01,"Maine",22 +1990-09-01,"Vermont",51 +1990-09-01,"Oklahoma",1563 +1990-09-01,"Massachusetts",2990 +1990-09-01,"North Dakota",220 +1990-09-01,"New Hampshire",162 +1990-09-01,"Illinois",12633 +1990-09-01,"Kentucky",1375 +1990-09-01,"Idaho",186 +1990-09-01,"South Carolina",375 +1990-09-01,"Indiana",3684 +1990-09-01,"Alabama",1356 +1990-09-01,"Virginia",1595 +1990-09-01,"Nebraska",1034 +1990-10-01,"South Dakota",527 +1990-10-01,"Alaska",929 +1990-10-01,"Illinois",30333 +1990-10-01,"Hawaii",42 +1990-10-01,"West Virginia",1353 +1990-10-01,"Connecticut",1660 +1990-10-01,"Montana",1040 +1990-10-01,"Kansas",2515 +1990-10-01,"Missouri",4467 +1990-10-01,"Rhode Island",688 +1990-10-01,"Arizona",1044 +1990-10-01,"Kentucky",3306 +1990-10-01,"Washington",1966 +1990-10-01,"South Carolina",483 +1990-10-01,"Utah",1932 +1990-10-01,"North Dakota",398 +1990-10-01,"U.S.",213538 +1990-10-01,"Alabama",1529 +1990-10-01,"Michigan",17937 +1990-10-01,"Oklahoma",2416 1990-10-01,"Wyoming",484 +1990-10-01,"Georgia",5357 +1990-10-01,"Nebraska",1896 +1990-10-01,"Colorado",3450 +1990-10-01,"Wisconsin",6656 +1990-10-01,"Mississippi",948 +1990-10-01,"District of Columbia",542 +1990-10-01,"Oregon",893 +1990-10-01,"Maryland",2672 +1990-10-01,"California",24435 +1990-10-01,"Florida",633 +1990-10-01,"New Jersey",6708 +1990-10-01,"Pennsylvania",10603 +1990-10-01,"Iowa",2866 +1990-10-01,"Idaho",349 +1990-10-01,"North Carolina",1070 +1990-10-01,"Vermont",95 +1990-10-01,"Indiana",8499 +1990-10-01,"Massachusetts",3726 +1990-10-01,"New Hampshire",203 +1990-10-01,"Ohio",16806 +1990-10-01,"New Mexico",947 +1990-10-01,"New York",14793 +1990-10-01,"Texas",10268 +1990-10-01,"Tennessee",1582 +1990-10-01,"Virginia",2086 +1990-10-01,"Arkansas",1479 +1990-10-01,"Louisiana",2349 +1990-10-01,"Maine",27 +1990-10-01,"Nevada",717 +1990-10-01,"Minnesota",5611 +1990-10-01,"Delaware",222 +1990-11-01,"Colorado",7142 +1990-11-01,"California",40091 +1990-11-01,"Florida",905 +1990-11-01,"Oklahoma",4675 +1990-11-01,"New York",29074 +1990-11-01,"New Jersey",14180 +1990-11-01,"Georgia",9115 +1990-11-01,"Minnesota",9947 +1990-11-01,"Kansas",5082 +1990-11-01,"Kentucky",5741 +1990-11-01,"Maine",56 +1990-11-01,"Vermont",183 +1990-11-01,"New Mexico",1874 +1990-11-01,"South Dakota",973 +1990-11-01,"Louisiana",4380 +1990-11-01,"Illinois",40903 +1990-11-01,"Maryland",4832 +1990-11-01,"Mississippi",2070 +1990-11-01,"Massachusetts",7713 +1990-11-01,"Ohio",29783 +1990-11-01,"West Virginia",3031 +1990-11-01,"Wisconsin",10282 +1990-11-01,"Nevada",1270 +1990-11-01,"Delaware",483 +1990-11-01,"Arkansas",3267 +1990-11-01,"Hawaii",45 +1990-11-01,"Idaho",896 +1990-11-01,"North Carolina",2985 +1990-11-01,"Tennessee",4018 +1990-11-01,"North Dakota",828 +1990-11-01,"U.S.",375652 +1990-11-01,"Missouri",9332 +1990-11-01,"Alaska",1586 +1990-11-01,"Arizona",1711 +1990-11-01,"Iowa",5772 +1990-11-01,"Oregon",1973 +1990-11-01,"Montana",1694 +1990-11-01,"Indiana",13130 1990-11-01,"Wyoming",973 +1990-11-01,"Michigan",29517 +1990-11-01,"New Hampshire",465 +1990-11-01,"Rhode Island",1353 +1990-11-01,"Texas",16744 +1990-11-01,"Nebraska",3458 +1990-11-01,"Pennsylvania",20874 +1990-11-01,"Washington",3946 +1990-11-01,"South Carolina",1605 +1990-11-01,"Connecticut",3201 +1990-11-01,"Utah",3699 +1990-11-01,"District of Columbia",1005 +1990-11-01,"Alabama",3360 +1990-11-01,"Virginia",4429 +1990-12-01,"Nevada",2593 +1990-12-01,"District of Columbia",1828 +1990-12-01,"Massachusetts",12157 +1990-12-01,"New Jersey",22596 +1990-12-01,"Delaware",830 +1990-12-01,"New Hampshire",665 +1990-12-01,"Louisiana",6745 +1990-12-01,"Hawaii",48 +1990-12-01,"Ohio",45224 +1990-12-01,"Maryland",8102 +1990-12-01,"Vermont",273 +1990-12-01,"Texas",33597 +1990-12-01,"Nebraska",6251 +1990-12-01,"Alaska",2216 +1990-12-01,"Arizona",4473 +1990-12-01,"West Virginia",4069 +1990-12-01,"Oklahoma",8248 +1990-12-01,"U.S.",630275 +1990-12-01,"Alabama",5355 +1990-12-01,"Kansas",8922 +1990-12-01,"Missouri",15677 +1990-12-01,"South Carolina",2776 +1990-12-01,"Connecticut",4817 +1990-12-01,"Wisconsin",17537 +1990-12-01,"New York",43341 +1990-12-01,"Utah",6463 +1990-12-01,"Tennessee",6293 +1990-12-01,"Idaho",1397 +1990-12-01,"Florida",1438 +1990-12-01,"Maine",83 +1990-12-01,"New Mexico",3762 +1990-12-01,"Georgia",15540 +1990-12-01,"Arkansas",4804 +1990-12-01,"Michigan",45069 +1990-12-01,"Colorado",10956 +1990-12-01,"Rhode Island",2093 +1990-12-01,"Iowa",9631 +1990-12-01,"North Carolina",4998 +1990-12-01,"South Dakota",1524 +1990-12-01,"Illinois",76365 +1990-12-01,"Pennsylvania",31349 +1990-12-01,"Oregon",3407 +1990-12-01,"Montana",2673 +1990-12-01,"Kentucky",9412 +1990-12-01,"Washington",6144 +1990-12-01,"California",76544 +1990-12-01,"Mississippi",3018 +1990-12-01,"Indiana",21711 1990-12-01,"Wyoming",1556 +1990-12-01,"North Dakota",1235 +1990-12-01,"Minnesota",17178 +1990-12-01,"Virginia",7292 +1991-01-01,"Hawaii",50 +1991-01-01,"Idaho",2145 +1991-01-01,"Connecticut",6359 +1991-01-01,"Nevada",3919 +1991-01-01,"Indiana",28978 +1991-01-01,"Minnesota",22882 +1991-01-01,"Arkansas",8475 +1991-01-01,"Arizona",6284 +1991-01-01,"West Virginia",5561 +1991-01-01,"North Carolina",7073 +1991-01-01,"New Mexico",5664 +1991-01-01,"North Dakota",2019 +1991-01-01,"Delaware",1249 +1991-01-01,"Michigan",61349 +1991-01-01,"Texas",47614 +1991-01-01,"Georgia",18493 +1991-01-01,"New Hampshire",905 +1991-01-01,"Pennsylvania",42638 +1991-01-01,"California",81885 +1991-01-01,"Florida",1595 +1991-01-01,"Oklahoma",15898 +1991-01-01,"New York",55999 +1991-01-01,"District of Columbia",2703 +1991-01-01,"New Jersey",30731 +1991-01-01,"Iowa",16033 +1991-01-01,"Kentucky",11629 +1991-01-01,"Washington",8514 +1991-01-01,"Maryland",11849 +1991-01-01,"Wisconsin",23338 +1991-01-01,"Mississippi",4628 1991-01-01,"Wyoming",2238 +1991-01-01,"Utah",9582 +1991-01-01,"Massachusetts",16305 +1991-01-01,"Kansas",16989 +1991-01-01,"Colorado",17902 +1991-01-01,"Illinois",92323 +1991-01-01,"Oregon",5334 +1991-01-01,"South Carolina",3764 +1991-01-01,"U.S.",843832 +1991-01-01,"Rhode Island",2788 +1991-01-01,"Louisiana",10169 +1991-01-01,"Maine",106 +1991-01-01,"Vermont",381 +1991-01-01,"South Dakota",2199 +1991-01-01,"Alaska",1931 +1991-01-01,"Ohio",58400 +1991-01-01,"Montana",3533 +1991-01-01,"Tennessee",9950 +1991-01-01,"Alabama",7299 +1991-01-01,"Virginia",9653 +1991-01-01,"Missouri",27020 +1991-01-01,"Nebraska",9508 +1991-02-01,"South Dakota",1522 +1991-02-01,"Michigan",49685 +1991-02-01,"Maine",105 +1991-02-01,"New Jersey",27476 +1991-02-01,"Alabama",8327 +1991-02-01,"Delaware",1217 +1991-02-01,"West Virginia",5527 +1991-02-01,"New York",51173 +1991-02-01,"Ohio",51151 +1991-02-01,"Iowa",11730 +1991-02-01,"South Carolina",3740 +1991-02-01,"Vermont",366 +1991-02-01,"Georgia",13332 +1991-02-01,"U.S.",664218 +1991-02-01,"Virginia",9064 +1991-02-01,"New Hampshire",943 +1991-02-01,"Rhode Island",2714 +1991-02-01,"Pennsylvania",38146 +1991-02-01,"Arizona",4569 +1991-02-01,"Washington",6250 +1991-02-01,"Connecticut",5707 +1991-02-01,"Wisconsin",17258 +1991-02-01,"Mississippi",4348 +1991-02-01,"Oklahoma",11165 +1991-02-01,"District of Columbia",2543 +1991-02-01,"Tennessee",8803 +1991-02-01,"Nebraska",6544 +1991-02-01,"Alaska",1847 +1991-02-01,"Hawaii",50 +1991-02-01,"Oregon",3529 +1991-02-01,"Idaho",1469 +1991-02-01,"Maryland",10304 +1991-02-01,"Montana",2139 +1991-02-01,"California",52982 1991-02-01,"Wyoming",1668 +1991-02-01,"Utah",7276 +1991-02-01,"Minnesota",16115 +1991-02-01,"Kansas",12186 +1991-02-01,"Colorado",15114 +1991-02-01,"Kentucky",9644 +1991-02-01,"Massachusetts",16628 +1991-02-01,"Texas",31260 +1991-02-01,"North Dakota",1528 +1991-02-01,"Missouri",20480 +1991-02-01,"Illinois",62627 +1991-02-01,"North Carolina",6819 +1991-02-01,"Louisiana",8812 +1991-02-01,"Florida",1811 +1991-02-01,"New Mexico",4784 +1991-02-01,"Nevada",2512 +1991-02-01,"Indiana",22309 +1991-02-01,"Arkansas",6922 +1991-03-01,"Michigan",43914 +1991-03-01,"Pennsylvania",32729 +1991-03-01,"West Virginia",4858 +1991-03-01,"Idaho",1059 +1991-03-01,"Wisconsin",15734 +1991-03-01,"Vermont",299 +1991-03-01,"Massachusetts",14673 +1991-03-01,"Texas",22702 +1991-03-01,"Alaska",1477 +1991-03-01,"Ohio",42595 +1991-03-01,"Connecticut",5011 +1991-03-01,"Maryland",9016 +1991-03-01,"California",60602 +1991-03-01,"Oklahoma",8216 +1991-03-01,"Delaware",1079 +1991-03-01,"New Hampshire",799 +1991-03-01,"Rhode Island",2448 +1991-03-01,"Oregon",3075 +1991-03-01,"Montana",2087 +1991-03-01,"Missouri",15212 +1991-03-01,"South Dakota",1341 +1991-03-01,"Colorado",11686 +1991-03-01,"Kentucky",7168 +1991-03-01,"Nevada",2116 +1991-03-01,"New Jersey",24120 +1991-03-01,"U.S.",573093 +1991-03-01,"Arkansas",5073 +1991-03-01,"Illinois",54680 +1991-03-01,"Iowa",9458 +1991-03-01,"Florida",1568 +1991-03-01,"Mississippi",3390 +1991-03-01,"New York",47603 +1991-03-01,"Utah",5715 +1991-03-01,"Virginia",7241 +1991-03-01,"Hawaii",49 +1991-03-01,"South Carolina",2875 +1991-03-01,"Maine",94 +1991-03-01,"District of Columbia",2076 +1991-03-01,"Tennessee",6940 +1991-03-01,"North Dakota",1254 +1991-03-01,"Alabama",6724 +1991-03-01,"Arizona",4018 +1991-03-01,"Washington",5558 +1991-03-01,"Indiana",18772 1991-03-01,"Wyoming",1340 +1991-03-01,"Georgia",10872 +1991-03-01,"Minnesota",14249 +1991-03-01,"Louisiana",6321 +1991-03-01,"North Carolina",5529 +1991-03-01,"New Mexico",3632 +1991-03-01,"Kansas",8833 +1991-03-01,"Nebraska",5212 +1991-04-01,"Kentucky",3430 +1991-04-01,"Idaho",909 1991-04-01,"Wyoming",1124 +1991-04-01,"Utah",4514 +1991-04-01,"Rhode Island",1758 +1991-04-01,"Iowa",5924 +1991-04-01,"North Carolina",2963 +1991-04-01,"Maine",76 +1991-04-01,"Oklahoma",4711 +1991-04-01,"New York",33457 +1991-04-01,"Michigan",29081 +1991-04-01,"Colorado",9187 +1991-04-01,"Ohio",25951 +1991-04-01,"New Mexico",3030 +1991-04-01,"Massachusetts",11075 +1991-04-01,"New Jersey",16279 +1991-04-01,"Tennessee",3245 +1991-04-01,"Alabama",3891 +1991-04-01,"Alaska",1258 +1991-04-01,"Arizona",3214 +1991-04-01,"West Virginia",2876 +1991-04-01,"Wisconsin",9699 +1991-04-01,"Montana",1585 +1991-04-01,"California",46136 +1991-04-01,"District of Columbia",1493 +1991-04-01,"North Dakota",859 +1991-04-01,"Minnesota",8351 +1991-04-01,"Missouri",7969 +1991-04-01,"South Dakota",845 +1991-04-01,"Nevada",1876 +1991-04-01,"Delaware",795 +1991-04-01,"Kansas",5415 +1991-04-01,"Hawaii",51 +1991-04-01,"Oregon",2631 +1991-04-01,"Florida",1078 +1991-04-01,"Vermont",225 +1991-04-01,"Indiana",10680 +1991-04-01,"U.S.",372922 +1991-04-01,"Nebraska",3123 +1991-04-01,"Louisiana",3668 +1991-04-01,"Illinois",32273 +1991-04-01,"Connecticut",3432 +1991-04-01,"Mississippi",1903 +1991-04-01,"New Hampshire",599 +1991-04-01,"Pennsylvania",22324 +1991-04-01,"Washington",4714 +1991-04-01,"South Carolina",1318 +1991-04-01,"Maryland",5908 +1991-04-01,"Texas",13394 +1991-04-01,"Georgia",5129 +1991-04-01,"Virginia",4516 +1991-04-01,"Arkansas",2980 +1991-05-01,"Louisiana",2540 +1991-05-01,"Arizona",1620 +1991-05-01,"Washington",3090 +1991-05-01,"Wisconsin",6053 +1991-05-01,"North Dakota",671 +1991-05-01,"Missouri",4851 +1991-05-01,"Alaska",907 +1991-05-01,"Maryland",3199 +1991-05-01,"Montana",1244 +1991-05-01,"California",34795 +1991-05-01,"Vermont",124 1991-05-01,"Wyoming",922 +1991-05-01,"New Jersey",8515 +1991-05-01,"New Hampshire",359 +1991-05-01,"Hawaii",46 +1991-05-01,"Kentucky",1805 +1991-05-01,"Alabama",2059 +1991-05-01,"Ohio",13621 +1991-05-01,"West Virginia",1372 +1991-05-01,"South Carolina",604 +1991-05-01,"Maine",46 +1991-05-01,"District of Columbia",804 +1991-05-01,"Virginia",2150 +1991-05-01,"Colorado",7108 +1991-05-01,"Rhode Island",1087 +1991-05-01,"Illinois",18197 +1991-05-01,"North Carolina",1490 +1991-05-01,"Mississippi",1117 +1991-05-01,"New Mexico",1732 +1991-05-01,"Nevada",1208 +1991-05-01,"Texas",9031 +1991-05-01,"Arkansas",1671 +1991-05-01,"Michigan",18655 +1991-05-01,"Idaho",696 +1991-05-01,"Connecticut",1976 +1991-05-01,"Oklahoma",2853 +1991-05-01,"Massachusetts",6325 +1991-05-01,"Kansas",3570 +1991-05-01,"South Dakota",645 +1991-05-01,"New York",19738 +1991-05-01,"Indiana",5630 +1991-05-01,"Utah",3544 +1991-05-01,"Tennessee",1629 +1991-05-01,"Delaware",409 +1991-05-01,"Nebraska",2234 +1991-05-01,"Pennsylvania",11101 +1991-05-01,"Iowa",3559 +1991-05-01,"Oregon",1936 +1991-05-01,"Florida",766 +1991-05-01,"Georgia",3781 +1991-05-01,"U.S.",228742 +1991-05-01,"Minnesota",5656 +1991-06-01,"Hawaii",45 +1991-06-01,"Arizona",1209 +1991-06-01,"West Virginia",707 +1991-06-01,"North Carolina",931 +1991-06-01,"New York",11231 +1991-06-01,"Indiana",3174 +1991-06-01,"Georgia",3092 +1991-06-01,"Minnesota",2804 +1991-06-01,"Arkansas",1261 +1991-06-01,"Kentucky",1378 +1991-06-01,"Florida",714 +1991-06-01,"Maine",32 +1991-06-01,"Oklahoma",1985 +1991-06-01,"Nebraska",1163 +1991-06-01,"Louisiana",2264 +1991-06-01,"Ohio",7982 +1991-06-01,"Idaho",393 +1991-06-01,"South Carolina",439 +1991-06-01,"Maryland",2317 +1991-06-01,"Mississippi",882 +1991-06-01,"New Mexico",1079 1991-06-01,"Wyoming",463 +1991-06-01,"Delaware",211 +1991-06-01,"Virginia",1621 +1991-06-01,"Illinois",11041 +1991-06-01,"Wisconsin",2500 +1991-06-01,"District of Columbia",503 +1991-06-01,"Texas",8293 +1991-06-01,"Tennessee",1128 +1991-06-01,"Alabama",1583 +1991-06-01,"Rhode Island",565 +1991-06-01,"Montana",608 +1991-06-01,"Vermont",64 +1991-06-01,"Utah",2041 +1991-06-01,"Kansas",1982 +1991-06-01,"Missouri",3001 +1991-06-01,"South Dakota",301 +1991-06-01,"Michigan",10014 +1991-06-01,"Alaska",662 +1991-06-01,"New Hampshire",189 +1991-06-01,"Connecticut",1173 +1991-06-01,"New Jersey",5361 +1991-06-01,"Colorado",3600 +1991-06-01,"Oregon",1461 +1991-06-01,"Washington",2292 +1991-06-01,"California",28515 +1991-06-01,"North Dakota",277 +1991-06-01,"Pennsylvania",6704 +1991-06-01,"Iowa",1991 +1991-06-01,"Nevada",853 +1991-06-01,"Massachusetts",3761 +1991-06-01,"U.S.",147839 +1991-07-01,"Alaska",470 +1991-07-01,"Louisiana",1911 +1991-07-01,"Hawaii",40 +1991-07-01,"Oregon",811 +1991-07-01,"Idaho",194 +1991-07-01,"Maryland",2173 +1991-07-01,"Wisconsin",2753 +1991-07-01,"Alabama",1434 +1991-07-01,"Montana",455 +1991-07-01,"Oklahoma",1747 +1991-07-01,"District of Columbia",460 +1991-07-01,"Massachusetts",3014 +1991-07-01,"Texas",7856 +1991-07-01,"Colorado",2569 +1991-07-01,"Iowa",1473 +1991-07-01,"Vermont",46 +1991-07-01,"Nevada",622 +1991-07-01,"Tennessee",1034 +1991-07-01,"Georgia",2984 +1991-07-01,"Delaware",169 +1991-07-01,"Kansas",1737 +1991-07-01,"Kentucky",1278 +1991-07-01,"Washington",1292 +1991-07-01,"California",24971 +1991-07-01,"North Dakota",196 +1991-07-01,"U.S.",126156 +1991-07-01,"Virginia",1400 +1991-07-01,"New Hampshire",141 +1991-07-01,"Mississippi",846 +1991-07-01,"Utah",1348 +1991-07-01,"Illinois",10168 +1991-07-01,"Pennsylvania",5716 +1991-07-01,"Ohio",6897 +1991-07-01,"South Carolina",375 +1991-07-01,"New York",9292 +1991-07-01,"Arkansas",1103 +1991-07-01,"West Virginia",629 +1991-07-01,"Connecticut",915 +1991-07-01,"North Carolina",748 +1991-07-01,"Maine",24 +1991-07-01,"New Mexico",880 +1991-07-01,"New Jersey",4707 +1991-07-01,"Minnesota",2303 +1991-07-01,"South Dakota",227 +1991-07-01,"Michigan",7555 +1991-07-01,"Rhode Island",498 +1991-07-01,"Arizona",1042 +1991-07-01,"Florida",653 +1991-07-01,"Indiana",2936 1991-07-01,"Wyoming",293 +1991-07-01,"Missouri",2751 +1991-07-01,"Nebraska",1019 +1991-08-01,"Florida",610 +1991-08-01,"Tennessee",961 +1991-08-01,"Kansas",1634 +1991-08-01,"Michigan",6594 +1991-08-01,"Colorado",2283 +1991-08-01,"Maine",19 +1991-08-01,"Mississippi",811 +1991-08-01,"New Mexico",778 +1991-08-01,"Oklahoma",1573 1991-08-01,"Wyoming",259 +1991-08-01,"Massachusetts",2723 +1991-08-01,"New Jersey",4563 +1991-08-01,"Georgia",2965 +1991-08-01,"Alabama",1368 +1991-08-01,"Arizona",862 +1991-08-01,"Oregon",595 +1991-08-01,"Washington",952 +1991-08-01,"Maryland",2031 +1991-08-01,"Wisconsin",2464 +1991-08-01,"Montana",382 +1991-08-01,"North Carolina",756 +1991-08-01,"Indiana",2947 +1991-08-01,"South Dakota",215 +1991-08-01,"Rhode Island",525 +1991-08-01,"Louisiana",1900 +1991-08-01,"Kentucky",1168 +1991-08-01,"New York",8622 +1991-08-01,"North Dakota",193 +1991-08-01,"Minnesota",2268 +1991-08-01,"Virginia",1365 +1991-08-01,"Hawaii",39 +1991-08-01,"West Virginia",622 +1991-08-01,"Vermont",40 +1991-08-01,"Nevada",546 +1991-08-01,"Utah",1269 +1991-08-01,"Texas",7440 +1991-08-01,"U.S.",117851 +1991-08-01,"Delaware",186 +1991-08-01,"Missouri",2597 +1991-08-01,"Alaska",438 +1991-08-01,"Pennsylvania",5399 +1991-08-01,"Idaho",179 +1991-08-01,"Connecticut",938 +1991-08-01,"Nebraska",953 +1991-08-01,"New Hampshire",127 +1991-08-01,"Illinois",10122 +1991-08-01,"Ohio",6230 +1991-08-01,"Iowa",1511 +1991-08-01,"South Carolina",370 +1991-08-01,"California",22944 +1991-08-01,"District of Columbia",432 +1991-08-01,"Arkansas",1085 +1991-09-01,"Alaska",600 +1991-09-01,"Illinois",16099 +1991-09-01,"Oregon",582 +1991-09-01,"Maryland",2161 +1991-09-01,"North Carolina",782 +1991-09-01,"New York",9542 +1991-09-01,"Virginia",1418 +1991-09-01,"Oklahoma",1741 +1991-09-01,"Nevada",547 +1991-09-01,"Tennessee",1069 +1991-09-01,"Arkansas",1170 +1991-09-01,"Colorado",2367 +1991-09-01,"West Virginia",765 +1991-09-01,"Idaho",217 +1991-09-01,"Connecticut",1086 +1991-09-01,"U.S.",137994 +1991-09-01,"Nebraska",1085 +1991-09-01,"New Hampshire",156 +1991-09-01,"Rhode Island",491 +1991-09-01,"Arizona",900 +1991-09-01,"Kentucky",1487 +1991-09-01,"Wisconsin",3648 +1991-09-01,"Montana",559 +1991-09-01,"Utah",1347 +1991-09-01,"Massachusetts",3036 +1991-09-01,"Minnesota",3236 +1991-09-01,"Hawaii",44 +1991-09-01,"Maine",26 +1991-09-01,"Mississippi",824 +1991-09-01,"New Mexico",811 +1991-09-01,"Indiana",3906 +1991-09-01,"District of Columbia",463 +1991-09-01,"New Jersey",5168 +1991-09-01,"South Carolina",390 +1991-09-01,"Vermont",49 +1991-09-01,"Delaware",175 +1991-09-01,"Kansas",1689 +1991-09-01,"Michigan",9297 +1991-09-01,"Ohio",7805 +1991-09-01,"Washington",1105 +1991-09-01,"California",23383 +1991-09-01,"Florida",646 +1991-09-01,"North Dakota",224 +1991-09-01,"Georgia",2893 +1991-09-01,"South Dakota",286 +1991-09-01,"Louisiana",1974 +1991-09-01,"Pennsylvania",6792 +1991-09-01,"Iowa",1757 1991-09-01,"Wyoming",274 +1991-09-01,"Texas",7768 +1991-09-01,"Alabama",1389 +1991-09-01,"Missouri",2764 +1991-10-01,"South Dakota",609 +1991-10-01,"New Hampshire",249 +1991-10-01,"West Virginia",1738 +1991-10-01,"Maryland",3691 +1991-10-01,"Florida",659 +1991-10-01,"Oklahoma",2327 +1991-10-01,"Kansas",2494 +1991-10-01,"Virginia",2516 +1991-10-01,"Rhode Island",870 +1991-10-01,"New Mexico",1052 +1991-10-01,"District of Columbia",587 +1991-10-01,"Texas",10188 +1991-10-01,"Minnesota",6654 +1991-10-01,"Arkansas",1524 +1991-10-01,"Pennsylvania",13403 +1991-10-01,"Hawaii",42 +1991-10-01,"Connecticut",1943 +1991-10-01,"Vermont",110 +1991-10-01,"Nevada",680 +1991-10-01,"U.S.",225108 +1991-10-01,"South Carolina",645 +1991-10-01,"Wisconsin",7348 1991-10-01,"Wyoming",568 +1991-10-01,"New Jersey",8750 +1991-10-01,"Nebraska",2062 +1991-10-01,"Michigan",18491 +1991-10-01,"Alaska",926 +1991-10-01,"Illinois",27231 +1991-10-01,"Ohio",17321 +1991-10-01,"Washington",1716 +1991-10-01,"Utah",1802 +1991-10-01,"North Dakota",441 +1991-10-01,"Alabama",1793 +1991-10-01,"Delaware",261 +1991-10-01,"Missouri",4433 +1991-10-01,"Louisiana",2267 +1991-10-01,"Mississippi",1024 +1991-10-01,"Indiana",7584 +1991-10-01,"Massachusetts",4492 +1991-10-01,"Iowa",4082 +1991-10-01,"Oregon",710 +1991-10-01,"Idaho",314 +1991-10-01,"North Carolina",1486 +1991-10-01,"Georgia",4829 +1991-10-01,"Colorado",3541 +1991-10-01,"Arizona",1077 +1991-10-01,"Kentucky",3120 +1991-10-01,"Montana",977 +1991-10-01,"California",26211 +1991-10-01,"Maine",36 +1991-10-01,"New York",16338 +1991-10-01,"Tennessee",1898 +1991-11-01,"Pennsylvania",23637 +1991-11-01,"Hawaii",44 +1991-11-01,"Washington",4403 +1991-11-01,"Montana",2218 +1991-11-01,"Utah",4293 +1991-11-01,"U.S.",459455 +1991-11-01,"Michigan",33409 +1991-11-01,"Colorado",8076 +1991-11-01,"Rhode Island",1436 +1991-11-01,"Oklahoma",6915 1991-11-01,"Wyoming",1179 +1991-11-01,"Alabama",3886 +1991-11-01,"Kansas",7289 +1991-11-01,"Missouri",12195 +1991-11-01,"Alaska",1356 +1991-11-01,"Iowa",8906 +1991-11-01,"Maine",56 +1991-11-01,"Mississippi",2357 +1991-11-01,"Massachusetts",8070 +1991-11-01,"Delaware",547 +1991-11-01,"Virginia",5473 +1991-11-01,"Nebraska",5196 +1991-11-01,"Arizona",1895 +1991-11-01,"Oregon",2106 +1991-11-01,"Maryland",6625 +1991-11-01,"North Carolina",3751 +1991-11-01,"California",39238 +1991-11-01,"New Mexico",1926 +1991-11-01,"Tennessee",5085 +1991-11-01,"Minnesota",14101 +1991-11-01,"South Dakota",1434 +1991-11-01,"Louisiana",5200 +1991-11-01,"Idaho",1088 +1991-11-01,"District of Columbia",1220 +1991-11-01,"Arkansas",3895 +1991-11-01,"South Carolina",1969 +1991-11-01,"Connecticut",3433 +1991-11-01,"Wisconsin",14481 +1991-11-01,"Georgia",12479 +1991-11-01,"New Hampshire",453 +1991-11-01,"Florida",1130 +1991-11-01,"New York",29610 +1991-11-01,"Texas",23812 +1991-11-01,"North Dakota",1187 +1991-11-01,"Illinois",61099 +1991-11-01,"Ohio",35764 +1991-11-01,"Kentucky",7676 +1991-11-01,"West Virginia",3210 +1991-11-01,"Vermont",187 +1991-11-01,"Nevada",1315 +1991-11-01,"Indiana",16912 +1991-11-01,"New Jersey",16235 +1991-12-01,"Colorado",14007 +1991-12-01,"Louisiana",7567 +1991-12-01,"Iowa",12377 +1991-12-01,"Kentucky",9682 +1991-12-01,"California",67035 +1991-12-01,"North Dakota",1489 +1991-12-01,"Missouri",17407 +1991-12-01,"Ohio",48007 +1991-12-01,"Arizona",4664 +1991-12-01,"Montana",2626 +1991-12-01,"North Carolina",5647 +1991-12-01,"Utah",7841 +1991-12-01,"Massachusetts",12854 +1991-12-01,"U.S.",658449 +1991-12-01,"Delaware",892 +1991-12-01,"Nebraska",6573 +1991-12-01,"Pennsylvania",34139 +1991-12-01,"Maine",102 +1991-12-01,"Mississippi",3625 +1991-12-01,"District of Columbia",2001 +1991-12-01,"New Jersey",24735 +1991-12-01,"Rhode Island",2186 +1991-12-01,"Washington",6336 +1991-12-01,"Wisconsin",18803 +1991-12-01,"Vermont",314 +1991-12-01,"New Mexico",4398 +1991-12-01,"Minnesota",18529 +1991-12-01,"Alabama",6396 +1991-12-01,"Arkansas",5481 +1991-12-01,"New Hampshire",690 +1991-12-01,"Illinois",71109 +1991-12-01,"Idaho",1559 +1991-12-01,"Maryland",9961 +1991-12-01,"Oklahoma",10069 1991-12-01,"Wyoming",1665 +1991-12-01,"Texas",32840 +1991-12-01,"Virginia",7782 +1991-12-01,"Alaska",1691 +1991-12-01,"South Carolina",3122 +1991-12-01,"Connecticut",5209 +1991-12-01,"New York",46288 +1991-12-01,"Indiana",22617 +1991-12-01,"West Virginia",4722 +1991-12-01,"Tennessee",7616 +1991-12-01,"Kansas",11008 +1991-12-01,"South Dakota",1595 +1991-12-01,"Michigan",49160 +1991-12-01,"Hawaii",46 +1991-12-01,"Oregon",3554 +1991-12-01,"Florida",1677 +1991-12-01,"Nevada",2941 +1991-12-01,"Georgia",15812 +1992-01-01,"Mississippi",4724 +1992-01-01,"New Mexico",5968 +1992-01-01,"Nevada",3525 +1992-01-01,"Nebraska",6858 +1992-01-01,"New Hampshire",1032 +1992-01-01,"Louisiana",9861 +1992-01-01,"Connecticut",6675 +1992-01-01,"Montana",2529 +1992-01-01,"Indiana",26077 +1992-01-01,"New Jersey",31150 +1992-01-01,"Arkansas",7150 +1992-01-01,"South Dakota",1639 +1992-01-01,"Hawaii",51 +1992-01-01,"Ohio",57528 +1992-01-01,"Washington",7286 +1992-01-01,"South Carolina",4203 +1992-01-01,"District of Columbia",2683 +1992-01-01,"Tennessee",10132 +1992-01-01,"Colorado",16198 +1992-01-01,"West Virginia",6183 +1992-01-01,"Oklahoma",12164 +1992-01-01,"New York",58076 +1992-01-01,"North Dakota",1500 +1992-01-01,"Minnesota",18895 +1992-01-01,"Alaska",1777 +1992-01-01,"Pennsylvania",44113 +1992-01-01,"Idaho",1843 +1992-01-01,"Maine",128 +1992-01-01,"Utah",8422 +1992-01-01,"Texas",39747 +1992-01-01,"U.S.",785718 +1992-01-01,"Delaware",1303 +1992-01-01,"Missouri",20977 +1992-01-01,"Rhode Island",2997 +1992-01-01,"Kentucky",11805 +1992-01-01,"Oregon",4367 +1992-01-01,"Wisconsin",19941 +1992-01-01,"Georgia",19167 +1992-01-01,"Alabama",8777 +1992-01-01,"Kansas",12653 +1992-01-01,"Virginia",10805 +1992-01-01,"Michigan",56513 +1992-01-01,"Arizona",5598 +1992-01-01,"California",77875 1992-01-01,"Wyoming",1876 +1992-01-01,"Illinois",80315 +1992-01-01,"Iowa",12381 +1992-01-01,"Maryland",12442 +1992-01-01,"North Carolina",7573 +1992-01-01,"Florida",2206 +1992-01-01,"Vermont",431 +1992-01-01,"Massachusetts",17599 +1992-02-01,"Pennsylvania",41812 +1992-02-01,"Idaho",1361 +1992-02-01,"Montana",2180 +1992-02-01,"Nevada",2611 +1992-02-01,"Indiana",22018 +1992-02-01,"North Dakota",1456 +1992-02-01,"U.S.",696082 +1992-02-01,"Delaware",1417 +1992-02-01,"Arkansas",6724 +1992-02-01,"Colorado",14400 +1992-02-01,"Illinois",63013 +1992-02-01,"Michigan",52668 +1992-02-01,"Alaska",1933 +1992-02-01,"West Virginia",6231 +1992-02-01,"North Carolina",7366 +1992-02-01,"Mississippi",4551 1992-02-01,"Wyoming",1492 +1992-02-01,"New Hampshire",1089 +1992-02-01,"Hawaii",50 +1992-02-01,"Ohio",50254 +1992-02-01,"Kentucky",8511 +1992-02-01,"South Carolina",4071 +1992-02-01,"New Mexico",5376 +1992-02-01,"Texas",33008 +1992-02-01,"Tennessee",8849 +1992-02-01,"Minnesota",15904 +1992-02-01,"Kansas",10939 +1992-02-01,"Missouri",18433 +1992-02-01,"South Dakota",1497 +1992-02-01,"Louisiana",9220 +1992-02-01,"Arizona",4220 +1992-02-01,"Oregon",3223 +1992-02-01,"Washington",5966 +1992-02-01,"Maryland",11583 +1992-02-01,"Wisconsin",17320 +1992-02-01,"California",61574 +1992-02-01,"Oklahoma",10656 +1992-02-01,"Virginia",10106 +1992-02-01,"Iowa",11637 +1992-02-01,"Florida",2345 +1992-02-01,"Connecticut",6571 +1992-02-01,"Maine",139 +1992-02-01,"District of Columbia",2829 +1992-02-01,"New Jersey",31006 +1992-02-01,"Rhode Island",3092 +1992-02-01,"Vermont",426 +1992-02-01,"New York",59000 +1992-02-01,"Utah",7132 +1992-02-01,"Massachusetts",19067 +1992-02-01,"Georgia",14531 +1992-02-01,"Alabama",9267 +1992-02-01,"Nebraska",5956 +1992-03-01,"South Dakota",1202 +1992-03-01,"Pennsylvania",36068 +1992-03-01,"Kentucky",7813 +1992-03-01,"Oregon",2477 +1992-03-01,"California",46860 +1992-03-01,"Massachusetts",16712 +1992-03-01,"New Jersey",26880 +1992-03-01,"Alabama",5605 +1992-03-01,"Louisiana",5650 +1992-03-01,"Hawaii",48 +1992-03-01,"West Virginia",4328 +1992-03-01,"Nebraska",4706 +1992-03-01,"Michigan",46640 +1992-03-01,"Rhode Island",2802 +1992-03-01,"Arizona",3589 +1992-03-01,"South Carolina",2650 +1992-03-01,"Vermont",367 +1992-03-01,"Kansas",7890 +1992-03-01,"Ohio",45783 +1992-03-01,"Washington",4719 +1992-03-01,"Connecticut",5777 +1992-03-01,"Wisconsin",15740 +1992-03-01,"Oklahoma",7235 +1992-03-01,"New York",53492 1992-03-01,"Wyoming",1146 +1992-03-01,"District of Columbia",2172 +1992-03-01,"Georgia",12768 +1992-03-01,"Arkansas",4305 +1992-03-01,"Colorado",11499 +1992-03-01,"Alaska",1764 +1992-03-01,"Iowa",8482 +1992-03-01,"Maryland",9717 +1992-03-01,"North Carolina",5194 +1992-03-01,"Maine",122 +1992-03-01,"Nevada",2094 +1992-03-01,"North Dakota",1128 +1992-03-01,"Virginia",7953 +1992-03-01,"New Hampshire",869 +1992-03-01,"Illinois",59187 +1992-03-01,"Idaho",944 +1992-03-01,"Florida",1478 +1992-03-01,"Mississippi",2850 +1992-03-01,"Indiana",18963 +1992-03-01,"Texas",21265 +1992-03-01,"U.S.",573979 +1992-03-01,"Minnesota",14009 +1992-03-01,"Montana",1620 +1992-03-01,"New Mexico",3842 +1992-03-01,"Utah",4869 +1992-03-01,"Tennessee",6002 +1992-03-01,"Delaware",1158 +1992-03-01,"Missouri",13548 +1992-04-01,"Michigan",36421 +1992-04-01,"Colorado",8789 +1992-04-01,"Nevada",1394 1992-04-01,"Wyoming",951 +1992-04-01,"Utah",3184 +1992-04-01,"Alaska",1346 +1992-04-01,"Washington",3736 +1992-04-01,"Vermont",284 +1992-04-01,"Mississippi",2440 +1992-04-01,"Louisiana",4544 +1992-04-01,"Pennsylvania",26243 +1992-04-01,"Iowa",6857 +1992-04-01,"California",37311 +1992-04-01,"Maine",96 +1992-04-01,"Massachusetts",13384 +1992-04-01,"Georgia",7360 +1992-04-01,"Arizona",2313 +1992-04-01,"Montana",1371 +1992-04-01,"Tennessee",4859 +1992-04-01,"Minnesota",10391 +1992-04-01,"Arkansas",3828 +1992-04-01,"Hawaii",46 +1992-04-01,"North Carolina",4509 +1992-04-01,"North Dakota",1002 +1992-04-01,"Delaware",948 +1992-04-01,"Nebraska",3760 +1992-04-01,"South Dakota",996 +1992-04-01,"West Virginia",4038 +1992-04-01,"Idaho",730 +1992-04-01,"Wisconsin",11914 +1992-04-01,"Oklahoma",5961 +1992-04-01,"Indiana",14093 +1992-04-01,"District of Columbia",1820 +1992-04-01,"Rhode Island",2271 +1992-04-01,"Illinois",40752 +1992-04-01,"Ohio",31344 +1992-04-01,"Kentucky",4179 +1992-04-01,"South Carolina",2295 +1992-04-01,"Connecticut",4284 +1992-04-01,"New Mexico",2723 +1992-04-01,"New York",41548 +1992-04-01,"New Jersey",20212 +1992-04-01,"Alabama",5012 +1992-04-01,"New Hampshire",766 +1992-04-01,"Oregon",1891 +1992-04-01,"Maryland",7087 +1992-04-01,"Florida",1340 +1992-04-01,"Texas",14934 +1992-04-01,"U.S.",431401 +1992-04-01,"Kansas",6917 +1992-04-01,"Virginia",5884 +1992-04-01,"Missouri",11044 +1992-05-01,"Louisiana",2799 +1992-05-01,"Illinois",22488 +1992-05-01,"Ohio",17276 +1992-05-01,"Arizona",1207 +1992-05-01,"Wisconsin",6373 +1992-05-01,"New York",23835 +1992-05-01,"Kansas",3788 +1992-05-01,"Alaska",1012 +1992-05-01,"Florida",936 +1992-05-01,"Nevada",803 +1992-05-01,"Indiana",7584 +1992-05-01,"District of Columbia",948 +1992-05-01,"Massachusetts",8475 +1992-05-01,"Virginia",3269 +1992-05-01,"Connecticut",2417 +1992-05-01,"North Carolina",2222 +1992-05-01,"California",28422 1992-05-01,"Wyoming",613 +1992-05-01,"Nebraska",2020 +1992-05-01,"Utah",1986 +1992-05-01,"Georgia",4718 +1992-05-01,"U.S.",251416 +1992-05-01,"Alabama",2714 +1992-05-01,"Rhode Island",1446 +1992-05-01,"Iowa",3335 +1992-05-01,"Washington",2377 +1992-05-01,"Montana",837 +1992-05-01,"Oklahoma",3219 +1992-05-01,"Delaware",528 +1992-05-01,"Arkansas",1854 +1992-05-01,"West Virginia",2076 +1992-05-01,"Vermont",145 +1992-05-01,"Michigan",21545 +1992-05-01,"Pennsylvania",13989 +1992-05-01,"Hawaii",47 +1992-05-01,"Kentucky",2626 +1992-05-01,"Idaho",445 +1992-05-01,"South Carolina",1033 +1992-05-01,"Maryland",4007 +1992-05-01,"Mississippi",1287 +1992-05-01,"New Mexico",1514 +1992-05-01,"New Jersey",11680 +1992-05-01,"Tennessee",2186 +1992-05-01,"Missouri",5858 +1992-05-01,"South Dakota",638 +1992-05-01,"Colorado",5005 +1992-05-01,"New Hampshire",461 +1992-05-01,"Oregon",1248 +1992-05-01,"Maine",66 +1992-05-01,"Texas",10307 +1992-05-01,"North Dakota",616 +1992-05-01,"Minnesota",5136 +1992-06-01,"Colorado",3963 +1992-06-01,"Arizona",1132 +1992-06-01,"West Virginia",1105 +1992-06-01,"Washington",1384 +1992-06-01,"Wisconsin",3681 +1992-06-01,"Vermont",72 +1992-06-01,"Oklahoma",2549 +1992-06-01,"Indiana",4627 1992-06-01,"Wyoming",431 +1992-06-01,"Michigan",11927 +1992-06-01,"Alaska",628 +1992-06-01,"Louisiana",2288 +1992-06-01,"Iowa",2186 +1992-06-01,"Utah",1524 +1992-06-01,"Georgia",3536 +1992-06-01,"U.S.",162378 +1992-06-01,"Minnesota",3130 +1992-06-01,"North Carolina",1301 +1992-06-01,"New Mexico",1122 +1992-06-01,"New York",13470 +1992-06-01,"Tennessee",1437 +1992-06-01,"Nebraska",1311 +1992-06-01,"Pennsylvania",8047 +1992-06-01,"Oregon",772 +1992-06-01,"Florida",733 +1992-06-01,"Texas",8776 +1992-06-01,"North Dakota",311 +1992-06-01,"Hawaii",46 +1992-06-01,"Arkansas",1371 +1992-06-01,"South Dakota",321 +1992-06-01,"Rhode Island",771 +1992-06-01,"Connecticut",1394 +1992-06-01,"Maine",37 +1992-06-01,"Nevada",695 +1992-06-01,"District of Columbia",630 +1992-06-01,"Alabama",1772 +1992-06-01,"Missouri",3838 +1992-06-01,"Illinois",12963 +1992-06-01,"Idaho",247 +1992-06-01,"South Carolina",597 +1992-06-01,"Montana",541 +1992-06-01,"Massachusetts",4822 +1992-06-01,"New Jersey",6166 +1992-06-01,"Virginia",1788 +1992-06-01,"New Hampshire",219 +1992-06-01,"Ohio",10336 +1992-06-01,"Kentucky",1835 +1992-06-01,"Maryland",2577 +1992-06-01,"California",24100 +1992-06-01,"Mississippi",963 +1992-06-01,"Delaware",301 +1992-06-01,"Kansas",2609 +1992-07-01,"Colorado",2809 +1992-07-01,"Iowa",1546 +1992-07-01,"North Carolina",837 +1992-07-01,"Florida",674 +1992-07-01,"Oklahoma",1949 +1992-07-01,"Indiana",3484 +1992-07-01,"South Dakota",265 +1992-07-01,"Hawaii",45 +1992-07-01,"District of Columbia",469 +1992-07-01,"North Dakota",260 +1992-07-01,"Delaware",197 +1992-07-01,"Michigan",8773 +1992-07-01,"Kentucky",1326 +1992-07-01,"Oregon",610 +1992-07-01,"Washington",910 +1992-07-01,"Connecticut",1125 +1992-07-01,"Wisconsin",2604 +1992-07-01,"New Mexico",929 +1992-07-01,"New Jersey",5239 +1992-07-01,"Nebraska",1047 +1992-07-01,"Illinois",10391 +1992-07-01,"Ohio",8098 +1992-07-01,"Maryland",2153 +1992-07-01,"California",22397 +1992-07-01,"Mississippi",896 +1992-07-01,"Georgia",3170 +1992-07-01,"Minnesota",2702 +1992-07-01,"Missouri",2931 +1992-07-01,"New Hampshire",159 +1992-07-01,"Montana",485 +1992-07-01,"Tennessee",1120 +1992-07-01,"Kansas",1932 +1992-07-01,"Arkansas",1194 +1992-07-01,"Alaska",474 +1992-07-01,"Pennsylvania",6134 +1992-07-01,"West Virginia",683 +1992-07-01,"Maine",24 +1992-07-01,"Nevada",671 1992-07-01,"Wyoming",323 +1992-07-01,"Utah",1406 +1992-07-01,"Massachusetts",3453 +1992-07-01,"Alabama",1423 +1992-07-01,"Virginia",1495 +1992-07-01,"Rhode Island",639 +1992-07-01,"Arizona",947 +1992-07-01,"Vermont",53 +1992-07-01,"New York",10509 +1992-07-01,"Texas",8119 +1992-07-01,"Louisiana",2067 +1992-07-01,"Idaho",233 +1992-07-01,"South Carolina",424 +1992-07-01,"U.S.",131801 +1992-08-01,"South Dakota",254 +1992-08-01,"New Mexico",851 +1992-08-01,"Georgia",2981 +1992-08-01,"New Hampshire",139 +1992-08-01,"Iowa",1668 +1992-08-01,"Kentucky",1416 +1992-08-01,"Connecticut",996 +1992-08-01,"Maryland",2068 +1992-08-01,"Montana",421 +1992-08-01,"Minnesota",2525 +1992-08-01,"Alaska",438 +1992-08-01,"North Carolina",734 +1992-08-01,"Nevada",529 +1992-08-01,"Texas",7553 +1992-08-01,"Kansas",1740 +1992-08-01,"Missouri",2681 +1992-08-01,"Wisconsin",2662 +1992-08-01,"New York",9649 +1992-08-01,"Alabama",1311 +1992-08-01,"Colorado",2438 +1992-08-01,"Rhode Island",423 +1992-08-01,"Illinois",11171 +1992-08-01,"South Carolina",386 +1992-08-01,"California",22039 +1992-08-01,"Florida",627 +1992-08-01,"Oklahoma",1712 +1992-08-01,"Massachusetts",3203 +1992-08-01,"Nebraska",983 +1992-08-01,"Arkansas",1124 +1992-08-01,"Arizona",815 +1992-08-01,"Idaho",183 +1992-08-01,"Vermont",49 +1992-08-01,"Mississippi",817 +1992-08-01,"Indiana",3312 +1992-08-01,"District of Columbia",420 +1992-08-01,"North Dakota",214 +1992-08-01,"U.S.",125580 +1992-08-01,"Virginia",1406 +1992-08-01,"Michigan",8655 +1992-08-01,"Hawaii",42 +1992-08-01,"Ohio",7238 1992-08-01,"Wyoming",278 +1992-08-01,"Utah",1255 +1992-08-01,"New Jersey",4918 +1992-08-01,"Louisiana",1960 +1992-08-01,"Pennsylvania",5902 +1992-08-01,"West Virginia",661 +1992-08-01,"Oregon",526 +1992-08-01,"Washington",956 +1992-08-01,"Maine",22 +1992-08-01,"Tennessee",1051 +1992-08-01,"Delaware",179 +1992-09-01,"Louisiana",2014 +1992-09-01,"North Carolina",806 +1992-09-01,"Maine",17 +1992-09-01,"Indiana",3960 +1992-09-01,"District of Columbia",446 +1992-09-01,"Missouri",2942 +1992-09-01,"Montana",727 +1992-09-01,"Florida",636 +1992-09-01,"Mississippi",856 +1992-09-01,"Delaware",183 +1992-09-01,"South Dakota",315 +1992-09-01,"Iowa",1885 +1992-09-01,"New Jersey",5338 +1992-09-01,"U.S.",137106 +1992-09-01,"Minnesota",3021 +1992-09-01,"Kansas",1798 +1992-09-01,"Virginia",1467 +1992-09-01,"Colorado",2644 +1992-09-01,"Hawaii",43 +1992-09-01,"Kentucky",1413 +1992-09-01,"North Dakota",285 +1992-09-01,"Alaska",643 +1992-09-01,"New Hampshire",151 +1992-09-01,"Washington",1310 +1992-09-01,"South Carolina",409 +1992-09-01,"Wisconsin",3229 1992-09-01,"Wyoming",360 +1992-09-01,"Nebraska",1096 +1992-09-01,"Michigan",9435 +1992-09-01,"Pennsylvania",6950 +1992-09-01,"Ohio",8111 +1992-09-01,"West Virginia",819 +1992-09-01,"Oregon",648 +1992-09-01,"Connecticut",1155 +1992-09-01,"Oklahoma",1775 +1992-09-01,"Nevada",608 +1992-09-01,"Georgia",3211 +1992-09-01,"Arkansas",1096 +1992-09-01,"Illinois",13758 +1992-09-01,"Arizona",870 +1992-09-01,"Idaho",274 +1992-09-01,"Maryland",2027 +1992-09-01,"California",21969 +1992-09-01,"Vermont",53 +1992-09-01,"Tennessee",1100 +1992-09-01,"Alabama",1373 +1992-09-01,"Rhode Island",547 +1992-09-01,"New Mexico",889 +1992-09-01,"New York",10006 +1992-09-01,"Utah",1321 +1992-09-01,"Massachusetts",3369 +1992-09-01,"Texas",7750 +1992-10-01,"Michigan",20856 +1992-10-01,"Colorado",3547 +1992-10-01,"Alaska",1209 +1992-10-01,"Illinois",28742 +1992-10-01,"California",24434 +1992-10-01,"Oklahoma",2236 +1992-10-01,"North Dakota",458 +1992-10-01,"Georgia",5284 +1992-10-01,"Connecticut",2271 +1992-10-01,"North Carolina",1781 +1992-10-01,"U.S.",240662 +1992-10-01,"Delaware",307 +1992-10-01,"Kansas",2421 +1992-10-01,"Hawaii",42 +1992-10-01,"New Mexico",1033 +1992-10-01,"District of Columbia",642 +1992-10-01,"Tennessee",1885 +1992-10-01,"Arizona",1000 +1992-10-01,"Idaho",428 +1992-10-01,"Maine",41 +1992-10-01,"Vermont",129 +1992-10-01,"Virginia",3307 +1992-10-01,"Missouri",4259 +1992-10-01,"Rhode Island",890 +1992-10-01,"Louisiana",2222 +1992-10-01,"Pennsylvania",15853 +1992-10-01,"West Virginia",1899 +1992-10-01,"Maryland",4038 +1992-10-01,"Montana",1106 +1992-10-01,"Nevada",727 +1992-10-01,"Massachusetts",5342 +1992-10-01,"Texas",8584 +1992-10-01,"Minnesota",6449 +1992-10-01,"Nebraska",2030 +1992-10-01,"New Hampshire",288 +1992-10-01,"Iowa",3725 +1992-10-01,"Kentucky",3376 +1992-10-01,"Oregon",1017 +1992-10-01,"Washington",2236 +1992-10-01,"Florida",685 +1992-10-01,"New York",18633 +1992-10-01,"South Dakota",602 +1992-10-01,"Ohio",20929 +1992-10-01,"Wisconsin",7630 +1992-10-01,"Mississippi",979 1992-10-01,"Wyoming",551 +1992-10-01,"Utah",1802 +1992-10-01,"Alabama",1728 +1992-10-01,"South Carolina",792 +1992-10-01,"Indiana",8361 +1992-10-01,"New Jersey",10368 +1992-10-01,"Arkansas",1511 +1992-11-01,"Kentucky",6997 +1992-11-01,"Oklahoma",4722 +1992-11-01,"Kansas",6102 +1992-11-01,"Rhode Island",1720 +1992-11-01,"Louisiana",4185 +1992-11-01,"California",37291 +1992-11-01,"Indiana",15953 +1992-11-01,"New Jersey",17953 +1992-11-01,"U.S.",436771 +1992-11-01,"Delaware",628 +1992-11-01,"Missouri",10344 +1992-11-01,"Pennsylvania",24806 +1992-11-01,"Ohio",34181 +1992-11-01,"Iowa",8350 +1992-11-01,"South Carolina",1750 +1992-11-01,"Florida",956 +1992-11-01,"Vermont",205 1992-11-01,"Wyoming",1071 +1992-11-01,"Utah",3844 +1992-11-01,"Massachusetts",10056 +1992-11-01,"Georgia",12934 +1992-11-01,"Arkansas",3132 +1992-11-01,"Colorado",7607 +1992-11-01,"Illinois",54950 +1992-11-01,"Maryland",6855 +1992-11-01,"Wisconsin",13233 +1992-11-01,"Montana",1792 +1992-11-01,"North Carolina",3446 +1992-11-01,"Maine",70 +1992-11-01,"New Mexico",1992 +1992-11-01,"New York",30758 +1992-11-01,"Minnesota",12857 +1992-11-01,"Michigan",34278 +1992-11-01,"West Virginia",3120 +1992-11-01,"Nevada",1226 +1992-11-01,"Tennessee",4473 +1992-11-01,"North Dakota",990 +1992-11-01,"South Dakota",1267 +1992-11-01,"Alaska",1442 +1992-11-01,"Oregon",1993 +1992-11-01,"Idaho",1024 +1992-11-01,"Mississippi",1927 +1992-11-01,"Texas",19205 +1992-11-01,"Alabama",3402 +1992-11-01,"Nebraska",4561 +1992-11-01,"New Hampshire",526 +1992-11-01,"Arizona",1576 +1992-11-01,"Connecticut",3876 +1992-11-01,"District of Columbia",1314 +1992-11-01,"Hawaii",42 +1992-11-01,"Washington",4236 +1992-11-01,"Virginia",5553 +1992-12-01,"Louisiana",8411 +1992-12-01,"Kentucky",10617 +1992-12-01,"Washington",7930 +1992-12-01,"Alabama",7261 +1992-12-01,"Ohio",49551 +1992-12-01,"Arizona",5118 +1992-12-01,"Idaho",1946 +1992-12-01,"South Carolina",3784 +1992-12-01,"Montana",3065 +1992-12-01,"Mississippi",4198 +1992-12-01,"Indiana",24261 +1992-12-01,"Utah",7957 +1992-12-01,"Massachusetts",14189 +1992-12-01,"New Jersey",27553 +1992-12-01,"Missouri",19801 +1992-12-01,"New Hampshire",750 +1992-12-01,"Rhode Island",2403 +1992-12-01,"Pennsylvania",36609 +1992-12-01,"Hawaii",50 +1992-12-01,"California",75266 +1992-12-01,"New Mexico",5194 +1992-12-01,"Delaware",1044 +1992-12-01,"Kansas",12732 +1992-12-01,"Oregon",4337 +1992-12-01,"Maryland",10567 +1992-12-01,"Nevada",3302 +1992-12-01,"Florida",1766 +1992-12-01,"Maine",111 +1992-12-01,"Vermont",308 +1992-12-01,"Oklahoma",11635 +1992-12-01,"New York",49715 +1992-12-01,"U.S.",717170 +1992-12-01,"Virginia",9396 +1992-12-01,"Michigan",50376 +1992-12-01,"Illinois",77632 +1992-12-01,"Connecticut",5855 +1992-12-01,"Wisconsin",19080 +1992-12-01,"North Carolina",6819 +1992-12-01,"District of Columbia",2213 +1992-12-01,"Texas",35434 +1992-12-01,"Nebraska",7085 +1992-12-01,"South Dakota",1797 +1992-12-01,"Colorado",15715 +1992-12-01,"Alaska",1682 +1992-12-01,"West Virginia",4146 1992-12-01,"Wyoming",1803 +1992-12-01,"North Dakota",1472 +1992-12-01,"Iowa",12827 +1992-12-01,"Tennessee",9125 +1992-12-01,"Georgia",18555 +1992-12-01,"Minnesota",18543 +1992-12-01,"Arkansas",6185 +1993-01-01,"Michigan",59618 +1993-01-01,"Oregon",5789 +1993-01-01,"Massachusetts",18222 +1993-01-01,"Texas",41675 +1993-01-01,"Tennessee",10319 +1993-01-01,"North Dakota",2059 +1993-01-01,"Georgia",17952 +1993-01-01,"Minnesota",22379 +1993-01-01,"Kansas",15743 +1993-01-01,"South Carolina",4276 +1993-01-01,"Maryland",11900 +1993-01-01,"Vermont",412 +1993-01-01,"Oklahoma",14565 +1993-01-01,"Arizona",5504 +1993-01-01,"Connecticut",6726 +1993-01-01,"Wisconsin",23133 +1993-01-01,"Montana",3658 +1993-01-01,"Mississippi",4474 +1993-01-01,"New Mexico",5542 +1993-01-01,"Missouri",24602 +1993-01-01,"South Dakota",2291 +1993-01-01,"Rhode Island",3091 +1993-01-01,"Ohio",55994 +1993-01-01,"Iowa",15138 +1993-01-01,"West Virginia",5220 +1993-01-01,"Maine",144 +1993-01-01,"Virginia",10835 +1993-01-01,"Alaska",2079 +1993-01-01,"Indiana",27916 1993-01-01,"Wyoming",2142 +1993-01-01,"New Jersey",29736 +1993-01-01,"Colorado",18551 +1993-01-01,"Hawaii",51 +1993-01-01,"Kentucky",11143 +1993-01-01,"Washington",9680 +1993-01-01,"North Carolina",8379 +1993-01-01,"Nevada",3892 +1993-01-01,"Utah",8919 +1993-01-01,"Delaware",1304 +1993-01-01,"Nebraska",9013 +1993-01-01,"Arkansas",8141 +1993-01-01,"Illinois",85860 +1993-01-01,"Florida",1652 +1993-01-01,"District of Columbia",2768 +1993-01-01,"U.S.",830874 +1993-01-01,"Alabama",8110 +1993-01-01,"New Hampshire",1048 +1993-01-01,"Louisiana",8577 +1993-01-01,"Pennsylvania",41969 +1993-01-01,"Idaho",2265 +1993-01-01,"California",87565 +1993-01-01,"New York",58856 +1993-02-01,"Colorado",15981 +1993-02-01,"Illinois",74466 +1993-02-01,"Arizona",4120 +1993-02-01,"California",66015 +1993-02-01,"Florida",1868 +1993-02-01,"Indiana",25987 +1993-02-01,"U.S.",768365 +1993-02-01,"New Hampshire",1081 +1993-02-01,"Kentucky",11145 +1993-02-01,"Montana",2509 1993-02-01,"Wyoming",1797 +1993-02-01,"District of Columbia",2823 +1993-02-01,"Minnesota",18681 +1993-02-01,"Kansas",13423 +1993-02-01,"South Dakota",1784 +1993-02-01,"Michigan",57465 +1993-02-01,"Louisiana",8402 +1993-02-01,"North Carolina",8140 +1993-02-01,"Vermont",446 +1993-02-01,"Utah",8045 +1993-02-01,"New Jersey",33593 +1993-02-01,"Tennessee",9273 +1993-02-01,"Oregon",4569 +1993-02-01,"Washington",7331 +1993-02-01,"Idaho",1959 +1993-02-01,"Wisconsin",18435 +1993-02-01,"Texas",34630 +1993-02-01,"Georgia",18076 +1993-02-01,"Virginia",11634 +1993-02-01,"Missouri",21375 +1993-02-01,"Ohio",58767 +1993-02-01,"Iowa",13050 +1993-02-01,"Connecticut",7402 +1993-02-01,"Maryland",12922 +1993-02-01,"Oklahoma",12460 +1993-02-01,"New York",61673 +1993-02-01,"Nebraska",6132 +1993-02-01,"South Carolina",4291 +1993-02-01,"Maine",153 +1993-02-01,"New Mexico",4610 +1993-02-01,"Nevada",3157 +1993-02-01,"North Dakota",1522 +1993-02-01,"Alaska",2138 +1993-02-01,"Pennsylvania",45019 +1993-02-01,"Delaware",1386 +1993-02-01,"Arkansas",7122 +1993-02-01,"Rhode Island",3326 +1993-02-01,"Hawaii",51 +1993-02-01,"West Virginia",5960 +1993-02-01,"Mississippi",4388 +1993-02-01,"Massachusetts",19597 +1993-02-01,"Alabama",8189 +1993-03-01,"Rhode Island",3291 +1993-03-01,"Oregon",3843 +1993-03-01,"Washington",6669 +1993-03-01,"Connecticut",6255 +1993-03-01,"Oklahoma",12131 +1993-03-01,"District of Columbia",2867 +1993-03-01,"U.S.",703183 +1993-03-01,"Colorado",15025 +1993-03-01,"Pennsylvania",42350 +1993-03-01,"West Virginia",5767 +1993-03-01,"Idaho",1705 +1993-03-01,"Montana",2611 +1993-03-01,"North Dakota",1462 +1993-03-01,"Minnesota",16369 +1993-03-01,"Delaware",1487 +1993-03-01,"Illinois",67993 +1993-03-01,"Arizona",4078 +1993-03-01,"Mississippi",4396 +1993-03-01,"Texas",27431 +1993-03-01,"Tennessee",10041 +1993-03-01,"Georgia",15664 +1993-03-01,"New Hampshire",1009 +1993-03-01,"Iowa",11587 +1993-03-01,"Maine",114 +1993-03-01,"Indiana",24049 1993-03-01,"Wyoming",1653 +1993-03-01,"Massachusetts",18273 +1993-03-01,"Kansas",13022 +1993-03-01,"Virginia",10506 +1993-03-01,"Michigan",54627 +1993-03-01,"Alaska",1471 +1993-03-01,"Hawaii",52 +1993-03-01,"South Carolina",4274 +1993-03-01,"North Carolina",8024 +1993-03-01,"Florida",1923 +1993-03-01,"New Mexico",3478 +1993-03-01,"Alabama",8716 +1993-03-01,"Missouri",21306 +1993-03-01,"Arkansas",6736 +1993-03-01,"Wisconsin",18166 +1993-03-01,"California",50594 +1993-03-01,"New Jersey",30688 +1993-03-01,"Louisiana",7933 +1993-03-01,"Ohio",52719 +1993-03-01,"Maryland",12365 +1993-03-01,"New York",60184 +1993-03-01,"Utah",6589 +1993-03-01,"South Dakota",1678 +1993-03-01,"Kentucky",9198 +1993-03-01,"Vermont",433 +1993-03-01,"Nevada",2715 +1993-03-01,"Nebraska",7668 +1993-04-01,"Ohio",32260 +1993-04-01,"West Virginia",3560 +1993-04-01,"Idaho",1044 +1993-04-01,"Connecticut",4043 +1993-04-01,"Vermont",271 +1993-04-01,"North Dakota",1082 +1993-04-01,"Kansas",9143 +1993-04-01,"Virginia",5868 +1993-04-01,"Alaska",1288 +1993-04-01,"Montana",1686 +1993-04-01,"North Carolina",5030 +1993-04-01,"U.S.",449738 +1993-04-01,"Louisiana",5575 +1993-04-01,"Washington",4665 +1993-04-01,"Wisconsin",12585 +1993-04-01,"Mississippi",2961 +1993-04-01,"Nebraska",5098 +1993-04-01,"Arkansas",4971 +1993-04-01,"Hawaii",48 +1993-04-01,"Iowa",7597 +1993-04-01,"Oklahoma",8019 +1993-04-01,"Indiana",14401 1993-04-01,"Wyoming",1164 +1993-04-01,"Utah",4375 +1993-04-01,"Colorado",9897 +1993-04-01,"Pennsylvania",24988 +1993-04-01,"Maine",71 +1993-04-01,"New Mexico",1890 +1993-04-01,"District of Columbia",1641 +1993-04-01,"Minnesota",10780 +1993-04-01,"Missouri",13404 +1993-04-01,"New Hampshire",721 +1993-04-01,"Illinois",42426 +1993-04-01,"Arizona",2178 +1993-04-01,"Kentucky",4989 +1993-04-01,"Massachusetts",13178 +1993-04-01,"Texas",17469 +1993-04-01,"Georgia",9279 +1993-04-01,"Alabama",5668 +1993-04-01,"Michigan",35109 +1993-04-01,"Oregon",2533 +1993-04-01,"Maryland",6676 +1993-04-01,"California",36252 +1993-04-01,"Florida",1480 +1993-04-01,"New Jersey",19409 +1993-04-01,"South Dakota",1153 +1993-04-01,"Rhode Island",2200 +1993-04-01,"South Carolina",2559 +1993-04-01,"New York",38778 +1993-04-01,"Nevada",1503 +1993-04-01,"Tennessee",5755 +1993-04-01,"Delaware",1019 +1993-05-01,"New Hampshire",349 +1993-05-01,"Hawaii",44 +1993-05-01,"West Virginia",1608 +1993-05-01,"North Carolina",1977 +1993-05-01,"Vermont",138 +1993-05-01,"Utah",3055 +1993-05-01,"Delaware",448 +1993-05-01,"Alaska",891 +1993-05-01,"Kentucky",1908 +1993-05-01,"District of Columbia",825 +1993-05-01,"Kansas",4717 +1993-05-01,"Virginia",2438 +1993-05-01,"Louisiana",2944 +1993-05-01,"Maryland",3460 +1993-05-01,"Indiana",6431 +1993-05-01,"Georgia",4443 +1993-05-01,"Colorado",6505 +1993-05-01,"Illinois",18258 +1993-05-01,"Arizona",1297 +1993-05-01,"Oregon",1769 +1993-05-01,"Washington",3123 +1993-05-01,"Wisconsin",5585 +1993-05-01,"Maine",38 +1993-05-01,"New York",20123 +1993-05-01,"Massachusetts",7263 +1993-05-01,"U.S.",232154 +1993-05-01,"Rhode Island",1117 +1993-05-01,"Ohio",13835 +1993-05-01,"Nevada",1087 +1993-05-01,"New Jersey",8489 +1993-05-01,"Texas",10765 +1993-05-01,"North Dakota",568 +1993-05-01,"Michigan",18269 +1993-05-01,"Pennsylvania",11007 +1993-05-01,"Iowa",3450 +1993-05-01,"South Carolina",956 +1993-05-01,"Minnesota",5399 +1993-05-01,"Alabama",2848 +1993-05-01,"Nebraska",2360 +1993-05-01,"Arkansas",2257 +1993-05-01,"Idaho",692 +1993-05-01,"Montana",1005 +1993-05-01,"Mississippi",1465 +1993-05-01,"Oklahoma",3907 1993-05-01,"Wyoming",809 +1993-05-01,"South Dakota",606 +1993-05-01,"Connecticut",1947 +1993-05-01,"California",29411 +1993-05-01,"Florida",963 +1993-05-01,"New Mexico",979 +1993-05-01,"Tennessee",2317 +1993-05-01,"Missouri",6009 +1993-06-01,"Alaska",577 +1993-06-01,"Louisiana",2216 +1993-06-01,"Oregon",945 +1993-06-01,"California",25116 +1993-06-01,"New York",13685 +1993-06-01,"Colorado",3996 +1993-06-01,"Arizona",1097 +1993-06-01,"West Virginia",962 +1993-06-01,"Connecticut",1274 +1993-06-01,"North Carolina",1039 +1993-06-01,"Minnesota",3576 +1993-06-01,"Kansas",2454 +1993-06-01,"Iowa",2382 +1993-06-01,"Washington",2619 +1993-06-01,"Maryland",2471 +1993-06-01,"Florida",772 +1993-06-01,"District of Columbia",546 +1993-06-01,"North Dakota",350 +1993-06-01,"Alabama",1641 +1993-06-01,"Rhode Island",671 +1993-06-01,"Hawaii",47 +1993-06-01,"Ohio",11884 +1993-06-01,"South Carolina",501 +1993-06-01,"Vermont",84 +1993-06-01,"New Mexico",442 +1993-06-01,"Utah",1845 +1993-06-01,"Virginia",1632 +1993-06-01,"Missouri",3676 +1993-06-01,"Nebraska",1495 +1993-06-01,"South Dakota",370 +1993-06-01,"Illinois",12716 +1993-06-01,"Kentucky",1710 +1993-06-01,"Mississippi",947 +1993-06-01,"Tennessee",1365 +1993-06-01,"Idaho",334 +1993-06-01,"Wisconsin",3750 +1993-06-01,"Oklahoma",2331 +1993-06-01,"Indiana",4369 1993-06-01,"Wyoming",506 +1993-06-01,"Massachusetts",4464 +1993-06-01,"Texas",8508 +1993-06-01,"Michigan",11464 +1993-06-01,"New Hampshire",211 +1993-06-01,"Maine",30 +1993-06-01,"New Jersey",5799 +1993-06-01,"Georgia",3106 +1993-06-01,"U.S.",163642 +1993-06-01,"Arkansas",1310 +1993-06-01,"Pennsylvania",8560 +1993-06-01,"Montana",644 +1993-06-01,"Nevada",910 +1993-06-01,"Delaware",243 +1993-07-01,"Colorado",2851 +1993-07-01,"Ohio",7273 +1993-07-01,"Wisconsin",2503 +1993-07-01,"Florida",679 +1993-07-01,"Utah",1533 +1993-07-01,"Massachusetts",3499 +1993-07-01,"Missouri",2871 +1993-07-01,"Arkansas",1109 +1993-07-01,"New Hampshire",149 +1993-07-01,"Idaho",302 +1993-07-01,"Maryland",1967 +1993-07-01,"District of Columbia",437 +1993-07-01,"Tennessee",1109 +1993-07-01,"North Dakota",268 +1993-07-01,"Louisiana",2110 +1993-07-01,"Arizona",832 +1993-07-01,"Maine",22 +1993-07-01,"Mississippi",830 +1993-07-01,"New Mexico",964 +1993-07-01,"Oklahoma",1832 +1993-07-01,"Georgia",3028 +1993-07-01,"Alabama",1430 +1993-07-01,"Alaska",423 +1993-07-01,"Illinois",10373 +1993-07-01,"Iowa",1563 +1993-07-01,"Kentucky",1289 +1993-07-01,"California",23646 +1993-07-01,"New Jersey",4956 +1993-07-01,"Kansas",1870 +1993-07-01,"South Dakota",281 +1993-07-01,"Rhode Island",558 +1993-07-01,"Pennsylvania",5614 +1993-07-01,"Washington",1424 +1993-07-01,"South Carolina",407 +1993-07-01,"North Carolina",829 +1993-07-01,"Vermont",50 +1993-07-01,"Indiana",3157 1993-07-01,"Wyoming",366 +1993-07-01,"U.S.",129719 +1993-07-01,"Minnesota",2574 +1993-07-01,"Michigan",8589 +1993-07-01,"Texas",7809 +1993-07-01,"Delaware",185 +1993-07-01,"Virginia",1442 +1993-07-01,"Nebraska",1119 +1993-07-01,"Hawaii",46 +1993-07-01,"Montana",608 +1993-07-01,"West Virginia",533 +1993-07-01,"Oregon",768 +1993-07-01,"Connecticut",1040 +1993-07-01,"New York",10003 +1993-07-01,"Nevada",600 +1993-08-01,"Arizona",801 +1993-08-01,"Washington",1243 +1993-08-01,"Idaho",251 +1993-08-01,"Mississippi",788 +1993-08-01,"New Mexico",849 +1993-08-01,"Nevada",612 +1993-08-01,"South Dakota",236 +1993-08-01,"Ohio",6549 +1993-08-01,"Maryland",1921 +1993-08-01,"North Carolina",761 +1993-08-01,"Florida",618 +1993-08-01,"Oklahoma",1612 +1993-08-01,"North Dakota",210 +1993-08-01,"U.S.",120331 +1993-08-01,"Minnesota",2397 +1993-08-01,"Virginia",1412 +1993-08-01,"Illinois",9728 +1993-08-01,"Hawaii",41 +1993-08-01,"Montana",530 +1993-08-01,"Maine",22 +1993-08-01,"Vermont",45 +1993-08-01,"Utah",1353 +1993-08-01,"Delaware",167 +1993-08-01,"Louisiana",1836 +1993-08-01,"Kentucky",1137 +1993-08-01,"California",22749 +1993-08-01,"Indiana",3096 +1993-08-01,"Kansas",1680 +1993-08-01,"New Hampshire",124 +1993-08-01,"West Virginia",620 +1993-08-01,"Oregon",672 +1993-08-01,"Connecticut",1059 +1993-08-01,"District of Columbia",419 +1993-08-01,"Georgia",2939 +1993-08-01,"Alabama",1328 +1993-08-01,"Michigan",7199 +1993-08-01,"Colorado",2391 +1993-08-01,"Pennsylvania",5688 +1993-08-01,"South Carolina",377 +1993-08-01,"Rhode Island",472 +1993-08-01,"Wisconsin",2586 1993-08-01,"Wyoming",292 +1993-08-01,"Massachusetts",3084 +1993-08-01,"Nebraska",999 +1993-08-01,"Arkansas",1017 +1993-08-01,"Alaska",402 +1993-08-01,"Iowa",1516 +1993-08-01,"New York",9069 +1993-08-01,"New Jersey",4483 +1993-08-01,"Texas",7451 +1993-08-01,"Tennessee",1011 +1993-08-01,"Missouri",2487 +1993-09-01,"West Virginia",740 +1993-09-01,"Mississippi",815 +1993-09-01,"New Mexico",929 +1993-09-01,"Utah",1449 +1993-09-01,"New Jersey",5149 +1993-09-01,"North Dakota",271 +1993-09-01,"Alabama",1330 +1993-09-01,"Oklahoma",1729 +1993-09-01,"Kansas",1800 +1993-09-01,"Virginia",1435 +1993-09-01,"Rhode Island",487 +1993-09-01,"South Carolina",391 +1993-09-01,"Vermont",51 +1993-09-01,"Texas",7270 +1993-09-01,"Tennessee",1111 +1993-09-01,"South Dakota",363 +1993-09-01,"Ohio",7996 +1993-09-01,"Florida",669 +1993-09-01,"Maine",27 +1993-09-01,"Indiana",4022 +1993-09-01,"Minnesota",3548 +1993-09-01,"Arkansas",1103 +1993-09-01,"Oregon",698 +1993-09-01,"Washington",1376 +1993-09-01,"Montana",741 +1993-09-01,"Arizona",854 +1993-09-01,"Iowa",2137 +1993-09-01,"California",23934 1993-09-01,"Wyoming",380 +1993-09-01,"Massachusetts",3280 +1993-09-01,"Michigan",10020 +1993-09-01,"Colorado",3027 +1993-09-01,"Louisiana",1888 +1993-09-01,"Illinois",15193 +1993-09-01,"Hawaii",42 +1993-09-01,"Kentucky",1410 +1993-09-01,"Idaho",310 +1993-09-01,"Connecticut",1128 +1993-09-01,"Nevada",651 +1993-09-01,"Georgia",2903 +1993-09-01,"U.S.",141580 +1993-09-01,"Delaware",185 +1993-09-01,"Missouri",3096 +1993-09-01,"Alaska",513 +1993-09-01,"New Hampshire",155 +1993-09-01,"Pennsylvania",6754 +1993-09-01,"Maryland",2140 +1993-09-01,"Wisconsin",3900 +1993-09-01,"North Carolina",815 +1993-09-01,"New York",9719 +1993-09-01,"District of Columbia",427 +1993-09-01,"Nebraska",1217 +1993-10-01,"Colorado",4451 +1993-10-01,"Pennsylvania",15261 +1993-10-01,"South Carolina",630 +1993-10-01,"New Mexico",2000 +1993-10-01,"North Dakota",505 +1993-10-01,"Michigan",22363 +1993-10-01,"Rhode Island",975 +1993-10-01,"Hawaii",42 +1993-10-01,"Vermont",127 +1993-10-01,"Nevada",804 +1993-10-01,"Texas",11527 +1993-10-01,"Georgia",6147 +1993-10-01,"Minnesota",7022 +1993-10-01,"Nebraska",1998 +1993-10-01,"South Dakota",641 +1993-10-01,"New Hampshire",328 +1993-10-01,"Illinois",31937 +1993-10-01,"Idaho",481 +1993-10-01,"Maryland",3629 +1993-10-01,"Montana",1172 +1993-10-01,"California",25932 +1993-10-01,"North Carolina",1459 +1993-10-01,"Florida",706 +1993-10-01,"Kansas",2677 +1993-10-01,"Alaska",1043 +1993-10-01,"Kentucky",3858 +1993-10-01,"West Virginia",1818 +1993-10-01,"Maine",62 +1993-10-01,"Indiana",9497 +1993-10-01,"District of Columbia",588 +1993-10-01,"New Jersey",9600 +1993-10-01,"U.S.",254494 +1993-10-01,"Alabama",1526 +1993-10-01,"Louisiana",2112 +1993-10-01,"Oregon",959 +1993-10-01,"Utah",2322 +1993-10-01,"Massachusetts",5839 +1993-10-01,"Delaware",289 +1993-10-01,"Virginia",2695 +1993-10-01,"Arizona",988 +1993-10-01,"Washington",2169 +1993-10-01,"Wisconsin",7884 +1993-10-01,"Mississippi",933 +1993-10-01,"Oklahoma",2317 1993-10-01,"Wyoming",641 +1993-10-01,"Missouri",4774 +1993-10-01,"Arkansas",1575 +1993-10-01,"Ohio",20454 +1993-10-01,"Iowa",4595 +1993-10-01,"Connecticut",2317 +1993-10-01,"New York",18990 +1993-10-01,"Tennessee",1839 +1993-11-01,"South Dakota",1261 +1993-11-01,"Ohio",34956 +1993-11-01,"Iowa",8673 +1993-11-01,"Idaho",1159 +1993-11-01,"Delaware",609 +1993-11-01,"Alaska",1261 +1993-11-01,"Hawaii",46 +1993-11-01,"District of Columbia",1115 +1993-11-01,"North Dakota",964 +1993-11-01,"Alabama",3853 +1993-11-01,"Oklahoma",6783 +1993-11-01,"Indiana",16628 +1993-11-01,"Georgia",11585 +1993-11-01,"Missouri",11929 +1993-11-01,"Michigan",34389 +1993-11-01,"Colorado",8984 +1993-11-01,"Pennsylvania",24357 +1993-11-01,"West Virginia",3347 +1993-11-01,"Oregon",2336 1993-11-01,"Wyoming",1181 +1993-11-01,"Texas",24155 +1993-11-01,"Louisiana",5120 +1993-11-01,"Kentucky",7612 +1993-11-01,"Washington",4650 +1993-11-01,"Tennessee",5774 +1993-11-01,"U.S.",457330 +1993-11-01,"Kansas",6796 +1993-11-01,"Rhode Island",1510 +1993-11-01,"South Carolina",2030 +1993-11-01,"Maryland",6642 +1993-11-01,"Montana",2236 +1993-11-01,"North Carolina",3918 +1993-11-01,"Utah",4676 +1993-11-01,"Minnesota",12508 +1993-11-01,"Nebraska",4336 +1993-11-01,"Arkansas",4024 +1993-11-01,"New Hampshire",528 +1993-11-01,"Illinois",51226 +1993-11-01,"Connecticut",3922 +1993-11-01,"Wisconsin",13043 +1993-11-01,"Florida",1007 +1993-11-01,"Maine",88 +1993-11-01,"Vermont",189 +1993-11-01,"Nevada",1492 +1993-11-01,"Massachusetts",10175 +1993-11-01,"New Jersey",17162 +1993-11-01,"Virginia",5569 +1993-11-01,"Arizona",1847 +1993-11-01,"California",39240 +1993-11-01,"Mississippi",2518 +1993-11-01,"New Mexico",4358 +1993-11-01,"New York",33567 +1993-12-01,"South Dakota",1768 +1993-12-01,"Colorado",14527 +1993-12-01,"Ohio",51423 +1993-12-01,"Maryland",10778 +1993-12-01,"New York",49569 +1993-12-01,"District of Columbia",2134 +1993-12-01,"U.S.",705034 +1993-12-01,"Delaware",974 +1993-12-01,"Arizona",4566 +1993-12-01,"Oregon",4896 +1993-12-01,"Idaho",2057 +1993-12-01,"South Carolina",3652 +1993-12-01,"Florida",1605 +1993-12-01,"Mississippi",3832 +1993-12-01,"New Mexico",5803 +1993-12-01,"Nevada",3261 1993-12-01,"Wyoming",1731 +1993-12-01,"Alaska",1772 +1993-12-01,"Pennsylvania",37429 +1993-12-01,"West Virginia",5072 +1993-12-01,"Minnesota",18169 +1993-12-01,"Nebraska",6820 +1993-12-01,"Hawaii",47 +1993-12-01,"Montana",2961 +1993-12-01,"Massachusetts",14355 +1993-12-01,"Alabama",6727 +1993-12-01,"Arkansas",6182 +1993-12-01,"New Hampshire",790 +1993-12-01,"Kentucky",11510 +1993-12-01,"North Carolina",6733 +1993-12-01,"Missouri",18644 +1993-12-01,"Rhode Island",2023 +1993-12-01,"Washington",8309 +1993-12-01,"Wisconsin",18564 +1993-12-01,"Maine",129 +1993-12-01,"Indiana",24391 +1993-12-01,"Texas",33110 +1993-12-01,"Tennessee",9003 +1993-12-01,"Georgia",20533 +1993-12-01,"Virginia",10007 +1993-12-01,"Michigan",50690 +1993-12-01,"Connecticut",5101 +1993-12-01,"California",70513 +1993-12-01,"Vermont",285 +1993-12-01,"Oklahoma",10675 +1993-12-01,"New Jersey",26505 +1993-12-01,"Kansas",11571 +1993-12-01,"Louisiana",7896 +1993-12-01,"Illinois",75134 +1993-12-01,"Iowa",11735 +1993-12-01,"Utah",7619 +1993-12-01,"North Dakota",1457 +1994-01-01,"Pennsylvania",55091 +1994-01-01,"Iowa",16659 +1994-01-01,"Washington",7905 +1994-01-01,"Maryland",15481 +1994-01-01,"Wisconsin",25797 +1994-01-01,"Montana",2722 +1994-01-01,"Nevada",3597 +1994-01-01,"Georgia",23864 +1994-01-01,"Delaware",1579 +1994-01-01,"Alaska",1815 +1994-01-01,"Connecticut",7795 +1994-01-01,"Alabama",10714 +1994-01-01,"Michigan",72958 +1994-01-01,"South Carolina",5997 +1994-01-01,"California",72586 +1994-01-01,"Florida",2725 +1994-01-01,"Mississippi",6163 +1994-01-01,"Oklahoma",13551 +1994-01-01,"District of Columbia",3317 +1994-01-01,"New Jersey",43772 +1994-01-01,"Virginia",14437 +1994-01-01,"Nebraska",8455 +1994-01-01,"Arizona",5663 +1994-01-01,"Oregon",4708 +1994-01-01,"Idaho",1929 +1994-01-01,"Vermont",478 +1994-01-01,"South Dakota",2234 +1994-01-01,"Colorado",16252 +1994-01-01,"New Hampshire",1294 +1994-01-01,"Illinois",104083 +1994-01-01,"Ohio",72950 +1994-01-01,"Kentucky",15487 +1994-01-01,"North Carolina",11081 +1994-01-01,"Indiana",35494 +1994-01-01,"U.S.",952520 +1994-01-01,"Hawaii",53 +1994-01-01,"Massachusetts",21444 +1994-01-01,"North Dakota",2042 +1994-01-01,"Louisiana",11755 +1994-01-01,"New Mexico",4824 +1994-01-01,"New York",70935 +1994-01-01,"Utah",7251 +1994-01-01,"Texas",42609 +1994-01-01,"Minnesota",26272 +1994-01-01,"Kansas",15494 +1994-01-01,"Missouri",26174 +1994-01-01,"Arkansas",8723 +1994-01-01,"Rhode Island",3061 +1994-01-01,"West Virginia",7397 +1994-01-01,"Maine",171 1994-01-01,"Wyoming",1849 +1994-01-01,"Tennessee",13829 +1994-02-01,"Idaho",1926 +1994-02-01,"Connecticut",7960 +1994-02-01,"Mississippi",5192 1994-02-01,"Wyoming",1790 +1994-02-01,"Utah",7329 +1994-02-01,"South Dakota",2249 +1994-02-01,"Louisiana",9414 +1994-02-01,"West Virginia",6344 +1994-02-01,"South Carolina",4969 +1994-02-01,"New Mexico",4762 +1994-02-01,"Oklahoma",13450 +1994-02-01,"New York",69054 +1994-02-01,"U.S.",841815 +1994-02-01,"Pennsylvania",47970 +1994-02-01,"Hawaii",53 +1994-02-01,"Ohio",59452 +1994-02-01,"Kentucky",10560 +1994-02-01,"North Carolina",9487 +1994-02-01,"Florida",2089 +1994-02-01,"Vermont",456 +1994-02-01,"Texas",37064 +1994-02-01,"Minnesota",22129 +1994-02-01,"Rhode Island",3269 +1994-02-01,"Oregon",4373 +1994-02-01,"California",66977 +1994-02-01,"Maine",135 +1994-02-01,"Georgia",16736 +1994-02-01,"Missouri",29359 +1994-02-01,"Michigan",65427 +1994-02-01,"Colorado",15391 +1994-02-01,"Nevada",3331 +1994-02-01,"Indiana",28268 +1994-02-01,"District of Columbia",3018 +1994-02-01,"Tennessee",11693 +1994-02-01,"Delaware",1836 +1994-02-01,"Alaska",1763 +1994-02-01,"Illinois",81098 +1994-02-01,"Arizona",5158 +1994-02-01,"Maryland",14047 +1994-02-01,"Wisconsin",22434 +1994-02-01,"Kansas",13162 +1994-02-01,"Virginia",12113 +1994-02-01,"Nebraska",8562 +1994-02-01,"New Hampshire",1187 +1994-02-01,"Iowa",14415 +1994-02-01,"Montana",2915 +1994-02-01,"Massachusetts",22427 +1994-02-01,"Alabama",10653 +1994-02-01,"Washington",7815 +1994-02-01,"New Jersey",40563 +1994-02-01,"North Dakota",2019 +1994-02-01,"Arkansas",7974 +1994-03-01,"Arizona",3659 +1994-03-01,"Iowa",9423 +1994-03-01,"Montana",2180 +1994-03-01,"Utah",4831 +1994-03-01,"Tennessee",7753 +1994-03-01,"Delaware",1480 +1994-03-01,"Arkansas",5659 +1994-03-01,"Rhode Island",2694 +1994-03-01,"Illinois",57684 +1994-03-01,"South Carolina",3024 +1994-03-01,"Maryland",10751 +1994-03-01,"Vermont",369 +1994-03-01,"Massachusetts",18027 +1994-03-01,"New Jersey",31677 +1994-03-01,"Minnesota",14653 +1994-03-01,"Alabama",6935 +1994-03-01,"Missouri",15303 +1994-03-01,"Nebraska",6098 +1994-03-01,"Michigan",50524 +1994-03-01,"Ohio",47016 +1994-03-01,"Oregon",3359 +1994-03-01,"North Dakota",1448 +1994-03-01,"South Dakota",1558 +1994-03-01,"New Hampshire",925 +1994-03-01,"Pennsylvania",39926 +1994-03-01,"Hawaii",52 +1994-03-01,"Washington",6670 +1994-03-01,"Connecticut",6527 +1994-03-01,"Kentucky",8417 +1994-03-01,"Wisconsin",16632 +1994-03-01,"North Carolina",6623 +1994-03-01,"Mississippi",3481 +1994-03-01,"New York",56809 +1994-03-01,"Indiana",20773 1994-03-01,"Wyoming",1371 +1994-03-01,"Texas",25521 +1994-03-01,"Georgia",12037 +1994-03-01,"Louisiana",6612 +1994-03-01,"West Virginia",5136 +1994-03-01,"Idaho",1432 +1994-03-01,"Maine",116 +1994-03-01,"Nevada",2505 +1994-03-01,"Virginia",9306 +1994-03-01,"Colorado",13500 +1994-03-01,"Florida",1472 +1994-03-01,"District of Columbia",2437 +1994-03-01,"Alaska",1952 +1994-03-01,"California",52478 +1994-03-01,"New Mexico",3326 +1994-03-01,"Oklahoma",9884 +1994-03-01,"U.S.",630616 +1994-03-01,"Kansas",8589 +1994-04-01,"Alaska",1480 +1994-04-01,"West Virginia",3281 +1994-04-01,"Oklahoma",5919 +1994-04-01,"Kentucky",3601 +1994-04-01,"Idaho",1001 +1994-04-01,"Tennessee",4606 +1994-04-01,"Louisiana",4057 +1994-04-01,"Pennsylvania",22900 +1994-04-01,"Oregon",2394 +1994-04-01,"Washington",4519 +1994-04-01,"Connecticut",4038 +1994-04-01,"Florida",1152 +1994-04-01,"Nevada",1474 +1994-04-01,"District of Columbia",1402 +1994-04-01,"Minnesota",10392 +1994-04-01,"Delaware",879 +1994-04-01,"Arizona",2142 +1994-04-01,"Montana",1600 +1994-04-01,"Maine",69 +1994-04-01,"Vermont",261 +1994-04-01,"New Jersey",18003 +1994-04-01,"Mississippi",2254 1994-04-01,"Wyoming",1121 +1994-04-01,"Utah",3524 +1994-04-01,"North Dakota",1031 +1994-04-01,"Arkansas",3756 +1994-04-01,"South Dakota",1034 +1994-04-01,"Rhode Island",1698 +1994-04-01,"Illinois",34511 +1994-04-01,"Maryland",5905 +1994-04-01,"North Carolina",3521 +1994-04-01,"California",35315 +1994-04-01,"Massachusetts",11263 +1994-04-01,"Texas",15288 +1994-04-01,"U.S.",392153 +1994-04-01,"Alabama",4557 +1994-04-01,"Kansas",5752 +1994-04-01,"Missouri",10085 +1994-04-01,"Nebraska",4020 +1994-04-01,"Colorado",9732 +1994-04-01,"Ohio",28942 +1994-04-01,"Iowa",6371 +1994-04-01,"South Carolina",1526 +1994-04-01,"Wisconsin",10937 +1994-04-01,"New Mexico",2062 +1994-04-01,"New York",35998 +1994-04-01,"Michigan",33363 +1994-04-01,"New Hampshire",665 +1994-04-01,"Hawaii",51 +1994-04-01,"Indiana",12918 +1994-04-01,"Georgia",5297 +1994-04-01,"Virginia",4487 +1994-05-01,"Iowa",3718 +1994-05-01,"Idaho",568 +1994-05-01,"Oklahoma",3639 +1994-05-01,"Arkansas",1800 +1994-05-01,"New Hampshire",391 +1994-05-01,"West Virginia",1841 +1994-05-01,"South Carolina",714 +1994-05-01,"Virginia",2623 +1994-05-01,"Nebraska",2328 +1994-05-01,"Illinois",20774 +1994-05-01,"Washington",2648 +1994-05-01,"Connecticut",2162 +1994-05-01,"New Mexico",1070 +1994-05-01,"Indiana",7190 +1994-05-01,"Utah",1577 +1994-05-01,"Georgia",4434 +1994-05-01,"U.S.",246872 +1994-05-01,"South Dakota",603 +1994-05-01,"Michigan",20215 +1994-05-01,"Alaska",1026 +1994-05-01,"Hawaii",48 +1994-05-01,"Kentucky",2314 +1994-05-01,"North Carolina",1704 +1994-05-01,"New Jersey",9046 +1994-05-01,"Texas",10159 +1994-05-01,"Tennessee",2027 +1994-05-01,"Alabama",2208 +1994-05-01,"Louisiana",2495 +1994-05-01,"Mississippi",1088 +1994-05-01,"Delaware",397 +1994-05-01,"Missouri",5393 +1994-05-01,"Pennsylvania",13510 +1994-05-01,"Oregon",1415 +1994-05-01,"Maryland",3732 +1994-05-01,"Florida",815 +1994-05-01,"Nevada",1151 +1994-05-01,"Massachusetts",6381 +1994-05-01,"Colorado",6819 +1994-05-01,"Ohio",18242 +1994-05-01,"Wisconsin",5763 +1994-05-01,"Montana",1005 +1994-05-01,"California",37223 +1994-05-01,"Vermont",139 +1994-05-01,"Minnesota",5067 +1994-05-01,"Kansas",3096 +1994-05-01,"Rhode Island",1098 +1994-05-01,"Arizona",1443 +1994-05-01,"Maine",49 +1994-05-01,"New York",21764 1994-05-01,"Wyoming",652 +1994-05-01,"District of Columbia",725 +1994-05-01,"North Dakota",582 +1994-06-01,"Washington",1960 +1994-06-01,"Maryland",2579 +1994-06-01,"North Carolina",1206 +1994-06-01,"New Mexico",957 +1994-06-01,"Indiana",3664 1994-06-01,"Wyoming",352 +1994-06-01,"North Dakota",263 +1994-06-01,"Nebraska",1179 +1994-06-01,"South Dakota",270 +1994-06-01,"West Virginia",926 +1994-06-01,"Wisconsin",3020 +1994-06-01,"Texas",8312 +1994-06-01,"Georgia",3271 +1994-06-01,"Missouri",3074 +1994-06-01,"Alaska",651 +1994-06-01,"Rhode Island",602 +1994-06-01,"Pennsylvania",8233 +1994-06-01,"Nevada",883 +1994-06-01,"Utah",1404 +1994-06-01,"New Jersey",6362 +1994-06-01,"U.S.",154411 +1994-06-01,"Michigan",9904 +1994-06-01,"Iowa",1867 +1994-06-01,"Oregon",1086 +1994-06-01,"Maine",32 +1994-06-01,"Idaho",367 +1994-06-01,"South Carolina",528 +1994-06-01,"Delaware",281 +1994-06-01,"Arkansas",1190 +1994-06-01,"Colorado",3474 +1994-06-01,"New Hampshire",222 +1994-06-01,"Illinois",11747 +1994-06-01,"Hawaii",49 +1994-06-01,"Connecticut",1397 +1994-06-01,"Florida",746 +1994-06-01,"District of Columbia",527 +1994-06-01,"Tennessee",1350 +1994-06-01,"Louisiana",2036 +1994-06-01,"Arizona",1116 +1994-06-01,"Kentucky",1260 +1994-06-01,"Oklahoma",2014 +1994-06-01,"Minnesota",2849 +1994-06-01,"Alabama",1542 +1994-06-01,"Ohio",9589 +1994-06-01,"Montana",614 +1994-06-01,"California",26995 +1994-06-01,"Vermont",84 +1994-06-01,"Mississippi",883 +1994-06-01,"New York",13362 +1994-06-01,"Massachusetts",4370 +1994-06-01,"Kansas",1911 +1994-06-01,"Virginia",1850 +1994-07-01,"New Hampshire",136 +1994-07-01,"Montana",461 +1994-07-01,"North Carolina",866 +1994-07-01,"Texas",7504 +1994-07-01,"Tennessee",1133 +1994-07-01,"Delaware",179 +1994-07-01,"Kansas",1757 +1994-07-01,"Colorado",2546 +1994-07-01,"Illinois",10270 +1994-07-01,"Connecticut",1022 +1994-07-01,"Mississippi",845 +1994-07-01,"Ohio",7154 +1994-07-01,"Kentucky",1178 +1994-07-01,"Idaho",298 +1994-07-01,"South Carolina",439 +1994-07-01,"Florida",691 +1994-07-01,"Maine",23 +1994-07-01,"District of Columbia",427 +1994-07-01,"New Jersey",5307 +1994-07-01,"Nebraska",1014 +1994-07-01,"South Dakota",181 +1994-07-01,"Louisiana",1924 +1994-07-01,"Hawaii",46 +1994-07-01,"California",24541 +1994-07-01,"Oklahoma",1687 1994-07-01,"Wyoming",276 +1994-07-01,"Missouri",2651 +1994-07-01,"Michigan",7353 +1994-07-01,"Rhode Island",439 +1994-07-01,"Wisconsin",2812 +1994-07-01,"Vermont",48 +1994-07-01,"Massachusetts",3053 +1994-07-01,"U.S.",126805 +1994-07-01,"Minnesota",2477 +1994-07-01,"Virginia",1380 +1994-07-01,"Alaska",491 +1994-07-01,"Pennsylvania",5541 +1994-07-01,"Iowa",1458 +1994-07-01,"Nevada",669 +1994-07-01,"Indiana",2839 +1994-07-01,"Utah",1369 +1994-07-01,"North Dakota",220 +1994-07-01,"Georgia",3008 +1994-07-01,"Alabama",1361 +1994-07-01,"Arkansas",1068 +1994-07-01,"Arizona",899 +1994-07-01,"Oregon",751 +1994-07-01,"New Mexico",909 +1994-07-01,"New York",10073 +1994-07-01,"West Virginia",541 +1994-07-01,"Washington",1460 +1994-07-01,"Maryland",2032 +1994-08-01,"Michigan",7536 +1994-08-01,"New Hampshire",126 +1994-08-01,"Rhode Island",422 +1994-08-01,"Illinois",10238 +1994-08-01,"Ohio",6618 1994-08-01,"Wyoming",257 +1994-08-01,"South Carolina",429 +1994-08-01,"Connecticut",921 +1994-08-01,"Maryland",1903 +1994-08-01,"Maine",22 +1994-08-01,"Utah",1306 +1994-08-01,"Tennessee",1081 +1994-08-01,"Georgia",3149 +1994-08-01,"U.S.",121952 +1994-08-01,"Delaware",159 +1994-08-01,"Wisconsin",2832 +1994-08-01,"California",23620 +1994-08-01,"Florida",665 +1994-08-01,"Mississippi",784 +1994-08-01,"Oklahoma",1533 +1994-08-01,"Kentucky",1211 +1994-08-01,"Vermont",45 +1994-08-01,"New Mexico",805 +1994-08-01,"New York",9505 +1994-08-01,"Nevada",587 +1994-08-01,"Texas",7176 +1994-08-01,"Minnesota",2470 +1994-08-01,"West Virginia",625 +1994-08-01,"North Dakota",183 +1994-08-01,"Alabama",1323 +1994-08-01,"Arkansas",959 +1994-08-01,"Louisiana",1717 +1994-08-01,"Iowa",1514 +1994-08-01,"Oregon",611 +1994-08-01,"Washington",1040 +1994-08-01,"Montana",396 +1994-08-01,"District of Columbia",389 +1994-08-01,"South Dakota",259 +1994-08-01,"Hawaii",42 +1994-08-01,"Idaho",212 +1994-08-01,"North Carolina",806 +1994-08-01,"Indiana",3077 +1994-08-01,"Kansas",1647 +1994-08-01,"Missouri",2303 +1994-08-01,"Nebraska",935 +1994-08-01,"Colorado",2378 +1994-08-01,"Alaska",416 +1994-08-01,"Pennsylvania",5463 +1994-08-01,"Arizona",806 +1994-08-01,"Massachusetts",2786 +1994-08-01,"New Jersey",5278 +1994-08-01,"Virginia",1386 +1994-09-01,"Rhode Island",427 +1994-09-01,"Idaho",273 +1994-09-01,"Florida",712 +1994-09-01,"Mississippi",834 +1994-09-01,"Oklahoma",1667 +1994-09-01,"Missouri",2743 +1994-09-01,"Michigan",8524 +1994-09-01,"Louisiana",1882 +1994-09-01,"Connecticut",1037 +1994-09-01,"Wisconsin",3179 +1994-09-01,"New Mexico",872 +1994-09-01,"Utah",1457 +1994-09-01,"South Dakota",274 +1994-09-01,"Indiana",3725 1994-09-01,"Wyoming",333 +1994-09-01,"Nebraska",1037 +1994-09-01,"Colorado",2440 +1994-09-01,"Pennsylvania",6181 +1994-09-01,"Maryland",2164 +1994-09-01,"New Jersey",5873 +1994-09-01,"Alabama",1325 +1994-09-01,"Delaware",180 +1994-09-01,"Virginia",1439 +1994-09-01,"New Hampshire",170 +1994-09-01,"Illinois",11782 +1994-09-01,"Ohio",7106 +1994-09-01,"Iowa",1787 +1994-09-01,"South Carolina",444 +1994-09-01,"Massachusetts",3105 +1994-09-01,"Tennessee",1145 +1994-09-01,"Arizona",851 +1994-09-01,"West Virginia",789 +1994-09-01,"District of Columbia",403 +1994-09-01,"Texas",7502 +1994-09-01,"Kansas",1615 +1994-09-01,"Alaska",567 +1994-09-01,"Oregon",637 +1994-09-01,"Washington",1263 +1994-09-01,"Montana",535 +1994-09-01,"Maine",30 +1994-09-01,"New York",10123 +1994-09-01,"North Dakota",235 +1994-09-01,"Georgia",2918 +1994-09-01,"U.S.",130370 +1994-09-01,"Minnesota",2798 +1994-09-01,"Arkansas",1107 +1994-09-01,"Hawaii",45 +1994-09-01,"Kentucky",1300 +1994-09-01,"North Carolina",903 +1994-09-01,"California",21949 +1994-09-01,"Vermont",54 +1994-09-01,"Nevada",632 +1994-10-01,"Indiana",7277 +1994-10-01,"District of Columbia",547 +1994-10-01,"Texas",9242 +1994-10-01,"Virginia",2880 +1994-10-01,"Michigan",16721 +1994-10-01,"Alaska",1042 +1994-10-01,"New Hampshire",275 +1994-10-01,"West Virginia",1511 +1994-10-01,"Oregon",1147 +1994-10-01,"Vermont",93 +1994-10-01,"Oklahoma",2163 +1994-10-01,"New York",17017 +1994-10-01,"North Dakota",385 +1994-10-01,"South Dakota",503 +1994-10-01,"Ohio",16773 +1994-10-01,"Kentucky",2820 +1994-10-01,"Washington",2558 +1994-10-01,"Maryland",3356 +1994-10-01,"Montana",1184 +1994-10-01,"Mississippi",921 +1994-10-01,"Utah",3845 +1994-10-01,"Massachusetts",5164 +1994-10-01,"Alabama",1495 +1994-10-01,"Idaho",584 +1994-10-01,"Maine",51 +1994-10-01,"New Mexico",2174 +1994-10-01,"New Jersey",9903 +1994-10-01,"Minnesota",5431 +1994-10-01,"Missouri",3415 +1994-10-01,"Colorado",4013 +1994-10-01,"Rhode Island",736 +1994-10-01,"Hawaii",43 +1994-10-01,"Connecticut",1677 +1994-10-01,"North Carolina",1568 +1994-10-01,"Arizona",1053 +1994-10-01,"Iowa",2862 +1994-10-01,"South Carolina",734 +1994-10-01,"California",25961 +1994-10-01,"U.S.",220553 +1994-10-01,"Kansas",3828 +1994-10-01,"Illinois",24121 +1994-10-01,"Nevada",829 +1994-10-01,"Georgia",5390 +1994-10-01,"Nebraska",1523 +1994-10-01,"Arkansas",1423 +1994-10-01,"Louisiana",2154 +1994-10-01,"Pennsylvania",12677 +1994-10-01,"Wisconsin",6185 +1994-10-01,"Florida",711 1994-10-01,"Wyoming",662 +1994-10-01,"Tennessee",1668 +1994-10-01,"Delaware",259 +1994-11-01,"South Dakota",1098 +1994-11-01,"Alaska",1497 +1994-11-01,"Illinois",42438 +1994-11-01,"Kentucky",5209 +1994-11-01,"Washington",6171 +1994-11-01,"South Carolina",1590 +1994-11-01,"Connecticut",2506 +1994-11-01,"Pennsylvania",18904 +1994-11-01,"New Mexico",4024 +1994-11-01,"Tennessee",3570 +1994-11-01,"Nebraska",3169 +1994-11-01,"Rhode Island",1060 +1994-11-01,"Arizona",2024 +1994-11-01,"Vermont",134 +1994-11-01,"Indiana",12189 +1994-11-01,"Alabama",2602 +1994-11-01,"Delaware",459 +1994-11-01,"Michigan",27344 +1994-11-01,"Florida",829 +1994-11-01,"Nevada",1751 +1994-11-01,"North Dakota",807 +1994-11-01,"Georgia",9453 +1994-11-01,"Arkansas",2724 +1994-11-01,"Oregon",3247 +1994-11-01,"Maryland",5425 +1994-11-01,"Maine",78 +1994-11-01,"New York",27143 1994-11-01,"Wyoming",1210 +1994-11-01,"Texas",15760 +1994-11-01,"Kansas",6443 +1994-11-01,"New Hampshire",419 +1994-11-01,"Hawaii",47 +1994-11-01,"Idaho",1456 +1994-11-01,"Wisconsin",11079 +1994-11-01,"Montana",2115 +1994-11-01,"North Carolina",3655 +1994-11-01,"Utah",6969 +1994-11-01,"U.S.",391460 +1994-11-01,"Virginia",4667 +1994-11-01,"Missouri",7339 +1994-11-01,"Louisiana",2985 +1994-11-01,"West Virginia",2462 +1994-11-01,"California",56469 +1994-11-01,"Massachusetts",8010 +1994-11-01,"Colorado",8388 +1994-11-01,"Ohio",26029 +1994-11-01,"Iowa",6693 +1994-11-01,"Mississippi",1542 +1994-11-01,"Oklahoma",4292 +1994-11-01,"District of Columbia",928 +1994-11-01,"New Jersey",14676 +1994-11-01,"Minnesota",10383 +1994-12-01,"Illinois",65041 +1994-12-01,"Kentucky",9175 +1994-12-01,"Florida",1248 +1994-12-01,"Indiana",20054 +1994-12-01,"New Jersey",26412 +1994-12-01,"Alaska",2195 +1994-12-01,"Louisiana",5947 +1994-12-01,"Washington",9135 +1994-12-01,"South Carolina",3090 +1994-12-01,"Vermont",277 +1994-12-01,"Oklahoma",9411 +1994-12-01,"Virginia",8605 +1994-12-01,"Nebraska",6076 +1994-12-01,"Pennsylvania",32009 +1994-12-01,"Maryland",9314 +1994-12-01,"Utah",8059 +1994-12-01,"North Dakota",1446 +1994-12-01,"Georgia",15880 +1994-12-01,"U.S.",638175 +1994-12-01,"Minnesota",17328 +1994-12-01,"Delaware",869 +1994-12-01,"New Hampshire",762 +1994-12-01,"Iowa",11494 +1994-12-01,"Idaho",2240 +1994-12-01,"Montana",2986 +1994-12-01,"Maine",117 +1994-12-01,"Massachusetts",13611 +1994-12-01,"Arkansas",5144 +1994-12-01,"Michigan",44719 +1994-12-01,"Ohio",43460 +1994-12-01,"North Carolina",6030 +1994-12-01,"Mississippi",3098 +1994-12-01,"New York",43626 +1994-12-01,"Nevada",3855 +1994-12-01,"Texas",27295 +1994-12-01,"Alabama",5034 +1994-12-01,"Hawaii",50 +1994-12-01,"New Mexico",5084 1994-12-01,"Wyoming",1690 +1994-12-01,"District of Columbia",1746 +1994-12-01,"South Dakota",1794 +1994-12-01,"Colorado",14571 +1994-12-01,"Rhode Island",1877 +1994-12-01,"Wisconsin",17505 +1994-12-01,"Missouri",14727 +1994-12-01,"Arizona",4869 +1994-12-01,"West Virginia",4348 +1994-12-01,"Oregon",5120 +1994-12-01,"Connecticut",4559 +1994-12-01,"California",76846 +1994-12-01,"Tennessee",7480 +1994-12-01,"Kansas",10864 +1995-01-01,"Louisiana",9590 +1995-01-01,"Pennsylvania",41264 +1995-01-01,"Arizona",5531 +1995-01-01,"Oregon",5117 +1995-01-01,"Vermont",352 +1995-01-01,"Nevada",3927 +1995-01-01,"District of Columbia",2503 +1995-01-01,"New Jersey",30505 +1995-01-01,"U.S.",815547 +1995-01-01,"Virginia",11505 +1995-01-01,"Montana",3072 +1995-01-01,"Texas",37828 +1995-01-01,"Tennessee",11673 +1995-01-01,"Iowa",14994 +1995-01-01,"West Virginia",5783 +1995-01-01,"New York",56657 +1995-01-01,"Arkansas",7598 +1995-01-01,"South Dakota",2027 +1995-01-01,"Colorado",16254 +1995-01-01,"Alaska",2059 +1995-01-01,"Florida",2239 +1995-01-01,"Massachusetts",15914 +1995-01-01,"North Dakota",1811 +1995-01-01,"Missouri",23360 +1995-01-01,"New Hampshire",1013 +1995-01-01,"Kentucky",12353 +1995-01-01,"South Carolina",4919 +1995-01-01,"Wisconsin",22180 +1995-01-01,"North Carolina",9068 +1995-01-01,"Mississippi",5027 +1995-01-01,"Minnesota",21158 +1995-01-01,"Nebraska",8146 +1995-01-01,"Rhode Island",2054 +1995-01-01,"Illinois",88983 +1995-01-01,"Washington",9018 +1995-01-01,"Idaho",2375 +1995-01-01,"California",79509 +1995-01-01,"New Mexico",5335 1995-01-01,"Wyoming",2037 +1995-01-01,"Michigan",58499 +1995-01-01,"Hawaii",53 +1995-01-01,"Connecticut",6189 +1995-01-01,"Oklahoma",12929 +1995-01-01,"Georgia",20343 +1995-01-01,"Alabama",8338 +1995-01-01,"Ohio",60093 +1995-01-01,"Maryland",12358 +1995-01-01,"Maine",130 +1995-01-01,"Indiana",28548 +1995-01-01,"Utah",7769 +1995-01-01,"Delaware",1359 +1995-01-01,"Kansas",14204 +1995-02-01,"Kansas",11140 +1995-02-01,"Nebraska",7156 +1995-02-01,"New Hampshire",1024 +1995-02-01,"West Virginia",6546 +1995-02-01,"Montana",2398 +1995-02-01,"New Mexico",3968 +1995-02-01,"Utah",6009 +1995-02-01,"New Jersey",33594 +1995-02-01,"Texas",30036 +1995-02-01,"Missouri",22443 +1995-02-01,"Kentucky",10855 +1995-02-01,"Washington",7028 +1995-02-01,"U.S.",754491 +1995-02-01,"Minnesota",19905 +1995-02-01,"Delaware",1487 +1995-02-01,"Arkansas",6900 +1995-02-01,"South Dakota",1867 +1995-02-01,"Alaska",1923 +1995-02-01,"Rhode Island",2903 +1995-02-01,"Oregon",3656 +1995-02-01,"South Carolina",5128 +1995-02-01,"Connecticut",6577 +1995-02-01,"California",50614 +1995-02-01,"Maine",139 +1995-02-01,"Vermont",372 +1995-02-01,"Nevada",3102 +1995-02-01,"Indiana",27283 +1995-02-01,"North Dakota",1711 +1995-02-01,"Virginia",12596 +1995-02-01,"Louisiana",8860 +1995-02-01,"Hawaii",52 +1995-02-01,"Idaho",1760 +1995-02-01,"Mississippi",4997 +1995-02-01,"Michigan",60358 +1995-02-01,"Pennsylvania",45212 +1995-02-01,"Iowa",12569 +1995-02-01,"Wisconsin",20703 +1995-02-01,"District of Columbia",2877 +1995-02-01,"Colorado",14457 +1995-02-01,"Illinois",74502 +1995-02-01,"North Carolina",9632 +1995-02-01,"Oklahoma",11495 +1995-02-01,"New York",60717 1995-02-01,"Wyoming",1496 +1995-02-01,"Massachusetts",17398 +1995-02-01,"Georgia",18858 +1995-02-01,"Alabama",9200 +1995-02-01,"Ohio",58896 +1995-02-01,"Arizona",4576 +1995-02-01,"Maryland",13230 +1995-02-01,"Florida",2453 +1995-02-01,"Tennessee",11830 +1995-03-01,"Colorado",12862 +1995-03-01,"Iowa",7941 +1995-03-01,"Maryland",9542 +1995-03-01,"New Mexico",2699 +1995-03-01,"New York",52596 +1995-03-01,"Nevada",2189 1995-03-01,"Wyoming",1453 +1995-03-01,"Alabama",7586 +1995-03-01,"Missouri",16036 +1995-03-01,"Michigan",49545 +1995-03-01,"Pennsylvania",33973 +1995-03-01,"Washington",6878 +1995-03-01,"Texas",26496 +1995-03-01,"Virginia",8887 +1995-03-01,"Alaska",1912 +1995-03-01,"South Carolina",3604 +1995-03-01,"California",52461 +1995-03-01,"Oklahoma",10224 +1995-03-01,"Massachusetts",15059 +1995-03-01,"Kansas",9676 +1995-03-01,"Arkansas",5691 +1995-03-01,"Louisiana",6640 +1995-03-01,"West Virginia",4592 +1995-03-01,"Utah",5407 +1995-03-01,"Georgia",10571 +1995-03-01,"Delaware",1417 +1995-03-01,"Nebraska",6026 +1995-03-01,"Illinois",54784 +1995-03-01,"Idaho",1503 +1995-03-01,"Florida",1595 +1995-03-01,"Mississippi",3800 +1995-03-01,"District of Columbia",2239 +1995-03-01,"New Jersey",25526 +1995-03-01,"Tennessee",7907 +1995-03-01,"U.S.",600034 +1995-03-01,"Arizona",2846 +1995-03-01,"Kentucky",7410 +1995-03-01,"Montana",2441 +1995-03-01,"Maine",112 +1995-03-01,"New Hampshire",917 +1995-03-01,"Oregon",3532 +1995-03-01,"Wisconsin",15794 +1995-03-01,"North Carolina",6916 +1995-03-01,"Indiana",19515 +1995-03-01,"North Dakota",1518 +1995-03-01,"Minnesota",15592 +1995-03-01,"South Dakota",1622 +1995-03-01,"Rhode Island",2634 +1995-03-01,"Hawaii",52 +1995-03-01,"Ohio",43659 +1995-03-01,"Connecticut",5825 +1995-03-01,"Vermont",333 +1995-04-01,"Michigan",36085 +1995-04-01,"Louisiana",3731 +1995-04-01,"Kentucky",3655 +1995-04-01,"New Mexico",2282 +1995-04-01,"Oklahoma",5294 +1995-04-01,"Massachusetts",10980 +1995-04-01,"New Jersey",17191 +1995-04-01,"Pennsylvania",23525 +1995-04-01,"West Virginia",3173 +1995-04-01,"Connecticut",4156 1995-04-01,"Wyoming",1200 +1995-04-01,"Texas",14952 +1995-04-01,"Missouri",9399 +1995-04-01,"New Hampshire",688 +1995-04-01,"Rhode Island",1834 +1995-04-01,"Idaho",1274 +1995-04-01,"Maryland",6097 +1995-04-01,"Wisconsin",12184 +1995-04-01,"Maine",81 +1995-04-01,"Nevada",2156 +1995-04-01,"Colorado",9879 +1995-04-01,"Illinois",42392 +1995-04-01,"New York",38254 +1995-04-01,"Georgia",6026 +1995-04-01,"U.S.",418820 +1995-04-01,"Alaska",1573 +1995-04-01,"South Carolina",1584 +1995-04-01,"Montana",1796 +1995-04-01,"Vermont",266 +1995-04-01,"District of Columbia",1299 +1995-04-01,"Minnesota",11393 +1995-04-01,"Oregon",2783 +1995-04-01,"Washington",5064 +1995-04-01,"Florida",1122 +1995-04-01,"Indiana",13049 +1995-04-01,"Tennessee",3361 +1995-04-01,"North Dakota",1190 +1995-04-01,"Alabama",3692 +1995-04-01,"Delaware",865 +1995-04-01,"Arkansas",2973 +1995-04-01,"South Dakota",1255 +1995-04-01,"Hawaii",50 +1995-04-01,"Arizona",2428 +1995-04-01,"California",43743 +1995-04-01,"Mississippi",1770 +1995-04-01,"Utah",4336 +1995-04-01,"Virginia",4876 +1995-04-01,"Nebraska",4284 +1995-04-01,"Ohio",30852 +1995-04-01,"Iowa",7377 +1995-04-01,"North Carolina",3644 +1995-04-01,"Kansas",5711 +1995-05-01,"South Dakota",782 +1995-05-01,"Ohio",16763 +1995-05-01,"Iowa",4303 +1995-05-01,"Oregon",2048 +1995-05-01,"North Carolina",1882 +1995-05-01,"Vermont",136 +1995-05-01,"Oklahoma",4033 +1995-05-01,"U.S.",260367 +1995-05-01,"Minnesota",6033 +1995-05-01,"Missouri",6828 +1995-05-01,"Arizona",1824 +1995-05-01,"West Virginia",1776 +1995-05-01,"Idaho",915 +1995-05-01,"California",38489 +1995-05-01,"Maine",48 +1995-05-01,"New Mexico",1734 +1995-05-01,"Utah",2965 +1995-05-01,"Arkansas",1881 +1995-05-01,"Hawaii",49 +1995-05-01,"Maryland",3664 +1995-05-01,"Florida",841 +1995-05-01,"Alabama",2206 +1995-05-01,"Delaware",501 +1995-05-01,"Virginia",2830 +1995-05-01,"Nebraska",2967 +1995-05-01,"Colorado",9143 +1995-05-01,"Louisiana",2434 +1995-05-01,"Washington",3088 +1995-05-01,"Montana",1264 +1995-05-01,"New Jersey",9274 +1995-05-01,"North Dakota",706 +1995-05-01,"Alaska",943 +1995-05-01,"Mississippi",1178 +1995-05-01,"Nevada",1568 +1995-05-01,"Indiana",7364 1995-05-01,"Wyoming",1006 +1995-05-01,"Texas",9947 +1995-05-01,"Pennsylvania",12140 +1995-05-01,"South Carolina",746 +1995-05-01,"Wisconsin",5804 +1995-05-01,"District of Columbia",813 +1995-05-01,"Rhode Island",1195 +1995-05-01,"Illinois",20203 +1995-05-01,"Massachusetts",6194 +1995-05-01,"Kansas",3902 +1995-05-01,"Michigan",21477 +1995-05-01,"New Hampshire",376 +1995-05-01,"Kentucky",2403 +1995-05-01,"Connecticut",2402 +1995-05-01,"New York",23334 +1995-05-01,"Tennessee",2007 +1995-05-01,"Georgia",3961 +1995-06-01,"Vermont",79 +1995-06-01,"Nevada",1087 1995-06-01,"Wyoming",681 +1995-06-01,"District of Columbia",472 +1995-06-01,"Texas",8008 +1995-06-01,"Delaware",264 +1995-06-01,"West Virginia",702 +1995-06-01,"Wisconsin",3488 +1995-06-01,"Mississippi",892 +1995-06-01,"New Mexico",1371 +1995-06-01,"New York",13817 +1995-06-01,"Massachusetts",3606 +1995-06-01,"North Dakota",390 +1995-06-01,"Minnesota",3405 +1995-06-01,"South Dakota",408 +1995-06-01,"Michigan",10470 +1995-06-01,"New Hampshire",225 +1995-06-01,"Rhode Island",711 +1995-06-01,"Louisiana",2219 +1995-06-01,"Montana",704 +1995-06-01,"Oklahoma",2302 +1995-06-01,"U.S.",158908 +1995-06-01,"Iowa",1334 +1995-06-01,"Florida",748 +1995-06-01,"Arizona",1248 +1995-06-01,"California",28924 +1995-06-01,"Maine",28 +1995-06-01,"Indiana",3701 +1995-06-01,"Washington",1926 +1995-06-01,"Maryland",2228 +1995-06-01,"Colorado",6098 +1995-06-01,"Alaska",680 +1995-06-01,"Illinois",12034 +1995-06-01,"Pennsylvania",6588 +1995-06-01,"Ohio",8575 +1995-06-01,"Kentucky",1129 +1995-06-01,"Oregon",1084 +1995-06-01,"South Carolina",510 +1995-06-01,"Connecticut",1393 +1995-06-01,"North Carolina",1095 +1995-06-01,"Utah",1956 +1995-06-01,"New Jersey",5427 +1995-06-01,"Tennessee",1350 +1995-06-01,"Alabama",1565 +1995-06-01,"Kansas",2078 +1995-06-01,"Nebraska",1587 +1995-06-01,"Hawaii",50 +1995-06-01,"Idaho",539 +1995-06-01,"Georgia",3206 +1995-06-01,"Virginia",1626 +1995-06-01,"Missouri",3659 +1995-06-01,"Arkansas",1243 +1995-07-01,"Arizona",969 +1995-07-01,"Idaho",338 +1995-07-01,"Mississippi",841 +1995-07-01,"New York",10010 +1995-07-01,"Washington",1361 +1995-07-01,"South Carolina",472 +1995-07-01,"Maryland",1945 +1995-07-01,"North Carolina",976 +1995-07-01,"Florida",716 +1995-07-01,"New Mexico",757 +1995-07-01,"Georgia",3002 +1995-07-01,"Virginia",1494 +1995-07-01,"Louisiana",1758 +1995-07-01,"Oregon",808 +1995-07-01,"California",25181 1995-07-01,"Wyoming",347 +1995-07-01,"Minnesota",2584 +1995-07-01,"Kansas",1829 +1995-07-01,"Nebraska",1035 +1995-07-01,"Ohio",7097 +1995-07-01,"Iowa",1380 +1995-07-01,"Connecticut",1045 +1995-07-01,"Vermont",49 +1995-07-01,"New Jersey",4768 +1995-07-01,"Texas",7545 +1995-07-01,"South Dakota",271 +1995-07-01,"New Hampshire",160 +1995-07-01,"Hawaii",47 +1995-07-01,"Maine",24 +1995-07-01,"Utah",1386 +1995-07-01,"Rhode Island",448 +1995-07-01,"West Virginia",574 +1995-07-01,"Montana",532 +1995-07-01,"Tennessee",1149 +1995-07-01,"Delaware",197 +1995-07-01,"Missouri",2869 +1995-07-01,"Michigan",7955 +1995-07-01,"Colorado",3590 +1995-07-01,"Alaska",534 +1995-07-01,"Illinois",11706 +1995-07-01,"Wisconsin",2699 +1995-07-01,"Oklahoma",1833 +1995-07-01,"Nevada",801 +1995-07-01,"Indiana",3083 +1995-07-01,"Massachusetts",2642 +1995-07-01,"North Dakota",235 +1995-07-01,"U.S.",130717 +1995-07-01,"Pennsylvania",5638 +1995-07-01,"Kentucky",1208 +1995-07-01,"District of Columbia",431 +1995-07-01,"Alabama",1401 +1995-07-01,"Arkansas",997 +1995-08-01,"Michigan",7101 +1995-08-01,"Wisconsin",2698 +1995-08-01,"Maine",24 +1995-08-01,"New Mexico",815 +1995-08-01,"Tennessee",1054 +1995-08-01,"Alaska",448 +1995-08-01,"West Virginia",560 +1995-08-01,"Connecticut",884 +1995-08-01,"Montana",447 +1995-08-01,"Colorado",2681 +1995-08-01,"Louisiana",1691 +1995-08-01,"Oregon",654 +1995-08-01,"California",21306 +1995-08-01,"Vermont",42 +1995-08-01,"Oklahoma",1552 +1995-08-01,"Nevada",655 +1995-08-01,"Massachusetts",2358 +1995-08-01,"Alabama",1299 +1995-08-01,"Pennsylvania",5084 +1995-08-01,"Hawaii",43 +1995-08-01,"Arizona",859 +1995-08-01,"North Carolina",799 +1995-08-01,"Florida",641 +1995-08-01,"New York",7634 +1995-08-01,"Utah",1422 +1995-08-01,"Minnesota",2395 +1995-08-01,"Kansas",1654 +1995-08-01,"Virginia",1459 +1995-08-01,"Missouri",2394 +1995-08-01,"Arkansas",930 +1995-08-01,"Rhode Island",448 +1995-08-01,"Ohio",6298 +1995-08-01,"Kentucky",1120 +1995-08-01,"Delaware",177 +1995-08-01,"Nebraska",906 +1995-08-01,"New Hampshire",135 +1995-08-01,"Iowa",1252 +1995-08-01,"Georgia",3000 +1995-08-01,"U.S.",114415 +1995-08-01,"Illinois",9950 +1995-08-01,"Idaho",254 +1995-08-01,"South Carolina",397 +1995-08-01,"Mississippi",811 +1995-08-01,"Indiana",2826 +1995-08-01,"District of Columbia",379 +1995-08-01,"South Dakota",206 +1995-08-01,"Washington",1251 +1995-08-01,"Maryland",1882 1995-08-01,"Wyoming",271 +1995-08-01,"New Jersey",4378 +1995-08-01,"Texas",6707 +1995-08-01,"North Dakota",183 +1995-09-01,"New Hampshire",175 +1995-09-01,"Louisiana",1816 +1995-09-01,"Illinois",13730 +1995-09-01,"Florida",729 +1995-09-01,"Vermont",54 +1995-09-01,"New York",9330 +1995-09-01,"Texas",7378 +1995-09-01,"Kansas",1847 +1995-09-01,"Virginia",1383 +1995-09-01,"Missouri",2842 +1995-09-01,"Nebraska",1051 +1995-09-01,"Hawaii",45 +1995-09-01,"Iowa",1814 +1995-09-01,"Kentucky",1338 +1995-09-01,"Maryland",2094 +1995-09-01,"North Carolina",938 +1995-09-01,"Maine",31 +1995-09-01,"Oklahoma",1715 +1995-09-01,"North Dakota",252 +1995-09-01,"Minnesota",3271 +1995-09-01,"Rhode Island",474 +1995-09-01,"Connecticut",1035 +1995-09-01,"Wisconsin",3699 +1995-09-01,"Georgia",3319 +1995-09-01,"Colorado",2773 +1995-09-01,"Ohio",7397 +1995-09-01,"Oregon",687 +1995-09-01,"Montana",666 +1995-09-01,"Mississippi",476 +1995-09-01,"Utah",1970 +1995-09-01,"Michigan",9901 +1995-09-01,"West Virginia",740 +1995-09-01,"Massachusetts",2664 +1995-09-01,"New Jersey",4957 +1995-09-01,"U.S.",133951 +1995-09-01,"Delaware",176 +1995-09-01,"South Dakota",307 +1995-09-01,"Washington",1411 +1995-09-01,"Idaho",304 +1995-09-01,"Alabama",1279 +1995-09-01,"Pennsylvania",5805 +1995-09-01,"New Mexico",814 +1995-09-01,"Tennessee",1065 +1995-09-01,"Alaska",588 +1995-09-01,"Arizona",878 +1995-09-01,"South Carolina",475 +1995-09-01,"California",22148 +1995-09-01,"Nevada",677 +1995-09-01,"Indiana",3627 1995-09-01,"Wyoming",361 +1995-09-01,"District of Columbia",401 +1995-09-01,"Arkansas",1042 +1995-10-01,"Hawaii",44 +1995-10-01,"Oregon",1128 +1995-10-01,"Georgia",6067 +1995-10-01,"Alabama",1542 +1995-10-01,"Missouri",4259 +1995-10-01,"Nebraska",1577 +1995-10-01,"New York",13159 +1995-10-01,"Nevada",817 +1995-10-01,"Delaware",230 +1995-10-01,"Illinois",26650 +1995-10-01,"South Carolina",646 +1995-10-01,"Maine",48 +1995-10-01,"South Dakota",705 +1995-10-01,"Arizona",1027 +1995-10-01,"Kentucky",3130 +1995-10-01,"Idaho",628 +1995-10-01,"Connecticut",1479 +1995-10-01,"Florida",668 +1995-10-01,"Mississippi",631 +1995-10-01,"Indiana",6884 1995-10-01,"Wyoming",611 +1995-10-01,"U.S.",216412 +1995-10-01,"Virginia",2245 +1995-10-01,"Louisiana",2073 +1995-10-01,"Ohio",17326 +1995-10-01,"Montana",1376 +1995-10-01,"Oklahoma",2526 +1995-10-01,"New Jersey",7195 +1995-10-01,"Texas",8860 +1995-10-01,"Colorado",5456 +1995-10-01,"Iowa",3803 +1995-10-01,"Wisconsin",7000 +1995-10-01,"Vermont",86 +1995-10-01,"Utah",3857 +1995-10-01,"Michigan",17636 +1995-10-01,"Alaska",866 +1995-10-01,"Rhode Island",672 +1995-10-01,"Pennsylvania",10640 +1995-10-01,"North Carolina",1402 +1995-10-01,"California",24743 +1995-10-01,"Massachusetts",3958 +1995-10-01,"North Dakota",424 +1995-10-01,"Kansas",3440 +1995-10-01,"New Hampshire",254 +1995-10-01,"West Virginia",1441 +1995-10-01,"Washington",2444 +1995-10-01,"Maryland",2927 +1995-10-01,"New Mexico",1319 +1995-10-01,"District of Columbia",452 +1995-10-01,"Tennessee",1801 +1995-10-01,"Minnesota",6969 +1995-10-01,"Arkansas",1295 +1995-11-01,"Michigan",39707 +1995-11-01,"Utah",4684 +1995-11-01,"Tennessee",7624 +1995-11-01,"Georgia",14965 +1995-11-01,"Minnesota",14915 +1995-11-01,"Delaware",601 +1995-11-01,"Rhode Island",1336 +1995-11-01,"Nevada",1349 1995-11-01,"Wyoming",1125 +1995-11-01,"Texas",17917 +1995-11-01,"Nebraska",4132 +1995-11-01,"South Dakota",1332 +1995-11-01,"Kentucky",9224 +1995-11-01,"District of Columbia",1246 +1995-11-01,"Massachusetts",9090 +1995-11-01,"Arkansas",3522 +1995-11-01,"Louisiana",4391 +1995-11-01,"North Carolina",4445 +1995-11-01,"New Jersey",18422 +1995-11-01,"U.S.",488812 +1995-11-01,"Arizona",1554 +1995-11-01,"Idaho",1364 +1995-11-01,"Maryland",7601 +1995-11-01,"Florida",1004 +1995-11-01,"Oklahoma",5029 +1995-11-01,"Missouri",11325 +1995-11-01,"Colorado",8830 +1995-11-01,"West Virginia",3626 +1995-11-01,"Connecticut",3449 +1995-11-01,"California",33646 +1995-11-01,"New Mexico",3027 +1995-11-01,"New York",32655 +1995-11-01,"Alaska",1411 +1995-11-01,"New Hampshire",550 +1995-11-01,"Iowa",11222 +1995-11-01,"Oregon",2620 +1995-11-01,"South Carolina",2262 +1995-11-01,"Wisconsin",16784 +1995-11-01,"Montana",2248 +1995-11-01,"Vermont",176 +1995-11-01,"North Dakota",1095 +1995-11-01,"Alabama",3902 +1995-11-01,"Kansas",6757 +1995-11-01,"Virginia",7059 +1995-11-01,"Illinois",64407 +1995-11-01,"Pennsylvania",27801 +1995-11-01,"Hawaii",43 +1995-11-01,"Ohio",40926 +1995-11-01,"Washington",5683 +1995-11-01,"Maine",97 +1995-11-01,"Mississippi",2326 +1995-11-01,"Indiana",18305 +1995-12-01,"Connecticut",6389 +1995-12-01,"California",56731 +1995-12-01,"Utah",7214 +1995-12-01,"Alaska",2294 +1995-12-01,"New Hampshire",991 +1995-12-01,"West Virginia",5867 +1995-12-01,"District of Columbia",2579 +1995-12-01,"New Jersey",33195 +1995-12-01,"Arkansas",7034 +1995-12-01,"Colorado",12262 +1995-12-01,"Maine",151 +1995-12-01,"Mississippi",4212 +1995-12-01,"Massachusetts",15933 +1995-12-01,"Missouri",19696 +1995-12-01,"Texas",30741 +1995-12-01,"North Dakota",1695 +1995-12-01,"U.S.",757844 +1995-12-01,"Kansas",13608 +1995-12-01,"Nebraska",6188 +1995-12-01,"Michigan",61290 +1995-12-01,"Rhode Island",2634 +1995-12-01,"Pennsylvania",44456 +1995-12-01,"Arizona",3154 +1995-12-01,"Oregon",3952 +1995-12-01,"Idaho",1748 +1995-12-01,"South Carolina",4422 +1995-12-01,"Tennessee",9171 +1995-12-01,"Louisiana",7401 +1995-12-01,"Iowa",14248 +1995-12-01,"Washington",7611 +1995-12-01,"Wisconsin",22980 +1995-12-01,"Florida",1785 +1995-12-01,"New Mexico",4649 +1995-12-01,"Georgia",21351 +1995-12-01,"Minnesota",21117 +1995-12-01,"Delaware",1231 +1995-12-01,"Illinois",81457 +1995-12-01,"Hawaii",45 +1995-12-01,"Maryland",12985 +1995-12-01,"Montana",2697 +1995-12-01,"North Carolina",8581 +1995-12-01,"Vermont",353 +1995-12-01,"New York",56841 +1995-12-01,"Indiana",26875 1995-12-01,"Wyoming",1565 +1995-12-01,"South Dakota",1828 +1995-12-01,"Ohio",59871 +1995-12-01,"Kentucky",12325 +1995-12-01,"Oklahoma",9769 +1995-12-01,"Nevada",2357 +1995-12-01,"Alabama",7563 +1995-12-01,"Virginia",12753 +1996-01-01,"Michigan",68480 +1996-01-01,"Colorado",17597 +1996-01-01,"New Hampshire",1193 +1996-01-01,"Hawaii",49 +1996-01-01,"Florida",2828 +1996-01-01,"New York",68033 1996-01-01,"Wyoming",2001 +1996-01-01,"District of Columbia",3302 +1996-01-01,"Louisiana",11865 +1996-01-01,"West Virginia",6958 +1996-01-01,"Maryland",15942 +1996-01-01,"Maine",159 +1996-01-01,"Utah",8555 +1996-01-01,"South Carolina",6602 +1996-01-01,"Connecticut",8159 +1996-01-01,"Oklahoma",14851 +1996-01-01,"Nevada",3744 +1996-01-01,"Indiana",33354 +1996-01-01,"Texas",46282 +1996-01-01,"North Dakota",1955 +1996-01-01,"Georgia",24332 +1996-01-01,"Alabama",10893 +1996-01-01,"Kansas",16870 +1996-01-01,"Illinois",96184 +1996-01-01,"Pennsylvania",51522 +1996-01-01,"Arizona",5443 +1996-01-01,"Wisconsin",25405 +1996-01-01,"Montana",3284 +1996-01-01,"New Mexico",7103 +1996-01-01,"Minnesota",25430 +1996-01-01,"Virginia",14643 +1996-01-01,"Ohio",69244 +1996-01-01,"Kentucky",13638 +1996-01-01,"Washington",9011 +1996-01-01,"North Carolina",12737 +1996-01-01,"New Jersey",41314 +1996-01-01,"Arkansas",9008 +1996-01-01,"South Dakota",2343 +1996-01-01,"Oregon",5047 +1996-01-01,"Idaho",2369 +1996-01-01,"Mississippi",6151 +1996-01-01,"Tennessee",14796 +1996-01-01,"Delaware",1701 +1996-01-01,"Alaska",2054 +1996-01-01,"Vermont",467 +1996-01-01,"U.S.",933642 +1996-01-01,"Rhode Island",3342 +1996-01-01,"Iowa",16281 +1996-01-01,"California",66779 +1996-01-01,"Massachusetts",19459 +1996-01-01,"Missouri",26654 +1996-01-01,"Nebraska",8226 +1996-02-01,"Ohio",58620 +1996-02-01,"South Carolina",5943 +1996-02-01,"New Jersey",36979 +1996-02-01,"Tennessee",13801 +1996-02-01,"North Dakota",2079 +1996-02-01,"Louisiana",10284 +1996-02-01,"Pennsylvania",46086 +1996-02-01,"West Virginia",6602 +1996-02-01,"Maryland",14280 +1996-02-01,"Wisconsin",22563 +1996-02-01,"Georgia",19358 +1996-02-01,"Delaware",1918 +1996-02-01,"Colorado",17480 +1996-02-01,"Alaska",2419 +1996-02-01,"Arizona",4221 +1996-02-01,"Iowa",13725 +1996-02-01,"Oregon",5586 +1996-02-01,"Washington",10162 +1996-02-01,"Connecticut",7147 +1996-02-01,"Montana",3530 +1996-02-01,"Vermont",418 +1996-02-01,"Oklahoma",14497 +1996-02-01,"New York",61203 +1996-02-01,"Indiana",28907 +1996-02-01,"Florida",2570 +1996-02-01,"New Mexico",4620 +1996-02-01,"Virginia",13709 +1996-02-01,"North Carolina",11718 1996-02-01,"Wyoming",2176 +1996-02-01,"Massachusetts",18453 +1996-02-01,"U.S.",830912 +1996-02-01,"Kentucky",11218 +1996-02-01,"Mississippi",5900 +1996-02-01,"District of Columbia",3083 +1996-02-01,"Minnesota",22665 +1996-02-01,"Michigan",63693 +1996-02-01,"Illinois",81430 +1996-02-01,"California",58007 +1996-02-01,"Nevada",3264 +1996-02-01,"Alabama",11222 +1996-02-01,"Missouri",24498 +1996-02-01,"South Dakota",2221 +1996-02-01,"New Hampshire",1147 +1996-02-01,"Rhode Island",3119 +1996-02-01,"Hawaii",51 +1996-02-01,"Idaho",2510 +1996-02-01,"Maine",143 +1996-02-01,"Utah",8571 +1996-02-01,"Texas",35808 +1996-02-01,"Kansas",13787 +1996-02-01,"Nebraska",8807 +1996-02-01,"Arkansas",8713 +1996-03-01,"South Dakota",1865 +1996-03-01,"Oklahoma",10164 +1996-03-01,"Nevada",2903 +1996-03-01,"Iowa",11830 +1996-03-01,"West Virginia",5495 +1996-03-01,"Washington",7642 +1996-03-01,"Idaho",1847 +1996-03-01,"New Jersey",31467 +1996-03-01,"Texas",28242 +1996-03-01,"North Dakota",1764 +1996-03-01,"Alabama",8051 +1996-03-01,"Kansas",11170 +1996-03-01,"Colorado",14685 +1996-03-01,"Alaska",1918 +1996-03-01,"New Hampshire",998 +1996-03-01,"Pennsylvania",40492 +1996-03-01,"Ohio",54228 +1996-03-01,"Wisconsin",20320 +1996-03-01,"Georgia",17871 +1996-03-01,"Minnesota",19126 +1996-03-01,"Rhode Island",2664 +1996-03-01,"Kentucky",10254 +1996-03-01,"Oregon",4042 +1996-03-01,"South Carolina",3741 +1996-03-01,"New Mexico",3085 +1996-03-01,"New York",57763 +1996-03-01,"Tennessee",9516 +1996-03-01,"U.S.",705207 +1996-03-01,"Montana",2649 +1996-03-01,"Virginia",11185 +1996-03-01,"Nebraska",6609 +1996-03-01,"Louisiana",7507 +1996-03-01,"Connecticut",6245 +1996-03-01,"Maryland",11806 +1996-03-01,"North Carolina",7391 +1996-03-01,"Vermont",354 +1996-03-01,"Indiana",24978 +1996-03-01,"District of Columbia",2376 +1996-03-01,"Delaware",1504 +1996-03-01,"Michigan",57657 +1996-03-01,"Arizona",3366 +1996-03-01,"California",52226 +1996-03-01,"Florida",2058 +1996-03-01,"Mississippi",3851 1996-03-01,"Wyoming",1562 +1996-03-01,"Utah",5419 +1996-03-01,"Missouri",18852 +1996-03-01,"Illinois",71599 +1996-03-01,"Hawaii",53 +1996-03-01,"Maine",137 +1996-03-01,"Massachusetts",16533 +1996-03-01,"Arkansas",6146 +1996-04-01,"Ohio",34510 +1996-04-01,"Washington",5418 +1996-04-01,"California",36723 +1996-04-01,"Virginia",6501 +1996-04-01,"Missouri",13133 +1996-04-01,"Arkansas",4846 +1996-04-01,"Rhode Island",1901 +1996-04-01,"Maryland",7257 +1996-04-01,"Oklahoma",7697 +1996-04-01,"Louisiana",5158 +1996-04-01,"Kentucky",5565 +1996-04-01,"South Carolina",2996 +1996-04-01,"Florida",1640 +1996-04-01,"District of Columbia",1712 +1996-04-01,"Delaware",1116 +1996-04-01,"Colorado",11526 +1996-04-01,"Montana",2028 +1996-04-01,"North Carolina",6189 +1996-04-01,"Vermont",268 +1996-04-01,"Utah",4540 +1996-04-01,"Kansas",6313 +1996-04-01,"Nebraska",4786 +1996-04-01,"Alaska",1424 +1996-04-01,"Arizona",2155 +1996-04-01,"West Virginia",3877 +1996-04-01,"Mississippi",3174 1996-04-01,"Wyoming",1292 +1996-04-01,"New Jersey",20410 +1996-04-01,"South Dakota",1367 +1996-04-01,"Pennsylvania",25624 +1996-04-01,"Idaho",1315 +1996-04-01,"Connecticut",4399 +1996-04-01,"Nevada",1884 +1996-04-01,"Indiana",16823 +1996-04-01,"North Dakota",1320 +1996-04-01,"Georgia",9875 +1996-04-01,"Alabama",6321 +1996-04-01,"New Hampshire",698 +1996-04-01,"Illinois",43288 +1996-04-01,"Hawaii",49 +1996-04-01,"Oregon",2821 +1996-04-01,"Maine",81 +1996-04-01,"New Mexico",2586 +1996-04-01,"Massachusetts",11564 +1996-04-01,"Texas",19123 +1996-04-01,"Tennessee",7058 +1996-04-01,"Michigan",40288 +1996-04-01,"Iowa",6945 +1996-04-01,"Wisconsin",12774 +1996-04-01,"New York",41232 +1996-04-01,"U.S.",473842 +1996-04-01,"Minnesota",12254 +1996-05-01,"Rhode Island",1216 +1996-05-01,"West Virginia",1652 +1996-05-01,"Connecticut",2303 +1996-05-01,"Maryland",4136 +1996-05-01,"Wisconsin",8015 +1996-05-01,"Mississippi",1366 +1996-05-01,"New York",25231 +1996-05-01,"Indiana",8919 +1996-05-01,"U.S.",271486 +1996-05-01,"South Dakota",803 +1996-05-01,"Colorado",6901 +1996-05-01,"Alaska",964 +1996-05-01,"Oregon",2300 +1996-05-01,"California",30001 +1996-05-01,"Maine",49 +1996-05-01,"District of Columbia",807 1996-05-01,"Wyoming",922 +1996-05-01,"Utah",2252 +1996-05-01,"Alabama",2948 +1996-05-01,"Illinois",27063 +1996-05-01,"Missouri",6252 +1996-05-01,"Arkansas",1967 +1996-05-01,"Pennsylvania",13490 +1996-05-01,"Idaho",976 +1996-05-01,"Montana",1400 +1996-05-01,"Massachusetts",7569 +1996-05-01,"Tennessee",2355 +1996-05-01,"North Dakota",736 +1996-05-01,"Minnesota",7335 +1996-05-01,"Nebraska",2651 +1996-05-01,"New Hampshire",426 +1996-05-01,"Louisiana",2562 +1996-05-01,"Arizona",1328 +1996-05-01,"Washington",4456 +1996-05-01,"South Carolina",954 +1996-05-01,"New Jersey",11915 +1996-05-01,"Texas",9574 +1996-05-01,"Georgia",4272 +1996-05-01,"Iowa",4187 +1996-05-01,"Kentucky",2255 +1996-05-01,"North Carolina",2131 +1996-05-01,"Florida",1016 +1996-05-01,"Vermont",167 +1996-05-01,"Oklahoma",3321 +1996-05-01,"Delaware",516 +1996-05-01,"Virginia",2536 +1996-05-01,"Michigan",24645 +1996-05-01,"Hawaii",44 +1996-05-01,"Ohio",17670 +1996-05-01,"New Mexico",610 +1996-05-01,"Nevada",1264 +1996-05-01,"Kansas",3054 +1996-06-01,"Michigan",10619 +1996-06-01,"Colorado",4316 +1996-06-01,"Arizona",1089 +1996-06-01,"Connecticut",1274 +1996-06-01,"Maryland",2709 +1996-06-01,"North Dakota",356 +1996-06-01,"Pennsylvania",7575 +1996-06-01,"Ohio",10315 +1996-06-01,"Maine",29 +1996-06-01,"Kansas",1734 +1996-06-01,"Nebraska",1475 +1996-06-01,"Arkansas",1202 +1996-06-01,"Illinois",12437 +1996-06-01,"Hawaii",45 +1996-06-01,"Georgia",3115 +1996-06-01,"Virginia",2088 +1996-06-01,"Missouri",3404 +1996-06-01,"Alaska",647 +1996-06-01,"West Virginia",817 +1996-06-01,"Mississippi",839 +1996-06-01,"Oklahoma",1989 +1996-06-01,"Indiana",4513 +1996-06-01,"New Jersey",6412 +1996-06-01,"Minnesota",3708 +1996-06-01,"Delaware",310 +1996-06-01,"California",25996 +1996-06-01,"Florida",786 +1996-06-01,"Nevada",1011 +1996-06-01,"Texas",7819 +1996-06-01,"U.S.",162277 +1996-06-01,"Oregon",1386 +1996-06-01,"North Carolina",1210 +1996-06-01,"New York",14186 1996-06-01,"Wyoming",510 +1996-06-01,"Massachusetts",3930 +1996-06-01,"Tennessee",1327 +1996-06-01,"Alabama",1472 +1996-06-01,"Rhode Island",692 +1996-06-01,"Iowa",2343 +1996-06-01,"South Carolina",547 +1996-06-01,"Montana",745 +1996-06-01,"New Mexico",1701 +1996-06-01,"Utah",1351 +1996-06-01,"South Dakota",464 +1996-06-01,"New Hampshire",233 +1996-06-01,"Louisiana",1977 +1996-06-01,"Kentucky",1335 +1996-06-01,"Washington",2610 +1996-06-01,"Idaho",542 +1996-06-01,"Wisconsin",4415 +1996-06-01,"Vermont",85 +1996-06-01,"District of Columbia",582 +1996-07-01,"Kentucky",1108 +1996-07-01,"Utah",1533 +1996-07-01,"Massachusetts",2814 +1996-07-01,"Louisiana",1820 +1996-07-01,"Idaho",300 +1996-07-01,"South Carolina",425 +1996-07-01,"North Carolina",889 +1996-07-01,"New Jersey",5103 +1996-07-01,"Alabama",1295 +1996-07-01,"Nebraska",985 +1996-07-01,"Ohio",7210 +1996-07-01,"Nevada",779 +1996-07-01,"Georgia",3179 +1996-07-01,"U.S.",124371 +1996-07-01,"Kansas",1836 +1996-07-01,"Oregon",839 +1996-07-01,"Washington",1628 +1996-07-01,"Wisconsin",2753 +1996-07-01,"California",18649 +1996-07-01,"New Mexico",1623 1996-07-01,"Wyoming",273 +1996-07-01,"North Dakota",212 +1996-07-01,"Minnesota",2583 +1996-07-01,"Arkansas",930 +1996-07-01,"Mississippi",816 +1996-07-01,"District of Columbia",412 +1996-07-01,"Texas",7216 +1996-07-01,"Michigan",7657 +1996-07-01,"Alaska",493 +1996-07-01,"Rhode Island",484 +1996-07-01,"Arizona",916 +1996-07-01,"West Virginia",590 +1996-07-01,"Florida",741 +1996-07-01,"Vermont",51 +1996-07-01,"New York",10129 +1996-07-01,"Colorado",2869 +1996-07-01,"Illinois",11346 +1996-07-01,"Iowa",1663 +1996-07-01,"Montana",462 +1996-07-01,"Maine",25 +1996-07-01,"Oklahoma",1628 +1996-07-01,"Delaware",196 +1996-07-01,"South Dakota",239 +1996-07-01,"New Hampshire",159 +1996-07-01,"Pennsylvania",5688 +1996-07-01,"Hawaii",42 +1996-07-01,"Connecticut",1088 +1996-07-01,"Maryland",2139 +1996-07-01,"Indiana",3201 +1996-07-01,"Tennessee",1166 +1996-07-01,"Virginia",1502 +1996-07-01,"Missouri",2688 +1996-08-01,"New Hampshire",155 +1996-08-01,"Kentucky",1253 +1996-08-01,"West Virginia",537 +1996-08-01,"Idaho",277 +1996-08-01,"South Carolina",419 +1996-08-01,"Texas",6534 +1996-08-01,"Alabama",1227 +1996-08-01,"Nebraska",932 +1996-08-01,"Louisiana",1831 +1996-08-01,"Pennsylvania",5295 +1996-08-01,"Hawaii",40 +1996-08-01,"Iowa",1610 +1996-08-01,"Washington",1250 +1996-08-01,"Oklahoma",1515 +1996-08-01,"Massachusetts",2463 +1996-08-01,"North Dakota",209 +1996-08-01,"U.S.",118296 +1996-08-01,"Colorado",2505 +1996-08-01,"Oregon",673 +1996-08-01,"Vermont",47 +1996-08-01,"District of Columbia",380 +1996-08-01,"Tennessee",1101 +1996-08-01,"Georgia",2972 +1996-08-01,"Missouri",2448 +1996-08-01,"Connecticut",954 +1996-08-01,"Maryland",2064 +1996-08-01,"North Carolina",862 +1996-08-01,"Maine",23 1996-08-01,"Wyoming",265 +1996-08-01,"South Dakota",231 +1996-08-01,"Ohio",6306 +1996-08-01,"Arizona",836 +1996-08-01,"Mississippi",771 +1996-08-01,"Utah",1416 +1996-08-01,"New Jersey",4715 +1996-08-01,"Arkansas",955 +1996-08-01,"Alaska",544 +1996-08-01,"Wisconsin",2726 +1996-08-01,"Nevada",678 +1996-08-01,"Kansas",1640 +1996-08-01,"Rhode Island",450 +1996-08-01,"California",21757 +1996-08-01,"Florida",658 +1996-08-01,"Indiana",3117 +1996-08-01,"Delaware",175 +1996-08-01,"Michigan",7300 +1996-08-01,"Illinois",9546 +1996-08-01,"Montana",431 +1996-08-01,"New Mexico",836 +1996-08-01,"New York",NA +1996-08-01,"Minnesota",2433 +1996-08-01,"Virginia",1424 +1996-09-01,"Michigan",9068 +1996-09-01,"Colorado",2773 +1996-09-01,"Rhode Island",467 +1996-09-01,"Iowa",1954 +1996-09-01,"New Mexico",844 +1996-09-01,"Utah",2540 +1996-09-01,"North Dakota",256 +1996-09-01,"U.S.",137556 +1996-09-01,"Alabama",1321 +1996-09-01,"Delaware",181 +1996-09-01,"Hawaii",41 +1996-09-01,"South Carolina",476 +1996-09-01,"North Carolina",913 1996-09-01,"Wyoming",368 +1996-09-01,"Tennessee",1190 +1996-09-01,"Nebraska",1017 +1996-09-01,"Louisiana",1836 +1996-09-01,"Pennsylvania",5907 +1996-09-01,"Washington",1572 +1996-09-01,"Montana",634 +1996-09-01,"Florida",690 +1996-09-01,"Indiana",3617 +1996-09-01,"Texas",7495 +1996-09-01,"Georgia",3092 +1996-09-01,"Arkansas",1044 +1996-09-01,"Kentucky",1389 +1996-09-01,"Vermont",56 +1996-09-01,"Massachusetts",2677 +1996-09-01,"Illinois",13137 +1996-09-01,"Ohio",7026 +1996-09-01,"Arizona",900 +1996-09-01,"Wisconsin",3130 +1996-09-01,"Maine",28 +1996-09-01,"Mississippi",804 +1996-09-01,"Oklahoma",1679 +1996-09-01,"Virginia",1414 +1996-09-01,"Oregon",821 +1996-09-01,"Maryland",2207 +1996-09-01,"California",26104 +1996-09-01,"Alaska",589 +1996-09-01,"West Virginia",696 +1996-09-01,"Connecticut",992 +1996-09-01,"District of Columbia",401 +1996-09-01,"New Jersey",5472 +1996-09-01,"Kansas",1973 +1996-09-01,"Missouri",2749 +1996-09-01,"South Dakota",316 +1996-09-01,"New Hampshire",169 +1996-09-01,"Idaho",364 +1996-09-01,"New York",NA +1996-09-01,"Nevada",732 +1996-09-01,"Minnesota",2968 +1996-10-01,"Alaska",1238 +1996-10-01,"Illinois",28081 +1996-10-01,"Arizona",1082 +1996-10-01,"Connecticut",1840 +1996-10-01,"California",30462 +1996-10-01,"Alabama",1647 +1996-10-01,"Kansas",3163 +1996-10-01,"South Dakota",578 +1996-10-01,"Wisconsin",7783 +1996-10-01,"Florida",752 +1996-10-01,"Utah",4215 +1996-10-01,"Texas",9479 +1996-10-01,"Virginia",2879 +1996-10-01,"New Hampshire",312 +1996-10-01,"District of Columbia",578 +1996-10-01,"North Dakota",554 +1996-10-01,"Georgia",5771 +1996-10-01,"Minnesota",6705 +1996-10-01,"Missouri",4321 +1996-10-01,"Nebraska",2173 +1996-10-01,"Ohio",18651 +1996-10-01,"Kentucky",3018 +1996-10-01,"South Carolina",800 1996-10-01,"Wyoming",1087 +1996-10-01,"Arkansas",1425 +1996-10-01,"Rhode Island",738 +1996-10-01,"Louisiana",2102 +1996-10-01,"West Virginia",1609 +1996-10-01,"Maryland",3738 +1996-10-01,"Mississippi",929 +1996-10-01,"New Mexico",1330 +1996-10-01,"New York",NA +1996-10-01,"Indiana",7846 +1996-10-01,"Pennsylvania",13202 +1996-10-01,"Hawaii",39 +1996-10-01,"Iowa",3620 +1996-10-01,"Idaho",646 +1996-10-01,"Maine",67 +1996-10-01,"Vermont",100 +1996-10-01,"Colorado",4886 +1996-10-01,"Washington",2930 +1996-10-01,"Montana",1267 +1996-10-01,"North Carolina",1701 +1996-10-01,"Massachusetts",5012 +1996-10-01,"U.S.",243121 +1996-10-01,"Delaware",291 +1996-10-01,"Michigan",18528 +1996-10-01,"Oregon",1357 +1996-10-01,"Oklahoma",2267 +1996-10-01,"Nevada",894 +1996-10-01,"New Jersey",9917 +1996-10-01,"Tennessee",1987 +1996-11-01,"Ohio",38565 +1996-11-01,"Arizona",2322 +1996-11-01,"Idaho",1570 +1996-11-01,"Wisconsin",16724 +1996-11-01,"Florida",972 +1996-11-01,"Kansas",9447 +1996-11-01,"Arkansas",3768 +1996-11-01,"Iowa",9782 +1996-11-01,"South Carolina",2168 +1996-11-01,"Connecticut",3522 +1996-11-01,"Vermont",208 +1996-11-01,"District of Columbia",1252 +1996-11-01,"New Jersey",18933 +1996-11-01,"Georgia",14651 +1996-11-01,"Missouri",11687 +1996-11-01,"West Virginia",3391 +1996-11-01,"North Carolina",4461 +1996-11-01,"Mississippi",1880 +1996-11-01,"Oklahoma",5722 +1996-11-01,"New Mexico",3689 +1996-11-01,"Utah",5749 +1996-11-01,"Tennessee",5949 +1996-11-01,"Minnesota",14959 +1996-11-01,"Alabama",3461 +1996-11-01,"Hawaii",41 +1996-11-01,"Kentucky",9022 +1996-11-01,"Oregon",3164 +1996-11-01,"California",43702 1996-11-01,"Wyoming",1334 +1996-11-01,"Massachusetts",9943 +1996-11-01,"Virginia",7388 +1996-11-01,"Alaska",1708 +1996-11-01,"New Hampshire",667 +1996-11-01,"Louisiana",3511 +1996-11-01,"Nevada",2069 +1996-11-01,"North Dakota",1256 +1996-11-01,"U.S.",502981 +1996-11-01,"Delaware",648 +1996-11-01,"South Dakota",1414 +1996-11-01,"Rhode Island",1416 +1996-11-01,"Illinois",63715 +1996-11-01,"Pennsylvania",27037 +1996-11-01,"Washington",6207 +1996-11-01,"Maryland",7828 +1996-11-01,"Maine",105 +1996-11-01,"New York",NA +1996-11-01,"Indiana",18577 +1996-11-01,"Nebraska",4043 +1996-11-01,"Michigan",38862 +1996-11-01,"Colorado",9571 +1996-11-01,"Montana",2458 +1996-11-01,"Texas",17793 +1996-12-01,"Pennsylvania",36688 +1996-12-01,"Ohio",52480 +1996-12-01,"North Carolina",8607 +1996-12-01,"Nevada",3386 1996-12-01,"Wyoming",1744 +1996-12-01,"Utah",8203 +1996-12-01,"Texas",33952 +1996-12-01,"Michigan",52724 +1996-12-01,"Oregon",5200 +1996-12-01,"Idaho",2224 +1996-12-01,"New Mexico",5663 +1996-12-01,"Oklahoma",11298 +1996-12-01,"Massachusetts",13947 +1996-12-01,"U.S.",737722 +1996-12-01,"Kansas",14388 +1996-12-01,"Iowa",14138 +1996-12-01,"Washington",9804 +1996-12-01,"Delaware",1236 +1996-12-01,"Virginia",10946 +1996-12-01,"Missouri",20539 +1996-12-01,"Illinois",80922 +1996-12-01,"Arizona",4051 +1996-12-01,"South Carolina",4336 +1996-12-01,"Wisconsin",21285 +1996-12-01,"Florida",1583 +1996-12-01,"Vermont",302 +1996-12-01,"New Jersey",29983 +1996-12-01,"Alabama",6664 +1996-12-01,"Nebraska",7283 +1996-12-01,"Maryland",11426 +1996-12-01,"Mississippi",3676 +1996-12-01,"Indiana",26087 +1996-12-01,"North Dakota",1894 +1996-12-01,"Minnesota",22152 +1996-12-01,"California",62905 +1996-12-01,"Tennessee",10177 +1996-12-01,"South Dakota",2243 +1996-12-01,"Colorado",15814 +1996-12-01,"Alaska",2181 +1996-12-01,"Hawaii",44 +1996-12-01,"Kentucky",10177 +1996-12-01,"West Virginia",5166 +1996-12-01,"Connecticut",5842 +1996-12-01,"Montana",3286 +1996-12-01,"New York",NA +1996-12-01,"Arkansas",6286 +1996-12-01,"New Hampshire",855 +1996-12-01,"Rhode Island",2350 +1996-12-01,"Louisiana",6173 +1996-12-01,"Maine",120 +1996-12-01,"District of Columbia",2406 +1996-12-01,"Georgia",18574 +1997-01-01,"Rhode Island",2890 +1997-01-01,"Illinois",100050 +1997-01-01,"Vermont",419 +1997-01-01,"Mississippi",5082 +1997-01-01,"New Mexico",7369 +1997-01-01,"Texas",47522 +1997-01-01,"U.S.",902399 +1997-01-01,"Missouri",25327 +1997-01-01,"Colorado",18564 +1997-01-01,"New Hampshire",1061 +1997-01-01,"Iowa",17671 +1997-01-01,"Connecticut",6335 +1997-01-01,"Maine",166 +1997-01-01,"New Jersey",36513 +1997-01-01,"Virginia",13047 +1997-01-01,"South Dakota",2735 +1997-01-01,"Arizona",5958 +1997-01-01,"South Carolina",5150 +1997-01-01,"California",73871 +1997-01-01,"Florida",1955 +1997-01-01,"Indiana",32555 +1997-01-01,"Tennessee",12717 +1997-01-01,"Delaware",1558 +1997-01-01,"Kansas",14413 +1997-01-01,"Arkansas",8276 +1997-01-01,"Louisiana",9792 +1997-01-01,"Kentucky",13968 +1997-01-01,"Maryland",13987 +1997-01-01,"Wisconsin",26289 +1997-01-01,"Montana",3865 +1997-01-01,"Oklahoma",13930 1997-01-01,"Wyoming",2251 +1997-01-01,"Utah",9878 +1997-01-01,"Alabama",9322 +1997-01-01,"Alaska",2249 +1997-01-01,"Pennsylvania",45904 +1997-01-01,"Hawaii",51 +1997-01-01,"West Virginia",5908 +1997-01-01,"Idaho",2562 +1997-01-01,"Nevada",4490 +1997-01-01,"North Dakota",2258 +1997-01-01,"Georgia",21449 +1997-01-01,"Minnesota",25497 +1997-01-01,"Michigan",66951 +1997-01-01,"Ohio",64295 +1997-01-01,"Washington",8735 +1997-01-01,"North Carolina",10031 +1997-01-01,"Massachusetts",17449 +1997-01-01,"Nebraska",9688 +1997-01-01,"Oregon",5671 +1997-01-01,"New York",62019 +1997-01-01,"District of Columbia",2708 +1997-02-01,"Michigan",57608 +1997-02-01,"Kentucky",8981 +1997-02-01,"North Carolina",9983 +1997-02-01,"Indiana",26114 +1997-02-01,"District of Columbia",2655 +1997-02-01,"Tennessee",11997 +1997-02-01,"Delaware",1621 +1997-02-01,"Nebraska",7825 +1997-02-01,"Louisiana",9272 +1997-02-01,"Montana",3025 +1997-02-01,"U.S.",757457 +1997-02-01,"South Dakota",2089 +1997-02-01,"Illinois",69319 +1997-02-01,"Iowa",11951 +1997-02-01,"Oregon",5128 +1997-02-01,"Washington",7525 +1997-02-01,"South Carolina",5046 1997-02-01,"Wyoming",1667 +1997-02-01,"Massachusetts",17795 +1997-02-01,"North Dakota",1931 +1997-02-01,"Rhode Island",2891 +1997-02-01,"Pennsylvania",41208 +1997-02-01,"Idaho",2540 +1997-02-01,"New Mexico",5668 +1997-02-01,"New Jersey",33410 +1997-02-01,"Colorado",17485 +1997-02-01,"Wisconsin",19211 +1997-02-01,"Mississippi",4999 +1997-02-01,"New York",56003 +1997-02-01,"Texas",36893 +1997-02-01,"Minnesota",19703 +1997-02-01,"Arkansas",7745 +1997-02-01,"Alaska",1618 +1997-02-01,"West Virginia",5572 +1997-02-01,"Maryland",11954 +1997-02-01,"Florida",1866 +1997-02-01,"Vermont",416 +1997-02-01,"Utah",8367 +1997-02-01,"Georgia",16288 +1997-02-01,"Virginia",11670 +1997-02-01,"New Hampshire",1136 +1997-02-01,"Hawaii",49 +1997-02-01,"Connecticut",6622 +1997-02-01,"California",65672 +1997-02-01,"Maine",133 +1997-02-01,"Nevada",3843 +1997-02-01,"Ohio",51748 +1997-02-01,"Arizona",5075 +1997-02-01,"Oklahoma",12696 +1997-02-01,"Alabama",9129 +1997-02-01,"Kansas",11040 +1997-02-01,"Missouri",23276 +1997-03-01,"Hawaii",46 +1997-03-01,"West Virginia",4273 +1997-03-01,"Nevada",3187 +1997-03-01,"Rhode Island",2462 +1997-03-01,"Louisiana",5700 +1997-03-01,"Pennsylvania",33473 +1997-03-01,"Arizona",4221 +1997-03-01,"Kentucky",7304 +1997-03-01,"Oregon",4242 +1997-03-01,"Mississippi",3058 +1997-03-01,"Oklahoma",9077 +1997-03-01,"Texas",25245 +1997-03-01,"U.S.",605856 +1997-03-01,"Alabama",5344 +1997-03-01,"Alaska",1767 +1997-03-01,"Iowa",9584 +1997-03-01,"Washington",6526 +1997-03-01,"Georgia",8959 +1997-03-01,"Delaware",1272 +1997-03-01,"Michigan",51355 +1997-03-01,"Ohio",43523 +1997-03-01,"Indiana",20542 +1997-03-01,"Missouri",15385 +1997-03-01,"South Dakota",1625 +1997-03-01,"Florida",1154 +1997-03-01,"New York",51213 +1997-03-01,"Utah",5945 +1997-03-01,"Virginia",9068 +1997-03-01,"Nebraska",6229 +1997-03-01,"New Hampshire",913 +1997-03-01,"Connecticut",5243 +1997-03-01,"Maryland",9414 +1997-03-01,"North Carolina",5800 +1997-03-01,"Maine",142 +1997-03-01,"New Mexico",3836 1997-03-01,"Wyoming",1550 +1997-03-01,"District of Columbia",2049 +1997-03-01,"Massachusetts",15138 +1997-03-01,"Kansas",7997 +1997-03-01,"Colorado",15768 +1997-03-01,"Illinois",61395 +1997-03-01,"Wisconsin",17278 +1997-03-01,"North Dakota",1527 +1997-03-01,"Minnesota",16686 +1997-03-01,"Idaho",1907 +1997-03-01,"South Carolina",2619 +1997-03-01,"Montana",2477 +1997-03-01,"California",47664 +1997-03-01,"Vermont",383 +1997-03-01,"New Jersey",32686 +1997-03-01,"Tennessee",6666 +1997-03-01,"Arkansas",4937 +1997-04-01,"Connecticut",4435 +1997-04-01,"California",38704 +1997-04-01,"Maine",85 1997-04-01,"Wyoming",1062 +1997-04-01,"Arkansas",3290 +1997-04-01,"Ohio",32544 +1997-04-01,"Washington",3680 +1997-04-01,"Oklahoma",6164 +1997-04-01,"U.S.",433073 +1997-04-01,"Virginia",6622 +1997-04-01,"Louisiana",3648 +1997-04-01,"West Virginia",3386 +1997-04-01,"Montana",2003 +1997-04-01,"New York",37597 +1997-04-01,"Indiana",15114 +1997-04-01,"Tennessee",4776 +1997-04-01,"North Dakota",1133 +1997-04-01,"Georgia",8183 +1997-04-01,"Kansas",5839 +1997-04-01,"South Dakota",1250 +1997-04-01,"Colorado",10975 +1997-04-01,"Arizona",2251 +1997-04-01,"Oregon",3130 +1997-04-01,"Illinois",41167 +1997-04-01,"Hawaii",41 +1997-04-01,"Idaho",1463 +1997-04-01,"South Carolina",1794 +1997-04-01,"North Carolina",4080 +1997-04-01,"Utah",4876 +1997-04-01,"Delaware",948 +1997-04-01,"Michigan",38297 +1997-04-01,"Alaska",1177 +1997-04-01,"New Hampshire",744 +1997-04-01,"Maryland",6912 +1997-04-01,"Florida",914 +1997-04-01,"Vermont",283 +1997-04-01,"Nevada",2027 +1997-04-01,"Texas",15606 +1997-04-01,"Wisconsin",11047 +1997-04-01,"New Mexico",1513 +1997-04-01,"District of Columbia",1316 +1997-04-01,"Missouri",10993 +1997-04-01,"Nebraska",4353 +1997-04-01,"Rhode Island",1994 +1997-04-01,"Pennsylvania",25082 +1997-04-01,"Iowa",7015 +1997-04-01,"Kentucky",4893 +1997-04-01,"Mississippi",1916 +1997-04-01,"Massachusetts",12131 +1997-04-01,"New Jersey",20284 +1997-04-01,"Minnesota",11143 +1997-04-01,"Alabama",3191 +1997-05-01,"Hawaii",42 +1997-05-01,"New Mexico",1965 +1997-05-01,"Indiana",9417 +1997-05-01,"Tennessee",3007 +1997-05-01,"Colorado",8492 +1997-05-01,"Pennsylvania",15416 +1997-05-01,"Iowa",3939 +1997-05-01,"Florida",852 +1997-05-01,"Utah",1821 +1997-05-01,"Georgia",3816 +1997-05-01,"Minnesota",6467 +1997-05-01,"Arkansas",2322 +1997-05-01,"Illinois",26059 +1997-05-01,"Kentucky",2959 +1997-05-01,"Maryland",4215 +1997-05-01,"Delaware",560 +1997-05-01,"Virginia",4201 +1997-05-01,"Missouri",6460 +1997-05-01,"Michigan",26982 +1997-05-01,"Rhode Island",1171 +1997-05-01,"Ohio",21260 +1997-05-01,"West Virginia",2223 +1997-05-01,"Oregon",1883 +1997-05-01,"Idaho",938 +1997-05-01,"Mississippi",1472 +1997-05-01,"Nevada",1401 +1997-05-01,"Massachusetts",6937 +1997-05-01,"New Jersey",11505 +1997-05-01,"Nebraska",3176 +1997-05-01,"Washington",4487 +1997-05-01,"Vermont",189 +1997-05-01,"New York",24082 +1997-05-01,"District of Columbia",944 +1997-05-01,"Connecticut",2362 +1997-05-01,"Montana",1147 +1997-05-01,"Oklahoma",3860 +1997-05-01,"North Dakota",688 +1997-05-01,"U.S.",283739 +1997-05-01,"Kansas",3266 +1997-05-01,"New Hampshire",465 +1997-05-01,"South Carolina",1243 +1997-05-01,"Maine",56 +1997-05-01,"South Dakota",784 +1997-05-01,"Alaska",789 +1997-05-01,"Louisiana",2866 +1997-05-01,"Arizona",1566 +1997-05-01,"Wisconsin",7413 +1997-05-01,"North Carolina",2986 +1997-05-01,"California",28268 1997-05-01,"Wyoming",1080 +1997-05-01,"Texas",11595 +1997-05-01,"Alabama",2648 +1997-06-01,"New Hampshire",263 +1997-06-01,"Illinois",11606 +1997-06-01,"Arizona",1150 +1997-06-01,"Washington",2451 +1997-06-01,"Connecticut",1398 +1997-06-01,"New York",14469 +1997-06-01,"California",23226 +1997-06-01,"Nevada",985 +1997-06-01,"Utah",1602 +1997-06-01,"Minnesota",3180 +1997-06-01,"Wisconsin",2948 +1997-06-01,"Maine",34 +1997-06-01,"Ohio",14630 +1997-06-01,"Oregon",1069 +1997-06-01,"Montana",634 +1997-06-01,"Vermont",97 +1997-06-01,"Oklahoma",2107 +1997-06-01,"Massachusetts",4374 +1997-06-01,"Maryland",2677 +1997-06-01,"North Dakota",295 +1997-06-01,"Missouri",3660 +1997-06-01,"Arkansas",1239 +1997-06-01,"Rhode Island",727 +1997-06-01,"Iowa",2107 +1997-06-01,"Kentucky",1575 +1997-06-01,"West Virginia",952 +1997-06-01,"South Carolina",709 +1997-06-01,"New Mexico",239 1997-06-01,"Wyoming",397 +1997-06-01,"Georgia",3341 +1997-06-01,"U.S.",163591 +1997-06-01,"Delaware",320 +1997-06-01,"Kansas",1506 +1997-06-01,"Virginia",2042 +1997-06-01,"Alaska",508 +1997-06-01,"Louisiana",2108 +1997-06-01,"Pennsylvania",7510 +1997-06-01,"Idaho",433 +1997-06-01,"New Jersey",6599 +1997-06-01,"Texas",8451 +1997-06-01,"Tennessee",1652 +1997-06-01,"Alabama",1609 +1997-06-01,"South Dakota",368 +1997-06-01,"Michigan",12017 +1997-06-01,"Colorado",4130 +1997-06-01,"Hawaii",41 +1997-06-01,"North Carolina",1596 +1997-06-01,"Florida",773 +1997-06-01,"Mississippi",926 +1997-06-01,"Indiana",4924 +1997-06-01,"District of Columbia",562 +1997-06-01,"Nebraska",1376 +1997-07-01,"New Hampshire",160 +1997-07-01,"Ohio",7425 +1997-07-01,"Arizona",1015 +1997-07-01,"Iowa",1599 +1997-07-01,"Maryland",1906 +1997-07-01,"North Carolina",1072 +1997-07-01,"Massachusetts",2834 +1997-07-01,"U.S.",127805 +1997-07-01,"South Dakota",248 +1997-07-01,"Louisiana",1746 +1997-07-01,"South Carolina",517 +1997-07-01,"District of Columbia",419 +1997-07-01,"Texas",7599 +1997-07-01,"Alabama",1397 +1997-07-01,"Missouri",2714 +1997-07-01,"Hawaii",43 +1997-07-01,"California",26444 +1997-07-01,"North Dakota",190 +1997-07-01,"Georgia",3180 +1997-07-01,"Kansas",1688 +1997-07-01,"Nebraska",1015 +1997-07-01,"Arkansas",1027 +1997-07-01,"Alaska",463 +1997-07-01,"Rhode Island",480 +1997-07-01,"Illinois",10370 +1997-07-01,"Connecticut",961 +1997-07-01,"Maine",21 +1997-07-01,"New Mexico",820 +1997-07-01,"Nevada",891 +1997-07-01,"Indiana",2832 +1997-07-01,"Utah",1502 +1997-07-01,"Minnesota",2385 +1997-07-01,"Pennsylvania",5254 +1997-07-01,"West Virginia",492 +1997-07-01,"Washington",1995 +1997-07-01,"Montana",413 +1997-07-01,"Florida",709 +1997-07-01,"Vermont",57 +1997-07-01,"Oklahoma",1680 +1997-07-01,"Michigan",4751 +1997-07-01,"Kentucky",1499 +1997-07-01,"Idaho",345 +1997-07-01,"Mississippi",815 +1997-07-01,"Delaware",195 +1997-07-01,"Virginia",1589 +1997-07-01,"Oregon",881 +1997-07-01,"Wisconsin",2862 +1997-07-01,"New York",9719 +1997-07-01,"Colorado",2965 1997-07-01,"Wyoming",295 +1997-07-01,"New Jersey",5214 +1997-07-01,"Tennessee",1115 +1997-08-01,"Alaska",418 +1997-08-01,"Arizona",907 +1997-08-01,"Connecticut",914 +1997-08-01,"Wisconsin",2535 +1997-08-01,"New York",10267 +1997-08-01,"Utah",1466 +1997-08-01,"Georgia",2930 +1997-08-01,"New Hampshire",155 +1997-08-01,"Pennsylvania",5236 +1997-08-01,"Ohio",6112 +1997-08-01,"Oregon",758 +1997-08-01,"Idaho",294 +1997-08-01,"South Carolina",449 +1997-08-01,"Maryland",1799 +1997-08-01,"Mississippi",761 +1997-08-01,"New Jersey",4726 +1997-08-01,"Tennessee",1075 +1997-08-01,"Nebraska",939 +1997-08-01,"Colorado",2590 +1997-08-01,"West Virginia",598 +1997-08-01,"Florida",670 +1997-08-01,"North Dakota",168 +1997-08-01,"Iowa",1479 +1997-08-01,"North Carolina",898 +1997-08-01,"Oklahoma",1521 +1997-08-01,"Indiana",2968 +1997-08-01,"Delaware",179 +1997-08-01,"Rhode Island",443 +1997-08-01,"Illinois",10102 +1997-08-01,"Hawaii",41 +1997-08-01,"Montana",449 +1997-08-01,"New Mexico",849 +1997-08-01,"Massachusetts",2484 +1997-08-01,"U.S.",117900 +1997-08-01,"Alabama",1242 +1997-08-01,"Kansas",1469 +1997-08-01,"Washington",1791 +1997-08-01,"California",20643 +1997-08-01,"Maine",26 +1997-08-01,"Nevada",781 1997-08-01,"Wyoming",245 +1997-08-01,"South Dakota",233 +1997-08-01,"Michigan",7269 +1997-08-01,"District of Columbia",372 +1997-08-01,"Virginia",1467 +1997-08-01,"Missouri",2401 +1997-08-01,"Arkansas",917 +1997-08-01,"Louisiana",1716 +1997-08-01,"Kentucky",1073 +1997-08-01,"Vermont",52 +1997-08-01,"Texas",6789 +1997-08-01,"Minnesota",2234 +1997-09-01,"Pennsylvania",6214 +1997-09-01,"Iowa",1646 +1997-09-01,"Washington",2002 +1997-09-01,"New York",9878 +1997-09-01,"Arizona",1124 +1997-09-01,"Montana",510 +1997-09-01,"New Mexico",836 +1997-09-01,"Indiana",3467 +1997-09-01,"South Dakota",261 +1997-09-01,"Rhode Island",473 +1997-09-01,"Illinois",11690 +1997-09-01,"Ohio",7124 +1997-09-01,"Kentucky",1451 +1997-09-01,"Idaho",320 +1997-09-01,"Maryland",2067 +1997-09-01,"California",21448 +1997-09-01,"Florida",631 +1997-09-01,"Maine",30 +1997-09-01,"Nevada",805 +1997-09-01,"Utah",1957 +1997-09-01,"Missouri",2623 +1997-09-01,"Nebraska",936 +1997-09-01,"Michigan",8775 +1997-09-01,"Louisiana",1710 +1997-09-01,"North Carolina",934 +1997-09-01,"District of Columbia",393 +1997-09-01,"New Jersey",5397 +1997-09-01,"U.S.",129388 +1997-09-01,"Minnesota",2542 +1997-09-01,"Arkansas",948 +1997-09-01,"Vermont",59 +1997-09-01,"Mississippi",778 +1997-09-01,"Tennessee",1182 +1997-09-01,"Alabama",1254 +1997-09-01,"Kansas",1485 +1997-09-01,"Virginia",1630 +1997-09-01,"South Carolina",471 +1997-09-01,"North Dakota",191 +1997-09-01,"Georgia",3158 +1997-09-01,"Colorado",2714 +1997-09-01,"Alaska",743 +1997-09-01,"New Hampshire",165 +1997-09-01,"West Virginia",776 +1997-09-01,"Oregon",829 +1997-09-01,"Connecticut",1014 1997-09-01,"Wyoming",320 +1997-09-01,"Texas",7140 +1997-09-01,"Delaware",184 +1997-09-01,"Hawaii",40 +1997-09-01,"Wisconsin",2957 +1997-09-01,"Oklahoma",1549 +1997-09-01,"Massachusetts",2557 +1997-10-01,"Maryland",3543 +1997-10-01,"New Mexico",1217 +1997-10-01,"Minnesota",6504 +1997-10-01,"Kansas",2153 +1997-10-01,"Rhode Island",659 +1997-10-01,"Connecticut",1629 +1997-10-01,"Mississippi",902 +1997-10-01,"Massachusetts",4784 +1997-10-01,"Tennessee",1829 +1997-10-01,"Georgia",6693 +1997-10-01,"Colorado",4290 +1997-10-01,"Hawaii",39 +1997-10-01,"Montana",1234 +1997-10-01,"Indiana",7954 +1997-10-01,"Alabama",1440 +1997-10-01,"South Dakota",537 +1997-10-01,"Iowa",4048 +1997-10-01,"Delaware",252 +1997-10-01,"Virginia",2989 +1997-10-01,"Michigan",17853 +1997-10-01,"Pennsylvania",12927 +1997-10-01,"Idaho",638 +1997-10-01,"North Carolina",1438 +1997-10-01,"Florida",681 +1997-10-01,"Nevada",1024 +1997-10-01,"District of Columbia",553 +1997-10-01,"New Jersey",9250 +1997-10-01,"U.S.",234223 +1997-10-01,"Missouri",3656 +1997-10-01,"Alaska",1569 +1997-10-01,"Illinois",29455 +1997-10-01,"South Carolina",637 +1997-10-01,"California",24538 +1997-10-01,"Maine",66 +1997-10-01,"Vermont",118 +1997-10-01,"New York",17385 1997-10-01,"Wyoming",617 +1997-10-01,"Ohio",19056 +1997-10-01,"Oregon",1536 +1997-10-01,"Washington",3623 +1997-10-01,"Wisconsin",8106 +1997-10-01,"Nebraska",1382 +1997-10-01,"New Hampshire",327 +1997-10-01,"Louisiana",2016 +1997-10-01,"Arizona",1053 +1997-10-01,"Kentucky",3063 +1997-10-01,"West Virginia",1737 +1997-10-01,"Oklahoma",1968 +1997-10-01,"Utah",4299 +1997-10-01,"Texas",9175 +1997-10-01,"North Dakota",434 +1997-10-01,"Arkansas",1345 +1997-11-01,"Washington",7594 +1997-11-01,"Connecticut",3672 +1997-11-01,"New York",34936 1997-11-01,"Wyoming",1179 +1997-11-01,"Alabama",3977 +1997-11-01,"Michigan",37942 +1997-11-01,"Kentucky",8091 +1997-11-01,"West Virginia",4061 +1997-11-01,"Oregon",2713 +1997-11-01,"South Carolina",2424 +1997-11-01,"North Carolina",4875 +1997-11-01,"Vermont",214 +1997-11-01,"Oklahoma",6186 +1997-11-01,"Missouri",12090 +1997-11-01,"Rhode Island",1464 +1997-11-01,"Arizona",1973 +1997-11-01,"Wisconsin",16127 +1997-11-01,"Montana",2038 +1997-11-01,"Florida",1074 +1997-11-01,"Mississippi",2561 +1997-11-01,"Indiana",17338 +1997-11-01,"District of Columbia",1414 +1997-11-01,"Delaware",671 +1997-11-01,"Idaho",1427 +1997-11-01,"Texas",21561 +1997-11-01,"Arkansas",4013 +1997-11-01,"Colorado",10147 +1997-11-01,"Alaska",1684 +1997-11-01,"Illinois",56299 +1997-11-01,"Hawaii",42 +1997-11-01,"New Mexico",4095 +1997-11-01,"New Jersey",20208 +1997-11-01,"Georgia",16495 +1997-11-01,"U.S.",497310 +1997-11-01,"Kansas",8236 +1997-11-01,"Nebraska",4399 +1997-11-01,"South Dakota",1339 +1997-11-01,"Minnesota",15098 +1997-11-01,"Virginia",7452 +1997-11-01,"New Hampshire",616 +1997-11-01,"Pennsylvania",26561 +1997-11-01,"Iowa",8606 +1997-11-01,"Maryland",7894 +1997-11-01,"Maine",107 +1997-11-01,"Utah",6018 +1997-11-01,"North Dakota",1133 +1997-11-01,"Louisiana",4176 +1997-11-01,"Ohio",36474 +1997-11-01,"California",39940 +1997-11-01,"Nevada",1925 +1997-11-01,"Massachusetts",10149 +1997-11-01,"Tennessee",6602 +1997-12-01,"Michigan",50037 +1997-12-01,"Rhode Island",2509 +1997-12-01,"Arizona",4764 +1997-12-01,"Iowa",12051 +1997-12-01,"Montana",3207 +1997-12-01,"Florida",1837 +1997-12-01,"Indiana",25914 +1997-12-01,"Utah",10376 +1997-12-01,"Minnesota",17435 +1997-12-01,"Delaware",1213 +1997-12-01,"Arkansas",6369 +1997-12-01,"Ohio",50352 +1997-12-01,"Oregon",4684 +1997-12-01,"Washington",11405 +1997-12-01,"Vermont",345 +1997-12-01,"New York",48074 +1997-12-01,"District of Columbia",2421 +1997-12-01,"Texas",37410 +1997-12-01,"North Dakota",1423 +1997-12-01,"Alaska",2162 +1997-12-01,"West Virginia",6017 +1997-12-01,"California",68486 +1997-12-01,"New Mexico",8217 +1997-12-01,"Oklahoma",11025 +1997-12-01,"Nevada",3884 +1997-12-01,"Georgia",19892 +1997-12-01,"Kansas",10323 +1997-12-01,"Missouri",19041 +1997-12-01,"Colorado",17463 +1997-12-01,"New Hampshire",933 +1997-12-01,"Hawaii",45 +1997-12-01,"Massachusetts",15677 +1997-12-01,"New Jersey",31134 +1997-12-01,"Virginia",12127 +1997-12-01,"Nebraska",5787 +1997-12-01,"Idaho",2371 +1997-12-01,"Wisconsin",19045 +1997-12-01,"Mississippi",4355 +1997-12-01,"Connecticut",5977 +1997-12-01,"North Carolina",9202 +1997-12-01,"Maine",142 +1997-12-01,"Alabama",7942 +1997-12-01,"South Dakota",1734 +1997-12-01,"Illinois",69718 +1997-12-01,"Kentucky",11175 1997-12-01,"Wyoming",2337 +1997-12-01,"Tennessee",11511 +1997-12-01,"U.S.",731030 +1997-12-01,"Louisiana",7960 +1997-12-01,"Pennsylvania",37709 +1997-12-01,"South Carolina",4683 +1997-12-01,"Maryland",11130 +1998-01-01,"Rhode Island",2781 +1998-01-01,"West Virginia",5676 +1998-01-01,"Montana",3424 +1998-01-01,"California",82305 +1998-01-01,"District of Columbia",2417 +1998-01-01,"North Dakota",1874 +1998-01-01,"Minnesota",21618 +1998-01-01,"Alabama",9683 +1998-01-01,"Virginia",11615 +1998-01-01,"Wisconsin",22074 +1998-01-01,"Florida",2275 +1998-01-01,"New York",54949 +1998-01-01,"Texas",40941 +1998-01-01,"Delaware",1398 +1998-01-01,"South Dakota",2196 +1998-01-01,"Colorado",19710 +1998-01-01,"Alaska",2240 +1998-01-01,"Ohio",50903 +1998-01-01,"Iowa",13562 +1998-01-01,"Nevada",5025 +1998-01-01,"Arkansas",7759 +1998-01-01,"Oregon",6174 +1998-01-01,"South Carolina",5525 +1998-01-01,"Maine",152 +1998-01-01,"Oklahoma",14022 +1998-01-01,"Pennsylvania",37739 +1998-01-01,"Arizona",7156 +1998-01-01,"Connecticut",6197 +1998-01-01,"Mississippi",5066 +1998-01-01,"New Mexico",8001 +1998-01-01,"Utah",8412 +1998-01-01,"Tennessee",12233 +1998-01-01,"U.S.",812108 +1998-01-01,"Louisiana",9326 +1998-01-01,"Illinois",77586 +1998-01-01,"Hawaii",53 +1998-01-01,"Kentucky",10589 +1998-01-01,"Idaho",2980 +1998-01-01,"North Carolina",10796 +1998-01-01,"Indiana",27478 +1998-01-01,"New Jersey",32534 +1998-01-01,"Washington",11762 +1998-01-01,"Maryland",11993 +1998-01-01,"Michigan",57092 +1998-01-01,"New Hampshire",1140 +1998-01-01,"Vermont",427 1998-01-01,"Wyoming",2177 +1998-01-01,"Massachusetts",17087 +1998-01-01,"Georgia",20365 +1998-01-01,"Kansas",13219 +1998-01-01,"Missouri",22476 +1998-01-01,"Nebraska",7929 +1998-02-01,"Iowa",10267 +1998-02-01,"South Carolina",5280 +1998-02-01,"Florida",2073 +1998-02-01,"Maine",127 +1998-02-01,"District of Columbia",2372 +1998-02-01,"North Dakota",1531 +1998-02-01,"Georgia",18186 +1998-02-01,"Missouri",19049 +1998-02-01,"Michigan",49366 +1998-02-01,"Connecticut",5526 +1998-02-01,"Vermont",397 +1998-02-01,"Minnesota",15031 +1998-02-01,"Alabama",9216 +1998-02-01,"Arkansas",6675 +1998-02-01,"West Virginia",4894 +1998-02-01,"Washington",9711 +1998-02-01,"Montana",2404 +1998-02-01,"North Carolina",9836 +1998-02-01,"California",76213 +1998-02-01,"Utah",8209 +1998-02-01,"Rhode Island",2720 +1998-02-01,"Illinois",53096 +1998-02-01,"Pennsylvania",34880 +1998-02-01,"Idaho",2236 +1998-02-01,"Mississippi",4516 +1998-02-01,"Indiana",21137 +1998-02-01,"Massachusetts",16570 +1998-02-01,"Texas",33882 +1998-02-01,"Tennessee",11323 +1998-02-01,"Virginia",11135 +1998-02-01,"South Dakota",1666 +1998-02-01,"New Hampshire",974 +1998-02-01,"Hawaii",52 +1998-02-01,"Arizona",5646 +1998-02-01,"Kentucky",8493 +1998-02-01,"New Mexico",4387 +1998-02-01,"Delaware",1351 +1998-02-01,"Colorado",16905 +1998-02-01,"Louisiana",8311 +1998-02-01,"Oregon",4624 +1998-02-01,"Ohio",44246 +1998-02-01,"Maryland",11172 +1998-02-01,"Wisconsin",15358 +1998-02-01,"Oklahoma",11862 +1998-02-01,"Nevada",4149 +1998-02-01,"Nebraska",6666 +1998-02-01,"Alaska",1716 +1998-02-01,"New York",51711 1998-02-01,"Wyoming",1746 +1998-02-01,"New Jersey",31571 +1998-02-01,"U.S.",691819 +1998-02-01,"Kansas",11354 +1998-03-01,"Alaska",1529 +1998-03-01,"New Hampshire",853 +1998-03-01,"Iowa",10640 +1998-03-01,"South Carolina",4060 +1998-03-01,"California",62009 +1998-03-01,"Mississippi",3861 +1998-03-01,"Kansas",11261 +1998-03-01,"Rhode Island",2402 +1998-03-01,"Louisiana",7043 +1998-03-01,"Washington",8950 +1998-03-01,"Idaho",2035 +1998-03-01,"North Carolina",7633 +1998-03-01,"Maine",120 +1998-03-01,"New York",48382 +1998-03-01,"New Jersey",28392 +1998-03-01,"North Dakota",1436 +1998-03-01,"Delaware",1240 +1998-03-01,"South Dakota",1738 +1998-03-01,"Illinois",60088 +1998-03-01,"Pennsylvania",32685 +1998-03-01,"Arizona",5362 +1998-03-01,"Maryland",9697 1998-03-01,"Wyoming",1658 +1998-03-01,"Alabama",7486 +1998-03-01,"Nebraska",6505 +1998-03-01,"Arkansas",6076 +1998-03-01,"Oregon",4303 +1998-03-01,"Connecticut",4997 +1998-03-01,"New Mexico",4776 +1998-03-01,"Hawaii",45 +1998-03-01,"Florida",1881 +1998-03-01,"Nevada",3809 +1998-03-01,"Utah",6494 +1998-03-01,"U.S.",647619 +1998-03-01,"West Virginia",4540 +1998-03-01,"Oklahoma",11028 +1998-03-01,"Indiana",21395 +1998-03-01,"Missouri",17840 +1998-03-01,"Michigan",47775 +1998-03-01,"Colorado",16272 +1998-03-01,"Wisconsin",17107 +1998-03-01,"Montana",2426 +1998-03-01,"Vermont",340 +1998-03-01,"District of Columbia",2038 +1998-03-01,"Tennessee",9552 +1998-03-01,"Georgia",16448 +1998-03-01,"Minnesota",16348 +1998-03-01,"Ohio",44588 +1998-03-01,"Kentucky",8142 +1998-03-01,"Massachusetts",14826 +1998-03-01,"Texas",27829 +1998-03-01,"Virginia",9677 +1998-04-01,"Kentucky",3926 +1998-04-01,"Mississippi",2283 +1998-04-01,"U.S.",407752 +1998-04-01,"Missouri",10481 +1998-04-01,"Alaska",1239 +1998-04-01,"Pennsylvania",19457 +1998-04-01,"North Carolina",5083 +1998-04-01,"Florida",1509 +1998-04-01,"Maine",71 +1998-04-01,"Oklahoma",6412 +1998-04-01,"Idaho",1563 +1998-04-01,"South Carolina",2457 +1998-04-01,"Connecticut",3600 +1998-04-01,"Vermont",266 1998-04-01,"Wyoming",1278 +1998-04-01,"New Jersey",18824 +1998-04-01,"Delaware",840 +1998-04-01,"South Dakota",1127 +1998-04-01,"Colorado",11619 +1998-04-01,"New Hampshire",643 +1998-04-01,"Louisiana",4059 +1998-04-01,"Iowa",5824 +1998-04-01,"Nevada",2826 +1998-04-01,"Utah",4863 +1998-04-01,"Massachusetts",10361 +1998-04-01,"Tennessee",4992 +1998-04-01,"Georgia",8076 +1998-04-01,"Minnesota",7122 +1998-04-01,"Illinois",32946 +1998-04-01,"Arizona",3722 +1998-04-01,"North Dakota",935 +1998-04-01,"Alabama",4584 +1998-04-01,"Hawaii",49 +1998-04-01,"Oregon",2900 +1998-04-01,"Washington",5827 +1998-04-01,"Maryland",5778 +1998-04-01,"New Mexico",2609 +1998-04-01,"Indiana",12074 +1998-04-01,"Nebraska",4339 +1998-04-01,"Ohio",25083 +1998-04-01,"Kansas",7007 +1998-04-01,"Arkansas",3926 +1998-04-01,"Michigan",31983 +1998-04-01,"Rhode Island",1662 +1998-04-01,"West Virginia",2879 +1998-04-01,"Wisconsin",9186 +1998-04-01,"Montana",1672 +1998-04-01,"California",54074 +1998-04-01,"New York",32412 +1998-04-01,"District of Columbia",1198 +1998-04-01,"Texas",15365 +1998-04-01,"Virginia",4741 +1998-05-01,"South Dakota",508 1998-05-01,"Wyoming",735 +1998-05-01,"Texas",9090 +1998-05-01,"Virginia",2525 +1998-05-01,"Colorado",7886 +1998-05-01,"Louisiana",2464 +1998-05-01,"Hawaii",41 +1998-05-01,"Connecticut",1858 +1998-05-01,"Florida",920 +1998-05-01,"New Mexico",1279 +1998-05-01,"Massachusetts",5550 +1998-05-01,"Alabama",2354 +1998-05-01,"Nebraska",1968 +1998-05-01,"Arizona",2107 +1998-05-01,"Wisconsin",4075 +1998-05-01,"Montana",865 +1998-05-01,"Nevada",1884 +1998-05-01,"Tennessee",2586 +1998-05-01,"Minnesota",3735 +1998-05-01,"Missouri",5002 +1998-05-01,"Ohio",11640 +1998-05-01,"Washington",3221 +1998-05-01,"Vermont",118 +1998-05-01,"Utah",2248 +1998-05-01,"District of Columbia",638 +1998-05-01,"U.S.",220830 +1998-05-01,"Michigan",13991 +1998-05-01,"Alaska",933 +1998-05-01,"Rhode Island",1001 +1998-05-01,"Iowa",2808 +1998-05-01,"Maryland",3047 +1998-05-01,"California",38119 +1998-05-01,"Mississippi",1253 +1998-05-01,"Oklahoma",3326 +1998-05-01,"New Jersey",12559 +1998-05-01,"North Dakota",480 +1998-05-01,"Arkansas",1725 +1998-05-01,"Pennsylvania",9648 +1998-05-01,"Kansas",3604 +1998-05-01,"West Virginia",1278 +1998-05-01,"Oregon",2174 +1998-05-01,"Idaho",906 +1998-05-01,"North Carolina",2272 +1998-05-01,"New York",18810 +1998-05-01,"Indiana",5390 +1998-05-01,"Georgia",3577 +1998-05-01,"Delaware",446 +1998-05-01,"New Hampshire",355 +1998-05-01,"Illinois",14764 +1998-05-01,"Kentucky",1955 +1998-05-01,"South Carolina",1067 +1998-05-01,"Maine",45 +1998-06-01,"Alaska",628 +1998-06-01,"New Hampshire",220 +1998-06-01,"Pennsylvania",6834 +1998-06-01,"Connecticut",1183 +1998-06-01,"Maryland",2139 +1998-06-01,"North Dakota",286 +1998-06-01,"Michigan",9848 +1998-06-01,"Arizona",1385 +1998-06-01,"Nevada",1487 +1998-06-01,"Tennessee",1397 +1998-06-01,"U.S.",152708 +1998-06-01,"Minnesota",2765 +1998-06-01,"Virginia",1747 +1998-06-01,"Arkansas",1006 +1998-06-01,"Colorado",1664 +1998-06-01,"Ohio",8568 +1998-06-01,"Iowa",1436 +1998-06-01,"California",33208 +1998-06-01,"New Mexico",286 +1998-06-01,"Indiana",3739 +1998-06-01,"District of Columbia",436 +1998-06-01,"Texas",6086 +1998-06-01,"Alabama",1394 +1998-06-01,"Illinois",11525 +1998-06-01,"Idaho",667 +1998-06-01,"Vermont",77 +1998-06-01,"New Jersey",6164 +1998-06-01,"Georgia",3210 +1998-06-01,"West Virginia",670 +1998-06-01,"Oregon",1684 +1998-06-01,"Wisconsin",3444 +1998-06-01,"Mississippi",812 +1998-06-01,"New York",12205 +1998-06-01,"Missouri",3141 +1998-06-01,"Hawaii",47 1998-06-01,"Wyoming",523 +1998-06-01,"Delaware",250 +1998-06-01,"Kansas",2092 +1998-06-01,"Nebraska",1202 +1998-06-01,"South Dakota",304 +1998-06-01,"Rhode Island",622 +1998-06-01,"Kentucky",1295 +1998-06-01,"Washington",2312 +1998-06-01,"Montana",669 +1998-06-01,"Florida",779 +1998-06-01,"Louisiana",1815 +1998-06-01,"South Carolina",543 +1998-06-01,"North Carolina",1207 +1998-06-01,"Maine",31 +1998-06-01,"Oklahoma",1889 +1998-06-01,"Utah",1962 +1998-06-01,"Massachusetts",3827 +1998-07-01,"Illinois",9488 +1998-07-01,"Pennsylvania",5332 +1998-07-01,"Ohio",8085 +1998-07-01,"Arizona",1070 +1998-07-01,"South Carolina",461 +1998-07-01,"Maryland",1874 +1998-07-01,"Vermont",56 +1998-07-01,"Mississippi",729 +1998-07-01,"Nebraska",1011 +1998-07-01,"Tennessee",1164 +1998-07-01,"Colorado",3454 +1998-07-01,"Louisiana",1774 +1998-07-01,"West Virginia",513 +1998-07-01,"Montana",499 +1998-07-01,"District of Columbia",372 +1998-07-01,"Massachusetts",2848 +1998-07-01,"Georgia",2981 +1998-07-01,"U.S.",132390 +1998-07-01,"Minnesota",2540 +1998-07-01,"Missouri",2643 +1998-07-01,"Oregon",944 +1998-07-01,"Idaho",403 +1998-07-01,"Connecticut",1017 +1998-07-01,"Wisconsin",2421 +1998-07-01,"California",25149 +1998-07-01,"New Mexico",828 +1998-07-01,"New York",15342 +1998-07-01,"Nevada",977 +1998-07-01,"Utah",1266 +1998-07-01,"Rhode Island",462 +1998-07-01,"North Carolina",1058 +1998-07-01,"Florida",705 1998-07-01,"Wyoming",345 +1998-07-01,"New Jersey",5345 +1998-07-01,"Alabama",1212 +1998-07-01,"Delaware",196 +1998-07-01,"Alaska",479 +1998-07-01,"Kentucky",1293 +1998-07-01,"Oklahoma",1624 +1998-07-01,"Indiana",2817 +1998-07-01,"Michigan",7330 +1998-07-01,"Hawaii",45 +1998-07-01,"Iowa",1596 +1998-07-01,"Washington",1765 +1998-07-01,"Maine",22 +1998-07-01,"Texas",6039 +1998-07-01,"North Dakota",230 +1998-07-01,"South Dakota",274 +1998-07-01,"New Hampshire",169 +1998-07-01,"Kansas",1746 +1998-07-01,"Virginia",1435 +1998-07-01,"Arkansas",963 +1998-08-01,"Idaho",292 +1998-08-01,"Utah",1335 +1998-08-01,"Texas",5774 +1998-08-01,"Colorado",2541 +1998-08-01,"South Carolina",446 +1998-08-01,"Wisconsin",2768 +1998-08-01,"North Carolina",914 +1998-08-01,"Mississippi",718 +1998-08-01,"Oklahoma",1409 +1998-08-01,"Tennessee",1093 +1998-08-01,"Minnesota",2461 +1998-08-01,"Michigan",6782 +1998-08-01,"Maryland",1904 +1998-08-01,"Maine",25 +1998-08-01,"Nevada",813 +1998-08-01,"Kansas",1546 +1998-08-01,"New Hampshire",156 +1998-08-01,"Rhode Island",438 +1998-08-01,"Hawaii",40 +1998-08-01,"Iowa",1445 +1998-08-01,"West Virginia",526 +1998-08-01,"Vermont",57 +1998-08-01,"New York",8900 +1998-08-01,"Massachusetts",2370 +1998-08-01,"North Dakota",204 +1998-08-01,"U.S.",116631 +1998-08-01,"Missouri",2192 +1998-08-01,"South Dakota",227 +1998-08-01,"Alaska",648 +1998-08-01,"Kentucky",1081 +1998-08-01,"Oregon",668 +1998-08-01,"Washington",1574 +1998-08-01,"Florida",649 +1998-08-01,"New Mexico",846 +1998-08-01,"Indiana",2803 1998-08-01,"Wyoming",307 +1998-08-01,"Alabama",1183 +1998-08-01,"Pennsylvania",5058 +1998-08-01,"Arizona",902 +1998-08-01,"Connecticut",839 +1998-08-01,"California",21625 +1998-08-01,"Nebraska",1030 +1998-08-01,"Louisiana",1588 +1998-08-01,"Illinois",10434 +1998-08-01,"Ohio",7314 +1998-08-01,"District of Columbia",328 +1998-08-01,"Delaware",164 +1998-08-01,"Virginia",1075 +1998-08-01,"Montana",471 +1998-08-01,"New Jersey",4945 +1998-08-01,"Georgia",2850 +1998-08-01,"Arkansas",872 +1998-09-01,"Colorado",2806 +1998-09-01,"Rhode Island",436 +1998-09-01,"West Virginia",623 +1998-09-01,"North Carolina",973 +1998-09-01,"New Mexico",841 +1998-09-01,"Alabama",1196 +1998-09-01,"Missouri",2627 +1998-09-01,"Nebraska",883 +1998-09-01,"California",22038 +1998-09-01,"Mississippi",725 +1998-09-01,"Nevada",824 +1998-09-01,"Indiana",3221 +1998-09-01,"U.S.",121417 +1998-09-01,"Illinois",10506 +1998-09-01,"New York",9546 +1998-09-01,"District of Columbia",340 +1998-09-01,"Massachusetts",2588 +1998-09-01,"North Dakota",198 +1998-09-01,"South Dakota",248 +1998-09-01,"Hawaii",41 +1998-09-01,"Oregon",767 +1998-09-01,"South Carolina",471 +1998-09-01,"Connecticut",927 +1998-09-01,"Wisconsin",2723 +1998-09-01,"Florida",657 +1998-09-01,"Virginia",1467 +1998-09-01,"Michigan",7580 +1998-09-01,"Pennsylvania",5161 +1998-09-01,"Arizona",940 +1998-09-01,"Idaho",316 +1998-09-01,"Georgia",2889 +1998-09-01,"Arkansas",861 +1998-09-01,"Ohio",6390 +1998-09-01,"Iowa",1435 +1998-09-01,"Montana",477 +1998-09-01,"Oklahoma",1449 +1998-09-01,"Tennessee",1159 +1998-09-01,"Delaware",176 +1998-09-01,"Alaska",818 +1998-09-01,"Louisiana",1719 +1998-09-01,"Washington",1667 +1998-09-01,"Maryland",1882 1998-09-01,"Wyoming",310 +1998-09-01,"New Jersey",5100 +1998-09-01,"Kansas",1479 +1998-09-01,"New Hampshire",159 +1998-09-01,"Kentucky",1150 +1998-09-01,"Maine",27 +1998-09-01,"Vermont",114 +1998-09-01,"Utah",1916 +1998-09-01,"Texas",5893 +1998-09-01,"Minnesota",2678 +1998-10-01,"Hawaii",39 +1998-10-01,"California",26159 +1998-10-01,"Florida",685 +1998-10-01,"Mississippi",805 +1998-10-01,"Massachusetts",4301 +1998-10-01,"Texas",7323 +1998-10-01,"Iowa",3030 +1998-10-01,"Idaho",657 +1998-10-01,"Montana",1266 +1998-10-01,"Oklahoma",1743 +1998-10-01,"Indiana",6497 +1998-10-01,"Tennessee",1447 +1998-10-01,"North Dakota",475 +1998-10-01,"Michigan",15956 +1998-10-01,"Ohio",16290 +1998-10-01,"Connecticut",1518 +1998-10-01,"New York",15308 +1998-10-01,"District of Columbia",459 +1998-10-01,"Georgia",4325 +1998-10-01,"Delaware",231 +1998-10-01,"Arkansas",1109 +1998-10-01,"Louisiana",1785 +1998-10-01,"Illinois",21536 +1998-10-01,"Pennsylvania",10204 +1998-10-01,"Oregon",1445 +1998-10-01,"Minnesota",5319 +1998-10-01,"Alabama",1320 +1998-10-01,"Nebraska",1623 +1998-10-01,"Colorado",4366 +1998-10-01,"West Virginia",1300 +1998-10-01,"Washington",2427 +1998-10-01,"Nevada",1367 +1998-10-01,"Utah",4472 +1998-10-01,"New Jersey",8720 +1998-10-01,"U.S.",202996 +1998-10-01,"South Dakota",533 +1998-10-01,"Arizona",1136 +1998-10-01,"Kentucky",2220 +1998-10-01,"South Carolina",575 +1998-10-01,"Maryland",2863 +1998-10-01,"Maine",62 +1998-10-01,"New Mexico",1171 +1998-10-01,"Kansas",2322 +1998-10-01,"Virginia",2499 +1998-10-01,"Missouri",3355 +1998-10-01,"Alaska",1346 +1998-10-01,"Wisconsin",6381 +1998-10-01,"North Carolina",1217 1998-10-01,"Wyoming",773 +1998-10-01,"New Hampshire",294 +1998-10-01,"Rhode Island",645 +1998-10-01,"Vermont",102 +1998-11-01,"Colorado",8806 +1998-11-01,"Hawaii",40 +1998-11-01,"Kentucky",6112 +1998-11-01,"South Carolina",1726 +1998-11-01,"Massachusetts",9367 +1998-11-01,"Missouri",8099 +1998-11-01,"South Dakota",1157 +1998-11-01,"Alaska",1858 +1998-11-01,"Iowa",6345 +1998-11-01,"Oregon",3180 +1998-11-01,"Florida",842 +1998-11-01,"New Mexico",3552 +1998-11-01,"Nevada",2526 +1998-11-01,"New Jersey",17413 +1998-11-01,"Georgia",9441 +1998-11-01,"Minnesota",12193 +1998-11-01,"Washington",4731 +1998-11-01,"North Carolina",4062 +1998-11-01,"Rhode Island",1408 +1998-11-01,"Arizona",2008 +1998-11-01,"Wisconsin",11701 +1998-11-01,"Indiana",13541 +1998-11-01,"Delaware",571 +1998-11-01,"New Hampshire",566 +1998-11-01,"Connecticut",3224 +1998-11-01,"Montana",2069 +1998-11-01,"Mississippi",1524 +1998-11-01,"Texas",12931 +1998-11-01,"North Dakota",1016 +1998-11-01,"Alabama",2468 +1998-11-01,"Virginia",6203 +1998-11-01,"Nebraska",3386 +1998-11-01,"Illinois",43853 +1998-11-01,"Ohio",30086 +1998-11-01,"Idaho",1510 +1998-11-01,"Maryland",6485 +1998-11-01,"California",40200 +1998-11-01,"Maine",95 1998-11-01,"Wyoming",1214 +1998-11-01,"Utah",5820 +1998-11-01,"Kansas",5820 +1998-11-01,"Pennsylvania",21159 +1998-11-01,"West Virginia",2791 +1998-11-01,"Oklahoma",4245 +1998-11-01,"District of Columbia",1088 +1998-11-01,"Arkansas",2668 +1998-11-01,"Michigan",29671 +1998-11-01,"Louisiana",2703 +1998-11-01,"Vermont",213 +1998-11-01,"New York",30010 +1998-11-01,"Tennessee",4397 +1998-11-01,"U.S.",398094 +1998-12-01,"Ohio",43384 +1998-12-01,"Washington",7989 +1998-12-01,"Mississippi",2556 +1998-12-01,"District of Columbia",1563 +1998-12-01,"North Dakota",1427 +1998-12-01,"Alaska",2183 +1998-12-01,"Arizona",4666 +1998-12-01,"Iowa",10514 +1998-12-01,"Kentucky",9289 1998-12-01,"Wyoming",1636 +1998-12-01,"Utah",9846 +1998-12-01,"Missouri",13873 +1998-12-01,"Nebraska",4230 +1998-12-01,"Louisiana",4987 +1998-12-01,"Pennsylvania",29772 +1998-12-01,"West Virginia",3974 +1998-12-01,"Vermont",289 +1998-12-01,"Indiana",20031 +1998-12-01,"Tennessee",8043 +1998-12-01,"Maryland",9224 +1998-12-01,"Michigan",42328 +1998-12-01,"Hawaii",44 +1998-12-01,"South Carolina",2818 +1998-12-01,"Wisconsin",18710 +1998-12-01,"Montana",2931 +1998-12-01,"Florida",1127 +1998-12-01,"Massachusetts",12366 +1998-12-01,"Texas",28302 +1998-12-01,"Minnesota",18639 +1998-12-01,"Rhode Island",1883 +1998-12-01,"Illinois",63990 +1998-12-01,"Oklahoma",7513 +1998-12-01,"New York",41937 +1998-12-01,"U.S.",615913 +1998-12-01,"Alabama",4447 +1998-12-01,"Virginia",9067 +1998-12-01,"South Dakota",1669 +1998-12-01,"Colorado",14812 +1998-12-01,"Oregon",5555 +1998-12-01,"North Carolina",5735 +1998-12-01,"California",68831 +1998-12-01,"Nevada",4335 +1998-12-01,"New Jersey",25091 +1998-12-01,"Arkansas",4550 +1998-12-01,"New Hampshire",739 +1998-12-01,"Idaho",2438 +1998-12-01,"Connecticut",4442 +1998-12-01,"Maine",132 +1998-12-01,"New Mexico",7299 +1998-12-01,"Georgia",15049 +1998-12-01,"Delaware",895 +1998-12-01,"Kansas",8767 +1999-01-01,"Alaska",2668 +1999-01-01,"New Mexico",6485 +1999-01-01,"Texas",41853 +1999-01-01,"Rhode Island",3083 +1999-01-01,"Louisiana",9279 +1999-01-01,"Oregon",6435 +1999-01-01,"Oklahoma",14975 +1999-01-01,"Nevada",4935 +1999-01-01,"New Jersey",40333 +1999-01-01,"Alabama",9018 +1999-01-01,"Missouri",26223 +1999-01-01,"Arkansas",9044 +1999-01-01,"West Virginia",6202 +1999-01-01,"Washington",12151 +1999-01-01,"Maine",165 +1999-01-01,"Tennessee",14847 +1999-01-01,"Kansas",15785 +1999-01-01,"Idaho",3097 +1999-01-01,"Wisconsin",26866 +1999-01-01,"Montana",3458 +1999-01-01,"Nebraska",8622 +1999-01-01,"Michigan",69010 +1999-01-01,"South Carolina",5679 +1999-01-01,"Connecticut",7147 +1999-01-01,"California",88358 1999-01-01,"Wyoming",1982 +1999-01-01,"Virginia",13127 +1999-01-01,"Pennsylvania",46069 +1999-01-01,"Hawaii",49 +1999-01-01,"Massachusetts",9396 +1999-01-01,"Georgia",18834 +1999-01-01,"Minnesota",25407 +1999-01-01,"New Hampshire",1246 +1999-01-01,"Iowa",16156 +1999-01-01,"Kentucky",11542 +1999-01-01,"Maryland",14731 +1999-01-01,"North Carolina",11181 +1999-01-01,"Mississippi",5727 +1999-01-01,"New York",66611 +1999-01-01,"Indiana",32894 +1999-01-01,"Utah",8220 +1999-01-01,"District of Columbia",2916 +1999-01-01,"South Dakota",2516 +1999-01-01,"Colorado",20903 +1999-01-01,"Illinois",93882 +1999-01-01,"Ohio",59224 +1999-01-01,"Arizona",6382 +1999-01-01,"Florida",2110 +1999-01-01,"Vermont",493 +1999-01-01,"North Dakota",2285 +1999-01-01,"U.S.",911162 +1999-01-01,"Delaware",1562 +1999-02-01,"Michigan",52327 +1999-02-01,"Ohio",49192 +1999-02-01,"South Carolina",3583 +1999-02-01,"Maryland",11037 +1999-02-01,"New York",57425 1999-02-01,"Wyoming",1708 +1999-02-01,"District of Columbia",2311 +1999-02-01,"Alabama",6161 +1999-02-01,"Missouri",17979 +1999-02-01,"Nebraska",5991 +1999-02-01,"Hawaii",48 +1999-02-01,"Oklahoma",9456 +1999-02-01,"U.S.",689687 +1999-02-01,"Illinois",61494 +1999-02-01,"Idaho",2640 +1999-02-01,"Connecticut",6119 +1999-02-01,"California",77994 +1999-02-01,"Florida",1522 +1999-02-01,"Kansas",10828 +1999-02-01,"Louisiana",6197 +1999-02-01,"Wisconsin",16977 +1999-02-01,"Mississippi",3162 +1999-02-01,"Tennessee",8993 +1999-02-01,"North Dakota",1538 +1999-02-01,"Arkansas",5257 +1999-02-01,"South Dakota",1719 +1999-02-01,"Arizona",5465 +1999-02-01,"Iowa",10639 +1999-02-01,"Maine",133 +1999-02-01,"Nevada",4309 +1999-02-01,"Minnesota",17084 +1999-02-01,"Alaska",2223 +1999-02-01,"Pennsylvania",36823 +1999-02-01,"Washington",9992 +1999-02-01,"North Carolina",7462 +1999-02-01,"Indiana",22341 +1999-02-01,"Utah",7725 +1999-02-01,"New Jersey",33726 +1999-02-01,"Delaware",1472 +1999-02-01,"New Hampshire",1036 +1999-02-01,"Rhode Island",2662 +1999-02-01,"Kentucky",8713 +1999-02-01,"West Virginia",4957 +1999-02-01,"Oregon",5873 +1999-02-01,"Montana",2495 +1999-02-01,"Vermont",384 +1999-02-01,"Massachusetts",13197 +1999-02-01,"Virginia",11294 +1999-02-01,"Colorado",15178 +1999-02-01,"New Mexico",4070 +1999-02-01,"Texas",23810 +1999-02-01,"Georgia",14967 +1999-03-01,"New Hampshire",991 +1999-03-01,"Pennsylvania",37573 +1999-03-01,"West Virginia",5443 +1999-03-01,"Vermont",374 +1999-03-01,"New York",56954 +1999-03-01,"District of Columbia",2326 +1999-03-01,"U.S.",669270 +1999-03-01,"Michigan",54085 +1999-03-01,"Rhode Island",2704 +1999-03-01,"Wisconsin",16389 +1999-03-01,"California",67420 +1999-03-01,"Minnesota",15312 +1999-03-01,"Ohio",51346 +1999-03-01,"Kentucky",9196 +1999-03-01,"Idaho",2263 +1999-03-01,"Oklahoma",8408 +1999-03-01,"Tennessee",9699 +1999-03-01,"Alabama",6393 +1999-03-01,"Virginia",11382 +1999-03-01,"Arkansas",5154 +1999-03-01,"Oregon",5125 +1999-03-01,"Montana",2114 +1999-03-01,"Maine",131 +1999-03-01,"New Jersey",32578 +1999-03-01,"Washington",8964 +1999-03-01,"Connecticut",5814 +1999-03-01,"New Mexico",4413 +1999-03-01,"Nevada",3331 +1999-03-01,"Massachusetts",17960 +1999-03-01,"Delaware",1577 +1999-03-01,"Louisiana",5547 +1999-03-01,"Maryland",11346 +1999-03-01,"Nebraska",5753 +1999-03-01,"South Dakota",1486 +1999-03-01,"Alaska",2075 +1999-03-01,"Illinois",61473 +1999-03-01,"Hawaii",44 +1999-03-01,"Arizona",3735 +1999-03-01,"South Carolina",4369 +1999-03-01,"North Carolina",9427 +1999-03-01,"Florida",1674 +1999-03-01,"Mississippi",3458 +1999-03-01,"Indiana",23341 1999-03-01,"Wyoming",1346 +1999-03-01,"Texas",19955 +1999-03-01,"North Dakota",1292 +1999-03-01,"Georgia",12351 +1999-03-01,"Kansas",9832 +1999-03-01,"Colorado",13479 +1999-03-01,"Iowa",9847 +1999-03-01,"Utah",5425 +1999-03-01,"Missouri",16594 +1999-04-01,"South Dakota",1140 +1999-04-01,"Michigan",31738 +1999-04-01,"Illinois",31267 +1999-04-01,"Ohio",26855 +1999-04-01,"South Carolina",2223 +1999-04-01,"Florida",1306 +1999-04-01,"Mississippi",2264 +1999-04-01,"U.S.",420192 +1999-04-01,"Minnesota",8559 +1999-04-01,"Rhode Island",1702 +1999-04-01,"Montana",1895 +1999-04-01,"New York",35080 +1999-04-01,"Texas",15422 +1999-04-01,"Washington",6858 +1999-04-01,"District of Columbia",1270 +1999-04-01,"Nebraska",3750 +1999-04-01,"Louisiana",3832 +1999-04-01,"Alabama",3892 +1999-04-01,"Kansas",5935 +1999-04-01,"Virginia",5129 +1999-04-01,"Missouri",9675 +1999-04-01,"Alaska",1315 +1999-04-01,"West Virginia",2957 +1999-04-01,"Maryland",6158 +1999-04-01,"North Carolina",5325 +1999-04-01,"Maine",76 +1999-04-01,"Nevada",2704 +1999-04-01,"Utah",5267 +1999-04-01,"Hawaii",46 +1999-04-01,"Kentucky",4081 +1999-04-01,"Oregon",3948 +1999-04-01,"Wisconsin",9040 +1999-04-01,"California",62128 +1999-04-01,"Vermont",282 +1999-04-01,"New Mexico",2419 1999-04-01,"Wyoming",1254 +1999-04-01,"Tennessee",4777 +1999-04-01,"North Dakota",965 +1999-04-01,"Arkansas",3730 +1999-04-01,"Colorado",10614 +1999-04-01,"Pennsylvania",21743 +1999-04-01,"Idaho",1879 +1999-04-01,"Connecticut",3644 +1999-04-01,"New Jersey",19343 +1999-04-01,"Georgia",5469 +1999-04-01,"New Hampshire",672 +1999-04-01,"Arizona",3374 +1999-04-01,"Iowa",5533 +1999-04-01,"Oklahoma",6234 +1999-04-01,"Indiana",13205 +1999-04-01,"Massachusetts",11224 +1999-04-01,"Delaware",991 +1999-05-01,"South Dakota",629 +1999-05-01,"Michigan",16163 +1999-05-01,"Arizona",2108 +1999-05-01,"West Virginia",1398 +1999-05-01,"California",40605 +1999-05-01,"Maine",40 +1999-05-01,"New Mexico",1642 +1999-05-01,"Virginia",2726 +1999-05-01,"Nebraska",2361 +1999-05-01,"Louisiana",2304 +1999-05-01,"Delaware",498 +1999-05-01,"Alaska",939 +1999-05-01,"Kentucky",1792 +1999-05-01,"Idaho",1247 +1999-05-01,"Florida",911 +1999-05-01,"Indiana",5908 +1999-05-01,"District of Columbia",688 +1999-05-01,"New Jersey",10520 +1999-05-01,"Georgia",1902 +1999-05-01,"U.S.",234764 +1999-05-01,"Oregon",2796 +1999-05-01,"South Carolina",1193 +1999-05-01,"Montana",1380 +1999-05-01,"New York",18880 +1999-05-01,"Tennessee",1809 +1999-05-01,"Minnesota",4966 +1999-05-01,"Missouri",5311 +1999-05-01,"Illinois",15872 +1999-05-01,"Mississippi",1040 +1999-05-01,"Massachusetts",6524 +1999-05-01,"Kansas",3420 +1999-05-01,"New Hampshire",367 +1999-05-01,"Utah",2663 +1999-05-01,"Texas",8745 +1999-05-01,"Alabama",1873 +1999-05-01,"Pennsylvania",11281 +1999-05-01,"Hawaii",44 +1999-05-01,"Connecticut",2004 +1999-05-01,"Maryland",3316 +1999-05-01,"Wisconsin",5007 +1999-05-01,"Vermont",158 +1999-05-01,"Oklahoma",3083 +1999-05-01,"Nevada",1843 +1999-05-01,"Colorado",9579 +1999-05-01,"Rhode Island",949 +1999-05-01,"Ohio",12575 +1999-05-01,"Iowa",3078 +1999-05-01,"Washington",4654 +1999-05-01,"North Carolina",2597 1999-05-01,"Wyoming",1119 +1999-05-01,"North Dakota",615 +1999-05-01,"Arkansas",1640 +1999-06-01,"South Dakota",324 +1999-06-01,"Colorado",4680 +1999-06-01,"Oregon",1661 +1999-06-01,"North Carolina",1312 +1999-06-01,"Pennsylvania",6529 +1999-06-01,"Ohio",7969 +1999-06-01,"West Virginia",657 +1999-06-01,"California",32960 +1999-06-01,"Vermont",77 +1999-06-01,"Oklahoma",1925 +1999-06-01,"New Jersey",6254 +1999-06-01,"Arkansas",1030 +1999-06-01,"Rhode Island",557 +1999-06-01,"Massachusetts",4134 +1999-06-01,"Tennessee",1428 +1999-06-01,"North Dakota",259 +1999-06-01,"Virginia",1602 +1999-06-01,"Louisiana",1942 +1999-06-01,"Washington",3059 +1999-06-01,"Wisconsin",3265 +1999-06-01,"Missouri",3084 +1999-06-01,"Connecticut",1249 +1999-06-01,"Georgia",1677 +1999-06-01,"U.S.",158235 +1999-06-01,"Kansas",2065 +1999-06-01,"Michigan",10455 +1999-06-01,"Alaska",559 +1999-06-01,"New Hampshire",188 +1999-06-01,"Arizona",1354 +1999-06-01,"Montana",645 +1999-06-01,"Mississippi",798 +1999-06-01,"Nevada",1233 +1999-06-01,"Utah",1648 +1999-06-01,"Delaware",254 +1999-06-01,"Illinois",11128 +1999-06-01,"Kentucky",1325 +1999-06-01,"Maryland",2182 +1999-06-01,"Maine",26 +1999-06-01,"New York",14898 +1999-06-01,"District of Columbia",399 +1999-06-01,"Minnesota",3103 +1999-06-01,"Alabama",1357 +1999-06-01,"Nebraska",1186 +1999-06-01,"Hawaii",43 +1999-06-01,"Iowa",1595 +1999-06-01,"Idaho",647 +1999-06-01,"South Carolina",569 +1999-06-01,"Florida",794 +1999-06-01,"New Mexico",1117 +1999-06-01,"Indiana",3457 1999-06-01,"Wyoming",506 +1999-06-01,"Texas",7070 +1999-07-01,"Michigan",6936 +1999-07-01,"Colorado",3086 +1999-07-01,"Alaska",486 +1999-07-01,"Idaho",429 +1999-07-01,"Florida",752 +1999-07-01,"Louisiana",1792 +1999-07-01,"Illinois",9971 +1999-07-01,"Oregon",852 +1999-07-01,"Utah",2254 +1999-07-01,"District of Columbia",369 +1999-07-01,"New Jersey",5041 +1999-07-01,"Texas",6286 +1999-07-01,"North Dakota",225 +1999-07-01,"Kentucky",1165 +1999-07-01,"West Virginia",527 +1999-07-01,"Indiana",2801 +1999-07-01,"Minnesota",2243 +1999-07-01,"Iowa",1823 +1999-07-01,"Wisconsin",2669 +1999-07-01,"North Carolina",1062 +1999-07-01,"California",25727 +1999-07-01,"Maine",21 +1999-07-01,"Alabama",1259 +1999-07-01,"Arkansas",998 +1999-07-01,"South Dakota",274 +1999-07-01,"Rhode Island",448 +1999-07-01,"Connecticut",1066 +1999-07-01,"Montana",518 +1999-07-01,"Oklahoma",1659 +1999-07-01,"New York",9890 +1999-07-01,"Kansas",1479 +1999-07-01,"New Hampshire",152 +1999-07-01,"Hawaii",45 +1999-07-01,"Arizona",1065 +1999-07-01,"South Carolina",491 +1999-07-01,"Mississippi",772 1999-07-01,"Wyoming",292 +1999-07-01,"Tennessee",1070 +1999-07-01,"Delaware",202 +1999-07-01,"Virginia",1521 +1999-07-01,"Missouri",2552 +1999-07-01,"Washington",1958 +1999-07-01,"Maryland",1905 +1999-07-01,"New Mexico",951 +1999-07-01,"Nevada",940 +1999-07-01,"Massachusetts",3666 +1999-07-01,"Georgia",2216 +1999-07-01,"Pennsylvania",4974 +1999-07-01,"Ohio",6618 +1999-07-01,"Vermont",56 +1999-07-01,"U.S.",126561 +1999-07-01,"Nebraska",1008 +1999-08-01,"Illinois",9091 +1999-08-01,"Vermont",56 +1999-08-01,"New York",8705 +1999-08-01,"Texas",5569 +1999-08-01,"Alabama",1126 +1999-08-01,"New Hampshire",141 +1999-08-01,"Florida",702 +1999-08-01,"Delaware",168 +1999-08-01,"Missouri",2292 +1999-08-01,"Nebraska",1120 +1999-08-01,"Colorado",2750 +1999-08-01,"Pennsylvania",4817 +1999-08-01,"Ohio",6037 +1999-08-01,"West Virginia",505 +1999-08-01,"Connecticut",858 +1999-08-01,"Utah",1484 +1999-08-01,"Georgia",2349 +1999-08-01,"Arkansas",951 +1999-08-01,"Louisiana",1679 +1999-08-01,"Hawaii",41 +1999-08-01,"Idaho",360 +1999-08-01,"South Carolina",448 +1999-08-01,"Mississippi",705 +1999-08-01,"New Mexico",801 +1999-08-01,"Michigan",6458 +1999-08-01,"Iowa",1231 +1999-08-01,"Kentucky",1181 +1999-08-01,"Nevada",921 1999-08-01,"Wyoming",231 +1999-08-01,"Minnesota",2522 +1999-08-01,"Rhode Island",399 +1999-08-01,"Wisconsin",2815 +1999-08-01,"Montana",378 +1999-08-01,"Indiana",2766 +1999-08-01,"District of Columbia",315 +1999-08-01,"Virginia",1407 +1999-08-01,"South Dakota",224 +1999-08-01,"New Jersey",4800 +1999-08-01,"Tennessee",1167 +1999-08-01,"North Dakota",191 +1999-08-01,"U.S.",116231 +1999-08-01,"Alaska",481 +1999-08-01,"Arizona",963 +1999-08-01,"Oregon",824 +1999-08-01,"Washington",1750 +1999-08-01,"Maryland",1740 +1999-08-01,"North Carolina",921 +1999-08-01,"California",23376 +1999-08-01,"Maine",25 +1999-08-01,"Oklahoma",1445 +1999-08-01,"Massachusetts",3327 +1999-08-01,"Kansas",1617 +1999-09-01,"Kentucky",1391 +1999-09-01,"Washington",1953 +1999-09-01,"South Carolina",487 +1999-09-01,"Oklahoma",1463 1999-09-01,"Wyoming",479 +1999-09-01,"Massachusetts",3789 +1999-09-01,"Minnesota",3367 +1999-09-01,"Virginia",1497 +1999-09-01,"Pennsylvania",5334 +1999-09-01,"Ohio",6862 +1999-09-01,"North Dakota",296 +1999-09-01,"U.S.",134861 +1999-09-01,"Missouri",2743 +1999-09-01,"South Dakota",300 +1999-09-01,"Colorado",2978 +1999-09-01,"Connecticut",1067 +1999-09-01,"Michigan",7868 +1999-09-01,"Rhode Island",445 +1999-09-01,"Illinois",12552 +1999-09-01,"Iowa",1830 +1999-09-01,"Florida",702 +1999-09-01,"Vermont",58 +1999-09-01,"New York",9962 +1999-09-01,"Georgia",3794 +1999-09-01,"Nebraska",799 +1999-09-01,"Louisiana",1699 +1999-09-01,"Hawaii",41 +1999-09-01,"West Virginia",681 +1999-09-01,"Montana",637 +1999-09-01,"Utah",2285 +1999-09-01,"New Jersey",5432 +1999-09-01,"Tennessee",1539 +1999-09-01,"Alaska",870 +1999-09-01,"Wisconsin",3434 +1999-09-01,"New Mexico",1024 +1999-09-01,"Indiana",3238 +1999-09-01,"New Hampshire",161 +1999-09-01,"Arizona",1006 +1999-09-01,"Oregon",935 +1999-09-01,"North Carolina",1034 +1999-09-01,"California",24496 +1999-09-01,"Maine",27 +1999-09-01,"Mississippi",733 +1999-09-01,"Alabama",1185 +1999-09-01,"Delaware",169 +1999-09-01,"Arkansas",925 +1999-09-01,"Idaho",438 +1999-09-01,"Maryland",1960 +1999-09-01,"Nevada",953 +1999-09-01,"District of Columbia",326 +1999-09-01,"Texas",6126 +1999-09-01,"Kansas",1489 +1999-10-01,"Louisiana",1958 +1999-10-01,"Illinois",26435 +1999-10-01,"Montana",1335 +1999-10-01,"Mississippi",903 +1999-10-01,"Nevada",1208 +1999-10-01,"District of Columbia",484 +1999-10-01,"Virginia",2943 +1999-10-01,"Kentucky",2631 +1999-10-01,"South Carolina",734 +1999-10-01,"Wisconsin",7969 +1999-10-01,"Kansas",2658 +1999-10-01,"Vermont",123 +1999-10-01,"Utah",3567 +1999-10-01,"Massachusetts",5925 +1999-10-01,"Delaware",278 +1999-10-01,"Arkansas",1264 +1999-10-01,"Hawaii",44 +1999-10-01,"Connecticut",1522 +1999-10-01,"New Mexico",2280 +1999-10-01,"New York",17677 +1999-10-01,"Georgia",5974 +1999-10-01,"South Dakota",607 +1999-10-01,"Iowa",3465 +1999-10-01,"North Carolina",1679 +1999-10-01,"Maine",69 +1999-10-01,"Indiana",7273 +1999-10-01,"North Dakota",657 +1999-10-01,"U.S.",233508 +1999-10-01,"Michigan",18416 +1999-10-01,"Ohio",17303 +1999-10-01,"Maryland",3540 +1999-10-01,"California",25265 1999-10-01,"Wyoming",717 +1999-10-01,"Minnesota",7112 +1999-10-01,"Alabama",1560 +1999-10-01,"Missouri",4174 +1999-10-01,"Colorado",5565 +1999-10-01,"Rhode Island",691 +1999-10-01,"Pennsylvania",12407 +1999-10-01,"Oregon",1617 +1999-10-01,"Washington",4024 +1999-10-01,"Oklahoma",2108 +1999-10-01,"Nebraska",2128 +1999-10-01,"Alaska",1423 +1999-10-01,"New Hampshire",325 +1999-10-01,"Arizona",1165 +1999-10-01,"West Virginia",1339 +1999-10-01,"Idaho",869 +1999-10-01,"Florida",731 +1999-10-01,"New Jersey",10322 +1999-10-01,"Texas",7143 +1999-10-01,"Tennessee",1909 +1999-11-01,"Alaska",2127 +1999-11-01,"Louisiana",2935 +1999-11-01,"California",34488 +1999-11-01,"Maine",93 +1999-11-01,"Vermont",212 +1999-11-01,"Mississippi",1685 +1999-11-01,"Utah",5321 +1999-11-01,"New Jersey",18160 +1999-11-01,"U.S.",371595 +1999-11-01,"Rhode Island",1227 +1999-11-01,"Pennsylvania",19812 +1999-11-01,"Oregon",3108 +1999-11-01,"North Carolina",3942 +1999-11-01,"Kansas",3997 +1999-11-01,"Arkansas",1216 +1999-11-01,"West Virginia",2541 +1999-11-01,"Idaho",1530 +1999-11-01,"South Carolina",2093 +1999-11-01,"Montana",1983 +1999-11-01,"Tennessee",4521 +1999-11-01,"Georgia",10635 +1999-11-01,"Alabama",3069 +1999-11-01,"Ohio",27700 +1999-11-01,"Iowa",5602 +1999-11-01,"Kentucky",5413 +1999-11-01,"Connecticut",3064 +1999-11-01,"Oklahoma",3185 +1999-11-01,"Nevada",1998 1999-11-01,"Wyoming",903 +1999-11-01,"District of Columbia",1029 +1999-11-01,"Illinois",38571 +1999-11-01,"Wisconsin",11440 +1999-11-01,"New Mexico",4083 +1999-11-01,"New York",28487 +1999-11-01,"Massachusetts",9964 +1999-11-01,"North Dakota",869 +1999-11-01,"Minnesota",10624 +1999-11-01,"Delaware",576 +1999-11-01,"Maryland",6268 +1999-11-01,"Texas",11193 +1999-11-01,"Missouri",6882 +1999-11-01,"Nebraska",2733 +1999-11-01,"South Dakota",918 +1999-11-01,"Colorado",8173 +1999-11-01,"Hawaii",36 +1999-11-01,"Arizona",1682 +1999-11-01,"Washington",6596 +1999-11-01,"Indiana",11571 +1999-11-01,"Virginia",5985 +1999-11-01,"Michigan",29784 +1999-11-01,"New Hampshire",549 +1999-11-01,"Florida",1020 +1999-12-01,"Rhode Island",1736 +1999-12-01,"Iowa",10631 +1999-12-01,"West Virginia",4195 +1999-12-01,"Connecticut",4810 +1999-12-01,"Montana",2840 +1999-12-01,"Mississippi",3314 +1999-12-01,"Massachusetts",16601 +1999-12-01,"Alabama",5754 +1999-12-01,"Missouri",14535 +1999-12-01,"Arkansas",5037 +1999-12-01,"Michigan",47495 +1999-12-01,"Maryland",10665 +1999-12-01,"Wisconsin",21737 +1999-12-01,"Florida",1572 +1999-12-01,"Vermont",293 +1999-12-01,"New York",46142 +1999-12-01,"Arizona",4642 +1999-12-01,"Maine",151 +1999-12-01,"District of Columbia",1714 +1999-12-01,"New Jersey",22890 +1999-12-01,"U.S.",659606 +1999-12-01,"Kansas",9040 +1999-12-01,"Virginia",10575 +1999-12-01,"Illinois",73482 +1999-12-01,"Ohio",46532 +1999-12-01,"Oregon",5391 +1999-12-01,"Idaho",2514 +1999-12-01,"North Carolina",6912 +1999-12-01,"California",65679 +1999-12-01,"Oklahoma",7670 1999-12-01,"Wyoming",1568 +1999-12-01,"Pennsylvania",34106 +1999-12-01,"New Mexico",6263 +1999-12-01,"Indiana",22735 +1999-12-01,"Utah",9614 +1999-12-01,"North Dakota",1380 +1999-12-01,"Georgia",18610 +1999-12-01,"South Dakota",1628 +1999-12-01,"New Hampshire",783 +1999-12-01,"Louisiana",5940 +1999-12-01,"Washington",9745 +1999-12-01,"Nevada",4396 +1999-12-01,"Minnesota",18639 +1999-12-01,"Colorado",14763 +1999-12-01,"Alaska",2466 +1999-12-01,"Hawaii",42 +1999-12-01,"Kentucky",10790 +1999-12-01,"South Carolina",3799 +1999-12-01,"Texas",22736 +1999-12-01,"Tennessee",8802 +1999-12-01,"Delaware",1116 +1999-12-01,"Nebraska",5137 +2000-01-01,"Tennessee",13569 +2000-01-01,"Louisiana",8827 +2000-01-01,"Pennsylvania",48338 +2000-01-01,"Iowa",14063 +2000-01-01,"Oregon",6622 +2000-01-01,"Oklahoma",11321 +2000-01-01,"New York",65819 +2000-01-01,"Nevada",4985 +2000-01-01,"District of Columbia",2788 +2000-01-01,"Arkansas",7415 +2000-01-01,"Alaska",2355 +2000-01-01,"New Hampshire",1316 +2000-01-01,"Idaho",3331 +2000-01-01,"Wisconsin",25349 +2000-01-01,"North Carolina",11018 +2000-01-01,"California",66741 +2000-01-01,"Florida",2179 +2000-01-01,"Vermont",465 +2000-01-01,"Georgia",26533 +2000-01-01,"Minnesota",24500 +2000-01-01,"Virginia",15108 +2000-01-01,"Rhode Island",2857 +2000-01-01,"Arizona",6438 +2000-01-01,"Montana",3202 +2000-01-01,"New Mexico",5161 +2000-01-01,"Utah",8319 +2000-01-01,"Massachusetts",18757 +2000-01-01,"Hawaii",48 +2000-01-01,"West Virginia",5832 +2000-01-01,"Connecticut",6891 +2000-01-01,"Mississippi",4956 +2000-01-01,"Indiana",31010 2000-01-01,"Wyoming",1676 +2000-01-01,"North Dakota",1950 +2000-01-01,"Missouri",21401 +2000-01-01,"South Dakota",2149 +2000-01-01,"Illinois",84544 +2000-01-01,"Washington",11393 +2000-01-01,"South Carolina",5559 +2000-01-01,"Maine",202 +2000-01-01,"Michigan",64539 +2000-01-01,"New Jersey",38111 +2000-01-01,"Texas",33787 +2000-01-01,"U.S.",862900 +2000-01-01,"Nebraska",7375 +2000-01-01,"Colorado",18846 +2000-01-01,"Ohio",63131 +2000-01-01,"Kentucky",13590 +2000-01-01,"Maryland",14913 +2000-01-01,"Alabama",8671 +2000-01-01,"Delaware",1800 +2000-01-01,"Kansas",13149 +2000-02-01,"Colorado",16123 +2000-02-01,"Wisconsin",18333 +2000-02-01,"Indiana",26040 +2000-02-01,"Missouri",20789 +2000-02-01,"Rhode Island",3500 +2000-02-01,"Louisiana",7834 +2000-02-01,"Arizona",6328 +2000-02-01,"Kentucky",8233 +2000-02-01,"Washington",10369 +2000-02-01,"Mississippi",5185 +2000-02-01,"Utah",7038 +2000-02-01,"Kansas",11829 +2000-02-01,"Arkansas",5734 +2000-02-01,"South Dakota",1772 +2000-02-01,"Illinois",64000 +2000-02-01,"Pennsylvania",42456 +2000-02-01,"Maryland",14599 +2000-02-01,"New Mexico",4407 +2000-02-01,"New York",66232 +2000-02-01,"District of Columbia",3114 +2000-02-01,"Alaska",1886 +2000-02-01,"Idaho",2716 +2000-02-01,"Oklahoma",11681 +2000-02-01,"Massachusetts",21076 +2000-02-01,"Hawaii",49 +2000-02-01,"Oregon",5776 +2000-02-01,"Maine",122 +2000-02-01,"Delaware",1662 +2000-02-01,"Virginia",14073 +2000-02-01,"Michigan",59948 +2000-02-01,"Montana",2801 +2000-02-01,"Vermont",510 2000-02-01,"Wyoming",1674 +2000-02-01,"New Jersey",37885 +2000-02-01,"Tennessee",13170 +2000-02-01,"Georgia",17571 +2000-02-01,"U.S.",775235 +2000-02-01,"Alabama",9716 +2000-02-01,"Ohio",53644 +2000-02-01,"West Virginia",6279 +2000-02-01,"Connecticut",7631 +2000-02-01,"California",65334 +2000-02-01,"Texas",31489 +2000-02-01,"Nebraska",6882 +2000-02-01,"New Hampshire",1242 +2000-02-01,"Iowa",10992 +2000-02-01,"South Carolina",6445 +2000-02-01,"North Carolina",13160 +2000-02-01,"Florida",2503 +2000-02-01,"Nevada",3863 +2000-02-01,"North Dakota",1675 +2000-02-01,"Minnesota",17866 +2000-03-01,"South Dakota",1360 +2000-03-01,"District of Columbia",1747 +2000-03-01,"North Dakota",1305 +2000-03-01,"Ohio",38179 +2000-03-01,"Iowa",7680 +2000-03-01,"South Carolina",2880 +2000-03-01,"Vermont",396 +2000-03-01,"Oklahoma",7477 +2000-03-01,"Texas",17589 +2000-03-01,"U.S.",550261 +2000-03-01,"New Hampshire",973 +2000-03-01,"North Carolina",7550 +2000-03-01,"Florida",1622 +2000-03-01,"Nevada",3711 +2000-03-01,"Kansas",8180 +2000-03-01,"Hawaii",48 +2000-03-01,"West Virginia",3818 +2000-03-01,"Maine",123 +2000-03-01,"Mississippi",2585 +2000-03-01,"Indiana",16221 2000-03-01,"Wyoming",1437 +2000-03-01,"Colorado",14321 +2000-03-01,"Rhode Island",2581 +2000-03-01,"Kentucky",6183 +2000-03-01,"Maryland",8846 +2000-03-01,"California",62855 +2000-03-01,"Minnesota",12764 +2000-03-01,"Nebraska",5815 +2000-03-01,"Michigan",42901 +2000-03-01,"Louisiana",4490 +2000-03-01,"Pennsylvania",29615 +2000-03-01,"Washington",9196 +2000-03-01,"Idaho",2298 +2000-03-01,"Connecticut",4978 +2000-03-01,"New Mexico",3424 +2000-03-01,"Utah",6792 +2000-03-01,"Massachusetts",13785 +2000-03-01,"Georgia",11126 +2000-03-01,"Missouri",12977 +2000-03-01,"Illinois",45617 +2000-03-01,"Montana",2290 +2000-03-01,"Delaware",1178 +2000-03-01,"Virginia",8387 +2000-03-01,"Arkansas",4139 +2000-03-01,"Alaska",1764 +2000-03-01,"Arizona",4192 +2000-03-01,"Oregon",5048 +2000-03-01,"Wisconsin",13106 +2000-03-01,"New York",48138 +2000-03-01,"New Jersey",25021 +2000-03-01,"Tennessee",6748 +2000-03-01,"Alabama",4805 +2000-04-01,"Pennsylvania",22060 +2000-04-01,"Ohio",28363 +2000-04-01,"Kentucky",4108 +2000-04-01,"North Carolina",4451 +2000-04-01,"California",39046 +2000-04-01,"Vermont",268 +2000-04-01,"Washington",6568 +2000-04-01,"Maryland",6556 +2000-04-01,"Montana",1559 +2000-04-01,"Florida",1133 +2000-04-01,"New York",37288 2000-04-01,"Wyoming",1223 +2000-04-01,"Utah",2967 +2000-04-01,"Georgia",8441 +2000-04-01,"Delaware",985 +2000-04-01,"Virginia",5521 +2000-04-01,"Rhode Island",1812 +2000-04-01,"Hawaii",46 +2000-04-01,"Arizona",2663 +2000-04-01,"West Virginia",2491 +2000-04-01,"Maine",89 +2000-04-01,"Nevada",2027 +2000-04-01,"Indiana",12837 +2000-04-01,"New Jersey",17746 +2000-04-01,"Tennessee",4825 +2000-04-01,"U.S.",400886 +2000-04-01,"Louisiana",3702 +2000-04-01,"Idaho",1695 +2000-04-01,"District of Columbia",1272 +2000-04-01,"Alabama",3471 +2000-04-01,"South Dakota",1057 +2000-04-01,"Iowa",5392 +2000-04-01,"South Carolina",1919 +2000-04-01,"Wisconsin",11201 +2000-04-01,"Mississippi",1885 +2000-04-01,"Connecticut",3190 +2000-04-01,"New Mexico",3415 +2000-04-01,"Minnesota",9668 +2000-04-01,"Missouri",9281 +2000-04-01,"Michigan",33067 +2000-04-01,"Colorado",11175 +2000-04-01,"New Hampshire",632 +2000-04-01,"Illinois",35412 +2000-04-01,"Oregon",3475 +2000-04-01,"Texas",14597 +2000-04-01,"North Dakota",916 +2000-04-01,"Kansas",5744 +2000-04-01,"Nebraska",4561 +2000-04-01,"Alaska",1234 +2000-04-01,"Oklahoma",5208 +2000-04-01,"Massachusetts",10203 +2000-04-01,"Arkansas",2439 +2000-05-01,"Utah",1809 +2000-05-01,"New Hampshire",432 +2000-05-01,"Rhode Island",1279 +2000-05-01,"Arizona",1510 +2000-05-01,"South Carolina",1141 +2000-05-01,"Wisconsin",5027 +2000-05-01,"Colorado",6487 +2000-05-01,"North Carolina",2225 +2000-05-01,"Tennessee",2531 +2000-05-01,"South Dakota",573 +2000-05-01,"Alaska",864 +2000-05-01,"Louisiana",2062 +2000-05-01,"Illinois",15613 +2000-05-01,"Idaho",909 +2000-05-01,"Maine",49 +2000-05-01,"Vermont",179 +2000-05-01,"Mississippi",1195 +2000-05-01,"Nevada",1568 +2000-05-01,"Georgia",4818 +2000-05-01,"Kansas",2947 +2000-05-01,"Virginia",2870 +2000-05-01,"Michigan",18600 +2000-05-01,"Hawaii",47 +2000-05-01,"Oregon",2321 +2000-05-01,"California",31735 +2000-05-01,"Florida",967 +2000-05-01,"New York",22525 +2000-05-01,"District of Columbia",741 +2000-05-01,"Massachusetts",7051 +2000-05-01,"Texas",8503 +2000-05-01,"North Dakota",496 +2000-05-01,"Minnesota",4924 +2000-05-01,"Nebraska",1467 +2000-05-01,"Pennsylvania",10832 +2000-05-01,"Washington",4583 +2000-05-01,"Maryland",3375 +2000-05-01,"New Mexico",1149 +2000-05-01,"Indiana",6269 +2000-05-01,"Missouri",4869 +2000-05-01,"Ohio",13699 +2000-05-01,"Kentucky",1415 +2000-05-01,"West Virginia",1898 2000-05-01,"Wyoming",670 +2000-05-01,"New Jersey",11043 +2000-05-01,"U.S.",228439 +2000-05-01,"Delaware",655 +2000-05-01,"Iowa",2655 +2000-05-01,"Connecticut",2226 +2000-05-01,"Montana",972 +2000-05-01,"Oklahoma",2785 +2000-05-01,"Alabama",2320 +2000-05-01,"Arkansas",1558 +2000-06-01,"Colorado",4081 +2000-06-01,"Alaska",646 +2000-06-01,"Rhode Island",715 +2000-06-01,"Oklahoma",1825 +2000-06-01,"Indiana",3693 +2000-06-01,"New Jersey",6216 +2000-06-01,"Texas",7118 +2000-06-01,"Minnesota",3358 +2000-06-01,"New Hampshire",275 +2000-06-01,"West Virginia",747 +2000-06-01,"California",27625 +2000-06-01,"Florida",831 +2000-06-01,"Vermont",110 +2000-06-01,"Ohio",7832 +2000-06-01,"New Mexico",1577 +2000-06-01,"Nevada",1184 +2000-06-01,"South Dakota",333 +2000-06-01,"Michigan",9777 +2000-06-01,"Washington",3119 +2000-06-01,"Idaho",633 +2000-06-01,"Connecticut",1260 +2000-06-01,"Maryland",2267 +2000-06-01,"Wisconsin",2662 +2000-06-01,"Maine",31 +2000-06-01,"North Dakota",329 +2000-06-01,"Nebraska",1003 +2000-06-01,"Arkansas",916 +2000-06-01,"Hawaii",45 +2000-06-01,"Iowa",1611 +2000-06-01,"Oregon",1530 +2000-06-01,"North Carolina",1483 +2000-06-01,"Mississippi",832 2000-06-01,"Wyoming",396 +2000-06-01,"Tennessee",1319 +2000-06-01,"U.S.",154183 +2000-06-01,"Louisiana",1815 +2000-06-01,"Utah",1494 +2000-06-01,"Illinois",12052 +2000-06-01,"Arizona",1178 +2000-06-01,"South Carolina",577 +2000-06-01,"District of Columbia",485 +2000-06-01,"Alabama",1383 +2000-06-01,"Delaware",294 +2000-06-01,"Kansas",1799 +2000-06-01,"Missouri",2050 +2000-06-01,"Pennsylvania",7890 +2000-06-01,"Kentucky",1129 +2000-06-01,"Montana",606 +2000-06-01,"New York",14349 +2000-06-01,"Massachusetts",4065 +2000-06-01,"Georgia",3835 +2000-06-01,"Virginia",1804 +2000-07-01,"Michigan",7823 +2000-07-01,"Alaska",475 +2000-07-01,"New Hampshire",178 +2000-07-01,"Idaho",438 +2000-07-01,"North Carolina",1007 +2000-07-01,"New York",10847 +2000-07-01,"Texas",6220 +2000-07-01,"South Dakota",248 +2000-07-01,"Arizona",996 +2000-07-01,"Oregon",997 +2000-07-01,"Wisconsin",2704 +2000-07-01,"Florida",734 +2000-07-01,"Louisiana",1724 +2000-07-01,"Illinois",9549 +2000-07-01,"Iowa",1551 +2000-07-01,"Tennessee",1198 +2000-07-01,"Delaware",246 +2000-07-01,"Virginia",1573 +2000-07-01,"Nebraska",917 +2000-07-01,"Ohio",7329 +2000-07-01,"Kentucky",1071 +2000-07-01,"Nevada",1009 +2000-07-01,"Indiana",2945 +2000-07-01,"Washington",1997 +2000-07-01,"Maryland",1942 +2000-07-01,"California",24448 +2000-07-01,"Vermont",70 +2000-07-01,"Alabama",1247 +2000-07-01,"Kansas",1596 +2000-07-01,"Colorado",3005 +2000-07-01,"West Virginia",520 +2000-07-01,"Mississippi",764 +2000-07-01,"Utah",1492 +2000-07-01,"New Jersey",4998 +2000-07-01,"North Dakota",210 +2000-07-01,"Georgia",3775 +2000-07-01,"Hawaii",44 +2000-07-01,"South Carolina",495 +2000-07-01,"Connecticut",953 +2000-07-01,"Montana",482 +2000-07-01,"Maine",27 +2000-07-01,"Oklahoma",1588 +2000-07-01,"Massachusetts",2883 +2000-07-01,"U.S.",128363 +2000-07-01,"Arkansas",791 +2000-07-01,"Rhode Island",482 +2000-07-01,"Pennsylvania",5827 +2000-07-01,"New Mexico",970 2000-07-01,"Wyoming",303 +2000-07-01,"District of Columbia",379 +2000-07-01,"Minnesota",2866 +2000-07-01,"Missouri",2429 +2000-08-01,"Colorado",2553 +2000-08-01,"Louisiana",1623 +2000-08-01,"Vermont",62 +2000-08-01,"Indiana",2927 +2000-08-01,"New Jersey",5115 +2000-08-01,"Arkansas",916 +2000-08-01,"New Hampshire",143 +2000-08-01,"Pennsylvania",5650 +2000-08-01,"Ohio",6830 +2000-08-01,"Iowa",1411 +2000-08-01,"Idaho",349 +2000-08-01,"Connecticut",617 +2000-08-01,"Florida",701 +2000-08-01,"Maine",26 +2000-08-01,"Tennessee",1112 +2000-08-01,"Arizona",903 +2000-08-01,"Kentucky",1233 +2000-08-01,"Maryland",1951 2000-08-01,"Wyoming",291 +2000-08-01,"Michigan",7550 +2000-08-01,"Hawaii",39 +2000-08-01,"Nevada",932 +2000-08-01,"District of Columbia",356 +2000-08-01,"Kansas",1307 +2000-08-01,"Nebraska",790 +2000-08-01,"Alaska",618 +2000-08-01,"West Virginia",535 +2000-08-01,"Washington",1614 +2000-08-01,"Wisconsin",2908 +2000-08-01,"Utah",1444 +2000-08-01,"Texas",5687 +2000-08-01,"North Dakota",223 +2000-08-01,"Virginia",1487 +2000-08-01,"Illinois",10589 +2000-08-01,"South Carolina",466 +2000-08-01,"Montana",392 +2000-08-01,"California",22116 +2000-08-01,"New Mexico",984 +2000-08-01,"Delaware",188 +2000-08-01,"Oregon",801 +2000-08-01,"Mississippi",703 +2000-08-01,"Oklahoma",1434 +2000-08-01,"Georgia",3833 +2000-08-01,"Minnesota",2762 +2000-08-01,"Alabama",1175 +2000-08-01,"South Dakota",243 +2000-08-01,"Rhode Island",451 +2000-08-01,"North Carolina",1010 +2000-08-01,"New York",10290 +2000-08-01,"Massachusetts",2588 +2000-08-01,"U.S.",122408 +2000-08-01,"Missouri",2480 +2000-09-01,"Florida",700 +2000-09-01,"District of Columbia",376 +2000-09-01,"Nebraska",1066 +2000-09-01,"Illinois",12373 +2000-09-01,"Arizona",971 +2000-09-01,"North Carolina",1052 +2000-09-01,"New York",11087 +2000-09-01,"Virginia",1712 +2000-09-01,"Colorado",2706 +2000-09-01,"Ohio",7681 +2000-09-01,"Indiana",3989 +2000-09-01,"Alabama",1202 +2000-09-01,"Arkansas",1154 +2000-09-01,"Maine",32 +2000-09-01,"Utah",2415 +2000-09-01,"U.S.",140766 +2000-09-01,"Missouri",2508 +2000-09-01,"New Hampshire",182 +2000-09-01,"Louisiana",1714 +2000-09-01,"Oregon",977 +2000-09-01,"Washington",2023 +2000-09-01,"Montana",610 +2000-09-01,"Vermont",72 +2000-09-01,"Nevada",1085 +2000-09-01,"Massachusetts",2942 +2000-09-01,"New Jersey",5939 +2000-09-01,"Michigan",9292 +2000-09-01,"Alaska",927 +2000-09-01,"Pennsylvania",6985 +2000-09-01,"Mississippi",717 +2000-09-01,"Oklahoma",1496 +2000-09-01,"North Dakota",251 +2000-09-01,"Minnesota",3260 +2000-09-01,"Delaware",172 +2000-09-01,"Hawaii",41 +2000-09-01,"Iowa",1710 +2000-09-01,"Kentucky",1446 +2000-09-01,"South Carolina",533 +2000-09-01,"Connecticut",979 +2000-09-01,"Wisconsin",3595 +2000-09-01,"California",24496 +2000-09-01,"Texas",5805 +2000-09-01,"Tennessee",1224 +2000-09-01,"Georgia",4164 +2000-09-01,"South Dakota",277 +2000-09-01,"Rhode Island",506 +2000-09-01,"West Virginia",599 +2000-09-01,"Idaho",484 +2000-09-01,"Maryland",2058 +2000-09-01,"New Mexico",1217 2000-09-01,"Wyoming",386 +2000-09-01,"Kansas",1578 +2000-10-01,"Louisiana",2204 +2000-10-01,"Hawaii",41 +2000-10-01,"West Virginia",1372 +2000-10-01,"North Carolina",2450 +2000-10-01,"Florida",829 +2000-10-01,"New York",18636 +2000-10-01,"Indiana",6797 2000-10-01,"Wyoming",743 +2000-10-01,"Missouri",4023 +2000-10-01,"Alaska",1455 +2000-10-01,"Wisconsin",6852 +2000-10-01,"California",31757 +2000-10-01,"New Mexico",2505 +2000-10-01,"Utah",3824 +2000-10-01,"Georgia",6682 +2000-10-01,"Colorado",5520 +2000-10-01,"Ohio",15925 +2000-10-01,"Idaho",859 +2000-10-01,"Montana",1308 +2000-10-01,"New Jersey",10449 +2000-10-01,"Rhode Island",722 +2000-10-01,"Arizona",1070 +2000-10-01,"Kentucky",2793 +2000-10-01,"Washington",3234 +2000-10-01,"Connecticut",2262 +2000-10-01,"Maine",63 +2000-10-01,"Vermont",124 +2000-10-01,"Mississippi",1078 +2000-10-01,"Nevada",1399 +2000-10-01,"District of Columbia",553 +2000-10-01,"U.S.",235799 +2000-10-01,"Alabama",1761 +2000-10-01,"Kansas",2524 +2000-10-01,"Michigan",17617 +2000-10-01,"Tennessee",2384 +2000-10-01,"North Dakota",585 +2000-10-01,"Nebraska",1908 +2000-10-01,"South Dakota",601 +2000-10-01,"New Hampshire",302 +2000-10-01,"Iowa",3116 +2000-10-01,"Massachusetts",4856 +2000-10-01,"Illinois",21839 +2000-10-01,"Oregon",1572 +2000-10-01,"Maryland",3809 +2000-10-01,"Oklahoma",2349 +2000-10-01,"Texas",8324 +2000-10-01,"Virginia",3287 +2000-10-01,"Pennsylvania",12518 +2000-10-01,"South Carolina",1007 +2000-10-01,"Minnesota",6156 +2000-10-01,"Delaware",270 +2000-10-01,"Arkansas",1487 +2000-11-01,"Michigan",31816 +2000-11-01,"Hawaii",42 +2000-11-01,"Connecticut",3793 +2000-11-01,"Mississippi",1749 +2000-11-01,"Utah",8379 +2000-11-01,"Nebraska",3682 +2000-11-01,"Illinois",55919 +2000-11-01,"West Virginia",2177 +2000-11-01,"Idaho",2147 +2000-11-01,"Maryland",8114 +2000-11-01,"Wisconsin",15551 +2000-11-01,"North Carolina",5969 +2000-11-01,"Oklahoma",5617 +2000-11-01,"Nevada",3228 +2000-11-01,"Indiana",15595 2000-11-01,"Wyoming",1302 +2000-11-01,"Texas",15821 +2000-11-01,"North Dakota",1120 +2000-11-01,"Louisiana",4251 +2000-11-01,"Ohio",32808 +2000-11-01,"California",52106 +2000-11-01,"New York",33940 +2000-11-01,"Minnesota",14875 +2000-11-01,"Delaware",615 +2000-11-01,"South Dakota",1375 +2000-11-01,"Rhode Island",1262 +2000-11-01,"Kentucky",8161 +2000-11-01,"Pennsylvania",23668 +2000-11-01,"Iowa",8099 +2000-11-01,"Oregon",3552 +2000-11-01,"Tennessee",5209 +2000-11-01,"Washington",6796 +2000-11-01,"Florida",994 +2000-11-01,"Maine",96 +2000-11-01,"Vermont",210 +2000-11-01,"District of Columbia",1069 +2000-11-01,"New Jersey",20021 +2000-11-01,"Virginia",8190 +2000-11-01,"Arkansas",5332 +2000-11-01,"Alaska",1749 +2000-11-01,"New Hampshire",566 +2000-11-01,"South Carolina",2023 +2000-11-01,"Georgia",15912 +2000-11-01,"U.S.",482600 +2000-11-01,"Colorado",10855 +2000-11-01,"Arizona",2787 +2000-11-01,"Montana",2411 +2000-11-01,"New Mexico",4663 +2000-11-01,"Massachusetts",9077 +2000-11-01,"Alabama",3005 +2000-11-01,"Kansas",5602 +2000-11-01,"Missouri",9302 +2000-12-01,"South Dakota",2621 +2000-12-01,"New Hampshire",1033 +2000-12-01,"Illinois",99546 +2000-12-01,"Iowa",15577 +2000-12-01,"Kentucky",15301 +2000-12-01,"North Carolina",12523 +2000-12-01,"Nevada",4950 +2000-12-01,"Indiana",32899 +2000-12-01,"Missouri",23357 +2000-12-01,"Idaho",3272 +2000-12-01,"Vermont",376 +2000-12-01,"U.S.",914339 +2000-12-01,"Delaware",1404 +2000-12-01,"Arkansas",10480 +2000-12-01,"Colorado",20693 +2000-12-01,"Pennsylvania",46950 +2000-12-01,"Hawaii",44 +2000-12-01,"Washington",10887 +2000-12-01,"Wisconsin",27807 +2000-12-01,"Montana",3483 +2000-12-01,"Maine",176 +2000-12-01,"New Mexico",6450 +2000-12-01,"Utah",9652 +2000-12-01,"Texas",38615 +2000-12-01,"North Dakota",1904 +2000-12-01,"Connecticut",6755 +2000-12-01,"Maryland",15652 +2000-12-01,"Nebraska",7044 +2000-12-01,"Michigan",64797 +2000-12-01,"New York",61072 +2000-12-01,"Alaska",2014 +2000-12-01,"Ohio",68498 +2000-12-01,"Arizona",5704 +2000-12-01,"Georgia",34149 +2000-12-01,"Virginia",15690 +2000-12-01,"Louisiana",9497 +2000-12-01,"West Virginia",5331 +2000-12-01,"Oregon",6028 +2000-12-01,"South Carolina",6012 +2000-12-01,"Oklahoma",14081 +2000-12-01,"Massachusetts",16794 +2000-12-01,"New Jersey",37333 +2000-12-01,"Tennessee",15140 +2000-12-01,"Kansas",14346 +2000-12-01,"Rhode Island",2487 +2000-12-01,"California",68470 +2000-12-01,"Florida",1940 +2000-12-01,"Mississippi",5383 2000-12-01,"Wyoming",2076 +2000-12-01,"District of Columbia",2557 +2000-12-01,"Minnesota",26803 +2000-12-01,"Alabama",8686 +2001-01-01,"Michigan",66886 +2001-01-01,"Hawaii",48 +2001-01-01,"North Carolina",14705 +2001-01-01,"California",85495 +2001-01-01,"New Jersey",43411 +2001-01-01,"Virginia",16837 +2001-01-01,"Arkansas",7917 +2001-01-01,"Pennsylvania",50948 +2001-01-01,"Arizona",6767 +2001-01-01,"Vermont",544 2001-01-01,"Wyoming",1851 +2001-01-01,"Utah",10012 +2001-01-01,"North Dakota",1763 +2001-01-01,"Colorado",21953 +2001-01-01,"Iowa",14813 +2001-01-01,"West Virginia",6696 +2001-01-01,"Alabama",13490 +2001-01-01,"Missouri",28969 +2001-01-01,"South Dakota",2172 +2001-01-01,"Washington",11086 +2001-01-01,"Maryland",15679 +2001-01-01,"Indiana",33201 +2001-01-01,"District of Columbia",3057 +2001-01-01,"Georgia",28095 +2001-01-01,"Rhode Island",3471 +2001-01-01,"Louisiana",12858 +2001-01-01,"Illinois",85792 +2001-01-01,"Ohio",65224 +2001-01-01,"South Carolina",8131 +2001-01-01,"Montana",3284 +2001-01-01,"Nevada",5541 +2001-01-01,"Massachusetts",20821 +2001-01-01,"Nebraska",10130 +2001-01-01,"New Hampshire",1255 +2001-01-01,"Wisconsin",22957 +2001-01-01,"New Mexico",6597 +2001-01-01,"Delaware",1902 +2001-01-01,"Alaska",1885 +2001-01-01,"Kentucky",12636 +2001-01-01,"Idaho",3499 +2001-01-01,"Florida",3289 +2001-01-01,"Oklahoma",16896 +2001-01-01,"Texas",50098 +2001-01-01,"Tennessee",19716 +2001-01-01,"Minnesota",23155 +2001-01-01,"Kansas",17789 +2001-01-01,"Oregon",6324 +2001-01-01,"Connecticut",8497 +2001-01-01,"Maine",175 +2001-01-01,"Mississippi",7897 +2001-01-01,"New York",70467 +2001-01-01,"U.S.",976677 +2001-02-01,"Idaho",3464 +2001-02-01,"Mississippi",5056 +2001-02-01,"Texas",36621 +2001-02-01,"U.S.",780482 +2001-02-01,"Virginia",12367 +2001-02-01,"Alaska",1828 +2001-02-01,"Washington",10982 +2001-02-01,"North Carolina",9561 +2001-02-01,"Maine",154 +2001-02-01,"Oklahoma",11646 +2001-02-01,"New York",60260 +2001-02-01,"Nevada",5420 +2001-02-01,"Indiana",24756 2001-02-01,"Wyoming",1832 +2001-02-01,"District of Columbia",2300 +2001-02-01,"Missouri",21345 +2001-02-01,"Michigan",54280 +2001-02-01,"New Hampshire",1134 +2001-02-01,"Ohio",50911 +2001-02-01,"Vermont",446 +2001-02-01,"New Jersey",34488 +2001-02-01,"Minnesota",22623 +2001-02-01,"Nebraska",7786 +2001-02-01,"Colorado",20453 +2001-02-01,"Pennsylvania",39596 +2001-02-01,"Hawaii",43 +2001-02-01,"Iowa",13133 +2001-02-01,"Maryland",11419 +2001-02-01,"Montana",3338 +2001-02-01,"New Mexico",6721 +2001-02-01,"Massachusetts",18263 +2001-02-01,"Louisiana",8217 +2001-02-01,"Illinois",72298 +2001-02-01,"Arizona",7101 +2001-02-01,"West Virginia",5275 +2001-02-01,"South Carolina",4815 +2001-02-01,"Tennessee",11916 +2001-02-01,"North Dakota",1914 +2001-02-01,"Arkansas",6574 +2001-02-01,"Wisconsin",22069 +2001-02-01,"Florida",2647 +2001-02-01,"Alabama",8987 +2001-02-01,"South Dakota",2179 +2001-02-01,"Connecticut",6257 +2001-02-01,"California",71801 +2001-02-01,"Utah",8160 +2001-02-01,"Delaware",1678 +2001-02-01,"Rhode Island",2966 +2001-02-01,"Kentucky",8950 +2001-02-01,"Oregon",5939 +2001-02-01,"Georgia",16292 +2001-02-01,"Kansas",12219 +2001-03-01,"New Hampshire",1059 +2001-03-01,"Pennsylvania",37782 +2001-03-01,"South Carolina",3346 +2001-03-01,"Connecticut",6176 +2001-03-01,"Delaware",1531 +2001-03-01,"Kansas",11653 +2001-03-01,"Colorado",17880 +2001-03-01,"Louisiana",4805 +2001-03-01,"Maryland",10277 +2001-03-01,"North Carolina",7702 +2001-03-01,"Maine",143 +2001-03-01,"District of Columbia",1970 +2001-03-01,"Texas",24066 +2001-03-01,"Michigan",54473 +2001-03-01,"Arizona",5461 +2001-03-01,"West Virginia",4997 +2001-03-01,"Wisconsin",20892 +2001-03-01,"South Dakota",1776 +2001-03-01,"New Mexico",4911 +2001-03-01,"Oklahoma",9657 +2001-03-01,"Nevada",3978 +2001-03-01,"North Dakota",1238 +2001-03-01,"U.S.",681884 +2001-03-01,"Virginia",10548 +2001-03-01,"Ohio",47594 +2001-03-01,"Iowa",11122 +2001-03-01,"Montana",2590 +2001-03-01,"Vermont",420 +2001-03-01,"Mississippi",3262 +2001-03-01,"Missouri",18016 +2001-03-01,"Nebraska",6500 +2001-03-01,"Illinois",61158 +2001-03-01,"Oregon",5046 +2001-03-01,"Washington",8884 +2001-03-01,"Utah",5528 +2001-03-01,"New Jersey",33780 +2001-03-01,"Minnesota",17575 +2001-03-01,"Rhode Island",2881 +2001-03-01,"Kentucky",9204 +2001-03-01,"California",59144 +2001-03-01,"New York",58547 2001-03-01,"Wyoming",1092 +2001-03-01,"Massachusetts",17713 +2001-03-01,"Georgia",16658 +2001-03-01,"Alabama",5867 +2001-03-01,"Arkansas",5743 +2001-03-01,"Alaska",1818 +2001-03-01,"Hawaii",49 +2001-03-01,"Idaho",2385 +2001-03-01,"Florida",1507 +2001-03-01,"Indiana",21929 +2001-03-01,"Tennessee",9553 +2001-04-01,"Pennsylvania",23207 +2001-04-01,"West Virginia",3394 +2001-04-01,"Washington",7279 +2001-04-01,"Idaho",1799 +2001-04-01,"Montana",1910 +2001-04-01,"Kansas",5756 +2001-04-01,"Louisiana",3162 +2001-04-01,"Connecticut",3678 +2001-04-01,"New Jersey",21123 +2001-04-01,"South Dakota",1042 +2001-04-01,"Florida",1307 +2001-04-01,"Oklahoma",5415 +2001-04-01,"Illinois",26391 +2001-04-01,"North Dakota",809 +2001-04-01,"Alaska",1183 +2001-04-01,"New Hampshire",734 +2001-04-01,"Kentucky",2471 +2001-04-01,"Oregon",3915 +2001-04-01,"Nevada",2473 +2001-04-01,"Georgia",6945 +2001-04-01,"U.S.",400728 +2001-04-01,"Alabama",4787 +2001-04-01,"Missouri",9618 +2001-04-01,"Michigan",32694 +2001-04-01,"Arizona",2836 +2001-04-01,"South Carolina",2640 +2001-04-01,"Mississippi",1993 +2001-04-01,"New York",37822 +2001-04-01,"Indiana",10943 +2001-04-01,"District of Columbia",1256 +2001-04-01,"Massachusetts",11658 +2001-04-01,"Tennessee",5382 +2001-04-01,"Minnesota",9542 +2001-04-01,"Nebraska",4713 +2001-04-01,"Rhode Island",2133 +2001-04-01,"Hawaii",47 +2001-04-01,"Ohio",27507 +2001-04-01,"Iowa",5573 +2001-04-01,"North Carolina",5039 +2001-04-01,"California",41839 +2001-04-01,"Maine",91 +2001-04-01,"Vermont",316 2001-04-01,"Wyoming",1149 +2001-04-01,"Texas",14627 +2001-04-01,"Arkansas",1971 +2001-04-01,"Colorado",12549 +2001-04-01,"Maryland",5912 +2001-04-01,"Wisconsin",8178 +2001-04-01,"New Mexico",3231 +2001-04-01,"Utah",4096 +2001-04-01,"Delaware",1026 +2001-04-01,"Virginia",5566 +2001-05-01,"Michigan",16156 +2001-05-01,"Washington",4900 +2001-05-01,"Montana",1050 +2001-05-01,"Florida",951 +2001-05-01,"Arkansas",942 +2001-05-01,"Hawaii",46 +2001-05-01,"Ohio",12105 +2001-05-01,"Oregon",2653 +2001-05-01,"Idaho",1066 2001-05-01,"Wyoming",605 +2001-05-01,"District of Columbia",539 +2001-05-01,"Georgia",4594 +2001-05-01,"Kansas",2438 +2001-05-01,"Colorado",8218 +2001-05-01,"Illinois",14412 +2001-05-01,"North Carolina",2040 +2001-05-01,"Maine",38 +2001-05-01,"Vermont",146 +2001-05-01,"New Mexico",1849 +2001-05-01,"New York",18799 +2001-05-01,"Nevada",1641 +2001-05-01,"Texas",7979 +2001-05-01,"Alabama",1968 +2001-05-01,"South Carolina",989 +2001-05-01,"Maryland",2674 +2001-05-01,"Oklahoma",2300 +2001-05-01,"Utah",1877 +2001-05-01,"Rhode Island",1030 +2001-05-01,"Louisiana",1996 +2001-05-01,"California",30699 +2001-05-01,"Indiana",4977 +2001-05-01,"Kentucky",1312 +2001-05-01,"West Virginia",963 +2001-05-01,"Connecticut",1317 +2001-05-01,"Mississippi",1156 +2001-05-01,"New Jersey",9488 +2001-05-01,"Tennessee",1981 +2001-05-01,"North Dakota",363 +2001-05-01,"Minnesota",4821 +2001-05-01,"Virginia",2317 +2001-05-01,"Nebraska",2592 +2001-05-01,"Alaska",981 +2001-05-01,"New Hampshire",406 +2001-05-01,"Pennsylvania",10118 +2001-05-01,"Arizona",1904 +2001-05-01,"Wisconsin",4620 +2001-05-01,"U.S.",209327 +2001-05-01,"Delaware",451 +2001-05-01,"South Dakota",549 +2001-05-01,"Iowa",2645 +2001-05-01,"Massachusetts",5817 +2001-05-01,"Missouri",3850 +2001-06-01,"Rhode Island",644 +2001-06-01,"West Virginia",442 +2001-06-01,"Connecticut",1216 +2001-06-01,"Vermont",96 +2001-06-01,"Mississippi",783 +2001-06-01,"District of Columbia",400 +2001-06-01,"Illinois",11415 +2001-06-01,"Iowa",1934 +2001-06-01,"Kentucky",961 +2001-06-01,"Oregon",1508 +2001-06-01,"Idaho",585 +2001-06-01,"New Mexico",1058 2001-06-01,"Wyoming",435 +2001-06-01,"Missouri",3051 +2001-06-01,"Michigan",10447 +2001-06-01,"Pennsylvania",6350 +2001-06-01,"Indiana",3788 +2001-06-01,"New Jersey",6217 +2001-06-01,"Delaware",269 +2001-06-01,"South Dakota",370 +2001-06-01,"Colorado",4431 +2001-06-01,"New Hampshire",213 +2001-06-01,"Louisiana",1634 +2001-06-01,"Maine",22 +2001-06-01,"Oklahoma",1680 +2001-06-01,"New York",13426 +2001-06-01,"U.S.",146837 +2001-06-01,"Minnesota",3477 +2001-06-01,"Nebraska",1209 +2001-06-01,"Arkansas",811 +2001-06-01,"Alaska",612 +2001-06-01,"South Carolina",575 +2001-06-01,"Texas",6521 +2001-06-01,"Alabama",1348 +2001-06-01,"Ohio",8652 +2001-06-01,"Arizona",1272 +2001-06-01,"California",23066 +2001-06-01,"Nevada",1175 +2001-06-01,"North Dakota",243 +2001-06-01,"Hawaii",47 +2001-06-01,"Maryland",1948 +2001-06-01,"North Carolina",1101 +2001-06-01,"Florida",778 +2001-06-01,"Utah",1771 +2001-06-01,"Georgia",3547 +2001-06-01,"Kansas",1742 +2001-06-01,"Virginia",1760 +2001-06-01,"Washington",3025 +2001-06-01,"Wisconsin",3245 +2001-06-01,"Montana",697 +2001-06-01,"Massachusetts",3545 +2001-06-01,"Tennessee",1295 +2001-07-01,"South Dakota",248 +2001-07-01,"Arizona",1060 +2001-07-01,"Washington",2008 +2001-07-01,"District of Columbia",318 +2001-07-01,"Hawaii",44 +2001-07-01,"North Carolina",1086 +2001-07-01,"Oklahoma",1462 +2001-07-01,"Massachusetts",2713 +2001-07-01,"U.S.",123777 +2001-07-01,"New Hampshire",153 +2001-07-01,"Louisiana",1862 +2001-07-01,"Pennsylvania",5025 +2001-07-01,"West Virginia",386 +2001-07-01,"Idaho",413 +2001-07-01,"Vermont",65 +2001-07-01,"Tennessee",1139 +2001-07-01,"Minnesota",2723 +2001-07-01,"Kansas",1536 +2001-07-01,"Michigan",6923 +2001-07-01,"Rhode Island",476 +2001-07-01,"Illinois",9923 +2001-07-01,"Montana",417 +2001-07-01,"Georgia",3517 +2001-07-01,"Arkansas",967 +2001-07-01,"Alaska",520 +2001-07-01,"Ohio",7301 +2001-07-01,"California",24195 +2001-07-01,"Florida",726 +2001-07-01,"Nevada",1042 +2001-07-01,"Utah",1414 +2001-07-01,"Iowa",1549 +2001-07-01,"South Carolina",499 +2001-07-01,"Mississippi",744 +2001-07-01,"New York",9813 2001-07-01,"Wyoming",238 +2001-07-01,"New Jersey",5039 +2001-07-01,"Texas",5422 +2001-07-01,"Delaware",212 +2001-07-01,"Nebraska",982 +2001-07-01,"Kentucky",1041 +2001-07-01,"Connecticut",809 +2001-07-01,"Maryland",1594 +2001-07-01,"Wisconsin",2803 +2001-07-01,"Maine",25 +2001-07-01,"Indiana",3038 +2001-07-01,"North Dakota",213 +2001-07-01,"Alabama",1194 +2001-07-01,"Virginia",1497 +2001-07-01,"Missouri",2404 +2001-07-01,"Colorado",3058 +2001-07-01,"Oregon",1054 +2001-07-01,"New Mexico",891 +2001-08-01,"Michigan",6180 +2001-08-01,"Rhode Island",450 +2001-08-01,"Hawaii",41 +2001-08-01,"New York",9451 2001-08-01,"Wyoming",247 +2001-08-01,"Arkansas",806 +2001-08-01,"Colorado",2513 +2001-08-01,"Louisiana",1527 +2001-08-01,"Arizona",986 +2001-08-01,"Idaho",341 +2001-08-01,"Connecticut",1012 +2001-08-01,"Florida",700 +2001-08-01,"Nevada",996 +2001-08-01,"District of Columbia",282 +2001-08-01,"Tennessee",1125 +2001-08-01,"Georgia",3546 +2001-08-01,"Kansas",1539 +2001-08-01,"Nebraska",931 +2001-08-01,"Iowa",1318 +2001-08-01,"Oregon",882 +2001-08-01,"South Carolina",473 +2001-08-01,"California",22473 +2001-08-01,"New Jersey",5003 +2001-08-01,"North Dakota",279 +2001-08-01,"Minnesota",2643 +2001-08-01,"Alabama",1185 +2001-08-01,"Alaska",538 +2001-08-01,"Illinois",8945 +2001-08-01,"Kentucky",1087 +2001-08-01,"Montana",405 +2001-08-01,"Indiana",2775 +2001-08-01,"Utah",1442 +2001-08-01,"Texas",7310 +2001-08-01,"U.S.",116934 +2001-08-01,"West Virginia",448 +2001-08-01,"Wisconsin",2302 +2001-08-01,"Maine",25 +2001-08-01,"Vermont",54 +2001-08-01,"New Mexico",847 +2001-08-01,"Oklahoma",1279 +2001-08-01,"Massachusetts",2435 +2001-08-01,"Virginia",1538 +2001-08-01,"Ohio",6041 +2001-08-01,"Missouri",2160 +2001-08-01,"New Hampshire",148 +2001-08-01,"South Dakota",277 +2001-08-01,"Pennsylvania",4923 +2001-08-01,"Washington",1656 +2001-08-01,"Maryland",1602 +2001-08-01,"North Carolina",948 +2001-08-01,"Mississippi",656 +2001-08-01,"Delaware",161 +2001-09-01,"New Hampshire",184 +2001-09-01,"Montana",503 +2001-09-01,"Vermont",67 +2001-09-01,"Utah",1589 +2001-09-01,"Virginia",1454 +2001-09-01,"Washington",1780 +2001-09-01,"South Carolina",516 +2001-09-01,"Indiana",3555 +2001-09-01,"Tennessee",1228 +2001-09-01,"North Dakota",263 +2001-09-01,"U.S.",127482 +2001-09-01,"Alaska",819 +2001-09-01,"Pennsylvania",5351 +2001-09-01,"Hawaii",43 +2001-09-01,"Arizona",1028 +2001-09-01,"Oregon",893 +2001-09-01,"Connecticut",889 +2001-09-01,"New Mexico",903 +2001-09-01,"Arkansas",772 +2001-09-01,"Colorado",2801 +2001-09-01,"Illinois",12180 +2001-09-01,"Ohio",6755 +2001-09-01,"West Virginia",752 +2001-09-01,"Florida",699 +2001-09-01,"Minnesota",3217 +2001-09-01,"Iowa",1587 +2001-09-01,"New York",10188 2001-09-01,"Wyoming",271 +2001-09-01,"District of Columbia",301 +2001-09-01,"Missouri",2592 +2001-09-01,"Idaho",424 +2001-09-01,"North Carolina",1086 +2001-09-01,"California",21331 +2001-09-01,"Mississippi",722 +2001-09-01,"Oklahoma",1271 +2001-09-01,"Nevada",1034 +2001-09-01,"Massachusetts",2852 +2001-09-01,"Michigan",8490 +2001-09-01,"Louisiana",1588 +2001-09-01,"New Jersey",5671 +2001-09-01,"Texas",5229 +2001-09-01,"Georgia",3728 +2001-09-01,"Delaware",183 +2001-09-01,"Kansas",1207 +2001-09-01,"Nebraska",901 +2001-09-01,"South Dakota",279 +2001-09-01,"Rhode Island",506 +2001-09-01,"Kentucky",1385 +2001-09-01,"Maryland",1673 +2001-09-01,"Wisconsin",3549 +2001-09-01,"Maine",32 +2001-09-01,"Alabama",1164 +2001-10-01,"Michigan",18699 +2001-10-01,"Alaska",1662 +2001-10-01,"New Hampshire",300 +2001-10-01,"Pennsylvania",11085 +2001-10-01,"Kentucky",3187 +2001-10-01,"West Virginia",1527 +2001-10-01,"Oregon",1442 +2001-10-01,"District of Columbia",428 +2001-10-01,"Arkansas",1534 +2001-10-01,"Colorado",4054 +2001-10-01,"Ohio",15669 +2001-10-01,"Connecticut",2135 +2001-10-01,"Montana",1160 +2001-10-01,"Florida",762 +2001-10-01,"Oklahoma",1891 +2001-10-01,"New Jersey",9944 +2001-10-01,"Texas",7927 +2001-10-01,"Tennessee",2198 +2001-10-01,"Kansas",2057 +2001-10-01,"Rhode Island",617 +2001-10-01,"Louisiana",2228 +2001-10-01,"Maine",54 +2001-10-01,"New York",16847 +2001-10-01,"Nebraska",1777 +2001-10-01,"South Dakota",670 +2001-10-01,"Iowa",3531 +2001-10-01,"Maryland",4517 +2001-10-01,"Georgia",7915 +2001-10-01,"Delaware",334 +2001-10-01,"Virginia",3088 +2001-10-01,"Hawaii",40 +2001-10-01,"Wisconsin",7696 +2001-10-01,"New Mexico",1112 +2001-10-01,"Utah",3468 +2001-10-01,"Minnesota",7587 +2001-10-01,"Alabama",1706 +2001-10-01,"Illinois",26244 +2001-10-01,"Arizona",1156 +2001-10-01,"Idaho",713 +2001-10-01,"South Carolina",892 +2001-10-01,"California",29189 2001-10-01,"Wyoming",716 +2001-10-01,"North Carolina",2514 +2001-10-01,"Nevada",1245 +2001-10-01,"Washington",5692 +2001-10-01,"Vermont",91 +2001-10-01,"Mississippi",921 +2001-10-01,"Indiana",8020 +2001-10-01,"Massachusetts",4510 +2001-10-01,"North Dakota",771 +2001-10-01,"U.S.",237466 +2001-10-01,"Missouri",3942 +2001-11-01,"Alaska",2187 +2001-11-01,"Oklahoma",3407 +2001-11-01,"Indiana",11475 +2001-11-01,"Texas",12891 +2001-11-01,"Hawaii",43 +2001-11-01,"Iowa",4795 +2001-11-01,"Kentucky",5135 +2001-11-01,"Idaho",1601 +2001-11-01,"Montana",1842 +2001-11-01,"New York",27651 2001-11-01,"Wyoming",1040 +2001-11-01,"Tennessee",4509 +2001-11-01,"Georgia",8398 +2001-11-01,"Minnesota",9708 +2001-11-01,"Arkansas",3407 +2001-11-01,"Colorado",8518 +2001-11-01,"Pennsylvania",17515 +2001-11-01,"Maryland",5135 +2001-11-01,"New Mexico",1894 +2001-11-01,"Nebraska",4791 +2001-11-01,"Louisiana",3325 +2001-11-01,"Ohio",23530 +2001-11-01,"California",39037 +2001-11-01,"Florida",983 +2001-11-01,"Vermont",203 +2001-11-01,"Missouri",6977 +2001-11-01,"Rhode Island",1153 +2001-11-01,"Illinois",34223 +2001-11-01,"Arizona",1660 +2001-11-01,"West Virginia",3089 +2001-11-01,"South Carolina",2071 +2001-11-01,"Connecticut",3611 +2001-11-01,"Mississippi",1904 +2001-11-01,"Utah",5575 +2001-11-01,"New Jersey",16307 +2001-11-01,"Alabama",3075 +2001-11-01,"Delaware",615 +2001-11-01,"Michigan",27514 +2001-11-01,"Washington",11145 +2001-11-01,"Wisconsin",9205 +2001-11-01,"Nevada",2188 +2001-11-01,"Kansas",3836 +2001-11-01,"South Dakota",974 +2001-11-01,"District of Columbia",865 +2001-11-01,"North Dakota",999 +2001-11-01,"U.S.",360721 +2001-11-01,"Virginia",5192 +2001-11-01,"New Hampshire",490 +2001-11-01,"Oregon",3342 +2001-11-01,"North Carolina",4592 +2001-11-01,"Maine",61 +2001-11-01,"Massachusetts",7038 +2001-12-01,"Wisconsin",17762 +2001-12-01,"Montana",2952 +2001-12-01,"Vermont",270 +2001-12-01,"Massachusetts",9272 +2001-12-01,"Kansas",8412 +2001-12-01,"Virginia",8084 +2001-12-01,"Colorado",17087 +2001-12-01,"Iowa",9075 +2001-12-01,"Oregon",5274 +2001-12-01,"Nevada",5877 +2001-12-01,"North Dakota",1714 +2001-12-01,"Georgia",16734 +2001-12-01,"Missouri",13263 +2001-12-01,"Alaska",2785 +2001-12-01,"New Hampshire",735 +2001-12-01,"Pennsylvania",26949 +2001-12-01,"Ohio",37246 +2001-12-01,"South Carolina",2537 +2001-12-01,"California",64425 +2001-12-01,"Florida",1199 +2001-12-01,"Indiana",18881 +2001-12-01,"Minnesota",17820 +2001-12-01,"South Dakota",1801 +2001-12-01,"Rhode Island",1609 +2001-12-01,"Louisiana",5802 +2001-12-01,"Kentucky",9578 +2001-12-01,"Washington",15980 +2001-12-01,"Mississippi",2828 +2001-12-01,"Utah",10075 +2001-12-01,"District of Columbia",1231 +2001-12-01,"Illinois",64165 +2001-12-01,"Hawaii",47 +2001-12-01,"Arizona",5016 +2001-12-01,"West Virginia",3970 +2001-12-01,"Connecticut",5425 +2001-12-01,"North Carolina",6443 2001-12-01,"Wyoming",1499 +2001-12-01,"Texas",29757 +2001-12-01,"U.S.",609025 +2001-12-01,"Nebraska",4352 +2001-12-01,"Arkansas",5759 +2001-12-01,"Michigan",40939 +2001-12-01,"New Mexico",4737 +2001-12-01,"Alabama",4470 +2001-12-01,"New Jersey",24524 +2001-12-01,"Delaware",815 +2001-12-01,"Idaho",2827 +2001-12-01,"Maryland",8260 +2001-12-01,"Maine",132 +2001-12-01,"Oklahoma",7714 +2001-12-01,"New York",42904 +2001-12-01,"Tennessee",8012 +2002-01-01,"Louisiana",8946 +2002-01-01,"Pennsylvania",39692 +2002-01-01,"Connecticut",6166 +2002-01-01,"District of Columbia",2357 +2002-01-01,"Georgia",22812 +2002-01-01,"Delaware",1766 +2002-01-01,"Michigan",59444 +2002-01-01,"Colorado",21103 +2002-01-01,"Illinois",70918 +2002-01-01,"Maine",150 +2002-01-01,"Oklahoma",12991 +2002-01-01,"New York",56754 +2002-01-01,"North Dakota",1837 +2002-01-01,"Minnesota",20708 +2002-01-01,"Arkansas",7213 +2002-01-01,"Hawaii",49 +2002-01-01,"Iowa",11996 +2002-01-01,"West Virginia",4915 +2002-01-01,"Maryland",12903 +2002-01-01,"Florida",2500 +2002-01-01,"Indiana",26954 +2002-01-01,"Texas",39507 +2002-01-01,"Oregon",6445 +2002-01-01,"California",79491 +2002-01-01,"Missouri",21030 +2002-01-01,"Nebraska",8840 +2002-01-01,"South Dakota",2030 +2002-01-01,"Montana",3329 +2002-01-01,"North Carolina",11858 2002-01-01,"Wyoming",1335 +2002-01-01,"Utah",10613 +2002-01-01,"Massachusetts",17287 +2002-01-01,"New Hampshire",1032 +2002-01-01,"Rhode Island",2847 +2002-01-01,"Ohio",53506 +2002-01-01,"Arizona",7537 +2002-01-01,"New Mexico",6188 +2002-01-01,"Washington",10931 +2002-01-01,"Wisconsin",21077 +2002-01-01,"Nevada",5871 +2002-01-01,"U.S.",815227 +2002-01-01,"Virginia",13376 +2002-01-01,"Alaska",2057 +2002-01-01,"Kentucky",10128 +2002-01-01,"Idaho",3455 +2002-01-01,"South Carolina",5900 +2002-01-01,"Vermont",419 +2002-01-01,"Mississippi",5411 +2002-01-01,"New Jersey",34373 +2002-01-01,"Tennessee",14576 +2002-01-01,"Alabama",9350 +2002-01-01,"Kansas",13256 +2002-02-01,"Louisiana",8388 +2002-02-01,"Pennsylvania",34740 2002-02-01,"Wyoming",1406 +2002-02-01,"Utah",9355 +2002-02-01,"Hawaii",48 +2002-02-01,"Oklahoma",11198 +2002-02-01,"Georgia",18516 +2002-02-01,"Illinois",63278 +2002-02-01,"Washington",11228 +2002-02-01,"South Carolina",4612 +2002-02-01,"Wisconsin",18121 +2002-02-01,"Indiana",21888 +2002-02-01,"New Jersey",30291 +2002-02-01,"Colorado",20177 +2002-02-01,"Maryland",11915 +2002-02-01,"Montana",2812 +2002-02-01,"North Carolina",9526 +2002-02-01,"Nevada",5596 +2002-02-01,"Massachusetts",16335 +2002-02-01,"North Dakota",1455 +2002-02-01,"Minnesota",16921 +2002-02-01,"Kansas",11202 +2002-02-01,"Alaska",1933 +2002-02-01,"Arizona",6684 +2002-02-01,"West Virginia",4814 +2002-02-01,"California",64122 +2002-02-01,"Maine",147 +2002-02-01,"Vermont",441 +2002-02-01,"South Dakota",1730 +2002-02-01,"Ohio",47035 +2002-02-01,"Oregon",6096 +2002-02-01,"Florida",1881 +2002-02-01,"Texas",37745 +2002-02-01,"U.S.",712863 +2002-02-01,"Alabama",7981 +2002-02-01,"Virginia",10960 +2002-02-01,"Missouri",18219 +2002-02-01,"Michigan",50184 +2002-02-01,"New Hampshire",1053 +2002-02-01,"Rhode Island",2573 +2002-02-01,"Iowa",10308 +2002-02-01,"Connecticut",6316 +2002-02-01,"Mississippi",4732 +2002-02-01,"Nebraska",6363 +2002-02-01,"Kentucky",9343 +2002-02-01,"Idaho",3448 +2002-02-01,"New Mexico",6169 +2002-02-01,"New York",51753 +2002-02-01,"District of Columbia",2015 +2002-02-01,"Tennessee",11396 +2002-02-01,"Delaware",1455 +2002-02-01,"Arkansas",6958 +2002-03-01,"Colorado",17430 +2002-03-01,"Alaska",2115 +2002-03-01,"New Hampshire",934 +2002-03-01,"Hawaii",48 +2002-03-01,"Kentucky",8162 +2002-03-01,"South Carolina",4243 +2002-03-01,"Connecticut",4958 +2002-03-01,"North Carolina",7835 +2002-03-01,"California",57999 +2002-03-01,"Maine",143 +2002-03-01,"Nevada",3726 +2002-03-01,"New Jersey",27277 +2002-03-01,"Rhode Island",2282 +2002-03-01,"Iowa",10475 +2002-03-01,"Idaho",2802 +2002-03-01,"Michigan",50343 +2002-03-01,"Wisconsin",20577 +2002-03-01,"Massachusetts",14632 +2002-03-01,"Delaware",1352 +2002-03-01,"Missouri",16874 +2002-03-01,"Oregon",5257 +2002-03-01,"Montana",3222 +2002-03-01,"Indiana",21923 +2002-03-01,"Virginia",9246 +2002-03-01,"Mississippi",4097 +2002-03-01,"Texas",29187 +2002-03-01,"Minnesota",19626 +2002-03-01,"South Dakota",1947 +2002-03-01,"Louisiana",7003 +2002-03-01,"Ohio",44795 +2002-03-01,"West Virginia",4528 +2002-03-01,"Florida",1942 +2002-03-01,"Vermont",346 +2002-03-01,"New York",49309 +2002-03-01,"Tennessee",10380 +2002-03-01,"North Dakota",1761 +2002-03-01,"Nebraska",6356 +2002-03-01,"Arkansas",6172 +2002-03-01,"Illinois",64626 +2002-03-01,"Pennsylvania",31742 +2002-03-01,"Arizona",4473 +2002-03-01,"New Mexico",4998 +2002-03-01,"Utah",7806 +2002-03-01,"Georgia",13849 +2002-03-01,"Washington",10270 +2002-03-01,"Maryland",9725 +2002-03-01,"Oklahoma",10524 2002-03-01,"Wyoming",1443 +2002-03-01,"District of Columbia",1671 +2002-03-01,"U.S.",660430 +2002-03-01,"Alabama",7349 +2002-03-01,"Kansas",10649 +2002-04-01,"Iowa",6527 +2002-04-01,"Maryland",4751 +2002-04-01,"Georgia",5836 +2002-04-01,"U.S.",415196 +2002-04-01,"Alaska",1406 +2002-04-01,"West Virginia",2641 +2002-04-01,"Wisconsin",11395 +2002-04-01,"California",43106 +2002-04-01,"Arizona",2630 +2002-04-01,"Washington",7880 +2002-04-01,"Nebraska",4307 +2002-04-01,"Arkansas",3706 +2002-04-01,"Hawaii",49 +2002-04-01,"Oregon",3851 +2002-04-01,"Vermont",312 +2002-04-01,"Oklahoma",6565 +2002-04-01,"Massachusetts",9942 +2002-04-01,"South Dakota",1235 +2002-04-01,"Michigan",36212 +2002-04-01,"Rhode Island",1807 +2002-04-01,"Illinois",42088 +2002-04-01,"Pennsylvania",22210 +2002-04-01,"Idaho",1798 +2002-04-01,"South Carolina",1895 +2002-04-01,"Connecticut",3934 +2002-04-01,"Montana",2093 +2002-04-01,"Mississippi",2176 +2002-04-01,"North Dakota",1028 +2002-04-01,"Alabama",3484 +2002-04-01,"Colorado",8254 +2002-04-01,"Louisiana",4033 +2002-04-01,"Kentucky",3666 +2002-04-01,"District of Columbia",809 +2002-04-01,"Tennessee",5414 +2002-04-01,"Kansas",6308 +2002-04-01,"Virginia",4284 +2002-04-01,"New Hampshire",634 +2002-04-01,"Ohio",29251 +2002-04-01,"North Carolina",4091 +2002-04-01,"Florida",1244 +2002-04-01,"Maine",94 +2002-04-01,"Indiana",14179 2002-04-01,"Wyoming",1049 +2002-04-01,"Utah",3271 +2002-04-01,"Minnesota",10958 +2002-04-01,"Missouri",10552 +2002-04-01,"New Mexico",2675 +2002-04-01,"New York",34246 +2002-04-01,"Nevada",2405 +2002-04-01,"New Jersey",17532 +2002-04-01,"Texas",14429 +2002-04-01,"Delaware",955 +2002-05-01,"Alaska",957 +2002-05-01,"Kentucky",1688 +2002-05-01,"Vermont",182 +2002-05-01,"Indiana",8840 +2002-05-01,"Georgia",4810 +2002-05-01,"Missouri",4765 +2002-05-01,"Michigan",23393 +2002-05-01,"Rhode Island",1232 +2002-05-01,"Pennsylvania",12217 +2002-05-01,"District of Columbia",567 +2002-05-01,"Tennessee",2096 +2002-05-01,"U.S.",255083 +2002-05-01,"Arkansas",1510 +2002-05-01,"Louisiana",1949 +2002-05-01,"Oregon",2776 +2002-05-01,"Washington",5536 +2002-05-01,"South Carolina",829 +2002-05-01,"Mississippi",832 +2002-05-01,"Kansas",2961 +2002-05-01,"Virginia",2730 +2002-05-01,"Hawaii",44 +2002-05-01,"West Virginia",1609 +2002-05-01,"Maine",52 +2002-05-01,"Oklahoma",2758 +2002-05-01,"Nevada",1753 +2002-05-01,"Minnesota",7887 +2002-05-01,"New Hampshire",445 +2002-05-01,"Illinois",23123 +2002-05-01,"Iowa",3513 +2002-05-01,"Wisconsin",7905 +2002-05-01,"Florida",906 +2002-05-01,"New Jersey",10513 +2002-05-01,"Texas",6596 +2002-05-01,"North Dakota",641 +2002-05-01,"Delaware",483 +2002-05-01,"Nebraska",1886 +2002-05-01,"Ohio",16654 +2002-05-01,"Arizona",1683 +2002-05-01,"Connecticut",2366 +2002-05-01,"Maryland",3099 +2002-05-01,"New Mexico",1279 +2002-05-01,"Alabama",1688 +2002-05-01,"South Dakota",759 +2002-05-01,"North Carolina",1763 +2002-05-01,"California",34646 +2002-05-01,"New York",23432 2002-05-01,"Wyoming",694 +2002-05-01,"Utah",2297 +2002-05-01,"Colorado",5232 +2002-05-01,"Idaho",1239 +2002-05-01,"Montana",1418 +2002-05-01,"Massachusetts",6851 +2002-06-01,"Louisiana",1830 +2002-06-01,"Pennsylvania",7277 +2002-06-01,"West Virginia",533 +2002-06-01,"South Carolina",718 +2002-06-01,"New York",13856 +2002-06-01,"Washington",3025 +2002-06-01,"Florida",831 +2002-06-01,"Maine",32 +2002-06-01,"Mississippi",738 +2002-06-01,"New Mexico",968 +2002-06-01,"Utah",1587 +2002-06-01,"District of Columbia",352 +2002-06-01,"Georgia",3730 +2002-06-01,"Missouri",3129 +2002-06-01,"Hawaii",41 +2002-06-01,"Ohio",9863 +2002-06-01,"Arizona",1355 +2002-06-01,"Oklahoma",1978 +2002-06-01,"New Jersey",6250 +2002-06-01,"Delaware",279 +2002-06-01,"Nebraska",1180 +2002-06-01,"South Dakota",327 +2002-06-01,"Michigan",13856 +2002-06-01,"Colorado",2696 +2002-06-01,"Oregon",1613 +2002-06-01,"California",26367 +2002-06-01,"Nevada",1296 +2002-06-01,"Minnesota",3497 +2002-06-01,"Illinois",12078 +2002-06-01,"Connecticut",1424 +2002-06-01,"North Carolina",1705 +2002-06-01,"Texas",6000 +2002-06-01,"Alabama",1446 +2002-06-01,"Arkansas",1066 +2002-06-01,"Alaska",1192 +2002-06-01,"New Hampshire",303 +2002-06-01,"Iowa",1867 +2002-06-01,"Idaho",698 +2002-06-01,"Wisconsin",3486 +2002-06-01,"Montana",789 +2002-06-01,"Massachusetts",4517 +2002-06-01,"North Dakota",248 +2002-06-01,"Virginia",1678 +2002-06-01,"Rhode Island",763 +2002-06-01,"Kentucky",1129 +2002-06-01,"Vermont",119 +2002-06-01,"Indiana",4186 +2002-06-01,"Tennessee",1623 +2002-06-01,"Kansas",1985 +2002-06-01,"Maryland",2067 2002-06-01,"Wyoming",399 +2002-06-01,"U.S.",159973 +2002-07-01,"Idaho",392 +2002-07-01,"South Carolina",535 +2002-07-01,"Vermont",64 +2002-07-01,"Mississippi",721 +2002-07-01,"Oklahoma",1506 +2002-07-01,"Nevada",1033 +2002-07-01,"Tennessee",1201 +2002-07-01,"New Hampshire",212 +2002-07-01,"Florida",774 +2002-07-01,"New York",9740 2002-07-01,"Wyoming",916 +2002-07-01,"District of Columbia",318 +2002-07-01,"North Dakota",195 +2002-07-01,"U.S.",125065 +2002-07-01,"Nebraska",911 +2002-07-01,"Michigan",7567 +2002-07-01,"Illinois",9399 +2002-07-01,"Ohio",7504 +2002-07-01,"Arizona",1077 +2002-07-01,"Oregon",993 +2002-07-01,"Maryland",1640 +2002-07-01,"New Jersey",4973 +2002-07-01,"Alabama",1150 +2002-07-01,"Delaware",201 +2002-07-01,"Iowa",1324 +2002-07-01,"North Carolina",1014 +2002-07-01,"Utah",1424 +2002-07-01,"Minnesota",3018 +2002-07-01,"South Dakota",224 +2002-07-01,"Alaska",421 +2002-07-01,"Rhode Island",465 +2002-07-01,"Hawaii",45 +2002-07-01,"Washington",1881 +2002-07-01,"Montana",457 +2002-07-01,"New Mexico",825 +2002-07-01,"Indiana",2650 +2002-07-01,"Texas",5920 +2002-07-01,"Arkansas",835 +2002-07-01,"Colorado",2617 +2002-07-01,"Kentucky",1033 +2002-07-01,"West Virginia",537 +2002-07-01,"Maine",27 +2002-07-01,"Pennsylvania",5179 +2002-07-01,"California",24891 +2002-07-01,"Georgia",3611 +2002-07-01,"Louisiana",1642 +2002-07-01,"Connecticut",958 +2002-07-01,"Wisconsin",2604 +2002-07-01,"Massachusetts",3153 +2002-07-01,"Kansas",1459 +2002-07-01,"Virginia",1489 +2002-07-01,"Missouri",2339 +2002-08-01,"Arizona",1016 +2002-08-01,"Idaho",360 +2002-08-01,"Maryland",1625 +2002-08-01,"New York",9113 +2002-08-01,"Indiana",2892 +2002-08-01,"Massachusetts",2276 +2002-08-01,"Tennessee",1094 +2002-08-01,"New Hampshire",140 +2002-08-01,"Illinois",9047 +2002-08-01,"Montana",453 +2002-08-01,"District of Columbia",319 +2002-08-01,"Minnesota",2575 +2002-08-01,"Kansas",1349 +2002-08-01,"Rhode Island",431 +2002-08-01,"Pennsylvania",4467 +2002-08-01,"North Dakota",253 +2002-08-01,"U.S.",115678 +2002-08-01,"Alaska",592 +2002-08-01,"Iowa",1361 +2002-08-01,"Oregon",840 +2002-08-01,"South Carolina",462 +2002-08-01,"California",23494 +2002-08-01,"Mississippi",686 +2002-08-01,"Oklahoma",1372 +2002-08-01,"Alabama",1122 +2002-08-01,"Missouri",2063 +2002-08-01,"Nebraska",752 +2002-08-01,"Michigan",6485 +2002-08-01,"West Virginia",448 +2002-08-01,"Maine",28 +2002-08-01,"New Jersey",4993 +2002-08-01,"Texas",5647 +2002-08-01,"South Dakota",239 +2002-08-01,"Ohio",6032 +2002-08-01,"Kentucky",1104 +2002-08-01,"Connecticut",1021 +2002-08-01,"North Carolina",885 +2002-08-01,"Nevada",940 +2002-08-01,"Utah",1424 +2002-08-01,"Delaware",171 +2002-08-01,"Virginia",1611 +2002-08-01,"Colorado",2567 +2002-08-01,"Louisiana",1533 +2002-08-01,"Washington",1587 +2002-08-01,"Wisconsin",2673 +2002-08-01,"Florida",720 +2002-08-01,"Vermont",58 2002-08-01,"Wyoming",206 +2002-08-01,"Hawaii",42 +2002-08-01,"New Mexico",819 +2002-08-01,"Georgia",3505 +2002-08-01,"Arkansas",783 +2002-09-01,"Michigan",7310 +2002-09-01,"New Mexico",839 +2002-09-01,"Oklahoma",1363 +2002-09-01,"New York",9332 +2002-09-01,"Indiana",2886 +2002-09-01,"Georgia",3625 +2002-09-01,"Minnesota",3336 +2002-09-01,"Alabama",1130 +2002-09-01,"Delaware",180 +2002-09-01,"Virginia",1553 +2002-09-01,"South Dakota",285 +2002-09-01,"Hawaii",44 +2002-09-01,"Florida",738 +2002-09-01,"North Dakota",282 +2002-09-01,"Illinois",9956 +2002-09-01,"Iowa",1420 +2002-09-01,"Kentucky",1091 +2002-09-01,"West Virginia",549 +2002-09-01,"Idaho",442 +2002-09-01,"Montana",562 +2002-09-01,"Kansas",1409 +2002-09-01,"Alaska",828 +2002-09-01,"Arizona",1073 +2002-09-01,"Oregon",931 +2002-09-01,"Connecticut",991 +2002-09-01,"Wisconsin",2905 +2002-09-01,"North Carolina",1040 +2002-09-01,"District of Columbia",338 +2002-09-01,"Missouri",2375 +2002-09-01,"Colorado",3581 +2002-09-01,"New Hampshire",163 +2002-09-01,"Rhode Island",417 +2002-09-01,"Ohio",6003 +2002-09-01,"Washington",1784 +2002-09-01,"California",23150 +2002-09-01,"South Carolina",496 +2002-09-01,"Maine",28 +2002-09-01,"Vermont",63 +2002-09-01,"Mississippi",687 +2002-09-01,"Texas",5703 +2002-09-01,"Tennessee",1144 +2002-09-01,"U.S.",123904 +2002-09-01,"Arkansas",796 +2002-09-01,"Louisiana",1597 2002-09-01,"Wyoming",508 +2002-09-01,"Massachusetts",2658 +2002-09-01,"New Jersey",5117 +2002-09-01,"Pennsylvania",5158 +2002-09-01,"Maryland",2040 +2002-09-01,"Nevada",1081 +2002-09-01,"Utah",2018 +2002-09-01,"Nebraska",896 +2002-10-01,"New Hampshire",273 +2002-10-01,"Oregon",1464 +2002-10-01,"Idaho",868 +2002-10-01,"South Carolina",609 +2002-10-01,"North Carolina",2051 +2002-10-01,"Mississippi",773 +2002-10-01,"Nevada",1428 2002-10-01,"Wyoming",1023 +2002-10-01,"U.S.",250573 +2002-10-01,"Illinois",29026 +2002-10-01,"West Virginia",1556 +2002-10-01,"Washington",3158 +2002-10-01,"Wisconsin",9705 +2002-10-01,"California",31451 +2002-10-01,"New Jersey",10006 +2002-10-01,"Texas",8784 +2002-10-01,"North Dakota",1046 +2002-10-01,"Pennsylvania",11314 +2002-10-01,"Ohio",16176 +2002-10-01,"Kentucky",3065 +2002-10-01,"Utah",4514 +2002-10-01,"Massachusetts",4162 +2002-10-01,"Alabama",1225 +2002-10-01,"Connecticut",1751 +2002-10-01,"Montana",1459 +2002-10-01,"New York",17278 +2002-10-01,"District of Columbia",907 +2002-10-01,"Virginia",4235 +2002-10-01,"South Dakota",933 +2002-10-01,"Alaska",1214 +2002-10-01,"Florida",744 +2002-10-01,"Indiana",7676 +2002-10-01,"Tennessee",1852 +2002-10-01,"Minnesota",10215 +2002-10-01,"Rhode Island",603 +2002-10-01,"Louisiana",1743 +2002-10-01,"Iowa",3967 +2002-10-01,"Colorado",9908 +2002-10-01,"Hawaii",36 +2002-10-01,"Arizona",1265 +2002-10-01,"Maryland",5033 +2002-10-01,"New Mexico",1150 +2002-10-01,"Delaware",275 +2002-10-01,"Kansas",2377 +2002-10-01,"Missouri",4063 +2002-10-01,"Nebraska",1723 +2002-10-01,"Michigan",17940 +2002-10-01,"Maine",70 +2002-10-01,"Vermont",98 +2002-10-01,"Oklahoma",1791 +2002-10-01,"Georgia",5372 +2002-10-01,"Arkansas",1219 +2002-11-01,"Hawaii",46 +2002-11-01,"Iowa",7640 +2002-11-01,"Oregon",3424 +2002-11-01,"Oklahoma",5416 +2002-11-01,"Louisiana",2875 +2002-11-01,"Maryland",9741 +2002-11-01,"Delaware",865 +2002-11-01,"Kansas",7316 +2002-11-01,"Colorado",15622 +2002-11-01,"Alaska",1401 +2002-11-01,"Ohio",31550 +2002-11-01,"West Virginia",3357 +2002-11-01,"California",36668 +2002-11-01,"Massachusetts",10063 +2002-11-01,"Washington",6861 +2002-11-01,"Wisconsin",15807 +2002-11-01,"Montana",2272 +2002-11-01,"Mississippi",1527 +2002-11-01,"New Mexico",2689 +2002-11-01,"Indiana",15624 +2002-11-01,"Utah",6759 +2002-11-01,"District of Columbia",1825 +2002-11-01,"Missouri",10890 +2002-11-01,"Nebraska",4290 +2002-11-01,"South Dakota",1491 +2002-11-01,"Michigan",38275 +2002-11-01,"Pennsylvania",24419 +2002-11-01,"Connecticut",4066 +2002-11-01,"Maine",110 +2002-11-01,"Vermont",274 +2002-11-01,"North Dakota",1287 +2002-11-01,"Georgia",15644 +2002-11-01,"Minnesota",16032 +2002-11-01,"Arizona",2108 +2002-11-01,"Kentucky",7058 +2002-11-01,"Idaho",2152 +2002-11-01,"Florida",931 +2002-11-01,"Nevada",2603 +2002-11-01,"New Jersey",21927 +2002-11-01,"Texas",17864 +2002-11-01,"Tennessee",5751 +2002-11-01,"U.S.",483192 +2002-11-01,"Virginia",9286 +2002-11-01,"Rhode Island",1580 +2002-11-01,"Illinois",52322 +2002-11-01,"North Carolina",6245 2002-11-01,"Wyoming",1794 +2002-11-01,"New Hampshire",640 +2002-11-01,"South Carolina",2031 +2002-11-01,"New York",36764 +2002-11-01,"Alabama",2890 +2002-11-01,"Arkansas",3121 +2002-12-01,"New Hampshire",1095 +2002-12-01,"Rhode Island",2546 +2002-12-01,"Arizona",4403 +2002-12-01,"Connecticut",6324 +2002-12-01,"Wisconsin",20980 +2002-12-01,"Montana",2844 +2002-12-01,"California",65611 +2002-12-01,"New Mexico",4901 +2002-12-01,"Oklahoma",9700 +2002-12-01,"Alabama",7667 +2002-12-01,"Arkansas",5751 +2002-12-01,"Pennsylvania",40708 +2002-12-01,"Iowa",11147 +2002-12-01,"Idaho",2744 +2002-12-01,"Maine",175 +2002-12-01,"Indiana",27110 +2002-12-01,"New Jersey",36586 +2002-12-01,"North Dakota",1692 +2002-12-01,"Georgia",25357 +2002-12-01,"Louisiana",7606 +2002-12-01,"Kentucky",11636 +2002-12-01,"North Carolina",10891 +2002-12-01,"New York",58038 +2002-12-01,"Kansas",10591 +2002-12-01,"Virginia",15028 +2002-12-01,"Ohio",52947 +2002-12-01,"Mississippi",4076 +2002-12-01,"District of Columbia",2773 +2002-12-01,"Texas",32569 +2002-12-01,"Delaware",1568 +2002-12-01,"South Dakota",1698 +2002-12-01,"Colorado",19641 +2002-12-01,"U.S.",771634 +2002-12-01,"Nebraska",6322 +2002-12-01,"Michigan",56756 +2002-12-01,"Illinois",73540 +2002-12-01,"Hawaii",48 +2002-12-01,"West Virginia",5306 +2002-12-01,"South Carolina",5291 2002-12-01,"Wyoming",2557 +2002-12-01,"Minnesota",20438 +2002-12-01,"Missouri",17885 +2002-12-01,"Alaska",2074 +2002-12-01,"Oregon",5167 +2002-12-01,"Maryland",15584 +2002-12-01,"Florida",1915 +2002-12-01,"Vermont",385 +2002-12-01,"Nevada",4226 +2002-12-01,"Utah",8328 +2002-12-01,"Massachusetts",17403 +2002-12-01,"Tennessee",12804 +2002-12-01,"Washington",9204 +2003-01-01,"Illinois",96167 +2003-01-01,"Iowa",13948 +2003-01-01,"California",62742 +2003-01-01,"Texas",45246 +2003-01-01,"Georgia",29759 +2003-01-01,"Alaska",2216 +2003-01-01,"South Carolina",6404 +2003-01-01,"Maryland",17974 +2003-01-01,"North Carolina",14064 +2003-01-01,"Florida",2904 +2003-01-01,"Maine",215 +2003-01-01,"Vermont",504 +2003-01-01,"Kentucky",14620 +2003-01-01,"Wisconsin",27895 +2003-01-01,"New York",68215 +2003-01-01,"District of Columbia",3382 +2003-01-01,"Tennessee",15336 +2003-01-01,"Mississippi",5577 +2003-01-01,"Indiana",34927 +2003-01-01,"North Dakota",2122 +2003-01-01,"Delaware",2231 +2003-01-01,"West Virginia",6785 +2003-01-01,"Montana",3232 +2003-01-01,"U.S.",945975 +2003-01-01,"Arkansas",7744 +2003-01-01,"Colorado",18246 +2003-01-01,"Rhode Island",3197 +2003-01-01,"Louisiana",10166 +2003-01-01,"Pennsylvania",51246 +2003-01-01,"Oregon",5968 +2003-01-01,"Washington",10368 +2003-01-01,"New Mexico",6080 +2003-01-01,"Nevada",5431 2003-01-01,"Wyoming",1882 +2003-01-01,"Utah",8173 +2003-01-01,"South Dakota",2427 +2003-01-01,"Michigan",70376 +2003-01-01,"Hawaii",51 +2003-01-01,"Ohio",69723 +2003-01-01,"Idaho",3023 +2003-01-01,"Connecticut",8306 +2003-01-01,"Massachusetts",21091 +2003-01-01,"New Jersey",45576 +2003-01-01,"Minnesota",25795 +2003-01-01,"Alabama",10529 +2003-01-01,"Kansas",13667 +2003-01-01,"Virginia",19009 +2003-01-01,"New Hampshire",1345 +2003-01-01,"Arizona",7038 +2003-01-01,"Oklahoma",12608 +2003-01-01,"Missouri",22553 +2003-01-01,"Nebraska",7895 +2003-02-01,"South Dakota",2132 +2003-02-01,"Pennsylvania",49909 +2003-02-01,"Idaho",2758 +2003-02-01,"Nevada",4563 +2003-02-01,"Indiana",28735 +2003-02-01,"North Dakota",1970 +2003-02-01,"Colorado",20165 +2003-02-01,"New Hampshire",1436 +2003-02-01,"Illinois",82225 +2003-02-01,"Hawaii",50 +2003-02-01,"Connecticut",8398 +2003-02-01,"Florida",2846 +2003-02-01,"Oklahoma",12931 +2003-02-01,"Minnesota",23767 +2003-02-01,"Alabama",10219 +2003-02-01,"Rhode Island",3703 +2003-02-01,"Ohio",62980 +2003-02-01,"Oregon",5064 +2003-02-01,"Maryland",16168 +2003-02-01,"Alaska",1705 +2003-02-01,"Louisiana",9807 +2003-02-01,"Iowa",13698 +2003-02-01,"New York",73655 2003-02-01,"Wyoming",1831 +2003-02-01,"New Jersey",43553 +2003-02-01,"Delaware",2018 +2003-02-01,"Kansas",13290 +2003-02-01,"Washington",9580 +2003-02-01,"Montana",2987 +2003-02-01,"Mississippi",5740 +2003-02-01,"District of Columbia",2651 +2003-02-01,"West Virginia",6223 +2003-02-01,"Wisconsin",23640 +2003-02-01,"North Carolina",12890 +2003-02-01,"California",61307 +2003-02-01,"New Mexico",5069 +2003-02-01,"Utah",8462 +2003-02-01,"Nebraska",7345 +2003-02-01,"Arkansas",8065 +2003-02-01,"Kentucky",11945 +2003-02-01,"South Carolina",6462 +2003-02-01,"Maine",191 +2003-02-01,"Massachusetts",23023 +2003-02-01,"Tennessee",15713 +2003-02-01,"Georgia",20657 +2003-02-01,"Virginia",15813 +2003-02-01,"Michigan",67374 +2003-02-01,"Arizona",4914 +2003-02-01,"Vermont",580 +2003-02-01,"Texas",40596 +2003-02-01,"U.S.",884238 +2003-02-01,"Missouri",23439 +2003-03-01,"New Hampshire",1223 +2003-03-01,"Indiana",18438 +2003-03-01,"North Dakota",1663 +2003-03-01,"Iowa",10432 +2003-03-01,"Kentucky",6867 +2003-03-01,"Washington",9371 +2003-03-01,"South Carolina",4180 +2003-03-01,"Montana",2881 +2003-03-01,"Maine",173 2003-03-01,"Wyoming",1580 +2003-03-01,"Utah",6045 +2003-03-01,"District of Columbia",1698 +2003-03-01,"Georgia",12180 +2003-03-01,"Minnesota",18073 +2003-03-01,"Missouri",17776 +2003-03-01,"Colorado",14786 +2003-03-01,"Alaska",2046 +2003-03-01,"Rhode Island",3246 +2003-03-01,"Illinois",59585 +2003-03-01,"Pennsylvania",38575 +2003-03-01,"Idaho",2475 +2003-03-01,"Mississippi",3853 +2003-03-01,"New Mexico",4600 +2003-03-01,"New York",61494 +2003-03-01,"New Jersey",34147 +2003-03-01,"Texas",28283 +2003-03-01,"Arkansas",6369 +2003-03-01,"Wisconsin",18072 +2003-03-01,"Florida",1600 +2003-03-01,"Louisiana",5721 +2003-03-01,"West Virginia",4385 +2003-03-01,"Connecticut",6612 +2003-03-01,"Alabama",6038 +2003-03-01,"Delaware",1566 +2003-03-01,"Arizona",4931 +2003-03-01,"North Carolina",8230 +2003-03-01,"Virginia",9711 +2003-03-01,"Ohio",46955 +2003-03-01,"Oregon",4992 +2003-03-01,"California",51363 +2003-03-01,"Oklahoma",11550 +2003-03-01,"Nevada",4059 +2003-03-01,"Massachusetts",19192 +2003-03-01,"Nebraska",6648 +2003-03-01,"South Dakota",1870 +2003-03-01,"Michigan",55754 +2003-03-01,"Hawaii",48 +2003-03-01,"Maryland",11483 +2003-03-01,"Vermont",483 +2003-03-01,"Tennessee",10227 +2003-03-01,"U.S.",674582 +2003-03-01,"Kansas",11051 +2003-04-01,"New Hampshire",827 +2003-04-01,"Arizona",3011 +2003-04-01,"Washington",7061 2003-04-01,"Wyoming",928 +2003-04-01,"Georgia",7256 +2003-04-01,"South Dakota",1040 +2003-04-01,"Michigan",34678 +2003-04-01,"Louisiana",2771 +2003-04-01,"West Virginia",2285 +2003-04-01,"California",46472 +2003-04-01,"Vermont",332 +2003-04-01,"Virginia",5958 +2003-04-01,"Hawaii",46 +2003-04-01,"Kentucky",3566 +2003-04-01,"Maryland",6738 +2003-04-01,"Mississippi",1830 +2003-04-01,"North Dakota",825 +2003-04-01,"Minnesota",10118 +2003-04-01,"Missouri",9063 +2003-04-01,"Illinois",35270 +2003-04-01,"Connecticut",4123 +2003-04-01,"Florida",1193 +2003-04-01,"Texas",10943 +2003-04-01,"U.S.",414495 +2003-04-01,"South Carolina",2235 +2003-04-01,"North Carolina",4754 +2003-04-01,"Maine",114 +2003-04-01,"New Jersey",22238 +2003-04-01,"Nebraska",3378 +2003-04-01,"Arkansas",3043 +2003-04-01,"Alaska",1328 +2003-04-01,"Ohio",26511 +2003-04-01,"Iowa",5590 +2003-04-01,"Idaho",1857 +2003-04-01,"Montana",1618 +2003-04-01,"New Mexico",3078 +2003-04-01,"New York",42067 +2003-04-01,"Massachusetts",12916 +2003-04-01,"Delaware",966 +2003-04-01,"Colorado",8735 +2003-04-01,"Oregon",3838 +2003-04-01,"Indiana",10431 +2003-04-01,"Utah",4414 +2003-04-01,"Alabama",3253 +2003-04-01,"Kansas",5503 +2003-04-01,"Rhode Island",2137 +2003-04-01,"Pennsylvania",22365 +2003-04-01,"Wisconsin",11933 +2003-04-01,"Oklahoma",5712 +2003-04-01,"Nevada",2814 +2003-04-01,"District of Columbia",1044 +2003-04-01,"Tennessee",4288 +2003-05-01,"Michigan",20830 +2003-05-01,"New Hampshire",500 +2003-05-01,"Rhode Island",1418 +2003-05-01,"Pennsylvania",12283 +2003-05-01,"West Virginia",1171 +2003-05-01,"Oregon",3058 +2003-05-01,"Connecticut",2579 +2003-05-01,"Montana",1264 +2003-05-01,"Florida",976 +2003-05-01,"Mississippi",1050 +2003-05-01,"Nevada",2114 +2003-05-01,"New Jersey",12159 +2003-05-01,"Tennessee",2146 +2003-05-01,"Idaho",1403 +2003-05-01,"California",36234 +2003-05-01,"Kansas",2782 +2003-05-01,"Colorado",5675 +2003-05-01,"Hawaii",48 +2003-05-01,"Ohio",13351 +2003-05-01,"Arizona",2090 +2003-05-01,"Iowa",3114 +2003-05-01,"South Carolina",1162 +2003-05-01,"North Carolina",2524 +2003-05-01,"New Mexico",1635 +2003-05-01,"South Dakota",585 +2003-05-01,"Alaska",935 +2003-05-01,"Kentucky",1431 +2003-05-01,"Maryland",3866 +2003-05-01,"Wisconsin",6295 +2003-05-01,"Oklahoma",2747 +2003-05-01,"Indiana",6528 +2003-05-01,"Utah",2489 +2003-05-01,"District of Columbia",568 +2003-05-01,"Texas",8006 +2003-05-01,"Arkansas",1480 +2003-05-01,"Massachusetts",7690 +2003-05-01,"Minnesota",5537 +2003-05-01,"Alabama",1909 +2003-05-01,"Missouri",4744 +2003-05-01,"Washington",5102 +2003-05-01,"New York",25774 2003-05-01,"Wyoming",700 +2003-05-01,"Virginia",2705 +2003-05-01,"Illinois",17433 +2003-05-01,"Nebraska",1743 +2003-05-01,"Louisiana",1945 +2003-05-01,"Maine",60 +2003-05-01,"Vermont",188 +2003-05-01,"North Dakota",462 +2003-05-01,"Georgia",4668 +2003-05-01,"U.S.",247693 +2003-05-01,"Delaware",535 +2003-06-01,"Michigan",11291 +2003-06-01,"Colorado",3831 +2003-06-01,"Hawaii",40 +2003-06-01,"Maryland",2339 +2003-06-01,"California",27704 +2003-06-01,"Indiana",4019 +2003-06-01,"Utah",1540 +2003-06-01,"Tennessee",1436 +2003-06-01,"Minnesota",2815 +2003-06-01,"Arkansas",923 +2003-06-01,"Louisiana",1472 +2003-06-01,"Oregon",1600 +2003-06-01,"Washington",2919 +2003-06-01,"North Carolina",1454 +2003-06-01,"New York",14955 +2003-06-01,"Massachusetts",4489 +2003-06-01,"Georgia",3807 +2003-06-01,"Delaware",350 +2003-06-01,"Virginia",1850 +2003-06-01,"Nebraska",1076 +2003-06-01,"Rhode Island",812 +2003-06-01,"West Virginia",600 +2003-06-01,"Connecticut",1663 +2003-06-01,"Wisconsin",3321 +2003-06-01,"Oklahoma",1758 +2003-06-01,"Nevada",1221 +2003-06-01,"North Dakota",227 +2003-06-01,"New Hampshire",254 +2003-06-01,"Iowa",1813 +2003-06-01,"Kentucky",1221 +2003-06-01,"Maine",31 2003-06-01,"Wyoming",423 +2003-06-01,"New Jersey",7215 +2003-06-01,"Kansas",1691 +2003-06-01,"Illinois",11715 +2003-06-01,"Pennsylvania",7554 +2003-06-01,"Vermont",95 +2003-06-01,"New Mexico",1009 +2003-06-01,"Arizona",1366 +2003-06-01,"District of Columbia",347 +2003-06-01,"Texas",6043 +2003-06-01,"U.S.",157454 +2003-06-01,"Missouri",3122 +2003-06-01,"South Dakota",348 +2003-06-01,"Alaska",572 +2003-06-01,"Ohio",8286 +2003-06-01,"Idaho",632 +2003-06-01,"South Carolina",632 +2003-06-01,"Montana",665 +2003-06-01,"Florida",818 +2003-06-01,"Mississippi",773 +2003-06-01,"Alabama",1317 +2003-07-01,"Hawaii",42 +2003-07-01,"Kentucky",1153 +2003-07-01,"Maryland",1832 +2003-07-01,"Florida",753 +2003-07-01,"Vermont",65 +2003-07-01,"Mississippi",703 +2003-07-01,"New Mexico",835 +2003-07-01,"Georgia",3644 +2003-07-01,"Minnesota",2699 +2003-07-01,"Alaska",435 +2003-07-01,"New Hampshire",172 +2003-07-01,"Illinois",9865 +2003-07-01,"Texas",5893 +2003-07-01,"Alabama",1169 +2003-07-01,"Missouri",2309 +2003-07-01,"Nebraska",880 +2003-07-01,"Rhode Island",495 +2003-07-01,"Maine",28 +2003-07-01,"Indiana",2612 2003-07-01,"Wyoming",256 +2003-07-01,"Ohio",7558 +2003-07-01,"Arizona",1122 +2003-07-01,"Idaho",413 +2003-07-01,"Connecticut",1165 +2003-07-01,"California",24968 +2003-07-01,"Arkansas",831 +2003-07-01,"South Dakota",246 +2003-07-01,"Colorado",2769 +2003-07-01,"West Virginia",477 +2003-07-01,"Washington",1899 +2003-07-01,"Montana",442 +2003-07-01,"District of Columbia",293 +2003-07-01,"Virginia",1570 +2003-07-01,"Louisiana",1650 +2003-07-01,"Oregon",997 +2003-07-01,"South Carolina",533 +2003-07-01,"U.S.",126624 +2003-07-01,"Pennsylvania",5305 +2003-07-01,"Wisconsin",2689 +2003-07-01,"North Carolina",1137 +2003-07-01,"Oklahoma",1449 +2003-07-01,"New York",10049 +2003-07-01,"New Jersey",5605 +2003-07-01,"North Dakota",201 +2003-07-01,"Delaware",217 +2003-07-01,"Michigan",7729 +2003-07-01,"Iowa",1410 +2003-07-01,"Nevada",1114 +2003-07-01,"Utah",1358 +2003-07-01,"Massachusetts",2889 +2003-07-01,"Tennessee",1251 +2003-07-01,"Kansas",1452 +2003-08-01,"Pennsylvania",4865 +2003-08-01,"Oklahoma",1266 +2003-08-01,"Utah",1355 +2003-08-01,"Texas",5558 +2003-08-01,"Tennessee",1074 +2003-08-01,"Georgia",3397 +2003-08-01,"Arkansas",771 +2003-08-01,"Michigan",7057 +2003-08-01,"Oregon",819 +2003-08-01,"North Carolina",1004 +2003-08-01,"Florida",737 +2003-08-01,"Vermont",60 +2003-08-01,"Indiana",2587 +2003-08-01,"South Dakota",226 +2003-08-01,"South Carolina",495 +2003-08-01,"Connecticut",953 +2003-08-01,"Wisconsin",2615 +2003-08-01,"Nevada",994 +2003-08-01,"Rhode Island",468 +2003-08-01,"Iowa",1396 +2003-08-01,"Kentucky",1041 +2003-08-01,"Montana",414 +2003-08-01,"California",22166 +2003-08-01,"New Jersey",5114 +2003-08-01,"Delaware",181 +2003-08-01,"New Hampshire",162 +2003-08-01,"West Virginia",443 +2003-08-01,"Mississippi",687 +2003-08-01,"District of Columbia",297 +2003-08-01,"Alabama",1123 +2003-08-01,"Virginia",1500 +2003-08-01,"Colorado",2707 +2003-08-01,"Louisiana",1468 +2003-08-01,"Hawaii",44 +2003-08-01,"Ohio",6248 +2003-08-01,"Washington",1546 +2003-08-01,"Idaho",354 +2003-08-01,"Maryland",1817 +2003-08-01,"New Mexico",754 +2003-08-01,"North Dakota",228 +2003-08-01,"U.S.",115852 +2003-08-01,"Kansas",1340 +2003-08-01,"Nebraska",903 +2003-08-01,"Alaska",599 +2003-08-01,"Illinois",9543 +2003-08-01,"Maine",29 +2003-08-01,"Massachusetts",2576 +2003-08-01,"Minnesota",2695 +2003-08-01,"Arizona",1100 +2003-08-01,"New York",8722 2003-08-01,"Wyoming",243 +2003-08-01,"Missouri",2112 +2003-09-01,"Wisconsin",3472 +2003-09-01,"New York",9456 +2003-09-01,"Massachusetts",2838 +2003-09-01,"Georgia",3607 +2003-09-01,"Alabama",1116 +2003-09-01,"Missouri",2464 +2003-09-01,"South Dakota",320 +2003-09-01,"Colorado",4560 +2003-09-01,"Ohio",7113 +2003-09-01,"Iowa",1561 +2003-09-01,"Kentucky",1470 +2003-09-01,"Indiana",3336 +2003-09-01,"New Jersey",5162 +2003-09-01,"Texas",5794 +2003-09-01,"Alaska",898 +2003-09-01,"New Hampshire",161 +2003-09-01,"West Virginia",680 +2003-09-01,"Connecticut",761 +2003-09-01,"Utah",1856 +2003-09-01,"District of Columbia",181 +2003-09-01,"U.S.",128621 +2003-09-01,"Oregon",904 +2003-09-01,"Washington",1838 +2003-09-01,"Montana",557 +2003-09-01,"North Carolina",1154 +2003-09-01,"Mississippi",677 +2003-09-01,"New Mexico",815 2003-09-01,"Wyoming",402 +2003-09-01,"North Dakota",317 +2003-09-01,"Minnesota",3313 +2003-09-01,"Michigan",8075 +2003-09-01,"Louisiana",1612 +2003-09-01,"Hawaii",42 +2003-09-01,"Oklahoma",1318 +2003-09-01,"Nebraska",789 +2003-09-01,"Pennsylvania",4907 +2003-09-01,"California",22084 +2003-09-01,"Florida",740 +2003-09-01,"Maine",30 +2003-09-01,"Tennessee",1250 +2003-09-01,"Delaware",194 +2003-09-01,"Kansas",1614 +2003-09-01,"Rhode Island",420 +2003-09-01,"Maryland",1901 +2003-09-01,"Virginia",1493 +2003-09-01,"Arkansas",803 +2003-09-01,"Illinois",11428 +2003-09-01,"Arizona",1052 +2003-09-01,"Idaho",452 +2003-09-01,"South Carolina",497 +2003-09-01,"Vermont",63 +2003-09-01,"Nevada",1075 +2003-10-01,"New Mexico",976 +2003-10-01,"District of Columbia",849 +2003-10-01,"North Dakota",634 +2003-10-01,"Alaska",1368 +2003-10-01,"Kentucky",2628 +2003-10-01,"Connecticut",1846 +2003-10-01,"Montana",960 2003-10-01,"Wyoming",649 +2003-10-01,"U.S.",231558 +2003-10-01,"Minnesota",6986 +2003-10-01,"Virginia",4164 +2003-10-01,"Ohio",18215 +2003-10-01,"Oregon",1227 +2003-10-01,"South Carolina",738 +2003-10-01,"Wisconsin",7549 +2003-10-01,"Florida",764 +2003-10-01,"Vermont",119 +2003-10-01,"Oklahoma",1683 +2003-10-01,"Massachusetts",4614 +2003-10-01,"Tennessee",2092 +2003-10-01,"Delaware",412 +2003-10-01,"Michigan",19963 +2003-10-01,"Rhode Island",665 +2003-10-01,"Idaho",651 +2003-10-01,"North Carolina",2290 +2003-10-01,"Nevada",1272 +2003-10-01,"Utah",2988 +2003-10-01,"Georgia",5617 +2003-10-01,"Nebraska",1640 +2003-10-01,"Arkansas",1032 +2003-10-01,"South Dakota",590 +2003-10-01,"Louisiana",1790 +2003-10-01,"Pennsylvania",12331 +2003-10-01,"Hawaii",39 +2003-10-01,"Arizona",1399 +2003-10-01,"Iowa",3054 +2003-10-01,"Kansas",2121 +2003-10-01,"Missouri",3542 +2003-10-01,"New Hampshire",317 +2003-10-01,"Maryland",4707 +2003-10-01,"Maine",63 +2003-10-01,"New York",17149 +2003-10-01,"New Jersey",10715 +2003-10-01,"Mississippi",849 +2003-10-01,"Indiana",8006 +2003-10-01,"Texas",7112 +2003-10-01,"Colorado",5811 +2003-10-01,"Illinois",25469 +2003-10-01,"West Virginia",1816 +2003-10-01,"Washington",2903 +2003-10-01,"California",25736 +2003-10-01,"Alabama",1452 +2003-11-01,"Illinois",44978 +2003-11-01,"Arizona",2145 +2003-11-01,"New York",28397 +2003-11-01,"Massachusetts",8796 +2003-11-01,"Georgia",10196 +2003-11-01,"Alabama",2159 +2003-11-01,"Kansas",4710 +2003-11-01,"New Hampshire",574 +2003-11-01,"Louisiana",2147 +2003-11-01,"New Mexico",2005 +2003-11-01,"Indiana",13569 2003-11-01,"Wyoming",1410 +2003-11-01,"U.S.",413663 +2003-11-01,"Arkansas",2065 +2003-11-01,"Hawaii",41 +2003-11-01,"Nevada",2816 +2003-11-01,"Utah",6914 +2003-11-01,"Tennessee",3826 +2003-11-01,"Alaska",2322 +2003-11-01,"Kentucky",5216 +2003-11-01,"Maryland",7512 +2003-11-01,"Wisconsin",14281 +2003-11-01,"Vermont",235 +2003-11-01,"Colorado",16094 +2003-11-01,"Oregon",3179 +2003-11-01,"Idaho",1926 +2003-11-01,"Montana",2351 +2003-11-01,"Florida",912 +2003-11-01,"North Dakota",1522 +2003-11-01,"Virginia",6856 +2003-11-01,"Nebraska",3532 +2003-11-01,"Pennsylvania",18643 +2003-11-01,"West Virginia",2379 +2003-11-01,"Mississippi",1216 +2003-11-01,"South Dakota",1464 +2003-11-01,"Michigan",31949 +2003-11-01,"Rhode Island",1354 +2003-11-01,"Iowa",7105 +2003-11-01,"Washington",7581 +2003-11-01,"South Carolina",1376 +2003-11-01,"Connecticut",3457 +2003-11-01,"North Carolina",5223 +2003-11-01,"Maine",105 +2003-11-01,"Oklahoma",3433 +2003-11-01,"New Jersey",17750 +2003-11-01,"Delaware",759 +2003-11-01,"Ohio",25894 +2003-11-01,"California",43421 +2003-11-01,"District of Columbia",1295 +2003-11-01,"Texas",13732 +2003-11-01,"Minnesota",15373 +2003-11-01,"Missouri",7469 +2003-12-01,"Iowa",10902 +2003-12-01,"Oregon",5653 +2003-12-01,"North Carolina",10686 +2003-12-01,"Mississippi",3635 +2003-12-01,"Nevada",5374 +2003-12-01,"Virginia",14703 +2003-12-01,"New Hampshire",970 +2003-12-01,"Rhode Island",2261 +2003-12-01,"Louisiana",6779 +2003-12-01,"Pennsylvania",37038 +2003-12-01,"Utah",9037 +2003-12-01,"New Jersey",34526 +2003-12-01,"Georgia",25117 +2003-12-01,"Missouri",15955 +2003-12-01,"Alaska",2430 +2003-12-01,"Ohio",50202 +2003-12-01,"Kentucky",10727 +2003-12-01,"Maine",172 +2003-12-01,"New Mexico",4766 +2003-12-01,"New York",49716 +2003-12-01,"Texas",29487 +2003-12-01,"Nebraska",6362 +2003-12-01,"Michigan",50491 +2003-12-01,"Hawaii",46 +2003-12-01,"Maryland",14333 +2003-12-01,"California",73760 +2003-12-01,"Oklahoma",9227 +2003-12-01,"District of Columbia",2551 +2003-12-01,"U.S.",738596 +2003-12-01,"Illinois",69774 +2003-12-01,"West Virginia",4964 +2003-12-01,"Washington",10942 +2003-12-01,"Massachusetts",15766 +2003-12-01,"Minnesota",20784 +2003-12-01,"Delaware",1338 +2003-12-01,"South Carolina",4441 +2003-12-01,"Wisconsin",20304 +2003-12-01,"Montana",3064 +2003-12-01,"Vermont",394 2003-12-01,"Wyoming",1840 +2003-12-01,"Colorado",20836 +2003-12-01,"Arizona",5642 +2003-12-01,"Idaho",2994 +2003-12-01,"Connecticut",5764 +2003-12-01,"Florida",1623 +2003-12-01,"Tennessee",11108 +2003-12-01,"Kansas",11147 +2003-12-01,"South Dakota",1929 +2003-12-01,"Indiana",24169 +2003-12-01,"North Dakota",1708 +2003-12-01,"Alabama",6288 +2003-12-01,"Arkansas",4869 +2004-01-01,"Arizona",7129 2004-01-01,"Wyoming",2153 +2004-01-01,"Utah",12149 +2004-01-01,"Tennessee",14597 +2004-01-01,"Georgia",26702 +2004-01-01,"South Dakota",2506 +2004-01-01,"Michigan",70165 +2004-01-01,"Pennsylvania",50259 +2004-01-01,"New Mexico",6127 +2004-01-01,"Delaware",2339 +2004-01-01,"Virginia",19556 +2004-01-01,"Louisiana",8760 +2004-01-01,"Oregon",7559 +2004-01-01,"Idaho",4010 +2004-01-01,"South Carolina",6522 +2004-01-01,"Connecticut",8524 +2004-01-01,"Florida",2617 +2004-01-01,"Nevada",6772 +2004-01-01,"Massachusetts",20963 +2004-01-01,"West Virginia",6178 +2004-01-01,"New York",68793 +2004-01-01,"District of Columbia",3486 +2004-01-01,"Minnesota",27631 +2004-01-01,"Colorado",20385 +2004-01-01,"Rhode Island",3245 +2004-01-01,"Illinois",95279 +2004-01-01,"Kentucky",13274 +2004-01-01,"Maryland",20027 +2004-01-01,"California",80607 +2004-01-01,"Texas",37903 +2004-01-01,"Kansas",13546 +2004-01-01,"Hawaii",48 +2004-01-01,"Iowa",14485 +2004-01-01,"Washington",13304 +2004-01-01,"Wisconsin",28933 +2004-01-01,"Montana",3874 +2004-01-01,"Maine",236 +2004-01-01,"Mississippi",5124 +2004-01-01,"Oklahoma",11804 +2004-01-01,"Indiana",33308 +2004-01-01,"New Jersey",46941 +2004-01-01,"North Dakota",2269 +2004-01-01,"U.S.",962910 +2004-01-01,"Missouri",21642 +2004-01-01,"Nebraska",8120 +2004-01-01,"Alaska",3151 +2004-01-01,"New Hampshire",1306 +2004-01-01,"Ohio",67004 +2004-01-01,"North Carolina",14020 +2004-01-01,"Vermont",539 +2004-01-01,"Alabama",10044 +2004-01-01,"Arkansas",6994 +2004-02-01,"Michigan",63171 +2004-02-01,"Iowa",13171 +2004-02-01,"Kentucky",10242 +2004-02-01,"Maryland",14935 +2004-02-01,"Montana",2996 +2004-02-01,"Alabama",9400 +2004-02-01,"Louisiana",8350 +2004-02-01,"Washington",10362 +2004-02-01,"North Carolina",13510 +2004-02-01,"District of Columbia",2378 +2004-02-01,"Kansas",13875 +2004-02-01,"Nebraska",7891 +2004-02-01,"Arkansas",7438 +2004-02-01,"New Hampshire",1381 2004-02-01,"Wyoming",1817 +2004-02-01,"Massachusetts",21217 +2004-02-01,"Hawaii",46 +2004-02-01,"Connecticut",8190 +2004-02-01,"New York",70343 +2004-02-01,"Tennessee",14823 +2004-02-01,"Georgia",23473 +2004-02-01,"Alaska",2049 +2004-02-01,"Illinois",73647 +2004-02-01,"Pennsylvania",46933 +2004-02-01,"Arizona",6902 +2004-02-01,"South Carolina",6979 +2004-02-01,"Maine",181 +2004-02-01,"Mississippi",4868 +2004-02-01,"Nevada",5908 +2004-02-01,"U.S.",857450 +2004-02-01,"Minnesota",20837 +2004-02-01,"Delaware",1962 +2004-02-01,"Missouri",23215 +2004-02-01,"Oregon",6208 +2004-02-01,"Florida",2491 +2004-02-01,"Vermont",581 +2004-02-01,"New Mexico",6200 +2004-02-01,"Oklahoma",12919 +2004-02-01,"Texas",38823 +2004-02-01,"Virginia",14794 +2004-02-01,"South Dakota",2214 +2004-02-01,"Ohio",58191 +2004-02-01,"Wisconsin",20258 +2004-02-01,"California",68760 +2004-02-01,"Colorado",19514 +2004-02-01,"Rhode Island",4047 +2004-02-01,"West Virginia",6569 +2004-02-01,"Idaho",3506 +2004-02-01,"Indiana",25602 +2004-02-01,"Utah",9483 +2004-02-01,"New Jersey",43089 +2004-02-01,"North Dakota",1709 +2004-03-01,"Oregon",4601 +2004-03-01,"Washington",8373 +2004-03-01,"South Carolina",4416 +2004-03-01,"Montana",2233 +2004-03-01,"Georgia",10651 +2004-03-01,"Virginia",9419 +2004-03-01,"Mississippi",3338 +2004-03-01,"Tennessee",9500 +2004-03-01,"Alabama",6062 +2004-03-01,"Alaska",2061 +2004-03-01,"New Hampshire",964 +2004-03-01,"Louisiana",6005 +2004-03-01,"Ohio",41855 +2004-03-01,"West Virginia",4455 +2004-03-01,"Connecticut",5823 +2004-03-01,"Florida",1995 +2004-03-01,"New Mexico",5076 +2004-03-01,"Minnesota",15830 +2004-03-01,"Rhode Island",2617 +2004-03-01,"Hawaii",47 +2004-03-01,"Maryland",10130 +2004-03-01,"Wisconsin",16472 +2004-03-01,"Maine",158 +2004-03-01,"Indiana",17207 +2004-03-01,"Massachusetts",15172 +2004-03-01,"U.S.",591428 +2004-03-01,"Nebraska",5533 +2004-03-01,"South Dakota",1437 +2004-03-01,"Michigan",46957 +2004-03-01,"Arizona",4846 +2004-03-01,"Colorado",11395 +2004-03-01,"Pennsylvania",33116 +2004-03-01,"North Carolina",8531 +2004-03-01,"New York",54933 2004-03-01,"Wyoming",1303 +2004-03-01,"New Jersey",29563 +2004-03-01,"Delaware",1330 +2004-03-01,"Missouri",15334 +2004-03-01,"Iowa",8694 +2004-03-01,"Kentucky",6560 +2004-03-01,"Idaho",2484 +2004-03-01,"Vermont",432 +2004-03-01,"Oklahoma",8942 +2004-03-01,"Utah",4845 +2004-03-01,"District of Columbia",1538 +2004-03-01,"North Dakota",1308 +2004-03-01,"Illinois",51248 +2004-03-01,"California",48651 +2004-03-01,"Nevada",4037 +2004-03-01,"Texas",20063 +2004-03-01,"Kansas",8690 +2004-03-01,"Arkansas",5198 +2004-04-01,"New Hampshire",708 +2004-04-01,"South Carolina",2303 +2004-04-01,"Maryland",6302 +2004-04-01,"North Carolina",4921 +2004-04-01,"Wisconsin",9760 +2004-04-01,"U.S.",379642 +2004-04-01,"Kansas",4421 +2004-04-01,"Hawaii",48 +2004-04-01,"Ohio",26627 +2004-04-01,"Oregon",2979 +2004-04-01,"California",35580 +2004-04-01,"New Mexico",2634 2004-04-01,"Wyoming",975 +2004-04-01,"New Jersey",20576 +2004-04-01,"Minnesota",8997 +2004-04-01,"Alabama",3296 +2004-04-01,"Nebraska",2750 +2004-04-01,"South Dakota",868 +2004-04-01,"Colorado",8788 +2004-04-01,"Pennsylvania",22863 +2004-04-01,"Arizona",2295 +2004-04-01,"West Virginia",2958 +2004-04-01,"Oklahoma",4255 +2004-04-01,"Indiana",8819 +2004-04-01,"Utah",3998 +2004-04-01,"Missouri",8945 +2004-04-01,"Arkansas",2768 +2004-04-01,"Alaska",1410 +2004-04-01,"Louisiana",2981 +2004-04-01,"Idaho",1469 +2004-04-01,"Maine",102 +2004-04-01,"Nevada",2025 +2004-04-01,"Tennessee",5266 +2004-04-01,"Illinois",30629 +2004-04-01,"Washington",5626 +2004-04-01,"Montana",1419 +2004-04-01,"Florida",1381 +2004-04-01,"Mississippi",1335 +2004-04-01,"New York",40627 +2004-04-01,"North Dakota",784 +2004-04-01,"Delaware",905 +2004-04-01,"Michigan",32678 +2004-04-01,"Rhode Island",2325 +2004-04-01,"Kentucky",3531 +2004-04-01,"Connecticut",4393 +2004-04-01,"Vermont",331 +2004-04-01,"District of Columbia",1004 +2004-04-01,"Massachusetts",11321 +2004-04-01,"Iowa",4578 +2004-04-01,"Texas",11255 +2004-04-01,"Georgia",7111 +2004-04-01,"Virginia",5721 +2004-05-01,"Michigan",18162 +2004-05-01,"Colorado",4949 +2004-05-01,"Washington",3552 +2004-05-01,"Maryland",2648 +2004-05-01,"New York",22876 +2004-05-01,"New Jersey",8867 +2004-05-01,"Texas",8409 +2004-05-01,"Alaska",919 +2004-05-01,"New Hampshire",344 +2004-05-01,"Rhode Island",1168 +2004-05-01,"Idaho",1019 +2004-05-01,"South Carolina",918 +2004-05-01,"Mississippi",934 +2004-05-01,"Oklahoma",2607 +2004-05-01,"Indiana",5468 +2004-05-01,"Delaware",398 +2004-05-01,"Iowa",2591 +2004-05-01,"Wisconsin",5859 +2004-05-01,"Montana",1081 +2004-05-01,"California",28303 +2004-05-01,"Utah",2342 +2004-05-01,"Tennessee",2645 +2004-05-01,"U.S.",213645 +2004-05-01,"South Dakota",545 +2004-05-01,"Louisiana",2032 +2004-05-01,"Illinois",15424 +2004-05-01,"Florida",1069 +2004-05-01,"New Mexico",1729 +2004-05-01,"North Dakota",526 +2004-05-01,"Ohio",12495 +2004-05-01,"Kentucky",1484 +2004-05-01,"Oregon",2077 +2004-05-01,"North Carolina",1953 +2004-05-01,"Vermont",177 +2004-05-01,"Nevada",1724 +2004-05-01,"Georgia",4585 +2004-05-01,"Minnesota",5673 +2004-05-01,"Hawaii",44 +2004-05-01,"West Virginia",1262 +2004-05-01,"Maine",47 +2004-05-01,"Kansas",2726 +2004-05-01,"Virginia",2021 +2004-05-01,"Connecticut",2144 2004-05-01,"Wyoming",629 +2004-05-01,"Massachusetts",5472 +2004-05-01,"Missouri",4660 +2004-05-01,"Pennsylvania",9906 +2004-05-01,"Arizona",1705 +2004-05-01,"District of Columbia",382 +2004-05-01,"Alabama",1960 +2004-05-01,"Nebraska",1692 +2004-05-01,"Arkansas",1446 +2004-06-01,"Colorado",3512 +2004-06-01,"South Carolina",556 +2004-06-01,"Vermont",98 +2004-06-01,"Utah",1328 +2004-06-01,"District of Columbia",284 +2004-06-01,"Delaware",219 +2004-06-01,"Kansas",1697 +2004-06-01,"Kentucky",1133 +2004-06-01,"North Dakota",270 +2004-06-01,"Georgia",4039 +2004-06-01,"Minnesota",3492 +2004-06-01,"Virginia",1635 +2004-06-01,"Missouri",2880 +2004-06-01,"South Dakota",355 +2004-06-01,"Louisiana",1643 +2004-06-01,"Iowa",1570 +2004-06-01,"Idaho",713 +2004-06-01,"Mississippi",679 +2004-06-01,"Oklahoma",1753 +2004-06-01,"Indiana",3050 +2004-06-01,"Alabama",1216 +2004-06-01,"Alaska",538 +2004-06-01,"Illinois",11154 +2004-06-01,"West Virginia",484 +2004-06-01,"Oregon",1557 +2004-06-01,"Connecticut",1449 +2004-06-01,"Wisconsin",3250 +2004-06-01,"Montana",856 +2004-06-01,"Florida",832 +2004-06-01,"Maine",32 +2004-06-01,"Texas",6469 +2004-06-01,"Michigan",9343 +2004-06-01,"Washington",2842 +2004-06-01,"California",26967 +2004-06-01,"U.S.",144885 +2004-06-01,"Pennsylvania",6559 +2004-06-01,"Maryland",1657 +2004-06-01,"New Jersey",6026 +2004-06-01,"Tennessee",1387 +2004-06-01,"New Hampshire",203 +2004-06-01,"Hawaii",42 +2004-06-01,"Ohio",6750 +2004-06-01,"Arizona",1254 +2004-06-01,"North Carolina",1228 +2004-06-01,"New Mexico",996 +2004-06-01,"Nevada",1419 2004-06-01,"Wyoming",419 +2004-06-01,"Massachusetts",3434 +2004-06-01,"Arkansas",863 +2004-06-01,"Rhode Island",643 +2004-06-01,"New York",13061 +2004-06-01,"Nebraska",1051 +2004-07-01,"Rhode Island",495 +2004-07-01,"Louisiana",1584 +2004-07-01,"Washington",1860 +2004-07-01,"North Carolina",1115 +2004-07-01,"U.S.",124882 +2004-07-01,"Connecticut",1049 +2004-07-01,"Maryland",1659 +2004-07-01,"Vermont",68 +2004-07-01,"Mississippi",675 +2004-07-01,"Massachusetts",3659 +2004-07-01,"Pennsylvania",5036 +2004-07-01,"Ohio",6665 +2004-07-01,"Idaho",461 +2004-07-01,"Indiana",2705 +2004-07-01,"Alabama",1138 +2004-07-01,"Delaware",193 +2004-07-01,"Nebraska",908 +2004-07-01,"Iowa",1142 +2004-07-01,"Arkansas",802 +2004-07-01,"Illinois",9702 +2004-07-01,"South Carolina",500 +2004-07-01,"Wisconsin",2798 +2004-07-01,"Nevada",1190 +2004-07-01,"Texas",6094 +2004-07-01,"Tennessee",1258 +2004-07-01,"Virginia",1414 +2004-07-01,"Missouri",2374 +2004-07-01,"South Dakota",201 +2004-07-01,"Arizona",1128 +2004-07-01,"Kentucky",1070 +2004-07-01,"Montana",553 +2004-07-01,"Kansas",1483 +2004-07-01,"Michigan",7772 +2004-07-01,"New Hampshire",163 +2004-07-01,"Hawaii",44 +2004-07-01,"West Virginia",486 +2004-07-01,"New Mexico",870 +2004-07-01,"Oklahoma",1488 2004-07-01,"Wyoming",306 +2004-07-01,"Utah",1607 +2004-07-01,"New Jersey",5433 +2004-07-01,"Georgia",3556 +2004-07-01,"Minnesota",2637 +2004-07-01,"Colorado",2837 +2004-07-01,"Alaska",467 +2004-07-01,"Oregon",1006 +2004-07-01,"California",24110 +2004-07-01,"Florida",733 +2004-07-01,"Maine",28 +2004-07-01,"New York",9913 +2004-07-01,"District of Columbia",245 +2004-07-01,"North Dakota",201 +2004-08-01,"Pennsylvania",4682 +2004-08-01,"Hawaii",40 +2004-08-01,"Idaho",395 +2004-08-01,"Maine",28 2004-08-01,"Wyoming",278 +2004-08-01,"Virginia",1784 +2004-08-01,"Oregon",799 +2004-08-01,"Montana",382 +2004-08-01,"North Carolina",1047 +2004-08-01,"Indiana",3019 +2004-08-01,"Utah",1585 +2004-08-01,"Texas",5611 +2004-08-01,"Tennessee",1182 +2004-08-01,"Alabama",1072 +2004-08-01,"Delaware",180 +2004-08-01,"Missouri",2096 +2004-08-01,"Illinois",9767 +2004-08-01,"Iowa",1433 +2004-08-01,"Kentucky",1048 +2004-08-01,"South Carolina",479 +2004-08-01,"Wisconsin",2627 +2004-08-01,"Oklahoma",1331 +2004-08-01,"Massachusetts",2928 +2004-08-01,"New Jersey",5428 +2004-08-01,"Alaska",513 +2004-08-01,"West Virginia",449 +2004-08-01,"Connecticut",1060 +2004-08-01,"Georgia",3685 +2004-08-01,"South Dakota",255 +2004-08-01,"Michigan",7060 +2004-08-01,"Louisiana",1430 +2004-08-01,"Arizona",1050 +2004-08-01,"Maryland",2023 +2004-08-01,"California",22446 +2004-08-01,"Vermont",64 +2004-08-01,"New York",9358 +2004-08-01,"Nevada",1083 +2004-08-01,"Nebraska",854 +2004-08-01,"Colorado",2893 +2004-08-01,"New Hampshire",178 +2004-08-01,"Rhode Island",427 +2004-08-01,"Mississippi",644 +2004-08-01,"New Mexico",836 +2004-08-01,"District of Columbia",374 +2004-08-01,"Kansas",1331 +2004-08-01,"Ohio",6002 +2004-08-01,"Washington",1598 +2004-08-01,"Arkansas",778 +2004-08-01,"Florida",713 +2004-08-01,"North Dakota",230 +2004-08-01,"U.S.",119809 +2004-08-01,"Minnesota",3253 +2004-09-01,"Michigan",7971 +2004-09-01,"Oregon",998 +2004-09-01,"Washington",2024 +2004-09-01,"South Carolina",515 +2004-09-01,"Florida",740 +2004-09-01,"Georgia",3801 +2004-09-01,"Arkansas",820 +2004-09-01,"Colorado",3971 +2004-09-01,"Illinois",9744 +2004-09-01,"Hawaii",39 +2004-09-01,"Kentucky",1131 +2004-09-01,"Wisconsin",2770 +2004-09-01,"Nevada",1216 +2004-09-01,"District of Columbia",275 +2004-09-01,"Texas",5892 +2004-09-01,"Kansas",1330 +2004-09-01,"Virginia",1659 +2004-09-01,"Louisiana",1541 +2004-09-01,"Iowa",1378 +2004-09-01,"Maryland",1712 +2004-09-01,"New Mexico",863 +2004-09-01,"New York",9587 +2004-09-01,"U.S.",124924 +2004-09-01,"New Hampshire",201 +2004-09-01,"Idaho",535 +2004-09-01,"Connecticut",1038 +2004-09-01,"Montana",587 +2004-09-01,"Indiana",2970 +2004-09-01,"Utah",2277 +2004-09-01,"Alaska",1065 +2004-09-01,"West Virginia",491 +2004-09-01,"California",21547 +2004-09-01,"Maine",32 +2004-09-01,"Oklahoma",1381 +2004-09-01,"Missouri",2660 +2004-09-01,"Nebraska",800 +2004-09-01,"South Dakota",269 +2004-09-01,"Rhode Island",435 +2004-09-01,"Pennsylvania",5028 +2004-09-01,"Ohio",6567 +2004-09-01,"Mississippi",641 +2004-09-01,"Tennessee",1267 +2004-09-01,"North Dakota",286 +2004-09-01,"Alabama",1124 +2004-09-01,"Arizona",1156 +2004-09-01,"North Carolina",1003 +2004-09-01,"Vermont",76 2004-09-01,"Wyoming",382 +2004-09-01,"Massachusetts",2583 +2004-09-01,"Delaware",199 +2004-09-01,"New Jersey",5387 +2004-09-01,"Minnesota",2960 +2004-10-01,"Colorado",7553 +2004-10-01,"Ohio",14824 +2004-10-01,"Arizona",1492 +2004-10-01,"Maryland",4299 +2004-10-01,"Vermont",110 +2004-10-01,"Hawaii",40 +2004-10-01,"New York",15734 +2004-10-01,"Utah",4253 +2004-10-01,"Massachusetts",4066 +2004-10-01,"Alabama",1241 +2004-10-01,"Kansas",1798 +2004-10-01,"Virginia",3485 +2004-10-01,"Michigan",15721 +2004-10-01,"Alaska",1552 +2004-10-01,"Idaho",813 +2004-10-01,"New Mexico",1203 +2004-10-01,"Indiana",6836 +2004-10-01,"Georgia",4666 +2004-10-01,"Louisiana",1579 +2004-10-01,"West Virginia",1065 +2004-10-01,"U.S.",216417 +2004-10-01,"Delaware",345 +2004-10-01,"South Carolina",597 +2004-10-01,"Wisconsin",6840 +2004-10-01,"Montana",1135 +2004-10-01,"Texas",6637 +2004-10-01,"Tennessee",1537 +2004-10-01,"Missouri",3419 +2004-10-01,"Arkansas",985 +2004-10-01,"Pennsylvania",10532 +2004-10-01,"Iowa",2913 +2004-10-01,"Kentucky",1927 +2004-10-01,"Oregon",1471 +2004-10-01,"Connecticut",1841 +2004-10-01,"Florida",787 +2004-10-01,"Maine",62 +2004-10-01,"Nevada",1587 2004-10-01,"Wyoming",747 +2004-10-01,"New Jersey",9624 +2004-10-01,"South Dakota",605 +2004-10-01,"Illinois",21618 +2004-10-01,"Washington",3494 +2004-10-01,"Mississippi",771 +2004-10-01,"Oklahoma",1562 +2004-10-01,"District of Columbia",723 +2004-10-01,"New Hampshire",260 +2004-10-01,"Rhode Island",594 +2004-10-01,"North Carolina",1600 +2004-10-01,"California",30541 +2004-10-01,"North Dakota",710 +2004-10-01,"Minnesota",7283 +2004-10-01,"Nebraska",1341 +2004-11-01,"New Hampshire",528 +2004-11-01,"Connecticut",3006 +2004-11-01,"Indiana",13604 +2004-11-01,"Tennessee",2921 +2004-11-01,"U.S.",407202 +2004-11-01,"Alabama",1887 +2004-11-01,"Virginia",7720 +2004-11-01,"Missouri",6808 +2004-11-01,"South Dakota",1119 +2004-11-01,"Pennsylvania",19662 +2004-11-01,"Arizona",2844 +2004-11-01,"Wisconsin",12477 +2004-11-01,"New Mexico",2681 +2004-11-01,"Oklahoma",2950 +2004-11-01,"Nevada",3498 2004-11-01,"Wyoming",1324 +2004-11-01,"Massachusetts",8241 +2004-11-01,"Ohio",26200 +2004-11-01,"Maryland",7437 +2004-11-01,"North Carolina",4216 +2004-11-01,"Maine",104 +2004-11-01,"Kansas",4051 +2004-11-01,"Alaska",2006 +2004-11-01,"Kentucky",4674 +2004-11-01,"West Virginia",1959 +2004-11-01,"New York",29113 +2004-11-01,"New Jersey",19039 +2004-11-01,"Georgia",10650 +2004-11-01,"Delaware",818 +2004-11-01,"Arkansas",1864 +2004-11-01,"Iowa",5408 +2004-11-01,"Oregon",3569 +2004-11-01,"Idaho",2054 +2004-11-01,"Vermont",252 +2004-11-01,"Michigan",30501 +2004-11-01,"Louisiana",1997 +2004-11-01,"Illinois",40606 +2004-11-01,"Hawaii",41 +2004-11-01,"Washington",7531 +2004-11-01,"California",49852 +2004-11-01,"North Dakota",1085 +2004-11-01,"Rhode Island",1359 +2004-11-01,"South Carolina",1480 +2004-11-01,"Montana",1930 +2004-11-01,"Mississippi",1458 +2004-11-01,"Minnesota",12461 +2004-11-01,"Colorado",15431 +2004-11-01,"Florida",932 +2004-11-01,"Utah",7395 +2004-11-01,"District of Columbia",1307 +2004-11-01,"Texas",14683 +2004-11-01,"Nebraska",2469 +2004-12-01,"Michigan",52522 +2004-12-01,"Louisiana",4832 +2004-12-01,"Iowa",10957 +2004-12-01,"Oregon",5709 +2004-12-01,"Maryland",13553 +2004-12-01,"New York",48400 +2004-12-01,"Indiana",25999 +2004-12-01,"Utah",9265 +2004-12-01,"New Jersey",32498 +2004-12-01,"U.S.",725603 +2004-12-01,"Arkansas",4805 +2004-12-01,"Alaska",2469 +2004-12-01,"Rhode Island",2116 +2004-12-01,"Ohio",47645 +2004-12-01,"Wisconsin",23127 +2004-12-01,"North Carolina",9656 +2004-12-01,"Oklahoma",8458 2004-12-01,"Wyoming",1757 +2004-12-01,"Missouri",15707 +2004-12-01,"Kentucky",10369 +2004-12-01,"Washington",10366 +2004-12-01,"California",74682 +2004-12-01,"New Mexico",5124 +2004-12-01,"District of Columbia",2280 +2004-12-01,"Tennessee",8948 +2004-12-01,"Georgia",23572 +2004-12-01,"Kansas",10101 +2004-12-01,"Mississippi",3669 +2004-12-01,"Minnesota",21840 +2004-12-01,"Virginia",13547 +2004-12-01,"Nebraska",5190 +2004-12-01,"South Dakota",1907 +2004-12-01,"Hawaii",45 +2004-12-01,"Arizona",6406 +2004-12-01,"Idaho",3225 +2004-12-01,"Connecticut",5661 +2004-12-01,"Massachusetts",13721 +2004-12-01,"North Dakota",1753 +2004-12-01,"Alabama",5420 +2004-12-01,"Illinois",74592 +2004-12-01,"West Virginia",3974 +2004-12-01,"South Carolina",4049 +2004-12-01,"Florida",1603 +2004-12-01,"Texas",29668 +2004-12-01,"Colorado",19344 +2004-12-01,"Montana",2861 +2004-12-01,"Maine",179 +2004-12-01,"Delaware",1509 +2004-12-01,"New Hampshire",850 +2004-12-01,"Pennsylvania",33211 +2004-12-01,"Vermont",385 +2004-12-01,"Nevada",6075 +2005-01-01,"Oregon",6861 +2005-01-01,"Washington",12508 +2005-01-01,"South Carolina",5723 +2005-01-01,"Nevada",6833 +2005-01-01,"Tennessee",13370 +2005-01-01,"Kentucky",10892 +2005-01-01,"Connecticut",7922 +2005-01-01,"Vermont",541 +2005-01-01,"Mississippi",4666 +2005-01-01,"Utah",9909 +2005-01-01,"Massachusetts",19096 +2005-01-01,"Virginia",17045 +2005-01-01,"Missouri",22031 +2005-01-01,"South Dakota",2398 +2005-01-01,"Illinois",85849 +2005-01-01,"Arizona",7170 +2005-01-01,"North Carolina",12601 +2005-01-01,"New York",66148 2005-01-01,"Wyoming",1942 +2005-01-01,"Michigan",66635 +2005-01-01,"West Virginia",5162 +2005-01-01,"Indiana",29442 +2005-01-01,"District of Columbia",2858 +2005-01-01,"Delaware",2031 +2005-01-01,"Kansas",13910 +2005-01-01,"Arkansas",6841 +2005-01-01,"Colorado",20489 +2005-01-01,"New Hampshire",1346 +2005-01-01,"Rhode Island",3120 +2005-01-01,"Louisiana",8496 +2005-01-01,"Pennsylvania",44640 +2005-01-01,"Wisconsin",25678 +2005-01-01,"Oklahoma",12708 +2005-01-01,"North Dakota",2201 +2005-01-01,"Georgia",21620 +2005-01-01,"U.S.",892345 +2005-01-01,"Minnesota",26485 +2005-01-01,"Alaska",2734 +2005-01-01,"Hawaii",50 +2005-01-01,"Ohio",60120 +2005-01-01,"Maryland",16612 +2005-01-01,"Montana",3879 +2005-01-01,"Florida",2411 +2005-01-01,"New Mexico",5990 +2005-01-01,"Iowa",14348 +2005-01-01,"Idaho",3792 +2005-01-01,"California",76870 +2005-01-01,"Texas",39852 +2005-01-01,"Maine",208 +2005-01-01,"New Jersey",41748 +2005-01-01,"Alabama",8212 +2005-01-01,"Nebraska",8350 +2005-02-01,"Louisiana",6879 +2005-02-01,"Arizona",5600 +2005-02-01,"Washington",9921 +2005-02-01,"North Carolina",11599 +2005-02-01,"California",62924 +2005-02-01,"Oklahoma",11340 2005-02-01,"Wyoming",1685 +2005-02-01,"Michigan",58551 +2005-02-01,"Ohio",51491 +2005-02-01,"Wisconsin",18937 +2005-02-01,"Texas",32025 +2005-02-01,"Delaware",1824 +2005-02-01,"Missouri",18953 +2005-02-01,"Arkansas",6007 +2005-02-01,"Alaska",2239 +2005-02-01,"West Virginia",5469 +2005-02-01,"Idaho",3278 +2005-02-01,"South Carolina",5325 +2005-02-01,"Vermont",537 +2005-02-01,"New York",68368 +2005-02-01,"Kansas",11374 +2005-02-01,"Virginia",13932 +2005-02-01,"Illinois",63390 +2005-02-01,"Mississippi",3932 +2005-02-01,"Massachusetts",19689 +2005-02-01,"New Hampshire",1308 +2005-02-01,"Pennsylvania",41862 +2005-02-01,"Hawaii",44 +2005-02-01,"Florida",2254 +2005-02-01,"Tennessee",12627 +2005-02-01,"Connecticut",7531 +2005-02-01,"Utah",8520 +2005-02-01,"North Dakota",1583 +2005-02-01,"Alabama",7670 +2005-02-01,"Colorado",16463 +2005-02-01,"Maryland",13433 +2005-02-01,"Montana",2663 +2005-02-01,"Maine",174 +2005-02-01,"New Mexico",5440 +2005-02-01,"Indiana",22075 +2005-02-01,"New Jersey",39591 +2005-02-01,"U.S.",759126 +2005-02-01,"Minnesota",18580 +2005-02-01,"South Dakota",1857 +2005-02-01,"Rhode Island",3461 +2005-02-01,"Iowa",10285 +2005-02-01,"Kentucky",8481 +2005-02-01,"Oregon",5816 +2005-02-01,"Nevada",5631 +2005-02-01,"District of Columbia",2005 +2005-02-01,"Georgia",17769 +2005-02-01,"Nebraska",6736 +2005-03-01,"Rhode Island",2997 +2005-03-01,"Iowa",9044 +2005-03-01,"North Carolina",9662 +2005-03-01,"Oklahoma",7882 +2005-03-01,"Indiana",21390 +2005-03-01,"Tennessee",10024 +2005-03-01,"Michigan",54522 +2005-03-01,"New Hampshire",1170 +2005-03-01,"Louisiana",5276 +2005-03-01,"Hawaii",46 +2005-03-01,"Idaho",2365 +2005-03-01,"Connecticut",6682 +2005-03-01,"Vermont",495 +2005-03-01,"District of Columbia",1952 +2005-03-01,"Massachusetts",20684 +2005-03-01,"North Dakota",1377 +2005-03-01,"U.S.",678019 +2005-03-01,"Kansas",8386 +2005-03-01,"Virginia",12540 +2005-03-01,"Montana",2291 +2005-03-01,"Florida",1955 +2005-03-01,"Georgia",15920 +2005-03-01,"South Dakota",1520 +2005-03-01,"South Carolina",4209 +2005-03-01,"New York",65007 +2005-03-01,"Delaware",1705 +2005-03-01,"Colorado",15332 +2005-03-01,"Ohio",49971 +2005-03-01,"Washington",8268 +2005-03-01,"Maryland",12315 +2005-03-01,"California",50895 +2005-03-01,"Utah",6983 +2005-03-01,"New Jersey",36983 +2005-03-01,"Texas",23000 +2005-03-01,"Pennsylvania",39536 +2005-03-01,"Maine",171 +2005-03-01,"New Mexico",4597 +2005-03-01,"Nevada",3894 +2005-03-01,"Alabama",5914 +2005-03-01,"Nebraska",5151 +2005-03-01,"Kentucky",8516 +2005-03-01,"Wisconsin",18643 +2005-03-01,"Mississippi",3030 2005-03-01,"Wyoming",1448 +2005-03-01,"Minnesota",17278 +2005-03-01,"Arkansas",4743 +2005-03-01,"Alaska",1901 +2005-03-01,"Illinois",61412 +2005-03-01,"Arizona",4435 +2005-03-01,"West Virginia",5157 +2005-03-01,"Oregon",4374 +2005-03-01,"Missouri",14969 +2005-04-01,"Oregon",3787 +2005-04-01,"Montana",1745 +2005-04-01,"Mississippi",1608 +2005-04-01,"Indiana",9080 +2005-04-01,"Massachusetts",12144 +2005-04-01,"North Dakota",640 +2005-04-01,"Michigan",30243 +2005-04-01,"Colorado",10372 +2005-04-01,"Illinois",26819 +2005-04-01,"Hawaii",49 +2005-04-01,"Iowa",4536 +2005-04-01,"South Carolina",2179 +2005-04-01,"North Carolina",5311 +2005-04-01,"Utah",6432 +2005-04-01,"Arizona",3027 +2005-04-01,"Wisconsin",8694 2005-04-01,"Wyoming",1179 +2005-04-01,"Virginia",5010 +2005-04-01,"South Dakota",947 +2005-04-01,"Rhode Island",2214 +2005-04-01,"Louisiana",2898 +2005-04-01,"Pennsylvania",20678 +2005-04-01,"West Virginia",2534 +2005-04-01,"Idaho",2118 +2005-04-01,"California",40258 +2005-04-01,"Florida",1547 +2005-04-01,"Vermont",302 +2005-04-01,"New Jersey",18650 +2005-04-01,"Texas",12685 +2005-04-01,"U.S.",384163 +2005-04-01,"Alaska",1323 +2005-04-01,"New Hampshire",746 +2005-04-01,"Kentucky",3375 +2005-04-01,"Connecticut",4323 +2005-04-01,"New Mexico",3655 +2005-04-01,"District of Columbia",703 +2005-04-01,"Tennessee",5979 +2005-04-01,"Alabama",3600 +2005-04-01,"Kansas",5234 +2005-04-01,"Missouri",8224 +2005-04-01,"Nebraska",3023 +2005-04-01,"Ohio",24426 +2005-04-01,"Maryland",5731 +2005-04-01,"Maine",86 +2005-04-01,"New York",41926 +2005-04-01,"Nevada",3081 +2005-04-01,"Georgia",7502 +2005-04-01,"Washington",7088 +2005-04-01,"Oklahoma",5187 +2005-04-01,"Minnesota",7279 +2005-04-01,"Delaware",790 +2005-04-01,"Arkansas",3195 +2005-05-01,"Washington",3692 +2005-05-01,"Montana",1188 +2005-05-01,"California",31785 +2005-05-01,"Rhode Island",1162 +2005-05-01,"Louisiana",1885 +2005-05-01,"New York",26332 +2005-05-01,"Nebraska",1947 +2005-05-01,"New Hampshire",449 +2005-05-01,"South Carolina",1064 +2005-05-01,"Connecticut",2448 +2005-05-01,"Wisconsin",6385 +2005-05-01,"Nevada",2044 +2005-05-01,"Tennessee",2939 +2005-05-01,"North Dakota",561 +2005-05-01,"Georgia",5055 +2005-05-01,"Alabama",2028 +2005-05-01,"Missouri",4983 +2005-05-01,"Arkansas",1533 +2005-05-01,"South Dakota",640 +2005-05-01,"Colorado",5798 +2005-05-01,"Ohio",15669 +2005-05-01,"Kentucky",2113 +2005-05-01,"North Carolina",2771 +2005-05-01,"Maine",63 +2005-05-01,"Massachusetts",6600 +2005-05-01,"Texas",8028 +2005-05-01,"Michigan",19529 +2005-05-01,"Alaska",869 +2005-05-01,"Idaho",1155 +2005-05-01,"Florida",1094 +2005-05-01,"Indiana",5971 +2005-05-01,"U.S.",247525 +2005-05-01,"Virginia",3305 +2005-05-01,"Arizona",1857 +2005-05-01,"West Virginia",1660 +2005-05-01,"Mississippi",1092 +2005-05-01,"Oklahoma",2866 +2005-05-01,"Utah",3925 +2005-05-01,"District of Columbia",555 +2005-05-01,"New Jersey",11646 +2005-05-01,"Illinois",18505 +2005-05-01,"Pennsylvania",12263 +2005-05-01,"Hawaii",47 +2005-05-01,"Iowa",3119 +2005-05-01,"Oregon",2311 +2005-05-01,"Maryland",3495 2005-05-01,"Wyoming",847 +2005-05-01,"Vermont",180 +2005-05-01,"New Mexico",1891 +2005-05-01,"Minnesota",6603 +2005-05-01,"Delaware",468 +2005-05-01,"Kansas",3109 +2005-06-01,"Michigan",9668 +2005-06-01,"Connecticut",1505 +2005-06-01,"South Dakota",307 +2005-06-01,"Iowa",1482 +2005-06-01,"Washington",2879 +2005-06-01,"Montana",791 +2005-06-01,"California",28351 +2005-06-01,"Vermont",116 +2005-06-01,"Utah",2526 +2005-06-01,"Louisiana",1574 +2005-06-01,"New Mexico",1070 +2005-06-01,"New York",14675 +2005-06-01,"New Jersey",6110 +2005-06-01,"Georgia",3934 +2005-06-01,"Minnesota",3556 +2005-06-01,"Missouri",2597 +2005-06-01,"South Carolina",580 +2005-06-01,"North Carolina",1450 +2005-06-01,"Texas",6470 +2005-06-01,"North Dakota",279 +2005-06-01,"U.S.",152020 +2005-06-01,"Nebraska",990 +2005-06-01,"Arkansas",868 +2005-06-01,"Alaska",581 +2005-06-01,"New Hampshire",288 +2005-06-01,"Hawaii",42 +2005-06-01,"West Virginia",636 +2005-06-01,"Oregon",1668 +2005-06-01,"Illinois",10470 +2005-06-01,"Pennsylvania",6431 +2005-06-01,"Arizona",1382 +2005-06-01,"Idaho",752 +2005-06-01,"Florida",905 +2005-06-01,"Maine",30 2005-06-01,"Wyoming",463 +2005-06-01,"Tennessee",1640 +2005-06-01,"Virginia",1948 +2005-06-01,"Colorado",3179 +2005-06-01,"Rhode Island",831 +2005-06-01,"Ohio",7507 +2005-06-01,"Kentucky",1158 +2005-06-01,"Oklahoma",1767 +2005-06-01,"Nevada",1633 +2005-06-01,"Alabama",1313 +2005-06-01,"Maryland",2209 +2005-06-01,"Wisconsin",2792 +2005-06-01,"Mississippi",769 +2005-06-01,"Indiana",3119 +2005-06-01,"District of Columbia",374 +2005-06-01,"Massachusetts",4446 +2005-06-01,"Delaware",276 +2005-06-01,"Kansas",1633 +2005-07-01,"Alaska",506 +2005-07-01,"Illinois",9337 +2005-07-01,"Oregon",1101 +2005-07-01,"South Carolina",498 +2005-07-01,"Montana",484 +2005-07-01,"Vermont",64 +2005-07-01,"New Jersey",5255 +2005-07-01,"Texas",6008 +2005-07-01,"West Virginia",399 +2005-07-01,"Oklahoma",1377 +2005-07-01,"Nevada",1173 +2005-07-01,"North Dakota",185 +2005-07-01,"Nebraska",830 +2005-07-01,"Rhode Island",504 +2005-07-01,"Hawaii",36 +2005-07-01,"North Carolina",1203 +2005-07-01,"Maine",28 +2005-07-01,"Tennessee",1197 +2005-07-01,"U.S.",122282 +2005-07-01,"Minnesota",2751 +2005-07-01,"Delaware",197 +2005-07-01,"South Dakota",238 +2005-07-01,"New Hampshire",182 +2005-07-01,"Louisiana",1459 +2005-07-01,"Iowa",1387 +2005-07-01,"Washington",2015 +2005-07-01,"Florida",799 +2005-07-01,"Mississippi",716 +2005-07-01,"New Mexico",880 +2005-07-01,"Kansas",1352 +2005-07-01,"Arkansas",760 +2005-07-01,"Colorado",2847 +2005-07-01,"Ohio",6148 +2005-07-01,"Maryland",1771 +2005-07-01,"New York",10303 +2005-07-01,"Michigan",7108 +2005-07-01,"Kentucky",1105 +2005-07-01,"Connecticut",1056 +2005-07-01,"Massachusetts",2727 +2005-07-01,"Alabama",1120 +2005-07-01,"Virginia",1555 +2005-07-01,"Missouri",2117 +2005-07-01,"Pennsylvania",4598 +2005-07-01,"Wisconsin",2562 +2005-07-01,"California",23745 +2005-07-01,"Indiana",2902 +2005-07-01,"Utah",1807 +2005-07-01,"Georgia",3637 +2005-07-01,"Arizona",1155 +2005-07-01,"Idaho",503 2005-07-01,"Wyoming",277 +2005-07-01,"District of Columbia",321 +2005-08-01,"New Hampshire",152 +2005-08-01,"Rhode Island",411 +2005-08-01,"Hawaii",40 +2005-08-01,"Iowa",1243 +2005-08-01,"Oregon",855 +2005-08-01,"Connecticut",899 +2005-08-01,"Florida",742 +2005-08-01,"Nevada",1115 +2005-08-01,"Utah",1347 +2005-08-01,"New Jersey",5182 +2005-08-01,"U.S.",112600 +2005-08-01,"Colorado",2867 +2005-08-01,"Ohio",5704 +2005-08-01,"New Mexico",827 +2005-08-01,"Alabama",1048 +2005-08-01,"Virginia",1401 +2005-08-01,"Louisiana",1427 +2005-08-01,"Arizona",1053 +2005-08-01,"Maine",30 +2005-08-01,"North Dakota",202 +2005-08-01,"Delaware",181 +2005-08-01,"South Dakota",265 +2005-08-01,"Michigan",5970 +2005-08-01,"West Virginia",396 +2005-08-01,"Mississippi",665 +2005-08-01,"Oklahoma",1271 +2005-08-01,"Massachusetts",2304 +2005-08-01,"Minnesota",2630 +2005-08-01,"Nebraska",774 +2005-08-01,"Kentucky",1057 +2005-08-01,"Idaho",379 +2005-08-01,"South Carolina",444 +2005-08-01,"Maryland",1758 +2005-08-01,"Illinois",8472 +2005-08-01,"Washington",1683 +2005-08-01,"North Carolina",1024 +2005-08-01,"California",21897 +2005-08-01,"New York",9527 +2005-08-01,"Tennessee",1122 +2005-08-01,"Georgia",3712 +2005-08-01,"Missouri",1924 +2005-08-01,"Wisconsin",2739 +2005-08-01,"Indiana",2581 +2005-08-01,"Texas",5536 +2005-08-01,"Alaska",563 +2005-08-01,"Pennsylvania",4296 +2005-08-01,"Montana",440 +2005-08-01,"Vermont",61 2005-08-01,"Wyoming",234 +2005-08-01,"District of Columbia",219 +2005-08-01,"Kansas",1238 +2005-08-01,"Arkansas",695 +2005-09-01,"New Hampshire",164 +2005-09-01,"Arizona",1144 +2005-09-01,"Kentucky",979 +2005-09-01,"South Carolina",515 +2005-09-01,"Montana",548 +2005-09-01,"Florida",762 +2005-09-01,"Mississippi",630 +2005-09-01,"Utah",1645 +2005-09-01,"Massachusetts",2471 +2005-09-01,"Missouri",2340 +2005-09-01,"Alaska",843 +2005-09-01,"Louisiana",921 +2005-09-01,"Oregon",1013 +2005-09-01,"Washington",2063 +2005-09-01,"Maryland",1537 2005-09-01,"Wyoming",285 +2005-09-01,"New Jersey",4991 +2005-09-01,"Texas",5879 +2005-09-01,"Tennessee",1258 +2005-09-01,"U.S.",118261 +2005-09-01,"Arkansas",738 +2005-09-01,"Iowa",1306 +2005-09-01,"Wisconsin",2557 +2005-09-01,"Colorado",3173 +2005-09-01,"Hawaii",40 +2005-09-01,"Connecticut",980 +2005-09-01,"Nevada",1279 +2005-09-01,"Indiana",2852 +2005-09-01,"Rhode Island",463 +2005-09-01,"West Virginia",419 +2005-09-01,"California",23432 +2005-09-01,"Oklahoma",1280 +2005-09-01,"South Dakota",251 +2005-09-01,"Ohio",5751 +2005-09-01,"District of Columbia",300 +2005-09-01,"North Dakota",222 +2005-09-01,"Georgia",3615 +2005-09-01,"Virginia",1621 +2005-09-01,"Michigan",6898 +2005-09-01,"Pennsylvania",4538 +2005-09-01,"North Carolina",1087 +2005-09-01,"Maine",28 +2005-09-01,"New York",9247 +2005-09-01,"Alabama",1056 +2005-09-01,"Nebraska",823 +2005-09-01,"Illinois",8761 +2005-09-01,"Idaho",537 +2005-09-01,"Vermont",68 +2005-09-01,"New Mexico",869 +2005-09-01,"Minnesota",2641 +2005-09-01,"Delaware",182 +2005-09-01,"Kansas",1257 +2005-10-01,"Pennsylvania",8949 +2005-10-01,"Kentucky",2383 +2005-10-01,"Wisconsin",6067 +2005-10-01,"Utah",2329 +2005-10-01,"Missouri",2963 +2005-10-01,"New Hampshire",246 +2005-10-01,"Rhode Island",507 +2005-10-01,"Louisiana",1741 +2005-10-01,"Maryland",3826 +2005-10-01,"Florida",818 2005-10-01,"Wyoming",528 +2005-10-01,"District of Columbia",585 +2005-10-01,"South Dakota",573 +2005-10-01,"Michigan",14127 +2005-10-01,"West Virginia",756 +2005-10-01,"California",28502 +2005-10-01,"Maine",59 +2005-10-01,"Mississippi",984 +2005-10-01,"New Mexico",1081 +2005-10-01,"Massachusetts",3800 +2005-10-01,"Tennessee",1438 +2005-10-01,"Kansas",1866 +2005-10-01,"Virginia",3617 +2005-10-01,"Colorado",7672 +2005-10-01,"Oklahoma",1470 +2005-10-01,"North Dakota",601 +2005-10-01,"Georgia",6238 +2005-10-01,"U.S.",202172 +2005-10-01,"Nebraska",1142 +2005-10-01,"Illinois",20443 +2005-10-01,"Montana",1112 +2005-10-01,"Texas",6711 +2005-10-01,"Alabama",1137 +2005-10-01,"Alaska",1662 +2005-10-01,"Washington",3631 +2005-10-01,"North Carolina",1724 +2005-10-01,"New York",14360 +2005-10-01,"Nevada",1623 +2005-10-01,"New Jersey",7946 +2005-10-01,"Hawaii",35 +2005-10-01,"Arizona",1379 +2005-10-01,"Vermont",98 +2005-10-01,"Indiana",6446 +2005-10-01,"Arkansas",930 +2005-10-01,"Ohio",13766 +2005-10-01,"Iowa",2642 +2005-10-01,"Oregon",1632 +2005-10-01,"Idaho",923 +2005-10-01,"South Carolina",825 +2005-10-01,"Connecticut",1616 +2005-10-01,"Minnesota",6376 +2005-10-01,"Delaware",285 +2005-11-01,"District of Columbia",1425 +2005-11-01,"Alabama",2641 +2005-11-01,"Michigan",29292 +2005-11-01,"Ohio",27303 +2005-11-01,"Iowa",5853 +2005-11-01,"Kentucky",5280 +2005-11-01,"Nevada",2513 +2005-11-01,"U.S.",387025 +2005-11-01,"Kansas",4301 +2005-11-01,"New Hampshire",534 +2005-11-01,"Maryland",7843 +2005-11-01,"Oklahoma",2979 +2005-11-01,"New Jersey",17217 +2005-11-01,"North Dakota",1135 +2005-11-01,"Rhode Island",1130 +2005-11-01,"Illinois",42598 +2005-11-01,"Pennsylvania",18786 +2005-11-01,"Idaho",1919 +2005-11-01,"Florida",1092 +2005-11-01,"New Mexico",2100 +2005-11-01,"Utah",3730 +2005-11-01,"Georgia",11566 +2005-11-01,"Delaware",721 +2005-11-01,"Alaska",2584 +2005-11-01,"West Virginia",2339 +2005-11-01,"South Carolina",2118 +2005-11-01,"Wisconsin",12988 +2005-11-01,"Montana",1655 +2005-11-01,"North Carolina",4739 +2005-11-01,"California",35080 +2005-11-01,"Virginia",7627 +2005-11-01,"Missouri",7482 +2005-11-01,"South Dakota",1063 +2005-11-01,"Maine",102 +2005-11-01,"Texas",10798 +2005-11-01,"Minnesota",12888 +2005-11-01,"Louisiana",2852 +2005-11-01,"Washington",7456 +2005-11-01,"Connecticut",3349 +2005-11-01,"New York",27186 +2005-11-01,"Nebraska",2340 +2005-11-01,"Arkansas",2165 +2005-11-01,"Colorado",13372 +2005-11-01,"Hawaii",42 +2005-11-01,"Arizona",2183 +2005-11-01,"Oregon",3407 +2005-11-01,"Vermont",224 +2005-11-01,"Mississippi",1944 +2005-11-01,"Indiana",14319 2005-11-01,"Wyoming",948 +2005-11-01,"Massachusetts",7764 +2005-11-01,"Tennessee",4052 +2005-12-01,"Michigan",56082 +2005-12-01,"Louisiana",5746 +2005-12-01,"Hawaii",44 +2005-12-01,"Idaho",3881 +2005-12-01,"Minnesota",21557 +2005-12-01,"Kansas",11263 +2005-12-01,"Virginia",15754 +2005-12-01,"South Dakota",2154 +2005-12-01,"Florida",1745 +2005-12-01,"Maine",170 +2005-12-01,"New Jersey",35745 +2005-12-01,"Nebraska",5858 +2005-12-01,"Rhode Island",2288 +2005-12-01,"Illinois",81516 +2005-12-01,"Ohio",54842 +2005-12-01,"New York",53098 2005-12-01,"Wyoming",1825 +2005-12-01,"North Dakota",1707 +2005-12-01,"Delaware",1679 +2005-12-01,"Alaska",2224 +2005-12-01,"New Hampshire",1207 +2005-12-01,"Iowa",12025 +2005-12-01,"North Carolina",10695 +2005-12-01,"Mississippi",4429 +2005-12-01,"Oklahoma",9245 +2005-12-01,"Utah",8890 +2005-12-01,"U.S.",771237 +2005-12-01,"Arizona",5380 +2005-12-01,"Washington",12420 +2005-12-01,"Texas",28133 +2005-12-01,"Tennessee",10630 +2005-12-01,"Arkansas",5131 +2005-12-01,"Colorado",22692 +2005-12-01,"Pennsylvania",38521 +2005-12-01,"Oregon",6982 +2005-12-01,"South Carolina",5058 +2005-12-01,"California",59959 +2005-12-01,"Vermont",402 +2005-12-01,"New Mexico",4844 +2005-12-01,"Massachusetts",16893 +2005-12-01,"Missouri",18273 +2005-12-01,"Kentucky",10803 +2005-12-01,"Maryland",15238 +2005-12-01,"Wisconsin",23173 +2005-12-01,"Montana",3038 +2005-12-01,"Nevada",5578 +2005-12-01,"Alabama",6318 +2005-12-01,"West Virginia",4868 +2005-12-01,"Connecticut",6211 +2005-12-01,"Indiana",28478 +2005-12-01,"District of Columbia",2556 +2005-12-01,"Georgia",23991 +2006-01-01,"Michigan",51990 +2006-01-01,"Illinois",62158 +2006-01-01,"North Carolina",10928 +2006-01-01,"Mississippi",3932 +2006-01-01,"Texas",30497 +2006-01-01,"Minnesota",18305 +2006-01-01,"Nebraska",6258 +2006-01-01,"South Dakota",1656 +2006-01-01,"Pennsylvania",35942 +2006-01-01,"Wisconsin",18195 +2006-01-01,"Oklahoma",10195 +2006-01-01,"Colorado",17381 +2006-01-01,"Alaska",3324 +2006-01-01,"Idaho",3702 +2006-01-01,"Florida",2506 +2006-01-01,"Maine",153 +2006-01-01,"New York",57895 +2006-01-01,"Utah",10103 +2006-01-01,"New Hampshire",1183 +2006-01-01,"Ohio",44333 +2006-01-01,"Kentucky",7727 +2006-01-01,"West Virginia",4679 +2006-01-01,"Massachusetts",18408 +2006-01-01,"Virginia",12364 +2006-01-01,"Missouri",17821 +2006-01-01,"Arkansas",5651 +2006-01-01,"Rhode Island",2914 +2006-01-01,"Nevada",6188 +2006-01-01,"District of Columbia",1857 +2006-01-01,"Tennessee",12251 +2006-01-01,"U.S.",713698 +2006-01-01,"Alabama",7838 +2006-01-01,"Kansas",10890 +2006-01-01,"Hawaii",49 +2006-01-01,"Oregon",6471 +2006-01-01,"California",65421 2006-01-01,"Wyoming",1798 +2006-01-01,"New Jersey",34405 +2006-01-01,"Arizona",6235 +2006-01-01,"Iowa",10163 +2006-01-01,"New Mexico",5103 +2006-01-01,"North Dakota",1425 +2006-01-01,"Delaware",1743 +2006-01-01,"Louisiana",5987 +2006-01-01,"Washington",10414 +2006-01-01,"South Carolina",4785 +2006-01-01,"Connecticut",6808 +2006-01-01,"Maryland",12372 +2006-01-01,"Montana",2889 +2006-01-01,"Vermont",480 +2006-01-01,"Indiana",20108 +2006-01-01,"Georgia",17817 +2006-02-01,"Louisiana",5382 +2006-02-01,"Washington",11287 +2006-02-01,"Connecticut",6015 +2006-02-01,"Texas",25942 +2006-02-01,"Alaska",2233 +2006-02-01,"Idaho",3509 +2006-02-01,"Montana",2659 +2006-02-01,"Indiana",21807 +2006-02-01,"District of Columbia",2035 +2006-02-01,"Kansas",9547 +2006-02-01,"Colorado",18603 +2006-02-01,"Illinois",67517 +2006-02-01,"South Carolina",4618 +2006-02-01,"Missouri",16459 +2006-02-01,"Michigan",51632 +2006-02-01,"Hawaii",43 +2006-02-01,"Oregon",6150 +2006-02-01,"Vermont",445 +2006-02-01,"New Mexico",5061 +2006-02-01,"Nevada",5415 +2006-02-01,"New Jersey",34106 +2006-02-01,"Nebraska",5325 +2006-02-01,"Pennsylvania",35609 +2006-02-01,"California",55662 +2006-02-01,"Georgia",19201 +2006-02-01,"Minnesota",20393 +2006-02-01,"Alabama",6402 +2006-02-01,"New Hampshire",1043 +2006-02-01,"Rhode Island",2298 +2006-02-01,"Ohio",46972 +2006-02-01,"Arizona",5727 +2006-02-01,"Maryland",13031 +2006-02-01,"Wisconsin",20461 +2006-02-01,"North Carolina",9647 +2006-02-01,"Florida",2261 +2006-02-01,"Oklahoma",8450 +2006-02-01,"Utah",8992 +2006-02-01,"Tennessee",10927 +2006-02-01,"Delaware",1700 +2006-02-01,"Virginia",13064 +2006-02-01,"South Dakota",1906 +2006-02-01,"West Virginia",4570 +2006-02-01,"Mississippi",3676 +2006-02-01,"U.S.",702280 +2006-02-01,"Iowa",10552 +2006-02-01,"Kentucky",8534 +2006-02-01,"Maine",166 +2006-02-01,"New York",59815 2006-02-01,"Wyoming",1698 +2006-02-01,"Massachusetts",16580 +2006-02-01,"North Dakota",1686 +2006-02-01,"Arkansas",5467 +2006-03-01,"Idaho",2961 +2006-03-01,"Utah",8165 +2006-03-01,"Tennessee",9273 +2006-03-01,"Nebraska",5951 +2006-03-01,"New Hampshire",1119 +2006-03-01,"Hawaii",47 +2006-03-01,"South Carolina",3305 +2006-03-01,"Maryland",9292 +2006-03-01,"Vermont",492 +2006-03-01,"Mississippi",2886 +2006-03-01,"Nevada",5206 +2006-03-01,"New Jersey",31475 +2006-03-01,"Texas",23936 +2006-03-01,"Georgia",12421 +2006-03-01,"Louisiana",3526 +2006-03-01,"Illinois",54075 +2006-03-01,"Kentucky",6134 +2006-03-01,"West Virginia",4193 +2006-03-01,"North Carolina",7791 +2006-03-01,"District of Columbia",1503 +2006-03-01,"Pennsylvania",31866 +2006-03-01,"Iowa",8725 +2006-03-01,"Maine",142 +2006-03-01,"New York",55702 +2006-03-01,"Minnesota",15676 +2006-03-01,"South Dakota",1580 +2006-03-01,"Michigan",46363 +2006-03-01,"Colorado",15870 +2006-03-01,"Ohio",40541 +2006-03-01,"Arizona",4915 +2006-03-01,"Connecticut",6341 +2006-03-01,"Wisconsin",16017 +2006-03-01,"Florida",1807 +2006-03-01,"Montana",2800 +2006-03-01,"Oklahoma",7624 +2006-03-01,"Alaska",2198 +2006-03-01,"Rhode Island",2774 +2006-03-01,"Washington",10365 +2006-03-01,"Indiana",17987 2006-03-01,"Wyoming",1673 +2006-03-01,"Massachusetts",17143 +2006-03-01,"North Dakota",1353 +2006-03-01,"Alabama",5337 +2006-03-01,"Delaware",1346 +2006-03-01,"Kansas",8223 +2006-03-01,"Virginia",10271 +2006-03-01,"Oregon",6085 +2006-03-01,"California",68793 +2006-03-01,"New Mexico",4165 +2006-03-01,"U.S.",625925 +2006-03-01,"Missouri",13583 +2006-03-01,"Arkansas",4907 +2006-04-01,"Louisiana",2219 +2006-04-01,"Pennsylvania",17012 +2006-04-01,"Kentucky",2801 +2006-04-01,"Delaware",710 +2006-04-01,"Kansas",4427 +2006-04-01,"Alaska",1683 +2006-04-01,"Rhode Island",2094 +2006-04-01,"Washington",6762 +2006-04-01,"Idaho",2132 +2006-04-01,"Connecticut",3662 +2006-04-01,"Montana",1813 +2006-04-01,"Mississippi",1514 +2006-04-01,"New Jersey",16112 +2006-04-01,"Texas",11741 +2006-04-01,"Iowa",4421 +2006-04-01,"Maryland",4455 +2006-04-01,"Oklahoma",4439 +2006-04-01,"Ohio",19397 +2006-04-01,"Oregon",3858 +2006-04-01,"Tennessee",4846 +2006-04-01,"Georgia",5345 +2006-04-01,"U.S.",355496 +2006-04-01,"Michigan",27486 +2006-04-01,"South Carolina",1677 +2006-04-01,"Florida",1345 +2006-04-01,"Vermont",288 +2006-04-01,"District of Columbia",600 +2006-04-01,"Missouri",7433 +2006-04-01,"Nebraska",3510 +2006-04-01,"Hawaii",47 +2006-04-01,"Arizona",3120 +2006-04-01,"Maine",87 +2006-04-01,"New Mexico",2768 +2006-04-01,"New York",33443 +2006-04-01,"Utah",6167 +2006-04-01,"North Dakota",565 +2006-04-01,"Minnesota",6969 +2006-04-01,"Alabama",3006 +2006-04-01,"Arkansas",2631 +2006-04-01,"Colorado",8243 +2006-04-01,"North Carolina",4414 +2006-04-01,"Nevada",3334 +2006-04-01,"South Dakota",870 +2006-04-01,"New Hampshire",689 +2006-04-01,"Illinois",34812 +2006-04-01,"West Virginia",2280 +2006-04-01,"Wisconsin",8047 +2006-04-01,"California",47329 +2006-04-01,"Indiana",7713 2006-04-01,"Wyoming",1115 +2006-04-01,"Massachusetts",10286 +2006-04-01,"Virginia",3785 +2006-05-01,"Pennsylvania",8861 +2006-05-01,"Kentucky",1443 +2006-05-01,"Tennessee",1795 +2006-05-01,"Delaware",343 +2006-05-01,"Louisiana",1368 +2006-05-01,"Vermont",163 +2006-05-01,"Texas",6993 +2006-05-01,"North Dakota",365 +2006-05-01,"Colorado",4581 +2006-05-01,"New Hampshire",371 +2006-05-01,"Rhode Island",1216 +2006-05-01,"Illinois",19116 +2006-05-01,"Connecticut",2327 +2006-05-01,"Utah",2983 +2006-05-01,"New Jersey",7601 +2006-05-01,"Nebraska",1736 +2006-05-01,"South Dakota",495 +2006-05-01,"South Carolina",676 +2006-05-01,"Florida",1020 +2006-05-01,"New Mexico",1313 +2006-05-01,"District of Columbia",442 +2006-05-01,"Massachusetts",6223 +2006-05-01,"Georgia",4477 +2006-05-01,"Iowa",2416 +2006-05-01,"West Virginia",1145 +2006-05-01,"Washington",4308 +2006-05-01,"Maryland",2508 +2006-05-01,"California",32929 +2006-05-01,"Nevada",1816 +2006-05-01,"Kansas",2088 +2006-05-01,"Virginia",2510 +2006-05-01,"Arizona",1769 +2006-05-01,"Wisconsin",5083 +2006-05-01,"Maine",52 +2006-05-01,"Mississippi",411 +2006-05-01,"Oklahoma",1938 +2006-05-01,"New York",18971 +2006-05-01,"Minnesota",4679 +2006-05-01,"Missouri",3610 +2006-05-01,"Michigan",14390 +2006-05-01,"Ohio",11557 +2006-05-01,"Oregon",2225 +2006-05-01,"Montana",1090 +2006-05-01,"North Carolina",1879 +2006-05-01,"Indiana",5205 2006-05-01,"Wyoming",703 +2006-05-01,"U.S.",203512 +2006-05-01,"Arkansas",1081 +2006-05-01,"Alaska",910 +2006-05-01,"Hawaii",47 +2006-05-01,"Idaho",947 +2006-05-01,"Alabama",1337 +2006-06-01,"Colorado",2727 +2006-06-01,"Arizona",1344 +2006-06-01,"Florida",867 +2006-06-01,"Mississippi",577 +2006-06-01,"Indiana",3054 +2006-06-01,"District of Columbia",280 +2006-06-01,"Tennessee",1485 +2006-06-01,"Alabama",1147 +2006-06-01,"Nebraska",1037 +2006-06-01,"Michigan",8889 +2006-06-01,"Rhode Island",758 +2006-06-01,"Pennsylvania",5671 +2006-06-01,"West Virginia",618 +2006-06-01,"Maryland",1972 +2006-06-01,"New Mexico",943 +2006-06-01,"U.S.",141157 +2006-06-01,"Alaska",725 +2006-06-01,"Illinois",10853 +2006-06-01,"Hawaii",44 +2006-06-01,"Iowa",1578 +2006-06-01,"Idaho",660 +2006-06-01,"Nevada",1515 2006-06-01,"Wyoming",363 +2006-06-01,"Texas",6310 +2006-06-01,"Minnesota",3211 +2006-06-01,"Missouri",2651 +2006-06-01,"Ohio",6942 +2006-06-01,"Kentucky",1133 +2006-06-01,"Georgia",3661 +2006-06-01,"Kansas",1545 +2006-06-01,"South Dakota",275 +2006-06-01,"New Hampshire",259 +2006-06-01,"Wisconsin",3209 +2006-06-01,"New York",12339 +2006-06-01,"New Jersey",6020 +2006-06-01,"North Dakota",211 +2006-06-01,"Arkansas",879 +2006-06-01,"Oregon",1403 +2006-06-01,"Washington",2647 +2006-06-01,"South Carolina",549 +2006-06-01,"Connecticut",1372 +2006-06-01,"Oklahoma",1536 +2006-06-01,"Utah",2172 +2006-06-01,"Delaware",232 +2006-06-01,"Louisiana",1392 +2006-06-01,"North Carolina",1418 +2006-06-01,"Maine",18 +2006-06-01,"Vermont",113 +2006-06-01,"Massachusetts",3985 +2006-06-01,"Montana",613 +2006-06-01,"California",26417 +2006-06-01,"Virginia",1537 +2006-07-01,"Rhode Island",491 +2006-07-01,"Maryland",1654 2006-07-01,"Wyoming",245 +2006-07-01,"District of Columbia",294 +2006-07-01,"Tennessee",1167 +2006-07-01,"Georgia",3488 +2006-07-01,"Virginia",1594 +2006-07-01,"Montana",425 +2006-07-01,"Vermont",70 +2006-07-01,"Mississippi",579 +2006-07-01,"Nevada",1237 +2006-07-01,"North Dakota",178 +2006-07-01,"U.S.",115586 +2006-07-01,"Missouri",1757 +2006-07-01,"Arizona",1135 +2006-07-01,"Kentucky",921 +2006-07-01,"Idaho",472 +2006-07-01,"North Carolina",1175 +2006-07-01,"New Mexico",831 +2006-07-01,"Indiana",2454 +2006-07-01,"Utah",1523 +2006-07-01,"Iowa",1587 +2006-07-01,"Connecticut",935 +2006-07-01,"California",21133 +2006-07-01,"Minnesota",2625 +2006-07-01,"Delaware",192 +2006-07-01,"Michigan",6662 +2006-07-01,"Pennsylvania",4279 +2006-07-01,"Ohio",5722 +2006-07-01,"South Carolina",490 +2006-07-01,"New Hampshire",174 +2006-07-01,"West Virginia",355 +2006-07-01,"Maine",30 +2006-07-01,"Massachusetts",2713 +2006-07-01,"Texas",5573 +2006-07-01,"Alabama",986 +2006-07-01,"South Dakota",273 +2006-07-01,"Louisiana",1252 +2006-07-01,"Illinois",10060 +2006-07-01,"Hawaii",42 +2006-07-01,"Wisconsin",2617 +2006-07-01,"Oklahoma",1395 +2006-07-01,"New Jersey",5385 +2006-07-01,"Nebraska",814 +2006-07-01,"Colorado",2847 +2006-07-01,"Alaska",574 +2006-07-01,"Oregon",975 +2006-07-01,"Washington",1887 +2006-07-01,"Florida",794 +2006-07-01,"New York",9517 +2006-07-01,"Kansas",1283 +2006-07-01,"Arkansas",724 +2006-08-01,"Pennsylvania",4148 +2006-08-01,"Oregon",868 +2006-08-01,"Massachusetts",2348 +2006-08-01,"Arizona",1081 +2006-08-01,"Wisconsin",2457 +2006-08-01,"Oklahoma",1164 +2006-08-01,"Nevada",1147 +2006-08-01,"Utah",1425 +2006-08-01,"Texas",5382 +2006-08-01,"Minnesota",2546 +2006-08-01,"Virginia",1499 +2006-08-01,"South Dakota",213 +2006-08-01,"Michigan",6257 +2006-08-01,"Rhode Island",404 +2006-08-01,"Hawaii",39 +2006-08-01,"Iowa",1277 +2006-08-01,"Idaho",403 +2006-08-01,"Mississippi",572 +2006-08-01,"New York",8311 +2006-08-01,"Indiana",2611 2006-08-01,"Wyoming",228 +2006-08-01,"Alabama",908 +2006-08-01,"Missouri",1768 +2006-08-01,"Alaska",698 +2006-08-01,"Montana",396 +2006-08-01,"Maine",27 +2006-08-01,"Washington",1721 +2006-08-01,"Connecticut",979 +2006-08-01,"District of Columbia",259 +2006-08-01,"New Jersey",4566 +2006-08-01,"Tennessee",1068 +2006-08-01,"Delaware",176 +2006-08-01,"Colorado",2712 +2006-08-01,"Illinois",9068 +2006-08-01,"West Virginia",365 +2006-08-01,"South Carolina",422 +2006-08-01,"Maryland",1617 +2006-08-01,"Vermont",62 +2006-08-01,"North Dakota",170 +2006-08-01,"Louisiana",1224 +2006-08-01,"North Carolina",980 +2006-08-01,"California",20893 +2006-08-01,"New Hampshire",152 +2006-08-01,"Ohio",5341 +2006-08-01,"Kentucky",947 +2006-08-01,"Florida",731 +2006-08-01,"New Mexico",820 +2006-08-01,"Georgia",3428 +2006-08-01,"U.S.",108439 +2006-08-01,"Kansas",1149 +2006-08-01,"Nebraska",769 +2006-08-01,"Arkansas",642 +2006-09-01,"Colorado",4258 +2006-09-01,"Illinois",9738 +2006-09-01,"Oregon",1055 +2006-09-01,"Washington",2136 +2006-09-01,"Nevada",1287 +2006-09-01,"Indiana",3232 +2006-09-01,"Utah",1708 +2006-09-01,"Tennessee",1128 +2006-09-01,"Arkansas",751 +2006-09-01,"South Carolina",541 +2006-09-01,"Vermont",78 +2006-09-01,"Massachusetts",2770 +2006-09-01,"North Dakota",282 +2006-09-01,"Virginia",1909 +2006-09-01,"Missouri",2098 +2006-09-01,"South Dakota",314 +2006-09-01,"Florida",747 +2006-09-01,"Maine",30 +2006-09-01,"Mississippi",619 +2006-09-01,"Texas",5334 +2006-09-01,"U.S.",124922 +2006-09-01,"Nebraska",834 +2006-09-01,"Alaska",946 +2006-09-01,"Iowa",1508 +2006-09-01,"Kentucky",1069 +2006-09-01,"Connecticut",1055 +2006-09-01,"Montana",557 +2006-09-01,"Delaware",182 +2006-09-01,"Pennsylvania",4770 +2006-09-01,"Hawaii",39 +2006-09-01,"Ohio",5995 +2006-09-01,"Maryland",2121 +2006-09-01,"Wisconsin",3431 2006-09-01,"Wyoming",308 +2006-09-01,"Michigan",7843 +2006-09-01,"Rhode Island",473 +2006-09-01,"New Jersey",5621 +2006-09-01,"Minnesota",3536 +2006-09-01,"New Hampshire",173 +2006-09-01,"Louisiana",1241 +2006-09-01,"Arizona",1204 +2006-09-01,"Idaho",595 +2006-09-01,"California",22020 +2006-09-01,"New Mexico",887 +2006-09-01,"Oklahoma",1266 +2006-09-01,"Kansas",1264 +2006-09-01,"West Virginia",500 +2006-09-01,"North Carolina",1153 +2006-09-01,"New York",9353 +2006-09-01,"District of Columbia",359 +2006-09-01,"Georgia",3693 +2006-09-01,"Alabama",913 +2006-10-01,"Alaska",1594 +2006-10-01,"Illinois",23866 +2006-10-01,"Iowa",3853 +2006-10-01,"North Carolina",2399 +2006-10-01,"California",28106 +2006-10-01,"Louisiana",1402 +2006-10-01,"West Virginia",1159 +2006-10-01,"Connecticut",1743 +2006-10-01,"Montana",1191 +2006-10-01,"New York",18626 +2006-10-01,"Texas",6430 +2006-10-01,"Delaware",363 +2006-10-01,"Nevada",1878 2006-10-01,"Wyoming",695 +2006-10-01,"Michigan",19647 +2006-10-01,"Rhode Island",589 +2006-10-01,"Maryland",4315 +2006-10-01,"North Dakota",800 +2006-10-01,"Minnesota",8795 +2006-10-01,"Kansas",2058 +2006-10-01,"South Dakota",815 +2006-10-01,"Washington",3880 +2006-10-01,"Maine",60 +2006-10-01,"New Jersey",9337 +2006-10-01,"Tennessee",1775 +2006-10-01,"U.S.",240448 +2006-10-01,"Alabama",1223 +2006-10-01,"Virginia",4454 +2006-10-01,"Arkansas",1123 +2006-10-01,"Hawaii",39 +2006-10-01,"Arizona",1544 +2006-10-01,"Georgia",6975 +2006-10-01,"Nebraska",1433 +2006-10-01,"Oregon",1712 +2006-10-01,"Idaho",1052 +2006-10-01,"Wisconsin",9516 +2006-10-01,"Vermont",122 +2006-10-01,"New Mexico",1217 +2006-10-01,"Indiana",8899 +2006-10-01,"Utah",2823 +2006-10-01,"District of Columbia",799 +2006-10-01,"Massachusetts",4103 +2006-10-01,"Missouri",3669 +2006-10-01,"Colorado",8577 +2006-10-01,"New Hampshire",281 +2006-10-01,"Pennsylvania",10899 +2006-10-01,"Ohio",17546 +2006-10-01,"Kentucky",2974 +2006-10-01,"South Carolina",958 +2006-10-01,"Florida",789 +2006-10-01,"Mississippi",764 +2006-10-01,"Oklahoma",1579 +2006-11-01,"Hawaii",40 +2006-11-01,"Utah",5126 +2006-11-01,"Tennessee",5685 +2006-11-01,"Georgia",12749 +2006-11-01,"Minnesota",13068 +2006-11-01,"Pennsylvania",18771 +2006-11-01,"Vermont",226 +2006-11-01,"Colorado",14259 +2006-11-01,"Alaska",3197 +2006-11-01,"Rhode Island",1121 +2006-11-01,"Arizona",2407 +2006-11-01,"Iowa",6231 +2006-11-01,"Oregon",3892 +2006-11-01,"Connecticut",3226 +2006-11-01,"California",37412 +2006-11-01,"Florida",1058 +2006-11-01,"New York",30329 +2006-11-01,"District of Columbia",1175 +2006-11-01,"Texas",11696 +2006-11-01,"Missouri",9628 +2006-11-01,"Nebraska",3132 +2006-11-01,"Arkansas",2844 +2006-11-01,"Louisiana",3132 +2006-11-01,"Maryland",7461 +2006-11-01,"North Carolina",5954 +2006-11-01,"Indiana",14392 +2006-11-01,"Massachusetts",7594 +2006-11-01,"New Hampshire",493 +2006-11-01,"Ohio",28561 +2006-11-01,"Kentucky",5807 +2006-11-01,"West Virginia",2623 +2006-11-01,"Idaho",2408 +2006-11-01,"Oklahoma",4179 +2006-11-01,"Washington",8040 +2006-11-01,"Maine",84 +2006-11-01,"New Mexico",2470 +2006-11-01,"New Jersey",16732 +2006-11-01,"Alabama",3228 +2006-11-01,"Michigan",32900 +2006-11-01,"Wisconsin",12580 +2006-11-01,"Montana",2048 +2006-11-01,"Nevada",2823 +2006-11-01,"North Dakota",1224 +2006-11-01,"Virginia",7460 +2006-11-01,"South Dakota",1243 +2006-11-01,"Illinois",40401 +2006-11-01,"South Carolina",2708 +2006-11-01,"Mississippi",2414 2006-11-01,"Wyoming",1179 +2006-11-01,"U.S.",413409 +2006-11-01,"Delaware",808 +2006-11-01,"Kansas",5189 +2006-12-01,"Arizona",5575 +2006-12-01,"Idaho",3608 +2006-12-01,"Texas",26392 +2006-12-01,"U.S.",623595 +2006-12-01,"Alabama",5806 +2006-12-01,"Pennsylvania",27985 +2006-12-01,"Minnesota",17350 +2006-12-01,"Arkansas",4795 +2006-12-01,"Kentucky",7889 +2006-12-01,"Oregon",6350 +2006-12-01,"Wisconsin",18953 +2006-12-01,"Montana",2966 +2006-12-01,"Florida",1716 +2006-12-01,"Hawaii",43 +2006-12-01,"Oklahoma",8967 +2006-12-01,"Utah",8829 +2006-12-01,"District of Columbia",1810 +2006-12-01,"Tennessee",9618 +2006-12-01,"Delaware",1317 +2006-12-01,"Michigan",41710 +2006-12-01,"West Virginia",3597 +2006-12-01,"Connecticut",4607 +2006-12-01,"New York",42153 +2006-12-01,"Nevada",6092 +2006-12-01,"Indiana",20185 +2006-12-01,"Virginia",11246 +2006-12-01,"Nebraska",5097 +2006-12-01,"New Hampshire",780 +2006-12-01,"Louisiana",5310 +2006-12-01,"Ohio",39354 +2006-12-01,"Iowa",9533 +2006-12-01,"California",65663 2006-12-01,"Wyoming",1669 +2006-12-01,"North Dakota",1385 +2006-12-01,"South Dakota",1874 +2006-12-01,"Rhode Island",1738 +2006-12-01,"Washington",12044 +2006-12-01,"South Carolina",4198 +2006-12-01,"Maryland",10546 +2006-12-01,"Vermont",335 +2006-12-01,"New Mexico",4856 +2006-12-01,"New Jersey",25844 +2006-12-01,"Kansas",9416 +2006-12-01,"Colorado",19212 +2006-12-01,"Alaska",2533 +2006-12-01,"Illinois",56566 +2006-12-01,"North Carolina",8768 +2006-12-01,"Maine",137 +2006-12-01,"Mississippi",3536 +2006-12-01,"Massachusetts",11729 +2006-12-01,"Georgia",16992 +2006-12-01,"Missouri",14918 +2007-01-01,"Arizona",9010 +2007-01-01,"Oklahoma",12091 +2007-01-01,"New York",57091 +2007-01-01,"Minnesota",22886 +2007-01-01,"Kansas",12021 +2007-01-01,"Arkansas",6153 +2007-01-01,"Kentucky",9755 +2007-01-01,"Mississippi",5002 +2007-01-01,"Utah",11868 +2007-01-01,"District of Columbia",2164 +2007-01-01,"New Jersey",35171 +2007-01-01,"Texas",41545 +2007-01-01,"Nebraska",6539 +2007-01-01,"Rhode Island",2258 +2007-01-01,"Hawaii",49 +2007-01-01,"Nevada",8093 +2007-01-01,"Alaska",2841 +2007-01-01,"Idaho",4359 +2007-01-01,"South Carolina",4757 +2007-01-01,"Maryland",13309 +2007-01-01,"Wisconsin",22699 +2007-01-01,"Maine",181 +2007-01-01,"Alabama",6088 +2007-01-01,"Missouri",17889 +2007-01-01,"Illinois",67974 +2007-01-01,"Pennsylvania",35326 +2007-01-01,"Iowa",12059 +2007-01-01,"Oregon",7886 +2007-01-01,"Connecticut",6075 +2007-01-01,"Florida",1776 +2007-01-01,"Vermont",438 +2007-01-01,"New Mexico",6769 +2007-01-01,"Georgia",21312 +2007-01-01,"South Dakota",2270 +2007-01-01,"Colorado",27751 +2007-01-01,"Washington",13609 +2007-01-01,"Montana",3422 +2007-01-01,"California",85741 +2007-01-01,"Indiana",25476 +2007-01-01,"Tennessee",11015 +2007-01-01,"U.S.",803075 +2007-01-01,"Michigan",51772 +2007-01-01,"New Hampshire",1053 +2007-01-01,"Ohio",49323 +2007-01-01,"West Virginia",4242 +2007-01-01,"North Carolina",10618 2007-01-01,"Wyoming",2122 +2007-01-01,"North Dakota",1906 +2007-01-01,"Louisiana",7858 +2007-01-01,"Massachusetts",16069 +2007-01-01,"Delaware",1561 +2007-01-01,"Virginia",13833 +2007-02-01,"Michigan",64856 +2007-02-01,"North Carolina",12847 +2007-02-01,"Maine",207 +2007-02-01,"Nevada",5982 +2007-02-01,"Massachusetts",21522 +2007-02-01,"Nebraska",7965 +2007-02-01,"Colorado",19019 +2007-02-01,"Illinois",90231 +2007-02-01,"Kentucky",10940 +2007-02-01,"Idaho",3859 +2007-02-01,"South Carolina",5659 +2007-02-01,"California",62484 +2007-02-01,"Utah",10560 +2007-02-01,"Texas",43863 +2007-02-01,"Arkansas",7629 +2007-02-01,"New Hampshire",1365 +2007-02-01,"Hawaii",45 +2007-02-01,"Indiana",31311 +2007-02-01,"New Jersey",44605 +2007-02-01,"Rhode Island",3232 +2007-02-01,"Ohio",62940 +2007-02-01,"Iowa",13981 +2007-02-01,"Oregon",6842 +2007-02-01,"Connecticut",7861 +2007-02-01,"Maryland",18189 +2007-02-01,"Montana",3188 +2007-02-01,"Vermont",589 +2007-02-01,"North Dakota",1874 +2007-02-01,"U.S.",899461 +2007-02-01,"Washington",11561 +2007-02-01,"Mississippi",3850 +2007-02-01,"New York",71739 +2007-02-01,"District of Columbia",2848 +2007-02-01,"Tennessee",14465 +2007-02-01,"Alabama",8118 +2007-02-01,"Virginia",17539 +2007-02-01,"Missouri",22993 +2007-02-01,"Alaska",2545 +2007-02-01,"Arizona",7144 +2007-02-01,"West Virginia",5694 +2007-02-01,"Florida",2229 +2007-02-01,"Oklahoma",14241 +2007-02-01,"Delaware",2133 +2007-02-01,"Kansas",13846 +2007-02-01,"Louisiana",6419 +2007-02-01,"Pennsylvania",47087 +2007-02-01,"Wisconsin",25909 2007-02-01,"Wyoming",2010 +2007-02-01,"Georgia",20687 +2007-02-01,"Minnesota",24101 +2007-02-01,"South Dakota",2386 +2007-02-01,"New Mexico",6276 +2007-03-01,"Arizona",4506 +2007-03-01,"West Virginia",4898 +2007-03-01,"Oregon",4832 +2007-03-01,"South Carolina",3143 +2007-03-01,"Indiana",15791 +2007-03-01,"U.S.",616531 +2007-03-01,"Missouri",14175 +2007-03-01,"Idaho",2611 +2007-03-01,"Connecticut",6991 +2007-03-01,"Vermont",541 2007-03-01,"Wyoming",1530 +2007-03-01,"Utah",7470 +2007-03-01,"Alaska",2709 +2007-03-01,"Pennsylvania",34741 +2007-03-01,"North Carolina",8108 +2007-03-01,"Florida",1979 +2007-03-01,"New Mexico",4802 +2007-03-01,"Oklahoma",7957 +2007-03-01,"New York",60533 +2007-03-01,"District of Columbia",1522 +2007-03-01,"Tennessee",9852 +2007-03-01,"North Dakota",1228 +2007-03-01,"Nebraska",6496 +2007-03-01,"Rhode Island",3162 +2007-03-01,"Ohio",38942 +2007-03-01,"Washington",9168 +2007-03-01,"Wisconsin",14363 +2007-03-01,"Massachusetts",18808 +2007-03-01,"New Jersey",30977 +2007-03-01,"Alabama",5368 +2007-03-01,"South Dakota",1499 +2007-03-01,"Michigan",47952 +2007-03-01,"Iowa",8387 +2007-03-01,"Maine",162 +2007-03-01,"Nevada",4061 +2007-03-01,"Texas",25022 +2007-03-01,"Minnesota",14935 +2007-03-01,"Virginia",9879 +2007-03-01,"Arkansas",4225 +2007-03-01,"Mississippi",2793 +2007-03-01,"Georgia",9756 +2007-03-01,"Kansas",8222 +2007-03-01,"New Hampshire",1227 +2007-03-01,"Hawaii",42 +2007-03-01,"Kentucky",5915 +2007-03-01,"California",49689 +2007-03-01,"Delaware",1594 +2007-03-01,"Colorado",12351 +2007-03-01,"Louisiana",4525 +2007-03-01,"Illinois",64487 +2007-03-01,"Maryland",10280 +2007-03-01,"Montana",2325 +2007-04-01,"Louisiana",2429 +2007-04-01,"Hawaii",45 +2007-04-01,"Idaho",1826 +2007-04-01,"North Carolina",4405 +2007-04-01,"Utah",4689 +2007-04-01,"Michigan",32434 +2007-04-01,"New Hampshire",779 +2007-04-01,"Connecticut",4825 +2007-04-01,"Montana",1700 +2007-04-01,"Mississippi",1168 +2007-04-01,"Georgia",8309 +2007-04-01,"Minnesota",10351 +2007-04-01,"Pennsylvania",23982 +2007-04-01,"Iowa",5814 +2007-04-01,"West Virginia",2305 +2007-04-01,"Oregon",3471 +2007-04-01,"Wisconsin",11580 +2007-04-01,"Indiana",11712 +2007-04-01,"Massachusetts",12742 +2007-04-01,"North Dakota",835 +2007-04-01,"Missouri",8447 +2007-04-01,"Alaska",1536 +2007-04-01,"South Carolina",1838 +2007-04-01,"Maryland",6995 +2007-04-01,"Texas",12667 +2007-04-01,"Colorado",10369 +2007-04-01,"Illinois",40110 +2007-04-01,"Arizona",2362 +2007-04-01,"California",37437 +2007-04-01,"Vermont",367 +2007-04-01,"New Mexico",2600 +2007-04-01,"Delaware",916 +2007-04-01,"Nebraska",3221 +2007-04-01,"New York",41630 +2007-04-01,"Nevada",2447 +2007-04-01,"Kansas",4691 +2007-04-01,"Rhode Island",2169 +2007-04-01,"Ohio",28250 +2007-04-01,"Washington",6770 +2007-04-01,"Maine",110 2007-04-01,"Wyoming",1091 +2007-04-01,"District of Columbia",1093 +2007-04-01,"New Jersey",19022 +2007-04-01,"Tennessee",4286 +2007-04-01,"U.S.",407708 +2007-04-01,"Alabama",2562 +2007-04-01,"Virginia",6179 +2007-04-01,"Arkansas",2395 +2007-04-01,"South Dakota",1036 +2007-04-01,"Kentucky",4088 +2007-04-01,"Florida",1448 +2007-04-01,"Oklahoma",4172 +2007-05-01,"Pennsylvania",10004 +2007-05-01,"Hawaii",41 +2007-05-01,"North Carolina",2440 2007-05-01,"Wyoming",718 +2007-05-01,"Arkansas",1461 +2007-05-01,"Ohio",10358 +2007-05-01,"Nevada",1969 +2007-05-01,"District of Columbia",427 +2007-05-01,"U.S.",215724 +2007-05-01,"Michigan",15696 +2007-05-01,"Alaska",1033 +2007-05-01,"Florida",1145 +2007-05-01,"Oklahoma",2684 +2007-05-01,"New Jersey",8036 +2007-05-01,"North Dakota",350 +2007-05-01,"Utah",3237 +2007-05-01,"Texas",9616 +2007-05-01,"Colorado",5509 +2007-05-01,"Illinois",19505 +2007-05-01,"West Virginia",736 +2007-05-01,"Oregon",2525 +2007-05-01,"South Carolina",960 +2007-05-01,"Connecticut",2140 +2007-05-01,"Maine",51 +2007-05-01,"New Mexico",1892 +2007-05-01,"New York",20828 +2007-05-01,"Massachusetts",6402 +2007-05-01,"Tennessee",2674 +2007-05-01,"Virginia",2689 +2007-05-01,"Rhode Island",1291 +2007-05-01,"Louisiana",1870 +2007-05-01,"Washington",4683 +2007-05-01,"Idaho",1130 +2007-05-01,"Wisconsin",4145 +2007-05-01,"Mississippi",1057 +2007-05-01,"Minnesota",4046 +2007-05-01,"South Dakota",401 +2007-05-01,"New Hampshire",417 +2007-05-01,"Arizona",1840 +2007-05-01,"Kentucky",1573 +2007-05-01,"Maryland",2547 +2007-05-01,"California",32317 +2007-05-01,"Vermont",187 +2007-05-01,"Georgia",4380 +2007-05-01,"Alabama",1811 +2007-05-01,"Missouri",4101 +2007-05-01,"Iowa",2472 +2007-05-01,"Montana",1071 +2007-05-01,"Indiana",4198 +2007-05-01,"Delaware",421 +2007-05-01,"Kansas",2709 +2007-05-01,"Nebraska",1930 +2007-06-01,"Arizona",1385 +2007-06-01,"Iowa",1397 +2007-06-01,"Maine",33 +2007-06-01,"Mississippi",409 +2007-06-01,"New Jersey",5625 +2007-06-01,"Kansas",1544 +2007-06-01,"Colorado",3038 +2007-06-01,"Montana",685 +2007-06-01,"North Carolina",1310 +2007-06-01,"Vermont",102 +2007-06-01,"Massachusetts",3560 +2007-06-01,"Ohio",6714 +2007-06-01,"Washington",2925 +2007-06-01,"Idaho",723 +2007-06-01,"South Carolina",554 +2007-06-01,"Utah",2252 +2007-06-01,"Alabama",1083 +2007-06-01,"Missouri",2251 +2007-06-01,"Nebraska",980 +2007-06-01,"Rhode Island",641 +2007-06-01,"Hawaii",43 +2007-06-01,"Connecticut",1462 +2007-06-01,"Maryland",2114 +2007-06-01,"Alaska",679 +2007-06-01,"Illinois",9107 2007-06-01,"Wyoming",434 +2007-06-01,"District of Columbia",411 +2007-06-01,"North Dakota",208 +2007-06-01,"Delaware",256 +2007-06-01,"Virginia",2013 +2007-06-01,"Pennsylvania",5278 +2007-06-01,"Kentucky",993 +2007-06-01,"Oregon",1452 +2007-06-01,"California",26503 +2007-06-01,"Florida",950 +2007-06-01,"New Mexico",1118 +2007-06-01,"Oklahoma",1650 +2007-06-01,"New York",11861 +2007-06-01,"Indiana",2701 +2007-06-01,"Georgia",3648 +2007-06-01,"South Dakota",279 +2007-06-01,"Michigan",7684 +2007-06-01,"Louisiana",1436 +2007-06-01,"Texas",7802 +2007-06-01,"Arkansas",879 +2007-06-01,"New Hampshire",219 +2007-06-01,"West Virginia",355 +2007-06-01,"Wisconsin",2723 +2007-06-01,"Nevada",1491 +2007-06-01,"Tennessee",1299 +2007-06-01,"U.S.",137169 +2007-06-01,"Minnesota",2911 +2007-07-01,"West Virginia",363 +2007-07-01,"Vermont",77 +2007-07-01,"District of Columbia",264 +2007-07-01,"Massachusetts",2687 +2007-07-01,"Delaware",188 +2007-07-01,"Michigan",6415 +2007-07-01,"Arizona",1152 +2007-07-01,"South Carolina",517 +2007-07-01,"Maryland",1739 +2007-07-01,"Montana",445 +2007-07-01,"Oklahoma",1412 +2007-07-01,"Texas",6270 +2007-07-01,"Minnesota",2658 +2007-07-01,"Kentucky",963 +2007-07-01,"New York",9467 +2007-07-01,"North Dakota",190 +2007-07-01,"Kansas",1285 +2007-07-01,"South Dakota",227 +2007-07-01,"Colorado",2782 +2007-07-01,"New Hampshire",167 +2007-07-01,"Louisiana",1300 +2007-07-01,"Ohio",5744 +2007-07-01,"Oregon",1070 +2007-07-01,"Washington",2029 +2007-07-01,"Wisconsin",2626 2007-07-01,"Wyoming",251 +2007-07-01,"Utah",1624 +2007-07-01,"Alabama",935 +2007-07-01,"Pennsylvania",4433 +2007-07-01,"Hawaii",41 +2007-07-01,"North Carolina",1154 +2007-07-01,"Maine",36 +2007-07-01,"Mississippi",860 +2007-07-01,"New Mexico",875 +2007-07-01,"Indiana",2449 +2007-07-01,"New Jersey",5288 +2007-07-01,"U.S.",117616 +2007-07-01,"Arkansas",734 +2007-07-01,"Rhode Island",463 +2007-07-01,"Illinois",8861 +2007-07-01,"Idaho",505 +2007-07-01,"Florida",818 +2007-07-01,"Tennessee",1154 +2007-07-01,"Nebraska",812 +2007-07-01,"Iowa",1261 +2007-07-01,"Connecticut",993 +2007-07-01,"Nevada",1270 +2007-07-01,"Virginia",1567 +2007-07-01,"Alaska",594 +2007-07-01,"California",23004 +2007-07-01,"Georgia",3575 +2007-07-01,"Missouri",2021 +2007-08-01,"Louisiana",1280 +2007-08-01,"Kentucky",925 +2007-08-01,"Vermont",66 +2007-08-01,"Mississippi",603 +2007-08-01,"U.S.",112015 +2007-08-01,"Kansas",1178 +2007-08-01,"Alaska",587 +2007-08-01,"Illinois",8785 +2007-08-01,"South Carolina",432 +2007-08-01,"Florida",725 +2007-08-01,"Maine",19 +2007-08-01,"New Mexico",841 +2007-08-01,"Oklahoma",1230 +2007-08-01,"Pennsylvania",4060 +2007-08-01,"West Virginia",331 +2007-08-01,"Georgia",3391 +2007-08-01,"South Dakota",231 +2007-08-01,"New Hampshire",151 +2007-08-01,"Rhode Island",396 +2007-08-01,"Hawaii",38 +2007-08-01,"Connecticut",1008 +2007-08-01,"Montana",387 +2007-08-01,"District of Columbia",272 +2007-08-01,"Missouri",1879 +2007-08-01,"Oregon",940 +2007-08-01,"Wisconsin",2496 +2007-08-01,"California",21550 +2007-08-01,"Texas",5858 +2007-08-01,"Colorado",2608 +2007-08-01,"Arizona",1091 +2007-08-01,"Iowa",1217 +2007-08-01,"Indiana",2530 +2007-08-01,"Tennessee",1084 +2007-08-01,"Virginia",1540 +2007-08-01,"Nebraska",799 +2007-08-01,"Ohio",5305 +2007-08-01,"New York",10072 +2007-08-01,"Nevada",1155 +2007-08-01,"New Jersey",5240 +2007-08-01,"Arkansas",672 +2007-08-01,"Michigan",6279 +2007-08-01,"Washington",1850 +2007-08-01,"Idaho",460 +2007-08-01,"Maryland",1654 +2007-08-01,"North Carolina",993 2007-08-01,"Wyoming",227 +2007-08-01,"Utah",1407 +2007-08-01,"Massachusetts",2402 +2007-08-01,"North Dakota",163 +2007-08-01,"Minnesota",2568 +2007-08-01,"Alabama",876 +2007-08-01,"Delaware",168 +2007-09-01,"Arizona",1128 +2007-09-01,"District of Columbia",258 +2007-09-01,"Minnesota",2663 +2007-09-01,"Michigan",6865 +2007-09-01,"Hawaii",39 +2007-09-01,"South Carolina",480 +2007-09-01,"Maryland",1640 +2007-09-01,"New Jersey",5487 +2007-09-01,"Texas",5354 +2007-09-01,"Georgia",3549 +2007-09-01,"Alabama",883 +2007-09-01,"Delaware",183 +2007-09-01,"Kansas",1214 +2007-09-01,"South Dakota",257 +2007-09-01,"Washington",2218 +2007-09-01,"Wisconsin",2868 +2007-09-01,"Florida",713 +2007-09-01,"Virginia",1639 +2007-09-01,"Nebraska",758 +2007-09-01,"Idaho",580 +2007-09-01,"Maine",30 +2007-09-01,"Vermont",71 +2007-09-01,"Oklahoma",1265 +2007-09-01,"Nevada",1267 +2007-09-01,"Indiana",2844 +2007-09-01,"Tennessee",1057 +2007-09-01,"Alaska",890 +2007-09-01,"New Hampshire",174 +2007-09-01,"Rhode Island",462 +2007-09-01,"Pennsylvania",4690 +2007-09-01,"Oregon",1030 +2007-09-01,"New Mexico",843 +2007-09-01,"Utah",1584 +2007-09-01,"U.S.",116439 +2007-09-01,"Iowa",1357 +2007-09-01,"Connecticut",1011 +2007-09-01,"Montana",471 +2007-09-01,"North Carolina",1053 +2007-09-01,"Massachusetts",2812 +2007-09-01,"North Dakota",258 +2007-09-01,"Missouri",2134 +2007-09-01,"Colorado",3375 +2007-09-01,"Louisiana",1236 +2007-09-01,"Illinois",8472 +2007-09-01,"Kentucky",944 +2007-09-01,"West Virginia",343 +2007-09-01,"California",21367 +2007-09-01,"New York",9222 2007-09-01,"Wyoming",316 +2007-09-01,"Ohio",5783 +2007-09-01,"Mississippi",594 +2007-09-01,"Arkansas",704 +2007-10-01,"Louisiana",1533 +2007-10-01,"Ohio",9853 +2007-10-01,"Arizona",1483 +2007-10-01,"Idaho",1179 +2007-10-01,"New Mexico",1073 +2007-10-01,"Kansas",1503 +2007-10-01,"New Hampshire",205 +2007-10-01,"North Carolina",1356 +2007-10-01,"Florida",793 +2007-10-01,"Mississippi",912 +2007-10-01,"Colorado",6802 +2007-10-01,"Rhode Island",477 +2007-10-01,"Iowa",2133 +2007-10-01,"Kentucky",1726 +2007-10-01,"Washington",4726 +2007-10-01,"Maryland",2698 +2007-10-01,"Wisconsin",4989 +2007-10-01,"Utah",2700 +2007-10-01,"Michigan",10581 +2007-10-01,"California",27978 +2007-10-01,"Vermont",94 +2007-10-01,"New York",12674 +2007-10-01,"Nevada",1880 +2007-10-01,"North Dakota",575 +2007-10-01,"Illinois",15467 +2007-10-01,"Pennsylvania",6695 +2007-10-01,"Maine",46 +2007-10-01,"Indiana",4519 +2007-10-01,"District of Columbia",453 +2007-10-01,"Massachusetts",3192 +2007-10-01,"Texas",6529 +2007-10-01,"Tennessee",1304 +2007-10-01,"Georgia",4904 +2007-10-01,"Alabama",990 +2007-10-01,"Delaware",221 +2007-10-01,"Arkansas",798 2007-10-01,"Wyoming",662 +2007-10-01,"New Jersey",8141 +2007-10-01,"Alaska",1628 +2007-10-01,"Hawaii",39 +2007-10-01,"Montana",1046 +2007-10-01,"Oklahoma",1322 +2007-10-01,"Virginia",2545 +2007-10-01,"Missouri",1996 +2007-10-01,"Nebraska",1104 +2007-10-01,"South Dakota",507 +2007-10-01,"West Virginia",889 +2007-10-01,"Oregon",2214 +2007-10-01,"South Carolina",579 +2007-10-01,"Connecticut",1203 +2007-10-01,"U.S.",174272 +2007-10-01,"Minnesota",5355 +2007-11-01,"Colorado",13654 +2007-11-01,"Pennsylvania",19927 +2007-11-01,"Nebraska",2351 +2007-11-01,"Iowa",5936 +2007-11-01,"Florida",1047 +2007-11-01,"Maine",106 2007-11-01,"Wyoming",1176 +2007-11-01,"Delaware",798 +2007-11-01,"South Dakota",1222 +2007-11-01,"Hawaii",43 +2007-11-01,"Montana",1861 +2007-11-01,"Mississippi",1666 +2007-11-01,"New York",35026 +2007-11-01,"Indiana",15915 +2007-11-01,"District of Columbia",1422 +2007-11-01,"Georgia",12399 +2007-11-01,"Kansas",4210 +2007-11-01,"Arkansas",2315 +2007-11-01,"Oregon",4145 +2007-11-01,"Connecticut",3676 +2007-11-01,"Oklahoma",3034 +2007-11-01,"Massachusetts",8150 +2007-11-01,"New Hampshire",517 +2007-11-01,"South Carolina",2416 +2007-11-01,"Maryland",8875 +2007-11-01,"Nevada",2637 +2007-11-01,"Alabama",2242 +2007-11-01,"Rhode Island",986 +2007-11-01,"Illinois",35048 +2007-11-01,"Washington",8341 +2007-11-01,"California",37115 +2007-11-01,"Vermont",223 +2007-11-01,"U.S.",405477 +2007-11-01,"Michigan",27578 +2007-11-01,"Alaska",2008 +2007-11-01,"Louisiana",2527 +2007-11-01,"Ohio",28755 +2007-11-01,"West Virginia",2568 +2007-11-01,"North Carolina",5134 +2007-11-01,"New Mexico",1975 +2007-11-01,"Utah",4865 +2007-11-01,"New Jersey",23620 +2007-11-01,"North Dakota",1193 +2007-11-01,"Virginia",8386 +2007-11-01,"Missouri",7193 +2007-11-01,"Arizona",2087 +2007-11-01,"Kentucky",5120 +2007-11-01,"Idaho",2450 +2007-11-01,"Wisconsin",14271 +2007-11-01,"Texas",9756 +2007-11-01,"Tennessee",3910 +2007-11-01,"Minnesota",13600 +2007-12-01,"New Hampshire",1122 +2007-12-01,"Hawaii",45 +2007-12-01,"Connecticut",6103 +2007-12-01,"Maine",186 +2007-12-01,"Vermont",454 +2007-12-01,"New Mexico",4406 +2007-12-01,"Delaware",1559 +2007-12-01,"Virginia",13149 +2007-12-01,"Nebraska",5641 +2007-12-01,"Colorado",23712 +2007-12-01,"Rhode Island",2136 +2007-12-01,"California",67194 +2007-12-01,"Florida",1442 +2007-12-01,"Indiana",23097 +2007-12-01,"North Dakota",1917 +2007-12-01,"Alabama",4525 +2007-12-01,"Kansas",10667 +2007-12-01,"Oregon",6472 +2007-12-01,"South Carolina",3824 +2007-12-01,"Montana",3119 +2007-12-01,"North Carolina",8947 +2007-12-01,"Oklahoma",8801 +2007-12-01,"District of Columbia",2236 +2007-12-01,"Minnesota",22768 +2007-12-01,"Iowa",11739 +2007-12-01,"West Virginia",3806 +2007-12-01,"Wisconsin",22493 +2007-12-01,"Utah",8308 +2007-12-01,"Massachusetts",16852 +2007-12-01,"Texas",25520 +2007-12-01,"Tennessee",8636 +2007-12-01,"Georgia",15984 +2007-12-01,"South Dakota",2085 +2007-12-01,"Kentucky",8593 +2007-12-01,"Idaho",3738 +2007-12-01,"Nevada",5834 +2007-12-01,"U.S.",716871 +2007-12-01,"Alaska",2795 +2007-12-01,"Louisiana",4736 +2007-12-01,"Illinois",65002 +2007-12-01,"Ohio",47608 +2007-12-01,"Washington",12273 2007-12-01,"Wyoming",1839 +2007-12-01,"Mississippi",3313 +2007-12-01,"New York",60115 +2007-12-01,"New Jersey",36838 +2007-12-01,"Missouri",16523 +2007-12-01,"Michigan",50319 +2007-12-01,"Pennsylvania",35083 +2007-12-01,"Arizona",5135 +2007-12-01,"Maryland",13418 +2007-12-01,"Arkansas",4766 +2008-01-01,"South Dakota",2460 +2008-01-01,"New Hampshire",1238 +2008-01-01,"Montana",3443 +2008-01-01,"District of Columbia",2458 +2008-01-01,"Georgia",24915 +2008-01-01,"Louisiana",7570 +2008-01-01,"Connecticut",7147 +2008-01-01,"Wisconsin",25394 +2008-01-01,"U.S.",883643 +2008-01-01,"Michigan",56751 +2008-01-01,"Ohio",53823 +2008-01-01,"Kentucky",11545 +2008-01-01,"Oregon",7865 +2008-01-01,"California",84770 +2008-01-01,"North Dakota",2034 +2008-01-01,"Minnesota",25841 +2008-01-01,"Alabama",7055 +2008-01-01,"Delaware",1849 +2008-01-01,"Nebraska",7668 +2008-01-01,"Iowa",14226 +2008-01-01,"Oklahoma",13923 +2008-01-01,"Nevada",8262 +2008-01-01,"Indiana",30275 +2008-01-01,"Texas",42644 +2008-01-01,"Tennessee",12843 +2008-01-01,"Colorado",24561 +2008-01-01,"Rhode Island",3009 +2008-01-01,"Pennsylvania",39899 +2008-01-01,"Arizona",8743 +2008-01-01,"Maryland",15286 2008-01-01,"Wyoming",2365 +2008-01-01,"Massachusetts",20962 +2008-01-01,"Kansas",14542 +2008-01-01,"Alaska",3134 +2008-01-01,"West Virginia",5137 +2008-01-01,"Washington",13347 +2008-01-01,"Idaho",4452 +2008-01-01,"New York",64081 +2008-01-01,"Virginia",15770 +2008-01-01,"Missouri",21602 +2008-01-01,"Illinois",79752 +2008-01-01,"Hawaii",47 +2008-01-01,"South Carolina",5750 +2008-01-01,"Florida",2161 +2008-01-01,"Maine",179 +2008-01-01,"Vermont",487 +2008-01-01,"New Mexico",6996 +2008-01-01,"Utah",12546 +2008-01-01,"Arkansas",6890 +2008-01-01,"North Carolina",12948 +2008-01-01,"Mississippi",4899 +2008-01-01,"New Jersey",38100 +2008-02-01,"Michigan",56030 +2008-02-01,"Colorado",19931 +2008-02-01,"Massachusetts",19456 +2008-02-01,"Alaska",2751 +2008-02-01,"Iowa",13643 +2008-02-01,"Vermont",503 +2008-02-01,"Mississippi",3823 +2008-02-01,"Oklahoma",12957 +2008-02-01,"Utah",11678 +2008-02-01,"Minnesota",23511 +2008-02-01,"Nebraska",8045 +2008-02-01,"Arizona",7515 +2008-02-01,"Maryland",13723 +2008-02-01,"North Carolina",10202 +2008-02-01,"Florida",2070 +2008-02-01,"Maine",177 +2008-02-01,"North Dakota",1839 +2008-02-01,"Delaware",1782 +2008-02-01,"New Hampshire",1155 +2008-02-01,"Washington",12931 +2008-02-01,"Wisconsin",23898 +2008-02-01,"Indiana",27314 +2008-02-01,"District of Columbia",2147 +2008-02-01,"New Jersey",36824 +2008-02-01,"Virginia",12968 +2008-02-01,"Missouri",22507 +2008-02-01,"Hawaii",46 +2008-02-01,"Ohio",54081 +2008-02-01,"West Virginia",4779 +2008-02-01,"Oregon",7202 +2008-02-01,"Montana",3300 +2008-02-01,"California",69136 +2008-02-01,"New Mexico",6524 +2008-02-01,"Rhode Island",3091 +2008-02-01,"Louisiana",5727 +2008-02-01,"Kentucky",9457 +2008-02-01,"Nevada",6795 2008-02-01,"Wyoming",2000 +2008-02-01,"Texas",32448 +2008-02-01,"Tennessee",13285 +2008-02-01,"Georgia",17444 +2008-02-01,"Illinois",85028 +2008-02-01,"Pennsylvania",39853 +2008-02-01,"South Carolina",4372 +2008-02-01,"Connecticut",6709 +2008-02-01,"New York",63546 +2008-02-01,"U.S.",818272 +2008-02-01,"Alabama",7381 +2008-02-01,"South Dakota",2336 +2008-02-01,"Idaho",4331 +2008-02-01,"Kansas",13061 +2008-02-01,"Arkansas",6959 +2008-03-01,"Pennsylvania",34208 +2008-03-01,"Michigan",51767 +2008-03-01,"Illinois",68754 2008-03-01,"Wyoming",1625 +2008-03-01,"Nebraska",6565 +2008-03-01,"South Dakota",1791 +2008-03-01,"Colorado",15898 +2008-03-01,"Rhode Island",2606 +2008-03-01,"Montana",2560 +2008-03-01,"North Carolina",6938 +2008-03-01,"Maine",167 +2008-03-01,"New Mexico",4624 +2008-03-01,"New York",57550 +2008-03-01,"District of Columbia",1551 +2008-03-01,"Georgia",12739 +2008-03-01,"Missouri",17714 +2008-03-01,"Alaska",2158 +2008-03-01,"Arizona",4726 +2008-03-01,"Florida",1753 +2008-03-01,"Mississippi",2910 +2008-03-01,"Massachusetts",19292 +2008-03-01,"U.S.",656262 +2008-03-01,"Virginia",9093 +2008-03-01,"South Carolina",3068 +2008-03-01,"Connecticut",6381 +2008-03-01,"California",51311 +2008-03-01,"Vermont",465 +2008-03-01,"Nevada",4415 +2008-03-01,"Texas",22673 +2008-03-01,"New Hampshire",1044 +2008-03-01,"West Virginia",3983 +2008-03-01,"Washington",9964 +2008-03-01,"Idaho",3179 +2008-03-01,"Maryland",9580 +2008-03-01,"Wisconsin",18582 +2008-03-01,"Delaware",1393 +2008-03-01,"Ohio",45708 +2008-03-01,"Iowa",10693 +2008-03-01,"Kentucky",7350 +2008-03-01,"Utah",8540 +2008-03-01,"Tennessee",10359 +2008-03-01,"North Dakota",1382 +2008-03-01,"Minnesota",18795 +2008-03-01,"Arkansas",5127 +2008-03-01,"Louisiana",4377 +2008-03-01,"Hawaii",44 +2008-03-01,"Oregon",5457 +2008-03-01,"Oklahoma",10535 +2008-03-01,"Indiana",19868 +2008-03-01,"New Jersey",29239 +2008-03-01,"Alabama",5324 +2008-03-01,"Kansas",10435 +2008-04-01,"Kentucky",3575 +2008-04-01,"South Carolina",1555 +2008-04-01,"Connecticut",4217 +2008-04-01,"Maryland",4789 +2008-04-01,"Montana",2146 +2008-04-01,"California",38422 +2008-04-01,"Vermont",365 +2008-04-01,"Nevada",2774 +2008-04-01,"Tennessee",5456 +2008-04-01,"Minnesota",10938 +2008-04-01,"Delaware",770 +2008-04-01,"Hawaii",44 +2008-04-01,"Idaho",2656 +2008-04-01,"Texas",11397 +2008-04-01,"Alabama",2862 +2008-04-01,"Kansas",6122 +2008-04-01,"Michigan",32680 +2008-04-01,"Oklahoma",5270 +2008-04-01,"Colorado",10157 +2008-04-01,"Illinois",43267 +2008-04-01,"Pennsylvania",18553 +2008-04-01,"Ohio",21190 +2008-04-01,"Oregon",5095 +2008-04-01,"Wisconsin",9991 +2008-04-01,"Florida",1425 +2008-04-01,"Maine",88 +2008-04-01,"Utah",6501 +2008-04-01,"District of Columbia",741 +2008-04-01,"Virginia",4904 +2008-04-01,"Alaska",1611 +2008-04-01,"Arizona",2694 2008-04-01,"Wyoming",1254 +2008-04-01,"U.S.",388459 +2008-04-01,"Nebraska",4314 +2008-04-01,"Arkansas",2869 +2008-04-01,"South Dakota",1166 +2008-04-01,"New York",34451 +2008-04-01,"Massachusetts",11319 +2008-04-01,"Georgia",6959 +2008-04-01,"New Hampshire",556 +2008-04-01,"Rhode Island",1965 +2008-04-01,"Iowa",5993 +2008-04-01,"West Virginia",1765 +2008-04-01,"New Mexico",2810 +2008-04-01,"North Dakota",821 +2008-04-01,"Louisiana",2440 +2008-04-01,"Washington",9030 +2008-04-01,"North Carolina",3707 +2008-04-01,"Mississippi",1251 +2008-04-01,"Indiana",9943 +2008-04-01,"New Jersey",13502 +2008-04-01,"Missouri",10088 +2008-05-01,"Idaho",1566 +2008-05-01,"Wisconsin",5483 +2008-05-01,"North Carolina",1521 +2008-05-01,"New Mexico",1733 +2008-05-01,"New York",20321 +2008-05-01,"District of Columbia",476 +2008-05-01,"U.S.",230229 +2008-05-01,"Colorado",5715 +2008-05-01,"New Hampshire",310 +2008-05-01,"Rhode Island",1323 +2008-05-01,"Illinois",21221 +2008-05-01,"Kentucky",1677 +2008-05-01,"West Virginia",993 +2008-05-01,"Maryland",2932 2008-05-01,"Wyoming",811 +2008-05-01,"New Jersey",9073 +2008-05-01,"Arizona",1884 +2008-05-01,"South Carolina",709 +2008-05-01,"California",32935 +2008-05-01,"Maine",49 +2008-05-01,"Texas",7940 +2008-05-01,"Minnesota",6032 +2008-05-01,"Alabama",1565 +2008-05-01,"Missouri",5024 +2008-05-01,"Nebraska",2342 +2008-05-01,"South Dakota",743 +2008-05-01,"Louisiana",1928 +2008-05-01,"Ohio",12099 +2008-05-01,"Florida",1097 +2008-05-01,"Nevada",1956 +2008-05-01,"Alaska",1128 +2008-05-01,"Pennsylvania",9853 +2008-05-01,"Hawaii",42 +2008-05-01,"Oregon",3176 +2008-05-01,"Connecticut",2170 +2008-05-01,"Mississippi",919 +2008-05-01,"Kansas",3191 +2008-05-01,"Virginia",2699 +2008-05-01,"Michigan",16677 +2008-05-01,"Vermont",164 +2008-05-01,"Indiana",4873 +2008-05-01,"Georgia",4321 +2008-05-01,"Iowa",3310 +2008-05-01,"Washington",5940 +2008-05-01,"Montana",1572 +2008-05-01,"Oklahoma",2684 +2008-05-01,"Utah",4455 +2008-05-01,"Massachusetts",6740 +2008-05-01,"Tennessee",2380 +2008-05-01,"North Dakota",474 +2008-05-01,"Delaware",423 +2008-05-01,"Arkansas",1583 +2008-06-01,"Rhode Island",702 +2008-06-01,"Iowa",1886 +2008-06-01,"Florida",846 +2008-06-01,"New York",12552 +2008-06-01,"Utah",2592 +2008-06-01,"Alabama",1045 +2008-06-01,"Kansas",1516 +2008-06-01,"Virginia",1952 +2008-06-01,"Alaska",733 +2008-06-01,"Maryland",1987 +2008-06-01,"Wisconsin",2535 +2008-06-01,"Montana",917 +2008-06-01,"Maine",25 +2008-06-01,"Vermont",104 +2008-06-01,"Mississippi",663 +2008-06-01,"Indiana",2807 +2008-06-01,"Georgia",3435 +2008-06-01,"Delaware",306 +2008-06-01,"Illinois",12724 +2008-06-01,"Oklahoma",1548 +2008-06-01,"Massachusetts",4495 +2008-06-01,"Tennessee",1406 +2008-06-01,"Colorado",3008 +2008-06-01,"Pennsylvania",5908 +2008-06-01,"Kentucky",925 +2008-06-01,"Oregon",1960 +2008-06-01,"Idaho",886 +2008-06-01,"New Mexico",1109 +2008-06-01,"North Dakota",345 +2008-06-01,"U.S.",144313 +2008-06-01,"Louisiana",1380 +2008-06-01,"Hawaii",41 +2008-06-01,"North Carolina",1121 +2008-06-01,"Arkansas",892 +2008-06-01,"Ohio",6195 +2008-06-01,"Connecticut",1526 +2008-06-01,"California",24731 +2008-06-01,"Nevada",1620 +2008-06-01,"Texas",6107 +2008-06-01,"Minnesota",3345 +2008-06-01,"South Dakota",352 +2008-06-01,"New Hampshire",167 +2008-06-01,"Arizona",1505 +2008-06-01,"Washington",3789 +2008-06-01,"South Carolina",447 2008-06-01,"Wyoming",467 +2008-06-01,"District of Columbia",371 +2008-06-01,"New Jersey",5723 +2008-06-01,"Missouri",2488 +2008-06-01,"Michigan",9577 +2008-06-01,"West Virginia",425 +2008-06-01,"Nebraska",1126 +2008-07-01,"South Dakota",227 +2008-07-01,"Oregon",1204 +2008-07-01,"Idaho",562 +2008-07-01,"Maryland",1662 +2008-07-01,"California",22623 +2008-07-01,"Massachusetts",3783 +2008-07-01,"Georgia",3392 +2008-07-01,"Kansas",1298 +2008-07-01,"Pennsylvania",4406 +2008-07-01,"Rhode Island",467 +2008-07-01,"Arizona",1139 +2008-07-01,"West Virginia",364 +2008-07-01,"Connecticut",1032 +2008-07-01,"Florida",781 +2008-07-01,"Maine",25 2008-07-01,"Wyoming",268 +2008-07-01,"U.S.",118416 +2008-07-01,"New Hampshire",156 +2008-07-01,"Illinois",8748 +2008-07-01,"Hawaii",41 +2008-07-01,"Iowa",1288 +2008-07-01,"Kentucky",984 +2008-07-01,"Vermont",72 +2008-07-01,"New Mexico",876 +2008-07-01,"Missouri",2054 +2008-07-01,"Wisconsin",2536 +2008-07-01,"New York",9373 +2008-07-01,"Nevada",1261 +2008-07-01,"Indiana",2512 +2008-07-01,"District of Columbia",255 +2008-07-01,"Texas",5617 +2008-07-01,"North Dakota",192 +2008-07-01,"Minnesota",2672 +2008-07-01,"Arkansas",698 +2008-07-01,"Michigan",7490 +2008-07-01,"Colorado",2824 +2008-07-01,"Louisiana",1184 +2008-07-01,"North Carolina",1058 +2008-07-01,"Mississippi",655 +2008-07-01,"Utah",1728 +2008-07-01,"Tennessee",1149 +2008-07-01,"Delaware",176 +2008-07-01,"Alaska",702 +2008-07-01,"South Carolina",479 +2008-07-01,"Oklahoma",1369 +2008-07-01,"Alabama",911 +2008-07-01,"Ohio",5564 +2008-07-01,"Washington",2357 +2008-07-01,"Montana",561 +2008-07-01,"New Jersey",5242 +2008-07-01,"Virginia",1573 +2008-07-01,"Nebraska",826 +2008-08-01,"Alaska",700 +2008-08-01,"Maine",29 +2008-08-01,"Massachusetts",3624 +2008-08-01,"Alabama",859 +2008-08-01,"Delaware",176 +2008-08-01,"Virginia",1492 +2008-08-01,"New Hampshire",111 +2008-08-01,"Illinois",8535 +2008-08-01,"Texas",5355 +2008-08-01,"Arkansas",682 +2008-08-01,"Louisiana",1222 +2008-08-01,"Arizona",1055 +2008-08-01,"Kentucky",834 +2008-08-01,"Oregon",965 +2008-08-01,"Connecticut",1103 +2008-08-01,"Vermont",65 +2008-08-01,"New York",8987 +2008-08-01,"Nevada",1142 +2008-08-01,"Minnesota",2434 +2008-08-01,"Kansas",1164 +2008-08-01,"New Mexico",803 +2008-08-01,"Tennessee",1077 +2008-08-01,"North Dakota",169 +2008-08-01,"South Dakota",238 +2008-08-01,"Michigan",6365 +2008-08-01,"Colorado",3302 +2008-08-01,"Hawaii",37 +2008-08-01,"Iowa",1268 +2008-08-01,"West Virginia",369 +2008-08-01,"Wisconsin",2602 +2008-08-01,"North Carolina",1022 +2008-08-01,"Mississippi",577 +2008-08-01,"Oklahoma",1154 +2008-08-01,"Georgia",3431 +2008-08-01,"Pennsylvania",4118 +2008-08-01,"Ohio",5153 +2008-08-01,"Florida",723 +2008-08-01,"Missouri",1682 +2008-08-01,"Nebraska",830 +2008-08-01,"Washington",1970 +2008-08-01,"Idaho",498 2008-08-01,"Wyoming",253 +2008-08-01,"District of Columbia",264 +2008-08-01,"U.S.",111287 +2008-08-01,"Rhode Island",445 +2008-08-01,"South Carolina",471 +2008-08-01,"Maryland",1679 +2008-08-01,"Montana",399 +2008-08-01,"California",20836 +2008-08-01,"Indiana",2442 +2008-08-01,"Utah",1521 +2008-08-01,"New Jersey",5057 +2008-09-01,"Rhode Island",402 +2008-09-01,"Iowa",1293 +2008-09-01,"Maryland",1709 +2008-09-01,"California",20849 +2008-09-01,"Utah",1595 +2008-09-01,"New Jersey",5086 +2008-09-01,"U.S.",118100 +2008-09-01,"Virginia",1653 +2008-09-01,"Nebraska",888 +2008-09-01,"Mississippi",614 +2008-09-01,"New York",10092 +2008-09-01,"Nevada",1226 +2008-09-01,"Missouri",1930 +2008-09-01,"Hawaii",37 +2008-09-01,"Kentucky",809 +2008-09-01,"Wisconsin",2738 +2008-09-01,"Vermont",75 +2008-09-01,"Indiana",2692 +2008-09-01,"District of Columbia",284 +2008-09-01,"Tennessee",1185 +2008-09-01,"Minnesota",2855 +2008-09-01,"Alabama",893 +2008-09-01,"South Dakota",257 +2008-09-01,"Oregon",1056 +2008-09-01,"Connecticut",1081 +2008-09-01,"Oklahoma",1276 +2008-09-01,"Kansas",1348 +2008-09-01,"New Hampshire",161 +2008-09-01,"Ohio",5545 +2008-09-01,"Idaho",595 +2008-09-01,"Montana",597 +2008-09-01,"New Mexico",863 +2008-09-01,"Massachusetts",3928 +2008-09-01,"Colorado",3580 +2008-09-01,"Illinois",8579 +2008-09-01,"Florida",742 +2008-09-01,"Maine",33 +2008-09-01,"Arkansas",751 +2008-09-01,"Michigan",6396 +2008-09-01,"Alaska",1032 +2008-09-01,"Louisiana",1328 +2008-09-01,"Pennsylvania",4489 +2008-09-01,"Washington",2232 +2008-09-01,"Texas",5559 +2008-09-01,"Delaware",165 +2008-09-01,"Arizona",1145 +2008-09-01,"West Virginia",440 +2008-09-01,"South Carolina",531 +2008-09-01,"North Carolina",1388 2008-09-01,"Wyoming",377 +2008-09-01,"North Dakota",240 +2008-09-01,"Georgia",3477 +2008-10-01,"South Dakota",586 +2008-10-01,"Iowa",2779 +2008-10-01,"Oregon",1825 +2008-10-01,"North Carolina",3296 +2008-10-01,"Mississippi",818 +2008-10-01,"Utah",2405 +2008-10-01,"Massachusetts",6799 +2008-10-01,"New Jersey",12249 +2008-10-01,"Alabama",1044 +2008-10-01,"Missouri",2577 +2008-10-01,"Connecticut",1610 +2008-10-01,"Wisconsin",6807 +2008-10-01,"Florida",795 +2008-10-01,"New Mexico",1084 +2008-10-01,"New York",18790 +2008-10-01,"Nevada",1683 +2008-10-01,"Delaware",278 +2008-10-01,"New Hampshire",395 +2008-10-01,"Illinois",17864 +2008-10-01,"Pennsylvania",9980 +2008-10-01,"Maine",61 +2008-10-01,"Tennessee",1678 +2008-10-01,"North Dakota",623 +2008-10-01,"Minnesota",5998 +2008-10-01,"Ohio",14292 +2008-10-01,"West Virginia",1519 +2008-10-01,"Washington",4209 +2008-10-01,"Vermont",119 +2008-10-01,"Georgia",6819 +2008-10-01,"Nebraska",1173 +2008-10-01,"Hawaii",38 +2008-10-01,"South Carolina",1057 +2008-10-01,"Oklahoma",1493 +2008-10-01,"Kansas",1786 +2008-10-01,"Virginia",4295 +2008-10-01,"U.S.",218058 +2008-10-01,"Colorado",7982 +2008-10-01,"Alaska",1918 +2008-10-01,"Arizona",1435 +2008-10-01,"Kentucky",2298 +2008-10-01,"Idaho",1671 +2008-10-01,"Maryland",4464 +2008-10-01,"Texas",7449 +2008-10-01,"Arkansas",950 +2008-10-01,"Michigan",14428 +2008-10-01,"Rhode Island",513 +2008-10-01,"Louisiana",1646 +2008-10-01,"Montana",1112 +2008-10-01,"California",25162 +2008-10-01,"Indiana",6672 2008-10-01,"Wyoming",738 +2008-10-01,"District of Columbia",797 +2008-11-01,"Ohio",30856 +2008-11-01,"Wisconsin",14480 +2008-11-01,"Montana",1855 +2008-11-01,"New Jersey",24556 +2008-11-01,"North Dakota",1203 +2008-11-01,"Delaware",882 +2008-11-01,"New Hampshire",688 +2008-11-01,"Arizona",2202 +2008-11-01,"Connecticut",3699 +2008-11-01,"Tennessee",6030 +2008-11-01,"Virginia",9684 +2008-11-01,"Oregon",3274 +2008-11-01,"South Carolina",3831 +2008-11-01,"Colorado",13048 +2008-11-01,"California",31620 +2008-11-01,"Florida",1212 +2008-11-01,"Mississippi",2201 +2008-11-01,"Oklahoma",3826 +2008-11-01,"New York",36074 +2008-11-01,"District of Columbia",1660 +2008-11-01,"Louisiana",2880 +2008-11-01,"Hawaii",40 +2008-11-01,"Kentucky",5977 +2008-11-01,"Maine",108 +2008-11-01,"Indiana",16021 +2008-11-01,"Texas",13512 +2008-11-01,"Minnesota",12941 +2008-11-01,"Alabama",2606 +2008-11-01,"Kansas",4627 +2008-11-01,"Missouri",7939 +2008-11-01,"Michigan",30041 +2008-11-01,"Rhode Island",1048 +2008-11-01,"Iowa",6122 +2008-11-01,"West Virginia",3186 +2008-11-01,"Washington",7086 +2008-11-01,"Idaho",2665 +2008-11-01,"New Mexico",2219 +2008-11-01,"Nevada",2491 +2008-11-01,"Utah",4645 +2008-11-01,"Nebraska",2626 +2008-11-01,"South Dakota",1245 +2008-11-01,"Pennsylvania",21215 +2008-11-01,"Maryland",9623 +2008-11-01,"North Carolina",9524 2008-11-01,"Wyoming",1207 +2008-11-01,"Massachusetts",13322 +2008-11-01,"Georgia",14429 +2008-11-01,"Alaska",2581 +2008-11-01,"Illinois",35861 +2008-11-01,"Vermont",233 +2008-11-01,"U.S.",433370 +2008-11-01,"Arkansas",2469 +2008-12-01,"South Dakota",2166 +2008-12-01,"Colorado",23941 +2008-12-01,"Alaska",2992 +2008-12-01,"Illinois",75594 +2008-12-01,"New Mexico",4355 +2008-12-01,"Nevada",5038 +2008-12-01,"Minnesota",24129 +2008-12-01,"Alabama",6249 +2008-12-01,"Missouri",18419 +2008-12-01,"Arkansas",5848 +2008-12-01,"West Virginia",4557 +2008-12-01,"North Carolina",11186 +2008-12-01,"Nebraska",5955 +2008-12-01,"Louisiana",5542 +2008-12-01,"Mississippi",4514 +2008-12-01,"North Dakota",2180 +2008-12-01,"Michigan",53551 +2008-12-01,"New Hampshire",1073 +2008-12-01,"New York",58380 +2008-12-01,"Texas",32048 +2008-12-01,"Hawaii",43 +2008-12-01,"Iowa",12948 +2008-12-01,"South Carolina",4829 +2008-12-01,"Connecticut",6259 +2008-12-01,"Maine",160 +2008-12-01,"District of Columbia",2220 +2008-12-01,"Massachusetts",19096 +2008-12-01,"New Jersey",35780 +2008-12-01,"Tennessee",12335 +2008-12-01,"U.S.",771868 +2008-12-01,"Virginia",13642 +2008-12-01,"Pennsylvania",36772 +2008-12-01,"Arizona",4411 +2008-12-01,"Kentucky",9594 +2008-12-01,"Idaho",4471 +2008-12-01,"Montana",3123 +2008-12-01,"Oklahoma",10192 +2008-12-01,"Georgia",18014 +2008-12-01,"Delaware",1675 +2008-12-01,"Rhode Island",2121 +2008-12-01,"Oregon",5974 +2008-12-01,"Washington",11653 +2008-12-01,"Wisconsin",25530 2008-12-01,"Wyoming",1929 +2008-12-01,"Utah",7768 +2008-12-01,"Ohio",52021 +2008-12-01,"Maryland",13746 +2008-12-01,"California",66909 +2008-12-01,"Florida",1989 +2008-12-01,"Vermont",421 +2008-12-01,"Indiana",27281 +2008-12-01,"Kansas",11244 +2009-01-01,"Alaska",3175 +2009-01-01,"Maine",242 +2009-01-01,"Oklahoma",13897 +2009-01-01,"Massachusetts",25207 +2009-01-01,"North Dakota",2203 +2009-01-01,"Hawaii",49 +2009-01-01,"West Virginia",5706 +2009-01-01,"Connecticut",8443 +2009-01-01,"Maryland",18371 +2009-01-01,"New York",77147 +2009-01-01,"Tennessee",14421 +2009-01-01,"Missouri",23594 +2009-01-01,"Arkansas",7256 +2009-01-01,"Michigan",67147 +2009-01-01,"Ohio",64457 +2009-01-01,"Arizona",7133 +2009-01-01,"Utah",12231 +2009-01-01,"Delaware",2236 +2009-01-01,"South Dakota",2645 +2009-01-01,"Iowa",15768 +2009-01-01,"South Carolina",5788 +2009-01-01,"Florida",2091 +2009-01-01,"Vermont",604 +2009-01-01,"Nevada",7457 +2009-01-01,"District of Columbia",2998 +2009-01-01,"Georgia",22854 +2009-01-01,"Kansas",15920 +2009-01-01,"Louisiana",6986 +2009-01-01,"Montana",3643 +2009-01-01,"California",67619 +2009-01-01,"Mississippi",4599 +2009-01-01,"U.S.",947740 +2009-01-01,"Alabama",6875 +2009-01-01,"New Hampshire",1440 +2009-01-01,"Pennsylvania",47628 +2009-01-01,"Oregon",7928 +2009-01-01,"Wisconsin",28469 +2009-01-01,"North Carolina",14881 +2009-01-01,"Indiana",32336 +2009-01-01,"Minnesota",29111 +2009-01-01,"Rhode Island",3096 +2009-01-01,"Illinois",91118 +2009-01-01,"Washington",14455 +2009-01-01,"New Mexico",6015 2009-01-01,"Wyoming",2040 +2009-01-01,"Texas",38425 +2009-01-01,"Virginia",18886 +2009-01-01,"Nebraska",7927 +2009-01-01,"Colorado",19946 +2009-01-01,"Kentucky",12153 +2009-01-01,"Idaho",4227 +2009-01-01,"New Jersey",48896 +2009-02-01,"Connecticut",7689 +2009-02-01,"Maine",229 +2009-02-01,"Oklahoma",11195 +2009-02-01,"Georgia",18100 +2009-02-01,"Michigan",53424 +2009-02-01,"Colorado",16068 +2009-02-01,"West Virginia",4672 +2009-02-01,"North Carolina",10616 +2009-02-01,"Vermont",575 +2009-02-01,"New Mexico",4445 +2009-02-01,"Tennessee",12835 +2009-02-01,"Minnesota",20206 +2009-02-01,"Virginia",13522 +2009-02-01,"Arkansas",6183 +2009-02-01,"South Dakota",1983 +2009-02-01,"Rhode Island",3440 +2009-02-01,"California",63571 +2009-02-01,"New Jersey",33787 +2009-02-01,"U.S.",756341 +2009-02-01,"Alaska",2514 +2009-02-01,"Arizona",5352 +2009-02-01,"Oregon",6702 +2009-02-01,"South Carolina",4961 +2009-02-01,"Mississippi",3827 +2009-02-01,"Nevada",5654 +2009-02-01,"Delaware",1792 +2009-02-01,"Pennsylvania",40683 +2009-02-01,"Iowa",11538 +2009-02-01,"Florida",2611 +2009-02-01,"Kansas",11824 +2009-02-01,"Nebraska",7084 +2009-02-01,"Illinois",74506 +2009-02-01,"Idaho",3369 +2009-02-01,"Montana",3043 +2009-02-01,"Indiana",23672 2009-02-01,"Wyoming",1754 +2009-02-01,"Utah",9463 +2009-02-01,"District of Columbia",2005 +2009-02-01,"Massachusetts",20199 +2009-02-01,"Texas",27914 +2009-02-01,"Alabama",7273 +2009-02-01,"Hawaii",44 +2009-02-01,"Ohio",49201 +2009-02-01,"Kentucky",8225 +2009-02-01,"Washington",12274 +2009-02-01,"Maryland",12990 +2009-02-01,"New York",65066 +2009-02-01,"North Dakota",1793 +2009-02-01,"Missouri",19746 +2009-02-01,"New Hampshire",1156 +2009-02-01,"Louisiana",5560 +2009-02-01,"Wisconsin",20004 +2009-03-01,"South Dakota",1766 +2009-03-01,"Colorado",11497 +2009-03-01,"Rhode Island",2700 +2009-03-01,"Hawaii",46 +2009-03-01,"California",53611 +2009-03-01,"Indiana",14411 +2009-03-01,"District of Columbia",1662 +2009-03-01,"Tennessee",9054 +2009-03-01,"Georgia",12625 +2009-03-01,"U.S.",600328 +2009-03-01,"Alaska",2454 +2009-03-01,"Louisiana",4069 +2009-03-01,"Illinois",59533 +2009-03-01,"Ohio",35265 +2009-03-01,"Wisconsin",16655 +2009-03-01,"North Carolina",8259 +2009-03-01,"Minnesota",16878 +2009-03-01,"Nebraska",5978 +2009-03-01,"Arkansas",4408 +2009-03-01,"West Virginia",3336 +2009-03-01,"Oregon",6096 +2009-03-01,"Utah",7825 +2009-03-01,"Alabama",5135 +2009-03-01,"Virginia",11066 +2009-03-01,"Arizona",3721 +2009-03-01,"Washington",11195 +2009-03-01,"Florida",2025 +2009-03-01,"New Mexico",4123 +2009-03-01,"Michigan",45372 +2009-03-01,"South Carolina",3263 +2009-03-01,"Oklahoma",7601 +2009-03-01,"New York",56360 +2009-03-01,"Nevada",4596 +2009-03-01,"New Jersey",30448 +2009-03-01,"Texas",19967 +2009-03-01,"Delaware",1466 +2009-03-01,"Maryland",10567 +2009-03-01,"Montana",2762 +2009-03-01,"Maine",191 +2009-03-01,"Massachusetts",17631 +2009-03-01,"Kansas",8790 +2009-03-01,"Kentucky",5548 +2009-03-01,"Vermont",461 +2009-03-01,"Mississippi",2798 +2009-03-01,"Missouri",13736 +2009-03-01,"New Hampshire",995 +2009-03-01,"Pennsylvania",30896 +2009-03-01,"Iowa",8921 +2009-03-01,"Idaho",3074 +2009-03-01,"Connecticut",6431 2009-03-01,"Wyoming",1504 +2009-03-01,"North Dakota",1555 +2009-04-01,"Michigan",29950 +2009-04-01,"Alaska",1589 +2009-04-01,"Louisiana",2450 +2009-04-01,"Hawaii",47 2009-04-01,"Wyoming",1381 +2009-04-01,"Utah",6765 +2009-04-01,"District of Columbia",797 +2009-04-01,"New Jersey",15204 +2009-04-01,"Texas",13313 +2009-04-01,"Alabama",2609 +2009-04-01,"Colorado",11695 +2009-04-01,"Ohio",22885 +2009-04-01,"Kentucky",3277 +2009-04-01,"South Carolina",1550 +2009-04-01,"Florida",1338 +2009-04-01,"Maine",127 +2009-04-01,"Tennessee",4787 +2009-04-01,"North Dakota",874 +2009-04-01,"U.S.",390344 +2009-04-01,"Kansas",6468 +2009-04-01,"Rhode Island",2068 +2009-04-01,"Iowa",5482 +2009-04-01,"Montana",2007 +2009-04-01,"North Carolina",3243 +2009-04-01,"Oklahoma",5770 +2009-04-01,"Nevada",2974 +2009-04-01,"Illinois",40348 +2009-04-01,"Pennsylvania",19180 +2009-04-01,"Idaho",1774 +2009-04-01,"Maryland",5078 +2009-04-01,"Indiana",9616 +2009-04-01,"Missouri",9250 +2009-04-01,"Arizona",2621 +2009-04-01,"Wisconsin",10691 +2009-04-01,"Massachusetts",10316 +2009-04-01,"Minnesota",9622 +2009-04-01,"Delaware",806 +2009-04-01,"Nebraska",4086 +2009-04-01,"Arkansas",3082 +2009-04-01,"New Hampshire",581 +2009-04-01,"West Virginia",1937 +2009-04-01,"Washington",8018 +2009-04-01,"Georgia",7406 +2009-04-01,"Virginia",5009 +2009-04-01,"California",40905 +2009-04-01,"Vermont",326 +2009-04-01,"Mississippi",1207 +2009-04-01,"New Mexico",3227 +2009-04-01,"New York",37184 +2009-04-01,"South Dakota",1154 +2009-04-01,"Oregon",4327 +2009-04-01,"Connecticut",3943 +2009-05-01,"Washington",4895 +2009-05-01,"Wisconsin",4747 +2009-05-01,"North Carolina",1315 +2009-05-01,"Maine",66 2009-05-01,"Wyoming",854 +2009-05-01,"Georgia",4299 +2009-05-01,"Delaware",370 +2009-05-01,"Rhode Island",1058 +2009-05-01,"Illinois",17829 +2009-05-01,"Pennsylvania",8731 +2009-05-01,"Ohio",9429 +2009-05-01,"Idaho",1008 +2009-05-01,"California",28637 +2009-05-01,"New York",18648 +2009-05-01,"Indiana",4364 +2009-05-01,"Virginia",2550 +2009-05-01,"Colorado",5609 +2009-05-01,"New Hampshire",297 +2009-05-01,"Arizona",1734 +2009-05-01,"New Mexico",1749 +2009-05-01,"Minnesota",4619 +2009-05-01,"Alabama",1556 +2009-05-01,"Nebraska",1889 +2009-05-01,"Alaska",892 +2009-05-01,"Kentucky",1503 +2009-05-01,"Connecticut",1971 +2009-05-01,"North Dakota",443 +2009-05-01,"Louisiana",1685 +2009-05-01,"Hawaii",43 +2009-05-01,"South Carolina",702 +2009-05-01,"Montana",1292 +2009-05-01,"Florida",1061 +2009-05-01,"Vermont",164 +2009-05-01,"Mississippi",942 +2009-05-01,"Oklahoma",2729 +2009-05-01,"Utah",3822 +2009-05-01,"Texas",7519 +2009-05-01,"U.S.",201447 +2009-05-01,"Michigan",15398 +2009-05-01,"Iowa",2806 +2009-05-01,"District of Columbia",446 +2009-05-01,"Massachusetts",5418 +2009-05-01,"Arkansas",1285 +2009-05-01,"Maryland",2644 +2009-05-01,"Tennessee",2210 +2009-05-01,"Kansas",2913 +2009-05-01,"South Dakota",608 +2009-05-01,"West Virginia",755 +2009-05-01,"Oregon",2595 +2009-05-01,"Nevada",1862 +2009-05-01,"New Jersey",7442 +2009-05-01,"Missouri",4044 +2009-06-01,"New Hampshire",272 +2009-06-01,"Massachusetts",4054 +2009-06-01,"Missouri",2270 +2009-06-01,"Louisiana",1421 +2009-06-01,"Connecticut",1443 +2009-06-01,"Maine",47 +2009-06-01,"Vermont",114 +2009-06-01,"Oklahoma",1656 +2009-06-01,"District of Columbia",297 +2009-06-01,"Texas",6785 +2009-06-01,"North Dakota",275 +2009-06-01,"Rhode Island",594 +2009-06-01,"Hawaii",43 +2009-06-01,"Ohio",6087 +2009-06-01,"Washington",2608 +2009-06-01,"Wisconsin",3152 +2009-06-01,"North Carolina",754 +2009-06-01,"Delaware",242 +2009-06-01,"Virginia",1677 +2009-06-01,"Oregon",1350 +2009-06-01,"South Carolina",465 +2009-06-01,"Florida",850 2009-06-01,"Wyoming",436 +2009-06-01,"Georgia",3339 +2009-06-01,"Illinois",12280 +2009-06-01,"Arizona",1356 +2009-06-01,"West Virginia",340 +2009-06-01,"California",26638 +2009-06-01,"New Mexico",1025 +2009-06-01,"New York",12235 +2009-06-01,"Nevada",1475 +2009-06-01,"U.S.",141121 +2009-06-01,"Alabama",1027 +2009-06-01,"Kansas",1602 +2009-06-01,"Nebraska",1027 +2009-06-01,"Michigan",8813 +2009-06-01,"Colorado",3359 +2009-06-01,"Iowa",1567 +2009-06-01,"Maryland",1814 +2009-06-01,"Utah",2138 +2009-06-01,"Arkansas",888 +2009-06-01,"South Dakota",379 +2009-06-01,"Alaska",663 +2009-06-01,"Pennsylvania",5320 +2009-06-01,"Idaho",532 +2009-06-01,"Indiana",2929 +2009-06-01,"Tennessee",1271 +2009-06-01,"Kentucky",962 +2009-06-01,"Montana",688 +2009-06-01,"Mississippi",652 +2009-06-01,"New Jersey",6423 +2009-06-01,"Minnesota",3488 +2009-07-01,"Michigan",6395 +2009-07-01,"Alaska",553 +2009-07-01,"Pennsylvania",4579 +2009-07-01,"Ohio",5543 +2009-07-01,"Kentucky",1058 +2009-07-01,"Idaho",527 +2009-07-01,"Maine",36 +2009-07-01,"Mississippi",625 +2009-07-01,"Massachusetts",3981 +2009-07-01,"Texas",5762 +2009-07-01,"Minnesota",2744 +2009-07-01,"Arkansas",686 +2009-07-01,"Colorado",2865 +2009-07-01,"Louisiana",1245 +2009-07-01,"Montana",490 +2009-07-01,"New Mexico",887 +2009-07-01,"Oklahoma",1271 +2009-07-01,"Nebraska",832 +2009-07-01,"North Carolina",962 +2009-07-01,"Vermont",80 +2009-07-01,"Indiana",2567 +2009-07-01,"Tennessee",1183 +2009-07-01,"North Dakota",189 +2009-07-01,"Delaware",190 +2009-07-01,"Kansas",1351 +2009-07-01,"Virginia",1631 +2009-07-01,"New Hampshire",229 +2009-07-01,"Illinois",8994 +2009-07-01,"Arizona",1151 +2009-07-01,"Connecticut",1155 +2009-07-01,"Wisconsin",2756 +2009-07-01,"New York",9666 +2009-07-01,"Nevada",1272 +2009-07-01,"Utah",1892 +2009-07-01,"New Jersey",5302 +2009-07-01,"Hawaii",41 +2009-07-01,"West Virginia",370 +2009-07-01,"Maryland",1685 +2009-07-01,"Florida",746 +2009-07-01,"Georgia",3330 +2009-07-01,"Rhode Island",536 +2009-07-01,"South Carolina",456 +2009-07-01,"California",22862 +2009-07-01,"District of Columbia",269 +2009-07-01,"Missouri",1930 +2009-07-01,"U.S.",118624 +2009-07-01,"Alabama",875 +2009-07-01,"South Dakota",280 +2009-07-01,"Iowa",1328 +2009-07-01,"Oregon",1023 +2009-07-01,"Washington",1934 2009-07-01,"Wyoming",310 +2009-08-01,"Rhode Island",455 +2009-08-01,"Wisconsin",2566 +2009-08-01,"Montana",400 +2009-08-01,"North Carolina",947 +2009-08-01,"Oklahoma",1175 +2009-08-01,"North Dakota",167 +2009-08-01,"U.S.",111479 +2009-08-01,"South Dakota",241 +2009-08-01,"Alaska",636 +2009-08-01,"Arizona",1038 +2009-08-01,"Kentucky",982 +2009-08-01,"Mississippi",619 +2009-08-01,"New Mexico",830 +2009-08-01,"Texas",5384 +2009-08-01,"Georgia",3459 +2009-08-01,"Nebraska",798 +2009-08-01,"Colorado",2869 +2009-08-01,"Louisiana",1259 +2009-08-01,"Illinois",8333 +2009-08-01,"West Virginia",348 +2009-08-01,"Oregon",885 +2009-08-01,"South Carolina",441 +2009-08-01,"Connecticut",1080 +2009-08-01,"California",20497 +2009-08-01,"Maine",26 +2009-08-01,"Indiana",2546 +2009-08-01,"Florida",709 +2009-08-01,"Vermont",70 +2009-08-01,"Nevada",1147 2009-08-01,"Wyoming",248 +2009-08-01,"Tennessee",1082 +2009-08-01,"Delaware",175 +2009-08-01,"Arkansas",692 +2009-08-01,"Michigan",6348 +2009-08-01,"Hawaii",38 +2009-08-01,"Idaho",515 +2009-08-01,"Maryland",1647 +2009-08-01,"Virginia",1534 +2009-08-01,"New Hampshire",132 +2009-08-01,"Pennsylvania",4087 +2009-08-01,"Ohio",5365 +2009-08-01,"New York",9683 +2009-08-01,"Utah",1558 +2009-08-01,"Alabama",824 +2009-08-01,"Missouri",1884 +2009-08-01,"Iowa",1275 +2009-08-01,"Washington",1717 +2009-08-01,"District of Columbia",264 +2009-08-01,"Massachusetts",3415 +2009-08-01,"New Jersey",5149 +2009-08-01,"Minnesota",2670 +2009-08-01,"Kansas",1268 +2009-09-01,"Ohio",6140 +2009-09-01,"West Virginia",503 +2009-09-01,"Idaho",573 +2009-09-01,"Connecticut",983 +2009-09-01,"North Carolina",1128 +2009-09-01,"U.S.",119681 +2009-09-01,"Kentucky",1016 +2009-09-01,"Oregon",976 +2009-09-01,"South Carolina",479 +2009-09-01,"Nevada",1213 +2009-09-01,"Utah",1627 +2009-09-01,"Colorado",3776 +2009-09-01,"Pennsylvania",4714 +2009-09-01,"Maine",29 +2009-09-01,"New Mexico",861 +2009-09-01,"Oklahoma",1250 +2009-09-01,"District of Columbia",244 +2009-09-01,"Georgia",3493 +2009-09-01,"Delaware",186 +2009-09-01,"South Dakota",255 +2009-09-01,"Louisiana",1238 +2009-09-01,"Illinois",9105 +2009-09-01,"Hawaii",39 +2009-09-01,"Washington",2006 2009-09-01,"Wyoming",284 +2009-09-01,"Massachusetts",4340 +2009-09-01,"North Dakota",202 +2009-09-01,"Kansas",1344 +2009-09-01,"Iowa",1288 +2009-09-01,"Maryland",1701 +2009-09-01,"Florida",706 +2009-09-01,"Vermont",74 +2009-09-01,"Arkansas",700 +2009-09-01,"Wisconsin",2973 +2009-09-01,"Mississippi",590 +2009-09-01,"New Jersey",5214 +2009-09-01,"Texas",5457 +2009-09-01,"Tennessee",1202 +2009-09-01,"Missouri",2000 +2009-09-01,"Michigan",6718 +2009-09-01,"Alaska",933 +2009-09-01,"New Hampshire",170 +2009-09-01,"Rhode Island",404 +2009-09-01,"Montana",457 +2009-09-01,"California",20461 +2009-09-01,"Virginia",1628 +2009-09-01,"Arizona",1119 +2009-09-01,"New York",10280 +2009-09-01,"Indiana",3120 +2009-09-01,"Minnesota",2813 +2009-09-01,"Alabama",853 +2009-09-01,"Nebraska",815 +2009-10-01,"Rhode Island",604 +2009-10-01,"Florida",706 +2009-10-01,"District of Columbia",703 +2009-10-01,"Massachusetts",7864 +2009-10-01,"Alabama",1182 +2009-10-01,"Delaware",370 +2009-10-01,"Kansas",2857 +2009-10-01,"Arizona",1471 +2009-10-01,"Iowa",3746 +2009-10-01,"Kentucky",2787 +2009-10-01,"Washington",4351 +2009-10-01,"Montana",1351 +2009-10-01,"Alaska",1417 +2009-10-01,"Louisiana",1701 +2009-10-01,"Vermont",140 +2009-10-01,"New York",20411 +2009-10-01,"New Jersey",12144 +2009-10-01,"Hawaii",37 +2009-10-01,"West Virginia",1636 +2009-10-01,"New Mexico",1211 +2009-10-01,"Missouri",4317 +2009-10-01,"New Hampshire",373 +2009-10-01,"Wisconsin",8721 +2009-10-01,"North Carolina",2760 +2009-10-01,"Maine",51 +2009-10-01,"Indiana",8250 2009-10-01,"Wyoming",797 +2009-10-01,"Nebraska",1594 +2009-10-01,"South Dakota",965 +2009-10-01,"Michigan",16419 +2009-10-01,"Illinois",22990 +2009-10-01,"Ohio",17198 +2009-10-01,"Nevada",1708 +2009-10-01,"Utah",2896 +2009-10-01,"Tennessee",2185 +2009-10-01,"Pennsylvania",11181 +2009-10-01,"Idaho",1820 +2009-10-01,"Maryland",4091 +2009-10-01,"Mississippi",1369 +2009-10-01,"Oklahoma",2149 +2009-10-01,"Texas",8809 +2009-10-01,"Georgia",6345 +2009-10-01,"Minnesota",8941 +2009-10-01,"Colorado",11191 +2009-10-01,"Oregon",1849 +2009-10-01,"South Carolina",1032 +2009-10-01,"Connecticut",2049 +2009-10-01,"California",26332 +2009-10-01,"North Dakota",824 +2009-10-01,"U.S.",251028 +2009-10-01,"Virginia",4052 +2009-10-01,"Arkansas",1080 +2009-11-01,"Michigan",25405 +2009-11-01,"Colorado",14873 +2009-11-01,"Idaho",3214 +2009-11-01,"Connecticut",3187 +2009-11-01,"Maine",100 +2009-11-01,"Oklahoma",3924 2009-11-01,"Wyoming",1235 +2009-11-01,"Massachusetts",10592 +2009-11-01,"Texas",13137 +2009-11-01,"Tennessee",4862 +2009-11-01,"Minnesota",10590 +2009-11-01,"Illinois",31518 +2009-11-01,"Iowa",5200 +2009-11-01,"North Carolina",6420 +2009-11-01,"Vermont",243 +2009-11-01,"Mississippi",1687 +2009-11-01,"Indiana",11566 +2009-11-01,"Utah",4803 +2009-11-01,"District of Columbia",1211 +2009-11-01,"Georgia",10781 +2009-11-01,"U.S.",376488 +2009-11-01,"Rhode Island",1114 +2009-11-01,"Hawaii",37 +2009-11-01,"West Virginia",2128 +2009-11-01,"Oregon",4086 +2009-11-01,"Washington",7793 +2009-11-01,"Montana",2057 +2009-11-01,"Florida",953 +2009-11-01,"New Hampshire",555 +2009-11-01,"Ohio",23169 +2009-11-01,"Arizona",2487 +2009-11-01,"Maryland",7215 +2009-11-01,"North Dakota",991 +2009-11-01,"Delaware",702 +2009-11-01,"Nebraska",2809 +2009-11-01,"South Dakota",1098 +2009-11-01,"South Carolina",2457 +2009-11-01,"Nevada",2898 +2009-11-01,"Alabama",2438 +2009-11-01,"Kansas",5265 +2009-11-01,"Virginia",7184 +2009-11-01,"New Mexico",2614 +2009-11-01,"Kentucky",4320 +2009-11-01,"Wisconsin",10593 +2009-11-01,"New York",30620 +2009-11-01,"Missouri",7247 +2009-11-01,"Arkansas",2091 +2009-11-01,"Alaska",2428 +2009-11-01,"Louisiana",2666 +2009-11-01,"Pennsylvania",16955 +2009-11-01,"California",37012 +2009-11-01,"New Jersey",17955 +2009-12-01,"South Carolina",5565 +2009-12-01,"Mississippi",4517 +2009-12-01,"Oklahoma",9675 +2009-12-01,"Nevada",6484 +2009-12-01,"Indiana",24366 +2009-12-01,"Delaware",1513 +2009-12-01,"Arkansas",4901 +2009-12-01,"Idaho",4897 +2009-12-01,"Maryland",14896 +2009-12-01,"Montana",3578 +2009-12-01,"Vermont",333 +2009-12-01,"U.S.",764286 +2009-12-01,"Minnesota",21636 +2009-12-01,"New Hampshire",1013 +2009-12-01,"Rhode Island",1844 +2009-12-01,"Hawaii",44 +2009-12-01,"New Jersey",38053 +2009-12-01,"Texas",39681 +2009-12-01,"Georgia",22557 +2009-12-01,"Louisiana",6234 +2009-12-01,"California",72575 2009-12-01,"Wyoming",1813 +2009-12-01,"District of Columbia",2570 +2009-12-01,"Tennessee",11018 +2009-12-01,"Kansas",11464 +2009-12-01,"Virginia",15704 +2009-12-01,"Missouri",16283 +2009-12-01,"Illinois",63511 +2009-12-01,"Ohio",47692 +2009-12-01,"Iowa",11193 +2009-12-01,"Washington",12897 +2009-12-01,"Connecticut",5620 +2009-12-01,"New York",57567 +2009-12-01,"Alabama",5413 +2009-12-01,"Nebraska",5304 +2009-12-01,"South Dakota",2221 +2009-12-01,"Michigan",45722 +2009-12-01,"Oregon",7002 +2009-12-01,"New Mexico",5418 +2009-12-01,"North Dakota",2002 +2009-12-01,"Alaska",2725 +2009-12-01,"West Virginia",4442 +2009-12-01,"Florida",1417 +2009-12-01,"Massachusetts",19866 +2009-12-01,"Colorado",25244 +2009-12-01,"Pennsylvania",33761 +2009-12-01,"Arizona",5549 +2009-12-01,"Kentucky",9989 +2009-12-01,"Wisconsin",21850 +2009-12-01,"North Carolina",14358 +2009-12-01,"Maine",142 +2009-12-01,"Utah",10163 +2010-01-01,"Michigan",57797 +2010-01-01,"Louisiana",9629 +2010-01-01,"Wisconsin",25508 +2010-01-01,"Maine",219 +2010-01-01,"New York",71232 +2010-01-01,"Massachusetts",23141 +2010-01-01,"South Dakota",2612 +2010-01-01,"New Hampshire",1305 +2010-01-01,"Hawaii",52 +2010-01-01,"Ohio",57270 +2010-01-01,"Oregon",6654 +2010-01-01,"South Carolina",7528 +2010-01-01,"North Carolina",17239 +2010-01-01,"Mississippi",5983 +2010-01-01,"New Mexico",6702 +2010-01-01,"Nevada",7471 +2010-01-01,"District of Columbia",2821 +2010-01-01,"Virginia",18930 +2010-01-01,"Missouri",24105 +2010-01-01,"Illinois",83080 +2010-01-01,"Arizona",7444 +2010-01-01,"Iowa",15288 +2010-01-01,"Colorado",22720 +2010-01-01,"Idaho",3788 +2010-01-01,"Indiana",30877 +2010-01-01,"Utah",11934 +2010-01-01,"Alabama",9203 +2010-01-01,"West Virginia",5549 +2010-01-01,"Oklahoma",16232 +2010-01-01,"Texas",49862 +2010-01-01,"U.S.",932605 +2010-01-01,"Delaware",2197 +2010-01-01,"Nebraska",7872 +2010-01-01,"Connecticut",8705 +2010-01-01,"New Jersey",43536 +2010-01-01,"Pennsylvania",43694 +2010-01-01,"Kentucky",11917 +2010-01-01,"Montana",3510 +2010-01-01,"California",70666 +2010-01-01,"Vermont",538 2010-01-01,"Wyoming",2340 +2010-01-01,"Kansas",15726 +2010-01-01,"Arkansas",8272 +2010-01-01,"Alaska",2730 +2010-01-01,"Rhode Island",3138 +2010-01-01,"Washington",11018 +2010-01-01,"Maryland",17375 +2010-01-01,"Florida",3117 +2010-01-01,"Tennessee",16697 +2010-01-01,"North Dakota",2027 +2010-01-01,"Georgia",29535 +2010-01-01,"Minnesota",25820 +2010-02-01,"Maine",186 +2010-02-01,"Oklahoma",13334 +2010-02-01,"Utah",8322 +2010-02-01,"District of Columbia",2507 +2010-02-01,"Massachusetts",18681 +2010-02-01,"Louisiana",8150 +2010-02-01,"Ohio",51953 +2010-02-01,"Minnesota",19730 +2010-02-01,"Iowa",11923 +2010-02-01,"West Virginia",5003 +2010-02-01,"Nevada",5926 +2010-02-01,"Indiana",24542 +2010-02-01,"Georgia",24967 +2010-02-01,"South Dakota",2119 +2010-02-01,"Alaska",2054 +2010-02-01,"New Hampshire",1033 +2010-02-01,"Oregon",4893 +2010-02-01,"Montana",2984 +2010-02-01,"California",58616 +2010-02-01,"Florida",2590 +2010-02-01,"New Mexico",6297 +2010-02-01,"New York",64645 +2010-02-01,"Alabama",7762 +2010-02-01,"Nebraska",6848 +2010-02-01,"Hawaii",43 +2010-02-01,"Arizona",6015 +2010-02-01,"Washington",8686 +2010-02-01,"Maryland",14765 +2010-02-01,"Wisconsin",19477 +2010-02-01,"North Carolina",14708 +2010-02-01,"North Dakota",1718 +2010-02-01,"Rhode Island",2824 2010-02-01,"Wyoming",1754 +2010-02-01,"Texas",47290 +2010-02-01,"Kansas",12445 +2010-02-01,"Virginia",16981 +2010-02-01,"Illinois",68555 +2010-02-01,"Idaho",2965 +2010-02-01,"South Carolina",6116 +2010-02-01,"Connecticut",7502 +2010-02-01,"Vermont",494 +2010-02-01,"Mississippi",5426 +2010-02-01,"New Jersey",37453 +2010-02-01,"Tennessee",14701 +2010-02-01,"U.S.",794779 +2010-02-01,"Delaware",1942 +2010-02-01,"Missouri",20194 +2010-02-01,"Michigan",49276 +2010-02-01,"Colorado",20633 +2010-02-01,"Pennsylvania",39423 +2010-02-01,"Kentucky",10999 +2010-02-01,"Arkansas",7327 +2010-03-01,"Alaska",2121 +2010-03-01,"South Carolina",3939 +2010-03-01,"New Jersey",22975 +2010-03-01,"Tennessee",11128 +2010-03-01,"Michigan",36603 +2010-03-01,"Kentucky",6278 +2010-03-01,"West Virginia",2971 +2010-03-01,"Maine",144 +2010-03-01,"Vermont",357 +2010-03-01,"New Mexico",5032 +2010-03-01,"Nevada",4741 +2010-03-01,"Georgia",16304 +2010-03-01,"Virginia",9139 +2010-03-01,"Louisiana",6965 +2010-03-01,"Arizona",5164 +2010-03-01,"Connecticut",5377 +2010-03-01,"Montana",2246 +2010-03-01,"North Carolina",7595 +2010-03-01,"Florida",2781 +2010-03-01,"Texas",34693 +2010-03-01,"Alabama",6612 +2010-03-01,"Delaware",1309 +2010-03-01,"Arkansas",6266 +2010-03-01,"Ohio",34033 +2010-03-01,"Oregon",4232 +2010-03-01,"California",52024 +2010-03-01,"District of Columbia",1350 +2010-03-01,"North Dakota",1185 +2010-03-01,"Minnesota",12767 +2010-03-01,"South Dakota",1499 +2010-03-01,"Maryland",8894 2010-03-01,"Wyoming",1497 +2010-03-01,"U.S.",579243 +2010-03-01,"Nebraska",6392 +2010-03-01,"Pennsylvania",27737 +2010-03-01,"Hawaii",44 +2010-03-01,"Iowa",8288 +2010-03-01,"Indiana",14592 +2010-03-01,"Massachusetts",14525 +2010-03-01,"Rhode Island",1899 +2010-03-01,"Illinois",53392 +2010-03-01,"Washington",7948 +2010-03-01,"Idaho",2632 +2010-03-01,"Wisconsin",13193 +2010-03-01,"Mississippi",4148 +2010-03-01,"Oklahoma",10556 +2010-03-01,"New York",47703 +2010-03-01,"Kansas",9663 +2010-03-01,"Missouri",14367 +2010-03-01,"Colorado",15526 +2010-03-01,"New Hampshire",780 +2010-03-01,"Utah",7636 +2010-04-01,"Pennsylvania",13190 +2010-04-01,"California",44708 +2010-04-01,"Florida",1719 +2010-04-01,"Virginia",3514 +2010-04-01,"South Dakota",821 +2010-04-01,"Kentucky",1848 +2010-04-01,"Montana",1754 +2010-04-01,"Maine",107 +2010-04-01,"Vermont",270 +2010-04-01,"Oklahoma",5125 +2010-04-01,"New York",26907 +2010-04-01,"New Jersey",11017 +2010-04-01,"Colorado",10823 +2010-04-01,"Louisiana",2748 +2010-04-01,"Oregon",3946 +2010-04-01,"Maryland",3761 +2010-04-01,"Tennessee",4022 +2010-04-01,"Minnesota",5984 +2010-04-01,"Arkansas",2749 +2010-04-01,"Rhode Island",857 +2010-04-01,"Iowa",3516 +2010-04-01,"West Virginia",1496 +2010-04-01,"Idaho",2048 +2010-04-01,"Wisconsin",7185 +2010-04-01,"North Carolina",1937 +2010-04-01,"Utah",6560 +2010-04-01,"Massachusetts",8651 +2010-04-01,"Delaware",585 +2010-04-01,"Michigan",24548 +2010-04-01,"Connecticut",3131 +2010-04-01,"New Mexico",3400 +2010-04-01,"Nevada",3255 +2010-04-01,"District of Columbia",542 +2010-04-01,"Alaska",1574 +2010-04-01,"New Hampshire",464 +2010-04-01,"Ohio",15356 +2010-04-01,"Indiana",6144 +2010-04-01,"North Dakota",564 +2010-04-01,"Kansas",4310 +2010-04-01,"Hawaii",50 +2010-04-01,"Texas",14367 +2010-04-01,"Georgia",5575 +2010-04-01,"Alabama",2987 +2010-04-01,"Missouri",5613 +2010-04-01,"Nebraska",3157 +2010-04-01,"Illinois",26705 +2010-04-01,"Arizona",3034 +2010-04-01,"Washington",6868 +2010-04-01,"South Carolina",1149 +2010-04-01,"Mississippi",1353 2010-04-01,"Wyoming",1180 +2010-04-01,"U.S.",313171 +2010-05-01,"Illinois",15227 +2010-05-01,"Iowa",2607 +2010-05-01,"California",33082 +2010-05-01,"Vermont",155 +2010-05-01,"Utah",4119 +2010-05-01,"Massachusetts",5520 +2010-05-01,"Nebraska",1483 +2010-05-01,"Arizona",1972 +2010-05-01,"West Virginia",807 +2010-05-01,"Indiana",4395 +2010-05-01,"Texas",7534 +2010-05-01,"Delaware",348 +2010-05-01,"Hawaii",42 +2010-05-01,"Idaho",1401 +2010-05-01,"Maryland",2493 +2010-05-01,"Oklahoma",2211 +2010-05-01,"North Dakota",447 +2010-05-01,"Colorado",6962 +2010-05-01,"Alaska",946 +2010-05-01,"South Carolina",533 +2010-05-01,"Montana",1336 +2010-05-01,"Mississippi",657 +2010-05-01,"New York",17563 +2010-05-01,"Nevada",2286 +2010-05-01,"New Jersey",8093 +2010-05-01,"Tennessee",1468 +2010-05-01,"Alabama",1143 +2010-05-01,"Virginia",2130 +2010-05-01,"Arkansas",1033 +2010-05-01,"Pennsylvania",8276 +2010-05-01,"Ohio",9542 +2010-05-01,"North Carolina",1252 +2010-05-01,"Kansas",1983 +2010-05-01,"Rhode Island",633 +2010-05-01,"Oregon",2801 +2010-05-01,"Florida",1131 +2010-05-01,"New Mexico",1818 +2010-05-01,"South Dakota",628 +2010-05-01,"Kentucky",1042 +2010-05-01,"Washington",4974 2010-05-01,"Wyoming",908 +2010-05-01,"District of Columbia",323 +2010-05-01,"U.S.",197513 +2010-05-01,"Missouri",3027 +2010-05-01,"Michigan",13503 +2010-05-01,"New Hampshire",299 +2010-05-01,"Louisiana",1463 +2010-05-01,"Connecticut",2013 +2010-05-01,"Wisconsin",4861 +2010-05-01,"Maine",62 +2010-05-01,"Georgia",4039 +2010-05-01,"Minnesota",4939 +2010-06-01,"South Dakota",260 +2010-06-01,"Illinois",9805 +2010-06-01,"Ohio",5805 +2010-06-01,"South Carolina",487 +2010-06-01,"Mississippi",639 +2010-06-01,"Rhode Island",417 +2010-06-01,"Montana",814 +2010-06-01,"Vermont",95 +2010-06-01,"New Mexico",1081 +2010-06-01,"North Dakota",217 +2010-06-01,"Virginia",1769 +2010-06-01,"Michigan",7890 +2010-06-01,"Alaska",667 +2010-06-01,"New Hampshire",199 +2010-06-01,"Washington",3388 +2010-06-01,"California",26822 +2010-06-01,"Maine",35 +2010-06-01,"Indiana",2659 +2010-06-01,"U.S.",134038 +2010-06-01,"Alabama",842 +2010-06-01,"Missouri",2261 +2010-06-01,"Pennsylvania",4803 +2010-06-01,"Arizona",1418 +2010-06-01,"Kentucky",896 +2010-06-01,"Oregon",1937 +2010-06-01,"Maryland",1766 +2010-06-01,"Florida",769 +2010-06-01,"Oklahoma",1486 +2010-06-01,"District of Columbia",262 +2010-06-01,"Georgia",3316 +2010-06-01,"Kansas",1516 +2010-06-01,"Colorado",3152 +2010-06-01,"New York",10723 2010-06-01,"Wyoming",494 +2010-06-01,"Minnesota",3059 +2010-06-01,"Arkansas",775 +2010-06-01,"Louisiana",1330 +2010-06-01,"Nevada",1690 +2010-06-01,"Utah",2670 +2010-06-01,"Massachusetts",3974 +2010-06-01,"Texas",6112 +2010-06-01,"Iowa",1411 +2010-06-01,"Idaho",819 +2010-06-01,"Connecticut",1185 +2010-06-01,"Wisconsin",3203 +2010-06-01,"Hawaii",42 +2010-06-01,"West Virginia",399 +2010-06-01,"North Carolina",942 +2010-06-01,"New Jersey",5262 +2010-06-01,"Tennessee",1206 +2010-06-01,"Delaware",228 +2010-06-01,"Nebraska",1041 +2010-07-01,"West Virginia",350 +2010-07-01,"Oklahoma",1197 +2010-07-01,"North Dakota",172 +2010-07-01,"Missouri",1638 +2010-07-01,"Nebraska",741 +2010-07-01,"Colorado",2842 +2010-07-01,"Iowa",1199 +2010-07-01,"Maryland",1649 +2010-07-01,"Montana",466 +2010-07-01,"California",23450 +2010-07-01,"Florida",699 +2010-07-01,"Maine",27 +2010-07-01,"New Mexico",837 +2010-07-01,"Indiana",2412 +2010-07-01,"Michigan",5929 +2010-07-01,"Illinois",7803 +2010-07-01,"Wisconsin",2429 +2010-07-01,"Vermont",73 +2010-07-01,"Nevada",1248 +2010-07-01,"U.S.",111307 +2010-07-01,"South Dakota",210 +2010-07-01,"Rhode Island",332 +2010-07-01,"Kentucky",845 +2010-07-01,"Connecticut",987 +2010-07-01,"New York",8767 +2010-07-01,"Minnesota",2369 +2010-07-01,"Oregon",1144 +2010-07-01,"Texas",5872 +2010-07-01,"Kansas",1150 +2010-07-01,"Alaska",630 +2010-07-01,"New Hampshire",159 +2010-07-01,"Louisiana",1213 +2010-07-01,"Pennsylvania",3977 +2010-07-01,"Idaho",439 +2010-07-01,"South Carolina",481 +2010-07-01,"North Carolina",883 +2010-07-01,"Mississippi",584 2010-07-01,"Wyoming",288 +2010-07-01,"Utah",1749 +2010-07-01,"District of Columbia",239 +2010-07-01,"New Jersey",4510 +2010-07-01,"Virginia",1591 +2010-07-01,"Arkansas",638 +2010-07-01,"Ohio",5218 +2010-07-01,"Arizona",1121 +2010-07-01,"Georgia",3221 +2010-07-01,"Delaware",195 +2010-07-01,"Hawaii",43 +2010-07-01,"Washington",2180 +2010-07-01,"Massachusetts",3339 +2010-07-01,"Tennessee",1036 +2010-07-01,"Alabama",733 +2010-08-01,"Kansas",1009 +2010-08-01,"Virginia",1274 +2010-08-01,"Ohio",4788 +2010-08-01,"Idaho",420 +2010-08-01,"Vermont",64 +2010-08-01,"Tennessee",956 +2010-08-01,"South Dakota",196 +2010-08-01,"Louisiana",1152 +2010-08-01,"Pennsylvania",3989 +2010-08-01,"West Virginia",387 +2010-08-01,"Maine",28 +2010-08-01,"Mississippi",542 +2010-08-01,"North Dakota",199 +2010-08-01,"U.S.",107074 +2010-08-01,"Minnesota",2486 +2010-08-01,"Missouri",1622 +2010-08-01,"Colorado",3081 +2010-08-01,"Washington",1927 +2010-08-01,"North Carolina",904 +2010-08-01,"New York",8236 +2010-08-01,"Nevada",1102 +2010-08-01,"Delaware",192 +2010-08-01,"New Hampshire",180 +2010-08-01,"Illinois",7626 +2010-08-01,"Arizona",1033 +2010-08-01,"South Carolina",424 +2010-08-01,"Maryland",1363 +2010-08-01,"Oklahoma",1061 +2010-08-01,"Utah",1469 +2010-08-01,"Texas",5211 +2010-08-01,"Oregon",934 +2010-08-01,"Montana",365 +2010-08-01,"Indiana",2494 +2010-08-01,"District of Columbia",224 +2010-08-01,"New Jersey",4790 +2010-08-01,"Alabama",708 +2010-08-01,"Nebraska",705 +2010-08-01,"Rhode Island",467 +2010-08-01,"Iowa",1107 +2010-08-01,"Georgia",3272 +2010-08-01,"Michigan",5357 +2010-08-01,"Alaska",607 +2010-08-01,"Hawaii",41 +2010-08-01,"Kentucky",840 +2010-08-01,"Connecticut",1004 +2010-08-01,"Wisconsin",2472 +2010-08-01,"California",22085 +2010-08-01,"Florida",669 +2010-08-01,"New Mexico",817 2010-08-01,"Wyoming",228 +2010-08-01,"Massachusetts",4341 +2010-08-01,"Arkansas",625 +2010-09-01,"Michigan",6567 +2010-09-01,"Alaska",771 +2010-09-01,"Ohio",5838 +2010-09-01,"Washington",2006 +2010-09-01,"Kansas",1026 +2010-09-01,"South Dakota",274 +2010-09-01,"Connecticut",951 +2010-09-01,"Maryland",1789 +2010-09-01,"Massachusetts",3935 +2010-09-01,"Alabama",658 +2010-09-01,"Delaware",180 +2010-09-01,"Virginia",1671 +2010-09-01,"Illinois",9041 +2010-09-01,"Pennsylvania",4603 +2010-09-01,"Mississippi",580 +2010-09-01,"Indiana",2427 +2010-09-01,"Utah",1610 +2010-09-01,"Hawaii",35 +2010-09-01,"Nevada",1227 +2010-09-01,"New Jersey",4639 +2010-09-01,"Missouri",1733 +2010-09-01,"New Hampshire",153 +2010-09-01,"Iowa",1285 +2010-09-01,"Kentucky",884 +2010-09-01,"West Virginia",436 +2010-09-01,"California",22790 +2010-09-01,"Minnesota",3090 +2010-09-01,"Colorado",3242 +2010-09-01,"Rhode Island",396 +2010-09-01,"North Carolina",1011 2010-09-01,"Wyoming",295 +2010-09-01,"District of Columbia",244 +2010-09-01,"Arkansas",644 +2010-09-01,"Louisiana",1214 +2010-09-01,"Arizona",1116 +2010-09-01,"Idaho",692 +2010-09-01,"South Carolina",498 +2010-09-01,"Wisconsin",2833 +2010-09-01,"New York",9952 +2010-09-01,"Tennessee",1043 +2010-09-01,"North Dakota",284 +2010-09-01,"U.S.",117299 +2010-09-01,"Nebraska",641 +2010-09-01,"Oregon",955 +2010-09-01,"Montana",568 +2010-09-01,"Florida",675 +2010-09-01,"Maine",31 +2010-09-01,"Vermont",69 +2010-09-01,"New Mexico",828 +2010-09-01,"Oklahoma",1122 +2010-09-01,"Texas",5365 +2010-09-01,"Georgia",3383 +2010-10-01,"Colorado",6978 +2010-10-01,"Iowa",2213 +2010-10-01,"West Virginia",1239 +2010-10-01,"Nevada",1524 +2010-10-01,"New Jersey",9363 +2010-10-01,"Tennessee",1742 +2010-10-01,"Pennsylvania",9910 +2010-10-01,"Kentucky",1858 +2010-10-01,"Mississippi",774 +2010-10-01,"Utah",2999 +2010-10-01,"Massachusetts",7299 +2010-10-01,"Michigan",13582 +2010-10-01,"Louisiana",1422 +2010-10-01,"Hawaii",37 +2010-10-01,"Oregon",2073 +2010-10-01,"Wisconsin",5597 +2010-10-01,"North Carolina",1873 +2010-10-01,"Indiana",5133 +2010-10-01,"U.S.",201580 +2010-10-01,"Ohio",13257 +2010-10-01,"Arizona",1377 +2010-10-01,"New Mexico",1052 +2010-10-01,"North Dakota",539 +2010-10-01,"Virginia",3194 +2010-10-01,"Nebraska",1056 +2010-10-01,"Rhode Island",835 +2010-10-01,"Connecticut",1699 2010-10-01,"Wyoming",599 +2010-10-01,"Texas",6760 +2010-10-01,"South Dakota",516 +2010-10-01,"Alaska",1529 +2010-10-01,"South Carolina",752 +2010-10-01,"Montana",1038 +2010-10-01,"California",27880 +2010-10-01,"Florida",830 +2010-10-01,"Vermont",173 +2010-10-01,"New York",17571 +2010-10-01,"Alabama",839 +2010-10-01,"Missouri",3042 +2010-10-01,"New Hampshire",338 +2010-10-01,"Idaho",1300 +2010-10-01,"Maryland",3245 +2010-10-01,"Oklahoma",1390 +2010-10-01,"District of Columbia",629 +2010-10-01,"Minnesota",5714 +2010-10-01,"Delaware",296 +2010-10-01,"Illinois",16144 +2010-10-01,"Washington",4898 +2010-10-01,"Maine",64 +2010-10-01,"Georgia",4947 +2010-10-01,"Kansas",1548 +2010-10-01,"Arkansas",914 +2010-11-01,"Illinois",38480 +2010-11-01,"Oregon",4947 +2010-11-01,"Wisconsin",12885 +2010-11-01,"North Carolina",7010 +2010-11-01,"Vermont",300 +2010-11-01,"District of Columbia",1352 +2010-11-01,"U.S.",446801 +2010-11-01,"Alabama",2757 +2010-11-01,"New Hampshire",663 +2010-11-01,"Rhode Island",1780 +2010-11-01,"Washington",10024 +2010-11-01,"Florida",1146 +2010-11-01,"New Mexico",2355 +2010-11-01,"Indiana",14191 +2010-11-01,"Georgia",11283 +2010-11-01,"Kansas",5414 +2010-11-01,"Nebraska",3713 +2010-11-01,"Pennsylvania",21205 +2010-11-01,"Ohio",27344 +2010-11-01,"South Carolina",2762 2010-11-01,"Wyoming",1479 +2010-11-01,"Minnesota",13543 +2010-11-01,"Louisiana",2708 +2010-11-01,"Hawaii",37 +2010-11-01,"Nevada",3161 +2010-11-01,"North Dakota",1265 +2010-11-01,"Virginia",8266 +2010-11-01,"Michigan",30199 +2010-11-01,"Arizona",2842 +2010-11-01,"Iowa",6890 +2010-11-01,"West Virginia",2796 +2010-11-01,"Maryland",8222 +2010-11-01,"Texas",13798 +2010-11-01,"Delaware",755 +2010-11-01,"Maine",127 +2010-11-01,"Oklahoma",2874 +2010-11-01,"Utah",7592 +2010-11-01,"Massachusetts",12081 +2010-11-01,"Tennessee",5688 +2010-11-01,"South Dakota",1372 +2010-11-01,"Colorado",16284 +2010-11-01,"Connecticut",3639 +2010-11-01,"California",45455 +2010-11-01,"New Jersey",23528 +2010-11-01,"Missouri",8990 +2010-11-01,"Arkansas",1910 +2010-11-01,"Alaska",2019 +2010-11-01,"Kentucky",4923 +2010-11-01,"Idaho",3378 +2010-11-01,"Montana",2453 +2010-11-01,"Mississippi",1763 +2010-11-01,"New York",37152 +2010-12-01,"New Hampshire",1163 +2010-12-01,"West Virginia",5587 2010-12-01,"Wyoming",1853 +2010-12-01,"South Dakota",2308 +2010-12-01,"Colorado",18981 +2010-12-01,"Wisconsin",23974 +2010-12-01,"Vermont",489 +2010-12-01,"Kansas",11328 +2010-12-01,"Virginia",19697 +2010-12-01,"Nebraska",6483 +2010-12-01,"Ohio",53299 +2010-12-01,"New Mexico",5035 +2010-12-01,"Michigan",53080 +2010-12-01,"Alaska",3065 +2010-12-01,"Illinois",80710 +2010-12-01,"Maine",203 +2010-12-01,"District of Columbia",3115 +2010-12-01,"Texas",29580 +2010-12-01,"Alabama",7970 +2010-12-01,"Louisiana",7523 +2010-12-01,"Arizona",5276 +2010-12-01,"Montana",3342 +2010-12-01,"California",67310 +2010-12-01,"Florida",2619 +2010-12-01,"Oklahoma",8840 +2010-12-01,"Kentucky",12060 +2010-12-01,"South Carolina",7761 +2010-12-01,"Utah",9427 +2010-12-01,"Massachusetts",20117 +2010-12-01,"New Jersey",43975 +2010-12-01,"Tennessee",14629 +2010-12-01,"U.S.",847001 +2010-12-01,"Delaware",1899 +2010-12-01,"Missouri",20797 +2010-12-01,"Rhode Island",3365 +2010-12-01,"Hawaii",42 +2010-12-01,"Iowa",12650 +2010-12-01,"Mississippi",4702 +2010-12-01,"New York",70039 +2010-12-01,"Nevada",5748 +2010-12-01,"North Dakota",1920 +2010-12-01,"Georgia",28830 +2010-12-01,"Arkansas",5087 +2010-12-01,"Pennsylvania",42837 +2010-12-01,"Oregon",6304 +2010-12-01,"Washington",11637 +2010-12-01,"Idaho",4094 +2010-12-01,"Connecticut",6536 +2010-12-01,"Maryland",18508 +2010-12-01,"North Carolina",19166 +2010-12-01,"Indiana",28547 +2010-12-01,"Minnesota",23492 +2011-01-01,"Iowa",14956 +2011-01-01,"Kentucky",12752 +2011-01-01,"Maryland",18769 +2011-01-01,"New Mexico",6501 2011-01-01,"Wyoming",2203 +2011-01-01,"Rhode Island",3638 +2011-01-01,"Louisiana",9051 +2011-01-01,"Pennsylvania",49202 +2011-01-01,"Arizona",7779 +2011-01-01,"Oregon",7093 +2011-01-01,"Tennessee",17826 +2011-01-01,"U.S.",969775 +2011-01-01,"Nebraska",8497 +2011-01-01,"Arkansas",7822 +2011-01-01,"New Hampshire",1391 +2011-01-01,"Hawaii",47 +2011-01-01,"Idaho",4321 +2011-01-01,"Maine",269 +2011-01-01,"Mississippi",5770 +2011-01-01,"Oklahoma",14331 +2011-01-01,"New York",77802 +2011-01-01,"Massachusetts",25365 +2011-01-01,"Montana",3529 +2011-01-01,"Vermont",596 +2011-01-01,"Utah",12615 +2011-01-01,"New Jersey",48881 +2011-01-01,"Missouri",25159 +2011-01-01,"South Dakota",2628 +2011-01-01,"South Carolina",7938 +2011-01-01,"Georgia",28427 +2011-01-01,"Minnesota",26129 +2011-01-01,"Alaska",2862 +2011-01-01,"Illinois",89136 +2011-01-01,"Connecticut",8793 +2011-01-01,"Wisconsin",26389 +2011-01-01,"North Carolina",17009 +2011-01-01,"Florida",3392 +2011-01-01,"Nevada",7445 +2011-01-01,"District of Columbia",2905 +2011-01-01,"Texas",43060 +2011-01-01,"Michigan",63766 +2011-01-01,"California",70482 +2011-01-01,"Indiana",29955 +2011-01-01,"North Dakota",2143 +2011-01-01,"Kansas",14975 +2011-01-01,"Virginia",20344 +2011-01-01,"Colorado",23711 +2011-01-01,"Ohio",61413 +2011-01-01,"West Virginia",5695 +2011-01-01,"Washington",12605 +2011-01-01,"Alabama",9951 +2011-01-01,"Delaware",2456 +2011-02-01,"New Hampshire",1219 +2011-02-01,"Rhode Island",2861 +2011-02-01,"Illinois",68957 +2011-02-01,"Ohio",48825 +2011-02-01,"Iowa",11093 +2011-02-01,"Oklahoma",10701 +2011-02-01,"Nevada",5946 +2011-02-01,"Indiana",22288 +2011-02-01,"Utah",9389 +2011-02-01,"Nebraska",6809 +2011-02-01,"Michigan",51109 +2011-02-01,"Arizona",6951 +2011-02-01,"Connecticut",8037 +2011-02-01,"New Mexico",6594 2011-02-01,"Wyoming",2031 +2011-02-01,"Massachusetts",20443 +2011-02-01,"U.S.",767994 +2011-02-01,"Delaware",1763 +2011-02-01,"Colorado",21127 +2011-02-01,"California",65457 +2011-02-01,"Vermont",512 +2011-02-01,"Arkansas",6901 +2011-02-01,"Kentucky",8347 +2011-02-01,"West Virginia",4049 +2011-02-01,"Oregon",6525 +2011-02-01,"Idaho",3719 +2011-02-01,"Wisconsin",20797 +2011-02-01,"Florida",2453 +2011-02-01,"New York",65821 +2011-02-01,"Georgia",16766 +2011-02-01,"Minnesota",19842 +2011-02-01,"Missouri",18440 +2011-02-01,"Alaska",2755 +2011-02-01,"Hawaii",41 +2011-02-01,"Maine",234 +2011-02-01,"Mississippi",4201 +2011-02-01,"District of Columbia",2032 +2011-02-01,"New Jersey",35372 +2011-02-01,"Texas",43878 +2011-02-01,"Tennessee",11229 +2011-02-01,"Alabama",6315 +2011-02-01,"Virginia",13184 +2011-02-01,"South Dakota",2076 +2011-02-01,"Washington",11649 +2011-02-01,"Maryland",12455 +2011-02-01,"North Dakota",1790 +2011-02-01,"Kansas",11876 +2011-02-01,"Louisiana",7404 +2011-02-01,"South Carolina",4301 +2011-02-01,"North Carolina",9734 +2011-02-01,"Pennsylvania",38447 +2011-02-01,"Montana",3248 +2011-03-01,"Connecticut",6127 +2011-03-01,"Wisconsin",17622 +2011-03-01,"Florida",1676 +2011-03-01,"Maine",194 +2011-03-01,"Texas",21304 +2011-03-01,"North Dakota",1643 +2011-03-01,"Georgia",11366 +2011-03-01,"Virginia",10374 +2011-03-01,"Idaho",2890 +2011-03-01,"Maryland",10165 +2011-03-01,"New York",56516 +2011-03-01,"New Jersey",30676 +2011-03-01,"New Hampshire",971 +2011-03-01,"West Virginia",3538 +2011-03-01,"Vermont",449 +2011-03-01,"Tennessee",7676 +2011-03-01,"Arkansas",3990 +2011-03-01,"Alaska",2287 +2011-03-01,"North Carolina",7399 +2011-03-01,"Indiana",16730 +2011-03-01,"Minnesota",17244 +2011-03-01,"Michigan",45157 +2011-03-01,"Louisiana",4038 +2011-03-01,"Illinois",54882 +2011-03-01,"Arizona",4123 +2011-03-01,"South Carolina",2810 +2011-03-01,"California",51570 +2011-03-01,"Nevada",4580 2011-03-01,"Wyoming",1499 +2011-03-01,"District of Columbia",1493 +2011-03-01,"Massachusetts",16902 +2011-03-01,"Alabama",3513 +2011-03-01,"Kansas",8028 +2011-03-01,"Nebraska",6004 +2011-03-01,"Hawaii",40 +2011-03-01,"Ohio",42430 +2011-03-01,"Washington",9926 +2011-03-01,"Utah",6905 +2011-03-01,"Missouri",12596 +2011-03-01,"South Dakota",1779 +2011-03-01,"Colorado",13420 +2011-03-01,"Rhode Island",2330 +2011-03-01,"Iowa",9009 +2011-03-01,"Montana",3008 +2011-03-01,"Mississippi",3012 +2011-03-01,"Oklahoma",6185 +2011-03-01,"U.S.",594929 +2011-03-01,"Pennsylvania",31234 +2011-03-01,"Kentucky",6535 +2011-03-01,"Oregon",5488 +2011-03-01,"New Mexico",4217 +2011-03-01,"Delaware",1383 +2011-04-01,"Illinois",32122 +2011-04-01,"Washington",8128 +2011-04-01,"Connecticut",4344 +2011-04-01,"New York",34243 +2011-04-01,"Texas",9557 +2011-04-01,"Kansas",4703 +2011-04-01,"Rhode Island",1187 +2011-04-01,"Louisiana",1987 +2011-04-01,"Hawaii",44 +2011-04-01,"Wisconsin",11138 +2011-04-01,"New Mexico",2305 +2011-04-01,"Oklahoma",4215 +2011-04-01,"New Jersey",15649 +2011-04-01,"Tennessee",3858 +2011-04-01,"Georgia",5386 +2011-04-01,"Alabama",1942 +2011-04-01,"Nebraska",2724 +2011-04-01,"North Carolina",2890 +2011-04-01,"Nevada",2953 +2011-04-01,"North Dakota",886 +2011-04-01,"West Virginia",1740 +2011-04-01,"South Carolina",1281 +2011-04-01,"Maine",134 2011-04-01,"Wyoming",1195 +2011-04-01,"Minnesota",8740 +2011-04-01,"Missouri",5178 +2011-04-01,"Alaska",1593 +2011-04-01,"Kentucky",2584 +2011-04-01,"Oregon",4400 +2011-04-01,"Idaho",2272 +2011-04-01,"Delaware",747 +2011-04-01,"South Dakota",1054 +2011-04-01,"Colorado",9995 +2011-04-01,"New Hampshire",594 +2011-04-01,"Montana",1656 +2011-04-01,"Florida",1183 +2011-04-01,"Mississippi",1063 +2011-04-01,"District of Columbia",904 +2011-04-01,"Arkansas",2882 +2011-04-01,"Pennsylvania",16312 +2011-04-01,"Arizona",2479 +2011-04-01,"Vermont",368 +2011-04-01,"Indiana",8444 +2011-04-01,"Massachusetts",9742 +2011-04-01,"U.S.",340552 +2011-04-01,"Virginia",4704 +2011-04-01,"Michigan",26117 +2011-04-01,"Ohio",22052 +2011-04-01,"Iowa",5066 +2011-04-01,"Maryland",4990 +2011-04-01,"California",34838 +2011-04-01,"Utah",5984 +2011-05-01,"Rhode Island",690 +2011-05-01,"Kentucky",1794 +2011-05-01,"West Virginia",801 +2011-05-01,"Idaho",1312 +2011-05-01,"Indiana",5141 2011-05-01,"Wyoming",887 +2011-05-01,"New Jersey",7831 +2011-05-01,"Texas",7431 +2011-05-01,"Tennessee",1944 +2011-05-01,"North Dakota",465 +2011-05-01,"Kansas",2125 +2011-05-01,"Hawaii",41 +2011-05-01,"Arizona",1829 +2011-05-01,"South Carolina",691 +2011-05-01,"Oklahoma",2274 +2011-05-01,"Alaska",990 +2011-05-01,"Louisiana",1619 +2011-05-01,"California",32739 +2011-05-01,"Florida",912 +2011-05-01,"Maine",71 +2011-05-01,"U.S.",205399 +2011-05-01,"Colorado",6305 +2011-05-01,"Iowa",2561 +2011-05-01,"Oregon",2720 +2011-05-01,"Maryland",2574 +2011-05-01,"New Mexico",1641 +2011-05-01,"Missouri",3770 +2011-05-01,"Arkansas",1319 +2011-05-01,"New Hampshire",317 +2011-05-01,"Washington",4993 +2011-05-01,"Wisconsin",5941 +2011-05-01,"New York",16760 +2011-05-01,"Massachusetts",6921 +2011-05-01,"South Dakota",540 +2011-05-01,"Michigan",12035 +2011-05-01,"Ohio",11865 +2011-05-01,"Minnesota",5321 +2011-05-01,"Alabama",1363 +2011-05-01,"Virginia",2262 +2011-05-01,"Pennsylvania",7914 +2011-05-01,"North Carolina",1348 +2011-05-01,"Vermont",137 +2011-05-01,"Mississippi",858 +2011-05-01,"Nevada",2059 +2011-05-01,"District of Columbia",255 +2011-05-01,"Delaware",359 +2011-05-01,"Nebraska",1655 +2011-05-01,"Illinois",18575 +2011-05-01,"Connecticut",2160 +2011-05-01,"Montana",863 +2011-05-01,"Utah",4033 +2011-05-01,"Georgia",4387 +2011-06-01,"South Dakota",278 +2011-06-01,"Idaho",1050 +2011-06-01,"Oklahoma",1486 +2011-06-01,"Nevada",1643 +2011-06-01,"Indiana",2526 2011-06-01,"Wyoming",373 +2011-06-01,"North Dakota",267 +2011-06-01,"Delaware",177 +2011-06-01,"Virginia",1709 +2011-06-01,"Missouri",2073 +2011-06-01,"Rhode Island",308 +2011-06-01,"Ohio",6023 +2011-06-01,"Washington",2792 +2011-06-01,"Maryland",1658 +2011-06-01,"Wisconsin",2571 +2011-06-01,"North Carolina",962 +2011-06-01,"Utah",3130 +2011-06-01,"District of Columbia",325 +2011-06-01,"U.S.",132672 +2011-06-01,"Pennsylvania",4600 +2011-06-01,"Iowa",1458 +2011-06-01,"Tennessee",1205 +2011-06-01,"Minnesota",2916 +2011-06-01,"Colorado",2862 +2011-06-01,"Hawaii",41 +2011-06-01,"Connecticut",1345 +2011-06-01,"New York",11118 +2011-06-01,"New Jersey",6111 +2011-06-01,"Texas",6235 +2011-06-01,"Michigan",6386 +2011-06-01,"Arizona",1398 +2011-06-01,"California",27204 +2011-06-01,"Maine",45 +2011-06-01,"Mississippi",643 +2011-06-01,"Arkansas",813 +2011-06-01,"Alaska",712 +2011-06-01,"Louisiana",1386 +2011-06-01,"Oregon",1529 +2011-06-01,"Vermont",86 +2011-06-01,"Georgia",3367 +2011-06-01,"Kansas",1478 +2011-06-01,"Illinois",10256 +2011-06-01,"Kentucky",1050 +2011-06-01,"West Virginia",523 +2011-06-01,"South Carolina",420 +2011-06-01,"Montana",645 +2011-06-01,"New Mexico",1144 +2011-06-01,"Massachusetts",3390 +2011-06-01,"Alabama",844 +2011-06-01,"Nebraska",1066 +2011-06-01,"New Hampshire",241 +2011-06-01,"Florida",802 +2011-07-01,"New Hampshire",160 +2011-07-01,"Rhode Island",377 +2011-07-01,"Ohio",4449 +2011-07-01,"Idaho",624 +2011-07-01,"Wisconsin",2442 +2011-07-01,"Oklahoma",1008 +2011-07-01,"U.S.",114187 +2011-07-01,"Colorado",2523 +2011-07-01,"Alaska",580 +2011-07-01,"Washington",2063 +2011-07-01,"Maryland",1536 +2011-07-01,"California",26695 +2011-07-01,"Maine",33 +2011-07-01,"Nevada",1278 +2011-07-01,"Georgia",3241 +2011-07-01,"Delaware",148 +2011-07-01,"Missouri",1670 +2011-07-01,"South Dakota",216 +2011-07-01,"Louisiana",1232 +2011-07-01,"Illinois",8130 +2011-07-01,"Oregon",1093 +2011-07-01,"South Carolina",459 +2011-07-01,"New Jersey",5540 +2011-07-01,"Alabama",604 +2011-07-01,"North Carolina",889 +2011-07-01,"Florida",756 2011-07-01,"Wyoming",234 +2011-07-01,"Arkansas",747 +2011-07-01,"Pennsylvania",4013 +2011-07-01,"Hawaii",40 +2011-07-01,"West Virginia",363 +2011-07-01,"New York",8975 +2011-07-01,"Utah",1752 +2011-07-01,"Kansas",1204 +2011-07-01,"Arizona",1114 +2011-07-01,"Iowa",1208 +2011-07-01,"Kentucky",816 +2011-07-01,"Indiana",2476 +2011-07-01,"Tennessee",992 +2011-07-01,"Nebraska",883 +2011-07-01,"Michigan",6224 +2011-07-01,"Connecticut",1133 +2011-07-01,"Montana",428 +2011-07-01,"District of Columbia",207 +2011-07-01,"Massachusetts",2697 +2011-07-01,"North Dakota",180 +2011-07-01,"Virginia",1415 +2011-07-01,"Vermont",70 +2011-07-01,"Mississippi",571 +2011-07-01,"New Mexico",878 +2011-07-01,"Texas",5214 +2011-07-01,"Minnesota",2604 +2011-08-01,"Alaska",650 +2011-08-01,"Hawaii",35 +2011-08-01,"Ohio",5484 +2011-08-01,"Wisconsin",2232 +2011-08-01,"District of Columbia",283 +2011-08-01,"Nebraska",680 +2011-08-01,"Michigan",5729 +2011-08-01,"Colorado",2512 +2011-08-01,"Illinois",7804 +2011-08-01,"Texas",5247 +2011-08-01,"Alabama",772 +2011-08-01,"Arizona",964 +2011-08-01,"Iowa",1168 +2011-08-01,"Washington",1985 +2011-08-01,"Montana",435 +2011-08-01,"Massachusetts",3887 +2011-08-01,"Tennessee",1004 +2011-08-01,"North Dakota",185 +2011-08-01,"Georgia",3297 +2011-08-01,"Minnesota",2338 +2011-08-01,"Virginia",1562 +2011-08-01,"South Dakota",227 +2011-08-01,"West Virginia",333 +2011-08-01,"Oregon",966 +2011-08-01,"California",25315 +2011-08-01,"Maine",25 +2011-08-01,"Oklahoma",941 +2011-08-01,"Pennsylvania",3912 +2011-08-01,"Kentucky",833 +2011-08-01,"Utah",1493 +2011-08-01,"U.S.",112280 +2011-08-01,"Rhode Island",418 +2011-08-01,"North Carolina",1066 +2011-08-01,"Mississippi",568 +2011-08-01,"Nevada",1180 +2011-08-01,"Florida",723 +2011-08-01,"Vermont",70 +2011-08-01,"New Mexico",784 +2011-08-01,"New York",9712 2011-08-01,"Wyoming",224 +2011-08-01,"New Hampshire",186 +2011-08-01,"Louisiana",1172 +2011-08-01,"Idaho",496 +2011-08-01,"South Carolina",457 +2011-08-01,"Connecticut",963 +2011-08-01,"Maryland",1496 +2011-08-01,"Indiana",2253 +2011-08-01,"New Jersey",4668 +2011-08-01,"Delaware",200 +2011-08-01,"Kansas",1085 +2011-08-01,"Missouri",1690 +2011-08-01,"Arkansas",571 +2011-09-01,"Louisiana",1280 +2011-09-01,"Maryland",1925 +2011-09-01,"Oklahoma",1219 +2011-09-01,"New York",9447 +2011-09-01,"Virginia",1286 +2011-09-01,"Michigan",8240 +2011-09-01,"Colorado",3167 +2011-09-01,"Oregon",1029 +2011-09-01,"Florida",743 +2011-09-01,"Indiana",3197 +2011-09-01,"Minnesota",3079 +2011-09-01,"Kansas",1118 +2011-09-01,"New Jersey",4920 +2011-09-01,"U.S.",122751 +2011-09-01,"Delaware",176 +2011-09-01,"Rhode Island",405 +2011-09-01,"Ohio",6258 +2011-09-01,"Washington",2014 +2011-09-01,"Maine",37 2011-09-01,"Wyoming",292 +2011-09-01,"Utah",1658 +2011-09-01,"Pennsylvania",4565 +2011-09-01,"Iowa",1634 +2011-09-01,"Connecticut",1072 +2011-09-01,"North Carolina",1048 +2011-09-01,"New Mexico",857 +2011-09-01,"Massachusetts",3815 +2011-09-01,"North Dakota",249 +2011-09-01,"South Dakota",287 +2011-09-01,"Arizona",1066 +2011-09-01,"Idaho",755 +2011-09-01,"South Carolina",480 +2011-09-01,"Vermont",80 +2011-09-01,"Mississippi",612 +2011-09-01,"District of Columbia",222 +2011-09-01,"Tennessee",1148 +2011-09-01,"Alabama",852 +2011-09-01,"Missouri",2018 +2011-09-01,"Nebraska",779 +2011-09-01,"Alaska",948 +2011-09-01,"New Hampshire",150 +2011-09-01,"Illinois",10332 +2011-09-01,"West Virginia",462 +2011-09-01,"Wisconsin",3313 +2011-09-01,"Montana",476 +2011-09-01,"California",22626 +2011-09-01,"Georgia",3556 +2011-09-01,"Hawaii",42 +2011-09-01,"Kentucky",931 +2011-09-01,"Nevada",1212 +2011-09-01,"Texas",4986 +2011-09-01,"Arkansas",687 +2011-10-01,"Alaska",1581 +2011-10-01,"Pennsylvania",11307 +2011-10-01,"Iowa",2719 +2011-10-01,"District of Columbia",809 +2011-10-01,"North Dakota",520 +2011-10-01,"Ohio",12887 +2011-10-01,"Wisconsin",6635 +2011-10-01,"Vermont",151 +2011-10-01,"New Mexico",1187 +2011-10-01,"Massachusetts",7218 +2011-10-01,"Virginia",4143 +2011-10-01,"Kentucky",2370 +2011-10-01,"South Carolina",1091 +2011-10-01,"New York",19250 +2011-10-01,"Nevada",1616 +2011-10-01,"Tennessee",2633 +2011-10-01,"Arkansas",943 +2011-10-01,"Maryland",4130 +2011-10-01,"Indiana",7002 +2011-10-01,"Georgia",6564 +2011-10-01,"Kansas",2209 +2011-10-01,"Colorado",7243 +2011-10-01,"Louisiana",1692 +2011-10-01,"Idaho",1475 +2011-10-01,"Connecticut",1923 +2011-10-01,"Oklahoma",2092 +2011-10-01,"Texas",6897 +2011-10-01,"Missouri",3981 +2011-10-01,"Illinois",20218 +2011-10-01,"Oregon",2539 +2011-10-01,"Washington",5410 2011-10-01,"Wyoming",744 +2011-10-01,"Alabama",1531 +2011-10-01,"Nebraska",1376 +2011-10-01,"South Dakota",654 +2011-10-01,"Hawaii",36 +2011-10-01,"Arizona",1504 +2011-10-01,"West Virginia",1374 +2011-10-01,"Montana",1396 +2011-10-01,"Maine",62 +2011-10-01,"New Jersey",8785 +2011-10-01,"Michigan",18283 +2011-10-01,"New Hampshire",267 +2011-10-01,"Rhode Island",840 +2011-10-01,"North Carolina",2812 +2011-10-01,"California",24758 +2011-10-01,"Florida",932 +2011-10-01,"Mississippi",1202 +2011-10-01,"Utah",2275 +2011-10-01,"U.S.",225506 +2011-10-01,"Minnesota",5803 +2011-10-01,"Delaware",435 +2011-11-01,"Michigan",29709 +2011-11-01,"Oregon",5645 +2011-11-01,"Vermont",253 +2011-11-01,"Minnesota",12840 +2011-11-01,"Nebraska",3369 +2011-11-01,"Arkansas",2249 +2011-11-01,"Rhode Island",1326 +2011-11-01,"Washington",10715 +2011-11-01,"Maine",115 +2011-11-01,"New Mexico",2692 +2011-11-01,"Indiana",12202 +2011-11-01,"Virginia",7123 +2011-11-01,"Missouri",9773 +2011-11-01,"Colorado",15031 +2011-11-01,"Illinois",38763 +2011-11-01,"Iowa",6171 +2011-11-01,"North Carolina",6982 +2011-11-01,"Mississippi",1873 +2011-11-01,"Utah",8186 +2011-11-01,"District of Columbia",1070 +2011-11-01,"Pennsylvania",18370 +2011-11-01,"Arizona",2839 +2011-11-01,"Idaho",3328 +2011-11-01,"Maryland",6928 2011-11-01,"Wyoming",1515 +2011-11-01,"Georgia",11102 +2011-11-01,"Alabama",3426 +2011-11-01,"Delaware",861 +2011-11-01,"Kansas",6060 +2011-11-01,"Louisiana",2946 +2011-11-01,"Hawaii",36 +2011-11-01,"Ohio",24216 +2011-11-01,"Wisconsin",12003 +2011-11-01,"California",49546 +2011-11-01,"New York",32448 +2011-11-01,"Massachusetts",12005 +2011-11-01,"South Dakota",1330 +2011-11-01,"Kentucky",4661 +2011-11-01,"Florida",1213 +2011-11-01,"Oklahoma",5847 +2011-11-01,"Nevada",3785 +2011-11-01,"Texas",14118 +2011-11-01,"Tennessee",6407 +2011-11-01,"U.S.",434502 +2011-11-01,"Alaska",2851 +2011-11-01,"New Hampshire",560 +2011-11-01,"Connecticut",3524 +2011-11-01,"Montana",2548 +2011-11-01,"West Virginia",2362 +2011-11-01,"South Carolina",2873 +2011-11-01,"New Jersey",17569 +2011-11-01,"North Dakota",1138 +2011-12-01,"Colorado",22219 +2011-12-01,"Pennsylvania",29569 +2011-12-01,"Iowa",10056 +2011-12-01,"California",81335 +2011-12-01,"Oklahoma",11087 +2011-12-01,"Georgia",15878 +2011-12-01,"Alabama",5467 +2011-12-01,"Kansas",10631 +2011-12-01,"Louisiana",5607 +2011-12-01,"Montana",3478 +2011-12-01,"Maine",190 +2011-12-01,"New Mexico",5501 +2011-12-01,"Indiana",19879 +2011-12-01,"Utah",12657 +2011-12-01,"Nebraska",5874 +2011-12-01,"Wisconsin",18361 +2011-12-01,"Florida",1615 +2011-12-01,"Vermont",441 +2011-12-01,"New York",51732 2011-12-01,"Wyoming",2086 +2011-12-01,"District of Columbia",1882 +2011-12-01,"North Dakota",1471 +2011-12-01,"Minnesota",18305 +2011-12-01,"Virginia",11196 +2011-12-01,"Washington",13113 +2011-12-01,"South Carolina",4051 +2011-12-01,"Maryland",11214 +2011-12-01,"New Jersey",27628 +2011-12-01,"Texas",32031 +2011-12-01,"Tennessee",11269 +2011-12-01,"Michigan",45249 +2011-12-01,"North Carolina",9506 +2011-12-01,"Arkansas",4812 +2011-12-01,"Alaska",2451 +2011-12-01,"New Hampshire",899 +2011-12-01,"Rhode Island",2483 +2011-12-01,"Hawaii",42 +2011-12-01,"West Virginia",3832 +2011-12-01,"Oregon",7578 +2011-12-01,"Massachusetts",16831 +2011-12-01,"South Dakota",1892 +2011-12-01,"Ohio",40232 +2011-12-01,"Connecticut",5298 +2011-12-01,"Missouri",16196 +2011-12-01,"Illinois",58968 +2011-12-01,"Arizona",6546 +2011-12-01,"Kentucky",8021 +2011-12-01,"Idaho",4424 +2011-12-01,"Mississippi",3930 +2011-12-01,"Nevada",6896 +2011-12-01,"U.S.",693232 +2011-12-01,"Delaware",1323 +2012-01-01,"West Virginia",4430 +2012-01-01,"Oregon",7455 +2012-01-01,"South Carolina",5088 +2012-01-01,"Utah",10998 +2012-01-01,"U.S.",794368 +2012-01-01,"Virginia",14061 +2012-01-01,"Missouri",18053 +2012-01-01,"Hawaii",48 +2012-01-01,"District of Columbia",2658 +2012-01-01,"Massachusetts",21138 +2012-01-01,"Kansas",11018 +2012-01-01,"Colorado",20898 +2012-01-01,"Alaska",3603 +2012-01-01,"New Hampshire",1231 +2012-01-01,"Ohio",50128 +2012-01-01,"Washington",12997 +2012-01-01,"Connecticut",7592 +2012-01-01,"Maryland",14649 +2012-01-01,"California",71879 +2012-01-01,"New York",65236 +2012-01-01,"Nevada",7170 +2012-01-01,"Minnesota",20987 +2012-01-01,"Alabama",5896 +2012-01-01,"Idaho",4150 +2012-01-01,"Wisconsin",22415 +2012-01-01,"Vermont",578 +2012-01-01,"Tennessee",11922 +2012-01-01,"Georgia",18749 +2012-01-01,"Arkansas",5584 +2012-01-01,"Illinois",73215 +2012-01-01,"Pennsylvania",39056 +2012-01-01,"Iowa",11146 +2012-01-01,"Kentucky",9550 +2012-01-01,"Mississippi",3902 +2012-01-01,"Oklahoma",10423 +2012-01-01,"South Dakota",2005 +2012-01-01,"Arizona",7406 +2012-01-01,"Maine",255 +2012-01-01,"Texas",36745 +2012-01-01,"North Dakota",1694 +2012-01-01,"Delaware",1808 +2012-01-01,"Michigan",51875 +2012-01-01,"Montana",3398 +2012-01-01,"North Carolina",13091 +2012-01-01,"Florida",1901 +2012-01-01,"Indiana",24433 2012-01-01,"Wyoming",1920 +2012-01-01,"Rhode Island",3184 +2012-01-01,"Louisiana",5667 +2012-01-01,"New Mexico",6455 +2012-01-01,"New Jersey",38527 +2012-01-01,"Nebraska",6101 +2012-02-01,"Michigan",45216 +2012-02-01,"Oregon",5987 +2012-02-01,"Florida",1837 +2012-02-01,"Oklahoma",9226 +2012-02-01,"Nevada",5815 +2012-02-01,"Indiana",19723 +2012-02-01,"Delaware",1461 +2012-02-01,"Kansas",9071 +2012-02-01,"Missouri",14422 +2012-02-01,"Rhode Island",2312 +2012-02-01,"Arizona",5909 +2012-02-01,"Washington",11257 +2012-02-01,"Mississippi",3013 +2012-02-01,"New York",57566 +2012-02-01,"New Jersey",30221 +2012-02-01,"North Dakota",1512 +2012-02-01,"U.S.",662056 +2012-02-01,"Alaska",2334 +2012-02-01,"Louisiana",4529 +2012-02-01,"Illinois",60650 +2012-02-01,"Pennsylvania",32249 +2012-02-01,"Wisconsin",18869 +2012-02-01,"Vermont",475 +2012-02-01,"Texas",28000 +2012-02-01,"Georgia",14381 +2012-02-01,"Alabama",4489 +2012-02-01,"Colorado",22424 +2012-02-01,"Maine",221 +2012-02-01,"South Dakota",1775 +2012-02-01,"West Virginia",4096 +2012-02-01,"Connecticut",6856 +2012-02-01,"Montana",2807 +2012-02-01,"North Carolina",10105 +2012-02-01,"Massachusetts",17095 +2012-02-01,"Minnesota",17319 +2012-02-01,"Virginia",12212 +2012-02-01,"Arkansas",4658 +2012-02-01,"New Hampshire",995 +2012-02-01,"Hawaii",41 +2012-02-01,"Ohio",41818 +2012-02-01,"South Carolina",3921 +2012-02-01,"Maryland",11275 +2012-02-01,"California",60157 +2012-02-01,"New Mexico",5360 2012-02-01,"Wyoming",1895 +2012-02-01,"Tennessee",9668 +2012-02-01,"Idaho",3356 +2012-02-01,"Utah",9006 +2012-02-01,"District of Columbia",1591 +2012-02-01,"Nebraska",5613 +2012-02-01,"Iowa",9673 +2012-02-01,"Kentucky",7598 +2012-03-01,"Michigan",24049 +2012-03-01,"New Hampshire",765 +2012-03-01,"Louisiana",2957 +2012-03-01,"South Carolina",1753 +2012-03-01,"New Mexico",3667 +2012-03-01,"Indiana",9521 2012-03-01,"Wyoming",1220 +2012-03-01,"New Jersey",21637 +2012-03-01,"Colorado",11633 +2012-03-01,"Alaska",2333 +2012-03-01,"Ohio",22294 +2012-03-01,"West Virginia",1961 +2012-03-01,"New York",37978 +2012-03-01,"Nevada",4325 +2012-03-01,"Massachusetts",12560 +2012-03-01,"Georgia",7144 +2012-03-01,"Minnesota",8604 +2012-03-01,"Kansas",4398 +2012-03-01,"Missouri",5891 +2012-03-01,"Illinois",29727 +2012-03-01,"Kentucky",3664 +2012-03-01,"Idaho",2694 +2012-03-01,"Mississippi",1760 +2012-03-01,"Oklahoma",4528 +2012-03-01,"Texas",18156 +2012-03-01,"Tennessee",3986 +2012-03-01,"Arizona",4487 +2012-03-01,"Montana",1950 +2012-03-01,"Florida",1473 +2012-03-01,"Alabama",2207 +2012-03-01,"Delaware",912 +2012-03-01,"Virginia",4940 +2012-03-01,"Maine",158 +2012-03-01,"Rhode Island",1772 +2012-03-01,"Pennsylvania",19282 +2012-03-01,"Connecticut",4309 +2012-03-01,"Wisconsin",9470 +2012-03-01,"California",55899 +2012-03-01,"Vermont",347 +2012-03-01,"Nebraska",3206 +2012-03-01,"South Dakota",860 +2012-03-01,"Oregon",5894 +2012-03-01,"North Carolina",4113 +2012-03-01,"District of Columbia",979 +2012-03-01,"North Dakota",832 +2012-03-01,"Arkansas",3011 +2012-03-01,"Hawaii",45 +2012-03-01,"Iowa",4896 +2012-03-01,"Washington",10663 +2012-03-01,"Maryland",6248 +2012-03-01,"Utah",5993 +2012-03-01,"U.S.",403150 +2012-04-01,"Alaska",1467 +2012-04-01,"Arizona",2612 +2012-04-01,"Kentucky",2100 +2012-04-01,"Connecticut",3016 2012-04-01,"Wyoming",797 +2012-04-01,"Massachusetts",8046 +2012-04-01,"Maine",103 +2012-04-01,"Georgia",5164 +2012-04-01,"Alabama",1328 +2012-04-01,"Michigan",21633 +2012-04-01,"Pennsylvania",14320 +2012-04-01,"West Virginia",1907 +2012-04-01,"Maryland",4500 +2012-04-01,"Mississippi",952 +2012-04-01,"New York",26544 +2012-04-01,"Nevada",2717 +2012-04-01,"Tennessee",2149 +2012-04-01,"Missouri",3669 +2012-04-01,"Nebraska",1476 +2012-04-01,"Arkansas",1147 +2012-04-01,"Florida",1190 +2012-04-01,"Vermont",258 +2012-04-01,"District of Columbia",666 +2012-04-01,"Texas",8599 +2012-04-01,"Delaware",604 +2012-04-01,"Louisiana",1709 +2012-04-01,"Washington",5779 +2012-04-01,"California",38572 +2012-04-01,"U.S.",279211 +2012-04-01,"Kansas",2212 +2012-04-01,"South Dakota",643 +2012-04-01,"New Hampshire",463 +2012-04-01,"Rhode Island",1012 +2012-04-01,"Hawaii",46 +2012-04-01,"Iowa",3339 +2012-04-01,"Oregon",3331 +2012-04-01,"Idaho",1602 +2012-04-01,"Montana",1336 +2012-04-01,"North Carolina",2349 +2012-04-01,"New Mexico",1775 +2012-04-01,"Oklahoma",2188 +2012-04-01,"Indiana",6856 +2012-04-01,"Minnesota",6899 +2012-04-01,"Virginia",4192 +2012-04-01,"Colorado",5903 +2012-04-01,"Ohio",17849 +2012-04-01,"Utah",3752 +2012-04-01,"New Jersey",15121 +2012-04-01,"North Dakota",621 +2012-04-01,"Illinois",25243 +2012-04-01,"South Carolina",836 +2012-04-01,"Wisconsin",8622 +2012-05-01,"Hawaii",41 +2012-05-01,"California",28728 2012-05-01,"Wyoming",560 +2012-05-01,"District of Columbia",303 +2012-05-01,"South Dakota",430 +2012-05-01,"Ohio",9925 +2012-05-01,"Maryland",2024 +2012-05-01,"Wisconsin",3711 +2012-05-01,"Massachusetts",5328 +2012-05-01,"Georgia",3808 +2012-05-01,"Michigan",7775 +2012-05-01,"Colorado",3745 +2012-05-01,"Rhode Island",613 +2012-05-01,"Washington",4010 +2012-05-01,"Idaho",1119 +2012-05-01,"Vermont",126 +2012-05-01,"Mississippi",648 +2012-05-01,"U.S.",163083 +2012-05-01,"Minnesota",3467 +2012-05-01,"Nebraska",1187 +2012-05-01,"Arkansas",804 +2012-05-01,"Iowa",1791 +2012-05-01,"Kentucky",1165 +2012-05-01,"North Carolina",1452 +2012-05-01,"Texas",6339 +2012-05-01,"Arizona",1656 +2012-05-01,"Oregon",2205 +2012-05-01,"New Mexico",1168 +2012-05-01,"Nevada",1774 +2012-05-01,"Tennessee",1431 +2012-05-01,"Kansas",1499 +2012-05-01,"Missouri",2336 +2012-05-01,"New Hampshire",287 +2012-05-01,"Pennsylvania",7457 +2012-05-01,"South Carolina",653 +2012-05-01,"Connecticut",1674 +2012-05-01,"Montana",983 +2012-05-01,"Indiana",3268 +2012-05-01,"Utah",2822 +2012-05-01,"North Dakota",357 +2012-05-01,"Virginia",2181 +2012-05-01,"Louisiana",1471 +2012-05-01,"West Virginia",458 +2012-05-01,"Maine",67 +2012-05-01,"Alaska",1056 +2012-05-01,"Illinois",11707 +2012-05-01,"Florida",995 +2012-05-01,"Oklahoma",1558 +2012-05-01,"New York",15280 +2012-05-01,"New Jersey",8417 +2012-05-01,"Alabama",893 +2012-05-01,"Delaware",332 +2012-06-01,"Alaska",699 +2012-06-01,"Louisiana",1264 +2012-06-01,"North Carolina",1135 +2012-06-01,"Florida",837 +2012-06-01,"New York",10722 +2012-06-01,"Indiana",2662 +2012-06-01,"Massachusetts",4273 +2012-06-01,"Kansas",1372 +2012-06-01,"South Dakota",244 +2012-06-01,"Rhode Island",542 +2012-06-01,"Hawaii",42 +2012-06-01,"Iowa",1327 +2012-06-01,"Maryland",1878 +2012-06-01,"California",23707 +2012-06-01,"Mississippi",563 +2012-06-01,"U.S.",123336 +2012-06-01,"Minnesota",2274 +2012-06-01,"Nebraska",864 +2012-06-01,"Colorado",2451 2012-06-01,"Wyoming",275 +2012-06-01,"Utah",2259 +2012-06-01,"District of Columbia",263 +2012-06-01,"Wisconsin",2682 +2012-06-01,"Maine",53 +2012-06-01,"Tennessee",1079 +2012-06-01,"Virginia",1760 +2012-06-01,"Michigan",6477 +2012-06-01,"Idaho",674 +2012-06-01,"Connecticut",1206 +2012-06-01,"Montana",580 +2012-06-01,"Oklahoma",1343 +2012-06-01,"New Jersey",5630 +2012-06-01,"Illinois",9099 +2012-06-01,"West Virginia",327 +2012-06-01,"Washington",2979 +2012-06-01,"Nevada",1504 +2012-06-01,"Texas",5454 +2012-06-01,"North Dakota",195 +2012-06-01,"Georgia",3373 +2012-06-01,"Delaware",195 +2012-06-01,"Missouri",1894 +2012-06-01,"Arkansas",650 +2012-06-01,"Arizona",1295 +2012-06-01,"Kentucky",962 +2012-06-01,"Oregon",1434 +2012-06-01,"South Carolina",484 +2012-06-01,"Alabama",723 +2012-06-01,"New Hampshire",185 +2012-06-01,"Pennsylvania",4528 +2012-06-01,"Ohio",5867 +2012-06-01,"Vermont",79 +2012-06-01,"New Mexico",974 +2012-07-01,"Pennsylvania",3948 +2012-07-01,"Oregon",1197 +2012-07-01,"New Mexico",876 +2012-07-01,"Minnesota",2492 +2012-07-01,"Delaware",155 +2012-07-01,"Arkansas",606 +2012-07-01,"California",22631 +2012-07-01,"Maine",34 +2012-07-01,"Texas",5585 +2012-07-01,"Virginia",1431 +2012-07-01,"Michigan",5523 +2012-07-01,"New Hampshire",146 +2012-07-01,"Hawaii",38 +2012-07-01,"Iowa",1140 +2012-07-01,"West Virginia",233 +2012-07-01,"Montana",362 +2012-07-01,"Indiana",2146 +2012-07-01,"Tennessee",975 +2012-07-01,"Nebraska",1005 +2012-07-01,"Kentucky",790 +2012-07-01,"Connecticut",1055 +2012-07-01,"North Carolina",901 +2012-07-01,"Mississippi",580 +2012-07-01,"North Dakota",171 +2012-07-01,"Georgia",3159 +2012-07-01,"U.S.",107517 +2012-07-01,"South Dakota",181 +2012-07-01,"Colorado",2396 +2012-07-01,"Washington",2045 +2012-07-01,"Idaho",578 +2012-07-01,"Wisconsin",2159 +2012-07-01,"Nevada",1377 +2012-07-01,"Utah",1483 +2012-07-01,"Massachusetts",2939 +2012-07-01,"Rhode Island",433 +2012-07-01,"Illinois",7511 +2012-07-01,"Vermont",70 +2012-07-01,"Oklahoma",1154 +2012-07-01,"New York",9079 +2012-07-01,"District of Columbia",236 +2012-07-01,"Missouri",1653 +2012-07-01,"Alaska",634 +2012-07-01,"Louisiana",1276 +2012-07-01,"Arizona",1096 +2012-07-01,"Maryland",1529 +2012-07-01,"New Jersey",4836 +2012-07-01,"Alabama",703 +2012-07-01,"Ohio",4447 +2012-07-01,"South Carolina",431 +2012-07-01,"Florida",821 2012-07-01,"Wyoming",209 +2012-07-01,"Kansas",1062 +2012-08-01,"New Hampshire",144 +2012-08-01,"New York",8776 2012-08-01,"Wyoming",278 +2012-08-01,"Minnesota",2357 +2012-08-01,"Arkansas",551 +2012-08-01,"Iowa",1173 +2012-08-01,"West Virginia",379 +2012-08-01,"New Mexico",899 +2012-08-01,"Oklahoma",1121 +2012-08-01,"Texas",5063 +2012-08-01,"Tennessee",1019 +2012-08-01,"Alabama",700 +2012-08-01,"Louisiana",1242 +2012-08-01,"Arizona",1020 +2012-08-01,"Idaho",529 +2012-08-01,"Connecticut",971 +2012-08-01,"Virginia",1369 +2012-08-01,"Missouri",1769 +2012-08-01,"Nebraska",511 +2012-08-01,"Michigan",5790 +2012-08-01,"Rhode Island",411 +2012-08-01,"Ohio",4367 +2012-08-01,"South Carolina",500 +2012-08-01,"U.S.",105604 +2012-08-01,"South Dakota",230 +2012-08-01,"Pennsylvania",4133 +2012-08-01,"Washington",1933 +2012-08-01,"Florida",805 +2012-08-01,"Maine",32 +2012-08-01,"Utah",1773 +2012-08-01,"Massachusetts",3514 +2012-08-01,"New Jersey",4822 +2012-08-01,"Georgia",3398 +2012-08-01,"Delaware",141 +2012-08-01,"Alaska",558 +2012-08-01,"Kentucky",836 +2012-08-01,"Maryland",1610 +2012-08-01,"North Carolina",1135 +2012-08-01,"Indiana",2318 +2012-08-01,"Colorado",2405 +2012-08-01,"Illinois",7878 +2012-08-01,"Hawaii",37 +2012-08-01,"Montana",375 +2012-08-01,"California",20731 +2012-08-01,"Vermont",68 +2012-08-01,"Mississippi",530 +2012-08-01,"Nevada",1054 +2012-08-01,"North Dakota",179 +2012-08-01,"Kansas",967 +2012-08-01,"Oregon",765 +2012-08-01,"Wisconsin",2195 +2012-08-01,"District of Columbia",242 +2012-09-01,"Ohio",5682 +2012-09-01,"West Virginia",631 +2012-09-01,"Maryland",1612 2012-09-01,"Wyoming",268 +2012-09-01,"Utah",1167 +2012-09-01,"South Dakota",264 +2012-09-01,"North Carolina",1015 +2012-09-01,"California",19607 +2012-09-01,"Florida",771 +2012-09-01,"Georgia",3460 +2012-09-01,"U.S.",118611 +2012-09-01,"Virginia",1829 +2012-09-01,"Louisiana",1203 +2012-09-01,"Kentucky",940 +2012-09-01,"Tennessee",1146 +2012-09-01,"Alabama",722 +2012-09-01,"Missouri",2105 +2012-09-01,"Illinois",9913 +2012-09-01,"Pennsylvania",4723 +2012-09-01,"Indiana",2886 +2012-09-01,"New Jersey",5000 +2012-09-01,"North Dakota",221 +2012-09-01,"Delaware",161 +2012-09-01,"Nebraska",661 +2012-09-01,"Arkansas",618 +2012-09-01,"Michigan",8127 +2012-09-01,"Alaska",1093 +2012-09-01,"New Hampshire",128 +2012-09-01,"Hawaii",35 +2012-09-01,"Idaho",614 +2012-09-01,"South Carolina",462 +2012-09-01,"Connecticut",1253 +2012-09-01,"Montana",459 +2012-09-01,"Maine",41 +2012-09-01,"Oklahoma",1107 +2012-09-01,"Texas",5091 +2012-09-01,"Kansas",1172 +2012-09-01,"Washington",2181 +2012-09-01,"Wisconsin",3202 +2012-09-01,"New York",9971 +2012-09-01,"District of Columbia",233 +2012-09-01,"Colorado",3180 +2012-09-01,"Mississippi",572 +2012-09-01,"Massachusetts",3920 +2012-09-01,"Rhode Island",398 +2012-09-01,"Arizona",1087 +2012-09-01,"Iowa",1576 +2012-09-01,"Oregon",1023 +2012-09-01,"Vermont",82 +2012-09-01,"New Mexico",950 +2012-09-01,"Nevada",1199 +2012-09-01,"Minnesota",2852 +2012-10-01,"South Dakota",772 +2012-10-01,"New Hampshire",282 +2012-10-01,"Hawaii",34 +2012-10-01,"District of Columbia",614 +2012-10-01,"North Dakota",754 +2012-10-01,"U.S.",240105 +2012-10-01,"Delaware",326 +2012-10-01,"Kansas",2667 +2012-10-01,"Virginia",3929 +2012-10-01,"Ohio",16306 +2012-10-01,"Indiana",7959 +2012-10-01,"Massachusetts",5453 +2012-10-01,"Missouri",5132 +2012-10-01,"Michigan",20470 +2012-10-01,"Colorado",7954 +2012-10-01,"Arizona",1373 +2012-10-01,"Kentucky",2270 +2012-10-01,"Montana",1485 +2012-10-01,"New Jersey",8095 +2012-10-01,"Alabama",1334 +2012-10-01,"Pennsylvania",10279 +2012-10-01,"Iowa",3228 +2012-10-01,"Oregon",2512 +2012-10-01,"South Carolina",1000 +2012-10-01,"California",24622 +2012-10-01,"Minnesota",8616 +2012-10-01,"Washington",5175 +2012-10-01,"Maryland",3817 +2012-10-01,"Wisconsin",7823 +2012-10-01,"Florida",823 +2012-10-01,"Vermont",149 +2012-10-01,"Mississippi",963 +2012-10-01,"Georgia",5851 +2012-10-01,"Connecticut",1993 2012-10-01,"Wyoming",865 +2012-10-01,"Tennessee",2728 +2012-10-01,"Nebraska",1680 +2012-10-01,"Alaska",1730 +2012-10-01,"Rhode Island",830 +2012-10-01,"Louisiana",1835 +2012-10-01,"North Carolina",2706 +2012-10-01,"Maine",80 +2012-10-01,"Oklahoma",2583 +2012-10-01,"New York",17856 +2012-10-01,"Utah",3673 +2012-10-01,"Arkansas",1145 +2012-10-01,"Illinois",24148 +2012-10-01,"West Virginia",1363 +2012-10-01,"Idaho",1756 +2012-10-01,"New Mexico",1368 +2012-10-01,"Nevada",1513 +2012-10-01,"Texas",8185 +2012-11-01,"South Dakota",1343 +2012-11-01,"Louisiana",3626 +2012-11-01,"Kentucky",5604 +2012-11-01,"Mississippi",2460 2012-11-01,"Wyoming",1262 +2012-11-01,"Massachusetts",13159 +2012-11-01,"Alaska",2743 +2012-11-01,"Illinois",44531 +2012-11-01,"Ohio",33308 +2012-11-01,"Arizona",2417 +2012-11-01,"Iowa",6343 +2012-11-01,"West Virginia",3300 +2012-11-01,"Maryland",9985 +2012-11-01,"Montana",2199 +2012-11-01,"New Mexico",3193 +2012-11-01,"New York",43467 +2012-11-01,"Utah",6231 +2012-11-01,"Minnesota",13009 +2012-11-01,"Alabama",3735 +2012-11-01,"Michigan",35206 +2012-11-01,"Maine",180 +2012-11-01,"New Jersey",20129 +2012-11-01,"U.S.",482134 +2012-11-01,"Idaho",2803 +2012-11-01,"Florida",1257 +2012-11-01,"Vermont",290 +2012-11-01,"Kansas",5273 +2012-11-01,"Washington",8711 +2012-11-01,"Oklahoma",4766 +2012-11-01,"Texas",13761 +2012-11-01,"Georgia",12989 +2012-11-01,"Delaware",1132 +2012-11-01,"Virginia",10469 +2012-11-01,"South Carolina",3602 +2012-11-01,"Indiana",14880 +2012-11-01,"District of Columbia",1762 +2012-11-01,"Missouri",10128 +2012-11-01,"Rhode Island",2052 +2012-11-01,"Pennsylvania",26153 +2012-11-01,"Oregon",4735 +2012-11-01,"Connecticut",4686 +2012-11-01,"North Carolina",9189 +2012-11-01,"Tennessee",7744 +2012-11-01,"North Dakota",1230 +2012-11-01,"Colorado",12657 +2012-11-01,"New Hampshire",750 +2012-11-01,"Hawaii",36 +2012-11-01,"Wisconsin",13109 +2012-11-01,"California",41236 +2012-11-01,"Nevada",3143 +2012-11-01,"Nebraska",3235 +2012-11-01,"Arkansas",2930 +2012-12-01,"Alaska",3129 +2012-12-01,"Iowa",10222 +2012-12-01,"Oregon",6797 +2012-12-01,"South Carolina",4105 +2012-12-01,"Montana",3137 +2012-12-01,"California",70162 +2012-12-01,"Oklahoma",9054 +2012-12-01,"Delaware",1337 +2012-12-01,"Arkansas",4486 +2012-12-01,"South Dakota",1995 +2012-12-01,"New Hampshire",1046 +2012-12-01,"Washington",12161 +2012-12-01,"Connecticut",6440 +2012-12-01,"Massachusetts",17885 +2012-12-01,"Texas",29003 +2012-12-01,"Colorado",20049 +2012-12-01,"Maryland",11218 +2012-12-01,"New Mexico",5831 +2012-12-01,"New York",55236 2012-12-01,"Wyoming",1955 +2012-12-01,"Alabama",4849 +2012-12-01,"Pennsylvania",31185 +2012-12-01,"Hawaii",37 +2012-12-01,"Kentucky",7586 +2012-12-01,"West Virginia",3454 +2012-12-01,"Idaho",4050 +2012-12-01,"Vermont",491 +2012-12-01,"Indiana",18871 +2012-12-01,"U.S.",670344 +2012-12-01,"Virginia",12066 +2012-12-01,"Illinois",57269 +2012-12-01,"Georgia",16188 +2012-12-01,"Missouri",16056 +2012-12-01,"Nebraska",5747 +2012-12-01,"Rhode Island",2324 +2012-12-01,"Ohio",38881 +2012-12-01,"Arizona",4616 +2012-12-01,"Wisconsin",18297 +2012-12-01,"Florida",1655 +2012-12-01,"Utah",10645 +2012-12-01,"Tennessee",9963 +2012-12-01,"Kansas",9778 +2012-12-01,"Michigan",44638 +2012-12-01,"Louisiana",5055 +2012-12-01,"North Carolina",9321 +2012-12-01,"New Jersey",28936 +2012-12-01,"Minnesota",20227 +2012-12-01,"Maine",264 +2012-12-01,"Mississippi",3626 +2012-12-01,"Nevada",5479 +2012-12-01,"District of Columbia",1713 +2012-12-01,"North Dakota",1830 +2013-01-01,"Louisiana",7100 +2013-01-01,"Illinois",78809 +2013-01-01,"Washington",14568 +2013-01-01,"Maryland",14893 +2013-01-01,"Vermont",608 +2013-01-01,"Alaska",2526 +2013-01-01,"New Hampshire",1146 +2013-01-01,"Pennsylvania",41758 +2013-01-01,"Hawaii",52 +2013-01-01,"South Carolina",5003 +2013-01-01,"Montana",3444 +2013-01-01,"Florida",1962 +2013-01-01,"Utah",15510 +2013-01-01,"U.S.",872291 +2013-01-01,"Nebraska",7358 +2013-01-01,"Arkansas",6620 +2013-01-01,"Michigan",55189 +2013-01-01,"Iowa",12919 +2013-01-01,"Connecticut",8251 +2013-01-01,"Wisconsin",24180 +2013-01-01,"Maine",339 2013-01-01,"Wyoming",2251 +2013-01-01,"District of Columbia",2438 +2013-01-01,"Colorado",22830 +2013-01-01,"Kentucky",10210 +2013-01-01,"New York",68908 +2013-01-01,"Missouri",19908 +2013-01-01,"Mississippi",4505 +2013-01-01,"Nevada",9120 +2013-01-01,"Texas",44556 +2013-01-01,"Alabama",6147 +2013-01-01,"Kansas",12812 +2013-01-01,"Oregon",8735 +2013-01-01,"North Carolina",12218 +2013-01-01,"New Mexico",7652 +2013-01-01,"Oklahoma",10962 +2013-01-01,"Indiana",26226 +2013-01-01,"Massachusetts",19571 +2013-01-01,"North Dakota",2080 +2013-01-01,"Georgia",18331 +2013-01-01,"Delaware",1901 +2013-01-01,"Ohio",53574 +2013-01-01,"Tennessee",13889 +2013-01-01,"Virginia",15302 +2013-01-01,"South Dakota",2442 +2013-01-01,"Rhode Island",3407 +2013-01-01,"Arizona",9313 +2013-01-01,"West Virginia",4530 +2013-01-01,"Idaho",5590 +2013-01-01,"California",85488 +2013-01-01,"New Jersey",39912 +2013-01-01,"Minnesota",25249 +2013-02-01,"West Virginia",4486 +2013-02-01,"Oregon",5795 +2013-02-01,"South Carolina",5216 +2013-02-01,"New Mexico",5625 +2013-02-01,"Indiana",23027 +2013-02-01,"Nebraska",5973 +2013-02-01,"Arizona",7051 +2013-02-01,"Idaho",3496 +2013-02-01,"North Carolina",12114 +2013-02-01,"Nevada",6103 +2013-02-01,"Utah",9654 +2013-02-01,"District of Columbia",2239 +2013-02-01,"Tennessee",11719 +2013-02-01,"Alaska",2130 +2013-02-01,"North Dakota",1626 +2013-02-01,"U.S.",750082 +2013-02-01,"Arkansas",5316 +2013-02-01,"Louisiana",4809 2013-02-01,"Wyoming",1841 +2013-02-01,"New Jersey",37407 +2013-02-01,"New Hampshire",1201 +2013-02-01,"Rhode Island",2951 +2013-02-01,"Hawaii",50 +2013-02-01,"Ohio",50370 +2013-02-01,"Washington",10267 +2013-02-01,"Florida",1687 +2013-02-01,"Maine",293 +2013-02-01,"New York",65792 +2013-02-01,"Alabama",5657 +2013-02-01,"Missouri",17095 +2013-02-01,"Colorado",19426 +2013-02-01,"Illinois",70482 +2013-02-01,"Vermont",554 +2013-02-01,"Mississippi",3304 +2013-02-01,"Iowa",10673 +2013-02-01,"Connecticut",7731 +2013-02-01,"Maryland",14270 +2013-02-01,"Wisconsin",21428 +2013-02-01,"California",64601 +2013-02-01,"Oklahoma",10140 +2013-02-01,"Massachusetts",17864 +2013-02-01,"South Dakota",1948 +2013-02-01,"Michigan",51657 +2013-02-01,"Pennsylvania",39594 +2013-02-01,"Kentucky",8749 +2013-02-01,"Montana",2563 +2013-02-01,"Texas",27347 +2013-02-01,"Georgia",19031 +2013-02-01,"Minnesota",20673 +2013-02-01,"Delaware",1856 +2013-02-01,"Kansas",10563 +2013-02-01,"Virginia",14632 +2013-03-01,"South Dakota",1849 +2013-03-01,"Iowa",10341 +2013-03-01,"New Mexico",3550 +2013-03-01,"Indiana",21628 +2013-03-01,"U.S.",662262 +2013-03-01,"New Hampshire",1024 +2013-03-01,"Rhode Island",1841 +2013-03-01,"Pennsylvania",35141 +2013-03-01,"Ohio",46797 +2013-03-01,"Connecticut",6390 +2013-03-01,"North Carolina",11612 +2013-03-01,"Vermont",465 +2013-03-01,"Nevada",4077 +2013-03-01,"Massachusetts",15557 +2013-03-01,"Texas",23570 +2013-03-01,"Georgia",17837 +2013-03-01,"Louisiana",4873 +2013-03-01,"Hawaii",48 +2013-03-01,"Kentucky",8659 +2013-03-01,"Washington",9142 +2013-03-01,"Maine",240 +2013-03-01,"Alabama",5205 +2013-03-01,"Delaware",1688 +2013-03-01,"Michigan",47035 +2013-03-01,"Colorado",15454 +2013-03-01,"Arizona",4809 +2013-03-01,"South Carolina",4751 +2013-03-01,"Maryland",12749 2013-03-01,"Wyoming",1584 +2013-03-01,"Virginia",13462 +2013-03-01,"Nebraska",5685 +2013-03-01,"Idaho",2777 +2013-03-01,"Montana",2365 +2013-03-01,"Florida",2147 +2013-03-01,"Utah",6853 +2013-03-01,"New Jersey",34257 +2013-03-01,"District of Columbia",1948 +2013-03-01,"North Dakota",1624 +2013-03-01,"Minnesota",18115 +2013-03-01,"Missouri",16290 +2013-03-01,"Arkansas",4977 +2013-03-01,"Alaska",2304 +2013-03-01,"Illinois",64802 +2013-03-01,"West Virginia",4560 +2013-03-01,"Oregon",4238 +2013-03-01,"Mississippi",3549 +2013-03-01,"Kansas",9990 +2013-03-01,"Wisconsin",19759 +2013-03-01,"California",43465 +2013-03-01,"Oklahoma",10035 +2013-03-01,"New York",60057 +2013-03-01,"Tennessee",11085 +2013-04-01,"Alaska",1889 +2013-04-01,"Illinois",34245 +2013-04-01,"Ohio",21855 +2013-04-01,"Arizona",2273 +2013-04-01,"Iowa",5885 +2013-04-01,"Maryland",5232 +2013-04-01,"Montana",1855 +2013-04-01,"Massachusetts",9386 +2013-04-01,"South Carolina",1586 +2013-04-01,"California",31414 +2013-04-01,"Minnesota",12133 +2013-04-01,"Virginia",6358 +2013-04-01,"Nebraska",3623 +2013-04-01,"Louisiana",2995 +2013-04-01,"Pennsylvania",16952 +2013-04-01,"Hawaii",49 +2013-04-01,"Oregon",3452 +2013-04-01,"Washington",6638 +2013-04-01,"Wisconsin",11962 +2013-04-01,"North Carolina",3617 +2013-04-01,"Oklahoma",6569 2013-04-01,"Wyoming",1375 +2013-04-01,"Tennessee",4774 +2013-04-01,"South Dakota",1272 +2013-04-01,"Colorado",12103 +2013-04-01,"Kentucky",3249 +2013-04-01,"Mississippi",1788 +2013-04-01,"New Hampshire",757 +2013-04-01,"Maine",165 +2013-04-01,"Vermont",285 +2013-04-01,"Nevada",2476 +2013-04-01,"Indiana",9466 +2013-04-01,"Utah",4975 +2013-04-01,"North Dakota",1107 +2013-04-01,"Arkansas",2433 +2013-04-01,"Idaho",1885 +2013-04-01,"Florida",1646 +2013-04-01,"Delaware",723 +2013-04-01,"New Mexico",2146 +2013-04-01,"New York",33232 +2013-04-01,"Georgia",7153 +2013-04-01,"Kansas",5437 +2013-04-01,"Missouri",7660 +2013-04-01,"Michigan",26582 +2013-04-01,"Rhode Island",1121 +2013-04-01,"West Virginia",1982 +2013-04-01,"Connecticut",4103 +2013-04-01,"District of Columbia",761 +2013-04-01,"New Jersey",20025 +2013-04-01,"Texas",13573 +2013-04-01,"U.S.",366420 +2013-04-01,"Alabama",2198 +2013-05-01,"Idaho",916 +2013-05-01,"Connecticut",1886 +2013-05-01,"Minnesota",4633 +2013-05-01,"Iowa",2888 +2013-05-01,"Montana",857 +2013-05-01,"North Carolina",1823 +2013-05-01,"New York",17596 +2013-05-01,"District of Columbia",449 +2013-05-01,"Massachusetts",4864 +2013-05-01,"South Dakota",546 +2013-05-01,"Michigan",10185 +2013-05-01,"Hawaii",50 +2013-05-01,"Maryland",3007 +2013-05-01,"California",26196 +2013-05-01,"Mississippi",1236 +2013-05-01,"Texas",9759 +2013-05-01,"Nebraska",1844 +2013-05-01,"Arkansas",1377 +2013-05-01,"Colorado",6550 +2013-05-01,"Rhode Island",750 +2013-05-01,"Ohio",8462 +2013-05-01,"Wisconsin",5541 +2013-05-01,"Florida",1069 +2013-05-01,"New Mexico",1460 2013-05-01,"Wyoming",604 +2013-05-01,"Georgia",5173 +2013-05-01,"Delaware",343 +2013-05-01,"Virginia",2827 +2013-05-01,"Arizona",1675 +2013-05-01,"West Virginia",824 +2013-05-01,"Maine",80 +2013-05-01,"Indiana",4506 +2013-05-01,"New Jersey",8898 +2013-05-01,"Alabama",1325 +2013-05-01,"Kansas",2886 +2013-05-01,"Louisiana",2044 +2013-05-01,"Illinois",15219 +2013-05-01,"Pennsylvania",8224 +2013-05-01,"South Carolina",824 +2013-05-01,"Oklahoma",4273 +2013-05-01,"North Dakota",438 +2013-05-01,"U.S.",193222 +2013-05-01,"Missouri",3924 +2013-05-01,"Alaska",1115 +2013-05-01,"Oregon",2069 +2013-05-01,"Washington",3713 +2013-05-01,"Vermont",145 +2013-05-01,"Nevada",1744 +2013-05-01,"Utah",1957 +2013-05-01,"Tennessee",2394 +2013-05-01,"New Hampshire",389 +2013-05-01,"Kentucky",1667 +2013-06-01,"Connecticut",1322 +2013-06-01,"Florida",662 +2013-06-01,"Mississippi",694 +2013-06-01,"Nevada",1395 +2013-06-01,"Utah",1872 +2013-06-01,"Kansas",1570 +2013-06-01,"Missouri",1956 +2013-06-01,"Nebraska",982 +2013-06-01,"Michigan",6684 +2013-06-01,"Alaska",585 +2013-06-01,"Rhode Island",481 +2013-06-01,"Louisiana",1377 +2013-06-01,"Montana",541 +2013-06-01,"New York",11134 +2013-06-01,"Delaware",200 +2013-06-01,"Arizona",1227 +2013-06-01,"Kentucky",1004 +2013-06-01,"South Carolina",497 +2013-06-01,"U.S.",127659 +2013-06-01,"Hawaii",50 +2013-06-01,"Ohio",5860 +2013-06-01,"Maryland",1859 +2013-06-01,"Wisconsin",3085 +2013-06-01,"Maine",48 +2013-06-01,"New Mexico",954 +2013-06-01,"Arkansas",733 +2013-06-01,"Pennsylvania",4991 +2013-06-01,"Washington",2404 +2013-06-01,"Virginia",2108 +2013-06-01,"Colorado",3562 +2013-06-01,"Illinois",9853 +2013-06-01,"Iowa",1586 +2013-06-01,"Oregon",1102 +2013-06-01,"Idaho",663 +2013-06-01,"North Carolina",942 2013-06-01,"Wyoming",270 +2013-06-01,"North Dakota",246 +2013-06-01,"Minnesota",3114 +2013-06-01,"West Virginia",467 +2013-06-01,"Vermont",99 +2013-06-01,"Indiana",2497 +2013-06-01,"District of Columbia",329 +2013-06-01,"New Jersey",6307 +2013-06-01,"Tennessee",1259 +2013-06-01,"South Dakota",265 +2013-06-01,"New Hampshire",226 +2013-06-01,"California",22876 +2013-06-01,"Oklahoma",1767 +2013-06-01,"Massachusetts",3256 +2013-06-01,"Texas",6114 +2013-06-01,"Georgia",3605 +2013-06-01,"Alabama",980 +2013-07-01,"Alaska",497 +2013-07-01,"New Hampshire",136 +2013-07-01,"Hawaii",47 +2013-07-01,"Ohio",4983 +2013-07-01,"Idaho",481 +2013-07-01,"Connecticut",970 +2013-07-01,"New Mexico",798 2013-07-01,"Wyoming",222 +2013-07-01,"Tennessee",1107 +2013-07-01,"Illinois",8595 +2013-07-01,"Iowa",1225 +2013-07-01,"Washington",1728 +2013-07-01,"Maine",37 +2013-07-01,"Vermont",81 +2013-07-01,"Nevada",1212 +2013-07-01,"District of Columbia",281 +2013-07-01,"Massachusetts",2897 +2013-07-01,"Georgia",3534 +2013-07-01,"Virginia",1440 +2013-07-01,"Pennsylvania",4018 +2013-07-01,"Maryland",1739 +2013-07-01,"North Carolina",1119 +2013-07-01,"Florida",719 +2013-07-01,"New York",9459 +2013-07-01,"Delaware",152 +2013-07-01,"Arkansas",612 +2013-07-01,"Louisiana",1269 +2013-07-01,"California",20894 +2013-07-01,"Oklahoma",1263 +2013-07-01,"Alabama",715 +2013-07-01,"Kansas",1292 +2013-07-01,"Rhode Island",375 +2013-07-01,"West Virginia",331 +2013-07-01,"Wisconsin",2541 +2013-07-01,"Mississippi",597 +2013-07-01,"Texas",5883 +2013-07-01,"Minnesota",2177 +2013-07-01,"Michigan",6208 +2013-07-01,"Utah",2159 +2013-07-01,"Missouri",2531 +2013-07-01,"Colorado",2610 +2013-07-01,"Arizona",1053 +2013-07-01,"Oregon",919 +2013-07-01,"Indiana",2430 +2013-07-01,"U.S.",111509 +2013-07-01,"South Dakota",230 +2013-07-01,"Kentucky",941 +2013-07-01,"South Carolina",440 +2013-07-01,"Montana",359 +2013-07-01,"New Jersey",5088 +2013-07-01,"North Dakota",186 +2013-07-01,"Nebraska",930 +2013-08-01,"Michigan",6008 +2013-08-01,"Rhode Island",402 +2013-08-01,"Louisiana",1256 +2013-08-01,"Wisconsin",2415 +2013-08-01,"Delaware",160 +2013-08-01,"Virginia",1346 +2013-08-01,"Nebraska",546 +2013-08-01,"South Dakota",221 +2013-08-01,"Alaska",590 +2013-08-01,"New Hampshire",155 +2013-08-01,"Connecticut",930 +2013-08-01,"New Mexico",935 +2013-08-01,"Indiana",2292 2013-08-01,"Wyoming",217 +2013-08-01,"Massachusetts",3093 +2013-08-01,"Texas",5280 +2013-08-01,"Hawaii",47 +2013-08-01,"Ohio",4889 +2013-08-01,"Idaho",431 +2013-08-01,"Utah",1437 +2013-08-01,"New Jersey",4660 +2013-08-01,"Kansas",1131 +2013-08-01,"Missouri",1784 +2013-08-01,"Arizona",1032 +2013-08-01,"West Virginia",362 +2013-08-01,"Florida",727 +2013-08-01,"Alabama",770 +2013-08-01,"Oregon",859 +2013-08-01,"Washington",1912 +2013-08-01,"North Carolina",1011 +2013-08-01,"Mississippi",562 +2013-08-01,"District of Columbia",254 +2013-08-01,"North Dakota",167 +2013-08-01,"U.S.",107731 +2013-08-01,"Minnesota",2214 +2013-08-01,"Colorado",2595 +2013-08-01,"Illinois",8483 +2013-08-01,"Maryland",1660 +2013-08-01,"Maine",34 +2013-08-01,"Arkansas",613 +2013-08-01,"Vermont",74 +2013-08-01,"Tennessee",1115 +2013-08-01,"Georgia",3566 +2013-08-01,"Pennsylvania",4059 +2013-08-01,"Iowa",1093 +2013-08-01,"Kentucky",856 +2013-08-01,"South Carolina",487 +2013-08-01,"Montana",341 +2013-08-01,"California",21214 +2013-08-01,"Oklahoma",1157 +2013-08-01,"New York",9185 +2013-08-01,"Nevada",1106 +2013-09-01,"Iowa",1353 +2013-09-01,"North Carolina",1145 +2013-09-01,"California",19699 2013-09-01,"Wyoming",340 +2013-09-01,"New Jersey",5035 +2013-09-01,"Georgia",3576 +2013-09-01,"Alabama",778 +2013-09-01,"Kansas",1065 +2013-09-01,"New Hampshire",184 +2013-09-01,"Kentucky",896 +2013-09-01,"Oregon",1293 +2013-09-01,"South Carolina",472 +2013-09-01,"Oklahoma",1178 +2013-09-01,"Utah",1687 +2013-09-01,"District of Columbia",281 +2013-09-01,"Tennessee",1117 +2013-09-01,"Minnesota",2612 +2013-09-01,"Virginia",1686 +2013-09-01,"Missouri",1765 +2013-09-01,"Michigan",8262 +2013-09-01,"Colorado",3121 +2013-09-01,"Louisiana",1325 +2013-09-01,"West Virginia",549 +2013-09-01,"Connecticut",1087 +2013-09-01,"Florida",663 +2013-09-01,"North Dakota",243 +2013-09-01,"U.S.",117803 +2013-09-01,"Delaware",183 +2013-09-01,"Arkansas",606 +2013-09-01,"Alaska",987 +2013-09-01,"Rhode Island",517 +2013-09-01,"Hawaii",47 +2013-09-01,"Washington",2209 +2013-09-01,"Montana",551 +2013-09-01,"Mississippi",568 +2013-09-01,"Nebraska",702 +2013-09-01,"Illinois",8600 +2013-09-01,"Ohio",5499 +2013-09-01,"Arizona",1132 +2013-09-01,"Nevada",1243 +2013-09-01,"Idaho",661 +2013-09-01,"Maine",43 +2013-09-01,"Vermont",86 +2013-09-01,"New Mexico",975 +2013-09-01,"Massachusetts",3700 +2013-09-01,"South Dakota",245 +2013-09-01,"Pennsylvania",4689 +2013-09-01,"Maryland",1537 +2013-09-01,"Wisconsin",2694 +2013-09-01,"New York",11223 +2013-09-01,"Indiana",2420 +2013-09-01,"Texas",5276 +2013-10-01,"Michigan",18237 +2013-10-01,"Iowa",3350 +2013-10-01,"West Virginia",1356 +2013-10-01,"Idaho",1974 +2013-10-01,"Maine",78 +2013-10-01,"Indiana",7115 +2013-10-01,"Delaware",313 +2013-10-01,"Washington",6588 +2013-10-01,"South Carolina",815 +2013-10-01,"Connecticut",1715 +2013-10-01,"Maryland",3433 +2013-10-01,"Nebraska",1668 +2013-10-01,"Oregon",3347 +2013-10-01,"Montana",1679 +2013-10-01,"New Jersey",8021 +2013-10-01,"Texas",7264 +2013-10-01,"Tennessee",2092 +2013-10-01,"Ohio",9097 +2013-10-01,"New Mexico",1797 +2013-10-01,"Oklahoma",1469 +2013-10-01,"Arkansas",1062 +2013-10-01,"Colorado",8689 +2013-10-01,"North Carolina",2345 2013-10-01,"Wyoming",1068 +2013-10-01,"District of Columbia",451 +2013-10-01,"Massachusetts",5421 +2013-10-01,"U.S.",222668 +2013-10-01,"Kansas",2397 +2013-10-01,"Missouri",2676 +2013-10-01,"New Hampshire",208 +2013-10-01,"Louisiana",1520 +2013-10-01,"Illinois",22640 +2013-10-01,"Hawaii",44 +2013-10-01,"Arizona",1672 +2013-10-01,"Florida",973 +2013-10-01,"Utah",2814 +2013-10-01,"North Dakota",700 +2013-10-01,"Alabama",1142 +2013-10-01,"Pennsylvania",9447 +2013-10-01,"Kentucky",2081 +2013-10-01,"California",28257 +2013-10-01,"Vermont",143 +2013-10-01,"New York",16594 +2013-10-01,"Georgia",5585 +2013-10-01,"Minnesota",6744 +2013-10-01,"Virginia",2995 +2013-10-01,"South Dakota",834 +2013-10-01,"Alaska",1314 +2013-10-01,"Rhode Island",963 +2013-10-01,"Wisconsin",7295 +2013-10-01,"Mississippi",978 +2013-10-01,"Nevada",2210 +2013-11-01,"Illinois",50768 +2013-11-01,"Connecticut",4624 +2013-11-01,"Maine",195 +2013-11-01,"Texas",15719 +2013-11-01,"Tennessee",6931 +2013-11-01,"U.S.",517529 +2013-11-01,"Alabama",3925 +2013-11-01,"Virginia",9631 +2013-11-01,"Arizona",2542 +2013-11-01,"Kentucky",6289 +2013-11-01,"Maryland",9776 +2013-11-01,"Florida",1275 +2013-11-01,"New York",44459 +2013-11-01,"New Jersey",23199 +2013-11-01,"North Dakota",1361 +2013-11-01,"Delaware",1016 +2013-11-01,"New Hampshire",507 +2013-11-01,"Louisiana",3131 +2013-11-01,"Pennsylvania",24510 +2013-11-01,"Idaho",3260 +2013-11-01,"South Carolina",3651 +2013-11-01,"Nevada",3411 +2013-11-01,"North Carolina",9514 +2013-11-01,"Georgia",14538 +2013-11-01,"Michigan",41106 +2013-11-01,"Alaska",2420 +2013-11-01,"Ohio",35345 +2013-11-01,"California",42264 +2013-11-01,"Vermont",333 +2013-11-01,"Utah",7222 +2013-11-01,"Minnesota",15228 +2013-11-01,"Kansas",5313 +2013-11-01,"Hawaii",48 +2013-11-01,"West Virginia",3198 +2013-11-01,"Oregon",5555 +2013-11-01,"Wisconsin",16075 +2013-11-01,"Montana",2510 +2013-11-01,"New Mexico",3667 +2013-11-01,"Massachusetts",12413 +2013-11-01,"Missouri",10809 +2013-11-01,"South Dakota",1429 +2013-11-01,"Colorado",14493 +2013-11-01,"Washington",9774 +2013-11-01,"Mississippi",2275 +2013-11-01,"Indiana",16619 +2013-11-01,"District of Columbia",1642 +2013-11-01,"Rhode Island",2336 +2013-11-01,"Iowa",7273 +2013-11-01,"Oklahoma",4503 2013-11-01,"Wyoming",1529 +2013-11-01,"Nebraska",4183 +2013-11-01,"Arkansas",3735 +2013-12-01,"Louisiana",7120 +2013-12-01,"Hawaii",49 +2013-12-01,"Maryland",13185 +2013-12-01,"North Carolina",12192 +2013-12-01,"District of Columbia",2139 +2013-12-01,"Michigan",57059 +2013-12-01,"Washington",14423 +2013-12-01,"Wisconsin",26010 +2013-12-01,"Maine",338 +2013-12-01,"Vermont",544 +2013-12-01,"Tennessee",13758 +2013-12-01,"North Dakota",2307 +2013-12-01,"Minnesota",27007 +2013-12-01,"Oregon",8890 +2013-12-01,"Idaho",5235 +2013-12-01,"South Carolina",4901 +2013-12-01,"Nevada",7568 +2013-12-01,"Virginia",13916 +2013-12-01,"Colorado",23504 +2013-12-01,"Illinois",80106 +2013-12-01,"Pennsylvania",38477 +2013-12-01,"West Virginia",3870 +2013-12-01,"Indiana",26270 +2013-12-01,"Texas",42807 +2013-12-01,"Georgia",19700 +2013-12-01,"Alabama",6216 +2013-12-01,"Ohio",50631 +2013-12-01,"Iowa",13934 +2013-12-01,"Connecticut",7795 +2013-12-01,"Montana",3749 +2013-12-01,"Nebraska",7733 +2013-12-01,"California",75406 +2013-12-01,"Florida",1789 +2013-12-01,"Mississippi",5130 +2013-12-01,"New Mexico",6464 +2013-12-01,"New York",68718 +2013-12-01,"Utah",14349 +2013-12-01,"New Jersey",33386 +2013-12-01,"Missouri",20048 +2013-12-01,"Arkansas",6904 +2013-12-01,"South Dakota",2637 +2013-12-01,"Rhode Island",3078 +2013-12-01,"Arizona",5914 +2013-12-01,"Oklahoma",12791 2013-12-01,"Wyoming",2338 +2013-12-01,"Alaska",2859 +2013-12-01,"New Hampshire",1253 +2013-12-01,"Kentucky",9606 +2013-12-01,"Massachusetts",18845 +2013-12-01,"U.S.",848195 +2013-12-01,"Delaware",1663 +2013-12-01,"Kansas",13581 +2014-01-01,"Mississippi",6617 +2014-01-01,"New Jersey",50138 +2014-01-01,"Texas",56481 +2014-01-01,"Tennessee",19749 +2014-01-01,"Michigan",71831 +2014-01-01,"Colorado",22977 +2014-01-01,"Louisiana",10769 +2014-01-01,"Arizona",6983 +2014-01-01,"California",61049 +2014-01-01,"Florida",3057 +2014-01-01,"Nebraska",8326 +2014-01-01,"Arkansas",9194 +2014-01-01,"Pennsylvania",53292 +2014-01-01,"Kentucky",13627 +2014-01-01,"Oregon",7412 +2014-01-01,"Missouri",25916 +2014-01-01,"Alaska",2169 +2014-01-01,"New Hampshire",1476 +2014-01-01,"Washington",12903 +2014-01-01,"Montana",3307 +2014-01-01,"Maine",421 +2014-01-01,"Minnesota",29694 +2014-01-01,"Hawaii",57 +2014-01-01,"Ohio",70548 +2014-01-01,"West Virginia",5909 +2014-01-01,"Idaho",4456 +2014-01-01,"South Carolina",8096 +2014-01-01,"New York",79952 +2014-01-01,"Indiana",34662 2014-01-01,"Wyoming",2045 +2014-01-01,"Kansas",15232 +2014-01-01,"Virginia",20627 +2014-01-01,"South Dakota",2722 +2014-01-01,"Rhode Island",3664 +2014-01-01,"Iowa",16339 +2014-01-01,"Connecticut",9677 +2014-01-01,"North Carolina",19026 +2014-01-01,"Vermont",706 +2014-01-01,"New Mexico",6317 +2014-01-01,"Oklahoma",14830 +2014-01-01,"Utah",11664 +2014-01-01,"District of Columbia",2908 +2014-01-01,"Massachusetts",24156 +2014-01-01,"U.S.",1037197 +2014-01-01,"Delaware",2463 +2014-01-01,"Illinois",101155 +2014-01-01,"Maryland",19505 +2014-01-01,"Wisconsin",30789 +2014-01-01,"Nevada",6886 +2014-01-01,"North Dakota",2260 +2014-01-01,"Georgia",32809 +2014-01-01,"Alabama",10350 +2014-02-01,"Washington",12665 +2014-02-01,"Montana",3633 +2014-02-01,"Florida",1874 +2014-02-01,"North Dakota",2152 +2014-02-01,"Ohio",58508 +2014-02-01,"Wisconsin",25727 +2014-02-01,"Maine",361 +2014-02-01,"Vermont",608 +2014-02-01,"Mississippi",5290 +2014-02-01,"New York",74901 +2014-02-01,"Indiana",27362 +2014-02-01,"District of Columbia",2508 +2014-02-01,"Texas",45335 +2014-02-01,"Georgia",19418 +2014-02-01,"U.S.",852927 +2014-02-01,"Minnesota",25539 +2014-02-01,"Colorado",19396 +2014-02-01,"Louisiana",7356 +2014-02-01,"Hawaii",53 +2014-02-01,"Nevada",5205 +2014-02-01,"Arkansas",7527 +2014-02-01,"Alaska",2443 +2014-02-01,"Iowa",13717 +2014-02-01,"Maryland",15335 +2014-02-01,"New Mexico",4764 +2014-02-01,"Oklahoma",14744 +2014-02-01,"Tennessee",14673 +2014-02-01,"South Dakota",2414 +2014-02-01,"New Hampshire",1210 +2014-02-01,"West Virginia",4950 +2014-02-01,"Oregon",6749 +2014-02-01,"Idaho",3469 +2014-02-01,"North Carolina",11969 +2014-02-01,"New Jersey",44067 +2014-02-01,"Virginia",16176 +2014-02-01,"Missouri",21410 +2014-02-01,"Nebraska",7612 +2014-02-01,"Illinois",84515 +2014-02-01,"Arizona",4853 +2014-02-01,"South Carolina",4995 +2014-02-01,"California",49235 +2014-02-01,"Utah",7635 +2014-02-01,"Massachusetts",19678 +2014-02-01,"Kansas",13168 +2014-02-01,"Rhode Island",3047 +2014-02-01,"Kentucky",10591 2014-02-01,"Wyoming",2032 +2014-02-01,"Alabama",6522 +2014-02-01,"Michigan",58850 +2014-02-01,"Pennsylvania",45671 +2014-02-01,"Connecticut",8875 +2014-02-01,"Delaware",2138 +2014-03-01,"South Dakota",1862 +2014-03-01,"Michigan",51772 +2014-03-01,"Rhode Island",2946 +2014-03-01,"Louisiana",5482 +2014-03-01,"Pennsylvania",39581 +2014-03-01,"Washington",8911 +2014-03-01,"Connecticut",8035 +2014-03-01,"Mississippi",3748 +2014-03-01,"New Mexico",3519 +2014-03-01,"Nevada",3533 +2014-03-01,"U.S.",699921 +2014-03-01,"Kansas",9658 +2014-03-01,"Colorado",15296 +2014-03-01,"West Virginia",4484 +2014-03-01,"Oklahoma",11579 +2014-03-01,"District of Columbia",2087 +2014-03-01,"New Jersey",38911 +2014-03-01,"Illinois",66611 +2014-03-01,"South Carolina",4487 +2014-03-01,"Maryland",13669 +2014-03-01,"Florida",1920 +2014-03-01,"Delaware",1858 +2014-03-01,"Missouri",16125 +2014-03-01,"Massachusetts",19893 +2014-03-01,"Texas",30199 +2014-03-01,"Alabama",4611 +2014-03-01,"Iowa",10692 +2014-03-01,"Kentucky",7890 +2014-03-01,"North Carolina",11130 +2014-03-01,"Tennessee",10222 +2014-03-01,"Georgia",15232 +2014-03-01,"Nebraska",5589 +2014-03-01,"Arkansas",5222 +2014-03-01,"Wisconsin",20074 +2014-03-01,"California",38959 +2014-03-01,"Vermont",617 +2014-03-01,"New York",70836 +2014-03-01,"Alaska",2201 +2014-03-01,"New Hampshire",1207 +2014-03-01,"Ohio",48571 +2014-03-01,"Montana",2700 +2014-03-01,"Maine",363 2014-03-01,"Wyoming",1552 +2014-03-01,"North Dakota",1662 +2014-03-01,"Minnesota",19467 +2014-03-01,"Hawaii",50 +2014-03-01,"Arizona",3162 +2014-03-01,"Oregon",4412 +2014-03-01,"Idaho",2643 +2014-03-01,"Indiana",22950 +2014-03-01,"Utah",7302 +2014-03-01,"Virginia",14439 +2014-04-01,"Hawaii",53 +2014-04-01,"Ohio",19967 +2014-04-01,"Kentucky",3189 +2014-04-01,"Idaho",1787 +2014-04-01,"Maryland",5748 +2014-04-01,"Florida",1166 +2014-04-01,"Vermont",354 +2014-04-01,"New Mexico",2292 +2014-04-01,"New York",38643 +2014-04-01,"District of Columbia",893 +2014-04-01,"New Jersey",18446 +2014-04-01,"Georgia",7145 +2014-04-01,"Minnesota",10881 +2014-04-01,"Missouri",8183 +2014-04-01,"South Dakota",1001 +2014-04-01,"Alaska",1427 +2014-04-01,"Oregon",3197 +2014-04-01,"South Carolina",1580 +2014-04-01,"Connecticut",4620 +2014-04-01,"Nebraska",2959 +2014-04-01,"Colorado",9485 +2014-04-01,"New Hampshire",535 +2014-04-01,"Iowa",5244 +2014-04-01,"Washington",5843 +2014-04-01,"Montana",1642 +2014-04-01,"California",30716 +2014-04-01,"Virginia",5389 +2014-04-01,"Illinois",30870 +2014-04-01,"West Virginia",1972 +2014-04-01,"Maine",206 +2014-04-01,"Utah",4143 +2014-04-01,"Alabama",2192 +2014-04-01,"Louisiana",2576 +2014-04-01,"North Carolina",3272 +2014-04-01,"Mississippi",1823 +2014-04-01,"Delaware",825 +2014-04-01,"Kansas",4506 +2014-04-01,"Arkansas",2463 +2014-04-01,"Michigan",23659 +2014-04-01,"Pennsylvania",17444 +2014-04-01,"Wisconsin",11561 2014-04-01,"Wyoming",1101 +2014-04-01,"Massachusetts",12741 +2014-04-01,"North Dakota",1007 +2014-04-01,"U.S.",356142 +2014-04-01,"Rhode Island",2332 +2014-04-01,"Arizona",2373 +2014-04-01,"Oklahoma",6476 +2014-04-01,"Nevada",2585 +2014-04-01,"Indiana",7911 +2014-04-01,"Texas",15627 +2014-04-01,"Tennessee",4088 +2014-05-01,"Louisiana",1972 +2014-05-01,"Arizona",1750 +2014-05-01,"Connecticut",2325 +2014-05-01,"Oklahoma",2558 +2014-05-01,"Nevada",1824 +2014-05-01,"Alabama",1345 +2014-05-01,"Rhode Island",667 +2014-05-01,"Idaho",870 +2014-05-01,"Maine",112 +2014-05-01,"New York",26165 +2014-05-01,"Indiana",4250 +2014-05-01,"Georgia",4458 +2014-05-01,"Pennsylvania",8707 +2014-05-01,"Maryland",3588 +2014-05-01,"Minnesota",5522 +2014-05-01,"Kansas",2055 +2014-05-01,"New Hampshire",454 +2014-05-01,"Kentucky",1563 +2014-05-01,"Massachusetts",6548 +2014-05-01,"Colorado",6319 +2014-05-01,"Ohio",10181 +2014-05-01,"Oregon",1459 +2014-05-01,"Florida",917 +2014-05-01,"District of Columbia",446 +2014-05-01,"U.S.",203456 +2014-05-01,"Virginia",2489 +2014-05-01,"Missouri",3221 +2014-05-01,"Illinois",16225 +2014-05-01,"Hawaii",49 +2014-05-01,"Iowa",2853 +2014-05-01,"West Virginia",913 +2014-05-01,"Washington",3390 +2014-05-01,"North Carolina",1320 +2014-05-01,"Mississippi",877 2014-05-01,"Wyoming",699 +2014-05-01,"Tennessee",1868 +2014-05-01,"North Dakota",506 +2014-05-01,"Nebraska",1713 +2014-05-01,"Alaska",800 +2014-05-01,"South Carolina",676 +2014-05-01,"New Mexico",1507 +2014-05-01,"Utah",3941 +2014-05-01,"New Jersey",9581 +2014-05-01,"Arkansas",1265 +2014-05-01,"South Dakota",545 +2014-05-01,"Michigan",11987 +2014-05-01,"Wisconsin",5305 +2014-05-01,"Montana",921 +2014-05-01,"California",25224 +2014-05-01,"Vermont",175 +2014-05-01,"Texas",8855 +2014-05-01,"Delaware",496 +2014-06-01,"South Dakota",286 +2014-06-01,"Alaska",678 +2014-06-01,"Ohio",6255 +2014-06-01,"Iowa",1447 +2014-06-01,"West Virginia",466 +2014-06-01,"Idaho",617 +2014-06-01,"Vermont",96 +2014-06-01,"District of Columbia",293 +2014-06-01,"Rhode Island",583 +2014-06-01,"Louisiana",1263 +2014-06-01,"Arizona",1275 +2014-06-01,"Kentucky",904 +2014-06-01,"Washington",2360 +2014-06-01,"Mississippi",627 +2014-06-01,"Tennessee",1191 +2014-06-01,"North Dakota",248 +2014-06-01,"Georgia",3617 +2014-06-01,"Alabama",804 +2014-06-01,"Arkansas",808 +2014-06-01,"New Hampshire",217 +2014-06-01,"Hawaii",48 +2014-06-01,"Maryland",1724 +2014-06-01,"Montana",544 +2014-06-01,"North Carolina",934 +2014-06-01,"New Mexico",1043 +2014-06-01,"Utah",2241 +2014-06-01,"New Jersey",6079 +2014-06-01,"Texas",6977 +2014-06-01,"Nebraska",938 +2014-06-01,"Michigan",6373 +2014-06-01,"Illinois",9640 +2014-06-01,"Delaware",196 +2014-06-01,"Kansas",1285 +2014-06-01,"California",21690 +2014-06-01,"Florida",593 +2014-06-01,"Maine",55 +2014-06-01,"Missouri",2007 +2014-06-01,"Pennsylvania",5014 +2014-06-01,"Oregon",1213 +2014-06-01,"Connecticut",1311 +2014-06-01,"Oklahoma",1540 +2014-06-01,"Nevada",1438 +2014-06-01,"Indiana",1996 +2014-06-01,"Massachusetts",2815 +2014-06-01,"Colorado",3526 +2014-06-01,"Wisconsin",3251 +2014-06-01,"New York",12363 +2014-06-01,"U.S.",125596 +2014-06-01,"Minnesota",2241 +2014-06-01,"Virginia",1698 +2014-06-01,"South Carolina",472 2014-06-01,"Wyoming",314 +2014-07-01,"Louisiana",1226 +2014-07-01,"Maine",41 +2014-07-01,"Virginia",1488 +2014-07-01,"Rhode Island",427 +2014-07-01,"Hawaii",48 +2014-07-01,"West Virginia",360 +2014-07-01,"Maryland",1599 +2014-07-01,"California",20299 +2014-07-01,"Mississippi",606 +2014-07-01,"New Mexico",936 +2014-07-01,"Indiana",2243 2014-07-01,"Wyoming",262 +2014-07-01,"New Jersey",5388 +2014-07-01,"U.S.",112785 +2014-07-01,"Missouri",1891 +2014-07-01,"South Dakota",193 +2014-07-01,"New Hampshire",142 +2014-07-01,"Kentucky",779 +2014-07-01,"South Carolina",453 +2014-07-01,"Arkansas",648 +2014-07-01,"Pennsylvania",4150 +2014-07-01,"Ohio",5156 +2014-07-01,"Idaho",552 +2014-07-01,"Vermont",82 +2014-07-01,"Oklahoma",1243 +2014-07-01,"Massachusetts",2618 +2014-07-01,"North Dakota",183 +2014-07-01,"Alaska",545 +2014-07-01,"Iowa",1192 +2014-07-01,"New York",10686 +2014-07-01,"Nevada",1257 +2014-07-01,"Utah",1746 +2014-07-01,"District of Columbia",249 +2014-07-01,"Tennessee",1152 +2014-07-01,"Nebraska",791 +2014-07-01,"Arizona",1096 +2014-07-01,"Washington",1916 +2014-07-01,"Wisconsin",2642 +2014-07-01,"Texas",6188 +2014-07-01,"Georgia",3537 +2014-07-01,"Kansas",1190 +2014-07-01,"Illinois",8857 +2014-07-01,"Minnesota",2068 +2014-07-01,"Alabama",764 +2014-07-01,"Michigan",6334 +2014-07-01,"Colorado",3220 +2014-07-01,"Oregon",979 +2014-07-01,"Connecticut",1036 +2014-07-01,"Montana",360 +2014-07-01,"North Carolina",1120 +2014-07-01,"Florida",709 +2014-07-01,"Delaware",137 +2014-08-01,"Colorado",2195 +2014-08-01,"Alaska",538 +2014-08-01,"Pennsylvania",4251 +2014-08-01,"West Virginia",360 +2014-08-01,"Alabama",748 +2014-08-01,"Missouri",1729 +2014-08-01,"Nebraska",730 +2014-08-01,"Illinois",8238 +2014-08-01,"Iowa",1098 +2014-08-01,"Georgia",3540 +2014-08-01,"Wisconsin",2397 +2014-08-01,"Massachusetts",2411 +2014-08-01,"Tennessee",1163 +2014-08-01,"North Dakota",181 +2014-08-01,"U.S.",105187 +2014-08-01,"Virginia",1533 +2014-08-01,"Maryland",1502 +2014-08-01,"Montana",362 +2014-08-01,"Maine",41 +2014-08-01,"Mississippi",589 +2014-08-01,"Oklahoma",1150 +2014-08-01,"New York",9683 +2014-08-01,"Minnesota",2329 +2014-08-01,"Delaware",161 +2014-08-01,"Arkansas",684 +2014-08-01,"Ohio",4860 +2014-08-01,"Kentucky",806 +2014-08-01,"South Carolina",476 +2014-08-01,"Utah",1298 +2014-08-01,"Texas",5661 +2014-08-01,"Rhode Island",395 +2014-08-01,"Oregon",894 +2014-08-01,"Washington",1722 +2014-08-01,"Connecticut",974 +2014-08-01,"Kansas",1127 +2014-08-01,"South Dakota",220 +2014-08-01,"Louisiana",1294 +2014-08-01,"Hawaii",44 +2014-08-01,"Arizona",1025 +2014-08-01,"Idaho",541 +2014-08-01,"Florida",729 +2014-08-01,"Vermont",79 +2014-08-01,"Nevada",1168 +2014-08-01,"District of Columbia",258 +2014-08-01,"Michigan",5627 +2014-08-01,"New Hampshire",138 +2014-08-01,"North Carolina",973 +2014-08-01,"California",18834 +2014-08-01,"New Mexico",908 +2014-08-01,"Indiana",2417 2014-08-01,"Wyoming",241 +2014-08-01,"New Jersey",4865 +2014-09-01,"New Hampshire",172 +2014-09-01,"Louisiana",1358 +2014-09-01,"Illinois",10591 +2014-09-01,"Hawaii",43 +2014-09-01,"Ohio",6185 +2014-09-01,"Oregon",970 +2014-09-01,"Wisconsin",3365 +2014-09-01,"Oklahoma",1161 +2014-09-01,"New York",11117 +2014-09-01,"Kansas",1274 +2014-09-01,"Nebraska",811 +2014-09-01,"Michigan",8409 +2014-09-01,"Colorado",3533 +2014-09-01,"Iowa",1510 +2014-09-01,"West Virginia",517 +2014-09-01,"Idaho",628 +2014-09-01,"Nevada",1206 +2014-09-01,"Indiana",2925 +2014-09-01,"District of Columbia",262 +2014-09-01,"New Jersey",5091 +2014-09-01,"Arizona",1123 +2014-09-01,"Washington",2089 +2014-09-01,"Connecticut",1046 +2014-09-01,"Maryland",1788 +2014-09-01,"Florida",641 2014-09-01,"Wyoming",386 +2014-09-01,"North Dakota",273 +2014-09-01,"Delaware",158 +2014-09-01,"Arkansas",719 +2014-09-01,"Kentucky",970 +2014-09-01,"Montana",618 +2014-09-01,"North Carolina",1133 +2014-09-01,"New Mexico",835 +2014-09-01,"Minnesota",2982 +2014-09-01,"South Dakota",330 +2014-09-01,"Rhode Island",473 +2014-09-01,"Georgia",3577 +2014-09-01,"U.S.",121736 +2014-09-01,"Alabama",716 +2014-09-01,"South Carolina",490 +2014-09-01,"Pennsylvania",4770 +2014-09-01,"California",18456 +2014-09-01,"Maine",54 +2014-09-01,"Utah",1602 +2014-09-01,"Virginia",1623 +2014-09-01,"Alaska",875 +2014-09-01,"Vermont",96 +2014-09-01,"Mississippi",558 +2014-09-01,"Massachusetts",2927 +2014-09-01,"Texas",5951 +2014-09-01,"Tennessee",1239 +2014-09-01,"Missouri",2106 +2014-10-01,"Oregon",1779 +2014-10-01,"Idaho",1334 +2014-10-01,"Maryland",3078 +2014-10-01,"North Carolina",2037 +2014-10-01,"Utah",3046 +2014-10-01,"Arkansas",921 +2014-10-01,"Ohio",13581 +2014-10-01,"Connecticut",1776 +2014-10-01,"Wisconsin",7477 +2014-10-01,"Maine",105 +2014-10-01,"Colorado",6921 +2014-10-01,"Iowa",3224 +2014-10-01,"Montana",1104 +2014-10-01,"New York",16260 +2014-10-01,"Texas",6881 +2014-10-01,"U.S.",212079 +2014-10-01,"Alaska",1768 +2014-10-01,"Illinois",22380 +2014-10-01,"Kentucky",1856 +2014-10-01,"California",21140 +2014-10-01,"Oklahoma",1361 +2014-10-01,"Minnesota",7186 +2014-10-01,"Nebraska",1447 +2014-10-01,"Michigan",19597 +2014-10-01,"New Hampshire",338 +2014-10-01,"Rhode Island",499 +2014-10-01,"Hawaii",43 +2014-10-01,"Arizona",1384 +2014-10-01,"Indiana",7619 +2014-10-01,"District of Columbia",550 +2014-10-01,"Tennessee",2308 +2014-10-01,"Alabama",1124 +2014-10-01,"Delaware",292 +2014-10-01,"Kansas",2268 +2014-10-01,"Louisiana",1691 +2014-10-01,"West Virginia",1147 +2014-10-01,"Nevada",1556 2014-10-01,"Wyoming",737 +2014-10-01,"Massachusetts",4933 +2014-10-01,"New Jersey",8303 +2014-10-01,"Virginia",2843 +2014-10-01,"Missouri",3865 +2014-10-01,"Florida",965 +2014-10-01,"Vermont",158 +2014-10-01,"Mississippi",987 +2014-10-01,"New Mexico",1275 +2014-10-01,"Georgia",5533 +2014-10-01,"South Dakota",718 +2014-10-01,"Pennsylvania",9532 +2014-10-01,"Washington",3689 +2014-10-01,"South Carolina",836 +2014-10-01,"North Dakota",625 +2014-11-01,"Louisiana",3825 +2014-11-01,"New Mexico",3445 +2014-11-01,"Massachusetts",11289 +2014-11-01,"Kansas",8023 +2014-11-01,"South Dakota",1724 +2014-11-01,"North Carolina",9724 +2014-11-01,"Florida",1853 +2014-11-01,"Tennessee",8372 +2014-11-01,"Alaska",2070 +2014-11-01,"New Hampshire",795 +2014-11-01,"Ohio",31696 +2014-11-01,"Arizona",2482 +2014-11-01,"Oklahoma",3198 +2014-11-01,"Minnesota",17807 +2014-11-01,"Virginia",9971 +2014-11-01,"Colorado",18632 +2014-11-01,"West Virginia",3249 +2014-11-01,"Utah",8191 +2014-11-01,"Alabama",4457 +2014-11-01,"Delaware",949 +2014-11-01,"Michigan",44020 +2014-11-01,"Kentucky",6898 +2014-11-01,"California",34011 +2014-11-01,"Mississippi",2811 2014-11-01,"Wyoming",1831 +2014-11-01,"North Dakota",1660 +2014-11-01,"Georgia",17292 +2014-11-01,"Missouri",12508 +2014-11-01,"Nebraska",4644 +2014-11-01,"Rhode Island",2030 +2014-11-01,"Hawaii",44 +2014-11-01,"Iowa",8650 +2014-11-01,"Oregon",5703 +2014-11-01,"South Carolina",4224 +2014-11-01,"Connecticut",4670 +2014-11-01,"Maine",249 +2014-11-01,"Vermont",349 +2014-11-01,"New Jersey",24417 +2014-11-01,"Arkansas",2698 +2014-11-01,"Washington",11480 +2014-11-01,"Idaho",3737 +2014-11-01,"Maryland",9749 +2014-11-01,"Wisconsin",18409 +2014-11-01,"Montana",2919 +2014-11-01,"New York",45075 +2014-11-01,"Indiana",19910 +2014-11-01,"Texas",14635 +2014-11-01,"Illinois",57400 +2014-11-01,"Pennsylvania",25074 +2014-11-01,"Nevada",3016 +2014-11-01,"District of Columbia",1671 +2014-11-01,"U.S.",543538 +2014-12-01,"Wisconsin",19411 +2014-12-01,"Nevada",5459 +2014-12-01,"Texas",31730 +2014-12-01,"North Dakota",1749 +2014-12-01,"Maryland",13257 +2014-12-01,"New Jersey",32458 +2014-12-01,"Virginia",14540 +2014-12-01,"Michigan",46254 +2014-12-01,"Hawaii",50 +2014-12-01,"Kentucky",8517 +2014-12-01,"Connecticut",6846 +2014-12-01,"Vermont",507 +2014-12-01,"New York",62632 +2014-12-01,"District of Columbia",2117 +2014-12-01,"Colorado",20604 +2014-12-01,"West Virginia",3929 +2014-12-01,"Idaho",3981 +2014-12-01,"Indiana",22394 +2014-12-01,"Tennessee",12369 +2014-12-01,"Minnesota",20929 +2014-12-01,"Rhode Island",2662 +2014-12-01,"Oregon",6418 +2014-12-01,"Florida",2227 +2014-12-01,"Maine",350 +2014-12-01,"Mississippi",3730 +2014-12-01,"Utah",9648 +2014-12-01,"Nebraska",6587 +2014-12-01,"Arizona",4891 +2014-12-01,"Iowa",10609 +2014-12-01,"Washington",11782 +2014-12-01,"North Carolina",12540 +2014-12-01,"California",57876 2014-12-01,"Wyoming",2069 +2014-12-01,"U.S.",716907 +2014-12-01,"Alaska",2218 +2014-12-01,"Illinois",62983 +2014-12-01,"Pennsylvania",37330 +2014-12-01,"South Carolina",5119 +2014-12-01,"Montana",3267 +2014-12-01,"Oklahoma",9210 +2014-12-01,"Georgia",18324 +2014-12-01,"Alabama",5373 +2014-12-01,"Delaware",1644 +2014-12-01,"Kansas",11328 +2014-12-01,"Missouri",16552 +2014-12-01,"Arkansas",5978 +2014-12-01,"South Dakota",2197 +2014-12-01,"New Hampshire",1072 +2014-12-01,"Louisiana",5705 +2014-12-01,"Ohio",45059 +2014-12-01,"New Mexico",5533 +2014-12-01,"Massachusetts",16894 +2015-01-01,"South Dakota",2357 +2015-01-01,"Michigan",64293 +2015-01-01,"Alaska",2743 +2015-01-01,"Pennsylvania",48403 +2015-01-01,"Iowa",13093 +2015-01-01,"South Carolina",7182 +2015-01-01,"Virginia",19331 +2015-01-01,"Arkansas",8080 +2015-01-01,"Louisiana",8561 +2015-01-01,"New Mexico",6249 +2015-01-01,"Delaware",2665 +2015-01-01,"Nebraska",7214 +2015-01-01,"Ohio",58799 +2015-01-01,"Wisconsin",25705 +2015-01-01,"Florida",2518 +2015-01-01,"Mississippi",5799 +2015-01-01,"New York",89006 +2015-01-01,"Massachusetts",26072 +2015-01-01,"Texas",53622 +2015-01-01,"Colorado",21591 +2015-01-01,"Hawaii",60 +2015-01-01,"Arizona",7436 +2015-01-01,"Washington",11781 +2015-01-01,"Maine",526 +2015-01-01,"District of Columbia",3166 +2015-01-01,"Alabama",8087 +2015-01-01,"Missouri",19731 +2015-01-01,"Rhode Island",4211 +2015-01-01,"Kentucky",11564 +2015-01-01,"West Virginia",5121 +2015-01-01,"Oregon",6219 +2015-01-01,"Montana",3317 +2015-01-01,"North Carolina",15464 +2015-01-01,"California",60216 +2015-01-01,"Vermont",725 +2015-01-01,"Georgia",26214 +2015-01-01,"U.S.",937954 +2015-01-01,"Illinois",82554 +2015-01-01,"Connecticut",10035 +2015-01-01,"Oklahoma",13215 +2015-01-01,"Nevada",7046 +2015-01-01,"Indiana",29303 +2015-01-01,"New Hampshire",1691 +2015-01-01,"Idaho",4346 2015-01-01,"Wyoming",1966 +2015-01-01,"Utah",10176 +2015-01-01,"New Jersey",47059 +2015-01-01,"Minnesota",23468 +2015-01-01,"Maryland",18521 +2015-01-01,"Tennessee",16604 +2015-01-01,"North Dakota",2006 +2015-01-01,"Kansas",12843 +2015-02-01,"Alaska",2212 +2015-02-01,"Rhode Island",4154 +2015-02-01,"Washington",8079 +2015-02-01,"Georgia",26723 +2015-02-01,"South Dakota",2162 +2015-02-01,"Ohio",61207 +2015-02-01,"Idaho",2701 +2015-02-01,"Maryland",19141 +2015-02-01,"Vermont",760 +2015-02-01,"New York",91107 +2015-02-01,"Kansas",11566 +2015-02-01,"Missouri",20729 +2015-02-01,"Louisiana",7572 +2015-02-01,"Arizona",4276 +2015-02-01,"Kentucky",12025 +2015-02-01,"South Carolina",7323 +2015-02-01,"Florida",2502 +2015-02-01,"Indiana",29649 +2015-02-01,"Minnesota",23784 +2015-02-01,"Arkansas",7718 +2015-02-01,"Michigan",68402 +2015-02-01,"Connecticut",10279 +2015-02-01,"Wisconsin",27502 +2015-02-01,"North Carolina",17363 +2015-02-01,"Mississippi",4909 +2015-02-01,"District of Columbia",2886 +2015-02-01,"Colorado",16449 +2015-02-01,"New Hampshire",1665 +2015-02-01,"Pennsylvania",51857 +2015-02-01,"Hawaii",52 +2015-02-01,"California",40902 +2015-02-01,"Maine",529 2015-02-01,"Wyoming",1457 +2015-02-01,"Utah",6449 +2015-02-01,"New Jersey",50550 +2015-02-01,"North Dakota",2055 +2015-02-01,"U.S.",902364 +2015-02-01,"Alabama",8552 +2015-02-01,"Delaware",2533 +2015-02-01,"Virginia",20861 +2015-02-01,"Nebraska",6971 +2015-02-01,"Iowa",13542 +2015-02-01,"New Mexico",5014 +2015-02-01,"Massachusetts",26240 +2015-02-01,"Texas",36891 +2015-02-01,"Oregon",4166 +2015-02-01,"Oklahoma",12794 +2015-02-01,"Nevada",4287 +2015-02-01,"Tennessee",18022 +2015-02-01,"Illinois",85540 +2015-02-01,"West Virginia",5640 +2015-02-01,"Montana",2620 +2015-03-01,"Michigan",42465 +2015-03-01,"Rhode Island",3296 +2015-03-01,"Hawaii",51 +2015-03-01,"Ohio",47720 +2015-03-01,"West Virginia",4563 +2015-03-01,"Washington",7225 +2015-03-01,"Wisconsin",16213 +2015-03-01,"Mississippi",3058 +2015-03-01,"North Dakota",1277 +2015-03-01,"Virginia",13596 +2015-03-01,"Colorado",12871 +2015-03-01,"Louisiana",4337 +2015-03-01,"Arizona",3201 +2015-03-01,"Maryland",12967 +2015-03-01,"Massachusetts",20986 +2015-03-01,"New Jersey",41241 +2015-03-01,"Arkansas",4846 +2015-03-01,"Montana",1959 +2015-03-01,"California",32140 +2015-03-01,"Maine",404 +2015-03-01,"Nevada",3384 +2015-03-01,"Utah",5112 +2015-03-01,"Georgia",12196 +2015-03-01,"Delaware",2076 +2015-03-01,"New Hampshire",1197 +2015-03-01,"Florida",1397 +2015-03-01,"Vermont",610 +2015-03-01,"Kansas",7324 +2015-03-01,"South Dakota",1358 +2015-03-01,"Illinois",54278 +2015-03-01,"Pennsylvania",37965 +2015-03-01,"Kentucky",7078 +2015-03-01,"Oregon",3525 +2015-03-01,"New Mexico",3422 +2015-03-01,"Iowa",7952 +2015-03-01,"U.S.",633081 +2015-03-01,"Alaska",2174 +2015-03-01,"Connecticut",8749 +2015-03-01,"Oklahoma",6955 +2015-03-01,"Indiana",18560 2015-03-01,"Wyoming",1177 +2015-03-01,"Texas",34514 +2015-03-01,"Tennessee",9122 +2015-03-01,"Missouri",15779 +2015-03-01,"Idaho",2203 +2015-03-01,"South Carolina",3299 +2015-03-01,"North Carolina",7387 +2015-03-01,"New York",74731 +2015-03-01,"District of Columbia",2046 +2015-03-01,"Minnesota",15011 +2015-03-01,"Alabama",3863 +2015-03-01,"Nebraska",4219 +2015-04-01,"Washington",5971 +2015-04-01,"Maryland",4975 +2015-04-01,"California",29622 +2015-04-01,"Indiana",8643 +2015-04-01,"New Hampshire",596 +2015-04-01,"Idaho",1736 +2015-04-01,"Florida",1246 +2015-04-01,"District of Columbia",866 +2015-04-01,"Massachusetts",10124 +2015-04-01,"North Dakota",720 +2015-04-01,"Alabama",1697 +2015-04-01,"Arizona",2191 +2015-04-01,"Oregon",3242 +2015-04-01,"U.S.",319285 +2015-04-01,"South Dakota",783 +2015-04-01,"Hawaii",54 +2015-04-01,"Ohio",22267 +2015-04-01,"Iowa",4112 +2015-04-01,"Connecticut",4766 +2015-04-01,"North Carolina",2814 +2015-04-01,"Texas",10986 +2015-04-01,"Missouri",6206 +2015-04-01,"Rhode Island",1426 +2015-04-01,"Wisconsin",9496 +2015-04-01,"Montana",1457 +2015-04-01,"New Mexico",1919 +2015-04-01,"Oklahoma",2647 +2015-04-01,"New York",36470 2015-04-01,"Wyoming",888 +2015-04-01,"Nebraska",2137 +2015-04-01,"Michigan",22109 +2015-04-01,"Colorado",8503 +2015-04-01,"South Carolina",1104 +2015-04-01,"Nevada",2366 +2015-04-01,"Minnesota",8178 +2015-04-01,"Virginia",4750 +2015-04-01,"Alaska",1473 +2015-04-01,"Louisiana",1884 +2015-04-01,"Pennsylvania",17159 +2015-04-01,"Kentucky",2309 +2015-04-01,"Vermont",367 +2015-04-01,"Georgia",5538 +2015-04-01,"Delaware",754 +2015-04-01,"Illinois",26783 +2015-04-01,"West Virginia",1631 +2015-04-01,"Maine",224 +2015-04-01,"Mississippi",1060 +2015-04-01,"Utah",4515 +2015-04-01,"New Jersey",21273 +2015-04-01,"Tennessee",3088 +2015-04-01,"Kansas",2529 +2015-04-01,"Arkansas",1634 +2015-05-01,"North Carolina",1308 +2015-05-01,"Nevada",1901 +2015-05-01,"Nebraska",1343 +2015-05-01,"Ohio",9819 +2015-05-01,"Oregon",1694 +2015-05-01,"Maryland",2200 2015-05-01,"Wyoming",731 +2015-05-01,"Massachusetts",4364 +2015-05-01,"Tennessee",1606 +2015-05-01,"Georgia",4354 +2015-05-01,"Minnesota",3958 +2015-05-01,"Delaware",289 +2015-05-01,"Kansas",1854 +2015-05-01,"Virginia",2226 +2015-05-01,"Hawaii",46 +2015-05-01,"Kentucky",1217 +2015-05-01,"Wisconsin",4550 +2015-05-01,"Oklahoma",1937 +2015-05-01,"District of Columbia",456 +2015-05-01,"New Jersey",8995 +2015-05-01,"Texas",6857 +2015-05-01,"New Hampshire",244 +2015-05-01,"Rhode Island",577 +2015-05-01,"California",27358 +2015-05-01,"New York",18251 +2015-05-01,"Michigan",10476 +2015-05-01,"Pennsylvania",7626 +2015-05-01,"Washington",3103 +2015-05-01,"Montana",909 +2015-05-01,"Indiana",3713 +2015-05-01,"Arkansas",942 +2015-05-01,"Colorado",7343 +2015-05-01,"Idaho",900 +2015-05-01,"South Carolina",712 +2015-05-01,"Connecticut",2112 +2015-05-01,"Maine",95 +2015-05-01,"New Mexico",1572 +2015-05-01,"U.S.",177570 +2015-05-01,"South Dakota",508 +2015-05-01,"Alaska",883 +2015-05-01,"Iowa",2157 +2015-05-01,"West Virginia",668 +2015-05-01,"Mississippi",718 +2015-05-01,"North Dakota",447 +2015-05-01,"Missouri",2514 +2015-05-01,"Louisiana",1679 +2015-05-01,"Illinois",13194 +2015-05-01,"Arizona",1821 +2015-05-01,"Florida",946 +2015-05-01,"Vermont",156 +2015-05-01,"Utah",3129 +2015-05-01,"Alabama",1113 +2015-06-01,"Rhode Island",498 +2015-06-01,"Iowa",1394 +2015-06-01,"Kentucky",900 +2015-06-01,"Maine",71 +2015-06-01,"District of Columbia",256 +2015-06-01,"Virginia",1649 +2015-06-01,"South Dakota",278 +2015-06-01,"Pennsylvania",5380 +2015-06-01,"Ohio",6095 +2015-06-01,"Nevada",1497 +2015-06-01,"New Jersey",6160 +2015-06-01,"Minnesota",2435 +2015-06-01,"Montana",404 +2015-06-01,"California",20889 +2015-06-01,"New Mexico",1262 +2015-06-01,"Georgia",3679 +2015-06-01,"Arkansas",667 +2015-06-01,"Michigan",6616 +2015-06-01,"New Hampshire",186 +2015-06-01,"Connecticut",1330 +2015-06-01,"North Carolina",1123 +2015-06-01,"Vermont",107 +2015-06-01,"Oklahoma",1328 +2015-06-01,"Tennessee",1202 +2015-06-01,"Alabama",765 +2015-06-01,"Kansas",1380 +2015-06-01,"Nebraska",971 +2015-06-01,"Alaska",589 +2015-06-01,"Hawaii",46 +2015-06-01,"West Virginia",416 +2015-06-01,"Indiana",2309 2015-06-01,"Wyoming",410 +2015-06-01,"Massachusetts",3330 +2015-06-01,"Texas",6360 +2015-06-01,"Idaho",521 +2015-06-01,"South Carolina",514 +2015-06-01,"Wisconsin",2481 +2015-06-01,"Florida",880 +2015-06-01,"Utah",1958 +2015-06-01,"Washington",1914 +2015-06-01,"Maryland",1783 +2015-06-01,"New York",13069 +2015-06-01,"Colorado",3115 +2015-06-01,"Louisiana",1288 +2015-06-01,"Illinois",9419 +2015-06-01,"Arizona",1320 +2015-06-01,"Oregon",963 +2015-06-01,"Mississippi",652 +2015-06-01,"North Dakota",205 +2015-06-01,"U.S.",124066 +2015-06-01,"Delaware",194 +2015-06-01,"Missouri",1807 +2015-07-01,"Pennsylvania",4148 +2015-07-01,"California",18932 +2015-07-01,"New Mexico",808 +2015-07-01,"Massachusetts",2641 +2015-07-01,"Ohio",5012 +2015-07-01,"West Virginia",243 +2015-07-01,"Tennessee",1033 +2015-07-01,"Missouri",1595 +2015-07-01,"Michigan",5572 +2015-07-01,"Iowa",1189 +2015-07-01,"Washington",1700 +2015-07-01,"Connecticut",1089 +2015-07-01,"Wisconsin",2478 2015-07-01,"Wyoming",244 +2015-07-01,"North Dakota",168 +2015-07-01,"Georgia",3663 +2015-07-01,"Alabama",721 +2015-07-01,"Illinois",7959 +2015-07-01,"Oregon",840 +2015-07-01,"Nevada",1120 +2015-07-01,"Kentucky",899 +2015-07-01,"Idaho",494 +2015-07-01,"South Carolina",520 +2015-07-01,"Vermont",89 +2015-07-01,"Mississippi",620 +2015-07-01,"Texas",6479 +2015-07-01,"U.S.",108160 +2015-07-01,"Minnesota",2292 +2015-07-01,"Nebraska",809 +2015-07-01,"New Hampshire",151 +2015-07-01,"Rhode Island",437 +2015-07-01,"North Carolina",1016 +2015-07-01,"Florida",844 +2015-07-01,"New York",10330 +2015-07-01,"Utah",1634 +2015-07-01,"Louisiana",1295 +2015-07-01,"Hawaii",45 +2015-07-01,"Arizona",1066 +2015-07-01,"Montana",385 +2015-07-01,"Maine",49 +2015-07-01,"Oklahoma",1204 +2015-07-01,"District of Columbia",264 +2015-07-01,"Delaware",175 +2015-07-01,"Kansas",1151 +2015-07-01,"Arkansas",598 +2015-07-01,"South Dakota",190 +2015-07-01,"Colorado",2633 +2015-07-01,"Alaska",499 +2015-07-01,"Maryland",1657 +2015-07-01,"Indiana",2172 +2015-07-01,"New Jersey",5481 +2015-07-01,"Virginia",1526 +2015-08-01,"New Hampshire",146 +2015-08-01,"Illinois",7790 +2015-08-01,"South Carolina",531 +2015-08-01,"Wisconsin",2310 +2015-08-01,"Vermont",74 +2015-08-01,"Delaware",178 +2015-08-01,"Missouri",1729 +2015-08-01,"Arkansas",557 +2015-08-01,"South Dakota",219 +2015-08-01,"Rhode Island",404 +2015-08-01,"Louisiana",1205 +2015-08-01,"Nevada",1189 +2015-08-01,"Utah",1555 +2015-08-01,"District of Columbia",262 +2015-08-01,"U.S.",102855 +2015-08-01,"Kansas",1442 +2015-08-01,"Michigan",5872 +2015-08-01,"Washington",1637 +2015-08-01,"New York",10144 +2015-08-01,"Indiana",2008 +2015-08-01,"Texas",4875 +2015-08-01,"North Dakota",209 +2015-08-01,"Minnesota",2553 +2015-08-01,"Iowa",1052 +2015-08-01,"Idaho",367 +2015-08-01,"Maryland",1580 +2015-08-01,"Virginia",1475 +2015-08-01,"Nebraska",695 +2015-08-01,"Colorado",2403 +2015-08-01,"Connecticut",970 +2015-08-01,"Montana",381 +2015-08-01,"North Carolina",1214 +2015-08-01,"Florida",643 +2015-08-01,"Maine",48 +2015-08-01,"New Mexico",840 +2015-08-01,"Tennessee",995 +2015-08-01,"Georgia",3751 +2015-08-01,"Alaska",531 +2015-08-01,"Arizona",978 +2015-08-01,"Kentucky",889 +2015-08-01,"West Virginia",337 +2015-08-01,"California",17399 +2015-08-01,"Oklahoma",1227 2015-08-01,"Wyoming",199 +2015-08-01,"Pennsylvania",4063 +2015-08-01,"Hawaii",43 +2015-08-01,"Ohio",4717 +2015-08-01,"Oregon",821 +2015-08-01,"Mississippi",589 +2015-08-01,"Massachusetts",2463 +2015-08-01,"New Jersey",4589 +2015-08-01,"Alabama",706 +2015-09-01,"Colorado",2924 +2015-09-01,"New Hampshire",153 +2015-09-01,"Illinois",8118 +2015-09-01,"Washington",2613 +2015-09-01,"Indiana",2419 +2015-09-01,"North Dakota",199 +2015-09-01,"Nebraska",683 +2015-09-01,"Pennsylvania",4797 +2015-09-01,"Kansas",1596 +2015-09-01,"South Dakota",228 +2015-09-01,"West Virginia",385 +2015-09-01,"New Mexico",829 +2015-09-01,"Oklahoma",1240 2015-09-01,"Wyoming",300 +2015-09-01,"Texas",5401 +2015-09-01,"Tennessee",1155 +2015-09-01,"Virginia",1903 +2015-09-01,"Michigan",6006 +2015-09-01,"Alaska",1040 +2015-09-01,"Arizona",1080 +2015-09-01,"Idaho",652 +2015-09-01,"North Carolina",1092 +2015-09-01,"New York",10202 +2015-09-01,"Georgia",3800 +2015-09-01,"Minnesota",2331 +2015-09-01,"Alabama",711 +2015-09-01,"Kentucky",885 +2015-09-01,"Oregon",1189 +2015-09-01,"South Carolina",569 +2015-09-01,"Maryland",1542 +2015-09-01,"Wisconsin",2502 +2015-09-01,"California",17032 +2015-09-01,"Maine",48 +2015-09-01,"Vermont",81 +2015-09-01,"Utah",1329 +2015-09-01,"U.S.",108491 +2015-09-01,"Delaware",168 +2015-09-01,"Arkansas",586 +2015-09-01,"Iowa",1279 +2015-09-01,"Connecticut",948 +2015-09-01,"Florida",641 +2015-09-01,"Mississippi",728 +2015-09-01,"District of Columbia",276 +2015-09-01,"New Jersey",4507 +2015-09-01,"Louisiana",1356 +2015-09-01,"Hawaii",41 +2015-09-01,"Ohio",4677 +2015-09-01,"Massachusetts",2486 +2015-09-01,"Missouri",1646 +2015-09-01,"Rhode Island",391 +2015-09-01,"Montana",497 +2015-09-01,"Nevada",1228 +2015-10-01,"California",19235 +2015-10-01,"New Mexico",1247 +2015-10-01,"New Jersey",8928 +2015-10-01,"U.S.",201540 +2015-10-01,"Michigan",16422 +2015-10-01,"New Hampshire",251 +2015-10-01,"Washington",4199 +2015-10-01,"Montana",1049 +2015-10-01,"Mississippi",833 +2015-10-01,"Massachusetts",5833 +2015-10-01,"Texas",6334 +2015-10-01,"South Dakota",478 +2015-10-01,"Illinois",18138 +2015-10-01,"Kentucky",1640 +2015-10-01,"Wisconsin",6091 +2015-10-01,"Florida",1096 +2015-10-01,"Nevada",1449 +2015-10-01,"Alabama",957 +2015-10-01,"Virginia",3540 +2015-10-01,"Alaska",1429 +2015-10-01,"Tennessee",1967 +2015-10-01,"Nebraska",1081 +2015-10-01,"Arkansas",795 +2015-10-01,"Rhode Island",1063 +2015-10-01,"Pennsylvania",11557 +2015-10-01,"Hawaii",44 +2015-10-01,"Maryland",3881 +2015-10-01,"Oklahoma",1814 2015-10-01,"Wyoming",437 +2015-10-01,"Utah",2015 +2015-10-01,"Georgia",5883 +2015-10-01,"Minnesota",5140 +2015-10-01,"Kansas",2180 +2015-10-01,"Louisiana",1537 +2015-10-01,"Oregon",1763 +2015-10-01,"Maine",145 +2015-10-01,"Indiana",5768 +2015-10-01,"North Dakota",509 +2015-10-01,"Ohio",12188 +2015-10-01,"Iowa",2408 +2015-10-01,"Idaho",1017 +2015-10-01,"South Carolina",1070 +2015-10-01,"Vermont",168 +2015-10-01,"New York",20674 +2015-10-01,"Delaware",406 +2015-10-01,"Colorado",5800 +2015-10-01,"Arizona",1345 +2015-10-01,"West Virginia",1235 +2015-10-01,"Connecticut",2101 +2015-10-01,"North Carolina",2737 +2015-10-01,"District of Columbia",567 +2015-10-01,"Missouri",3096 +2015-11-01,"Kentucky",4167 +2015-11-01,"Washington",11216 +2015-11-01,"South Carolina",2461 +2015-11-01,"Montana",2652 +2015-11-01,"North Carolina",6169 +2015-11-01,"California",44392 +2015-11-01,"Maine",246 +2015-11-01,"Tennessee",4811 +2015-11-01,"Alabama",2082 +2015-11-01,"Kansas",5587 +2015-11-01,"Nebraska",2921 +2015-11-01,"Oregon",5719 +2015-11-01,"Florida",1233 +2015-11-01,"Oklahoma",5701 +2015-11-01,"Utah",8345 +2015-11-01,"Massachusetts",9466 +2015-11-01,"New Jersey",16145 +2015-11-01,"Delaware",772 +2015-11-01,"Alaska",2317 +2015-11-01,"Maryland",6235 +2015-11-01,"New York",33880 +2015-11-01,"Nevada",4218 +2015-11-01,"Texas",11027 +2015-11-01,"Georgia",10265 +2015-11-01,"Arkansas",2361 +2015-11-01,"Hawaii",44 +2015-11-01,"West Virginia",2120 +2015-11-01,"New Mexico",3759 +2015-11-01,"Indiana",11707 2015-11-01,"Wyoming",1489 +2015-11-01,"District of Columbia",994 +2015-11-01,"Ohio",22078 +2015-11-01,"Arizona",3134 +2015-11-01,"Wisconsin",11077 +2015-11-01,"Vermont",294 +2015-11-01,"U.S.",406610 +2015-11-01,"South Dakota",1174 +2015-11-01,"Michigan",28390 +2015-11-01,"New Hampshire",680 +2015-11-01,"Idaho",3704 +2015-11-01,"Mississippi",1833 +2015-11-01,"Colorado",16187 +2015-11-01,"Rhode Island",1632 +2015-11-01,"Louisiana",2384 +2015-11-01,"Illinois",36127 +2015-11-01,"Pennsylvania",18222 +2015-11-01,"Iowa",5498 +2015-11-01,"Connecticut",3846 +2015-11-01,"North Dakota",1060 +2015-11-01,"Minnesota",10603 +2015-11-01,"Virginia",6455 +2015-11-01,"Missouri",7731 +2015-12-01,"Michigan",35475 +2015-12-01,"Colorado",22545 +2015-12-01,"California",73056 +2015-12-01,"Indiana",16792 +2015-12-01,"Utah",12346 +2015-12-01,"New Jersey",22176 +2015-12-01,"Missouri",12940 +2015-12-01,"Alaska",2683 +2015-12-01,"Hawaii",47 +2015-12-01,"West Virginia",2449 +2015-12-01,"Maine",315 +2015-12-01,"Arizona",6667 +2015-12-01,"South Carolina",3129 +2015-12-01,"Connecticut",4749 +2015-12-01,"Wisconsin",16449 +2015-12-01,"North Carolina",6836 +2015-12-01,"Delaware",1049 +2015-12-01,"New Hampshire",884 +2015-12-01,"Iowa",9057 +2015-12-01,"Oregon",6927 2015-12-01,"Wyoming",2277 +2015-12-01,"Minnesota",17835 +2015-12-01,"Rhode Island",1952 +2015-12-01,"Louisiana",3762 +2015-12-01,"Illinois",50976 +2015-12-01,"Kentucky",5853 +2015-12-01,"Washington",12469 +2015-12-01,"Vermont",402 +2015-12-01,"New Mexico",6207 +2015-12-01,"New York",44302 +2015-12-01,"Nevada",7344 +2015-12-01,"Massachusetts",12658 +2015-12-01,"Georgia",11963 +2015-12-01,"Kansas",8933 +2015-12-01,"Virginia",8151 +2015-12-01,"Pennsylvania",24492 +2015-12-01,"Idaho",4842 +2015-12-01,"Maryland",8376 +2015-12-01,"Montana",3283 +2015-12-01,"District of Columbia",1456 +2015-12-01,"Texas",28033 +2015-12-01,"North Dakota",1698 +2015-12-01,"U.S.",590911 +2015-12-01,"Florida",1459 +2015-12-01,"Mississippi",2448 +2015-12-01,"Oklahoma",9337 +2015-12-01,"Tennessee",7708 +2015-12-01,"South Dakota",2016 +2015-12-01,"Ohio",30726 +2015-12-01,"Alabama",3496 +2015-12-01,"Nebraska",5620 +2015-12-01,"Arkansas",4266 +2016-01-01,"Illinois",79022 +2016-01-01,"Iowa",13266 +2016-01-01,"Washington",12921 +2016-01-01,"Maine",436 +2016-01-01,"Utah",12419 +2016-01-01,"U.S.",878936 +2016-01-01,"Hawaii",52 +2016-01-01,"South Carolina",6866 +2016-01-01,"Maryland",16770 +2016-01-01,"Wisconsin",25000 +2016-01-01,"District of Columbia",2464 +2016-01-01,"Colorado",22222 +2016-01-01,"Alaska",2358 +2016-01-01,"Vermont",598 +2016-01-01,"Oklahoma",11999 +2016-01-01,"Nebraska",7072 +2016-01-01,"Louisiana",7419 +2016-01-01,"Pennsylvania",44428 +2016-01-01,"California",69803 +2016-01-01,"Florida",2738 +2016-01-01,"Mississippi",5167 +2016-01-01,"Massachusetts",19399 +2016-01-01,"New Jersey",42724 +2016-01-01,"Tennessee",15073 +2016-01-01,"North Dakota",1956 +2016-01-01,"Kansas",12771 +2016-01-01,"Missouri",21002 +2016-01-01,"Kentucky",10651 +2016-01-01,"West Virginia",5275 +2016-01-01,"Oregon",6827 +2016-01-01,"New York",74579 +2016-01-01,"Indiana",27474 +2016-01-01,"Michigan",55192 +2016-01-01,"New Hampshire",1293 +2016-01-01,"Connecticut",8259 +2016-01-01,"Nevada",8540 +2016-01-01,"Alabama",7195 +2016-01-01,"Ohio",54299 +2016-01-01,"Arizona",8719 +2016-01-01,"Idaho",4525 +2016-01-01,"North Carolina",16193 +2016-01-01,"New Mexico",6740 2016-01-01,"Wyoming",1963 +2016-01-01,"Delaware",2009 +2016-01-01,"Arkansas",6040 +2016-01-01,"South Dakota",2289 +2016-01-01,"Rhode Island",3320 +2016-01-01,"Montana",3158 +2016-01-01,"Texas",41423 +2016-01-01,"Georgia",26056 +2016-01-01,"Minnesota",23813 +2016-01-01,"Virginia",17158 +2016-02-01,"Michigan",47638 +2016-02-01,"New Hampshire",1101 +2016-02-01,"Louisiana",4881 +2016-02-01,"Ohio",44165 +2016-02-01,"Maryland",13589 +2016-02-01,"Montana",2291 +2016-02-01,"Texas",30067 +2016-02-01,"New York",66686 +2016-02-01,"Utah",9030 +2016-02-01,"Hawaii",47 +2016-02-01,"Oregon",4904 +2016-02-01,"North Carolina",12917 +2016-02-01,"Indiana",21376 2016-02-01,"Wyoming",1530 +2016-02-01,"Minnesota",19714 +2016-02-01,"South Dakota",1766 +2016-02-01,"Colorado",17247 +2016-02-01,"Washington",9272 +2016-02-01,"Maine",388 +2016-02-01,"New Mexico",4966 +2016-02-01,"North Dakota",1509 +2016-02-01,"Alabama",5516 +2016-02-01,"Arkansas",4944 +2016-02-01,"Alaska",2067 +2016-02-01,"West Virginia",4160 +2016-02-01,"Mississippi",3312 +2016-02-01,"Oklahoma",7605 +2016-02-01,"Georgia",19769 +2016-02-01,"Delaware",1812 +2016-02-01,"Kansas",8619 +2016-02-01,"Virginia",14427 +2016-02-01,"Rhode Island",2791 +2016-02-01,"Illinois",62741 +2016-02-01,"Arizona",5816 +2016-02-01,"Kentucky",8533 +2016-02-01,"South Carolina",5686 +2016-02-01,"Connecticut",7649 +2016-02-01,"Vermont",562 +2016-02-01,"Nevada",5658 +2016-02-01,"Tennessee",11341 +2016-02-01,"Iowa",10221 +2016-02-01,"Wisconsin",19942 +2016-02-01,"Florida",2333 +2016-02-01,"Massachusetts",18068 +2016-02-01,"New Jersey",34983 +2016-02-01,"Missouri",14459 +2016-02-01,"Nebraska",5465 +2016-02-01,"Pennsylvania",37256 +2016-02-01,"Idaho",3284 +2016-02-01,"California",43748 +2016-02-01,"District of Columbia",2230 +2016-02-01,"U.S.",690077 +2016-03-01,"Colorado",14373 +2016-03-01,"Louisiana",2610 +2016-03-01,"Oregon",4524 +2016-03-01,"Maryland",7549 +2016-03-01,"North Carolina",5133 +2016-03-01,"Arkansas",2762 +2016-03-01,"South Dakota",1303 +2016-03-01,"Michigan",33133 +2016-03-01,"Alaska",1885 +2016-03-01,"Rhode Island",1935 +2016-03-01,"Iowa",6787 +2016-03-01,"West Virginia",2617 +2016-03-01,"Washington",8903 +2016-03-01,"Florida",1694 +2016-03-01,"Mississippi",1733 +2016-03-01,"Indiana",11654 +2016-03-01,"Texas",16632 +2016-03-01,"Ohio",26914 +2016-03-01,"Kentucky",4655 +2016-03-01,"District of Columbia",1080 +2016-03-01,"Pennsylvania",22482 +2016-03-01,"Connecticut",5351 +2016-03-01,"Nevada",3524 2016-03-01,"Wyoming",1333 +2016-03-01,"Massachusetts",13735 +2016-03-01,"New Jersey",23954 +2016-03-01,"Montana",2008 +2016-03-01,"Maine",330 +2016-03-01,"New Mexico",3341 +2016-03-01,"North Dakota",1076 +2016-03-01,"U.S.",455001 +2016-03-01,"Nebraska",3500 +2016-03-01,"New Hampshire",806 +2016-03-01,"South Carolina",2282 +2016-03-01,"California",39795 +2016-03-01,"Vermont",395 +2016-03-01,"Georgia",9579 +2016-03-01,"Arizona",3089 +2016-03-01,"Idaho",2566 +2016-03-01,"Minnesota",12540 +2016-03-01,"Alabama",2755 +2016-03-01,"Delaware",1094 +2016-03-01,"Virginia",8174 +2016-03-01,"Missouri",8665 +2016-03-01,"Illinois",41365 +2016-03-01,"Hawaii",49 +2016-03-01,"Wisconsin",14393 +2016-03-01,"Oklahoma",4616 +2016-03-01,"New York",47537 +2016-03-01,"Utah",6228 +2016-03-01,"Tennessee",5466 +2016-03-01,"Kansas",5100 +2016-04-01,"Kentucky",2633 +2016-04-01,"South Carolina",1342 +2016-04-01,"Maryland",5420 +2016-04-01,"Wisconsin",11242 +2016-04-01,"North Carolina",3302 +2016-04-01,"Maine",255 2016-04-01,"Wyoming",979 +2016-04-01,"Nebraska",2324 +2016-04-01,"Alaska",1242 +2016-04-01,"Iowa",4664 +2016-04-01,"Connecticut",4070 +2016-04-01,"Michigan",27259 +2016-04-01,"Ohio",21448 +2016-04-01,"Florida",1221 +2016-04-01,"Massachusetts",10051 +2016-04-01,"Minnesota",9873 +2016-04-01,"Alabama",1645 +2016-04-01,"Virginia",5420 +2016-04-01,"Missouri",4942 +2016-04-01,"Pennsylvania",16928 +2016-04-01,"Oregon",2244 +2016-04-01,"District of Columbia",772 +2016-04-01,"New Jersey",17908 +2016-04-01,"Texas",11584 +2016-04-01,"Tennessee",3107 +2016-04-01,"North Dakota",770 +2016-04-01,"Georgia",6476 +2016-04-01,"Colorado",10419 +2016-04-01,"Hawaii",51 +2016-04-01,"Arizona",2422 +2016-04-01,"Mississippi",943 +2016-04-01,"Oklahoma",2370 +2016-04-01,"New York",36910 +2016-04-01,"Nevada",2500 +2016-04-01,"U.S.",328059 +2016-04-01,"Delaware",794 +2016-04-01,"Kansas",2599 +2016-04-01,"Rhode Island",1498 +2016-04-01,"Idaho",1308 +2016-04-01,"South Dakota",973 +2016-04-01,"Montana",1288 +2016-04-01,"Vermont",362 +2016-04-01,"Indiana",9343 +2016-04-01,"Utah",4452 +2016-04-01,"Arkansas",1510 +2016-04-01,"New Hampshire",606 +2016-04-01,"Louisiana",1902 +2016-04-01,"Illinois",30372 +2016-04-01,"West Virginia",1784 +2016-04-01,"Washington",4151 +2016-04-01,"California",28203 +2016-04-01,"New Mexico",2178 +2016-05-01,"Oregon",1550 +2016-05-01,"South Carolina",719 +2016-05-01,"Connecticut",2294 +2016-05-01,"California",24772 +2016-05-01,"Delaware",458 +2016-05-01,"Kansas",2084 +2016-05-01,"Ohio",10510 +2016-05-01,"North Carolina",1657 +2016-05-01,"Mississippi",817 +2016-05-01,"New Mexico",1546 +2016-05-01,"Indiana",4741 +2016-05-01,"Michigan",12191 +2016-05-01,"New Hampshire",294 +2016-05-01,"Illinois",15848 +2016-05-01,"Idaho",893 +2016-05-01,"Wisconsin",5056 +2016-05-01,"Maine",136 +2016-05-01,"District of Columbia",489 +2016-05-01,"Arkansas",937 +2016-05-01,"Colorado",6529 +2016-05-01,"Alaska",864 +2016-05-01,"Arizona",1766 +2016-05-01,"Iowa",2249 +2016-05-01,"Maryland",3341 +2016-05-01,"Oklahoma",1759 +2016-05-01,"New York",22097 2016-05-01,"Wyoming",772 +2016-05-01,"Massachusetts",5617 +2016-05-01,"Georgia",4642 +2016-05-01,"Alabama",978 +2016-05-01,"Virginia",2968 +2016-05-01,"Hawaii",44 +2016-05-01,"Kentucky",1491 +2016-05-01,"Texas",7373 +2016-05-01,"U.S.",193922 +2016-05-01,"Nebraska",1371 +2016-05-01,"Rhode Island",746 +2016-05-01,"Pennsylvania",9401 +2016-05-01,"Utah",2994 +2016-05-01,"Missouri",2869 +2016-05-01,"Florida",968 +2016-05-01,"Vermont",204 +2016-05-01,"New Jersey",10809 +2016-05-01,"Tennessee",1627 +2016-05-01,"North Dakota",375 +2016-05-01,"South Dakota",523 +2016-05-01,"Louisiana",1481 +2016-05-01,"West Virginia",726 +2016-05-01,"Washington",3170 +2016-05-01,"Montana",934 +2016-05-01,"Nevada",1993 +2016-05-01,"Minnesota",4253 +2016-06-01,"Illinois",9531 +2016-06-01,"Oregon",1127 +2016-06-01,"Washington",2300 +2016-06-01,"Texas",7078 +2016-06-01,"Tennessee",1157 +2016-06-01,"North Dakota",181 +2016-06-01,"Minnesota",2944 +2016-06-01,"Arkansas",687 +2016-06-01,"Pennsylvania",5191 +2016-06-01,"Arizona",1327 +2016-06-01,"Kentucky",813 +2016-06-01,"West Virginia",371 +2016-06-01,"Wisconsin",2605 +2016-06-01,"Vermont",113 +2016-06-01,"Missouri",1919 +2016-06-01,"South Dakota",230 +2016-06-01,"Colorado",2932 +2016-06-01,"Maryland",1783 +2016-06-01,"California",21252 +2016-06-01,"Georgia",3772 +2016-06-01,"Nebraska",905 +2016-06-01,"New Hampshire",168 +2016-06-01,"Ohio",4867 +2016-06-01,"North Carolina",1222 +2016-06-01,"Maine",60 +2016-06-01,"New Mexico",1085 +2016-06-01,"New York",12799 +2016-06-01,"Indiana",2229 +2016-06-01,"Delaware",224 +2016-06-01,"Utah",1463 +2016-06-01,"Massachusetts",2802 +2016-06-01,"U.S.",122640 +2016-06-01,"Virginia",2052 +2016-06-01,"Alaska",534 +2016-06-01,"Louisiana",1239 +2016-06-01,"District of Columbia",280 +2016-06-01,"Michigan",5586 +2016-06-01,"Rhode Island",325 +2016-06-01,"Hawaii",45 +2016-06-01,"Iowa",1181 +2016-06-01,"Montana",515 +2016-06-01,"Oklahoma",1370 +2016-06-01,"Nevada",1518 +2016-06-01,"Idaho",587 +2016-06-01,"South Carolina",499 +2016-06-01,"Connecticut",1312 +2016-06-01,"Florida",798 +2016-06-01,"Mississippi",740 2016-06-01,"Wyoming",294 +2016-06-01,"New Jersey",6416 +2016-06-01,"Alabama",833 +2016-06-01,"Kansas",1377 +2016-07-01,"Michigan",5405 +2016-07-01,"Illinois",7828 +2016-07-01,"Hawaii",45 +2016-07-01,"Kentucky",723 +2016-07-01,"Maryland",1483 2016-07-01,"Wyoming",231 +2016-07-01,"Alabama",675 +2016-07-01,"Rhode Island",268 +2016-07-01,"Pennsylvania",4156 +2016-07-01,"West Virginia",363 +2016-07-01,"Washington",1855 +2016-07-01,"Idaho",524 +2016-07-01,"Wisconsin",2361 +2016-07-01,"Florida",701 +2016-07-01,"Nevada",1269 +2016-07-01,"U.S.",106420 +2016-07-01,"Kansas",1080 +2016-07-01,"Connecticut",1034 +2016-07-01,"Montana",400 +2016-07-01,"Vermont",93 +2016-07-01,"New Mexico",839 +2016-07-01,"Indiana",2033 +2016-07-01,"Texas",5756 +2016-07-01,"Arkansas",584 +2016-07-01,"Colorado",2560 +2016-07-01,"New Hampshire",130 +2016-07-01,"Oregon",920 +2016-07-01,"South Carolina",447 +2016-07-01,"California",19533 +2016-07-01,"New York",10775 +2016-07-01,"District of Columbia",240 +2016-07-01,"Massachusetts",2440 +2016-07-01,"Alaska",479 +2016-07-01,"Mississippi",595 +2016-07-01,"Utah",1714 +2016-07-01,"North Dakota",162 +2016-07-01,"Virginia",1429 +2016-07-01,"Ohio",4237 +2016-07-01,"Maine",50 +2016-07-01,"New Jersey",5739 +2016-07-01,"Georgia",3641 +2016-07-01,"Minnesota",2306 +2016-07-01,"Missouri",1637 +2016-07-01,"Nebraska",713 +2016-07-01,"South Dakota",196 +2016-07-01,"Louisiana",1182 +2016-07-01,"Arizona",1081 +2016-07-01,"Iowa",1178 +2016-07-01,"North Carolina",1047 +2016-07-01,"Oklahoma",1115 +2016-07-01,"Tennessee",1004 +2016-07-01,"Delaware",164 +2016-08-01,"South Dakota",209 +2016-08-01,"Oklahoma",1175 +2016-08-01,"Georgia",3830 +2016-08-01,"Kansas",990 +2016-08-01,"Missouri",1611 +2016-08-01,"Hawaii",45 +2016-08-01,"Montana",405 +2016-08-01,"California",18613 +2016-08-01,"New York",9267 +2016-08-01,"New Jersey",4313 +2016-08-01,"Alabama",646 +2016-08-01,"Alaska",534 +2016-08-01,"Washington",1776 +2016-08-01,"Nevada",1208 +2016-08-01,"Indiana",2201 +2016-08-01,"Massachusetts",2281 +2016-08-01,"North Dakota",175 +2016-08-01,"Delaware",155 +2016-08-01,"Illinois",7463 +2016-08-01,"Ohio",4818 +2016-08-01,"Iowa",1052 +2016-08-01,"Idaho",498 +2016-08-01,"Connecticut",897 +2016-08-01,"Maryland",1345 +2016-08-01,"Wisconsin",2124 +2016-08-01,"North Carolina",1045 2016-08-01,"Wyoming",259 +2016-08-01,"Texas",5380 +2016-08-01,"U.S.",100455 +2016-08-01,"Minnesota",2497 +2016-08-01,"Virginia",1376 +2016-08-01,"West Virginia",323 +2016-08-01,"Vermont",77 +2016-08-01,"Tennessee",926 +2016-08-01,"South Carolina",484 +2016-08-01,"Arkansas",545 +2016-08-01,"New Hampshire",129 +2016-08-01,"Louisiana",1247 +2016-08-01,"Pennsylvania",3943 +2016-08-01,"Arizona",1031 +2016-08-01,"Florida",683 +2016-08-01,"Maine",44 +2016-08-01,"New Mexico",775 +2016-08-01,"Nebraska",665 +2016-08-01,"Michigan",4898 +2016-08-01,"Colorado",2736 +2016-08-01,"Rhode Island",236 +2016-08-01,"Kentucky",774 +2016-08-01,"Oregon",622 +2016-08-01,"Mississippi",553 +2016-08-01,"Utah",1366 +2016-08-01,"District of Columbia",211 +2016-09-01,"Iowa",1330 +2016-09-01,"Idaho",690 +2016-09-01,"Florida",727 +2016-09-01,"Indiana",2346 +2016-09-01,"Pennsylvania",4167 +2016-09-01,"Connecticut",962 +2016-09-01,"Maine",56 +2016-09-01,"New Jersey",4706 +2016-09-01,"Kansas",1139 +2016-09-01,"Nebraska",706 +2016-09-01,"Rhode Island",360 +2016-09-01,"Louisiana",1222 +2016-09-01,"Montana",631 +2016-09-01,"Mississippi",572 +2016-09-01,"Nevada",1387 +2016-09-01,"Texas",5353 +2016-09-01,"Delaware",165 +2016-09-01,"New Hampshire",153 +2016-09-01,"District of Columbia",202 +2016-09-01,"Minnesota",2599 +2016-09-01,"Alabama",620 +2016-09-01,"Virginia",1450 +2016-09-01,"Michigan",6654 +2016-09-01,"Colorado",3217 +2016-09-01,"Illinois",7804 +2016-09-01,"Kentucky",772 +2016-09-01,"Washington",2551 +2016-09-01,"Maryland",1425 +2016-09-01,"California",19918 2016-09-01,"Wyoming",353 +2016-09-01,"Utah",1781 +2016-09-01,"U.S.",109782 +2016-09-01,"Missouri",1526 +2016-09-01,"South Dakota",239 +2016-09-01,"Alaska",831 +2016-09-01,"New York",9380 +2016-09-01,"Tennessee",1020 +2016-09-01,"North Dakota",218 +2016-09-01,"Hawaii",49 +2016-09-01,"Arizona",1144 +2016-09-01,"Oregon",1114 +2016-09-01,"Wisconsin",2403 +2016-09-01,"New Mexico",933 +2016-09-01,"Georgia",3795 +2016-09-01,"Arkansas",609 +2016-09-01,"Ohio",4721 +2016-09-01,"West Virginia",360 +2016-09-01,"South Carolina",502 +2016-09-01,"North Carolina",1088 +2016-09-01,"Vermont",87 +2016-09-01,"Oklahoma",1305 +2016-09-01,"Massachusetts",2440 +2016-10-01,"Hawaii",45 +2016-10-01,"Arizona",1433 +2016-10-01,"Wisconsin",5590 +2016-10-01,"Nevada",1810 +2016-10-01,"Indiana",4292 +2016-10-01,"Alabama",875 +2016-10-01,"Delaware",281 +2016-10-01,"Kansas",1543 +2016-10-01,"Michigan",14925 +2016-10-01,"New Hampshire",231 +2016-10-01,"Illinois",14683 +2016-10-01,"Iowa",2016 +2016-10-01,"Washington",5551 2016-10-01,"Wyoming",727 +2016-10-01,"District of Columbia",337 +2016-10-01,"Tennessee",1410 +2016-10-01,"Mississippi",625 +2016-10-01,"New Mexico",1214 +2016-10-01,"Utah",2979 +2016-10-01,"Minnesota",5555 +2016-10-01,"Alaska",1713 +2016-10-01,"Louisiana",1388 +2016-10-01,"Oregon",2776 +2016-10-01,"Connecticut",1971 +2016-10-01,"Maine",133 +2016-10-01,"Virginia",2883 +2016-10-01,"West Virginia",884 +2016-10-01,"Idaho",1457 +2016-10-01,"North Carolina",1719 +2016-10-01,"Florida",820 +2016-10-01,"Vermont",149 +2016-10-01,"New York",18301 +2016-10-01,"New Jersey",8782 +2016-10-01,"U.S.",187385 +2016-10-01,"Ohio",10397 +2016-10-01,"Massachusetts",5427 +2016-10-01,"Texas",6508 +2016-10-01,"Arkansas",734 +2016-10-01,"South Dakota",520 +2016-10-01,"Colorado",6060 +2016-10-01,"South Carolina",730 +2016-10-01,"California",22234 +2016-10-01,"Oklahoma",1660 +2016-10-01,"Georgia",4812 +2016-10-01,"Rhode Island",906 +2016-10-01,"Pennsylvania",8820 +2016-10-01,"Kentucky",1288 +2016-10-01,"Maryland",2645 +2016-10-01,"Montana",1383 +2016-10-01,"North Dakota",629 +2016-10-01,"Missouri",2507 +2016-10-01,"Nebraska",1031 +2016-11-01,"South Dakota",901 +2016-11-01,"Alaska",2313 +2016-11-01,"Arizona",2313 +2016-11-01,"Montana",2115 +2016-11-01,"New York",37991 +2016-11-01,"Massachusetts",10623 +2016-11-01,"Tennessee",4391 +2016-11-01,"Minnesota",9848 +2016-11-01,"Alabama",1790 +2016-11-01,"New Mexico",3068 +2016-11-01,"Indiana",11343 +2016-11-01,"Texas",9112 +2016-11-01,"Georgia",10125 +2016-11-01,"Idaho",2661 +2016-11-01,"U.S.",379746 +2016-11-01,"Michigan",27488 +2016-11-01,"Pennsylvania",20030 +2016-11-01,"Wisconsin",10367 +2016-11-01,"Vermont",326 +2016-11-01,"Mississippi",1350 +2016-11-01,"Utah",6363 +2016-11-01,"Missouri",6723 +2016-11-01,"Rhode Island",1753 +2016-11-01,"Louisiana",1988 +2016-11-01,"Illinois",32863 +2016-11-01,"Oregon",3994 +2016-11-01,"Maine",229 2016-11-01,"Wyoming",1135 +2016-11-01,"New Jersey",18709 +2016-11-01,"Kansas",4753 +2016-11-01,"Virginia",6527 +2016-11-01,"Colorado",11559 +2016-11-01,"New Hampshire",701 +2016-11-01,"Washington",7845 +2016-11-01,"Connecticut",4432 +2016-11-01,"Nevada",2891 +2016-11-01,"District of Columbia",941 +2016-11-01,"North Dakota",867 +2016-11-01,"Hawaii",47 +2016-11-01,"West Virginia",2265 +2016-11-01,"Maryland",6792 +2016-11-01,"North Carolina",6306 +2016-11-01,"Florida",1082 +2016-11-01,"Oklahoma",3798 +2016-11-01,"Delaware",794 +2016-11-01,"Arkansas",1830 +2016-11-01,"Ohio",23458 +2016-11-01,"Iowa",4607 +2016-11-01,"Kentucky",3863 +2016-11-01,"South Carolina",2620 +2016-11-01,"California",37485 +2016-11-01,"Nebraska",2374 +2016-12-01,"Michigan",53783 +2016-12-01,"Alaska",2969 +2016-12-01,"Ohio",45991 +2016-12-01,"South Carolina",5384 +2016-12-01,"Vermont",555 +2016-12-01,"District of Columbia",2132 +2016-12-01,"Minnesota",21656 +2016-12-01,"New Hampshire",1249 +2016-12-01,"Utah",13140 +2016-12-01,"Massachusetts",19200 +2016-12-01,"Pennsylvania",38711 +2016-12-01,"West Virginia",4083 +2016-12-01,"California",66473 +2016-12-01,"Tennessee",12402 +2016-12-01,"Virginia",13307 +2016-12-01,"Missouri",19405 +2016-12-01,"Arkansas",5947 +2016-12-01,"Rhode Island",3064 +2016-12-01,"Washington",16027 +2016-12-01,"Montana",3972 +2016-12-01,"Oklahoma",11803 +2016-12-01,"New York",66144 +2016-12-01,"New Jersey",36467 +2016-12-01,"Alabama",4880 +2016-12-01,"Colorado",22110 +2016-12-01,"Arizona",4980 +2016-12-01,"Idaho",5896 +2016-12-01,"Connecticut",7814 +2016-12-01,"Nevada",6777 +2016-12-01,"Texas",29065 +2016-12-01,"South Dakota",2513 +2016-12-01,"Illinois",77071 +2016-12-01,"Hawaii",52 +2016-12-01,"Oregon",8788 +2016-12-01,"Maine",449 +2016-12-01,"Mississippi",3778 +2016-12-01,"New Mexico",5893 +2016-12-01,"North Dakota",2140 +2016-12-01,"U.S.",794164 +2016-12-01,"Kansas",12004 +2016-12-01,"Iowa",12695 +2016-12-01,"Maryland",13905 +2016-12-01,"Indiana",26006 +2016-12-01,"Georgia",19426 +2016-12-01,"Delaware",1711 +2016-12-01,"Nebraska",6924 +2016-12-01,"Louisiana",4824 +2016-12-01,"Kentucky",9305 +2016-12-01,"Wisconsin",24366 +2016-12-01,"North Carolina",12920 +2016-12-01,"Florida",1587 2016-12-01,"Wyoming",2424 +2017-01-01,"Michigan",52023 +2017-01-01,"Vermont",556 +2017-01-01,"Delaware",1951 +2017-01-01,"Colorado",22722 +2017-01-01,"Iowa",12009 +2017-01-01,"South Carolina",4970 +2017-01-01,"Connecticut",8549 +2017-01-01,"New Mexico",6024 +2017-01-01,"Nevada",8578 +2017-01-01,"Virginia",15380 +2017-01-01,"Nebraska",7563 +2017-01-01,"Arkansas",5740 +2017-01-01,"Oregon",9534 +2017-01-01,"Washington",16845 +2017-01-01,"Maryland",14139 +2017-01-01,"Oklahoma",11789 +2017-01-01,"New York",72971 2017-01-01,"Wyoming",2344 +2017-01-01,"Missouri",18939 +2017-01-01,"Idaho",6199 +2017-01-01,"Massachusetts",19515 +2017-01-01,"North Dakota",2126 +2017-01-01,"Alabama",4845 +2017-01-01,"Alaska",3188 +2017-01-01,"Pennsylvania",39962 +2017-01-01,"Arizona",6656 +2017-01-01,"Kentucky",8265 +2017-01-01,"North Carolina",11943 +2017-01-01,"California",83528 +2017-01-01,"Florida",1958 +2017-01-01,"Maine",447 +2017-01-01,"Tennessee",11248 +2017-01-01,"Rhode Island",2961 +2017-01-01,"Hawaii",58 +2017-01-01,"West Virginia",4081 +2017-01-01,"Indiana",23508 +2017-01-01,"Texas",39036 +2017-01-01,"U.S.",830917 +2017-01-01,"New Hampshire",1235 +2017-01-01,"Illinois",72098 +2017-01-01,"Ohio",46915 +2017-01-01,"Utah",13980 +2017-01-01,"District of Columbia",2348 +2017-01-01,"New Jersey",39766 +2017-01-01,"Georgia",18076 +2017-01-01,"Kansas",12342 +2017-01-01,"South Dakota",2486 +2017-01-01,"Louisiana",4930 +2017-01-01,"Wisconsin",23539 +2017-01-01,"Montana",4211 +2017-01-01,"Mississippi",3417 +2017-01-01,"Minnesota",23423 +2017-02-01,"Alaska",2521 +2017-02-01,"Hawaii",52 +2017-02-01,"Vermont",507 +2017-02-01,"Minnesota",16507 +2017-02-01,"Arkansas",3376 +2017-02-01,"Louisiana",2908 +2017-02-01,"Idaho",3829 +2017-02-01,"Maryland",11029 +2017-02-01,"North Carolina",7129 +2017-02-01,"Maine",395 +2017-02-01,"Oregon",6406 +2017-02-01,"South Carolina",3032 +2017-02-01,"Oklahoma",6446 +2017-02-01,"Indiana",15350 +2017-02-01,"District of Columbia",1679 +2017-02-01,"Tennessee",7217 +2017-02-01,"Delaware",1397 +2017-02-01,"Michigan",38430 +2017-02-01,"Colorado",14666 +2017-02-01,"New Hampshire",999 +2017-02-01,"West Virginia",3118 +2017-02-01,"Washington",12452 +2017-02-01,"New Mexico",4196 +2017-02-01,"Massachusetts",16531 +2017-02-01,"North Dakota",1577 +2017-02-01,"U.S.",579458 +2017-02-01,"Rhode Island",2513 +2017-02-01,"Illinois",47529 +2017-02-01,"Arizona",5840 +2017-02-01,"Connecticut",7199 +2017-02-01,"Montana",2978 +2017-02-01,"Missouri",10986 +2017-02-01,"Pennsylvania",30972 +2017-02-01,"Iowa",8380 +2017-02-01,"Kentucky",5597 +2017-02-01,"Wisconsin",17252 +2017-02-01,"Mississippi",2110 +2017-02-01,"New York",60364 +2017-02-01,"Nevada",6256 +2017-02-01,"Alabama",3228 +2017-02-01,"Nebraska",4681 +2017-02-01,"South Dakota",1668 +2017-02-01,"Ohio",33215 +2017-02-01,"Florida",1725 +2017-02-01,"Utah",7427 +2017-02-01,"Texas",22127 +2017-02-01,"California",53979 2017-02-01,"Wyoming",1797 +2017-02-01,"New Jersey",30429 +2017-02-01,"Georgia",12391 +2017-02-01,"Kansas",6663 +2017-02-01,"Virginia",10403 +2017-03-01,"South Dakota",1539 +2017-03-01,"Hawaii",52 +2017-03-01,"Maine",426 +2017-03-01,"Vermont",570 +2017-03-01,"Indiana",17160 +2017-03-01,"Massachusetts",20222 +2017-03-01,"North Dakota",1475 +2017-03-01,"Alabama",3177 +2017-03-01,"West Virginia",3489 +2017-03-01,"South Carolina",3395 +2017-03-01,"Wisconsin",18653 +2017-03-01,"Montana",2231 +2017-03-01,"New York",68073 +2017-03-01,"Nevada",4396 +2017-03-01,"Utah",5704 +2017-03-01,"Texas",16023 +2017-03-01,"Georgia",12823 +2017-03-01,"Minnesota",16657 +2017-03-01,"Delaware",1689 +2017-03-01,"Virginia",11067 +2017-03-01,"Colorado",11823 +2017-03-01,"Alaska",2666 +2017-03-01,"Louisiana",2700 +2017-03-01,"Iowa",8061 +2017-03-01,"Idaho",2669 2017-03-01,"Wyoming",1520 +2017-03-01,"U.S.",579941 +2017-03-01,"Nebraska",4156 +2017-03-01,"Michigan",42975 +2017-03-01,"Arizona",3703 +2017-03-01,"Connecticut",7844 +2017-03-01,"North Carolina",8165 +2017-03-01,"District of Columbia",1796 +2017-03-01,"Tennessee",6888 +2017-03-01,"Pennsylvania",33765 +2017-03-01,"Illinois",52136 +2017-03-01,"Ohio",37420 +2017-03-01,"Oregon",5136 +2017-03-01,"California",40607 +2017-03-01,"Florida",1600 +2017-03-01,"Arkansas",2952 +2017-03-01,"New Hampshire",1184 +2017-03-01,"Mississippi",2153 +2017-03-01,"Kansas",6449 +2017-03-01,"Rhode Island",3126 +2017-03-01,"Kentucky",5648 +2017-03-01,"Washington",10426 +2017-03-01,"Maryland",11443 +2017-03-01,"New Mexico",2973 +2017-03-01,"Oklahoma",4756 +2017-03-01,"New Jersey",34082 +2017-03-01,"Missouri",10298 +2017-04-01,"Colorado",8839 +2017-04-01,"New Hampshire",478 +2017-04-01,"Rhode Island",1192 +2017-04-01,"Hawaii",49 +2017-04-01,"North Carolina",2309 +2017-04-01,"District of Columbia",616 +2017-04-01,"Kansas",3063 +2017-04-01,"Arizona",2358 +2017-04-01,"Nevada",2794 +2017-04-01,"New Jersey",14798 +2017-04-01,"South Dakota",905 +2017-04-01,"Louisiana",1706 +2017-04-01,"Iowa",4047 +2017-04-01,"Maine",235 +2017-04-01,"Oklahoma",2737 +2017-04-01,"Tennessee",2363 +2017-04-01,"Delaware",612 +2017-04-01,"Virginia",3795 +2017-04-01,"Michigan",18831 +2017-04-01,"Alaska",1472 +2017-04-01,"West Virginia",1372 +2017-04-01,"Indiana",7076 +2017-04-01,"Texas",9413 +2017-04-01,"Georgia",5704 +2017-04-01,"U.S.",278972 +2017-04-01,"Missouri",4432 +2017-04-01,"Kentucky",2032 +2017-04-01,"Idaho",2016 +2017-04-01,"California",29707 +2017-04-01,"Vermont",311 +2017-04-01,"New York",30910 2017-04-01,"Wyoming",1001 +2017-04-01,"Massachusetts",8696 +2017-04-01,"Alabama",1362 +2017-04-01,"Nebraska",2231 +2017-04-01,"Connecticut",3529 +2017-04-01,"Wisconsin",8439 +2017-04-01,"Mississippi",807 +2017-04-01,"Arkansas",1167 +2017-04-01,"Illinois",23309 +2017-04-01,"Oregon",3766 +2017-04-01,"Washington",7033 +2017-04-01,"Florida",1392 +2017-04-01,"New Mexico",2085 +2017-04-01,"North Dakota",737 +2017-04-01,"Minnesota",8308 +2017-04-01,"Pennsylvania",13739 +2017-04-01,"Ohio",13988 +2017-04-01,"South Carolina",1224 +2017-04-01,"Maryland",3402 +2017-04-01,"Montana",1608 +2017-04-01,"Utah",4976 +2017-05-01,"Ohio",9987 +2017-05-01,"Arizona",1782 +2017-05-01,"Idaho",1114 +2017-05-01,"Connecticut",2231 +2017-05-01,"Maryland",2993 +2017-05-01,"North Carolina",1514 +2017-05-01,"North Dakota",347 +2017-05-01,"Virginia",2501 +2017-05-01,"Alaska",983 +2017-05-01,"Kentucky",1188 +2017-05-01,"Oregon",2148 +2017-05-01,"South Carolina",683 +2017-05-01,"Colorado",6264 +2017-05-01,"Hawaii",44 +2017-05-01,"Iowa",2437 +2017-05-01,"Florida",1060 +2017-05-01,"Maine",135 +2017-05-01,"Utah",2890 +2017-05-01,"Minnesota",5044 +2017-05-01,"Alabama",925 +2017-05-01,"Michigan",13699 +2017-05-01,"New Hampshire",338 +2017-05-01,"Rhode Island",798 +2017-05-01,"Illinois",16983 +2017-05-01,"Oklahoma",1879 2017-05-01,"Wyoming",796 +2017-05-01,"Massachusetts",5950 +2017-05-01,"Texas",7747 +2017-05-01,"Delaware",350 +2017-05-01,"Kansas",1777 +2017-05-01,"Louisiana",1430 +2017-05-01,"California",27253 +2017-05-01,"Mississippi",728 +2017-05-01,"U.S.",199486 +2017-05-01,"Nebraska",1512 +2017-05-01,"Arkansas",952 +2017-05-01,"South Dakota",482 +2017-05-01,"Montana",902 +2017-05-01,"New Mexico",1409 +2017-05-01,"District of Columbia",518 +2017-05-01,"Georgia",4933 +2017-05-01,"Missouri",3319 +2017-05-01,"Wisconsin",5967 +2017-05-01,"New York",20619 +2017-05-01,"Nevada",2022 +2017-05-01,"New Jersey",9356 +2017-05-01,"Tennessee",1721 +2017-05-01,"Pennsylvania",9495 +2017-05-01,"West Virginia",758 +2017-05-01,"Washington",4046 +2017-05-01,"Vermont",187 +2017-05-01,"Indiana",5289 +2017-06-01,"Ohio",5336 +2017-06-01,"Maryland",1789 +2017-06-01,"New Mexico",951 +2017-06-01,"District of Columbia",340 +2017-06-01,"Texas",5821 +2017-06-01,"Virginia",1798 +2017-06-01,"Arkansas",620 +2017-06-01,"Colorado",2955 +2017-06-01,"Kentucky",777 +2017-06-01,"West Virginia",325 +2017-06-01,"Montana",474 +2017-06-01,"Mississippi",526 +2017-06-01,"Nevada",1600 +2017-06-01,"Indiana",2415 2017-06-01,"Wyoming",372 +2017-06-01,"Alaska",656 +2017-06-01,"Oregon",1326 +2017-06-01,"Washington",2226 +2017-06-01,"Oklahoma",1300 +2017-06-01,"New York",13858 +2017-06-01,"Utah",2227 +2017-06-01,"South Carolina",547 +2017-06-01,"Connecticut",1380 +2017-06-01,"Kansas",1229 +2017-06-01,"Nebraska",857 +2017-06-01,"South Dakota",265 +2017-06-01,"Vermont",131 +2017-06-01,"U.S.",124057 +2017-06-01,"Michigan",6056 +2017-06-01,"New Hampshire",176 +2017-06-01,"Illinois",9182 +2017-06-01,"Hawaii",49 +2017-06-01,"North Carolina",1039 +2017-06-01,"Florida",880 +2017-06-01,"Georgia",4103 +2017-06-01,"Alabama",713 +2017-06-01,"Rhode Island",462 +2017-06-01,"Wisconsin",2795 +2017-06-01,"Maine",76 +2017-06-01,"Massachusetts",3299 +2017-06-01,"New Jersey",6185 +2017-06-01,"Delaware",207 +2017-06-01,"Missouri",1904 +2017-06-01,"Louisiana",1288 +2017-06-01,"Pennsylvania",5099 +2017-06-01,"Arizona",1325 +2017-06-01,"Iowa",1276 +2017-06-01,"Idaho",599 +2017-06-01,"California",20886 +2017-06-01,"Tennessee",1168 +2017-06-01,"North Dakota",190 +2017-06-01,"Minnesota",2997 +2017-07-01,"Michigan",5123 +2017-07-01,"Ohio",4711 +2017-07-01,"Arizona",1101 +2017-07-01,"West Virginia",356 +2017-07-01,"Vermont",82 2017-07-01,"Wyoming",211 +2017-07-01,"Georgia",3936 +2017-07-01,"Minnesota",2276 +2017-07-01,"Kentucky",719 +2017-07-01,"Montana",343 +2017-07-01,"New York",10732 +2017-07-01,"Utah",1680 +2017-07-01,"District of Columbia",293 +2017-07-01,"U.S.",107443 +2017-07-01,"Virginia",1658 +2017-07-01,"Iowa",1028 +2017-07-01,"South Carolina",581 +2017-07-01,"Florida",778 +2017-07-01,"New Jersey",4857 +2017-07-01,"Nebraska",673 +2017-07-01,"Idaho",518 +2017-07-01,"Maryland",1651 +2017-07-01,"Wisconsin",2306 +2017-07-01,"New Mexico",839 +2017-07-01,"Oklahoma",1172 +2017-07-01,"Kansas",1010 +2017-07-01,"Colorado",2657 +2017-07-01,"Alaska",552 +2017-07-01,"Rhode Island",414 +2017-07-01,"Illinois",8673 +2017-07-01,"Pennsylvania",4196 +2017-07-01,"Oregon",866 +2017-07-01,"California",19094 +2017-07-01,"Mississippi",518 +2017-07-01,"Tennessee",1008 +2017-07-01,"Delaware",151 +2017-07-01,"Missouri",1597 +2017-07-01,"Arkansas",570 +2017-07-01,"Louisiana",1232 +2017-07-01,"Washington",1802 +2017-07-01,"Connecticut",1075 +2017-07-01,"Nevada",1310 +2017-07-01,"North Dakota",155 +2017-07-01,"Maine",52 +2017-07-01,"Texas",6000 +2017-07-01,"Alabama",674 +2017-07-01,"South Dakota",195 +2017-07-01,"New Hampshire",137 +2017-07-01,"Hawaii",43 +2017-07-01,"North Carolina",1135 +2017-07-01,"Indiana",2096 +2017-07-01,"Massachusetts",2608 +2017-08-01,"Hawaii",42 +2017-08-01,"Montana",349 +2017-08-01,"Vermont",78 2017-08-01,"Wyoming",212 +2017-08-01,"North Dakota",177 +2017-08-01,"Minnesota",2510 +2017-08-01,"Virginia",1587 +2017-08-01,"Louisiana",1208 +2017-08-01,"Ohio",5041 +2017-08-01,"Kentucky",784 +2017-08-01,"Maryland",1326 +2017-08-01,"Mississippi",553 +2017-08-01,"Kansas",1064 +2017-08-01,"Nebraska",434 +2017-08-01,"Michigan",5408 +2017-08-01,"Alaska",601 +2017-08-01,"Pennsylvania",3878 +2017-08-01,"West Virginia",304 +2017-08-01,"Florida",751 +2017-08-01,"New Mexico",818 +2017-08-01,"Tennessee",983 +2017-08-01,"South Dakota",221 +2017-08-01,"Colorado",2841 +2017-08-01,"Illinois",8092 +2017-08-01,"Iowa",1105 +2017-08-01,"Connecticut",1025 +2017-08-01,"Wisconsin",2503 +2017-08-01,"Oklahoma",1298 +2017-08-01,"Utah",1471 +2017-08-01,"District of Columbia",287 +2017-08-01,"U.S.",103835 +2017-08-01,"Alabama",651 +2017-08-01,"Delaware",158 +2017-08-01,"Rhode Island",407 +2017-08-01,"South Carolina",501 +2017-08-01,"North Carolina",994 +2017-08-01,"Maine",54 +2017-08-01,"Massachusetts",2497 +2017-08-01,"New Jersey",4276 +2017-08-01,"Missouri",1678 +2017-08-01,"New Hampshire",158 +2017-08-01,"Nevada",1153 +2017-08-01,"Washington",1749 +2017-08-01,"Idaho",530 +2017-08-01,"California",18027 +2017-08-01,"New York",10217 +2017-08-01,"Georgia",4044 +2017-08-01,"Arizona",1011 +2017-08-01,"Oregon",778 +2017-08-01,"Indiana",2016 +2017-08-01,"Texas",5436 +2017-08-01,"Arkansas",553 +2017-09-01,"New Hampshire",155 +2017-09-01,"Illinois",8007 +2017-09-01,"Wisconsin",2739 +2017-09-01,"Delaware",172 +2017-09-01,"Oregon",1191 +2017-09-01,"Maryland",1732 +2017-09-01,"North Dakota",235 +2017-09-01,"U.S.",114508 +2017-09-01,"Ohio",5670 +2017-09-01,"Arizona",1146 +2017-09-01,"Kentucky",975 +2017-09-01,"Montana",637 +2017-09-01,"Mississippi",622 +2017-09-01,"Oklahoma",1260 2017-09-01,"Wyoming",266 +2017-09-01,"District of Columbia",299 +2017-09-01,"Massachusetts",2694 +2017-09-01,"Missouri",1794 +2017-09-01,"Washington",2441 +2017-09-01,"New York",10956 +2017-09-01,"New Jersey",4338 +2017-09-01,"Texas",5885 +2017-09-01,"Georgia",4100 +2017-09-01,"Kansas",1167 +2017-09-01,"Virginia",1690 +2017-09-01,"South Dakota",244 +2017-09-01,"Alaska",892 +2017-09-01,"Pennsylvania",4601 +2017-09-01,"Hawaii",44 +2017-09-01,"Idaho",836 +2017-09-01,"Tennessee",1253 +2017-09-01,"Minnesota",2556 +2017-09-01,"Colorado",3557 +2017-09-01,"Rhode Island",386 +2017-09-01,"Louisiana",1221 +2017-09-01,"West Virginia",485 +2017-09-01,"North Carolina",1096 +2017-09-01,"California",17775 +2017-09-01,"Maine",58 +2017-09-01,"Vermont",87 +2017-09-01,"New Mexico",866 +2017-09-01,"Alabama",739 +2017-09-01,"Nebraska",619 +2017-09-01,"Connecticut",1091 +2017-09-01,"Florida",823 +2017-09-01,"Utah",1821 +2017-09-01,"Arkansas",585 +2017-09-01,"Michigan",7041 +2017-09-01,"Iowa",1127 +2017-09-01,"South Carolina",563 +2017-09-01,"Nevada",1476 +2017-09-01,"Indiana",2493 +2017-10-01,"Illinois",17826 +2017-10-01,"Kentucky",2019 +2017-10-01,"Oregon",3149 +2017-10-01,"Idaho",2147 +2017-10-01,"Minnesota",6526 +2017-10-01,"Virginia",2857 +2017-10-01,"Missouri",2311 +2017-10-01,"Michigan",14512 +2017-10-01,"Rhode Island",628 +2017-10-01,"Hawaii",43 +2017-10-01,"Maryland",2426 +2017-10-01,"New York",15457 +2017-10-01,"Texas",7769 +2017-10-01,"Colorado",8691 +2017-10-01,"Louisiana",1537 +2017-10-01,"Pennsylvania",7875 +2017-10-01,"Connecticut",1430 +2017-10-01,"New Mexico",1517 2017-10-01,"Wyoming",951 +2017-10-01,"District of Columbia",410 +2017-10-01,"U.S.",205087 +2017-10-01,"Kansas",2239 +2017-10-01,"New Hampshire",257 +2017-10-01,"Washington",6464 +2017-10-01,"South Carolina",868 +2017-10-01,"Vermont",111 +2017-10-01,"New Jersey",8807 +2017-10-01,"Georgia",6715 +2017-10-01,"Arkansas",931 +2017-10-01,"Oklahoma",1511 +2017-10-01,"Indiana",5543 +2017-10-01,"Utah",4527 +2017-10-01,"South Dakota",684 +2017-10-01,"Arizona",1501 +2017-10-01,"Florida",924 +2017-10-01,"Maine",85 +2017-10-01,"Mississippi",882 +2017-10-01,"Nevada",2035 +2017-10-01,"Massachusetts",4115 +2017-10-01,"Alabama",1190 +2017-10-01,"Ohio",12203 +2017-10-01,"Iowa",2952 +2017-10-01,"West Virginia",1014 +2017-10-01,"Montana",1587 +2017-10-01,"California",23670 +2017-10-01,"Tennessee",1899 +2017-10-01,"Nebraska",1404 +2017-10-01,"Alaska",1579 +2017-10-01,"Wisconsin",6281 +2017-10-01,"North Carolina",2110 +2017-10-01,"North Dakota",669 +2017-10-01,"Delaware",249 +2017-11-01,"South Dakota",1282 +2017-11-01,"Pennsylvania",22852 +2017-11-01,"Oregon",5326 +2017-11-01,"Connecticut",4790 +2017-11-01,"New York",42671 +2017-11-01,"Alabama",2642 +2017-11-01,"Delaware",953 +2017-11-01,"Rhode Island",2051 +2017-11-01,"Ohio",31175 +2017-11-01,"Kentucky",5305 +2017-11-01,"Utah",6973 +2017-11-01,"Texas",13231 +2017-11-01,"Michigan",37035 +2017-11-01,"Louisiana",2661 +2017-11-01,"South Carolina",3095 +2017-11-01,"Montana",2535 +2017-11-01,"California",33950 +2017-11-01,"Florida",1226 +2017-11-01,"Vermont",301 +2017-11-01,"New Mexico",2871 +2017-11-01,"Nebraska",3973 +2017-11-01,"Arkansas",2542 +2017-11-01,"Washington",10582 +2017-11-01,"Maryland",8718 +2017-11-01,"Nevada",2973 +2017-11-01,"U.S.",467729 +2017-11-01,"Minnesota",15032 +2017-11-01,"Colorado",12514 +2017-11-01,"Illinois",44142 +2017-11-01,"North Dakota",1388 +2017-11-01,"Alaska",2613 +2017-11-01,"Idaho",3069 +2017-11-01,"Wisconsin",15335 +2017-11-01,"Oklahoma",4925 2017-11-01,"Wyoming",1281 +2017-11-01,"Massachusetts",12151 +2017-11-01,"New Jersey",21619 +2017-11-01,"Georgia",12100 +2017-11-01,"Virginia",8093 +2017-11-01,"New Hampshire",787 +2017-11-01,"Arizona",2130 +2017-11-01,"Iowa",6654 +2017-11-01,"West Virginia",2610 +2017-11-01,"North Carolina",8039 +2017-11-01,"Maine",264 +2017-11-01,"Mississippi",1988 +2017-11-01,"District of Columbia",934 +2017-11-01,"Tennessee",6831 +2017-11-01,"Hawaii",47 +2017-11-01,"Indiana",14437 +2017-11-01,"Kansas",6672 +2017-11-01,"Missouri",10363 +2017-12-01,"Michigan",58024 +2017-12-01,"Alaska",2525 +2017-12-01,"Illinois",69533 +2017-12-01,"Idaho",5273 +2017-12-01,"New Mexico",5445 +2017-12-01,"Pennsylvania",42299 +2017-12-01,"Iowa",11284 +2017-12-01,"Kentucky",9945 +2017-12-01,"South Carolina",6078 +2017-12-01,"North Carolina",14460 +2017-12-01,"California",62530 +2017-12-01,"Florida",1816 +2017-12-01,"Indiana",26465 +2017-12-01,"District of Columbia",2383 +2017-12-01,"Montana",3627 +2017-12-01,"Vermont",587 2017-12-01,"Wyoming",1801 +2017-12-01,"Massachusetts",22904 +2017-12-01,"Virginia",16076 +2017-12-01,"Missouri",19243 +2017-12-01,"Colorado",21055 +2017-12-01,"New Hampshire",1428 +2017-12-01,"West Virginia",4473 +2017-12-01,"Oregon",8214 +2017-12-01,"New York",75737 +2017-12-01,"U.S.",821890 +2017-12-01,"Delaware",2007 +2017-12-01,"Kansas",10771 +2017-12-01,"South Dakota",2176 +2017-12-01,"Hawaii",50 +2017-12-01,"Wisconsin",25210 +2017-12-01,"North Dakota",1938 +2017-12-01,"Arizona",4269 +2017-12-01,"Washington",14960 +2017-12-01,"Texas",25659 +2017-12-01,"Rhode Island",3485 +2017-12-01,"Louisiana",6254 +2017-12-01,"Maryland",15141 +2017-12-01,"Maine",520 +2017-12-01,"Mississippi",4142 +2017-12-01,"New Jersey",43097 +2017-12-01,"Minnesota",22061 +2017-12-01,"Alabama",6192 +2017-12-01,"Nebraska",5967 +2017-12-01,"Arkansas",5716 +2017-12-01,"Ohio",53038 +2017-12-01,"Connecticut",8288 +2017-12-01,"Oklahoma",11996 +2017-12-01,"Nevada",6316 +2017-12-01,"Utah",13023 +2017-12-01,"Tennessee",14083 +2017-12-01,"Georgia",22326 +2018-01-01,"Wisconsin",26214 +2018-01-01,"New Mexico",6205 +2018-01-01,"Oklahoma",14670 2018-01-01,"Wyoming",1975 +2018-01-01,"Minnesota",26409 +2018-01-01,"Nebraska",8245 +2018-01-01,"Hawaii",58 +2018-01-01,"Iowa",14130 +2018-01-01,"North Carolina",18821 +2018-01-01,"California",57512 +2018-01-01,"New York",91695 +2018-01-01,"Tennessee",19824 +2018-01-01,"U.S.",981276 +2018-01-01,"West Virginia",5522 +2018-01-01,"Idaho",4249 +2018-01-01,"Montana",3712 +2018-01-01,"Maine",592 +2018-01-01,"Nevada",6655 +2018-01-01,"Massachusetts",25559 +2018-01-01,"Delaware",2421 +2018-01-01,"Virginia",21489 +2018-01-01,"New Hampshire",1636 +2018-01-01,"Arizona",5815 +2018-01-01,"Vermont",773 +2018-01-01,"District of Columbia",2669 +2018-01-01,"New Jersey",51148 +2018-01-01,"Missouri",24647 +2018-01-01,"Arkansas",8329 +2018-01-01,"Pennsylvania",52279 +2018-01-01,"Kentucky",12087 +2018-01-01,"Indiana",29599 +2018-01-01,"North Dakota",2102 +2018-01-01,"Alabama",9540 +2018-01-01,"Michigan",60620 +2018-01-01,"Colorado",21216 +2018-01-01,"Louisiana",10140 +2018-01-01,"Maryland",17761 +2018-01-01,"Kansas",13476 +2018-01-01,"Washington",12237 +2018-01-01,"Florida",3108 +2018-01-01,"Texas",57953 +2018-01-01,"Georgia",30720 +2018-01-01,"South Dakota",2604 +2018-01-01,"Alaska",2708 +2018-01-01,"Rhode Island",4130 +2018-01-01,"Illinois",84581 +2018-01-01,"Ohio",60134 +2018-01-01,"Oregon",6233 +2018-01-01,"South Carolina",8891 +2018-01-01,"Connecticut",10580 +2018-01-01,"Mississippi",7110 +2018-01-01,"Utah",10495 +2018-02-01,"Michigan",44146 +2018-02-01,"Kentucky",6660 +2018-02-01,"Washington",12079 +2018-02-01,"South Carolina",3316 +2018-02-01,"North Carolina",7889 +2018-02-01,"Florida",2054 +2018-02-01,"Utah",8393 +2018-02-01,"Arizona",5225 +2018-02-01,"Iowa",11403 +2018-02-01,"Mississippi",2622 +2018-02-01,"Massachusetts",21076 +2018-02-01,"Tennessee",9777 +2018-02-01,"Georgia",12259 +2018-02-01,"Delaware",1655 +2018-02-01,"Virginia",11379 +2018-02-01,"Arkansas",5216 +2018-02-01,"Hawaii",51 +2018-02-01,"Oregon",6335 +2018-02-01,"Idaho",4074 +2018-02-01,"Maryland",11360 +2018-02-01,"New York",64908 +2018-02-01,"U.S.",689887 +2018-02-01,"Rhode Island",2521 +2018-02-01,"West Virginia",3644 +2018-02-01,"Vermont",582 +2018-02-01,"New Mexico",4603 2018-02-01,"Wyoming",1896 +2018-02-01,"Alabama",3744 +2018-02-01,"Nebraska",7113 +2018-02-01,"New Hampshire",1048 +2018-02-01,"Ohio",39323 +2018-02-01,"Connecticut",6900 +2018-02-01,"California",54556 +2018-02-01,"Maine",411 +2018-02-01,"Nevada",6123 +2018-02-01,"New Jersey",31553 +2018-02-01,"Texas",34748 +2018-02-01,"North Dakota",1962 +2018-02-01,"Minnesota",22845 +2018-02-01,"Colorado",19524 +2018-02-01,"Pennsylvania",33224 +2018-02-01,"Oklahoma",11721 +2018-02-01,"Indiana",20043 +2018-02-01,"District of Columbia",1813 +2018-02-01,"Kansas",11040 +2018-02-01,"Missouri",16776 +2018-02-01,"Louisiana",4041 +2018-02-01,"Wisconsin",22632 +2018-02-01,"Montana",3652 +2018-02-01,"South Dakota",2300 +2018-02-01,"Alaska",2620 +2018-02-01,"Illinois",65052 +2018-03-01,"Michigan",45563 +2018-03-01,"Maine",394 +2018-03-01,"Indiana",19962 +2018-03-01,"Colorado",13764 +2018-03-01,"Arizona",4686 +2018-03-01,"Wisconsin",18462 +2018-03-01,"California",53115 +2018-03-01,"Florida",1745 +2018-03-01,"District of Columbia",1930 +2018-03-01,"New Hampshire",1144 +2018-03-01,"Washington",11113 +2018-03-01,"North Carolina",10994 +2018-03-01,"Massachusetts",18654 +2018-03-01,"Ohio",43089 +2018-03-01,"Kentucky",6913 +2018-03-01,"Montana",2594 +2018-03-01,"Utah",9335 +2018-03-01,"Alabama",3745 +2018-03-01,"Virginia",13881 +2018-03-01,"Arkansas",4337 +2018-03-01,"Illinois",55219 +2018-03-01,"Pennsylvania",38763 +2018-03-01,"Iowa",8661 +2018-03-01,"West Virginia",4242 +2018-03-01,"Idaho",3218 +2018-03-01,"Maryland",13703 +2018-03-01,"Nevada",5723 +2018-03-01,"New Jersey",38286 +2018-03-01,"Delaware",2092 +2018-03-01,"Oklahoma",6469 +2018-03-01,"New York",68622 2018-03-01,"Wyoming",1749 +2018-03-01,"Tennessee",8418 +2018-03-01,"Georgia",15721 +2018-03-01,"U.S.",659389 +2018-03-01,"Nebraska",5055 +2018-03-01,"South Dakota",1814 +2018-03-01,"Alaska",2219 +2018-03-01,"Rhode Island",3031 +2018-03-01,"Hawaii",52 +2018-03-01,"South Carolina",3977 +2018-03-01,"Vermont",536 +2018-03-01,"New Mexico",4389 +2018-03-01,"Missouri",13539 +2018-03-01,"Louisiana",2982 +2018-03-01,"Oregon",5408 +2018-03-01,"Connecticut",7422 +2018-03-01,"Mississippi",2270 +2018-03-01,"Texas",24585 +2018-03-01,"North Dakota",1658 +2018-03-01,"Minnesota",17014 +2018-03-01,"Kansas",7132 +2018-04-01,"Alaska",1483 +2018-04-01,"Connecticut",5285 +2018-04-01,"Wisconsin",15087 +2018-04-01,"Kansas",5824 +2018-04-01,"New Hampshire",768 +2018-04-01,"West Virginia",2439 +2018-04-01,"Montana",1936 +2018-04-01,"Florida",1576 +2018-04-01,"Indiana",13648 +2018-04-01,"Georgia",8844 +2018-04-01,"Virginia",6767 +2018-04-01,"Michigan",33126 +2018-04-01,"Rhode Island",1956 +2018-04-01,"Arizona",2404 +2018-04-01,"Idaho",1902 +2018-04-01,"Maryland",7349 2018-04-01,"Wyoming",1254 +2018-04-01,"North Dakota",1233 +2018-04-01,"Kentucky",4229 +2018-04-01,"Oregon",3483 +2018-04-01,"New York",48644 +2018-04-01,"Nevada",2891 +2018-04-01,"Massachusetts",12333 +2018-04-01,"New Jersey",23748 +2018-04-01,"U.S.",440848 +2018-04-01,"Illinois",43889 +2018-04-01,"Washington",7325 +2018-04-01,"New Mexico",2020 +2018-04-01,"District of Columbia",994 +2018-04-01,"Minnesota",13487 +2018-04-01,"Missouri",10119 +2018-04-01,"Arkansas",2688 +2018-04-01,"Pennsylvania",23113 +2018-04-01,"Maine",277 +2018-04-01,"Vermont",439 +2018-04-01,"Mississippi",1558 +2018-04-01,"Utah",4463 +2018-04-01,"Delaware",1178 +2018-04-01,"Nebraska",4215 +2018-04-01,"Louisiana",2356 +2018-04-01,"South Carolina",1950 +2018-04-01,"North Carolina",4514 +2018-04-01,"California",32039 +2018-04-01,"Tennessee",6088 +2018-04-01,"South Dakota",1444 +2018-04-01,"Colorado",9740 +2018-04-01,"Hawaii",52 +2018-04-01,"Ohio",30110 +2018-04-01,"Iowa",7088 +2018-04-01,"Oklahoma",5506 +2018-04-01,"Texas",13484 +2018-04-01,"Alabama",2500 2018-05-01,"Wyoming",617 +2018-05-01,"Tennessee",2217 +2018-05-01,"Alabama",1116 +2018-05-01,"Arkansas",987 +2018-05-01,"Ohio",6013 +2018-05-01,"Idaho",812 +2018-05-01,"South Carolina",735 +2018-05-01,"North Carolina",1307 +2018-05-01,"California",26759 +2018-05-01,"Mississippi",672 +2018-05-01,"Kansas",1683 +2018-05-01,"Virginia",2316 +2018-05-01,"South Dakota",630 +2018-05-01,"Oregon",1518 +2018-05-01,"Maine",116 +2018-05-01,"Vermont",185 +2018-05-01,"New York",19184 +2018-05-01,"New Jersey",7904 +2018-05-01,"U.S.",169019 +2018-05-01,"Michigan",8804 +2018-05-01,"Arizona",1732 +2018-05-01,"Iowa",1841 +2018-05-01,"West Virginia",592 +2018-05-01,"Wisconsin",4026 +2018-05-01,"New Mexico",1117 +2018-05-01,"Texas",8214 +2018-05-01,"Hawaii",49 +2018-05-01,"Missouri",2293 +2018-05-01,"Colorado",5539 +2018-05-01,"Washington",2831 +2018-05-01,"Connecticut",2010 +2018-05-01,"Montana",889 +2018-05-01,"Nevada",2003 +2018-05-01,"Indiana",3687 +2018-05-01,"Massachusetts",4488 +2018-05-01,"Rhode Island",476 +2018-05-01,"Pennsylvania",6648 +2018-05-01,"Maryland",3410 +2018-05-01,"Florida",1155 +2018-05-01,"Oklahoma",1686 +2018-05-01,"Utah",2311 +2018-05-01,"District of Columbia",377 +2018-05-01,"North Dakota",598 +2018-05-01,"Minnesota",4376 +2018-05-01,"Delaware",372 +2018-05-01,"Alaska",1032 +2018-05-01,"New Hampshire",239 +2018-05-01,"Louisiana",1527 +2018-05-01,"Illinois",12425 +2018-05-01,"Kentucky",1220 +2018-05-01,"Georgia",4736 +2018-05-01,"Nebraska",1545 +2018-06-01,"West Virginia",385 +2018-06-01,"Idaho",665 +2018-06-01,"Montana",572 +2018-06-01,"New Mexico",798 +2018-06-01,"Nevada",1612 +2018-06-01,"New Jersey",6134 +2018-06-01,"Alabama",725 +2018-06-01,"Delaware",200 +2018-06-01,"Kansas",1327 +2018-06-01,"Colorado",2630 +2018-06-01,"Louisiana",1204 +2018-06-01,"Maryland",1859 +2018-06-01,"Utah",2030 +2018-06-01,"Massachusetts",2835 +2018-06-01,"Virginia",1591 +2018-06-01,"Michigan",5594 +2018-06-01,"Ohio",4692 +2018-06-01,"South Carolina",509 +2018-06-01,"North Carolina",1015 +2018-06-01,"Tennessee",1216 +2018-06-01,"North Dakota",234 +2018-06-01,"Alaska",672 +2018-06-01,"Kentucky",759 +2018-06-01,"Oregon",1299 +2018-06-01,"Mississippi",493 +2018-06-01,"District of Columbia",267 +2018-06-01,"South Dakota",252 +2018-06-01,"Illinois",8979 +2018-06-01,"Maine",75 2018-06-01,"Wyoming",323 +2018-06-01,"Georgia",3981 +2018-06-01,"U.S.",119244 +2018-06-01,"Missouri",1786 +2018-06-01,"Nebraska",790 +2018-06-01,"Arizona",1330 +2018-06-01,"Iowa",1187 +2018-06-01,"California",21806 +2018-06-01,"New York",12523 +2018-06-01,"Rhode Island",428 +2018-06-01,"Hawaii",50 +2018-06-01,"Connecticut",1283 +2018-06-01,"Indiana",2013 +2018-06-01,"Texas",5448 +2018-06-01,"Minnesota",2934 +2018-06-01,"Arkansas",643 +2018-06-01,"New Hampshire",181 +2018-06-01,"Pennsylvania",4538 +2018-06-01,"Washington",2449 +2018-06-01,"Wisconsin",2659 +2018-06-01,"Florida",992 +2018-06-01,"Vermont",113 +2018-06-01,"Oklahoma",1162 +2018-07-01,"New Hampshire",143 +2018-07-01,"Illinois",7517 +2018-07-01,"Hawaii",46 +2018-07-01,"West Virginia",330 +2018-07-01,"Idaho",555 +2018-07-01,"New Jersey",4944 +2018-07-01,"North Dakota",156 +2018-07-01,"Washington",2010 +2018-07-01,"Montana",371 +2018-07-01,"Vermont",83 +2018-07-01,"Oklahoma",1061 +2018-07-01,"Nevada",1256 +2018-07-01,"U.S.",105918 +2018-07-01,"Minnesota",2194 +2018-07-01,"Delaware",179 +2018-07-01,"Michigan",5128 +2018-07-01,"Maryland",1559 +2018-07-01,"Mississippi",505 2018-07-01,"Wyoming",221 +2018-07-01,"Alabama",694 +2018-07-01,"South Dakota",210 +2018-07-01,"Rhode Island",386 +2018-07-01,"Pennsylvania",4166 +2018-07-01,"South Carolina",481 +2018-07-01,"California",19784 +2018-07-01,"New York",11062 +2018-07-01,"Utah",1595 +2018-07-01,"Texas",4910 +2018-07-01,"Georgia",3928 +2018-07-01,"Nebraska",767 +2018-07-01,"Colorado",2507 +2018-07-01,"Louisiana",1170 +2018-07-01,"Kentucky",700 +2018-07-01,"District of Columbia",281 +2018-07-01,"Massachusetts",2486 +2018-07-01,"Tennessee",1105 +2018-07-01,"Kansas",1028 +2018-07-01,"Virginia",1705 +2018-07-01,"Missouri",1665 +2018-07-01,"Arizona",1123 +2018-07-01,"Iowa",958 +2018-07-01,"Oregon",945 +2018-07-01,"Connecticut",1066 +2018-07-01,"Wisconsin",2325 +2018-07-01,"North Carolina",923 +2018-07-01,"Florida",818 +2018-07-01,"New Mexico",788 +2018-07-01,"Indiana",2210 +2018-07-01,"Arkansas",545 +2018-07-01,"Alaska",500 +2018-07-01,"Ohio",4783 +2018-07-01,"Maine",50 +2018-08-01,"Louisiana",1084 +2018-08-01,"West Virginia",297 +2018-08-01,"Vermont",75 +2018-08-01,"Oklahoma",1116 +2018-08-01,"Massachusetts",2364 +2018-08-01,"Colorado",2667 +2018-08-01,"Pennsylvania",4120 +2018-08-01,"Hawaii",47 +2018-08-01,"New York",9912 +2018-08-01,"Indiana",2110 +2018-08-01,"Texas",4989 +2018-08-01,"North Dakota",171 +2018-08-01,"U.S.",99781 +2018-08-01,"Michigan",5879 +2018-08-01,"Rhode Island",393 +2018-08-01,"Maryland",1466 +2018-08-01,"Maine",55 +2018-08-01,"Delaware",179 +2018-08-01,"New Hampshire",156 +2018-08-01,"Arizona",1050 +2018-08-01,"Iowa",1073 +2018-08-01,"Florida",758 +2018-08-01,"District of Columbia",286 +2018-08-01,"Georgia",4105 +2018-08-01,"Minnesota",2457 +2018-08-01,"Virginia",1547 +2018-08-01,"Missouri",1661 +2018-08-01,"Nebraska",608 +2018-08-01,"Illinois",7465 +2018-08-01,"Kentucky",755 +2018-08-01,"Oregon",897 +2018-08-01,"Connecticut",951 +2018-08-01,"Nevada",1154 +2018-08-01,"South Dakota",196 +2018-08-01,"Idaho",575 +2018-08-01,"North Carolina",1005 +2018-08-01,"California",15058 +2018-08-01,"Mississippi",552 +2018-08-01,"New Mexico",847 +2018-08-01,"Utah",1553 +2018-08-01,"Alabama",701 +2018-08-01,"Arkansas",564 +2018-08-01,"Alaska",591 +2018-08-01,"South Carolina",503 +2018-08-01,"Wisconsin",2343 2018-08-01,"Wyoming",207 +2018-08-01,"Tennessee",931 +2018-08-01,"Ohio",4728 +2018-08-01,"Washington",1585 +2018-08-01,"Montana",397 +2018-08-01,"New Jersey",4473 +2018-08-01,"Kansas",1121 +2018-09-01,"New Mexico",808 +2018-09-01,"Massachusetts",2645 +2018-09-01,"Delaware",157 +2018-09-01,"Virginia",1666 +2018-09-01,"Missouri",1743 +2018-09-01,"South Dakota",215 +2018-09-01,"Michigan",6018 +2018-09-01,"Iowa",1299 +2018-09-01,"Kentucky",856 +2018-09-01,"California",19154 +2018-09-01,"Vermont",87 +2018-09-01,"Illinois",8068 +2018-09-01,"Arizona",1132 +2018-09-01,"Connecticut",1052 +2018-09-01,"District of Columbia",264 +2018-09-01,"North Dakota",194 +2018-09-01,"Arkansas",607 +2018-09-01,"Alaska",755 +2018-09-01,"Pennsylvania",4390 +2018-09-01,"Hawaii",45 +2018-09-01,"West Virginia",348 +2018-09-01,"South Carolina",494 +2018-09-01,"Florida",845 +2018-09-01,"New York",10718 +2018-09-01,"Utah",1646 +2018-09-01,"Texas",5132 +2018-09-01,"Georgia",3894 +2018-09-01,"Kansas",1436 +2018-09-01,"Ohio",5106 +2018-09-01,"Oregon",1234 +2018-09-01,"Maryland",1521 +2018-09-01,"Oklahoma",1197 +2018-09-01,"Nevada",1408 +2018-09-01,"Indiana",2477 +2018-09-01,"Colorado",3134 +2018-09-01,"Rhode Island",377 +2018-09-01,"Idaho",745 +2018-09-01,"Wisconsin",2943 +2018-09-01,"Minnesota",2826 +2018-09-01,"Nebraska",687 +2018-09-01,"New Hampshire",179 +2018-09-01,"Louisiana",1265 +2018-09-01,"North Carolina",977 +2018-09-01,"Mississippi",495 +2018-09-01,"New Jersey",4872 +2018-09-01,"Tennessee",1130 +2018-09-01,"U.S.",112317 +2018-09-01,"Alabama",663 +2018-09-01,"Washington",2610 +2018-09-01,"Montana",484 +2018-09-01,"Maine",61 2018-09-01,"Wyoming",259 +2018-10-01,"New Hampshire",270 +2018-10-01,"Rhode Island",1278 +2018-10-01,"Pennsylvania",12759 +2018-10-01,"Massachusetts",5128 +2018-10-01,"North Dakota",945 +2018-10-01,"Alabama",1014 +2018-10-01,"Ohio",17160 +2018-10-01,"West Virginia",1311 +2018-10-01,"Oregon",2639 +2018-10-01,"Maryland",3593 +2018-10-01,"Vermont",182 +2018-10-01,"Nevada",2031 +2018-10-01,"Indiana",7278 +2018-10-01,"Tennessee",2056 +2018-10-01,"Georgia",6319 +2018-10-01,"Delaware",402 +2018-10-01,"Arkansas",1293 +2018-10-01,"South Dakota",934 +2018-10-01,"New York",23307 +2018-10-01,"Texas",8068 +2018-10-01,"Virginia",3464 +2018-10-01,"Colorado",8617 +2018-10-01,"Louisiana",1717 +2018-10-01,"South Carolina",929 +2018-10-01,"Connecticut",2515 +2018-10-01,"Wisconsin",8780 +2018-10-01,"North Carolina",2409 +2018-10-01,"Missouri",5269 +2018-10-01,"Illinois",23490 +2018-10-01,"Oklahoma",1852 +2018-10-01,"New Jersey",11138 +2018-10-01,"Hawaii",44 +2018-10-01,"Idaho",1750 +2018-10-01,"Montana",1748 +2018-10-01,"California",22607 +2018-10-01,"Mississippi",931 2018-10-01,"Wyoming",875 +2018-10-01,"Kansas",3197 +2018-10-01,"Nebraska",2114 +2018-10-01,"Michigan",21590 +2018-10-01,"Iowa",3749 +2018-10-01,"Kentucky",2558 +2018-10-01,"Florida",855 +2018-10-01,"New Mexico",1749 +2018-10-01,"U.S.",255318 +2018-10-01,"Alaska",1319 +2018-10-01,"Arizona",1673 +2018-10-01,"Washington",6120 +2018-10-01,"Maine",171 +2018-10-01,"Utah",4541 +2018-10-01,"District of Columbia",528 +2018-10-01,"Minnesota",9051 +2018-11-01,"New Hampshire",1050 +2018-11-01,"Iowa",8960 +2018-11-01,"West Virginia",3135 +2018-11-01,"Utah",8907 +2018-11-01,"U.S.",598977 +2018-11-01,"Illinois",57935 +2018-11-01,"Hawaii",47 +2018-11-01,"Ohio",40553 +2018-11-01,"Arizona",3171 +2018-11-01,"South Carolina",4123 +2018-11-01,"Florida",1193 +2018-11-01,"Maine",385 +2018-11-01,"Colorado",15984 +2018-11-01,"Wisconsin",18652 +2018-11-01,"Texas",23135 +2018-11-01,"South Dakota",1534 +2018-11-01,"Idaho",3791 +2018-11-01,"New York",55996 +2018-11-01,"Kansas",9212 +2018-11-01,"Virginia",8890 +2018-11-01,"Michigan",42283 +2018-11-01,"Pennsylvania",30818 +2018-11-01,"Kentucky",6936 +2018-11-01,"Oregon",5388 +2018-11-01,"California",38251 2018-11-01,"Wyoming",1572 +2018-11-01,"North Dakota",1607 +2018-11-01,"Missouri",16219 +2018-11-01,"Rhode Island",2456 +2018-11-01,"Maryland",10100 +2018-11-01,"Montana",2773 +2018-11-01,"Vermont",436 +2018-11-01,"Nevada",4052 +2018-11-01,"Minnesota",17398 +2018-11-01,"Delaware",1362 +2018-11-01,"Nebraska",4872 +2018-11-01,"Louisiana",4382 +2018-11-01,"Washington",10052 +2018-11-01,"Connecticut",6067 +2018-11-01,"New Mexico",4857 +2018-11-01,"Oklahoma",9118 +2018-11-01,"Indiana",19465 +2018-11-01,"District of Columbia",1612 +2018-11-01,"New Jersey",26587 +2018-11-01,"Tennessee",8687 +2018-11-01,"Arkansas",4142 +2018-11-01,"Alaska",2096 +2018-11-01,"North Carolina",10479 +2018-11-01,"Mississippi",3082 +2018-11-01,"Massachusetts",13875 +2018-11-01,"Georgia",17176 +2018-11-01,"Alabama",4124 +2018-12-01,"Colorado",22828 +2018-12-01,"Louisiana",5969 +2018-12-01,"Iowa",10599 +2018-12-01,"Kentucky",7804 +2018-12-01,"Florida",1993 +2018-12-01,"Maine",492 +2018-12-01,"Massachusetts",18853 +2018-12-01,"Georgia",21401 +2018-12-01,"Virginia",14342 +2018-12-01,"Alaska",2612 +2018-12-01,"Rhode Island",3090 +2018-12-01,"South Carolina",6086 +2018-12-01,"New York",69121 +2018-12-01,"Kansas",10657 +2018-12-01,"Michigan",48210 +2018-12-01,"Ohio",45539 +2018-12-01,"Idaho",5150 +2018-12-01,"California",63275 +2018-12-01,"Oklahoma",11782 +2018-12-01,"North Dakota",1819 +2018-12-01,"U.S.",765580 +2018-12-01,"Missouri",18222 +2018-12-01,"South Dakota",2149 +2018-12-01,"Connecticut",7970 +2018-12-01,"New Jersey",36799 +2018-12-01,"Texas",36361 +2018-12-01,"Tennessee",13352 +2018-12-01,"Hawaii",49 +2018-12-01,"West Virginia",4011 +2018-12-01,"North Carolina",12929 +2018-12-01,"Mississippi",4137 +2018-12-01,"Illinois",63598 +2018-12-01,"Pennsylvania",37903 +2018-12-01,"Maryland",12717 +2018-12-01,"Wisconsin",20397 +2018-12-01,"Indiana",21714 2018-12-01,"Wyoming",2193 +2018-12-01,"Utah",12146 +2018-12-01,"District of Columbia",2091 +2018-12-01,"Alabama",6159 +2018-12-01,"Nebraska",6370 +2018-12-01,"Arkansas",5629 +2018-12-01,"Washington",13155 +2018-12-01,"Montana",3491 +2018-12-01,"Vermont",592 +2018-12-01,"Nevada",6929 +2018-12-01,"Minnesota",20409 +2018-12-01,"New Hampshire",1321 +2018-12-01,"Arizona",5784 +2018-12-01,"Oregon",7246 +2018-12-01,"New Mexico",6257 +2018-12-01,"Delaware",1879 +2019-01-01,"Rhode Island",3781 +2019-01-01,"Iowa",14277 +2019-01-01,"Florida",2460 +2019-01-01,"Massachusetts",25429 +2019-01-01,"Texas",45207 +2019-01-01,"Kansas",14024 +2019-01-01,"Louisiana",7262 +2019-01-01,"Pennsylvania",50360 +2019-01-01,"South Carolina",6795 +2019-01-01,"Maryland",16821 +2019-01-01,"Vermont",758 +2019-01-01,"U.S.",953787 +2019-01-01,"Colorado",23587 +2019-01-01,"Oregon",7302 +2019-01-01,"Idaho",4980 +2019-01-01,"California",67257 +2019-01-01,"New Mexico",8222 +2019-01-01,"Nevada",8520 2019-01-01,"Wyoming",2215 +2019-01-01,"Tennessee",15593 +2019-01-01,"Nebraska",7568 +2019-01-01,"Arkansas",6631 +2019-01-01,"Alaska",2803 +2019-01-01,"Washington",13327 +2019-01-01,"Mississippi",4991 +2019-01-01,"New York",88837 +2019-01-01,"Utah",13813 +2019-01-01,"New Jersey",44555 +2019-01-01,"South Dakota",2657 +2019-01-01,"Michigan",64401 +2019-01-01,"Hawaii",58 +2019-01-01,"Georgia",24561 +2019-01-01,"Alabama",7973 +2019-01-01,"New Hampshire",1639 +2019-01-01,"Illinois",85562 +2019-01-01,"Ohio",57776 +2019-01-01,"Kentucky",10700 +2019-01-01,"Connecticut",9800 +2019-01-01,"Wisconsin",29084 +2019-01-01,"Maine",566 +2019-01-01,"North Dakota",2391 +2019-01-01,"Minnesota",26464 +2019-01-01,"Delaware",2515 +2019-01-01,"Missouri",23133 +2019-01-01,"West Virginia",5016 +2019-01-01,"Montana",3575 +2019-01-01,"Oklahoma",14397 +2019-01-01,"Indiana",29860 +2019-01-01,"District of Columbia",2101 +2019-01-01,"Arizona",8471 +2019-01-01,"North Carolina",15211 +2019-01-01,"Virginia",18500 +2019-02-01,"Colorado",20865 +2019-02-01,"New Hampshire",1338 +2019-02-01,"Illinois",71865 +2019-02-01,"Pennsylvania",40192 +2019-02-01,"Hawaii",51 +2019-02-01,"Oregon",7977 +2019-02-01,"Washington",15700 +2019-02-01,"Montana",4742 +2019-02-01,"California",74192 +2019-02-01,"Indiana",23480 2019-02-01,"Wyoming",2116 +2019-02-01,"District of Columbia",2150 +2019-02-01,"Massachusetts",20379 +2019-02-01,"Texas",38169 +2019-02-01,"Delaware",2084 +2019-02-01,"Kentucky",7556 +2019-02-01,"Wisconsin",24516 +2019-02-01,"Mississippi",3039 +2019-02-01,"Minnesota",24708 +2019-02-01,"Alaska",2265 +2019-02-01,"Louisiana",4896 +2019-02-01,"Arizona",7428 +2019-02-01,"Michigan",51520 +2019-02-01,"Rhode Island",3061 +2019-02-01,"South Carolina",4518 +2019-02-01,"Maryland",14652 +2019-02-01,"Nevada",8076 +2019-02-01,"Idaho",4695 +2019-02-01,"Connecticut",8189 +2019-02-01,"Florida",2177 +2019-02-01,"Vermont",680 +2019-02-01,"Georgia",15163 +2019-02-01,"U.S.",809132 +2019-02-01,"Kansas",12915 +2019-02-01,"South Dakota",2763 +2019-02-01,"West Virginia",3677 +2019-02-01,"Utah",11743 +2019-02-01,"North Dakota",2536 +2019-02-01,"Virginia",14417 +2019-02-01,"Nebraska",7792 +2019-02-01,"Ohio",47362 +2019-02-01,"Iowa",12610 +2019-02-01,"Maine",511 +2019-02-01,"Alabama",3793 +2019-02-01,"Missouri",19790 +2019-02-01,"North Carolina",9943 +2019-02-01,"New Mexico",6616 +2019-02-01,"Oklahoma",12543 +2019-02-01,"New York",73689 +2019-02-01,"New Jersey",38557 +2019-02-01,"Tennessee",10307 +2019-02-01,"Arkansas",5127 +2019-03-01,"Michigan",46660 +2019-03-01,"Iowa",10039 +2019-03-01,"Maryland",11781 +2019-03-01,"North Carolina",9502 +2019-03-01,"Mississippi",3133 +2019-03-01,"New Jersey",34457 +2019-03-01,"Tennessee",9987 +2019-03-01,"New Hampshire",1130 +2019-03-01,"Arizona",5638 +2019-03-01,"Idaho",3527 +2019-03-01,"California",51706 +2019-03-01,"Florida",1685 +2019-03-01,"New York",70167 +2019-03-01,"Nevada",6324 +2019-03-01,"District of Columbia",1651 +2019-03-01,"Nebraska",6194 +2019-03-01,"Louisiana",4232 +2019-03-01,"Hawaii",55 +2019-03-01,"West Virginia",3842 +2019-03-01,"South Carolina",3864 +2019-03-01,"Wisconsin",19697 +2019-03-01,"North Dakota",1764 +2019-03-01,"Colorado",19642 +2019-03-01,"Rhode Island",2783 +2019-03-01,"Ohio",43223 +2019-03-01,"Georgia",14608 +2019-03-01,"Arkansas",5714 +2019-03-01,"Alaska",2125 +2019-03-01,"Pennsylvania",35422 +2019-03-01,"Maine",423 2019-03-01,"Wyoming",1986 +2019-03-01,"Utah",9212 +2019-03-01,"U.S.",688517 +2019-03-01,"Delaware",1730 +2019-03-01,"Oregon",5943 +2019-03-01,"Minnesota",18683 +2019-03-01,"Kansas",9360 +2019-03-01,"Virginia",11686 +2019-03-01,"Kentucky",7153 +2019-03-01,"Washington",10509 +2019-03-01,"Connecticut",7201 +2019-03-01,"New Mexico",4615 +2019-03-01,"Oklahoma",9429 +2019-03-01,"South Dakota",2105 +2019-03-01,"Illinois",60879 +2019-03-01,"Montana",3332 +2019-03-01,"Vermont",573 +2019-03-01,"Indiana",20903 +2019-03-01,"Massachusetts",19439 +2019-03-01,"Texas",33328 +2019-03-01,"Alabama",3973 +2019-03-01,"Missouri",15499 +2019-04-01,"Alaska",1442 +2019-04-01,"Oregon",3332 +2019-04-01,"Nevada",3021 +2019-04-01,"Massachusetts",9992 +2019-04-01,"Texas",16991 +2019-04-01,"New Hampshire",610 +2019-04-01,"Louisiana",2436 2019-04-01,"Wyoming",1171 +2019-04-01,"Utah",3970 +2019-04-01,"Georgia",6860 +2019-04-01,"U.S.",328581 +2019-04-01,"Virginia",4451 +2019-04-01,"Arkansas",1984 +2019-04-01,"Michigan",24615 +2019-04-01,"Rhode Island",1374 +2019-04-01,"Illinois",30475 +2019-04-01,"Pennsylvania",14423 +2019-04-01,"South Carolina",1752 +2019-04-01,"California",30632 +2019-04-01,"Vermont",383 +2019-04-01,"New Jersey",14838 +2019-04-01,"Minnesota",10081 +2019-04-01,"Alabama",1904 +2019-04-01,"Colorado",9680 +2019-04-01,"West Virginia",1355 +2019-04-01,"Idaho",1891 +2019-04-01,"Connecticut",3792 +2019-04-01,"Delaware",689 +2019-04-01,"Iowa",4652 +2019-04-01,"Maryland",3795 +2019-04-01,"North Carolina",3081 +2019-04-01,"Florida",1562 +2019-04-01,"Mississippi",1230 +2019-04-01,"New York",34355 +2019-04-01,"Tennessee",3423 +2019-04-01,"North Dakota",917 +2019-04-01,"Arizona",2746 +2019-04-01,"Wisconsin",11515 +2019-04-01,"Maine",260 +2019-04-01,"Indiana",8727 +2019-04-01,"Nebraska",2527 +2019-04-01,"Hawaii",51 +2019-04-01,"Ohio",19037 +2019-04-01,"Kentucky",2265 +2019-04-01,"Oklahoma",3481 +2019-04-01,"South Dakota",1144 +2019-04-01,"Washington",6205 +2019-04-01,"Montana",1581 +2019-04-01,"New Mexico",2632 +2019-04-01,"District of Columbia",745 +2019-04-01,"Kansas",3260 +2019-04-01,"Missouri",5246 +2019-05-01,"Colorado",7697 +2019-05-01,"Louisiana",1552 +2019-05-01,"Kentucky",1196 +2019-05-01,"Tennessee",1608 +2019-05-01,"Georgia",4604 +2019-05-01,"U.S.",212408 +2019-05-01,"Kansas",1911 +2019-05-01,"Iowa",2710 +2019-05-01,"West Virginia",654 +2019-05-01,"Vermont",224 +2019-05-01,"New York",22277 +2019-05-01,"Nevada",2254 +2019-05-01,"Minnesota",6455 +2019-05-01,"Illinois",18872 +2019-05-01,"Pennsylvania",8443 +2019-05-01,"Arizona",2084 +2019-05-01,"South Carolina",613 +2019-05-01,"Maryland",2928 +2019-05-01,"Alaska",982 +2019-05-01,"Hawaii",51 +2019-05-01,"Ohio",10285 +2019-05-01,"Connecticut",2278 +2019-05-01,"Montana",1079 +2019-05-01,"Utah",4707 +2019-05-01,"North Dakota",574 +2019-05-01,"Indiana",4786 +2019-05-01,"Alabama",1144 +2019-05-01,"Delaware",363 +2019-05-01,"South Dakota",734 +2019-05-01,"Rhode Island",860 +2019-05-01,"Washington",3199 +2019-05-01,"Idaho",1138 +2019-05-01,"Wisconsin",7050 +2019-05-01,"North Carolina",1363 +2019-05-01,"Florida",1194 +2019-05-01,"Maine",167 +2019-05-01,"Mississippi",617 +2019-05-01,"New Mexico",1786 2019-05-01,"Wyoming",866 +2019-05-01,"District of Columbia",395 +2019-05-01,"Virginia",1926 +2019-05-01,"Missouri",3231 +2019-05-01,"New Jersey",9825 +2019-05-01,"Nebraska",1745 +2019-05-01,"Arkansas",1292 +2019-05-01,"Michigan",13513 +2019-05-01,"New Hampshire",375 +2019-05-01,"Oregon",1692 +2019-05-01,"California",30649 +2019-05-01,"Oklahoma",2165 +2019-05-01,"Massachusetts",6378 +2019-05-01,"Texas",7913 +2019-06-01,"Illinois",9752 +2019-06-01,"West Virginia",314 +2019-06-01,"Indiana",2560 +2019-06-01,"Alabama",853 +2019-06-01,"South Dakota",283 +2019-06-01,"Colorado",3957 +2019-06-01,"Washington",2419 +2019-06-01,"South Carolina",571 +2019-06-01,"California",21322 +2019-06-01,"New York",12465 +2019-06-01,"Nevada",1807 +2019-06-01,"Massachusetts",3222 +2019-06-01,"U.S.",129214 +2019-06-01,"Arkansas",621 +2019-06-01,"Michigan",7075 +2019-06-01,"Rhode Island",444 +2019-06-01,"Arizona",1510 +2019-06-01,"Iowa",1383 +2019-06-01,"Idaho",730 +2019-06-01,"District of Columbia",292 +2019-06-01,"Kansas",1178 +2019-06-01,"Virginia",1813 +2019-06-01,"Alaska",531 +2019-06-01,"New Hampshire",182 +2019-06-01,"Montana",829 +2019-06-01,"Florida",928 +2019-06-01,"Missouri",1940 +2019-06-01,"Pennsylvania",4852 +2019-06-01,"Hawaii",44 +2019-06-01,"Connecticut",1338 +2019-06-01,"New Jersey",6644 +2019-06-01,"Tennessee",1193 +2019-06-01,"Minnesota",3111 +2019-06-01,"Oregon",1297 +2019-06-01,"Maryland",1749 +2019-06-01,"Wisconsin",3127 +2019-06-01,"North Carolina",1439 +2019-06-01,"Maine",83 2019-06-01,"Wyoming",528 +2019-06-01,"Utah",2032 +2019-06-01,"Texas",6614 +2019-06-01,"Louisiana",1208 +2019-06-01,"Ohio",5378 +2019-06-01,"Vermont",128 +2019-06-01,"Mississippi",502 +2019-06-01,"Oklahoma",1511 +2019-06-01,"North Dakota",234 +2019-06-01,"Georgia",4109 +2019-06-01,"Delaware",192 +2019-06-01,"Kentucky",911 +2019-06-01,"New Mexico",1108 +2019-06-01,"Nebraska",901 +2019-07-01,"Louisiana",1055 +2019-07-01,"North Carolina",975 +2019-07-01,"Vermont",82 +2019-07-01,"Nevada",1453 +2019-07-01,"Alabama",765 +2019-07-01,"New Hampshire",150 +2019-07-01,"Washington",1977 +2019-07-01,"Utah",2005 +2019-07-01,"U.S.",111761 +2019-07-01,"Minnesota",2234 +2019-07-01,"Arkansas",627 +2019-07-01,"Michigan",5554 +2019-07-01,"Wisconsin",2366 +2019-07-01,"California",21403 +2019-07-01,"New Mexico",1005 +2019-07-01,"Kansas",1168 +2019-07-01,"Alaska",413 +2019-07-01,"Ohio",4855 +2019-07-01,"West Virginia",331 +2019-07-01,"Florida",816 +2019-07-01,"New York",10211 +2019-07-01,"Nebraska",767 +2019-07-01,"South Dakota",244 +2019-07-01,"Colorado",1028 +2019-07-01,"Illinois",7887 +2019-07-01,"Hawaii",47 +2019-07-01,"Iowa",1102 +2019-07-01,"Oregon",962 +2019-07-01,"Idaho",578 +2019-07-01,"South Carolina",531 +2019-07-01,"Maryland",1573 +2019-07-01,"Oklahoma",1240 +2019-07-01,"New Jersey",4900 +2019-07-01,"Rhode Island",342 +2019-07-01,"Pennsylvania",4011 +2019-07-01,"District of Columbia",228 +2019-07-01,"North Dakota",179 +2019-07-01,"Delaware",184 +2019-07-01,"Virginia",1475 +2019-07-01,"Arizona",1208 +2019-07-01,"Kentucky",794 +2019-07-01,"Connecticut",1025 +2019-07-01,"Montana",521 +2019-07-01,"Mississippi",544 +2019-07-01,"Indiana",2170 +2019-07-01,"Tennessee",1107 +2019-07-01,"Maine",49 2019-07-01,"Wyoming",261 +2019-07-01,"Massachusetts",2700 +2019-07-01,"Texas",6209 +2019-07-01,"Georgia",6697 +2019-07-01,"Missouri",1753 +2019-08-01,"South Dakota",214 +2019-08-01,"Alaska",456 +2019-08-01,"Ohio",4306 +2019-08-01,"Iowa",1114 +2019-08-01,"Kentucky",766 +2019-08-01,"Connecticut",933 +2019-08-01,"Maryland",1488 +2019-08-01,"New York",9735 2019-08-01,"Wyoming",212 +2019-08-01,"New Hampshire",150 +2019-08-01,"Oregon",959 +2019-08-01,"Washington",1707 +2019-08-01,"Mississippi",552 +2019-08-01,"North Dakota",186 +2019-08-01,"Kansas",1025 +2019-08-01,"Illinois",7332 +2019-08-01,"South Carolina",515 +2019-08-01,"Florida",824 +2019-08-01,"New Mexico",1062 +2019-08-01,"U.S.",101894 +2019-08-01,"Alabama",656 +2019-08-01,"Virginia",1486 +2019-08-01,"Louisiana",1246 +2019-08-01,"Pennsylvania",3928 +2019-08-01,"Hawaii",44 +2019-08-01,"Idaho",552 +2019-08-01,"Maine",49 +2019-08-01,"Vermont",81 +2019-08-01,"New Jersey",4207 +2019-08-01,"Tennessee",915 +2019-08-01,"Missouri",1668 +2019-08-01,"Rhode Island",360 +2019-08-01,"California",18498 +2019-08-01,"Oklahoma",1118 +2019-08-01,"District of Columbia",272 +2019-08-01,"Minnesota",2285 +2019-08-01,"Nebraska",703 +2019-08-01,"Michigan",5128 +2019-08-01,"Colorado",2749 +2019-08-01,"Arizona",1088 +2019-08-01,"Montana",269 +2019-08-01,"Nevada",1310 +2019-08-01,"Delaware",168 +2019-08-01,"Texas",5214 +2019-08-01,"West Virginia",343 +2019-08-01,"Wisconsin",2350 +2019-08-01,"North Carolina",1015 +2019-08-01,"Indiana",2013 +2019-08-01,"Utah",1552 +2019-08-01,"Massachusetts",2600 +2019-08-01,"Georgia",3950 +2019-08-01,"Arkansas",541 +2019-09-01,"New Hampshire",187 +2019-09-01,"Iowa",1084 +2019-09-01,"Massachusetts",2902 +2019-09-01,"North Dakota",198 +2019-09-01,"Michigan",5674 +2019-09-01,"Colorado",3101 +2019-09-01,"Illinois",7868 +2019-09-01,"Arizona",1170 +2019-09-01,"Washington",2626 +2019-09-01,"Idaho",864 +2019-09-01,"Maryland",1544 +2019-09-01,"Vermont",90 +2019-09-01,"Oklahoma",1069 +2019-09-01,"Indiana",2416 +2019-09-01,"Georgia",3809 +2019-09-01,"Delaware",178 +2019-09-01,"South Dakota",220 +2019-09-01,"Hawaii",43 +2019-09-01,"New Jersey",5000 +2019-09-01,"Alaska",823 +2019-09-01,"Pennsylvania",4211 +2019-09-01,"Ohio",4874 +2019-09-01,"West Virginia",297 +2019-09-01,"Texas",5045 +2019-09-01,"Tennessee",1146 +2019-09-01,"Missouri",1610 +2019-09-01,"Arkansas",565 +2019-09-01,"South Carolina",562 +2019-09-01,"Wisconsin",2607 +2019-09-01,"North Carolina",1021 +2019-09-01,"Utah",1916 +2019-09-01,"District of Columbia",253 +2019-09-01,"Minnesota",2679 +2019-09-01,"Rhode Island",423 +2019-09-01,"Mississippi",443 2019-09-01,"Wyoming",190 +2019-09-01,"Kansas",1249 +2019-09-01,"Nebraska",643 +2019-09-01,"Louisiana",1168 +2019-09-01,"Florida",889 +2019-09-01,"New York",10275 +2019-09-01,"Nevada",1520 +2019-09-01,"Kentucky",743 +2019-09-01,"Oregon",1405 +2019-09-01,"Connecticut",1066 +2019-09-01,"Montana",444 +2019-09-01,"California",18490 +2019-09-01,"Maine",64 +2019-09-01,"New Mexico",970 +2019-09-01,"U.S.",109841 +2019-09-01,"Alabama",705 +2019-09-01,"Virginia",1502 +2019-10-01,"Louisiana",1503 +2019-10-01,"Nevada",2427 +2019-10-01,"Arizona",1800 +2019-10-01,"Iowa",4263 +2019-10-01,"Maryland",2203 +2019-10-01,"Maine",141 +2019-10-01,"Arkansas",921 +2019-10-01,"Michigan",18571 +2019-10-01,"New Hampshire",253 +2019-10-01,"Pennsylvania",8102 +2019-10-01,"Ohio",12187 +2019-10-01,"Indiana",6698 +2019-10-01,"South Dakota",765 +2019-10-01,"Alaska",1447 +2019-10-01,"Wisconsin",9004 +2019-10-01,"Florida",939 +2019-10-01,"Vermont",140 +2019-10-01,"New Jersey",8747 +2019-10-01,"U.S.",231696 +2019-10-01,"Missouri",5498 +2019-10-01,"Montana",1328 +2019-10-01,"Utah",3612 +2019-10-01,"Kansas",3903 +2019-10-01,"Rhode Island",933 +2019-10-01,"West Virginia",1089 +2019-10-01,"Connecticut",1974 +2019-10-01,"North Carolina",1766 +2019-10-01,"New Mexico",2112 +2019-10-01,"Oklahoma",1624 +2019-10-01,"New York",17557 +2019-10-01,"Massachusetts",4918 +2019-10-01,"Minnesota",8285 +2019-10-01,"Virginia",2260 +2019-10-01,"Nebraska",1597 +2019-10-01,"Kentucky",1835 +2019-10-01,"Idaho",2818 +2019-10-01,"South Carolina",755 +2019-10-01,"Mississippi",833 2019-10-01,"Wyoming",590 +2019-10-01,"Texas",7328 +2019-10-01,"Georgia",5450 +2019-10-01,"Delaware",288 +2019-10-01,"Colorado",10443 +2019-10-01,"Illinois",21241 +2019-10-01,"Hawaii",45 +2019-10-01,"Oregon",4322 +2019-10-01,"Washington",8090 +2019-10-01,"California",25563 +2019-10-01,"District of Columbia",246 +2019-10-01,"Tennessee",1702 +2019-10-01,"North Dakota",600 +2019-10-01,"Alabama",980 +2019-11-01,"Arizona",2994 +2019-11-01,"Idaho",4169 +2019-11-01,"Wisconsin",19034 +2019-11-01,"Montana",2953 +2019-11-01,"North Carolina",9945 +2019-11-01,"Florida",1194 +2019-11-01,"Indiana",18942 2019-11-01,"Wyoming",1847 +2019-11-01,"Delaware",1266 +2019-11-01,"Kansas",8053 +2019-11-01,"Colorado",17685 +2019-11-01,"Ohio",36355 +2019-11-01,"West Virginia",3172 +2019-11-01,"Mississippi",3385 +2019-11-01,"Tennessee",10251 +2019-11-01,"Missouri",14237 +2019-11-01,"Nebraska",5380 +2019-11-01,"Rhode Island",2399 +2019-11-01,"Connecticut",6140 +2019-11-01,"New Mexico",5034 +2019-11-01,"District of Columbia",1481 +2019-11-01,"Massachusetts",14991 +2019-11-01,"New Jersey",28230 +2019-11-01,"Georgia",14849 +2019-11-01,"Alabama",2825 +2019-11-01,"South Dakota",1703 +2019-11-01,"New Hampshire",626 +2019-11-01,"U.S.",589075 +2019-11-01,"Virginia",8690 +2019-11-01,"Michigan",43458 +2019-11-01,"Hawaii",42 +2019-11-01,"Vermont",422 +2019-11-01,"North Dakota",1542 +2019-11-01,"Oregon",5687 +2019-11-01,"South Carolina",4057 +2019-11-01,"Maine",354 +2019-11-01,"New York",52629 +2019-11-01,"Minnesota",17333 +2019-11-01,"Alaska",1978 +2019-11-01,"Iowa",8180 +2019-11-01,"Maryland",9799 +2019-11-01,"Nevada",3862 +2019-11-01,"Louisiana",4113 +2019-11-01,"Illinois",56527 +2019-11-01,"Pennsylvania",23723 +2019-11-01,"Kentucky",6904 +2019-11-01,"Washington",11296 +2019-11-01,"California",43975 +2019-11-01,"Oklahoma",8608 +2019-11-01,"Utah",8205 +2019-11-01,"Texas",24295 +2019-11-01,"Arkansas",4256 +2019-12-01,"Louisiana",5265 +2019-12-01,"Arizona",5947 +2019-12-01,"Florida",1960 +2019-12-01,"Maine",467 +2019-12-01,"Indiana",20252 2019-12-01,"Wyoming",2074 -2020-01-01,"Wyoming",2067 -2020-02-01,"Wyoming",2049 -2020-03-01,"Wyoming",1749 -2020-04-01,"Wyoming",1403 -2020-05-01,"Wyoming",747 -2020-06-01,"Wyoming",397 -2020-07-01,"Wyoming",248 -2020-08-01,"Wyoming",199 -2020-09-01,"Wyoming",290 -2020-10-01,"Wyoming",568 -2020-11-01,"Wyoming",1533 -2020-12-01,"Wyoming",2151 -2021-01-01,"Wyoming",2559 -2021-02-01,"Wyoming",2670 +2019-12-01,"Utah",13171 +2019-12-01,"District of Columbia",2251 +2019-12-01,"Texas",31830 +2019-12-01,"Georgia",18509 +2019-12-01,"Connecticut",8492 +2019-12-01,"New Mexico",7222 +2019-12-01,"New Jersey",39094 +2019-12-01,"Tennessee",11857 +2019-12-01,"North Dakota",2004 +2019-12-01,"U.S.",752613 +2019-12-01,"Alabama",5044 +2019-12-01,"Alaska",2686 +2019-12-01,"Iowa",9970 +2019-12-01,"Kentucky",7953 +2019-12-01,"Idaho",4861 +2019-12-01,"California",60983 +2019-12-01,"Vermont",578 +2019-12-01,"Nevada",7356 +2019-12-01,"Michigan",46084 +2019-12-01,"Ohio",44442 +2019-12-01,"Washington",12912 +2019-12-01,"Montana",3279 +2019-12-01,"Virginia",13627 +2019-12-01,"Missouri",17007 +2019-12-01,"West Virginia",3758 +2019-12-01,"Oregon",7047 +2019-12-01,"Wisconsin",21241 +2019-12-01,"North Carolina",12688 +2019-12-01,"Oklahoma",10706 +2019-12-01,"Arkansas",5438 +2019-12-01,"Delaware",1986 +2019-12-01,"South Dakota",1976 +2019-12-01,"Colorado",22258 +2019-12-01,"Illinois",59862 +2019-12-01,"Maryland",13510 +2019-12-01,"Mississippi",3900 +2019-12-01,"Massachusetts",22166 +2019-12-01,"New Hampshire",1396 +2019-12-01,"Rhode Island",3130 +2019-12-01,"Pennsylvania",38964 +2019-12-01,"Hawaii",46 +2019-12-01,"South Carolina",5785 +2019-12-01,"New York",71422 +2019-12-01,"Minnesota",22261 +2019-12-01,"Kansas",10077 +2019-12-01,"Nebraska",5822 +2020-01-01,"Connecticut",8240 +2020-01-01,"Vermont",654 +2020-01-01,"Mississippi",3875 +2020-01-01,"New York",74300 +2020-01-01,"Utah",13109 +2020-01-01,"Tennessee",12756 +2020-01-01,"Georgia",21077 +2020-01-01,"Kansas",12414 +2020-01-01,"Rhode Island",3185 +2020-01-01,"Nevada",8342 +2020-01-01,"Indiana",23817 +2020-01-01,"Massachusetts",20390 +2020-01-01,"U.S.",824886 +2020-01-01,"South Dakota",2623 +2020-01-01,"Michigan",50406 +2020-01-01,"New Hampshire",1371 +2020-01-01,"Ohio",45865 +2020-01-01,"Montana",3501 +2020-01-01,"Oklahoma",11836 +2020-01-01,"North Dakota",2276 +2020-01-01,"West Virginia",4261 +2020-01-01,"Idaho",4718 +2020-01-01,"Maryland",15451 +2020-01-01,"Texas",38642 +2020-01-01,"Delaware",2118 +2020-01-01,"Missouri",20777 +2020-01-01,"Alaska",3657 +2020-01-01,"Oregon",6816 +2020-01-01,"Washington",13273 +2020-01-01,"North Carolina",13080 +2020-01-01,"Florida",2246 +2020-01-01,"New Mexico",6689 +2020-01-01,"District of Columbia",1986 +2020-01-01,"Minnesota",25247 +2020-01-01,"Virginia",14549 +2020-01-01,"Nebraska",7200 +2020-01-01,"Arkansas",6237 +2020-01-01,"Colorado",22083 +2020-01-01,"Louisiana",4683 +2020-01-01,"Illinois",69929 +2020-01-01,"Hawaii",54 +2020-01-01,"South Carolina",5786 +2020-01-01,"Wisconsin",23300 +2020-01-01,"Maine",517 +2020-01-01,"New Jersey",44312 +2020-01-01,"Pennsylvania",40148 +2020-01-01,"Arizona",8560 +2020-01-01,"Iowa",12415 +2020-01-01,"Kentucky",8627 +2020-01-01,"California",69802 +2020-01-01,"Wyoming",2015 +2020-01-01,"Alabama",5673 +2020-02-01,"New Hampshire",1281 +2020-02-01,"Illinois",66498 +2020-02-01,"South Carolina",5404 +2020-02-01,"Connecticut",8193 +2020-02-01,"Texas",34758 +2020-02-01,"Tennessee",12428 +2020-02-01,"Idaho",4525 +2020-02-01,"New Mexico",5522 +2020-02-01,"Oklahoma",11190 +2020-02-01,"Minnesota",20355 +2020-02-01,"Delaware",1830 +2020-02-01,"Virginia",11947 +2020-02-01,"Nebraska",6395 +2020-02-01,"South Dakota",2189 +2020-02-01,"Colorado",20894 +2020-02-01,"Iowa",11010 +2020-02-01,"West Virginia",4023 +2020-02-01,"Washington",11192 +2020-02-01,"North Carolina",10739 +2020-02-01,"Indiana",23520 +2020-02-01,"Georgia",19270 +2020-02-01,"Kansas",10497 +2020-02-01,"Wyoming",2053 +2020-02-01,"New Jersey",31518 +2020-02-01,"North Dakota",1869 +2020-02-01,"Arizona",7001 +2020-02-01,"Kentucky",8473 +2020-02-01,"Montana",3115 +2020-02-01,"California",52381 +2020-02-01,"Maine",478 +2020-02-01,"Vermont",639 +2020-02-01,"New York",66783 +2020-02-01,"Missouri",18491 +2020-02-01,"Louisiana",4674 +2020-02-01,"Oregon",6260 +2020-02-01,"Wisconsin",22914 +2020-02-01,"Alabama",5304 +2020-02-01,"Arkansas",5236 +2020-02-01,"Michigan",50650 +2020-02-01,"Alaska",2752 +2020-02-01,"Rhode Island",2834 +2020-02-01,"Pennsylvania",36321 +2020-02-01,"Ohio",47366 +2020-02-01,"Maryland",12199 +2020-02-01,"Mississippi",3582 +2020-02-01,"Nevada",6749 +2020-02-01,"Utah",11484 +2020-02-01,"Massachusetts",18370 +2020-02-01,"Hawaii",49 +2020-02-01,"Florida",2094 +2020-02-01,"District of Columbia",1851 +2020-02-01,"U.S.",737150 +2020-03-01,"Michigan",35828 +2020-03-01,"Kentucky",4721 +2020-03-01,"Indiana",15712 +2020-03-01,"Arkansas",4033 +2020-03-01,"Hawaii",51 +2020-03-01,"District of Columbia",1215 +2020-03-01,"Kansas",6712 +2020-03-01,"Virginia",7568 +2020-03-01,"South Carolina",2780 +2020-03-01,"California",52447 +2020-03-01,"Mississippi",2071 +2020-03-01,"Missouri",10488 +2020-03-01,"Rhode Island",2249 +2020-03-01,"Louisiana",2922 +2020-03-01,"Connecticut",5728 +2020-03-01,"Maine",384 +2020-03-01,"Vermont",439 +2020-03-01,"South Dakota",1555 +2020-03-01,"Alaska",2614 +2020-03-01,"West Virginia",2684 +2020-03-01,"Oregon",5853 +2020-03-01,"North Carolina",5791 +2020-03-01,"New York",53093 +2020-03-01,"North Dakota",1463 +2020-03-01,"Georgia",10671 +2020-03-01,"Minnesota",14933 +2020-03-01,"Alabama",2635 +2020-03-01,"Colorado",12580 +2020-03-01,"Ohio",32139 +2020-03-01,"Arizona",4749 +2020-03-01,"Maryland",8315 +2020-03-01,"New Mexico",4605 +2020-03-01,"New Jersey",24526 +2020-03-01,"Tennessee",6759 +2020-03-01,"U.S.",526843 +2020-03-01,"Delaware",1300 +2020-03-01,"Illinois",46395 +2020-03-01,"Pennsylvania",25582 +2020-03-01,"Washington",11711 +2020-03-01,"Idaho",3206 +2020-03-01,"Wisconsin",16496 +2020-03-01,"Florida",1820 +2020-03-01,"Nevada",5367 +2020-03-01,"Wyoming",1937 +2020-03-01,"Massachusetts",15135 +2020-03-01,"New Hampshire",932 +2020-03-01,"Iowa",7036 +2020-03-01,"Montana",2711 +2020-03-01,"Oklahoma",6205 +2020-03-01,"Utah",7370 +2020-03-01,"Texas",18955 +2020-03-01,"Nebraska",4372 +2020-04-01,"South Dakota",1252 +2020-04-01,"Kentucky",3229 +2020-04-01,"Washington",6642 +2020-04-01,"Maryland",5951 +2020-04-01,"Oklahoma",4380 +2020-04-01,"Texas",10671 +2020-04-01,"Pennsylvania",20452 +2020-04-01,"Oregon",3287 +2020-04-01,"Massachusetts",12394 +2020-04-01,"New Jersey",20889 +2020-04-01,"North Dakota",1043 +2020-04-01,"Kansas",4430 +2020-04-01,"Virginia",5110 +2020-04-01,"Alaska",1579 +2020-04-01,"New Hampshire",694 +2020-04-01,"Hawaii",57 +2020-04-01,"Ohio",23412 +2020-04-01,"Wisconsin",12361 +2020-04-01,"Florida",1445 +2020-04-01,"Michigan",26201 +2020-04-01,"Montana",1749 +2020-04-01,"Indiana",9891 +2020-04-01,"Utah",6285 +2020-04-01,"Minnesota",9586 +2020-04-01,"Colorado",12212 +2020-04-01,"Rhode Island",1863 +2020-04-01,"Arizona",3158 +2020-04-01,"Iowa",4855 +2020-04-01,"California",37026 +2020-04-01,"Maine",293 +2020-04-01,"Vermont",385 +2020-04-01,"Mississippi",1128 +2020-04-01,"Nevada",3590 +2020-04-01,"Delaware",980 +2020-04-01,"South Carolina",1456 +2020-04-01,"North Carolina",3524 +2020-04-01,"District of Columbia",925 +2020-04-01,"Tennessee",4325 +2020-04-01,"U.S.",378068 +2020-04-01,"Alabama",1660 +2020-04-01,"Missouri",6281 +2020-04-01,"Illinois",33362 +2020-04-01,"West Virginia",1948 +2020-04-01,"Idaho",2130 +2020-04-01,"Wyoming",1776 +2020-04-01,"Louisiana",1961 +2020-04-01,"Connecticut",4781 +2020-04-01,"New Mexico",2370 +2020-04-01,"New York",41101 +2020-04-01,"Georgia",7414 +2020-04-01,"Nebraska",2742 +2020-04-01,"Arkansas",1833 +2020-05-01,"Arizona",1969 +2020-05-01,"South Carolina",1183 +2020-05-01,"North Carolina",2662 +2020-05-01,"Massachusetts",6221 +2020-05-01,"Texas",8429 +2020-05-01,"North Dakota",474 +2020-05-01,"U.S.",236591 +2020-05-01,"Alabama",1219 +2020-05-01,"Delaware",576 +2020-05-01,"Kansas",2152 +2020-05-01,"Missouri",3764 +2020-05-01,"Rhode Island",890 +2020-05-01,"Iowa",2580 +2020-05-01,"Washington",3983 +2020-05-01,"Connecticut",2605 +2020-05-01,"Maryland",3906 +2020-05-01,"Vermont",249 +2020-05-01,"New York",26344 +2020-05-01,"Minnesota",5500 +2020-05-01,"Pennsylvania",13043 +2020-05-01,"Oregon",2164 +2020-05-01,"Montana",1279 +2020-05-01,"Florida",1327 +2020-05-01,"Maine",170 +2020-05-01,"Mississippi",701 +2020-05-01,"Nevada",2339 +2020-05-01,"Wyoming",695 +2020-05-01,"New Jersey",12865 +2020-05-01,"Nebraska",1632 +2020-05-01,"Idaho",1309 +2020-05-01,"New Mexico",1188 +2020-05-01,"Oklahoma",2323 +2020-05-01,"Georgia",5771 +2020-05-01,"Michigan",16061 +2020-05-01,"New Hampshire",351 +2020-05-01,"Wisconsin",6469 +2020-05-01,"California",27600 +2020-05-01,"Tennessee",2619 +2020-05-01,"South Dakota",555 +2020-05-01,"Louisiana",1607 +2020-05-01,"Illinois",20206 +2020-05-01,"Ohio",15393 +2020-05-01,"West Virginia",949 +2020-05-01,"Indiana",6059 +2020-05-01,"Colorado",5287 +2020-05-01,"Alaska",926 +2020-05-01,"Utah",3003 +2020-05-01,"Virginia",4207 +2020-05-01,"Arkansas",1319 +2020-05-01,"Hawaii",50 +2020-05-01,"Kentucky",1818 +2020-05-01,"District of Columbia",600 +2020-06-01,"Colorado",3490 +2020-06-01,"Montana",781 +2020-06-01,"Wyoming",340 +2020-06-01,"Utah",3051 +2020-06-01,"Minnesota",2923 +2020-06-01,"Delaware",247 +2020-06-01,"Rhode Island",441 +2020-06-01,"Washington",2843 +2020-06-01,"California",22757 +2020-06-01,"New Mexico",1015 +2020-06-01,"District of Columbia",314 +2020-06-01,"New Jersey",6697 +2020-06-01,"New Hampshire",168 +2020-06-01,"Idaho",911 +2020-06-01,"South Carolina",714 +2020-06-01,"Vermont",128 +2020-06-01,"North Dakota",216 +2020-06-01,"Arkansas",569 +2020-06-01,"Pennsylvania",5728 +2020-06-01,"Iowa",1384 +2020-06-01,"Connecticut",1577 +2020-06-01,"Wisconsin",2842 +2020-06-01,"North Carolina",1619 +2020-06-01,"Mississippi",633 +2020-06-01,"Indiana",2548 +2020-06-01,"Nebraska",1079 +2020-06-01,"Louisiana",1336 +2020-06-01,"Arizona",1583 +2020-06-01,"Nevada",1972 +2020-06-01,"Massachusetts",3361 +2020-06-01,"Texas",7096 +2020-06-01,"Alabama",828 +2020-06-01,"Virginia",2017 +2020-06-01,"Michigan",6322 +2020-06-01,"Illinois",9784 +2020-06-01,"Hawaii",50 +2020-06-01,"Kentucky",822 +2020-06-01,"Maine",74 +2020-06-01,"Georgia",4292 +2020-06-01,"U.S.",136127 +2020-06-01,"Missouri",1966 +2020-06-01,"West Virginia",675 +2020-06-01,"Florida",1190 +2020-06-01,"Tennessee",1517 +2020-06-01,"South Dakota",295 +2020-06-01,"Alaska",612 +2020-06-01,"Ohio",5935 +2020-06-01,"Oregon",1574 +2020-06-01,"Maryland",2049 +2020-06-01,"Oklahoma",1347 +2020-06-01,"New York",13218 +2020-06-01,"Kansas",1198 +2020-07-01,"Pennsylvania",3807 +2020-07-01,"Oregon",1169 +2020-07-01,"Idaho",609 +2020-07-01,"Montana",553 +2020-07-01,"Maine",56 +2020-07-01,"Vermont",89 +2020-07-01,"Tennessee",1168 +2020-07-01,"North Dakota",177 +2020-07-01,"South Dakota",214 +2020-07-01,"West Virginia",325 +2020-07-01,"Maryland",1892 +2020-07-01,"Florida",918 +2020-07-01,"Kansas",1193 +2020-07-01,"Virginia",1809 +2020-07-01,"Arizona",1350 +2020-07-01,"New Mexico",1043 +2020-07-01,"Nevada",1592 +2020-07-01,"Indiana",2192 +2020-07-01,"Texas",7092 +2020-07-01,"Minnesota",2485 +2020-07-01,"Alabama",720 +2020-07-01,"Nebraska",829 +2020-07-01,"Colorado",2935 +2020-07-01,"Alaska",499 +2020-07-01,"Rhode Island",433 +2020-07-01,"Hawaii",51 +2020-07-01,"North Carolina",910 +2020-07-01,"District of Columbia",268 +2020-07-01,"Michigan",5402 +2020-07-01,"Illinois",7550 +2020-07-01,"Washington",2393 +2020-07-01,"Connecticut",1237 +2020-07-01,"Wyoming",239 +2020-07-01,"Utah",2252 +2020-07-01,"Massachusetts",2965 +2020-07-01,"U.S.",118141 +2020-07-01,"Louisiana",1353 +2020-07-01,"Georgia",3946 +2020-07-01,"Arkansas",513 +2020-07-01,"New Hampshire",172 +2020-07-01,"South Carolina",541 +2020-07-01,"Wisconsin",2511 +2020-07-01,"Mississippi",577 +2020-07-01,"New York",11330 +2020-07-01,"Ohio",4786 +2020-07-01,"Iowa",1170 +2020-07-01,"Kentucky",770 +2020-07-01,"California",22434 +2020-07-01,"Oklahoma",1156 +2020-07-01,"New Jersey",6493 +2020-07-01,"Delaware",196 +2020-07-01,"Missouri",1779 +2020-08-01,"Iowa",1115 +2020-08-01,"West Virginia",318 +2020-08-01,"Oregon",999 +2020-08-01,"Nevada",1323 +2020-08-01,"Wyoming",169 +2020-08-01,"Pennsylvania",3924 +2020-08-01,"Wisconsin",2489 +2020-08-01,"Mississippi",553 +2020-08-01,"Tennessee",1130 +2020-08-01,"North Dakota",194 +2020-08-01,"Georgia",4020 +2020-08-01,"U.S.",108827 +2020-08-01,"Missouri",1841 +2020-08-01,"Nebraska",758 +2020-08-01,"Rhode Island",433 +2020-08-01,"Louisiana",1197 +2020-08-01,"South Carolina",498 +2020-08-01,"Massachusetts",2158 +2020-08-01,"South Dakota",212 +2020-08-01,"Ohio",5137 +2020-08-01,"Kentucky",725 +2020-08-01,"North Carolina",1107 +2020-08-01,"New York",10365 +2020-08-01,"Kansas",1092 +2020-08-01,"Virginia",1651 +2020-08-01,"Colorado",2875 +2020-08-01,"Connecticut",1034 +2020-08-01,"Utah",1831 +2020-08-01,"New Hampshire",149 +2020-08-01,"Illinois",7704 +2020-08-01,"Idaho",610 +2020-08-01,"Vermont",82 +2020-08-01,"New Mexico",966 +2020-08-01,"Oklahoma",1291 +2020-08-01,"Michigan",5328 +2020-08-01,"Arizona",1153 +2020-08-01,"Washington",2035 +2020-08-01,"Maryland",1373 +2020-08-01,"Montana",409 +2020-08-01,"Maine",55 +2020-08-01,"Indiana",2236 +2020-08-01,"Alabama",693 +2020-08-01,"Alaska",549 +2020-08-01,"Hawaii",50 +2020-08-01,"California",19700 +2020-08-01,"Florida",900 +2020-08-01,"District of Columbia",237 +2020-08-01,"New Jersey",4644 +2020-08-01,"Texas",6348 +2020-08-01,"Minnesota",2498 +2020-08-01,"Delaware",172 +2020-08-01,"Arkansas",498 +2020-09-01,"Michigan",8106 +2020-09-01,"Colorado",4503 +2020-09-01,"Mississippi",560 +2020-09-01,"Oklahoma",1490 +2020-09-01,"District of Columbia",327 +2020-09-01,"Massachusetts",3102 +2020-09-01,"North Dakota",223 +2020-09-01,"Arizona",1273 +2020-09-01,"California",18887 +2020-09-01,"Nevada",1541 +2020-09-01,"Georgia",4332 +2020-09-01,"U.S.",126533 +2020-09-01,"Delaware",209 +2020-09-01,"Missouri",2107 +2020-09-01,"Rhode Island",462 +2020-09-01,"Vermont",108 +2020-09-01,"Alabama",999 +2020-09-01,"Kansas",1423 +2020-09-01,"Virginia",1849 +2020-09-01,"South Dakota",276 +2020-09-01,"Ohio",5735 +2020-09-01,"Kentucky",897 +2020-09-01,"South Carolina",648 +2020-09-01,"New York",11404 +2020-09-01,"Minnesota",3348 +2020-09-01,"Oregon",1156 +2020-09-01,"Wyoming",376 +2020-09-01,"New Jersey",5402 +2020-09-01,"Tennessee",1262 +2020-09-01,"Nebraska",838 +2020-09-01,"New Hampshire",197 +2020-09-01,"Iowa",1556 +2020-09-01,"Maryland",1789 +2020-09-01,"Wisconsin",3246 +2020-09-01,"Maine",69 +2020-09-01,"Pennsylvania",4592 +2020-09-01,"Hawaii",46 +2020-09-01,"West Virginia",505 +2020-09-01,"Connecticut",1097 +2020-09-01,"Utah",2019 +2020-09-01,"Alaska",887 +2020-09-01,"Louisiana",1480 +2020-09-01,"Illinois",9044 +2020-09-01,"Washington",2350 +2020-09-01,"Idaho",816 +2020-09-01,"Montana",472 +2020-09-01,"North Carolina",1427 +2020-09-01,"Florida",887 +2020-09-01,"New Mexico",1130 +2020-09-01,"Indiana",2970 +2020-09-01,"Texas",6539 +2020-09-01,"Arkansas",573 +2020-10-01,"South Dakota",655 +2020-10-01,"Indiana",7653 +2020-10-01,"Wyoming",478 +2020-10-01,"District of Columbia",362 +2020-10-01,"Alabama",1107 +2020-10-01,"Delaware",351 +2020-10-01,"Arizona",1696 +2020-10-01,"Iowa",4170 +2020-10-01,"Massachusetts",5435 +2020-10-01,"Pennsylvania",9798 +2020-10-01,"West Virginia",1081 +2020-10-01,"Idaho",1895 +2020-10-01,"Maryland",3284 +2020-10-01,"Mississippi",857 +2020-10-01,"Nevada",2056 +2020-10-01,"Tennessee",2113 +2020-10-01,"Minnesota",9396 +2020-10-01,"Rhode Island",547 +2020-10-01,"Washington",6433 +2020-10-01,"California",23004 +2020-10-01,"U.S.",241797 +2020-10-01,"Michigan",21624 +2020-10-01,"Alaska",1679 +2020-10-01,"Ohio",12450 +2020-10-01,"Connecticut",2428 +2020-10-01,"Montana",1640 +2020-10-01,"Vermont",156 +2020-10-01,"New Jersey",9011 +2020-10-01,"Missouri",3895 +2020-10-01,"Arkansas",1203 +2020-10-01,"Louisiana",1924 +2020-10-01,"Kentucky",2097 +2020-10-01,"Oregon",2909 +2020-10-01,"Wisconsin",10578 +2020-10-01,"Maine",139 +2020-10-01,"New York",17671 +2020-10-01,"Utah",2575 +2020-10-01,"Texas",9279 +2020-10-01,"Kansas",4484 +2020-10-01,"Virginia",3293 +2020-10-01,"Illinois",24285 +2020-10-01,"South Carolina",937 +2020-10-01,"North Carolina",2069 +2020-10-01,"New Mexico",1681 +2020-10-01,"Colorado",10224 +2020-10-01,"New Hampshire",238 +2020-10-01,"Hawaii",48 +2020-10-01,"Florida",1050 +2020-10-01,"Oklahoma",1825 +2020-10-01,"North Dakota",934 +2020-10-01,"Georgia",5498 +2020-10-01,"Nebraska",1602 +2020-11-01,"West Virginia",2144 +2020-11-01,"Florida",1336 +2020-11-01,"Maine",288 +2020-11-01,"New York",39753 +2020-11-01,"Georgia",10773 +2020-11-01,"U.S.",439857 +2020-11-01,"Michigan",29495 +2020-11-01,"Alaska",2607 +2020-11-01,"Kentucky",4412 +2020-11-01,"South Carolina",2311 +2020-11-01,"Nevada",3899 +2020-11-01,"New Jersey",18263 +2020-11-01,"Alabama",2527 +2020-11-01,"New Hampshire",521 +2020-11-01,"Vermont",334 +2020-11-01,"New Mexico",3431 +2020-11-01,"Oklahoma",5772 +2020-11-01,"Utah",6127 +2020-11-01,"Tennessee",5552 +2020-11-01,"Colorado",16027 +2020-11-01,"Rhode Island",1764 +2020-11-01,"Pennsylvania",19191 +2020-11-01,"Oregon",6040 +2020-11-01,"Connecticut",3914 +2020-11-01,"California",45366 +2020-11-01,"Wyoming",1260 +2020-11-01,"Virginia",6206 +2020-11-01,"Illinois",36466 +2020-11-01,"Iowa",5982 +2020-11-01,"Idaho",4383 +2020-11-01,"Arizona",3042 +2020-11-01,"North Carolina",6222 +2020-11-01,"Mississippi",2020 +2020-11-01,"Indiana",13045 +2020-11-01,"Massachusetts",10867 +2020-11-01,"Kansas",5953 +2020-11-01,"Nebraska",3437 +2020-11-01,"South Dakota",1261 +2020-11-01,"Hawaii",45 +2020-11-01,"Ohio",25882 +2020-11-01,"Washington",11151 +2020-11-01,"Maryland",6733 +2020-11-01,"Texas",16408 +2020-11-01,"Delaware",877 +2020-11-01,"Missouri",9873 +2020-11-01,"Louisiana",2977 +2020-11-01,"Wisconsin",12637 +2020-11-01,"Montana",2350 +2020-11-01,"District of Columbia",987 +2020-11-01,"North Dakota",1329 +2020-11-01,"Minnesota",14100 +2020-11-01,"Arkansas",2521 +2020-12-01,"Alaska",2689 +2020-12-01,"Hawaii",53 +2020-12-01,"West Virginia",3939 +2020-12-01,"New York",71760 +2020-12-01,"Tennessee",13978 +2020-12-01,"Michigan",48770 +2020-12-01,"California",67095 +2020-12-01,"Minnesota",19750 +2020-12-01,"Arizona",5980 +2020-12-01,"Vermont",546 +2020-12-01,"Indiana",24136 +2020-12-01,"Texas",40249 +2020-12-01,"North Dakota",1768 +2020-12-01,"Georgia",22727 +2020-12-01,"Illinois",64411 +2020-12-01,"Connecticut",7867 +2020-12-01,"Montana",3204 +2020-12-01,"Florida",2113 +2020-12-01,"Massachusetts",19935 +2020-12-01,"U.S.",799641 +2020-12-01,"Alabama",4814 +2020-12-01,"Kansas",10764 +2020-12-01,"Virginia",15059 +2020-12-01,"Arkansas",5768 +2020-12-01,"Rhode Island",3178 +2020-12-01,"Louisiana",5983 +2020-12-01,"Pennsylvania",38711 +2020-12-01,"Oregon",7261 +2020-12-01,"Idaho",5557 +2020-12-01,"Oklahoma",11905 +2020-12-01,"Nevada",7241 +2020-12-01,"New Jersey",38750 +2020-12-01,"South Dakota",2121 +2020-12-01,"New Hampshire",1331 +2020-12-01,"South Carolina",6851 +2020-12-01,"North Carolina",14893 +2020-12-01,"Maine",439 +2020-12-01,"Nebraska",6115 +2020-12-01,"Ohio",47763 +2020-12-01,"Iowa",10812 +2020-12-01,"Washington",13190 +2020-12-01,"Maryland",14332 +2020-12-01,"Wisconsin",22540 +2020-12-01,"New Mexico",6795 +2020-12-01,"Wyoming",1631 +2020-12-01,"Utah",15084 +2020-12-01,"Delaware",1995 +2020-12-01,"Missouri",18722 +2020-12-01,"Colorado",23476 +2020-12-01,"Kentucky",9370 +2020-12-01,"Mississippi",4054 +2020-12-01,"District of Columbia",2163 +2021-01-01,"New Hampshire",1495 +2021-01-01,"North Carolina",17188 +2021-01-01,"Mississippi",4772 +2021-01-01,"Wyoming",2122 +2021-01-01,"South Carolina",7556 +2021-01-01,"Wisconsin",24390 +2021-01-01,"New Mexico",7037 +2021-01-01,"Georgia",24746 +2021-01-01,"Pennsylvania",45848 +2021-01-01,"Oklahoma",14079 +2021-01-01,"Michigan",54637 +2021-01-01,"Alaska",2649 +2021-01-01,"Louisiana",7086 +2021-01-01,"West Virginia",4978 +2021-01-01,"Maryland",15588 +2021-01-01,"Maine",559 +2021-01-01,"District of Columbia",2221 +2021-01-01,"Tennessee",17052 +2021-01-01,"North Dakota",1968 +2021-01-01,"Delaware",2466 +2021-01-01,"Colorado",23180 +2021-01-01,"Iowa",11860 +2021-01-01,"Idaho",5378 +2021-01-01,"California",68053 +2021-01-01,"Indiana",25580 +2021-01-01,"Texas",45162 +2021-01-01,"Minnesota",23019 +2021-01-01,"South Dakota",2101 +2021-01-01,"Rhode Island",3574 +2021-01-01,"Hawaii",57 +2021-01-01,"Arizona",8407 +2021-01-01,"Washington",13067 +2021-01-01,"Montana",3580 +2021-01-01,"Massachusetts",22628 +2021-01-01,"U.S.",894969 +2021-01-01,"Kansas",11761 +2021-01-01,"Missouri",21957 +2021-01-01,"Arkansas",7432 +2021-01-01,"Ohio",52574 +2021-01-01,"Kentucky",10125 +2021-01-01,"Connecticut",9733 +2021-01-01,"Florida",3032 +2021-01-01,"Vermont",656 +2021-01-01,"New York",82542 +2021-01-01,"Nevada",8451 +2021-01-01,"Alabama",7610 +2021-01-01,"Virginia",17495 +2021-01-01,"Illinois",73398 +2021-01-01,"Oregon",6992 +2021-01-01,"Utah",13069 +2021-01-01,"New Jersey",46971 +2021-01-01,"Nebraska",7085 +2021-02-01,"Colorado",22390 +2021-02-01,"Oregon",7070 +2021-02-01,"Idaho",4788 +2021-02-01,"New York",80249 +2021-02-01,"Indiana",26302 +2021-02-01,"District of Columbia",2174 +2021-02-01,"Virginia",14726 +2021-02-01,"Arkansas",7661 +2021-02-01,"Arizona",6545 +2021-02-01,"Kentucky",10469 +2021-02-01,"Montana",3889 +2021-02-01,"Florida",2517 +2021-02-01,"Oklahoma",14880 +2021-02-01,"Nevada",7194 +2021-02-01,"New Jersey",44046 +2021-02-01,"Tennessee",17563 +2021-02-01,"Minnesota",24414 +2021-02-01,"Nebraska",8257 +2021-02-01,"Michigan",56300 +2021-02-01,"Washington",13304 +2021-02-01,"Vermont",639 +2021-02-01,"Utah",10174 +2021-02-01,"North Dakota",1930 +2021-02-01,"Georgia",21056 +2021-02-01,"U.S.",875739 +2021-02-01,"Iowa",13713 +2021-02-01,"Maryland",14569 +2021-02-01,"Wyoming",2215 +2021-02-01,"Massachusetts",20809 +2021-02-01,"South Dakota",2440 +2021-02-01,"New Hampshire",1331 +2021-02-01,"Pennsylvania",42152 +2021-02-01,"Ohio",54238 +2021-02-01,"South Carolina",6568 +2021-02-01,"Wisconsin",26209 +2021-02-01,"Maine",502 +2021-02-01,"Missouri",23092 +2021-02-01,"Alaska",2796 +2021-02-01,"Louisiana",7650 +2021-02-01,"Hawaii",52 +2021-02-01,"California",52396 +2021-02-01,"Texas",50375 +2021-02-01,"Alabama",7012 +2021-02-01,"Connecticut",8799 +2021-02-01,"Mississippi",4771 +2021-02-01,"Delaware",2337 +2021-02-01,"Rhode Island",3144 +2021-02-01,"Illinois",79886 +2021-02-01,"West Virginia",4714 +2021-02-01,"North Carolina",14934 +2021-02-01,"New Mexico",6042 +2021-02-01,"Kansas",14455 +2021-03-01,"North Carolina",7778 +2021-03-01,"Vermont",538 +2021-03-01,"Wyoming",1562 +2021-03-01,"Virginia",10387 +2021-03-01,"Arkansas",6069 +2021-03-01,"Kentucky",4932 +2021-03-01,"Washington",10784 +2021-03-01,"Maryland",9345 +2021-03-01,"California",54488 +2021-03-01,"New Mexico",5139 +2021-03-01,"New York",60525 +2021-03-01,"Massachusetts",17331 +2021-03-01,"Texas",26383 +2021-03-01,"North Dakota",1617 +2021-03-01,"Georgia",12340 +2021-03-01,"Delaware",1543 +2021-03-01,"Hawaii",54 +2021-03-01,"Idaho",3506 +2021-03-01,"South Carolina",3617 +2021-03-01,"Utah",8919 +2021-03-01,"Nebraska",4405 +2021-03-01,"Michigan",32766 +2021-03-01,"Alaska",2725 +2021-03-01,"Illinois",45292 +2021-03-01,"Ohio",32900 +2021-03-01,"Connecticut",6780 +2021-03-01,"Oklahoma",6786 +2021-03-01,"Nevada",6036 +2021-03-01,"Tennessee",7726 +2021-03-01,"Alabama",3457 +2021-03-01,"Colorado",17040 +2021-03-01,"Rhode Island",2512 +2021-03-01,"District of Columbia",1436 +2021-03-01,"U.S.",574124 +2021-03-01,"Iowa",7066 +2021-03-01,"Mississippi",2706 +2021-03-01,"Indiana",14724 +2021-03-01,"Missouri",10430 +2021-03-01,"New Hampshire",1030 +2021-03-01,"Louisiana",4223 +2021-03-01,"Wisconsin",15022 +2021-03-01,"Montana",2633 +2021-03-01,"Florida",2017 +2021-03-01,"Maine",407 +2021-03-01,"Minnesota",16277 +2021-03-01,"Kansas",6682 +2021-03-01,"South Dakota",1860 +2021-03-01,"Pennsylvania",27945 +2021-03-01,"Arizona",5480 +2021-03-01,"West Virginia",3001 +2021-03-01,"Oregon",6009 +2021-03-01,"New Jersey",29895 +2021-04-01,"Oregon",3116 +2021-04-01,"South Dakota",1068 +2021-04-01,"Arizona",2835 +2021-04-01,"Connecticut",3926 +2021-04-01,"Tennessee",4294 +2021-04-01,"Delaware",856 +2021-04-01,"Missouri",6399 +2021-04-01,"Colorado",11249 +2021-04-01,"New Hampshire",592 +2021-04-01,"Rhode Island",1400 +2021-04-01,"Pennsylvania",15971 +2021-04-01,"Iowa",4190 +2021-04-01,"Wyoming",1145 +2021-04-01,"Georgia",8299 +2021-04-01,"Nebraska",2381 +2021-04-01,"Ohio",20197 +2021-04-01,"North Carolina",3730 +2021-04-01,"Vermont",332 +2021-04-01,"Mississippi",1231 +2021-04-01,"Oklahoma",4285 +2021-04-01,"New York",35429 +2021-04-01,"North Dakota",973 +2021-04-01,"Alabama",2186 +2021-04-01,"Michigan",22042 +2021-04-01,"Kentucky",3107 +2021-04-01,"Idaho",2209 +2021-04-01,"Montana",1810 +2021-04-01,"Indiana",8875 +2021-04-01,"Utah",5643 +2021-04-01,"Massachusetts",9988 +2021-04-01,"Kansas",4347 +2021-04-01,"Alaska",1715 +2021-04-01,"Louisiana",2621 +2021-04-01,"Washington",6405 +2021-04-01,"South Carolina",1905 +2021-04-01,"Maryland",6416 +2021-04-01,"Florida",1795 +2021-04-01,"New Mexico",2344 +2021-04-01,"Illinois",27315 +2021-04-01,"Hawaii",60 +2021-04-01,"West Virginia",1919 +2021-04-01,"California",33563 +2021-04-01,"Nevada",2979 +2021-04-01,"Virginia",5551 +2021-04-01,"Arkansas",2038 +2021-04-01,"Wisconsin",10056 +2021-04-01,"Maine",229 +2021-04-01,"District of Columbia",870 +2021-04-01,"New Jersey",18302 +2021-04-01,"Texas",12322 +2021-04-01,"U.S.",342324 +2021-04-01,"Minnesota",9813 +2021-05-01,"Alaska",1001 +2021-05-01,"Pennsylvania",9756 +2021-05-01,"Alabama",1291 +2021-05-01,"New Hampshire",320 +2021-05-01,"Oregon",2116 +2021-05-01,"Idaho",1085 +2021-05-01,"Maryland",3487 +2021-05-01,"Montana",1123 +2021-05-01,"Nevada",2519 +2021-05-01,"Wyoming",969 +2021-05-01,"Utah",3067 +2021-05-01,"U.S.",217805 +2021-05-01,"Louisiana",1730 +2021-05-01,"Ohio",13429 +2021-05-01,"Kentucky",1675 +2021-05-01,"Oklahoma",2422 +2021-05-01,"Indiana",5667 +2021-05-01,"Tennessee",2561 +2021-05-01,"Minnesota",5385 +2021-05-01,"Rhode Island",722 +2021-05-01,"Arizona",2231 +2021-05-01,"South Carolina",945 +2021-05-01,"Vermont",207 +2021-05-01,"Massachusetts",5394 +2021-05-01,"Kansas",2033 +2021-05-01,"Virginia",2726 +2021-05-01,"West Virginia",1050 +2021-05-01,"Wisconsin",5708 +2021-05-01,"Maine",128 +2021-05-01,"Mississippi",797 +2021-05-01,"New York",22235 +2021-05-01,"Texas",8773 +2021-05-01,"Michigan",13547 +2021-05-01,"Illinois",18739 +2021-05-01,"Washington",4185 +2021-05-01,"Florida",1370 +2021-05-01,"South Dakota",644 +2021-05-01,"Hawaii",49 +2021-05-01,"North Carolina",2188 +2021-05-01,"District of Columbia",506 +2021-05-01,"Georgia",5536 +2021-05-01,"Missouri",3832 +2021-05-01,"Nebraska",1423 +2021-05-01,"Colorado",6951 +2021-05-01,"Iowa",2494 +2021-05-01,"Connecticut",2260 +2021-05-01,"California",27579 +2021-05-01,"New Mexico",1532 +2021-05-01,"New Jersey",10205 +2021-05-01,"North Dakota",490 +2021-05-01,"Delaware",434 +2021-05-01,"Arkansas",1289 +2021-06-01,"Alaska",638 +2021-06-01,"Hawaii",50 +2021-06-01,"North Carolina",1127 +2021-06-01,"Mississippi",529 +2021-06-01,"Oklahoma",1461 +2021-06-01,"Wyoming",580 +2021-06-01,"Texas",6902 +2021-06-01,"Minnesota",2379 +2021-06-01,"Nebraska",1112 +2021-06-01,"Michigan",5864 +2021-06-01,"Arizona",1490 +2021-06-01,"Oregon",1241 +2021-06-01,"Connecticut",1442 +2021-06-01,"Vermont",107 +2021-06-01,"Massachusetts",3132 +2021-06-01,"Alabama",819 +2021-06-01,"South Dakota",234 +2021-06-01,"Colorado",3353 +2021-06-01,"Louisiana",1243 +2021-06-01,"Idaho",680 +2021-06-01,"Nevada",1656 +2021-06-01,"Indiana",2260 +2021-06-01,"Kentucky",926 +2021-06-01,"Wisconsin",2512 +2021-06-01,"North Dakota",211 +2021-06-01,"Delaware",284 +2021-06-01,"Kansas",1085 +2021-06-01,"Virginia",1816 +2021-06-01,"Missouri",2074 +2021-06-01,"Arkansas",602 +2021-06-01,"Pennsylvania",5082 +2021-06-01,"Iowa",1335 +2021-06-01,"Washington",2484 +2021-06-01,"Maine",62 +2021-06-01,"New Jersey",7075 +2021-06-01,"New Hampshire",151 +2021-06-01,"Illinois",8987 +2021-06-01,"Ohio",6208 +2021-06-01,"Montana",381 +2021-06-01,"U.S.",129599 +2021-06-01,"Rhode Island",427 +2021-06-01,"West Virginia",313 +2021-06-01,"Florida",1135 +2021-06-01,"New Mexico",1076 +2021-06-01,"Utah",2435 +2021-06-01,"Georgia",4352 +2021-06-01,"South Carolina",824 +2021-06-01,"Maryland",1646 +2021-06-01,"California",21860 +2021-06-01,"New York",14280 +2021-06-01,"District of Columbia",294 +2021-06-01,"Tennessee",1385 +2021-07-01,"South Dakota",207 +2021-07-01,"Alaska",562 +2021-07-01,"Mississippi",529 +2021-07-01,"Indiana",2115 +2021-07-01,"Arizona",1240 +2021-07-01,"Kentucky",685 +2021-07-01,"West Virginia",263 +2021-07-01,"Massachusetts",3084 +2021-07-01,"New Hampshire",156 +2021-07-01,"Louisiana",1381 +2021-07-01,"South Carolina",648 +2021-07-01,"Connecticut",1130 +2021-07-01,"Nevada",1483 +2021-07-01,"Virginia",1664 +2021-07-01,"Nebraska",762 +2021-07-01,"Iowa",1023 +2021-07-01,"Wisconsin",2469 +2021-07-01,"California",20630 +2021-07-01,"Missouri",1837 +2021-07-01,"Michigan",5288 +2021-07-01,"Rhode Island",415 +2021-07-01,"Pennsylvania",3916 +2021-07-01,"Washington",1995 +2021-07-01,"Idaho",574 +2021-07-01,"Maryland",1501 +2021-07-01,"North Carolina",1140 +2021-07-01,"Oklahoma",1323 +2021-07-01,"New York",11191 +2021-07-01,"North Dakota",160 +2021-07-01,"Kansas",1105 +2021-07-01,"Oregon",949 +2021-07-01,"Montana",248 +2021-07-01,"Florida",990 +2021-07-01,"Wyoming",186 +2021-07-01,"District of Columbia",260 +2021-07-01,"Texas",6678 +2021-07-01,"Alabama",755 +2021-07-01,"Colorado",2690 +2021-07-01,"Illinois",8030 +2021-07-01,"Ohio",4537 +2021-07-01,"New Jersey",5270 +2021-07-01,"Tennessee",1200 +2021-07-01,"Georgia",4235 +2021-07-01,"U.S.",112848 +2021-07-01,"Minnesota",2494 +2021-07-01,"Hawaii",51 +2021-07-01,"Maine",56 +2021-07-01,"Vermont",88 +2021-07-01,"New Mexico",844 +2021-07-01,"Utah",2000 +2021-07-01,"Delaware",188 +2021-07-01,"Arkansas",623 +2021-08-01,"Mississippi",473 +2021-08-01,"Massachusetts",2503 +2021-08-01,"Minnesota",2620 +2021-08-01,"Virginia",1469 +2021-08-01,"South Dakota",204 +2021-08-01,"Michigan",5368 +2021-08-01,"Illinois",7519 +2021-08-01,"Iowa",964 +2021-08-01,"Idaho",643 +2021-08-01,"South Carolina",684 +2021-08-01,"Connecticut",1013 +2021-08-01,"New York",10301 +2021-08-01,"Alabama",716 +2021-08-01,"Kansas",1060 +2021-08-01,"Colorado",2913 +2021-08-01,"Ohio",4375 +2021-08-01,"West Virginia",301 +2021-08-01,"Oregon",953 +2021-08-01,"Washington",1890 +2021-08-01,"Wisconsin",2325 +2021-08-01,"Nevada",1264 +2021-08-01,"Utah",1546 +2021-08-01,"Texas",6187 +2021-08-01,"North Dakota",186 +2021-08-01,"New Hampshire",167 +2021-08-01,"Louisiana",1100 +2021-08-01,"Maine",58 +2021-08-01,"Indiana",2135 +2021-08-01,"Wyoming",173 +2021-08-01,"Pennsylvania",3829 +2021-08-01,"California",18652 +2021-08-01,"Vermont",81 +2021-08-01,"Oklahoma",1301 +2021-08-01,"District of Columbia",224 +2021-08-01,"Hawaii",47 +2021-08-01,"North Carolina",1296 +2021-08-01,"U.S.",106290 +2021-08-01,"Missouri",1809 +2021-08-01,"Kentucky",736 +2021-08-01,"New Mexico",816 +2021-08-01,"New Jersey",4709 +2021-08-01,"Delaware",180 +2021-08-01,"Alaska",625 +2021-08-01,"Rhode Island",422 +2021-08-01,"Arizona",1264 +2021-08-01,"Maryland",1356 +2021-08-01,"Montana",406 +2021-08-01,"Florida",907 +2021-08-01,"Tennessee",1012 +2021-08-01,"Georgia",4350 +2021-08-01,"Nebraska",656 +2021-08-01,"Arkansas",501 +2021-09-01,"South Dakota",218 +2021-09-01,"Illinois",8234 +2021-09-01,"Hawaii",51 +2021-09-01,"Kentucky",899 +2021-09-01,"Washington",2668 +2021-09-01,"Montana",551 +2021-09-01,"Indiana",2499 +2021-09-01,"Kansas",1197 +2021-09-01,"Alabama",736 +2021-09-01,"Virginia",1682 +2021-09-01,"Michigan",5916 +2021-09-01,"Louisiana",1755 +2021-09-01,"Iowa",1202 +2021-09-01,"Nebraska",723 +2021-09-01,"New Hampshire",172 +2021-09-01,"Arizona",1322 +2021-09-01,"South Carolina",684 +2021-09-01,"North Carolina",1161 +2021-09-01,"Mississippi",534 +2021-09-01,"Oklahoma",1322 +2021-09-01,"North Dakota",209 +2021-09-01,"Delaware",202 +2021-09-01,"Rhode Island",401 +2021-09-01,"Idaho",883 +2021-09-01,"Connecticut",1157 +2021-09-01,"Maryland",1638 +2021-09-01,"California",20874 +2021-09-01,"New York",10394 +2021-09-01,"Wyoming",195 +2021-09-01,"Utah",1983 +2021-09-01,"District of Columbia",257 +2021-09-01,"New Jersey",5391 +2021-09-01,"Minnesota",2756 +2021-09-01,"Tennessee",1370 +2021-09-01,"Georgia",4431 +2021-09-01,"Missouri",1940 +2021-09-01,"Colorado",3296 +2021-09-01,"Alaska",1077 +2021-09-01,"Pennsylvania",4029 +2021-09-01,"Wisconsin",2523 +2021-09-01,"Massachusetts",2938 +2021-09-01,"Arkansas",560 +2021-09-01,"Ohio",5074 +2021-09-01,"West Virginia",458 +2021-09-01,"Oregon",1282 +2021-09-01,"Florida",950 +2021-09-01,"Maine",57 +2021-09-01,"Vermont",84 +2021-09-01,"New Mexico",924 +2021-09-01,"Nevada",1523 +2021-09-01,"Texas",6011 +2021-09-01,"U.S.",118393 +2021-10-01,"New Hampshire",322 +2021-10-01,"West Virginia",830 +2021-10-01,"Oklahoma",2042 +2021-10-01,"North Dakota",598 +2021-10-01,"U.S.",192653 +2021-10-01,"Kansas",2418 +2021-10-01,"Hawaii",48 +2021-10-01,"Kentucky",1659 +2021-10-01,"Maryland",2138 +2021-10-01,"Florida",1027 +2021-10-01,"New Mexico",1554 +2021-10-01,"New York",15564 +2021-10-01,"Wyoming",373 +2021-10-01,"New Jersey",7048 +2021-10-01,"Texas",7965 +2021-10-01,"Georgia",6289 +2021-10-01,"Louisiana",1769 +2021-10-01,"Connecticut",1790 +2021-10-01,"California",24750 +2021-10-01,"Utah",3193 +2021-10-01,"District of Columbia",331 +2021-10-01,"Tennessee",1950 +2021-10-01,"Missouri",3435 +2021-10-01,"North Carolina",2108 +2021-10-01,"Maine",124 +2021-10-01,"Vermont",132 +2021-10-01,"South Dakota",505 +2021-10-01,"Alaska",1749 +2021-10-01,"Pennsylvania",7046 +2021-10-01,"Oregon",3467 +2021-10-01,"Wisconsin",5295 +2021-10-01,"Mississippi",781 +2021-10-01,"Nevada",2323 +2021-10-01,"Delaware",240 +2021-10-01,"Virginia",2489 +2021-10-01,"Arkansas",799 +2021-10-01,"Illinois",13824 +2021-10-01,"Idaho",1968 +2021-10-01,"Indiana",5065 +2021-10-01,"Massachusetts",4869 +2021-10-01,"Alabama",1115 +2021-10-01,"Arizona",1841 +2021-10-01,"Washington",6979 +2021-10-01,"South Carolina",1031 +2021-10-01,"Nebraska",937 +2021-10-01,"Michigan",13355 +2021-10-01,"Colorado",7726 +2021-10-01,"Rhode Island",724 +2021-10-01,"Ohio",10181 +2021-10-01,"Iowa",2322 +2021-10-01,"Montana",1261 +2021-10-01,"Minnesota",5303 +2021-11-01,"Colorado",13320 +2021-11-01,"Iowa",6322 +2021-11-01,"Kentucky",5960 +2021-11-01,"New Jersey",20249 +2021-11-01,"Virginia",9680 +2021-11-01,"Illinois",41600 +2021-11-01,"Delaware",1164 +2021-11-01,"Michigan",37323 +2021-11-01,"Arizona",2639 +2021-11-01,"Wyoming",1369 +2021-11-01,"Massachusetts",11992 +2021-11-01,"Nebraska",3337 +2021-11-01,"Pennsylvania",25287 +2021-11-01,"Hawaii",48 +2021-11-01,"South Carolina",4108 +2021-11-01,"California",34818 +2021-11-01,"New York",40725 +2021-11-01,"Utah",7379 +2021-11-01,"District of Columbia",1385 +2021-11-01,"Georgia",15911 +2021-11-01,"Minnesota",14074 +2021-11-01,"Rhode Island",2146 +2021-11-01,"Louisiana",3079 +2021-11-01,"Idaho",3593 +2021-11-01,"Connecticut",4772 +2021-11-01,"North Carolina",9413 +2021-11-01,"New Mexico",3104 +2021-11-01,"Oklahoma",6066 +2021-11-01,"North Dakota",1258 +2021-11-01,"Alabama",2295 +2021-11-01,"Kansas",5888 +2021-11-01,"South Dakota",1152 +2021-11-01,"Ohio",31116 +2021-11-01,"Maryland",9256 +2021-11-01,"Vermont",343 +2021-11-01,"Indiana",16811 +2021-11-01,"Arkansas",3075 +2021-11-01,"New Hampshire",502 +2021-11-01,"Oregon",4961 +2021-11-01,"Montana",2382 +2021-11-01,"Maine",293 +2021-11-01,"Nevada",3133 +2021-11-01,"Tennessee",6901 +2021-11-01,"U.S.",482091 +2021-11-01,"Alaska",2979 +2021-11-01,"West Virginia",2811 +2021-11-01,"Washington",9691 +2021-11-01,"Wisconsin",15352 +2021-11-01,"Florida",1522 +2021-11-01,"Mississippi",1999 +2021-11-01,"Texas",16137 +2021-11-01,"Missouri",11367 +2021-12-01,"Michigan",43634 +2021-12-01,"Alaska",3021 +2021-12-01,"Idaho",5497 +2021-12-01,"Montana",2842 +2021-12-01,"Florida",2068 +2021-12-01,"Utah",12221 +2021-12-01,"District of Columbia",1564 +2021-12-01,"Texas",18238 +2021-12-01,"Tennessee",8683 +2021-12-01,"North Dakota",1557 +2021-12-01,"Arkansas",3147 +2021-12-01,"Colorado",21181 +2021-12-01,"Louisiana",2654 +2021-12-01,"Illinois",55370 +2021-12-01,"West Virginia",3179 +2021-12-01,"South Dakota",1815 +2021-12-01,"Oregon",8039 +2021-12-01,"Washington",16056 +2021-12-01,"North Carolina",10003 +2021-12-01,"Vermont",525 +2021-12-01,"Pennsylvania",35591 +2021-12-01,"New Mexico",5147 +2021-12-01,"Oklahoma",7776 +2021-12-01,"Georgia",15126 +2021-12-01,"U.S.",669374 +2021-12-01,"Iowa",9316 +2021-12-01,"Maryland",9934 +2021-12-01,"Wisconsin",20506 +2021-12-01,"Mississippi",2149 +2021-12-01,"Nevada",6285 +2021-12-01,"Wyoming",1954 +2021-12-01,"New Jersey",33064 +2021-12-01,"Minnesota",22049 +2021-12-01,"Kansas",8113 +2021-12-01,"Nebraska",5299 +2021-12-01,"Rhode Island",2693 +2021-12-01,"Ohio",37846 +2021-12-01,"Kentucky",5710 +2021-12-01,"South Carolina",4636 +2021-12-01,"California",71646 +2021-12-01,"Alabama",4196 +2021-12-01,"Delaware",1629 +2021-12-01,"Virginia",11576 +2021-12-01,"Missouri",13292 +2021-12-01,"New Hampshire",1199 +2021-12-01,"Arizona",4534 +2021-12-01,"Maine",461 +2021-12-01,"Indiana",18953 +2021-12-01,"Massachusetts",18144 +2021-12-01,"Hawaii",52 +2021-12-01,"Connecticut",7073 +2021-12-01,"New York",62126 +2022-01-01,"Maryland",18364 +2022-01-01,"California",66526 +2022-01-01,"Mississippi",4653 +2022-01-01,"Massachusetts",22922 +2022-01-01,"Tennessee",17582 +2022-01-01,"Illinois",83534 +2022-01-01,"Hawaii",60 +2022-01-01,"Iowa",14534 +2022-01-01,"New York",78035 +2022-01-01,"Wyoming",2395 +2022-01-01,"North Dakota",2639 +2022-01-01,"Delaware",2747 +2022-01-01,"Kansas",12982 +2022-01-01,"Arkansas",NA +2022-01-01,"Michigan",68310 +2022-01-01,"Connecticut",10226 +2022-01-01,"Montana",3377 +2022-01-01,"North Carolina",17899 +2022-01-01,"Vermont",777 +2022-01-01,"South Dakota",2887 +2022-01-01,"New Hampshire",1605 +2022-01-01,"Pennsylvania",49038 +2022-01-01,"Kentucky",11324 +2022-01-01,"South Carolina",8097 +2022-01-01,"Wisconsin",30026 +2022-01-01,"Indiana",31034 +2022-01-01,"Virginia",19229 +2022-01-01,"Alaska",3265 +2022-01-01,"Washington",14658 +2022-01-01,"New Mexico",6952 +2022-01-01,"Utah",12085 +2022-01-01,"Georgia",27862 +2022-01-01,"U.S.",961248 +2022-01-01,"Colorado",25705 +2022-01-01,"Oregon",7708 +2022-01-01,"Oklahoma",14476 +2022-01-01,"Minnesota",29835 +2022-01-01,"Alabama",7524 +2022-01-01,"Rhode Island",4112 +2022-01-01,"Arizona",7738 +2022-01-01,"West Virginia",5114 +2022-01-01,"Florida",2631 +2022-01-01,"Maine",648 +2022-01-01,"District of Columbia",2741 +2022-01-01,"New Jersey",45080 +2022-01-01,"Nebraska",7213 +2022-01-01,"Louisiana",8743 +2022-01-01,"Ohio",57749 +2022-01-01,"Idaho",6305 +2022-01-01,"Nevada",8937 +2022-01-01,"Texas",41880 +2022-01-01,"Missouri",24783 +2022-02-01,"Iowa",11108 +2022-02-01,"Oregon",6287 +2022-02-01,"Wyoming",2226 +2022-02-01,"Texas",47563 +2022-02-01,"North Dakota",2342 +2022-02-01,"Missouri",19911 +2022-02-01,"Arkansas",6409 +2022-02-01,"Colorado",23381 +2022-02-01,"Montana",3331 +2022-02-01,"North Carolina",11732 +2022-02-01,"Florida",2732 +2022-02-01,"Alabama",5514 +2022-02-01,"Delaware",2027 +2022-02-01,"Virginia",13496 +2022-02-01,"Pennsylvania",38739 +2022-02-01,"Wisconsin",23897 +2022-02-01,"Maine",507 +2022-02-01,"New Mexico",6253 +2022-02-01,"Utah",9479 +2022-02-01,"Massachusetts",19335 +2022-02-01,"Rhode Island",3076 +2022-02-01,"Washington",12205 +2022-02-01,"Maryland",13072 +2022-02-01,"California",53441 +2022-02-01,"Mississippi",3867 +2022-02-01,"Nevada",6566 +2022-02-01,"Michigan",52595 +2022-02-01,"Illinois",69264 +2022-02-01,"West Virginia",4283 +2022-02-01,"Connecticut",8261 +2022-02-01,"Minnesota",26222 +2022-02-01,"Alaska",2242 +2022-02-01,"South Carolina",5811 +2022-02-01,"Indiana",24022 +2022-02-01,"Tennessee",13760 +2022-02-01,"Kansas",11773 +2022-02-01,"New Hampshire",1259 +2022-02-01,"Hawaii",50 +2022-02-01,"Arizona",7014 +2022-02-01,"Oklahoma",12816 +2022-02-01,"New Jersey",38164 +2022-02-01,"U.S.",796143 +2022-02-01,"Nebraska",6276 +2022-02-01,"South Dakota",2219 +2022-02-01,"Louisiana",5512 +2022-02-01,"Ohio",49337 +2022-02-01,"Kentucky",8188 +2022-02-01,"Idaho",4987 +2022-02-01,"Vermont",669 +2022-02-01,"New York",72656 +2022-02-01,"District of Columbia",2193 +2022-02-01,"Georgia",18072 +2022-03-01,"Florida",2086 +2022-03-01,"Indiana",16638 +2022-03-01,"District of Columbia",1369 +2022-03-01,"Tennessee",8169 +2022-03-01,"Georgia",12643 +2022-03-01,"Delaware",1517 +2022-03-01,"South Dakota",1976 +2022-03-01,"New Hampshire",966 +2022-03-01,"Rhode Island",2392 +2022-03-01,"Ohio",35180 +2022-03-01,"West Virginia",3123 +2022-03-01,"Connecticut",6596 +2022-03-01,"Maryland",9042 +2022-03-01,"North Carolina",5228 +2022-03-01,"Arkansas",5004 +2022-03-01,"Illinois",50335 +2022-03-01,"Pennsylvania",32750 +2022-03-01,"Hawaii",51 +2022-03-01,"Idaho",3397 +2022-03-01,"California",42228 +2022-03-01,"Nevada",5988 +2022-03-01,"Massachusetts",15880 +2022-03-01,"Minnesota",18967 +2022-03-01,"Nebraska",5044 +2022-03-01,"Louisiana",4570 +2022-03-01,"South Carolina",3047 +2022-03-01,"Wisconsin",18424 +2022-03-01,"New York",60393 +2022-03-01,"Texas",31841 +2022-03-01,"North Dakota",2155 +2022-03-01,"Oregon",4951 +2022-03-01,"New Mexico",4435 +2022-03-01,"Alabama",3351 +2022-03-01,"Kansas",7992 +2022-03-01,"Colorado",18032 +2022-03-01,"Alaska",2100 +2022-03-01,"Montana",2591 +2022-03-01,"Mississippi",2826 +2022-03-01,"U.S.",590914 +2022-03-01,"Arizona",5720 +2022-03-01,"Maine",406 +2022-03-01,"Oklahoma",7875 +2022-03-01,"Wyoming",2107 +2022-03-01,"Utah",8071 +2022-03-01,"New Jersey",28297 +2022-03-01,"Michigan",41333 +2022-03-01,"Iowa",8000 +2022-03-01,"Kentucky",5261 +2022-03-01,"Washington",9272 +2022-03-01,"Vermont",539 +2022-03-01,"Virginia",8928 +2022-03-01,"Missouri",11830 +2022-04-01,"South Dakota",1337 +2022-04-01,"Illinois",36304 +2022-04-01,"Pennsylvania",19544 +2022-04-01,"Hawaii",54 +2022-04-01,"Wisconsin",13949 +2022-04-01,"Montana",2123 +2022-04-01,"Oklahoma",3522 +2022-04-01,"Delaware",959 +2022-04-01,"Nebraska",3092 +2022-04-01,"Arkansas",2544 +2022-04-01,"Louisiana",2371 +2022-04-01,"Iowa",5732 +2022-04-01,"Vermont",369 +2022-04-01,"Mississippi",1532 +2022-04-01,"Nevada",3334 +2022-04-01,"Rhode Island",1366 +2022-04-01,"Washington",8826 +2022-04-01,"Maine",246 +2022-04-01,"Wyoming",1470 +2022-04-01,"Alabama",2131 +2022-04-01,"Colorado",12732 +2022-04-01,"Kentucky",3201 +2022-04-01,"Idaho",2958 +2022-04-01,"South Carolina",1834 +2022-04-01,"Connecticut",4153 +2022-04-01,"California",NA +2022-04-01,"New York",37945 +2022-04-01,"North Dakota",1343 +2022-04-01,"Georgia",8162 +2022-04-01,"Kansas",4237 +2022-04-01,"Michigan",29345 +2022-04-01,"New Mexico",2125 +2022-04-01,"Virginia",4426 +2022-04-01,"Alaska",1507 +2022-04-01,"Oregon",4734 +2022-04-01,"North Carolina",2808 +2022-04-01,"Massachusetts",8662 +2022-04-01,"Ohio",24354 +2022-04-01,"West Virginia",1947 +2022-04-01,"Florida",1633 +2022-04-01,"District of Columbia",960 +2022-04-01,"Texas",14112 +2022-04-01,"Tennessee",4655 +2022-04-01,"U.S.",389874 +2022-04-01,"Minnesota",13718 +2022-04-01,"New Hampshire",595 +2022-04-01,"Arizona",2892 +2022-04-01,"Maryland",7085 +2022-04-01,"Indiana",11264 +2022-04-01,"Utah",5709 +2022-04-01,"New Jersey",21599 +2022-04-01,"Missouri",7269 +2022-05-01,"Washington",5587 +2022-05-01,"Massachusetts",5235 +2022-05-01,"New Jersey",11690 +2022-05-01,"Texas",7543 +2022-05-01,"Tennessee",1962 +2022-05-01,"Colorado",5727 +2022-05-01,"Florida",1345 +2022-05-01,"Mississippi",612 +2022-05-01,"District of Columbia",442 +2022-05-01,"Delaware",462 +2022-05-01,"New Hampshire",241 +2022-05-01,"West Virginia",556 +2022-05-01,"Nevada",2690 +2022-05-01,"Georgia",5206 +2022-05-01,"Alaska",950 +2022-05-01,"Rhode Island",705 +2022-05-01,"Hawaii",49 +2022-05-01,"Arizona",1827 +2022-05-01,"Idaho",1796 +2022-05-01,"Oklahoma",2053 +2022-05-01,"Indiana",4812 +2022-05-01,"Louisiana",1398 +2022-05-01,"Illinois",16518 +2022-05-01,"Pennsylvania",9048 +2022-05-01,"Kentucky",1229 +2022-05-01,"South Carolina",789 +2022-05-01,"Connecticut",2324 +2022-05-01,"Vermont",180 +2022-05-01,"New York",21011 +2022-05-01,"Utah",3839 +2022-05-01,"North Dakota",878 +2022-05-01,"Minnesota",5332 +2022-05-01,"Kansas",2035 +2022-05-01,"Virginia",2889 +2022-05-01,"Nebraska",1874 +2022-05-01,"Michigan",10163 +2022-05-01,"Wisconsin",5254 +2022-05-01,"North Carolina",1157 +2022-05-01,"California",26330 +2022-05-01,"New Mexico",1385 +2022-05-01,"U.S.",201337 +2022-05-01,"Arkansas",754 +2022-05-01,"Iowa",2220 +2022-05-01,"Oregon",2997 +2022-05-01,"Montana",1064 +2022-05-01,"Maine",121 +2022-05-01,"South Dakota",620 +2022-05-01,"Ohio",10559 +2022-05-01,"Maryland",2840 +2022-05-01,"Wyoming",830 +2022-05-01,"Alabama",975 +2022-05-01,"Missouri",3232 +2022-06-01,"Massachusetts",2812 +2022-06-01,"Georgia",4401 +2022-06-01,"Minnesota",2766 +2022-06-01,"Nebraska",1046 +2022-06-01,"Colorado",3325 +2022-06-01,"Maryland",1810 +2022-06-01,"Vermont",105 +2022-06-01,"New Mexico",1103 +2022-06-01,"Wyoming",511 +2022-06-01,"New Jersey",5522 +2022-06-01,"New Hampshire",157 +2022-06-01,"Illinois",8495 +2022-06-01,"Florida",1105 +2022-06-01,"Tennessee",1135 +2022-06-01,"U.S.",123951 +2022-06-01,"Hawaii",50 +2022-06-01,"South Carolina",628 +2022-06-01,"Wisconsin",2637 +2022-06-01,"Oklahoma",1288 +2022-06-01,"New York",12652 +2022-06-01,"Nevada",1906 +2022-06-01,"Virginia",1802 +2022-06-01,"Rhode Island",532 +2022-06-01,"Arizona",1512 +2022-06-01,"Kentucky",847 +2022-06-01,"Oregon",1533 +2022-06-01,"Kansas",1134 +2022-06-01,"Missouri",1829 +2022-06-01,"Alaska",508 +2022-06-01,"Pennsylvania",4407 +2022-06-01,"Ohio",5467 +2022-06-01,"Idaho",866 +2022-06-01,"California",20762 +2022-06-01,"Maine",65 +2022-06-01,"Utah",2026 +2022-06-01,"North Dakota",362 +2022-06-01,"Delaware",229 +2022-06-01,"South Dakota",343 +2022-06-01,"Michigan",7137 +2022-06-01,"Iowa",1149 +2022-06-01,"Washington",2714 +2022-06-01,"Indiana",2494 +2022-06-01,"Alabama",704 +2022-06-01,"Louisiana",1176 +2022-06-01,"West Virginia",315 +2022-06-01,"Connecticut",1254 +2022-06-01,"Montana",501 +2022-06-01,"North Carolina",1047 +2022-06-01,"Mississippi",506 +2022-06-01,"District of Columbia",286 +2022-06-01,"Texas",6440 +2022-06-01,"Arkansas",551 +2022-07-01,"Alaska",513 +2022-07-01,"Pennsylvania",3817 +2022-07-01,"West Virginia",334 +2022-07-01,"Oregon",961 +2022-07-01,"Vermont",85 +2022-07-01,"Nevada",1498 +2022-07-01,"Indiana",2077 +2022-07-01,"Massachusetts",2279 +2022-07-01,"Tennessee",1069 +2022-07-01,"Georgia",4316 +2022-07-01,"Arkansas",427 +2022-07-01,"Michigan",6040 +2022-07-01,"Louisiana",1176 +2022-07-01,"Maine",50 +2022-07-01,"Mississippi",465 +2022-07-01,"New Jersey",4877 +2022-07-01,"North Dakota",142 +2022-07-01,"Alabama",640 +2022-07-01,"Illinois",7226 +2022-07-01,"New Mexico",954 +2022-07-01,"Utah",2024 +2022-07-01,"Kansas",1208 +2022-07-01,"Virginia",1476 +2022-07-01,"Arizona",1074 +2022-07-01,"South Carolina",633 +2022-07-01,"Maryland",1574 +2022-07-01,"Wisconsin",2899 +2022-07-01,"Oklahoma",1142 +2022-07-01,"Rhode Island",436 +2022-07-01,"Hawaii",47 +2022-07-01,"Iowa",1048 +2022-07-01,"Kentucky",719 +2022-07-01,"Washington",1831 +2022-07-01,"Idaho",592 +2022-07-01,"Connecticut",1089 +2022-07-01,"North Carolina",977 +2022-07-01,"California",19429 +2022-07-01,"Florida",883 +2022-07-01,"New York",12585 +2022-07-01,"Wyoming",243 +2022-07-01,"District of Columbia",255 +2022-07-01,"U.S.",110488 +2022-07-01,"Colorado",2860 +2022-07-01,"Montana",486 +2022-07-01,"Nebraska",673 +2022-07-01,"South Dakota",213 +2022-07-01,"New Hampshire",155 +2022-07-01,"Ohio",4535 +2022-07-01,"Texas",6331 +2022-07-01,"Minnesota",2239 +2022-07-01,"Delaware",189 +2022-07-01,"Missouri",1698 +2022-08-01,"South Dakota",204 +2022-08-01,"Idaho",NA +2022-08-01,"North Dakota",221 +2022-08-01,"U.S.",103255 +2022-08-01,"Minnesota",2736 +2022-08-01,"Kansas",1049 +2022-08-01,"Colorado",3051 +2022-08-01,"Ohio",4412 +2022-08-01,"Maryland",1148 +2022-08-01,"Mississippi",492 +2022-08-01,"Massachusetts",2189 +2022-08-01,"Virginia",1399 +2022-08-01,"Nebraska",596 +2022-08-01,"Illinois",7531 +2022-08-01,"Arizona",1126 +2022-08-01,"Wisconsin",2471 +2022-08-01,"Wyoming",250 +2022-08-01,"Utah",1767 +2022-08-01,"Georgia",4415 +2022-08-01,"Alabama",677 +2022-08-01,"Arkansas",417 +2022-08-01,"Pennsylvania",3968 +2022-08-01,"West Virginia",273 +2022-08-01,"Connecticut",1033 +2022-08-01,"California",16919 +2022-08-01,"Maine",NA +2022-08-01,"Vermont",76 +2022-08-01,"New Mexico",1017 +2022-08-01,"Nevada",1336 +2022-08-01,"Delaware",169 +2022-08-01,"Michigan",5107 +2022-08-01,"Montana",350 +2022-08-01,"North Carolina",1069 +2022-08-01,"Oklahoma",1149 +2022-08-01,"Indiana",2580 +2022-08-01,"Texas",5537 +2022-08-01,"New Hampshire",160 +2022-08-01,"Iowa",944 +2022-08-01,"Oregon",860 +2022-08-01,"Washington",1915 +2022-08-01,"New York",9766 +2022-08-01,"District of Columbia",217 +2022-08-01,"Hawaii",45 +2022-08-01,"Tennessee",1129 +2022-08-01,"Alaska",660 +2022-08-01,"Rhode Island",360 +2022-08-01,"Louisiana",1335 +2022-08-01,"Kentucky",671 +2022-08-01,"South Carolina",611 +2022-08-01,"Florida",919 +2022-08-01,"New Jersey",4107 +2022-08-01,"Missouri",1727 +2022-09-01,"Colorado",3598 +2022-09-01,"Oregon",1037 +2022-09-01,"South Carolina",714 +2022-09-01,"New Jersey",4997 +2022-09-01,"Nebraska",693 +2022-09-01,"Arkansas",497 +2022-09-01,"South Dakota",212 +2022-09-01,"New Hampshire",189 +2022-09-01,"Ohio",5243 +2022-09-01,"Arizona",1088 +2022-09-01,"North Carolina",1259 +2022-09-01,"Maine",61 +2022-09-01,"Vermont",90 +2022-09-01,"Wyoming",270 +2022-09-01,"Alabama",688 +2022-09-01,"Kansas",1230 +2022-09-01,"Missouri",1924 +2022-09-01,"Pennsylvania",4676 +2022-09-01,"West Virginia",545 +2022-09-01,"Washington",2171 +2022-09-01,"Wisconsin",2962 +2022-09-01,"New York",9868 +2022-09-01,"Texas",5848 +2022-09-01,"Georgia",4623 +2022-09-01,"Rhode Island",393 +2022-09-01,"Louisiana",1183 +2022-09-01,"Hawaii",49 +2022-09-01,"Iowa",1147 +2022-09-01,"Kentucky",764 +2022-09-01,"Idaho",758 +2022-09-01,"Oklahoma",1271 +2022-09-01,"District of Columbia",278 +2022-09-01,"Virginia",1748 +2022-09-01,"Alaska",951 +2022-09-01,"Montana",393 +2022-09-01,"Indiana",3074 +2022-09-01,"Massachusetts",2417 +2022-09-01,"U.S.",114497 +2022-09-01,"Florida",927 +2022-09-01,"Mississippi",518 +2022-09-01,"New Mexico",861 +2022-09-01,"Nevada",1411 +2022-09-01,"Utah",1569 +2022-09-01,"North Dakota",193 +2022-09-01,"Minnesota",2760 +2022-09-01,"Delaware",188 +2022-09-01,"Michigan",7000 +2022-09-01,"Illinois",8904 +2022-09-01,"Maryland",1602 +2022-09-01,"Connecticut",1211 +2022-09-01,"California",17099 +2022-09-01,"Tennessee",1346 +2022-10-01,"Colorado",8085 +2022-10-01,"New Hampshire",241 +2022-10-01,"Rhode Island",535 +2022-10-01,"Arizona",1520 +2022-10-01,"Iowa",3199 +2022-10-01,"Idaho",1639 +2022-10-01,"Montana",687 +2022-10-01,"New York",21848 +2022-10-01,"Delaware",501 +2022-10-01,"Alaska",1745 +2022-10-01,"West Virginia",1549 +2022-10-01,"Washington",4708 +2022-10-01,"North Carolina",3589 +2022-10-01,"California",21433 +2022-10-01,"Oklahoma",2234 +2022-10-01,"Nevada",2187 +2022-10-01,"Wyoming",573 +2022-10-01,"North Dakota",437 +2022-10-01,"Missouri",4668 +2022-10-01,"Illinois",21470 +2022-10-01,"Texas",9464 +2022-10-01,"U.S.",242225 +2022-10-01,"Nebraska",1337 +2022-10-01,"Ohio",13429 +2022-10-01,"New Mexico",1784 +2022-10-01,"Utah",3812 +2022-10-01,"Massachusetts",5213 +2022-10-01,"New Jersey",10762 +2022-10-01,"Alabama",1251 +2022-10-01,"South Dakota",426 +2022-10-01,"Pennsylvania",11886 +2022-10-01,"Hawaii",43 +2022-10-01,"South Carolina",1472 +2022-10-01,"Vermont",176 +2022-10-01,"Georgia",8112 +2022-10-01,"Kansas",2890 +2022-10-01,"Michigan",20478 +2022-10-01,"Maryland",3877 +2022-10-01,"Wisconsin",8294 +2022-10-01,"Mississippi",961 +2022-10-01,"District of Columbia",428 +2022-10-01,"Tennessee",2922 +2022-10-01,"Oregon",2207 +2022-10-01,"Connecticut",2687 +2022-10-01,"Florida",1238 +2022-10-01,"Maine",NA +2022-10-01,"Indiana",7576 +2022-10-01,"Louisiana",1873 +2022-10-01,"Kentucky",2296 +2022-10-01,"Minnesota",7221 +2022-10-01,"Virginia",4328 +2022-10-01,"Arkansas",793 +2022-11-01,"Iowa",7017 +2022-11-01,"Kentucky",5413 +2022-11-01,"Vermont",289 +2022-11-01,"New York",38598 +2022-11-01,"Massachusetts",9763 +2022-11-01,"Oregon",7405 +2022-11-01,"Maryland",7829 +2022-11-01,"Hawaii",46 +2022-11-01,"Ohio",33012 +2022-11-01,"West Virginia",2414 +2022-11-01,"Oklahoma",7330 +2022-11-01,"Tennessee",8212 +2022-11-01,"U.S.",516416 +2022-11-01,"New Hampshire",456 +2022-11-01,"Louisiana",3887 +2022-11-01,"Pennsylvania",21751 +2022-11-01,"Alabama",3098 +2022-11-01,"Delaware",1008 +2022-11-01,"Michigan",34664 +2022-11-01,"Alaska",2520 +2022-11-01,"Rhode Island",NA +2022-11-01,"Washington",13273 +2022-11-01,"Connecticut",4629 +2022-11-01,"Maine",NA +2022-11-01,"Mississippi",2531 +2022-11-01,"Wyoming",1829 +2022-11-01,"District of Columbia",1140 +2022-11-01,"New Jersey",20603 +2022-11-01,"North Dakota",1114 +2022-11-01,"Kansas",NA +2022-11-01,"Nebraska",3947 +2022-11-01,"South Dakota",1052 +2022-11-01,"Arizona",3632 +2022-11-01,"Idaho",5451 +2022-11-01,"Florida",1395 +2022-11-01,"Nevada",3877 +2022-11-01,"Indiana",15122 +2022-11-01,"Utah",11576 +2022-11-01,"South Carolina",3419 +2022-11-01,"North Carolina",7306 +2022-11-01,"New Mexico",5355 +2022-11-01,"Minnesota",15123 +2022-11-01,"Virginia",8341 +2022-11-01,"Colorado",19871 +2022-11-01,"Illinois",42291 +2022-11-01,"Wisconsin",14835 +2022-11-01,"Montana",3098 +2022-11-01,"California",47452 +2022-11-01,"Texas",26274 +2022-11-01,"Georgia",13838 +2022-11-01,"Missouri",12828 +2022-11-01,"Arkansas",2027 +2022-12-01,"Colorado",25045 +2022-12-01,"Illinois",70565 +2022-12-01,"Arizona",6502 +2022-12-01,"Oregon",8552 +2022-12-01,"Vermont",522 +2022-12-01,"Alabama",5329 +2022-12-01,"South Dakota",2927 +2022-12-01,"Pennsylvania",44275 +2022-12-01,"Washington",15944 +2022-12-01,"Utah",13938 +2022-12-01,"Georgia",23137 +2022-12-01,"Idaho",6186 +2022-12-01,"Connecticut",8091 +2022-12-01,"District of Columbia",2066 +2022-12-01,"Texas",37377 +2022-12-01,"Virginia",15605 +2022-12-01,"West Virginia",4268 +2022-12-01,"Maine",460 +2022-12-01,"Oklahoma",11966 +2022-12-01,"New Jersey",40110 +2022-12-01,"Delaware",2170 +2022-12-01,"Arkansas",4408 +2022-12-01,"New Hampshire",1254 +2022-12-01,"Hawaii",54 +2022-12-01,"Montana",4137 +2022-12-01,"Florida",1982 +2022-12-01,"Massachusetts",17449 +2022-12-01,"Kansas",12990 +2022-12-01,"Alaska",3232 +2022-12-01,"Louisiana",5587 +2022-12-01,"Ohio",54128 +2022-12-01,"Kentucky",9186 +2022-12-01,"North Carolina",15703 +2022-12-01,"California",66431 +2022-12-01,"New Mexico",6699 +2022-12-01,"New York",73142 +2022-12-01,"Indiana",24327 +2022-12-01,"North Dakota",2199 +2022-12-01,"Minnesota",NA +2022-12-01,"Rhode Island",2019 +2022-12-01,"South Carolina",7148 +2022-12-01,"Maryland",14493 +2022-12-01,"Mississippi",3578 +2022-12-01,"U.S.",839755 +2022-12-01,"Nebraska",7417 +2022-12-01,"Michigan",54391 +2022-12-01,"Iowa",12178 +2022-12-01,"Wisconsin",24773 +2022-12-01,"Nevada",4817 +2022-12-01,"Wyoming",2815 +2022-12-01,"Tennessee",13330 +2022-12-01,"Missouri",20867 +2023-01-01,"South Dakota",2725 +2023-01-01,"West Virginia",3979 +2023-01-01,"Oregon",7518 +2023-01-01,"Washington",13468 +2023-01-01,"Connecticut",7518 +2023-01-01,"Indiana",22460 +2023-01-01,"Minnesota",25300 +2023-01-01,"Alabama",5328 +2023-01-01,"Louisiana",5338 +2023-01-01,"Arizona",8803 +2023-01-01,"Kentucky",7752 +2023-01-01,"Maryland",11694 +2023-01-01,"Wisconsin",22232 +2023-01-01,"Wyoming",2909 +2023-01-01,"Idaho",5829 +2023-01-01,"District of Columbia",1812 +2023-01-01,"Texas",37332 +2023-01-01,"North Dakota",2549 +2023-01-01,"Rhode Island",3153 +2023-01-01,"Iowa",11544 +2023-01-01,"South Carolina",6472 +2023-01-01,"Montana",NA +2023-01-01,"New Mexico",7319 +2023-01-01,"Utah",13917 +2023-01-01,"Tennessee",13041 +2023-01-01,"Georgia",20505 +2023-01-01,"Nebraska",7141 +2023-01-01,"Alaska",2670 +2023-01-01,"Illinois",66904 +2023-01-01,"Ohio",47467 +2023-01-01,"California",73931 +2023-01-01,"Kansas",11818 +2023-01-01,"Virginia",12745 +2023-01-01,"Michigan",49968 +2023-01-01,"New Hampshire",1166 +2023-01-01,"Oklahoma",11432 +2023-01-01,"Arkansas",5765 +2023-01-01,"Colorado",26955 +2023-01-01,"Pennsylvania",34468 +2023-01-01,"Hawaii",54 +2023-01-01,"Florida",NA +2023-01-01,"Maine",482 +2023-01-01,"New York",67634 +2023-01-01,"New Jersey",35935 +2023-01-01,"Delaware",1919 +2023-01-01,"North Carolina",12337 +2023-01-01,"Vermont",583 +2023-01-01,"Mississippi",NA +2023-01-01,"Nevada",8762 +2023-01-01,"Massachusetts",17727 +2023-01-01,"U.S.",800256 +2023-01-01,"Missouri",19031 diff --git a/csv/usgas.csv b/csv/usgas.csv new file mode 100644 index 0000000..3250600 --- /dev/null +++ b/csv/usgas.csv @@ -0,0 +1,92784 @@ +"date","process","state","state_abb","y" +1973-01-01,"Commercial Consumption","U.S.","U.S.",392315 +1973-01-01,"Residential Consumption","U.S.","U.S.",843900 +1973-02-01,"Commercial Consumption","U.S.","U.S.",394281 +1973-02-01,"Residential Consumption","U.S.","U.S.",747331 +1973-03-01,"Commercial Consumption","U.S.","U.S.",310799 +1973-03-01,"Residential Consumption","U.S.","U.S.",648504 +1973-04-01,"Commercial Consumption","U.S.","U.S.",231943 +1973-04-01,"Residential Consumption","U.S.","U.S.",465867 +1973-05-01,"Commercial Consumption","U.S.","U.S.",174258 +1973-05-01,"Residential Consumption","U.S.","U.S.",326313 +1973-06-01,"Commercial Consumption","U.S.","U.S.",135165 +1973-06-01,"Residential Consumption","U.S.","U.S.",207172 +1973-07-01,"Commercial Consumption","U.S.","U.S.",107728 +1973-07-01,"Residential Consumption","U.S.","U.S.",150349 +1973-08-01,"Commercial Consumption","U.S.","U.S.",105681 +1973-08-01,"Residential Consumption","U.S.","U.S.",142498 +1973-09-01,"Commercial Consumption","U.S.","U.S.",103831 +1973-09-01,"Residential Consumption","U.S.","U.S.",159378 +1973-10-01,"Commercial Consumption","U.S.","U.S.",126540 +1973-10-01,"Residential Consumption","U.S.","U.S.",205013 +1973-11-01,"Commercial Consumption","U.S.","U.S.",216762 +1973-11-01,"Residential Consumption","U.S.","U.S.",392459 +1973-12-01,"Commercial Consumption","U.S.","U.S.",297734 +1973-12-01,"Residential Consumption","U.S.","U.S.",590602 +1974-01-01,"Commercial Consumption","U.S.","U.S.",406440 +1974-01-01,"Residential Consumption","U.S.","U.S.",816943 +1974-02-01,"Commercial Consumption","U.S.","U.S.",335562 +1974-02-01,"Residential Consumption","U.S.","U.S.",688478 +1974-03-01,"Commercial Consumption","U.S.","U.S.",301588 +1974-03-01,"Residential Consumption","U.S.","U.S.",597641 +1974-04-01,"Commercial Consumption","U.S.","U.S.",243041 +1974-04-01,"Residential Consumption","U.S.","U.S.",482013 +1974-05-01,"Commercial Consumption","U.S.","U.S.",165233 +1974-05-01,"Residential Consumption","U.S.","U.S.",315920 +1974-06-01,"Commercial Consumption","U.S.","U.S.",128032 +1974-06-01,"Residential Consumption","U.S.","U.S.",215382 +1974-07-01,"Commercial Consumption","U.S.","U.S.",109694 +1974-07-01,"Residential Consumption","U.S.","U.S.",166289 +1974-08-01,"Commercial Consumption","U.S.","U.S.",107828 +1974-08-01,"Residential Consumption","U.S.","U.S.",142086 +1974-09-01,"Commercial Consumption","U.S.","U.S.",106510 +1974-09-01,"Residential Consumption","U.S.","U.S.",154824 +1974-10-01,"Commercial Consumption","U.S.","U.S.",143295 +1974-10-01,"Residential Consumption","U.S.","U.S.",235176 +1974-11-01,"Commercial Consumption","U.S.","U.S.",199514 +1974-11-01,"Residential Consumption","U.S.","U.S.",358546 +1974-12-01,"Commercial Consumption","U.S.","U.S.",308879 +1974-12-01,"Residential Consumption","U.S.","U.S.",612830 +1975-01-01,"Commercial Consumption","U.S.","U.S.",346998 +1975-01-01,"Residential Consumption","U.S.","U.S.",750713 +1975-02-01,"Commercial Consumption","U.S.","U.S.",345520 +1975-02-01,"Residential Consumption","U.S.","U.S.",732408 +1975-03-01,"Commercial Consumption","U.S.","U.S.",312362 +1975-03-01,"Residential Consumption","U.S.","U.S.",677687 +1975-04-01,"Commercial Consumption","U.S.","U.S.",289341 +1975-04-01,"Residential Consumption","U.S.","U.S.",596831 +1975-05-01,"Commercial Consumption","U.S.","U.S.",164629 +1975-05-01,"Residential Consumption","U.S.","U.S.",337326 +1975-06-01,"Commercial Consumption","U.S.","U.S.",119960 +1975-06-01,"Residential Consumption","U.S.","U.S.",203708 +1975-07-01,"Commercial Consumption","U.S.","U.S.",107077 +1975-07-01,"Residential Consumption","U.S.","U.S.",167293 +1975-08-01,"Commercial Consumption","U.S.","U.S.",104332 +1975-08-01,"Residential Consumption","U.S.","U.S.",143604 +1975-09-01,"Commercial Consumption","U.S.","U.S.",106655 +1975-09-01,"Residential Consumption","U.S.","U.S.",153980 +1975-10-01,"Commercial Consumption","U.S.","U.S.",133055 +1975-10-01,"Residential Consumption","U.S.","U.S.",223383 +1975-11-01,"Commercial Consumption","U.S.","U.S.",179518 +1975-11-01,"Residential Consumption","U.S.","U.S.",329397 +1975-12-01,"Commercial Consumption","U.S.","U.S.",298845 +1975-12-01,"Residential Consumption","U.S.","U.S.",607794 +1976-01-01,"Commercial Consumption","U.S.","U.S.",405483 +1976-01-01,"Residential Consumption","U.S.","U.S.",843235 +1976-02-01,"Commercial Consumption","U.S.","U.S.",364339 +1976-02-01,"Residential Consumption","U.S.","U.S.",739592 +1976-03-01,"Commercial Consumption","U.S.","U.S.",285912 +1976-03-01,"Residential Consumption","U.S.","U.S.",578491 +1976-04-01,"Commercial Consumption","U.S.","U.S.",221383 +1976-04-01,"Residential Consumption","U.S.","U.S.",442648 +1976-05-01,"Commercial Consumption","U.S.","U.S.",169209 +1976-05-01,"Residential Consumption","U.S.","U.S.",315760 +1976-06-01,"Commercial Consumption","U.S.","U.S.",129058 +1976-06-01,"Residential Consumption","U.S.","U.S.",220871 +1976-07-01,"Commercial Consumption","U.S.","U.S.",112070 +1976-07-01,"Residential Consumption","U.S.","U.S.",170257 +1976-08-01,"Commercial Consumption","U.S.","U.S.",113174 +1976-08-01,"Residential Consumption","U.S.","U.S.",140774 +1976-09-01,"Commercial Consumption","U.S.","U.S.",113284 +1976-09-01,"Residential Consumption","U.S.","U.S.",152346 +1976-10-01,"Commercial Consumption","U.S.","U.S.",145824 +1976-10-01,"Residential Consumption","U.S.","U.S.",241902 +1976-11-01,"Commercial Consumption","U.S.","U.S.",252710 +1976-11-01,"Residential Consumption","U.S.","U.S.",471326 +1976-12-01,"Commercial Consumption","U.S.","U.S.",355294 +1976-12-01,"Residential Consumption","U.S.","U.S.",734158 +1977-01-01,"Commercial Consumption","U.S.","U.S.",413377 +1977-01-01,"Residential Consumption","U.S.","U.S.",936793 +1977-02-01,"Commercial Consumption","U.S.","U.S.",366311 +1977-02-01,"Residential Consumption","U.S.","U.S.",823439 +1977-03-01,"Commercial Consumption","U.S.","U.S.",263862 +1977-03-01,"Residential Consumption","U.S.","U.S.",560779 +1977-04-01,"Commercial Consumption","U.S.","U.S.",202477 +1977-04-01,"Residential Consumption","U.S.","U.S.",401258 +1977-05-01,"Commercial Consumption","U.S.","U.S.",142460 +1977-05-01,"Residential Consumption","U.S.","U.S.",251756 +1977-06-01,"Commercial Consumption","U.S.","U.S.",121297 +1977-06-01,"Residential Consumption","U.S.","U.S.",182212 +1977-07-01,"Commercial Consumption","U.S.","U.S.",113400 +1977-07-01,"Residential Consumption","U.S.","U.S.",146064 +1977-08-01,"Commercial Consumption","U.S.","U.S.",108977 +1977-08-01,"Residential Consumption","U.S.","U.S.",131330 +1977-09-01,"Commercial Consumption","U.S.","U.S.",108977 +1977-09-01,"Residential Consumption","U.S.","U.S.",140661 +1977-10-01,"Commercial Consumption","U.S.","U.S.",139407 +1977-10-01,"Residential Consumption","U.S.","U.S.",223663 +1977-11-01,"Commercial Consumption","U.S.","U.S.",200897 +1977-11-01,"Residential Consumption","U.S.","U.S.",371888 +1977-12-01,"Commercial Consumption","U.S.","U.S.",319351 +1977-12-01,"Residential Consumption","U.S.","U.S.",651640 +1978-01-01,"Commercial Consumption","U.S.","U.S.",390741 +1978-01-01,"Residential Consumption","U.S.","U.S.",816411 +1978-02-01,"Commercial Consumption","U.S.","U.S.",400991 +1978-02-01,"Residential Consumption","U.S.","U.S.",837768 +1978-03-01,"Commercial Consumption","U.S.","U.S.",345141 +1978-03-01,"Residential Consumption","U.S.","U.S.",680825 +1978-04-01,"Commercial Consumption","U.S.","U.S.",224969 +1978-04-01,"Residential Consumption","U.S.","U.S.",445702 +1978-05-01,"Commercial Consumption","U.S.","U.S.",166190 +1978-05-01,"Residential Consumption","U.S.","U.S.",307604 +1978-06-01,"Commercial Consumption","U.S.","U.S.",119963 +1978-06-01,"Residential Consumption","U.S.","U.S.",184388 +1978-07-01,"Commercial Consumption","U.S.","U.S.",106471 +1978-07-01,"Residential Consumption","U.S.","U.S.",146989 +1978-08-01,"Commercial Consumption","U.S.","U.S.",100928 +1978-08-01,"Residential Consumption","U.S.","U.S.",130270 +1978-09-01,"Commercial Consumption","U.S.","U.S.",102915 +1978-09-01,"Residential Consumption","U.S.","U.S.",135489 +1978-10-01,"Commercial Consumption","U.S.","U.S.",133873 +1978-10-01,"Residential Consumption","U.S.","U.S.",209515 +1978-11-01,"Commercial Consumption","U.S.","U.S.",196207 +1978-11-01,"Residential Consumption","U.S.","U.S.",376411 +1978-12-01,"Commercial Consumption","U.S.","U.S.",312718 +1978-12-01,"Residential Consumption","U.S.","U.S.",631636 +1979-01-01,"Commercial Consumption","U.S.","U.S.",431943 +1979-01-01,"Residential Consumption","U.S.","U.S.",867301 +1979-02-01,"Commercial Consumption","U.S.","U.S.",444867 +1979-02-01,"Residential Consumption","U.S.","U.S.",892145 +1979-03-01,"Commercial Consumption","U.S.","U.S.",349164 +1979-03-01,"Residential Consumption","U.S.","U.S.",659720 +1979-04-01,"Commercial Consumption","U.S.","U.S.",256024 +1979-04-01,"Residential Consumption","U.S.","U.S.",463492 +1979-05-01,"Commercial Consumption","U.S.","U.S.",170571 +1979-05-01,"Residential Consumption","U.S.","U.S.",287548 +1979-06-01,"Commercial Consumption","U.S.","U.S.",126564 +1979-06-01,"Residential Consumption","U.S.","U.S.",189143 +1979-07-01,"Commercial Consumption","U.S.","U.S.",106844 +1979-07-01,"Residential Consumption","U.S.","U.S.",147607 +1979-08-01,"Commercial Consumption","U.S.","U.S.",103167 +1979-08-01,"Residential Consumption","U.S.","U.S.",133244 +1979-09-01,"Commercial Consumption","U.S.","U.S.",106175 +1979-09-01,"Residential Consumption","U.S.","U.S.",137611 +1979-10-01,"Commercial Consumption","U.S.","U.S.",142161 +1979-10-01,"Residential Consumption","U.S.","U.S.",215151 +1979-11-01,"Commercial Consumption","U.S.","U.S.",222712 +1979-11-01,"Residential Consumption","U.S.","U.S.",378577 +1979-12-01,"Commercial Consumption","U.S.","U.S.",325768 +1979-12-01,"Residential Consumption","U.S.","U.S.",593825 +1980-01-01,"Commercial Consumption","U.S.","U.S.",356000 +1980-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93000 +1980-01-01,"Residential Consumption","U.S.","U.S.",722000 +1980-02-01,"Commercial Consumption","U.S.","U.S.",380000 +1980-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87000 +1980-02-01,"Residential Consumption","U.S.","U.S.",774000 +1980-03-01,"Commercial Consumption","U.S.","U.S.",344000 +1980-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93000 +1980-03-01,"Residential Consumption","U.S.","U.S.",673000 +1980-04-01,"Commercial Consumption","U.S.","U.S.",239000 +1980-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",85000 +1980-04-01,"Residential Consumption","U.S.","U.S.",451000 +1980-05-01,"Commercial Consumption","U.S.","U.S.",155000 +1980-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86000 +1980-05-01,"Residential Consumption","U.S.","U.S.",279000 +1980-06-01,"Commercial Consumption","U.S.","U.S.",123000 +1980-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",81000 +1980-06-01,"Residential Consumption","U.S.","U.S.",191000 +1980-07-01,"Commercial Consumption","U.S.","U.S.",103000 +1980-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",82000 +1980-07-01,"Residential Consumption","U.S.","U.S.",145000 +1980-08-01,"Commercial Consumption","U.S.","U.S.",101000 +1980-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",80000 +1980-08-01,"Residential Consumption","U.S.","U.S.",129000 +1980-09-01,"Commercial Consumption","U.S.","U.S.",106000 +1980-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",80000 +1980-09-01,"Residential Consumption","U.S.","U.S.",135000 +1980-10-01,"Commercial Consumption","U.S.","U.S.",140000 +1980-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",84000 +1980-10-01,"Residential Consumption","U.S.","U.S.",214000 +1980-11-01,"Commercial Consumption","U.S.","U.S.",224000 +1980-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",84000 +1980-11-01,"Residential Consumption","U.S.","U.S.",392000 +1980-12-01,"Commercial Consumption","U.S.","U.S.",340000 +1980-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91000 +1980-12-01,"Residential Consumption","U.S.","U.S.",646000 +1981-01-01,"Commercial Consumption","U.S.","U.S.",406000 +1981-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",81000 +1981-01-01,"Residential Consumption","U.S.","U.S.",831000 +1981-02-01,"Commercial Consumption","U.S.","U.S.",355000 +1981-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",73000 +1981-02-01,"Residential Consumption","U.S.","U.S.",740000 +1981-03-01,"Commercial Consumption","U.S.","U.S.",304000 +1981-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",81000 +1981-03-01,"Residential Consumption","U.S.","U.S.",585000 +1981-04-01,"Commercial Consumption","U.S.","U.S.",204000 +1981-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",78000 +1981-04-01,"Residential Consumption","U.S.","U.S.",372000 +1981-05-01,"Commercial Consumption","U.S.","U.S.",151000 +1981-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",79000 +1981-05-01,"Residential Consumption","U.S.","U.S.",260000 +1981-06-01,"Commercial Consumption","U.S.","U.S.",116000 +1981-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",76000 +1981-06-01,"Residential Consumption","U.S.","U.S.",168000 +1981-07-01,"Commercial Consumption","U.S.","U.S.",99000 +1981-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",77000 +1981-07-01,"Residential Consumption","U.S.","U.S.",136000 +1981-08-01,"Commercial Consumption","U.S.","U.S.",107000 +1981-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",79000 +1981-08-01,"Residential Consumption","U.S.","U.S.",123000 +1981-09-01,"Commercial Consumption","U.S.","U.S.",107000 +1981-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",73000 +1981-09-01,"Residential Consumption","U.S.","U.S.",133000 +1981-10-01,"Commercial Consumption","U.S.","U.S.",148000 +1981-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",76000 +1981-10-01,"Residential Consumption","U.S.","U.S.",232000 +1981-11-01,"Commercial Consumption","U.S.","U.S.",205000 +1981-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",74000 +1981-11-01,"Residential Consumption","U.S.","U.S.",364000 +1981-12-01,"Commercial Consumption","U.S.","U.S.",318000 +1981-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",80000 +1981-12-01,"Residential Consumption","U.S.","U.S.",601000 +1982-01-01,"Commercial Consumption","U.S.","U.S.",443000 +1982-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104000 +1982-01-01,"Residential Consumption","U.S.","U.S.",866000 +1982-02-01,"Commercial Consumption","U.S.","U.S.",404000 +1982-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95000 +1982-02-01,"Residential Consumption","U.S.","U.S.",786000 +1982-03-01,"Commercial Consumption","U.S.","U.S.",321000 +1982-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100000 +1982-03-01,"Residential Consumption","U.S.","U.S.",602000 +1982-04-01,"Commercial Consumption","U.S.","U.S.",236000 +1982-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95000 +1982-04-01,"Residential Consumption","U.S.","U.S.",451000 +1982-05-01,"Commercial Consumption","U.S.","U.S.",139000 +1982-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93000 +1982-05-01,"Residential Consumption","U.S.","U.S.",233000 +1982-06-01,"Commercial Consumption","U.S.","U.S.",107000 +1982-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90000 +1982-06-01,"Residential Consumption","U.S.","U.S.",165000 +1982-07-01,"Commercial Consumption","U.S.","U.S.",101000 +1982-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91000 +1982-07-01,"Residential Consumption","U.S.","U.S.",138000 +1982-08-01,"Commercial Consumption","U.S.","U.S.",105000 +1982-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89000 +1982-08-01,"Residential Consumption","U.S.","U.S.",123000 +1982-09-01,"Commercial Consumption","U.S.","U.S.",105000 +1982-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86000 +1982-09-01,"Residential Consumption","U.S.","U.S.",136000 +1982-10-01,"Commercial Consumption","U.S.","U.S.",130000 +1982-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87000 +1982-10-01,"Residential Consumption","U.S.","U.S.",204000 +1982-11-01,"Commercial Consumption","U.S.","U.S.",217000 +1982-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88000 +1982-11-01,"Residential Consumption","U.S.","U.S.",372000 +1982-12-01,"Commercial Consumption","U.S.","U.S.",298000 +1982-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90000 +1982-12-01,"Residential Consumption","U.S.","U.S.",557000 +1983-01-01,"Commercial Consumption","U.S.","U.S.",418467 +1983-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92648 +1983-01-01,"Residential Consumption","U.S.","U.S.",849621 +1983-02-01,"Commercial Consumption","U.S.","U.S.",340171 +1983-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",79931 +1983-02-01,"Residential Consumption","U.S.","U.S.",671628 +1983-03-01,"Commercial Consumption","U.S.","U.S.",298259 +1983-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",82656 +1983-03-01,"Residential Consumption","U.S.","U.S.",580985 +1983-04-01,"Commercial Consumption","U.S.","U.S.",233811 +1983-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",80840 +1983-04-01,"Residential Consumption","U.S.","U.S.",444247 +1983-05-01,"Commercial Consumption","U.S.","U.S.",154185 +1983-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",80840 +1983-05-01,"Residential Consumption","U.S.","U.S.",276395 +1983-06-01,"Commercial Consumption","U.S.","U.S.",105380 +1983-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",78115 +1983-06-01,"Residential Consumption","U.S.","U.S.",164337 +1983-07-01,"Commercial Consumption","U.S.","U.S.",94574 +1983-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",80840 +1983-07-01,"Residential Consumption","U.S.","U.S.",124457 +1983-08-01,"Commercial Consumption","U.S.","U.S.",95494 +1983-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",79931 +1983-08-01,"Residential Consumption","U.S.","U.S.",114458 +1983-09-01,"Commercial Consumption","U.S.","U.S.",98798 +1983-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",76298 +1983-09-01,"Residential Consumption","U.S.","U.S.",122538 +1983-10-01,"Commercial Consumption","U.S.","U.S.",124366 +1983-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",79931 +1983-10-01,"Residential Consumption","U.S.","U.S.",175875 +1983-11-01,"Commercial Consumption","U.S.","U.S.",185922 +1983-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",79931 +1983-11-01,"Residential Consumption","U.S.","U.S.",310895 +1983-12-01,"Commercial Consumption","U.S.","U.S.",283120 +1983-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86289 +1983-12-01,"Residential Consumption","U.S.","U.S.",545164 +1984-01-01,"Commercial Consumption","U.S.","U.S.",436748 +1984-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101989 +1984-01-01,"Residential Consumption","U.S.","U.S.",886307 +1984-02-01,"Commercial Consumption","U.S.","U.S.",354468 +1984-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87990 +1984-02-01,"Residential Consumption","U.S.","U.S.",699925 +1984-03-01,"Commercial Consumption","U.S.","U.S.",310657 +1984-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90990 +1984-03-01,"Residential Consumption","U.S.","U.S.",605372 +1984-04-01,"Commercial Consumption","U.S.","U.S.",243353 +1984-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88990 +1984-04-01,"Residential Consumption","U.S.","U.S.",462950 +1984-05-01,"Commercial Consumption","U.S.","U.S.",159502 +1984-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88990 +1984-05-01,"Residential Consumption","U.S.","U.S.",286928 +1984-06-01,"Commercial Consumption","U.S.","U.S.",108290 +1984-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",85990 +1984-06-01,"Residential Consumption","U.S.","U.S.",169942 +1984-07-01,"Commercial Consumption","U.S.","U.S.",96951 +1984-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88990 +1984-07-01,"Residential Consumption","U.S.","U.S.",128314 +1984-08-01,"Commercial Consumption","U.S.","U.S.",98111 +1984-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87990 +1984-08-01,"Residential Consumption","U.S.","U.S.",118045 +1984-09-01,"Commercial Consumption","U.S.","U.S.",101386 +1984-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",83991 +1984-09-01,"Residential Consumption","U.S.","U.S.",126625 +1984-10-01,"Commercial Consumption","U.S.","U.S.",127912 +1984-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87990 +1984-10-01,"Residential Consumption","U.S.","U.S.",182438 +1984-11-01,"Commercial Consumption","U.S.","U.S.",193132 +1984-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87990 +1984-11-01,"Residential Consumption","U.S.","U.S.",322693 +1984-12-01,"Commercial Consumption","U.S.","U.S.",293733 +1984-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94990 +1984-12-01,"Residential Consumption","U.S.","U.S.",565927 +1985-01-01,"Commercial Consumption","U.S.","U.S.",372046 +1985-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90910 +1985-01-01,"Residential Consumption","U.S.","U.S.",743223 +1985-02-01,"Commercial Consumption","U.S.","U.S.",411603 +1985-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",83917 +1985-02-01,"Residential Consumption","U.S.","U.S.",837245 +1985-03-01,"Commercial Consumption","U.S.","U.S.",290467 +1985-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",82918 +1985-03-01,"Residential Consumption","U.S.","U.S.",566386 +1985-04-01,"Commercial Consumption","U.S.","U.S.",205742 +1985-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",78922 +1985-04-01,"Residential Consumption","U.S.","U.S.",396625 +1985-05-01,"Commercial Consumption","U.S.","U.S.",127540 +1985-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",77923 +1985-05-01,"Residential Consumption","U.S.","U.S.",212164 +1985-06-01,"Commercial Consumption","U.S.","U.S.",99871 +1985-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",74926 +1985-06-01,"Residential Consumption","U.S.","U.S.",156549 +1985-07-01,"Commercial Consumption","U.S.","U.S.",95738 +1985-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",76924 +1985-07-01,"Residential Consumption","U.S.","U.S.",129851 +1985-08-01,"Commercial Consumption","U.S.","U.S.",93478 +1985-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",76924 +1985-08-01,"Residential Consumption","U.S.","U.S.",118932 +1985-09-01,"Commercial Consumption","U.S.","U.S.",98139 +1985-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",74926 +1985-09-01,"Residential Consumption","U.S.","U.S.",129314 +1985-10-01,"Commercial Consumption","U.S.","U.S.",124697 +1985-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",77923 +1985-10-01,"Residential Consumption","U.S.","U.S.",189799 +1985-11-01,"Commercial Consumption","U.S.","U.S.",179784 +1985-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",78922 +1985-11-01,"Residential Consumption","U.S.","U.S.",306427 +1985-12-01,"Commercial Consumption","U.S.","U.S.",333279 +1985-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90910 +1985-12-01,"Residential Consumption","U.S.","U.S.",646863 +1986-01-01,"Commercial Consumption","U.S.","U.S.",391955 +1986-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88954 +1986-01-01,"Residential Consumption","U.S.","U.S.",790569 +1986-02-01,"Commercial Consumption","U.S.","U.S.",344992 +1986-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",76960 +1986-02-01,"Residential Consumption","U.S.","U.S.",684541 +1986-03-01,"Commercial Consumption","U.S.","U.S.",291178 +1986-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",81958 +1986-03-01,"Residential Consumption","U.S.","U.S.",579901 +1986-04-01,"Commercial Consumption","U.S.","U.S.",189136 +1986-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",72962 +1986-04-01,"Residential Consumption","U.S.","U.S.",363277 +1986-05-01,"Commercial Consumption","U.S.","U.S.",130876 +1986-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",74961 +1986-05-01,"Residential Consumption","U.S.","U.S.",236207 +1986-06-01,"Commercial Consumption","U.S.","U.S.",98627 +1986-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",70963 +1986-06-01,"Residential Consumption","U.S.","U.S.",154889 +1986-07-01,"Commercial Consumption","U.S.","U.S.",88824 +1986-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",73962 +1986-07-01,"Residential Consumption","U.S.","U.S.",126494 +1986-08-01,"Commercial Consumption","U.S.","U.S.",88740 +1986-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",73962 +1986-08-01,"Residential Consumption","U.S.","U.S.",117487 +1986-09-01,"Commercial Consumption","U.S.","U.S.",90880 +1986-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",69964 +1986-09-01,"Residential Consumption","U.S.","U.S.",130597 +1986-10-01,"Commercial Consumption","U.S.","U.S.",115656 +1986-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",73962 +1986-10-01,"Residential Consumption","U.S.","U.S.",185265 +1986-11-01,"Commercial Consumption","U.S.","U.S.",188912 +1986-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",78959 +1986-11-01,"Residential Consumption","U.S.","U.S.",345659 +1986-12-01,"Commercial Consumption","U.S.","U.S.",298559 +1986-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",84956 +1986-12-01,"Residential Consumption","U.S.","U.S.",599085 +1987-01-01,"Commercial Consumption","U.S.","U.S.",384495 +1987-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",107628 +1987-01-01,"Residential Consumption","U.S.","U.S.",741338 +1987-02-01,"Commercial Consumption","U.S.","U.S.",363047 +1987-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96459 +1987-02-01,"Residential Consumption","U.S.","U.S.",688699 +1987-03-01,"Commercial Consumption","U.S.","U.S.",304877 +1987-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101536 +1987-03-01,"Residential Consumption","U.S.","U.S.",575299 +1987-04-01,"Commercial Consumption","U.S.","U.S.",214317 +1987-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95443 +1987-04-01,"Residential Consumption","U.S.","U.S.",401848 +1987-05-01,"Commercial Consumption","U.S.","U.S.",133011 +1987-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94428 +1987-05-01,"Residential Consumption","U.S.","U.S.",222779 +1987-06-01,"Commercial Consumption","U.S.","U.S.",97398 +1987-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90367 +1987-06-01,"Residential Consumption","U.S.","U.S.",146812 +1987-07-01,"Commercial Consumption","U.S.","U.S.",93805 +1987-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92397 +1987-07-01,"Residential Consumption","U.S.","U.S.",125625 +1987-08-01,"Commercial Consumption","U.S.","U.S.",90264 +1987-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94428 +1987-08-01,"Residential Consumption","U.S.","U.S.",117471 +1987-09-01,"Commercial Consumption","U.S.","U.S.",100591 +1987-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90367 +1987-09-01,"Residential Consumption","U.S.","U.S.",126348 +1987-10-01,"Commercial Consumption","U.S.","U.S.",141124 +1987-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95443 +1987-10-01,"Residential Consumption","U.S.","U.S.",222825 +1987-11-01,"Commercial Consumption","U.S.","U.S.",202137 +1987-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100520 +1987-11-01,"Residential Consumption","U.S.","U.S.",354076 +1987-12-01,"Commercial Consumption","U.S.","U.S.",304998 +1987-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90367 +1987-12-01,"Residential Consumption","U.S.","U.S.",591715 +1988-01-01,"Commercial Consumption","U.S.","U.S.",424341 +1988-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101989 +1988-01-01,"Residential Consumption","U.S.","U.S.",852076 +1988-02-01,"Commercial Consumption","U.S.","U.S.",391828 +1988-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92990 +1988-02-01,"Residential Consumption","U.S.","U.S.",754526 +1988-03-01,"Commercial Consumption","U.S.","U.S.",320198 +1988-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96990 +1988-03-01,"Residential Consumption","U.S.","U.S.",596846 +1988-04-01,"Commercial Consumption","U.S.","U.S.",223056 +1988-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87991 +1988-04-01,"Residential Consumption","U.S.","U.S.",400177 +1988-05-01,"Commercial Consumption","U.S.","U.S.",157765 +1988-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90990 +1988-05-01,"Residential Consumption","U.S.","U.S.",257781 +1988-06-01,"Commercial Consumption","U.S.","U.S.",117552 +1988-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",85991 +1988-06-01,"Residential Consumption","U.S.","U.S.",152204 +1988-07-01,"Commercial Consumption","U.S.","U.S.",109305 +1988-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86991 +1988-07-01,"Residential Consumption","U.S.","U.S.",122908 +1988-08-01,"Commercial Consumption","U.S.","U.S.",113303 +1988-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87991 +1988-08-01,"Residential Consumption","U.S.","U.S.",114411 +1988-09-01,"Commercial Consumption","U.S.","U.S.",112517 +1988-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",82991 +1988-09-01,"Residential Consumption","U.S.","U.S.",124739 +1988-10-01,"Commercial Consumption","U.S.","U.S.",155784 +1988-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90990 +1988-10-01,"Residential Consumption","U.S.","U.S.",232157 +1988-11-01,"Commercial Consumption","U.S.","U.S.",224664 +1988-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91990 +1988-11-01,"Residential Consumption","U.S.","U.S.",391420 +1988-12-01,"Commercial Consumption","U.S.","U.S.",320153 +1988-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97990 +1988-12-01,"Residential Consumption","U.S.","U.S.",631086 +1989-01-01,"Commercial Consumption","Oregon","OR",2884 +1989-01-01,"Commercial Consumption","Virginia","VA",6164 +1989-01-01,"Commercial Consumption","Rhode Island","RI",1032 +1989-01-01,"Commercial Consumption","Arizona","AZ",3945 +1989-01-01,"Commercial Consumption","Washington","WA",5343 +1989-01-01,"Commercial Consumption","South Dakota","SD",1339 +1989-01-01,"Commercial Consumption","New Jersey","NJ",16826 +1989-01-01,"Commercial Consumption","Florida","FL",3493 +1989-01-01,"Commercial Consumption","Alabama","AL",3434 +1989-01-01,"Commercial Consumption","Louisiana","LA",3399 +1989-01-01,"Commercial Consumption","Illinois","IL",27838 +1989-01-01,"Commercial Consumption","Colorado","CO",10522 +1989-01-01,"Commercial Consumption","New Hampshire","NH",842 +1989-01-01,"Commercial Consumption","Maine","ME",229 +1989-01-01,"Commercial Consumption","Iowa","IA",7372 +1989-01-01,"Commercial Consumption","Alaska","AK",2500 +1989-01-01,"Commercial Consumption","California","CA",28465 +1989-01-01,"Commercial Consumption","Michigan","MI",26553 +1989-01-01,"Commercial Consumption","West Virginia","WV",3177 +1989-01-01,"Commercial Consumption","North Dakota","ND",1789 +1989-01-01,"Commercial Consumption","Utah","UT",3283 +1989-01-01,"Commercial Consumption","Pennsylvania","PA",19310 +1989-01-01,"Commercial Consumption","Missouri","MO",10118 +1989-01-01,"Commercial Consumption","Montana","MT",2029 +1989-01-01,"Commercial Consumption","U.S.","U.S.",375898 +1989-01-01,"Commercial Consumption","Texas","TX",21163 +1989-01-01,"Commercial Consumption","Idaho","ID",1567 +1989-01-01,"Commercial Consumption","Delaware","DE",632 +1989-01-01,"Commercial Consumption","South Carolina","SC",2176 +1989-01-01,"Commercial Consumption","New Mexico","NM",5242 +1989-01-01,"Commercial Consumption","Massachusetts","MA",7394 +1989-01-01,"Commercial Consumption","Georgia","GA",7127 +1989-01-01,"Commercial Consumption","Arkansas","AR",3919 +1989-01-01,"Commercial Consumption","New York","NY",25565 +1989-01-01,"Commercial Consumption","Nebraska","NE",4202 +1989-01-01,"Commercial Consumption","Tennessee","TN",6960 +1989-01-01,"Commercial Consumption","Indiana","IN",11170 +1989-01-01,"Commercial Consumption","District of Columbia","DC",2133 +1989-01-01,"Commercial Consumption","Minnesota","MN",13112 +1989-01-01,"Commercial Consumption","Wisconsin","WI",10596 +1989-01-01,"Commercial Consumption","Vermont","VT",315 +1989-01-01,"Commercial Consumption","Hawaii","HI",187 +1989-01-01,"Commercial Consumption","Wyoming","WY",1357 +1989-01-01,"Commercial Consumption","Maryland","MD",3976 +1989-01-01,"Commercial Consumption","Kansas","KS",7155 +1989-01-01,"Commercial Consumption","Ohio","OH",23636 +1989-01-01,"Commercial Consumption","Mississippi","MS",2372 +1989-01-01,"Commercial Consumption","Nevada","NV",2156 +1989-01-01,"Commercial Consumption","North Carolina","NC",4784 +1989-01-01,"Commercial Consumption","Oklahoma","OK",6069 +1989-01-01,"Commercial Consumption","Kentucky","KY",5139 +1989-01-01,"Commercial Consumption","Connecticut","CT",3909 +1989-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94991 +1989-01-01,"Residential Consumption","Louisiana","LA",8279 +1989-01-01,"Residential Consumption","Tennessee","TN",8323 +1989-01-01,"Residential Consumption","Nebraska","NE",7006 +1989-01-01,"Residential Consumption","Pennsylvania","PA",42523 +1989-01-01,"Residential Consumption","Florida","FL",1709 +1989-01-01,"Residential Consumption","Montana","MT",2803 +1989-01-01,"Residential Consumption","Washington","WA",6051 +1989-01-01,"Residential Consumption","California","CA",87958 +1989-01-01,"Residential Consumption","Wyoming","WY",1923 +1989-01-01,"Residential Consumption","New York","NY",56307 +1989-01-01,"Residential Consumption","Mississippi","MS",3995 +1989-01-01,"Residential Consumption","Massachusetts","MA",17593 +1989-01-01,"Residential Consumption","West Virginia","WV",5838 +1989-01-01,"Residential Consumption","South Carolina","SC",3768 +1989-01-01,"Residential Consumption","Rhode Island","RI",2864 +1989-01-01,"Residential Consumption","South Dakota","SD",1762 +1989-01-01,"Residential Consumption","New Mexico","NM",5623 +1989-01-01,"Residential Consumption","Idaho","ID",1619 +1989-01-01,"Residential Consumption","Iowa","IA",12794 +1989-01-01,"Residential Consumption","Wisconsin","WI",19372 +1989-01-01,"Residential Consumption","District of Columbia","DC",2903 +1989-01-01,"Residential Consumption","Oregon","OR",3632 +1989-01-01,"Residential Consumption","Ohio","OH",49326 +1989-01-01,"Residential Consumption","Michigan","MI",55928 +1989-01-01,"Residential Consumption","Maine","ME",92 +1989-01-01,"Residential Consumption","Oklahoma","OK",11577 +1989-01-01,"Residential Consumption","Missouri","MO",21508 +1989-01-01,"Residential Consumption","Alabama","AL",7406 +1989-01-01,"Residential Consumption","North Carolina","NC",6946 +1989-01-01,"Residential Consumption","Connecticut","CT",6412 +1989-01-01,"Residential Consumption","Vermont","VT",353 +1989-01-01,"Residential Consumption","Maryland","MD",12209 +1989-01-01,"Residential Consumption","Nevada","NV",3128 +1989-01-01,"Residential Consumption","North Dakota","ND",1660 +1989-01-01,"Residential Consumption","Arizona","AZ",6104 +1989-01-01,"Residential Consumption","Illinois","IL",74796 +1989-01-01,"Residential Consumption","Texas","TX",33465 +1989-01-01,"Residential Consumption","Hawaii","HI",51 +1989-01-01,"Residential Consumption","Virginia","VA",9913 +1989-01-01,"Residential Consumption","Utah","UT",8316 +1989-01-01,"Residential Consumption","New Jersey","NJ",31078 +1989-01-01,"Residential Consumption","New Hampshire","NH",1044 +1989-01-01,"Residential Consumption","Delaware","DE",1257 +1989-01-01,"Residential Consumption","U.S.","U.S.",751166 +1989-01-01,"Residential Consumption","Minnesota","MN",18926 +1989-01-01,"Residential Consumption","Georgia","GA",15116 +1989-01-01,"Residential Consumption","Indiana","IN",23991 +1989-01-01,"Residential Consumption","Arkansas","AR",6774 +1989-01-01,"Residential Consumption","Kentucky","KY",9700 +1989-01-01,"Residential Consumption","Colorado","CO",14966 +1989-01-01,"Residential Consumption","Kansas","KS",12686 +1989-01-01,"Residential Consumption","Alaska","AK",1793 +1989-02-01,"Commercial Consumption","West Virginia","WV",3265 +1989-02-01,"Commercial Consumption","New Mexico","NM",4499 +1989-02-01,"Commercial Consumption","New Hampshire","NH",753 +1989-02-01,"Commercial Consumption","Maine","ME",226 +1989-02-01,"Commercial Consumption","Mississippi","MS",2502 +1989-02-01,"Commercial Consumption","Minnesota","MN",13607 +1989-02-01,"Commercial Consumption","Utah","UT",3376 +1989-02-01,"Commercial Consumption","Oregon","OR",3283 +1989-02-01,"Commercial Consumption","New Jersey","NJ",15506 +1989-02-01,"Commercial Consumption","Texas","TX",22930 +1989-02-01,"Commercial Consumption","Ohio","OH",24435 +1989-02-01,"Commercial Consumption","Alaska","AK",2691 +1989-02-01,"Commercial Consumption","Nevada","NV",2125 +1989-02-01,"Commercial Consumption","Illinois","IL",29591 +1989-02-01,"Commercial Consumption","Wyoming","WY",1414 +1989-02-01,"Commercial Consumption","Nebraska","NE",4825 +1989-02-01,"Commercial Consumption","Colorado","CO",10845 +1989-02-01,"Commercial Consumption","South Dakota","SD",1454 +1989-02-01,"Commercial Consumption","Kansas","KS",7697 +1989-02-01,"Commercial Consumption","Connecticut","CT",3749 +1989-02-01,"Commercial Consumption","Alabama","AL",3514 +1989-02-01,"Commercial Consumption","Oklahoma","OK",7033 +1989-02-01,"Commercial Consumption","Massachusetts","MA",6984 +1989-02-01,"Commercial Consumption","Wisconsin","WI",10988 +1989-02-01,"Commercial Consumption","Kentucky","KY",5507 +1989-02-01,"Commercial Consumption","Maryland","MD",3700 +1989-02-01,"Commercial Consumption","Iowa","IA",7466 +1989-02-01,"Commercial Consumption","Hawaii","HI",178 +1989-02-01,"Commercial Consumption","California","CA",29564 +1989-02-01,"Commercial Consumption","Delaware","DE",605 +1989-02-01,"Commercial Consumption","Arizona","AZ",3572 +1989-02-01,"Commercial Consumption","District of Columbia","DC",2021 +1989-02-01,"Commercial Consumption","South Carolina","SC",1936 +1989-02-01,"Commercial Consumption","North Dakota","ND",1669 +1989-02-01,"Commercial Consumption","North Carolina","NC",4016 +1989-02-01,"Commercial Consumption","Virginia","VA",6056 +1989-02-01,"Commercial Consumption","Pennsylvania","PA",18682 +1989-02-01,"Commercial Consumption","U.S.","U.S.",379810 +1989-02-01,"Commercial Consumption","Florida","FL",3435 +1989-02-01,"Commercial Consumption","Idaho","ID",1575 +1989-02-01,"Commercial Consumption","Tennessee","TN",6840 +1989-02-01,"Commercial Consumption","Washington","WA",5561 +1989-02-01,"Commercial Consumption","Missouri","MO",10280 +1989-02-01,"Commercial Consumption","Vermont","VT",300 +1989-02-01,"Commercial Consumption","Rhode Island","RI",979 +1989-02-01,"Commercial Consumption","Michigan","MI",25448 +1989-02-01,"Commercial Consumption","Louisiana","LA",3365 +1989-02-01,"Commercial Consumption","Montana","MT",1923 +1989-02-01,"Commercial Consumption","Georgia","GA",7499 +1989-02-01,"Commercial Consumption","Arkansas","AR",4336 +1989-02-01,"Commercial Consumption","New York","NY",24630 +1989-02-01,"Commercial Consumption","Indiana","IN",11376 +1989-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87992 +1989-02-01,"Residential Consumption","South Carolina","SC",3029 +1989-02-01,"Residential Consumption","Virginia","VA",9446 +1989-02-01,"Residential Consumption","Michigan","MI",52459 +1989-02-01,"Residential Consumption","South Dakota","SD",1865 +1989-02-01,"Residential Consumption","Nevada","NV",2971 +1989-02-01,"Residential Consumption","Minnesota","MN",19064 +1989-02-01,"Residential Consumption","Indiana","IN",23940 +1989-02-01,"Residential Consumption","Colorado","CO",15278 +1989-02-01,"Residential Consumption","Mississippi","MS",4030 +1989-02-01,"Residential Consumption","Iowa","IA",12643 +1989-02-01,"Residential Consumption","Hawaii","HI",52 +1989-02-01,"Residential Consumption","Maryland","MD",10880 +1989-02-01,"Residential Consumption","District of Columbia","DC",2556 +1989-02-01,"Residential Consumption","Florida","FL",1445 +1989-02-01,"Residential Consumption","North Carolina","NC",5655 +1989-02-01,"Residential Consumption","Utah","UT",8290 +1989-02-01,"Residential Consumption","Nebraska","NE",7911 +1989-02-01,"Residential Consumption","North Dakota","ND",1590 +1989-02-01,"Residential Consumption","Delaware","DE",1153 +1989-02-01,"Residential Consumption","U.S.","U.S.",743050 +1989-02-01,"Residential Consumption","Maine","ME",84 +1989-02-01,"Residential Consumption","New Jersey","NJ",29095 +1989-02-01,"Residential Consumption","New Hampshire","NH",904 +1989-02-01,"Residential Consumption","Kentucky","KY",10403 +1989-02-01,"Residential Consumption","Oklahoma","OK",13137 +1989-02-01,"Residential Consumption","Missouri","MO",22300 +1989-02-01,"Residential Consumption","Oregon","OR",4026 +1989-02-01,"Residential Consumption","New Mexico","NM",4696 +1989-02-01,"Residential Consumption","Alabama","AL",7044 +1989-02-01,"Residential Consumption","Connecticut","CT",5891 +1989-02-01,"Residential Consumption","Wisconsin","WI",19607 +1989-02-01,"Residential Consumption","Georgia","GA",16389 +1989-02-01,"Residential Consumption","Idaho","ID",1672 +1989-02-01,"Residential Consumption","Arkansas","AR",7118 +1989-02-01,"Residential Consumption","Alaska","AK",2148 +1989-02-01,"Residential Consumption","New York","NY",52502 +1989-02-01,"Residential Consumption","Illinois","IL",76868 +1989-02-01,"Residential Consumption","Pennsylvania","PA",40317 +1989-02-01,"Residential Consumption","California","CA",75817 +1989-02-01,"Residential Consumption","West Virginia","WV",5621 +1989-02-01,"Residential Consumption","Texas","TX",40274 +1989-02-01,"Residential Consumption","Rhode Island","RI",2682 +1989-02-01,"Residential Consumption","Ohio","OH",56594 +1989-02-01,"Residential Consumption","Louisiana","LA",8546 +1989-02-01,"Residential Consumption","Vermont","VT",314 +1989-02-01,"Residential Consumption","Tennessee","TN",8151 +1989-02-01,"Residential Consumption","Massachusetts","MA",16517 +1989-02-01,"Residential Consumption","Montana","MT",2778 +1989-02-01,"Residential Consumption","Kansas","KS",13761 +1989-02-01,"Residential Consumption","Washington","WA",6660 +1989-02-01,"Residential Consumption","Arizona","AZ",4913 +1989-02-01,"Residential Consumption","Wyoming","WY",1964 +1989-03-01,"Commercial Consumption","Wyoming","WY",1111 +1989-03-01,"Commercial Consumption","North Dakota","ND",1514 +1989-03-01,"Commercial Consumption","Minnesota","MN",11411 +1989-03-01,"Commercial Consumption","Colorado","CO",9208 +1989-03-01,"Commercial Consumption","Oklahoma","OK",6197 +1989-03-01,"Commercial Consumption","New Hampshire","NH",771 +1989-03-01,"Commercial Consumption","Maryland","MD",4247 +1989-03-01,"Commercial Consumption","South Carolina","SC",2098 +1989-03-01,"Commercial Consumption","Missouri","MO",9192 +1989-03-01,"Commercial Consumption","South Dakota","SD",1253 +1989-03-01,"Commercial Consumption","Montana","MT",1841 +1989-03-01,"Commercial Consumption","Idaho","ID",1160 +1989-03-01,"Commercial Consumption","District of Columbia","DC",2066 +1989-03-01,"Commercial Consumption","Washington","WA",5424 +1989-03-01,"Commercial Consumption","Utah","UT",2280 +1989-03-01,"Commercial Consumption","New Mexico","NM",3377 +1989-03-01,"Commercial Consumption","Massachusetts","MA",7234 +1989-03-01,"Commercial Consumption","New Jersey","NJ",15624 +1989-03-01,"Commercial Consumption","Florida","FL",3545 +1989-03-01,"Commercial Consumption","Vermont","VT",283 +1989-03-01,"Commercial Consumption","Ohio","OH",21187 +1989-03-01,"Commercial Consumption","Arkansas","AR",3961 +1989-03-01,"Commercial Consumption","Louisiana","LA",3462 +1989-03-01,"Commercial Consumption","North Carolina","NC",4367 +1989-03-01,"Commercial Consumption","Oregon","OR",2761 +1989-03-01,"Commercial Consumption","Maine","ME",221 +1989-03-01,"Commercial Consumption","Rhode Island","RI",1003 +1989-03-01,"Commercial Consumption","Iowa","IA",6928 +1989-03-01,"Commercial Consumption","Alaska","AK",2258 +1989-03-01,"Commercial Consumption","New York","NY",25344 +1989-03-01,"Commercial Consumption","Nevada","NV",1533 +1989-03-01,"Commercial Consumption","Georgia","GA",5163 +1989-03-01,"Commercial Consumption","Mississippi","MS",2411 +1989-03-01,"Commercial Consumption","Arizona","AZ",2845 +1989-03-01,"Commercial Consumption","Tennessee","TN",6382 +1989-03-01,"Commercial Consumption","Michigan","MI",24717 +1989-03-01,"Commercial Consumption","Indiana","IN",9613 +1989-03-01,"Commercial Consumption","Virginia","VA",5721 +1989-03-01,"Commercial Consumption","Pennsylvania","PA",16972 +1989-03-01,"Commercial Consumption","Delaware","DE",624 +1989-03-01,"Commercial Consumption","West Virginia","WV",2807 +1989-03-01,"Commercial Consumption","U.S.","U.S.",341517 +1989-03-01,"Commercial Consumption","Kansas","KS",6870 +1989-03-01,"Commercial Consumption","Connecticut","CT",3937 +1989-03-01,"Commercial Consumption","Nebraska","NE",4252 +1989-03-01,"Commercial Consumption","Wisconsin","WI",10169 +1989-03-01,"Commercial Consumption","Kentucky","KY",4546 +1989-03-01,"Commercial Consumption","Texas","TX",20215 +1989-03-01,"Commercial Consumption","Hawaii","HI",174 +1989-03-01,"Commercial Consumption","California","CA",21880 +1989-03-01,"Commercial Consumption","Alabama","AL",3395 +1989-03-01,"Commercial Consumption","Illinois","IL",25963 +1989-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92991 +1989-03-01,"Residential Consumption","Louisiana","LA",8377 +1989-03-01,"Residential Consumption","South Dakota","SD",1639 +1989-03-01,"Residential Consumption","Georgia","GA",9603 +1989-03-01,"Residential Consumption","Pennsylvania","PA",37886 +1989-03-01,"Residential Consumption","Washington","WA",5730 +1989-03-01,"Residential Consumption","Oklahoma","OK",12277 +1989-03-01,"Residential Consumption","California","CA",53779 +1989-03-01,"Residential Consumption","Hawaii","HI",50 +1989-03-01,"Residential Consumption","Tennessee","TN",7961 +1989-03-01,"Residential Consumption","Idaho","ID",1206 +1989-03-01,"Residential Consumption","Kentucky","KY",8293 +1989-03-01,"Residential Consumption","Colorado","CO",13652 +1989-03-01,"Residential Consumption","Wisconsin","WI",18950 +1989-03-01,"Residential Consumption","District of Columbia","DC",2762 +1989-03-01,"Residential Consumption","New Mexico","NM",3345 +1989-03-01,"Residential Consumption","Illinois","IL",64320 +1989-03-01,"Residential Consumption","Rhode Island","RI",2711 +1989-03-01,"Residential Consumption","Oregon","OR",3351 +1989-03-01,"Residential Consumption","Ohio","OH",42862 +1989-03-01,"Residential Consumption","Mississippi","MS",4077 +1989-03-01,"Residential Consumption","Iowa","IA",12215 +1989-03-01,"Residential Consumption","Florida","FL",1834 +1989-03-01,"Residential Consumption","U.S.","U.S.",645859 +1989-03-01,"Residential Consumption","Connecticut","CT",5717 +1989-03-01,"Residential Consumption","Vermont","VT",314 +1989-03-01,"Residential Consumption","Minnesota","MN",16511 +1989-03-01,"Residential Consumption","Maine","ME",92 +1989-03-01,"Residential Consumption","Massachusetts","MA",16940 +1989-03-01,"Residential Consumption","Kansas","KS",11948 +1989-03-01,"Residential Consumption","Delaware","DE",1223 +1989-03-01,"Residential Consumption","Arizona","AZ",2937 +1989-03-01,"Residential Consumption","Texas","TX",29982 +1989-03-01,"Residential Consumption","South Carolina","SC",3327 +1989-03-01,"Residential Consumption","Virginia","VA",9042 +1989-03-01,"Residential Consumption","Utah","UT",5786 +1989-03-01,"Residential Consumption","Nebraska","NE",6742 +1989-03-01,"Residential Consumption","Michigan","MI",51163 +1989-03-01,"Residential Consumption","Maryland","MD",11186 +1989-03-01,"Residential Consumption","Alaska","AK",1566 +1989-03-01,"Residential Consumption","Wyoming","WY",1597 +1989-03-01,"Residential Consumption","West Virginia","WV",5179 +1989-03-01,"Residential Consumption","Nevada","NV",1957 +1989-03-01,"Residential Consumption","Indiana","IN",20950 +1989-03-01,"Residential Consumption","North Dakota","ND",1476 +1989-03-01,"Residential Consumption","Arkansas","AR",6736 +1989-03-01,"Residential Consumption","Montana","MT",2544 +1989-03-01,"Residential Consumption","Missouri","MO",19809 +1989-03-01,"Residential Consumption","North Carolina","NC",6202 +1989-03-01,"Residential Consumption","New Jersey","NJ",27754 +1989-03-01,"Residential Consumption","New Hampshire","NH",926 +1989-03-01,"Residential Consumption","Alabama","AL",7392 +1989-03-01,"Residential Consumption","New York","NY",51981 +1989-04-01,"Commercial Consumption","Colorado","CO",6135 +1989-04-01,"Commercial Consumption","Oregon","OR",1724 +1989-04-01,"Commercial Consumption","South Dakota","SD",776 +1989-04-01,"Commercial Consumption","Montana","MT",1208 +1989-04-01,"Commercial Consumption","U.S.","U.S.",233397 +1989-04-01,"Commercial Consumption","Arizona","AZ",2275 +1989-04-01,"Commercial Consumption","New Mexico","NM",2059 +1989-04-01,"Commercial Consumption","Maine","ME",160 +1989-04-01,"Commercial Consumption","Georgia","GA",3921 +1989-04-01,"Commercial Consumption","Ohio","OH",13360 +1989-04-01,"Commercial Consumption","Michigan","MI",16375 +1989-04-01,"Commercial Consumption","District of Columbia","DC",1635 +1989-04-01,"Commercial Consumption","North Dakota","ND",1027 +1989-04-01,"Commercial Consumption","Pennsylvania","PA",11988 +1989-04-01,"Commercial Consumption","Massachusetts","MA",5392 +1989-04-01,"Commercial Consumption","New Jersey","NJ",10928 +1989-04-01,"Commercial Consumption","New Hampshire","NH",551 +1989-04-01,"Commercial Consumption","Idaho","ID",692 +1989-04-01,"Commercial Consumption","Arkansas","AR",2180 +1989-04-01,"Commercial Consumption","Mississippi","MS",1407 +1989-04-01,"Commercial Consumption","Delaware","DE",398 +1989-04-01,"Commercial Consumption","Indiana","IN",5768 +1989-04-01,"Commercial Consumption","Illinois","IL",15899 +1989-04-01,"Commercial Consumption","Wyoming","WY",852 +1989-04-01,"Commercial Consumption","West Virginia","WV",2041 +1989-04-01,"Commercial Consumption","South Carolina","SC",1489 +1989-04-01,"Commercial Consumption","North Carolina","NC",3046 +1989-04-01,"Commercial Consumption","Oklahoma","OK",2868 +1989-04-01,"Commercial Consumption","Kentucky","KY",2840 +1989-04-01,"Commercial Consumption","New York","NY",18494 +1989-04-01,"Commercial Consumption","Tennessee","TN",4054 +1989-04-01,"Commercial Consumption","Louisiana","LA",2362 +1989-04-01,"Commercial Consumption","Wisconsin","WI",6662 +1989-04-01,"Commercial Consumption","Maryland","MD",2586 +1989-04-01,"Commercial Consumption","Florida","FL",3083 +1989-04-01,"Commercial Consumption","Connecticut","CT",2897 +1989-04-01,"Commercial Consumption","Washington","WA",3672 +1989-04-01,"Commercial Consumption","Rhode Island","RI",855 +1989-04-01,"Commercial Consumption","Iowa","IA",4133 +1989-04-01,"Commercial Consumption","Alaska","AK",1949 +1989-04-01,"Commercial Consumption","Nebraska","NE",2505 +1989-04-01,"Commercial Consumption","Nevada","NV",1100 +1989-04-01,"Commercial Consumption","Minnesota","MN",6916 +1989-04-01,"Commercial Consumption","Utah","UT",1227 +1989-04-01,"Commercial Consumption","Virginia","VA",4051 +1989-04-01,"Commercial Consumption","Kansas","KS",5433 +1989-04-01,"Commercial Consumption","Vermont","VT",199 +1989-04-01,"Commercial Consumption","Missouri","MO",5246 +1989-04-01,"Commercial Consumption","Texas","TX",15779 +1989-04-01,"Commercial Consumption","Hawaii","HI",175 +1989-04-01,"Commercial Consumption","California","CA",18656 +1989-04-01,"Commercial Consumption","Alabama","AL",2369 +1989-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87992 +1989-04-01,"Residential Consumption","Louisiana","LA",4724 +1989-04-01,"Residential Consumption","Connecticut","CT",3694 +1989-04-01,"Residential Consumption","Wisconsin","WI",12003 +1989-04-01,"Residential Consumption","Vermont","VT",227 +1989-04-01,"Residential Consumption","Massachusetts","MA",11858 +1989-04-01,"Residential Consumption","New Hampshire","NH",686 +1989-04-01,"Residential Consumption","Montana","MT",1666 +1989-04-01,"Residential Consumption","Washington","WA",3625 +1989-04-01,"Residential Consumption","U.S.","U.S.",414487 +1989-04-01,"Residential Consumption","Illinois","IL",40575 +1989-04-01,"Residential Consumption","Texas","TX",15648 +1989-04-01,"Residential Consumption","Nebraska","NE",3687 +1989-04-01,"Residential Consumption","South Dakota","SD",1036 +1989-04-01,"Residential Consumption","Kentucky","KY",5319 +1989-04-01,"Residential Consumption","Maryland","MD",7032 +1989-04-01,"Residential Consumption","Maine","ME",66 +1989-04-01,"Residential Consumption","Arkansas","AR",3835 +1989-04-01,"Residential Consumption","Missouri","MO",11192 +1989-04-01,"Residential Consumption","North Carolina","NC",3723 +1989-04-01,"Residential Consumption","Georgia","GA",7211 +1989-04-01,"Residential Consumption","District of Columbia","DC",1663 +1989-04-01,"Residential Consumption","Florida","FL",1207 +1989-04-01,"Residential Consumption","Oklahoma","OK",5784 +1989-04-01,"Residential Consumption","Mississippi","MS",2195 +1989-04-01,"Residential Consumption","Tennessee","TN",4311 +1989-04-01,"Residential Consumption","Pennsylvania","PA",26310 +1989-04-01,"Residential Consumption","Colorado","CO",8580 +1989-04-01,"Residential Consumption","California","CA",37832 +1989-04-01,"Residential Consumption","Arizona","AZ",1670 +1989-04-01,"Residential Consumption","Ohio","OH",31700 +1989-04-01,"Residential Consumption","Utah","UT",3585 +1989-04-01,"Residential Consumption","Alaska","AK",1223 +1989-04-01,"Residential Consumption","Wyoming","WY",1180 +1989-04-01,"Residential Consumption","West Virginia","WV",3608 +1989-04-01,"Residential Consumption","South Carolina","SC",1875 +1989-04-01,"Residential Consumption","Rhode Island","RI",1828 +1989-04-01,"Residential Consumption","Oregon","OR",2054 +1989-04-01,"Residential Consumption","Iowa","IA",7244 +1989-04-01,"Residential Consumption","Minnesota","MN",9806 +1989-04-01,"Residential Consumption","New Mexico","NM",1960 +1989-04-01,"Residential Consumption","North Dakota","ND",1040 +1989-04-01,"Residential Consumption","Idaho","ID",747 +1989-04-01,"Residential Consumption","New Jersey","NJ",17680 +1989-04-01,"Residential Consumption","Hawaii","HI",50 +1989-04-01,"Residential Consumption","Virginia","VA",5421 +1989-04-01,"Residential Consumption","Michigan","MI",34224 +1989-04-01,"Residential Consumption","Nevada","NV",1106 +1989-04-01,"Residential Consumption","Indiana","IN",12801 +1989-04-01,"Residential Consumption","Kansas","KS",6518 +1989-04-01,"Residential Consumption","Delaware","DE",793 +1989-04-01,"Residential Consumption","Alabama","AL",4722 +1989-04-01,"Residential Consumption","New York","NY",35963 +1989-05-01,"Commercial Consumption","Wyoming","WY",521 +1989-05-01,"Commercial Consumption","North Carolina","NC",2022 +1989-05-01,"Commercial Consumption","New Jersey","NJ",7587 +1989-05-01,"Commercial Consumption","Texas","TX",11310 +1989-05-01,"Commercial Consumption","Ohio","OH",8237 +1989-05-01,"Commercial Consumption","Iowa","IA",2216 +1989-05-01,"Commercial Consumption","Arizona","AZ",1994 +1989-05-01,"Commercial Consumption","Michigan","MI",10150 +1989-05-01,"Commercial Consumption","Colorado","CO",4160 +1989-05-01,"Commercial Consumption","Massachusetts","MA",3703 +1989-05-01,"Commercial Consumption","Florida","FL",2670 +1989-05-01,"Commercial Consumption","Rhode Island","RI",565 +1989-05-01,"Commercial Consumption","Idaho","ID",409 +1989-05-01,"Commercial Consumption","Connecticut","CT",2106 +1989-05-01,"Commercial Consumption","California","CA",19249 +1989-05-01,"Commercial Consumption","Louisiana","LA",1790 +1989-05-01,"Commercial Consumption","Oklahoma","OK",1601 +1989-05-01,"Commercial Consumption","South Dakota","SD",413 +1989-05-01,"Commercial Consumption","Georgia","GA",2982 +1989-05-01,"Commercial Consumption","Vermont","VT",105 +1989-05-01,"Commercial Consumption","Nevada","NV",1004 +1989-05-01,"Commercial Consumption","Illinois","IL",9308 +1989-05-01,"Commercial Consumption","Missouri","MO",2799 +1989-05-01,"Commercial Consumption","Wisconsin","WI",3882 +1989-05-01,"Commercial Consumption","Alaska","AK",1569 +1989-05-01,"Commercial Consumption","New York","NY",12079 +1989-05-01,"Commercial Consumption","Nebraska","NE",1648 +1989-05-01,"Commercial Consumption","Mississippi","MS",947 +1989-05-01,"Commercial Consumption","Minnesota","MN",3980 +1989-05-01,"Commercial Consumption","New Mexico","NM",1517 +1989-05-01,"Commercial Consumption","Virginia","VA",2446 +1989-05-01,"Commercial Consumption","New Hampshire","NH",339 +1989-05-01,"Commercial Consumption","Kansas","KS",3660 +1989-05-01,"Commercial Consumption","Hawaii","HI",181 +1989-05-01,"Commercial Consumption","Indiana","IN",3297 +1989-05-01,"Commercial Consumption","Pennsylvania","PA",8259 +1989-05-01,"Commercial Consumption","Arkansas","AR",1261 +1989-05-01,"Commercial Consumption","Utah","UT",653 +1989-05-01,"Commercial Consumption","Oregon","OR",1140 +1989-05-01,"Commercial Consumption","Montana","MT",687 +1989-05-01,"Commercial Consumption","Maine","ME",106 +1989-05-01,"Commercial Consumption","U.S.","U.S.",158788 +1989-05-01,"Commercial Consumption","Delaware","DE",249 +1989-05-01,"Commercial Consumption","West Virginia","WV",1476 +1989-05-01,"Commercial Consumption","Washington","WA",2194 +1989-05-01,"Commercial Consumption","South Carolina","SC",1094 +1989-05-01,"Commercial Consumption","North Dakota","ND",508 +1989-05-01,"Commercial Consumption","Kentucky","KY",1766 +1989-05-01,"Commercial Consumption","Maryland","MD",1701 +1989-05-01,"Commercial Consumption","Alabama","AL",1720 +1989-05-01,"Commercial Consumption","Tennessee","TN",2529 +1989-05-01,"Commercial Consumption","District of Columbia","DC",999 +1989-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88992 +1989-05-01,"Residential Consumption","South Carolina","SC",879 +1989-05-01,"Residential Consumption","Tennessee","TN",2220 +1989-05-01,"Residential Consumption","South Dakota","SD",562 +1989-05-01,"Residential Consumption","Indiana","IN",7660 +1989-05-01,"Residential Consumption","North Dakota","ND",506 +1989-05-01,"Residential Consumption","Massachusetts","MA",7552 +1989-05-01,"Residential Consumption","Oregon","OR",1141 +1989-05-01,"Residential Consumption","Ohio","OH",18482 +1989-05-01,"Residential Consumption","Vermont","VT",122 +1989-05-01,"Residential Consumption","Utah","UT",2215 +1989-05-01,"Residential Consumption","Pennsylvania","PA",15825 +1989-05-01,"Residential Consumption","Florida","FL",817 +1989-05-01,"Residential Consumption","U.S.","U.S.",256551 +1989-05-01,"Residential Consumption","Wisconsin","WI",7875 +1989-05-01,"Residential Consumption","Virginia","VA",2881 +1989-05-01,"Residential Consumption","Minnesota","MN",5523 +1989-05-01,"Residential Consumption","New Mexico","NM",1111 +1989-05-01,"Residential Consumption","Kansas","KS",3436 +1989-05-01,"Residential Consumption","Alabama","AL",2856 +1989-05-01,"Residential Consumption","Wyoming","WY",743 +1989-05-01,"Residential Consumption","Texas","TX",9324 +1989-05-01,"Residential Consumption","Mississippi","MS",1282 +1989-05-01,"Residential Consumption","Hawaii","HI",47 +1989-05-01,"Residential Consumption","Idaho","ID",368 +1989-05-01,"Residential Consumption","Kentucky","KY",3161 +1989-05-01,"Residential Consumption","Colorado","CO",5694 +1989-05-01,"Residential Consumption","Iowa","IA",3943 +1989-05-01,"Residential Consumption","Georgia","GA",4629 +1989-05-01,"Residential Consumption","Maine","ME",49 +1989-05-01,"Residential Consumption","Arkansas","AR",1927 +1989-05-01,"Residential Consumption","Delaware","DE",466 +1989-05-01,"Residential Consumption","California","CA",31161 +1989-05-01,"Residential Consumption","West Virginia","WV",2263 +1989-05-01,"Residential Consumption","Rhode Island","RI",1223 +1989-05-01,"Residential Consumption","New Hampshire","NH",422 +1989-05-01,"Residential Consumption","Arizona","AZ",1205 +1989-05-01,"Residential Consumption","New York","NY",23868 +1989-05-01,"Residential Consumption","Illinois","IL",24582 +1989-05-01,"Residential Consumption","North Carolina","NC",1899 +1989-05-01,"Residential Consumption","Connecticut","CT",2231 +1989-05-01,"Residential Consumption","Nebraska","NE",1968 +1989-05-01,"Residential Consumption","Maryland","MD",4320 +1989-05-01,"Residential Consumption","New Jersey","NJ",10547 +1989-05-01,"Residential Consumption","Washington","WA",1822 +1989-05-01,"Residential Consumption","Oklahoma","OK",3043 +1989-05-01,"Residential Consumption","Missouri","MO",5793 +1989-05-01,"Residential Consumption","Alaska","AK",858 +1989-05-01,"Residential Consumption","Louisiana","LA",2816 +1989-05-01,"Residential Consumption","Michigan","MI",20415 +1989-05-01,"Residential Consumption","Nevada","NV",829 +1989-05-01,"Residential Consumption","District of Columbia","DC",1025 +1989-05-01,"Residential Consumption","Montana","MT",965 +1989-06-01,"Commercial Consumption","West Virginia","WV",881 +1989-06-01,"Commercial Consumption","Arkansas","AR",1357 +1989-06-01,"Commercial Consumption","Nevada","NV",890 +1989-06-01,"Commercial Consumption","Illinois","IL",5975 +1989-06-01,"Commercial Consumption","Wyoming","WY",368 +1989-06-01,"Commercial Consumption","North Dakota","ND",335 +1989-06-01,"Commercial Consumption","Oregon","OR",989 +1989-06-01,"Commercial Consumption","South Dakota","SD",276 +1989-06-01,"Commercial Consumption","Kentucky","KY",1167 +1989-06-01,"Commercial Consumption","Kansas","KS",2547 +1989-06-01,"Commercial Consumption","Georgia","GA",2340 +1989-06-01,"Commercial Consumption","Hawaii","HI",175 +1989-06-01,"Commercial Consumption","California","CA",21469 +1989-06-01,"Commercial Consumption","Minnesota","MN",2416 +1989-06-01,"Commercial Consumption","Colorado","CO",3082 +1989-06-01,"Commercial Consumption","Pennsylvania","PA",4646 +1989-06-01,"Commercial Consumption","Missouri","MO",2359 +1989-06-01,"Commercial Consumption","Florida","FL",2570 +1989-06-01,"Commercial Consumption","Alabama","AL",1215 +1989-06-01,"Commercial Consumption","Louisiana","LA",1479 +1989-06-01,"Commercial Consumption","District of Columbia","DC",803 +1989-06-01,"Commercial Consumption","Washington","WA",1851 +1989-06-01,"Commercial Consumption","Oklahoma","OK",1279 +1989-06-01,"Commercial Consumption","Maryland","MD",1154 +1989-06-01,"Commercial Consumption","Vermont","VT",66 +1989-06-01,"Commercial Consumption","Tennessee","TN",1916 +1989-06-01,"Commercial Consumption","New Jersey","NJ",5087 +1989-06-01,"Commercial Consumption","Montana","MT",478 +1989-06-01,"Commercial Consumption","Rhode Island","RI",457 +1989-06-01,"Commercial Consumption","New York","NY",8747 +1989-06-01,"Commercial Consumption","Nebraska","NE",1757 +1989-06-01,"Commercial Consumption","South Carolina","SC",891 +1989-06-01,"Commercial Consumption","New Mexico","NM",1211 +1989-06-01,"Commercial Consumption","Mississippi","MS",739 +1989-06-01,"Commercial Consumption","Delaware","DE",166 +1989-06-01,"Commercial Consumption","Indiana","IN",1904 +1989-06-01,"Commercial Consumption","Utah","UT",472 +1989-06-01,"Commercial Consumption","Virginia","VA",2129 +1989-06-01,"Commercial Consumption","Massachusetts","MA",2150 +1989-06-01,"Commercial Consumption","Maine","ME",63 +1989-06-01,"Commercial Consumption","U.S.","U.S.",120834 +1989-06-01,"Commercial Consumption","Texas","TX",10731 +1989-06-01,"Commercial Consumption","North Carolina","NC",1568 +1989-06-01,"Commercial Consumption","Wisconsin","WI",2012 +1989-06-01,"Commercial Consumption","New Hampshire","NH",188 +1989-06-01,"Commercial Consumption","Ohio","OH",3927 +1989-06-01,"Commercial Consumption","Idaho","ID",355 +1989-06-01,"Commercial Consumption","Iowa","IA",1380 +1989-06-01,"Commercial Consumption","Alaska","AK",1287 +1989-06-01,"Commercial Consumption","Connecticut","CT",1625 +1989-06-01,"Commercial Consumption","Arizona","AZ",1951 +1989-06-01,"Commercial Consumption","Michigan","MI",5954 +1989-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",85992 +1989-06-01,"Residential Consumption","Virginia","VA",1713 +1989-06-01,"Residential Consumption","Kansas","KS",2203 +1989-06-01,"Residential Consumption","Oklahoma","OK",2169 +1989-06-01,"Residential Consumption","Missouri","MO",3615 +1989-06-01,"Residential Consumption","Arizona","AZ",1094 +1989-06-01,"Residential Consumption","West Virginia","WV",1001 +1989-06-01,"Residential Consumption","New York","NY",13364 +1989-06-01,"Residential Consumption","Pennsylvania","PA",8128 +1989-06-01,"Residential Consumption","New Hampshire","NH",210 +1989-06-01,"Residential Consumption","Alabama","AL",1709 +1989-06-01,"Residential Consumption","Texas","TX",8127 +1989-06-01,"Residential Consumption","Tennessee","TN",1347 +1989-06-01,"Residential Consumption","District of Columbia","DC",649 +1989-06-01,"Residential Consumption","Maine","ME",27 +1989-06-01,"Residential Consumption","Florida","FL",707 +1989-06-01,"Residential Consumption","Kentucky","KY",1809 +1989-06-01,"Residential Consumption","Rhode Island","RI",590 +1989-06-01,"Residential Consumption","Hawaii","HI",49 +1989-06-01,"Residential Consumption","Michigan","MI",9803 +1989-06-01,"Residential Consumption","South Dakota","SD",340 +1989-06-01,"Residential Consumption","Oregon","OR",950 +1989-06-01,"Residential Consumption","Nebraska","NE",1137 +1989-06-01,"Residential Consumption","Nevada","NV",748 +1989-06-01,"Residential Consumption","Minnesota","MN",3121 +1989-06-01,"Residential Consumption","Arkansas","AR",1402 +1989-06-01,"Residential Consumption","Montana","MT",680 +1989-06-01,"Residential Consumption","Washington","WA",1501 +1989-06-01,"Residential Consumption","Delaware","DE",272 +1989-06-01,"Residential Consumption","Wyoming","WY",517 +1989-06-01,"Residential Consumption","Illinois","IL",12602 +1989-06-01,"Residential Consumption","Mississippi","MS",929 +1989-06-01,"Residential Consumption","Georgia","GA",3050 +1989-06-01,"Residential Consumption","Indiana","IN",3832 +1989-06-01,"Residential Consumption","Massachusetts","MA",4053 +1989-06-01,"Residential Consumption","Idaho","ID",306 +1989-06-01,"Residential Consumption","New Jersey","NJ",6101 +1989-06-01,"Residential Consumption","South Carolina","SC",468 +1989-06-01,"Residential Consumption","North Carolina","NC",1020 +1989-06-01,"Residential Consumption","Iowa","IA",2063 +1989-06-01,"Residential Consumption","Connecticut","CT",1296 +1989-06-01,"Residential Consumption","North Dakota","ND",309 +1989-06-01,"Residential Consumption","Colorado","CO",3947 +1989-06-01,"Residential Consumption","California","CA",26581 +1989-06-01,"Residential Consumption","U.S.","U.S.",155449 +1989-06-01,"Residential Consumption","Ohio","OH",7759 +1989-06-01,"Residential Consumption","Louisiana","LA",2321 +1989-06-01,"Residential Consumption","Wisconsin","WI",3777 +1989-06-01,"Residential Consumption","Vermont","VT",61 +1989-06-01,"Residential Consumption","Utah","UT",1763 +1989-06-01,"Residential Consumption","Maryland","MD",2681 +1989-06-01,"Residential Consumption","New Mexico","NM",910 +1989-06-01,"Residential Consumption","Alaska","AK",638 +1989-07-01,"Commercial Consumption","Wyoming","WY",285 +1989-07-01,"Commercial Consumption","North Dakota","ND",269 +1989-07-01,"Commercial Consumption","New Mexico","NM",913 +1989-07-01,"Commercial Consumption","Virginia","VA",1866 +1989-07-01,"Commercial Consumption","New Hampshire","NH",154 +1989-07-01,"Commercial Consumption","Vermont","VT",57 +1989-07-01,"Commercial Consumption","Connecticut","CT",1528 +1989-07-01,"Commercial Consumption","Mississippi","MS",718 +1989-07-01,"Commercial Consumption","Louisiana","LA",1399 +1989-07-01,"Commercial Consumption","Wisconsin","WI",1562 +1989-07-01,"Commercial Consumption","South Dakota","SD",203 +1989-07-01,"Commercial Consumption","Montana","MT",330 +1989-07-01,"Commercial Consumption","Kentucky","KY",1099 +1989-07-01,"Commercial Consumption","U.S.","U.S.",110171 +1989-07-01,"Commercial Consumption","Hawaii","HI",182 +1989-07-01,"Commercial Consumption","Illinois","IL",5445 +1989-07-01,"Commercial Consumption","Pennsylvania","PA",4270 +1989-07-01,"Commercial Consumption","Maryland","MD",968 +1989-07-01,"Commercial Consumption","California","CA",15319 +1989-07-01,"Commercial Consumption","Indiana","IN",1579 +1989-07-01,"Commercial Consumption","North Carolina","NC",1475 +1989-07-01,"Commercial Consumption","Maine","ME",51 +1989-07-01,"Commercial Consumption","Idaho","ID",301 +1989-07-01,"Commercial Consumption","Alabama","AL",1673 +1989-07-01,"Commercial Consumption","New York","NY",8382 +1989-07-01,"Commercial Consumption","Tennessee","TN",1802 +1989-07-01,"Commercial Consumption","Michigan","MI",4570 +1989-07-01,"Commercial Consumption","Minnesota","MN",2112 +1989-07-01,"Commercial Consumption","Colorado","CO",2328 +1989-07-01,"Commercial Consumption","Alaska","AK",1042 +1989-07-01,"Commercial Consumption","Massachusetts","MA",1726 +1989-07-01,"Commercial Consumption","Ohio","OH",3565 +1989-07-01,"Commercial Consumption","Arkansas","AR",1019 +1989-07-01,"Commercial Consumption","Nebraska","NE",3381 +1989-07-01,"Commercial Consumption","Delaware","DE",128 +1989-07-01,"Commercial Consumption","Arizona","AZ",1805 +1989-07-01,"Commercial Consumption","West Virginia","WV",785 +1989-07-01,"Commercial Consumption","Utah","UT",357 +1989-07-01,"Commercial Consumption","Kansas","KS",3366 +1989-07-01,"Commercial Consumption","Rhode Island","RI",471 +1989-07-01,"Commercial Consumption","Iowa","IA",1190 +1989-07-01,"Commercial Consumption","Washington","WA",1671 +1989-07-01,"Commercial Consumption","South Carolina","SC",908 +1989-07-01,"Commercial Consumption","Oregon","OR",823 +1989-07-01,"Commercial Consumption","Oklahoma","OK",1180 +1989-07-01,"Commercial Consumption","Missouri","MO",1829 +1989-07-01,"Commercial Consumption","New Jersey","NJ",4881 +1989-07-01,"Commercial Consumption","Texas","TX",12786 +1989-07-01,"Commercial Consumption","Georgia","GA",2411 +1989-07-01,"Commercial Consumption","Florida","FL",2525 +1989-07-01,"Commercial Consumption","Nevada","NV",790 +1989-07-01,"Commercial Consumption","District of Columbia","DC",692 +1989-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87992 +1989-07-01,"Residential Consumption","North Carolina","NC",744 +1989-07-01,"Residential Consumption","Mississippi","MS",864 +1989-07-01,"Residential Consumption","Maryland","MD",2241 +1989-07-01,"Residential Consumption","District of Columbia","DC",507 +1989-07-01,"Residential Consumption","Indiana","IN",2894 +1989-07-01,"Residential Consumption","North Dakota","ND",213 +1989-07-01,"Residential Consumption","Massachusetts","MA",3006 +1989-07-01,"Residential Consumption","Colorado","CO",2778 +1989-07-01,"Residential Consumption","South Carolina","SC",395 +1989-07-01,"Residential Consumption","Hawaii","HI",46 +1989-07-01,"Residential Consumption","Georgia","GA",2988 +1989-07-01,"Residential Consumption","Arkansas","AR",1237 +1989-07-01,"Residential Consumption","Delaware","DE",192 +1989-07-01,"Residential Consumption","California","CA",22730 +1989-07-01,"Residential Consumption","Arizona","AZ",880 +1989-07-01,"Residential Consumption","New York","NY",10098 +1989-07-01,"Residential Consumption","Illinois","IL",10775 +1989-07-01,"Residential Consumption","Texas","TX",7726 +1989-07-01,"Residential Consumption","Oregon","OR",696 +1989-07-01,"Residential Consumption","Utah","UT",1374 +1989-07-01,"Residential Consumption","Nebraska","NE",1078 +1989-07-01,"Residential Consumption","Michigan","MI",8052 +1989-07-01,"Residential Consumption","Kansas","KS",1845 +1989-07-01,"Residential Consumption","Oklahoma","OK",1858 +1989-07-01,"Residential Consumption","Louisiana","LA",2189 +1989-07-01,"Residential Consumption","Nevada","NV",531 +1989-07-01,"Residential Consumption","Minnesota","MN",2388 +1989-07-01,"Residential Consumption","Idaho","ID",160 +1989-07-01,"Residential Consumption","New Jersey","NJ",5231 +1989-07-01,"Residential Consumption","Alaska","AK",432 +1989-07-01,"Residential Consumption","Wyoming","WY",344 +1989-07-01,"Residential Consumption","U.S.","U.S.",128662 +1989-07-01,"Residential Consumption","Rhode Island","RI",500 +1989-07-01,"Residential Consumption","Wisconsin","WI",2736 +1989-07-01,"Residential Consumption","New Mexico","NM",829 +1989-07-01,"Residential Consumption","Montana","MT",426 +1989-07-01,"Residential Consumption","Washington","WA",1002 +1989-07-01,"Residential Consumption","Pennsylvania","PA",6400 +1989-07-01,"Residential Consumption","Florida","FL",674 +1989-07-01,"Residential Consumption","Alabama","AL",1457 +1989-07-01,"Residential Consumption","Ohio","OH",7332 +1989-07-01,"Residential Consumption","Iowa","IA",1647 +1989-07-01,"Residential Consumption","Virginia","VA",1479 +1989-07-01,"Residential Consumption","Maine","ME",12 +1989-07-01,"Residential Consumption","Missouri","MO",3008 +1989-07-01,"Residential Consumption","Connecticut","CT",1114 +1989-07-01,"Residential Consumption","Vermont","VT",40 +1989-07-01,"Residential Consumption","Tennessee","TN",1041 +1989-07-01,"Residential Consumption","South Dakota","SD",245 +1989-07-01,"Residential Consumption","New Hampshire","NH",155 +1989-07-01,"Residential Consumption","Kentucky","KY",1332 +1989-07-01,"Residential Consumption","West Virginia","WV",741 +1989-08-01,"Commercial Consumption","Kansas","KS",4812 +1989-08-01,"Commercial Consumption","Alaska","AK",1091 +1989-08-01,"Commercial Consumption","Alabama","AL",1117 +1989-08-01,"Commercial Consumption","Nevada","NV",805 +1989-08-01,"Commercial Consumption","Michigan","MI",4467 +1989-08-01,"Commercial Consumption","Wyoming","WY",233 +1989-08-01,"Commercial Consumption","Utah","UT",346 +1989-08-01,"Commercial Consumption","U.S.","U.S.",110208 +1989-08-01,"Commercial Consumption","Ohio","OH",3735 +1989-08-01,"Commercial Consumption","Indiana","IN",1659 +1989-08-01,"Commercial Consumption","Washington","WA",1548 +1989-08-01,"Commercial Consumption","Oklahoma","OK",1097 +1989-08-01,"Commercial Consumption","Kentucky","KY",991 +1989-08-01,"Commercial Consumption","Florida","FL",2369 +1989-08-01,"Commercial Consumption","Iowa","IA",1234 +1989-08-01,"Commercial Consumption","Connecticut","CT",1579 +1989-08-01,"Commercial Consumption","Virginia","VA",1485 +1989-08-01,"Commercial Consumption","South Dakota","SD",197 +1989-08-01,"Commercial Consumption","Vermont","VT",57 +1989-08-01,"Commercial Consumption","California","CA",17351 +1989-08-01,"Commercial Consumption","Mississippi","MS",701 +1989-08-01,"Commercial Consumption","North Carolina","NC",1454 +1989-08-01,"Commercial Consumption","Minnesota","MN",2011 +1989-08-01,"Commercial Consumption","New Mexico","NM",1146 +1989-08-01,"Commercial Consumption","Maryland","MD",941 +1989-08-01,"Commercial Consumption","Arkansas","AR",1007 +1989-08-01,"Commercial Consumption","Louisiana","LA",1340 +1989-08-01,"Commercial Consumption","Colorado","CO",2119 +1989-08-01,"Commercial Consumption","Missouri","MO",1780 +1989-08-01,"Commercial Consumption","Massachusetts","MA",1894 +1989-08-01,"Commercial Consumption","Montana","MT",381 +1989-08-01,"Commercial Consumption","Rhode Island","RI",518 +1989-08-01,"Commercial Consumption","Idaho","ID",249 +1989-08-01,"Commercial Consumption","Tennessee","TN",1659 +1989-08-01,"Commercial Consumption","Illinois","IL",4862 +1989-08-01,"Commercial Consumption","District of Columbia","DC",763 +1989-08-01,"Commercial Consumption","West Virginia","WV",853 +1989-08-01,"Commercial Consumption","Oregon","OR",804 +1989-08-01,"Commercial Consumption","Pennsylvania","PA",4158 +1989-08-01,"Commercial Consumption","New Hampshire","NH",140 +1989-08-01,"Commercial Consumption","Maine","ME",50 +1989-08-01,"Commercial Consumption","Texas","TX",11350 +1989-08-01,"Commercial Consumption","Georgia","GA",2360 +1989-08-01,"Commercial Consumption","Hawaii","HI",173 +1989-08-01,"Commercial Consumption","New York","NY",8305 +1989-08-01,"Commercial Consumption","Delaware","DE",133 +1989-08-01,"Commercial Consumption","South Carolina","SC",808 +1989-08-01,"Commercial Consumption","North Dakota","ND",238 +1989-08-01,"Commercial Consumption","Wisconsin","WI",1499 +1989-08-01,"Commercial Consumption","New Jersey","NJ",4520 +1989-08-01,"Commercial Consumption","Nebraska","NE",4240 +1989-08-01,"Commercial Consumption","Arizona","AZ",1579 +1989-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86992 +1989-08-01,"Residential Consumption","Texas","TX",7211 +1989-08-01,"Residential Consumption","Oregon","OR",549 +1989-08-01,"Residential Consumption","Tennessee","TN",961 +1989-08-01,"Residential Consumption","New Hampshire","NH",127 +1989-08-01,"Residential Consumption","Colorado","CO",2279 +1989-08-01,"Residential Consumption","Washington","WA",801 +1989-08-01,"Residential Consumption","Alaska","AK",370 +1989-08-01,"Residential Consumption","Connecticut","CT",996 +1989-08-01,"Residential Consumption","Virginia","VA",1340 +1989-08-01,"Residential Consumption","Michigan","MI",7957 +1989-08-01,"Residential Consumption","Florida","FL",617 +1989-08-01,"Residential Consumption","North Dakota","ND",166 +1989-08-01,"Residential Consumption","Massachusetts","MA",2683 +1989-08-01,"Residential Consumption","Idaho","ID",146 +1989-08-01,"Residential Consumption","Kansas","KS",1687 +1989-08-01,"Residential Consumption","Mississippi","MS",829 +1989-08-01,"Residential Consumption","Louisiana","LA",2026 +1989-08-01,"Residential Consumption","Iowa","IA",1527 +1989-08-01,"Residential Consumption","Hawaii","HI",42 +1989-08-01,"Residential Consumption","Wisconsin","WI",2220 +1989-08-01,"Residential Consumption","Pennsylvania","PA",6014 +1989-08-01,"Residential Consumption","New Jersey","NJ",4778 +1989-08-01,"Residential Consumption","Montana","MT",435 +1989-08-01,"Residential Consumption","Arizona","AZ",777 +1989-08-01,"Residential Consumption","North Carolina","NC",695 +1989-08-01,"Residential Consumption","Utah","UT",1235 +1989-08-01,"Residential Consumption","New Mexico","NM",734 +1989-08-01,"Residential Consumption","Wyoming","WY",259 +1989-08-01,"Residential Consumption","Nevada","NV",478 +1989-08-01,"Residential Consumption","District of Columbia","DC",483 +1989-08-01,"Residential Consumption","Arkansas","AR",1137 +1989-08-01,"Residential Consumption","Oklahoma","OK",1654 +1989-08-01,"Residential Consumption","Missouri","MO",2732 +1989-08-01,"Residential Consumption","U.S.","U.S.",121009 +1989-08-01,"Residential Consumption","New York","NY",9189 +1989-08-01,"Residential Consumption","Rhode Island","RI",464 +1989-08-01,"Residential Consumption","Ohio","OH",7262 +1989-08-01,"Residential Consumption","Nebraska","NE",1007 +1989-08-01,"Residential Consumption","Minnesota","MN",2269 +1989-08-01,"Residential Consumption","Georgia","GA",2792 +1989-08-01,"Residential Consumption","Maine","ME",19 +1989-08-01,"Residential Consumption","Kentucky","KY",1337 +1989-08-01,"Residential Consumption","California","CA",22977 +1989-08-01,"Residential Consumption","South Carolina","SC",327 +1989-08-01,"Residential Consumption","Maryland","MD",2070 +1989-08-01,"Residential Consumption","South Dakota","SD",221 +1989-08-01,"Residential Consumption","Indiana","IN",2868 +1989-08-01,"Residential Consumption","Delaware","DE",189 +1989-08-01,"Residential Consumption","Illinois","IL",9958 +1989-08-01,"Residential Consumption","Vermont","VT",37 +1989-08-01,"Residential Consumption","Alabama","AL",1383 +1989-08-01,"Residential Consumption","West Virginia","WV",695 +1989-09-01,"Commercial Consumption","Wyoming","WY",268 +1989-09-01,"Commercial Consumption","Minnesota","MN",2475 +1989-09-01,"Commercial Consumption","Virginia","VA",1985 +1989-09-01,"Commercial Consumption","New Jersey","NJ",4638 +1989-09-01,"Commercial Consumption","Ohio","OH",4397 +1989-09-01,"Commercial Consumption","Alaska","AK",1202 +1989-09-01,"Commercial Consumption","Indiana","IN",2217 +1989-09-01,"Commercial Consumption","North Dakota","ND",340 +1989-09-01,"Commercial Consumption","North Carolina","NC",1534 +1989-09-01,"Commercial Consumption","Oklahoma","OK",1241 +1989-09-01,"Commercial Consumption","Texas","TX",9367 +1989-09-01,"Commercial Consumption","Kansas","KS",3081 +1989-09-01,"Commercial Consumption","Vermont","VT",73 +1989-09-01,"Commercial Consumption","Alabama","AL",1189 +1989-09-01,"Commercial Consumption","Wisconsin","WI",1718 +1989-09-01,"Commercial Consumption","Kentucky","KY",1147 +1989-09-01,"Commercial Consumption","Georgia","GA",2589 +1989-09-01,"Commercial Consumption","Florida","FL",2484 +1989-09-01,"Commercial Consumption","Connecticut","CT",1551 +1989-09-01,"Commercial Consumption","Nebraska","NE",1634 +1989-09-01,"Commercial Consumption","Delaware","DE",144 +1989-09-01,"Commercial Consumption","Illinois","IL",6177 +1989-09-01,"Commercial Consumption","District of Columbia","DC",712 +1989-09-01,"Commercial Consumption","Maine","ME",60 +1989-09-01,"Commercial Consumption","Maryland","MD",978 +1989-09-01,"Commercial Consumption","Idaho","ID",321 +1989-09-01,"Commercial Consumption","New York","NY",8812 +1989-09-01,"Commercial Consumption","Mississippi","MS",754 +1989-09-01,"Commercial Consumption","West Virginia","WV",859 +1989-09-01,"Commercial Consumption","Washington","WA",1357 +1989-09-01,"Commercial Consumption","Massachusetts","MA",1799 +1989-09-01,"Commercial Consumption","South Dakota","SD",255 +1989-09-01,"Commercial Consumption","U.S.","U.S.",113108 +1989-09-01,"Commercial Consumption","Hawaii","HI",175 +1989-09-01,"Commercial Consumption","Arizona","AZ",1597 +1989-09-01,"Commercial Consumption","Nevada","NV",811 +1989-09-01,"Commercial Consumption","New Mexico","NM",1034 +1989-09-01,"Commercial Consumption","Missouri","MO",2021 +1989-09-01,"Commercial Consumption","California","CA",19452 +1989-09-01,"Commercial Consumption","Tennessee","TN",1843 +1989-09-01,"Commercial Consumption","Michigan","MI",5047 +1989-09-01,"Commercial Consumption","South Carolina","SC",866 +1989-09-01,"Commercial Consumption","Colorado","CO",2303 +1989-09-01,"Commercial Consumption","Oregon","OR",882 +1989-09-01,"Commercial Consumption","New Hampshire","NH",176 +1989-09-01,"Commercial Consumption","Montana","MT",442 +1989-09-01,"Commercial Consumption","Louisiana","LA",1433 +1989-09-01,"Commercial Consumption","Utah","UT",390 +1989-09-01,"Commercial Consumption","Pennsylvania","PA",4375 +1989-09-01,"Commercial Consumption","Rhode Island","RI",560 +1989-09-01,"Commercial Consumption","Iowa","IA",1247 +1989-09-01,"Commercial Consumption","Arkansas","AR",1096 +1989-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",81992 +1989-09-01,"Residential Consumption","Connecticut","CT",1138 +1989-09-01,"Residential Consumption","New Jersey","NJ",5283 +1989-09-01,"Residential Consumption","Missouri","MO",3111 +1989-09-01,"Residential Consumption","U.S.","U.S.",139486 +1989-09-01,"Residential Consumption","Ohio","OH",9812 +1989-09-01,"Residential Consumption","Utah","UT",1322 +1989-09-01,"Residential Consumption","Michigan","MI",9726 +1989-09-01,"Residential Consumption","Arkansas","AR",1239 +1989-09-01,"Residential Consumption","Alabama","AL",1404 +1989-09-01,"Residential Consumption","Texas","TX",7869 +1989-09-01,"Residential Consumption","North Carolina","NC",745 +1989-09-01,"Residential Consumption","South Dakota","SD",298 +1989-09-01,"Residential Consumption","Kentucky","KY",1446 +1989-09-01,"Residential Consumption","Kansas","KS",1955 +1989-09-01,"Residential Consumption","Washington","WA",969 +1989-09-01,"Residential Consumption","Mississippi","MS",894 +1989-09-01,"Residential Consumption","Nevada","NV",555 +1989-09-01,"Residential Consumption","Maine","ME",21 +1989-09-01,"Residential Consumption","North Dakota","ND",240 +1989-09-01,"Residential Consumption","Massachusetts","MA",2901 +1989-09-01,"Residential Consumption","Montana","MT",568 +1989-09-01,"Residential Consumption","Colorado","CO",2601 +1989-09-01,"Residential Consumption","West Virginia","WV",824 +1989-09-01,"Residential Consumption","South Carolina","SC",346 +1989-09-01,"Residential Consumption","Rhode Island","RI",497 +1989-09-01,"Residential Consumption","Iowa","IA",1790 +1989-09-01,"Residential Consumption","Virginia","VA",1374 +1989-09-01,"Residential Consumption","Nebraska","NE",1212 +1989-09-01,"Residential Consumption","Maryland","MD",2177 +1989-09-01,"Residential Consumption","Minnesota","MN",2682 +1989-09-01,"Residential Consumption","Georgia","GA",3466 +1989-09-01,"Residential Consumption","Florida","FL",641 +1989-09-01,"Residential Consumption","Arizona","AZ",833 +1989-09-01,"Residential Consumption","Wyoming","WY",350 +1989-09-01,"Residential Consumption","New York","NY",9514 +1989-09-01,"Residential Consumption","Hawaii","HI",45 +1989-09-01,"Residential Consumption","Vermont","VT",43 +1989-09-01,"Residential Consumption","Pennsylvania","PA",6716 +1989-09-01,"Residential Consumption","Indiana","IN",3957 +1989-09-01,"Residential Consumption","Delaware","DE",207 +1989-09-01,"Residential Consumption","Alaska","AK",536 +1989-09-01,"Residential Consumption","Illinois","IL",13627 +1989-09-01,"Residential Consumption","Oregon","OR",581 +1989-09-01,"Residential Consumption","Louisiana","LA",2035 +1989-09-01,"Residential Consumption","Wisconsin","WI",3173 +1989-09-01,"Residential Consumption","Tennessee","TN",1044 +1989-09-01,"Residential Consumption","District of Columbia","DC",494 +1989-09-01,"Residential Consumption","New Mexico","NM",765 +1989-09-01,"Residential Consumption","Idaho","ID",221 +1989-09-01,"Residential Consumption","New Hampshire","NH",169 +1989-09-01,"Residential Consumption","Oklahoma","OK",1886 +1989-09-01,"Residential Consumption","California","CA",24184 +1989-10-01,"Commercial Consumption","South Carolina","SC",970 +1989-10-01,"Commercial Consumption","Virginia","VA",2192 +1989-10-01,"Commercial Consumption","Pennsylvania","PA",7181 +1989-10-01,"Commercial Consumption","South Dakota","SD",434 +1989-10-01,"Commercial Consumption","Delaware","DE",182 +1989-10-01,"Commercial Consumption","Nevada","NV",954 +1989-10-01,"Commercial Consumption","Wyoming","WY",396 +1989-10-01,"Commercial Consumption","Massachusetts","MA",2720 +1989-10-01,"Commercial Consumption","New Jersey","NJ",6297 +1989-10-01,"Commercial Consumption","Montana","MT",806 +1989-10-01,"Commercial Consumption","Alaska","AK",1577 +1989-10-01,"Commercial Consumption","Tennessee","TN",2355 +1989-10-01,"Commercial Consumption","Washington","WA",2083 +1989-10-01,"Commercial Consumption","Minnesota","MN",4718 +1989-10-01,"Commercial Consumption","Wisconsin","WI",3437 +1989-10-01,"Commercial Consumption","Texas","TX",10345 +1989-10-01,"Commercial Consumption","Rhode Island","RI",657 +1989-10-01,"Commercial Consumption","Hawaii","HI",179 +1989-10-01,"Commercial Consumption","Alabama","AL",1382 +1989-10-01,"Commercial Consumption","Nebraska","NE",2109 +1989-10-01,"Commercial Consumption","Illinois","IL",11093 +1989-10-01,"Commercial Consumption","West Virginia","WV",1373 +1989-10-01,"Commercial Consumption","Colorado","CO",3232 +1989-10-01,"Commercial Consumption","New Mexico","NM",1191 +1989-10-01,"Commercial Consumption","Oregon","OR",972 +1989-10-01,"Commercial Consumption","U.S.","U.S.",152020 +1989-10-01,"Commercial Consumption","Georgia","GA",3475 +1989-10-01,"Commercial Consumption","Idaho","ID",435 +1989-10-01,"Commercial Consumption","Connecticut","CT",1685 +1989-10-01,"Commercial Consumption","California","CA",19856 +1989-10-01,"Commercial Consumption","Iowa","IA",179 +1989-10-01,"Commercial Consumption","Louisiana","LA",1568 +1989-10-01,"Commercial Consumption","North Dakota","ND",464 +1989-10-01,"Commercial Consumption","Missouri","MO",2798 +1989-10-01,"Commercial Consumption","Kansas","KS",2785 +1989-10-01,"Commercial Consumption","Florida","FL",2444 +1989-10-01,"Commercial Consumption","Ohio","OH",8946 +1989-10-01,"Commercial Consumption","Mississippi","MS",939 +1989-10-01,"Commercial Consumption","Michigan","MI",8855 +1989-10-01,"Commercial Consumption","District of Columbia","DC",775 +1989-10-01,"Commercial Consumption","Utah","UT",522 +1989-10-01,"Commercial Consumption","Oklahoma","OK",1528 +1989-10-01,"Commercial Consumption","Maine","ME",96 +1989-10-01,"Commercial Consumption","Kentucky","KY",954 +1989-10-01,"Commercial Consumption","Maryland","MD",1220 +1989-10-01,"Commercial Consumption","Arkansas","AR",1245 +1989-10-01,"Commercial Consumption","New York","NY",11741 +1989-10-01,"Commercial Consumption","North Carolina","NC",1843 +1989-10-01,"Commercial Consumption","New Hampshire","NH",248 +1989-10-01,"Commercial Consumption","Vermont","VT",130 +1989-10-01,"Commercial Consumption","Arizona","AZ",1634 +1989-10-01,"Commercial Consumption","Indiana","IN",3850 +1989-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86992 +1989-10-01,"Residential Consumption","Ohio","OH",20647 +1989-10-01,"Residential Consumption","Mississippi","MS",1043 +1989-10-01,"Residential Consumption","Michigan","MI",19994 +1989-10-01,"Residential Consumption","District of Columbia","DC",655 +1989-10-01,"Residential Consumption","New Mexico","NM",899 +1989-10-01,"Residential Consumption","Indiana","IN",8198 +1989-10-01,"Residential Consumption","North Dakota","ND",398 +1989-10-01,"Residential Consumption","Massachusetts","MA",4839 +1989-10-01,"Residential Consumption","Kansas","KS",2901 +1989-10-01,"Residential Consumption","Missouri","MO",5047 +1989-10-01,"Residential Consumption","Wyoming","WY",518 +1989-10-01,"Residential Consumption","West Virginia","WV",1738 +1989-10-01,"Residential Consumption","Arkansas","AR",1562 +1989-10-01,"Residential Consumption","Washington","WA",1622 +1989-10-01,"Residential Consumption","Oklahoma","OK",2571 +1989-10-01,"Residential Consumption","Alabama","AL",1862 +1989-10-01,"Residential Consumption","Alaska","AK",895 +1989-10-01,"Residential Consumption","Illinois","IL",26027 +1989-10-01,"Residential Consumption","Texas","TX",9777 +1989-10-01,"Residential Consumption","Rhode Island","RI",855 +1989-10-01,"Residential Consumption","Louisiana","LA",2513 +1989-10-01,"Residential Consumption","Vermont","VT",97 +1989-10-01,"Residential Consumption","Nebraska","NE",1972 +1989-10-01,"Residential Consumption","New Hampshire","NH",274 +1989-10-01,"Residential Consumption","New York","NY",16060 +1989-10-01,"Residential Consumption","South Dakota","SD",535 +1989-10-01,"Residential Consumption","South Carolina","SC",620 +1989-10-01,"Residential Consumption","Oregon","OR",804 +1989-10-01,"Residential Consumption","Iowa","IA",3225 +1989-10-01,"Residential Consumption","Maryland","MD",3134 +1989-10-01,"Residential Consumption","Georgia","GA",5190 +1989-10-01,"Residential Consumption","Montana","MT",1084 +1989-10-01,"Residential Consumption","Kentucky","KY",3109 +1989-10-01,"Residential Consumption","Arizona","AZ",959 +1989-10-01,"Residential Consumption","Wisconsin","WI",6052 +1989-10-01,"Residential Consumption","Tennessee","TN",1683 +1989-10-01,"Residential Consumption","Virginia","VA",2831 +1989-10-01,"Residential Consumption","Pennsylvania","PA",13222 +1989-10-01,"Residential Consumption","Maine","ME",35 +1989-10-01,"Residential Consumption","Idaho","ID",329 +1989-10-01,"Residential Consumption","Colorado","CO",3750 +1989-10-01,"Residential Consumption","Delaware","DE",275 +1989-10-01,"Residential Consumption","California","CA",28083 +1989-10-01,"Residential Consumption","North Carolina","NC",1338 +1989-10-01,"Residential Consumption","Hawaii","HI",43 +1989-10-01,"Residential Consumption","Utah","UT",1718 +1989-10-01,"Residential Consumption","Florida","FL",637 +1989-10-01,"Residential Consumption","New Jersey","NJ",8933 +1989-10-01,"Residential Consumption","U.S.","U.S.",228672 +1989-10-01,"Residential Consumption","Connecticut","CT",1986 +1989-10-01,"Residential Consumption","Nevada","NV",703 +1989-10-01,"Residential Consumption","Minnesota","MN",5430 +1989-11-01,"Commercial Consumption","Oregon","OR",1624 +1989-11-01,"Commercial Consumption","Massachusetts","MA",3647 +1989-11-01,"Commercial Consumption","South Dakota","SD",851 +1989-11-01,"Commercial Consumption","New Jersey","NJ",9150 +1989-11-01,"Commercial Consumption","Kansas","KS",4386 +1989-11-01,"Commercial Consumption","Vermont","VT",189 +1989-11-01,"Commercial Consumption","Rhode Island","RI",654 +1989-11-01,"Commercial Consumption","Indiana","IN",7577 +1989-11-01,"Commercial Consumption","Colorado","CO",5441 +1989-11-01,"Commercial Consumption","Nevada","NV",1257 +1989-11-01,"Commercial Consumption","Wyoming","WY",724 +1989-11-01,"Commercial Consumption","Oklahoma","OK",2542 +1989-11-01,"Commercial Consumption","U.S.","U.S.",231274 +1989-11-01,"Commercial Consumption","Texas","TX",12823 +1989-11-01,"Commercial Consumption","Georgia","GA",4834 +1989-11-01,"Commercial Consumption","Alaska","AK",2144 +1989-11-01,"Commercial Consumption","Washington","WA",3366 +1989-11-01,"Commercial Consumption","New Mexico","NM",2441 +1989-11-01,"Commercial Consumption","Missouri","MO",4716 +1989-11-01,"Commercial Consumption","Idaho","ID",785 +1989-11-01,"Commercial Consumption","Connecticut","CT",2324 +1989-11-01,"Commercial Consumption","Arkansas","AR",1948 +1989-11-01,"Commercial Consumption","Michigan","MI",15776 +1989-11-01,"Commercial Consumption","District of Columbia","DC",1090 +1989-11-01,"Commercial Consumption","North Carolina","NC",2639 +1989-11-01,"Commercial Consumption","Minnesota","MN",8764 +1989-11-01,"Commercial Consumption","Pennsylvania","PA",11582 +1989-11-01,"Commercial Consumption","Montana","MT",1235 +1989-11-01,"Commercial Consumption","Maryland","MD",1801 +1989-11-01,"Commercial Consumption","Florida","FL",2868 +1989-11-01,"Commercial Consumption","Ohio","OH",15949 +1989-11-01,"Commercial Consumption","Iowa","IA",3738 +1989-11-01,"Commercial Consumption","Hawaii","HI",172 +1989-11-01,"Commercial Consumption","California","CA",21665 +1989-11-01,"Commercial Consumption","Alabama","AL",1955 +1989-11-01,"Commercial Consumption","Mississippi","MS",1350 +1989-11-01,"Commercial Consumption","Tennessee","TN",3769 +1989-11-01,"Commercial Consumption","South Carolina","SC",1324 +1989-11-01,"Commercial Consumption","North Dakota","ND",951 +1989-11-01,"Commercial Consumption","Utah","UT",1313 +1989-11-01,"Commercial Consumption","Maine","ME",128 +1989-11-01,"Commercial Consumption","Kentucky","KY",3327 +1989-11-01,"Commercial Consumption","Delaware","DE",294 +1989-11-01,"Commercial Consumption","Arizona","AZ",2296 +1989-11-01,"Commercial Consumption","Illinois","IL",20173 +1989-11-01,"Commercial Consumption","West Virginia","WV",2036 +1989-11-01,"Commercial Consumption","Virginia","VA",3612 +1989-11-01,"Commercial Consumption","Wisconsin","WI",6386 +1989-11-01,"Commercial Consumption","New Hampshire","NH",393 +1989-11-01,"Commercial Consumption","New York","NY",16631 +1989-11-01,"Commercial Consumption","Nebraska","NE",2602 +1989-11-01,"Commercial Consumption","Louisiana","LA",2035 +1989-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89992 +1989-11-01,"Residential Consumption","North Carolina","NC",2823 +1989-11-01,"Residential Consumption","Louisiana","LA",4166 +1989-11-01,"Residential Consumption","Hawaii","HI",46 +1989-11-01,"Residential Consumption","Connecticut","CT",3221 +1989-11-01,"Residential Consumption","District of Columbia","DC",1099 +1989-11-01,"Residential Consumption","Kansas","KS",5398 +1989-11-01,"Residential Consumption","South Carolina","SC",1526 +1989-11-01,"Residential Consumption","Tennessee","TN",3555 +1989-11-01,"Residential Consumption","Washington","WA",3484 +1989-11-01,"Residential Consumption","California","CA",40070 +1989-11-01,"Residential Consumption","Arizona","AZ",1768 +1989-11-01,"Residential Consumption","Alabama","AL",3646 +1989-11-01,"Residential Consumption","Wyoming","WY",973 +1989-11-01,"Residential Consumption","Rhode Island","RI",1325 +1989-11-01,"Residential Consumption","Wisconsin","WI",10581 +1989-11-01,"Residential Consumption","South Dakota","SD",1076 +1989-11-01,"Residential Consumption","Maine","ME",46 +1989-11-01,"Residential Consumption","New Hampshire","NH",448 +1989-11-01,"Residential Consumption","Kentucky","KY",6141 +1989-11-01,"Residential Consumption","Delaware","DE",485 +1989-11-01,"Residential Consumption","Virginia","VA",4799 +1989-11-01,"Residential Consumption","Georgia","GA",11110 +1989-11-01,"Residential Consumption","Indiana","IN",15187 +1989-11-01,"Residential Consumption","Florida","FL",974 +1989-11-01,"Residential Consumption","Massachusetts","MA",7495 +1989-11-01,"Residential Consumption","Colorado","CO",6975 +1989-11-01,"Residential Consumption","Alaska","AK",1474 +1989-11-01,"Residential Consumption","West Virginia","WV",3240 +1989-11-01,"Residential Consumption","New York","NY",28576 +1989-11-01,"Residential Consumption","Ohio","OH",37970 +1989-11-01,"Residential Consumption","Utah","UT",3640 +1989-11-01,"Residential Consumption","New Mexico","NM",1975 +1989-11-01,"Residential Consumption","North Dakota","ND",816 +1989-11-01,"Residential Consumption","Idaho","ID",768 +1989-11-01,"Residential Consumption","New Jersey","NJ",15715 +1989-11-01,"Residential Consumption","Illinois","IL",51490 +1989-11-01,"Residential Consumption","Oregon","OR",1835 +1989-11-01,"Residential Consumption","Maryland","MD",5131 +1989-11-01,"Residential Consumption","Minnesota","MN",11067 +1989-11-01,"Residential Consumption","Montana","MT",1728 +1989-11-01,"Residential Consumption","Mississippi","MS",1933 +1989-11-01,"Residential Consumption","Iowa","IA",5912 +1989-11-01,"Residential Consumption","Michigan","MI",31679 +1989-11-01,"Residential Consumption","Nevada","NV",1400 +1989-11-01,"Residential Consumption","Pennsylvania","PA",22442 +1989-11-01,"Residential Consumption","Arkansas","AR",2987 +1989-11-01,"Residential Consumption","Oklahoma","OK",4798 +1989-11-01,"Residential Consumption","Missouri","MO",9441 +1989-11-01,"Residential Consumption","U.S.","U.S.",405314 +1989-11-01,"Residential Consumption","Texas","TX",16927 +1989-11-01,"Residential Consumption","Vermont","VT",165 +1989-11-01,"Residential Consumption","Nebraska","NE",3788 +1989-12-01,"Commercial Consumption","North Carolina","NC",4396 +1989-12-01,"Commercial Consumption","Colorado","CO",8102 +1989-12-01,"Commercial Consumption","Virginia","VA",6474 +1989-12-01,"Commercial Consumption","Montana","MT",1781 +1989-12-01,"Commercial Consumption","Ohio","OH",30143 +1989-12-01,"Commercial Consumption","Idaho","ID",1176 +1989-12-01,"Commercial Consumption","Alaska","AK",2429 +1989-12-01,"Commercial Consumption","Arizona","AZ",3108 +1989-12-01,"Commercial Consumption","District of Columbia","DC",2052 +1989-12-01,"Commercial Consumption","North Dakota","ND",1506 +1989-12-01,"Commercial Consumption","Oklahoma","OK",5873 +1989-12-01,"Commercial Consumption","South Dakota","SD",1374 +1989-12-01,"Commercial Consumption","Texas","TX",23871 +1989-12-01,"Commercial Consumption","Florida","FL",3620 +1989-12-01,"Commercial Consumption","Connecticut","CT",3891 +1989-12-01,"Commercial Consumption","Louisiana","LA",3524 +1989-12-01,"Commercial Consumption","Utah","UT",2304 +1989-12-01,"Commercial Consumption","Pennsylvania","PA",20997 +1989-12-01,"Commercial Consumption","Massachusetts","MA",6864 +1989-12-01,"Commercial Consumption","Maine","ME",269 +1989-12-01,"Commercial Consumption","Kentucky","KY",6648 +1989-12-01,"Commercial Consumption","Alabama","AL",3507 +1989-12-01,"Commercial Consumption","Nebraska","NE",4196 +1989-12-01,"Commercial Consumption","Washington","WA",4433 +1989-12-01,"Commercial Consumption","Georgia","GA",8389 +1989-12-01,"Commercial Consumption","Vermont","VT",307 +1989-12-01,"Commercial Consumption","Iowa","IA",7110 +1989-12-01,"Commercial Consumption","New York","NY",27650 +1989-12-01,"Commercial Consumption","Michigan","MI",28269 +1989-12-01,"Commercial Consumption","New Jersey","NJ",16342 +1989-12-01,"Commercial Consumption","California","CA",26192 +1989-12-01,"Commercial Consumption","Wyoming","WY",1022 +1989-12-01,"Commercial Consumption","Oregon","OR",2363 +1989-12-01,"Commercial Consumption","Missouri","MO",9903 +1989-12-01,"Commercial Consumption","New Hampshire","NH",817 +1989-12-01,"Commercial Consumption","Maryland","MD",3647 +1989-12-01,"Commercial Consumption","Hawaii","HI",177 +1989-12-01,"Commercial Consumption","Arkansas","AR",3942 +1989-12-01,"Commercial Consumption","Mississippi","MS",2727 +1989-12-01,"Commercial Consumption","Delaware","DE",630 +1989-12-01,"Commercial Consumption","West Virginia","WV",3704 +1989-12-01,"Commercial Consumption","South Carolina","SC",1964 +1989-12-01,"Commercial Consumption","Minnesota","MN",13661 +1989-12-01,"Commercial Consumption","New Mexico","NM",3830 +1989-12-01,"Commercial Consumption","Wisconsin","WI",11183 +1989-12-01,"Commercial Consumption","U.S.","U.S.",390699 +1989-12-01,"Commercial Consumption","Indiana","IN",13614 +1989-12-01,"Commercial Consumption","Illinois","IL",33847 +1989-12-01,"Commercial Consumption","Kansas","KS",6763 +1989-12-01,"Commercial Consumption","Rhode Island","RI",1014 +1989-12-01,"Commercial Consumption","Tennessee","TN",7404 +1989-12-01,"Commercial Consumption","Nevada","NV",1690 +1989-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96991 +1989-12-01,"Residential Consumption","Wisconsin","WI",20661 +1989-12-01,"Residential Consumption","North Dakota","ND",1411 +1989-12-01,"Residential Consumption","Arkansas","AR",6356 +1989-12-01,"Residential Consumption","New Hampshire","NH",926 +1989-12-01,"Residential Consumption","Washington","WA",5091 +1989-12-01,"Residential Consumption","Alabama","AL",7240 +1989-12-01,"Residential Consumption","West Virginia","WV",6382 +1989-12-01,"Residential Consumption","Hawaii","HI",46 +1989-12-01,"Residential Consumption","Indiana","IN",29656 +1989-12-01,"Residential Consumption","New Jersey","NJ",33347 +1989-12-01,"Residential Consumption","Wyoming","WY",1412 +1989-12-01,"Residential Consumption","Georgia","GA",22137 +1989-12-01,"Residential Consumption","Montana","MT",2518 +1989-12-01,"Residential Consumption","Kansas","KS",11694 +1989-12-01,"Residential Consumption","Alaska","AK",1656 +1989-12-01,"Residential Consumption","Rhode Island","RI",2744 +1989-12-01,"Residential Consumption","North Carolina","NC",6866 +1989-12-01,"Residential Consumption","Connecticut","CT",6991 +1989-12-01,"Residential Consumption","Vermont","VT",353 +1989-12-01,"Residential Consumption","Tennessee","TN",8601 +1989-12-01,"Residential Consumption","Nebraska","NE",7297 +1989-12-01,"Residential Consumption","South Dakota","SD",1764 +1989-12-01,"Residential Consumption","Maine","ME",95 +1989-12-01,"Residential Consumption","Kentucky","KY",13034 +1989-12-01,"Residential Consumption","Colorado","CO",11066 +1989-12-01,"Residential Consumption","Oklahoma","OK",11039 +1989-12-01,"Residential Consumption","Missouri","MO",21588 +1989-12-01,"Residential Consumption","New York","NY",57291 +1989-12-01,"Residential Consumption","Minnesota","MN",20120 +1989-12-01,"Residential Consumption","Massachusetts","MA",16224 +1989-12-01,"Residential Consumption","Ohio","OH",69403 +1989-12-01,"Residential Consumption","Louisiana","LA",9714 +1989-12-01,"Residential Consumption","Iowa","IA",12401 +1989-12-01,"Residential Consumption","Maryland","MD",12076 +1989-12-01,"Residential Consumption","U.S.","U.S.",790934 +1989-12-01,"Residential Consumption","Texas","TX",43770 +1989-12-01,"Residential Consumption","Oregon","OR",2886 +1989-12-01,"Residential Consumption","Mississippi","MS",4241 +1989-12-01,"Residential Consumption","Virginia","VA",11473 +1989-12-01,"Residential Consumption","Utah","UT",5923 +1989-12-01,"Residential Consumption","Nevada","NV",2359 +1989-12-01,"Residential Consumption","District of Columbia","DC",2637 +1989-12-01,"Residential Consumption","Pennsylvania","PA",44960 +1989-12-01,"Residential Consumption","New Mexico","NM",3746 +1989-12-01,"Residential Consumption","Florida","FL",1825 +1989-12-01,"Residential Consumption","California","CA",63104 +1989-12-01,"Residential Consumption","Illinois","IL",94362 +1989-12-01,"Residential Consumption","South Carolina","SC",3911 +1989-12-01,"Residential Consumption","Michigan","MI",60266 +1989-12-01,"Residential Consumption","Idaho","ID",1241 +1989-12-01,"Residential Consumption","Delaware","DE",1085 +1989-12-01,"Residential Consumption","Arizona","AZ",3945 +1990-01-01,"Commercial Consumption","South Carolina","SC",2455 +1990-01-01,"Commercial Consumption","Minnesota","MN",12696 +1990-01-01,"Commercial Consumption","New Jersey","NJ",17876 +1990-01-01,"Commercial Consumption","Texas","TX",21376 +1990-01-01,"Commercial Consumption","Rhode Island","RI",1195 +1990-01-01,"Commercial Consumption","Nebraska","NE",4765 +1990-01-01,"Commercial Consumption","Delaware","DE",784 +1990-01-01,"Commercial Consumption","Michigan","MI",26939 +1990-01-01,"Commercial Consumption","Illinois","IL",30713 +1990-01-01,"Commercial Consumption","New Mexico","NM",3903 +1990-01-01,"Commercial Consumption","Kentucky","KY",5355 +1990-01-01,"Commercial Consumption","Maryland","MD",4168 +1990-01-01,"Commercial Consumption","California","CA",30798 +1990-01-01,"Commercial Consumption","Arizona","AZ",3706 +1990-01-01,"Commercial Consumption","Indiana","IN",11991 +1990-01-01,"Commercial Consumption","Wyoming","WY",1305 +1990-01-01,"Commercial Consumption","Washington","WA",5136 +1990-01-01,"Commercial Consumption","Wisconsin","WI",11878 +1990-01-01,"Commercial Consumption","Kansas","KS",8061 +1990-01-01,"Commercial Consumption","Hawaii","HI",190 +1990-01-01,"Commercial Consumption","Arkansas","AR",4957 +1990-01-01,"Commercial Consumption","Alabama","AL",4550 +1990-01-01,"Commercial Consumption","New York","NY",24659 +1990-01-01,"Commercial Consumption","District of Columbia","DC",1986 +1990-01-01,"Commercial Consumption","Virginia","VA",6162 +1990-01-01,"Commercial Consumption","Missouri","MO",11634 +1990-01-01,"Commercial Consumption","Massachusetts","MA",8247 +1990-01-01,"Commercial Consumption","South Dakota","SD",1398 +1990-01-01,"Commercial Consumption","North Dakota","ND",1666 +1990-01-01,"Commercial Consumption","North Carolina","NC",5379 +1990-01-01,"Commercial Consumption","Georgia","GA",8162 +1990-01-01,"Commercial Consumption","Alaska","AK",2447 +1990-01-01,"Commercial Consumption","Connecticut","CT",4318 +1990-01-01,"Commercial Consumption","Nevada","NV",1959 +1990-01-01,"Commercial Consumption","Utah","UT",2864 +1990-01-01,"Commercial Consumption","Pennsylvania","PA",20743 +1990-01-01,"Commercial Consumption","New Hampshire","NH",899 +1990-01-01,"Commercial Consumption","Ohio","OH",25317 +1990-01-01,"Commercial Consumption","Iowa","IA",8087 +1990-01-01,"Commercial Consumption","Colorado","CO",10718 +1990-01-01,"Commercial Consumption","Oklahoma","OK",7587 +1990-01-01,"Commercial Consumption","Montana","MT",1912 +1990-01-01,"Commercial Consumption","Mississippi","MS",3199 +1990-01-01,"Commercial Consumption","Tennessee","TN",8672 +1990-01-01,"Commercial Consumption","Louisiana","LA",4528 +1990-01-01,"Commercial Consumption","West Virginia","WV",3701 +1990-01-01,"Commercial Consumption","Oregon","OR",2984 +1990-01-01,"Commercial Consumption","Maine","ME",268 +1990-01-01,"Commercial Consumption","U.S.","U.S.",400003 +1990-01-01,"Commercial Consumption","Florida","FL",4101 +1990-01-01,"Commercial Consumption","Vermont","VT",338 +1990-01-01,"Commercial Consumption","Idaho","ID",1313 +1990-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",111693 +1990-01-01,"Residential Consumption","Mississippi","MS",6060 +1990-01-01,"Residential Consumption","Kansas","KS",15037 +1990-01-01,"Residential Consumption","Missouri","MO",24889 +1990-01-01,"Residential Consumption","U.S.","U.S.",788596 +1990-01-01,"Residential Consumption","Iowa","IA",14120 +1990-01-01,"Residential Consumption","Wisconsin","WI",19353 +1990-01-01,"Residential Consumption","Vermont","VT",402 +1990-01-01,"Residential Consumption","New Mexico","NM",5350 +1990-01-01,"Residential Consumption","Maine","ME",109 +1990-01-01,"Residential Consumption","Oklahoma","OK",14092 +1990-01-01,"Residential Consumption","Alaska","AK",1745 +1990-01-01,"Residential Consumption","Maryland","MD",13718 +1990-01-01,"Residential Consumption","District of Columbia","DC",3258 +1990-01-01,"Residential Consumption","Idaho","ID",1445 +1990-01-01,"Residential Consumption","Kentucky","KY",9736 +1990-01-01,"Residential Consumption","Colorado","CO",15699 +1990-01-01,"Residential Consumption","Wyoming","WY",1832 +1990-01-01,"Residential Consumption","West Virginia","WV",6858 +1990-01-01,"Residential Consumption","Utah","UT",7169 +1990-01-01,"Residential Consumption","Michigan","MI",55931 +1990-01-01,"Residential Consumption","Georgia","GA",16238 +1990-01-01,"Residential Consumption","Pennsylvania","PA",46618 +1990-01-01,"Residential Consumption","Arkansas","AR",8681 +1990-01-01,"Residential Consumption","Montana","MT",2625 +1990-01-01,"Residential Consumption","New York","NY",54059 +1990-01-01,"Residential Consumption","Illinois","IL",71107 +1990-01-01,"Residential Consumption","Oregon","OR",3807 +1990-01-01,"Residential Consumption","Ohio","OH",50210 +1990-01-01,"Residential Consumption","Virginia","VA",10632 +1990-01-01,"Residential Consumption","North Dakota","ND",1661 +1990-01-01,"Residential Consumption","California","CA",78572 +1990-01-01,"Residential Consumption","Arizona","AZ",5994 +1990-01-01,"Residential Consumption","South Carolina","SC",4887 +1990-01-01,"Residential Consumption","North Carolina","NC",8535 +1990-01-01,"Residential Consumption","Louisiana","LA",12359 +1990-01-01,"Residential Consumption","Minnesota","MN",18979 +1990-01-01,"Residential Consumption","Massachusetts","MA",20092 +1990-01-01,"Residential Consumption","New Hampshire","NH",1118 +1990-01-01,"Residential Consumption","Delaware","DE",1613 +1990-01-01,"Residential Consumption","Hawaii","HI",49 +1990-01-01,"Residential Consumption","Nebraska","NE",7593 +1990-01-01,"Residential Consumption","South Dakota","SD",1769 +1990-01-01,"Residential Consumption","Indiana","IN",25597 +1990-01-01,"Residential Consumption","New Jersey","NJ",32311 +1990-01-01,"Residential Consumption","Washington","WA",5949 +1990-01-01,"Residential Consumption","Texas","TX",42528 +1990-01-01,"Residential Consumption","Rhode Island","RI",3256 +1990-01-01,"Residential Consumption","Connecticut","CT",6690 +1990-01-01,"Residential Consumption","Tennessee","TN",11556 +1990-01-01,"Residential Consumption","Nevada","NV",2988 +1990-01-01,"Residential Consumption","Florida","FL",2829 +1990-01-01,"Residential Consumption","Alabama","AL",10893 +1990-02-01,"Commercial Consumption","Wyoming","WY",1199 +1990-02-01,"Commercial Consumption","Washington","WA",5666 +1990-02-01,"Commercial Consumption","Wisconsin","WI",9411 +1990-02-01,"Commercial Consumption","Texas","TX",16323 +1990-02-01,"Commercial Consumption","Maryland","MD",3115 +1990-02-01,"Commercial Consumption","Kansas","KS",6230 +1990-02-01,"Commercial Consumption","Florida","FL",3305 +1990-02-01,"Commercial Consumption","Arizona","AZ",3577 +1990-02-01,"Commercial Consumption","Virginia","VA",5181 +1990-02-01,"Commercial Consumption","Massachusetts","MA",6548 +1990-02-01,"Commercial Consumption","Montana","MT",1705 +1990-02-01,"Commercial Consumption","New York","NY",23697 +1990-02-01,"Commercial Consumption","Mississippi","MS",2007 +1990-02-01,"Commercial Consumption","District of Columbia","DC",1857 +1990-02-01,"Commercial Consumption","South Carolina","SC",1649 +1990-02-01,"Commercial Consumption","Minnesota","MN",11412 +1990-02-01,"Commercial Consumption","Utah","UT",2779 +1990-02-01,"Commercial Consumption","Ohio","OH",19642 +1990-02-01,"Commercial Consumption","California","CA",34767 +1990-02-01,"Commercial Consumption","Nevada","NV",1963 +1990-02-01,"Commercial Consumption","Michigan","MI",22780 +1990-02-01,"Commercial Consumption","South Dakota","SD",1234 +1990-02-01,"Commercial Consumption","Vermont","VT",288 +1990-02-01,"Commercial Consumption","Iowa","IA",6374 +1990-02-01,"Commercial Consumption","Arkansas","AR",3368 +1990-02-01,"Commercial Consumption","North Dakota","ND",1457 +1990-02-01,"Commercial Consumption","Oklahoma","OK",5618 +1990-02-01,"Commercial Consumption","New Hampshire","NH",803 +1990-02-01,"Commercial Consumption","Maine","ME",227 +1990-02-01,"Commercial Consumption","Nebraska","NE",4019 +1990-02-01,"Commercial Consumption","North Carolina","NC",3690 +1990-02-01,"Commercial Consumption","Colorado","CO",9546 +1990-02-01,"Commercial Consumption","Oregon","OR",3031 +1990-02-01,"Commercial Consumption","Missouri","MO",7979 +1990-02-01,"Commercial Consumption","Kentucky","KY",4280 +1990-02-01,"Commercial Consumption","U.S.","U.S.",335911 +1990-02-01,"Commercial Consumption","Georgia","GA",5935 +1990-02-01,"Commercial Consumption","Rhode Island","RI",903 +1990-02-01,"Commercial Consumption","Idaho","ID",1283 +1990-02-01,"Commercial Consumption","Connecticut","CT",3869 +1990-02-01,"Commercial Consumption","Delaware","DE",530 +1990-02-01,"Commercial Consumption","Tennessee","TN",5800 +1990-02-01,"Commercial Consumption","Indiana","IN",9374 +1990-02-01,"Commercial Consumption","Louisiana","LA",2757 +1990-02-01,"Commercial Consumption","New Mexico","NM",3537 +1990-02-01,"Commercial Consumption","New Jersey","NJ",14489 +1990-02-01,"Commercial Consumption","Illinois","IL",25802 +1990-02-01,"Commercial Consumption","West Virginia","WV",2707 +1990-02-01,"Commercial Consumption","Pennsylvania","PA",16421 +1990-02-01,"Commercial Consumption","Hawaii","HI",188 +1990-02-01,"Commercial Consumption","Alaska","AK",2584 +1990-02-01,"Commercial Consumption","Alabama","AL",3040 +1990-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",99214 +1990-02-01,"Residential Consumption","North Carolina","NC",4909 +1990-02-01,"Residential Consumption","Louisiana","LA",6495 +1990-02-01,"Residential Consumption","Pennsylvania","PA",34274 +1990-02-01,"Residential Consumption","Florida","FL",1470 +1990-02-01,"Residential Consumption","Idaho","ID",1419 +1990-02-01,"Residential Consumption","California","CA",73931 +1990-02-01,"Residential Consumption","Arizona","AZ",5582 +1990-02-01,"Residential Consumption","Ohio","OH",47643 +1990-02-01,"Residential Consumption","Iowa","IA",10664 +1990-02-01,"Residential Consumption","Maryland","MD",8971 +1990-02-01,"Residential Consumption","Minnesota","MN",16064 +1990-02-01,"Residential Consumption","Washington","WA",6383 +1990-02-01,"Residential Consumption","U.S.","U.S.",642665 +1990-02-01,"Residential Consumption","New York","NY",52751 +1990-02-01,"Residential Consumption","South Carolina","SC",2591 +1990-02-01,"Residential Consumption","Rhode Island","RI",2532 +1990-02-01,"Residential Consumption","Hawaii","HI",52 +1990-02-01,"Residential Consumption","Indiana","IN",20159 +1990-02-01,"Residential Consumption","Alaska","AK",2090 +1990-02-01,"Residential Consumption","Wyoming","WY",1692 +1990-02-01,"Residential Consumption","Virginia","VA",7167 +1990-02-01,"Residential Consumption","Nebraska","NE",6472 +1990-02-01,"Residential Consumption","Nevada","NV",3010 +1990-02-01,"Residential Consumption","Massachusetts","MA",15721 +1990-02-01,"Residential Consumption","New Jersey","NJ",24403 +1990-02-01,"Residential Consumption","West Virginia","WV",4690 +1990-02-01,"Residential Consumption","Illinois","IL",64322 +1990-02-01,"Residential Consumption","Texas","TX",27019 +1990-02-01,"Residential Consumption","Tennessee","TN",6514 +1990-02-01,"Residential Consumption","Michigan","MI",48164 +1990-02-01,"Residential Consumption","South Dakota","SD",1529 +1990-02-01,"Residential Consumption","District of Columbia","DC",2193 +1990-02-01,"Residential Consumption","Arkansas","AR",5556 +1990-02-01,"Residential Consumption","New Hampshire","NH",890 +1990-02-01,"Residential Consumption","Montana","MT",2421 +1990-02-01,"Residential Consumption","Kansas","KS",10951 +1990-02-01,"Residential Consumption","Oklahoma","OK",10213 +1990-02-01,"Residential Consumption","Delaware","DE",1069 +1990-02-01,"Residential Consumption","Oregon","OR",3786 +1990-02-01,"Residential Consumption","Vermont","VT",327 +1990-02-01,"Residential Consumption","Georgia","GA",11794 +1990-02-01,"Residential Consumption","North Dakota","ND",1440 +1990-02-01,"Residential Consumption","Kentucky","KY",8409 +1990-02-01,"Residential Consumption","Colorado","CO",13559 +1990-02-01,"Residential Consumption","Alabama","AL",6493 +1990-02-01,"Residential Consumption","Mississippi","MS",3307 +1990-02-01,"Residential Consumption","Connecticut","CT",5673 +1990-02-01,"Residential Consumption","Wisconsin","WI",17314 +1990-02-01,"Residential Consumption","Utah","UT",6949 +1990-02-01,"Residential Consumption","New Mexico","NM",4743 +1990-02-01,"Residential Consumption","Maine","ME",86 +1990-02-01,"Residential Consumption","Missouri","MO",16807 +1990-03-01,"Commercial Consumption","Washington","WA",4496 +1990-03-01,"Commercial Consumption","Oklahoma","OK",4176 +1990-03-01,"Commercial Consumption","New Hampshire","NH",618 +1990-03-01,"Commercial Consumption","Montana","MT",1402 +1990-03-01,"Commercial Consumption","Vermont","VT",269 +1990-03-01,"Commercial Consumption","South Carolina","SC",1576 +1990-03-01,"Commercial Consumption","Utah","UT",2272 +1990-03-01,"Commercial Consumption","Pennsylvania","PA",15166 +1990-03-01,"Commercial Consumption","New Jersey","NJ",14442 +1990-03-01,"Commercial Consumption","Maryland","MD",3057 +1990-03-01,"Commercial Consumption","Ohio","OH",20361 +1990-03-01,"Commercial Consumption","Louisiana","LA",2490 +1990-03-01,"Commercial Consumption","Wyoming","WY",1085 +1990-03-01,"Commercial Consumption","North Carolina","NC",3400 +1990-03-01,"Commercial Consumption","Oregon","OR",2562 +1990-03-01,"Commercial Consumption","Wisconsin","WI",8746 +1990-03-01,"Commercial Consumption","Kansas","KS",5114 +1990-03-01,"Commercial Consumption","Nebraska","NE",3355 +1990-03-01,"Commercial Consumption","Tennessee","TN",4578 +1990-03-01,"Commercial Consumption","District of Columbia","DC",1789 +1990-03-01,"Commercial Consumption","North Dakota","ND",1243 +1990-03-01,"Commercial Consumption","Colorado","CO",8633 +1990-03-01,"Commercial Consumption","Maine","ME",211 +1990-03-01,"Commercial Consumption","Arkansas","AR",2807 +1990-03-01,"Commercial Consumption","Missouri","MO",6849 +1990-03-01,"Commercial Consumption","Kentucky","KY",3496 +1990-03-01,"Commercial Consumption","Rhode Island","RI",893 +1990-03-01,"Commercial Consumption","Connecticut","CT",3369 +1990-03-01,"Commercial Consumption","California","CA",27425 +1990-03-01,"Commercial Consumption","Alabama","AL",2645 +1990-03-01,"Commercial Consumption","U.S.","U.S.",302022 +1990-03-01,"Commercial Consumption","Texas","TX",17118 +1990-03-01,"Commercial Consumption","Florida","FL",3246 +1990-03-01,"Commercial Consumption","New York","NY",22939 +1990-03-01,"Commercial Consumption","Indiana","IN",7958 +1990-03-01,"Commercial Consumption","West Virginia","WV",2391 +1990-03-01,"Commercial Consumption","New Mexico","NM",2944 +1990-03-01,"Commercial Consumption","Virginia","VA",5100 +1990-03-01,"Commercial Consumption","Iowa","IA",5719 +1990-03-01,"Commercial Consumption","Mississippi","MS",1675 +1990-03-01,"Commercial Consumption","Arizona","AZ",3165 +1990-03-01,"Commercial Consumption","Minnesota","MN",9846 +1990-03-01,"Commercial Consumption","Massachusetts","MA",6367 +1990-03-01,"Commercial Consumption","South Dakota","SD",1064 +1990-03-01,"Commercial Consumption","Georgia","GA",5172 +1990-03-01,"Commercial Consumption","Idaho","ID",1000 +1990-03-01,"Commercial Consumption","Hawaii","HI",188 +1990-03-01,"Commercial Consumption","Alaska","AK",2429 +1990-03-01,"Commercial Consumption","Delaware","DE",530 +1990-03-01,"Commercial Consumption","Nevada","NV",1740 +1990-03-01,"Commercial Consumption","Michigan","MI",20870 +1990-03-01,"Commercial Consumption","Illinois","IL",22068 +1990-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105906 +1990-03-01,"Residential Consumption","North Carolina","NC",4402 +1990-03-01,"Residential Consumption","Wisconsin","WI",14811 +1990-03-01,"Residential Consumption","Utah","UT",5699 +1990-03-01,"Residential Consumption","South Dakota","SD",1293 +1990-03-01,"Residential Consumption","District of Columbia","DC",1984 +1990-03-01,"Residential Consumption","Pennsylvania","PA",31872 +1990-03-01,"Residential Consumption","Massachusetts","MA",14900 +1990-03-01,"Residential Consumption","Idaho","ID",1078 +1990-03-01,"Residential Consumption","Missouri","MO",14381 +1990-03-01,"Residential Consumption","California","CA",60247 +1990-03-01,"Residential Consumption","West Virginia","WV",4174 +1990-03-01,"Residential Consumption","Iowa","IA",9604 +1990-03-01,"Residential Consumption","Minnesota","MN",13558 +1990-03-01,"Residential Consumption","Kentucky","KY",6367 +1990-03-01,"Residential Consumption","Texas","TX",23049 +1990-03-01,"Residential Consumption","South Carolina","SC",2252 +1990-03-01,"Residential Consumption","Nebraska","NE",5262 +1990-03-01,"Residential Consumption","Georgia","GA",10094 +1990-03-01,"Residential Consumption","Maine","ME",82 +1990-03-01,"Residential Consumption","Florida","FL",1262 +1990-03-01,"Residential Consumption","Arkansas","AR",4628 +1990-03-01,"Residential Consumption","New Jersey","NJ",23115 +1990-03-01,"Residential Consumption","Oklahoma","OK",8262 +1990-03-01,"Residential Consumption","Delaware","DE",1008 +1990-03-01,"Residential Consumption","Alabama","AL",5254 +1990-03-01,"Residential Consumption","New York","NY",46615 +1990-03-01,"Residential Consumption","Ohio","OH",39078 +1990-03-01,"Residential Consumption","Vermont","VT",304 +1990-03-01,"Residential Consumption","Washington","WA",5338 +1990-03-01,"Residential Consumption","Alaska","AK",1756 +1990-03-01,"Residential Consumption","Rhode Island","RI",2455 +1990-03-01,"Residential Consumption","Hawaii","HI",55 +1990-03-01,"Residential Consumption","Connecticut","CT",5000 +1990-03-01,"Residential Consumption","New Mexico","NM",3855 +1990-03-01,"Residential Consumption","Colorado","CO",12631 +1990-03-01,"Residential Consumption","Arizona","AZ",4035 +1990-03-01,"Residential Consumption","U.S.","U.S.",551987 +1990-03-01,"Residential Consumption","Illinois","IL",52008 +1990-03-01,"Residential Consumption","Louisiana","LA",5729 +1990-03-01,"Residential Consumption","Tennessee","TN",5575 +1990-03-01,"Residential Consumption","Maryland","MD",8796 +1990-03-01,"Residential Consumption","North Dakota","ND",1175 +1990-03-01,"Residential Consumption","New Hampshire","NH",815 +1990-03-01,"Residential Consumption","Montana","MT",1900 +1990-03-01,"Residential Consumption","Wyoming","WY",1511 +1990-03-01,"Residential Consumption","Oregon","OR",3219 +1990-03-01,"Residential Consumption","Mississippi","MS",2793 +1990-03-01,"Residential Consumption","Virginia","VA",6755 +1990-03-01,"Residential Consumption","Indiana","IN",17227 +1990-03-01,"Residential Consumption","Michigan","MI",43437 +1990-03-01,"Residential Consumption","Nevada","NV",2208 +1990-03-01,"Residential Consumption","Kansas","KS",9080 +1990-04-01,"Commercial Consumption","Colorado","CO",6902 +1990-04-01,"Commercial Consumption","Connecticut","CT",3009 +1990-04-01,"Commercial Consumption","Nebraska","NE",2799 +1990-04-01,"Commercial Consumption","Mississippi","MS",1541 +1990-04-01,"Commercial Consumption","South Dakota","SD",769 +1990-04-01,"Commercial Consumption","Kansas","KS",4800 +1990-04-01,"Commercial Consumption","Ohio","OH",13373 +1990-04-01,"Commercial Consumption","Hawaii","HI",180 +1990-04-01,"Commercial Consumption","California","CA",23423 +1990-04-01,"Commercial Consumption","Utah","UT",1203 +1990-04-01,"Commercial Consumption","New Mexico","NM",2078 +1990-04-01,"Commercial Consumption","New Jersey","NJ",11796 +1990-04-01,"Commercial Consumption","Maryland","MD",2477 +1990-04-01,"Commercial Consumption","Iowa","IA",4261 +1990-04-01,"Commercial Consumption","New York","NY",17706 +1990-04-01,"Commercial Consumption","Illinois","IL",17635 +1990-04-01,"Commercial Consumption","Minnesota","MN",6734 +1990-04-01,"Commercial Consumption","Maine","ME",175 +1990-04-01,"Commercial Consumption","Georgia","GA",3960 +1990-04-01,"Commercial Consumption","Florida","FL",3026 +1990-04-01,"Commercial Consumption","Delaware","DE",419 +1990-04-01,"Commercial Consumption","Nevada","NV",1185 +1990-04-01,"Commercial Consumption","Louisiana","LA",2135 +1990-04-01,"Commercial Consumption","Washington","WA",3289 +1990-04-01,"Commercial Consumption","North Dakota","ND",1048 +1990-04-01,"Commercial Consumption","Oregon","OR",1550 +1990-04-01,"Commercial Consumption","Virginia","VA",4541 +1990-04-01,"Commercial Consumption","Wisconsin","WI",5436 +1990-04-01,"Commercial Consumption","New Hampshire","NH",518 +1990-04-01,"Commercial Consumption","Kentucky","KY",2702 +1990-04-01,"Commercial Consumption","Alaska","AK",1809 +1990-04-01,"Commercial Consumption","Oklahoma","OK",3424 +1990-04-01,"Commercial Consumption","Massachusetts","MA",5235 +1990-04-01,"Commercial Consumption","Montana","MT",998 +1990-04-01,"Commercial Consumption","Rhode Island","RI",857 +1990-04-01,"Commercial Consumption","Arizona","AZ",2338 +1990-04-01,"Commercial Consumption","Tennessee","TN",3811 +1990-04-01,"Commercial Consumption","Michigan","MI",15431 +1990-04-01,"Commercial Consumption","District of Columbia","DC",1384 +1990-04-01,"Commercial Consumption","Wyoming","WY",822 +1990-04-01,"Commercial Consumption","North Carolina","NC",2747 +1990-04-01,"Commercial Consumption","U.S.","U.S.",236272 +1990-04-01,"Commercial Consumption","Vermont","VT",196 +1990-04-01,"Commercial Consumption","Alabama","AL",2167 +1990-04-01,"Commercial Consumption","West Virginia","WV",2064 +1990-04-01,"Commercial Consumption","South Carolina","SC",1262 +1990-04-01,"Commercial Consumption","Pennsylvania","PA",12483 +1990-04-01,"Commercial Consumption","Missouri","MO",5622 +1990-04-01,"Commercial Consumption","Texas","TX",14054 +1990-04-01,"Commercial Consumption","Idaho","ID",610 +1990-04-01,"Commercial Consumption","Arkansas","AR",2223 +1990-04-01,"Commercial Consumption","Indiana","IN",6087 +1990-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100651 +1990-04-01,"Residential Consumption","Wisconsin","WI",10034 +1990-04-01,"Residential Consumption","Utah","UT",3287 +1990-04-01,"Residential Consumption","Maryland","MD",6861 +1990-04-01,"Residential Consumption","Oklahoma","OK",6640 +1990-04-01,"Residential Consumption","Missouri","MO",11838 +1990-04-01,"Residential Consumption","Virginia","VA",4591 +1990-04-01,"Residential Consumption","Nevada","NV",1127 +1990-04-01,"Residential Consumption","Minnesota","MN",9519 +1990-04-01,"Residential Consumption","Pennsylvania","PA",24487 +1990-04-01,"Residential Consumption","Indiana","IN",13294 +1990-04-01,"Residential Consumption","New Hampshire","NH",655 +1990-04-01,"Residential Consumption","U.S.","U.S.",399624 +1990-04-01,"Residential Consumption","South Carolina","SC",1538 +1990-04-01,"Residential Consumption","Connecticut","CT",3708 +1990-04-01,"Residential Consumption","Florida","FL",1048 +1990-04-01,"Residential Consumption","Idaho","ID",630 +1990-04-01,"Residential Consumption","New Jersey","NJ",17743 +1990-04-01,"Residential Consumption","Colorado","CO",9873 +1990-04-01,"Residential Consumption","Arizona","AZ",2197 +1990-04-01,"Residential Consumption","Alaska","AK",1181 +1990-04-01,"Residential Consumption","Wyoming","WY",1140 +1990-04-01,"Residential Consumption","North Carolina","NC",3296 +1990-04-01,"Residential Consumption","Michigan","MI",31606 +1990-04-01,"Residential Consumption","South Dakota","SD",959 +1990-04-01,"Residential Consumption","New Mexico","NM",2541 +1990-04-01,"Residential Consumption","Montana","MT",1459 +1990-04-01,"Residential Consumption","Kansas","KS",7528 +1990-04-01,"Residential Consumption","West Virginia","WV",3403 +1990-04-01,"Residential Consumption","New York","NY",34434 +1990-04-01,"Residential Consumption","Illinois","IL",37441 +1990-04-01,"Residential Consumption","Texas","TX",15292 +1990-04-01,"Residential Consumption","Rhode Island","RI",1867 +1990-04-01,"Residential Consumption","Mississippi","MS",2205 +1990-04-01,"Residential Consumption","Louisiana","LA",4263 +1990-04-01,"Residential Consumption","Iowa","IA",7337 +1990-04-01,"Residential Consumption","Vermont","VT",219 +1990-04-01,"Residential Consumption","Nebraska","NE",3959 +1990-04-01,"Residential Consumption","Massachusetts","MA",11633 +1990-04-01,"Residential Consumption","Washington","WA",3315 +1990-04-01,"Residential Consumption","California","CA",37602 +1990-04-01,"Residential Consumption","Alabama","AL",4143 +1990-04-01,"Residential Consumption","Oregon","OR",1820 +1990-04-01,"Residential Consumption","Ohio","OH",28903 +1990-04-01,"Residential Consumption","North Dakota","ND",949 +1990-04-01,"Residential Consumption","Tennessee","TN",4407 +1990-04-01,"Residential Consumption","District of Columbia","DC",1522 +1990-04-01,"Residential Consumption","Maine","ME",67 +1990-04-01,"Residential Consumption","Delaware","DE",797 +1990-04-01,"Residential Consumption","Hawaii","HI",50 +1990-04-01,"Residential Consumption","Georgia","GA",6398 +1990-04-01,"Residential Consumption","Arkansas","AR",3810 +1990-04-01,"Residential Consumption","Kentucky","KY",5007 +1990-05-01,"Commercial Consumption","Missouri","MO",3309 +1990-05-01,"Commercial Consumption","U.S.","U.S.",157645 +1990-05-01,"Commercial Consumption","Vermont","VT",116 +1990-05-01,"Commercial Consumption","Idaho","ID",479 +1990-05-01,"Commercial Consumption","Arizona","AZ",2174 +1990-05-01,"Commercial Consumption","Michigan","MI",9230 +1990-05-01,"Commercial Consumption","Wisconsin","WI",3701 +1990-05-01,"Commercial Consumption","New Jersey","NJ",7342 +1990-05-01,"Commercial Consumption","New Hampshire","NH",307 +1990-05-01,"Commercial Consumption","Montana","MT",766 +1990-05-01,"Commercial Consumption","Ohio","OH",7446 +1990-05-01,"Commercial Consumption","Iowa","IA",2409 +1990-05-01,"Commercial Consumption","Oregon","OR",1268 +1990-05-01,"Commercial Consumption","Kansas","KS",3112 +1990-05-01,"Commercial Consumption","Minnesota","MN",4032 +1990-05-01,"Commercial Consumption","Oklahoma","OK",2281 +1990-05-01,"Commercial Consumption","Kentucky","KY",1576 +1990-05-01,"Commercial Consumption","Rhode Island","RI",577 +1990-05-01,"Commercial Consumption","Hawaii","HI",181 +1990-05-01,"Commercial Consumption","Alabama","AL",1626 +1990-05-01,"Commercial Consumption","Indiana","IN",3191 +1990-05-01,"Commercial Consumption","District of Columbia","DC",951 +1990-05-01,"Commercial Consumption","North Dakota","ND",616 +1990-05-01,"Commercial Consumption","North Carolina","NC",1820 +1990-05-01,"Commercial Consumption","Virginia","VA",2412 +1990-05-01,"Commercial Consumption","Georgia","GA",2844 +1990-05-01,"Commercial Consumption","Florida","FL",2860 +1990-05-01,"Commercial Consumption","Washington","WA",2728 +1990-05-01,"Commercial Consumption","Texas","TX",12299 +1990-05-01,"Commercial Consumption","Illinois","IL",10676 +1990-05-01,"Commercial Consumption","Colorado","CO",5116 +1990-05-01,"Commercial Consumption","Massachusetts","MA",3381 +1990-05-01,"Commercial Consumption","South Dakota","SD",537 +1990-05-01,"Commercial Consumption","Alaska","AK",1456 +1990-05-01,"Commercial Consumption","Arkansas","AR",1398 +1990-05-01,"Commercial Consumption","Nebraska","NE",1480 +1990-05-01,"Commercial Consumption","Delaware","DE",239 +1990-05-01,"Commercial Consumption","Nevada","NV",1006 +1990-05-01,"Commercial Consumption","Louisiana","LA",1628 +1990-05-01,"Commercial Consumption","Wyoming","WY",628 +1990-05-01,"Commercial Consumption","West Virginia","WV",1224 +1990-05-01,"Commercial Consumption","South Carolina","SC",1040 +1990-05-01,"Commercial Consumption","Utah","UT",860 +1990-05-01,"Commercial Consumption","New Mexico","NM",1434 +1990-05-01,"Commercial Consumption","Pennsylvania","PA",6828 +1990-05-01,"Commercial Consumption","Maine","ME",108 +1990-05-01,"Commercial Consumption","Maryland","MD",1557 +1990-05-01,"Commercial Consumption","Connecticut","CT",1743 +1990-05-01,"Commercial Consumption","California","CA",18540 +1990-05-01,"Commercial Consumption","New York","NY",11586 +1990-05-01,"Commercial Consumption","Mississippi","MS",1070 +1990-05-01,"Commercial Consumption","Tennessee","TN",2474 +1990-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102105 +1990-05-01,"Residential Consumption","Texas","TX",10830 +1990-05-01,"Residential Consumption","Indiana","IN",7054 +1990-05-01,"Residential Consumption","North Dakota","ND",581 +1990-05-01,"Residential Consumption","Kentucky","KY",2448 +1990-05-01,"Residential Consumption","Oklahoma","OK",4024 +1990-05-01,"Residential Consumption","Arizona","AZ",1427 +1990-05-01,"Residential Consumption","Louisiana","LA",2775 +1990-05-01,"Residential Consumption","Nebraska","NE",2276 +1990-05-01,"Residential Consumption","Maryland","MD",3558 +1990-05-01,"Residential Consumption","Massachusetts","MA",7192 +1990-05-01,"Residential Consumption","Alabama","AL",2657 +1990-05-01,"Residential Consumption","South Dakota","SD",600 +1990-05-01,"Residential Consumption","District of Columbia","DC",849 +1990-05-01,"Residential Consumption","New Jersey","NJ",9578 +1990-05-01,"Residential Consumption","Kansas","KS",4486 +1990-05-01,"Residential Consumption","California","CA",30979 +1990-05-01,"Residential Consumption","Ohio","OH",17232 +1990-05-01,"Residential Consumption","Mississippi","MS",1266 +1990-05-01,"Residential Consumption","Hawaii","HI",45 +1990-05-01,"Residential Consumption","Arkansas","AR",2161 +1990-05-01,"Residential Consumption","Montana","MT",1104 +1990-05-01,"Residential Consumption","Colorado","CO",7248 +1990-05-01,"Residential Consumption","Delaware","DE",449 +1990-05-01,"Residential Consumption","Wyoming","WY",849 +1990-05-01,"Residential Consumption","West Virginia","WV",1747 +1990-05-01,"Residential Consumption","South Carolina","SC",737 +1990-05-01,"Residential Consumption","North Carolina","NC",1604 +1990-05-01,"Residential Consumption","Connecticut","CT",2203 +1990-05-01,"Residential Consumption","Tennessee","TN",2119 +1990-05-01,"Residential Consumption","Rhode Island","RI",1218 +1990-05-01,"Residential Consumption","Oregon","OR",1476 +1990-05-01,"Residential Consumption","Iowa","IA",4172 +1990-05-01,"Residential Consumption","Michigan","MI",19275 +1990-05-01,"Residential Consumption","Minnesota","MN",5540 +1990-05-01,"Residential Consumption","Pennsylvania","PA",13211 +1990-05-01,"Residential Consumption","Maine","ME",48 +1990-05-01,"Residential Consumption","Florida","FL",810 +1990-05-01,"Residential Consumption","Washington","WA",2575 +1990-05-01,"Residential Consumption","Missouri","MO",6241 +1990-05-01,"Residential Consumption","Virginia","VA",2400 +1990-05-01,"Residential Consumption","Utah","UT",2576 +1990-05-01,"Residential Consumption","Nevada","NV",862 +1990-05-01,"Residential Consumption","Georgia","GA",3781 +1990-05-01,"Residential Consumption","New Mexico","NM",1671 +1990-05-01,"Residential Consumption","New Hampshire","NH",395 +1990-05-01,"Residential Consumption","U.S.","U.S.",248272 +1990-05-01,"Residential Consumption","New York","NY",20503 +1990-05-01,"Residential Consumption","Wisconsin","WI",6598 +1990-05-01,"Residential Consumption","Vermont","VT",130 +1990-05-01,"Residential Consumption","Idaho","ID",475 +1990-05-01,"Residential Consumption","Alaska","AK",771 +1990-05-01,"Residential Consumption","Illinois","IL",23464 +1990-06-01,"Commercial Consumption","West Virginia","WV",924 +1990-06-01,"Commercial Consumption","New Mexico","NM",1027 +1990-06-01,"Commercial Consumption","Oregon","OR",1157 +1990-06-01,"Commercial Consumption","Oklahoma","OK",1519 +1990-06-01,"Commercial Consumption","Pennsylvania","PA",5134 +1990-06-01,"Commercial Consumption","Missouri","MO",2310 +1990-06-01,"Commercial Consumption","Iowa","IA",1602 +1990-06-01,"Commercial Consumption","Michigan","MI",5638 +1990-06-01,"Commercial Consumption","Minnesota","MN",2369 +1990-06-01,"Commercial Consumption","Colorado","CO",3122 +1990-06-01,"Commercial Consumption","Virginia","VA",1831 +1990-06-01,"Commercial Consumption","Wisconsin","WI",2130 +1990-06-01,"Commercial Consumption","Montana","MT",487 +1990-06-01,"Commercial Consumption","Maryland","MD",1131 +1990-06-01,"Commercial Consumption","Hawaii","HI",188 +1990-06-01,"Commercial Consumption","California","CA",17392 +1990-06-01,"Commercial Consumption","Alabama","AL",984 +1990-06-01,"Commercial Consumption","Tennessee","TN",1988 +1990-06-01,"Commercial Consumption","Illinois","IL",6785 +1990-06-01,"Commercial Consumption","Utah","UT",581 +1990-06-01,"Commercial Consumption","U.S.","U.S.",124086 +1990-06-01,"Commercial Consumption","Texas","TX",14204 +1990-06-01,"Commercial Consumption","Florida","FL",2673 +1990-06-01,"Commercial Consumption","New York","NY",10272 +1990-06-01,"Commercial Consumption","Nevada","NV",970 +1990-06-01,"Commercial Consumption","Arkansas","AR",1065 +1990-06-01,"Commercial Consumption","Nebraska","NE",1325 +1990-06-01,"Commercial Consumption","Wyoming","WY",410 +1990-06-01,"Commercial Consumption","New Hampshire","NH",221 +1990-06-01,"Commercial Consumption","Kentucky","KY",1129 +1990-06-01,"Commercial Consumption","Georgia","GA",2498 +1990-06-01,"Commercial Consumption","Connecticut","CT",1483 +1990-06-01,"Commercial Consumption","Arizona","AZ",1854 +1990-06-01,"Commercial Consumption","Louisiana","LA",1499 +1990-06-01,"Commercial Consumption","North Carolina","NC",1445 +1990-06-01,"Commercial Consumption","New Jersey","NJ",5460 +1990-06-01,"Commercial Consumption","Vermont","VT",68 +1990-06-01,"Commercial Consumption","Delaware","DE",174 +1990-06-01,"Commercial Consumption","Washington","WA",1951 +1990-06-01,"Commercial Consumption","South Carolina","SC",846 +1990-06-01,"Commercial Consumption","North Dakota","ND",383 +1990-06-01,"Commercial Consumption","Massachusetts","MA",2491 +1990-06-01,"Commercial Consumption","Maine","ME",70 +1990-06-01,"Commercial Consumption","Kansas","KS",2848 +1990-06-01,"Commercial Consumption","Rhode Island","RI",244 +1990-06-01,"Commercial Consumption","Ohio","OH",4838 +1990-06-01,"Commercial Consumption","Indiana","IN",1963 +1990-06-01,"Commercial Consumption","South Dakota","SD",306 +1990-06-01,"Commercial Consumption","Idaho","ID",389 +1990-06-01,"Commercial Consumption","Alaska","AK",1134 +1990-06-01,"Commercial Consumption","Mississippi","MS",884 +1990-06-01,"Commercial Consumption","District of Columbia","DC",699 +1990-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98543 +1990-06-01,"Residential Consumption","Oregon","OR",1206 +1990-06-01,"Residential Consumption","Wisconsin","WI",3564 +1990-06-01,"Residential Consumption","Tennessee","TN",1304 +1990-06-01,"Residential Consumption","South Dakota","SD",346 +1990-06-01,"Residential Consumption","Florida","FL",699 +1990-06-01,"Residential Consumption","Idaho","ID",360 +1990-06-01,"Residential Consumption","Alabama","AL",1625 +1990-06-01,"Residential Consumption","U.S.","U.S.",160823 +1990-06-01,"Residential Consumption","South Carolina","SC",439 +1990-06-01,"Residential Consumption","Ohio","OH",9850 +1990-06-01,"Residential Consumption","Maryland","MD",2659 +1990-06-01,"Residential Consumption","Nevada","NV",775 +1990-06-01,"Residential Consumption","Kansas","KS",2458 +1990-06-01,"Residential Consumption","West Virginia","WV",1055 +1990-06-01,"Residential Consumption","Texas","TX",8563 +1990-06-01,"Residential Consumption","Iowa","IA",2452 +1990-06-01,"Residential Consumption","Connecticut","CT",1345 +1990-06-01,"Residential Consumption","District of Columbia","DC",596 +1990-06-01,"Residential Consumption","New Hampshire","NH",262 +1990-06-01,"Residential Consumption","Alaska","AK",548 +1990-06-01,"Residential Consumption","Louisiana","LA",2264 +1990-06-01,"Residential Consumption","Virginia","VA",1732 +1990-06-01,"Residential Consumption","Indiana","IN",3980 +1990-06-01,"Residential Consumption","Arkansas","AR",1367 +1990-06-01,"Residential Consumption","Montana","MT",701 +1990-06-01,"Residential Consumption","Colorado","CO",4191 +1990-06-01,"Residential Consumption","Missouri","MO",3783 +1990-06-01,"Residential Consumption","Hawaii","HI",49 +1990-06-01,"Residential Consumption","Nebraska","NE",1294 +1990-06-01,"Residential Consumption","Massachusetts","MA",4891 +1990-06-01,"Residential Consumption","Oklahoma","OK",2206 +1990-06-01,"Residential Consumption","Rhode Island","RI",762 +1990-06-01,"Residential Consumption","Utah","UT",1880 +1990-06-01,"Residential Consumption","Michigan","MI",11093 +1990-06-01,"Residential Consumption","Pennsylvania","PA",8393 +1990-06-01,"Residential Consumption","North Dakota","ND",337 +1990-06-01,"Residential Consumption","New Jersey","NJ",6157 +1990-06-01,"Residential Consumption","Vermont","VT",82 +1990-06-01,"Residential Consumption","Georgia","GA",3153 +1990-06-01,"Residential Consumption","Kentucky","KY",1599 +1990-06-01,"Residential Consumption","North Carolina","NC",957 +1990-06-01,"Residential Consumption","Mississippi","MS",922 +1990-06-01,"Residential Consumption","Minnesota","MN",3296 +1990-06-01,"Residential Consumption","New Mexico","NM",1043 +1990-06-01,"Residential Consumption","Maine","ME",30 +1990-06-01,"Residential Consumption","Washington","WA",1945 +1990-06-01,"Residential Consumption","Delaware","DE",260 +1990-06-01,"Residential Consumption","California","CA",25125 +1990-06-01,"Residential Consumption","Arizona","AZ",1145 +1990-06-01,"Residential Consumption","Wyoming","WY",585 +1990-06-01,"Residential Consumption","New York","NY",13138 +1990-06-01,"Residential Consumption","Illinois","IL",12361 +1990-07-01,"Commercial Consumption","Wyoming","WY",247 +1990-07-01,"Commercial Consumption","New Jersey","NJ",4941 +1990-07-01,"Commercial Consumption","Maine","ME",52 +1990-07-01,"Commercial Consumption","Kansas","KS",4906 +1990-07-01,"Commercial Consumption","Vermont","VT",46 +1990-07-01,"Commercial Consumption","California","CA",21030 +1990-07-01,"Commercial Consumption","Tennessee","TN",1652 +1990-07-01,"Commercial Consumption","Nevada","NV",879 +1990-07-01,"Commercial Consumption","Indiana","IN",1658 +1990-07-01,"Commercial Consumption","South Carolina","SC",836 +1990-07-01,"Commercial Consumption","Minnesota","MN",2100 +1990-07-01,"Commercial Consumption","Massachusetts","MA",2009 +1990-07-01,"Commercial Consumption","Kentucky","KY",1037 +1990-07-01,"Commercial Consumption","Texas","TX",14184 +1990-07-01,"Commercial Consumption","Rhode Island","RI",413 +1990-07-01,"Commercial Consumption","Nebraska","NE",4837 +1990-07-01,"Commercial Consumption","Delaware","DE",139 +1990-07-01,"Commercial Consumption","Louisiana","LA",1361 +1990-07-01,"Commercial Consumption","Oregon","OR",821 +1990-07-01,"Commercial Consumption","South Dakota","SD",230 +1990-07-01,"Commercial Consumption","Montana","MT",323 +1990-07-01,"Commercial Consumption","Maryland","MD",1049 +1990-07-01,"Commercial Consumption","Connecticut","CT",1358 +1990-07-01,"Commercial Consumption","Washington","WA",1639 +1990-07-01,"Commercial Consumption","Utah","UT",373 +1990-07-01,"Commercial Consumption","New Hampshire","NH",153 +1990-07-01,"Commercial Consumption","U.S.","U.S.",123219 +1990-07-01,"Commercial Consumption","Ohio","OH",3975 +1990-07-01,"Commercial Consumption","Idaho","ID",293 +1990-07-01,"Commercial Consumption","Hawaii","HI",195 +1990-07-01,"Commercial Consumption","Mississippi","MS",819 +1990-07-01,"Commercial Consumption","Illinois","IL",7008 +1990-07-01,"Commercial Consumption","North Carolina","NC",1394 +1990-07-01,"Commercial Consumption","New Mexico","NM",853 +1990-07-01,"Commercial Consumption","Missouri","MO",2034 +1990-07-01,"Commercial Consumption","Georgia","GA",2359 +1990-07-01,"Commercial Consumption","Iowa","IA",1226 +1990-07-01,"Commercial Consumption","New York","NY",9602 +1990-07-01,"Commercial Consumption","Pennsylvania","PA",4387 +1990-07-01,"Commercial Consumption","Wisconsin","WI",1686 +1990-07-01,"Commercial Consumption","Michigan","MI",4610 +1990-07-01,"Commercial Consumption","District of Columbia","DC",514 +1990-07-01,"Commercial Consumption","Colorado","CO",2167 +1990-07-01,"Commercial Consumption","Oklahoma","OK",1312 +1990-07-01,"Commercial Consumption","Florida","FL",2584 +1990-07-01,"Commercial Consumption","Alaska","AK",1061 +1990-07-01,"Commercial Consumption","Arkansas","AR",1030 +1990-07-01,"Commercial Consumption","Arizona","AZ",1686 +1990-07-01,"Commercial Consumption","West Virginia","WV",889 +1990-07-01,"Commercial Consumption","North Dakota","ND",315 +1990-07-01,"Commercial Consumption","Virginia","VA",1802 +1990-07-01,"Commercial Consumption","Alabama","AL",1157 +1990-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100824 +1990-07-01,"Residential Consumption","Hawaii","HI",48 +1990-07-01,"Residential Consumption","Connecticut","CT",1100 +1990-07-01,"Residential Consumption","Maryland","MD",2203 +1990-07-01,"Residential Consumption","Nevada","NV",562 +1990-07-01,"Residential Consumption","Indiana","IN",3042 +1990-07-01,"Residential Consumption","Kansas","KS",1819 +1990-07-01,"Residential Consumption","Missouri","MO",2946 +1990-07-01,"Residential Consumption","West Virginia","WV",724 +1990-07-01,"Residential Consumption","U.S.","U.S.",126501 +1990-07-01,"Residential Consumption","South Carolina","SC",366 +1990-07-01,"Residential Consumption","Wisconsin","WI",2344 +1990-07-01,"Residential Consumption","Michigan","MI",7779 +1990-07-01,"Residential Consumption","District of Columbia","DC",490 +1990-07-01,"Residential Consumption","Virginia","VA",1391 +1990-07-01,"Residential Consumption","South Dakota","SD",231 +1990-07-01,"Residential Consumption","New Mexico","NM",795 +1990-07-01,"Residential Consumption","Florida","FL",661 +1990-07-01,"Residential Consumption","New Hampshire","NH",145 +1990-07-01,"Residential Consumption","Washington","WA",1050 +1990-07-01,"Residential Consumption","Arizona","AZ",931 +1990-07-01,"Residential Consumption","Wyoming","WY",320 +1990-07-01,"Residential Consumption","Illinois","IL",10424 +1990-07-01,"Residential Consumption","North Carolina","NC",763 +1990-07-01,"Residential Consumption","Idaho","ID",173 +1990-07-01,"Residential Consumption","Oklahoma","OK",1679 +1990-07-01,"Residential Consumption","Alabama","AL",1411 +1990-07-01,"Residential Consumption","Vermont","VT",43 +1990-07-01,"Residential Consumption","Tennessee","TN",993 +1990-07-01,"Residential Consumption","Nebraska","NE",1056 +1990-07-01,"Residential Consumption","Georgia","GA",2914 +1990-07-01,"Residential Consumption","Massachusetts","MA",3161 +1990-07-01,"Residential Consumption","Delaware","DE",183 +1990-07-01,"Residential Consumption","New York","NY",10258 +1990-07-01,"Residential Consumption","Texas","TX",7665 +1990-07-01,"Residential Consumption","Oregon","OR",704 +1990-07-01,"Residential Consumption","Mississippi","MS",850 +1990-07-01,"Residential Consumption","Alaska","AK",409 +1990-07-01,"Residential Consumption","Rhode Island","RI",481 +1990-07-01,"Residential Consumption","Utah","UT",1314 +1990-07-01,"Residential Consumption","Maine","ME",20 +1990-07-01,"Residential Consumption","Arkansas","AR",1154 +1990-07-01,"Residential Consumption","Montana","MT",389 +1990-07-01,"Residential Consumption","California","CA",22555 +1990-07-01,"Residential Consumption","Ohio","OH",7886 +1990-07-01,"Residential Consumption","Louisiana","LA",2028 +1990-07-01,"Residential Consumption","Iowa","IA",1633 +1990-07-01,"Residential Consumption","Minnesota","MN",2372 +1990-07-01,"Residential Consumption","Pennsylvania","PA",5973 +1990-07-01,"Residential Consumption","North Dakota","ND",191 +1990-07-01,"Residential Consumption","New Jersey","NJ",5017 +1990-07-01,"Residential Consumption","Kentucky","KY",1376 +1990-07-01,"Residential Consumption","Colorado","CO",2478 +1990-08-01,"Commercial Consumption","Colorado","CO",2127 +1990-08-01,"Commercial Consumption","Texas","TX",11592 +1990-08-01,"Commercial Consumption","Georgia","GA",2535 +1990-08-01,"Commercial Consumption","Ohio","OH",4165 +1990-08-01,"Commercial Consumption","Idaho","ID",280 +1990-08-01,"Commercial Consumption","Alabama","AL",1164 +1990-08-01,"Commercial Consumption","New York","NY",9683 +1990-08-01,"Commercial Consumption","Nebraska","NE",2596 +1990-08-01,"Commercial Consumption","Nevada","NV",782 +1990-08-01,"Commercial Consumption","Wyoming","WY",234 +1990-08-01,"Commercial Consumption","South Carolina","SC",830 +1990-08-01,"Commercial Consumption","Pennsylvania","PA",4567 +1990-08-01,"Commercial Consumption","Wisconsin","WI",1617 +1990-08-01,"Commercial Consumption","Montana","MT",348 +1990-08-01,"Commercial Consumption","Maine","ME",47 +1990-08-01,"Commercial Consumption","Alaska","AK",1077 +1990-08-01,"Commercial Consumption","Tennessee","TN",1791 +1990-08-01,"Commercial Consumption","West Virginia","WV",845 +1990-08-01,"Commercial Consumption","Minnesota","MN",2060 +1990-08-01,"Commercial Consumption","Oklahoma","OK",1355 +1990-08-01,"Commercial Consumption","South Dakota","SD",223 +1990-08-01,"Commercial Consumption","Hawaii","HI",180 +1990-08-01,"Commercial Consumption","California","CA",17705 +1990-08-01,"Commercial Consumption","Delaware","DE",138 +1990-08-01,"Commercial Consumption","Michigan","MI",4865 +1990-08-01,"Commercial Consumption","Illinois","IL",7341 +1990-08-01,"Commercial Consumption","Virginia","VA",1772 +1990-08-01,"Commercial Consumption","New Jersey","NJ",4929 +1990-08-01,"Commercial Consumption","Louisiana","LA",1238 +1990-08-01,"Commercial Consumption","Utah","UT",364 +1990-08-01,"Commercial Consumption","Missouri","MO",1971 +1990-08-01,"Commercial Consumption","New Hampshire","NH",153 +1990-08-01,"Commercial Consumption","Maryland","MD",961 +1990-08-01,"Commercial Consumption","Iowa","IA",1204 +1990-08-01,"Commercial Consumption","Connecticut","CT",1315 +1990-08-01,"Commercial Consumption","Indiana","IN",1860 +1990-08-01,"Commercial Consumption","Washington","WA",1476 +1990-08-01,"Commercial Consumption","North Dakota","ND",298 +1990-08-01,"Commercial Consumption","North Carolina","NC",1480 +1990-08-01,"Commercial Consumption","U.S.","U.S.",115333 +1990-08-01,"Commercial Consumption","Arkansas","AR",1043 +1990-08-01,"Commercial Consumption","Mississippi","MS",818 +1990-08-01,"Commercial Consumption","New Mexico","NM",889 +1990-08-01,"Commercial Consumption","Oregon","OR",769 +1990-08-01,"Commercial Consumption","Massachusetts","MA",2040 +1990-08-01,"Commercial Consumption","District of Columbia","DC",572 +1990-08-01,"Commercial Consumption","Kentucky","KY",1077 +1990-08-01,"Commercial Consumption","Kansas","KS",4462 +1990-08-01,"Commercial Consumption","Florida","FL",2497 +1990-08-01,"Commercial Consumption","Vermont","VT",62 +1990-08-01,"Commercial Consumption","Rhode Island","RI",365 +1990-08-01,"Commercial Consumption","Arizona","AZ",1580 +1990-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101239 +1990-08-01,"Residential Consumption","Louisiana","LA",1973 +1990-08-01,"Residential Consumption","Tennessee","TN",963 +1990-08-01,"Residential Consumption","Michigan","MI",8253 +1990-08-01,"Residential Consumption","Georgia","GA",2900 +1990-08-01,"Residential Consumption","Pennsylvania","PA",5697 +1990-08-01,"Residential Consumption","Colorado","CO",2357 +1990-08-01,"Residential Consumption","Arizona","AZ",856 +1990-08-01,"Residential Consumption","Alabama","AL",1334 +1990-08-01,"Residential Consumption","Texas","TX",7565 +1990-08-01,"Residential Consumption","North Carolina","NC",732 +1990-08-01,"Residential Consumption","Minnesota","MN",2281 +1990-08-01,"Residential Consumption","Arkansas","AR",1111 +1990-08-01,"Residential Consumption","New Hampshire","NH",128 +1990-08-01,"Residential Consumption","Montana","MT",392 +1990-08-01,"Residential Consumption","Oklahoma","OK",1599 +1990-08-01,"Residential Consumption","Mississippi","MS",809 +1990-08-01,"Residential Consumption","Hawaii","HI",39 +1990-08-01,"Residential Consumption","Wisconsin","WI",2475 +1990-08-01,"Residential Consumption","Maryland","MD",1986 +1990-08-01,"Residential Consumption","U.S.","U.S.",121276 +1990-08-01,"Residential Consumption","South Carolina","SC",346 +1990-08-01,"Residential Consumption","South Dakota","SD",215 +1990-08-01,"Residential Consumption","Florida","FL",603 +1990-08-01,"Residential Consumption","Kansas","KS",1678 +1990-08-01,"Residential Consumption","Alaska","AK",407 +1990-08-01,"Residential Consumption","Nebraska","NE",947 +1990-08-01,"Residential Consumption","Maine","ME",19 +1990-08-01,"Residential Consumption","Massachusetts","MA",2635 +1990-08-01,"Residential Consumption","Delaware","DE",166 +1990-08-01,"Residential Consumption","California","CA",22334 +1990-08-01,"Residential Consumption","West Virginia","WV",696 +1990-08-01,"Residential Consumption","Connecticut","CT",931 +1990-08-01,"Residential Consumption","Indiana","IN",3116 +1990-08-01,"Residential Consumption","North Dakota","ND",167 +1990-08-01,"Residential Consumption","Idaho","ID",160 +1990-08-01,"Residential Consumption","Kentucky","KY",1288 +1990-08-01,"Residential Consumption","Washington","WA",795 +1990-08-01,"Residential Consumption","Wyoming","WY",288 +1990-08-01,"Residential Consumption","Rhode Island","RI",480 +1990-08-01,"Residential Consumption","Oregon","OR",560 +1990-08-01,"Residential Consumption","Iowa","IA",1529 +1990-08-01,"Residential Consumption","Vermont","VT",40 +1990-08-01,"Residential Consumption","Virginia","VA",1367 +1990-08-01,"Residential Consumption","Utah","UT",1236 +1990-08-01,"Residential Consumption","District of Columbia","DC",433 +1990-08-01,"Residential Consumption","New Mexico","NM",755 +1990-08-01,"Residential Consumption","New Jersey","NJ",4515 +1990-08-01,"Residential Consumption","New York","NY",8933 +1990-08-01,"Residential Consumption","Ohio","OH",7153 +1990-08-01,"Residential Consumption","Nevada","NV",520 +1990-08-01,"Residential Consumption","Missouri","MO",2713 +1990-08-01,"Residential Consumption","Illinois","IL",10802 +1990-09-01,"Commercial Consumption","Virginia","VA",1671 +1990-09-01,"Commercial Consumption","Massachusetts","MA",1906 +1990-09-01,"Commercial Consumption","Maine","ME",62 +1990-09-01,"Commercial Consumption","Texas","TX",9448 +1990-09-01,"Commercial Consumption","Georgia","GA",2416 +1990-09-01,"Commercial Consumption","Hawaii","HI",180 +1990-09-01,"Commercial Consumption","District of Columbia","DC",721 +1990-09-01,"Commercial Consumption","North Carolina","NC",1596 +1990-09-01,"Commercial Consumption","Utah","UT",374 +1990-09-01,"Commercial Consumption","Oklahoma","OK",1235 +1990-09-01,"Commercial Consumption","Wisconsin","WI",1786 +1990-09-01,"Commercial Consumption","U.S.","U.S.",121352 +1990-09-01,"Commercial Consumption","Rhode Island","RI",508 +1990-09-01,"Commercial Consumption","Alaska","AK",1148 +1990-09-01,"Commercial Consumption","Arizona","AZ",1610 +1990-09-01,"Commercial Consumption","South Carolina","SC",872 +1990-09-01,"Commercial Consumption","North Dakota","ND",370 +1990-09-01,"Commercial Consumption","Vermont","VT",84 +1990-09-01,"Commercial Consumption","Arkansas","AR",1081 +1990-09-01,"Commercial Consumption","Alabama","AL",1195 +1990-09-01,"Commercial Consumption","Michigan","MI",5117 +1990-09-01,"Commercial Consumption","Louisiana","LA",1275 +1990-09-01,"Commercial Consumption","New Hampshire","NH",170 +1990-09-01,"Commercial Consumption","Maryland","MD",1016 +1990-09-01,"Commercial Consumption","Florida","FL",2483 +1990-09-01,"Commercial Consumption","Idaho","ID",292 +1990-09-01,"Commercial Consumption","Tennessee","TN",1597 +1990-09-01,"Commercial Consumption","Indiana","IN",1991 +1990-09-01,"Commercial Consumption","Washington","WA",1575 +1990-09-01,"Commercial Consumption","Colorado","CO",2069 +1990-09-01,"Commercial Consumption","Montana","MT",347 +1990-09-01,"Commercial Consumption","Ohio","OH",4240 +1990-09-01,"Commercial Consumption","Iowa","IA",1302 +1990-09-01,"Commercial Consumption","California","CA",23233 +1990-09-01,"Commercial Consumption","New York","NY",10261 +1990-09-01,"Commercial Consumption","Nebraska","NE",2333 +1990-09-01,"Commercial Consumption","Illinois","IL",7970 +1990-09-01,"Commercial Consumption","Pennsylvania","PA",5054 +1990-09-01,"Commercial Consumption","Kansas","KS",3836 +1990-09-01,"Commercial Consumption","Delaware","DE",136 +1990-09-01,"Commercial Consumption","West Virginia","WV",862 +1990-09-01,"Commercial Consumption","Oregon","OR",823 +1990-09-01,"Commercial Consumption","Missouri","MO",2083 +1990-09-01,"Commercial Consumption","South Dakota","SD",239 +1990-09-01,"Commercial Consumption","New Jersey","NJ",5323 +1990-09-01,"Commercial Consumption","Kentucky","KY",1025 +1990-09-01,"Commercial Consumption","Mississippi","MS",841 +1990-09-01,"Commercial Consumption","Nevada","NV",701 +1990-09-01,"Commercial Consumption","Wyoming","WY",241 +1990-09-01,"Commercial Consumption","Minnesota","MN",2342 +1990-09-01,"Commercial Consumption","New Mexico","NM",974 +1990-09-01,"Commercial Consumption","Connecticut","CT",1352 +1990-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96983 +1990-09-01,"Residential Consumption","South Dakota","SD",237 +1990-09-01,"Residential Consumption","New Mexico","NM",811 +1990-09-01,"Residential Consumption","Maryland","MD",2069 +1990-09-01,"Residential Consumption","Nevada","NV",521 +1990-09-01,"Residential Consumption","Minnesota","MN",2621 +1990-09-01,"Residential Consumption","Missouri","MO",2876 +1990-09-01,"Residential Consumption","California","CA",22093 +1990-09-01,"Residential Consumption","North Carolina","NC",752 +1990-09-01,"Residential Consumption","Connecticut","CT",1119 +1990-09-01,"Residential Consumption","Michigan","MI",9336 +1990-09-01,"Residential Consumption","Kansas","KS",1770 +1990-09-01,"Residential Consumption","Alaska","AK",527 +1990-09-01,"Residential Consumption","West Virginia","WV",800 +1990-09-01,"Residential Consumption","U.S.","U.S.",132115 +1990-09-01,"Residential Consumption","Texas","TX",7536 +1990-09-01,"Residential Consumption","Rhode Island","RI",539 +1990-09-01,"Residential Consumption","Ohio","OH",8553 +1990-09-01,"Residential Consumption","Hawaii","HI",44 +1990-09-01,"Residential Consumption","Georgia","GA",2979 +1990-09-01,"Residential Consumption","Pennsylvania","PA",6665 +1990-09-01,"Residential Consumption","Florida","FL",618 +1990-09-01,"Residential Consumption","Arkansas","AR",1170 +1990-09-01,"Residential Consumption","New Jersey","NJ",5336 +1990-09-01,"Residential Consumption","Montana","MT",450 +1990-09-01,"Residential Consumption","Delaware","DE",190 +1990-09-01,"Residential Consumption","Arizona","AZ",926 +1990-09-01,"Residential Consumption","Mississippi","MS",798 +1990-09-01,"Residential Consumption","Iowa","IA",1599 +1990-09-01,"Residential Consumption","Wisconsin","WI",3081 +1990-09-01,"Residential Consumption","Tennessee","TN",1017 +1990-09-01,"Residential Consumption","New York","NY",10089 +1990-09-01,"Residential Consumption","Louisiana","LA",2033 +1990-09-01,"Residential Consumption","Utah","UT",1222 +1990-09-01,"Residential Consumption","District of Columbia","DC",435 +1990-09-01,"Residential Consumption","Colorado","CO",2331 +1990-09-01,"Residential Consumption","Washington","WA",941 +1990-09-01,"Residential Consumption","Wyoming","WY",256 +1990-09-01,"Residential Consumption","Oregon","OR",532 +1990-09-01,"Residential Consumption","Vermont","VT",51 +1990-09-01,"Residential Consumption","Maine","ME",22 +1990-09-01,"Residential Consumption","North Dakota","ND",220 +1990-09-01,"Residential Consumption","Massachusetts","MA",2990 +1990-09-01,"Residential Consumption","Oklahoma","OK",1563 +1990-09-01,"Residential Consumption","South Carolina","SC",375 +1990-09-01,"Residential Consumption","Virginia","VA",1595 +1990-09-01,"Residential Consumption","Nebraska","NE",1034 +1990-09-01,"Residential Consumption","Indiana","IN",3684 +1990-09-01,"Residential Consumption","Idaho","ID",186 +1990-09-01,"Residential Consumption","New Hampshire","NH",162 +1990-09-01,"Residential Consumption","Kentucky","KY",1375 +1990-09-01,"Residential Consumption","Alabama","AL",1356 +1990-09-01,"Residential Consumption","Illinois","IL",12633 +1990-10-01,"Commercial Consumption","Minnesota","MN",4865 +1990-10-01,"Commercial Consumption","Oklahoma","OK",1613 +1990-10-01,"Commercial Consumption","New Jersey","NJ",5758 +1990-10-01,"Commercial Consumption","Rhode Island","RI",587 +1990-10-01,"Commercial Consumption","California","CA",17384 +1990-10-01,"Commercial Consumption","District of Columbia","DC",574 +1990-10-01,"Commercial Consumption","Pennsylvania","PA",6676 +1990-10-01,"Commercial Consumption","South Dakota","SD",459 +1990-10-01,"Commercial Consumption","New Hampshire","NH",265 +1990-10-01,"Commercial Consumption","Maryland","MD",1095 +1990-10-01,"Commercial Consumption","Kansas","KS",2893 +1990-10-01,"Commercial Consumption","Hawaii","HI",183 +1990-10-01,"Commercial Consumption","Alaska","AK",1554 +1990-10-01,"Commercial Consumption","Arizona","AZ",1555 +1990-10-01,"Commercial Consumption","Nevada","NV",1157 +1990-10-01,"Commercial Consumption","Indiana","IN",4087 +1990-10-01,"Commercial Consumption","Illinois","IL",15118 +1990-10-01,"Commercial Consumption","Washington","WA",2249 +1990-10-01,"Commercial Consumption","Colorado","CO",2918 +1990-10-01,"Commercial Consumption","Montana","MT",782 +1990-10-01,"Commercial Consumption","New York","NY",12661 +1990-10-01,"Commercial Consumption","New Mexico","NM",1168 +1990-10-01,"Commercial Consumption","Maine","ME",83 +1990-10-01,"Commercial Consumption","Ohio","OH",7272 +1990-10-01,"Commercial Consumption","Idaho","ID",459 +1990-10-01,"Commercial Consumption","Iowa","IA",2087 +1990-10-01,"Commercial Consumption","Michigan","MI",8592 +1990-10-01,"Commercial Consumption","North Dakota","ND",561 +1990-10-01,"Commercial Consumption","Utah","UT",629 +1990-10-01,"Commercial Consumption","Oregon","OR",1050 +1990-10-01,"Commercial Consumption","Georgia","GA",3098 +1990-10-01,"Commercial Consumption","Vermont","VT",127 +1990-10-01,"Commercial Consumption","Delaware","DE",163 +1990-10-01,"Commercial Consumption","Louisiana","LA",1487 +1990-10-01,"Commercial Consumption","South Carolina","SC",965 +1990-10-01,"Commercial Consumption","Massachusetts","MA",2416 +1990-10-01,"Commercial Consumption","Wisconsin","WI",3865 +1990-10-01,"Commercial Consumption","Kentucky","KY",2050 +1990-10-01,"Commercial Consumption","U.S.","U.S.",151052 +1990-10-01,"Commercial Consumption","Alabama","AL",1353 +1990-10-01,"Commercial Consumption","Nebraska","NE",2334 +1990-10-01,"Commercial Consumption","Wyoming","WY",378 +1990-10-01,"Commercial Consumption","West Virginia","WV",1237 +1990-10-01,"Commercial Consumption","North Carolina","NC",1795 +1990-10-01,"Commercial Consumption","Virginia","VA",2233 +1990-10-01,"Commercial Consumption","Texas","TX",9571 +1990-10-01,"Commercial Consumption","Florida","FL",2521 +1990-10-01,"Commercial Consumption","Connecticut","CT",1603 +1990-10-01,"Commercial Consumption","Mississippi","MS",1137 +1990-10-01,"Commercial Consumption","Tennessee","TN",2276 +1990-10-01,"Commercial Consumption","Missouri","MO",2863 +1990-10-01,"Commercial Consumption","Arkansas","AR",1260 +1990-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105580 +1990-10-01,"Residential Consumption","Hawaii","HI",42 +1990-10-01,"Residential Consumption","Connecticut","CT",1660 +1990-10-01,"Residential Consumption","South Dakota","SD",527 +1990-10-01,"Residential Consumption","Montana","MT",1040 +1990-10-01,"Residential Consumption","Kansas","KS",2515 +1990-10-01,"Residential Consumption","Missouri","MO",4467 +1990-10-01,"Residential Consumption","Alaska","AK",929 +1990-10-01,"Residential Consumption","West Virginia","WV",1353 +1990-10-01,"Residential Consumption","Illinois","IL",30333 +1990-10-01,"Residential Consumption","South Carolina","SC",483 +1990-10-01,"Residential Consumption","Rhode Island","RI",688 +1990-10-01,"Residential Consumption","Utah","UT",1932 +1990-10-01,"Residential Consumption","North Dakota","ND",398 +1990-10-01,"Residential Consumption","Kentucky","KY",3306 +1990-10-01,"Residential Consumption","Washington","WA",1966 +1990-10-01,"Residential Consumption","Arizona","AZ",1044 +1990-10-01,"Residential Consumption","Alabama","AL",1529 +1990-10-01,"Residential Consumption","U.S.","U.S.",213538 +1990-10-01,"Residential Consumption","Nebraska","NE",1896 +1990-10-01,"Residential Consumption","Michigan","MI",17937 +1990-10-01,"Residential Consumption","Georgia","GA",5357 +1990-10-01,"Residential Consumption","Oklahoma","OK",2416 +1990-10-01,"Residential Consumption","Wyoming","WY",484 +1990-10-01,"Residential Consumption","Mississippi","MS",948 +1990-10-01,"Residential Consumption","Wisconsin","WI",6656 +1990-10-01,"Residential Consumption","District of Columbia","DC",542 +1990-10-01,"Residential Consumption","Colorado","CO",3450 +1990-10-01,"Residential Consumption","Oregon","OR",893 +1990-10-01,"Residential Consumption","Maryland","MD",2672 +1990-10-01,"Residential Consumption","Florida","FL",633 +1990-10-01,"Residential Consumption","New Jersey","NJ",6708 +1990-10-01,"Residential Consumption","California","CA",24435 +1990-10-01,"Residential Consumption","North Carolina","NC",1070 +1990-10-01,"Residential Consumption","Iowa","IA",2866 +1990-10-01,"Residential Consumption","Vermont","VT",95 +1990-10-01,"Residential Consumption","Pennsylvania","PA",10603 +1990-10-01,"Residential Consumption","Indiana","IN",8499 +1990-10-01,"Residential Consumption","Massachusetts","MA",3726 +1990-10-01,"Residential Consumption","Idaho","ID",349 +1990-10-01,"Residential Consumption","Texas","TX",10268 +1990-10-01,"Residential Consumption","Ohio","OH",16806 +1990-10-01,"Residential Consumption","Tennessee","TN",1582 +1990-10-01,"Residential Consumption","Virginia","VA",2086 +1990-10-01,"Residential Consumption","New Mexico","NM",947 +1990-10-01,"Residential Consumption","Arkansas","AR",1479 +1990-10-01,"Residential Consumption","New Hampshire","NH",203 +1990-10-01,"Residential Consumption","New York","NY",14793 +1990-10-01,"Residential Consumption","Louisiana","LA",2349 +1990-10-01,"Residential Consumption","Nevada","NV",717 +1990-10-01,"Residential Consumption","Minnesota","MN",5611 +1990-10-01,"Residential Consumption","Maine","ME",27 +1990-10-01,"Residential Consumption","Delaware","DE",222 +1990-11-01,"Commercial Consumption","South Carolina","SC",1315 +1990-11-01,"Commercial Consumption","Virginia","VA",3251 +1990-11-01,"Commercial Consumption","New Hampshire","NH",380 +1990-11-01,"Commercial Consumption","Maine","ME",157 +1990-11-01,"Commercial Consumption","Kansas","KS",3877 +1990-11-01,"Commercial Consumption","Alabama","AL",1921 +1990-11-01,"Commercial Consumption","West Virginia","WV",1963 +1990-11-01,"Commercial Consumption","Washington","WA",3444 +1990-11-01,"Commercial Consumption","North Carolina","NC",2715 +1990-11-01,"Commercial Consumption","Minnesota","MN",7491 +1990-11-01,"Commercial Consumption","Montana","MT",1206 +1990-11-01,"Commercial Consumption","Texas","TX",12192 +1990-11-01,"Commercial Consumption","Pennsylvania","PA",11644 +1990-11-01,"Commercial Consumption","South Dakota","SD",825 +1990-11-01,"Commercial Consumption","New Jersey","NJ",9225 +1990-11-01,"Commercial Consumption","Hawaii","HI",184 +1990-11-01,"Commercial Consumption","California","CA",22637 +1990-11-01,"Commercial Consumption","Michigan","MI",14122 +1990-11-01,"Commercial Consumption","Louisiana","LA",2082 +1990-11-01,"Commercial Consumption","Wyoming","WY",759 +1990-11-01,"Commercial Consumption","Florida","FL",3285 +1990-11-01,"Commercial Consumption","Vermont","VT",195 +1990-11-01,"Commercial Consumption","Mississippi","MS",1508 +1990-11-01,"Commercial Consumption","Arizona","AZ",2018 +1990-11-01,"Commercial Consumption","Tennessee","TN",3426 +1990-11-01,"Commercial Consumption","Nevada","NV",1026 +1990-11-01,"Commercial Consumption","North Dakota","ND",916 +1990-11-01,"Commercial Consumption","Oklahoma","OK",2520 +1990-11-01,"Commercial Consumption","Wisconsin","WI",6030 +1990-11-01,"Commercial Consumption","Alaska","AK",2106 +1990-11-01,"Commercial Consumption","Nebraska","NE",2552 +1990-11-01,"Commercial Consumption","District of Columbia","DC",836 +1990-11-01,"Commercial Consumption","Colorado","CO",5301 +1990-11-01,"Commercial Consumption","Utah","UT",1382 +1990-11-01,"Commercial Consumption","New Mexico","NM",1729 +1990-11-01,"Commercial Consumption","Oregon","OR",1697 +1990-11-01,"Commercial Consumption","Missouri","MO",4811 +1990-11-01,"Commercial Consumption","Massachusetts","MA",4275 +1990-11-01,"Commercial Consumption","Ohio","OH",13757 +1990-11-01,"Commercial Consumption","Iowa","IA",3726 +1990-11-01,"Commercial Consumption","Indiana","IN",6640 +1990-11-01,"Commercial Consumption","Maryland","MD",1686 +1990-11-01,"Commercial Consumption","Idaho","ID",822 +1990-11-01,"Commercial Consumption","Connecticut","CT",2456 +1990-11-01,"Commercial Consumption","New York","NY",17210 +1990-11-01,"Commercial Consumption","Delaware","DE",309 +1990-11-01,"Commercial Consumption","Kentucky","KY",3194 +1990-11-01,"Commercial Consumption","U.S.","U.S.",223632 +1990-11-01,"Commercial Consumption","Georgia","GA",4228 +1990-11-01,"Commercial Consumption","Rhode Island","RI",763 +1990-11-01,"Commercial Consumption","Arkansas","AR",1948 +1990-11-01,"Commercial Consumption","Illinois","IL",19910 +1990-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104916 +1990-11-01,"Residential Consumption","Minnesota","MN",9947 +1990-11-01,"Residential Consumption","Georgia","GA",9115 +1990-11-01,"Residential Consumption","Florida","FL",905 +1990-11-01,"Residential Consumption","New Jersey","NJ",14180 +1990-11-01,"Residential Consumption","Colorado","CO",7142 +1990-11-01,"Residential Consumption","Kansas","KS",5082 +1990-11-01,"Residential Consumption","Oklahoma","OK",4675 +1990-11-01,"Residential Consumption","California","CA",40091 +1990-11-01,"Residential Consumption","New York","NY",29074 +1990-11-01,"Residential Consumption","Vermont","VT",183 +1990-11-01,"Residential Consumption","New Mexico","NM",1874 +1990-11-01,"Residential Consumption","Maine","ME",56 +1990-11-01,"Residential Consumption","Kentucky","KY",5741 +1990-11-01,"Residential Consumption","Mississippi","MS",2070 +1990-11-01,"Residential Consumption","Louisiana","LA",4380 +1990-11-01,"Residential Consumption","Maryland","MD",4832 +1990-11-01,"Residential Consumption","South Dakota","SD",973 +1990-11-01,"Residential Consumption","Massachusetts","MA",7713 +1990-11-01,"Residential Consumption","Illinois","IL",40903 +1990-11-01,"Residential Consumption","Ohio","OH",29783 +1990-11-01,"Residential Consumption","Wisconsin","WI",10282 +1990-11-01,"Residential Consumption","Nevada","NV",1270 +1990-11-01,"Residential Consumption","Arkansas","AR",3267 +1990-11-01,"Residential Consumption","Delaware","DE",483 +1990-11-01,"Residential Consumption","West Virginia","WV",3031 +1990-11-01,"Residential Consumption","North Carolina","NC",2985 +1990-11-01,"Residential Consumption","Hawaii","HI",45 +1990-11-01,"Residential Consumption","Tennessee","TN",4018 +1990-11-01,"Residential Consumption","North Dakota","ND",828 +1990-11-01,"Residential Consumption","Idaho","ID",896 +1990-11-01,"Residential Consumption","Missouri","MO",9332 +1990-11-01,"Residential Consumption","U.S.","U.S.",375652 +1990-11-01,"Residential Consumption","Oregon","OR",1973 +1990-11-01,"Residential Consumption","Iowa","IA",5772 +1990-11-01,"Residential Consumption","Indiana","IN",13130 +1990-11-01,"Residential Consumption","Montana","MT",1694 +1990-11-01,"Residential Consumption","Arizona","AZ",1711 +1990-11-01,"Residential Consumption","Alaska","AK",1586 +1990-11-01,"Residential Consumption","Wyoming","WY",973 +1990-11-01,"Residential Consumption","Texas","TX",16744 +1990-11-01,"Residential Consumption","Rhode Island","RI",1353 +1990-11-01,"Residential Consumption","Nebraska","NE",3458 +1990-11-01,"Residential Consumption","Michigan","MI",29517 +1990-11-01,"Residential Consumption","New Hampshire","NH",465 +1990-11-01,"Residential Consumption","South Carolina","SC",1605 +1990-11-01,"Residential Consumption","Connecticut","CT",3201 +1990-11-01,"Residential Consumption","Virginia","VA",4429 +1990-11-01,"Residential Consumption","Utah","UT",3699 +1990-11-01,"Residential Consumption","District of Columbia","DC",1005 +1990-11-01,"Residential Consumption","Pennsylvania","PA",20874 +1990-11-01,"Residential Consumption","Washington","WA",3946 +1990-11-01,"Residential Consumption","Alabama","AL",3360 +1990-12-01,"Commercial Consumption","Washington","WA",5071 +1990-12-01,"Commercial Consumption","Oklahoma","OK",4567 +1990-12-01,"Commercial Consumption","South Dakota","SD",1269 +1990-12-01,"Commercial Consumption","Kansas","KS",5907 +1990-12-01,"Commercial Consumption","Arkansas","AR",2949 +1990-12-01,"Commercial Consumption","New York","NY",24715 +1990-12-01,"Commercial Consumption","Nevada","NV",1705 +1990-12-01,"Commercial Consumption","Indiana","IN",10462 +1990-12-01,"Commercial Consumption","North Carolina","NC",3817 +1990-12-01,"Commercial Consumption","Virginia","VA",5081 +1990-12-01,"Commercial Consumption","Massachusetts","MA",5704 +1990-12-01,"Commercial Consumption","Iowa","IA",5955 +1990-12-01,"Commercial Consumption","California","CA",30759 +1990-12-01,"Commercial Consumption","Alabama","AL",2487 +1990-12-01,"Commercial Consumption","District of Columbia","DC",1589 +1990-12-01,"Commercial Consumption","Missouri","MO",7921 +1990-12-01,"Commercial Consumption","Kentucky","KY",4884 +1990-12-01,"Commercial Consumption","U.S.","U.S.",332196 +1990-12-01,"Commercial Consumption","Ohio","OH",19190 +1990-12-01,"Commercial Consumption","Idaho","ID",1315 +1990-12-01,"Commercial Consumption","Wyoming","WY",1132 +1990-12-01,"Commercial Consumption","South Carolina","SC",1749 +1990-12-01,"Commercial Consumption","Nebraska","NE",4094 +1990-12-01,"Commercial Consumption","Mississippi","MS",2050 +1990-12-01,"Commercial Consumption","Michigan","MI",21237 +1990-12-01,"Commercial Consumption","Louisiana","LA",2491 +1990-12-01,"Commercial Consumption","Florida","FL",3725 +1990-12-01,"Commercial Consumption","Rhode Island","RI",774 +1990-12-01,"Commercial Consumption","Alaska","AK",2818 +1990-12-01,"Commercial Consumption","Tennessee","TN",5490 +1990-12-01,"Commercial Consumption","Illinois","IL",29245 +1990-12-01,"Commercial Consumption","West Virginia","WV",2585 +1990-12-01,"Commercial Consumption","North Dakota","ND",1363 +1990-12-01,"Commercial Consumption","Minnesota","MN",12066 +1990-12-01,"Commercial Consumption","Colorado","CO",7682 +1990-12-01,"Commercial Consumption","Utah","UT",2540 +1990-12-01,"Commercial Consumption","Oregon","OR",2737 +1990-12-01,"Commercial Consumption","Pennsylvania","PA",16571 +1990-12-01,"Commercial Consumption","New Hampshire","NH",585 +1990-12-01,"Commercial Consumption","Maine","ME",219 +1990-12-01,"Commercial Consumption","Texas","TX",19981 +1990-12-01,"Commercial Consumption","Hawaii","HI",185 +1990-12-01,"Commercial Consumption","Connecticut","CT",3534 +1990-12-01,"Commercial Consumption","New Mexico","NM",3159 +1990-12-01,"Commercial Consumption","Wisconsin","WI",10074 +1990-12-01,"Commercial Consumption","Georgia","GA",6280 +1990-12-01,"Commercial Consumption","Arizona","AZ",3139 +1990-12-01,"Commercial Consumption","New Jersey","NJ",14011 +1990-12-01,"Commercial Consumption","Montana","MT",1889 +1990-12-01,"Commercial Consumption","Maryland","MD",2738 +1990-12-01,"Commercial Consumption","Vermont","VT",261 +1990-12-01,"Commercial Consumption","Delaware","DE",480 +1990-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",108738 +1990-12-01,"Residential Consumption","Nevada","NV",2593 +1990-12-01,"Residential Consumption","District of Columbia","DC",1828 +1990-12-01,"Residential Consumption","Massachusetts","MA",12157 +1990-12-01,"Residential Consumption","New Jersey","NJ",22596 +1990-12-01,"Residential Consumption","Delaware","DE",830 +1990-12-01,"Residential Consumption","Texas","TX",33597 +1990-12-01,"Residential Consumption","Ohio","OH",45224 +1990-12-01,"Residential Consumption","Louisiana","LA",6745 +1990-12-01,"Residential Consumption","Hawaii","HI",48 +1990-12-01,"Residential Consumption","Vermont","VT",273 +1990-12-01,"Residential Consumption","Nebraska","NE",6251 +1990-12-01,"Residential Consumption","Maryland","MD",8102 +1990-12-01,"Residential Consumption","New Hampshire","NH",665 +1990-12-01,"Residential Consumption","Kansas","KS",8922 +1990-12-01,"Residential Consumption","Oklahoma","OK",8248 +1990-12-01,"Residential Consumption","Missouri","MO",15677 +1990-12-01,"Residential Consumption","Arizona","AZ",4473 +1990-12-01,"Residential Consumption","Alabama","AL",5355 +1990-12-01,"Residential Consumption","Alaska","AK",2216 +1990-12-01,"Residential Consumption","West Virginia","WV",4069 +1990-12-01,"Residential Consumption","U.S.","U.S.",630275 +1990-12-01,"Residential Consumption","South Carolina","SC",2776 +1990-12-01,"Residential Consumption","Connecticut","CT",4817 +1990-12-01,"Residential Consumption","Wisconsin","WI",17537 +1990-12-01,"Residential Consumption","Tennessee","TN",6293 +1990-12-01,"Residential Consumption","Utah","UT",6463 +1990-12-01,"Residential Consumption","New York","NY",43341 +1990-12-01,"Residential Consumption","Georgia","GA",15540 +1990-12-01,"Residential Consumption","New Mexico","NM",3762 +1990-12-01,"Residential Consumption","Maine","ME",83 +1990-12-01,"Residential Consumption","Florida","FL",1438 +1990-12-01,"Residential Consumption","Idaho","ID",1397 +1990-12-01,"Residential Consumption","Arkansas","AR",4804 +1990-12-01,"Residential Consumption","Rhode Island","RI",2093 +1990-12-01,"Residential Consumption","North Carolina","NC",4998 +1990-12-01,"Residential Consumption","Iowa","IA",9631 +1990-12-01,"Residential Consumption","Michigan","MI",45069 +1990-12-01,"Residential Consumption","Colorado","CO",10956 +1990-12-01,"Residential Consumption","Oregon","OR",3407 +1990-12-01,"Residential Consumption","South Dakota","SD",1524 +1990-12-01,"Residential Consumption","Pennsylvania","PA",31349 +1990-12-01,"Residential Consumption","Montana","MT",2673 +1990-12-01,"Residential Consumption","Illinois","IL",76365 +1990-12-01,"Residential Consumption","Mississippi","MS",3018 +1990-12-01,"Residential Consumption","Virginia","VA",7292 +1990-12-01,"Residential Consumption","Minnesota","MN",17178 +1990-12-01,"Residential Consumption","Indiana","IN",21711 +1990-12-01,"Residential Consumption","North Dakota","ND",1235 +1990-12-01,"Residential Consumption","Kentucky","KY",9412 +1990-12-01,"Residential Consumption","Washington","WA",6144 +1990-12-01,"Residential Consumption","California","CA",76544 +1990-12-01,"Residential Consumption","Wyoming","WY",1556 +1991-01-01,"Commercial Consumption","West Virginia","WV",3061 +1991-01-01,"Commercial Consumption","North Dakota","ND",1917 +1991-01-01,"Commercial Consumption","Minnesota","MN",15649 +1991-01-01,"Commercial Consumption","Colorado","CO",12120 +1991-01-01,"Commercial Consumption","Oklahoma","OK",8702 +1991-01-01,"Commercial Consumption","Arkansas","AR",5034 +1991-01-01,"Commercial Consumption","Louisiana","LA",3639 +1991-01-01,"Commercial Consumption","New Jersey","NJ",17874 +1991-01-01,"Commercial Consumption","New Hampshire","NH",795 +1991-01-01,"Commercial Consumption","Texas","TX",26377 +1991-01-01,"Commercial Consumption","Mississippi","MS",2704 +1991-01-01,"Commercial Consumption","South Carolina","SC",2199 +1991-01-01,"Commercial Consumption","Pennsylvania","PA",21026 +1991-01-01,"Commercial Consumption","Missouri","MO",12748 +1991-01-01,"Commercial Consumption","Kentucky","KY",6313 +1991-01-01,"Commercial Consumption","Georgia","GA",7680 +1991-01-01,"Commercial Consumption","Ohio","OH",26286 +1991-01-01,"Commercial Consumption","Idaho","ID",1848 +1991-01-01,"Commercial Consumption","Iowa","IA",9237 +1991-01-01,"Commercial Consumption","Arizona","AZ",3716 +1991-01-01,"Commercial Consumption","Virginia","VA",6667 +1991-01-01,"Commercial Consumption","Massachusetts","MA",7617 +1991-01-01,"Commercial Consumption","South Dakota","SD",1723 +1991-01-01,"Commercial Consumption","Florida","FL",3875 +1991-01-01,"Commercial Consumption","New York","NY",28442 +1991-01-01,"Commercial Consumption","Wyoming","WY",1639 +1991-01-01,"Commercial Consumption","North Carolina","NC",4947 +1991-01-01,"Commercial Consumption","Utah","UT",4055 +1991-01-01,"Commercial Consumption","Maryland","MD",5709 +1991-01-01,"Commercial Consumption","Alaska","AK",2579 +1991-01-01,"Commercial Consumption","Alabama","AL",3334 +1991-01-01,"Commercial Consumption","Delaware","DE",677 +1991-01-01,"Commercial Consumption","Nevada","NV",2447 +1991-01-01,"Commercial Consumption","Indiana","IN",13081 +1991-01-01,"Commercial Consumption","Illinois","IL",35376 +1991-01-01,"Commercial Consumption","Oregon","OR",4074 +1991-01-01,"Commercial Consumption","Wisconsin","WI",13062 +1991-01-01,"Commercial Consumption","Montana","MT",2425 +1991-01-01,"Commercial Consumption","Maine","ME",282 +1991-01-01,"Commercial Consumption","Kansas","KS",10250 +1991-01-01,"Commercial Consumption","Rhode Island","RI",1089 +1991-01-01,"Commercial Consumption","Hawaii","HI",192 +1991-01-01,"Commercial Consumption","Connecticut","CT",4341 +1991-01-01,"Commercial Consumption","California","CA",31793 +1991-01-01,"Commercial Consumption","Nebraska","NE",5452 +1991-01-01,"Commercial Consumption","Michigan","MI",29054 +1991-01-01,"Commercial Consumption","District of Columbia","DC",2204 +1991-01-01,"Commercial Consumption","Washington","WA",6279 +1991-01-01,"Commercial Consumption","U.S.","U.S.",433714 +1991-01-01,"Commercial Consumption","Vermont","VT",335 +1991-01-01,"Commercial Consumption","New Mexico","NM",4292 +1991-01-01,"Commercial Consumption","Tennessee","TN",7499 +1991-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102082 +1991-01-01,"Residential Consumption","Hawaii","HI",50 +1991-01-01,"Residential Consumption","Connecticut","CT",6359 +1991-01-01,"Residential Consumption","Nevada","NV",3919 +1991-01-01,"Residential Consumption","Minnesota","MN",22882 +1991-01-01,"Residential Consumption","Indiana","IN",28978 +1991-01-01,"Residential Consumption","Idaho","ID",2145 +1991-01-01,"Residential Consumption","Arkansas","AR",8475 +1991-01-01,"Residential Consumption","North Carolina","NC",7073 +1991-01-01,"Residential Consumption","New Mexico","NM",5664 +1991-01-01,"Residential Consumption","North Dakota","ND",2019 +1991-01-01,"Residential Consumption","Delaware","DE",1249 +1991-01-01,"Residential Consumption","Arizona","AZ",6284 +1991-01-01,"Residential Consumption","West Virginia","WV",5561 +1991-01-01,"Residential Consumption","Texas","TX",47614 +1991-01-01,"Residential Consumption","Michigan","MI",61349 +1991-01-01,"Residential Consumption","Georgia","GA",18493 +1991-01-01,"Residential Consumption","District of Columbia","DC",2703 +1991-01-01,"Residential Consumption","Pennsylvania","PA",42638 +1991-01-01,"Residential Consumption","Florida","FL",1595 +1991-01-01,"Residential Consumption","New Jersey","NJ",30731 +1991-01-01,"Residential Consumption","New Hampshire","NH",905 +1991-01-01,"Residential Consumption","Oklahoma","OK",15898 +1991-01-01,"Residential Consumption","California","CA",81885 +1991-01-01,"Residential Consumption","New York","NY",55999 +1991-01-01,"Residential Consumption","Mississippi","MS",4628 +1991-01-01,"Residential Consumption","Iowa","IA",16033 +1991-01-01,"Residential Consumption","Wisconsin","WI",23338 +1991-01-01,"Residential Consumption","Utah","UT",9582 +1991-01-01,"Residential Consumption","Maryland","MD",11849 +1991-01-01,"Residential Consumption","Massachusetts","MA",16305 +1991-01-01,"Residential Consumption","Kentucky","KY",11629 +1991-01-01,"Residential Consumption","Kansas","KS",16989 +1991-01-01,"Residential Consumption","Washington","WA",8514 +1991-01-01,"Residential Consumption","Wyoming","WY",2238 +1991-01-01,"Residential Consumption","South Carolina","SC",3764 +1991-01-01,"Residential Consumption","Oregon","OR",5334 +1991-01-01,"Residential Consumption","Colorado","CO",17902 +1991-01-01,"Residential Consumption","U.S.","U.S.",843832 +1991-01-01,"Residential Consumption","Illinois","IL",92323 +1991-01-01,"Residential Consumption","Rhode Island","RI",2788 +1991-01-01,"Residential Consumption","Louisiana","LA",10169 +1991-01-01,"Residential Consumption","Vermont","VT",381 +1991-01-01,"Residential Consumption","Maine","ME",106 +1991-01-01,"Residential Consumption","Ohio","OH",58400 +1991-01-01,"Residential Consumption","Tennessee","TN",9950 +1991-01-01,"Residential Consumption","Virginia","VA",9653 +1991-01-01,"Residential Consumption","Nebraska","NE",9508 +1991-01-01,"Residential Consumption","South Dakota","SD",2199 +1991-01-01,"Residential Consumption","Montana","MT",3533 +1991-01-01,"Residential Consumption","Missouri","MO",27020 +1991-01-01,"Residential Consumption","Alabama","AL",7299 +1991-01-01,"Residential Consumption","Alaska","AK",1931 +1991-02-01,"Commercial Consumption","Minnesota","MN",11426 +1991-02-01,"Commercial Consumption","New Hampshire","NH",798 +1991-02-01,"Commercial Consumption","Montana","MT",1435 +1991-02-01,"Commercial Consumption","Arizona","AZ",3091 +1991-02-01,"Commercial Consumption","Kentucky","KY",5098 +1991-02-01,"Commercial Consumption","Kansas","KS",7397 +1991-02-01,"Commercial Consumption","Rhode Island","RI",979 +1991-02-01,"Commercial Consumption","Mississippi","MS",2572 +1991-02-01,"Commercial Consumption","Tennessee","TN",7400 +1991-02-01,"Commercial Consumption","Missouri","MO",9932 +1991-02-01,"Commercial Consumption","Massachusetts","MA",7579 +1991-02-01,"Commercial Consumption","Iowa","IA",6828 +1991-02-01,"Commercial Consumption","Louisiana","LA",3555 +1991-02-01,"Commercial Consumption","West Virginia","WV",2971 +1991-02-01,"Commercial Consumption","North Carolina","NC",4647 +1991-02-01,"Commercial Consumption","New Mexico","NM",3537 +1991-02-01,"Commercial Consumption","Oklahoma","OK",6014 +1991-02-01,"Commercial Consumption","Virginia","VA",5956 +1991-02-01,"Commercial Consumption","New Jersey","NJ",16614 +1991-02-01,"Commercial Consumption","Georgia","GA",6782 +1991-02-01,"Commercial Consumption","Delaware","DE",653 +1991-02-01,"Commercial Consumption","Wyoming","WY",1249 +1991-02-01,"Commercial Consumption","North Dakota","ND",1394 +1991-02-01,"Commercial Consumption","Colorado","CO",9991 +1991-02-01,"Commercial Consumption","Oregon","OR",2764 +1991-02-01,"Commercial Consumption","Florida","FL",3770 +1991-02-01,"Commercial Consumption","California","CA",23911 +1991-02-01,"Commercial Consumption","Arkansas","AR",4043 +1991-02-01,"Commercial Consumption","Nebraska","NE",4111 +1991-02-01,"Commercial Consumption","District of Columbia","DC",2308 +1991-02-01,"Commercial Consumption","Texas","TX",18723 +1991-02-01,"Commercial Consumption","Hawaii","HI",177 +1991-02-01,"Commercial Consumption","Washington","WA",5277 +1991-02-01,"Commercial Consumption","Wisconsin","WI",10137 +1991-02-01,"Commercial Consumption","South Dakota","SD",1243 +1991-02-01,"Commercial Consumption","Ohio","OH",24481 +1991-02-01,"Commercial Consumption","Alaska","AK",2388 +1991-02-01,"Commercial Consumption","Connecticut","CT",3973 +1991-02-01,"Commercial Consumption","Alabama","AL",3576 +1991-02-01,"Commercial Consumption","Michigan","MI",24902 +1991-02-01,"Commercial Consumption","South Carolina","SC",2076 +1991-02-01,"Commercial Consumption","Utah","UT",3108 +1991-02-01,"Commercial Consumption","Pennsylvania","PA",18276 +1991-02-01,"Commercial Consumption","Maine","ME",265 +1991-02-01,"Commercial Consumption","U.S.","U.S.",358854 +1991-02-01,"Commercial Consumption","Maryland","MD",5334 +1991-02-01,"Commercial Consumption","Vermont","VT",311 +1991-02-01,"Commercial Consumption","Idaho","ID",1291 +1991-02-01,"Commercial Consumption","New York","NY",25685 +1991-02-01,"Commercial Consumption","Nevada","NV",1839 +1991-02-01,"Commercial Consumption","Indiana","IN",10656 +1991-02-01,"Commercial Consumption","Illinois","IL",26327 +1991-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90299 +1991-02-01,"Residential Consumption","Michigan","MI",49685 +1991-02-01,"Residential Consumption","South Dakota","SD",1522 +1991-02-01,"Residential Consumption","Maine","ME",105 +1991-02-01,"Residential Consumption","New Jersey","NJ",27476 +1991-02-01,"Residential Consumption","Delaware","DE",1217 +1991-02-01,"Residential Consumption","Alabama","AL",8327 +1991-02-01,"Residential Consumption","West Virginia","WV",5527 +1991-02-01,"Residential Consumption","New York","NY",51173 +1991-02-01,"Residential Consumption","South Carolina","SC",3740 +1991-02-01,"Residential Consumption","Ohio","OH",51151 +1991-02-01,"Residential Consumption","Iowa","IA",11730 +1991-02-01,"Residential Consumption","Vermont","VT",366 +1991-02-01,"Residential Consumption","Virginia","VA",9064 +1991-02-01,"Residential Consumption","Georgia","GA",13332 +1991-02-01,"Residential Consumption","U.S.","U.S.",664218 +1991-02-01,"Residential Consumption","Rhode Island","RI",2714 +1991-02-01,"Residential Consumption","Mississippi","MS",4348 +1991-02-01,"Residential Consumption","Connecticut","CT",5707 +1991-02-01,"Residential Consumption","Wisconsin","WI",17258 +1991-02-01,"Residential Consumption","Tennessee","TN",8803 +1991-02-01,"Residential Consumption","Nebraska","NE",6544 +1991-02-01,"Residential Consumption","District of Columbia","DC",2543 +1991-02-01,"Residential Consumption","Pennsylvania","PA",38146 +1991-02-01,"Residential Consumption","New Hampshire","NH",943 +1991-02-01,"Residential Consumption","Washington","WA",6250 +1991-02-01,"Residential Consumption","Oklahoma","OK",11165 +1991-02-01,"Residential Consumption","Arizona","AZ",4569 +1991-02-01,"Residential Consumption","Oregon","OR",3529 +1991-02-01,"Residential Consumption","Hawaii","HI",50 +1991-02-01,"Residential Consumption","Utah","UT",7276 +1991-02-01,"Residential Consumption","Maryland","MD",10304 +1991-02-01,"Residential Consumption","Minnesota","MN",16115 +1991-02-01,"Residential Consumption","Idaho","ID",1469 +1991-02-01,"Residential Consumption","Montana","MT",2139 +1991-02-01,"Residential Consumption","Kansas","KS",12186 +1991-02-01,"Residential Consumption","California","CA",52982 +1991-02-01,"Residential Consumption","Alaska","AK",1847 +1991-02-01,"Residential Consumption","Wyoming","WY",1668 +1991-02-01,"Residential Consumption","Texas","TX",31260 +1991-02-01,"Residential Consumption","North Dakota","ND",1528 +1991-02-01,"Residential Consumption","Massachusetts","MA",16628 +1991-02-01,"Residential Consumption","Kentucky","KY",9644 +1991-02-01,"Residential Consumption","Colorado","CO",15114 +1991-02-01,"Residential Consumption","Missouri","MO",20480 +1991-02-01,"Residential Consumption","North Carolina","NC",6819 +1991-02-01,"Residential Consumption","Illinois","IL",62627 +1991-02-01,"Residential Consumption","Louisiana","LA",8812 +1991-02-01,"Residential Consumption","Nevada","NV",2512 +1991-02-01,"Residential Consumption","New Mexico","NM",4784 +1991-02-01,"Residential Consumption","Indiana","IN",22309 +1991-02-01,"Residential Consumption","Florida","FL",1811 +1991-02-01,"Residential Consumption","Arkansas","AR",6922 +1991-03-01,"Commercial Consumption","Washington","WA",4597 +1991-03-01,"Commercial Consumption","Montana","MT",1450 +1991-03-01,"Commercial Consumption","Maryland","MD",4545 +1991-03-01,"Commercial Consumption","Kansas","KS",5694 +1991-03-01,"Commercial Consumption","Idaho","ID",956 +1991-03-01,"Commercial Consumption","Mississippi","MS",1977 +1991-03-01,"Commercial Consumption","Tennessee","TN",5761 +1991-03-01,"Commercial Consumption","Minnesota","MN",10026 +1991-03-01,"Commercial Consumption","Colorado","CO",7910 +1991-03-01,"Commercial Consumption","Oklahoma","OK",4265 +1991-03-01,"Commercial Consumption","Missouri","MO",7479 +1991-03-01,"Commercial Consumption","Wisconsin","WI",8785 +1991-03-01,"Commercial Consumption","South Dakota","SD",1076 +1991-03-01,"Commercial Consumption","Maine","ME",236 +1991-03-01,"Commercial Consumption","U.S.","U.S.",310496 +1991-03-01,"Commercial Consumption","Texas","TX",16796 +1991-03-01,"Commercial Consumption","Rhode Island","RI",864 +1991-03-01,"Commercial Consumption","Arizona","AZ",2935 +1991-03-01,"Commercial Consumption","Massachusetts","MA",6948 +1991-03-01,"Commercial Consumption","Delaware","DE",579 +1991-03-01,"Commercial Consumption","Indiana","IN",8567 +1991-03-01,"Commercial Consumption","South Carolina","SC",1746 +1991-03-01,"Commercial Consumption","Oregon","OR",2407 +1991-03-01,"Commercial Consumption","Kentucky","KY",3647 +1991-03-01,"Commercial Consumption","Alaska","AK",2149 +1991-03-01,"Commercial Consumption","Arkansas","AR",2848 +1991-03-01,"Commercial Consumption","Alabama","AL",2761 +1991-03-01,"Commercial Consumption","New York","NY",23462 +1991-03-01,"Commercial Consumption","Nebraska","NE",3382 +1991-03-01,"Commercial Consumption","North Dakota","ND",1253 +1991-03-01,"Commercial Consumption","Georgia","GA",5905 +1991-03-01,"Commercial Consumption","Florida","FL",3782 +1991-03-01,"Commercial Consumption","Vermont","VT",259 +1991-03-01,"Commercial Consumption","Ohio","OH",20157 +1991-03-01,"Commercial Consumption","California","CA",26128 +1991-03-01,"Commercial Consumption","West Virginia","WV",2522 +1991-03-01,"Commercial Consumption","Virginia","VA",5270 +1991-03-01,"Commercial Consumption","New Jersey","NJ",14732 +1991-03-01,"Commercial Consumption","New Hampshire","NH",672 +1991-03-01,"Commercial Consumption","Iowa","IA",5412 +1991-03-01,"Commercial Consumption","Connecticut","CT",3566 +1991-03-01,"Commercial Consumption","Michigan","MI",21321 +1991-03-01,"Commercial Consumption","Wyoming","WY",996 +1991-03-01,"Commercial Consumption","North Carolina","NC",3990 +1991-03-01,"Commercial Consumption","Utah","UT",2282 +1991-03-01,"Commercial Consumption","New Mexico","NM",2855 +1991-03-01,"Commercial Consumption","Nevada","NV",1739 +1991-03-01,"Commercial Consumption","Pennsylvania","PA",16026 +1991-03-01,"Commercial Consumption","Hawaii","HI",169 +1991-03-01,"Commercial Consumption","Louisiana","LA",2713 +1991-03-01,"Commercial Consumption","Illinois","IL",22768 +1991-03-01,"Commercial Consumption","District of Columbia","DC",2131 +1991-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98018 +1991-03-01,"Residential Consumption","Texas","TX",22702 +1991-03-01,"Residential Consumption","Wisconsin","WI",15734 +1991-03-01,"Residential Consumption","Vermont","VT",299 +1991-03-01,"Residential Consumption","Michigan","MI",43914 +1991-03-01,"Residential Consumption","Pennsylvania","PA",32729 +1991-03-01,"Residential Consumption","Massachusetts","MA",14673 +1991-03-01,"Residential Consumption","Idaho","ID",1059 +1991-03-01,"Residential Consumption","West Virginia","WV",4858 +1991-03-01,"Residential Consumption","Ohio","OH",42595 +1991-03-01,"Residential Consumption","Connecticut","CT",5011 +1991-03-01,"Residential Consumption","Maryland","MD",9016 +1991-03-01,"Residential Consumption","Oklahoma","OK",8216 +1991-03-01,"Residential Consumption","Delaware","DE",1079 +1991-03-01,"Residential Consumption","California","CA",60602 +1991-03-01,"Residential Consumption","Alaska","AK",1477 +1991-03-01,"Residential Consumption","Rhode Island","RI",2448 +1991-03-01,"Residential Consumption","Oregon","OR",3075 +1991-03-01,"Residential Consumption","New Hampshire","NH",799 +1991-03-01,"Residential Consumption","Montana","MT",2087 +1991-03-01,"Residential Consumption","Missouri","MO",15212 +1991-03-01,"Residential Consumption","South Dakota","SD",1341 +1991-03-01,"Residential Consumption","Nevada","NV",2116 +1991-03-01,"Residential Consumption","Arkansas","AR",5073 +1991-03-01,"Residential Consumption","New Jersey","NJ",24120 +1991-03-01,"Residential Consumption","Kentucky","KY",7168 +1991-03-01,"Residential Consumption","Colorado","CO",11686 +1991-03-01,"Residential Consumption","U.S.","U.S.",573093 +1991-03-01,"Residential Consumption","Mississippi","MS",3390 +1991-03-01,"Residential Consumption","Iowa","IA",9458 +1991-03-01,"Residential Consumption","Virginia","VA",7241 +1991-03-01,"Residential Consumption","Utah","UT",5715 +1991-03-01,"Residential Consumption","Florida","FL",1568 +1991-03-01,"Residential Consumption","New York","NY",47603 +1991-03-01,"Residential Consumption","Illinois","IL",54680 +1991-03-01,"Residential Consumption","South Carolina","SC",2875 +1991-03-01,"Residential Consumption","Hawaii","HI",49 +1991-03-01,"Residential Consumption","Tennessee","TN",6940 +1991-03-01,"Residential Consumption","District of Columbia","DC",2076 +1991-03-01,"Residential Consumption","Maine","ME",94 +1991-03-01,"Residential Consumption","North Dakota","ND",1254 +1991-03-01,"Residential Consumption","Alabama","AL",6724 +1991-03-01,"Residential Consumption","Minnesota","MN",14249 +1991-03-01,"Residential Consumption","Georgia","GA",10872 +1991-03-01,"Residential Consumption","Indiana","IN",18772 +1991-03-01,"Residential Consumption","Washington","WA",5558 +1991-03-01,"Residential Consumption","Arizona","AZ",4018 +1991-03-01,"Residential Consumption","Wyoming","WY",1340 +1991-03-01,"Residential Consumption","North Carolina","NC",5529 +1991-03-01,"Residential Consumption","Louisiana","LA",6321 +1991-03-01,"Residential Consumption","Nebraska","NE",5212 +1991-03-01,"Residential Consumption","New Mexico","NM",3632 +1991-03-01,"Residential Consumption","Kansas","KS",8833 +1991-04-01,"Commercial Consumption","Wyoming","WY",830 +1991-04-01,"Commercial Consumption","Virginia","VA",3581 +1991-04-01,"Commercial Consumption","Rhode Island","RI",605 +1991-04-01,"Commercial Consumption","Ohio","OH",11779 +1991-04-01,"Commercial Consumption","Nevada","NV",1593 +1991-04-01,"Commercial Consumption","Idaho","ID",822 +1991-04-01,"Commercial Consumption","New York","NY",17684 +1991-04-01,"Commercial Consumption","Nebraska","NE",2193 +1991-04-01,"Commercial Consumption","Delaware","DE",414 +1991-04-01,"Commercial Consumption","Colorado","CO",6328 +1991-04-01,"Commercial Consumption","Utah","UT",1771 +1991-04-01,"Commercial Consumption","Oregon","OR",2048 +1991-04-01,"Commercial Consumption","Florida","FL",3363 +1991-04-01,"Commercial Consumption","Louisiana","LA",1974 +1991-04-01,"Commercial Consumption","North Carolina","NC",2629 +1991-04-01,"Commercial Consumption","New Hampshire","NH",484 +1991-04-01,"Commercial Consumption","Montana","MT",1053 +1991-04-01,"Commercial Consumption","Vermont","VT",187 +1991-04-01,"Commercial Consumption","Illinois","IL",13059 +1991-04-01,"Commercial Consumption","South Carolina","SC",1143 +1991-04-01,"Commercial Consumption","Pennsylvania","PA",10882 +1991-04-01,"Commercial Consumption","Missouri","MO",4261 +1991-04-01,"Commercial Consumption","South Dakota","SD",713 +1991-04-01,"Commercial Consumption","Alaska","AK",1896 +1991-04-01,"Commercial Consumption","North Dakota","ND",847 +1991-04-01,"Commercial Consumption","Minnesota","MN",6092 +1991-04-01,"Commercial Consumption","New Mexico","NM",2246 +1991-04-01,"Commercial Consumption","Wisconsin","WI",5471 +1991-04-01,"Commercial Consumption","New Jersey","NJ",11900 +1991-04-01,"Commercial Consumption","Iowa","IA",3305 +1991-04-01,"Commercial Consumption","Alabama","AL",1886 +1991-04-01,"Commercial Consumption","Tennessee","TN",3131 +1991-04-01,"Commercial Consumption","Indiana","IN",4535 +1991-04-01,"Commercial Consumption","District of Columbia","DC",1381 +1991-04-01,"Commercial Consumption","West Virginia","WV",1725 +1991-04-01,"Commercial Consumption","Kentucky","KY",1925 +1991-04-01,"Commercial Consumption","U.S.","U.S.",225466 +1991-04-01,"Commercial Consumption","Texas","TX",15181 +1991-04-01,"Commercial Consumption","Kansas","KS",4278 +1991-04-01,"Commercial Consumption","Georgia","GA",3348 +1991-04-01,"Commercial Consumption","Connecticut","CT",2352 +1991-04-01,"Commercial Consumption","Mississippi","MS",1291 +1991-04-01,"Commercial Consumption","Michigan","MI",14617 +1991-04-01,"Commercial Consumption","Washington","WA",4047 +1991-04-01,"Commercial Consumption","Oklahoma","OK",2489 +1991-04-01,"Commercial Consumption","Massachusetts","MA",5504 +1991-04-01,"Commercial Consumption","Maine","ME",180 +1991-04-01,"Commercial Consumption","Maryland","MD",3320 +1991-04-01,"Commercial Consumption","Hawaii","HI",187 +1991-04-01,"Commercial Consumption","California","CA",28375 +1991-04-01,"Commercial Consumption","Arkansas","AR",1778 +1991-04-01,"Commercial Consumption","Arizona","AZ",2785 +1991-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93388 +1991-04-01,"Residential Consumption","Utah","UT",4514 +1991-04-01,"Residential Consumption","Idaho","ID",909 +1991-04-01,"Residential Consumption","Kentucky","KY",3430 +1991-04-01,"Residential Consumption","Wyoming","WY",1124 +1991-04-01,"Residential Consumption","Rhode Island","RI",1758 +1991-04-01,"Residential Consumption","North Carolina","NC",2963 +1991-04-01,"Residential Consumption","Iowa","IA",5924 +1991-04-01,"Residential Consumption","Maine","ME",76 +1991-04-01,"Residential Consumption","Oklahoma","OK",4711 +1991-04-01,"Residential Consumption","New York","NY",33457 +1991-04-01,"Residential Consumption","Ohio","OH",25951 +1991-04-01,"Residential Consumption","Tennessee","TN",3245 +1991-04-01,"Residential Consumption","Michigan","MI",29081 +1991-04-01,"Residential Consumption","New Mexico","NM",3030 +1991-04-01,"Residential Consumption","Massachusetts","MA",11075 +1991-04-01,"Residential Consumption","New Jersey","NJ",16279 +1991-04-01,"Residential Consumption","Colorado","CO",9187 +1991-04-01,"Residential Consumption","Alabama","AL",3891 +1991-04-01,"Residential Consumption","Wisconsin","WI",9699 +1991-04-01,"Residential Consumption","Minnesota","MN",8351 +1991-04-01,"Residential Consumption","District of Columbia","DC",1493 +1991-04-01,"Residential Consumption","North Dakota","ND",859 +1991-04-01,"Residential Consumption","Montana","MT",1585 +1991-04-01,"Residential Consumption","Missouri","MO",7969 +1991-04-01,"Residential Consumption","California","CA",46136 +1991-04-01,"Residential Consumption","Arizona","AZ",3214 +1991-04-01,"Residential Consumption","Alaska","AK",1258 +1991-04-01,"Residential Consumption","West Virginia","WV",2876 +1991-04-01,"Residential Consumption","South Dakota","SD",845 +1991-04-01,"Residential Consumption","Nevada","NV",1876 +1991-04-01,"Residential Consumption","Kansas","KS",5415 +1991-04-01,"Residential Consumption","Delaware","DE",795 +1991-04-01,"Residential Consumption","Oregon","OR",2631 +1991-04-01,"Residential Consumption","Hawaii","HI",51 +1991-04-01,"Residential Consumption","Vermont","VT",225 +1991-04-01,"Residential Consumption","Nebraska","NE",3123 +1991-04-01,"Residential Consumption","Indiana","IN",10680 +1991-04-01,"Residential Consumption","Florida","FL",1078 +1991-04-01,"Residential Consumption","U.S.","U.S.",372922 +1991-04-01,"Residential Consumption","Mississippi","MS",1903 +1991-04-01,"Residential Consumption","Louisiana","LA",3668 +1991-04-01,"Residential Consumption","Connecticut","CT",3432 +1991-04-01,"Residential Consumption","Illinois","IL",32273 +1991-04-01,"Residential Consumption","Texas","TX",13394 +1991-04-01,"Residential Consumption","South Carolina","SC",1318 +1991-04-01,"Residential Consumption","Virginia","VA",4516 +1991-04-01,"Residential Consumption","Maryland","MD",5908 +1991-04-01,"Residential Consumption","Georgia","GA",5129 +1991-04-01,"Residential Consumption","Pennsylvania","PA",22324 +1991-04-01,"Residential Consumption","Arkansas","AR",2980 +1991-04-01,"Residential Consumption","New Hampshire","NH",599 +1991-04-01,"Residential Consumption","Washington","WA",4714 +1991-05-01,"Commercial Consumption","Wyoming","WY",680 +1991-05-01,"Commercial Consumption","Connecticut","CT",1462 +1991-05-01,"Commercial Consumption","Mississippi","MS",901 +1991-05-01,"Commercial Consumption","Tennessee","TN",2231 +1991-05-01,"Commercial Consumption","North Dakota","ND",629 +1991-05-01,"Commercial Consumption","North Carolina","NC",1928 +1991-05-01,"Commercial Consumption","New Mexico","NM",1435 +1991-05-01,"Commercial Consumption","Maine","ME",101 +1991-05-01,"Commercial Consumption","Texas","TX",11439 +1991-05-01,"Commercial Consumption","Delaware","DE",237 +1991-05-01,"Commercial Consumption","Maryland","MD",2108 +1991-05-01,"Commercial Consumption","Kansas","KS",3082 +1991-05-01,"Commercial Consumption","Alaska","AK",1576 +1991-05-01,"Commercial Consumption","Indiana","IN",2546 +1991-05-01,"Commercial Consumption","Utah","UT",1316 +1991-05-01,"Commercial Consumption","Virginia","VA",2481 +1991-05-01,"Commercial Consumption","Idaho","ID",623 +1991-05-01,"Commercial Consumption","Iowa","IA",1993 +1991-05-01,"Commercial Consumption","Arkansas","AR",1211 +1991-05-01,"Commercial Consumption","New York","NY",11669 +1991-05-01,"Commercial Consumption","South Carolina","SC",908 +1991-05-01,"Commercial Consumption","Minnesota","MN",4220 +1991-05-01,"Commercial Consumption","Colorado","CO",4849 +1991-05-01,"Commercial Consumption","Oregon","OR",1610 +1991-05-01,"Commercial Consumption","New Jersey","NJ",6767 +1991-05-01,"Commercial Consumption","New Hampshire","NH",291 +1991-05-01,"Commercial Consumption","Georgia","GA",2820 +1991-05-01,"Commercial Consumption","Hawaii","HI",173 +1991-05-01,"Commercial Consumption","California","CA",21468 +1991-05-01,"Commercial Consumption","Nevada","NV",1333 +1991-05-01,"Commercial Consumption","Louisiana","LA",1539 +1991-05-01,"Commercial Consumption","District of Columbia","DC",1063 +1991-05-01,"Commercial Consumption","West Virginia","WV",1068 +1991-05-01,"Commercial Consumption","Missouri","MO",2760 +1991-05-01,"Commercial Consumption","Massachusetts","MA",3772 +1991-05-01,"Commercial Consumption","Wisconsin","WI",3084 +1991-05-01,"Commercial Consumption","U.S.","U.S.",153549 +1991-05-01,"Commercial Consumption","Alabama","AL",1332 +1991-05-01,"Commercial Consumption","Arizona","AZ",2039 +1991-05-01,"Commercial Consumption","Illinois","IL",8214 +1991-05-01,"Commercial Consumption","Washington","WA",3025 +1991-05-01,"Commercial Consumption","Kentucky","KY",1198 +1991-05-01,"Commercial Consumption","Vermont","VT",105 +1991-05-01,"Commercial Consumption","Ohio","OH",6341 +1991-05-01,"Commercial Consumption","Nebraska","NE",1771 +1991-05-01,"Commercial Consumption","Oklahoma","OK",1702 +1991-05-01,"Commercial Consumption","Pennsylvania","PA",5835 +1991-05-01,"Commercial Consumption","South Dakota","SD",543 +1991-05-01,"Commercial Consumption","Montana","MT",843 +1991-05-01,"Commercial Consumption","Florida","FL",2978 +1991-05-01,"Commercial Consumption","Rhode Island","RI",667 +1991-05-01,"Commercial Consumption","Michigan","MI",9583 +1991-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92740 +1991-05-01,"Residential Consumption","Louisiana","LA",2540 +1991-05-01,"Residential Consumption","Wisconsin","WI",6053 +1991-05-01,"Residential Consumption","North Dakota","ND",671 +1991-05-01,"Residential Consumption","Washington","WA",3090 +1991-05-01,"Residential Consumption","Missouri","MO",4851 +1991-05-01,"Residential Consumption","Arizona","AZ",1620 +1991-05-01,"Residential Consumption","Vermont","VT",124 +1991-05-01,"Residential Consumption","Maryland","MD",3199 +1991-05-01,"Residential Consumption","New Jersey","NJ",8515 +1991-05-01,"Residential Consumption","Montana","MT",1244 +1991-05-01,"Residential Consumption","California","CA",34795 +1991-05-01,"Residential Consumption","Alaska","AK",907 +1991-05-01,"Residential Consumption","Wyoming","WY",922 +1991-05-01,"Residential Consumption","Hawaii","HI",46 +1991-05-01,"Residential Consumption","New Hampshire","NH",359 +1991-05-01,"Residential Consumption","Kentucky","KY",1805 +1991-05-01,"Residential Consumption","Alabama","AL",2059 +1991-05-01,"Residential Consumption","South Carolina","SC",604 +1991-05-01,"Residential Consumption","Ohio","OH",13621 +1991-05-01,"Residential Consumption","Virginia","VA",2150 +1991-05-01,"Residential Consumption","District of Columbia","DC",804 +1991-05-01,"Residential Consumption","Maine","ME",46 +1991-05-01,"Residential Consumption","West Virginia","WV",1372 +1991-05-01,"Residential Consumption","Texas","TX",9031 +1991-05-01,"Residential Consumption","Rhode Island","RI",1087 +1991-05-01,"Residential Consumption","North Carolina","NC",1490 +1991-05-01,"Residential Consumption","Mississippi","MS",1117 +1991-05-01,"Residential Consumption","Nevada","NV",1208 +1991-05-01,"Residential Consumption","New Mexico","NM",1732 +1991-05-01,"Residential Consumption","Arkansas","AR",1671 +1991-05-01,"Residential Consumption","Colorado","CO",7108 +1991-05-01,"Residential Consumption","Illinois","IL",18197 +1991-05-01,"Residential Consumption","Connecticut","CT",1976 +1991-05-01,"Residential Consumption","Michigan","MI",18655 +1991-05-01,"Residential Consumption","Massachusetts","MA",6325 +1991-05-01,"Residential Consumption","Idaho","ID",696 +1991-05-01,"Residential Consumption","Kansas","KS",3570 +1991-05-01,"Residential Consumption","Oklahoma","OK",2853 +1991-05-01,"Residential Consumption","Tennessee","TN",1629 +1991-05-01,"Residential Consumption","Utah","UT",3544 +1991-05-01,"Residential Consumption","Nebraska","NE",2234 +1991-05-01,"Residential Consumption","South Dakota","SD",645 +1991-05-01,"Residential Consumption","Indiana","IN",5630 +1991-05-01,"Residential Consumption","Delaware","DE",409 +1991-05-01,"Residential Consumption","New York","NY",19738 +1991-05-01,"Residential Consumption","Oregon","OR",1936 +1991-05-01,"Residential Consumption","Iowa","IA",3559 +1991-05-01,"Residential Consumption","Minnesota","MN",5656 +1991-05-01,"Residential Consumption","Georgia","GA",3781 +1991-05-01,"Residential Consumption","Pennsylvania","PA",11101 +1991-05-01,"Residential Consumption","Florida","FL",766 +1991-05-01,"Residential Consumption","U.S.","U.S.",228742 +1991-06-01,"Commercial Consumption","New Mexico","NM",1327 +1991-06-01,"Commercial Consumption","Oregon","OR",1274 +1991-06-01,"Commercial Consumption","Texas","TX",10763 +1991-06-01,"Commercial Consumption","Kansas","KS",2657 +1991-06-01,"Commercial Consumption","Hawaii","HI",173 +1991-06-01,"Commercial Consumption","Mississippi","MS",875 +1991-06-01,"Commercial Consumption","Pennsylvania","PA",4162 +1991-06-01,"Commercial Consumption","U.S.","U.S.",118635 +1991-06-01,"Commercial Consumption","Connecticut","CT",1030 +1991-06-01,"Commercial Consumption","New York","NY",9641 +1991-06-01,"Commercial Consumption","Arizona","AZ",1637 +1991-06-01,"Commercial Consumption","Illinois","IL",5162 +1991-06-01,"Commercial Consumption","District of Columbia","DC",784 +1991-06-01,"Commercial Consumption","Minnesota","MN",2541 +1991-06-01,"Commercial Consumption","Missouri","MO",2181 +1991-06-01,"Commercial Consumption","Massachusetts","MA",2466 +1991-06-01,"Commercial Consumption","Idaho","ID",405 +1991-06-01,"Commercial Consumption","Alaska","AK",1171 +1991-06-01,"Commercial Consumption","Indiana","IN",1648 +1991-06-01,"Commercial Consumption","Louisiana","LA",1418 +1991-06-01,"Commercial Consumption","New Jersey","NJ",5198 +1991-06-01,"Commercial Consumption","Kentucky","KY",1029 +1991-06-01,"Commercial Consumption","Nebraska","NE",1779 +1991-06-01,"Commercial Consumption","Michigan","MI",5601 +1991-06-01,"Commercial Consumption","North Dakota","ND",320 +1991-06-01,"Commercial Consumption","Colorado","CO",2826 +1991-06-01,"Commercial Consumption","Oklahoma","OK",1330 +1991-06-01,"Commercial Consumption","New Hampshire","NH",186 +1991-06-01,"Commercial Consumption","Rhode Island","RI",414 +1991-06-01,"Commercial Consumption","Nevada","NV",1121 +1991-06-01,"Commercial Consumption","Wyoming","WY",362 +1991-06-01,"Commercial Consumption","Wisconsin","WI",1643 +1991-06-01,"Commercial Consumption","South Dakota","SD",303 +1991-06-01,"Commercial Consumption","Maine","ME",73 +1991-06-01,"Commercial Consumption","Iowa","IA",1308 +1991-06-01,"Commercial Consumption","Alabama","AL",1149 +1991-06-01,"Commercial Consumption","Delaware","DE",161 +1991-06-01,"Commercial Consumption","West Virginia","WV",810 +1991-06-01,"Commercial Consumption","Washington","WA",2400 +1991-06-01,"Commercial Consumption","South Carolina","SC",818 +1991-06-01,"Commercial Consumption","Utah","UT",668 +1991-06-01,"Commercial Consumption","Virginia","VA",2159 +1991-06-01,"Commercial Consumption","Montana","MT",431 +1991-06-01,"Commercial Consumption","Florida","FL",2674 +1991-06-01,"Commercial Consumption","California","CA",20003 +1991-06-01,"Commercial Consumption","Arkansas","AR",1027 +1991-06-01,"Commercial Consumption","North Carolina","NC",1677 +1991-06-01,"Commercial Consumption","Maryland","MD",1602 +1991-06-01,"Commercial Consumption","Georgia","GA",2387 +1991-06-01,"Commercial Consumption","Vermont","VT",61 +1991-06-01,"Commercial Consumption","Ohio","OH",3971 +1991-06-01,"Commercial Consumption","Tennessee","TN",1829 +1991-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88701 +1991-06-01,"Residential Consumption","North Carolina","NC",931 +1991-06-01,"Residential Consumption","Hawaii","HI",45 +1991-06-01,"Residential Consumption","Minnesota","MN",2804 +1991-06-01,"Residential Consumption","Georgia","GA",3092 +1991-06-01,"Residential Consumption","Indiana","IN",3174 +1991-06-01,"Residential Consumption","Arkansas","AR",1261 +1991-06-01,"Residential Consumption","Arizona","AZ",1209 +1991-06-01,"Residential Consumption","West Virginia","WV",707 +1991-06-01,"Residential Consumption","New York","NY",11231 +1991-06-01,"Residential Consumption","Nebraska","NE",1163 +1991-06-01,"Residential Consumption","Maine","ME",32 +1991-06-01,"Residential Consumption","Florida","FL",714 +1991-06-01,"Residential Consumption","Kentucky","KY",1378 +1991-06-01,"Residential Consumption","Oklahoma","OK",1985 +1991-06-01,"Residential Consumption","South Carolina","SC",439 +1991-06-01,"Residential Consumption","Ohio","OH",7982 +1991-06-01,"Residential Consumption","Mississippi","MS",882 +1991-06-01,"Residential Consumption","Louisiana","LA",2264 +1991-06-01,"Residential Consumption","Virginia","VA",1621 +1991-06-01,"Residential Consumption","Maryland","MD",2317 +1991-06-01,"Residential Consumption","New Mexico","NM",1079 +1991-06-01,"Residential Consumption","Idaho","ID",393 +1991-06-01,"Residential Consumption","Delaware","DE",211 +1991-06-01,"Residential Consumption","Wyoming","WY",463 +1991-06-01,"Residential Consumption","Texas","TX",8293 +1991-06-01,"Residential Consumption","Wisconsin","WI",2500 +1991-06-01,"Residential Consumption","Tennessee","TN",1128 +1991-06-01,"Residential Consumption","District of Columbia","DC",503 +1991-06-01,"Residential Consumption","Alabama","AL",1583 +1991-06-01,"Residential Consumption","Illinois","IL",11041 +1991-06-01,"Residential Consumption","Rhode Island","RI",565 +1991-06-01,"Residential Consumption","Vermont","VT",64 +1991-06-01,"Residential Consumption","Utah","UT",2041 +1991-06-01,"Residential Consumption","Montana","MT",608 +1991-06-01,"Residential Consumption","Kansas","KS",1982 +1991-06-01,"Residential Consumption","Missouri","MO",3001 +1991-06-01,"Residential Consumption","Connecticut","CT",1173 +1991-06-01,"Residential Consumption","Michigan","MI",10014 +1991-06-01,"Residential Consumption","South Dakota","SD",301 +1991-06-01,"Residential Consumption","New Jersey","NJ",5361 +1991-06-01,"Residential Consumption","New Hampshire","NH",189 +1991-06-01,"Residential Consumption","Alaska","AK",662 +1991-06-01,"Residential Consumption","Oregon","OR",1461 +1991-06-01,"Residential Consumption","North Dakota","ND",277 +1991-06-01,"Residential Consumption","Colorado","CO",3600 +1991-06-01,"Residential Consumption","Washington","WA",2292 +1991-06-01,"Residential Consumption","California","CA",28515 +1991-06-01,"Residential Consumption","Iowa","IA",1991 +1991-06-01,"Residential Consumption","Nevada","NV",853 +1991-06-01,"Residential Consumption","Pennsylvania","PA",6704 +1991-06-01,"Residential Consumption","Massachusetts","MA",3761 +1991-06-01,"Residential Consumption","U.S.","U.S.",147839 +1991-07-01,"Commercial Consumption","Wyoming","WY",272 +1991-07-01,"Commercial Consumption","Minnesota","MN",2315 +1991-07-01,"Commercial Consumption","New Mexico","NM",998 +1991-07-01,"Commercial Consumption","Wisconsin","WI",1853 +1991-07-01,"Commercial Consumption","New Hampshire","NH",155 +1991-07-01,"Commercial Consumption","Montana","MT",357 +1991-07-01,"Commercial Consumption","Rhode Island","RI",538 +1991-07-01,"Commercial Consumption","Iowa","IA",1090 +1991-07-01,"Commercial Consumption","Nebraska","NE",5675 +1991-07-01,"Commercial Consumption","Indiana","IN",1613 +1991-07-01,"Commercial Consumption","North Dakota","ND",302 +1991-07-01,"Commercial Consumption","North Carolina","NC",1613 +1991-07-01,"Commercial Consumption","Utah","UT",405 +1991-07-01,"Commercial Consumption","Alaska","AK",1069 +1991-07-01,"Commercial Consumption","Connecticut","CT",995 +1991-07-01,"Commercial Consumption","California","CA",22080 +1991-07-01,"Commercial Consumption","Mississippi","MS",806 +1991-07-01,"Commercial Consumption","Delaware","DE",146 +1991-07-01,"Commercial Consumption","Arizona","AZ",1669 +1991-07-01,"Commercial Consumption","Oregon","OR",902 +1991-07-01,"Commercial Consumption","New Jersey","NJ",5844 +1991-07-01,"Commercial Consumption","Vermont","VT",55 +1991-07-01,"Commercial Consumption","Hawaii","HI",187 +1991-07-01,"Commercial Consumption","Nevada","NV",947 +1991-07-01,"Commercial Consumption","Louisiana","LA",1504 +1991-07-01,"Commercial Consumption","Ohio","OH",3703 +1991-07-01,"Commercial Consumption","Washington","WA",1831 +1991-07-01,"Commercial Consumption","South Carolina","SC",810 +1991-07-01,"Commercial Consumption","Oklahoma","OK",1290 +1991-07-01,"Commercial Consumption","Massachusetts","MA",2435 +1991-07-01,"Commercial Consumption","South Dakota","SD",263 +1991-07-01,"Commercial Consumption","Kentucky","KY",941 +1991-07-01,"Commercial Consumption","Idaho","ID",316 +1991-07-01,"Commercial Consumption","Alabama","AL",1128 +1991-07-01,"Commercial Consumption","District of Columbia","DC",705 +1991-07-01,"Commercial Consumption","Colorado","CO",2180 +1991-07-01,"Commercial Consumption","Virginia","VA",1867 +1991-07-01,"Commercial Consumption","Pennsylvania","PA",3760 +1991-07-01,"Commercial Consumption","Missouri","MO",1853 +1991-07-01,"Commercial Consumption","Maine","ME",65 +1991-07-01,"Commercial Consumption","Texas","TX",12769 +1991-07-01,"Commercial Consumption","Georgia","GA",2381 +1991-07-01,"Commercial Consumption","Florida","FL",2845 +1991-07-01,"Commercial Consumption","Arkansas","AR",998 +1991-07-01,"Commercial Consumption","New York","NY",10331 +1991-07-01,"Commercial Consumption","Tennessee","TN",1640 +1991-07-01,"Commercial Consumption","Illinois","IL",6031 +1991-07-01,"Commercial Consumption","West Virginia","WV",848 +1991-07-01,"Commercial Consumption","U.S.","U.S.",125161 +1991-07-01,"Commercial Consumption","Maryland","MD",1545 +1991-07-01,"Commercial Consumption","Kansas","KS",4321 +1991-07-01,"Commercial Consumption","Michigan","MI",4916 +1991-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89912 +1991-07-01,"Residential Consumption","Oregon","OR",811 +1991-07-01,"Residential Consumption","Louisiana","LA",1911 +1991-07-01,"Residential Consumption","Hawaii","HI",40 +1991-07-01,"Residential Consumption","Wisconsin","WI",2753 +1991-07-01,"Residential Consumption","Maryland","MD",2173 +1991-07-01,"Residential Consumption","Idaho","ID",194 +1991-07-01,"Residential Consumption","Alabama","AL",1434 +1991-07-01,"Residential Consumption","Alaska","AK",470 +1991-07-01,"Residential Consumption","Texas","TX",7856 +1991-07-01,"Residential Consumption","District of Columbia","DC",460 +1991-07-01,"Residential Consumption","Massachusetts","MA",3014 +1991-07-01,"Residential Consumption","Montana","MT",455 +1991-07-01,"Residential Consumption","Oklahoma","OK",1747 +1991-07-01,"Residential Consumption","Iowa","IA",1473 +1991-07-01,"Residential Consumption","Vermont","VT",46 +1991-07-01,"Residential Consumption","Tennessee","TN",1034 +1991-07-01,"Residential Consumption","Nevada","NV",622 +1991-07-01,"Residential Consumption","Georgia","GA",2984 +1991-07-01,"Residential Consumption","Colorado","CO",2569 +1991-07-01,"Residential Consumption","Kansas","KS",1737 +1991-07-01,"Residential Consumption","Delaware","DE",169 +1991-07-01,"Residential Consumption","Virginia","VA",1400 +1991-07-01,"Residential Consumption","North Dakota","ND",196 +1991-07-01,"Residential Consumption","Kentucky","KY",1278 +1991-07-01,"Residential Consumption","Washington","WA",1292 +1991-07-01,"Residential Consumption","California","CA",24971 +1991-07-01,"Residential Consumption","U.S.","U.S.",126156 +1991-07-01,"Residential Consumption","Mississippi","MS",846 +1991-07-01,"Residential Consumption","Utah","UT",1348 +1991-07-01,"Residential Consumption","New Hampshire","NH",141 +1991-07-01,"Residential Consumption","South Carolina","SC",375 +1991-07-01,"Residential Consumption","Ohio","OH",6897 +1991-07-01,"Residential Consumption","Pennsylvania","PA",5716 +1991-07-01,"Residential Consumption","Arkansas","AR",1103 +1991-07-01,"Residential Consumption","New York","NY",9292 +1991-07-01,"Residential Consumption","Illinois","IL",10168 +1991-07-01,"Residential Consumption","North Carolina","NC",748 +1991-07-01,"Residential Consumption","Connecticut","CT",915 +1991-07-01,"Residential Consumption","Minnesota","MN",2303 +1991-07-01,"Residential Consumption","New Mexico","NM",880 +1991-07-01,"Residential Consumption","Maine","ME",24 +1991-07-01,"Residential Consumption","New Jersey","NJ",4707 +1991-07-01,"Residential Consumption","West Virginia","WV",629 +1991-07-01,"Residential Consumption","Rhode Island","RI",498 +1991-07-01,"Residential Consumption","Nebraska","NE",1019 +1991-07-01,"Residential Consumption","Michigan","MI",7555 +1991-07-01,"Residential Consumption","South Dakota","SD",227 +1991-07-01,"Residential Consumption","Indiana","IN",2936 +1991-07-01,"Residential Consumption","Florida","FL",653 +1991-07-01,"Residential Consumption","Missouri","MO",2751 +1991-07-01,"Residential Consumption","Arizona","AZ",1042 +1991-07-01,"Residential Consumption","Wyoming","WY",293 +1991-08-01,"Commercial Consumption","South Carolina","SC",859 +1991-08-01,"Commercial Consumption","New Jersey","NJ",3856 +1991-08-01,"Commercial Consumption","Maine","ME",65 +1991-08-01,"Commercial Consumption","Kentucky","KY",991 +1991-08-01,"Commercial Consumption","West Virginia","WV",823 +1991-08-01,"Commercial Consumption","Washington","WA",1635 +1991-08-01,"Commercial Consumption","Missouri","MO",1896 +1991-08-01,"Commercial Consumption","South Dakota","SD",251 +1991-08-01,"Commercial Consumption","California","CA",16547 +1991-08-01,"Commercial Consumption","Michigan","MI",4508 +1991-08-01,"Commercial Consumption","Illinois","IL",5693 +1991-08-01,"Commercial Consumption","Massachusetts","MA",2188 +1991-08-01,"Commercial Consumption","New Hampshire","NH",156 +1991-08-01,"Commercial Consumption","Texas","TX",11125 +1991-08-01,"Commercial Consumption","Maryland","MD",1465 +1991-08-01,"Commercial Consumption","Ohio","OH",3933 +1991-08-01,"Commercial Consumption","Alaska","AK",1073 +1991-08-01,"Commercial Consumption","Connecticut","CT",1020 +1991-08-01,"Commercial Consumption","Montana","MT",341 +1991-08-01,"Commercial Consumption","Georgia","GA",2482 +1991-08-01,"Commercial Consumption","Vermont","VT",58 +1991-08-01,"Commercial Consumption","Idaho","ID",304 +1991-08-01,"Commercial Consumption","Hawaii","HI",172 +1991-08-01,"Commercial Consumption","Arkansas","AR",1023 +1991-08-01,"Commercial Consumption","Arizona","AZ",1722 +1991-08-01,"Commercial Consumption","Indiana","IN",1710 +1991-08-01,"Commercial Consumption","Colorado","CO",2040 +1991-08-01,"Commercial Consumption","New Mexico","NM",886 +1991-08-01,"Commercial Consumption","Florida","FL",2708 +1991-08-01,"Commercial Consumption","Rhode Island","RI",540 +1991-08-01,"Commercial Consumption","Delaware","DE",142 +1991-08-01,"Commercial Consumption","Tennessee","TN",1708 +1991-08-01,"Commercial Consumption","District of Columbia","DC",794 +1991-08-01,"Commercial Consumption","North Dakota","ND",314 +1991-08-01,"Commercial Consumption","North Carolina","NC",1679 +1991-08-01,"Commercial Consumption","Utah","UT",375 +1991-08-01,"Commercial Consumption","Oregon","OR",812 +1991-08-01,"Commercial Consumption","Oklahoma","OK",1279 +1991-08-01,"Commercial Consumption","Kansas","KS",3994 +1991-08-01,"Commercial Consumption","New York","NY",9764 +1991-08-01,"Commercial Consumption","Nebraska","NE",4406 +1991-08-01,"Commercial Consumption","Louisiana","LA",1253 +1991-08-01,"Commercial Consumption","Wyoming","WY",248 +1991-08-01,"Commercial Consumption","Wisconsin","WI",1415 +1991-08-01,"Commercial Consumption","Iowa","IA",1198 +1991-08-01,"Commercial Consumption","Alabama","AL",1052 +1991-08-01,"Commercial Consumption","Mississippi","MS",834 +1991-08-01,"Commercial Consumption","Nevada","NV",1005 +1991-08-01,"Commercial Consumption","Minnesota","MN",2304 +1991-08-01,"Commercial Consumption","Virginia","VA",2057 +1991-08-01,"Commercial Consumption","Pennsylvania","PA",3859 +1991-08-01,"Commercial Consumption","U.S.","U.S.",112561 +1991-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90072 +1991-08-01,"Residential Consumption","Tennessee","TN",961 +1991-08-01,"Residential Consumption","Florida","FL",610 +1991-08-01,"Residential Consumption","Kansas","KS",1634 +1991-08-01,"Residential Consumption","Mississippi","MS",811 +1991-08-01,"Residential Consumption","Michigan","MI",6594 +1991-08-01,"Residential Consumption","Georgia","GA",2965 +1991-08-01,"Residential Consumption","New Mexico","NM",778 +1991-08-01,"Residential Consumption","Maine","ME",19 +1991-08-01,"Residential Consumption","Massachusetts","MA",2723 +1991-08-01,"Residential Consumption","New Jersey","NJ",4563 +1991-08-01,"Residential Consumption","Colorado","CO",2283 +1991-08-01,"Residential Consumption","Oklahoma","OK",1573 +1991-08-01,"Residential Consumption","Alabama","AL",1368 +1991-08-01,"Residential Consumption","Wyoming","WY",259 +1991-08-01,"Residential Consumption","Oregon","OR",595 +1991-08-01,"Residential Consumption","Wisconsin","WI",2464 +1991-08-01,"Residential Consumption","Maryland","MD",2031 +1991-08-01,"Residential Consumption","Washington","WA",952 +1991-08-01,"Residential Consumption","Arizona","AZ",862 +1991-08-01,"Residential Consumption","North Carolina","NC",756 +1991-08-01,"Residential Consumption","Indiana","IN",2947 +1991-08-01,"Residential Consumption","Montana","MT",382 +1991-08-01,"Residential Consumption","Rhode Island","RI",525 +1991-08-01,"Residential Consumption","Louisiana","LA",1900 +1991-08-01,"Residential Consumption","Virginia","VA",1365 +1991-08-01,"Residential Consumption","South Dakota","SD",215 +1991-08-01,"Residential Consumption","Minnesota","MN",2268 +1991-08-01,"Residential Consumption","North Dakota","ND",193 +1991-08-01,"Residential Consumption","Kentucky","KY",1168 +1991-08-01,"Residential Consumption","New York","NY",8622 +1991-08-01,"Residential Consumption","Texas","TX",7440 +1991-08-01,"Residential Consumption","Hawaii","HI",39 +1991-08-01,"Residential Consumption","Vermont","VT",40 +1991-08-01,"Residential Consumption","Utah","UT",1269 +1991-08-01,"Residential Consumption","Nevada","NV",546 +1991-08-01,"Residential Consumption","Missouri","MO",2597 +1991-08-01,"Residential Consumption","Delaware","DE",186 +1991-08-01,"Residential Consumption","West Virginia","WV",622 +1991-08-01,"Residential Consumption","U.S.","U.S.",117851 +1991-08-01,"Residential Consumption","Connecticut","CT",938 +1991-08-01,"Residential Consumption","Nebraska","NE",953 +1991-08-01,"Residential Consumption","Pennsylvania","PA",5399 +1991-08-01,"Residential Consumption","Idaho","ID",179 +1991-08-01,"Residential Consumption","Alaska","AK",438 +1991-08-01,"Residential Consumption","South Carolina","SC",370 +1991-08-01,"Residential Consumption","Ohio","OH",6230 +1991-08-01,"Residential Consumption","Iowa","IA",1511 +1991-08-01,"Residential Consumption","District of Columbia","DC",432 +1991-08-01,"Residential Consumption","Arkansas","AR",1085 +1991-08-01,"Residential Consumption","New Hampshire","NH",127 +1991-08-01,"Residential Consumption","California","CA",22944 +1991-08-01,"Residential Consumption","Illinois","IL",10122 +1991-09-01,"Commercial Consumption","Wyoming","WY",269 +1991-09-01,"Commercial Consumption","North Dakota","ND",348 +1991-09-01,"Commercial Consumption","Colorado","CO",2087 +1991-09-01,"Commercial Consumption","Pennsylvania","PA",4580 +1991-09-01,"Commercial Consumption","Montana","MT",438 +1991-09-01,"Commercial Consumption","Minnesota","MN",2930 +1991-09-01,"Commercial Consumption","Oklahoma","OK",1299 +1991-09-01,"Commercial Consumption","Idaho","ID",329 +1991-09-01,"Commercial Consumption","Iowa","IA",1308 +1991-09-01,"Commercial Consumption","Arizona","AZ",1375 +1991-09-01,"Commercial Consumption","Tennessee","TN",1837 +1991-09-01,"Commercial Consumption","Washington","WA",1689 +1991-09-01,"Commercial Consumption","Massachusetts","MA",1939 +1991-09-01,"Commercial Consumption","South Dakota","SD",309 +1991-09-01,"Commercial Consumption","Alaska","AK",1198 +1991-09-01,"Commercial Consumption","Michigan","MI",5510 +1991-09-01,"Commercial Consumption","Maine","ME",59 +1991-09-01,"Commercial Consumption","Texas","TX",8843 +1991-09-01,"Commercial Consumption","Maryland","MD",1486 +1991-09-01,"Commercial Consumption","Georgia","GA",2346 +1991-09-01,"Commercial Consumption","Vermont","VT",82 +1991-09-01,"Commercial Consumption","Hawaii","HI",179 +1991-09-01,"Commercial Consumption","New York","NY",9195 +1991-09-01,"Commercial Consumption","New Mexico","NM",934 +1991-09-01,"Commercial Consumption","Missouri","MO",2056 +1991-09-01,"Commercial Consumption","U.S.","U.S.",121019 +1991-09-01,"Commercial Consumption","Arkansas","AR",1045 +1991-09-01,"Commercial Consumption","Alabama","AL",1093 +1991-09-01,"Commercial Consumption","Nebraska","NE",1961 +1991-09-01,"Commercial Consumption","Delaware","DE",145 +1991-09-01,"Commercial Consumption","Illinois","IL",7979 +1991-09-01,"Commercial Consumption","South Carolina","SC",875 +1991-09-01,"Commercial Consumption","North Carolina","NC",1789 +1991-09-01,"Commercial Consumption","Virginia","VA",1860 +1991-09-01,"Commercial Consumption","Rhode Island","RI",555 +1991-09-01,"Commercial Consumption","Ohio","OH",4196 +1991-09-01,"Commercial Consumption","Connecticut","CT",884 +1991-09-01,"Commercial Consumption","California","CA",23307 +1991-09-01,"Commercial Consumption","Indiana","IN",2358 +1991-09-01,"Commercial Consumption","Louisiana","LA",1229 +1991-09-01,"Commercial Consumption","District of Columbia","DC",689 +1991-09-01,"Commercial Consumption","Utah","UT",407 +1991-09-01,"Commercial Consumption","Oregon","OR",855 +1991-09-01,"Commercial Consumption","Wisconsin","WI",2229 +1991-09-01,"Commercial Consumption","New Jersey","NJ",5261 +1991-09-01,"Commercial Consumption","Kentucky","KY",1338 +1991-09-01,"Commercial Consumption","Mississippi","MS",865 +1991-09-01,"Commercial Consumption","Nevada","NV",761 +1991-09-01,"Commercial Consumption","West Virginia","WV",915 +1991-09-01,"Commercial Consumption","New Hampshire","NH",173 +1991-09-01,"Commercial Consumption","Kansas","KS",2629 +1991-09-01,"Commercial Consumption","Florida","FL",2998 +1991-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89133 +1991-09-01,"Residential Consumption","Oregon","OR",582 +1991-09-01,"Residential Consumption","North Carolina","NC",782 +1991-09-01,"Residential Consumption","Virginia","VA",1418 +1991-09-01,"Residential Consumption","Maryland","MD",2161 +1991-09-01,"Residential Consumption","Alaska","AK",600 +1991-09-01,"Residential Consumption","New York","NY",9542 +1991-09-01,"Residential Consumption","Illinois","IL",16099 +1991-09-01,"Residential Consumption","Tennessee","TN",1069 +1991-09-01,"Residential Consumption","Nevada","NV",547 +1991-09-01,"Residential Consumption","Arkansas","AR",1170 +1991-09-01,"Residential Consumption","Oklahoma","OK",1741 +1991-09-01,"Residential Consumption","Connecticut","CT",1086 +1991-09-01,"Residential Consumption","Nebraska","NE",1085 +1991-09-01,"Residential Consumption","Idaho","ID",217 +1991-09-01,"Residential Consumption","Colorado","CO",2367 +1991-09-01,"Residential Consumption","West Virginia","WV",765 +1991-09-01,"Residential Consumption","U.S.","U.S.",137994 +1991-09-01,"Residential Consumption","Rhode Island","RI",491 +1991-09-01,"Residential Consumption","Wisconsin","WI",3648 +1991-09-01,"Residential Consumption","Utah","UT",1347 +1991-09-01,"Residential Consumption","Minnesota","MN",3236 +1991-09-01,"Residential Consumption","Massachusetts","MA",3036 +1991-09-01,"Residential Consumption","New Hampshire","NH",156 +1991-09-01,"Residential Consumption","Montana","MT",559 +1991-09-01,"Residential Consumption","Kentucky","KY",1487 +1991-09-01,"Residential Consumption","Arizona","AZ",900 +1991-09-01,"Residential Consumption","Mississippi","MS",824 +1991-09-01,"Residential Consumption","Hawaii","HI",44 +1991-09-01,"Residential Consumption","District of Columbia","DC",463 +1991-09-01,"Residential Consumption","New Mexico","NM",811 +1991-09-01,"Residential Consumption","Maine","ME",26 +1991-09-01,"Residential Consumption","Indiana","IN",3906 +1991-09-01,"Residential Consumption","New Jersey","NJ",5168 +1991-09-01,"Residential Consumption","South Carolina","SC",390 +1991-09-01,"Residential Consumption","Vermont","VT",49 +1991-09-01,"Residential Consumption","Kansas","KS",1689 +1991-09-01,"Residential Consumption","Delaware","DE",175 +1991-09-01,"Residential Consumption","Ohio","OH",7805 +1991-09-01,"Residential Consumption","Michigan","MI",9297 +1991-09-01,"Residential Consumption","Georgia","GA",2893 +1991-09-01,"Residential Consumption","Florida","FL",646 +1991-09-01,"Residential Consumption","North Dakota","ND",224 +1991-09-01,"Residential Consumption","Washington","WA",1105 +1991-09-01,"Residential Consumption","California","CA",23383 +1991-09-01,"Residential Consumption","Texas","TX",7768 +1991-09-01,"Residential Consumption","Louisiana","LA",1974 +1991-09-01,"Residential Consumption","Iowa","IA",1757 +1991-09-01,"Residential Consumption","South Dakota","SD",286 +1991-09-01,"Residential Consumption","Pennsylvania","PA",6792 +1991-09-01,"Residential Consumption","Missouri","MO",2764 +1991-09-01,"Residential Consumption","Alabama","AL",1389 +1991-09-01,"Residential Consumption","Wyoming","WY",274 +1991-10-01,"Commercial Consumption","Utah","UT",551 +1991-10-01,"Commercial Consumption","Pennsylvania","PA",7438 +1991-10-01,"Commercial Consumption","Massachusetts","MA",2666 +1991-10-01,"Commercial Consumption","South Dakota","SD",588 +1991-10-01,"Commercial Consumption","Kentucky","KY",1862 +1991-10-01,"Commercial Consumption","Kansas","KS",2656 +1991-10-01,"Commercial Consumption","Florida","FL",2798 +1991-10-01,"Commercial Consumption","Rhode Island","RI",628 +1991-10-01,"Commercial Consumption","North Dakota","ND",633 +1991-10-01,"Commercial Consumption","Maryland","MD",2289 +1991-10-01,"Commercial Consumption","Georgia","GA",3082 +1991-10-01,"Commercial Consumption","Iowa","IA",2482 +1991-10-01,"Commercial Consumption","Connecticut","CT",1423 +1991-10-01,"Commercial Consumption","Mississippi","MS",989 +1991-10-01,"Commercial Consumption","Arizona","AZ",1609 +1991-10-01,"Commercial Consumption","Tennessee","TN",2454 +1991-10-01,"Commercial Consumption","Illinois","IL",11574 +1991-10-01,"Commercial Consumption","North Carolina","NC",2052 +1991-10-01,"Commercial Consumption","Minnesota","MN",5399 +1991-10-01,"Commercial Consumption","Colorado","CO",3017 +1991-10-01,"Commercial Consumption","Oregon","OR",927 +1991-10-01,"Commercial Consumption","Delaware","DE",203 +1991-10-01,"Commercial Consumption","District of Columbia","DC",658 +1991-10-01,"Commercial Consumption","Wyoming","WY",449 +1991-10-01,"Commercial Consumption","New Hampshire","NH",256 +1991-10-01,"Commercial Consumption","Idaho","ID",424 +1991-10-01,"Commercial Consumption","Hawaii","HI",177 +1991-10-01,"Commercial Consumption","Alaska","AK",1561 +1991-10-01,"Commercial Consumption","Arkansas","AR",1184 +1991-10-01,"Commercial Consumption","New York","NY",11571 +1991-10-01,"Commercial Consumption","Nevada","NV",1104 +1991-10-01,"Commercial Consumption","Indiana","IN",3614 +1991-10-01,"Commercial Consumption","South Carolina","SC",952 +1991-10-01,"Commercial Consumption","Oklahoma","OK",1590 +1991-10-01,"Commercial Consumption","Virginia","VA",2625 +1991-10-01,"Commercial Consumption","Wisconsin","WI",4335 +1991-10-01,"Commercial Consumption","Montana","MT",724 +1991-10-01,"Commercial Consumption","Maine","ME",103 +1991-10-01,"Commercial Consumption","U.S.","U.S.",163164 +1991-10-01,"Commercial Consumption","Vermont","VT",133 +1991-10-01,"Commercial Consumption","New Mexico","NM",1034 +1991-10-01,"Commercial Consumption","Louisiana","LA",1440 +1991-10-01,"Commercial Consumption","West Virginia","WV",1365 +1991-10-01,"Commercial Consumption","Missouri","MO",2689 +1991-10-01,"Commercial Consumption","New Jersey","NJ",7210 +1991-10-01,"Commercial Consumption","Ohio","OH",8065 +1991-10-01,"Commercial Consumption","California","CA",26510 +1991-10-01,"Commercial Consumption","Michigan","MI",9450 +1991-10-01,"Commercial Consumption","Washington","WA",2099 +1991-10-01,"Commercial Consumption","Texas","TX",11156 +1991-10-01,"Commercial Consumption","Alabama","AL",1311 +1991-10-01,"Commercial Consumption","Nebraska","NE",2056 +1991-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96573 +1991-10-01,"Residential Consumption","Virginia","VA",2516 +1991-10-01,"Residential Consumption","Maryland","MD",3691 +1991-10-01,"Residential Consumption","South Dakota","SD",609 +1991-10-01,"Residential Consumption","Florida","FL",659 +1991-10-01,"Residential Consumption","New Hampshire","NH",249 +1991-10-01,"Residential Consumption","Kansas","KS",2494 +1991-10-01,"Residential Consumption","Oklahoma","OK",2327 +1991-10-01,"Residential Consumption","West Virginia","WV",1738 +1991-10-01,"Residential Consumption","Texas","TX",10188 +1991-10-01,"Residential Consumption","Rhode Island","RI",870 +1991-10-01,"Residential Consumption","Minnesota","MN",6654 +1991-10-01,"Residential Consumption","District of Columbia","DC",587 +1991-10-01,"Residential Consumption","New Mexico","NM",1052 +1991-10-01,"Residential Consumption","Arkansas","AR",1524 +1991-10-01,"Residential Consumption","Hawaii","HI",42 +1991-10-01,"Residential Consumption","Connecticut","CT",1943 +1991-10-01,"Residential Consumption","Vermont","VT",110 +1991-10-01,"Residential Consumption","Nevada","NV",680 +1991-10-01,"Residential Consumption","Pennsylvania","PA",13403 +1991-10-01,"Residential Consumption","U.S.","U.S.",225108 +1991-10-01,"Residential Consumption","South Carolina","SC",645 +1991-10-01,"Residential Consumption","Wisconsin","WI",7348 +1991-10-01,"Residential Consumption","Nebraska","NE",2062 +1991-10-01,"Residential Consumption","New Jersey","NJ",8750 +1991-10-01,"Residential Consumption","Wyoming","WY",568 +1991-10-01,"Residential Consumption","Ohio","OH",17321 +1991-10-01,"Residential Consumption","Utah","UT",1802 +1991-10-01,"Residential Consumption","Michigan","MI",18491 +1991-10-01,"Residential Consumption","North Dakota","ND",441 +1991-10-01,"Residential Consumption","Washington","WA",1716 +1991-10-01,"Residential Consumption","Missouri","MO",4433 +1991-10-01,"Residential Consumption","Delaware","DE",261 +1991-10-01,"Residential Consumption","Alabama","AL",1793 +1991-10-01,"Residential Consumption","Alaska","AK",926 +1991-10-01,"Residential Consumption","Illinois","IL",27231 +1991-10-01,"Residential Consumption","Mississippi","MS",1024 +1991-10-01,"Residential Consumption","Louisiana","LA",2267 +1991-10-01,"Residential Consumption","Indiana","IN",7584 +1991-10-01,"Residential Consumption","Massachusetts","MA",4492 +1991-10-01,"Residential Consumption","Oregon","OR",710 +1991-10-01,"Residential Consumption","North Carolina","NC",1486 +1991-10-01,"Residential Consumption","Iowa","IA",4082 +1991-10-01,"Residential Consumption","Georgia","GA",4829 +1991-10-01,"Residential Consumption","Idaho","ID",314 +1991-10-01,"Residential Consumption","Tennessee","TN",1898 +1991-10-01,"Residential Consumption","Maine","ME",36 +1991-10-01,"Residential Consumption","Montana","MT",977 +1991-10-01,"Residential Consumption","Kentucky","KY",3120 +1991-10-01,"Residential Consumption","Colorado","CO",3541 +1991-10-01,"Residential Consumption","California","CA",26211 +1991-10-01,"Residential Consumption","Arizona","AZ",1077 +1991-10-01,"Residential Consumption","New York","NY",16338 +1991-11-01,"Commercial Consumption","West Virginia","WV",2169 +1991-11-01,"Commercial Consumption","Colorado","CO",6096 +1991-11-01,"Commercial Consumption","New Mexico","NM",1861 +1991-11-01,"Commercial Consumption","South Dakota","SD",1176 +1991-11-01,"Commercial Consumption","Maine","ME",152 +1991-11-01,"Commercial Consumption","Maryland","MD",3582 +1991-11-01,"Commercial Consumption","Rhode Island","RI",496 +1991-11-01,"Commercial Consumption","Arkansas","AR",2497 +1991-11-01,"Commercial Consumption","New York","NY",17033 +1991-11-01,"Commercial Consumption","Nevada","NV",1095 +1991-11-01,"Commercial Consumption","Indiana","IN",7821 +1991-11-01,"Commercial Consumption","South Carolina","SC",1492 +1991-11-01,"Commercial Consumption","Oregon","OR",1898 +1991-11-01,"Commercial Consumption","Pennsylvania","PA",12251 +1991-11-01,"Commercial Consumption","New Jersey","NJ",9914 +1991-11-01,"Commercial Consumption","New Hampshire","NH",420 +1991-11-01,"Commercial Consumption","Arizona","AZ",1941 +1991-11-01,"Commercial Consumption","Michigan","MI",12966 +1991-11-01,"Commercial Consumption","Washington","WA",3802 +1991-11-01,"Commercial Consumption","North Carolina","NC",3200 +1991-11-01,"Commercial Consumption","Virginia","VA",3855 +1991-11-01,"Commercial Consumption","Missouri","MO",6471 +1991-11-01,"Commercial Consumption","Florida","FL",3519 +1991-11-01,"Commercial Consumption","U.S.","U.S.",255612 +1991-11-01,"Commercial Consumption","Delaware","DE",354 +1991-11-01,"Commercial Consumption","District of Columbia","DC",1071 +1991-11-01,"Commercial Consumption","Wyoming","WY",873 +1991-11-01,"Commercial Consumption","Utah","UT",1634 +1991-11-01,"Commercial Consumption","Wisconsin","WI",8565 +1991-11-01,"Commercial Consumption","Montana","MT",1559 +1991-11-01,"Commercial Consumption","Georgia","GA",5153 +1991-11-01,"Commercial Consumption","Ohio","OH",15488 +1991-11-01,"Commercial Consumption","Iowa","IA",5287 +1991-11-01,"Commercial Consumption","Connecticut","CT",2396 +1991-11-01,"Commercial Consumption","Mississippi","MS",1721 +1991-11-01,"Commercial Consumption","North Dakota","ND",1241 +1991-11-01,"Commercial Consumption","Oklahoma","OK",3974 +1991-11-01,"Commercial Consumption","Massachusetts","MA",4048 +1991-11-01,"Commercial Consumption","Kentucky","KY",4197 +1991-11-01,"Commercial Consumption","Illinois","IL",23098 +1991-11-01,"Commercial Consumption","Minnesota","MN",10392 +1991-11-01,"Commercial Consumption","Vermont","VT",188 +1991-11-01,"Commercial Consumption","Idaho","ID",942 +1991-11-01,"Commercial Consumption","Hawaii","HI",178 +1991-11-01,"Commercial Consumption","Alabama","AL",2120 +1991-11-01,"Commercial Consumption","Nebraska","NE",3468 +1991-11-01,"Commercial Consumption","Tennessee","TN",4304 +1991-11-01,"Commercial Consumption","Texas","TX",17192 +1991-11-01,"Commercial Consumption","Kansas","KS",6075 +1991-11-01,"Commercial Consumption","Alaska","AK",1930 +1991-11-01,"Commercial Consumption","California","CA",20109 +1991-11-01,"Commercial Consumption","Louisiana","LA",2347 +1991-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97063 +1991-11-01,"Residential Consumption","Hawaii","HI",44 +1991-11-01,"Residential Consumption","Utah","UT",4293 +1991-11-01,"Residential Consumption","Pennsylvania","PA",23637 +1991-11-01,"Residential Consumption","Montana","MT",2218 +1991-11-01,"Residential Consumption","Washington","WA",4403 +1991-11-01,"Residential Consumption","U.S.","U.S.",459455 +1991-11-01,"Residential Consumption","Rhode Island","RI",1436 +1991-11-01,"Residential Consumption","Michigan","MI",33409 +1991-11-01,"Residential Consumption","Colorado","CO",8076 +1991-11-01,"Residential Consumption","Kansas","KS",7289 +1991-11-01,"Residential Consumption","Oklahoma","OK",6915 +1991-11-01,"Residential Consumption","Missouri","MO",12195 +1991-11-01,"Residential Consumption","Alabama","AL",3886 +1991-11-01,"Residential Consumption","Wyoming","WY",1179 +1991-11-01,"Residential Consumption","Mississippi","MS",2357 +1991-11-01,"Residential Consumption","Iowa","IA",8906 +1991-11-01,"Residential Consumption","Virginia","VA",5473 +1991-11-01,"Residential Consumption","Nebraska","NE",5196 +1991-11-01,"Residential Consumption","Maine","ME",56 +1991-11-01,"Residential Consumption","Massachusetts","MA",8070 +1991-11-01,"Residential Consumption","Delaware","DE",547 +1991-11-01,"Residential Consumption","Alaska","AK",1356 +1991-11-01,"Residential Consumption","Oregon","OR",2106 +1991-11-01,"Residential Consumption","North Carolina","NC",3751 +1991-11-01,"Residential Consumption","Tennessee","TN",5085 +1991-11-01,"Residential Consumption","Maryland","MD",6625 +1991-11-01,"Residential Consumption","Minnesota","MN",14101 +1991-11-01,"Residential Consumption","New Mexico","NM",1926 +1991-11-01,"Residential Consumption","California","CA",39238 +1991-11-01,"Residential Consumption","Arizona","AZ",1895 +1991-11-01,"Residential Consumption","Louisiana","LA",5200 +1991-11-01,"Residential Consumption","South Dakota","SD",1434 +1991-11-01,"Residential Consumption","District of Columbia","DC",1220 +1991-11-01,"Residential Consumption","Idaho","ID",1088 +1991-11-01,"Residential Consumption","Arkansas","AR",3895 +1991-11-01,"Residential Consumption","South Carolina","SC",1969 +1991-11-01,"Residential Consumption","Connecticut","CT",3433 +1991-11-01,"Residential Consumption","Wisconsin","WI",14481 +1991-11-01,"Residential Consumption","Georgia","GA",12479 +1991-11-01,"Residential Consumption","Texas","TX",23812 +1991-11-01,"Residential Consumption","Florida","FL",1130 +1991-11-01,"Residential Consumption","North Dakota","ND",1187 +1991-11-01,"Residential Consumption","New Hampshire","NH",453 +1991-11-01,"Residential Consumption","New York","NY",29610 +1991-11-01,"Residential Consumption","Ohio","OH",35764 +1991-11-01,"Residential Consumption","Vermont","VT",187 +1991-11-01,"Residential Consumption","Nevada","NV",1315 +1991-11-01,"Residential Consumption","Indiana","IN",16912 +1991-11-01,"Residential Consumption","New Jersey","NJ",16235 +1991-11-01,"Residential Consumption","Kentucky","KY",7676 +1991-11-01,"Residential Consumption","West Virginia","WV",3210 +1991-11-01,"Residential Consumption","Illinois","IL",61099 +1991-12-01,"Commercial Consumption","New Mexico","NM",3586 +1991-12-01,"Commercial Consumption","Kentucky","KY",5161 +1991-12-01,"Commercial Consumption","Rhode Island","RI",895 +1991-12-01,"Commercial Consumption","Idaho","ID",1321 +1991-12-01,"Commercial Consumption","California","CA",27379 +1991-12-01,"Commercial Consumption","Arizona","AZ",3077 +1991-12-01,"Commercial Consumption","Washington","WA",5057 +1991-12-01,"Commercial Consumption","North Dakota","ND",1535 +1991-12-01,"Commercial Consumption","South Dakota","SD",1286 +1991-12-01,"Commercial Consumption","Kansas","KS",5538 +1991-12-01,"Commercial Consumption","Iowa","IA",7167 +1991-12-01,"Commercial Consumption","Maryland","MD",5132 +1991-12-01,"Commercial Consumption","Ohio","OH",21940 +1991-12-01,"Commercial Consumption","Michigan","MI",23131 +1991-12-01,"Commercial Consumption","Oregon","OR",2758 +1991-12-01,"Commercial Consumption","Missouri","MO",8864 +1991-12-01,"Commercial Consumption","Georgia","GA",6670 +1991-12-01,"Commercial Consumption","Vermont","VT",284 +1991-12-01,"Commercial Consumption","Alabama","AL",2968 +1991-12-01,"Commercial Consumption","Nevada","NV",1976 +1991-12-01,"Commercial Consumption","Illinois","IL",28563 +1991-12-01,"Commercial Consumption","West Virginia","WV",2767 +1991-12-01,"Commercial Consumption","North Carolina","NC",4162 +1991-12-01,"Commercial Consumption","New Jersey","NJ",16069 +1991-12-01,"Commercial Consumption","Montana","MT",1790 +1991-12-01,"Commercial Consumption","Texas","TX",20608 +1991-12-01,"Commercial Consumption","Florida","FL",3954 +1991-12-01,"Commercial Consumption","New York","NY",25121 +1991-12-01,"Commercial Consumption","Delaware","DE",541 +1991-12-01,"Commercial Consumption","Tennessee","TN",6158 +1991-12-01,"Commercial Consumption","Pennsylvania","PA",17451 +1991-12-01,"Commercial Consumption","New Hampshire","NH",643 +1991-12-01,"Commercial Consumption","Arkansas","AR",3297 +1991-12-01,"Commercial Consumption","Nebraska","NE",4037 +1991-12-01,"Commercial Consumption","Minnesota","MN",12580 +1991-12-01,"Commercial Consumption","Oklahoma","OK",5653 +1991-12-01,"Commercial Consumption","Massachusetts","MA",6027 +1991-12-01,"Commercial Consumption","Wisconsin","WI",10938 +1991-12-01,"Commercial Consumption","Maine","ME",278 +1991-12-01,"Commercial Consumption","U.S.","U.S.",350349 +1991-12-01,"Commercial Consumption","Alaska","AK",2308 +1991-12-01,"Commercial Consumption","Connecticut","CT",3396 +1991-12-01,"Commercial Consumption","Indiana","IN",10233 +1991-12-01,"Commercial Consumption","Wyoming","WY",1233 +1991-12-01,"Commercial Consumption","South Carolina","SC",1917 +1991-12-01,"Commercial Consumption","Colorado","CO",9494 +1991-12-01,"Commercial Consumption","Utah","UT",2704 +1991-12-01,"Commercial Consumption","Virginia","VA",5701 +1991-12-01,"Commercial Consumption","Hawaii","HI",185 +1991-12-01,"Commercial Consumption","Mississippi","MS",2208 +1991-12-01,"Commercial Consumption","Louisiana","LA",2842 +1991-12-01,"Commercial Consumption","District of Columbia","DC",1764 +1991-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101287 +1991-12-01,"Residential Consumption","Louisiana","LA",7567 +1991-12-01,"Residential Consumption","Iowa","IA",12377 +1991-12-01,"Residential Consumption","North Dakota","ND",1489 +1991-12-01,"Residential Consumption","Kentucky","KY",9682 +1991-12-01,"Residential Consumption","Colorado","CO",14007 +1991-12-01,"Residential Consumption","Missouri","MO",17407 +1991-12-01,"Residential Consumption","California","CA",67035 +1991-12-01,"Residential Consumption","Ohio","OH",48007 +1991-12-01,"Residential Consumption","North Carolina","NC",5647 +1991-12-01,"Residential Consumption","Utah","UT",7841 +1991-12-01,"Residential Consumption","Nebraska","NE",6573 +1991-12-01,"Residential Consumption","Massachusetts","MA",12854 +1991-12-01,"Residential Consumption","Montana","MT",2626 +1991-12-01,"Residential Consumption","Delaware","DE",892 +1991-12-01,"Residential Consumption","Arizona","AZ",4664 +1991-12-01,"Residential Consumption","U.S.","U.S.",658449 +1991-12-01,"Residential Consumption","Mississippi","MS",3625 +1991-12-01,"Residential Consumption","District of Columbia","DC",2001 +1991-12-01,"Residential Consumption","Pennsylvania","PA",34139 +1991-12-01,"Residential Consumption","Maine","ME",102 +1991-12-01,"Residential Consumption","New Jersey","NJ",24735 +1991-12-01,"Residential Consumption","Rhode Island","RI",2186 +1991-12-01,"Residential Consumption","Wisconsin","WI",18803 +1991-12-01,"Residential Consumption","Vermont","VT",314 +1991-12-01,"Residential Consumption","Minnesota","MN",18529 +1991-12-01,"Residential Consumption","New Mexico","NM",4398 +1991-12-01,"Residential Consumption","Arkansas","AR",5481 +1991-12-01,"Residential Consumption","Washington","WA",6336 +1991-12-01,"Residential Consumption","Alabama","AL",6396 +1991-12-01,"Residential Consumption","Texas","TX",32840 +1991-12-01,"Residential Consumption","Virginia","VA",7782 +1991-12-01,"Residential Consumption","Maryland","MD",9961 +1991-12-01,"Residential Consumption","Idaho","ID",1559 +1991-12-01,"Residential Consumption","New Hampshire","NH",690 +1991-12-01,"Residential Consumption","Oklahoma","OK",10069 +1991-12-01,"Residential Consumption","Wyoming","WY",1665 +1991-12-01,"Residential Consumption","Illinois","IL",71109 +1991-12-01,"Residential Consumption","South Carolina","SC",3122 +1991-12-01,"Residential Consumption","Connecticut","CT",5209 +1991-12-01,"Residential Consumption","Indiana","IN",22617 +1991-12-01,"Residential Consumption","Alaska","AK",1691 +1991-12-01,"Residential Consumption","New York","NY",46288 +1991-12-01,"Residential Consumption","Tennessee","TN",7616 +1991-12-01,"Residential Consumption","Kansas","KS",11008 +1991-12-01,"Residential Consumption","West Virginia","WV",4722 +1991-12-01,"Residential Consumption","Oregon","OR",3554 +1991-12-01,"Residential Consumption","Hawaii","HI",46 +1991-12-01,"Residential Consumption","Michigan","MI",49160 +1991-12-01,"Residential Consumption","South Dakota","SD",1595 +1991-12-01,"Residential Consumption","Nevada","NV",2941 +1991-12-01,"Residential Consumption","Georgia","GA",15812 +1991-12-01,"Residential Consumption","Florida","FL",1677 +1992-01-01,"Commercial Consumption","Wyoming","WY",1404 +1992-01-01,"Commercial Consumption","Washington","WA",5564 +1992-01-01,"Commercial Consumption","New Jersey","NJ",17638 +1992-01-01,"Commercial Consumption","Montana","MT",1726 +1992-01-01,"Commercial Consumption","Georgia","GA",8066 +1992-01-01,"Commercial Consumption","Arkansas","AR",4159 +1992-01-01,"Commercial Consumption","Michigan","MI",26677 +1992-01-01,"Commercial Consumption","Louisiana","LA",4060 +1992-01-01,"Commercial Consumption","West Virginia","WV",3659 +1992-01-01,"Commercial Consumption","U.S.","U.S.",410424 +1992-01-01,"Commercial Consumption","Texas","TX",22907 +1992-01-01,"Commercial Consumption","Idaho","ID",1543 +1992-01-01,"Commercial Consumption","Mississippi","MS",2817 +1992-01-01,"Commercial Consumption","Delaware","DE",744 +1992-01-01,"Commercial Consumption","Nevada","NV",2327 +1992-01-01,"Commercial Consumption","North Dakota","ND",1489 +1992-01-01,"Commercial Consumption","Oklahoma","OK",6180 +1992-01-01,"Commercial Consumption","Kansas","KS",6844 +1992-01-01,"Commercial Consumption","Rhode Island","RI",1076 +1992-01-01,"Commercial Consumption","Alaska","AK",2414 +1992-01-01,"Commercial Consumption","Alabama","AL",3739 +1992-01-01,"Commercial Consumption","South Carolina","SC",2276 +1992-01-01,"Commercial Consumption","Colorado","CO",10794 +1992-01-01,"Commercial Consumption","Virginia","VA",7072 +1992-01-01,"Commercial Consumption","Missouri","MO",10201 +1992-01-01,"Commercial Consumption","South Dakota","SD",1314 +1992-01-01,"Commercial Consumption","Kentucky","KY",6191 +1992-01-01,"Commercial Consumption","Nebraska","NE",4332 +1992-01-01,"Commercial Consumption","Utah","UT",3330 +1992-01-01,"Commercial Consumption","New Mexico","NM",4118 +1992-01-01,"Commercial Consumption","Pennsylvania","PA",21204 +1992-01-01,"Commercial Consumption","New Hampshire","NH",911 +1992-01-01,"Commercial Consumption","Vermont","VT",366 +1992-01-01,"Commercial Consumption","Hawaii","HI",190 +1992-01-01,"Commercial Consumption","Connecticut","CT",4417 +1992-01-01,"Commercial Consumption","Indiana","IN",12060 +1992-01-01,"Commercial Consumption","North Carolina","NC",5169 +1992-01-01,"Commercial Consumption","Minnesota","MN",13000 +1992-01-01,"Commercial Consumption","Oregon","OR",3231 +1992-01-01,"Commercial Consumption","Maine","ME",322 +1992-01-01,"Commercial Consumption","Maryland","MD",6323 +1992-01-01,"Commercial Consumption","Ohio","OH",26321 +1992-01-01,"Commercial Consumption","New York","NY",29246 +1992-01-01,"Commercial Consumption","Massachusetts","MA",8184 +1992-01-01,"Commercial Consumption","Wisconsin","WI",11235 +1992-01-01,"Commercial Consumption","Iowa","IA",7145 +1992-01-01,"Commercial Consumption","District of Columbia","DC",2300 +1992-01-01,"Commercial Consumption","Florida","FL",4408 +1992-01-01,"Commercial Consumption","California","CA",38234 +1992-01-01,"Commercial Consumption","Arizona","AZ",3647 +1992-01-01,"Commercial Consumption","Tennessee","TN",7343 +1992-01-01,"Commercial Consumption","Illinois","IL",30506 +1992-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103579 +1992-01-01,"Residential Consumption","Mississippi","MS",4724 +1992-01-01,"Residential Consumption","Nebraska","NE",6858 +1992-01-01,"Residential Consumption","Nevada","NV",3525 +1992-01-01,"Residential Consumption","New Mexico","NM",5968 +1992-01-01,"Residential Consumption","Louisiana","LA",9861 +1992-01-01,"Residential Consumption","Connecticut","CT",6675 +1992-01-01,"Residential Consumption","Indiana","IN",26077 +1992-01-01,"Residential Consumption","Arkansas","AR",7150 +1992-01-01,"Residential Consumption","New Jersey","NJ",31150 +1992-01-01,"Residential Consumption","New Hampshire","NH",1032 +1992-01-01,"Residential Consumption","Montana","MT",2529 +1992-01-01,"Residential Consumption","South Carolina","SC",4203 +1992-01-01,"Residential Consumption","Ohio","OH",57528 +1992-01-01,"Residential Consumption","Hawaii","HI",51 +1992-01-01,"Residential Consumption","Tennessee","TN",10132 +1992-01-01,"Residential Consumption","South Dakota","SD",1639 +1992-01-01,"Residential Consumption","District of Columbia","DC",2683 +1992-01-01,"Residential Consumption","Washington","WA",7286 +1992-01-01,"Residential Consumption","Minnesota","MN",18895 +1992-01-01,"Residential Consumption","North Dakota","ND",1500 +1992-01-01,"Residential Consumption","Colorado","CO",16198 +1992-01-01,"Residential Consumption","Oklahoma","OK",12164 +1992-01-01,"Residential Consumption","West Virginia","WV",6183 +1992-01-01,"Residential Consumption","New York","NY",58076 +1992-01-01,"Residential Consumption","Texas","TX",39747 +1992-01-01,"Residential Consumption","Utah","UT",8422 +1992-01-01,"Residential Consumption","Pennsylvania","PA",44113 +1992-01-01,"Residential Consumption","Maine","ME",128 +1992-01-01,"Residential Consumption","Idaho","ID",1843 +1992-01-01,"Residential Consumption","Missouri","MO",20977 +1992-01-01,"Residential Consumption","Delaware","DE",1303 +1992-01-01,"Residential Consumption","Alaska","AK",1777 +1992-01-01,"Residential Consumption","U.S.","U.S.",785718 +1992-01-01,"Residential Consumption","Rhode Island","RI",2997 +1992-01-01,"Residential Consumption","Oregon","OR",4367 +1992-01-01,"Residential Consumption","Wisconsin","WI",19941 +1992-01-01,"Residential Consumption","Virginia","VA",10805 +1992-01-01,"Residential Consumption","Georgia","GA",19167 +1992-01-01,"Residential Consumption","Kentucky","KY",11805 +1992-01-01,"Residential Consumption","Kansas","KS",12653 +1992-01-01,"Residential Consumption","Alabama","AL",8777 +1992-01-01,"Residential Consumption","Michigan","MI",56513 +1992-01-01,"Residential Consumption","California","CA",77875 +1992-01-01,"Residential Consumption","Arizona","AZ",5598 +1992-01-01,"Residential Consumption","Wyoming","WY",1876 +1992-01-01,"Residential Consumption","North Carolina","NC",7573 +1992-01-01,"Residential Consumption","Iowa","IA",12381 +1992-01-01,"Residential Consumption","Vermont","VT",431 +1992-01-01,"Residential Consumption","Maryland","MD",12442 +1992-01-01,"Residential Consumption","Florida","FL",2206 +1992-01-01,"Residential Consumption","Massachusetts","MA",17599 +1992-01-01,"Residential Consumption","Illinois","IL",80315 +1992-02-01,"Commercial Consumption","West Virginia","WV",3565 +1992-02-01,"Commercial Consumption","South Carolina","SC",2158 +1992-02-01,"Commercial Consumption","Pennsylvania","PA",19482 +1992-02-01,"Commercial Consumption","Massachusetts","MA",8736 +1992-02-01,"Commercial Consumption","U.S.","U.S.",365815 +1992-02-01,"Commercial Consumption","Florida","FL",4364 +1992-02-01,"Commercial Consumption","Hawaii","HI",180 +1992-02-01,"Commercial Consumption","Connecticut","CT",4374 +1992-02-01,"Commercial Consumption","Arkansas","AR",3861 +1992-02-01,"Commercial Consumption","Mississippi","MS",2595 +1992-02-01,"Commercial Consumption","Illinois","IL",26501 +1992-02-01,"Commercial Consumption","New Jersey","NJ",18398 +1992-02-01,"Commercial Consumption","Montana","MT",1464 +1992-02-01,"Commercial Consumption","Kentucky","KY",4758 +1992-02-01,"Commercial Consumption","Vermont","VT",354 +1992-02-01,"Commercial Consumption","Rhode Island","RI",1128 +1992-02-01,"Commercial Consumption","Ohio","OH",24820 +1992-02-01,"Commercial Consumption","California","CA",23834 +1992-02-01,"Commercial Consumption","District of Columbia","DC",2256 +1992-02-01,"Commercial Consumption","Washington","WA",4840 +1992-02-01,"Commercial Consumption","North Dakota","ND",1380 +1992-02-01,"Commercial Consumption","Colorado","CO",9450 +1992-02-01,"Commercial Consumption","South Dakota","SD",1174 +1992-02-01,"Commercial Consumption","Maryland","MD",6382 +1992-02-01,"Commercial Consumption","Nevada","NV",1873 +1992-02-01,"Commercial Consumption","New Mexico","NM",3445 +1992-02-01,"Commercial Consumption","Georgia","GA",6952 +1992-02-01,"Commercial Consumption","Alabama","AL",3833 +1992-02-01,"Commercial Consumption","New York","NY",29912 +1992-02-01,"Commercial Consumption","Michigan","MI",24979 +1992-02-01,"Commercial Consumption","Missouri","MO",9060 +1992-02-01,"Commercial Consumption","Maine","ME",318 +1992-02-01,"Commercial Consumption","Iowa","IA",6709 +1992-02-01,"Commercial Consumption","Alaska","AK",2372 +1992-02-01,"Commercial Consumption","Wyoming","WY",1078 +1992-02-01,"Commercial Consumption","North Carolina","NC",5066 +1992-02-01,"Commercial Consumption","Virginia","VA",6690 +1992-02-01,"Commercial Consumption","Kansas","KS",5862 +1992-02-01,"Commercial Consumption","Minnesota","MN",11075 +1992-02-01,"Commercial Consumption","Oregon","OR",2465 +1992-02-01,"Commercial Consumption","Wisconsin","WI",10037 +1992-02-01,"Commercial Consumption","Texas","TX",19049 +1992-02-01,"Commercial Consumption","Idaho","ID",1167 +1992-02-01,"Commercial Consumption","Nebraska","NE",3760 +1992-02-01,"Commercial Consumption","Delaware","DE",755 +1992-02-01,"Commercial Consumption","Arizona","AZ",3011 +1992-02-01,"Commercial Consumption","Tennessee","TN",6834 +1992-02-01,"Commercial Consumption","Indiana","IN",10265 +1992-02-01,"Commercial Consumption","Utah","UT",2952 +1992-02-01,"Commercial Consumption","Oklahoma","OK",5310 +1992-02-01,"Commercial Consumption","New Hampshire","NH",931 +1992-02-01,"Commercial Consumption","Louisiana","LA",4003 +1992-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92195 +1992-02-01,"Residential Consumption","Nevada","NV",2611 +1992-02-01,"Residential Consumption","Pennsylvania","PA",41812 +1992-02-01,"Residential Consumption","Indiana","IN",22018 +1992-02-01,"Residential Consumption","North Dakota","ND",1456 +1992-02-01,"Residential Consumption","Idaho","ID",1361 +1992-02-01,"Residential Consumption","Arkansas","AR",6724 +1992-02-01,"Residential Consumption","Montana","MT",2180 +1992-02-01,"Residential Consumption","Delaware","DE",1417 +1992-02-01,"Residential Consumption","U.S.","U.S.",696082 +1992-02-01,"Residential Consumption","Colorado","CO",14400 +1992-02-01,"Residential Consumption","Illinois","IL",63013 +1992-02-01,"Residential Consumption","North Carolina","NC",7366 +1992-02-01,"Residential Consumption","Mississippi","MS",4551 +1992-02-01,"Residential Consumption","Michigan","MI",52668 +1992-02-01,"Residential Consumption","Alaska","AK",1933 +1992-02-01,"Residential Consumption","Wyoming","WY",1492 +1992-02-01,"Residential Consumption","West Virginia","WV",6231 +1992-02-01,"Residential Consumption","Texas","TX",33008 +1992-02-01,"Residential Consumption","South Carolina","SC",4071 +1992-02-01,"Residential Consumption","Ohio","OH",50254 +1992-02-01,"Residential Consumption","Hawaii","HI",50 +1992-02-01,"Residential Consumption","Tennessee","TN",8849 +1992-02-01,"Residential Consumption","Minnesota","MN",15904 +1992-02-01,"Residential Consumption","New Mexico","NM",5376 +1992-02-01,"Residential Consumption","New Hampshire","NH",1089 +1992-02-01,"Residential Consumption","Kentucky","KY",8511 +1992-02-01,"Residential Consumption","Kansas","KS",10939 +1992-02-01,"Residential Consumption","Missouri","MO",18433 +1992-02-01,"Residential Consumption","Oregon","OR",3223 +1992-02-01,"Residential Consumption","Louisiana","LA",9220 +1992-02-01,"Residential Consumption","Wisconsin","WI",17320 +1992-02-01,"Residential Consumption","Virginia","VA",10106 +1992-02-01,"Residential Consumption","Maryland","MD",11583 +1992-02-01,"Residential Consumption","South Dakota","SD",1497 +1992-02-01,"Residential Consumption","Washington","WA",5966 +1992-02-01,"Residential Consumption","Oklahoma","OK",10656 +1992-02-01,"Residential Consumption","California","CA",61574 +1992-02-01,"Residential Consumption","Arizona","AZ",4220 +1992-02-01,"Residential Consumption","Iowa","IA",11637 +1992-02-01,"Residential Consumption","Florida","FL",2345 +1992-02-01,"Residential Consumption","Connecticut","CT",6571 +1992-02-01,"Residential Consumption","District of Columbia","DC",2829 +1992-02-01,"Residential Consumption","Maine","ME",139 +1992-02-01,"Residential Consumption","New Jersey","NJ",31006 +1992-02-01,"Residential Consumption","Rhode Island","RI",3092 +1992-02-01,"Residential Consumption","Vermont","VT",426 +1992-02-01,"Residential Consumption","Utah","UT",7132 +1992-02-01,"Residential Consumption","Nebraska","NE",5956 +1992-02-01,"Residential Consumption","Georgia","GA",14531 +1992-02-01,"Residential Consumption","Massachusetts","MA",19067 +1992-02-01,"Residential Consumption","Alabama","AL",9267 +1992-02-01,"Residential Consumption","New York","NY",59000 +1992-03-01,"Commercial Consumption","West Virginia","WV",2986 +1992-03-01,"Commercial Consumption","Washington","WA",3855 +1992-03-01,"Commercial Consumption","Oklahoma","OK",3653 +1992-03-01,"Commercial Consumption","Pennsylvania","PA",17679 +1992-03-01,"Commercial Consumption","Arizona","AZ",2898 +1992-03-01,"Commercial Consumption","Indiana","IN",8437 +1992-03-01,"Commercial Consumption","Wyoming","WY",821 +1992-03-01,"Commercial Consumption","Wisconsin","WI",9113 +1992-03-01,"Commercial Consumption","Kentucky","KY",3874 +1992-03-01,"Commercial Consumption","U.S.","U.S.",314629 +1992-03-01,"Commercial Consumption","Iowa","IA",4949 +1992-03-01,"Commercial Consumption","Colorado","CO",7609 +1992-03-01,"Commercial Consumption","Rhode Island","RI",1103 +1992-03-01,"Commercial Consumption","Hawaii","HI",174 +1992-03-01,"Commercial Consumption","Connecticut","CT",3940 +1992-03-01,"Commercial Consumption","Delaware","DE",686 +1992-03-01,"Commercial Consumption","North Dakota","ND",1082 +1992-03-01,"Commercial Consumption","New Hampshire","NH",762 +1992-03-01,"Commercial Consumption","Florida","FL",3856 +1992-03-01,"Commercial Consumption","Vermont","VT",320 +1992-03-01,"Commercial Consumption","Idaho","ID",834 +1992-03-01,"Commercial Consumption","Alaska","AK",2319 +1992-03-01,"Commercial Consumption","Alabama","AL",2671 +1992-03-01,"Commercial Consumption","North Carolina","NC",3983 +1992-03-01,"Commercial Consumption","Utah","UT",1866 +1992-03-01,"Commercial Consumption","Virginia","VA",5985 +1992-03-01,"Commercial Consumption","Texas","TX",15866 +1992-03-01,"Commercial Consumption","California","CA",24413 +1992-03-01,"Commercial Consumption","Arkansas","AR",2708 +1992-03-01,"Commercial Consumption","Mississippi","MS",1758 +1992-03-01,"Commercial Consumption","Nevada","NV",1725 +1992-03-01,"Commercial Consumption","Louisiana","LA",2743 +1992-03-01,"Commercial Consumption","District of Columbia","DC",2132 +1992-03-01,"Commercial Consumption","Oregon","OR",1925 +1992-03-01,"Commercial Consumption","Missouri","MO",6835 +1992-03-01,"Commercial Consumption","Montana","MT",1099 +1992-03-01,"Commercial Consumption","Tennessee","TN",5069 +1992-03-01,"Commercial Consumption","Minnesota","MN",10134 +1992-03-01,"Commercial Consumption","New Mexico","NM",2730 +1992-03-01,"Commercial Consumption","Massachusetts","MA",8217 +1992-03-01,"Commercial Consumption","New Jersey","NJ",16759 +1992-03-01,"Commercial Consumption","Maine","ME",315 +1992-03-01,"Commercial Consumption","Maryland","MD",5073 +1992-03-01,"Commercial Consumption","Georgia","GA",5778 +1992-03-01,"Commercial Consumption","New York","NY",27748 +1992-03-01,"Commercial Consumption","South Carolina","SC",1745 +1992-03-01,"Commercial Consumption","South Dakota","SD",1007 +1992-03-01,"Commercial Consumption","Kansas","KS",4372 +1992-03-01,"Commercial Consumption","Ohio","OH",20215 +1992-03-01,"Commercial Consumption","Nebraska","NE",2970 +1992-03-01,"Commercial Consumption","Michigan","MI",22443 +1992-03-01,"Commercial Consumption","Illinois","IL",23400 +1992-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97047 +1992-03-01,"Residential Consumption","Oregon","OR",2477 +1992-03-01,"Residential Consumption","South Dakota","SD",1202 +1992-03-01,"Residential Consumption","Pennsylvania","PA",36068 +1992-03-01,"Residential Consumption","Massachusetts","MA",16712 +1992-03-01,"Residential Consumption","New Jersey","NJ",26880 +1992-03-01,"Residential Consumption","Kentucky","KY",7813 +1992-03-01,"Residential Consumption","California","CA",46860 +1992-03-01,"Residential Consumption","Alabama","AL",5605 +1992-03-01,"Residential Consumption","Louisiana","LA",5650 +1992-03-01,"Residential Consumption","Hawaii","HI",48 +1992-03-01,"Residential Consumption","Nebraska","NE",4706 +1992-03-01,"Residential Consumption","West Virginia","WV",4328 +1992-03-01,"Residential Consumption","South Carolina","SC",2650 +1992-03-01,"Residential Consumption","Rhode Island","RI",2802 +1992-03-01,"Residential Consumption","Vermont","VT",367 +1992-03-01,"Residential Consumption","Michigan","MI",46640 +1992-03-01,"Residential Consumption","Kansas","KS",7890 +1992-03-01,"Residential Consumption","Arizona","AZ",3589 +1992-03-01,"Residential Consumption","Ohio","OH",45783 +1992-03-01,"Residential Consumption","Connecticut","CT",5777 +1992-03-01,"Residential Consumption","Wisconsin","WI",15740 +1992-03-01,"Residential Consumption","District of Columbia","DC",2172 +1992-03-01,"Residential Consumption","Washington","WA",4719 +1992-03-01,"Residential Consumption","Oklahoma","OK",7235 +1992-03-01,"Residential Consumption","Wyoming","WY",1146 +1992-03-01,"Residential Consumption","New York","NY",53492 +1992-03-01,"Residential Consumption","Georgia","GA",12768 +1992-03-01,"Residential Consumption","Arkansas","AR",4305 +1992-03-01,"Residential Consumption","North Carolina","NC",5194 +1992-03-01,"Residential Consumption","Iowa","IA",8482 +1992-03-01,"Residential Consumption","Virginia","VA",7953 +1992-03-01,"Residential Consumption","Maryland","MD",9717 +1992-03-01,"Residential Consumption","Nevada","NV",2094 +1992-03-01,"Residential Consumption","Maine","ME",122 +1992-03-01,"Residential Consumption","North Dakota","ND",1128 +1992-03-01,"Residential Consumption","Colorado","CO",11499 +1992-03-01,"Residential Consumption","Alaska","AK",1764 +1992-03-01,"Residential Consumption","Texas","TX",21265 +1992-03-01,"Residential Consumption","Mississippi","MS",2850 +1992-03-01,"Residential Consumption","Minnesota","MN",14009 +1992-03-01,"Residential Consumption","Indiana","IN",18963 +1992-03-01,"Residential Consumption","Florida","FL",1478 +1992-03-01,"Residential Consumption","Idaho","ID",944 +1992-03-01,"Residential Consumption","New Hampshire","NH",869 +1992-03-01,"Residential Consumption","U.S.","U.S.",573979 +1992-03-01,"Residential Consumption","Illinois","IL",59187 +1992-03-01,"Residential Consumption","Tennessee","TN",6002 +1992-03-01,"Residential Consumption","Utah","UT",4869 +1992-03-01,"Residential Consumption","New Mexico","NM",3842 +1992-03-01,"Residential Consumption","Montana","MT",1620 +1992-03-01,"Residential Consumption","Missouri","MO",13548 +1992-03-01,"Residential Consumption","Delaware","DE",1158 +1992-04-01,"Commercial Consumption","North Dakota","ND",937 +1992-04-01,"Commercial Consumption","Colorado","CO",5965 +1992-04-01,"Commercial Consumption","New Hampshire","NH",629 +1992-04-01,"Commercial Consumption","Kentucky","KY",2612 +1992-04-01,"Commercial Consumption","Florida","FL",3741 +1992-04-01,"Commercial Consumption","Iowa","IA",3883 +1992-04-01,"Commercial Consumption","Arkansas","AR",2114 +1992-04-01,"Commercial Consumption","New York","NY",23039 +1992-04-01,"Commercial Consumption","Minnesota","MN",7517 +1992-04-01,"Commercial Consumption","Alaska","AK",1935 +1992-04-01,"Commercial Consumption","Indiana","IN",6172 +1992-04-01,"Commercial Consumption","Louisiana","LA",2367 +1992-04-01,"Commercial Consumption","Wyoming","WY",668 +1992-04-01,"Commercial Consumption","West Virginia","WV",2322 +1992-04-01,"Commercial Consumption","Idaho","ID",643 +1992-04-01,"Commercial Consumption","Connecticut","CT",2941 +1992-04-01,"Commercial Consumption","Illinois","IL",17598 +1992-04-01,"Commercial Consumption","South Carolina","SC",1436 +1992-04-01,"Commercial Consumption","Oregon","OR",1542 +1992-04-01,"Commercial Consumption","Oklahoma","OK",2956 +1992-04-01,"Commercial Consumption","Pennsylvania","PA",12210 +1992-04-01,"Commercial Consumption","Missouri","MO",5601 +1992-04-01,"Commercial Consumption","Kansas","KS",4571 +1992-04-01,"Commercial Consumption","California","CA",18379 +1992-04-01,"Commercial Consumption","Alabama","AL",2287 +1992-04-01,"Commercial Consumption","Arizona","AZ",2352 +1992-04-01,"Commercial Consumption","Michigan","MI",17769 +1992-04-01,"Commercial Consumption","North Carolina","NC",3296 +1992-04-01,"Commercial Consumption","Utah","UT",1155 +1992-04-01,"Commercial Consumption","New Mexico","NM",2372 +1992-04-01,"Commercial Consumption","Maryland","MD",3807 +1992-04-01,"Commercial Consumption","Rhode Island","RI",1047 +1992-04-01,"Commercial Consumption","Virginia","VA",4523 +1992-04-01,"Commercial Consumption","Massachusetts","MA",7049 +1992-04-01,"Commercial Consumption","South Dakota","SD",828 +1992-04-01,"Commercial Consumption","New Jersey","NJ",14066 +1992-04-01,"Commercial Consumption","Georgia","GA",4381 +1992-04-01,"Commercial Consumption","Vermont","VT",231 +1992-04-01,"Commercial Consumption","Mississippi","MS",1473 +1992-04-01,"Commercial Consumption","Tennessee","TN",4205 +1992-04-01,"Commercial Consumption","Washington","WA",3179 +1992-04-01,"Commercial Consumption","Wisconsin","WI",6870 +1992-04-01,"Commercial Consumption","Montana","MT",930 +1992-04-01,"Commercial Consumption","U.S.","U.S.",250136 +1992-04-01,"Commercial Consumption","Maine","ME",229 +1992-04-01,"Commercial Consumption","Texas","TX",14174 +1992-04-01,"Commercial Consumption","Ohio","OH",15893 +1992-04-01,"Commercial Consumption","Hawaii","HI",183 +1992-04-01,"Commercial Consumption","Nebraska","NE",2411 +1992-04-01,"Commercial Consumption","Delaware","DE",537 +1992-04-01,"Commercial Consumption","Nevada","NV",1335 +1992-04-01,"Commercial Consumption","District of Columbia","DC",1774 +1992-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95172 +1992-04-01,"Residential Consumption","Utah","UT",3184 +1992-04-01,"Residential Consumption","Michigan","MI",36421 +1992-04-01,"Residential Consumption","Nevada","NV",1394 +1992-04-01,"Residential Consumption","Colorado","CO",8789 +1992-04-01,"Residential Consumption","Wyoming","WY",951 +1992-04-01,"Residential Consumption","Mississippi","MS",2440 +1992-04-01,"Residential Consumption","Vermont","VT",284 +1992-04-01,"Residential Consumption","Washington","WA",3736 +1992-04-01,"Residential Consumption","Alaska","AK",1346 +1992-04-01,"Residential Consumption","Louisiana","LA",4544 +1992-04-01,"Residential Consumption","Iowa","IA",6857 +1992-04-01,"Residential Consumption","Georgia","GA",7360 +1992-04-01,"Residential Consumption","Pennsylvania","PA",26243 +1992-04-01,"Residential Consumption","Maine","ME",96 +1992-04-01,"Residential Consumption","Massachusetts","MA",13384 +1992-04-01,"Residential Consumption","California","CA",37311 +1992-04-01,"Residential Consumption","Tennessee","TN",4859 +1992-04-01,"Residential Consumption","Minnesota","MN",10391 +1992-04-01,"Residential Consumption","Arkansas","AR",3828 +1992-04-01,"Residential Consumption","Montana","MT",1371 +1992-04-01,"Residential Consumption","Arizona","AZ",2313 +1992-04-01,"Residential Consumption","North Carolina","NC",4509 +1992-04-01,"Residential Consumption","Hawaii","HI",46 +1992-04-01,"Residential Consumption","Nebraska","NE",3760 +1992-04-01,"Residential Consumption","North Dakota","ND",1002 +1992-04-01,"Residential Consumption","Delaware","DE",948 +1992-04-01,"Residential Consumption","Wisconsin","WI",11914 +1992-04-01,"Residential Consumption","South Dakota","SD",996 +1992-04-01,"Residential Consumption","District of Columbia","DC",1820 +1992-04-01,"Residential Consumption","Indiana","IN",14093 +1992-04-01,"Residential Consumption","Idaho","ID",730 +1992-04-01,"Residential Consumption","Oklahoma","OK",5961 +1992-04-01,"Residential Consumption","West Virginia","WV",4038 +1992-04-01,"Residential Consumption","South Carolina","SC",2295 +1992-04-01,"Residential Consumption","Rhode Island","RI",2271 +1992-04-01,"Residential Consumption","Ohio","OH",31344 +1992-04-01,"Residential Consumption","Connecticut","CT",4284 +1992-04-01,"Residential Consumption","New Mexico","NM",2723 +1992-04-01,"Residential Consumption","New Jersey","NJ",20212 +1992-04-01,"Residential Consumption","Kentucky","KY",4179 +1992-04-01,"Residential Consumption","Alabama","AL",5012 +1992-04-01,"Residential Consumption","New York","NY",41548 +1992-04-01,"Residential Consumption","Illinois","IL",40752 +1992-04-01,"Residential Consumption","Texas","TX",14934 +1992-04-01,"Residential Consumption","Oregon","OR",1891 +1992-04-01,"Residential Consumption","Virginia","VA",5884 +1992-04-01,"Residential Consumption","Maryland","MD",7087 +1992-04-01,"Residential Consumption","Florida","FL",1340 +1992-04-01,"Residential Consumption","New Hampshire","NH",766 +1992-04-01,"Residential Consumption","Kansas","KS",6917 +1992-04-01,"Residential Consumption","Missouri","MO",11044 +1992-04-01,"Residential Consumption","U.S.","U.S.",431401 +1992-05-01,"Commercial Consumption","North Carolina","NC",2205 +1992-05-01,"Commercial Consumption","Florida","FL",3382 +1992-05-01,"Commercial Consumption","Arkansas","AR",1358 +1992-05-01,"Commercial Consumption","West Virginia","WV",1341 +1992-05-01,"Commercial Consumption","Missouri","MO",3144 +1992-05-01,"Commercial Consumption","Massachusetts","MA",4450 +1992-05-01,"Commercial Consumption","Montana","MT",568 +1992-05-01,"Commercial Consumption","Kansas","KS",3736 +1992-05-01,"Commercial Consumption","Georgia","GA",3103 +1992-05-01,"Commercial Consumption","Alaska","AK",1597 +1992-05-01,"Commercial Consumption","Connecticut","CT",1779 +1992-05-01,"Commercial Consumption","Nebraska","NE",1781 +1992-05-01,"Commercial Consumption","Arizona","AZ",1620 +1992-05-01,"Commercial Consumption","Nevada","NV",1012 +1992-05-01,"Commercial Consumption","Utah","UT",642 +1992-05-01,"Commercial Consumption","New Mexico","NM",1687 +1992-05-01,"Commercial Consumption","Virginia","VA",3289 +1992-05-01,"Commercial Consumption","U.S.","U.S.",169759 +1992-05-01,"Commercial Consumption","New York","NY",13518 +1992-05-01,"Commercial Consumption","Pennsylvania","PA",6793 +1992-05-01,"Commercial Consumption","Wisconsin","WI",3632 +1992-05-01,"Commercial Consumption","Maine","ME",157 +1992-05-01,"Commercial Consumption","Kentucky","KY",1600 +1992-05-01,"Commercial Consumption","Texas","TX",12557 +1992-05-01,"Commercial Consumption","Vermont","VT",118 +1992-05-01,"Commercial Consumption","Rhode Island","RI",676 +1992-05-01,"Commercial Consumption","California","CA",27118 +1992-05-01,"Commercial Consumption","Washington","WA",2343 +1992-05-01,"Commercial Consumption","North Dakota","ND",529 +1992-05-01,"Commercial Consumption","Oklahoma","OK",1785 +1992-05-01,"Commercial Consumption","Maryland","MD",2391 +1992-05-01,"Commercial Consumption","Iowa","IA",1877 +1992-05-01,"Commercial Consumption","Wyoming","WY",438 +1992-05-01,"Commercial Consumption","South Carolina","SC",1068 +1992-05-01,"Commercial Consumption","Colorado","CO",3631 +1992-05-01,"Commercial Consumption","South Dakota","SD",460 +1992-05-01,"Commercial Consumption","Mississippi","MS",994 +1992-05-01,"Commercial Consumption","Louisiana","LA",1769 +1992-05-01,"Commercial Consumption","District of Columbia","DC",1056 +1992-05-01,"Commercial Consumption","Minnesota","MN",3602 +1992-05-01,"Commercial Consumption","Oregon","OR",1171 +1992-05-01,"Commercial Consumption","New Jersey","NJ",8392 +1992-05-01,"Commercial Consumption","New Hampshire","NH",376 +1992-05-01,"Commercial Consumption","Ohio","OH",7455 +1992-05-01,"Commercial Consumption","Idaho","ID",447 +1992-05-01,"Commercial Consumption","Hawaii","HI",177 +1992-05-01,"Commercial Consumption","Indiana","IN",3400 +1992-05-01,"Commercial Consumption","Alabama","AL",1513 +1992-05-01,"Commercial Consumption","Delaware","DE",308 +1992-05-01,"Commercial Consumption","Tennessee","TN",2436 +1992-05-01,"Commercial Consumption","Michigan","MI",10406 +1992-05-01,"Commercial Consumption","Illinois","IL",8872 +1992-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97425 +1992-05-01,"Residential Consumption","Ohio","OH",17276 +1992-05-01,"Residential Consumption","Louisiana","LA",2799 +1992-05-01,"Residential Consumption","Wisconsin","WI",6373 +1992-05-01,"Residential Consumption","Kansas","KS",3788 +1992-05-01,"Residential Consumption","Arizona","AZ",1207 +1992-05-01,"Residential Consumption","New York","NY",23835 +1992-05-01,"Residential Consumption","Illinois","IL",22488 +1992-05-01,"Residential Consumption","Virginia","VA",3269 +1992-05-01,"Residential Consumption","Nevada","NV",803 +1992-05-01,"Residential Consumption","District of Columbia","DC",948 +1992-05-01,"Residential Consumption","Indiana","IN",7584 +1992-05-01,"Residential Consumption","Florida","FL",936 +1992-05-01,"Residential Consumption","Massachusetts","MA",8475 +1992-05-01,"Residential Consumption","Alaska","AK",1012 +1992-05-01,"Residential Consumption","North Carolina","NC",2222 +1992-05-01,"Residential Consumption","Connecticut","CT",2417 +1992-05-01,"Residential Consumption","Nebraska","NE",2020 +1992-05-01,"Residential Consumption","California","CA",28422 +1992-05-01,"Residential Consumption","Wyoming","WY",613 +1992-05-01,"Residential Consumption","Utah","UT",1986 +1992-05-01,"Residential Consumption","Georgia","GA",4718 +1992-05-01,"Residential Consumption","Alabama","AL",2714 +1992-05-01,"Residential Consumption","U.S.","U.S.",251416 +1992-05-01,"Residential Consumption","Rhode Island","RI",1446 +1992-05-01,"Residential Consumption","Iowa","IA",3335 +1992-05-01,"Residential Consumption","Arkansas","AR",1854 +1992-05-01,"Residential Consumption","Montana","MT",837 +1992-05-01,"Residential Consumption","Washington","WA",2377 +1992-05-01,"Residential Consumption","Oklahoma","OK",3219 +1992-05-01,"Residential Consumption","Delaware","DE",528 +1992-05-01,"Residential Consumption","Vermont","VT",145 +1992-05-01,"Residential Consumption","West Virginia","WV",2076 +1992-05-01,"Residential Consumption","South Carolina","SC",1033 +1992-05-01,"Residential Consumption","Mississippi","MS",1287 +1992-05-01,"Residential Consumption","Hawaii","HI",47 +1992-05-01,"Residential Consumption","Tennessee","TN",2186 +1992-05-01,"Residential Consumption","Michigan","MI",21545 +1992-05-01,"Residential Consumption","Maryland","MD",4007 +1992-05-01,"Residential Consumption","Pennsylvania","PA",13989 +1992-05-01,"Residential Consumption","New Mexico","NM",1514 +1992-05-01,"Residential Consumption","Idaho","ID",445 +1992-05-01,"Residential Consumption","New Jersey","NJ",11680 +1992-05-01,"Residential Consumption","Kentucky","KY",2626 +1992-05-01,"Residential Consumption","Missouri","MO",5858 +1992-05-01,"Residential Consumption","Texas","TX",10307 +1992-05-01,"Residential Consumption","Oregon","OR",1248 +1992-05-01,"Residential Consumption","South Dakota","SD",638 +1992-05-01,"Residential Consumption","Minnesota","MN",5136 +1992-05-01,"Residential Consumption","Maine","ME",66 +1992-05-01,"Residential Consumption","North Dakota","ND",616 +1992-05-01,"Residential Consumption","New Hampshire","NH",461 +1992-05-01,"Residential Consumption","Colorado","CO",5005 +1992-06-01,"Commercial Consumption","Minnesota","MN",2467 +1992-06-01,"Commercial Consumption","Utah","UT",457 +1992-06-01,"Commercial Consumption","California","CA",22150 +1992-06-01,"Commercial Consumption","Delaware","DE",198 +1992-06-01,"Commercial Consumption","Colorado","CO",3055 +1992-06-01,"Commercial Consumption","New Mexico","NM",1171 +1992-06-01,"Commercial Consumption","Oregon","OR",884 +1992-06-01,"Commercial Consumption","Virginia","VA",2271 +1992-06-01,"Commercial Consumption","Pennsylvania","PA",4520 +1992-06-01,"Commercial Consumption","Maryland","MD",1784 +1992-06-01,"Commercial Consumption","Mississippi","MS",888 +1992-06-01,"Commercial Consumption","Michigan","MI",5883 +1992-06-01,"Commercial Consumption","Louisiana","LA",1564 +1992-06-01,"Commercial Consumption","District of Columbia","DC",764 +1992-06-01,"Commercial Consumption","North Carolina","NC",1733 +1992-06-01,"Commercial Consumption","Missouri","MO",2547 +1992-06-01,"Commercial Consumption","Florida","FL",3085 +1992-06-01,"Commercial Consumption","Iowa","IA",1427 +1992-06-01,"Commercial Consumption","Hawaii","HI",184 +1992-06-01,"Commercial Consumption","Nebraska","NE",1330 +1992-06-01,"Commercial Consumption","Nevada","NV",945 +1992-06-01,"Commercial Consumption","Ohio","OH",5016 +1992-06-01,"Commercial Consumption","Connecticut","CT",1149 +1992-06-01,"Commercial Consumption","North Dakota","ND",298 +1992-06-01,"Commercial Consumption","Wisconsin","WI",1986 +1992-06-01,"Commercial Consumption","New Jersey","NJ",5294 +1992-06-01,"Commercial Consumption","U.S.","U.S.",124881 +1992-06-01,"Commercial Consumption","Texas","TX",10879 +1992-06-01,"Commercial Consumption","Georgia","GA",2596 +1992-06-01,"Commercial Consumption","Idaho","ID",343 +1992-06-01,"Commercial Consumption","Arizona","AZ",1754 +1992-06-01,"Commercial Consumption","Tennessee","TN",2016 +1992-06-01,"Commercial Consumption","Indiana","IN",2004 +1992-06-01,"Commercial Consumption","West Virginia","WV",999 +1992-06-01,"Commercial Consumption","Washington","WA",1830 +1992-06-01,"Commercial Consumption","South Carolina","SC",944 +1992-06-01,"Commercial Consumption","South Dakota","SD",303 +1992-06-01,"Commercial Consumption","Kentucky","KY",1132 +1992-06-01,"Commercial Consumption","Kansas","KS",2814 +1992-06-01,"Commercial Consumption","Vermont","VT",75 +1992-06-01,"Commercial Consumption","Oklahoma","OK",1540 +1992-06-01,"Commercial Consumption","Massachusetts","MA",2768 +1992-06-01,"Commercial Consumption","Montana","MT",377 +1992-06-01,"Commercial Consumption","Rhode Island","RI",498 +1992-06-01,"Commercial Consumption","Alabama","AL",1225 +1992-06-01,"Commercial Consumption","Illinois","IL",4907 +1992-06-01,"Commercial Consumption","Wyoming","WY",309 +1992-06-01,"Commercial Consumption","New Hampshire","NH",208 +1992-06-01,"Commercial Consumption","Maine","ME",80 +1992-06-01,"Commercial Consumption","Alaska","AK",1206 +1992-06-01,"Commercial Consumption","Arkansas","AR",1108 +1992-06-01,"Commercial Consumption","New York","NY",9915 +1992-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95038 +1992-06-01,"Residential Consumption","Wisconsin","WI",3681 +1992-06-01,"Residential Consumption","Vermont","VT",72 +1992-06-01,"Residential Consumption","Indiana","IN",4627 +1992-06-01,"Residential Consumption","Colorado","CO",3963 +1992-06-01,"Residential Consumption","Washington","WA",1384 +1992-06-01,"Residential Consumption","Oklahoma","OK",2549 +1992-06-01,"Residential Consumption","Arizona","AZ",1132 +1992-06-01,"Residential Consumption","Wyoming","WY",431 +1992-06-01,"Residential Consumption","West Virginia","WV",1105 +1992-06-01,"Residential Consumption","Louisiana","LA",2288 +1992-06-01,"Residential Consumption","Iowa","IA",2186 +1992-06-01,"Residential Consumption","Utah","UT",1524 +1992-06-01,"Residential Consumption","Michigan","MI",11927 +1992-06-01,"Residential Consumption","Minnesota","MN",3130 +1992-06-01,"Residential Consumption","Georgia","GA",3536 +1992-06-01,"Residential Consumption","Alaska","AK",628 +1992-06-01,"Residential Consumption","U.S.","U.S.",162378 +1992-06-01,"Residential Consumption","North Carolina","NC",1301 +1992-06-01,"Residential Consumption","Tennessee","TN",1437 +1992-06-01,"Residential Consumption","Nebraska","NE",1311 +1992-06-01,"Residential Consumption","New Mexico","NM",1122 +1992-06-01,"Residential Consumption","New York","NY",13470 +1992-06-01,"Residential Consumption","Texas","TX",8776 +1992-06-01,"Residential Consumption","Oregon","OR",772 +1992-06-01,"Residential Consumption","Pennsylvania","PA",8047 +1992-06-01,"Residential Consumption","Florida","FL",733 +1992-06-01,"Residential Consumption","North Dakota","ND",311 +1992-06-01,"Residential Consumption","Hawaii","HI",46 +1992-06-01,"Residential Consumption","Arkansas","AR",1371 +1992-06-01,"Residential Consumption","Rhode Island","RI",771 +1992-06-01,"Residential Consumption","Connecticut","CT",1394 +1992-06-01,"Residential Consumption","South Dakota","SD",321 +1992-06-01,"Residential Consumption","Nevada","NV",695 +1992-06-01,"Residential Consumption","District of Columbia","DC",630 +1992-06-01,"Residential Consumption","Maine","ME",37 +1992-06-01,"Residential Consumption","Missouri","MO",3838 +1992-06-01,"Residential Consumption","Alabama","AL",1772 +1992-06-01,"Residential Consumption","South Carolina","SC",597 +1992-06-01,"Residential Consumption","Virginia","VA",1788 +1992-06-01,"Residential Consumption","Massachusetts","MA",4822 +1992-06-01,"Residential Consumption","Idaho","ID",247 +1992-06-01,"Residential Consumption","New Jersey","NJ",6166 +1992-06-01,"Residential Consumption","Montana","MT",541 +1992-06-01,"Residential Consumption","Illinois","IL",12963 +1992-06-01,"Residential Consumption","Ohio","OH",10336 +1992-06-01,"Residential Consumption","Mississippi","MS",963 +1992-06-01,"Residential Consumption","Maryland","MD",2577 +1992-06-01,"Residential Consumption","New Hampshire","NH",219 +1992-06-01,"Residential Consumption","Kentucky","KY",1835 +1992-06-01,"Residential Consumption","Kansas","KS",2609 +1992-06-01,"Residential Consumption","Delaware","DE",301 +1992-06-01,"Residential Consumption","California","CA",24100 +1992-07-01,"Commercial Consumption","Maine","ME",79 +1992-07-01,"Commercial Consumption","Kentucky","KY",1066 +1992-07-01,"Commercial Consumption","Kansas","KS",3609 +1992-07-01,"Commercial Consumption","Florida","FL",2976 +1992-07-01,"Commercial Consumption","Idaho","ID",345 +1992-07-01,"Commercial Consumption","Hawaii","HI",174 +1992-07-01,"Commercial Consumption","Mississippi","MS",885 +1992-07-01,"Commercial Consumption","Nevada","NV",1015 +1992-07-01,"Commercial Consumption","Louisiana","LA",1556 +1992-07-01,"Commercial Consumption","North Dakota","ND",279 +1992-07-01,"Commercial Consumption","Oregon","OR",784 +1992-07-01,"Commercial Consumption","Oklahoma","OK",1407 +1992-07-01,"Commercial Consumption","Virginia","VA",2085 +1992-07-01,"Commercial Consumption","Maryland","MD",1553 +1992-07-01,"Commercial Consumption","Rhode Island","RI",448 +1992-07-01,"Commercial Consumption","Alaska","AK",1084 +1992-07-01,"Commercial Consumption","Connecticut","CT",1046 +1992-07-01,"Commercial Consumption","Indiana","IN",1811 +1992-07-01,"Commercial Consumption","Pennsylvania","PA",4046 +1992-07-01,"Commercial Consumption","Montana","MT",365 +1992-07-01,"Commercial Consumption","Texas","TX",13768 +1992-07-01,"Commercial Consumption","Ohio","OH",4291 +1992-07-01,"Commercial Consumption","New York","NY",9327 +1992-07-01,"Commercial Consumption","Arizona","AZ",1690 +1992-07-01,"Commercial Consumption","West Virginia","WV",812 +1992-07-01,"Commercial Consumption","Colorado","CO",2430 +1992-07-01,"Commercial Consumption","Utah","UT",410 +1992-07-01,"Commercial Consumption","Wisconsin","WI",1759 +1992-07-01,"Commercial Consumption","New Hampshire","NH",179 +1992-07-01,"Commercial Consumption","Vermont","VT",79 +1992-07-01,"Commercial Consumption","Delaware","DE",166 +1992-07-01,"Commercial Consumption","Michigan","MI",4981 +1992-07-01,"Commercial Consumption","South Carolina","SC",820 +1992-07-01,"Commercial Consumption","Georgia","GA",2536 +1992-07-01,"Commercial Consumption","District of Columbia","DC",718 +1992-07-01,"Commercial Consumption","Wyoming","WY",264 +1992-07-01,"Commercial Consumption","North Carolina","NC",1591 +1992-07-01,"Commercial Consumption","New Mexico","NM",1200 +1992-07-01,"Commercial Consumption","Missouri","MO",1849 +1992-07-01,"Commercial Consumption","Massachusetts","MA",3072 +1992-07-01,"Commercial Consumption","U.S.","U.S.",122339 +1992-07-01,"Commercial Consumption","Nebraska","NE",2366 +1992-07-01,"Commercial Consumption","Illinois","IL",5811 +1992-07-01,"Commercial Consumption","Washington","WA",1575 +1992-07-01,"Commercial Consumption","Minnesota","MN",2244 +1992-07-01,"Commercial Consumption","South Dakota","SD",291 +1992-07-01,"Commercial Consumption","Iowa","IA",1100 +1992-07-01,"Commercial Consumption","California","CA",21150 +1992-07-01,"Commercial Consumption","Arkansas","AR",1062 +1992-07-01,"Commercial Consumption","New Jersey","NJ",5240 +1992-07-01,"Commercial Consumption","Alabama","AL",1108 +1992-07-01,"Commercial Consumption","Tennessee","TN",1838 +1992-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97586 +1992-07-01,"Residential Consumption","North Carolina","NC",837 +1992-07-01,"Residential Consumption","Iowa","IA",1546 +1992-07-01,"Residential Consumption","Indiana","IN",3484 +1992-07-01,"Residential Consumption","Florida","FL",674 +1992-07-01,"Residential Consumption","Colorado","CO",2809 +1992-07-01,"Residential Consumption","Oklahoma","OK",1949 +1992-07-01,"Residential Consumption","Hawaii","HI",45 +1992-07-01,"Residential Consumption","South Dakota","SD",265 +1992-07-01,"Residential Consumption","District of Columbia","DC",469 +1992-07-01,"Residential Consumption","North Dakota","ND",260 +1992-07-01,"Residential Consumption","Delaware","DE",197 +1992-07-01,"Residential Consumption","Oregon","OR",610 +1992-07-01,"Residential Consumption","Connecticut","CT",1125 +1992-07-01,"Residential Consumption","Wisconsin","WI",2604 +1992-07-01,"Residential Consumption","Nebraska","NE",1047 +1992-07-01,"Residential Consumption","Michigan","MI",8773 +1992-07-01,"Residential Consumption","New Mexico","NM",929 +1992-07-01,"Residential Consumption","New Jersey","NJ",5239 +1992-07-01,"Residential Consumption","Kentucky","KY",1326 +1992-07-01,"Residential Consumption","Washington","WA",910 +1992-07-01,"Residential Consumption","Ohio","OH",8098 +1992-07-01,"Residential Consumption","Mississippi","MS",896 +1992-07-01,"Residential Consumption","Maryland","MD",2153 +1992-07-01,"Residential Consumption","Minnesota","MN",2702 +1992-07-01,"Residential Consumption","Georgia","GA",3170 +1992-07-01,"Residential Consumption","Missouri","MO",2931 +1992-07-01,"Residential Consumption","California","CA",22397 +1992-07-01,"Residential Consumption","Illinois","IL",10391 +1992-07-01,"Residential Consumption","Tennessee","TN",1120 +1992-07-01,"Residential Consumption","Arkansas","AR",1194 +1992-07-01,"Residential Consumption","New Hampshire","NH",159 +1992-07-01,"Residential Consumption","Montana","MT",485 +1992-07-01,"Residential Consumption","Kansas","KS",1932 +1992-07-01,"Residential Consumption","Virginia","VA",1495 +1992-07-01,"Residential Consumption","Utah","UT",1406 +1992-07-01,"Residential Consumption","Nevada","NV",671 +1992-07-01,"Residential Consumption","Pennsylvania","PA",6134 +1992-07-01,"Residential Consumption","Maine","ME",24 +1992-07-01,"Residential Consumption","Massachusetts","MA",3453 +1992-07-01,"Residential Consumption","Alabama","AL",1423 +1992-07-01,"Residential Consumption","Alaska","AK",474 +1992-07-01,"Residential Consumption","Wyoming","WY",323 +1992-07-01,"Residential Consumption","West Virginia","WV",683 +1992-07-01,"Residential Consumption","Texas","TX",8119 +1992-07-01,"Residential Consumption","Rhode Island","RI",639 +1992-07-01,"Residential Consumption","Vermont","VT",53 +1992-07-01,"Residential Consumption","Arizona","AZ",947 +1992-07-01,"Residential Consumption","New York","NY",10509 +1992-07-01,"Residential Consumption","South Carolina","SC",424 +1992-07-01,"Residential Consumption","Louisiana","LA",2067 +1992-07-01,"Residential Consumption","Idaho","ID",233 +1992-07-01,"Residential Consumption","U.S.","U.S.",131801 +1992-08-01,"Commercial Consumption","Washington","WA",1514 +1992-08-01,"Commercial Consumption","South Dakota","SD",284 +1992-08-01,"Commercial Consumption","Kansas","KS",3462 +1992-08-01,"Commercial Consumption","Hawaii","HI",173 +1992-08-01,"Commercial Consumption","Alaska","AK",1013 +1992-08-01,"Commercial Consumption","Michigan","MI",4964 +1992-08-01,"Commercial Consumption","West Virginia","WV",855 +1992-08-01,"Commercial Consumption","Pennsylvania","PA",4132 +1992-08-01,"Commercial Consumption","Maine","ME",52 +1992-08-01,"Commercial Consumption","New York","NY",9456 +1992-08-01,"Commercial Consumption","Delaware","DE",152 +1992-08-01,"Commercial Consumption","Tennessee","TN",1681 +1992-08-01,"Commercial Consumption","Louisiana","LA",1431 +1992-08-01,"Commercial Consumption","North Dakota","ND",262 +1992-08-01,"Commercial Consumption","Minnesota","MN",2296 +1992-08-01,"Commercial Consumption","New Jersey","NJ",4981 +1992-08-01,"Commercial Consumption","New Hampshire","NH",169 +1992-08-01,"Commercial Consumption","Idaho","ID",330 +1992-08-01,"Commercial Consumption","California","CA",21633 +1992-08-01,"Commercial Consumption","Montana","MT",331 +1992-08-01,"Commercial Consumption","U.S.","U.S.",121186 +1992-08-01,"Commercial Consumption","Georgia","GA",2503 +1992-08-01,"Commercial Consumption","Ohio","OH",4260 +1992-08-01,"Commercial Consumption","Alabama","AL",1078 +1992-08-01,"Commercial Consumption","Nevada","NV",824 +1992-08-01,"Commercial Consumption","Indiana","IN",1955 +1992-08-01,"Commercial Consumption","South Carolina","SC",882 +1992-08-01,"Commercial Consumption","Oregon","OR",782 +1992-08-01,"Commercial Consumption","Texas","TX",12966 +1992-08-01,"Commercial Consumption","Vermont","VT",75 +1992-08-01,"Commercial Consumption","Rhode Island","RI",479 +1992-08-01,"Commercial Consumption","Iowa","IA",1257 +1992-08-01,"Commercial Consumption","Wyoming","WY",269 +1992-08-01,"Commercial Consumption","Colorado","CO",2183 +1992-08-01,"Commercial Consumption","Oklahoma","OK",1292 +1992-08-01,"Commercial Consumption","Kentucky","KY",1158 +1992-08-01,"Commercial Consumption","Maryland","MD",1586 +1992-08-01,"Commercial Consumption","Arkansas","AR",1022 +1992-08-01,"Commercial Consumption","Nebraska","NE",2393 +1992-08-01,"Commercial Consumption","Mississippi","MS",867 +1992-08-01,"Commercial Consumption","Arizona","AZ",1505 +1992-08-01,"Commercial Consumption","North Carolina","NC",1607 +1992-08-01,"Commercial Consumption","Missouri","MO",1993 +1992-08-01,"Commercial Consumption","Massachusetts","MA",2884 +1992-08-01,"Commercial Consumption","Florida","FL",2881 +1992-08-01,"Commercial Consumption","Illinois","IL",6025 +1992-08-01,"Commercial Consumption","Utah","UT",372 +1992-08-01,"Commercial Consumption","New Mexico","NM",1513 +1992-08-01,"Commercial Consumption","Virginia","VA",2055 +1992-08-01,"Commercial Consumption","Wisconsin","WI",1615 +1992-08-01,"Commercial Consumption","Connecticut","CT",1061 +1992-08-01,"Commercial Consumption","District of Columbia","DC",673 +1992-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95201 +1992-08-01,"Residential Consumption","South Dakota","SD",254 +1992-08-01,"Residential Consumption","Georgia","GA",2981 +1992-08-01,"Residential Consumption","New Mexico","NM",851 +1992-08-01,"Residential Consumption","Iowa","IA",1668 +1992-08-01,"Residential Consumption","Connecticut","CT",996 +1992-08-01,"Residential Consumption","Maryland","MD",2068 +1992-08-01,"Residential Consumption","Minnesota","MN",2525 +1992-08-01,"Residential Consumption","New Hampshire","NH",139 +1992-08-01,"Residential Consumption","Montana","MT",421 +1992-08-01,"Residential Consumption","Kentucky","KY",1416 +1992-08-01,"Residential Consumption","Texas","TX",7553 +1992-08-01,"Residential Consumption","North Carolina","NC",734 +1992-08-01,"Residential Consumption","Nevada","NV",529 +1992-08-01,"Residential Consumption","Kansas","KS",1740 +1992-08-01,"Residential Consumption","Missouri","MO",2681 +1992-08-01,"Residential Consumption","Alaska","AK",438 +1992-08-01,"Residential Consumption","Wisconsin","WI",2662 +1992-08-01,"Residential Consumption","Alabama","AL",1311 +1992-08-01,"Residential Consumption","New York","NY",9649 +1992-08-01,"Residential Consumption","South Carolina","SC",386 +1992-08-01,"Residential Consumption","Rhode Island","RI",423 +1992-08-01,"Residential Consumption","Nebraska","NE",983 +1992-08-01,"Residential Consumption","Florida","FL",627 +1992-08-01,"Residential Consumption","Massachusetts","MA",3203 +1992-08-01,"Residential Consumption","Arkansas","AR",1124 +1992-08-01,"Residential Consumption","Colorado","CO",2438 +1992-08-01,"Residential Consumption","Oklahoma","OK",1712 +1992-08-01,"Residential Consumption","California","CA",22039 +1992-08-01,"Residential Consumption","Illinois","IL",11171 +1992-08-01,"Residential Consumption","Mississippi","MS",817 +1992-08-01,"Residential Consumption","Vermont","VT",49 +1992-08-01,"Residential Consumption","Virginia","VA",1406 +1992-08-01,"Residential Consumption","District of Columbia","DC",420 +1992-08-01,"Residential Consumption","Indiana","IN",3312 +1992-08-01,"Residential Consumption","North Dakota","ND",214 +1992-08-01,"Residential Consumption","Idaho","ID",183 +1992-08-01,"Residential Consumption","Arizona","AZ",815 +1992-08-01,"Residential Consumption","U.S.","U.S.",125580 +1992-08-01,"Residential Consumption","Ohio","OH",7238 +1992-08-01,"Residential Consumption","Hawaii","HI",42 +1992-08-01,"Residential Consumption","Utah","UT",1255 +1992-08-01,"Residential Consumption","Michigan","MI",8655 +1992-08-01,"Residential Consumption","New Jersey","NJ",4918 +1992-08-01,"Residential Consumption","Wyoming","WY",278 +1992-08-01,"Residential Consumption","Oregon","OR",526 +1992-08-01,"Residential Consumption","Louisiana","LA",1960 +1992-08-01,"Residential Consumption","Tennessee","TN",1051 +1992-08-01,"Residential Consumption","Pennsylvania","PA",5902 +1992-08-01,"Residential Consumption","Maine","ME",22 +1992-08-01,"Residential Consumption","Washington","WA",956 +1992-08-01,"Residential Consumption","Delaware","DE",179 +1992-08-01,"Residential Consumption","West Virginia","WV",661 +1992-09-01,"Commercial Consumption","New Mexico","NM",1541 +1992-09-01,"Commercial Consumption","Missouri","MO",2024 +1992-09-01,"Commercial Consumption","South Dakota","SD",324 +1992-09-01,"Commercial Consumption","Maine","ME",67 +1992-09-01,"Commercial Consumption","Arizona","AZ",1601 +1992-09-01,"Commercial Consumption","Tennessee","TN",1933 +1992-09-01,"Commercial Consumption","Nevada","NV",872 +1992-09-01,"Commercial Consumption","Oregon","OR",863 +1992-09-01,"Commercial Consumption","Florida","FL",2849 +1992-09-01,"Commercial Consumption","Vermont","VT",77 +1992-09-01,"Commercial Consumption","Rhode Island","RI",411 +1992-09-01,"Commercial Consumption","Alaska","AK",1252 +1992-09-01,"Commercial Consumption","South Carolina","SC",875 +1992-09-01,"Commercial Consumption","Colorado","CO",2312 +1992-09-01,"Commercial Consumption","Pennsylvania","PA",4579 +1992-09-01,"Commercial Consumption","Louisiana","LA",1508 +1992-09-01,"Commercial Consumption","Minnesota","MN",2631 +1992-09-01,"Commercial Consumption","Oklahoma","OK",1240 +1992-09-01,"Commercial Consumption","Massachusetts","MA",2753 +1992-09-01,"Commercial Consumption","Wisconsin","WI",1954 +1992-09-01,"Commercial Consumption","Kentucky","KY",1209 +1992-09-01,"Commercial Consumption","Iowa","IA",1433 +1992-09-01,"Commercial Consumption","Hawaii","HI",178 +1992-09-01,"Commercial Consumption","Arkansas","AR",1029 +1992-09-01,"Commercial Consumption","New York","NY",9582 +1992-09-01,"Commercial Consumption","Delaware","DE",162 +1992-09-01,"Commercial Consumption","Michigan","MI",5431 +1992-09-01,"Commercial Consumption","Illinois","IL",6618 +1992-09-01,"Commercial Consumption","North Carolina","NC",1679 +1992-09-01,"Commercial Consumption","Utah","UT",405 +1992-09-01,"Commercial Consumption","Virginia","VA",1903 +1992-09-01,"Commercial Consumption","New Hampshire","NH",174 +1992-09-01,"Commercial Consumption","Texas","TX",11356 +1992-09-01,"Commercial Consumption","Ohio","OH",4418 +1992-09-01,"Commercial Consumption","Connecticut","CT",1075 +1992-09-01,"Commercial Consumption","Indiana","IN",2131 +1992-09-01,"Commercial Consumption","Wyoming","WY",287 +1992-09-01,"Commercial Consumption","North Dakota","ND",363 +1992-09-01,"Commercial Consumption","Kansas","KS",3132 +1992-09-01,"Commercial Consumption","Idaho","ID",369 +1992-09-01,"Commercial Consumption","Nebraska","NE",1710 +1992-09-01,"Commercial Consumption","West Virginia","WV",910 +1992-09-01,"Commercial Consumption","Washington","WA",1734 +1992-09-01,"Commercial Consumption","Montana","MT",523 +1992-09-01,"Commercial Consumption","U.S.","U.S.",120899 +1992-09-01,"Commercial Consumption","Mississippi","MS",847 +1992-09-01,"Commercial Consumption","New Jersey","NJ",5462 +1992-09-01,"Commercial Consumption","Maryland","MD",1615 +1992-09-01,"Commercial Consumption","Georgia","GA",2462 +1992-09-01,"Commercial Consumption","California","CA",19247 +1992-09-01,"Commercial Consumption","Alabama","AL",1136 +1992-09-01,"Commercial Consumption","District of Columbia","DC",653 +1992-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94431 +1992-09-01,"Residential Consumption","North Carolina","NC",806 +1992-09-01,"Residential Consumption","Louisiana","LA",2014 +1992-09-01,"Residential Consumption","District of Columbia","DC",446 +1992-09-01,"Residential Consumption","Maine","ME",17 +1992-09-01,"Residential Consumption","Indiana","IN",3960 +1992-09-01,"Residential Consumption","Missouri","MO",2942 +1992-09-01,"Residential Consumption","Mississippi","MS",856 +1992-09-01,"Residential Consumption","Florida","FL",636 +1992-09-01,"Residential Consumption","Montana","MT",727 +1992-09-01,"Residential Consumption","Delaware","DE",183 +1992-09-01,"Residential Consumption","Iowa","IA",1885 +1992-09-01,"Residential Consumption","Virginia","VA",1467 +1992-09-01,"Residential Consumption","South Dakota","SD",315 +1992-09-01,"Residential Consumption","Minnesota","MN",3021 +1992-09-01,"Residential Consumption","New Jersey","NJ",5338 +1992-09-01,"Residential Consumption","Kansas","KS",1798 +1992-09-01,"Residential Consumption","U.S.","U.S.",137106 +1992-09-01,"Residential Consumption","Hawaii","HI",43 +1992-09-01,"Residential Consumption","North Dakota","ND",285 +1992-09-01,"Residential Consumption","Kentucky","KY",1413 +1992-09-01,"Residential Consumption","Colorado","CO",2644 +1992-09-01,"Residential Consumption","South Carolina","SC",409 +1992-09-01,"Residential Consumption","Wisconsin","WI",3229 +1992-09-01,"Residential Consumption","Nebraska","NE",1096 +1992-09-01,"Residential Consumption","New Hampshire","NH",151 +1992-09-01,"Residential Consumption","Washington","WA",1310 +1992-09-01,"Residential Consumption","Alaska","AK",643 +1992-09-01,"Residential Consumption","Wyoming","WY",360 +1992-09-01,"Residential Consumption","Oregon","OR",648 +1992-09-01,"Residential Consumption","Ohio","OH",8111 +1992-09-01,"Residential Consumption","Connecticut","CT",1155 +1992-09-01,"Residential Consumption","Michigan","MI",9435 +1992-09-01,"Residential Consumption","Nevada","NV",608 +1992-09-01,"Residential Consumption","Georgia","GA",3211 +1992-09-01,"Residential Consumption","Pennsylvania","PA",6950 +1992-09-01,"Residential Consumption","Arkansas","AR",1096 +1992-09-01,"Residential Consumption","Oklahoma","OK",1775 +1992-09-01,"Residential Consumption","West Virginia","WV",819 +1992-09-01,"Residential Consumption","Vermont","VT",53 +1992-09-01,"Residential Consumption","Tennessee","TN",1100 +1992-09-01,"Residential Consumption","Maryland","MD",2027 +1992-09-01,"Residential Consumption","Idaho","ID",274 +1992-09-01,"Residential Consumption","California","CA",21969 +1992-09-01,"Residential Consumption","Arizona","AZ",870 +1992-09-01,"Residential Consumption","Alabama","AL",1373 +1992-09-01,"Residential Consumption","Illinois","IL",13758 +1992-09-01,"Residential Consumption","Texas","TX",7750 +1992-09-01,"Residential Consumption","Rhode Island","RI",547 +1992-09-01,"Residential Consumption","Utah","UT",1321 +1992-09-01,"Residential Consumption","New Mexico","NM",889 +1992-09-01,"Residential Consumption","Massachusetts","MA",3369 +1992-09-01,"Residential Consumption","New York","NY",10006 +1992-10-01,"Commercial Consumption","Massachusetts","MA",3776 +1992-10-01,"Commercial Consumption","Wisconsin","WI",4108 +1992-10-01,"Commercial Consumption","Georgia","GA",3201 +1992-10-01,"Commercial Consumption","Iowa","IA",2645 +1992-10-01,"Commercial Consumption","Arizona","AZ",1580 +1992-10-01,"Commercial Consumption","Illinois","IL",12394 +1992-10-01,"Commercial Consumption","West Virginia","WV",1482 +1992-10-01,"Commercial Consumption","New Mexico","NM",1673 +1992-10-01,"Commercial Consumption","Vermont","VT",144 +1992-10-01,"Commercial Consumption","Idaho","ID",465 +1992-10-01,"Commercial Consumption","California","CA",19112 +1992-10-01,"Commercial Consumption","Mississippi","MS",942 +1992-10-01,"Commercial Consumption","Indiana","IN",4253 +1992-10-01,"Commercial Consumption","District of Columbia","DC",753 +1992-10-01,"Commercial Consumption","Minnesota","MN",5092 +1992-10-01,"Commercial Consumption","Oregon","OR",1105 +1992-10-01,"Commercial Consumption","Virginia","VA",3275 +1992-10-01,"Commercial Consumption","New Hampshire","NH",295 +1992-10-01,"Commercial Consumption","Rhode Island","RI",609 +1992-10-01,"Commercial Consumption","Delaware","DE",240 +1992-10-01,"Commercial Consumption","Florida","FL",2954 +1992-10-01,"Commercial Consumption","Ohio","OH",9092 +1992-10-01,"Commercial Consumption","Nebraska","NE",2508 +1992-10-01,"Commercial Consumption","Michigan","MI",9760 +1992-10-01,"Commercial Consumption","South Carolina","SC",1006 +1992-10-01,"Commercial Consumption","North Carolina","NC",2138 +1992-10-01,"Commercial Consumption","Colorado","CO",3078 +1992-10-01,"Commercial Consumption","U.S.","U.S.",166151 +1992-10-01,"Commercial Consumption","Texas","TX",11672 +1992-10-01,"Commercial Consumption","Maryland","MD",2491 +1992-10-01,"Commercial Consumption","Arkansas","AR",1219 +1992-10-01,"Commercial Consumption","Utah","UT",545 +1992-10-01,"Commercial Consumption","South Dakota","SD",558 +1992-10-01,"Commercial Consumption","Montana","MT",810 +1992-10-01,"Commercial Consumption","Kentucky","KY",2237 +1992-10-01,"Commercial Consumption","Alaska","AK",1790 +1992-10-01,"Commercial Consumption","New York","NY",12860 +1992-10-01,"Commercial Consumption","Louisiana","LA",1577 +1992-10-01,"Commercial Consumption","Washington","WA",2240 +1992-10-01,"Commercial Consumption","North Dakota","ND",576 +1992-10-01,"Commercial Consumption","Oklahoma","OK",1449 +1992-10-01,"Commercial Consumption","Pennsylvania","PA",8439 +1992-10-01,"Commercial Consumption","Maine","ME",116 +1992-10-01,"Commercial Consumption","Kansas","KS",3162 +1992-10-01,"Commercial Consumption","Hawaii","HI",168 +1992-10-01,"Commercial Consumption","Connecticut","CT",1562 +1992-10-01,"Commercial Consumption","Alabama","AL",1320 +1992-10-01,"Commercial Consumption","Nevada","NV",982 +1992-10-01,"Commercial Consumption","Wyoming","WY",439 +1992-10-01,"Commercial Consumption","Missouri","MO",2728 +1992-10-01,"Commercial Consumption","New Jersey","NJ",7164 +1992-10-01,"Commercial Consumption","Tennessee","TN",2368 +1992-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100507 +1992-10-01,"Residential Consumption","Michigan","MI",20856 +1992-10-01,"Residential Consumption","Georgia","GA",5284 +1992-10-01,"Residential Consumption","North Dakota","ND",458 +1992-10-01,"Residential Consumption","Colorado","CO",3547 +1992-10-01,"Residential Consumption","Oklahoma","OK",2236 +1992-10-01,"Residential Consumption","California","CA",24434 +1992-10-01,"Residential Consumption","Alaska","AK",1209 +1992-10-01,"Residential Consumption","Illinois","IL",28742 +1992-10-01,"Residential Consumption","North Carolina","NC",1781 +1992-10-01,"Residential Consumption","Connecticut","CT",2271 +1992-10-01,"Residential Consumption","Kansas","KS",2421 +1992-10-01,"Residential Consumption","Delaware","DE",307 +1992-10-01,"Residential Consumption","U.S.","U.S.",240662 +1992-10-01,"Residential Consumption","Hawaii","HI",42 +1992-10-01,"Residential Consumption","Tennessee","TN",1885 +1992-10-01,"Residential Consumption","District of Columbia","DC",642 +1992-10-01,"Residential Consumption","New Mexico","NM",1033 +1992-10-01,"Residential Consumption","Vermont","VT",129 +1992-10-01,"Residential Consumption","Virginia","VA",3307 +1992-10-01,"Residential Consumption","Maine","ME",41 +1992-10-01,"Residential Consumption","Idaho","ID",428 +1992-10-01,"Residential Consumption","Missouri","MO",4259 +1992-10-01,"Residential Consumption","Arizona","AZ",1000 +1992-10-01,"Residential Consumption","Texas","TX",8584 +1992-10-01,"Residential Consumption","Rhode Island","RI",890 +1992-10-01,"Residential Consumption","Louisiana","LA",2222 +1992-10-01,"Residential Consumption","Nebraska","NE",2030 +1992-10-01,"Residential Consumption","Maryland","MD",4038 +1992-10-01,"Residential Consumption","Nevada","NV",727 +1992-10-01,"Residential Consumption","Minnesota","MN",6449 +1992-10-01,"Residential Consumption","Pennsylvania","PA",15853 +1992-10-01,"Residential Consumption","Massachusetts","MA",5342 +1992-10-01,"Residential Consumption","Montana","MT",1106 +1992-10-01,"Residential Consumption","West Virginia","WV",1899 +1992-10-01,"Residential Consumption","Oregon","OR",1017 +1992-10-01,"Residential Consumption","Iowa","IA",3725 +1992-10-01,"Residential Consumption","Florida","FL",685 +1992-10-01,"Residential Consumption","New Hampshire","NH",288 +1992-10-01,"Residential Consumption","Kentucky","KY",3376 +1992-10-01,"Residential Consumption","Washington","WA",2236 +1992-10-01,"Residential Consumption","New York","NY",18633 +1992-10-01,"Residential Consumption","Ohio","OH",20929 +1992-10-01,"Residential Consumption","Mississippi","MS",979 +1992-10-01,"Residential Consumption","Wisconsin","WI",7630 +1992-10-01,"Residential Consumption","Utah","UT",1802 +1992-10-01,"Residential Consumption","South Dakota","SD",602 +1992-10-01,"Residential Consumption","Alabama","AL",1728 +1992-10-01,"Residential Consumption","Wyoming","WY",551 +1992-10-01,"Residential Consumption","South Carolina","SC",792 +1992-10-01,"Residential Consumption","Indiana","IN",8361 +1992-10-01,"Residential Consumption","Arkansas","AR",1511 +1992-10-01,"Residential Consumption","New Jersey","NJ",10368 +1992-11-01,"Commercial Consumption","Massachusetts","MA",5530 +1992-11-01,"Commercial Consumption","Kentucky","KY",4064 +1992-11-01,"Commercial Consumption","Connecticut","CT",2623 +1992-11-01,"Commercial Consumption","Illinois","IL",22757 +1992-11-01,"Commercial Consumption","Wyoming","WY",760 +1992-11-01,"Commercial Consumption","North Dakota","ND",1015 +1992-11-01,"Commercial Consumption","Maine","ME",188 +1992-11-01,"Commercial Consumption","Florida","FL",3317 +1992-11-01,"Commercial Consumption","Idaho","ID",889 +1992-11-01,"Commercial Consumption","Nebraska","NE",3988 +1992-11-01,"Commercial Consumption","Tennessee","TN",3963 +1992-11-01,"Commercial Consumption","Washington","WA",3418 +1992-11-01,"Commercial Consumption","Oregon","OR",1652 +1992-11-01,"Commercial Consumption","New Jersey","NJ",11027 +1992-11-01,"Commercial Consumption","Vermont","VT",211 +1992-11-01,"Commercial Consumption","Nevada","NV",1022 +1992-11-01,"Commercial Consumption","Michigan","MI",16298 +1992-11-01,"Commercial Consumption","Oklahoma","OK",2608 +1992-11-01,"Commercial Consumption","Virginia","VA",4714 +1992-11-01,"Commercial Consumption","Wisconsin","WI",7918 +1992-11-01,"Commercial Consumption","South Dakota","SD",1104 +1992-11-01,"Commercial Consumption","Maryland","MD",3895 +1992-11-01,"Commercial Consumption","Kansas","KS",4867 +1992-11-01,"Commercial Consumption","New York","NY",16804 +1992-11-01,"Commercial Consumption","Minnesota","MN",9526 +1992-11-01,"Commercial Consumption","Pennsylvania","PA",12784 +1992-11-01,"Commercial Consumption","U.S.","U.S.",255758 +1992-11-01,"Commercial Consumption","Texas","TX",17386 +1992-11-01,"Commercial Consumption","Alabama","AL",1983 +1992-11-01,"Commercial Consumption","Mississippi","MS",1489 +1992-11-01,"Commercial Consumption","West Virginia","WV",2092 +1992-11-01,"Commercial Consumption","South Carolina","SC",1345 +1992-11-01,"Commercial Consumption","Colorado","CO",5594 +1992-11-01,"Commercial Consumption","Missouri","MO",5335 +1992-11-01,"Commercial Consumption","New Hampshire","NH",515 +1992-11-01,"Commercial Consumption","Montana","MT",1271 +1992-11-01,"Commercial Consumption","Georgia","GA",4640 +1992-11-01,"Commercial Consumption","Ohio","OH",15094 +1992-11-01,"Commercial Consumption","Hawaii","HI",178 +1992-11-01,"Commercial Consumption","California","CA",20999 +1992-11-01,"Commercial Consumption","Indiana","IN",8135 +1992-11-01,"Commercial Consumption","District of Columbia","DC",1103 +1992-11-01,"Commercial Consumption","North Carolina","NC",3010 +1992-11-01,"Commercial Consumption","Utah","UT",1329 +1992-11-01,"Commercial Consumption","New Mexico","NM",2269 +1992-11-01,"Commercial Consumption","Iowa","IA",5843 +1992-11-01,"Commercial Consumption","Alaska","AK",1928 +1992-11-01,"Commercial Consumption","Delaware","DE",395 +1992-11-01,"Commercial Consumption","Arizona","AZ",1858 +1992-11-01,"Commercial Consumption","Louisiana","LA",2295 +1992-11-01,"Commercial Consumption","Rhode Island","RI",654 +1992-11-01,"Commercial Consumption","Arkansas","AR",2078 +1992-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",99122 +1992-11-01,"Residential Consumption","Kentucky","KY",6997 +1992-11-01,"Residential Consumption","Kansas","KS",6102 +1992-11-01,"Residential Consumption","Oklahoma","OK",4722 +1992-11-01,"Residential Consumption","Rhode Island","RI",1720 +1992-11-01,"Residential Consumption","Louisiana","LA",4185 +1992-11-01,"Residential Consumption","Indiana","IN",15953 +1992-11-01,"Residential Consumption","New Jersey","NJ",17953 +1992-11-01,"Residential Consumption","Missouri","MO",10344 +1992-11-01,"Residential Consumption","Delaware","DE",628 +1992-11-01,"Residential Consumption","California","CA",37291 +1992-11-01,"Residential Consumption","U.S.","U.S.",436771 +1992-11-01,"Residential Consumption","South Carolina","SC",1750 +1992-11-01,"Residential Consumption","Ohio","OH",34181 +1992-11-01,"Residential Consumption","Iowa","IA",8350 +1992-11-01,"Residential Consumption","Vermont","VT",205 +1992-11-01,"Residential Consumption","Utah","UT",3844 +1992-11-01,"Residential Consumption","Georgia","GA",12934 +1992-11-01,"Residential Consumption","Pennsylvania","PA",24806 +1992-11-01,"Residential Consumption","Florida","FL",956 +1992-11-01,"Residential Consumption","Massachusetts","MA",10056 +1992-11-01,"Residential Consumption","Arkansas","AR",3132 +1992-11-01,"Residential Consumption","Wyoming","WY",1071 +1992-11-01,"Residential Consumption","North Carolina","NC",3446 +1992-11-01,"Residential Consumption","Wisconsin","WI",13233 +1992-11-01,"Residential Consumption","Maryland","MD",6855 +1992-11-01,"Residential Consumption","Minnesota","MN",12857 +1992-11-01,"Residential Consumption","New Mexico","NM",1992 +1992-11-01,"Residential Consumption","Maine","ME",70 +1992-11-01,"Residential Consumption","Montana","MT",1792 +1992-11-01,"Residential Consumption","Colorado","CO",7607 +1992-11-01,"Residential Consumption","New York","NY",30758 +1992-11-01,"Residential Consumption","Illinois","IL",54950 +1992-11-01,"Residential Consumption","Tennessee","TN",4473 +1992-11-01,"Residential Consumption","Michigan","MI",34278 +1992-11-01,"Residential Consumption","Nevada","NV",1226 +1992-11-01,"Residential Consumption","North Dakota","ND",990 +1992-11-01,"Residential Consumption","West Virginia","WV",3120 +1992-11-01,"Residential Consumption","Texas","TX",19205 +1992-11-01,"Residential Consumption","Oregon","OR",1993 +1992-11-01,"Residential Consumption","Mississippi","MS",1927 +1992-11-01,"Residential Consumption","Nebraska","NE",4561 +1992-11-01,"Residential Consumption","South Dakota","SD",1267 +1992-11-01,"Residential Consumption","Idaho","ID",1024 +1992-11-01,"Residential Consumption","Alabama","AL",3402 +1992-11-01,"Residential Consumption","Alaska","AK",1442 +1992-11-01,"Residential Consumption","Connecticut","CT",3876 +1992-11-01,"Residential Consumption","District of Columbia","DC",1314 +1992-11-01,"Residential Consumption","New Hampshire","NH",526 +1992-11-01,"Residential Consumption","Arizona","AZ",1576 +1992-11-01,"Residential Consumption","Hawaii","HI",42 +1992-11-01,"Residential Consumption","Virginia","VA",5553 +1992-11-01,"Residential Consumption","Washington","WA",4236 +1992-12-01,"Commercial Consumption","Wyoming","WY",1271 +1992-12-01,"Commercial Consumption","North Dakota","ND",1549 +1992-12-01,"Commercial Consumption","Delaware","DE",622 +1992-12-01,"Commercial Consumption","Oregon","OR",3166 +1992-12-01,"Commercial Consumption","New Hampshire","NH",715 +1992-12-01,"Commercial Consumption","Maine","ME",285 +1992-12-01,"Commercial Consumption","U.S.","U.S.",380772 +1992-12-01,"Commercial Consumption","Mississippi","MS",2387 +1992-12-01,"Commercial Consumption","Michigan","MI",24211 +1992-12-01,"Commercial Consumption","District of Columbia","DC",1921 +1992-12-01,"Commercial Consumption","South Carolina","SC",2089 +1992-12-01,"Commercial Consumption","Oklahoma","OK",5771 +1992-12-01,"Commercial Consumption","Virginia","VA",6895 +1992-12-01,"Commercial Consumption","Vermont","VT",269 +1992-12-01,"Commercial Consumption","Ohio","OH",23770 +1992-12-01,"Commercial Consumption","Arkansas","AR",3596 +1992-12-01,"Commercial Consumption","Nebraska","NE",4941 +1992-12-01,"Commercial Consumption","Arizona","AZ",3573 +1992-12-01,"Commercial Consumption","Utah","UT",3120 +1992-12-01,"Commercial Consumption","Pennsylvania","PA",18385 +1992-12-01,"Commercial Consumption","Maryland","MD",5565 +1992-12-01,"Commercial Consumption","Kansas","KS",7543 +1992-12-01,"Commercial Consumption","Iowa","IA",7827 +1992-12-01,"Commercial Consumption","Alabama","AL",3338 +1992-12-01,"Commercial Consumption","New York","NY",25808 +1992-12-01,"Commercial Consumption","Minnesota","MN",12795 +1992-12-01,"Commercial Consumption","Missouri","MO",9646 +1992-12-01,"Commercial Consumption","South Dakota","SD",1476 +1992-12-01,"Commercial Consumption","Kentucky","KY",5519 +1992-12-01,"Commercial Consumption","California","CA",28738 +1992-12-01,"Commercial Consumption","Tennessee","TN",6846 +1992-12-01,"Commercial Consumption","New Mexico","NM",4165 +1992-12-01,"Commercial Consumption","Massachusetts","MA",6933 +1992-12-01,"Commercial Consumption","Wisconsin","WI",11087 +1992-12-01,"Commercial Consumption","New Jersey","NJ",16470 +1992-12-01,"Commercial Consumption","Rhode Island","RI",951 +1992-12-01,"Commercial Consumption","Louisiana","LA",3574 +1992-12-01,"Commercial Consumption","Washington","WA",5709 +1992-12-01,"Commercial Consumption","Montana","MT",2095 +1992-12-01,"Commercial Consumption","Texas","TX",22093 +1992-12-01,"Commercial Consumption","Georgia","GA",7642 +1992-12-01,"Commercial Consumption","Florida","FL",3914 +1992-12-01,"Commercial Consumption","Idaho","ID",1557 +1992-12-01,"Commercial Consumption","Hawaii","HI",184 +1992-12-01,"Commercial Consumption","Alaska","AK",2390 +1992-12-01,"Commercial Consumption","Nevada","NV",2170 +1992-12-01,"Commercial Consumption","West Virginia","WV",3396 +1992-12-01,"Commercial Consumption","North Carolina","NC",4941 +1992-12-01,"Commercial Consumption","Colorado","CO",10319 +1992-12-01,"Commercial Consumption","Connecticut","CT",3871 +1992-12-01,"Commercial Consumption","Indiana","IN",12097 +1992-12-01,"Commercial Consumption","Illinois","IL",31575 +1992-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103519 +1992-12-01,"Residential Consumption","Louisiana","LA",8411 +1992-12-01,"Residential Consumption","Kentucky","KY",10617 +1992-12-01,"Residential Consumption","Washington","WA",7930 +1992-12-01,"Residential Consumption","Alabama","AL",7261 +1992-12-01,"Residential Consumption","South Carolina","SC",3784 +1992-12-01,"Residential Consumption","Ohio","OH",49551 +1992-12-01,"Residential Consumption","Mississippi","MS",4198 +1992-12-01,"Residential Consumption","Utah","UT",7957 +1992-12-01,"Residential Consumption","Indiana","IN",24261 +1992-12-01,"Residential Consumption","Massachusetts","MA",14189 +1992-12-01,"Residential Consumption","Idaho","ID",1946 +1992-12-01,"Residential Consumption","New Jersey","NJ",27553 +1992-12-01,"Residential Consumption","Montana","MT",3065 +1992-12-01,"Residential Consumption","Missouri","MO",19801 +1992-12-01,"Residential Consumption","Arizona","AZ",5118 +1992-12-01,"Residential Consumption","Rhode Island","RI",2403 +1992-12-01,"Residential Consumption","Hawaii","HI",50 +1992-12-01,"Residential Consumption","Pennsylvania","PA",36609 +1992-12-01,"Residential Consumption","New Mexico","NM",5194 +1992-12-01,"Residential Consumption","New Hampshire","NH",750 +1992-12-01,"Residential Consumption","Kansas","KS",12732 +1992-12-01,"Residential Consumption","Delaware","DE",1044 +1992-12-01,"Residential Consumption","California","CA",75266 +1992-12-01,"Residential Consumption","Oregon","OR",4337 +1992-12-01,"Residential Consumption","Maryland","MD",10567 +1992-12-01,"Residential Consumption","Nevada","NV",3302 +1992-12-01,"Residential Consumption","Vermont","VT",308 +1992-12-01,"Residential Consumption","Virginia","VA",9396 +1992-12-01,"Residential Consumption","Maine","ME",111 +1992-12-01,"Residential Consumption","Florida","FL",1766 +1992-12-01,"Residential Consumption","Oklahoma","OK",11635 +1992-12-01,"Residential Consumption","U.S.","U.S.",717170 +1992-12-01,"Residential Consumption","New York","NY",49715 +1992-12-01,"Residential Consumption","Texas","TX",35434 +1992-12-01,"Residential Consumption","North Carolina","NC",6819 +1992-12-01,"Residential Consumption","Connecticut","CT",5855 +1992-12-01,"Residential Consumption","Wisconsin","WI",19080 +1992-12-01,"Residential Consumption","Nebraska","NE",7085 +1992-12-01,"Residential Consumption","Michigan","MI",50376 +1992-12-01,"Residential Consumption","District of Columbia","DC",2213 +1992-12-01,"Residential Consumption","Illinois","IL",77632 +1992-12-01,"Residential Consumption","South Dakota","SD",1797 +1992-12-01,"Residential Consumption","North Dakota","ND",1472 +1992-12-01,"Residential Consumption","Colorado","CO",15715 +1992-12-01,"Residential Consumption","Alaska","AK",1682 +1992-12-01,"Residential Consumption","Wyoming","WY",1803 +1992-12-01,"Residential Consumption","West Virginia","WV",4146 +1992-12-01,"Residential Consumption","Iowa","IA",12827 +1992-12-01,"Residential Consumption","Tennessee","TN",9125 +1992-12-01,"Residential Consumption","Minnesota","MN",18543 +1992-12-01,"Residential Consumption","Georgia","GA",18555 +1992-12-01,"Residential Consumption","Arkansas","AR",6185 +1993-01-01,"Commercial Consumption","West Virginia","WV",3123 +1993-01-01,"Commercial Consumption","New Mexico","NM",3781 +1993-01-01,"Commercial Consumption","Rhode Island","RI",1140 +1993-01-01,"Commercial Consumption","Alaska","AK",2487 +1993-01-01,"Commercial Consumption","New York","NY",28857 +1993-01-01,"Commercial Consumption","Tennessee","TN",7296 +1993-01-01,"Commercial Consumption","Wyoming","WY",1631 +1993-01-01,"Commercial Consumption","North Dakota","ND",1911 +1993-01-01,"Commercial Consumption","North Carolina","NC",5866 +1993-01-01,"Commercial Consumption","New Hampshire","NH",993 +1993-01-01,"Commercial Consumption","Georgia","GA",7627 +1993-01-01,"Commercial Consumption","Connecticut","CT",4666 +1993-01-01,"Commercial Consumption","California","CA",27151 +1993-01-01,"Commercial Consumption","Nebraska","NE",5784 +1993-01-01,"Commercial Consumption","Louisiana","LA",3260 +1993-01-01,"Commercial Consumption","South Carolina","SC",2268 +1993-01-01,"Commercial Consumption","Minnesota","MN",14685 +1993-01-01,"Commercial Consumption","New Jersey","NJ",17585 +1993-01-01,"Commercial Consumption","Maryland","MD",6273 +1993-01-01,"Commercial Consumption","Kansas","KS",8768 +1993-01-01,"Commercial Consumption","Oklahoma","OK",7076 +1993-01-01,"Commercial Consumption","Washington","WA",7058 +1993-01-01,"Commercial Consumption","Alabama","AL",3532 +1993-01-01,"Commercial Consumption","Delaware","DE",739 +1993-01-01,"Commercial Consumption","Arizona","AZ",3422 +1993-01-01,"Commercial Consumption","Michigan","MI",28122 +1993-01-01,"Commercial Consumption","District of Columbia","DC",2352 +1993-01-01,"Commercial Consumption","Colorado","CO",11775 +1993-01-01,"Commercial Consumption","Oregon","OR",4148 +1993-01-01,"Commercial Consumption","Virginia","VA",7432 +1993-01-01,"Commercial Consumption","Maine","ME",356 +1993-01-01,"Commercial Consumption","U.S.","U.S.",415438 +1993-01-01,"Commercial Consumption","Texas","TX",21489 +1993-01-01,"Commercial Consumption","Florida","FL",3951 +1993-01-01,"Commercial Consumption","Ohio","OH",25230 +1993-01-01,"Commercial Consumption","Iowa","IA",8688 +1993-01-01,"Commercial Consumption","Arkansas","AR",4757 +1993-01-01,"Commercial Consumption","Mississippi","MS",2663 +1993-01-01,"Commercial Consumption","Utah","UT",3922 +1993-01-01,"Commercial Consumption","Wisconsin","WI",12658 +1993-01-01,"Commercial Consumption","Montana","MT",2465 +1993-01-01,"Commercial Consumption","Vermont","VT",347 +1993-01-01,"Commercial Consumption","Nevada","NV",2271 +1993-01-01,"Commercial Consumption","Indiana","IN",12941 +1993-01-01,"Commercial Consumption","Pennsylvania","PA",19394 +1993-01-01,"Commercial Consumption","Missouri","MO",12062 +1993-01-01,"Commercial Consumption","Massachusetts","MA",8556 +1993-01-01,"Commercial Consumption","South Dakota","SD",1847 +1993-01-01,"Commercial Consumption","Kentucky","KY",5878 +1993-01-01,"Commercial Consumption","Idaho","ID",1806 +1993-01-01,"Commercial Consumption","Hawaii","HI",185 +1993-01-01,"Commercial Consumption","Illinois","IL",33166 +1993-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101491 +1993-01-01,"Residential Consumption","Texas","TX",41675 +1993-01-01,"Residential Consumption","Oregon","OR",5789 +1993-01-01,"Residential Consumption","Tennessee","TN",10319 +1993-01-01,"Residential Consumption","Michigan","MI",59618 +1993-01-01,"Residential Consumption","Minnesota","MN",22379 +1993-01-01,"Residential Consumption","Georgia","GA",17952 +1993-01-01,"Residential Consumption","North Dakota","ND",2059 +1993-01-01,"Residential Consumption","Massachusetts","MA",18222 +1993-01-01,"Residential Consumption","Kansas","KS",15743 +1993-01-01,"Residential Consumption","South Carolina","SC",4276 +1993-01-01,"Residential Consumption","Vermont","VT",412 +1993-01-01,"Residential Consumption","Maryland","MD",11900 +1993-01-01,"Residential Consumption","Oklahoma","OK",14565 +1993-01-01,"Residential Consumption","Mississippi","MS",4474 +1993-01-01,"Residential Consumption","Connecticut","CT",6726 +1993-01-01,"Residential Consumption","Wisconsin","WI",23133 +1993-01-01,"Residential Consumption","New Mexico","NM",5542 +1993-01-01,"Residential Consumption","Montana","MT",3658 +1993-01-01,"Residential Consumption","Missouri","MO",24602 +1993-01-01,"Residential Consumption","Arizona","AZ",5504 +1993-01-01,"Residential Consumption","Rhode Island","RI",3091 +1993-01-01,"Residential Consumption","Ohio","OH",55994 +1993-01-01,"Residential Consumption","Iowa","IA",15138 +1993-01-01,"Residential Consumption","Virginia","VA",10835 +1993-01-01,"Residential Consumption","South Dakota","SD",2291 +1993-01-01,"Residential Consumption","Maine","ME",144 +1993-01-01,"Residential Consumption","West Virginia","WV",5220 +1993-01-01,"Residential Consumption","Indiana","IN",27916 +1993-01-01,"Residential Consumption","New Jersey","NJ",29736 +1993-01-01,"Residential Consumption","Alaska","AK",2079 +1993-01-01,"Residential Consumption","Wyoming","WY",2142 +1993-01-01,"Residential Consumption","North Carolina","NC",8379 +1993-01-01,"Residential Consumption","Hawaii","HI",51 +1993-01-01,"Residential Consumption","Utah","UT",8919 +1993-01-01,"Residential Consumption","Nebraska","NE",9013 +1993-01-01,"Residential Consumption","Nevada","NV",3892 +1993-01-01,"Residential Consumption","Arkansas","AR",8141 +1993-01-01,"Residential Consumption","Kentucky","KY",11143 +1993-01-01,"Residential Consumption","Colorado","CO",18551 +1993-01-01,"Residential Consumption","Washington","WA",9680 +1993-01-01,"Residential Consumption","Delaware","DE",1304 +1993-01-01,"Residential Consumption","District of Columbia","DC",2768 +1993-01-01,"Residential Consumption","Florida","FL",1652 +1993-01-01,"Residential Consumption","Alabama","AL",8110 +1993-01-01,"Residential Consumption","U.S.","U.S.",830874 +1993-01-01,"Residential Consumption","Illinois","IL",85860 +1993-01-01,"Residential Consumption","Louisiana","LA",8577 +1993-01-01,"Residential Consumption","Pennsylvania","PA",41969 +1993-01-01,"Residential Consumption","Idaho","ID",2265 +1993-01-01,"Residential Consumption","New Hampshire","NH",1048 +1993-01-01,"Residential Consumption","California","CA",87565 +1993-01-01,"Residential Consumption","New York","NY",58856 +1993-02-01,"Commercial Consumption","Maryland","MD",6568 +1993-02-01,"Commercial Consumption","Florida","FL",4078 +1993-02-01,"Commercial Consumption","Ohio","OH",26706 +1993-02-01,"Commercial Consumption","Tennessee","TN",7526 +1993-02-01,"Commercial Consumption","Nevada","NV",2110 +1993-02-01,"Commercial Consumption","Utah","UT",3682 +1993-02-01,"Commercial Consumption","New Mexico","NM",3366 +1993-02-01,"Commercial Consumption","Alaska","AK",2471 +1993-02-01,"Commercial Consumption","Arizona","AZ",2954 +1993-02-01,"Commercial Consumption","West Virginia","WV",3522 +1993-02-01,"Commercial Consumption","Pennsylvania","PA",21239 +1993-02-01,"Commercial Consumption","Kentucky","KY",5863 +1993-02-01,"Commercial Consumption","U.S.","U.S.",403019 +1993-02-01,"Commercial Consumption","Mississippi","MS",2583 +1993-02-01,"Commercial Consumption","North Carolina","NC",5566 +1993-02-01,"Commercial Consumption","Alabama","AL",3599 +1993-02-01,"Commercial Consumption","Nebraska","NE",3806 +1993-02-01,"Commercial Consumption","Delaware","DE",818 +1993-02-01,"Commercial Consumption","Michigan","MI",27427 +1993-02-01,"Commercial Consumption","Indiana","IN",12125 +1993-02-01,"Commercial Consumption","Wyoming","WY",1376 +1993-02-01,"Commercial Consumption","Colorado","CO",10132 +1993-02-01,"Commercial Consumption","Massachusetts","MA",9118 +1993-02-01,"Commercial Consumption","New Jersey","NJ",19550 +1993-02-01,"Commercial Consumption","Georgia","GA",7915 +1993-02-01,"Commercial Consumption","Idaho","ID",1673 +1993-02-01,"Commercial Consumption","New York","NY",29740 +1993-02-01,"Commercial Consumption","North Dakota","ND",1477 +1993-02-01,"Commercial Consumption","Minnesota","MN",12874 +1993-02-01,"Commercial Consumption","Missouri","MO",10467 +1993-02-01,"Commercial Consumption","Rhode Island","RI",1359 +1993-02-01,"Commercial Consumption","Iowa","IA",7779 +1993-02-01,"Commercial Consumption","Hawaii","HI",190 +1993-02-01,"Commercial Consumption","California","CA",31334 +1993-02-01,"Commercial Consumption","Louisiana","LA",3207 +1993-02-01,"Commercial Consumption","District of Columbia","DC",2438 +1993-02-01,"Commercial Consumption","Washington","WA",5670 +1993-02-01,"Commercial Consumption","South Carolina","SC",2155 +1993-02-01,"Commercial Consumption","Oregon","OR",3370 +1993-02-01,"Commercial Consumption","Virginia","VA",7800 +1993-02-01,"Commercial Consumption","Wisconsin","WI",11647 +1993-02-01,"Commercial Consumption","South Dakota","SD",1496 +1993-02-01,"Commercial Consumption","Maine","ME",364 +1993-02-01,"Commercial Consumption","Vermont","VT",368 +1993-02-01,"Commercial Consumption","Oklahoma","OK",6147 +1993-02-01,"Commercial Consumption","New Hampshire","NH",973 +1993-02-01,"Commercial Consumption","Montana","MT",1705 +1993-02-01,"Commercial Consumption","Texas","TX",18444 +1993-02-01,"Commercial Consumption","Kansas","KS",7385 +1993-02-01,"Commercial Consumption","Connecticut","CT",4995 +1993-02-01,"Commercial Consumption","Arkansas","AR",4174 +1993-02-01,"Commercial Consumption","Illinois","IL",29686 +1993-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91261 +1993-02-01,"Residential Consumption","Indiana","IN",25987 +1993-02-01,"Residential Consumption","Florida","FL",1868 +1993-02-01,"Residential Consumption","Colorado","CO",15981 +1993-02-01,"Residential Consumption","California","CA",66015 +1993-02-01,"Residential Consumption","Arizona","AZ",4120 +1993-02-01,"Residential Consumption","U.S.","U.S.",768365 +1993-02-01,"Residential Consumption","Illinois","IL",74466 +1993-02-01,"Residential Consumption","Minnesota","MN",18681 +1993-02-01,"Residential Consumption","District of Columbia","DC",2823 +1993-02-01,"Residential Consumption","New Hampshire","NH",1081 +1993-02-01,"Residential Consumption","Montana","MT",2509 +1993-02-01,"Residential Consumption","Kentucky","KY",11145 +1993-02-01,"Residential Consumption","Kansas","KS",13423 +1993-02-01,"Residential Consumption","Wyoming","WY",1797 +1993-02-01,"Residential Consumption","North Carolina","NC",8140 +1993-02-01,"Residential Consumption","Louisiana","LA",8402 +1993-02-01,"Residential Consumption","Vermont","VT",446 +1993-02-01,"Residential Consumption","Tennessee","TN",9273 +1993-02-01,"Residential Consumption","Utah","UT",8045 +1993-02-01,"Residential Consumption","Michigan","MI",57465 +1993-02-01,"Residential Consumption","South Dakota","SD",1784 +1993-02-01,"Residential Consumption","New Jersey","NJ",33593 +1993-02-01,"Residential Consumption","Texas","TX",34630 +1993-02-01,"Residential Consumption","Oregon","OR",4569 +1993-02-01,"Residential Consumption","Wisconsin","WI",18435 +1993-02-01,"Residential Consumption","Virginia","VA",11634 +1993-02-01,"Residential Consumption","Georgia","GA",18076 +1993-02-01,"Residential Consumption","Idaho","ID",1959 +1993-02-01,"Residential Consumption","Washington","WA",7331 +1993-02-01,"Residential Consumption","Missouri","MO",21375 +1993-02-01,"Residential Consumption","Ohio","OH",58767 +1993-02-01,"Residential Consumption","Iowa","IA",13050 +1993-02-01,"Residential Consumption","Connecticut","CT",7402 +1993-02-01,"Residential Consumption","Nebraska","NE",6132 +1993-02-01,"Residential Consumption","Maryland","MD",12922 +1993-02-01,"Residential Consumption","Oklahoma","OK",12460 +1993-02-01,"Residential Consumption","New York","NY",61673 +1993-02-01,"Residential Consumption","South Carolina","SC",4291 +1993-02-01,"Residential Consumption","Nevada","NV",3157 +1993-02-01,"Residential Consumption","New Mexico","NM",4610 +1993-02-01,"Residential Consumption","Maine","ME",153 +1993-02-01,"Residential Consumption","North Dakota","ND",1522 +1993-02-01,"Residential Consumption","Pennsylvania","PA",45019 +1993-02-01,"Residential Consumption","Arkansas","AR",7122 +1993-02-01,"Residential Consumption","Delaware","DE",1386 +1993-02-01,"Residential Consumption","Alaska","AK",2138 +1993-02-01,"Residential Consumption","Rhode Island","RI",3326 +1993-02-01,"Residential Consumption","Mississippi","MS",4388 +1993-02-01,"Residential Consumption","Hawaii","HI",51 +1993-02-01,"Residential Consumption","Massachusetts","MA",19597 +1993-02-01,"Residential Consumption","Alabama","AL",8189 +1993-02-01,"Residential Consumption","West Virginia","WV",5960 +1993-03-01,"Commercial Consumption","North Carolina","NC",5426 +1993-03-01,"Commercial Consumption","Massachusetts","MA",9026 +1993-03-01,"Commercial Consumption","Texas","TX",16162 +1993-03-01,"Commercial Consumption","Kansas","KS",7019 +1993-03-01,"Commercial Consumption","Connecticut","CT",4461 +1993-03-01,"Commercial Consumption","Minnesota","MN",11396 +1993-03-01,"Commercial Consumption","Wisconsin","WI",10442 +1993-03-01,"Commercial Consumption","U.S.","U.S.",370788 +1993-03-01,"Commercial Consumption","Georgia","GA",7796 +1993-03-01,"Commercial Consumption","Hawaii","HI",179 +1993-03-01,"Commercial Consumption","California","CA",21654 +1993-03-01,"Commercial Consumption","South Carolina","SC",2200 +1993-03-01,"Commercial Consumption","Pennsylvania","PA",19875 +1993-03-01,"Commercial Consumption","Missouri","MO",10336 +1993-03-01,"Commercial Consumption","Florida","FL",4088 +1993-03-01,"Commercial Consumption","Vermont","VT",350 +1993-03-01,"Commercial Consumption","Rhode Island","RI",1325 +1993-03-01,"Commercial Consumption","Idaho","ID",1294 +1993-03-01,"Commercial Consumption","Mississippi","MS",2559 +1993-03-01,"Commercial Consumption","Washington","WA",5157 +1993-03-01,"Commercial Consumption","Maryland","MD",6232 +1993-03-01,"Commercial Consumption","Nebraska","NE",4611 +1993-03-01,"Commercial Consumption","Nevada","NV",2016 +1993-03-01,"Commercial Consumption","West Virginia","WV",3444 +1993-03-01,"Commercial Consumption","North Dakota","ND",1339 +1993-03-01,"Commercial Consumption","Colorado","CO",9435 +1993-03-01,"Commercial Consumption","New Hampshire","NH",911 +1993-03-01,"Commercial Consumption","Montana","MT",1741 +1993-03-01,"Commercial Consumption","Michigan","MI",25623 +1993-03-01,"Commercial Consumption","Wyoming","WY",1262 +1993-03-01,"Commercial Consumption","Virginia","VA",7347 +1993-03-01,"Commercial Consumption","South Dakota","SD",1344 +1993-03-01,"Commercial Consumption","Ohio","OH",25531 +1993-03-01,"Commercial Consumption","Iowa","IA",6773 +1993-03-01,"Commercial Consumption","New York","NY",28926 +1993-03-01,"Commercial Consumption","Louisiana","LA",3075 +1993-03-01,"Commercial Consumption","Illinois","IL",27677 +1993-03-01,"Commercial Consumption","District of Columbia","DC",2166 +1993-03-01,"Commercial Consumption","New Mexico","NM",2637 +1993-03-01,"Commercial Consumption","New Jersey","NJ",18731 +1993-03-01,"Commercial Consumption","Alaska","AK",2051 +1993-03-01,"Commercial Consumption","Arkansas","AR",3999 +1993-03-01,"Commercial Consumption","Alabama","AL",3655 +1993-03-01,"Commercial Consumption","Delaware","DE",858 +1993-03-01,"Commercial Consumption","Arizona","AZ",3056 +1993-03-01,"Commercial Consumption","Tennessee","TN",7354 +1993-03-01,"Commercial Consumption","Indiana","IN",10972 +1993-03-01,"Commercial Consumption","Utah","UT",2988 +1993-03-01,"Commercial Consumption","Oregon","OR",2880 +1993-03-01,"Commercial Consumption","Oklahoma","OK",5910 +1993-03-01,"Commercial Consumption","Maine","ME",291 +1993-03-01,"Commercial Consumption","Kentucky","KY",5207 +1993-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100277 +1993-03-01,"Residential Consumption","Rhode Island","RI",3291 +1993-03-01,"Residential Consumption","Oregon","OR",3843 +1993-03-01,"Residential Consumption","Connecticut","CT",6255 +1993-03-01,"Residential Consumption","District of Columbia","DC",2867 +1993-03-01,"Residential Consumption","Washington","WA",6669 +1993-03-01,"Residential Consumption","Oklahoma","OK",12131 +1993-03-01,"Residential Consumption","U.S.","U.S.",703183 +1993-03-01,"Residential Consumption","Minnesota","MN",16369 +1993-03-01,"Residential Consumption","Pennsylvania","PA",42350 +1993-03-01,"Residential Consumption","North Dakota","ND",1462 +1993-03-01,"Residential Consumption","Idaho","ID",1705 +1993-03-01,"Residential Consumption","Montana","MT",2611 +1993-03-01,"Residential Consumption","Colorado","CO",15025 +1993-03-01,"Residential Consumption","Delaware","DE",1487 +1993-03-01,"Residential Consumption","West Virginia","WV",5767 +1993-03-01,"Residential Consumption","Texas","TX",27431 +1993-03-01,"Residential Consumption","Mississippi","MS",4396 +1993-03-01,"Residential Consumption","Tennessee","TN",10041 +1993-03-01,"Residential Consumption","Georgia","GA",15664 +1993-03-01,"Residential Consumption","Arizona","AZ",4078 +1993-03-01,"Residential Consumption","Illinois","IL",67993 +1993-03-01,"Residential Consumption","Iowa","IA",11587 +1993-03-01,"Residential Consumption","Virginia","VA",10506 +1993-03-01,"Residential Consumption","Maine","ME",114 +1993-03-01,"Residential Consumption","Indiana","IN",24049 +1993-03-01,"Residential Consumption","Massachusetts","MA",18273 +1993-03-01,"Residential Consumption","New Hampshire","NH",1009 +1993-03-01,"Residential Consumption","Kansas","KS",13022 +1993-03-01,"Residential Consumption","Wyoming","WY",1653 +1993-03-01,"Residential Consumption","South Carolina","SC",4274 +1993-03-01,"Residential Consumption","North Carolina","NC",8024 +1993-03-01,"Residential Consumption","Hawaii","HI",52 +1993-03-01,"Residential Consumption","Michigan","MI",54627 +1993-03-01,"Residential Consumption","New Mexico","NM",3478 +1993-03-01,"Residential Consumption","Florida","FL",1923 +1993-03-01,"Residential Consumption","Arkansas","AR",6736 +1993-03-01,"Residential Consumption","Missouri","MO",21306 +1993-03-01,"Residential Consumption","Alabama","AL",8716 +1993-03-01,"Residential Consumption","Alaska","AK",1471 +1993-03-01,"Residential Consumption","Wisconsin","WI",18166 +1993-03-01,"Residential Consumption","New Jersey","NJ",30688 +1993-03-01,"Residential Consumption","California","CA",50594 +1993-03-01,"Residential Consumption","Ohio","OH",52719 +1993-03-01,"Residential Consumption","Louisiana","LA",7933 +1993-03-01,"Residential Consumption","Utah","UT",6589 +1993-03-01,"Residential Consumption","Maryland","MD",12365 +1993-03-01,"Residential Consumption","New York","NY",60184 +1993-03-01,"Residential Consumption","Vermont","VT",433 +1993-03-01,"Residential Consumption","Nebraska","NE",7668 +1993-03-01,"Residential Consumption","South Dakota","SD",1678 +1993-03-01,"Residential Consumption","Nevada","NV",2715 +1993-03-01,"Residential Consumption","Kentucky","KY",9198 +1993-04-01,"Commercial Consumption","South Carolina","SC",1507 +1993-04-01,"Commercial Consumption","Colorado","CO",6499 +1993-04-01,"Commercial Consumption","New Hampshire","NH",611 +1993-04-01,"Commercial Consumption","Maryland","MD",3772 +1993-04-01,"Commercial Consumption","California","CA",18276 +1993-04-01,"Commercial Consumption","Alabama","AL",2569 +1993-04-01,"Commercial Consumption","Michigan","MI",18238 +1993-04-01,"Commercial Consumption","Missouri","MO",6750 +1993-04-01,"Commercial Consumption","Wisconsin","WI",7011 +1993-04-01,"Commercial Consumption","Montana","MT",1137 +1993-04-01,"Commercial Consumption","Alaska","AK",1863 +1993-04-01,"Commercial Consumption","Arizona","AZ",2408 +1993-04-01,"Commercial Consumption","Tennessee","TN",4605 +1993-04-01,"Commercial Consumption","Wyoming","WY",882 +1993-04-01,"Commercial Consumption","New Mexico","NM",2002 +1993-04-01,"Commercial Consumption","Vermont","VT",199 +1993-04-01,"Commercial Consumption","Iowa","IA",4316 +1993-04-01,"Commercial Consumption","Hawaii","HI",177 +1993-04-01,"Commercial Consumption","Mississippi","MS",1756 +1993-04-01,"Commercial Consumption","Indiana","IN",6557 +1993-04-01,"Commercial Consumption","New Jersey","NJ",13012 +1993-04-01,"Commercial Consumption","Texas","TX",14455 +1993-04-01,"Commercial Consumption","Georgia","GA",4837 +1993-04-01,"Commercial Consumption","New York","NY",20266 +1993-04-01,"Commercial Consumption","Nebraska","NE",3119 +1993-04-01,"Commercial Consumption","West Virginia","WV",2169 +1993-04-01,"Commercial Consumption","Virginia","VA",4850 +1993-04-01,"Commercial Consumption","Massachusetts","MA",6491 +1993-04-01,"Commercial Consumption","Nevada","NV",1314 +1993-04-01,"Commercial Consumption","Louisiana","LA",2376 +1993-04-01,"Commercial Consumption","Oklahoma","OK",3743 +1993-04-01,"Commercial Consumption","Kentucky","KY",2934 +1993-04-01,"Commercial Consumption","Florida","FL",3871 +1993-04-01,"Commercial Consumption","Illinois","IL",17598 +1993-04-01,"Commercial Consumption","Washington","WA",3785 +1993-04-01,"Commercial Consumption","North Carolina","NC",3602 +1993-04-01,"Commercial Consumption","Utah","UT",1839 +1993-04-01,"Commercial Consumption","Oregon","OR",1927 +1993-04-01,"Commercial Consumption","U.S.","U.S.",254393 +1993-04-01,"Commercial Consumption","Ohio","OH",15019 +1993-04-01,"Commercial Consumption","Idaho","ID",828 +1993-04-01,"Commercial Consumption","Delaware","DE",574 +1993-04-01,"Commercial Consumption","District of Columbia","DC",1550 +1993-04-01,"Commercial Consumption","North Dakota","ND",925 +1993-04-01,"Commercial Consumption","Minnesota","MN",7267 +1993-04-01,"Commercial Consumption","Pennsylvania","PA",11914 +1993-04-01,"Commercial Consumption","South Dakota","SD",995 +1993-04-01,"Commercial Consumption","Maine","ME",192 +1993-04-01,"Commercial Consumption","Kansas","KS",4938 +1993-04-01,"Commercial Consumption","Rhode Island","RI",907 +1993-04-01,"Commercial Consumption","Connecticut","CT",3038 +1993-04-01,"Commercial Consumption","Arkansas","AR",2923 +1993-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95107 +1993-04-01,"Residential Consumption","Ohio","OH",32260 +1993-04-01,"Residential Consumption","Connecticut","CT",4043 +1993-04-01,"Residential Consumption","Vermont","VT",271 +1993-04-01,"Residential Consumption","Virginia","VA",5868 +1993-04-01,"Residential Consumption","North Dakota","ND",1082 +1993-04-01,"Residential Consumption","Idaho","ID",1044 +1993-04-01,"Residential Consumption","Kansas","KS",9143 +1993-04-01,"Residential Consumption","West Virginia","WV",3560 +1993-04-01,"Residential Consumption","North Carolina","NC",5030 +1993-04-01,"Residential Consumption","Montana","MT",1686 +1993-04-01,"Residential Consumption","Alaska","AK",1288 +1993-04-01,"Residential Consumption","U.S.","U.S.",449738 +1993-04-01,"Residential Consumption","Mississippi","MS",2961 +1993-04-01,"Residential Consumption","Louisiana","LA",5575 +1993-04-01,"Residential Consumption","Wisconsin","WI",12585 +1993-04-01,"Residential Consumption","Nebraska","NE",5098 +1993-04-01,"Residential Consumption","Arkansas","AR",4971 +1993-04-01,"Residential Consumption","Washington","WA",4665 +1993-04-01,"Residential Consumption","Iowa","IA",7597 +1993-04-01,"Residential Consumption","Hawaii","HI",48 +1993-04-01,"Residential Consumption","Utah","UT",4375 +1993-04-01,"Residential Consumption","Indiana","IN",14401 +1993-04-01,"Residential Consumption","Oklahoma","OK",8019 +1993-04-01,"Residential Consumption","Wyoming","WY",1164 +1993-04-01,"Residential Consumption","Minnesota","MN",10780 +1993-04-01,"Residential Consumption","District of Columbia","DC",1641 +1993-04-01,"Residential Consumption","Pennsylvania","PA",24988 +1993-04-01,"Residential Consumption","New Mexico","NM",1890 +1993-04-01,"Residential Consumption","Maine","ME",71 +1993-04-01,"Residential Consumption","Colorado","CO",9897 +1993-04-01,"Residential Consumption","Missouri","MO",13404 +1993-04-01,"Residential Consumption","Texas","TX",17469 +1993-04-01,"Residential Consumption","Georgia","GA",9279 +1993-04-01,"Residential Consumption","Massachusetts","MA",13178 +1993-04-01,"Residential Consumption","New Hampshire","NH",721 +1993-04-01,"Residential Consumption","Kentucky","KY",4989 +1993-04-01,"Residential Consumption","Arizona","AZ",2178 +1993-04-01,"Residential Consumption","Alabama","AL",5668 +1993-04-01,"Residential Consumption","Illinois","IL",42426 +1993-04-01,"Residential Consumption","Oregon","OR",2533 +1993-04-01,"Residential Consumption","Michigan","MI",35109 +1993-04-01,"Residential Consumption","Maryland","MD",6676 +1993-04-01,"Residential Consumption","Florida","FL",1480 +1993-04-01,"Residential Consumption","New Jersey","NJ",19409 +1993-04-01,"Residential Consumption","California","CA",36252 +1993-04-01,"Residential Consumption","South Carolina","SC",2559 +1993-04-01,"Residential Consumption","Rhode Island","RI",2200 +1993-04-01,"Residential Consumption","Tennessee","TN",5755 +1993-04-01,"Residential Consumption","South Dakota","SD",1153 +1993-04-01,"Residential Consumption","Nevada","NV",1503 +1993-04-01,"Residential Consumption","Delaware","DE",1019 +1993-04-01,"Residential Consumption","New York","NY",38778 +1993-05-01,"Commercial Consumption","North Dakota","ND",477 +1993-05-01,"Commercial Consumption","Maryland","MD",2110 +1993-05-01,"Commercial Consumption","Connecticut","CT",1583 +1993-05-01,"Commercial Consumption","California","CA",18032 +1993-05-01,"Commercial Consumption","Indiana","IN",2866 +1993-05-01,"Commercial Consumption","Oklahoma","OK",2057 +1993-05-01,"Commercial Consumption","Virginia","VA",2842 +1993-05-01,"Commercial Consumption","South Dakota","SD",531 +1993-05-01,"Commercial Consumption","Nebraska","NE",1629 +1993-05-01,"Commercial Consumption","Tennessee","TN",2613 +1993-05-01,"Commercial Consumption","Michigan","MI",9009 +1993-05-01,"Commercial Consumption","Illinois","IL",7744 +1993-05-01,"Commercial Consumption","West Virginia","WV",1218 +1993-05-01,"Commercial Consumption","New Hampshire","NH",294 +1993-05-01,"Commercial Consumption","Ohio","OH",6359 +1993-05-01,"Commercial Consumption","Hawaii","HI",168 +1993-05-01,"Commercial Consumption","New York","NY",11667 +1993-05-01,"Commercial Consumption","Minnesota","MN",3588 +1993-05-01,"Commercial Consumption","Massachusetts","MA",4195 +1993-05-01,"Commercial Consumption","Kentucky","KY",1330 +1993-05-01,"Commercial Consumption","Texas","TX",12175 +1993-05-01,"Commercial Consumption","Vermont","VT",124 +1993-05-01,"Commercial Consumption","North Carolina","NC",1988 +1993-05-01,"Commercial Consumption","Utah","UT",1248 +1993-05-01,"Commercial Consumption","Oregon","OR",1448 +1993-05-01,"Commercial Consumption","Pennsylvania","PA",5793 +1993-05-01,"Commercial Consumption","New Jersey","NJ",7025 +1993-05-01,"Commercial Consumption","Montana","MT",682 +1993-05-01,"Commercial Consumption","Rhode Island","RI",429 +1993-05-01,"Commercial Consumption","Idaho","ID",566 +1993-05-01,"Commercial Consumption","Arkansas","AR",1540 +1993-05-01,"Commercial Consumption","Delaware","DE",284 +1993-05-01,"Commercial Consumption","Arizona","AZ",1851 +1993-05-01,"Commercial Consumption","Washington","WA",2774 +1993-05-01,"Commercial Consumption","South Carolina","SC",1007 +1993-05-01,"Commercial Consumption","Colorado","CO",4292 +1993-05-01,"Commercial Consumption","New Mexico","NM",1467 +1993-05-01,"Commercial Consumption","Missouri","MO",3580 +1993-05-01,"Commercial Consumption","Wisconsin","WI",3438 +1993-05-01,"Commercial Consumption","Florida","FL",3362 +1993-05-01,"Commercial Consumption","Mississippi","MS",1108 +1993-05-01,"Commercial Consumption","District of Columbia","DC",1150 +1993-05-01,"Commercial Consumption","Wyoming","WY",639 +1993-05-01,"Commercial Consumption","Maine","ME",107 +1993-05-01,"Commercial Consumption","U.S.","U.S.",152402 +1993-05-01,"Commercial Consumption","Georgia","GA",3069 +1993-05-01,"Commercial Consumption","Iowa","IA",2029 +1993-05-01,"Commercial Consumption","Alabama","AL",1551 +1993-05-01,"Commercial Consumption","Kansas","KS",2840 +1993-05-01,"Commercial Consumption","Alaska","AK",1441 +1993-05-01,"Commercial Consumption","Nevada","NV",1341 +1993-05-01,"Commercial Consumption","Louisiana","LA",1742 +1993-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96856 +1993-05-01,"Residential Consumption","North Carolina","NC",1977 +1993-05-01,"Residential Consumption","Hawaii","HI",44 +1993-05-01,"Residential Consumption","Vermont","VT",138 +1993-05-01,"Residential Consumption","Utah","UT",3055 +1993-05-01,"Residential Consumption","New Hampshire","NH",349 +1993-05-01,"Residential Consumption","Delaware","DE",448 +1993-05-01,"Residential Consumption","West Virginia","WV",1608 +1993-05-01,"Residential Consumption","Virginia","VA",2438 +1993-05-01,"Residential Consumption","District of Columbia","DC",825 +1993-05-01,"Residential Consumption","Kentucky","KY",1908 +1993-05-01,"Residential Consumption","Kansas","KS",4717 +1993-05-01,"Residential Consumption","Alaska","AK",891 +1993-05-01,"Residential Consumption","Louisiana","LA",2944 +1993-05-01,"Residential Consumption","Maryland","MD",3460 +1993-05-01,"Residential Consumption","Georgia","GA",4443 +1993-05-01,"Residential Consumption","Indiana","IN",6431 +1993-05-01,"Residential Consumption","Oregon","OR",1769 +1993-05-01,"Residential Consumption","Wisconsin","WI",5585 +1993-05-01,"Residential Consumption","Maine","ME",38 +1993-05-01,"Residential Consumption","Massachusetts","MA",7263 +1993-05-01,"Residential Consumption","Colorado","CO",6505 +1993-05-01,"Residential Consumption","Washington","WA",3123 +1993-05-01,"Residential Consumption","Arizona","AZ",1297 +1993-05-01,"Residential Consumption","U.S.","U.S.",232154 +1993-05-01,"Residential Consumption","New York","NY",20123 +1993-05-01,"Residential Consumption","Illinois","IL",18258 +1993-05-01,"Residential Consumption","Texas","TX",10765 +1993-05-01,"Residential Consumption","Rhode Island","RI",1117 +1993-05-01,"Residential Consumption","Ohio","OH",13835 +1993-05-01,"Residential Consumption","Nevada","NV",1087 +1993-05-01,"Residential Consumption","North Dakota","ND",568 +1993-05-01,"Residential Consumption","New Jersey","NJ",8489 +1993-05-01,"Residential Consumption","South Carolina","SC",956 +1993-05-01,"Residential Consumption","Iowa","IA",3450 +1993-05-01,"Residential Consumption","Nebraska","NE",2360 +1993-05-01,"Residential Consumption","Michigan","MI",18269 +1993-05-01,"Residential Consumption","Minnesota","MN",5399 +1993-05-01,"Residential Consumption","Pennsylvania","PA",11007 +1993-05-01,"Residential Consumption","Arkansas","AR",2257 +1993-05-01,"Residential Consumption","Alabama","AL",2848 +1993-05-01,"Residential Consumption","Mississippi","MS",1465 +1993-05-01,"Residential Consumption","Idaho","ID",692 +1993-05-01,"Residential Consumption","Montana","MT",1005 +1993-05-01,"Residential Consumption","Oklahoma","OK",3907 +1993-05-01,"Residential Consumption","Wyoming","WY",809 +1993-05-01,"Residential Consumption","Connecticut","CT",1947 +1993-05-01,"Residential Consumption","Tennessee","TN",2317 +1993-05-01,"Residential Consumption","South Dakota","SD",606 +1993-05-01,"Residential Consumption","New Mexico","NM",979 +1993-05-01,"Residential Consumption","Florida","FL",963 +1993-05-01,"Residential Consumption","Missouri","MO",6009 +1993-05-01,"Residential Consumption","California","CA",29411 +1993-06-01,"Commercial Consumption","Wyoming","WY",400 +1993-06-01,"Commercial Consumption","Idaho","ID",387 +1993-06-01,"Commercial Consumption","California","CA",15638 +1993-06-01,"Commercial Consumption","Washington","WA",1905 +1993-06-01,"Commercial Consumption","Minnesota","MN",2549 +1993-06-01,"Commercial Consumption","New Mexico","NM",1169 +1993-06-01,"Commercial Consumption","Pennsylvania","PA",4510 +1993-06-01,"Commercial Consumption","Massachusetts","MA",3184 +1993-06-01,"Commercial Consumption","Louisiana","LA",1454 +1993-06-01,"Commercial Consumption","North Dakota","ND",347 +1993-06-01,"Commercial Consumption","Utah","UT",707 +1993-06-01,"Commercial Consumption","Kentucky","KY",1449 +1993-06-01,"Commercial Consumption","Iowa","IA",1481 +1993-06-01,"Commercial Consumption","Indiana","IN",2100 +1993-06-01,"Commercial Consumption","District of Columbia","DC",731 +1993-06-01,"Commercial Consumption","West Virginia","WV",992 +1993-06-01,"Commercial Consumption","South Carolina","SC",877 +1993-06-01,"Commercial Consumption","North Carolina","NC",1532 +1993-06-01,"Commercial Consumption","Alaska","AK",1055 +1993-06-01,"Commercial Consumption","Mississippi","MS",925 +1993-06-01,"Commercial Consumption","Oregon","OR",1010 +1993-06-01,"Commercial Consumption","Virginia","VA",2177 +1993-06-01,"Commercial Consumption","New Hampshire","NH",204 +1993-06-01,"Commercial Consumption","Georgia","GA",2544 +1993-06-01,"Commercial Consumption","Ohio","OH",5221 +1993-06-01,"Commercial Consumption","Connecticut","CT",1161 +1993-06-01,"Commercial Consumption","Nevada","NV",1052 +1993-06-01,"Commercial Consumption","Oklahoma","OK",1439 +1993-06-01,"Commercial Consumption","Nebraska","NE",1388 +1993-06-01,"Commercial Consumption","Delaware","DE",140 +1993-06-01,"Commercial Consumption","Michigan","MI",5968 +1993-06-01,"Commercial Consumption","Montana","MT",434 +1993-06-01,"Commercial Consumption","Maine","ME",80 +1993-06-01,"Commercial Consumption","Kansas","KS",2559 +1993-06-01,"Commercial Consumption","Florida","FL",3085 +1993-06-01,"Commercial Consumption","Vermont","VT",80 +1993-06-01,"Commercial Consumption","Rhode Island","RI",330 +1993-06-01,"Commercial Consumption","Hawaii","HI",183 +1993-06-01,"Commercial Consumption","Arkansas","AR",1078 +1993-06-01,"Commercial Consumption","Arizona","AZ",2035 +1993-06-01,"Commercial Consumption","Tennessee","TN",1992 +1993-06-01,"Commercial Consumption","Illinois","IL",5101 +1993-06-01,"Commercial Consumption","Colorado","CO",3119 +1993-06-01,"Commercial Consumption","Missouri","MO",2266 +1993-06-01,"Commercial Consumption","Wisconsin","WI",2418 +1993-06-01,"Commercial Consumption","South Dakota","SD",342 +1993-06-01,"Commercial Consumption","New Jersey","NJ",5134 +1993-06-01,"Commercial Consumption","U.S.","U.S.",123135 +1993-06-01,"Commercial Consumption","Texas","TX",12943 +1993-06-01,"Commercial Consumption","Maryland","MD",1861 +1993-06-01,"Commercial Consumption","Alabama","AL",1179 +1993-06-01,"Commercial Consumption","New York","NY",11221 +1993-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92938 +1993-06-01,"Residential Consumption","Oregon","OR",945 +1993-06-01,"Residential Consumption","Louisiana","LA",2216 +1993-06-01,"Residential Consumption","California","CA",25116 +1993-06-01,"Residential Consumption","Alaska","AK",577 +1993-06-01,"Residential Consumption","New York","NY",13685 +1993-06-01,"Residential Consumption","North Carolina","NC",1039 +1993-06-01,"Residential Consumption","Connecticut","CT",1274 +1993-06-01,"Residential Consumption","Minnesota","MN",3576 +1993-06-01,"Residential Consumption","Colorado","CO",3996 +1993-06-01,"Residential Consumption","Kansas","KS",2454 +1993-06-01,"Residential Consumption","Arizona","AZ",1097 +1993-06-01,"Residential Consumption","West Virginia","WV",962 +1993-06-01,"Residential Consumption","Iowa","IA",2382 +1993-06-01,"Residential Consumption","Maryland","MD",2471 +1993-06-01,"Residential Consumption","District of Columbia","DC",546 +1993-06-01,"Residential Consumption","Florida","FL",772 +1993-06-01,"Residential Consumption","North Dakota","ND",350 +1993-06-01,"Residential Consumption","Washington","WA",2619 +1993-06-01,"Residential Consumption","Alabama","AL",1641 +1993-06-01,"Residential Consumption","South Carolina","SC",501 +1993-06-01,"Residential Consumption","Rhode Island","RI",671 +1993-06-01,"Residential Consumption","Ohio","OH",11884 +1993-06-01,"Residential Consumption","Hawaii","HI",47 +1993-06-01,"Residential Consumption","Vermont","VT",84 +1993-06-01,"Residential Consumption","Virginia","VA",1632 +1993-06-01,"Residential Consumption","Utah","UT",1845 +1993-06-01,"Residential Consumption","Nebraska","NE",1495 +1993-06-01,"Residential Consumption","New Mexico","NM",442 +1993-06-01,"Residential Consumption","Missouri","MO",3676 +1993-06-01,"Residential Consumption","Mississippi","MS",947 +1993-06-01,"Residential Consumption","Tennessee","TN",1365 +1993-06-01,"Residential Consumption","South Dakota","SD",370 +1993-06-01,"Residential Consumption","Kentucky","KY",1710 +1993-06-01,"Residential Consumption","Illinois","IL",12716 +1993-06-01,"Residential Consumption","Texas","TX",8508 +1993-06-01,"Residential Consumption","Wisconsin","WI",3750 +1993-06-01,"Residential Consumption","Indiana","IN",4369 +1993-06-01,"Residential Consumption","Massachusetts","MA",4464 +1993-06-01,"Residential Consumption","Idaho","ID",334 +1993-06-01,"Residential Consumption","Oklahoma","OK",2331 +1993-06-01,"Residential Consumption","Wyoming","WY",506 +1993-06-01,"Residential Consumption","Michigan","MI",11464 +1993-06-01,"Residential Consumption","Georgia","GA",3106 +1993-06-01,"Residential Consumption","Maine","ME",30 +1993-06-01,"Residential Consumption","Arkansas","AR",1310 +1993-06-01,"Residential Consumption","New Jersey","NJ",5799 +1993-06-01,"Residential Consumption","New Hampshire","NH",211 +1993-06-01,"Residential Consumption","U.S.","U.S.",163642 +1993-06-01,"Residential Consumption","Nevada","NV",910 +1993-06-01,"Residential Consumption","Pennsylvania","PA",8560 +1993-06-01,"Residential Consumption","Montana","MT",644 +1993-06-01,"Residential Consumption","Delaware","DE",243 +1993-07-01,"Commercial Consumption","Wyoming","WY",362 +1993-07-01,"Commercial Consumption","North Dakota","ND",317 +1993-07-01,"Commercial Consumption","Minnesota","MN",2190 +1993-07-01,"Commercial Consumption","Wisconsin","WI",1843 +1993-07-01,"Commercial Consumption","Maryland","MD",1507 +1993-07-01,"Commercial Consumption","Washington","WA",1801 +1993-07-01,"Commercial Consumption","Maine","ME",71 +1993-07-01,"Commercial Consumption","Texas","TX",13705 +1993-07-01,"Commercial Consumption","Florida","FL",2919 +1993-07-01,"Commercial Consumption","Nebraska","NE",1324 +1993-07-01,"Commercial Consumption","Illinois","IL",5879 +1993-07-01,"Commercial Consumption","West Virginia","WV",818 +1993-07-01,"Commercial Consumption","Oklahoma","OK",1324 +1993-07-01,"Commercial Consumption","Kentucky","KY",1029 +1993-07-01,"Commercial Consumption","U.S.","U.S.",119050 +1993-07-01,"Commercial Consumption","Georgia","GA",2570 +1993-07-01,"Commercial Consumption","Rhode Island","RI",273 +1993-07-01,"Commercial Consumption","Idaho","ID",383 +1993-07-01,"Commercial Consumption","Alabama","AL",1084 +1993-07-01,"Commercial Consumption","Mississippi","MS",904 +1993-07-01,"Commercial Consumption","Delaware","DE",165 +1993-07-01,"Commercial Consumption","Nevada","NV",919 +1993-07-01,"Commercial Consumption","Iowa","IA",1214 +1993-07-01,"Commercial Consumption","Alaska","AK",917 +1993-07-01,"Commercial Consumption","Indiana","IN",1819 +1993-07-01,"Commercial Consumption","Massachusetts","MA",2692 +1993-07-01,"Commercial Consumption","South Dakota","SD",315 +1993-07-01,"Commercial Consumption","New Jersey","NJ",5844 +1993-07-01,"Commercial Consumption","Arkansas","AR",1013 +1993-07-01,"Commercial Consumption","District of Columbia","DC",664 +1993-07-01,"Commercial Consumption","South Carolina","SC",832 +1993-07-01,"Commercial Consumption","Oregon","OR",915 +1993-07-01,"Commercial Consumption","Virginia","VA",1987 +1993-07-01,"Commercial Consumption","Kansas","KS",3348 +1993-07-01,"Commercial Consumption","Connecticut","CT",1122 +1993-07-01,"Commercial Consumption","New York","NY",10477 +1993-07-01,"Commercial Consumption","Tennessee","TN",1884 +1993-07-01,"Commercial Consumption","Colorado","CO",2445 +1993-07-01,"Commercial Consumption","Utah","UT",597 +1993-07-01,"Commercial Consumption","New Mexico","NM",1440 +1993-07-01,"Commercial Consumption","Missouri","MO",2066 +1993-07-01,"Commercial Consumption","New Hampshire","NH",177 +1993-07-01,"Commercial Consumption","Vermont","VT",62 +1993-07-01,"Commercial Consumption","Arizona","AZ",1654 +1993-07-01,"Commercial Consumption","Louisiana","LA",1267 +1993-07-01,"Commercial Consumption","North Carolina","NC",1437 +1993-07-01,"Commercial Consumption","Pennsylvania","PA",3547 +1993-07-01,"Commercial Consumption","Montana","MT",437 +1993-07-01,"Commercial Consumption","Ohio","OH",3939 +1993-07-01,"Commercial Consumption","Hawaii","HI",174 +1993-07-01,"Commercial Consumption","California","CA",18341 +1993-07-01,"Commercial Consumption","Michigan","MI",5035 +1993-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95468 +1993-07-01,"Residential Consumption","Ohio","OH",7273 +1993-07-01,"Residential Consumption","Wisconsin","WI",2503 +1993-07-01,"Residential Consumption","Utah","UT",1533 +1993-07-01,"Residential Consumption","Florida","FL",679 +1993-07-01,"Residential Consumption","Massachusetts","MA",3499 +1993-07-01,"Residential Consumption","Arkansas","AR",1109 +1993-07-01,"Residential Consumption","Colorado","CO",2851 +1993-07-01,"Residential Consumption","Missouri","MO",2871 +1993-07-01,"Residential Consumption","Tennessee","TN",1109 +1993-07-01,"Residential Consumption","Maryland","MD",1967 +1993-07-01,"Residential Consumption","District of Columbia","DC",437 +1993-07-01,"Residential Consumption","North Dakota","ND",268 +1993-07-01,"Residential Consumption","Idaho","ID",302 +1993-07-01,"Residential Consumption","New Hampshire","NH",149 +1993-07-01,"Residential Consumption","Mississippi","MS",830 +1993-07-01,"Residential Consumption","Louisiana","LA",2110 +1993-07-01,"Residential Consumption","Georgia","GA",3028 +1993-07-01,"Residential Consumption","New Mexico","NM",964 +1993-07-01,"Residential Consumption","Maine","ME",22 +1993-07-01,"Residential Consumption","Oklahoma","OK",1832 +1993-07-01,"Residential Consumption","Arizona","AZ",832 +1993-07-01,"Residential Consumption","Alabama","AL",1430 +1993-07-01,"Residential Consumption","Iowa","IA",1563 +1993-07-01,"Residential Consumption","New Jersey","NJ",4956 +1993-07-01,"Residential Consumption","Kentucky","KY",1289 +1993-07-01,"Residential Consumption","Kansas","KS",1870 +1993-07-01,"Residential Consumption","California","CA",23646 +1993-07-01,"Residential Consumption","Alaska","AK",423 +1993-07-01,"Residential Consumption","Illinois","IL",10373 +1993-07-01,"Residential Consumption","South Carolina","SC",407 +1993-07-01,"Residential Consumption","Rhode Island","RI",558 +1993-07-01,"Residential Consumption","North Carolina","NC",829 +1993-07-01,"Residential Consumption","Vermont","VT",50 +1993-07-01,"Residential Consumption","South Dakota","SD",281 +1993-07-01,"Residential Consumption","Minnesota","MN",2574 +1993-07-01,"Residential Consumption","Pennsylvania","PA",5614 +1993-07-01,"Residential Consumption","Indiana","IN",3157 +1993-07-01,"Residential Consumption","Washington","WA",1424 +1993-07-01,"Residential Consumption","Wyoming","WY",366 +1993-07-01,"Residential Consumption","U.S.","U.S.",129719 +1993-07-01,"Residential Consumption","Texas","TX",7809 +1993-07-01,"Residential Consumption","Virginia","VA",1442 +1993-07-01,"Residential Consumption","Nebraska","NE",1119 +1993-07-01,"Residential Consumption","Michigan","MI",8589 +1993-07-01,"Residential Consumption","Delaware","DE",185 +1993-07-01,"Residential Consumption","Hawaii","HI",46 +1993-07-01,"Residential Consumption","Montana","MT",608 +1993-07-01,"Residential Consumption","Oregon","OR",768 +1993-07-01,"Residential Consumption","Connecticut","CT",1040 +1993-07-01,"Residential Consumption","Nevada","NV",600 +1993-07-01,"Residential Consumption","West Virginia","WV",533 +1993-07-01,"Residential Consumption","New York","NY",10003 +1993-08-01,"Commercial Consumption","Minnesota","MN",2207 +1993-08-01,"Commercial Consumption","New Hampshire","NH",171 +1993-08-01,"Commercial Consumption","Montana","MT",416 +1993-08-01,"Commercial Consumption","Louisiana","LA",1277 +1993-08-01,"Commercial Consumption","North Carolina","NC",1539 +1993-08-01,"Commercial Consumption","Utah","UT",594 +1993-08-01,"Commercial Consumption","Missouri","MO",1959 +1993-08-01,"Commercial Consumption","Wisconsin","WI",1719 +1993-08-01,"Commercial Consumption","Georgia","GA",2481 +1993-08-01,"Commercial Consumption","Arizona","AZ",1601 +1993-08-01,"Commercial Consumption","District of Columbia","DC",703 +1993-08-01,"Commercial Consumption","West Virginia","WV",914 +1993-08-01,"Commercial Consumption","Oregon","OR",840 +1993-08-01,"Commercial Consumption","South Dakota","SD",291 +1993-08-01,"Commercial Consumption","Kentucky","KY",1060 +1993-08-01,"Commercial Consumption","Florida","FL",2830 +1993-08-01,"Commercial Consumption","Delaware","DE",155 +1993-08-01,"Commercial Consumption","North Dakota","ND",294 +1993-08-01,"Commercial Consumption","Oklahoma","OK",1432 +1993-08-01,"Commercial Consumption","Nevada","NV",939 +1993-08-01,"Commercial Consumption","Illinois","IL",5644 +1993-08-01,"Commercial Consumption","New Mexico","NM",1390 +1993-08-01,"Commercial Consumption","Pennsylvania","PA",3718 +1993-08-01,"Commercial Consumption","U.S.","U.S.",111340 +1993-08-01,"Commercial Consumption","Idaho","ID",360 +1993-08-01,"Commercial Consumption","Iowa","IA",1214 +1993-08-01,"Commercial Consumption","Hawaii","HI",170 +1993-08-01,"Commercial Consumption","Connecticut","CT",1070 +1993-08-01,"Commercial Consumption","Michigan","MI",4140 +1993-08-01,"Commercial Consumption","Wyoming","WY",389 +1993-08-01,"Commercial Consumption","Colorado","CO",2357 +1993-08-01,"Commercial Consumption","Virginia","VA",2033 +1993-08-01,"Commercial Consumption","New Jersey","NJ",3819 +1993-08-01,"Commercial Consumption","Maine","ME",67 +1993-08-01,"Commercial Consumption","Texas","TX",12709 +1993-08-01,"Commercial Consumption","Kansas","KS",3324 +1993-08-01,"Commercial Consumption","Ohio","OH",3860 +1993-08-01,"Commercial Consumption","California","CA",14348 +1993-08-01,"Commercial Consumption","Washington","WA",1750 +1993-08-01,"Commercial Consumption","South Carolina","SC",840 +1993-08-01,"Commercial Consumption","Massachusetts","MA",2802 +1993-08-01,"Commercial Consumption","Alaska","AK",957 +1993-08-01,"Commercial Consumption","Arkansas","AR",1047 +1993-08-01,"Commercial Consumption","Alabama","AL",1070 +1993-08-01,"Commercial Consumption","Nebraska","NE",1828 +1993-08-01,"Commercial Consumption","Mississippi","MS",864 +1993-08-01,"Commercial Consumption","Maryland","MD",1567 +1993-08-01,"Commercial Consumption","Vermont","VT",67 +1993-08-01,"Commercial Consumption","Rhode Island","RI",364 +1993-08-01,"Commercial Consumption","New York","NY",10502 +1993-08-01,"Commercial Consumption","Tennessee","TN",1811 +1993-08-01,"Commercial Consumption","Indiana","IN",1838 +1993-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96583 +1993-08-01,"Residential Consumption","Mississippi","MS",788 +1993-08-01,"Residential Consumption","Nevada","NV",612 +1993-08-01,"Residential Consumption","New Mexico","NM",849 +1993-08-01,"Residential Consumption","Idaho","ID",251 +1993-08-01,"Residential Consumption","Washington","WA",1243 +1993-08-01,"Residential Consumption","Arizona","AZ",801 +1993-08-01,"Residential Consumption","Ohio","OH",6549 +1993-08-01,"Residential Consumption","North Carolina","NC",761 +1993-08-01,"Residential Consumption","Virginia","VA",1412 +1993-08-01,"Residential Consumption","Maryland","MD",1921 +1993-08-01,"Residential Consumption","South Dakota","SD",236 +1993-08-01,"Residential Consumption","Minnesota","MN",2397 +1993-08-01,"Residential Consumption","Florida","FL",618 +1993-08-01,"Residential Consumption","North Dakota","ND",210 +1993-08-01,"Residential Consumption","Oklahoma","OK",1612 +1993-08-01,"Residential Consumption","U.S.","U.S.",120331 +1993-08-01,"Residential Consumption","Hawaii","HI",41 +1993-08-01,"Residential Consumption","Vermont","VT",45 +1993-08-01,"Residential Consumption","Utah","UT",1353 +1993-08-01,"Residential Consumption","Maine","ME",22 +1993-08-01,"Residential Consumption","Montana","MT",530 +1993-08-01,"Residential Consumption","Delaware","DE",167 +1993-08-01,"Residential Consumption","Illinois","IL",9728 +1993-08-01,"Residential Consumption","Louisiana","LA",1836 +1993-08-01,"Residential Consumption","Indiana","IN",3096 +1993-08-01,"Residential Consumption","Kentucky","KY",1137 +1993-08-01,"Residential Consumption","Kansas","KS",1680 +1993-08-01,"Residential Consumption","California","CA",22749 +1993-08-01,"Residential Consumption","Oregon","OR",672 +1993-08-01,"Residential Consumption","Connecticut","CT",1059 +1993-08-01,"Residential Consumption","Georgia","GA",2939 +1993-08-01,"Residential Consumption","District of Columbia","DC",419 +1993-08-01,"Residential Consumption","New Hampshire","NH",124 +1993-08-01,"Residential Consumption","Alabama","AL",1328 +1993-08-01,"Residential Consumption","West Virginia","WV",620 +1993-08-01,"Residential Consumption","South Carolina","SC",377 +1993-08-01,"Residential Consumption","Michigan","MI",7199 +1993-08-01,"Residential Consumption","Pennsylvania","PA",5688 +1993-08-01,"Residential Consumption","Colorado","CO",2391 +1993-08-01,"Residential Consumption","Rhode Island","RI",472 +1993-08-01,"Residential Consumption","Wisconsin","WI",2586 +1993-08-01,"Residential Consumption","Nebraska","NE",999 +1993-08-01,"Residential Consumption","Massachusetts","MA",3084 +1993-08-01,"Residential Consumption","Arkansas","AR",1017 +1993-08-01,"Residential Consumption","Wyoming","WY",292 +1993-08-01,"Residential Consumption","Texas","TX",7451 +1993-08-01,"Residential Consumption","Iowa","IA",1516 +1993-08-01,"Residential Consumption","Tennessee","TN",1011 +1993-08-01,"Residential Consumption","New Jersey","NJ",4483 +1993-08-01,"Residential Consumption","Missouri","MO",2487 +1993-08-01,"Residential Consumption","Alaska","AK",402 +1993-08-01,"Residential Consumption","New York","NY",9069 +1993-09-01,"Commercial Consumption","North Dakota","ND",381 +1993-09-01,"Commercial Consumption","Virginia","VA",2106 +1993-09-01,"Commercial Consumption","Georgia","GA",2440 +1993-09-01,"Commercial Consumption","Mississippi","MS",843 +1993-09-01,"Commercial Consumption","Louisiana","LA",1290 +1993-09-01,"Commercial Consumption","Minnesota","MN",2952 +1993-09-01,"Commercial Consumption","Wisconsin","WI",2326 +1993-09-01,"Commercial Consumption","Maine","ME",77 +1993-09-01,"Commercial Consumption","Kansas","KS",2395 +1993-09-01,"Commercial Consumption","Arkansas","AR",1126 +1993-09-01,"Commercial Consumption","Alabama","AL",1111 +1993-09-01,"Commercial Consumption","Nebraska","NE",1333 +1993-09-01,"Commercial Consumption","Arizona","AZ",1521 +1993-09-01,"Commercial Consumption","Washington","WA",1829 +1993-09-01,"Commercial Consumption","Colorado","CO",3012 +1993-09-01,"Commercial Consumption","Oregon","OR",934 +1993-09-01,"Commercial Consumption","Pennsylvania","PA",4327 +1993-09-01,"Commercial Consumption","Idaho","ID",381 +1993-09-01,"Commercial Consumption","Hawaii","HI",168 +1993-09-01,"Commercial Consumption","Connecticut","CT",1121 +1993-09-01,"Commercial Consumption","New York","NY",9972 +1993-09-01,"Commercial Consumption","Indiana","IN",2442 +1993-09-01,"Commercial Consumption","Illinois","IL",7362 +1993-09-01,"Commercial Consumption","North Carolina","NC",1674 +1993-09-01,"Commercial Consumption","New Mexico","NM",1712 +1993-09-01,"Commercial Consumption","Massachusetts","MA",2766 +1993-09-01,"Commercial Consumption","U.S.","U.S.",119631 +1993-09-01,"Commercial Consumption","Tennessee","TN",1992 +1993-09-01,"Commercial Consumption","West Virginia","WV",983 +1993-09-01,"Commercial Consumption","Utah","UT",606 +1993-09-01,"Commercial Consumption","Oklahoma","OK",1345 +1993-09-01,"Commercial Consumption","New Jersey","NJ",5149 +1993-09-01,"Commercial Consumption","Vermont","VT",83 +1993-09-01,"Commercial Consumption","Rhode Island","RI",243 +1993-09-01,"Commercial Consumption","Iowa","IA",1637 +1993-09-01,"Commercial Consumption","Nevada","NV",909 +1993-09-01,"Commercial Consumption","Michigan","MI",5767 +1993-09-01,"Commercial Consumption","District of Columbia","DC",684 +1993-09-01,"Commercial Consumption","Wyoming","WY",378 +1993-09-01,"Commercial Consumption","South Carolina","SC",846 +1993-09-01,"Commercial Consumption","Missouri","MO",2222 +1993-09-01,"Commercial Consumption","South Dakota","SD",392 +1993-09-01,"Commercial Consumption","Montana","MT",535 +1993-09-01,"Commercial Consumption","Kentucky","KY",1220 +1993-09-01,"Commercial Consumption","Ohio","OH",4492 +1993-09-01,"Commercial Consumption","New Hampshire","NH",186 +1993-09-01,"Commercial Consumption","Texas","TX",9660 +1993-09-01,"Commercial Consumption","Maryland","MD",1700 +1993-09-01,"Commercial Consumption","Florida","FL",2887 +1993-09-01,"Commercial Consumption","Alaska","AK",1112 +1993-09-01,"Commercial Consumption","California","CA",16845 +1993-09-01,"Commercial Consumption","Delaware","DE",155 +1993-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94613 +1993-09-01,"Residential Consumption","Mississippi","MS",815 +1993-09-01,"Residential Consumption","Utah","UT",1449 +1993-09-01,"Residential Consumption","New Mexico","NM",929 +1993-09-01,"Residential Consumption","North Dakota","ND",271 +1993-09-01,"Residential Consumption","New Jersey","NJ",5149 +1993-09-01,"Residential Consumption","Alabama","AL",1330 +1993-09-01,"Residential Consumption","West Virginia","WV",740 +1993-09-01,"Residential Consumption","Virginia","VA",1435 +1993-09-01,"Residential Consumption","Kansas","KS",1800 +1993-09-01,"Residential Consumption","Oklahoma","OK",1729 +1993-09-01,"Residential Consumption","Texas","TX",7270 +1993-09-01,"Residential Consumption","South Carolina","SC",391 +1993-09-01,"Residential Consumption","Rhode Island","RI",487 +1993-09-01,"Residential Consumption","Vermont","VT",51 +1993-09-01,"Residential Consumption","Tennessee","TN",1111 +1993-09-01,"Residential Consumption","Ohio","OH",7996 +1993-09-01,"Residential Consumption","South Dakota","SD",363 +1993-09-01,"Residential Consumption","Minnesota","MN",3548 +1993-09-01,"Residential Consumption","Maine","ME",27 +1993-09-01,"Residential Consumption","Indiana","IN",4022 +1993-09-01,"Residential Consumption","Florida","FL",669 +1993-09-01,"Residential Consumption","Arkansas","AR",1103 +1993-09-01,"Residential Consumption","Oregon","OR",698 +1993-09-01,"Residential Consumption","Montana","MT",741 +1993-09-01,"Residential Consumption","Washington","WA",1376 +1993-09-01,"Residential Consumption","Iowa","IA",2137 +1993-09-01,"Residential Consumption","Massachusetts","MA",3280 +1993-09-01,"Residential Consumption","California","CA",23934 +1993-09-01,"Residential Consumption","Arizona","AZ",854 +1993-09-01,"Residential Consumption","Wyoming","WY",380 +1993-09-01,"Residential Consumption","Louisiana","LA",1888 +1993-09-01,"Residential Consumption","Hawaii","HI",42 +1993-09-01,"Residential Consumption","Connecticut","CT",1128 +1993-09-01,"Residential Consumption","Michigan","MI",10020 +1993-09-01,"Residential Consumption","Nevada","NV",651 +1993-09-01,"Residential Consumption","Georgia","GA",2903 +1993-09-01,"Residential Consumption","Idaho","ID",310 +1993-09-01,"Residential Consumption","Kentucky","KY",1410 +1993-09-01,"Residential Consumption","Colorado","CO",3027 +1993-09-01,"Residential Consumption","Missouri","MO",3096 +1993-09-01,"Residential Consumption","Delaware","DE",185 +1993-09-01,"Residential Consumption","U.S.","U.S.",141580 +1993-09-01,"Residential Consumption","Illinois","IL",15193 +1993-09-01,"Residential Consumption","North Carolina","NC",815 +1993-09-01,"Residential Consumption","Wisconsin","WI",3900 +1993-09-01,"Residential Consumption","Nebraska","NE",1217 +1993-09-01,"Residential Consumption","Maryland","MD",2140 +1993-09-01,"Residential Consumption","District of Columbia","DC",427 +1993-09-01,"Residential Consumption","Pennsylvania","PA",6754 +1993-09-01,"Residential Consumption","New Hampshire","NH",155 +1993-09-01,"Residential Consumption","Alaska","AK",513 +1993-09-01,"Residential Consumption","New York","NY",9719 +1993-10-01,"Commercial Consumption","Wyoming","WY",667 +1993-10-01,"Commercial Consumption","Washington","WA",2236 +1993-10-01,"Commercial Consumption","New Mexico","NM",1703 +1993-10-01,"Commercial Consumption","Pennsylvania","PA",7438 +1993-10-01,"Commercial Consumption","South Dakota","SD",632 +1993-10-01,"Commercial Consumption","New Hampshire","NH",332 +1993-10-01,"Commercial Consumption","Maine","ME",166 +1993-10-01,"Commercial Consumption","Texas","TX",10816 +1993-10-01,"Commercial Consumption","Georgia","GA",3312 +1993-10-01,"Commercial Consumption","Arkansas","AR",1389 +1993-10-01,"Commercial Consumption","Nebraska","NE",2164 +1993-10-01,"Commercial Consumption","North Dakota","ND",629 +1993-10-01,"Commercial Consumption","Oklahoma","OK",1544 +1993-10-01,"Commercial Consumption","Virginia","VA",3073 +1993-10-01,"Commercial Consumption","Montana","MT",819 +1993-10-01,"Commercial Consumption","Rhode Island","RI",503 +1993-10-01,"Commercial Consumption","Tennessee","TN",2565 +1993-10-01,"Commercial Consumption","Nevada","NV",1047 +1993-10-01,"Commercial Consumption","Michigan","MI",10193 +1993-10-01,"Commercial Consumption","Minnesota","MN",5614 +1993-10-01,"Commercial Consumption","Colorado","CO",3108 +1993-10-01,"Commercial Consumption","Kentucky","KY",2417 +1993-10-01,"Commercial Consumption","Kansas","KS",2469 +1993-10-01,"Commercial Consumption","Vermont","VT",143 +1993-10-01,"Commercial Consumption","Connecticut","CT",1789 +1993-10-01,"Commercial Consumption","Louisiana","LA",1346 +1993-10-01,"Commercial Consumption","Massachusetts","MA",3878 +1993-10-01,"Commercial Consumption","Idaho","ID",507 +1993-10-01,"Commercial Consumption","New York","NY",13970 +1993-10-01,"Commercial Consumption","Mississippi","MS",985 +1993-10-01,"Commercial Consumption","Indiana","IN",4559 +1993-10-01,"Commercial Consumption","Illinois","IL",13064 +1993-10-01,"Commercial Consumption","U.S.","U.S.",168895 +1993-10-01,"Commercial Consumption","Hawaii","HI",173 +1993-10-01,"Commercial Consumption","California","CA",19708 +1993-10-01,"Commercial Consumption","West Virginia","WV",1510 +1993-10-01,"Commercial Consumption","South Carolina","SC",947 +1993-10-01,"Commercial Consumption","North Carolina","NC",2067 +1993-10-01,"Commercial Consumption","Utah","UT",946 +1993-10-01,"Commercial Consumption","Missouri","MO",2864 +1993-10-01,"Commercial Consumption","Wisconsin","WI",4637 +1993-10-01,"Commercial Consumption","Maryland","MD",2231 +1993-10-01,"Commercial Consumption","Alabama","AL",1259 +1993-10-01,"Commercial Consumption","Delaware","DE",229 +1993-10-01,"Commercial Consumption","Arizona","AZ",1551 +1993-10-01,"Commercial Consumption","Oregon","OR",1099 +1993-10-01,"Commercial Consumption","New Jersey","NJ",6712 +1993-10-01,"Commercial Consumption","Florida","FL",2983 +1993-10-01,"Commercial Consumption","Ohio","OH",9636 +1993-10-01,"Commercial Consumption","District of Columbia","DC",841 +1993-10-01,"Commercial Consumption","Iowa","IA",2869 +1993-10-01,"Commercial Consumption","Alaska","AK",1563 +1993-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100375 +1993-10-01,"Residential Consumption","South Carolina","SC",630 +1993-10-01,"Residential Consumption","Pennsylvania","PA",15261 +1993-10-01,"Residential Consumption","New Mexico","NM",2000 +1993-10-01,"Residential Consumption","North Dakota","ND",505 +1993-10-01,"Residential Consumption","Colorado","CO",4451 +1993-10-01,"Residential Consumption","Texas","TX",11527 +1993-10-01,"Residential Consumption","Rhode Island","RI",975 +1993-10-01,"Residential Consumption","Hawaii","HI",42 +1993-10-01,"Residential Consumption","Vermont","VT",127 +1993-10-01,"Residential Consumption","Nebraska","NE",1998 +1993-10-01,"Residential Consumption","Michigan","MI",22363 +1993-10-01,"Residential Consumption","Nevada","NV",804 +1993-10-01,"Residential Consumption","Minnesota","MN",7022 +1993-10-01,"Residential Consumption","Georgia","GA",6147 +1993-10-01,"Residential Consumption","Maryland","MD",3629 +1993-10-01,"Residential Consumption","South Dakota","SD",641 +1993-10-01,"Residential Consumption","Idaho","ID",481 +1993-10-01,"Residential Consumption","New Hampshire","NH",328 +1993-10-01,"Residential Consumption","Montana","MT",1172 +1993-10-01,"Residential Consumption","California","CA",25932 +1993-10-01,"Residential Consumption","Illinois","IL",31937 +1993-10-01,"Residential Consumption","North Carolina","NC",1459 +1993-10-01,"Residential Consumption","Florida","FL",706 +1993-10-01,"Residential Consumption","Kansas","KS",2677 +1993-10-01,"Residential Consumption","District of Columbia","DC",588 +1993-10-01,"Residential Consumption","Maine","ME",62 +1993-10-01,"Residential Consumption","Indiana","IN",9497 +1993-10-01,"Residential Consumption","New Jersey","NJ",9600 +1993-10-01,"Residential Consumption","Kentucky","KY",3858 +1993-10-01,"Residential Consumption","Alabama","AL",1526 +1993-10-01,"Residential Consumption","Alaska","AK",1043 +1993-10-01,"Residential Consumption","West Virginia","WV",1818 +1993-10-01,"Residential Consumption","U.S.","U.S.",254494 +1993-10-01,"Residential Consumption","Oregon","OR",959 +1993-10-01,"Residential Consumption","Louisiana","LA",2112 +1993-10-01,"Residential Consumption","Virginia","VA",2695 +1993-10-01,"Residential Consumption","Utah","UT",2322 +1993-10-01,"Residential Consumption","Massachusetts","MA",5839 +1993-10-01,"Residential Consumption","Delaware","DE",289 +1993-10-01,"Residential Consumption","Mississippi","MS",933 +1993-10-01,"Residential Consumption","Wisconsin","WI",7884 +1993-10-01,"Residential Consumption","Arkansas","AR",1575 +1993-10-01,"Residential Consumption","Washington","WA",2169 +1993-10-01,"Residential Consumption","Oklahoma","OK",2317 +1993-10-01,"Residential Consumption","Missouri","MO",4774 +1993-10-01,"Residential Consumption","Arizona","AZ",988 +1993-10-01,"Residential Consumption","Wyoming","WY",641 +1993-10-01,"Residential Consumption","Ohio","OH",20454 +1993-10-01,"Residential Consumption","Iowa","IA",4595 +1993-10-01,"Residential Consumption","Connecticut","CT",2317 +1993-10-01,"Residential Consumption","Tennessee","TN",1839 +1993-10-01,"Residential Consumption","New York","NY",18990 +1993-11-01,"Commercial Consumption","Colorado","CO",6080 +1993-11-01,"Commercial Consumption","New Mexico","NM",3197 +1993-11-01,"Commercial Consumption","Missouri","MO",5974 +1993-11-01,"Commercial Consumption","New Jersey","NJ",11240 +1993-11-01,"Commercial Consumption","Montana","MT",1508 +1993-11-01,"Commercial Consumption","Maine","ME",224 +1993-11-01,"Commercial Consumption","Texas","TX",14823 +1993-11-01,"Commercial Consumption","Maryland","MD",3898 +1993-11-01,"Commercial Consumption","Georgia","GA",5214 +1993-11-01,"Commercial Consumption","Alaska","AK",1785 +1993-11-01,"Commercial Consumption","Nebraska","NE",3495 +1993-11-01,"Commercial Consumption","South Carolina","SC",1463 +1993-11-01,"Commercial Consumption","Arkansas","AR",2480 +1993-11-01,"Commercial Consumption","Indiana","IN",8381 +1993-11-01,"Commercial Consumption","Wyoming","WY",874 +1993-11-01,"Commercial Consumption","Oregon","OR",1918 +1993-11-01,"Commercial Consumption","Oklahoma","OK",3424 +1993-11-01,"Commercial Consumption","U.S.","U.S.",260158 +1993-11-01,"Commercial Consumption","Iowa","IA",5694 +1993-11-01,"Commercial Consumption","Arizona","AZ",2100 +1993-11-01,"Commercial Consumption","Pennsylvania","PA",12189 +1993-11-01,"Commercial Consumption","Wisconsin","WI",7976 +1993-11-01,"Commercial Consumption","Kansas","KS",4413 +1993-11-01,"Commercial Consumption","Vermont","VT",235 +1993-11-01,"Commercial Consumption","California","CA",20404 +1993-11-01,"Commercial Consumption","New York","NY",18205 +1993-11-01,"Commercial Consumption","Michigan","MI",16875 +1993-11-01,"Commercial Consumption","North Carolina","NC",3379 +1993-11-01,"Commercial Consumption","Utah","UT",2023 +1993-11-01,"Commercial Consumption","Rhode Island","RI",1008 +1993-11-01,"Commercial Consumption","Hawaii","HI",183 +1993-11-01,"Commercial Consumption","Mississippi","MS",1710 +1993-11-01,"Commercial Consumption","Delaware","DE",412 +1993-11-01,"Commercial Consumption","Nevada","NV",1421 +1993-11-01,"Commercial Consumption","Louisiana","LA",2091 +1993-11-01,"Commercial Consumption","District of Columbia","DC",1040 +1993-11-01,"Commercial Consumption","West Virginia","WV",2404 +1993-11-01,"Commercial Consumption","Washington","WA",3639 +1993-11-01,"Commercial Consumption","Virginia","VA",4355 +1993-11-01,"Commercial Consumption","Kentucky","KY",3997 +1993-11-01,"Commercial Consumption","Tennessee","TN",4648 +1993-11-01,"Commercial Consumption","Ohio","OH",14979 +1993-11-01,"Commercial Consumption","Connecticut","CT",2896 +1993-11-01,"Commercial Consumption","North Dakota","ND",1068 +1993-11-01,"Commercial Consumption","Minnesota","MN",9104 +1993-11-01,"Commercial Consumption","Massachusetts","MA",5622 +1993-11-01,"Commercial Consumption","South Dakota","SD",1083 +1993-11-01,"Commercial Consumption","New Hampshire","NH",522 +1993-11-01,"Commercial Consumption","Florida","FL",3336 +1993-11-01,"Commercial Consumption","Idaho","ID",947 +1993-11-01,"Commercial Consumption","Alabama","AL",2073 +1993-11-01,"Commercial Consumption","Illinois","IL",22147 +1993-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100979 +1993-11-01,"Residential Consumption","Ohio","OH",34956 +1993-11-01,"Residential Consumption","Iowa","IA",8673 +1993-11-01,"Residential Consumption","South Dakota","SD",1261 +1993-11-01,"Residential Consumption","Idaho","ID",1159 +1993-11-01,"Residential Consumption","Delaware","DE",609 +1993-11-01,"Residential Consumption","Hawaii","HI",46 +1993-11-01,"Residential Consumption","District of Columbia","DC",1115 +1993-11-01,"Residential Consumption","North Dakota","ND",964 +1993-11-01,"Residential Consumption","Alabama","AL",3853 +1993-11-01,"Residential Consumption","Alaska","AK",1261 +1993-11-01,"Residential Consumption","Georgia","GA",11585 +1993-11-01,"Residential Consumption","Indiana","IN",16628 +1993-11-01,"Residential Consumption","Oklahoma","OK",6783 +1993-11-01,"Residential Consumption","Missouri","MO",11929 +1993-11-01,"Residential Consumption","Texas","TX",24155 +1993-11-01,"Residential Consumption","Oregon","OR",2336 +1993-11-01,"Residential Consumption","Michigan","MI",34389 +1993-11-01,"Residential Consumption","Pennsylvania","PA",24357 +1993-11-01,"Residential Consumption","Colorado","CO",8984 +1993-11-01,"Residential Consumption","Wyoming","WY",1181 +1993-11-01,"Residential Consumption","West Virginia","WV",3347 +1993-11-01,"Residential Consumption","Louisiana","LA",5120 +1993-11-01,"Residential Consumption","Tennessee","TN",5774 +1993-11-01,"Residential Consumption","Kentucky","KY",7612 +1993-11-01,"Residential Consumption","Kansas","KS",6796 +1993-11-01,"Residential Consumption","Washington","WA",4650 +1993-11-01,"Residential Consumption","U.S.","U.S.",457330 +1993-11-01,"Residential Consumption","South Carolina","SC",2030 +1993-11-01,"Residential Consumption","Rhode Island","RI",1510 +1993-11-01,"Residential Consumption","North Carolina","NC",3918 +1993-11-01,"Residential Consumption","Utah","UT",4676 +1993-11-01,"Residential Consumption","Nebraska","NE",4336 +1993-11-01,"Residential Consumption","Maryland","MD",6642 +1993-11-01,"Residential Consumption","Minnesota","MN",12508 +1993-11-01,"Residential Consumption","Arkansas","AR",4024 +1993-11-01,"Residential Consumption","Montana","MT",2236 +1993-11-01,"Residential Consumption","Connecticut","CT",3922 +1993-11-01,"Residential Consumption","Wisconsin","WI",13043 +1993-11-01,"Residential Consumption","Vermont","VT",189 +1993-11-01,"Residential Consumption","Virginia","VA",5569 +1993-11-01,"Residential Consumption","Nevada","NV",1492 +1993-11-01,"Residential Consumption","Maine","ME",88 +1993-11-01,"Residential Consumption","Florida","FL",1007 +1993-11-01,"Residential Consumption","Massachusetts","MA",10175 +1993-11-01,"Residential Consumption","New Jersey","NJ",17162 +1993-11-01,"Residential Consumption","New Hampshire","NH",528 +1993-11-01,"Residential Consumption","Illinois","IL",51226 +1993-11-01,"Residential Consumption","Mississippi","MS",2518 +1993-11-01,"Residential Consumption","New Mexico","NM",4358 +1993-11-01,"Residential Consumption","California","CA",39240 +1993-11-01,"Residential Consumption","Arizona","AZ",1847 +1993-11-01,"Residential Consumption","New York","NY",33567 +1993-12-01,"Commercial Consumption","Wyoming","WY",1407 +1993-12-01,"Commercial Consumption","West Virginia","WV",3286 +1993-12-01,"Commercial Consumption","Virginia","VA",6877 +1993-12-01,"Commercial Consumption","Montana","MT",1999 +1993-12-01,"Commercial Consumption","Texas","TX",18605 +1993-12-01,"Commercial Consumption","Vermont","VT",324 +1993-12-01,"Commercial Consumption","Mississippi","MS",2298 +1993-12-01,"Commercial Consumption","Illinois","IL",28088 +1993-12-01,"Commercial Consumption","Oregon","OR",3557 +1993-12-01,"Commercial Consumption","Georgia","GA",7719 +1993-12-01,"Commercial Consumption","Alabama","AL",3041 +1993-12-01,"Commercial Consumption","Michigan","MI",23833 +1993-12-01,"Commercial Consumption","New Hampshire","NH",770 +1993-12-01,"Commercial Consumption","U.S.","U.S.",363319 +1993-12-01,"Commercial Consumption","Iowa","IA",6642 +1993-12-01,"Commercial Consumption","New York","NY",26928 +1993-12-01,"Commercial Consumption","Nebraska","NE",4263 +1993-12-01,"Commercial Consumption","Tennessee","TN",6470 +1993-12-01,"Commercial Consumption","Nevada","NV",2211 +1993-12-01,"Commercial Consumption","District of Columbia","DC",1909 +1993-12-01,"Commercial Consumption","Utah","UT",3436 +1993-12-01,"Commercial Consumption","Oklahoma","OK",5327 +1993-12-01,"Commercial Consumption","Missouri","MO",9124 +1993-12-01,"Commercial Consumption","New Jersey","NJ",15142 +1993-12-01,"Commercial Consumption","Kentucky","KY",5433 +1993-12-01,"Commercial Consumption","Idaho","ID",1543 +1993-12-01,"Commercial Consumption","Alaska","AK",2301 +1993-12-01,"Commercial Consumption","Connecticut","CT",3525 +1993-12-01,"Commercial Consumption","South Carolina","SC",2070 +1993-12-01,"Commercial Consumption","Colorado","CO",9396 +1993-12-01,"Commercial Consumption","New Mexico","NM",4034 +1993-12-01,"Commercial Consumption","Delaware","DE",666 +1993-12-01,"Commercial Consumption","Indiana","IN",11447 +1993-12-01,"Commercial Consumption","Washington","WA",6016 +1993-12-01,"Commercial Consumption","Minnesota","MN",12205 +1993-12-01,"Commercial Consumption","Maine","ME",316 +1993-12-01,"Commercial Consumption","Ohio","OH",23071 +1993-12-01,"Commercial Consumption","California","CA",28553 +1993-12-01,"Commercial Consumption","North Carolina","NC",3292 +1993-12-01,"Commercial Consumption","Massachusetts","MA",7098 +1993-12-01,"Commercial Consumption","Wisconsin","WI",10963 +1993-12-01,"Commercial Consumption","Rhode Island","RI",1324 +1993-12-01,"Commercial Consumption","North Dakota","ND",1478 +1993-12-01,"Commercial Consumption","Pennsylvania","PA",17832 +1993-12-01,"Commercial Consumption","South Dakota","SD",1429 +1993-12-01,"Commercial Consumption","Maryland","MD",5915 +1993-12-01,"Commercial Consumption","Kansas","KS",6565 +1993-12-01,"Commercial Consumption","Florida","FL",3760 +1993-12-01,"Commercial Consumption","Hawaii","HI",172 +1993-12-01,"Commercial Consumption","Arkansas","AR",3473 +1993-12-01,"Commercial Consumption","Arizona","AZ",3416 +1993-12-01,"Commercial Consumption","Louisiana","LA",2771 +1993-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105992 +1993-12-01,"Residential Consumption","Ohio","OH",51423 +1993-12-01,"Residential Consumption","Maryland","MD",10778 +1993-12-01,"Residential Consumption","South Dakota","SD",1768 +1993-12-01,"Residential Consumption","District of Columbia","DC",2134 +1993-12-01,"Residential Consumption","Colorado","CO",14527 +1993-12-01,"Residential Consumption","Delaware","DE",974 +1993-12-01,"Residential Consumption","U.S.","U.S.",705034 +1993-12-01,"Residential Consumption","New York","NY",49569 +1993-12-01,"Residential Consumption","South Carolina","SC",3652 +1993-12-01,"Residential Consumption","Oregon","OR",4896 +1993-12-01,"Residential Consumption","Mississippi","MS",3832 +1993-12-01,"Residential Consumption","Nevada","NV",3261 +1993-12-01,"Residential Consumption","New Mexico","NM",5803 +1993-12-01,"Residential Consumption","Florida","FL",1605 +1993-12-01,"Residential Consumption","Idaho","ID",2057 +1993-12-01,"Residential Consumption","Arizona","AZ",4566 +1993-12-01,"Residential Consumption","Wyoming","WY",1731 +1993-12-01,"Residential Consumption","Nebraska","NE",6820 +1993-12-01,"Residential Consumption","Minnesota","MN",18169 +1993-12-01,"Residential Consumption","Pennsylvania","PA",37429 +1993-12-01,"Residential Consumption","Alaska","AK",1772 +1993-12-01,"Residential Consumption","West Virginia","WV",5072 +1993-12-01,"Residential Consumption","Hawaii","HI",47 +1993-12-01,"Residential Consumption","Massachusetts","MA",14355 +1993-12-01,"Residential Consumption","Arkansas","AR",6182 +1993-12-01,"Residential Consumption","Montana","MT",2961 +1993-12-01,"Residential Consumption","Alabama","AL",6727 +1993-12-01,"Residential Consumption","North Carolina","NC",6733 +1993-12-01,"Residential Consumption","New Hampshire","NH",790 +1993-12-01,"Residential Consumption","Kentucky","KY",11510 +1993-12-01,"Residential Consumption","Missouri","MO",18644 +1993-12-01,"Residential Consumption","Texas","TX",33110 +1993-12-01,"Residential Consumption","Rhode Island","RI",2023 +1993-12-01,"Residential Consumption","Wisconsin","WI",18564 +1993-12-01,"Residential Consumption","Tennessee","TN",9003 +1993-12-01,"Residential Consumption","Virginia","VA",10007 +1993-12-01,"Residential Consumption","Georgia","GA",20533 +1993-12-01,"Residential Consumption","Maine","ME",129 +1993-12-01,"Residential Consumption","Indiana","IN",24391 +1993-12-01,"Residential Consumption","Washington","WA",8309 +1993-12-01,"Residential Consumption","Connecticut","CT",5101 +1993-12-01,"Residential Consumption","Vermont","VT",285 +1993-12-01,"Residential Consumption","Michigan","MI",50690 +1993-12-01,"Residential Consumption","New Jersey","NJ",26505 +1993-12-01,"Residential Consumption","Kansas","KS",11571 +1993-12-01,"Residential Consumption","Oklahoma","OK",10675 +1993-12-01,"Residential Consumption","California","CA",70513 +1993-12-01,"Residential Consumption","Louisiana","LA",7896 +1993-12-01,"Residential Consumption","Iowa","IA",11735 +1993-12-01,"Residential Consumption","Utah","UT",7619 +1993-12-01,"Residential Consumption","North Dakota","ND",1457 +1993-12-01,"Residential Consumption","Illinois","IL",75134 +1994-01-01,"Commercial Consumption","South Carolina","SC",2845 +1994-01-01,"Commercial Consumption","North Dakota","ND",2016 +1994-01-01,"Commercial Consumption","Minnesota","MN",16282 +1994-01-01,"Commercial Consumption","Oklahoma","OK",6644 +1994-01-01,"Commercial Consumption","Kentucky","KY",8181 +1994-01-01,"Commercial Consumption","Kansas","KS",8139 +1994-01-01,"Commercial Consumption","Georgia","GA",9543 +1994-01-01,"Commercial Consumption","New York","NY",31014 +1994-01-01,"Commercial Consumption","Massachusetts","MA",13386 +1994-01-01,"Commercial Consumption","South Dakota","SD",1738 +1994-01-01,"Commercial Consumption","Maryland","MD",8122 +1994-01-01,"Commercial Consumption","Vermont","VT",476 +1994-01-01,"Commercial Consumption","Alaska","AK",2367 +1994-01-01,"Commercial Consumption","Mississippi","MS",3417 +1994-01-01,"Commercial Consumption","Arizona","AZ",3689 +1994-01-01,"Commercial Consumption","Nevada","NV",2334 +1994-01-01,"Commercial Consumption","New Mexico","NM",3157 +1994-01-01,"Commercial Consumption","Oregon","OR",3388 +1994-01-01,"Commercial Consumption","Idaho","ID",1510 +1994-01-01,"Commercial Consumption","Connecticut","CT",5882 +1994-01-01,"Commercial Consumption","California","CA",29342 +1994-01-01,"Commercial Consumption","Arkansas","AR",5101 +1994-01-01,"Commercial Consumption","Louisiana","LA",3925 +1994-01-01,"Commercial Consumption","Pennsylvania","PA",25352 +1994-01-01,"Commercial Consumption","Florida","FL",4619 +1994-01-01,"Commercial Consumption","Ohio","OH",33573 +1994-01-01,"Commercial Consumption","Alabama","AL",4325 +1994-01-01,"Commercial Consumption","Michigan","MI",33440 +1994-01-01,"Commercial Consumption","Washington","WA",5615 +1994-01-01,"Commercial Consumption","Maine","ME",458 +1994-01-01,"Commercial Consumption","U.S.","U.S.",475911 +1994-01-01,"Commercial Consumption","Tennessee","TN",9690 +1994-01-01,"Commercial Consumption","Indiana","IN",15350 +1994-01-01,"Commercial Consumption","Missouri","MO",12767 +1994-01-01,"Commercial Consumption","Wisconsin","WI",14586 +1994-01-01,"Commercial Consumption","Montana","MT",1844 +1994-01-01,"Commercial Consumption","Delaware","DE",945 +1994-01-01,"Commercial Consumption","Colorado","CO",10134 +1994-01-01,"Commercial Consumption","New Jersey","NJ",21839 +1994-01-01,"Commercial Consumption","New Hampshire","NH",1261 +1994-01-01,"Commercial Consumption","Rhode Island","RI",1919 +1994-01-01,"Commercial Consumption","Iowa","IA",9353 +1994-01-01,"Commercial Consumption","Hawaii","HI",195 +1994-01-01,"Commercial Consumption","Nebraska","NE",5469 +1994-01-01,"Commercial Consumption","Wyoming","WY",1351 +1994-01-01,"Commercial Consumption","West Virginia","WV",4653 +1994-01-01,"Commercial Consumption","North Carolina","NC",7247 +1994-01-01,"Commercial Consumption","Utah","UT",3929 +1994-01-01,"Commercial Consumption","Virginia","VA",8677 +1994-01-01,"Commercial Consumption","Texas","TX",23042 +1994-01-01,"Commercial Consumption","Illinois","IL",39478 +1994-01-01,"Commercial Consumption","District of Columbia","DC",2303 +1994-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96391 +1994-01-01,"Residential Consumption","Iowa","IA",16659 +1994-01-01,"Residential Consumption","Wisconsin","WI",25797 +1994-01-01,"Residential Consumption","Maryland","MD",15481 +1994-01-01,"Residential Consumption","Nevada","NV",3597 +1994-01-01,"Residential Consumption","Georgia","GA",23864 +1994-01-01,"Residential Consumption","Pennsylvania","PA",55091 +1994-01-01,"Residential Consumption","Montana","MT",2722 +1994-01-01,"Residential Consumption","Washington","WA",7905 +1994-01-01,"Residential Consumption","Delaware","DE",1579 +1994-01-01,"Residential Consumption","Connecticut","CT",7795 +1994-01-01,"Residential Consumption","Alabama","AL",10714 +1994-01-01,"Residential Consumption","Alaska","AK",1815 +1994-01-01,"Residential Consumption","South Carolina","SC",5997 +1994-01-01,"Residential Consumption","Mississippi","MS",6163 +1994-01-01,"Residential Consumption","Virginia","VA",14437 +1994-01-01,"Residential Consumption","Nebraska","NE",8455 +1994-01-01,"Residential Consumption","Michigan","MI",72958 +1994-01-01,"Residential Consumption","District of Columbia","DC",3317 +1994-01-01,"Residential Consumption","Florida","FL",2725 +1994-01-01,"Residential Consumption","New Jersey","NJ",43772 +1994-01-01,"Residential Consumption","Oklahoma","OK",13551 +1994-01-01,"Residential Consumption","California","CA",72586 +1994-01-01,"Residential Consumption","Oregon","OR",4708 +1994-01-01,"Residential Consumption","Vermont","VT",478 +1994-01-01,"Residential Consumption","Idaho","ID",1929 +1994-01-01,"Residential Consumption","Arizona","AZ",5663 +1994-01-01,"Residential Consumption","Ohio","OH",72950 +1994-01-01,"Residential Consumption","North Carolina","NC",11081 +1994-01-01,"Residential Consumption","South Dakota","SD",2234 +1994-01-01,"Residential Consumption","Indiana","IN",35494 +1994-01-01,"Residential Consumption","New Hampshire","NH",1294 +1994-01-01,"Residential Consumption","Kentucky","KY",15487 +1994-01-01,"Residential Consumption","Colorado","CO",16252 +1994-01-01,"Residential Consumption","U.S.","U.S.",952520 +1994-01-01,"Residential Consumption","Illinois","IL",104083 +1994-01-01,"Residential Consumption","Hawaii","HI",53 +1994-01-01,"Residential Consumption","North Dakota","ND",2042 +1994-01-01,"Residential Consumption","Massachusetts","MA",21444 +1994-01-01,"Residential Consumption","Texas","TX",42609 +1994-01-01,"Residential Consumption","Louisiana","LA",11755 +1994-01-01,"Residential Consumption","Utah","UT",7251 +1994-01-01,"Residential Consumption","Minnesota","MN",26272 +1994-01-01,"Residential Consumption","New Mexico","NM",4824 +1994-01-01,"Residential Consumption","Arkansas","AR",8723 +1994-01-01,"Residential Consumption","Kansas","KS",15494 +1994-01-01,"Residential Consumption","Missouri","MO",26174 +1994-01-01,"Residential Consumption","New York","NY",70935 +1994-01-01,"Residential Consumption","Rhode Island","RI",3061 +1994-01-01,"Residential Consumption","Tennessee","TN",13829 +1994-01-01,"Residential Consumption","Maine","ME",171 +1994-01-01,"Residential Consumption","Wyoming","WY",1849 +1994-01-01,"Residential Consumption","West Virginia","WV",7397 +1994-02-01,"Commercial Consumption","South Carolina","SC",2472 +1994-02-01,"Commercial Consumption","Colorado","CO",9633 +1994-02-01,"Commercial Consumption","Oregon","OR",3166 +1994-02-01,"Commercial Consumption","Oklahoma","OK",6611 +1994-02-01,"Commercial Consumption","Texas","TX",21624 +1994-02-01,"Commercial Consumption","Hawaii","HI",176 +1994-02-01,"Commercial Consumption","California","CA",27032 +1994-02-01,"Commercial Consumption","Mississippi","MS",2993 +1994-02-01,"Commercial Consumption","Utah","UT",3846 +1994-02-01,"Commercial Consumption","New Jersey","NJ",21867 +1994-02-01,"Commercial Consumption","New Hampshire","NH",1097 +1994-02-01,"Commercial Consumption","Montana","MT",1936 +1994-02-01,"Commercial Consumption","Kansas","KS",6811 +1994-02-01,"Commercial Consumption","Rhode Island","RI",1974 +1994-02-01,"Commercial Consumption","Alaska","AK",2156 +1994-02-01,"Commercial Consumption","Nebraska","NE",5455 +1994-02-01,"Commercial Consumption","Delaware","DE",1076 +1994-02-01,"Commercial Consumption","Nevada","NV",2277 +1994-02-01,"Commercial Consumption","Indiana","IN",13616 +1994-02-01,"Commercial Consumption","Louisiana","LA",3581 +1994-02-01,"Commercial Consumption","New Mexico","NM",3076 +1994-02-01,"Commercial Consumption","Maine","ME",364 +1994-02-01,"Commercial Consumption","Georgia","GA",7722 +1994-02-01,"Commercial Consumption","Arkansas","AR",4707 +1994-02-01,"Commercial Consumption","Arizona","AZ",3522 +1994-02-01,"Commercial Consumption","Washington","WA",5441 +1994-02-01,"Commercial Consumption","Virginia","VA",7275 +1994-02-01,"Commercial Consumption","Maryland","MD",6354 +1994-02-01,"Commercial Consumption","Tennessee","TN",8292 +1994-02-01,"Commercial Consumption","District of Columbia","DC",1865 +1994-02-01,"Commercial Consumption","Wyoming","WY",1412 +1994-02-01,"Commercial Consumption","North Carolina","NC",6269 +1994-02-01,"Commercial Consumption","Massachusetts","MA",13090 +1994-02-01,"Commercial Consumption","Wisconsin","WI",12809 +1994-02-01,"Commercial Consumption","West Virginia","WV",3681 +1994-02-01,"Commercial Consumption","Vermont","VT",455 +1994-02-01,"Commercial Consumption","Alabama","AL",4399 +1994-02-01,"Commercial Consumption","New York","NY",32757 +1994-02-01,"Commercial Consumption","Michigan","MI",31356 +1994-02-01,"Commercial Consumption","North Dakota","ND",1812 +1994-02-01,"Commercial Consumption","Minnesota","MN",13583 +1994-02-01,"Commercial Consumption","Pennsylvania","PA",21687 +1994-02-01,"Commercial Consumption","Missouri","MO",15462 +1994-02-01,"Commercial Consumption","South Dakota","SD",1695 +1994-02-01,"Commercial Consumption","Kentucky","KY",6018 +1994-02-01,"Commercial Consumption","U.S.","U.S.",435978 +1994-02-01,"Commercial Consumption","Florida","FL",3941 +1994-02-01,"Commercial Consumption","Ohio","OH",29301 +1994-02-01,"Commercial Consumption","Idaho","ID",1457 +1994-02-01,"Commercial Consumption","Iowa","IA",8260 +1994-02-01,"Commercial Consumption","Connecticut","CT",5846 +1994-02-01,"Commercial Consumption","Illinois","IL",32675 +1994-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86464 +1994-02-01,"Residential Consumption","Mississippi","MS",5192 +1994-02-01,"Residential Consumption","Connecticut","CT",7960 +1994-02-01,"Residential Consumption","Utah","UT",7329 +1994-02-01,"Residential Consumption","Idaho","ID",1926 +1994-02-01,"Residential Consumption","Wyoming","WY",1790 +1994-02-01,"Residential Consumption","South Carolina","SC",4969 +1994-02-01,"Residential Consumption","Louisiana","LA",9414 +1994-02-01,"Residential Consumption","South Dakota","SD",2249 +1994-02-01,"Residential Consumption","New Mexico","NM",4762 +1994-02-01,"Residential Consumption","Oklahoma","OK",13450 +1994-02-01,"Residential Consumption","West Virginia","WV",6344 +1994-02-01,"Residential Consumption","U.S.","U.S.",841815 +1994-02-01,"Residential Consumption","New York","NY",69054 +1994-02-01,"Residential Consumption","Texas","TX",37064 +1994-02-01,"Residential Consumption","Ohio","OH",59452 +1994-02-01,"Residential Consumption","North Carolina","NC",9487 +1994-02-01,"Residential Consumption","Hawaii","HI",53 +1994-02-01,"Residential Consumption","Vermont","VT",456 +1994-02-01,"Residential Consumption","Minnesota","MN",22129 +1994-02-01,"Residential Consumption","Pennsylvania","PA",47970 +1994-02-01,"Residential Consumption","Florida","FL",2089 +1994-02-01,"Residential Consumption","Kentucky","KY",10560 +1994-02-01,"Residential Consumption","Rhode Island","RI",3269 +1994-02-01,"Residential Consumption","Oregon","OR",4373 +1994-02-01,"Residential Consumption","Georgia","GA",16736 +1994-02-01,"Residential Consumption","Maine","ME",135 +1994-02-01,"Residential Consumption","Missouri","MO",29359 +1994-02-01,"Residential Consumption","California","CA",66977 +1994-02-01,"Residential Consumption","Tennessee","TN",11693 +1994-02-01,"Residential Consumption","Michigan","MI",65427 +1994-02-01,"Residential Consumption","Nevada","NV",3331 +1994-02-01,"Residential Consumption","District of Columbia","DC",3018 +1994-02-01,"Residential Consumption","Indiana","IN",28268 +1994-02-01,"Residential Consumption","Colorado","CO",15391 +1994-02-01,"Residential Consumption","Delaware","DE",1836 +1994-02-01,"Residential Consumption","Wisconsin","WI",22434 +1994-02-01,"Residential Consumption","Virginia","VA",12113 +1994-02-01,"Residential Consumption","Nebraska","NE",8562 +1994-02-01,"Residential Consumption","Maryland","MD",14047 +1994-02-01,"Residential Consumption","Kansas","KS",13162 +1994-02-01,"Residential Consumption","Arizona","AZ",5158 +1994-02-01,"Residential Consumption","Alaska","AK",1763 +1994-02-01,"Residential Consumption","Illinois","IL",81098 +1994-02-01,"Residential Consumption","Iowa","IA",14415 +1994-02-01,"Residential Consumption","Massachusetts","MA",22427 +1994-02-01,"Residential Consumption","New Hampshire","NH",1187 +1994-02-01,"Residential Consumption","Montana","MT",2915 +1994-02-01,"Residential Consumption","Alabama","AL",10653 +1994-02-01,"Residential Consumption","North Dakota","ND",2019 +1994-02-01,"Residential Consumption","Arkansas","AR",7974 +1994-02-01,"Residential Consumption","New Jersey","NJ",40563 +1994-02-01,"Residential Consumption","Washington","WA",7815 +1994-03-01,"Commercial Consumption","North Dakota","ND",1339 +1994-03-01,"Commercial Consumption","Colorado","CO",8295 +1994-03-01,"Commercial Consumption","New Mexico","NM",2519 +1994-03-01,"Commercial Consumption","U.S.","U.S.",348766 +1994-03-01,"Commercial Consumption","Arkansas","AR",3388 +1994-03-01,"Commercial Consumption","District of Columbia","DC",1483 +1994-03-01,"Commercial Consumption","Missouri","MO",7865 +1994-03-01,"Commercial Consumption","Massachusetts","MA",12019 +1994-03-01,"Commercial Consumption","South Dakota","SD",1285 +1994-03-01,"Commercial Consumption","Maine","ME",302 +1994-03-01,"Commercial Consumption","Rhode Island","RI",1626 +1994-03-01,"Commercial Consumption","New York","NY",29376 +1994-03-01,"Commercial Consumption","Nebraska","NE",4089 +1994-03-01,"Commercial Consumption","Washington","WA",4846 +1994-03-01,"Commercial Consumption","Virginia","VA",6584 +1994-03-01,"Commercial Consumption","Hawaii","HI",190 +1994-03-01,"Commercial Consumption","Arizona","AZ",3028 +1994-03-01,"Commercial Consumption","West Virginia","WV",3246 +1994-03-01,"Commercial Consumption","Oregon","OR",2480 +1994-03-01,"Commercial Consumption","Montana","MT",1465 +1994-03-01,"Commercial Consumption","Ohio","OH",22713 +1994-03-01,"Commercial Consumption","Alaska","AK",2504 +1994-03-01,"Commercial Consumption","Connecticut","CT",5271 +1994-03-01,"Commercial Consumption","Wyoming","WY",1065 +1994-03-01,"Commercial Consumption","Pennsylvania","PA",19730 +1994-03-01,"Commercial Consumption","New Hampshire","NH",863 +1994-03-01,"Commercial Consumption","Kentucky","KY",4741 +1994-03-01,"Commercial Consumption","Maryland","MD",5634 +1994-03-01,"Commercial Consumption","Vermont","VT",341 +1994-03-01,"Commercial Consumption","Nevada","NV",1995 +1994-03-01,"Commercial Consumption","Illinois","IL",24021 +1994-03-01,"Commercial Consumption","North Carolina","NC",4727 +1994-03-01,"Commercial Consumption","Utah","UT",2665 +1994-03-01,"Commercial Consumption","Wisconsin","WI",10010 +1994-03-01,"Commercial Consumption","Alabama","AL",3116 +1994-03-01,"Commercial Consumption","Oklahoma","OK",4717 +1994-03-01,"Commercial Consumption","New Jersey","NJ",18567 +1994-03-01,"Commercial Consumption","Iowa","IA",5503 +1994-03-01,"Commercial Consumption","Mississippi","MS",2136 +1994-03-01,"Commercial Consumption","Indiana","IN",9874 +1994-03-01,"Commercial Consumption","South Carolina","SC",1910 +1994-03-01,"Commercial Consumption","Minnesota","MN",10030 +1994-03-01,"Commercial Consumption","Texas","TX",18374 +1994-03-01,"Commercial Consumption","Kansas","KS",4960 +1994-03-01,"Commercial Consumption","Georgia","GA",5854 +1994-03-01,"Commercial Consumption","Florida","FL",3853 +1994-03-01,"Commercial Consumption","Idaho","ID",1121 +1994-03-01,"Commercial Consumption","California","CA",23156 +1994-03-01,"Commercial Consumption","Delaware","DE",856 +1994-03-01,"Commercial Consumption","Tennessee","TN",6078 +1994-03-01,"Commercial Consumption","Michigan","MI",24263 +1994-03-01,"Commercial Consumption","Louisiana","LA",2691 +1994-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96684 +1994-03-01,"Residential Consumption","Iowa","IA",9423 +1994-03-01,"Residential Consumption","Tennessee","TN",7753 +1994-03-01,"Residential Consumption","Utah","UT",4831 +1994-03-01,"Residential Consumption","Arkansas","AR",5659 +1994-03-01,"Residential Consumption","Montana","MT",2180 +1994-03-01,"Residential Consumption","Delaware","DE",1480 +1994-03-01,"Residential Consumption","Arizona","AZ",3659 +1994-03-01,"Residential Consumption","South Carolina","SC",3024 +1994-03-01,"Residential Consumption","Rhode Island","RI",2694 +1994-03-01,"Residential Consumption","Vermont","VT",369 +1994-03-01,"Residential Consumption","Nebraska","NE",6098 +1994-03-01,"Residential Consumption","Maryland","MD",10751 +1994-03-01,"Residential Consumption","Minnesota","MN",14653 +1994-03-01,"Residential Consumption","Massachusetts","MA",18027 +1994-03-01,"Residential Consumption","New Jersey","NJ",31677 +1994-03-01,"Residential Consumption","Missouri","MO",15303 +1994-03-01,"Residential Consumption","Alabama","AL",6935 +1994-03-01,"Residential Consumption","Illinois","IL",57684 +1994-03-01,"Residential Consumption","Oregon","OR",3359 +1994-03-01,"Residential Consumption","Ohio","OH",47016 +1994-03-01,"Residential Consumption","Michigan","MI",50524 +1994-03-01,"Residential Consumption","North Dakota","ND",1448 +1994-03-01,"Residential Consumption","Hawaii","HI",52 +1994-03-01,"Residential Consumption","Connecticut","CT",6527 +1994-03-01,"Residential Consumption","South Dakota","SD",1558 +1994-03-01,"Residential Consumption","Pennsylvania","PA",39926 +1994-03-01,"Residential Consumption","New Hampshire","NH",925 +1994-03-01,"Residential Consumption","Washington","WA",6670 +1994-03-01,"Residential Consumption","Texas","TX",25521 +1994-03-01,"Residential Consumption","North Carolina","NC",6623 +1994-03-01,"Residential Consumption","Mississippi","MS",3481 +1994-03-01,"Residential Consumption","Wisconsin","WI",16632 +1994-03-01,"Residential Consumption","Georgia","GA",12037 +1994-03-01,"Residential Consumption","Indiana","IN",20773 +1994-03-01,"Residential Consumption","Kentucky","KY",8417 +1994-03-01,"Residential Consumption","Wyoming","WY",1371 +1994-03-01,"Residential Consumption","New York","NY",56809 +1994-03-01,"Residential Consumption","Louisiana","LA",6612 +1994-03-01,"Residential Consumption","Virginia","VA",9306 +1994-03-01,"Residential Consumption","Nevada","NV",2505 +1994-03-01,"Residential Consumption","Maine","ME",116 +1994-03-01,"Residential Consumption","Idaho","ID",1432 +1994-03-01,"Residential Consumption","West Virginia","WV",5136 +1994-03-01,"Residential Consumption","District of Columbia","DC",2437 +1994-03-01,"Residential Consumption","Florida","FL",1472 +1994-03-01,"Residential Consumption","Colorado","CO",13500 +1994-03-01,"Residential Consumption","New Mexico","NM",3326 +1994-03-01,"Residential Consumption","Kansas","KS",8589 +1994-03-01,"Residential Consumption","Oklahoma","OK",9884 +1994-03-01,"Residential Consumption","California","CA",52478 +1994-03-01,"Residential Consumption","Alaska","AK",1952 +1994-03-01,"Residential Consumption","U.S.","U.S.",630616 +1994-04-01,"Commercial Consumption","New Jersey","NJ",12190 +1994-04-01,"Commercial Consumption","U.S.","U.S.",236771 +1994-04-01,"Commercial Consumption","Georgia","GA",3488 +1994-04-01,"Commercial Consumption","Rhode Island","RI",1092 +1994-04-01,"Commercial Consumption","Idaho","ID",771 +1994-04-01,"Commercial Consumption","Hawaii","HI",185 +1994-04-01,"Commercial Consumption","Mississippi","MS",1456 +1994-04-01,"Commercial Consumption","West Virginia","WV",2031 +1994-04-01,"Commercial Consumption","Washington","WA",3458 +1994-04-01,"Commercial Consumption","Oregon","OR",1836 +1994-04-01,"Commercial Consumption","Oklahoma","OK",2954 +1994-04-01,"Commercial Consumption","Massachusetts","MA",7582 +1994-04-01,"Commercial Consumption","Wisconsin","WI",6650 +1994-04-01,"Commercial Consumption","New Hampshire","NH",581 +1994-04-01,"Commercial Consumption","Maryland","MD",2844 +1994-04-01,"Commercial Consumption","Iowa","IA",3725 +1994-04-01,"Commercial Consumption","New York","NY",21207 +1994-04-01,"Commercial Consumption","Delaware","DE",510 +1994-04-01,"Commercial Consumption","Missouri","MO",5141 +1994-04-01,"Commercial Consumption","Kentucky","KY",2348 +1994-04-01,"Commercial Consumption","Texas","TX",14889 +1994-04-01,"Commercial Consumption","Alaska","AK",1868 +1994-04-01,"Commercial Consumption","Arizona","AZ",2365 +1994-04-01,"Commercial Consumption","Minnesota","MN",6927 +1994-04-01,"Commercial Consumption","Colorado","CO",6300 +1994-04-01,"Commercial Consumption","Virginia","VA",4399 +1994-04-01,"Commercial Consumption","Vermont","VT",269 +1994-04-01,"Commercial Consumption","Tennessee","TN",3993 +1994-04-01,"Commercial Consumption","South Carolina","SC",1174 +1994-04-01,"Commercial Consumption","North Dakota","ND",932 +1994-04-01,"Commercial Consumption","Pennsylvania","PA",11672 +1994-04-01,"Commercial Consumption","Maine","ME",181 +1994-04-01,"Commercial Consumption","Arkansas","AR",2306 +1994-04-01,"Commercial Consumption","Nevada","NV",1456 +1994-04-01,"Commercial Consumption","Indiana","IN",5778 +1994-04-01,"Commercial Consumption","District of Columbia","DC",1588 +1994-04-01,"Commercial Consumption","New Mexico","NM",1825 +1994-04-01,"Commercial Consumption","Connecticut","CT",3387 +1994-04-01,"Commercial Consumption","Alabama","AL",2141 +1994-04-01,"Commercial Consumption","Illinois","IL",14447 +1994-04-01,"Commercial Consumption","Utah","UT",2037 +1994-04-01,"Commercial Consumption","South Dakota","SD",846 +1994-04-01,"Commercial Consumption","Florida","FL",3374 +1994-04-01,"Commercial Consumption","Ohio","OH",14498 +1994-04-01,"Commercial Consumption","California","CA",18463 +1994-04-01,"Commercial Consumption","Nebraska","NE",2741 +1994-04-01,"Commercial Consumption","Michigan","MI",16330 +1994-04-01,"Commercial Consumption","Louisiana","LA",2033 +1994-04-01,"Commercial Consumption","Wyoming","WY",869 +1994-04-01,"Commercial Consumption","North Carolina","NC",2761 +1994-04-01,"Commercial Consumption","Montana","MT",1100 +1994-04-01,"Commercial Consumption","Kansas","KS",3774 +1994-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91773 +1994-04-01,"Residential Consumption","Oklahoma","OK",5919 +1994-04-01,"Residential Consumption","Alaska","AK",1480 +1994-04-01,"Residential Consumption","West Virginia","WV",3281 +1994-04-01,"Residential Consumption","Tennessee","TN",4606 +1994-04-01,"Residential Consumption","Idaho","ID",1001 +1994-04-01,"Residential Consumption","Kentucky","KY",3601 +1994-04-01,"Residential Consumption","Oregon","OR",2394 +1994-04-01,"Residential Consumption","Louisiana","LA",4057 +1994-04-01,"Residential Consumption","Connecticut","CT",4038 +1994-04-01,"Residential Consumption","Nevada","NV",1474 +1994-04-01,"Residential Consumption","Minnesota","MN",10392 +1994-04-01,"Residential Consumption","District of Columbia","DC",1402 +1994-04-01,"Residential Consumption","Pennsylvania","PA",22900 +1994-04-01,"Residential Consumption","Florida","FL",1152 +1994-04-01,"Residential Consumption","Washington","WA",4519 +1994-04-01,"Residential Consumption","Delaware","DE",879 +1994-04-01,"Residential Consumption","Vermont","VT",261 +1994-04-01,"Residential Consumption","Maine","ME",69 +1994-04-01,"Residential Consumption","New Jersey","NJ",18003 +1994-04-01,"Residential Consumption","Montana","MT",1600 +1994-04-01,"Residential Consumption","Arizona","AZ",2142 +1994-04-01,"Residential Consumption","Mississippi","MS",2254 +1994-04-01,"Residential Consumption","Utah","UT",3524 +1994-04-01,"Residential Consumption","North Dakota","ND",1031 +1994-04-01,"Residential Consumption","Arkansas","AR",3756 +1994-04-01,"Residential Consumption","Wyoming","WY",1121 +1994-04-01,"Residential Consumption","Texas","TX",15288 +1994-04-01,"Residential Consumption","Rhode Island","RI",1698 +1994-04-01,"Residential Consumption","North Carolina","NC",3521 +1994-04-01,"Residential Consumption","Nebraska","NE",4020 +1994-04-01,"Residential Consumption","Maryland","MD",5905 +1994-04-01,"Residential Consumption","South Dakota","SD",1034 +1994-04-01,"Residential Consumption","Massachusetts","MA",11263 +1994-04-01,"Residential Consumption","Kansas","KS",5752 +1994-04-01,"Residential Consumption","Missouri","MO",10085 +1994-04-01,"Residential Consumption","California","CA",35315 +1994-04-01,"Residential Consumption","Alabama","AL",4557 +1994-04-01,"Residential Consumption","U.S.","U.S.",392153 +1994-04-01,"Residential Consumption","Illinois","IL",34511 +1994-04-01,"Residential Consumption","South Carolina","SC",1526 +1994-04-01,"Residential Consumption","Ohio","OH",28942 +1994-04-01,"Residential Consumption","Iowa","IA",6371 +1994-04-01,"Residential Consumption","Wisconsin","WI",10937 +1994-04-01,"Residential Consumption","New Mexico","NM",2062 +1994-04-01,"Residential Consumption","Colorado","CO",9732 +1994-04-01,"Residential Consumption","New York","NY",35998 +1994-04-01,"Residential Consumption","Hawaii","HI",51 +1994-04-01,"Residential Consumption","Virginia","VA",4487 +1994-04-01,"Residential Consumption","Michigan","MI",33363 +1994-04-01,"Residential Consumption","Georgia","GA",5297 +1994-04-01,"Residential Consumption","Indiana","IN",12918 +1994-04-01,"Residential Consumption","New Hampshire","NH",665 +1994-05-01,"Commercial Consumption","Oklahoma","OK",1875 +1994-05-01,"Commercial Consumption","Virginia","VA",2904 +1994-05-01,"Commercial Consumption","Kentucky","KY",1445 +1994-05-01,"Commercial Consumption","Alabama","AL",1446 +1994-05-01,"Commercial Consumption","Louisiana","LA",1500 +1994-05-01,"Commercial Consumption","Colorado","CO",4573 +1994-05-01,"Commercial Consumption","Georgia","GA",3332 +1994-05-01,"Commercial Consumption","Vermont","VT",150 +1994-05-01,"Commercial Consumption","West Virginia","WV",1437 +1994-05-01,"Commercial Consumption","Minnesota","MN",3461 +1994-05-01,"Commercial Consumption","Oregon","OR",1234 +1994-05-01,"Commercial Consumption","U.S.","U.S.",163049 +1994-05-01,"Commercial Consumption","Texas","TX",11551 +1994-05-01,"Commercial Consumption","Maryland","MD",2547 +1994-05-01,"Commercial Consumption","Kansas","KS",2816 +1994-05-01,"Commercial Consumption","Hawaii","HI",181 +1994-05-01,"Commercial Consumption","Connecticut","CT",2358 +1994-05-01,"Commercial Consumption","Arkansas","AR",1360 +1994-05-01,"Commercial Consumption","Arizona","AZ",2057 +1994-05-01,"Commercial Consumption","Indiana","IN",3242 +1994-05-01,"Commercial Consumption","Illinois","IL",7714 +1994-05-01,"Commercial Consumption","California","CA",22621 +1994-05-01,"Commercial Consumption","Mississippi","MS",1012 +1994-05-01,"Commercial Consumption","Michigan","MI",10123 +1994-05-01,"Commercial Consumption","Wyoming","WY",544 +1994-05-01,"Commercial Consumption","Washington","WA",2568 +1994-05-01,"Commercial Consumption","Utah","UT",962 +1994-05-01,"Commercial Consumption","New Mexico","NM",1338 +1994-05-01,"Commercial Consumption","Florida","FL",3078 +1994-05-01,"Commercial Consumption","Ohio","OH",7933 +1994-05-01,"Commercial Consumption","Idaho","ID",480 +1994-05-01,"Commercial Consumption","New York","NY",13641 +1994-05-01,"Commercial Consumption","Delaware","DE",259 +1994-05-01,"Commercial Consumption","Tennessee","TN",2609 +1994-05-01,"Commercial Consumption","North Dakota","ND",526 +1994-05-01,"Commercial Consumption","North Carolina","NC",1844 +1994-05-01,"Commercial Consumption","South Dakota","SD",524 +1994-05-01,"Commercial Consumption","Maine","ME",128 +1994-05-01,"Commercial Consumption","Nevada","NV",1300 +1994-05-01,"Commercial Consumption","Pennsylvania","PA",7095 +1994-05-01,"Commercial Consumption","Missouri","MO",2924 +1994-05-01,"Commercial Consumption","Massachusetts","MA",5003 +1994-05-01,"Commercial Consumption","Wisconsin","WI",3616 +1994-05-01,"Commercial Consumption","Rhode Island","RI",653 +1994-05-01,"Commercial Consumption","Iowa","IA",2254 +1994-05-01,"Commercial Consumption","Alaska","AK",1489 +1994-05-01,"Commercial Consumption","District of Columbia","DC",979 +1994-05-01,"Commercial Consumption","South Carolina","SC",1027 +1994-05-01,"Commercial Consumption","New Jersey","NJ",6359 +1994-05-01,"Commercial Consumption","New Hampshire","NH",347 +1994-05-01,"Commercial Consumption","Montana","MT",699 +1994-05-01,"Commercial Consumption","Nebraska","NE",1934 +1994-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94765 +1994-05-01,"Residential Consumption","Iowa","IA",3718 +1994-05-01,"Residential Consumption","Idaho","ID",568 +1994-05-01,"Residential Consumption","Arkansas","AR",1800 +1994-05-01,"Residential Consumption","Oklahoma","OK",3639 +1994-05-01,"Residential Consumption","South Carolina","SC",714 +1994-05-01,"Residential Consumption","Virginia","VA",2623 +1994-05-01,"Residential Consumption","Nebraska","NE",2328 +1994-05-01,"Residential Consumption","New Hampshire","NH",391 +1994-05-01,"Residential Consumption","West Virginia","WV",1841 +1994-05-01,"Residential Consumption","Connecticut","CT",2162 +1994-05-01,"Residential Consumption","Utah","UT",1577 +1994-05-01,"Residential Consumption","Georgia","GA",4434 +1994-05-01,"Residential Consumption","New Mexico","NM",1070 +1994-05-01,"Residential Consumption","Indiana","IN",7190 +1994-05-01,"Residential Consumption","Washington","WA",2648 +1994-05-01,"Residential Consumption","U.S.","U.S.",246872 +1994-05-01,"Residential Consumption","Illinois","IL",20774 +1994-05-01,"Residential Consumption","Texas","TX",10159 +1994-05-01,"Residential Consumption","North Carolina","NC",1704 +1994-05-01,"Residential Consumption","Hawaii","HI",48 +1994-05-01,"Residential Consumption","Tennessee","TN",2027 +1994-05-01,"Residential Consumption","Michigan","MI",20215 +1994-05-01,"Residential Consumption","South Dakota","SD",603 +1994-05-01,"Residential Consumption","New Jersey","NJ",9046 +1994-05-01,"Residential Consumption","Kentucky","KY",2314 +1994-05-01,"Residential Consumption","Alabama","AL",2208 +1994-05-01,"Residential Consumption","Alaska","AK",1026 +1994-05-01,"Residential Consumption","Mississippi","MS",1088 +1994-05-01,"Residential Consumption","Louisiana","LA",2495 +1994-05-01,"Residential Consumption","Missouri","MO",5393 +1994-05-01,"Residential Consumption","Delaware","DE",397 +1994-05-01,"Residential Consumption","Oregon","OR",1415 +1994-05-01,"Residential Consumption","Maryland","MD",3732 +1994-05-01,"Residential Consumption","Nevada","NV",1151 +1994-05-01,"Residential Consumption","Pennsylvania","PA",13510 +1994-05-01,"Residential Consumption","Florida","FL",815 +1994-05-01,"Residential Consumption","Massachusetts","MA",6381 +1994-05-01,"Residential Consumption","Ohio","OH",18242 +1994-05-01,"Residential Consumption","Wisconsin","WI",5763 +1994-05-01,"Residential Consumption","Vermont","VT",139 +1994-05-01,"Residential Consumption","Minnesota","MN",5067 +1994-05-01,"Residential Consumption","Montana","MT",1005 +1994-05-01,"Residential Consumption","Colorado","CO",6819 +1994-05-01,"Residential Consumption","Kansas","KS",3096 +1994-05-01,"Residential Consumption","California","CA",37223 +1994-05-01,"Residential Consumption","Rhode Island","RI",1098 +1994-05-01,"Residential Consumption","District of Columbia","DC",725 +1994-05-01,"Residential Consumption","Maine","ME",49 +1994-05-01,"Residential Consumption","North Dakota","ND",582 +1994-05-01,"Residential Consumption","Arizona","AZ",1443 +1994-05-01,"Residential Consumption","Wyoming","WY",652 +1994-05-01,"Residential Consumption","New York","NY",21764 +1994-06-01,"Commercial Consumption","Wyoming","WY",369 +1994-06-01,"Commercial Consumption","North Dakota","ND",302 +1994-06-01,"Commercial Consumption","Massachusetts","MA",4950 +1994-06-01,"Commercial Consumption","Rhode Island","RI",542 +1994-06-01,"Commercial Consumption","Tennessee","TN",2117 +1994-06-01,"Commercial Consumption","Oregon","OR",1078 +1994-06-01,"Commercial Consumption","Virginia","VA",2424 +1994-06-01,"Commercial Consumption","Missouri","MO",2200 +1994-06-01,"Commercial Consumption","Texas","TX",13805 +1994-06-01,"Commercial Consumption","Connecticut","CT",1956 +1994-06-01,"Commercial Consumption","Indiana","IN",1967 +1994-06-01,"Commercial Consumption","Washington","WA",2192 +1994-06-01,"Commercial Consumption","New Mexico","NM",1178 +1994-06-01,"Commercial Consumption","South Dakota","SD",347 +1994-06-01,"Commercial Consumption","Kansas","KS",2890 +1994-06-01,"Commercial Consumption","Iowa","IA",1488 +1994-06-01,"Commercial Consumption","Arizona","AZ",1887 +1994-06-01,"Commercial Consumption","Minnesota","MN",2365 +1994-06-01,"Commercial Consumption","Oklahoma","OK",1384 +1994-06-01,"Commercial Consumption","Pennsylvania","PA",4851 +1994-06-01,"Commercial Consumption","Ohio","OH",5111 +1994-06-01,"Commercial Consumption","Nebraska","NE",2284 +1994-06-01,"Commercial Consumption","Michigan","MI",6207 +1994-06-01,"Commercial Consumption","District of Columbia","DC",815 +1994-06-01,"Commercial Consumption","West Virginia","WV",982 +1994-06-01,"Commercial Consumption","Colorado","CO",2745 +1994-06-01,"Commercial Consumption","New Jersey","NJ",5124 +1994-06-01,"Commercial Consumption","U.S.","U.S.",132096 +1994-06-01,"Commercial Consumption","Maryland","MD",1709 +1994-06-01,"Commercial Consumption","New York","NY",11207 +1994-06-01,"Commercial Consumption","Nevada","NV",1136 +1994-06-01,"Commercial Consumption","Louisiana","LA",1360 +1994-06-01,"Commercial Consumption","Montana","MT",452 +1994-06-01,"Commercial Consumption","Georgia","GA",2488 +1994-06-01,"Commercial Consumption","Alabama","AL",1187 +1994-06-01,"Commercial Consumption","Illinois","IL",6150 +1994-06-01,"Commercial Consumption","South Carolina","SC",1342 +1994-06-01,"Commercial Consumption","North Carolina","NC",1605 +1994-06-01,"Commercial Consumption","New Hampshire","NH",229 +1994-06-01,"Commercial Consumption","Florida","FL",2937 +1994-06-01,"Commercial Consumption","Vermont","VT",90 +1994-06-01,"Commercial Consumption","Idaho","ID",377 +1994-06-01,"Commercial Consumption","Hawaii","HI",184 +1994-06-01,"Commercial Consumption","Alaska","AK",1161 +1994-06-01,"Commercial Consumption","Mississippi","MS",942 +1994-06-01,"Commercial Consumption","Delaware","DE",209 +1994-06-01,"Commercial Consumption","Utah","UT",814 +1994-06-01,"Commercial Consumption","Wisconsin","WI",2576 +1994-06-01,"Commercial Consumption","Maine","ME",79 +1994-06-01,"Commercial Consumption","Kentucky","KY",1104 +1994-06-01,"Commercial Consumption","California","CA",18091 +1994-06-01,"Commercial Consumption","Arkansas","AR",1107 +1994-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90075 +1994-06-01,"Residential Consumption","North Carolina","NC",1206 +1994-06-01,"Residential Consumption","Nebraska","NE",1179 +1994-06-01,"Residential Consumption","Maryland","MD",2579 +1994-06-01,"Residential Consumption","New Mexico","NM",957 +1994-06-01,"Residential Consumption","Indiana","IN",3664 +1994-06-01,"Residential Consumption","North Dakota","ND",263 +1994-06-01,"Residential Consumption","Washington","WA",1960 +1994-06-01,"Residential Consumption","Wyoming","WY",352 +1994-06-01,"Residential Consumption","Texas","TX",8312 +1994-06-01,"Residential Consumption","Wisconsin","WI",3020 +1994-06-01,"Residential Consumption","South Dakota","SD",270 +1994-06-01,"Residential Consumption","Georgia","GA",3271 +1994-06-01,"Residential Consumption","Missouri","MO",3074 +1994-06-01,"Residential Consumption","West Virginia","WV",926 +1994-06-01,"Residential Consumption","Rhode Island","RI",602 +1994-06-01,"Residential Consumption","Utah","UT",1404 +1994-06-01,"Residential Consumption","Nevada","NV",883 +1994-06-01,"Residential Consumption","Pennsylvania","PA",8233 +1994-06-01,"Residential Consumption","New Jersey","NJ",6362 +1994-06-01,"Residential Consumption","Alaska","AK",651 +1994-06-01,"Residential Consumption","U.S.","U.S.",154411 +1994-06-01,"Residential Consumption","Oregon","OR",1086 +1994-06-01,"Residential Consumption","Iowa","IA",1867 +1994-06-01,"Residential Consumption","Michigan","MI",9904 +1994-06-01,"Residential Consumption","Maine","ME",32 +1994-06-01,"Residential Consumption","South Carolina","SC",528 +1994-06-01,"Residential Consumption","Idaho","ID",367 +1994-06-01,"Residential Consumption","Arkansas","AR",1190 +1994-06-01,"Residential Consumption","Delaware","DE",281 +1994-06-01,"Residential Consumption","Hawaii","HI",49 +1994-06-01,"Residential Consumption","Connecticut","CT",1397 +1994-06-01,"Residential Consumption","Tennessee","TN",1350 +1994-06-01,"Residential Consumption","District of Columbia","DC",527 +1994-06-01,"Residential Consumption","Florida","FL",746 +1994-06-01,"Residential Consumption","New Hampshire","NH",222 +1994-06-01,"Residential Consumption","Colorado","CO",3474 +1994-06-01,"Residential Consumption","Illinois","IL",11747 +1994-06-01,"Residential Consumption","Louisiana","LA",2036 +1994-06-01,"Residential Consumption","Minnesota","MN",2849 +1994-06-01,"Residential Consumption","Kentucky","KY",1260 +1994-06-01,"Residential Consumption","Oklahoma","OK",2014 +1994-06-01,"Residential Consumption","Arizona","AZ",1116 +1994-06-01,"Residential Consumption","Alabama","AL",1542 +1994-06-01,"Residential Consumption","Ohio","OH",9589 +1994-06-01,"Residential Consumption","Mississippi","MS",883 +1994-06-01,"Residential Consumption","Vermont","VT",84 +1994-06-01,"Residential Consumption","Virginia","VA",1850 +1994-06-01,"Residential Consumption","Massachusetts","MA",4370 +1994-06-01,"Residential Consumption","Montana","MT",614 +1994-06-01,"Residential Consumption","Kansas","KS",1911 +1994-06-01,"Residential Consumption","California","CA",26995 +1994-06-01,"Residential Consumption","New York","NY",13362 +1994-07-01,"Commercial Consumption","Washington","WA",1916 +1994-07-01,"Commercial Consumption","Minnesota","MN",2069 +1994-07-01,"Commercial Consumption","Utah","UT",820 +1994-07-01,"Commercial Consumption","Oregon","OR",865 +1994-07-01,"Commercial Consumption","Missouri","MO",1867 +1994-07-01,"Commercial Consumption","New Hampshire","NH",173 +1994-07-01,"Commercial Consumption","Idaho","ID",374 +1994-07-01,"Commercial Consumption","Iowa","IA",1160 +1994-07-01,"Commercial Consumption","Delaware","DE",157 +1994-07-01,"Commercial Consumption","New Mexico","NM",1194 +1994-07-01,"Commercial Consumption","Montana","MT",362 +1994-07-01,"Commercial Consumption","Florida","FL",2855 +1994-07-01,"Commercial Consumption","Rhode Island","RI",343 +1994-07-01,"Commercial Consumption","New York","NY",10158 +1994-07-01,"Commercial Consumption","North Dakota","ND",284 +1994-07-01,"Commercial Consumption","Oklahoma","OK",1364 +1994-07-01,"Commercial Consumption","U.S.","U.S.",129282 +1994-07-01,"Commercial Consumption","Texas","TX",13712 +1994-07-01,"Commercial Consumption","Georgia","GA",2499 +1994-07-01,"Commercial Consumption","Nebraska","NE",2501 +1994-07-01,"Commercial Consumption","Illinois","IL",5803 +1994-07-01,"Commercial Consumption","Maryland","MD",1732 +1994-07-01,"Commercial Consumption","Hawaii","HI",177 +1994-07-01,"Commercial Consumption","Alabama","AL",1093 +1994-07-01,"Commercial Consumption","Mississippi","MS",992 +1994-07-01,"Commercial Consumption","Nevada","NV",995 +1994-07-01,"Commercial Consumption","Louisiana","LA",1272 +1994-07-01,"Commercial Consumption","District of Columbia","DC",753 +1994-07-01,"Commercial Consumption","Wisconsin","WI",1660 +1994-07-01,"Commercial Consumption","Wyoming","WY",291 +1994-07-01,"Commercial Consumption","West Virginia","WV",812 +1994-07-01,"Commercial Consumption","Colorado","CO",2268 +1994-07-01,"Commercial Consumption","Virginia","VA",2077 +1994-07-01,"Commercial Consumption","South Dakota","SD",239 +1994-07-01,"Commercial Consumption","Kentucky","KY",1115 +1994-07-01,"Commercial Consumption","Alaska","AK",981 +1994-07-01,"Commercial Consumption","Connecticut","CT",1836 +1994-07-01,"Commercial Consumption","California","CA",25752 +1994-07-01,"Commercial Consumption","Arizona","AZ",1784 +1994-07-01,"Commercial Consumption","Indiana","IN",1790 +1994-07-01,"Commercial Consumption","South Carolina","SC",913 +1994-07-01,"Commercial Consumption","New Jersey","NJ",4633 +1994-07-01,"Commercial Consumption","Maine","ME",63 +1994-07-01,"Commercial Consumption","Arkansas","AR",990 +1994-07-01,"Commercial Consumption","Tennessee","TN",2056 +1994-07-01,"Commercial Consumption","North Carolina","NC",1487 +1994-07-01,"Commercial Consumption","Pennsylvania","PA",4068 +1994-07-01,"Commercial Consumption","Massachusetts","MA",4016 +1994-07-01,"Commercial Consumption","Kansas","KS",3526 +1994-07-01,"Commercial Consumption","Vermont","VT",65 +1994-07-01,"Commercial Consumption","Ohio","OH",4027 +1994-07-01,"Commercial Consumption","Michigan","MI",5343 +1994-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93139 +1994-07-01,"Residential Consumption","Texas","TX",7504 +1994-07-01,"Residential Consumption","North Carolina","NC",866 +1994-07-01,"Residential Consumption","Tennessee","TN",1133 +1994-07-01,"Residential Consumption","New Hampshire","NH",136 +1994-07-01,"Residential Consumption","Montana","MT",461 +1994-07-01,"Residential Consumption","Kansas","KS",1757 +1994-07-01,"Residential Consumption","Delaware","DE",179 +1994-07-01,"Residential Consumption","Mississippi","MS",845 +1994-07-01,"Residential Consumption","Connecticut","CT",1022 +1994-07-01,"Residential Consumption","Colorado","CO",2546 +1994-07-01,"Residential Consumption","Illinois","IL",10270 +1994-07-01,"Residential Consumption","South Carolina","SC",439 +1994-07-01,"Residential Consumption","Ohio","OH",7154 +1994-07-01,"Residential Consumption","Nebraska","NE",1014 +1994-07-01,"Residential Consumption","District of Columbia","DC",427 +1994-07-01,"Residential Consumption","Maine","ME",23 +1994-07-01,"Residential Consumption","Florida","FL",691 +1994-07-01,"Residential Consumption","Idaho","ID",298 +1994-07-01,"Residential Consumption","New Jersey","NJ",5307 +1994-07-01,"Residential Consumption","Kentucky","KY",1178 +1994-07-01,"Residential Consumption","Louisiana","LA",1924 +1994-07-01,"Residential Consumption","Hawaii","HI",46 +1994-07-01,"Residential Consumption","South Dakota","SD",181 +1994-07-01,"Residential Consumption","Oklahoma","OK",1687 +1994-07-01,"Residential Consumption","Missouri","MO",2651 +1994-07-01,"Residential Consumption","California","CA",24541 +1994-07-01,"Residential Consumption","Wyoming","WY",276 +1994-07-01,"Residential Consumption","Rhode Island","RI",439 +1994-07-01,"Residential Consumption","Wisconsin","WI",2812 +1994-07-01,"Residential Consumption","Vermont","VT",48 +1994-07-01,"Residential Consumption","Virginia","VA",1380 +1994-07-01,"Residential Consumption","Michigan","MI",7353 +1994-07-01,"Residential Consumption","Minnesota","MN",2477 +1994-07-01,"Residential Consumption","Massachusetts","MA",3053 +1994-07-01,"Residential Consumption","U.S.","U.S.",126805 +1994-07-01,"Residential Consumption","Iowa","IA",1458 +1994-07-01,"Residential Consumption","Utah","UT",1369 +1994-07-01,"Residential Consumption","Nevada","NV",669 +1994-07-01,"Residential Consumption","Georgia","GA",3008 +1994-07-01,"Residential Consumption","Pennsylvania","PA",5541 +1994-07-01,"Residential Consumption","Indiana","IN",2839 +1994-07-01,"Residential Consumption","North Dakota","ND",220 +1994-07-01,"Residential Consumption","Arkansas","AR",1068 +1994-07-01,"Residential Consumption","Alabama","AL",1361 +1994-07-01,"Residential Consumption","Alaska","AK",491 +1994-07-01,"Residential Consumption","Oregon","OR",751 +1994-07-01,"Residential Consumption","New Mexico","NM",909 +1994-07-01,"Residential Consumption","Arizona","AZ",899 +1994-07-01,"Residential Consumption","New York","NY",10073 +1994-07-01,"Residential Consumption","Maryland","MD",2032 +1994-07-01,"Residential Consumption","Washington","WA",1460 +1994-07-01,"Residential Consumption","West Virginia","WV",541 +1994-08-01,"Commercial Consumption","North Dakota","ND",288 +1994-08-01,"Commercial Consumption","Utah","UT",787 +1994-08-01,"Commercial Consumption","Pennsylvania","PA",4349 +1994-08-01,"Commercial Consumption","New Jersey","NJ",4840 +1994-08-01,"Commercial Consumption","Kentucky","KY",1017 +1994-08-01,"Commercial Consumption","Idaho","ID",306 +1994-08-01,"Commercial Consumption","Iowa","IA",1288 +1994-08-01,"Commercial Consumption","Louisiana","LA",1223 +1994-08-01,"Commercial Consumption","District of Columbia","DC",692 +1994-08-01,"Commercial Consumption","West Virginia","WV",973 +1994-08-01,"Commercial Consumption","Washington","WA",1591 +1994-08-01,"Commercial Consumption","Minnesota","MN",2295 +1994-08-01,"Commercial Consumption","Oregon","OR",801 +1994-08-01,"Commercial Consumption","Oklahoma","OK",1256 +1994-08-01,"Commercial Consumption","Montana","MT",348 +1994-08-01,"Commercial Consumption","Georgia","GA",2709 +1994-08-01,"Commercial Consumption","Vermont","VT",69 +1994-08-01,"Commercial Consumption","Rhode Island","RI",599 +1994-08-01,"Commercial Consumption","Arkansas","AR",887 +1994-08-01,"Commercial Consumption","Alabama","AL",1140 +1994-08-01,"Commercial Consumption","South Carolina","SC",949 +1994-08-01,"Commercial Consumption","Colorado","CO",2192 +1994-08-01,"Commercial Consumption","Wisconsin","WI",1987 +1994-08-01,"Commercial Consumption","Florida","FL",2909 +1994-08-01,"Commercial Consumption","Delaware","DE",156 +1994-08-01,"Commercial Consumption","North Carolina","NC",1647 +1994-08-01,"Commercial Consumption","Ohio","OH",4287 +1994-08-01,"Commercial Consumption","Nebraska","NE",3613 +1994-08-01,"Commercial Consumption","Mississippi","MS",973 +1994-08-01,"Commercial Consumption","Michigan","MI",5363 +1994-08-01,"Commercial Consumption","Indiana","IN",1932 +1994-08-01,"Commercial Consumption","Illinois","IL",6226 +1994-08-01,"Commercial Consumption","Wyoming","WY",270 +1994-08-01,"Commercial Consumption","New Mexico","NM",1513 +1994-08-01,"Commercial Consumption","Massachusetts","MA",3557 +1994-08-01,"Commercial Consumption","South Dakota","SD",322 +1994-08-01,"Commercial Consumption","Texas","TX",13691 +1994-08-01,"Commercial Consumption","Kansas","KS",3749 +1994-08-01,"Commercial Consumption","Missouri","MO",1858 +1994-08-01,"Commercial Consumption","Hawaii","HI",178 +1994-08-01,"Commercial Consumption","Alaska","AK",919 +1994-08-01,"Commercial Consumption","Connecticut","CT",1780 +1994-08-01,"Commercial Consumption","New York","NY",10485 +1994-08-01,"Commercial Consumption","Tennessee","TN",2011 +1994-08-01,"Commercial Consumption","Nevada","NV",909 +1994-08-01,"Commercial Consumption","Virginia","VA",2195 +1994-08-01,"Commercial Consumption","New Hampshire","NH",166 +1994-08-01,"Commercial Consumption","Maine","ME",71 +1994-08-01,"Commercial Consumption","U.S.","U.S.",120768 +1994-08-01,"Commercial Consumption","Maryland","MD",1588 +1994-08-01,"Commercial Consumption","California","CA",14123 +1994-08-01,"Commercial Consumption","Arizona","AZ",1690 +1994-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94119 +1994-08-01,"Residential Consumption","Rhode Island","RI",422 +1994-08-01,"Residential Consumption","Ohio","OH",6618 +1994-08-01,"Residential Consumption","Michigan","MI",7536 +1994-08-01,"Residential Consumption","New Hampshire","NH",126 +1994-08-01,"Residential Consumption","Wyoming","WY",257 +1994-08-01,"Residential Consumption","Illinois","IL",10238 +1994-08-01,"Residential Consumption","South Carolina","SC",429 +1994-08-01,"Residential Consumption","Connecticut","CT",921 +1994-08-01,"Residential Consumption","Tennessee","TN",1081 +1994-08-01,"Residential Consumption","Utah","UT",1306 +1994-08-01,"Residential Consumption","Maryland","MD",1903 +1994-08-01,"Residential Consumption","Georgia","GA",3149 +1994-08-01,"Residential Consumption","Maine","ME",22 +1994-08-01,"Residential Consumption","Delaware","DE",159 +1994-08-01,"Residential Consumption","U.S.","U.S.",121952 +1994-08-01,"Residential Consumption","Mississippi","MS",784 +1994-08-01,"Residential Consumption","Wisconsin","WI",2832 +1994-08-01,"Residential Consumption","Florida","FL",665 +1994-08-01,"Residential Consumption","Oklahoma","OK",1533 +1994-08-01,"Residential Consumption","California","CA",23620 +1994-08-01,"Residential Consumption","Texas","TX",7176 +1994-08-01,"Residential Consumption","Vermont","VT",45 +1994-08-01,"Residential Consumption","Nevada","NV",587 +1994-08-01,"Residential Consumption","Minnesota","MN",2470 +1994-08-01,"Residential Consumption","New Mexico","NM",805 +1994-08-01,"Residential Consumption","Kentucky","KY",1211 +1994-08-01,"Residential Consumption","New York","NY",9505 +1994-08-01,"Residential Consumption","North Dakota","ND",183 +1994-08-01,"Residential Consumption","Arkansas","AR",959 +1994-08-01,"Residential Consumption","Alabama","AL",1323 +1994-08-01,"Residential Consumption","West Virginia","WV",625 +1994-08-01,"Residential Consumption","Oregon","OR",611 +1994-08-01,"Residential Consumption","Louisiana","LA",1717 +1994-08-01,"Residential Consumption","Iowa","IA",1514 +1994-08-01,"Residential Consumption","District of Columbia","DC",389 +1994-08-01,"Residential Consumption","Montana","MT",396 +1994-08-01,"Residential Consumption","Washington","WA",1040 +1994-08-01,"Residential Consumption","North Carolina","NC",806 +1994-08-01,"Residential Consumption","Hawaii","HI",42 +1994-08-01,"Residential Consumption","Nebraska","NE",935 +1994-08-01,"Residential Consumption","South Dakota","SD",259 +1994-08-01,"Residential Consumption","Indiana","IN",3077 +1994-08-01,"Residential Consumption","Idaho","ID",212 +1994-08-01,"Residential Consumption","Kansas","KS",1647 +1994-08-01,"Residential Consumption","Missouri","MO",2303 +1994-08-01,"Residential Consumption","Virginia","VA",1386 +1994-08-01,"Residential Consumption","Pennsylvania","PA",5463 +1994-08-01,"Residential Consumption","Massachusetts","MA",2786 +1994-08-01,"Residential Consumption","New Jersey","NJ",5278 +1994-08-01,"Residential Consumption","Colorado","CO",2378 +1994-08-01,"Residential Consumption","Arizona","AZ",806 +1994-08-01,"Residential Consumption","Alaska","AK",416 +1994-09-01,"Commercial Consumption","Washington","WA",1712 +1994-09-01,"Commercial Consumption","Colorado","CO",2211 +1994-09-01,"Commercial Consumption","Idaho","ID",357 +1994-09-01,"Commercial Consumption","Connecticut","CT",1552 +1994-09-01,"Commercial Consumption","Nebraska","NE",1834 +1994-09-01,"Commercial Consumption","Tennessee","TN",2008 +1994-09-01,"Commercial Consumption","Nevada","NV",978 +1994-09-01,"Commercial Consumption","West Virginia","WV",1009 +1994-09-01,"Commercial Consumption","South Carolina","SC",947 +1994-09-01,"Commercial Consumption","Missouri","MO",2073 +1994-09-01,"Commercial Consumption","South Dakota","SD",329 +1994-09-01,"Commercial Consumption","New Hampshire","NH",206 +1994-09-01,"Commercial Consumption","U.S.","U.S.",117432 +1994-09-01,"Commercial Consumption","Florida","FL",2896 +1994-09-01,"Commercial Consumption","Alaska","AK",1105 +1994-09-01,"Commercial Consumption","California","CA",14604 +1994-09-01,"Commercial Consumption","Michigan","MI",5719 +1994-09-01,"Commercial Consumption","Indiana","IN",2185 +1994-09-01,"Commercial Consumption","New Mexico","NM",1202 +1994-09-01,"Commercial Consumption","Oregon","OR",924 +1994-09-01,"Commercial Consumption","Virginia","VA",2195 +1994-09-01,"Commercial Consumption","Pennsylvania","PA",4731 +1994-09-01,"Commercial Consumption","New Jersey","NJ",5373 +1994-09-01,"Commercial Consumption","Montana","MT",423 +1994-09-01,"Commercial Consumption","Kentucky","KY",1181 +1994-09-01,"Commercial Consumption","Maryland","MD",2016 +1994-09-01,"Commercial Consumption","Rhode Island","RI",384 +1994-09-01,"Commercial Consumption","Hawaii","HI",184 +1994-09-01,"Commercial Consumption","Arizona","AZ",1621 +1994-09-01,"Commercial Consumption","Utah","UT",882 +1994-09-01,"Commercial Consumption","Delaware","DE",172 +1994-09-01,"Commercial Consumption","North Dakota","ND",315 +1994-09-01,"Commercial Consumption","Massachusetts","MA",3239 +1994-09-01,"Commercial Consumption","Texas","TX",9387 +1994-09-01,"Commercial Consumption","Georgia","GA",2483 +1994-09-01,"Commercial Consumption","Ohio","OH",4492 +1994-09-01,"Commercial Consumption","Iowa","IA",1492 +1994-09-01,"Commercial Consumption","Alabama","AL",1278 +1994-09-01,"Commercial Consumption","District of Columbia","DC",740 +1994-09-01,"Commercial Consumption","Wisconsin","WI",2248 +1994-09-01,"Commercial Consumption","Arkansas","AR",1253 +1994-09-01,"Commercial Consumption","Mississippi","MS",1000 +1994-09-01,"Commercial Consumption","Wyoming","WY",308 +1994-09-01,"Commercial Consumption","North Carolina","NC",1831 +1994-09-01,"Commercial Consumption","Minnesota","MN",2615 +1994-09-01,"Commercial Consumption","Maine","ME",84 +1994-09-01,"Commercial Consumption","Vermont","VT",88 +1994-09-01,"Commercial Consumption","New York","NY",10002 +1994-09-01,"Commercial Consumption","Louisiana","LA",1283 +1994-09-01,"Commercial Consumption","Oklahoma","OK",1384 +1994-09-01,"Commercial Consumption","Kansas","KS",2352 +1994-09-01,"Commercial Consumption","Illinois","IL",6544 +1994-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89553 +1994-09-01,"Residential Consumption","Rhode Island","RI",427 +1994-09-01,"Residential Consumption","Mississippi","MS",834 +1994-09-01,"Residential Consumption","Florida","FL",712 +1994-09-01,"Residential Consumption","Idaho","ID",273 +1994-09-01,"Residential Consumption","Oklahoma","OK",1667 +1994-09-01,"Residential Consumption","Missouri","MO",2743 +1994-09-01,"Residential Consumption","Louisiana","LA",1882 +1994-09-01,"Residential Consumption","Connecticut","CT",1037 +1994-09-01,"Residential Consumption","Wisconsin","WI",3179 +1994-09-01,"Residential Consumption","Utah","UT",1457 +1994-09-01,"Residential Consumption","Michigan","MI",8524 +1994-09-01,"Residential Consumption","New Mexico","NM",872 +1994-09-01,"Residential Consumption","Nebraska","NE",1037 +1994-09-01,"Residential Consumption","South Dakota","SD",274 +1994-09-01,"Residential Consumption","Indiana","IN",3725 +1994-09-01,"Residential Consumption","Wyoming","WY",333 +1994-09-01,"Residential Consumption","Virginia","VA",1439 +1994-09-01,"Residential Consumption","Maryland","MD",2164 +1994-09-01,"Residential Consumption","Pennsylvania","PA",6181 +1994-09-01,"Residential Consumption","New Jersey","NJ",5873 +1994-09-01,"Residential Consumption","Colorado","CO",2440 +1994-09-01,"Residential Consumption","Delaware","DE",180 +1994-09-01,"Residential Consumption","Alabama","AL",1325 +1994-09-01,"Residential Consumption","South Carolina","SC",444 +1994-09-01,"Residential Consumption","Ohio","OH",7106 +1994-09-01,"Residential Consumption","Iowa","IA",1787 +1994-09-01,"Residential Consumption","Tennessee","TN",1145 +1994-09-01,"Residential Consumption","Massachusetts","MA",3105 +1994-09-01,"Residential Consumption","New Hampshire","NH",170 +1994-09-01,"Residential Consumption","Illinois","IL",11782 +1994-09-01,"Residential Consumption","Texas","TX",7502 +1994-09-01,"Residential Consumption","District of Columbia","DC",403 +1994-09-01,"Residential Consumption","Kansas","KS",1615 +1994-09-01,"Residential Consumption","Arizona","AZ",851 +1994-09-01,"Residential Consumption","West Virginia","WV",789 +1994-09-01,"Residential Consumption","Oregon","OR",637 +1994-09-01,"Residential Consumption","Minnesota","MN",2798 +1994-09-01,"Residential Consumption","Georgia","GA",2918 +1994-09-01,"Residential Consumption","Maine","ME",30 +1994-09-01,"Residential Consumption","North Dakota","ND",235 +1994-09-01,"Residential Consumption","Arkansas","AR",1107 +1994-09-01,"Residential Consumption","Montana","MT",535 +1994-09-01,"Residential Consumption","Washington","WA",1263 +1994-09-01,"Residential Consumption","Alaska","AK",567 +1994-09-01,"Residential Consumption","U.S.","U.S.",130370 +1994-09-01,"Residential Consumption","New York","NY",10123 +1994-09-01,"Residential Consumption","North Carolina","NC",903 +1994-09-01,"Residential Consumption","Hawaii","HI",45 +1994-09-01,"Residential Consumption","Vermont","VT",54 +1994-09-01,"Residential Consumption","Nevada","NV",632 +1994-09-01,"Residential Consumption","Kentucky","KY",1300 +1994-09-01,"Residential Consumption","California","CA",21949 +1994-10-01,"Commercial Consumption","New Hampshire","NH",305 +1994-10-01,"Commercial Consumption","Ohio","OH",7331 +1994-10-01,"Commercial Consumption","Idaho","ID",571 +1994-10-01,"Commercial Consumption","Illinois","IL",11431 +1994-10-01,"Commercial Consumption","Utah","UT",1883 +1994-10-01,"Commercial Consumption","Virginia","VA",3299 +1994-10-01,"Commercial Consumption","Missouri","MO",2310 +1994-10-01,"Commercial Consumption","Maine","ME",135 +1994-10-01,"Commercial Consumption","Kentucky","KY",1926 +1994-10-01,"Commercial Consumption","New York","NY",12399 +1994-10-01,"Commercial Consumption","Delaware","DE",221 +1994-10-01,"Commercial Consumption","Washington","WA",2593 +1994-10-01,"Commercial Consumption","North Carolina","NC",2115 +1994-10-01,"Commercial Consumption","U.S.","U.S.",159507 +1994-10-01,"Commercial Consumption","Texas","TX",10563 +1994-10-01,"Commercial Consumption","Kansas","KS",2315 +1994-10-01,"Commercial Consumption","Arizona","AZ",1717 +1994-10-01,"Commercial Consumption","Michigan","MI",8796 +1994-10-01,"Commercial Consumption","Indiana","IN",3821 +1994-10-01,"Commercial Consumption","Oregon","OR",1213 +1994-10-01,"Commercial Consumption","Rhode Island","RI",569 +1994-10-01,"Commercial Consumption","Alaska","AK",1508 +1994-10-01,"Commercial Consumption","Alabama","AL",1323 +1994-10-01,"Commercial Consumption","Nebraska","NE",2239 +1994-10-01,"Commercial Consumption","South Carolina","SC",1089 +1994-10-01,"Commercial Consumption","Minnesota","MN",4582 +1994-10-01,"Commercial Consumption","New Mexico","NM",1912 +1994-10-01,"Commercial Consumption","Wisconsin","WI",3742 +1994-10-01,"Commercial Consumption","Florida","FL",2814 +1994-10-01,"Commercial Consumption","Arkansas","AR",1275 +1994-10-01,"Commercial Consumption","Mississippi","MS",1050 +1994-10-01,"Commercial Consumption","North Dakota","ND",530 +1994-10-01,"Commercial Consumption","Pennsylvania","PA",8175 +1994-10-01,"Commercial Consumption","South Dakota","SD",531 +1994-10-01,"Commercial Consumption","New Jersey","NJ",7384 +1994-10-01,"Commercial Consumption","Montana","MT",860 +1994-10-01,"Commercial Consumption","Iowa","IA",2340 +1994-10-01,"Commercial Consumption","Louisiana","LA",1360 +1994-10-01,"Commercial Consumption","Wyoming","WY",550 +1994-10-01,"Commercial Consumption","West Virginia","WV",1428 +1994-10-01,"Commercial Consumption","Colorado","CO",3136 +1994-10-01,"Commercial Consumption","Oklahoma","OK",1475 +1994-10-01,"Commercial Consumption","Maryland","MD",2531 +1994-10-01,"Commercial Consumption","Hawaii","HI",177 +1994-10-01,"Commercial Consumption","Connecticut","CT",2135 +1994-10-01,"Commercial Consumption","California","CA",17844 +1994-10-01,"Commercial Consumption","Nevada","NV",1146 +1994-10-01,"Commercial Consumption","Massachusetts","MA",4029 +1994-10-01,"Commercial Consumption","Georgia","GA",3315 +1994-10-01,"Commercial Consumption","Vermont","VT",144 +1994-10-01,"Commercial Consumption","Tennessee","TN",2582 +1994-10-01,"Commercial Consumption","District of Columbia","DC",785 +1994-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93954 +1994-10-01,"Residential Consumption","Texas","TX",9242 +1994-10-01,"Residential Consumption","Virginia","VA",2880 +1994-10-01,"Residential Consumption","District of Columbia","DC",547 +1994-10-01,"Residential Consumption","Indiana","IN",7277 +1994-10-01,"Residential Consumption","Oregon","OR",1147 +1994-10-01,"Residential Consumption","Vermont","VT",93 +1994-10-01,"Residential Consumption","Michigan","MI",16721 +1994-10-01,"Residential Consumption","North Dakota","ND",385 +1994-10-01,"Residential Consumption","New Hampshire","NH",275 +1994-10-01,"Residential Consumption","Oklahoma","OK",2163 +1994-10-01,"Residential Consumption","Alaska","AK",1042 +1994-10-01,"Residential Consumption","West Virginia","WV",1511 +1994-10-01,"Residential Consumption","New York","NY",17017 +1994-10-01,"Residential Consumption","Ohio","OH",16773 +1994-10-01,"Residential Consumption","Mississippi","MS",921 +1994-10-01,"Residential Consumption","Utah","UT",3845 +1994-10-01,"Residential Consumption","Maryland","MD",3356 +1994-10-01,"Residential Consumption","South Dakota","SD",503 +1994-10-01,"Residential Consumption","Massachusetts","MA",5164 +1994-10-01,"Residential Consumption","Montana","MT",1184 +1994-10-01,"Residential Consumption","Kentucky","KY",2820 +1994-10-01,"Residential Consumption","Washington","WA",2558 +1994-10-01,"Residential Consumption","Alabama","AL",1495 +1994-10-01,"Residential Consumption","Minnesota","MN",5431 +1994-10-01,"Residential Consumption","New Mexico","NM",2174 +1994-10-01,"Residential Consumption","Maine","ME",51 +1994-10-01,"Residential Consumption","Idaho","ID",584 +1994-10-01,"Residential Consumption","New Jersey","NJ",9903 +1994-10-01,"Residential Consumption","Missouri","MO",3415 +1994-10-01,"Residential Consumption","Rhode Island","RI",736 +1994-10-01,"Residential Consumption","North Carolina","NC",1568 +1994-10-01,"Residential Consumption","Hawaii","HI",43 +1994-10-01,"Residential Consumption","Connecticut","CT",1677 +1994-10-01,"Residential Consumption","Colorado","CO",4013 +1994-10-01,"Residential Consumption","South Carolina","SC",734 +1994-10-01,"Residential Consumption","Iowa","IA",2862 +1994-10-01,"Residential Consumption","Kansas","KS",3828 +1994-10-01,"Residential Consumption","California","CA",25961 +1994-10-01,"Residential Consumption","Arizona","AZ",1053 +1994-10-01,"Residential Consumption","U.S.","U.S.",220553 +1994-10-01,"Residential Consumption","Nebraska","NE",1523 +1994-10-01,"Residential Consumption","Nevada","NV",829 +1994-10-01,"Residential Consumption","Georgia","GA",5390 +1994-10-01,"Residential Consumption","Arkansas","AR",1423 +1994-10-01,"Residential Consumption","Illinois","IL",24121 +1994-10-01,"Residential Consumption","Louisiana","LA",2154 +1994-10-01,"Residential Consumption","Wisconsin","WI",6185 +1994-10-01,"Residential Consumption","Tennessee","TN",1668 +1994-10-01,"Residential Consumption","Pennsylvania","PA",12677 +1994-10-01,"Residential Consumption","Florida","FL",711 +1994-10-01,"Residential Consumption","Delaware","DE",259 +1994-10-01,"Residential Consumption","Wyoming","WY",662 +1994-11-01,"Commercial Consumption","South Carolina","SC",1361 +1994-11-01,"Commercial Consumption","Missouri","MO",4097 +1994-11-01,"Commercial Consumption","Ohio","OH",12594 +1994-11-01,"Commercial Consumption","Iowa","IA",4562 +1994-11-01,"Commercial Consumption","Hawaii","HI",189 +1994-11-01,"Commercial Consumption","Arkansas","AR",1897 +1994-11-01,"Commercial Consumption","Arizona","AZ",2279 +1994-11-01,"Commercial Consumption","Washington","WA",4478 +1994-11-01,"Commercial Consumption","North Dakota","ND",1241 +1994-11-01,"Commercial Consumption","New Mexico","NM",2754 +1994-11-01,"Commercial Consumption","U.S.","U.S.",235500 +1994-11-01,"Commercial Consumption","Georgia","GA",4361 +1994-11-01,"Commercial Consumption","Idaho","ID",1098 +1994-11-01,"Commercial Consumption","Connecticut","CT",2926 +1994-11-01,"Commercial Consumption","Delaware","DE",345 +1994-11-01,"Commercial Consumption","Nevada","NV",1541 +1994-11-01,"Commercial Consumption","North Carolina","NC",2817 +1994-11-01,"Commercial Consumption","Minnesota","MN",7844 +1994-11-01,"Commercial Consumption","Utah","UT",3542 +1994-11-01,"Commercial Consumption","Oregon","OR",2401 +1994-11-01,"Commercial Consumption","South Dakota","SD",946 +1994-11-01,"Commercial Consumption","New Hampshire","NH",442 +1994-11-01,"Commercial Consumption","Florida","FL",3089 +1994-11-01,"Commercial Consumption","Mississippi","MS",1280 +1994-11-01,"Commercial Consumption","West Virginia","WV",1927 +1994-11-01,"Commercial Consumption","Pennsylvania","PA",10989 +1994-11-01,"Commercial Consumption","Colorado","CO",5319 +1994-11-01,"Commercial Consumption","New Jersey","NJ",8987 +1994-11-01,"Commercial Consumption","Texas","TX",12931 +1994-11-01,"Commercial Consumption","Rhode Island","RI",1010 +1994-11-01,"Commercial Consumption","California","CA",25032 +1994-11-01,"Commercial Consumption","Alabama","AL",1651 +1994-11-01,"Commercial Consumption","Tennessee","TN",3532 +1994-11-01,"Commercial Consumption","Illinois","IL",18158 +1994-11-01,"Commercial Consumption","Oklahoma","OK",2207 +1994-11-01,"Commercial Consumption","Massachusetts","MA",5534 +1994-11-01,"Commercial Consumption","Montana","MT",1447 +1994-11-01,"Commercial Consumption","Maine","ME",207 +1994-11-01,"Commercial Consumption","Maryland","MD",3582 +1994-11-01,"Commercial Consumption","Alaska","AK",1937 +1994-11-01,"Commercial Consumption","New York","NY",16783 +1994-11-01,"Commercial Consumption","Michigan","MI",14511 +1994-11-01,"Commercial Consumption","Wyoming","WY",915 +1994-11-01,"Commercial Consumption","Wisconsin","WI",7181 +1994-11-01,"Commercial Consumption","Kentucky","KY",2945 +1994-11-01,"Commercial Consumption","Kansas","KS",3819 +1994-11-01,"Commercial Consumption","Vermont","VT",187 +1994-11-01,"Commercial Consumption","Indiana","IN",6781 +1994-11-01,"Commercial Consumption","District of Columbia","DC",1082 +1994-11-01,"Commercial Consumption","Virginia","VA",4527 +1994-11-01,"Commercial Consumption","Nebraska","NE",2606 +1994-11-01,"Commercial Consumption","Louisiana","LA",1633 +1994-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96538 +1994-11-01,"Residential Consumption","South Carolina","SC",1590 +1994-11-01,"Residential Consumption","Connecticut","CT",2506 +1994-11-01,"Residential Consumption","South Dakota","SD",1098 +1994-11-01,"Residential Consumption","Kentucky","KY",5209 +1994-11-01,"Residential Consumption","Washington","WA",6171 +1994-11-01,"Residential Consumption","Alaska","AK",1497 +1994-11-01,"Residential Consumption","Illinois","IL",42438 +1994-11-01,"Residential Consumption","Tennessee","TN",3570 +1994-11-01,"Residential Consumption","Nebraska","NE",3169 +1994-11-01,"Residential Consumption","Pennsylvania","PA",18904 +1994-11-01,"Residential Consumption","New Mexico","NM",4024 +1994-11-01,"Residential Consumption","Rhode Island","RI",1060 +1994-11-01,"Residential Consumption","Vermont","VT",134 +1994-11-01,"Residential Consumption","Indiana","IN",12189 +1994-11-01,"Residential Consumption","Delaware","DE",459 +1994-11-01,"Residential Consumption","Arizona","AZ",2024 +1994-11-01,"Residential Consumption","Alabama","AL",2602 +1994-11-01,"Residential Consumption","Michigan","MI",27344 +1994-11-01,"Residential Consumption","Nevada","NV",1751 +1994-11-01,"Residential Consumption","Georgia","GA",9453 +1994-11-01,"Residential Consumption","Florida","FL",829 +1994-11-01,"Residential Consumption","North Dakota","ND",807 +1994-11-01,"Residential Consumption","Arkansas","AR",2724 +1994-11-01,"Residential Consumption","Texas","TX",15760 +1994-11-01,"Residential Consumption","Oregon","OR",3247 +1994-11-01,"Residential Consumption","Maryland","MD",5425 +1994-11-01,"Residential Consumption","Maine","ME",78 +1994-11-01,"Residential Consumption","Kansas","KS",6443 +1994-11-01,"Residential Consumption","Wyoming","WY",1210 +1994-11-01,"Residential Consumption","New York","NY",27143 +1994-11-01,"Residential Consumption","North Carolina","NC",3655 +1994-11-01,"Residential Consumption","Hawaii","HI",47 +1994-11-01,"Residential Consumption","Wisconsin","WI",11079 +1994-11-01,"Residential Consumption","Virginia","VA",4667 +1994-11-01,"Residential Consumption","Utah","UT",6969 +1994-11-01,"Residential Consumption","Idaho","ID",1456 +1994-11-01,"Residential Consumption","New Hampshire","NH",419 +1994-11-01,"Residential Consumption","Montana","MT",2115 +1994-11-01,"Residential Consumption","Missouri","MO",7339 +1994-11-01,"Residential Consumption","U.S.","U.S.",391460 +1994-11-01,"Residential Consumption","Louisiana","LA",2985 +1994-11-01,"Residential Consumption","Massachusetts","MA",8010 +1994-11-01,"Residential Consumption","California","CA",56469 +1994-11-01,"Residential Consumption","West Virginia","WV",2462 +1994-11-01,"Residential Consumption","Ohio","OH",26029 +1994-11-01,"Residential Consumption","Mississippi","MS",1542 +1994-11-01,"Residential Consumption","Iowa","IA",6693 +1994-11-01,"Residential Consumption","Minnesota","MN",10383 +1994-11-01,"Residential Consumption","District of Columbia","DC",928 +1994-11-01,"Residential Consumption","New Jersey","NJ",14676 +1994-11-01,"Residential Consumption","Colorado","CO",8388 +1994-11-01,"Residential Consumption","Oklahoma","OK",4292 +1994-12-01,"Commercial Consumption","New Mexico","NM",3296 +1994-12-01,"Commercial Consumption","New Hampshire","NH",743 +1994-12-01,"Commercial Consumption","U.S.","U.S.",339951 +1994-12-01,"Commercial Consumption","Louisiana","LA",2322 +1994-12-01,"Commercial Consumption","North Dakota","ND",1198 +1994-12-01,"Commercial Consumption","Minnesota","MN",11880 +1994-12-01,"Commercial Consumption","Oregon","OR",3573 +1994-12-01,"Commercial Consumption","Pennsylvania","PA",15774 +1994-12-01,"Commercial Consumption","South Dakota","SD",1472 +1994-12-01,"Commercial Consumption","Kentucky","KY",4722 +1994-12-01,"Commercial Consumption","Florida","FL",3570 +1994-12-01,"Commercial Consumption","Delaware","DE",554 +1994-12-01,"Commercial Consumption","Nevada","NV",2625 +1994-12-01,"Commercial Consumption","Michigan","MI",21617 +1994-12-01,"Commercial Consumption","Utah","UT",4335 +1994-12-01,"Commercial Consumption","Wisconsin","WI",11545 +1994-12-01,"Commercial Consumption","Maine","ME",309 +1994-12-01,"Commercial Consumption","Maryland","MD",5475 +1994-12-01,"Commercial Consumption","Kansas","KS",7103 +1994-12-01,"Commercial Consumption","Vermont","VT",334 +1994-12-01,"Commercial Consumption","Idaho","ID",1667 +1994-12-01,"Commercial Consumption","California","CA",25929 +1994-12-01,"Commercial Consumption","Alabama","AL",2427 +1994-12-01,"Commercial Consumption","New York","NY",24226 +1994-12-01,"Commercial Consumption","Mississippi","MS",1981 +1994-12-01,"Commercial Consumption","District of Columbia","DC",1658 +1994-12-01,"Commercial Consumption","Colorado","CO",9064 +1994-12-01,"Commercial Consumption","Virginia","VA",6388 +1994-12-01,"Commercial Consumption","Texas","TX",16662 +1994-12-01,"Commercial Consumption","Connecticut","CT",4153 +1994-12-01,"Commercial Consumption","Arizona","AZ",3548 +1994-12-01,"Commercial Consumption","Illinois","IL",24912 +1994-12-01,"Commercial Consumption","Wyoming","WY",1287 +1994-12-01,"Commercial Consumption","North Carolina","NC",4592 +1994-12-01,"Commercial Consumption","Montana","MT",2043 +1994-12-01,"Commercial Consumption","Georgia","GA",6258 +1994-12-01,"Commercial Consumption","Rhode Island","RI",1338 +1994-12-01,"Commercial Consumption","Hawaii","HI",185 +1994-12-01,"Commercial Consumption","Tennessee","TN",5793 +1994-12-01,"Commercial Consumption","Indiana","IN",9484 +1994-12-01,"Commercial Consumption","Iowa","IA",6497 +1994-12-01,"Commercial Consumption","Alaska","AK",2702 +1994-12-01,"Commercial Consumption","South Carolina","SC",1843 +1994-12-01,"Commercial Consumption","Oklahoma","OK",4632 +1994-12-01,"Commercial Consumption","Ohio","OH",20936 +1994-12-01,"Commercial Consumption","Nebraska","NE",4182 +1994-12-01,"Commercial Consumption","West Virginia","WV",2800 +1994-12-01,"Commercial Consumption","Washington","WA",6574 +1994-12-01,"Commercial Consumption","Missouri","MO",7633 +1994-12-01,"Commercial Consumption","Massachusetts","MA",8131 +1994-12-01,"Commercial Consumption","New Jersey","NJ",14845 +1994-12-01,"Commercial Consumption","Arkansas","AR",3136 +1994-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100264 +1994-12-01,"Residential Consumption","Indiana","IN",20054 +1994-12-01,"Residential Consumption","Florida","FL",1248 +1994-12-01,"Residential Consumption","New Jersey","NJ",26412 +1994-12-01,"Residential Consumption","Kentucky","KY",9175 +1994-12-01,"Residential Consumption","Illinois","IL",65041 +1994-12-01,"Residential Consumption","South Carolina","SC",3090 +1994-12-01,"Residential Consumption","Louisiana","LA",5947 +1994-12-01,"Residential Consumption","Vermont","VT",277 +1994-12-01,"Residential Consumption","Virginia","VA",8605 +1994-12-01,"Residential Consumption","Nebraska","NE",6076 +1994-12-01,"Residential Consumption","Washington","WA",9135 +1994-12-01,"Residential Consumption","Oklahoma","OK",9411 +1994-12-01,"Residential Consumption","Alaska","AK",2195 +1994-12-01,"Residential Consumption","Utah","UT",8059 +1994-12-01,"Residential Consumption","Maryland","MD",9314 +1994-12-01,"Residential Consumption","Minnesota","MN",17328 +1994-12-01,"Residential Consumption","Georgia","GA",15880 +1994-12-01,"Residential Consumption","Pennsylvania","PA",32009 +1994-12-01,"Residential Consumption","North Dakota","ND",1446 +1994-12-01,"Residential Consumption","Delaware","DE",869 +1994-12-01,"Residential Consumption","U.S.","U.S.",638175 +1994-12-01,"Residential Consumption","Iowa","IA",11494 +1994-12-01,"Residential Consumption","Maine","ME",117 +1994-12-01,"Residential Consumption","Massachusetts","MA",13611 +1994-12-01,"Residential Consumption","Idaho","ID",2240 +1994-12-01,"Residential Consumption","Arkansas","AR",5144 +1994-12-01,"Residential Consumption","New Hampshire","NH",762 +1994-12-01,"Residential Consumption","Montana","MT",2986 +1994-12-01,"Residential Consumption","Texas","TX",27295 +1994-12-01,"Residential Consumption","Ohio","OH",43460 +1994-12-01,"Residential Consumption","North Carolina","NC",6030 +1994-12-01,"Residential Consumption","Mississippi","MS",3098 +1994-12-01,"Residential Consumption","Michigan","MI",44719 +1994-12-01,"Residential Consumption","Nevada","NV",3855 +1994-12-01,"Residential Consumption","Alabama","AL",5034 +1994-12-01,"Residential Consumption","New York","NY",43626 +1994-12-01,"Residential Consumption","Hawaii","HI",50 +1994-12-01,"Residential Consumption","District of Columbia","DC",1746 +1994-12-01,"Residential Consumption","New Mexico","NM",5084 +1994-12-01,"Residential Consumption","Wyoming","WY",1690 +1994-12-01,"Residential Consumption","Rhode Island","RI",1877 +1994-12-01,"Residential Consumption","Wisconsin","WI",17505 +1994-12-01,"Residential Consumption","South Dakota","SD",1794 +1994-12-01,"Residential Consumption","Colorado","CO",14571 +1994-12-01,"Residential Consumption","Missouri","MO",14727 +1994-12-01,"Residential Consumption","Oregon","OR",5120 +1994-12-01,"Residential Consumption","Connecticut","CT",4559 +1994-12-01,"Residential Consumption","Tennessee","TN",7480 +1994-12-01,"Residential Consumption","Kansas","KS",10864 +1994-12-01,"Residential Consumption","California","CA",76846 +1994-12-01,"Residential Consumption","Arizona","AZ",4869 +1994-12-01,"Residential Consumption","West Virginia","WV",4348 +1995-01-01,"Commercial Consumption","New Mexico","NM",3955 +1995-01-01,"Commercial Consumption","Virginia","VA",8110 +1995-01-01,"Commercial Consumption","New Jersey","NJ",19362 +1995-01-01,"Commercial Consumption","Kentucky","KY",6500 +1995-01-01,"Commercial Consumption","Texas","TX",23149 +1995-01-01,"Commercial Consumption","Hawaii","HI",200 +1995-01-01,"Commercial Consumption","Tennessee","TN",8367 +1995-01-01,"Commercial Consumption","District of Columbia","DC",2280 +1995-01-01,"Commercial Consumption","North Dakota","ND",1807 +1995-01-01,"Commercial Consumption","North Carolina","NC",5839 +1995-01-01,"Commercial Consumption","Utah","UT",4244 +1995-01-01,"Commercial Consumption","South Dakota","SD",1619 +1995-01-01,"Commercial Consumption","Georgia","GA",8182 +1995-01-01,"Commercial Consumption","Florida","FL",4274 +1995-01-01,"Commercial Consumption","Idaho","ID",1754 +1995-01-01,"Commercial Consumption","Pennsylvania","PA",20758 +1995-01-01,"Commercial Consumption","Wisconsin","WI",13019 +1995-01-01,"Commercial Consumption","Montana","MT",2085 +1995-01-01,"Commercial Consumption","Kansas","KS",7157 +1995-01-01,"Commercial Consumption","Vermont","VT",388 +1995-01-01,"Commercial Consumption","Arizona","AZ",3637 +1995-01-01,"Commercial Consumption","Wyoming","WY",1671 +1995-01-01,"Commercial Consumption","West Virginia","WV",3658 +1995-01-01,"Commercial Consumption","Washington","WA",6431 +1995-01-01,"Commercial Consumption","South Carolina","SC",2600 +1995-01-01,"Commercial Consumption","Minnesota","MN",14797 +1995-01-01,"Commercial Consumption","U.S.","U.S.",427172 +1995-01-01,"Commercial Consumption","Maryland","MD",6743 +1995-01-01,"Commercial Consumption","Alaska","AK",2412 +1995-01-01,"Commercial Consumption","Connecticut","CT",5129 +1995-01-01,"Commercial Consumption","Delaware","DE",829 +1995-01-01,"Commercial Consumption","Illinois","IL",34345 +1995-01-01,"Commercial Consumption","Missouri","MO",11186 +1995-01-01,"Commercial Consumption","Maine","ME",350 +1995-01-01,"Commercial Consumption","California","CA",31883 +1995-01-01,"Commercial Consumption","Alabama","AL",3708 +1995-01-01,"Commercial Consumption","New York","NY",28329 +1995-01-01,"Commercial Consumption","Mississippi","MS",2945 +1995-01-01,"Commercial Consumption","Colorado","CO",9552 +1995-01-01,"Commercial Consumption","Oregon","OR",3545 +1995-01-01,"Commercial Consumption","New Hampshire","NH",978 +1995-01-01,"Commercial Consumption","Nevada","NV",2551 +1995-01-01,"Commercial Consumption","Indiana","IN",13484 +1995-01-01,"Commercial Consumption","Iowa","IA",8351 +1995-01-01,"Commercial Consumption","Nebraska","NE",3282 +1995-01-01,"Commercial Consumption","Oklahoma","OK",6358 +1995-01-01,"Commercial Consumption","Massachusetts","MA",10442 +1995-01-01,"Commercial Consumption","Rhode Island","RI",1077 +1995-01-01,"Commercial Consumption","Ohio","OH",28306 +1995-01-01,"Commercial Consumption","Arkansas","AR",4387 +1995-01-01,"Commercial Consumption","Michigan","MI",27945 +1995-01-01,"Commercial Consumption","Louisiana","LA",3212 +1995-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104954 +1995-01-01,"Residential Consumption","Oregon","OR",5117 +1995-01-01,"Residential Consumption","Louisiana","LA",9590 +1995-01-01,"Residential Consumption","Vermont","VT",352 +1995-01-01,"Residential Consumption","Virginia","VA",11505 +1995-01-01,"Residential Consumption","Nevada","NV",3927 +1995-01-01,"Residential Consumption","District of Columbia","DC",2503 +1995-01-01,"Residential Consumption","Pennsylvania","PA",41264 +1995-01-01,"Residential Consumption","New Jersey","NJ",30505 +1995-01-01,"Residential Consumption","Arizona","AZ",5531 +1995-01-01,"Residential Consumption","U.S.","U.S.",815547 +1995-01-01,"Residential Consumption","Texas","TX",37828 +1995-01-01,"Residential Consumption","Tennessee","TN",11673 +1995-01-01,"Residential Consumption","Montana","MT",3072 +1995-01-01,"Residential Consumption","Iowa","IA",14994 +1995-01-01,"Residential Consumption","Arkansas","AR",7598 +1995-01-01,"Residential Consumption","West Virginia","WV",5783 +1995-01-01,"Residential Consumption","New York","NY",56657 +1995-01-01,"Residential Consumption","South Dakota","SD",2027 +1995-01-01,"Residential Consumption","Florida","FL",2239 +1995-01-01,"Residential Consumption","North Dakota","ND",1811 +1995-01-01,"Residential Consumption","Massachusetts","MA",15914 +1995-01-01,"Residential Consumption","Colorado","CO",16254 +1995-01-01,"Residential Consumption","Missouri","MO",23360 +1995-01-01,"Residential Consumption","Alaska","AK",2059 +1995-01-01,"Residential Consumption","South Carolina","SC",4919 +1995-01-01,"Residential Consumption","North Carolina","NC",9068 +1995-01-01,"Residential Consumption","Mississippi","MS",5027 +1995-01-01,"Residential Consumption","Wisconsin","WI",22180 +1995-01-01,"Residential Consumption","Nebraska","NE",8146 +1995-01-01,"Residential Consumption","Minnesota","MN",21158 +1995-01-01,"Residential Consumption","New Hampshire","NH",1013 +1995-01-01,"Residential Consumption","Kentucky","KY",12353 +1995-01-01,"Residential Consumption","Rhode Island","RI",2054 +1995-01-01,"Residential Consumption","New Mexico","NM",5335 +1995-01-01,"Residential Consumption","Idaho","ID",2375 +1995-01-01,"Residential Consumption","Washington","WA",9018 +1995-01-01,"Residential Consumption","California","CA",79509 +1995-01-01,"Residential Consumption","Wyoming","WY",2037 +1995-01-01,"Residential Consumption","Illinois","IL",88983 +1995-01-01,"Residential Consumption","Hawaii","HI",53 +1995-01-01,"Residential Consumption","Connecticut","CT",6189 +1995-01-01,"Residential Consumption","Michigan","MI",58499 +1995-01-01,"Residential Consumption","Georgia","GA",20343 +1995-01-01,"Residential Consumption","Oklahoma","OK",12929 +1995-01-01,"Residential Consumption","Alabama","AL",8338 +1995-01-01,"Residential Consumption","Ohio","OH",60093 +1995-01-01,"Residential Consumption","Utah","UT",7769 +1995-01-01,"Residential Consumption","Maryland","MD",12358 +1995-01-01,"Residential Consumption","Maine","ME",130 +1995-01-01,"Residential Consumption","Indiana","IN",28548 +1995-01-01,"Residential Consumption","Kansas","KS",14204 +1995-01-01,"Residential Consumption","Delaware","DE",1359 +1995-02-01,"Commercial Consumption","Washington","WA",5279 +1995-02-01,"Commercial Consumption","North Dakota","ND",1662 +1995-02-01,"Commercial Consumption","Rhode Island","RI",1679 +1995-02-01,"Commercial Consumption","Idaho","ID",1319 +1995-02-01,"Commercial Consumption","Iowa","IA",7042 +1995-02-01,"Commercial Consumption","Delaware","DE",935 +1995-02-01,"Commercial Consumption","Tennessee","TN",8306 +1995-02-01,"Commercial Consumption","Texas","TX",20308 +1995-02-01,"Commercial Consumption","Kansas","KS",6607 +1995-02-01,"Commercial Consumption","Vermont","VT",406 +1995-02-01,"Commercial Consumption","Ohio","OH",29814 +1995-02-01,"Commercial Consumption","Connecticut","CT",5247 +1995-02-01,"Commercial Consumption","California","CA",25693 +1995-02-01,"Commercial Consumption","Alabama","AL",4029 +1995-02-01,"Commercial Consumption","South Carolina","SC",2626 +1995-02-01,"Commercial Consumption","Wisconsin","WI",12318 +1995-02-01,"Commercial Consumption","Georgia","GA",8315 +1995-02-01,"Commercial Consumption","Arizona","AZ",3181 +1995-02-01,"Commercial Consumption","Michigan","MI",29223 +1995-02-01,"Commercial Consumption","Wyoming","WY",1247 +1995-02-01,"Commercial Consumption","West Virginia","WV",3918 +1995-02-01,"Commercial Consumption","Massachusetts","MA",11385 +1995-02-01,"Commercial Consumption","Nevada","NV",2139 +1995-02-01,"Commercial Consumption","Minnesota","MN",13146 +1995-02-01,"Commercial Consumption","South Dakota","SD",1491 +1995-02-01,"Commercial Consumption","New Jersey","NJ",20604 +1995-02-01,"Commercial Consumption","Kentucky","KY",6248 +1995-02-01,"Commercial Consumption","U.S.","U.S.",410900 +1995-02-01,"Commercial Consumption","New York","NY",29345 +1995-02-01,"Commercial Consumption","Mississippi","MS",2809 +1995-02-01,"Commercial Consumption","Indiana","IN",13113 +1995-02-01,"Commercial Consumption","District of Columbia","DC",2583 +1995-02-01,"Commercial Consumption","Oregon","OR",2687 +1995-02-01,"Commercial Consumption","Virginia","VA",8210 +1995-02-01,"Commercial Consumption","Pennsylvania","PA",21364 +1995-02-01,"Commercial Consumption","Maine","ME",373 +1995-02-01,"Commercial Consumption","Nebraska","NE",2977 +1995-02-01,"Commercial Consumption","Louisiana","LA",3210 +1995-02-01,"Commercial Consumption","North Carolina","NC",6031 +1995-02-01,"Commercial Consumption","Oklahoma","OK",6001 +1995-02-01,"Commercial Consumption","Missouri","MO",10770 +1995-02-01,"Commercial Consumption","Montana","MT",1591 +1995-02-01,"Commercial Consumption","Florida","FL",4361 +1995-02-01,"Commercial Consumption","Hawaii","HI",180 +1995-02-01,"Commercial Consumption","Arkansas","AR",4171 +1995-02-01,"Commercial Consumption","Illinois","IL",30538 +1995-02-01,"Commercial Consumption","Colorado","CO",9146 +1995-02-01,"Commercial Consumption","Utah","UT",3324 +1995-02-01,"Commercial Consumption","New Mexico","NM",2396 +1995-02-01,"Commercial Consumption","New Hampshire","NH",999 +1995-02-01,"Commercial Consumption","Maryland","MD",7826 +1995-02-01,"Commercial Consumption","Alaska","AK",2727 +1995-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93599 +1995-02-01,"Residential Consumption","Nebraska","NE",7156 +1995-02-01,"Residential Consumption","Kansas","KS",11140 +1995-02-01,"Residential Consumption","Texas","TX",30036 +1995-02-01,"Residential Consumption","Utah","UT",6009 +1995-02-01,"Residential Consumption","New Mexico","NM",3968 +1995-02-01,"Residential Consumption","New Jersey","NJ",33594 +1995-02-01,"Residential Consumption","New Hampshire","NH",1024 +1995-02-01,"Residential Consumption","Montana","MT",2398 +1995-02-01,"Residential Consumption","Missouri","MO",22443 +1995-02-01,"Residential Consumption","West Virginia","WV",6546 +1995-02-01,"Residential Consumption","Minnesota","MN",19905 +1995-02-01,"Residential Consumption","Arkansas","AR",6900 +1995-02-01,"Residential Consumption","Kentucky","KY",10855 +1995-02-01,"Residential Consumption","Washington","WA",7028 +1995-02-01,"Residential Consumption","Delaware","DE",1487 +1995-02-01,"Residential Consumption","U.S.","U.S.",754491 +1995-02-01,"Residential Consumption","South Carolina","SC",5128 +1995-02-01,"Residential Consumption","Rhode Island","RI",2903 +1995-02-01,"Residential Consumption","Oregon","OR",3656 +1995-02-01,"Residential Consumption","Connecticut","CT",6577 +1995-02-01,"Residential Consumption","Vermont","VT",372 +1995-02-01,"Residential Consumption","Virginia","VA",12596 +1995-02-01,"Residential Consumption","South Dakota","SD",1867 +1995-02-01,"Residential Consumption","Nevada","NV",3102 +1995-02-01,"Residential Consumption","Maine","ME",139 +1995-02-01,"Residential Consumption","Indiana","IN",27283 +1995-02-01,"Residential Consumption","North Dakota","ND",1711 +1995-02-01,"Residential Consumption","California","CA",50614 +1995-02-01,"Residential Consumption","Alaska","AK",1923 +1995-02-01,"Residential Consumption","Mississippi","MS",4997 +1995-02-01,"Residential Consumption","Louisiana","LA",8860 +1995-02-01,"Residential Consumption","Hawaii","HI",52 +1995-02-01,"Residential Consumption","Idaho","ID",1760 +1995-02-01,"Residential Consumption","Iowa","IA",12569 +1995-02-01,"Residential Consumption","Wisconsin","WI",20703 +1995-02-01,"Residential Consumption","Michigan","MI",60358 +1995-02-01,"Residential Consumption","District of Columbia","DC",2877 +1995-02-01,"Residential Consumption","Pennsylvania","PA",45212 +1995-02-01,"Residential Consumption","North Carolina","NC",9632 +1995-02-01,"Residential Consumption","Georgia","GA",18858 +1995-02-01,"Residential Consumption","Massachusetts","MA",17398 +1995-02-01,"Residential Consumption","Colorado","CO",14457 +1995-02-01,"Residential Consumption","Oklahoma","OK",11495 +1995-02-01,"Residential Consumption","Alabama","AL",9200 +1995-02-01,"Residential Consumption","Wyoming","WY",1496 +1995-02-01,"Residential Consumption","New York","NY",60717 +1995-02-01,"Residential Consumption","Illinois","IL",74502 +1995-02-01,"Residential Consumption","Ohio","OH",58896 +1995-02-01,"Residential Consumption","Tennessee","TN",11830 +1995-02-01,"Residential Consumption","Maryland","MD",13230 +1995-02-01,"Residential Consumption","Florida","FL",2453 +1995-02-01,"Residential Consumption","Arizona","AZ",4576 +1995-03-01,"Commercial Consumption","Colorado","CO",7763 +1995-03-01,"Commercial Consumption","New Mexico","NM",2280 +1995-03-01,"Commercial Consumption","Wisconsin","WI",9761 +1995-03-01,"Commercial Consumption","Kansas","KS",5250 +1995-03-01,"Commercial Consumption","Georgia","GA",5870 +1995-03-01,"Commercial Consumption","Arkansas","AR",3478 +1995-03-01,"Commercial Consumption","Indiana","IN",9559 +1995-03-01,"Commercial Consumption","District of Columbia","DC",2089 +1995-03-01,"Commercial Consumption","Maryland","MD",4472 +1995-03-01,"Commercial Consumption","Florida","FL",3900 +1995-03-01,"Commercial Consumption","Alaska","AK",2896 +1995-03-01,"Commercial Consumption","Michigan","MI",23980 +1995-03-01,"Commercial Consumption","Oklahoma","OK",5160 +1995-03-01,"Commercial Consumption","Virginia","VA",6533 +1995-03-01,"Commercial Consumption","Massachusetts","MA",10005 +1995-03-01,"Commercial Consumption","Montana","MT",1654 +1995-03-01,"Commercial Consumption","Kentucky","KY",4486 +1995-03-01,"Commercial Consumption","Vermont","VT",352 +1995-03-01,"Commercial Consumption","Iowa","IA",5633 +1995-03-01,"Commercial Consumption","Washington","WA",5012 +1995-03-01,"Commercial Consumption","North Carolina","NC",4241 +1995-03-01,"Commercial Consumption","California","CA",23399 +1995-03-01,"Commercial Consumption","Nevada","NV",1868 +1995-03-01,"Commercial Consumption","Louisiana","LA",2746 +1995-03-01,"Commercial Consumption","West Virginia","WV",2793 +1995-03-01,"Commercial Consumption","Pennsylvania","PA",16824 +1995-03-01,"Commercial Consumption","Missouri","MO",8096 +1995-03-01,"Commercial Consumption","Maine","ME",288 +1995-03-01,"Commercial Consumption","New York","NY",28182 +1995-03-01,"Commercial Consumption","Mississippi","MS",2252 +1995-03-01,"Commercial Consumption","Tennessee","TN",5891 +1995-03-01,"Commercial Consumption","Illinois","IL",23332 +1995-03-01,"Commercial Consumption","Minnesota","MN",10569 +1995-03-01,"Commercial Consumption","Utah","UT",2948 +1995-03-01,"Commercial Consumption","U.S.","U.S.",342484 +1995-03-01,"Commercial Consumption","Texas","TX",22055 +1995-03-01,"Commercial Consumption","Alabama","AL",3432 +1995-03-01,"Commercial Consumption","Wyoming","WY",1217 +1995-03-01,"Commercial Consumption","South Carolina","SC",2111 +1995-03-01,"Commercial Consumption","North Dakota","ND",1470 +1995-03-01,"Commercial Consumption","South Dakota","SD",1315 +1995-03-01,"Commercial Consumption","New Jersey","NJ",17836 +1995-03-01,"Commercial Consumption","New Hampshire","NH",864 +1995-03-01,"Commercial Consumption","Hawaii","HI",185 +1995-03-01,"Commercial Consumption","Connecticut","CT",4972 +1995-03-01,"Commercial Consumption","Nebraska","NE",2455 +1995-03-01,"Commercial Consumption","Delaware","DE",854 +1995-03-01,"Commercial Consumption","Arizona","AZ",2703 +1995-03-01,"Commercial Consumption","Oregon","OR",2553 +1995-03-01,"Commercial Consumption","Rhode Island","RI",1883 +1995-03-01,"Commercial Consumption","Ohio","OH",21860 +1995-03-01,"Commercial Consumption","Idaho","ID",1154 +1995-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104004 +1995-03-01,"Residential Consumption","Iowa","IA",7941 +1995-03-01,"Residential Consumption","Maryland","MD",9542 +1995-03-01,"Residential Consumption","Nevada","NV",2189 +1995-03-01,"Residential Consumption","New Mexico","NM",2699 +1995-03-01,"Residential Consumption","Colorado","CO",12862 +1995-03-01,"Residential Consumption","Missouri","MO",16036 +1995-03-01,"Residential Consumption","Alabama","AL",7586 +1995-03-01,"Residential Consumption","Wyoming","WY",1453 +1995-03-01,"Residential Consumption","New York","NY",52596 +1995-03-01,"Residential Consumption","Texas","TX",26496 +1995-03-01,"Residential Consumption","Virginia","VA",8887 +1995-03-01,"Residential Consumption","Michigan","MI",49545 +1995-03-01,"Residential Consumption","Pennsylvania","PA",33973 +1995-03-01,"Residential Consumption","Washington","WA",6878 +1995-03-01,"Residential Consumption","South Carolina","SC",3604 +1995-03-01,"Residential Consumption","Massachusetts","MA",15059 +1995-03-01,"Residential Consumption","Arkansas","AR",5691 +1995-03-01,"Residential Consumption","Kansas","KS",9676 +1995-03-01,"Residential Consumption","Oklahoma","OK",10224 +1995-03-01,"Residential Consumption","California","CA",52461 +1995-03-01,"Residential Consumption","Alaska","AK",1912 +1995-03-01,"Residential Consumption","Louisiana","LA",6640 +1995-03-01,"Residential Consumption","Utah","UT",5407 +1995-03-01,"Residential Consumption","Nebraska","NE",6026 +1995-03-01,"Residential Consumption","Georgia","GA",10571 +1995-03-01,"Residential Consumption","Delaware","DE",1417 +1995-03-01,"Residential Consumption","West Virginia","WV",4592 +1995-03-01,"Residential Consumption","Mississippi","MS",3800 +1995-03-01,"Residential Consumption","Tennessee","TN",7907 +1995-03-01,"Residential Consumption","District of Columbia","DC",2239 +1995-03-01,"Residential Consumption","Florida","FL",1595 +1995-03-01,"Residential Consumption","Idaho","ID",1503 +1995-03-01,"Residential Consumption","New Jersey","NJ",25526 +1995-03-01,"Residential Consumption","U.S.","U.S.",600034 +1995-03-01,"Residential Consumption","Illinois","IL",54784 +1995-03-01,"Residential Consumption","Maine","ME",112 +1995-03-01,"Residential Consumption","Montana","MT",2441 +1995-03-01,"Residential Consumption","Kentucky","KY",7410 +1995-03-01,"Residential Consumption","Arizona","AZ",2846 +1995-03-01,"Residential Consumption","Oregon","OR",3532 +1995-03-01,"Residential Consumption","North Carolina","NC",6916 +1995-03-01,"Residential Consumption","Wisconsin","WI",15794 +1995-03-01,"Residential Consumption","Minnesota","MN",15592 +1995-03-01,"Residential Consumption","Indiana","IN",19515 +1995-03-01,"Residential Consumption","North Dakota","ND",1518 +1995-03-01,"Residential Consumption","New Hampshire","NH",917 +1995-03-01,"Residential Consumption","Rhode Island","RI",2634 +1995-03-01,"Residential Consumption","Ohio","OH",43659 +1995-03-01,"Residential Consumption","Hawaii","HI",52 +1995-03-01,"Residential Consumption","Connecticut","CT",5825 +1995-03-01,"Residential Consumption","Vermont","VT",333 +1995-03-01,"Residential Consumption","South Dakota","SD",1622 +1995-04-01,"Commercial Consumption","North Dakota","ND",1145 +1995-04-01,"Commercial Consumption","Colorado","CO",6413 +1995-04-01,"Commercial Consumption","Utah","UT",2429 +1995-04-01,"Commercial Consumption","New Mexico","NM",2006 +1995-04-01,"Commercial Consumption","South Dakota","SD",1049 +1995-04-01,"Commercial Consumption","Kentucky","KY",2090 +1995-04-01,"Commercial Consumption","Vermont","VT",277 +1995-04-01,"Commercial Consumption","Nebraska","NE",1742 +1995-04-01,"Commercial Consumption","Louisiana","LA",1840 +1995-04-01,"Commercial Consumption","Florida","FL",3433 +1995-04-01,"Commercial Consumption","Hawaii","HI",183 +1995-04-01,"Commercial Consumption","Delaware","DE",527 +1995-04-01,"Commercial Consumption","Tennessee","TN",3131 +1995-04-01,"Commercial Consumption","Nevada","NV",1784 +1995-04-01,"Commercial Consumption","West Virginia","WV",2021 +1995-04-01,"Commercial Consumption","Missouri","MO",4806 +1995-04-01,"Commercial Consumption","Maine","ME",211 +1995-04-01,"Commercial Consumption","Alaska","AK",2362 +1995-04-01,"Commercial Consumption","Indiana","IN",6546 +1995-04-01,"Commercial Consumption","Wyoming","WY",987 +1995-04-01,"Commercial Consumption","Oklahoma","OK",2968 +1995-04-01,"Commercial Consumption","New Jersey","NJ",12498 +1995-04-01,"Commercial Consumption","New Hampshire","NH",632 +1995-04-01,"Commercial Consumption","Texas","TX",18230 +1995-04-01,"Commercial Consumption","Maryland","MD",3736 +1995-04-01,"Commercial Consumption","Kansas","KS",3756 +1995-04-01,"Commercial Consumption","Pennsylvania","PA",11960 +1995-04-01,"Commercial Consumption","Massachusetts","MA",7717 +1995-04-01,"Commercial Consumption","Wisconsin","WI",7173 +1995-04-01,"Commercial Consumption","Alabama","AL",1963 +1995-04-01,"Commercial Consumption","New York","NY",20813 +1995-04-01,"Commercial Consumption","Mississippi","MS",1295 +1995-04-01,"Commercial Consumption","Arizona","AZ",2556 +1995-04-01,"Commercial Consumption","District of Columbia","DC",1607 +1995-04-01,"Commercial Consumption","Washington","WA",3915 +1995-04-01,"Commercial Consumption","Minnesota","MN",7759 +1995-04-01,"Commercial Consumption","Oregon","OR",2064 +1995-04-01,"Commercial Consumption","Virginia","VA",4532 +1995-04-01,"Commercial Consumption","U.S.","U.S.",253763 +1995-04-01,"Commercial Consumption","Rhode Island","RI",1353 +1995-04-01,"Commercial Consumption","Iowa","IA",4189 +1995-04-01,"Commercial Consumption","Connecticut","CT",3524 +1995-04-01,"Commercial Consumption","Arkansas","AR",2027 +1995-04-01,"Commercial Consumption","Georgia","GA",3739 +1995-04-01,"Commercial Consumption","Idaho","ID",951 +1995-04-01,"Commercial Consumption","South Carolina","SC",1382 +1995-04-01,"Commercial Consumption","North Carolina","NC",3065 +1995-04-01,"Commercial Consumption","Montana","MT",1245 +1995-04-01,"Commercial Consumption","Ohio","OH",14128 +1995-04-01,"Commercial Consumption","California","CA",23976 +1995-04-01,"Commercial Consumption","Michigan","MI",18384 +1995-04-01,"Commercial Consumption","Illinois","IL",15643 +1995-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100073 +1995-04-01,"Residential Consumption","Louisiana","LA",3731 +1995-04-01,"Residential Consumption","Michigan","MI",36085 +1995-04-01,"Residential Consumption","New Mexico","NM",2282 +1995-04-01,"Residential Consumption","Massachusetts","MA",10980 +1995-04-01,"Residential Consumption","New Jersey","NJ",17191 +1995-04-01,"Residential Consumption","Kentucky","KY",3655 +1995-04-01,"Residential Consumption","Oklahoma","OK",5294 +1995-04-01,"Residential Consumption","Texas","TX",14952 +1995-04-01,"Residential Consumption","Connecticut","CT",4156 +1995-04-01,"Residential Consumption","Pennsylvania","PA",23525 +1995-04-01,"Residential Consumption","Missouri","MO",9399 +1995-04-01,"Residential Consumption","Wyoming","WY",1200 +1995-04-01,"Residential Consumption","West Virginia","WV",3173 +1995-04-01,"Residential Consumption","Rhode Island","RI",1834 +1995-04-01,"Residential Consumption","Wisconsin","WI",12184 +1995-04-01,"Residential Consumption","Maryland","MD",6097 +1995-04-01,"Residential Consumption","Nevada","NV",2156 +1995-04-01,"Residential Consumption","Maine","ME",81 +1995-04-01,"Residential Consumption","Idaho","ID",1274 +1995-04-01,"Residential Consumption","New Hampshire","NH",688 +1995-04-01,"Residential Consumption","Georgia","GA",6026 +1995-04-01,"Residential Consumption","Colorado","CO",9879 +1995-04-01,"Residential Consumption","U.S.","U.S.",418820 +1995-04-01,"Residential Consumption","New York","NY",38254 +1995-04-01,"Residential Consumption","Illinois","IL",42392 +1995-04-01,"Residential Consumption","South Carolina","SC",1584 +1995-04-01,"Residential Consumption","Vermont","VT",266 +1995-04-01,"Residential Consumption","Minnesota","MN",11393 +1995-04-01,"Residential Consumption","District of Columbia","DC",1299 +1995-04-01,"Residential Consumption","Montana","MT",1796 +1995-04-01,"Residential Consumption","Alaska","AK",1573 +1995-04-01,"Residential Consumption","Oregon","OR",2783 +1995-04-01,"Residential Consumption","Tennessee","TN",3361 +1995-04-01,"Residential Consumption","Indiana","IN",13049 +1995-04-01,"Residential Consumption","Florida","FL",1122 +1995-04-01,"Residential Consumption","North Dakota","ND",1190 +1995-04-01,"Residential Consumption","Arkansas","AR",2973 +1995-04-01,"Residential Consumption","Washington","WA",5064 +1995-04-01,"Residential Consumption","Delaware","DE",865 +1995-04-01,"Residential Consumption","Alabama","AL",3692 +1995-04-01,"Residential Consumption","Mississippi","MS",1770 +1995-04-01,"Residential Consumption","Hawaii","HI",50 +1995-04-01,"Residential Consumption","Virginia","VA",4876 +1995-04-01,"Residential Consumption","Utah","UT",4336 +1995-04-01,"Residential Consumption","Nebraska","NE",4284 +1995-04-01,"Residential Consumption","South Dakota","SD",1255 +1995-04-01,"Residential Consumption","California","CA",43743 +1995-04-01,"Residential Consumption","Arizona","AZ",2428 +1995-04-01,"Residential Consumption","Ohio","OH",30852 +1995-04-01,"Residential Consumption","North Carolina","NC",3644 +1995-04-01,"Residential Consumption","Iowa","IA",7377 +1995-04-01,"Residential Consumption","Kansas","KS",5711 +1995-05-01,"Commercial Consumption","North Dakota","ND",673 +1995-05-01,"Commercial Consumption","Minnesota","MN",4303 +1995-05-01,"Commercial Consumption","Colorado","CO",5776 +1995-05-01,"Commercial Consumption","New Mexico","NM",2105 +1995-05-01,"Commercial Consumption","Pennsylvania","PA",7223 +1995-05-01,"Commercial Consumption","Vermont","VT",140 +1995-05-01,"Commercial Consumption","Nebraska","NE",1320 +1995-05-01,"Commercial Consumption","Louisiana","LA",1576 +1995-05-01,"Commercial Consumption","South Carolina","SC",1045 +1995-05-01,"Commercial Consumption","U.S.","U.S.",184318 +1995-05-01,"Commercial Consumption","Georgia","GA",2918 +1995-05-01,"Commercial Consumption","Ohio","OH",8132 +1995-05-01,"Commercial Consumption","Idaho","ID",708 +1995-05-01,"Commercial Consumption","California","CA",24831 +1995-05-01,"Commercial Consumption","Alabama","AL",1454 +1995-05-01,"Commercial Consumption","Mississippi","MS",1070 +1995-05-01,"Commercial Consumption","West Virginia","WV",1392 +1995-05-01,"Commercial Consumption","Oregon","OR",1579 +1995-05-01,"Commercial Consumption","Texas","TX",16425 +1995-05-01,"Commercial Consumption","Delaware","DE",341 +1995-05-01,"Commercial Consumption","Tennessee","TN",2348 +1995-05-01,"Commercial Consumption","Nevada","NV",1558 +1995-05-01,"Commercial Consumption","Indiana","IN",4048 +1995-05-01,"Commercial Consumption","Illinois","IL",9135 +1995-05-01,"Commercial Consumption","Washington","WA",2857 +1995-05-01,"Commercial Consumption","South Dakota","SD",645 +1995-05-01,"Commercial Consumption","New Jersey","NJ",8377 +1995-05-01,"Commercial Consumption","Maryland","MD",2388 +1995-05-01,"Commercial Consumption","Arkansas","AR",1337 +1995-05-01,"Commercial Consumption","Wyoming","WY",873 +1995-05-01,"Commercial Consumption","North Carolina","NC",1766 +1995-05-01,"Commercial Consumption","Utah","UT",1675 +1995-05-01,"Commercial Consumption","Oklahoma","OK",2354 +1995-05-01,"Commercial Consumption","Massachusetts","MA",5319 +1995-05-01,"Commercial Consumption","Wisconsin","WI",4250 +1995-05-01,"Commercial Consumption","Michigan","MI",11004 +1995-05-01,"Commercial Consumption","Virginia","VA",3329 +1995-05-01,"Commercial Consumption","Kentucky","KY",1687 +1995-05-01,"Commercial Consumption","Florida","FL",3055 +1995-05-01,"Commercial Consumption","Hawaii","HI",185 +1995-05-01,"Commercial Consumption","New Hampshire","NH",369 +1995-05-01,"Commercial Consumption","Montana","MT",872 +1995-05-01,"Commercial Consumption","Kansas","KS",2912 +1995-05-01,"Commercial Consumption","Iowa","IA",2321 +1995-05-01,"Commercial Consumption","Alaska","AK",1603 +1995-05-01,"Commercial Consumption","New York","NY",14459 +1995-05-01,"Commercial Consumption","District of Columbia","DC",1158 +1995-05-01,"Commercial Consumption","Missouri","MO",3512 +1995-05-01,"Commercial Consumption","Maine","ME",128 +1995-05-01,"Commercial Consumption","Rhode Island","RI",901 +1995-05-01,"Commercial Consumption","Connecticut","CT",2629 +1995-05-01,"Commercial Consumption","Arizona","AZ",2251 +1995-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102792 +1995-05-01,"Residential Consumption","Oregon","OR",2048 +1995-05-01,"Residential Consumption","Ohio","OH",16763 +1995-05-01,"Residential Consumption","North Carolina","NC",1882 +1995-05-01,"Residential Consumption","Iowa","IA",4303 +1995-05-01,"Residential Consumption","Vermont","VT",136 +1995-05-01,"Residential Consumption","South Dakota","SD",782 +1995-05-01,"Residential Consumption","Minnesota","MN",6033 +1995-05-01,"Residential Consumption","Oklahoma","OK",4033 +1995-05-01,"Residential Consumption","Missouri","MO",6828 +1995-05-01,"Residential Consumption","U.S.","U.S.",260367 +1995-05-01,"Residential Consumption","Utah","UT",2965 +1995-05-01,"Residential Consumption","New Mexico","NM",1734 +1995-05-01,"Residential Consumption","Maine","ME",48 +1995-05-01,"Residential Consumption","Idaho","ID",915 +1995-05-01,"Residential Consumption","Arkansas","AR",1881 +1995-05-01,"Residential Consumption","California","CA",38489 +1995-05-01,"Residential Consumption","Arizona","AZ",1824 +1995-05-01,"Residential Consumption","West Virginia","WV",1776 +1995-05-01,"Residential Consumption","Hawaii","HI",49 +1995-05-01,"Residential Consumption","Virginia","VA",2830 +1995-05-01,"Residential Consumption","Nebraska","NE",2967 +1995-05-01,"Residential Consumption","Maryland","MD",3664 +1995-05-01,"Residential Consumption","Florida","FL",841 +1995-05-01,"Residential Consumption","Delaware","DE",501 +1995-05-01,"Residential Consumption","Alabama","AL",2206 +1995-05-01,"Residential Consumption","Louisiana","LA",2434 +1995-05-01,"Residential Consumption","North Dakota","ND",706 +1995-05-01,"Residential Consumption","New Jersey","NJ",9274 +1995-05-01,"Residential Consumption","Montana","MT",1264 +1995-05-01,"Residential Consumption","Colorado","CO",9143 +1995-05-01,"Residential Consumption","Washington","WA",3088 +1995-05-01,"Residential Consumption","Texas","TX",9947 +1995-05-01,"Residential Consumption","Mississippi","MS",1178 +1995-05-01,"Residential Consumption","Nevada","NV",1568 +1995-05-01,"Residential Consumption","Indiana","IN",7364 +1995-05-01,"Residential Consumption","Alaska","AK",943 +1995-05-01,"Residential Consumption","Wyoming","WY",1006 +1995-05-01,"Residential Consumption","South Carolina","SC",746 +1995-05-01,"Residential Consumption","Wisconsin","WI",5804 +1995-05-01,"Residential Consumption","District of Columbia","DC",813 +1995-05-01,"Residential Consumption","Pennsylvania","PA",12140 +1995-05-01,"Residential Consumption","Rhode Island","RI",1195 +1995-05-01,"Residential Consumption","Massachusetts","MA",6194 +1995-05-01,"Residential Consumption","Kansas","KS",3902 +1995-05-01,"Residential Consumption","Illinois","IL",20203 +1995-05-01,"Residential Consumption","Connecticut","CT",2402 +1995-05-01,"Residential Consumption","Tennessee","TN",2007 +1995-05-01,"Residential Consumption","Michigan","MI",21477 +1995-05-01,"Residential Consumption","Georgia","GA",3961 +1995-05-01,"Residential Consumption","New Hampshire","NH",376 +1995-05-01,"Residential Consumption","Kentucky","KY",2403 +1995-05-01,"Residential Consumption","New York","NY",23334 +1995-06-01,"Commercial Consumption","Wyoming","WY",594 +1995-06-01,"Commercial Consumption","New York","NY",11501 +1995-06-01,"Commercial Consumption","Nebraska","NE",1003 +1995-06-01,"Commercial Consumption","Indiana","IN",2442 +1995-06-01,"Commercial Consumption","Washington","WA",2179 +1995-06-01,"Commercial Consumption","South Carolina","SC",1013 +1995-06-01,"Commercial Consumption","New Mexico","NM",1408 +1995-06-01,"Commercial Consumption","Massachusetts","MA",3930 +1995-06-01,"Commercial Consumption","Wisconsin","WI",1833 +1995-06-01,"Commercial Consumption","Kentucky","KY",1060 +1995-06-01,"Commercial Consumption","Rhode Island","RI",562 +1995-06-01,"Commercial Consumption","Arkansas","AR",1156 +1995-06-01,"Commercial Consumption","Delaware","DE",223 +1995-06-01,"Commercial Consumption","Tennessee","TN",2023 +1995-06-01,"Commercial Consumption","District of Columbia","DC",884 +1995-06-01,"Commercial Consumption","Minnesota","MN",2618 +1995-06-01,"Commercial Consumption","Pennsylvania","PA",4435 +1995-06-01,"Commercial Consumption","Missouri","MO",2326 +1995-06-01,"Commercial Consumption","Montana","MT",488 +1995-06-01,"Commercial Consumption","Maine","ME",77 +1995-06-01,"Commercial Consumption","Texas","TX",12301 +1995-06-01,"Commercial Consumption","Alaska","AK",1489 +1995-06-01,"Commercial Consumption","Alabama","AL",1242 +1995-06-01,"Commercial Consumption","Louisiana","LA",1555 +1995-06-01,"Commercial Consumption","West Virginia","WV",1055 +1995-06-01,"Commercial Consumption","Georgia","GA",2615 +1995-06-01,"Commercial Consumption","Ohio","OH",4979 +1995-06-01,"Commercial Consumption","Iowa","IA",1484 +1995-06-01,"Commercial Consumption","South Dakota","SD",400 +1995-06-01,"Commercial Consumption","Kansas","KS",1843 +1995-06-01,"Commercial Consumption","Oregon","OR",1160 +1995-06-01,"Commercial Consumption","Virginia","VA",2533 +1995-06-01,"Commercial Consumption","New Jersey","NJ",5624 +1995-06-01,"Commercial Consumption","New Hampshire","NH",227 +1995-06-01,"Commercial Consumption","Connecticut","CT",1917 +1995-06-01,"Commercial Consumption","Mississippi","MS",1074 +1995-06-01,"Commercial Consumption","Nevada","NV",1268 +1995-06-01,"Commercial Consumption","Illinois","IL",6157 +1995-06-01,"Commercial Consumption","North Dakota","ND",408 +1995-06-01,"Commercial Consumption","North Carolina","NC",1579 +1995-06-01,"Commercial Consumption","Oklahoma","OK",1794 +1995-06-01,"Commercial Consumption","U.S.","U.S.",132746 +1995-06-01,"Commercial Consumption","California","CA",19028 +1995-06-01,"Commercial Consumption","Colorado","CO",4061 +1995-06-01,"Commercial Consumption","Utah","UT",1122 +1995-06-01,"Commercial Consumption","Maryland","MD",1994 +1995-06-01,"Commercial Consumption","Florida","FL",2930 +1995-06-01,"Commercial Consumption","Vermont","VT",89 +1995-06-01,"Commercial Consumption","Idaho","ID",487 +1995-06-01,"Commercial Consumption","Hawaii","HI",188 +1995-06-01,"Commercial Consumption","Arizona","AZ",2014 +1995-06-01,"Commercial Consumption","Michigan","MI",6372 +1995-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98559 +1995-06-01,"Residential Consumption","Texas","TX",8008 +1995-06-01,"Residential Consumption","Vermont","VT",79 +1995-06-01,"Residential Consumption","Nevada","NV",1087 +1995-06-01,"Residential Consumption","District of Columbia","DC",472 +1995-06-01,"Residential Consumption","Delaware","DE",264 +1995-06-01,"Residential Consumption","Wyoming","WY",681 +1995-06-01,"Residential Consumption","Mississippi","MS",892 +1995-06-01,"Residential Consumption","Wisconsin","WI",3488 +1995-06-01,"Residential Consumption","Minnesota","MN",3405 +1995-06-01,"Residential Consumption","New Mexico","NM",1371 +1995-06-01,"Residential Consumption","North Dakota","ND",390 +1995-06-01,"Residential Consumption","Massachusetts","MA",3606 +1995-06-01,"Residential Consumption","West Virginia","WV",702 +1995-06-01,"Residential Consumption","New York","NY",13817 +1995-06-01,"Residential Consumption","Rhode Island","RI",711 +1995-06-01,"Residential Consumption","Louisiana","LA",2219 +1995-06-01,"Residential Consumption","Michigan","MI",10470 +1995-06-01,"Residential Consumption","South Dakota","SD",408 +1995-06-01,"Residential Consumption","New Hampshire","NH",225 +1995-06-01,"Residential Consumption","Montana","MT",704 +1995-06-01,"Residential Consumption","Oklahoma","OK",2302 +1995-06-01,"Residential Consumption","U.S.","U.S.",158908 +1995-06-01,"Residential Consumption","Iowa","IA",1334 +1995-06-01,"Residential Consumption","Florida","FL",748 +1995-06-01,"Residential Consumption","Maine","ME",28 +1995-06-01,"Residential Consumption","Indiana","IN",3701 +1995-06-01,"Residential Consumption","California","CA",28924 +1995-06-01,"Residential Consumption","Arizona","AZ",1248 +1995-06-01,"Residential Consumption","Maryland","MD",2228 +1995-06-01,"Residential Consumption","Washington","WA",1926 +1995-06-01,"Residential Consumption","South Carolina","SC",510 +1995-06-01,"Residential Consumption","Oregon","OR",1084 +1995-06-01,"Residential Consumption","Ohio","OH",8575 +1995-06-01,"Residential Consumption","North Carolina","NC",1095 +1995-06-01,"Residential Consumption","Connecticut","CT",1393 +1995-06-01,"Residential Consumption","Tennessee","TN",1350 +1995-06-01,"Residential Consumption","Utah","UT",1956 +1995-06-01,"Residential Consumption","Nebraska","NE",1587 +1995-06-01,"Residential Consumption","Pennsylvania","PA",6588 +1995-06-01,"Residential Consumption","New Jersey","NJ",5427 +1995-06-01,"Residential Consumption","Kentucky","KY",1129 +1995-06-01,"Residential Consumption","Colorado","CO",6098 +1995-06-01,"Residential Consumption","Kansas","KS",2078 +1995-06-01,"Residential Consumption","Alabama","AL",1565 +1995-06-01,"Residential Consumption","Alaska","AK",680 +1995-06-01,"Residential Consumption","Illinois","IL",12034 +1995-06-01,"Residential Consumption","Hawaii","HI",50 +1995-06-01,"Residential Consumption","Virginia","VA",1626 +1995-06-01,"Residential Consumption","Georgia","GA",3206 +1995-06-01,"Residential Consumption","Idaho","ID",539 +1995-06-01,"Residential Consumption","Arkansas","AR",1243 +1995-06-01,"Residential Consumption","Missouri","MO",3659 +1995-07-01,"Commercial Consumption","West Virginia","WV",998 +1995-07-01,"Commercial Consumption","North Carolina","NC",1487 +1995-07-01,"Commercial Consumption","Colorado","CO",2634 +1995-07-01,"Commercial Consumption","Montana","MT",404 +1995-07-01,"Commercial Consumption","U.S.","U.S.",132500 +1995-07-01,"Commercial Consumption","Kansas","KS",2294 +1995-07-01,"Commercial Consumption","Iowa","IA",1310 +1995-07-01,"Commercial Consumption","Connecticut","CT",1679 +1995-07-01,"Commercial Consumption","Indiana","IN",2230 +1995-07-01,"Commercial Consumption","South Carolina","SC",950 +1995-07-01,"Commercial Consumption","Utah","UT",861 +1995-07-01,"Commercial Consumption","New Jersey","NJ",5615 +1995-07-01,"Commercial Consumption","California","CA",21954 +1995-07-01,"Commercial Consumption","Arkansas","AR",1015 +1995-07-01,"Commercial Consumption","Michigan","MI",5664 +1995-07-01,"Commercial Consumption","District of Columbia","DC",820 +1995-07-01,"Commercial Consumption","New Mexico","NM",1073 +1995-07-01,"Commercial Consumption","Pennsylvania","PA",3929 +1995-07-01,"Commercial Consumption","Maryland","MD",1612 +1995-07-01,"Commercial Consumption","Florida","FL",2970 +1995-07-01,"Commercial Consumption","Vermont","VT",70 +1995-07-01,"Commercial Consumption","Idaho","ID",361 +1995-07-01,"Commercial Consumption","New York","NY",11281 +1995-07-01,"Commercial Consumption","Mississippi","MS",902 +1995-07-01,"Commercial Consumption","Nevada","NV",1082 +1995-07-01,"Commercial Consumption","Louisiana","LA",1215 +1995-07-01,"Commercial Consumption","Illinois","IL",6035 +1995-07-01,"Commercial Consumption","Washington","WA",1750 +1995-07-01,"Commercial Consumption","Missouri","MO",2050 +1995-07-01,"Commercial Consumption","Massachusetts","MA",3386 +1995-07-01,"Commercial Consumption","Wisconsin","WI",1916 +1995-07-01,"Commercial Consumption","South Dakota","SD",311 +1995-07-01,"Commercial Consumption","New Hampshire","NH",188 +1995-07-01,"Commercial Consumption","Kentucky","KY",1130 +1995-07-01,"Commercial Consumption","Arizona","AZ",1840 +1995-07-01,"Commercial Consumption","Tennessee","TN",1917 +1995-07-01,"Commercial Consumption","Georgia","GA",2519 +1995-07-01,"Commercial Consumption","Ohio","OH",4697 +1995-07-01,"Commercial Consumption","Rhode Island","RI",413 +1995-07-01,"Commercial Consumption","Alabama","AL",1149 +1995-07-01,"Commercial Consumption","Wyoming","WY",373 +1995-07-01,"Commercial Consumption","North Dakota","ND",341 +1995-07-01,"Commercial Consumption","Virginia","VA",2341 +1995-07-01,"Commercial Consumption","Maine","ME",70 +1995-07-01,"Commercial Consumption","Texas","TX",16809 +1995-07-01,"Commercial Consumption","Alaska","AK",1325 +1995-07-01,"Commercial Consumption","Nebraska","NE",2436 +1995-07-01,"Commercial Consumption","Delaware","DE",182 +1995-07-01,"Commercial Consumption","Minnesota","MN",2212 +1995-07-01,"Commercial Consumption","Oregon","OR",959 +1995-07-01,"Commercial Consumption","Oklahoma","OK",1558 +1995-07-01,"Commercial Consumption","Hawaii","HI",186 +1995-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101373 +1995-07-01,"Residential Consumption","Mississippi","MS",841 +1995-07-01,"Residential Consumption","Idaho","ID",338 +1995-07-01,"Residential Consumption","Arizona","AZ",969 +1995-07-01,"Residential Consumption","New York","NY",10010 +1995-07-01,"Residential Consumption","South Carolina","SC",472 +1995-07-01,"Residential Consumption","North Carolina","NC",976 +1995-07-01,"Residential Consumption","Virginia","VA",1494 +1995-07-01,"Residential Consumption","Maryland","MD",1945 +1995-07-01,"Residential Consumption","Georgia","GA",3002 +1995-07-01,"Residential Consumption","New Mexico","NM",757 +1995-07-01,"Residential Consumption","Florida","FL",716 +1995-07-01,"Residential Consumption","Washington","WA",1361 +1995-07-01,"Residential Consumption","Oregon","OR",808 +1995-07-01,"Residential Consumption","Louisiana","LA",1758 +1995-07-01,"Residential Consumption","Nebraska","NE",1035 +1995-07-01,"Residential Consumption","Minnesota","MN",2584 +1995-07-01,"Residential Consumption","Kansas","KS",1829 +1995-07-01,"Residential Consumption","California","CA",25181 +1995-07-01,"Residential Consumption","Wyoming","WY",347 +1995-07-01,"Residential Consumption","Texas","TX",7545 +1995-07-01,"Residential Consumption","Ohio","OH",7097 +1995-07-01,"Residential Consumption","Iowa","IA",1380 +1995-07-01,"Residential Consumption","Connecticut","CT",1045 +1995-07-01,"Residential Consumption","Vermont","VT",49 +1995-07-01,"Residential Consumption","New Jersey","NJ",4768 +1995-07-01,"Residential Consumption","Hawaii","HI",47 +1995-07-01,"Residential Consumption","Utah","UT",1386 +1995-07-01,"Residential Consumption","South Dakota","SD",271 +1995-07-01,"Residential Consumption","Maine","ME",24 +1995-07-01,"Residential Consumption","New Hampshire","NH",160 +1995-07-01,"Residential Consumption","Rhode Island","RI",448 +1995-07-01,"Residential Consumption","Tennessee","TN",1149 +1995-07-01,"Residential Consumption","Montana","MT",532 +1995-07-01,"Residential Consumption","Missouri","MO",2869 +1995-07-01,"Residential Consumption","Delaware","DE",197 +1995-07-01,"Residential Consumption","West Virginia","WV",574 +1995-07-01,"Residential Consumption","Wisconsin","WI",2699 +1995-07-01,"Residential Consumption","Michigan","MI",7955 +1995-07-01,"Residential Consumption","Nevada","NV",801 +1995-07-01,"Residential Consumption","Indiana","IN",3083 +1995-07-01,"Residential Consumption","North Dakota","ND",235 +1995-07-01,"Residential Consumption","Massachusetts","MA",2642 +1995-07-01,"Residential Consumption","Colorado","CO",3590 +1995-07-01,"Residential Consumption","Oklahoma","OK",1833 +1995-07-01,"Residential Consumption","Alaska","AK",534 +1995-07-01,"Residential Consumption","U.S.","U.S.",130717 +1995-07-01,"Residential Consumption","Illinois","IL",11706 +1995-07-01,"Residential Consumption","District of Columbia","DC",431 +1995-07-01,"Residential Consumption","Pennsylvania","PA",5638 +1995-07-01,"Residential Consumption","Arkansas","AR",997 +1995-07-01,"Residential Consumption","Kentucky","KY",1208 +1995-07-01,"Residential Consumption","Alabama","AL",1401 +1995-08-01,"Commercial Consumption","South Carolina","SC",956 +1995-08-01,"Commercial Consumption","South Dakota","SD",263 +1995-08-01,"Commercial Consumption","New Jersey","NJ",5307 +1995-08-01,"Commercial Consumption","Rhode Island","RI",582 +1995-08-01,"Commercial Consumption","Idaho","ID",346 +1995-08-01,"Commercial Consumption","Delaware","DE",168 +1995-08-01,"Commercial Consumption","Nevada","NV",978 +1995-08-01,"Commercial Consumption","Michigan","MI",5778 +1995-08-01,"Commercial Consumption","Louisiana","LA",1307 +1995-08-01,"Commercial Consumption","Pennsylvania","PA",3935 +1995-08-01,"Commercial Consumption","Florida","FL",2751 +1995-08-01,"Commercial Consumption","Connecticut","CT",1869 +1995-08-01,"Commercial Consumption","Arkansas","AR",1021 +1995-08-01,"Commercial Consumption","Alabama","AL",1110 +1995-08-01,"Commercial Consumption","New York","NY",10797 +1995-08-01,"Commercial Consumption","New Mexico","NM",1119 +1995-08-01,"Commercial Consumption","Montana","MT",376 +1995-08-01,"Commercial Consumption","Maine","ME",71 +1995-08-01,"Commercial Consumption","Kansas","KS",3564 +1995-08-01,"Commercial Consumption","California","CA",18362 +1995-08-01,"Commercial Consumption","North Dakota","ND",324 +1995-08-01,"Commercial Consumption","Colorado","CO",2314 +1995-08-01,"Commercial Consumption","New Hampshire","NH",166 +1995-08-01,"Commercial Consumption","Georgia","GA",2781 +1995-08-01,"Commercial Consumption","Vermont","VT",72 +1995-08-01,"Commercial Consumption","Ohio","OH",4406 +1995-08-01,"Commercial Consumption","Mississippi","MS",1202 +1995-08-01,"Commercial Consumption","Tennessee","TN",2079 +1995-08-01,"Commercial Consumption","Indiana","IN",2328 +1995-08-01,"Commercial Consumption","Oklahoma","OK",1524 +1995-08-01,"Commercial Consumption","Missouri","MO",2019 +1995-08-01,"Commercial Consumption","Wisconsin","WI",2214 +1995-08-01,"Commercial Consumption","Kentucky","KY",1099 +1995-08-01,"Commercial Consumption","Alaska","AK",1301 +1995-08-01,"Commercial Consumption","District of Columbia","DC",744 +1995-08-01,"Commercial Consumption","Washington","WA",1654 +1995-08-01,"Commercial Consumption","Virginia","VA",2473 +1995-08-01,"Commercial Consumption","Hawaii","HI",178 +1995-08-01,"Commercial Consumption","Nebraska","NE",2997 +1995-08-01,"Commercial Consumption","Illinois","IL",6612 +1995-08-01,"Commercial Consumption","North Carolina","NC",1475 +1995-08-01,"Commercial Consumption","Massachusetts","MA",3344 +1995-08-01,"Commercial Consumption","Maryland","MD",1722 +1995-08-01,"Commercial Consumption","Iowa","IA",1150 +1995-08-01,"Commercial Consumption","Wyoming","WY",258 +1995-08-01,"Commercial Consumption","West Virginia","WV",1056 +1995-08-01,"Commercial Consumption","Minnesota","MN",2156 +1995-08-01,"Commercial Consumption","Utah","UT",899 +1995-08-01,"Commercial Consumption","Oregon","OR",879 +1995-08-01,"Commercial Consumption","U.S.","U.S.",130493 +1995-08-01,"Commercial Consumption","Texas","TX",16588 +1995-08-01,"Commercial Consumption","Arizona","AZ",1817 +1995-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101272 +1995-08-01,"Residential Consumption","Wisconsin","WI",2698 +1995-08-01,"Residential Consumption","Tennessee","TN",1054 +1995-08-01,"Residential Consumption","Michigan","MI",7101 +1995-08-01,"Residential Consumption","New Mexico","NM",815 +1995-08-01,"Residential Consumption","Maine","ME",24 +1995-08-01,"Residential Consumption","Connecticut","CT",884 +1995-08-01,"Residential Consumption","Montana","MT",447 +1995-08-01,"Residential Consumption","Alaska","AK",448 +1995-08-01,"Residential Consumption","West Virginia","WV",560 +1995-08-01,"Residential Consumption","Oregon","OR",654 +1995-08-01,"Residential Consumption","Louisiana","LA",1691 +1995-08-01,"Residential Consumption","Vermont","VT",42 +1995-08-01,"Residential Consumption","Nevada","NV",655 +1995-08-01,"Residential Consumption","Massachusetts","MA",2358 +1995-08-01,"Residential Consumption","Colorado","CO",2681 +1995-08-01,"Residential Consumption","Oklahoma","OK",1552 +1995-08-01,"Residential Consumption","California","CA",21306 +1995-08-01,"Residential Consumption","Alabama","AL",1299 +1995-08-01,"Residential Consumption","North Carolina","NC",799 +1995-08-01,"Residential Consumption","Hawaii","HI",43 +1995-08-01,"Residential Consumption","Virginia","VA",1459 +1995-08-01,"Residential Consumption","Utah","UT",1422 +1995-08-01,"Residential Consumption","Minnesota","MN",2395 +1995-08-01,"Residential Consumption","Pennsylvania","PA",5084 +1995-08-01,"Residential Consumption","Florida","FL",641 +1995-08-01,"Residential Consumption","Arkansas","AR",930 +1995-08-01,"Residential Consumption","Kansas","KS",1654 +1995-08-01,"Residential Consumption","Missouri","MO",2394 +1995-08-01,"Residential Consumption","Arizona","AZ",859 +1995-08-01,"Residential Consumption","New York","NY",7634 +1995-08-01,"Residential Consumption","Rhode Island","RI",448 +1995-08-01,"Residential Consumption","Ohio","OH",6298 +1995-08-01,"Residential Consumption","Nebraska","NE",906 +1995-08-01,"Residential Consumption","Kentucky","KY",1120 +1995-08-01,"Residential Consumption","Delaware","DE",177 +1995-08-01,"Residential Consumption","Iowa","IA",1252 +1995-08-01,"Residential Consumption","Georgia","GA",3000 +1995-08-01,"Residential Consumption","New Hampshire","NH",135 +1995-08-01,"Residential Consumption","U.S.","U.S.",114415 +1995-08-01,"Residential Consumption","South Carolina","SC",397 +1995-08-01,"Residential Consumption","Mississippi","MS",811 +1995-08-01,"Residential Consumption","District of Columbia","DC",379 +1995-08-01,"Residential Consumption","Indiana","IN",2826 +1995-08-01,"Residential Consumption","Idaho","ID",254 +1995-08-01,"Residential Consumption","Illinois","IL",9950 +1995-08-01,"Residential Consumption","Texas","TX",6707 +1995-08-01,"Residential Consumption","Maryland","MD",1882 +1995-08-01,"Residential Consumption","South Dakota","SD",206 +1995-08-01,"Residential Consumption","North Dakota","ND",183 +1995-08-01,"Residential Consumption","New Jersey","NJ",4378 +1995-08-01,"Residential Consumption","Washington","WA",1251 +1995-08-01,"Residential Consumption","Wyoming","WY",271 +1995-09-01,"Commercial Consumption","Oregon","OR",979 +1995-09-01,"Commercial Consumption","Oklahoma","OK",1903 +1995-09-01,"Commercial Consumption","Virginia","VA",2147 +1995-09-01,"Commercial Consumption","Michigan","MI",6417 +1995-09-01,"Commercial Consumption","Indiana","IN",2645 +1995-09-01,"Commercial Consumption","Illinois","IL",6984 +1995-09-01,"Commercial Consumption","South Carolina","SC",1044 +1995-09-01,"Commercial Consumption","Minnesota","MN",2864 +1995-09-01,"Commercial Consumption","Massachusetts","MA",3525 +1995-09-01,"Commercial Consumption","New Jersey","NJ",5734 +1995-09-01,"Commercial Consumption","Iowa","IA",1701 +1995-09-01,"Commercial Consumption","Hawaii","HI",179 +1995-09-01,"Commercial Consumption","Colorado","CO",2210 +1995-09-01,"Commercial Consumption","Missouri","MO",2119 +1995-09-01,"Commercial Consumption","Wisconsin","WI",2943 +1995-09-01,"Commercial Consumption","South Dakota","SD",357 +1995-09-01,"Commercial Consumption","Kentucky","KY",1247 +1995-09-01,"Commercial Consumption","U.S.","U.S.",129530 +1995-09-01,"Commercial Consumption","Ohio","OH",4623 +1995-09-01,"Commercial Consumption","Wyoming","WY",NA +1995-09-01,"Commercial Consumption","West Virginia","WV",1150 +1995-09-01,"Commercial Consumption","Washington","WA",1862 +1995-09-01,"Commercial Consumption","Texas","TX",11336 +1995-09-01,"Commercial Consumption","Kansas","KS",2921 +1995-09-01,"Commercial Consumption","Georgia","GA",2450 +1995-09-01,"Commercial Consumption","Nebraska","NE",NA +1995-09-01,"Commercial Consumption","Tennessee","TN",2002 +1995-09-01,"Commercial Consumption","Louisiana","LA",1327 +1995-09-01,"Commercial Consumption","District of Columbia","DC",766 +1995-09-01,"Commercial Consumption","North Dakota","ND",333 +1995-09-01,"Commercial Consumption","Florida","FL",2818 +1995-09-01,"Commercial Consumption","Connecticut","CT",1762 +1995-09-01,"Commercial Consumption","Mississippi","MS",1023 +1995-09-01,"Commercial Consumption","Delaware","DE",205 +1995-09-01,"Commercial Consumption","New Mexico","NM",1193 +1995-09-01,"Commercial Consumption","New Hampshire","NH",197 +1995-09-01,"Commercial Consumption","Maine","ME",86 +1995-09-01,"Commercial Consumption","North Carolina","NC",1597 +1995-09-01,"Commercial Consumption","Idaho","ID",392 +1995-09-01,"Commercial Consumption","Alaska","AK",1366 +1995-09-01,"Commercial Consumption","New York","NY",10619 +1995-09-01,"Commercial Consumption","Nevada","NV",1009 +1995-09-01,"Commercial Consumption","Utah","UT",1088 +1995-09-01,"Commercial Consumption","Pennsylvania","PA",4210 +1995-09-01,"Commercial Consumption","Montana","MT",520 +1995-09-01,"Commercial Consumption","Maryland","MD",2065 +1995-09-01,"Commercial Consumption","Vermont","VT",95 +1995-09-01,"Commercial Consumption","Rhode Island","RI",294 +1995-09-01,"Commercial Consumption","California","CA",19391 +1995-09-01,"Commercial Consumption","Arkansas","AR",1060 +1995-09-01,"Commercial Consumption","Alabama","AL",1139 +1995-09-01,"Commercial Consumption","Arizona","AZ",1652 +1995-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98557 +1995-09-01,"Residential Consumption","Texas","TX",7378 +1995-09-01,"Residential Consumption","Louisiana","LA",1816 +1995-09-01,"Residential Consumption","Vermont","VT",54 +1995-09-01,"Residential Consumption","Virginia","VA",1383 +1995-09-01,"Residential Consumption","Nebraska","NE",1051 +1995-09-01,"Residential Consumption","Florida","FL",729 +1995-09-01,"Residential Consumption","New Hampshire","NH",175 +1995-09-01,"Residential Consumption","Kansas","KS",1847 +1995-09-01,"Residential Consumption","Missouri","MO",2842 +1995-09-01,"Residential Consumption","New York","NY",9330 +1995-09-01,"Residential Consumption","Illinois","IL",13730 +1995-09-01,"Residential Consumption","North Carolina","NC",938 +1995-09-01,"Residential Consumption","Iowa","IA",1814 +1995-09-01,"Residential Consumption","Hawaii","HI",45 +1995-09-01,"Residential Consumption","Maryland","MD",2094 +1995-09-01,"Residential Consumption","Minnesota","MN",3271 +1995-09-01,"Residential Consumption","Maine","ME",31 +1995-09-01,"Residential Consumption","North Dakota","ND",252 +1995-09-01,"Residential Consumption","Kentucky","KY",1338 +1995-09-01,"Residential Consumption","Oklahoma","OK",1715 +1995-09-01,"Residential Consumption","Rhode Island","RI",474 +1995-09-01,"Residential Consumption","Connecticut","CT",1035 +1995-09-01,"Residential Consumption","Wisconsin","WI",3699 +1995-09-01,"Residential Consumption","Georgia","GA",3319 +1995-09-01,"Residential Consumption","Oregon","OR",687 +1995-09-01,"Residential Consumption","Ohio","OH",7397 +1995-09-01,"Residential Consumption","Mississippi","MS",476 +1995-09-01,"Residential Consumption","Utah","UT",1970 +1995-09-01,"Residential Consumption","Montana","MT",666 +1995-09-01,"Residential Consumption","Colorado","CO",2773 +1995-09-01,"Residential Consumption","Michigan","MI",9901 +1995-09-01,"Residential Consumption","Massachusetts","MA",2664 +1995-09-01,"Residential Consumption","New Jersey","NJ",4957 +1995-09-01,"Residential Consumption","Delaware","DE",176 +1995-09-01,"Residential Consumption","West Virginia","WV",740 +1995-09-01,"Residential Consumption","U.S.","U.S.",133951 +1995-09-01,"Residential Consumption","South Dakota","SD",307 +1995-09-01,"Residential Consumption","Idaho","ID",304 +1995-09-01,"Residential Consumption","Washington","WA",1411 +1995-09-01,"Residential Consumption","Alabama","AL",1279 +1995-09-01,"Residential Consumption","Tennessee","TN",1065 +1995-09-01,"Residential Consumption","Pennsylvania","PA",5805 +1995-09-01,"Residential Consumption","New Mexico","NM",814 +1995-09-01,"Residential Consumption","South Carolina","SC",475 +1995-09-01,"Residential Consumption","Nevada","NV",677 +1995-09-01,"Residential Consumption","District of Columbia","DC",401 +1995-09-01,"Residential Consumption","Indiana","IN",3627 +1995-09-01,"Residential Consumption","Arkansas","AR",1042 +1995-09-01,"Residential Consumption","California","CA",22148 +1995-09-01,"Residential Consumption","Arizona","AZ",878 +1995-09-01,"Residential Consumption","Alaska","AK",588 +1995-09-01,"Residential Consumption","Wyoming","WY",361 +1995-10-01,"Commercial Consumption","South Carolina","SC",1054 +1995-10-01,"Commercial Consumption","Minnesota","MN",5456 +1995-10-01,"Commercial Consumption","Utah","UT",1905 +1995-10-01,"Commercial Consumption","Oklahoma","OK",1836 +1995-10-01,"Commercial Consumption","Virginia","VA",2687 +1995-10-01,"Commercial Consumption","South Dakota","SD",665 +1995-10-01,"Commercial Consumption","Texas","TX",13673 +1995-10-01,"Commercial Consumption","Maryland","MD",1907 +1995-10-01,"Commercial Consumption","Vermont","VT",130 +1995-10-01,"Commercial Consumption","District of Columbia","DC",794 +1995-10-01,"Commercial Consumption","New Jersey","NJ",6263 +1995-10-01,"Commercial Consumption","Arkansas","AR",1183 +1995-10-01,"Commercial Consumption","New Mexico","NM",1330 +1995-10-01,"Commercial Consumption","Oregon","OR",1166 +1995-10-01,"Commercial Consumption","Rhode Island","RI",580 +1995-10-01,"Commercial Consumption","Idaho","ID",591 +1995-10-01,"Commercial Consumption","Iowa","IA",3021 +1995-10-01,"Commercial Consumption","California","CA",21272 +1995-10-01,"Commercial Consumption","Indiana","IN",4181 +1995-10-01,"Commercial Consumption","Louisiana","LA",1410 +1995-10-01,"Commercial Consumption","Wyoming","WY",NA +1995-10-01,"Commercial Consumption","Washington","WA",2304 +1995-10-01,"Commercial Consumption","North Carolina","NC",1740 +1995-10-01,"Commercial Consumption","New Hampshire","NH",285 +1995-10-01,"Commercial Consumption","New York","NY",13394 +1995-10-01,"Commercial Consumption","Delaware","DE",209 +1995-10-01,"Commercial Consumption","Arizona","AZ",1702 +1995-10-01,"Commercial Consumption","Nevada","NV",1151 +1995-10-01,"Commercial Consumption","Georgia","GA",3379 +1995-10-01,"Commercial Consumption","Ohio","OH",7916 +1995-10-01,"Commercial Consumption","Hawaii","HI",179 +1995-10-01,"Commercial Consumption","Connecticut","CT",1850 +1995-10-01,"Commercial Consumption","Mississippi","MS",1013 +1995-10-01,"Commercial Consumption","Illinois","IL",11880 +1995-10-01,"Commercial Consumption","Massachusetts","MA",4026 +1995-10-01,"Commercial Consumption","Alabama","AL",1323 +1995-10-01,"Commercial Consumption","Tennessee","TN",2582 +1995-10-01,"Commercial Consumption","Michigan","MI",9647 +1995-10-01,"Commercial Consumption","North Dakota","ND",549 +1995-10-01,"Commercial Consumption","Colorado","CO",3787 +1995-10-01,"Commercial Consumption","Pennsylvania","PA",6583 +1995-10-01,"Commercial Consumption","Montana","MT",899 +1995-10-01,"Commercial Consumption","Kentucky","KY",1892 +1995-10-01,"Commercial Consumption","Kansas","KS",2903 +1995-10-01,"Commercial Consumption","Florida","FL",2840 +1995-10-01,"Commercial Consumption","Alaska","AK",1846 +1995-10-01,"Commercial Consumption","Nebraska","NE",NA +1995-10-01,"Commercial Consumption","West Virginia","WV",1557 +1995-10-01,"Commercial Consumption","Missouri","MO",2756 +1995-10-01,"Commercial Consumption","Wisconsin","WI",4968 +1995-10-01,"Commercial Consumption","Maine","ME",129 +1995-10-01,"Commercial Consumption","U.S.","U.S.",170849 +1995-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101675 +1995-10-01,"Residential Consumption","Oregon","OR",1128 +1995-10-01,"Residential Consumption","Hawaii","HI",44 +1995-10-01,"Residential Consumption","Nebraska","NE",1577 +1995-10-01,"Residential Consumption","Georgia","GA",6067 +1995-10-01,"Residential Consumption","Missouri","MO",4259 +1995-10-01,"Residential Consumption","Alabama","AL",1542 +1995-10-01,"Residential Consumption","Nevada","NV",817 +1995-10-01,"Residential Consumption","Delaware","DE",230 +1995-10-01,"Residential Consumption","New York","NY",13159 +1995-10-01,"Residential Consumption","South Carolina","SC",646 +1995-10-01,"Residential Consumption","Maine","ME",48 +1995-10-01,"Residential Consumption","Illinois","IL",26650 +1995-10-01,"Residential Consumption","Mississippi","MS",631 +1995-10-01,"Residential Consumption","Connecticut","CT",1479 +1995-10-01,"Residential Consumption","Virginia","VA",2245 +1995-10-01,"Residential Consumption","South Dakota","SD",705 +1995-10-01,"Residential Consumption","Indiana","IN",6884 +1995-10-01,"Residential Consumption","Florida","FL",668 +1995-10-01,"Residential Consumption","Idaho","ID",628 +1995-10-01,"Residential Consumption","Kentucky","KY",3130 +1995-10-01,"Residential Consumption","Arizona","AZ",1027 +1995-10-01,"Residential Consumption","Wyoming","WY",611 +1995-10-01,"Residential Consumption","U.S.","U.S.",216412 +1995-10-01,"Residential Consumption","Texas","TX",8860 +1995-10-01,"Residential Consumption","Ohio","OH",17326 +1995-10-01,"Residential Consumption","Louisiana","LA",2073 +1995-10-01,"Residential Consumption","New Jersey","NJ",7195 +1995-10-01,"Residential Consumption","Montana","MT",1376 +1995-10-01,"Residential Consumption","Oklahoma","OK",2526 +1995-10-01,"Residential Consumption","Iowa","IA",3803 +1995-10-01,"Residential Consumption","Wisconsin","WI",7000 +1995-10-01,"Residential Consumption","Vermont","VT",86 +1995-10-01,"Residential Consumption","Utah","UT",3857 +1995-10-01,"Residential Consumption","Colorado","CO",5456 +1995-10-01,"Residential Consumption","Rhode Island","RI",672 +1995-10-01,"Residential Consumption","North Carolina","NC",1402 +1995-10-01,"Residential Consumption","Michigan","MI",17636 +1995-10-01,"Residential Consumption","Pennsylvania","PA",10640 +1995-10-01,"Residential Consumption","North Dakota","ND",424 +1995-10-01,"Residential Consumption","Massachusetts","MA",3958 +1995-10-01,"Residential Consumption","Kansas","KS",3440 +1995-10-01,"Residential Consumption","California","CA",24743 +1995-10-01,"Residential Consumption","Alaska","AK",866 +1995-10-01,"Residential Consumption","Tennessee","TN",1801 +1995-10-01,"Residential Consumption","Maryland","MD",2927 +1995-10-01,"Residential Consumption","Minnesota","MN",6969 +1995-10-01,"Residential Consumption","District of Columbia","DC",452 +1995-10-01,"Residential Consumption","New Mexico","NM",1319 +1995-10-01,"Residential Consumption","Arkansas","AR",1295 +1995-10-01,"Residential Consumption","New Hampshire","NH",254 +1995-10-01,"Residential Consumption","Washington","WA",2444 +1995-10-01,"Residential Consumption","West Virginia","WV",1441 +1995-11-01,"Commercial Consumption","Colorado","CO",5703 +1995-11-01,"Commercial Consumption","New Mexico","NM",2149 +1995-11-01,"Commercial Consumption","Virginia","VA",5766 +1995-11-01,"Commercial Consumption","South Dakota","SD",1118 +1995-11-01,"Commercial Consumption","Kentucky","KY",4746 +1995-11-01,"Commercial Consumption","Iowa","IA",5952 +1995-11-01,"Commercial Consumption","Alabama","AL",2177 +1995-11-01,"Commercial Consumption","Illinois","IL",22408 +1995-11-01,"Commercial Consumption","District of Columbia","DC",1116 +1995-11-01,"Commercial Consumption","Oklahoma","OK",3020 +1995-11-01,"Commercial Consumption","Massachusetts","MA",7597 +1995-11-01,"Commercial Consumption","Montana","MT",1454 +1995-11-01,"Commercial Consumption","Kansas","KS",4066 +1995-11-01,"Commercial Consumption","Nebraska","NE",NA +1995-11-01,"Commercial Consumption","West Virginia","WV",2739 +1995-11-01,"Commercial Consumption","Missouri","MO",5747 +1995-11-01,"Commercial Consumption","Connecticut","CT",2808 +1995-11-01,"Commercial Consumption","California","CA",22818 +1995-11-01,"Commercial Consumption","Arkansas","AR",2265 +1995-11-01,"Commercial Consumption","Wyoming","WY",NA +1995-11-01,"Commercial Consumption","North Carolina","NC",3263 +1995-11-01,"Commercial Consumption","Utah","UT",2605 +1995-11-01,"Commercial Consumption","Florida","FL",3171 +1995-11-01,"Commercial Consumption","Rhode Island","RI",1216 +1995-11-01,"Commercial Consumption","Nevada","NV",1444 +1995-11-01,"Commercial Consumption","North Dakota","ND",1209 +1995-11-01,"Commercial Consumption","Oregon","OR",2010 +1995-11-01,"Commercial Consumption","New Jersey","NJ",10830 +1995-11-01,"Commercial Consumption","Minnesota","MN",10937 +1995-11-01,"Commercial Consumption","Wisconsin","WI",10676 +1995-11-01,"Commercial Consumption","Maryland","MD",4871 +1995-11-01,"Commercial Consumption","Alaska","AK",2461 +1995-11-01,"Commercial Consumption","New York","NY",22325 +1995-11-01,"Commercial Consumption","Mississippi","MS",1693 +1995-11-01,"Commercial Consumption","Arizona","AZ",2056 +1995-11-01,"Commercial Consumption","Michigan","MI",19742 +1995-11-01,"Commercial Consumption","Indiana","IN",9142 +1995-11-01,"Commercial Consumption","Louisiana","LA",1823 +1995-11-01,"Commercial Consumption","Washington","WA",4052 +1995-11-01,"Commercial Consumption","South Carolina","SC",1674 +1995-11-01,"Commercial Consumption","New Hampshire","NH",620 +1995-11-01,"Commercial Consumption","Maine","ME",254 +1995-11-01,"Commercial Consumption","U.S.","U.S.",296702 +1995-11-01,"Commercial Consumption","Georgia","GA",5706 +1995-11-01,"Commercial Consumption","Idaho","ID",997 +1995-11-01,"Commercial Consumption","Hawaii","HI",178 +1995-11-01,"Commercial Consumption","Delaware","DE",417 +1995-11-01,"Commercial Consumption","Pennsylvania","PA",19918 +1995-11-01,"Commercial Consumption","Texas","TX",16279 +1995-11-01,"Commercial Consumption","Vermont","VT",242 +1995-11-01,"Commercial Consumption","Ohio","OH",18650 +1995-11-01,"Commercial Consumption","Tennessee","TN",4908 +1995-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104598 +1995-11-01,"Residential Consumption","Tennessee","TN",7624 +1995-11-01,"Residential Consumption","Utah","UT",4684 +1995-11-01,"Residential Consumption","Michigan","MI",39707 +1995-11-01,"Residential Consumption","Minnesota","MN",14915 +1995-11-01,"Residential Consumption","Georgia","GA",14965 +1995-11-01,"Residential Consumption","Delaware","DE",601 +1995-11-01,"Residential Consumption","Texas","TX",17917 +1995-11-01,"Residential Consumption","Rhode Island","RI",1336 +1995-11-01,"Residential Consumption","Nebraska","NE",4132 +1995-11-01,"Residential Consumption","Nevada","NV",1349 +1995-11-01,"Residential Consumption","Wyoming","WY",1125 +1995-11-01,"Residential Consumption","South Dakota","SD",1332 +1995-11-01,"Residential Consumption","District of Columbia","DC",1246 +1995-11-01,"Residential Consumption","Massachusetts","MA",9090 +1995-11-01,"Residential Consumption","Arkansas","AR",3522 +1995-11-01,"Residential Consumption","Kentucky","KY",9224 +1995-11-01,"Residential Consumption","North Carolina","NC",4445 +1995-11-01,"Residential Consumption","Louisiana","LA",4391 +1995-11-01,"Residential Consumption","New Jersey","NJ",18422 +1995-11-01,"Residential Consumption","U.S.","U.S.",488812 +1995-11-01,"Residential Consumption","Maryland","MD",7601 +1995-11-01,"Residential Consumption","Florida","FL",1004 +1995-11-01,"Residential Consumption","Idaho","ID",1364 +1995-11-01,"Residential Consumption","Oklahoma","OK",5029 +1995-11-01,"Residential Consumption","Missouri","MO",11325 +1995-11-01,"Residential Consumption","Arizona","AZ",1554 +1995-11-01,"Residential Consumption","Connecticut","CT",3449 +1995-11-01,"Residential Consumption","New Mexico","NM",3027 +1995-11-01,"Residential Consumption","Colorado","CO",8830 +1995-11-01,"Residential Consumption","California","CA",33646 +1995-11-01,"Residential Consumption","West Virginia","WV",3626 +1995-11-01,"Residential Consumption","New York","NY",32655 +1995-11-01,"Residential Consumption","South Carolina","SC",2262 +1995-11-01,"Residential Consumption","Oregon","OR",2620 +1995-11-01,"Residential Consumption","Iowa","IA",11222 +1995-11-01,"Residential Consumption","Wisconsin","WI",16784 +1995-11-01,"Residential Consumption","Vermont","VT",176 +1995-11-01,"Residential Consumption","Virginia","VA",7059 +1995-11-01,"Residential Consumption","North Dakota","ND",1095 +1995-11-01,"Residential Consumption","New Hampshire","NH",550 +1995-11-01,"Residential Consumption","Montana","MT",2248 +1995-11-01,"Residential Consumption","Kansas","KS",6757 +1995-11-01,"Residential Consumption","Alabama","AL",3902 +1995-11-01,"Residential Consumption","Alaska","AK",1411 +1995-11-01,"Residential Consumption","Ohio","OH",40926 +1995-11-01,"Residential Consumption","Mississippi","MS",2326 +1995-11-01,"Residential Consumption","Hawaii","HI",43 +1995-11-01,"Residential Consumption","Pennsylvania","PA",27801 +1995-11-01,"Residential Consumption","Maine","ME",97 +1995-11-01,"Residential Consumption","Indiana","IN",18305 +1995-11-01,"Residential Consumption","Washington","WA",5683 +1995-11-01,"Residential Consumption","Illinois","IL",64407 +1995-12-01,"Commercial Consumption","Washington","WA",5274 +1995-12-01,"Commercial Consumption","Oregon","OR",2837 +1995-12-01,"Commercial Consumption","New Jersey","NJ",20914 +1995-12-01,"Commercial Consumption","Iowa","IA",8170 +1995-12-01,"Commercial Consumption","Tennessee","TN",7681 +1995-12-01,"Commercial Consumption","Nevada","NV",1871 +1995-12-01,"Commercial Consumption","Indiana","IN",13009 +1995-12-01,"Commercial Consumption","South Carolina","SC",2414 +1995-12-01,"Commercial Consumption","North Carolina","NC",5279 +1995-12-01,"Commercial Consumption","Utah","UT",3724 +1995-12-01,"Commercial Consumption","Pennsylvania","PA",22596 +1995-12-01,"Commercial Consumption","Missouri","MO",9698 +1995-12-01,"Commercial Consumption","Maine","ME",389 +1995-12-01,"Commercial Consumption","Hawaii","HI",177 +1995-12-01,"Commercial Consumption","Alaska","AK",3190 +1995-12-01,"Commercial Consumption","California","CA",26152 +1995-12-01,"Commercial Consumption","Nebraska","NE",NA +1995-12-01,"Commercial Consumption","Illinois","IL",30734 +1995-12-01,"Commercial Consumption","West Virginia","WV",3533 +1995-12-01,"Commercial Consumption","Minnesota","MN",13839 +1995-12-01,"Commercial Consumption","Colorado","CO",7282 +1995-12-01,"Commercial Consumption","Florida","FL",3883 +1995-12-01,"Commercial Consumption","Vermont","VT",410 +1995-12-01,"Commercial Consumption","Ohio","OH",27649 +1995-12-01,"Commercial Consumption","Michigan","MI",29922 +1995-12-01,"Commercial Consumption","Arkansas","AR",4311 +1995-12-01,"Commercial Consumption","Arizona","AZ",2802 +1995-12-01,"Commercial Consumption","Oklahoma","OK",5164 +1995-12-01,"Commercial Consumption","Virginia","VA",8287 +1995-12-01,"Commercial Consumption","Massachusetts","MA",11594 +1995-12-01,"Commercial Consumption","South Dakota","SD",1452 +1995-12-01,"Commercial Consumption","Maryland","MD",7538 +1995-12-01,"Commercial Consumption","Kansas","KS",9850 +1995-12-01,"Commercial Consumption","Rhode Island","RI",1523 +1995-12-01,"Commercial Consumption","Wyoming","WY",NA +1995-12-01,"Commercial Consumption","Wisconsin","WI",13817 +1995-12-01,"Commercial Consumption","Kentucky","KY",6426 +1995-12-01,"Commercial Consumption","Texas","TX",22432 +1995-12-01,"Commercial Consumption","Idaho","ID",1300 +1995-12-01,"Commercial Consumption","Connecticut","CT",4491 +1995-12-01,"Commercial Consumption","Delaware","DE",851 +1995-12-01,"Commercial Consumption","District of Columbia","DC",2194 +1995-12-01,"Commercial Consumption","New Hampshire","NH",989 +1995-12-01,"Commercial Consumption","U.S.","U.S.",419620 +1995-12-01,"Commercial Consumption","Georgia","GA",8062 +1995-12-01,"Commercial Consumption","Mississippi","MS",2627 +1995-12-01,"Commercial Consumption","North Dakota","ND",1723 +1995-12-01,"Commercial Consumption","New Mexico","NM",2920 +1995-12-01,"Commercial Consumption","Montana","MT",1898 +1995-12-01,"Commercial Consumption","Alabama","AL",3502 +1995-12-01,"Commercial Consumption","New York","NY",30309 +1995-12-01,"Commercial Consumption","Louisiana","LA",2613 +1995-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",108714 +1995-12-01,"Residential Consumption","Connecticut","CT",6389 +1995-12-01,"Residential Consumption","Utah","UT",7214 +1995-12-01,"Residential Consumption","California","CA",56731 +1995-12-01,"Residential Consumption","District of Columbia","DC",2579 +1995-12-01,"Residential Consumption","Arkansas","AR",7034 +1995-12-01,"Residential Consumption","New Jersey","NJ",33195 +1995-12-01,"Residential Consumption","New Hampshire","NH",991 +1995-12-01,"Residential Consumption","Alaska","AK",2294 +1995-12-01,"Residential Consumption","West Virginia","WV",5867 +1995-12-01,"Residential Consumption","Mississippi","MS",4212 +1995-12-01,"Residential Consumption","Maine","ME",151 +1995-12-01,"Residential Consumption","Massachusetts","MA",15933 +1995-12-01,"Residential Consumption","Colorado","CO",12262 +1995-12-01,"Residential Consumption","Missouri","MO",19696 +1995-12-01,"Residential Consumption","Texas","TX",30741 +1995-12-01,"Residential Consumption","Nebraska","NE",6188 +1995-12-01,"Residential Consumption","North Dakota","ND",1695 +1995-12-01,"Residential Consumption","Kansas","KS",13608 +1995-12-01,"Residential Consumption","U.S.","U.S.",757844 +1995-12-01,"Residential Consumption","South Carolina","SC",4422 +1995-12-01,"Residential Consumption","Rhode Island","RI",2634 +1995-12-01,"Residential Consumption","Oregon","OR",3952 +1995-12-01,"Residential Consumption","Tennessee","TN",9171 +1995-12-01,"Residential Consumption","Michigan","MI",61290 +1995-12-01,"Residential Consumption","Pennsylvania","PA",44456 +1995-12-01,"Residential Consumption","Idaho","ID",1748 +1995-12-01,"Residential Consumption","Arizona","AZ",3154 +1995-12-01,"Residential Consumption","Louisiana","LA",7401 +1995-12-01,"Residential Consumption","Iowa","IA",14248 +1995-12-01,"Residential Consumption","Wisconsin","WI",22980 +1995-12-01,"Residential Consumption","Minnesota","MN",21117 +1995-12-01,"Residential Consumption","Georgia","GA",21351 +1995-12-01,"Residential Consumption","New Mexico","NM",4649 +1995-12-01,"Residential Consumption","Florida","FL",1785 +1995-12-01,"Residential Consumption","Washington","WA",7611 +1995-12-01,"Residential Consumption","Delaware","DE",1231 +1995-12-01,"Residential Consumption","North Carolina","NC",8581 +1995-12-01,"Residential Consumption","Hawaii","HI",45 +1995-12-01,"Residential Consumption","Vermont","VT",353 +1995-12-01,"Residential Consumption","Maryland","MD",12985 +1995-12-01,"Residential Consumption","Indiana","IN",26875 +1995-12-01,"Residential Consumption","Montana","MT",2697 +1995-12-01,"Residential Consumption","Wyoming","WY",1565 +1995-12-01,"Residential Consumption","New York","NY",56841 +1995-12-01,"Residential Consumption","Illinois","IL",81457 +1995-12-01,"Residential Consumption","Ohio","OH",59871 +1995-12-01,"Residential Consumption","Virginia","VA",12753 +1995-12-01,"Residential Consumption","South Dakota","SD",1828 +1995-12-01,"Residential Consumption","Nevada","NV",2357 +1995-12-01,"Residential Consumption","Kentucky","KY",12325 +1995-12-01,"Residential Consumption","Oklahoma","OK",9769 +1995-12-01,"Residential Consumption","Alabama","AL",7563 +1996-01-01,"Commercial Consumption","Washington","WA",6316 +1996-01-01,"Commercial Consumption","Minnesota","MN",15692 +1996-01-01,"Commercial Consumption","Oregon","OR",3531 +1996-01-01,"Commercial Consumption","New Hampshire","NH",1163 +1996-01-01,"Commercial Consumption","Texas","TX",22213 +1996-01-01,"Commercial Consumption","Kansas","KS",8819 +1996-01-01,"Commercial Consumption","Vermont","VT",458 +1996-01-01,"Commercial Consumption","California","CA",23655 +1996-01-01,"Commercial Consumption","Arizona","AZ",3587 +1996-01-01,"Commercial Consumption","District of Columbia","DC",2147 +1996-01-01,"Commercial Consumption","South Carolina","SC",3136 +1996-01-01,"Commercial Consumption","North Dakota","ND",1845 +1996-01-01,"Commercial Consumption","Colorado","CO",10333 +1996-01-01,"Commercial Consumption","South Dakota","SD",1820 +1996-01-01,"Commercial Consumption","New Jersey","NJ",23033 +1996-01-01,"Commercial Consumption","Maryland","MD",7648 +1996-01-01,"Commercial Consumption","Idaho","ID",1734 +1996-01-01,"Commercial Consumption","Delaware","DE",1099 +1996-01-01,"Commercial Consumption","Michigan","MI",32468 +1996-01-01,"Commercial Consumption","Indiana","IN",15590 +1996-01-01,"Commercial Consumption","Virginia","VA",8575 +1996-01-01,"Commercial Consumption","Alaska","AK",3064 +1996-01-01,"Commercial Consumption","Louisiana","LA",4000 +1996-01-01,"Commercial Consumption","Maine","ME",413 +1996-01-01,"Commercial Consumption","Kentucky","KY",7275 +1996-01-01,"Commercial Consumption","Florida","FL",4731 +1996-01-01,"Commercial Consumption","New York","NY",NA +1996-01-01,"Commercial Consumption","Nevada","NV",2466 +1996-01-01,"Commercial Consumption","Illinois","IL",36723 +1996-01-01,"Commercial Consumption","West Virginia","WV",4383 +1996-01-01,"Commercial Consumption","Oklahoma","OK",7808 +1996-01-01,"Commercial Consumption","Pennsylvania","PA",25912 +1996-01-01,"Commercial Consumption","U.S.","U.S.",480207 +1996-01-01,"Commercial Consumption","Ohio","OH",33993 +1996-01-01,"Commercial Consumption","Alabama","AL",4561 +1996-01-01,"Commercial Consumption","Nebraska","NE",5382 +1996-01-01,"Commercial Consumption","Utah","UT",4549 +1996-01-01,"Commercial Consumption","Missouri","MO",12881 +1996-01-01,"Commercial Consumption","Massachusetts","MA",13018 +1996-01-01,"Commercial Consumption","Wisconsin","WI",15841 +1996-01-01,"Commercial Consumption","Montana","MT",2188 +1996-01-01,"Commercial Consumption","Rhode Island","RI",1963 +1996-01-01,"Commercial Consumption","Hawaii","HI",200 +1996-01-01,"Commercial Consumption","Connecticut","CT",5999 +1996-01-01,"Commercial Consumption","Mississippi","MS",3525 +1996-01-01,"Commercial Consumption","Tennessee","TN",9972 +1996-01-01,"Commercial Consumption","Wyoming","WY",1176 +1996-01-01,"Commercial Consumption","North Carolina","NC",6913 +1996-01-01,"Commercial Consumption","New Mexico","NM",4002 +1996-01-01,"Commercial Consumption","Georgia","GA",9815 +1996-01-01,"Commercial Consumption","Iowa","IA",9219 +1996-01-01,"Commercial Consumption","Arkansas","AR",5411 +1996-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105874 +1996-01-01,"Residential Consumption","Hawaii","HI",49 +1996-01-01,"Residential Consumption","Michigan","MI",68480 +1996-01-01,"Residential Consumption","District of Columbia","DC",3302 +1996-01-01,"Residential Consumption","Florida","FL",2828 +1996-01-01,"Residential Consumption","New Hampshire","NH",1193 +1996-01-01,"Residential Consumption","Colorado","CO",17597 +1996-01-01,"Residential Consumption","Wyoming","WY",2001 +1996-01-01,"Residential Consumption","New York","NY",68033 +1996-01-01,"Residential Consumption","Louisiana","LA",11865 +1996-01-01,"Residential Consumption","Utah","UT",8555 +1996-01-01,"Residential Consumption","Maryland","MD",15942 +1996-01-01,"Residential Consumption","Maine","ME",159 +1996-01-01,"Residential Consumption","West Virginia","WV",6958 +1996-01-01,"Residential Consumption","Texas","TX",46282 +1996-01-01,"Residential Consumption","South Carolina","SC",6602 +1996-01-01,"Residential Consumption","Connecticut","CT",8159 +1996-01-01,"Residential Consumption","Nevada","NV",3744 +1996-01-01,"Residential Consumption","Georgia","GA",24332 +1996-01-01,"Residential Consumption","Indiana","IN",33354 +1996-01-01,"Residential Consumption","North Dakota","ND",1955 +1996-01-01,"Residential Consumption","Kansas","KS",16870 +1996-01-01,"Residential Consumption","Oklahoma","OK",14851 +1996-01-01,"Residential Consumption","Alabama","AL",10893 +1996-01-01,"Residential Consumption","Wisconsin","WI",25405 +1996-01-01,"Residential Consumption","Virginia","VA",14643 +1996-01-01,"Residential Consumption","Minnesota","MN",25430 +1996-01-01,"Residential Consumption","Pennsylvania","PA",51522 +1996-01-01,"Residential Consumption","New Mexico","NM",7103 +1996-01-01,"Residential Consumption","Montana","MT",3284 +1996-01-01,"Residential Consumption","Arizona","AZ",5443 +1996-01-01,"Residential Consumption","Illinois","IL",96184 +1996-01-01,"Residential Consumption","Ohio","OH",69244 +1996-01-01,"Residential Consumption","North Carolina","NC",12737 +1996-01-01,"Residential Consumption","Arkansas","AR",9008 +1996-01-01,"Residential Consumption","New Jersey","NJ",41314 +1996-01-01,"Residential Consumption","Kentucky","KY",13638 +1996-01-01,"Residential Consumption","Washington","WA",9011 +1996-01-01,"Residential Consumption","Oregon","OR",5047 +1996-01-01,"Residential Consumption","Mississippi","MS",6151 +1996-01-01,"Residential Consumption","Tennessee","TN",14796 +1996-01-01,"Residential Consumption","South Dakota","SD",2343 +1996-01-01,"Residential Consumption","Idaho","ID",2369 +1996-01-01,"Residential Consumption","Delaware","DE",1701 +1996-01-01,"Residential Consumption","Vermont","VT",467 +1996-01-01,"Residential Consumption","Alaska","AK",2054 +1996-01-01,"Residential Consumption","U.S.","U.S.",933642 +1996-01-01,"Residential Consumption","Rhode Island","RI",3342 +1996-01-01,"Residential Consumption","Iowa","IA",16281 +1996-01-01,"Residential Consumption","Nebraska","NE",8226 +1996-01-01,"Residential Consumption","Massachusetts","MA",19459 +1996-01-01,"Residential Consumption","Missouri","MO",26654 +1996-01-01,"Residential Consumption","California","CA",66779 +1996-02-01,"Commercial Consumption","Washington","WA",6833 +1996-02-01,"Commercial Consumption","North Carolina","NC",6421 +1996-02-01,"Commercial Consumption","Massachusetts","MA",12641 +1996-02-01,"Commercial Consumption","Rhode Island","RI",1919 +1996-02-01,"Commercial Consumption","Hawaii","HI",192 +1996-02-01,"Commercial Consumption","Alabama","AL",4849 +1996-02-01,"Commercial Consumption","New Mexico","NM",3291 +1996-02-01,"Commercial Consumption","Oklahoma","OK",7923 +1996-02-01,"Commercial Consumption","New Jersey","NJ",22251 +1996-02-01,"Commercial Consumption","New Hampshire","NH",1129 +1996-02-01,"Commercial Consumption","U.S.","U.S.",442962 +1996-02-01,"Commercial Consumption","California","CA",23098 +1996-02-01,"Commercial Consumption","Louisiana","LA",3848 +1996-02-01,"Commercial Consumption","Minnesota","MN",13918 +1996-02-01,"Commercial Consumption","Missouri","MO",11673 +1996-02-01,"Commercial Consumption","South Dakota","SD",1685 +1996-02-01,"Commercial Consumption","Montana","MT",2281 +1996-02-01,"Commercial Consumption","Kentucky","KY",6319 +1996-02-01,"Commercial Consumption","Georgia","GA",8514 +1996-02-01,"Commercial Consumption","Alaska","AK",3227 +1996-02-01,"Commercial Consumption","Tennessee","TN",9287 +1996-02-01,"Commercial Consumption","Indiana","IN",13698 +1996-02-01,"Commercial Consumption","Wyoming","WY",1203 +1996-02-01,"Commercial Consumption","Utah","UT",4604 +1996-02-01,"Commercial Consumption","Florida","FL",4272 +1996-02-01,"Commercial Consumption","Michigan","MI",30447 +1996-02-01,"Commercial Consumption","District of Columbia","DC",1942 +1996-02-01,"Commercial Consumption","South Carolina","SC",2782 +1996-02-01,"Commercial Consumption","North Dakota","ND",1769 +1996-02-01,"Commercial Consumption","Virginia","VA",8172 +1996-02-01,"Commercial Consumption","New York","NY",NA +1996-02-01,"Commercial Consumption","Nebraska","NE",4846 +1996-02-01,"Commercial Consumption","West Virginia","WV",3959 +1996-02-01,"Commercial Consumption","Colorado","CO",10325 +1996-02-01,"Commercial Consumption","Oregon","OR",3907 +1996-02-01,"Commercial Consumption","Maryland","MD",6515 +1996-02-01,"Commercial Consumption","Kansas","KS",7823 +1996-02-01,"Commercial Consumption","Idaho","ID",1783 +1996-02-01,"Commercial Consumption","Connecticut","CT",5480 +1996-02-01,"Commercial Consumption","Arkansas","AR",5249 +1996-02-01,"Commercial Consumption","Delaware","DE",1181 +1996-02-01,"Commercial Consumption","Pennsylvania","PA",23162 +1996-02-01,"Commercial Consumption","Maine","ME",386 +1996-02-01,"Commercial Consumption","Texas","TX",17619 +1996-02-01,"Commercial Consumption","Vermont","VT",445 +1996-02-01,"Commercial Consumption","Ohio","OH",29732 +1996-02-01,"Commercial Consumption","Iowa","IA",8342 +1996-02-01,"Commercial Consumption","Mississippi","MS",3345 +1996-02-01,"Commercial Consumption","Arizona","AZ",3107 +1996-02-01,"Commercial Consumption","Nevada","NV",2309 +1996-02-01,"Commercial Consumption","Wisconsin","WI",13981 +1996-02-01,"Commercial Consumption","Illinois","IL",33140 +1996-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100100 +1996-02-01,"Residential Consumption","South Carolina","SC",5943 +1996-02-01,"Residential Consumption","Ohio","OH",58620 +1996-02-01,"Residential Consumption","Tennessee","TN",13801 +1996-02-01,"Residential Consumption","North Dakota","ND",2079 +1996-02-01,"Residential Consumption","New Jersey","NJ",36979 +1996-02-01,"Residential Consumption","Louisiana","LA",10284 +1996-02-01,"Residential Consumption","Wisconsin","WI",22563 +1996-02-01,"Residential Consumption","Maryland","MD",14280 +1996-02-01,"Residential Consumption","Georgia","GA",19358 +1996-02-01,"Residential Consumption","Pennsylvania","PA",46086 +1996-02-01,"Residential Consumption","Delaware","DE",1918 +1996-02-01,"Residential Consumption","West Virginia","WV",6602 +1996-02-01,"Residential Consumption","Oregon","OR",5586 +1996-02-01,"Residential Consumption","Iowa","IA",13725 +1996-02-01,"Residential Consumption","Connecticut","CT",7147 +1996-02-01,"Residential Consumption","Vermont","VT",418 +1996-02-01,"Residential Consumption","Indiana","IN",28907 +1996-02-01,"Residential Consumption","Montana","MT",3530 +1996-02-01,"Residential Consumption","Colorado","CO",17480 +1996-02-01,"Residential Consumption","Washington","WA",10162 +1996-02-01,"Residential Consumption","Oklahoma","OK",14497 +1996-02-01,"Residential Consumption","Arizona","AZ",4221 +1996-02-01,"Residential Consumption","Alaska","AK",2419 +1996-02-01,"Residential Consumption","New York","NY",61203 +1996-02-01,"Residential Consumption","Virginia","VA",13709 +1996-02-01,"Residential Consumption","New Mexico","NM",4620 +1996-02-01,"Residential Consumption","Florida","FL",2570 +1996-02-01,"Residential Consumption","North Carolina","NC",11718 +1996-02-01,"Residential Consumption","Massachusetts","MA",18453 +1996-02-01,"Residential Consumption","Wyoming","WY",2176 +1996-02-01,"Residential Consumption","U.S.","U.S.",830912 +1996-02-01,"Residential Consumption","Mississippi","MS",5900 +1996-02-01,"Residential Consumption","Minnesota","MN",22665 +1996-02-01,"Residential Consumption","District of Columbia","DC",3083 +1996-02-01,"Residential Consumption","Kentucky","KY",11218 +1996-02-01,"Residential Consumption","Michigan","MI",63693 +1996-02-01,"Residential Consumption","Nevada","NV",3264 +1996-02-01,"Residential Consumption","Missouri","MO",24498 +1996-02-01,"Residential Consumption","California","CA",58007 +1996-02-01,"Residential Consumption","Alabama","AL",11222 +1996-02-01,"Residential Consumption","Illinois","IL",81430 +1996-02-01,"Residential Consumption","Texas","TX",35808 +1996-02-01,"Residential Consumption","Rhode Island","RI",3119 +1996-02-01,"Residential Consumption","Hawaii","HI",51 +1996-02-01,"Residential Consumption","Utah","UT",8571 +1996-02-01,"Residential Consumption","Nebraska","NE",8807 +1996-02-01,"Residential Consumption","South Dakota","SD",2221 +1996-02-01,"Residential Consumption","Maine","ME",143 +1996-02-01,"Residential Consumption","Idaho","ID",2510 +1996-02-01,"Residential Consumption","Arkansas","AR",8713 +1996-02-01,"Residential Consumption","New Hampshire","NH",1147 +1996-02-01,"Residential Consumption","Kansas","KS",13787 +1996-03-01,"Commercial Consumption","New Mexico","NM",2509 +1996-03-01,"Commercial Consumption","Virginia","VA",7357 +1996-03-01,"Commercial Consumption","Montana","MT",1763 +1996-03-01,"Commercial Consumption","Kansas","KS",6592 +1996-03-01,"Commercial Consumption","Michigan","MI",27914 +1996-03-01,"Commercial Consumption","South Carolina","SC",2190 +1996-03-01,"Commercial Consumption","Oregon","OR",2900 +1996-03-01,"Commercial Consumption","New Hampshire","NH",972 +1996-03-01,"Commercial Consumption","Alabama","AL",3735 +1996-03-01,"Commercial Consumption","Mississippi","MS",2558 +1996-03-01,"Commercial Consumption","Delaware","DE",885 +1996-03-01,"Commercial Consumption","Illinois","IL",27306 +1996-03-01,"Commercial Consumption","Wisconsin","WI",12243 +1996-03-01,"Commercial Consumption","New Jersey","NJ",18891 +1996-03-01,"Commercial Consumption","Georgia","GA",7564 +1996-03-01,"Commercial Consumption","Idaho","ID",1359 +1996-03-01,"Commercial Consumption","Connecticut","CT",4851 +1996-03-01,"Commercial Consumption","New York","NY",NA +1996-03-01,"Commercial Consumption","Washington","WA",5450 +1996-03-01,"Commercial Consumption","Minnesota","MN",12931 +1996-03-01,"Commercial Consumption","Utah","UT",3129 +1996-03-01,"Commercial Consumption","Pennsylvania","PA",20748 +1996-03-01,"Commercial Consumption","Florida","FL",4167 +1996-03-01,"Commercial Consumption","Arkansas","AR",3895 +1996-03-01,"Commercial Consumption","Arizona","AZ",2984 +1996-03-01,"Commercial Consumption","Indiana","IN",11697 +1996-03-01,"Commercial Consumption","West Virginia","WV",3393 +1996-03-01,"Commercial Consumption","North Dakota","ND",1713 +1996-03-01,"Commercial Consumption","Colorado","CO",8873 +1996-03-01,"Commercial Consumption","Oklahoma","OK",5595 +1996-03-01,"Commercial Consumption","South Dakota","SD",1487 +1996-03-01,"Commercial Consumption","Maine","ME",356 +1996-03-01,"Commercial Consumption","Missouri","MO",9501 +1996-03-01,"Commercial Consumption","U.S.","U.S.",387264 +1996-03-01,"Commercial Consumption","Maryland","MD",5476 +1996-03-01,"Commercial Consumption","Ohio","OH",26650 +1996-03-01,"Commercial Consumption","Iowa","IA",7103 +1996-03-01,"Commercial Consumption","Alaska","AK",2748 +1996-03-01,"Commercial Consumption","Nebraska","NE",4257 +1996-03-01,"Commercial Consumption","Tennessee","TN",7255 +1996-03-01,"Commercial Consumption","Louisiana","LA",3016 +1996-03-01,"Commercial Consumption","District of Columbia","DC",1551 +1996-03-01,"Commercial Consumption","Wyoming","WY",1030 +1996-03-01,"Commercial Consumption","Rhode Island","RI",1606 +1996-03-01,"Commercial Consumption","Hawaii","HI",184 +1996-03-01,"Commercial Consumption","North Carolina","NC",4851 +1996-03-01,"Commercial Consumption","Massachusetts","MA",11148 +1996-03-01,"Commercial Consumption","Kentucky","KY",5586 +1996-03-01,"Commercial Consumption","Texas","TX",20685 +1996-03-01,"Commercial Consumption","Vermont","VT",381 +1996-03-01,"Commercial Consumption","California","CA",21723 +1996-03-01,"Commercial Consumption","Nevada","NV",2268 +1996-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105982 +1996-03-01,"Residential Consumption","South Dakota","SD",1865 +1996-03-01,"Residential Consumption","Nevada","NV",2903 +1996-03-01,"Residential Consumption","Oklahoma","OK",10164 +1996-03-01,"Residential Consumption","Texas","TX",28242 +1996-03-01,"Residential Consumption","Iowa","IA",11830 +1996-03-01,"Residential Consumption","North Dakota","ND",1764 +1996-03-01,"Residential Consumption","Idaho","ID",1847 +1996-03-01,"Residential Consumption","New Jersey","NJ",31467 +1996-03-01,"Residential Consumption","Kansas","KS",11170 +1996-03-01,"Residential Consumption","Washington","WA",7642 +1996-03-01,"Residential Consumption","Alabama","AL",8051 +1996-03-01,"Residential Consumption","West Virginia","WV",5495 +1996-03-01,"Residential Consumption","Ohio","OH",54228 +1996-03-01,"Residential Consumption","Wisconsin","WI",20320 +1996-03-01,"Residential Consumption","Minnesota","MN",19126 +1996-03-01,"Residential Consumption","Georgia","GA",17871 +1996-03-01,"Residential Consumption","Pennsylvania","PA",40492 +1996-03-01,"Residential Consumption","New Hampshire","NH",998 +1996-03-01,"Residential Consumption","Colorado","CO",14685 +1996-03-01,"Residential Consumption","Alaska","AK",1918 +1996-03-01,"Residential Consumption","South Carolina","SC",3741 +1996-03-01,"Residential Consumption","Rhode Island","RI",2664 +1996-03-01,"Residential Consumption","Oregon","OR",4042 +1996-03-01,"Residential Consumption","Tennessee","TN",9516 +1996-03-01,"Residential Consumption","New Mexico","NM",3085 +1996-03-01,"Residential Consumption","Kentucky","KY",10254 +1996-03-01,"Residential Consumption","U.S.","U.S.",705207 +1996-03-01,"Residential Consumption","New York","NY",57763 +1996-03-01,"Residential Consumption","Virginia","VA",11185 +1996-03-01,"Residential Consumption","Nebraska","NE",6609 +1996-03-01,"Residential Consumption","Montana","MT",2649 +1996-03-01,"Residential Consumption","North Carolina","NC",7391 +1996-03-01,"Residential Consumption","Louisiana","LA",7507 +1996-03-01,"Residential Consumption","Connecticut","CT",6245 +1996-03-01,"Residential Consumption","Vermont","VT",354 +1996-03-01,"Residential Consumption","Maryland","MD",11806 +1996-03-01,"Residential Consumption","District of Columbia","DC",2376 +1996-03-01,"Residential Consumption","Indiana","IN",24978 +1996-03-01,"Residential Consumption","Delaware","DE",1504 +1996-03-01,"Residential Consumption","Mississippi","MS",3851 +1996-03-01,"Residential Consumption","Utah","UT",5419 +1996-03-01,"Residential Consumption","Michigan","MI",57657 +1996-03-01,"Residential Consumption","Florida","FL",2058 +1996-03-01,"Residential Consumption","Missouri","MO",18852 +1996-03-01,"Residential Consumption","California","CA",52226 +1996-03-01,"Residential Consumption","Arizona","AZ",3366 +1996-03-01,"Residential Consumption","Wyoming","WY",1562 +1996-03-01,"Residential Consumption","Hawaii","HI",53 +1996-03-01,"Residential Consumption","Maine","ME",137 +1996-03-01,"Residential Consumption","Massachusetts","MA",16533 +1996-03-01,"Residential Consumption","Arkansas","AR",6146 +1996-03-01,"Residential Consumption","Illinois","IL",71599 +1996-04-01,"Commercial Consumption","Washington","WA",4147 +1996-04-01,"Commercial Consumption","North Carolina","NC",3760 +1996-04-01,"Commercial Consumption","Oklahoma","OK",4413 +1996-04-01,"Commercial Consumption","Missouri","MO",6625 +1996-04-01,"Commercial Consumption","U.S.","U.S.",283635 +1996-04-01,"Commercial Consumption","Vermont","VT",279 +1996-04-01,"Commercial Consumption","Hawaii","HI",190 +1996-04-01,"Commercial Consumption","Alabama","AL",2881 +1996-04-01,"Commercial Consumption","Minnesota","MN",8798 +1996-04-01,"Commercial Consumption","New Mexico","NM",2433 +1996-04-01,"Commercial Consumption","Massachusetts","MA",8955 +1996-04-01,"Commercial Consumption","South Dakota","SD",1059 +1996-04-01,"Commercial Consumption","Alaska","AK",2364 +1996-04-01,"Commercial Consumption","Utah","UT",2479 +1996-04-01,"Commercial Consumption","Virginia","VA",5137 +1996-04-01,"Commercial Consumption","Pennsylvania","PA",13276 +1996-04-01,"Commercial Consumption","Montana","MT",1332 +1996-04-01,"Commercial Consumption","Kansas","KS",4820 +1996-04-01,"Commercial Consumption","Louisiana","LA",2384 +1996-04-01,"Commercial Consumption","West Virginia","WV",2457 +1996-04-01,"Commercial Consumption","Colorado","CO",6977 +1996-04-01,"Commercial Consumption","Ohio","OH",16833 +1996-04-01,"Commercial Consumption","Michigan","MI",19664 +1996-04-01,"Commercial Consumption","Illinois","IL",17937 +1996-04-01,"Commercial Consumption","South Carolina","SC",1884 +1996-04-01,"Commercial Consumption","North Dakota","ND",1142 +1996-04-01,"Commercial Consumption","New Jersey","NJ",14789 +1996-04-01,"Commercial Consumption","Maryland","MD",3766 +1996-04-01,"Commercial Consumption","Nebraska","NE",3099 +1996-04-01,"Commercial Consumption","Tennessee","TN",5317 +1996-04-01,"Commercial Consumption","Wyoming","WY",925 +1996-04-01,"Commercial Consumption","California","CA",17358 +1996-04-01,"Commercial Consumption","New York","NY",NA +1996-04-01,"Commercial Consumption","Nevada","NV",1811 +1996-04-01,"Commercial Consumption","Oregon","OR",2059 +1996-04-01,"Commercial Consumption","Maine","ME",208 +1996-04-01,"Commercial Consumption","Texas","TX",17134 +1996-04-01,"Commercial Consumption","Idaho","ID",996 +1996-04-01,"Commercial Consumption","Iowa","IA",4783 +1996-04-01,"Commercial Consumption","Arkansas","AR",2964 +1996-04-01,"Commercial Consumption","Mississippi","MS",1987 +1996-04-01,"Commercial Consumption","Delaware","DE",691 +1996-04-01,"Commercial Consumption","District of Columbia","DC",1925 +1996-04-01,"Commercial Consumption","Wisconsin","WI",8140 +1996-04-01,"Commercial Consumption","New Hampshire","NH",661 +1996-04-01,"Commercial Consumption","Kentucky","KY",3305 +1996-04-01,"Commercial Consumption","Georgia","GA",5425 +1996-04-01,"Commercial Consumption","Florida","FL",3918 +1996-04-01,"Commercial Consumption","Rhode Island","RI",1251 +1996-04-01,"Commercial Consumption","Connecticut","CT",3535 +1996-04-01,"Commercial Consumption","Arizona","AZ",2532 +1996-04-01,"Commercial Consumption","Indiana","IN",7791 +1996-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103753 +1996-04-01,"Residential Consumption","Ohio","OH",34510 +1996-04-01,"Residential Consumption","Virginia","VA",6501 +1996-04-01,"Residential Consumption","Arkansas","AR",4846 +1996-04-01,"Residential Consumption","Washington","WA",5418 +1996-04-01,"Residential Consumption","Missouri","MO",13133 +1996-04-01,"Residential Consumption","California","CA",36723 +1996-04-01,"Residential Consumption","Rhode Island","RI",1901 +1996-04-01,"Residential Consumption","Maryland","MD",7257 +1996-04-01,"Residential Consumption","Oklahoma","OK",7697 +1996-04-01,"Residential Consumption","South Carolina","SC",2996 +1996-04-01,"Residential Consumption","Louisiana","LA",5158 +1996-04-01,"Residential Consumption","District of Columbia","DC",1712 +1996-04-01,"Residential Consumption","Florida","FL",1640 +1996-04-01,"Residential Consumption","Kentucky","KY",5565 +1996-04-01,"Residential Consumption","Delaware","DE",1116 +1996-04-01,"Residential Consumption","North Carolina","NC",6189 +1996-04-01,"Residential Consumption","Vermont","VT",268 +1996-04-01,"Residential Consumption","Utah","UT",4540 +1996-04-01,"Residential Consumption","Nebraska","NE",4786 +1996-04-01,"Residential Consumption","Montana","MT",2028 +1996-04-01,"Residential Consumption","Colorado","CO",11526 +1996-04-01,"Residential Consumption","Kansas","KS",6313 +1996-04-01,"Residential Consumption","Mississippi","MS",3174 +1996-04-01,"Residential Consumption","New Jersey","NJ",20410 +1996-04-01,"Residential Consumption","Arizona","AZ",2155 +1996-04-01,"Residential Consumption","Alaska","AK",1424 +1996-04-01,"Residential Consumption","Wyoming","WY",1292 +1996-04-01,"Residential Consumption","West Virginia","WV",3877 +1996-04-01,"Residential Consumption","Connecticut","CT",4399 +1996-04-01,"Residential Consumption","South Dakota","SD",1367 +1996-04-01,"Residential Consumption","Nevada","NV",1884 +1996-04-01,"Residential Consumption","Georgia","GA",9875 +1996-04-01,"Residential Consumption","Pennsylvania","PA",25624 +1996-04-01,"Residential Consumption","Indiana","IN",16823 +1996-04-01,"Residential Consumption","North Dakota","ND",1320 +1996-04-01,"Residential Consumption","Idaho","ID",1315 +1996-04-01,"Residential Consumption","Alabama","AL",6321 +1996-04-01,"Residential Consumption","Texas","TX",19123 +1996-04-01,"Residential Consumption","Oregon","OR",2821 +1996-04-01,"Residential Consumption","Hawaii","HI",49 +1996-04-01,"Residential Consumption","Tennessee","TN",7058 +1996-04-01,"Residential Consumption","New Mexico","NM",2586 +1996-04-01,"Residential Consumption","Maine","ME",81 +1996-04-01,"Residential Consumption","Massachusetts","MA",11564 +1996-04-01,"Residential Consumption","New Hampshire","NH",698 +1996-04-01,"Residential Consumption","Illinois","IL",43288 +1996-04-01,"Residential Consumption","Iowa","IA",6945 +1996-04-01,"Residential Consumption","Wisconsin","WI",12774 +1996-04-01,"Residential Consumption","Michigan","MI",40288 +1996-04-01,"Residential Consumption","Minnesota","MN",12254 +1996-04-01,"Residential Consumption","U.S.","U.S.",473842 +1996-04-01,"Residential Consumption","New York","NY",41232 +1996-05-01,"Commercial Consumption","Hawaii","HI",172 +1996-05-01,"Commercial Consumption","Alabama","AL",1716 +1996-05-01,"Commercial Consumption","Mississippi","MS",1256 +1996-05-01,"Commercial Consumption","Washington","WA",3434 +1996-05-01,"Commercial Consumption","South Dakota","SD",619 +1996-05-01,"Commercial Consumption","Alaska","AK",1789 +1996-05-01,"Commercial Consumption","Connecticut","CT",2255 +1996-05-01,"Commercial Consumption","New York","NY",NA +1996-05-01,"Commercial Consumption","Delaware","DE",365 +1996-05-01,"Commercial Consumption","Nevada","NV",1454 +1996-05-01,"Commercial Consumption","Illinois","IL",9659 +1996-05-01,"Commercial Consumption","District of Columbia","DC",1233 +1996-05-01,"Commercial Consumption","Minnesota","MN",5383 +1996-05-01,"Commercial Consumption","Utah","UT",1356 +1996-05-01,"Commercial Consumption","Oklahoma","OK",2222 +1996-05-01,"Commercial Consumption","Massachusetts","MA",6555 +1996-05-01,"Commercial Consumption","Maine","ME",132 +1996-05-01,"Commercial Consumption","U.S.","U.S.",182859 +1996-05-01,"Commercial Consumption","Maryland","MD",2672 +1996-05-01,"Commercial Consumption","Georgia","GA",3297 +1996-05-01,"Commercial Consumption","Florida","FL",3336 +1996-05-01,"Commercial Consumption","Rhode Island","RI",757 +1996-05-01,"Commercial Consumption","California","CA",16348 +1996-05-01,"Commercial Consumption","Wyoming","WY",712 +1996-05-01,"Commercial Consumption","North Carolina","NC",1970 +1996-05-01,"Commercial Consumption","Wisconsin","WI",5017 +1996-05-01,"Commercial Consumption","New Jersey","NJ",8824 +1996-05-01,"Commercial Consumption","New Hampshire","NH",402 +1996-05-01,"Commercial Consumption","Vermont","VT",153 +1996-05-01,"Commercial Consumption","Ohio","OH",8960 +1996-05-01,"Commercial Consumption","Tennessee","TN",2682 +1996-05-01,"Commercial Consumption","Louisiana","LA",1618 +1996-05-01,"Commercial Consumption","Kentucky","KY",1509 +1996-05-01,"Commercial Consumption","Michigan","MI",12272 +1996-05-01,"Commercial Consumption","New Mexico","NM",1410 +1996-05-01,"Commercial Consumption","Oregon","OR",1786 +1996-05-01,"Commercial Consumption","Pennsylvania","PA",7729 +1996-05-01,"Commercial Consumption","Missouri","MO",3563 +1996-05-01,"Commercial Consumption","Montana","MT",862 +1996-05-01,"Commercial Consumption","Idaho","ID",710 +1996-05-01,"Commercial Consumption","Arkansas","AR",1519 +1996-05-01,"Commercial Consumption","Nebraska","NE",1995 +1996-05-01,"Commercial Consumption","West Virginia","WV",1511 +1996-05-01,"Commercial Consumption","South Carolina","SC",1154 +1996-05-01,"Commercial Consumption","Colorado","CO",4424 +1996-05-01,"Commercial Consumption","Texas","TX",14205 +1996-05-01,"Commercial Consumption","Iowa","IA",2734 +1996-05-01,"Commercial Consumption","Indiana","IN",4195 +1996-05-01,"Commercial Consumption","North Dakota","ND",677 +1996-05-01,"Commercial Consumption","Virginia","VA",3465 +1996-05-01,"Commercial Consumption","Kansas","KS",3017 +1996-05-01,"Commercial Consumption","Arizona","AZ",2110 +1996-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105150 +1996-05-01,"Residential Consumption","Rhode Island","RI",1216 +1996-05-01,"Residential Consumption","Mississippi","MS",1366 +1996-05-01,"Residential Consumption","Connecticut","CT",2303 +1996-05-01,"Residential Consumption","Wisconsin","WI",8015 +1996-05-01,"Residential Consumption","Maryland","MD",4136 +1996-05-01,"Residential Consumption","Indiana","IN",8919 +1996-05-01,"Residential Consumption","West Virginia","WV",1652 +1996-05-01,"Residential Consumption","U.S.","U.S.",271486 +1996-05-01,"Residential Consumption","New York","NY",25231 +1996-05-01,"Residential Consumption","Oregon","OR",2300 +1996-05-01,"Residential Consumption","South Dakota","SD",803 +1996-05-01,"Residential Consumption","District of Columbia","DC",807 +1996-05-01,"Residential Consumption","Maine","ME",49 +1996-05-01,"Residential Consumption","Colorado","CO",6901 +1996-05-01,"Residential Consumption","California","CA",30001 +1996-05-01,"Residential Consumption","Alaska","AK",964 +1996-05-01,"Residential Consumption","Utah","UT",2252 +1996-05-01,"Residential Consumption","Alabama","AL",2948 +1996-05-01,"Residential Consumption","Wyoming","WY",922 +1996-05-01,"Residential Consumption","Arkansas","AR",1967 +1996-05-01,"Residential Consumption","Missouri","MO",6252 +1996-05-01,"Residential Consumption","Illinois","IL",27063 +1996-05-01,"Residential Consumption","Tennessee","TN",2355 +1996-05-01,"Residential Consumption","Nebraska","NE",2651 +1996-05-01,"Residential Consumption","Minnesota","MN",7335 +1996-05-01,"Residential Consumption","Pennsylvania","PA",13490 +1996-05-01,"Residential Consumption","North Dakota","ND",736 +1996-05-01,"Residential Consumption","Massachusetts","MA",7569 +1996-05-01,"Residential Consumption","Idaho","ID",976 +1996-05-01,"Residential Consumption","Montana","MT",1400 +1996-05-01,"Residential Consumption","Texas","TX",9574 +1996-05-01,"Residential Consumption","South Carolina","SC",954 +1996-05-01,"Residential Consumption","Louisiana","LA",2562 +1996-05-01,"Residential Consumption","Georgia","GA",4272 +1996-05-01,"Residential Consumption","New Jersey","NJ",11915 +1996-05-01,"Residential Consumption","New Hampshire","NH",426 +1996-05-01,"Residential Consumption","Washington","WA",4456 +1996-05-01,"Residential Consumption","Arizona","AZ",1328 +1996-05-01,"Residential Consumption","North Carolina","NC",2131 +1996-05-01,"Residential Consumption","Iowa","IA",4187 +1996-05-01,"Residential Consumption","Vermont","VT",167 +1996-05-01,"Residential Consumption","Virginia","VA",2536 +1996-05-01,"Residential Consumption","Florida","FL",1016 +1996-05-01,"Residential Consumption","Kentucky","KY",2255 +1996-05-01,"Residential Consumption","Oklahoma","OK",3321 +1996-05-01,"Residential Consumption","Delaware","DE",516 +1996-05-01,"Residential Consumption","Ohio","OH",17670 +1996-05-01,"Residential Consumption","Hawaii","HI",44 +1996-05-01,"Residential Consumption","Michigan","MI",24645 +1996-05-01,"Residential Consumption","Nevada","NV",1264 +1996-05-01,"Residential Consumption","New Mexico","NM",610 +1996-05-01,"Residential Consumption","Kansas","KS",3054 +1996-06-01,"Commercial Consumption","Minnesota","MN",3072 +1996-06-01,"Commercial Consumption","Utah","UT",892 +1996-06-01,"Commercial Consumption","Idaho","ID",477 +1996-06-01,"Commercial Consumption","North Dakota","ND",348 +1996-06-01,"Commercial Consumption","North Carolina","NC",1586 +1996-06-01,"Commercial Consumption","Missouri","MO",2380 +1996-06-01,"Commercial Consumption","Massachusetts","MA",4176 +1996-06-01,"Commercial Consumption","New York","NY",NA +1996-06-01,"Commercial Consumption","Nebraska","NE",1460 +1996-06-01,"Commercial Consumption","Washington","WA",2672 +1996-06-01,"Commercial Consumption","Virginia","VA",2928 +1996-06-01,"Commercial Consumption","South Dakota","SD",385 +1996-06-01,"Commercial Consumption","Kentucky","KY",1057 +1996-06-01,"Commercial Consumption","U.S.","U.S.",133356 +1996-06-01,"Commercial Consumption","Iowa","IA",1664 +1996-06-01,"Commercial Consumption","Connecticut","CT",1747 +1996-06-01,"Commercial Consumption","South Carolina","SC",997 +1996-06-01,"Commercial Consumption","Oregon","OR",1304 +1996-06-01,"Commercial Consumption","Georgia","GA",2508 +1996-06-01,"Commercial Consumption","Alaska","AK",1458 +1996-06-01,"Commercial Consumption","California","CA",15772 +1996-06-01,"Commercial Consumption","Mississippi","MS",1069 +1996-06-01,"Commercial Consumption","Michigan","MI",6343 +1996-06-01,"Commercial Consumption","Indiana","IN",2464 +1996-06-01,"Commercial Consumption","Illinois","IL",5695 +1996-06-01,"Commercial Consumption","Wyoming","WY",342 +1996-06-01,"Commercial Consumption","New Jersey","NJ",6280 +1996-06-01,"Commercial Consumption","Vermont","VT",97 +1996-06-01,"Commercial Consumption","Arkansas","AR",1052 +1996-06-01,"Commercial Consumption","New Hampshire","NH",244 +1996-06-01,"Commercial Consumption","Rhode Island","RI",446 +1996-06-01,"Commercial Consumption","Arizona","AZ",1987 +1996-06-01,"Commercial Consumption","Nevada","NV",1286 +1996-06-01,"Commercial Consumption","District of Columbia","DC",824 +1996-06-01,"Commercial Consumption","New Mexico","NM",1592 +1996-06-01,"Commercial Consumption","Oklahoma","OK",1770 +1996-06-01,"Commercial Consumption","Pennsylvania","PA",5199 +1996-06-01,"Commercial Consumption","Wisconsin","WI",2796 +1996-06-01,"Commercial Consumption","Montana","MT",509 +1996-06-01,"Commercial Consumption","Maine","ME",82 +1996-06-01,"Commercial Consumption","Texas","TX",12257 +1996-06-01,"Commercial Consumption","Maryland","MD",1816 +1996-06-01,"Commercial Consumption","Kansas","KS",1916 +1996-06-01,"Commercial Consumption","Ohio","OH",7661 +1996-06-01,"Commercial Consumption","Hawaii","HI",176 +1996-06-01,"Commercial Consumption","Tennessee","TN",2145 +1996-06-01,"Commercial Consumption","Louisiana","LA",1477 +1996-06-01,"Commercial Consumption","West Virginia","WV",1062 +1996-06-01,"Commercial Consumption","Colorado","CO",3052 +1996-06-01,"Commercial Consumption","Florida","FL",3029 +1996-06-01,"Commercial Consumption","Alabama","AL",1234 +1996-06-01,"Commercial Consumption","Delaware","DE",245 +1996-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102023 +1996-06-01,"Residential Consumption","Connecticut","CT",1274 +1996-06-01,"Residential Consumption","Michigan","MI",10619 +1996-06-01,"Residential Consumption","Maryland","MD",2709 +1996-06-01,"Residential Consumption","North Dakota","ND",356 +1996-06-01,"Residential Consumption","Colorado","CO",4316 +1996-06-01,"Residential Consumption","Arizona","AZ",1089 +1996-06-01,"Residential Consumption","Ohio","OH",10315 +1996-06-01,"Residential Consumption","Nebraska","NE",1475 +1996-06-01,"Residential Consumption","Pennsylvania","PA",7575 +1996-06-01,"Residential Consumption","Maine","ME",29 +1996-06-01,"Residential Consumption","Arkansas","AR",1202 +1996-06-01,"Residential Consumption","Kansas","KS",1734 +1996-06-01,"Residential Consumption","Hawaii","HI",45 +1996-06-01,"Residential Consumption","Virginia","VA",2088 +1996-06-01,"Residential Consumption","Georgia","GA",3115 +1996-06-01,"Residential Consumption","Missouri","MO",3404 +1996-06-01,"Residential Consumption","Illinois","IL",12437 +1996-06-01,"Residential Consumption","Mississippi","MS",839 +1996-06-01,"Residential Consumption","Minnesota","MN",3708 +1996-06-01,"Residential Consumption","Indiana","IN",4513 +1996-06-01,"Residential Consumption","New Jersey","NJ",6412 +1996-06-01,"Residential Consumption","Oklahoma","OK",1989 +1996-06-01,"Residential Consumption","Delaware","DE",310 +1996-06-01,"Residential Consumption","Alaska","AK",647 +1996-06-01,"Residential Consumption","West Virginia","WV",817 +1996-06-01,"Residential Consumption","Texas","TX",7819 +1996-06-01,"Residential Consumption","Nevada","NV",1011 +1996-06-01,"Residential Consumption","Florida","FL",786 +1996-06-01,"Residential Consumption","California","CA",25996 +1996-06-01,"Residential Consumption","U.S.","U.S.",162277 +1996-06-01,"Residential Consumption","Oregon","OR",1386 +1996-06-01,"Residential Consumption","North Carolina","NC",1210 +1996-06-01,"Residential Consumption","Tennessee","TN",1327 +1996-06-01,"Residential Consumption","Massachusetts","MA",3930 +1996-06-01,"Residential Consumption","Alabama","AL",1472 +1996-06-01,"Residential Consumption","Wyoming","WY",510 +1996-06-01,"Residential Consumption","New York","NY",14186 +1996-06-01,"Residential Consumption","South Carolina","SC",547 +1996-06-01,"Residential Consumption","Rhode Island","RI",692 +1996-06-01,"Residential Consumption","Iowa","IA",2343 +1996-06-01,"Residential Consumption","Utah","UT",1351 +1996-06-01,"Residential Consumption","New Mexico","NM",1701 +1996-06-01,"Residential Consumption","Montana","MT",745 +1996-06-01,"Residential Consumption","Louisiana","LA",1977 +1996-06-01,"Residential Consumption","Wisconsin","WI",4415 +1996-06-01,"Residential Consumption","Vermont","VT",85 +1996-06-01,"Residential Consumption","South Dakota","SD",464 +1996-06-01,"Residential Consumption","District of Columbia","DC",582 +1996-06-01,"Residential Consumption","Idaho","ID",542 +1996-06-01,"Residential Consumption","New Hampshire","NH",233 +1996-06-01,"Residential Consumption","Kentucky","KY",1335 +1996-06-01,"Residential Consumption","Washington","WA",2610 +1996-07-01,"Commercial Consumption","Wyoming","WY",197 +1996-07-01,"Commercial Consumption","Washington","WA",1857 +1996-07-01,"Commercial Consumption","North Carolina","NC",1415 +1996-07-01,"Commercial Consumption","New Mexico","NM",1429 +1996-07-01,"Commercial Consumption","Maryland","MD",1608 +1996-07-01,"Commercial Consumption","Florida","FL",2836 +1996-07-01,"Commercial Consumption","Hawaii","HI",176 +1996-07-01,"Commercial Consumption","Mississippi","MS",1156 +1996-07-01,"Commercial Consumption","Louisiana","LA",1268 +1996-07-01,"Commercial Consumption","North Dakota","ND",271 +1996-07-01,"Commercial Consumption","Utah","UT",904 +1996-07-01,"Commercial Consumption","Texas","TX",12459 +1996-07-01,"Commercial Consumption","Ohio","OH",4569 +1996-07-01,"Commercial Consumption","Iowa","IA",1212 +1996-07-01,"Commercial Consumption","Connecticut","CT",1969 +1996-07-01,"Commercial Consumption","Tennessee","TN",1962 +1996-07-01,"Commercial Consumption","Oklahoma","OK",1798 +1996-07-01,"Commercial Consumption","Wisconsin","WI",2037 +1996-07-01,"Commercial Consumption","New Hampshire","NH",180 +1996-07-01,"Commercial Consumption","Kentucky","KY",1033 +1996-07-01,"Commercial Consumption","Kansas","KS",3341 +1996-07-01,"Commercial Consumption","Georgia","GA",2737 +1996-07-01,"Commercial Consumption","New York","NY",NA +1996-07-01,"Commercial Consumption","Indiana","IN",2111 +1996-07-01,"Commercial Consumption","South Carolina","SC",940 +1996-07-01,"Commercial Consumption","Minnesota","MN",2377 +1996-07-01,"Commercial Consumption","Oregon","OR",967 +1996-07-01,"Commercial Consumption","Massachusetts","MA",3751 +1996-07-01,"Commercial Consumption","West Virginia","WV",1317 +1996-07-01,"Commercial Consumption","Colorado","CO",2406 +1996-07-01,"Commercial Consumption","Montana","MT",386 +1996-07-01,"Commercial Consumption","Vermont","VT",67 +1996-07-01,"Commercial Consumption","Alaska","AK",1337 +1996-07-01,"Commercial Consumption","California","CA",17155 +1996-07-01,"Commercial Consumption","Arkansas","AR",1056 +1996-07-01,"Commercial Consumption","Arizona","AZ",1779 +1996-07-01,"Commercial Consumption","Nevada","NV",1145 +1996-07-01,"Commercial Consumption","New Jersey","NJ",5807 +1996-07-01,"Commercial Consumption","U.S.","U.S.",125522 +1996-07-01,"Commercial Consumption","Alabama","AL",1169 +1996-07-01,"Commercial Consumption","Virginia","VA",2517 +1996-07-01,"Commercial Consumption","Missouri","MO",2289 +1996-07-01,"Commercial Consumption","South Dakota","SD",288 +1996-07-01,"Commercial Consumption","Maine","ME",74 +1996-07-01,"Commercial Consumption","Rhode Island","RI",421 +1996-07-01,"Commercial Consumption","Nebraska","NE",3544 +1996-07-01,"Commercial Consumption","Delaware","DE",202 +1996-07-01,"Commercial Consumption","Michigan","MI",5673 +1996-07-01,"Commercial Consumption","Illinois","IL",5426 +1996-07-01,"Commercial Consumption","District of Columbia","DC",878 +1996-07-01,"Commercial Consumption","Pennsylvania","PA",4348 +1996-07-01,"Commercial Consumption","Idaho","ID",346 +1996-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104504 +1996-07-01,"Residential Consumption","Utah","UT",1533 +1996-07-01,"Residential Consumption","Massachusetts","MA",2814 +1996-07-01,"Residential Consumption","Kentucky","KY",1108 +1996-07-01,"Residential Consumption","South Carolina","SC",425 +1996-07-01,"Residential Consumption","North Carolina","NC",889 +1996-07-01,"Residential Consumption","Louisiana","LA",1820 +1996-07-01,"Residential Consumption","Nebraska","NE",985 +1996-07-01,"Residential Consumption","Idaho","ID",300 +1996-07-01,"Residential Consumption","New Jersey","NJ",5103 +1996-07-01,"Residential Consumption","Alabama","AL",1295 +1996-07-01,"Residential Consumption","Ohio","OH",7210 +1996-07-01,"Residential Consumption","Nevada","NV",779 +1996-07-01,"Residential Consumption","Georgia","GA",3179 +1996-07-01,"Residential Consumption","Kansas","KS",1836 +1996-07-01,"Residential Consumption","U.S.","U.S.",124371 +1996-07-01,"Residential Consumption","Oregon","OR",839 +1996-07-01,"Residential Consumption","Wisconsin","WI",2753 +1996-07-01,"Residential Consumption","Minnesota","MN",2583 +1996-07-01,"Residential Consumption","New Mexico","NM",1623 +1996-07-01,"Residential Consumption","North Dakota","ND",212 +1996-07-01,"Residential Consumption","Arkansas","AR",930 +1996-07-01,"Residential Consumption","Washington","WA",1628 +1996-07-01,"Residential Consumption","California","CA",18649 +1996-07-01,"Residential Consumption","Wyoming","WY",273 +1996-07-01,"Residential Consumption","Texas","TX",7216 +1996-07-01,"Residential Consumption","Mississippi","MS",816 +1996-07-01,"Residential Consumption","District of Columbia","DC",412 +1996-07-01,"Residential Consumption","Rhode Island","RI",484 +1996-07-01,"Residential Consumption","Vermont","VT",51 +1996-07-01,"Residential Consumption","Michigan","MI",7657 +1996-07-01,"Residential Consumption","Florida","FL",741 +1996-07-01,"Residential Consumption","Arizona","AZ",916 +1996-07-01,"Residential Consumption","Alaska","AK",493 +1996-07-01,"Residential Consumption","West Virginia","WV",590 +1996-07-01,"Residential Consumption","New York","NY",10129 +1996-07-01,"Residential Consumption","Iowa","IA",1663 +1996-07-01,"Residential Consumption","Maine","ME",25 +1996-07-01,"Residential Consumption","Montana","MT",462 +1996-07-01,"Residential Consumption","Colorado","CO",2869 +1996-07-01,"Residential Consumption","Oklahoma","OK",1628 +1996-07-01,"Residential Consumption","Delaware","DE",196 +1996-07-01,"Residential Consumption","Illinois","IL",11346 +1996-07-01,"Residential Consumption","Hawaii","HI",42 +1996-07-01,"Residential Consumption","Connecticut","CT",1088 +1996-07-01,"Residential Consumption","Tennessee","TN",1166 +1996-07-01,"Residential Consumption","Virginia","VA",1502 +1996-07-01,"Residential Consumption","Maryland","MD",2139 +1996-07-01,"Residential Consumption","South Dakota","SD",239 +1996-07-01,"Residential Consumption","Pennsylvania","PA",5688 +1996-07-01,"Residential Consumption","Indiana","IN",3201 +1996-07-01,"Residential Consumption","New Hampshire","NH",159 +1996-07-01,"Residential Consumption","Missouri","MO",2688 +1996-08-01,"Commercial Consumption","Colorado","CO",2156 +1996-08-01,"Commercial Consumption","Oregon","OR",905 +1996-08-01,"Commercial Consumption","Pennsylvania","PA",4365 +1996-08-01,"Commercial Consumption","Missouri","MO",2356 +1996-08-01,"Commercial Consumption","Georgia","GA",2594 +1996-08-01,"Commercial Consumption","Ohio","OH",4401 +1996-08-01,"Commercial Consumption","Idaho","ID",354 +1996-08-01,"Commercial Consumption","Mississippi","MS",1198 +1996-08-01,"Commercial Consumption","Michigan","MI",5383 +1996-08-01,"Commercial Consumption","Virginia","VA",2081 +1996-08-01,"Commercial Consumption","Massachusetts","MA",4274 +1996-08-01,"Commercial Consumption","Kansas","KS",3505 +1996-08-01,"Commercial Consumption","Rhode Island","RI",443 +1996-08-01,"Commercial Consumption","Hawaii","HI",166 +1996-08-01,"Commercial Consumption","Arizona","AZ",1753 +1996-08-01,"Commercial Consumption","West Virginia","WV",1259 +1996-08-01,"Commercial Consumption","South Carolina","SC",957 +1996-08-01,"Commercial Consumption","U.S.","U.S.",122985 +1996-08-01,"Commercial Consumption","Connecticut","CT",1714 +1996-08-01,"Commercial Consumption","New York","NY",NA +1996-08-01,"Commercial Consumption","District of Columbia","DC",750 +1996-08-01,"Commercial Consumption","Minnesota","MN",2254 +1996-08-01,"Commercial Consumption","Oklahoma","OK",1678 +1996-08-01,"Commercial Consumption","Maine","ME",75 +1996-08-01,"Commercial Consumption","North Carolina","NC",1575 +1996-08-01,"Commercial Consumption","Wisconsin","WI",2294 +1996-08-01,"Commercial Consumption","Iowa","IA",1080 +1996-08-01,"Commercial Consumption","Alabama","AL",1133 +1996-08-01,"Commercial Consumption","Louisiana","LA",1321 +1996-08-01,"Commercial Consumption","Illinois","IL",5314 +1996-08-01,"Commercial Consumption","South Dakota","SD",283 +1996-08-01,"Commercial Consumption","New Jersey","NJ",5536 +1996-08-01,"Commercial Consumption","Montana","MT",374 +1996-08-01,"Commercial Consumption","Texas","TX",12079 +1996-08-01,"Commercial Consumption","Vermont","VT",69 +1996-08-01,"Commercial Consumption","Alaska","AK",1396 +1996-08-01,"Commercial Consumption","Arkansas","AR",1060 +1996-08-01,"Commercial Consumption","Nevada","NV",1062 +1996-08-01,"Commercial Consumption","Wyoming","WY",197 +1996-08-01,"Commercial Consumption","Washington","WA",1697 +1996-08-01,"Commercial Consumption","Utah","UT",874 +1996-08-01,"Commercial Consumption","Maryland","MD",1866 +1996-08-01,"Commercial Consumption","California","CA",17540 +1996-08-01,"Commercial Consumption","Nebraska","NE",2489 +1996-08-01,"Commercial Consumption","Tennessee","TN",1979 +1996-08-01,"Commercial Consumption","North Dakota","ND",301 +1996-08-01,"Commercial Consumption","New Mexico","NM",1352 +1996-08-01,"Commercial Consumption","New Hampshire","NH",193 +1996-08-01,"Commercial Consumption","Kentucky","KY",1123 +1996-08-01,"Commercial Consumption","Florida","FL",2716 +1996-08-01,"Commercial Consumption","Delaware","DE",203 +1996-08-01,"Commercial Consumption","Indiana","IN",2104 +1996-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105225 +1996-08-01,"Residential Consumption","Texas","TX",6534 +1996-08-01,"Residential Consumption","South Carolina","SC",419 +1996-08-01,"Residential Consumption","Nebraska","NE",932 +1996-08-01,"Residential Consumption","Idaho","ID",277 +1996-08-01,"Residential Consumption","New Hampshire","NH",155 +1996-08-01,"Residential Consumption","Kentucky","KY",1253 +1996-08-01,"Residential Consumption","Alabama","AL",1227 +1996-08-01,"Residential Consumption","West Virginia","WV",537 +1996-08-01,"Residential Consumption","Louisiana","LA",1831 +1996-08-01,"Residential Consumption","Iowa","IA",1610 +1996-08-01,"Residential Consumption","Hawaii","HI",40 +1996-08-01,"Residential Consumption","Pennsylvania","PA",5295 +1996-08-01,"Residential Consumption","North Dakota","ND",209 +1996-08-01,"Residential Consumption","Massachusetts","MA",2463 +1996-08-01,"Residential Consumption","Washington","WA",1250 +1996-08-01,"Residential Consumption","Oklahoma","OK",1515 +1996-08-01,"Residential Consumption","U.S.","U.S.",118296 +1996-08-01,"Residential Consumption","Oregon","OR",673 +1996-08-01,"Residential Consumption","Vermont","VT",47 +1996-08-01,"Residential Consumption","Tennessee","TN",1101 +1996-08-01,"Residential Consumption","Georgia","GA",2972 +1996-08-01,"Residential Consumption","District of Columbia","DC",380 +1996-08-01,"Residential Consumption","Colorado","CO",2505 +1996-08-01,"Residential Consumption","Missouri","MO",2448 +1996-08-01,"Residential Consumption","North Carolina","NC",862 +1996-08-01,"Residential Consumption","Connecticut","CT",954 +1996-08-01,"Residential Consumption","Maryland","MD",2064 +1996-08-01,"Residential Consumption","Maine","ME",23 +1996-08-01,"Residential Consumption","Wyoming","WY",265 +1996-08-01,"Residential Consumption","Ohio","OH",6306 +1996-08-01,"Residential Consumption","Mississippi","MS",771 +1996-08-01,"Residential Consumption","Utah","UT",1416 +1996-08-01,"Residential Consumption","South Dakota","SD",231 +1996-08-01,"Residential Consumption","Arkansas","AR",955 +1996-08-01,"Residential Consumption","New Jersey","NJ",4715 +1996-08-01,"Residential Consumption","Arizona","AZ",836 +1996-08-01,"Residential Consumption","Wisconsin","WI",2726 +1996-08-01,"Residential Consumption","Nevada","NV",678 +1996-08-01,"Residential Consumption","Kansas","KS",1640 +1996-08-01,"Residential Consumption","Alaska","AK",544 +1996-08-01,"Residential Consumption","Rhode Island","RI",450 +1996-08-01,"Residential Consumption","Indiana","IN",3117 +1996-08-01,"Residential Consumption","Florida","FL",658 +1996-08-01,"Residential Consumption","Delaware","DE",175 +1996-08-01,"Residential Consumption","California","CA",21757 +1996-08-01,"Residential Consumption","Virginia","VA",1424 +1996-08-01,"Residential Consumption","Michigan","MI",7300 +1996-08-01,"Residential Consumption","Minnesota","MN",2433 +1996-08-01,"Residential Consumption","New Mexico","NM",836 +1996-08-01,"Residential Consumption","Montana","MT",431 +1996-08-01,"Residential Consumption","New York","NY",NA +1996-08-01,"Residential Consumption","Illinois","IL",9546 +1996-09-01,"Commercial Consumption","Wyoming","WY",250 +1996-09-01,"Commercial Consumption","Utah","UT",1279 +1996-09-01,"Commercial Consumption","New Mexico","NM",1079 +1996-09-01,"Commercial Consumption","Oklahoma","OK",1759 +1996-09-01,"Commercial Consumption","Connecticut","CT",1822 +1996-09-01,"Commercial Consumption","Alabama","AL",1207 +1996-09-01,"Commercial Consumption","Nevada","NV",1116 +1996-09-01,"Commercial Consumption","West Virginia","WV",1171 +1996-09-01,"Commercial Consumption","New Hampshire","NH",201 +1996-09-01,"Commercial Consumption","Maryland","MD",1922 +1996-09-01,"Commercial Consumption","Nebraska","NE",2273 +1996-09-01,"Commercial Consumption","Michigan","MI",6146 +1996-09-01,"Commercial Consumption","Illinois","IL",7125 +1996-09-01,"Commercial Consumption","South Carolina","SC",1041 +1996-09-01,"Commercial Consumption","Colorado","CO",2227 +1996-09-01,"Commercial Consumption","Massachusetts","MA",4767 +1996-09-01,"Commercial Consumption","New Jersey","NJ",5870 +1996-09-01,"Commercial Consumption","Maine","ME",78 +1996-09-01,"Commercial Consumption","Iowa","IA",1926 +1996-09-01,"Commercial Consumption","Mississippi","MS",1078 +1996-09-01,"Commercial Consumption","Tennessee","TN",2354 +1996-09-01,"Commercial Consumption","Louisiana","LA",1305 +1996-09-01,"Commercial Consumption","U.S.","U.S.",124490 +1996-09-01,"Commercial Consumption","Georgia","GA",2673 +1996-09-01,"Commercial Consumption","Rhode Island","RI",581 +1996-09-01,"Commercial Consumption","Idaho","ID",421 +1996-09-01,"Commercial Consumption","Arkansas","AR",1106 +1996-09-01,"Commercial Consumption","Delaware","DE",223 +1996-09-01,"Commercial Consumption","District of Columbia","DC",774 +1996-09-01,"Commercial Consumption","North Carolina","NC",1658 +1996-09-01,"Commercial Consumption","Virginia","VA",2401 +1996-09-01,"Commercial Consumption","Missouri","MO",2235 +1996-09-01,"Commercial Consumption","Kentucky","KY",1194 +1996-09-01,"Commercial Consumption","Kansas","KS",1286 +1996-09-01,"Commercial Consumption","Florida","FL",2840 +1996-09-01,"Commercial Consumption","California","CA",17544 +1996-09-01,"Commercial Consumption","Minnesota","MN",2867 +1996-09-01,"Commercial Consumption","Pennsylvania","PA",4302 +1996-09-01,"Commercial Consumption","Alaska","AK",1617 +1996-09-01,"Commercial Consumption","Oregon","OR",1023 +1996-09-01,"Commercial Consumption","Wisconsin","WI",2376 +1996-09-01,"Commercial Consumption","South Dakota","SD",352 +1996-09-01,"Commercial Consumption","Montana","MT",498 +1996-09-01,"Commercial Consumption","Hawaii","HI",171 +1996-09-01,"Commercial Consumption","New York","NY",NA +1996-09-01,"Commercial Consumption","Indiana","IN",2202 +1996-09-01,"Commercial Consumption","Washington","WA",1920 +1996-09-01,"Commercial Consumption","North Dakota","ND",410 +1996-09-01,"Commercial Consumption","Texas","TX",8830 +1996-09-01,"Commercial Consumption","Vermont","VT",90 +1996-09-01,"Commercial Consumption","Ohio","OH",4048 +1996-09-01,"Commercial Consumption","Arizona","AZ",1680 +1996-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101963 +1996-09-01,"Residential Consumption","Rhode Island","RI",467 +1996-09-01,"Residential Consumption","Iowa","IA",1954 +1996-09-01,"Residential Consumption","Utah","UT",2540 +1996-09-01,"Residential Consumption","Michigan","MI",9068 +1996-09-01,"Residential Consumption","New Mexico","NM",844 +1996-09-01,"Residential Consumption","North Dakota","ND",256 +1996-09-01,"Residential Consumption","Colorado","CO",2773 +1996-09-01,"Residential Consumption","Delaware","DE",181 +1996-09-01,"Residential Consumption","Alabama","AL",1321 +1996-09-01,"Residential Consumption","U.S.","U.S.",137556 +1996-09-01,"Residential Consumption","South Carolina","SC",476 +1996-09-01,"Residential Consumption","North Carolina","NC",913 +1996-09-01,"Residential Consumption","Hawaii","HI",41 +1996-09-01,"Residential Consumption","Tennessee","TN",1190 +1996-09-01,"Residential Consumption","Nebraska","NE",1017 +1996-09-01,"Residential Consumption","Wyoming","WY",368 +1996-09-01,"Residential Consumption","Texas","TX",7495 +1996-09-01,"Residential Consumption","Louisiana","LA",1836 +1996-09-01,"Residential Consumption","Georgia","GA",3092 +1996-09-01,"Residential Consumption","Pennsylvania","PA",5907 +1996-09-01,"Residential Consumption","Indiana","IN",3617 +1996-09-01,"Residential Consumption","Florida","FL",690 +1996-09-01,"Residential Consumption","Arkansas","AR",1044 +1996-09-01,"Residential Consumption","Montana","MT",634 +1996-09-01,"Residential Consumption","Washington","WA",1572 +1996-09-01,"Residential Consumption","Vermont","VT",56 +1996-09-01,"Residential Consumption","Massachusetts","MA",2677 +1996-09-01,"Residential Consumption","Kentucky","KY",1389 +1996-09-01,"Residential Consumption","Ohio","OH",7026 +1996-09-01,"Residential Consumption","Mississippi","MS",804 +1996-09-01,"Residential Consumption","Wisconsin","WI",3130 +1996-09-01,"Residential Consumption","Virginia","VA",1414 +1996-09-01,"Residential Consumption","Maine","ME",28 +1996-09-01,"Residential Consumption","Oklahoma","OK",1679 +1996-09-01,"Residential Consumption","Arizona","AZ",900 +1996-09-01,"Residential Consumption","Illinois","IL",13137 +1996-09-01,"Residential Consumption","Oregon","OR",821 +1996-09-01,"Residential Consumption","Maryland","MD",2207 +1996-09-01,"Residential Consumption","California","CA",26104 +1996-09-01,"Residential Consumption","Connecticut","CT",992 +1996-09-01,"Residential Consumption","District of Columbia","DC",401 +1996-09-01,"Residential Consumption","New Jersey","NJ",5472 +1996-09-01,"Residential Consumption","Kansas","KS",1973 +1996-09-01,"Residential Consumption","Missouri","MO",2749 +1996-09-01,"Residential Consumption","Alaska","AK",589 +1996-09-01,"Residential Consumption","West Virginia","WV",696 +1996-09-01,"Residential Consumption","South Dakota","SD",316 +1996-09-01,"Residential Consumption","Nevada","NV",732 +1996-09-01,"Residential Consumption","Minnesota","MN",2968 +1996-09-01,"Residential Consumption","Idaho","ID",364 +1996-09-01,"Residential Consumption","New Hampshire","NH",169 +1996-09-01,"Residential Consumption","New York","NY",NA +1996-10-01,"Commercial Consumption","North Dakota","ND",661 +1996-10-01,"Commercial Consumption","Missouri","MO",2959 +1996-10-01,"Commercial Consumption","Massachusetts","MA",5432 +1996-10-01,"Commercial Consumption","Maine","ME",172 +1996-10-01,"Commercial Consumption","Maryland","MD",2427 +1996-10-01,"Commercial Consumption","Rhode Island","RI",648 +1996-10-01,"Commercial Consumption","Iowa","IA",2101 +1996-10-01,"Commercial Consumption","Louisiana","LA",1395 +1996-10-01,"Commercial Consumption","U.S.","U.S.",171277 +1996-10-01,"Commercial Consumption","Kansas","KS",2057 +1996-10-01,"Commercial Consumption","Idaho","ID",597 +1996-10-01,"Commercial Consumption","California","CA",18727 +1996-10-01,"Commercial Consumption","Illinois","IL",12090 +1996-10-01,"Commercial Consumption","Colorado","CO",3306 +1996-10-01,"Commercial Consumption","Oklahoma","OK",1900 +1996-10-01,"Commercial Consumption","Pennsylvania","PA",8161 +1996-10-01,"Commercial Consumption","Washington","WA",2701 +1996-10-01,"Commercial Consumption","Utah","UT",2073 +1996-10-01,"Commercial Consumption","South Dakota","SD",571 +1996-10-01,"Commercial Consumption","Nebraska","NE",2778 +1996-10-01,"Commercial Consumption","Mississippi","MS",1088 +1996-10-01,"Commercial Consumption","District of Columbia","DC",804 +1996-10-01,"Commercial Consumption","South Carolina","SC",1157 +1996-10-01,"Commercial Consumption","Minnesota","MN",5479 +1996-10-01,"Commercial Consumption","New Jersey","NJ",7731 +1996-10-01,"Commercial Consumption","New Hampshire","NH",360 +1996-10-01,"Commercial Consumption","Texas","TX",10151 +1996-10-01,"Commercial Consumption","Vermont","VT",162 +1996-10-01,"Commercial Consumption","Ohio","OH",8548 +1996-10-01,"Commercial Consumption","Arkansas","AR",1356 +1996-10-01,"Commercial Consumption","Alabama","AL",1402 +1996-10-01,"Commercial Consumption","Delaware","DE",277 +1996-10-01,"Commercial Consumption","Nevada","NV",1269 +1996-10-01,"Commercial Consumption","North Carolina","NC",1917 +1996-10-01,"Commercial Consumption","Oregon","OR",1306 +1996-10-01,"Commercial Consumption","Virginia","VA",3363 +1996-10-01,"Commercial Consumption","Florida","FL",2957 +1996-10-01,"Commercial Consumption","Connecticut","CT",2400 +1996-10-01,"Commercial Consumption","Arizona","AZ",1748 +1996-10-01,"Commercial Consumption","Michigan","MI",9472 +1996-10-01,"Commercial Consumption","West Virginia","WV",1620 +1996-10-01,"Commercial Consumption","New Mexico","NM",1365 +1996-10-01,"Commercial Consumption","Wisconsin","WI",4694 +1996-10-01,"Commercial Consumption","Montana","MT",848 +1996-10-01,"Commercial Consumption","Tennessee","TN",2830 +1996-10-01,"Commercial Consumption","Indiana","IN",4102 +1996-10-01,"Commercial Consumption","Wyoming","WY",640 +1996-10-01,"Commercial Consumption","Kentucky","KY",2241 +1996-10-01,"Commercial Consumption","Georgia","GA",3339 +1996-10-01,"Commercial Consumption","Hawaii","HI",170 +1996-10-01,"Commercial Consumption","Alaska","AK",2337 +1996-10-01,"Commercial Consumption","New York","NY",NA +1996-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104965 +1996-10-01,"Residential Consumption","Connecticut","CT",1840 +1996-10-01,"Residential Consumption","Kansas","KS",3163 +1996-10-01,"Residential Consumption","California","CA",30462 +1996-10-01,"Residential Consumption","Arizona","AZ",1082 +1996-10-01,"Residential Consumption","Alabama","AL",1647 +1996-10-01,"Residential Consumption","Alaska","AK",1238 +1996-10-01,"Residential Consumption","Illinois","IL",28081 +1996-10-01,"Residential Consumption","Texas","TX",9479 +1996-10-01,"Residential Consumption","Wisconsin","WI",7783 +1996-10-01,"Residential Consumption","Virginia","VA",2879 +1996-10-01,"Residential Consumption","Utah","UT",4215 +1996-10-01,"Residential Consumption","South Dakota","SD",578 +1996-10-01,"Residential Consumption","Florida","FL",752 +1996-10-01,"Residential Consumption","Nebraska","NE",2173 +1996-10-01,"Residential Consumption","Minnesota","MN",6705 +1996-10-01,"Residential Consumption","Georgia","GA",5771 +1996-10-01,"Residential Consumption","District of Columbia","DC",578 +1996-10-01,"Residential Consumption","North Dakota","ND",554 +1996-10-01,"Residential Consumption","New Hampshire","NH",312 +1996-10-01,"Residential Consumption","Missouri","MO",4321 +1996-10-01,"Residential Consumption","South Carolina","SC",800 +1996-10-01,"Residential Consumption","Ohio","OH",18651 +1996-10-01,"Residential Consumption","Arkansas","AR",1425 +1996-10-01,"Residential Consumption","Kentucky","KY",3018 +1996-10-01,"Residential Consumption","Wyoming","WY",1087 +1996-10-01,"Residential Consumption","Rhode Island","RI",738 +1996-10-01,"Residential Consumption","Mississippi","MS",929 +1996-10-01,"Residential Consumption","Louisiana","LA",2102 +1996-10-01,"Residential Consumption","Maryland","MD",3738 +1996-10-01,"Residential Consumption","New Mexico","NM",1330 +1996-10-01,"Residential Consumption","Indiana","IN",7846 +1996-10-01,"Residential Consumption","West Virginia","WV",1609 +1996-10-01,"Residential Consumption","New York","NY",NA +1996-10-01,"Residential Consumption","Iowa","IA",3620 +1996-10-01,"Residential Consumption","Hawaii","HI",39 +1996-10-01,"Residential Consumption","Vermont","VT",100 +1996-10-01,"Residential Consumption","Pennsylvania","PA",13202 +1996-10-01,"Residential Consumption","Maine","ME",67 +1996-10-01,"Residential Consumption","Idaho","ID",646 +1996-10-01,"Residential Consumption","North Carolina","NC",1701 +1996-10-01,"Residential Consumption","Massachusetts","MA",5012 +1996-10-01,"Residential Consumption","Montana","MT",1267 +1996-10-01,"Residential Consumption","Colorado","CO",4886 +1996-10-01,"Residential Consumption","Washington","WA",2930 +1996-10-01,"Residential Consumption","Delaware","DE",291 +1996-10-01,"Residential Consumption","U.S.","U.S.",243121 +1996-10-01,"Residential Consumption","Oregon","OR",1357 +1996-10-01,"Residential Consumption","Tennessee","TN",1987 +1996-10-01,"Residential Consumption","Michigan","MI",18528 +1996-10-01,"Residential Consumption","Nevada","NV",894 +1996-10-01,"Residential Consumption","New Jersey","NJ",9917 +1996-10-01,"Residential Consumption","Oklahoma","OK",2267 +1996-11-01,"Commercial Consumption","Missouri","MO",6136 +1996-11-01,"Commercial Consumption","New Jersey","NJ",12586 +1996-11-01,"Commercial Consumption","New Hampshire","NH",698 +1996-11-01,"Commercial Consumption","U.S.","U.S.",294522 +1996-11-01,"Commercial Consumption","Rhode Island","RI",972 +1996-11-01,"Commercial Consumption","Indiana","IN",9122 +1996-11-01,"Commercial Consumption","Minnesota","MN",10756 +1996-11-01,"Commercial Consumption","Iowa","IA",5896 +1996-11-01,"Commercial Consumption","California","CA",21313 +1996-11-01,"Commercial Consumption","Delaware","DE",502 +1996-11-01,"Commercial Consumption","Nevada","NV",1817 +1996-11-01,"Commercial Consumption","Colorado","CO",5807 +1996-11-01,"Commercial Consumption","Virginia","VA",5776 +1996-11-01,"Commercial Consumption","Kansas","KS",4867 +1996-11-01,"Commercial Consumption","Arizona","AZ",2461 +1996-11-01,"Commercial Consumption","Tennessee","TN",5116 +1996-11-01,"Commercial Consumption","Michigan","MI",19486 +1996-11-01,"Commercial Consumption","Wyoming","WY",1301 +1996-11-01,"Commercial Consumption","Washington","WA",4489 +1996-11-01,"Commercial Consumption","South Carolina","SC",1644 +1996-11-01,"Commercial Consumption","New Mexico","NM",2450 +1996-11-01,"Commercial Consumption","Oklahoma","OK",3273 +1996-11-01,"Commercial Consumption","Wisconsin","WI",11029 +1996-11-01,"Commercial Consumption","Montana","MT",1659 +1996-11-01,"Commercial Consumption","Alaska","AK",2743 +1996-11-01,"Commercial Consumption","Louisiana","LA",1680 +1996-11-01,"Commercial Consumption","West Virginia","WV",2494 +1996-11-01,"Commercial Consumption","Utah","UT",3185 +1996-11-01,"Commercial Consumption","Kentucky","KY",4439 +1996-11-01,"Commercial Consumption","Maryland","MD",4693 +1996-11-01,"Commercial Consumption","Florida","FL",3179 +1996-11-01,"Commercial Consumption","Vermont","VT",276 +1996-11-01,"Commercial Consumption","Ohio","OH",18274 +1996-11-01,"Commercial Consumption","Idaho","ID",1107 +1996-11-01,"Commercial Consumption","Hawaii","HI",160 +1996-11-01,"Commercial Consumption","District of Columbia","DC",1195 +1996-11-01,"Commercial Consumption","North Carolina","NC",3240 +1996-11-01,"Commercial Consumption","Oregon","OR",2314 +1996-11-01,"Commercial Consumption","Georgia","GA",5450 +1996-11-01,"Commercial Consumption","Arkansas","AR",2462 +1996-11-01,"Commercial Consumption","Alabama","AL",1991 +1996-11-01,"Commercial Consumption","Mississippi","MS",1631 +1996-11-01,"Commercial Consumption","Pennsylvania","PA",15107 +1996-11-01,"Commercial Consumption","Maine","ME",280 +1996-11-01,"Commercial Consumption","Connecticut","CT",3112 +1996-11-01,"Commercial Consumption","Nebraska","NE",3678 +1996-11-01,"Commercial Consumption","North Dakota","ND",1286 +1996-11-01,"Commercial Consumption","Massachusetts","MA",9718 +1996-11-01,"Commercial Consumption","South Dakota","SD",1237 +1996-11-01,"Commercial Consumption","Texas","TX",12865 +1996-11-01,"Commercial Consumption","New York","NY",NA +1996-11-01,"Commercial Consumption","Illinois","IL",25216 +1996-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103868 +1996-11-01,"Residential Consumption","Ohio","OH",38565 +1996-11-01,"Residential Consumption","Wisconsin","WI",16724 +1996-11-01,"Residential Consumption","Florida","FL",972 +1996-11-01,"Residential Consumption","Idaho","ID",1570 +1996-11-01,"Residential Consumption","Arkansas","AR",3768 +1996-11-01,"Residential Consumption","Kansas","KS",9447 +1996-11-01,"Residential Consumption","Arizona","AZ",2322 +1996-11-01,"Residential Consumption","South Carolina","SC",2168 +1996-11-01,"Residential Consumption","Iowa","IA",9782 +1996-11-01,"Residential Consumption","Connecticut","CT",3522 +1996-11-01,"Residential Consumption","Vermont","VT",208 +1996-11-01,"Residential Consumption","Georgia","GA",14651 +1996-11-01,"Residential Consumption","District of Columbia","DC",1252 +1996-11-01,"Residential Consumption","New Jersey","NJ",18933 +1996-11-01,"Residential Consumption","Missouri","MO",11687 +1996-11-01,"Residential Consumption","North Carolina","NC",4461 +1996-11-01,"Residential Consumption","Mississippi","MS",1880 +1996-11-01,"Residential Consumption","Oklahoma","OK",5722 +1996-11-01,"Residential Consumption","West Virginia","WV",3391 +1996-11-01,"Residential Consumption","Tennessee","TN",5949 +1996-11-01,"Residential Consumption","Utah","UT",5749 +1996-11-01,"Residential Consumption","Minnesota","MN",14959 +1996-11-01,"Residential Consumption","New Mexico","NM",3689 +1996-11-01,"Residential Consumption","Alabama","AL",3461 +1996-11-01,"Residential Consumption","Oregon","OR",3164 +1996-11-01,"Residential Consumption","Hawaii","HI",41 +1996-11-01,"Residential Consumption","Virginia","VA",7388 +1996-11-01,"Residential Consumption","Massachusetts","MA",9943 +1996-11-01,"Residential Consumption","Kentucky","KY",9022 +1996-11-01,"Residential Consumption","California","CA",43702 +1996-11-01,"Residential Consumption","Wyoming","WY",1334 +1996-11-01,"Residential Consumption","Louisiana","LA",3511 +1996-11-01,"Residential Consumption","Nevada","NV",2069 +1996-11-01,"Residential Consumption","North Dakota","ND",1256 +1996-11-01,"Residential Consumption","New Hampshire","NH",667 +1996-11-01,"Residential Consumption","Delaware","DE",648 +1996-11-01,"Residential Consumption","Alaska","AK",1708 +1996-11-01,"Residential Consumption","U.S.","U.S.",502981 +1996-11-01,"Residential Consumption","Rhode Island","RI",1416 +1996-11-01,"Residential Consumption","Nebraska","NE",4043 +1996-11-01,"Residential Consumption","Maryland","MD",7828 +1996-11-01,"Residential Consumption","South Dakota","SD",1414 +1996-11-01,"Residential Consumption","Pennsylvania","PA",27037 +1996-11-01,"Residential Consumption","Maine","ME",105 +1996-11-01,"Residential Consumption","Indiana","IN",18577 +1996-11-01,"Residential Consumption","Washington","WA",6207 +1996-11-01,"Residential Consumption","New York","NY",NA +1996-11-01,"Residential Consumption","Illinois","IL",63715 +1996-11-01,"Residential Consumption","Texas","TX",17793 +1996-11-01,"Residential Consumption","Michigan","MI",38862 +1996-11-01,"Residential Consumption","Montana","MT",2458 +1996-11-01,"Residential Consumption","Colorado","CO",9571 +1996-12-01,"Commercial Consumption","Utah","UT",4220 +1996-12-01,"Commercial Consumption","Pennsylvania","PA",22333 +1996-12-01,"Commercial Consumption","Rhode Island","RI",1290 +1996-12-01,"Commercial Consumption","Iowa","IA",8510 +1996-12-01,"Commercial Consumption","Arizona","AZ",3259 +1996-12-01,"Commercial Consumption","Tennessee","TN",7599 +1996-12-01,"Commercial Consumption","New Hampshire","NH",896 +1996-12-01,"Commercial Consumption","Kentucky","KY",5892 +1996-12-01,"Commercial Consumption","Georgia","GA",7462 +1996-12-01,"Commercial Consumption","Ohio","OH",26298 +1996-12-01,"Commercial Consumption","Mississippi","MS",2333 +1996-12-01,"Commercial Consumption","Indiana","IN",12378 +1996-12-01,"Commercial Consumption","Illinois","IL",32425 +1996-12-01,"Commercial Consumption","West Virginia","WV",3400 +1996-12-01,"Commercial Consumption","Minnesota","MN",15009 +1996-12-01,"Commercial Consumption","Vermont","VT",348 +1996-12-01,"Commercial Consumption","California","CA",24836 +1996-12-01,"Commercial Consumption","Washington","WA",6623 +1996-12-01,"Commercial Consumption","Colorado","CO",9028 +1996-12-01,"Commercial Consumption","Oregon","OR",3595 +1996-12-01,"Commercial Consumption","Texas","TX",18053 +1996-12-01,"Commercial Consumption","Kansas","KS",9187 +1996-12-01,"Commercial Consumption","Idaho","ID",1621 +1996-12-01,"Commercial Consumption","Alaska","AK",3236 +1996-12-01,"Commercial Consumption","Nebraska","NE",5032 +1996-12-01,"Commercial Consumption","Nevada","NV",2417 +1996-12-01,"Commercial Consumption","North Dakota","ND",1726 +1996-12-01,"Commercial Consumption","Oklahoma","OK",6014 +1996-12-01,"Commercial Consumption","Missouri","MO",10204 +1996-12-01,"Commercial Consumption","Maine","ME",310 +1996-12-01,"Commercial Consumption","Hawaii","HI",176 +1996-12-01,"Commercial Consumption","Alabama","AL",3123 +1996-12-01,"Commercial Consumption","Delaware","DE",821 +1996-12-01,"Commercial Consumption","Virginia","VA",7489 +1996-12-01,"Commercial Consumption","Massachusetts","MA",11752 +1996-12-01,"Commercial Consumption","Arkansas","AR",3876 +1996-12-01,"Commercial Consumption","Michigan","MI",26123 +1996-12-01,"Commercial Consumption","Wyoming","WY",1748 +1996-12-01,"Commercial Consumption","South Carolina","SC",2447 +1996-12-01,"Commercial Consumption","Wisconsin","WI",13368 +1996-12-01,"Commercial Consumption","Montana","MT",2123 +1996-12-01,"Commercial Consumption","U.S.","U.S.",409165 +1996-12-01,"Commercial Consumption","Maryland","MD",5433 +1996-12-01,"Commercial Consumption","Florida","FL",3830 +1996-12-01,"Commercial Consumption","New York","NY",NA +1996-12-01,"Commercial Consumption","Louisiana","LA",2435 +1996-12-01,"Commercial Consumption","District of Columbia","DC",2325 +1996-12-01,"Commercial Consumption","North Carolina","NC",5160 +1996-12-01,"Commercial Consumption","New Mexico","NM",3553 +1996-12-01,"Commercial Consumption","South Dakota","SD",1813 +1996-12-01,"Commercial Consumption","New Jersey","NJ",18834 +1996-12-01,"Commercial Consumption","Connecticut","CT",4902 +1996-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",106254 +1996-12-01,"Residential Consumption","Texas","TX",33952 +1996-12-01,"Residential Consumption","Ohio","OH",52480 +1996-12-01,"Residential Consumption","North Carolina","NC",8607 +1996-12-01,"Residential Consumption","Utah","UT",8203 +1996-12-01,"Residential Consumption","Nevada","NV",3386 +1996-12-01,"Residential Consumption","Pennsylvania","PA",36688 +1996-12-01,"Residential Consumption","Wyoming","WY",1744 +1996-12-01,"Residential Consumption","Oregon","OR",5200 +1996-12-01,"Residential Consumption","Michigan","MI",52724 +1996-12-01,"Residential Consumption","New Mexico","NM",5663 +1996-12-01,"Residential Consumption","Massachusetts","MA",13947 +1996-12-01,"Residential Consumption","Idaho","ID",2224 +1996-12-01,"Residential Consumption","Kansas","KS",14388 +1996-12-01,"Residential Consumption","Oklahoma","OK",11298 +1996-12-01,"Residential Consumption","U.S.","U.S.",737722 +1996-12-01,"Residential Consumption","Iowa","IA",14138 +1996-12-01,"Residential Consumption","Virginia","VA",10946 +1996-12-01,"Residential Consumption","Washington","WA",9804 +1996-12-01,"Residential Consumption","Missouri","MO",20539 +1996-12-01,"Residential Consumption","Delaware","DE",1236 +1996-12-01,"Residential Consumption","South Carolina","SC",4336 +1996-12-01,"Residential Consumption","Wisconsin","WI",21285 +1996-12-01,"Residential Consumption","Vermont","VT",302 +1996-12-01,"Residential Consumption","Nebraska","NE",7283 +1996-12-01,"Residential Consumption","Florida","FL",1583 +1996-12-01,"Residential Consumption","New Jersey","NJ",29983 +1996-12-01,"Residential Consumption","Arizona","AZ",4051 +1996-12-01,"Residential Consumption","Alabama","AL",6664 +1996-12-01,"Residential Consumption","Illinois","IL",80922 +1996-12-01,"Residential Consumption","Mississippi","MS",3676 +1996-12-01,"Residential Consumption","Maryland","MD",11426 +1996-12-01,"Residential Consumption","Minnesota","MN",22152 +1996-12-01,"Residential Consumption","Indiana","IN",26087 +1996-12-01,"Residential Consumption","North Dakota","ND",1894 +1996-12-01,"Residential Consumption","Tennessee","TN",10177 +1996-12-01,"Residential Consumption","California","CA",62905 +1996-12-01,"Residential Consumption","Hawaii","HI",44 +1996-12-01,"Residential Consumption","Connecticut","CT",5842 +1996-12-01,"Residential Consumption","South Dakota","SD",2243 +1996-12-01,"Residential Consumption","Arkansas","AR",6286 +1996-12-01,"Residential Consumption","Montana","MT",3286 +1996-12-01,"Residential Consumption","Kentucky","KY",10177 +1996-12-01,"Residential Consumption","Colorado","CO",15814 +1996-12-01,"Residential Consumption","Alaska","AK",2181 +1996-12-01,"Residential Consumption","West Virginia","WV",5166 +1996-12-01,"Residential Consumption","New York","NY",NA +1996-12-01,"Residential Consumption","Rhode Island","RI",2350 +1996-12-01,"Residential Consumption","Louisiana","LA",6173 +1996-12-01,"Residential Consumption","Georgia","GA",18574 +1996-12-01,"Residential Consumption","District of Columbia","DC",2406 +1996-12-01,"Residential Consumption","Maine","ME",120 +1996-12-01,"Residential Consumption","New Hampshire","NH",855 +1997-01-01,"Commercial Consumption","Utah","UT",5030 +1997-01-01,"Commercial Consumption","Oklahoma","OK",7750 +1997-01-01,"Commercial Consumption","Virginia","VA",8702 +1997-01-01,"Commercial Consumption","Kentucky","KY",7139 +1997-01-01,"Commercial Consumption","Rhode Island","RI",1694 +1997-01-01,"Commercial Consumption","Iowa","IA",10143 +1997-01-01,"Commercial Consumption","New York","NY",37271 +1997-01-01,"Commercial Consumption","Nevada","NV",2717 +1997-01-01,"Commercial Consumption","New Mexico","NM",4333 +1997-01-01,"Commercial Consumption","South Dakota","SD",2044 +1997-01-01,"Commercial Consumption","Texas","TX",26687 +1997-01-01,"Commercial Consumption","Delaware","DE",1041 +1997-01-01,"Commercial Consumption","District of Columbia","DC",2334 +1997-01-01,"Commercial Consumption","West Virginia","WV",3854 +1997-01-01,"Commercial Consumption","Montana","MT",2504 +1997-01-01,"Commercial Consumption","Florida","FL",4011 +1997-01-01,"Commercial Consumption","Idaho","ID",1810 +1997-01-01,"Commercial Consumption","California","CA",25777 +1997-01-01,"Commercial Consumption","Mississippi","MS",3242 +1997-01-01,"Commercial Consumption","Arizona","AZ",3833 +1997-01-01,"Commercial Consumption","North Carolina","NC",5964 +1997-01-01,"Commercial Consumption","Colorado","CO",10983 +1997-01-01,"Commercial Consumption","Oregon","OR",4019 +1997-01-01,"Commercial Consumption","U.S.","U.S.",473868 +1997-01-01,"Commercial Consumption","Kansas","KS",6069 +1997-01-01,"Commercial Consumption","Georgia","GA",8608 +1997-01-01,"Commercial Consumption","Ohio","OH",31650 +1997-01-01,"Commercial Consumption","Hawaii","HI",168 +1997-01-01,"Commercial Consumption","Alaska","AK",3335 +1997-01-01,"Commercial Consumption","Connecticut","CT",5813 +1997-01-01,"Commercial Consumption","Minnesota","MN",15781 +1997-01-01,"Commercial Consumption","Pennsylvania","PA",22121 +1997-01-01,"Commercial Consumption","Massachusetts","MA",14376 +1997-01-01,"Commercial Consumption","Tennessee","TN",9063 +1997-01-01,"Commercial Consumption","Michigan","MI",31844 +1997-01-01,"Commercial Consumption","Wyoming","WY",1570 +1997-01-01,"Commercial Consumption","Washington","WA",5932 +1997-01-01,"Commercial Consumption","South Carolina","SC",2378 +1997-01-01,"Commercial Consumption","Wisconsin","WI",15372 +1997-01-01,"Commercial Consumption","Maryland","MD",7593 +1997-01-01,"Commercial Consumption","Arkansas","AR",5115 +1997-01-01,"Commercial Consumption","Louisiana","LA",3629 +1997-01-01,"Commercial Consumption","Illinois","IL",36666 +1997-01-01,"Commercial Consumption","North Dakota","ND",1941 +1997-01-01,"Commercial Consumption","Missouri","MO",12455 +1997-01-01,"Commercial Consumption","New Jersey","NJ",24210 +1997-01-01,"Commercial Consumption","New Hampshire","NH",1121 +1997-01-01,"Commercial Consumption","Maine","ME",433 +1997-01-01,"Commercial Consumption","Vermont","VT",477 +1997-01-01,"Commercial Consumption","Alabama","AL",4257 +1997-01-01,"Commercial Consumption","Nebraska","NE",4714 +1997-01-01,"Commercial Consumption","Indiana","IN",14296 +1997-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102977 +1997-01-01,"Residential Consumption","Texas","TX",47522 +1997-01-01,"Residential Consumption","Rhode Island","RI",2890 +1997-01-01,"Residential Consumption","Mississippi","MS",5082 +1997-01-01,"Residential Consumption","Vermont","VT",419 +1997-01-01,"Residential Consumption","New Mexico","NM",7369 +1997-01-01,"Residential Consumption","Missouri","MO",25327 +1997-01-01,"Residential Consumption","U.S.","U.S.",902399 +1997-01-01,"Residential Consumption","Illinois","IL",100050 +1997-01-01,"Residential Consumption","Iowa","IA",17671 +1997-01-01,"Residential Consumption","Connecticut","CT",6335 +1997-01-01,"Residential Consumption","Virginia","VA",13047 +1997-01-01,"Residential Consumption","Maine","ME",166 +1997-01-01,"Residential Consumption","New Jersey","NJ",36513 +1997-01-01,"Residential Consumption","New Hampshire","NH",1061 +1997-01-01,"Residential Consumption","Colorado","CO",18564 +1997-01-01,"Residential Consumption","South Carolina","SC",5150 +1997-01-01,"Residential Consumption","Tennessee","TN",12717 +1997-01-01,"Residential Consumption","South Dakota","SD",2735 +1997-01-01,"Residential Consumption","Indiana","IN",32555 +1997-01-01,"Residential Consumption","Florida","FL",1955 +1997-01-01,"Residential Consumption","Arkansas","AR",8276 +1997-01-01,"Residential Consumption","Kansas","KS",14413 +1997-01-01,"Residential Consumption","Delaware","DE",1558 +1997-01-01,"Residential Consumption","California","CA",73871 +1997-01-01,"Residential Consumption","Arizona","AZ",5958 +1997-01-01,"Residential Consumption","Louisiana","LA",9792 +1997-01-01,"Residential Consumption","Wisconsin","WI",26289 +1997-01-01,"Residential Consumption","Utah","UT",9878 +1997-01-01,"Residential Consumption","Maryland","MD",13987 +1997-01-01,"Residential Consumption","Montana","MT",3865 +1997-01-01,"Residential Consumption","Kentucky","KY",13968 +1997-01-01,"Residential Consumption","Oklahoma","OK",13930 +1997-01-01,"Residential Consumption","Alabama","AL",9322 +1997-01-01,"Residential Consumption","Wyoming","WY",2251 +1997-01-01,"Residential Consumption","Hawaii","HI",51 +1997-01-01,"Residential Consumption","Nevada","NV",4490 +1997-01-01,"Residential Consumption","Minnesota","MN",25497 +1997-01-01,"Residential Consumption","Georgia","GA",21449 +1997-01-01,"Residential Consumption","Pennsylvania","PA",45904 +1997-01-01,"Residential Consumption","North Dakota","ND",2258 +1997-01-01,"Residential Consumption","Idaho","ID",2562 +1997-01-01,"Residential Consumption","Alaska","AK",2249 +1997-01-01,"Residential Consumption","West Virginia","WV",5908 +1997-01-01,"Residential Consumption","Ohio","OH",64295 +1997-01-01,"Residential Consumption","Michigan","MI",66951 +1997-01-01,"Residential Consumption","North Carolina","NC",10031 +1997-01-01,"Residential Consumption","Nebraska","NE",9688 +1997-01-01,"Residential Consumption","Massachusetts","MA",17449 +1997-01-01,"Residential Consumption","Washington","WA",8735 +1997-01-01,"Residential Consumption","Oregon","OR",5671 +1997-01-01,"Residential Consumption","District of Columbia","DC",2708 +1997-01-01,"Residential Consumption","New York","NY",62019 +1997-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",707 +1997-02-01,"Commercial Consumption","North Dakota","ND",1839 +1997-02-01,"Commercial Consumption","Utah","UT",4454 +1997-02-01,"Commercial Consumption","Kentucky","KY",5428 +1997-02-01,"Commercial Consumption","Texas","TX",22455 +1997-02-01,"Commercial Consumption","Kansas","KS",6502 +1997-02-01,"Commercial Consumption","Florida","FL",3758 +1997-02-01,"Commercial Consumption","New York","NY",38333 +1997-02-01,"Commercial Consumption","Tennessee","TN",9260 +1997-02-01,"Commercial Consumption","Louisiana","LA",3711 +1997-02-01,"Commercial Consumption","Illinois","IL",29596 +1997-02-01,"Commercial Consumption","Oklahoma","OK",7268 +1997-02-01,"Commercial Consumption","California","CA",25491 +1997-02-01,"Commercial Consumption","Alabama","AL",4120 +1997-02-01,"Commercial Consumption","West Virginia","WV",3611 +1997-02-01,"Commercial Consumption","Pennsylvania","PA",19254 +1997-02-01,"Commercial Consumption","Nevada","NV",2634 +1997-02-01,"Commercial Consumption","District of Columbia","DC",2315 +1997-02-01,"Commercial Consumption","Colorado","CO",10199 +1997-02-01,"Commercial Consumption","Virginia","VA",7987 +1997-02-01,"Commercial Consumption","New Hampshire","NH",1110 +1997-02-01,"Commercial Consumption","U.S.","U.S.",419698 +1997-02-01,"Commercial Consumption","Idaho","ID",1778 +1997-02-01,"Commercial Consumption","New Mexico","NM",4090 +1997-02-01,"Commercial Consumption","Oregon","OR",3693 +1997-02-01,"Commercial Consumption","New Jersey","NJ",15701 +1997-02-01,"Commercial Consumption","Georgia","GA",7939 +1997-02-01,"Commercial Consumption","Vermont","VT",444 +1997-02-01,"Commercial Consumption","Rhode Island","RI",1744 +1997-02-01,"Commercial Consumption","Connecticut","CT",5365 +1997-02-01,"Commercial Consumption","Arkansas","AR",4724 +1997-02-01,"Commercial Consumption","Delaware","DE",1062 +1997-02-01,"Commercial Consumption","Michigan","MI",27773 +1997-02-01,"Commercial Consumption","North Carolina","NC",5747 +1997-02-01,"Commercial Consumption","Iowa","IA",7031 +1997-02-01,"Commercial Consumption","Hawaii","HI",168 +1997-02-01,"Commercial Consumption","Nebraska","NE",3925 +1997-02-01,"Commercial Consumption","Mississippi","MS",3075 +1997-02-01,"Commercial Consumption","Wyoming","WY",1309 +1997-02-01,"Commercial Consumption","Maine","ME",348 +1997-02-01,"Commercial Consumption","Maryland","MD",6282 +1997-02-01,"Commercial Consumption","Ohio","OH",28014 +1997-02-01,"Commercial Consumption","Alaska","AK",2529 +1997-02-01,"Commercial Consumption","Washington","WA",4957 +1997-02-01,"Commercial Consumption","South Carolina","SC",2381 +1997-02-01,"Commercial Consumption","Minnesota","MN",13278 +1997-02-01,"Commercial Consumption","Missouri","MO",12741 +1997-02-01,"Commercial Consumption","Massachusetts","MA",13958 +1997-02-01,"Commercial Consumption","Wisconsin","WI",11644 +1997-02-01,"Commercial Consumption","South Dakota","SD",1605 +1997-02-01,"Commercial Consumption","Montana","MT",1956 +1997-02-01,"Commercial Consumption","Arizona","AZ",3502 +1997-02-01,"Commercial Consumption","Indiana","IN",11608 +1997-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93301 +1997-02-01,"Residential Consumption","North Carolina","NC",9983 +1997-02-01,"Residential Consumption","Tennessee","TN",11997 +1997-02-01,"Residential Consumption","Nebraska","NE",7825 +1997-02-01,"Residential Consumption","Michigan","MI",57608 +1997-02-01,"Residential Consumption","District of Columbia","DC",2655 +1997-02-01,"Residential Consumption","Indiana","IN",26114 +1997-02-01,"Residential Consumption","Kentucky","KY",8981 +1997-02-01,"Residential Consumption","Delaware","DE",1621 +1997-02-01,"Residential Consumption","Louisiana","LA",9272 +1997-02-01,"Residential Consumption","Montana","MT",3025 +1997-02-01,"Residential Consumption","U.S.","U.S.",757457 +1997-02-01,"Residential Consumption","South Carolina","SC",5046 +1997-02-01,"Residential Consumption","Oregon","OR",5128 +1997-02-01,"Residential Consumption","Iowa","IA",11951 +1997-02-01,"Residential Consumption","South Dakota","SD",2089 +1997-02-01,"Residential Consumption","North Dakota","ND",1931 +1997-02-01,"Residential Consumption","Massachusetts","MA",17795 +1997-02-01,"Residential Consumption","Washington","WA",7525 +1997-02-01,"Residential Consumption","Wyoming","WY",1667 +1997-02-01,"Residential Consumption","Illinois","IL",69319 +1997-02-01,"Residential Consumption","Rhode Island","RI",2891 +1997-02-01,"Residential Consumption","Pennsylvania","PA",41208 +1997-02-01,"Residential Consumption","New Mexico","NM",5668 +1997-02-01,"Residential Consumption","Idaho","ID",2540 +1997-02-01,"Residential Consumption","New Jersey","NJ",33410 +1997-02-01,"Residential Consumption","Texas","TX",36893 +1997-02-01,"Residential Consumption","Mississippi","MS",4999 +1997-02-01,"Residential Consumption","Wisconsin","WI",19211 +1997-02-01,"Residential Consumption","Minnesota","MN",19703 +1997-02-01,"Residential Consumption","Arkansas","AR",7745 +1997-02-01,"Residential Consumption","Colorado","CO",17485 +1997-02-01,"Residential Consumption","New York","NY",56003 +1997-02-01,"Residential Consumption","Vermont","VT",416 +1997-02-01,"Residential Consumption","Virginia","VA",11670 +1997-02-01,"Residential Consumption","Utah","UT",8367 +1997-02-01,"Residential Consumption","Maryland","MD",11954 +1997-02-01,"Residential Consumption","Georgia","GA",16288 +1997-02-01,"Residential Consumption","Florida","FL",1866 +1997-02-01,"Residential Consumption","Alaska","AK",1618 +1997-02-01,"Residential Consumption","West Virginia","WV",5572 +1997-02-01,"Residential Consumption","Hawaii","HI",49 +1997-02-01,"Residential Consumption","Connecticut","CT",6622 +1997-02-01,"Residential Consumption","Nevada","NV",3843 +1997-02-01,"Residential Consumption","Maine","ME",133 +1997-02-01,"Residential Consumption","New Hampshire","NH",1136 +1997-02-01,"Residential Consumption","California","CA",65672 +1997-02-01,"Residential Consumption","Ohio","OH",51748 +1997-02-01,"Residential Consumption","Kansas","KS",11040 +1997-02-01,"Residential Consumption","Oklahoma","OK",12696 +1997-02-01,"Residential Consumption","Missouri","MO",23276 +1997-02-01,"Residential Consumption","Arizona","AZ",5075 +1997-02-01,"Residential Consumption","Alabama","AL",9129 +1997-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",639 +1997-03-01,"Commercial Consumption","Wyoming","WY",1403 +1997-03-01,"Commercial Consumption","Washington","WA",4431 +1997-03-01,"Commercial Consumption","North Carolina","NC",3731 +1997-03-01,"Commercial Consumption","Pennsylvania","PA",17524 +1997-03-01,"Commercial Consumption","Maine","ME",378 +1997-03-01,"Commercial Consumption","Arizona","AZ",3132 +1997-03-01,"Commercial Consumption","Louisiana","LA",2519 +1997-03-01,"Commercial Consumption","Oklahoma","OK",5138 +1997-03-01,"Commercial Consumption","Wisconsin","WI",10580 +1997-03-01,"Commercial Consumption","Connecticut","CT",4813 +1997-03-01,"Commercial Consumption","Nebraska","NE",3330 +1997-03-01,"Commercial Consumption","District of Columbia","DC",2183 +1997-03-01,"Commercial Consumption","South Carolina","SC",1793 +1997-03-01,"Commercial Consumption","Massachusetts","MA",11697 +1997-03-01,"Commercial Consumption","Texas","TX",20884 +1997-03-01,"Commercial Consumption","Georgia","GA",4853 +1997-03-01,"Commercial Consumption","Vermont","VT",429 +1997-03-01,"Commercial Consumption","New Mexico","NM",3044 +1997-03-01,"Commercial Consumption","Oregon","OR",3082 +1997-03-01,"Commercial Consumption","Ohio","OH",23080 +1997-03-01,"Commercial Consumption","California","CA",23316 +1997-03-01,"Commercial Consumption","Alabama","AL",2622 +1997-03-01,"Commercial Consumption","New York","NY",33984 +1997-03-01,"Commercial Consumption","Nevada","NV",2447 +1997-03-01,"Commercial Consumption","Minnesota","MN",11911 +1997-03-01,"Commercial Consumption","Colorado","CO",8353 +1997-03-01,"Commercial Consumption","Missouri","MO",7929 +1997-03-01,"Commercial Consumption","Montana","MT",1632 +1997-03-01,"Commercial Consumption","Kentucky","KY",4048 +1997-03-01,"Commercial Consumption","Florida","FL",3222 +1997-03-01,"Commercial Consumption","Hawaii","HI",160 +1997-03-01,"Commercial Consumption","Mississippi","MS",2114 +1997-03-01,"Commercial Consumption","West Virginia","WV",2771 +1997-03-01,"Commercial Consumption","North Dakota","ND",1372 +1997-03-01,"Commercial Consumption","Utah","UT",3350 +1997-03-01,"Commercial Consumption","New Hampshire","NH",954 +1997-03-01,"Commercial Consumption","Maryland","MD",5673 +1997-03-01,"Commercial Consumption","Rhode Island","RI",1739 +1997-03-01,"Commercial Consumption","Alaska","AK",2861 +1997-03-01,"Commercial Consumption","Arkansas","AR",3142 +1997-03-01,"Commercial Consumption","Indiana","IN",9129 +1997-03-01,"Commercial Consumption","South Dakota","SD",1234 +1997-03-01,"Commercial Consumption","U.S.","U.S.",359595 +1997-03-01,"Commercial Consumption","Kansas","KS",4739 +1997-03-01,"Commercial Consumption","Delaware","DE",871 +1997-03-01,"Commercial Consumption","Michigan","MI",25030 +1997-03-01,"Commercial Consumption","Illinois","IL",23084 +1997-03-01,"Commercial Consumption","Virginia","VA",7137 +1997-03-01,"Commercial Consumption","New Jersey","NJ",24060 +1997-03-01,"Commercial Consumption","Idaho","ID",1341 +1997-03-01,"Commercial Consumption","Iowa","IA",5789 +1997-03-01,"Commercial Consumption","Tennessee","TN",5557 +1997-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103593 +1997-03-01,"Residential Consumption","Hawaii","HI",46 +1997-03-01,"Residential Consumption","Nevada","NV",3187 +1997-03-01,"Residential Consumption","West Virginia","WV",4273 +1997-03-01,"Residential Consumption","Texas","TX",25245 +1997-03-01,"Residential Consumption","Rhode Island","RI",2462 +1997-03-01,"Residential Consumption","Oregon","OR",4242 +1997-03-01,"Residential Consumption","Mississippi","MS",3058 +1997-03-01,"Residential Consumption","Louisiana","LA",5700 +1997-03-01,"Residential Consumption","Pennsylvania","PA",33473 +1997-03-01,"Residential Consumption","Kentucky","KY",7304 +1997-03-01,"Residential Consumption","Oklahoma","OK",9077 +1997-03-01,"Residential Consumption","Arizona","AZ",4221 +1997-03-01,"Residential Consumption","Alabama","AL",5344 +1997-03-01,"Residential Consumption","U.S.","U.S.",605856 +1997-03-01,"Residential Consumption","Iowa","IA",9584 +1997-03-01,"Residential Consumption","Georgia","GA",8959 +1997-03-01,"Residential Consumption","Washington","WA",6526 +1997-03-01,"Residential Consumption","Delaware","DE",1272 +1997-03-01,"Residential Consumption","Alaska","AK",1767 +1997-03-01,"Residential Consumption","Ohio","OH",43523 +1997-03-01,"Residential Consumption","Michigan","MI",51355 +1997-03-01,"Residential Consumption","Indiana","IN",20542 +1997-03-01,"Residential Consumption","Missouri","MO",15385 +1997-03-01,"Residential Consumption","Virginia","VA",9068 +1997-03-01,"Residential Consumption","Utah","UT",5945 +1997-03-01,"Residential Consumption","Nebraska","NE",6229 +1997-03-01,"Residential Consumption","South Dakota","SD",1625 +1997-03-01,"Residential Consumption","Florida","FL",1154 +1997-03-01,"Residential Consumption","New York","NY",51213 +1997-03-01,"Residential Consumption","North Carolina","NC",5800 +1997-03-01,"Residential Consumption","Connecticut","CT",5243 +1997-03-01,"Residential Consumption","Maryland","MD",9414 +1997-03-01,"Residential Consumption","District of Columbia","DC",2049 +1997-03-01,"Residential Consumption","New Mexico","NM",3836 +1997-03-01,"Residential Consumption","Maine","ME",142 +1997-03-01,"Residential Consumption","Massachusetts","MA",15138 +1997-03-01,"Residential Consumption","New Hampshire","NH",913 +1997-03-01,"Residential Consumption","Kansas","KS",7997 +1997-03-01,"Residential Consumption","Wyoming","WY",1550 +1997-03-01,"Residential Consumption","Wisconsin","WI",17278 +1997-03-01,"Residential Consumption","Minnesota","MN",16686 +1997-03-01,"Residential Consumption","North Dakota","ND",1527 +1997-03-01,"Residential Consumption","Colorado","CO",15768 +1997-03-01,"Residential Consumption","Illinois","IL",61395 +1997-03-01,"Residential Consumption","South Carolina","SC",2619 +1997-03-01,"Residential Consumption","Vermont","VT",383 +1997-03-01,"Residential Consumption","Tennessee","TN",6666 +1997-03-01,"Residential Consumption","Idaho","ID",1907 +1997-03-01,"Residential Consumption","Arkansas","AR",4937 +1997-03-01,"Residential Consumption","New Jersey","NJ",32686 +1997-03-01,"Residential Consumption","Montana","MT",2477 +1997-03-01,"Residential Consumption","California","CA",47664 +1997-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",707 +1997-04-01,"Commercial Consumption","North Dakota","ND",1061 +1997-04-01,"Commercial Consumption","Idaho","ID",1037 +1997-04-01,"Commercial Consumption","Delaware","DE",637 +1997-04-01,"Commercial Consumption","Minnesota","MN",8158 +1997-04-01,"Commercial Consumption","Colorado","CO",6433 +1997-04-01,"Commercial Consumption","New Jersey","NJ",16399 +1997-04-01,"Commercial Consumption","Kentucky","KY",2878 +1997-04-01,"Commercial Consumption","Texas","TX",15194 +1997-04-01,"Commercial Consumption","Maryland","MD",4235 +1997-04-01,"Commercial Consumption","Georgia","GA",4135 +1997-04-01,"Commercial Consumption","Alaska","AK",2225 +1997-04-01,"Commercial Consumption","Michigan","MI",18732 +1997-04-01,"Commercial Consumption","Indiana","IN",6466 +1997-04-01,"Commercial Consumption","Washington","WA",3188 +1997-04-01,"Commercial Consumption","U.S.","U.S.",268912 +1997-04-01,"Commercial Consumption","California","CA",20497 +1997-04-01,"Commercial Consumption","Nevada","NV",1900 +1997-04-01,"Commercial Consumption","New Mexico","NM",1915 +1997-04-01,"Commercial Consumption","Missouri","MO",5758 +1997-04-01,"Commercial Consumption","Montana","MT",1348 +1997-04-01,"Commercial Consumption","Louisiana","LA",1931 +1997-04-01,"Commercial Consumption","Illinois","IL",16531 +1997-04-01,"Commercial Consumption","Kansas","KS",3206 +1997-04-01,"Commercial Consumption","Alabama","AL",2089 +1997-04-01,"Commercial Consumption","Nebraska","NE",2520 +1997-04-01,"Commercial Consumption","West Virginia","WV",2116 +1997-04-01,"Commercial Consumption","South Carolina","SC",1202 +1997-04-01,"Commercial Consumption","Virginia","VA",5668 +1997-04-01,"Commercial Consumption","Massachusetts","MA",9132 +1997-04-01,"Commercial Consumption","Florida","FL",2945 +1997-04-01,"Commercial Consumption","Hawaii","HI",155 +1997-04-01,"Commercial Consumption","Connecticut","CT",4069 +1997-04-01,"Commercial Consumption","Tennessee","TN",4176 +1997-04-01,"Commercial Consumption","Oregon","OR",2309 +1997-04-01,"Commercial Consumption","Pennsylvania","PA",12746 +1997-04-01,"Commercial Consumption","Wisconsin","WI",6913 +1997-04-01,"Commercial Consumption","South Dakota","SD",939 +1997-04-01,"Commercial Consumption","Rhode Island","RI",1144 +1997-04-01,"Commercial Consumption","Iowa","IA",3877 +1997-04-01,"Commercial Consumption","Arkansas","AR",2166 +1997-04-01,"Commercial Consumption","Mississippi","MS",1532 +1997-04-01,"Commercial Consumption","Arizona","AZ",2546 +1997-04-01,"Commercial Consumption","District of Columbia","DC",1738 +1997-04-01,"Commercial Consumption","Wyoming","WY",1189 +1997-04-01,"Commercial Consumption","North Carolina","NC",2909 +1997-04-01,"Commercial Consumption","Utah","UT",2664 +1997-04-01,"Commercial Consumption","Oklahoma","OK",3659 +1997-04-01,"Commercial Consumption","New Hampshire","NH",739 +1997-04-01,"Commercial Consumption","Maine","ME",231 +1997-04-01,"Commercial Consumption","Vermont","VT",296 +1997-04-01,"Commercial Consumption","Ohio","OH",15083 +1997-04-01,"Commercial Consumption","New York","NY",28292 +1997-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98734 +1997-04-01,"Residential Consumption","Connecticut","CT",4435 +1997-04-01,"Residential Consumption","Maine","ME",85 +1997-04-01,"Residential Consumption","Arkansas","AR",3290 +1997-04-01,"Residential Consumption","California","CA",38704 +1997-04-01,"Residential Consumption","Wyoming","WY",1062 +1997-04-01,"Residential Consumption","Ohio","OH",32544 +1997-04-01,"Residential Consumption","Virginia","VA",6622 +1997-04-01,"Residential Consumption","Washington","WA",3680 +1997-04-01,"Residential Consumption","Oklahoma","OK",6164 +1997-04-01,"Residential Consumption","U.S.","U.S.",433073 +1997-04-01,"Residential Consumption","Louisiana","LA",3648 +1997-04-01,"Residential Consumption","Tennessee","TN",4776 +1997-04-01,"Residential Consumption","Georgia","GA",8183 +1997-04-01,"Residential Consumption","Indiana","IN",15114 +1997-04-01,"Residential Consumption","North Dakota","ND",1133 +1997-04-01,"Residential Consumption","Montana","MT",2003 +1997-04-01,"Residential Consumption","Kansas","KS",5839 +1997-04-01,"Residential Consumption","West Virginia","WV",3386 +1997-04-01,"Residential Consumption","New York","NY",37597 +1997-04-01,"Residential Consumption","Oregon","OR",3130 +1997-04-01,"Residential Consumption","South Dakota","SD",1250 +1997-04-01,"Residential Consumption","Colorado","CO",10975 +1997-04-01,"Residential Consumption","Arizona","AZ",2251 +1997-04-01,"Residential Consumption","South Carolina","SC",1794 +1997-04-01,"Residential Consumption","North Carolina","NC",4080 +1997-04-01,"Residential Consumption","Hawaii","HI",41 +1997-04-01,"Residential Consumption","Utah","UT",4876 +1997-04-01,"Residential Consumption","Idaho","ID",1463 +1997-04-01,"Residential Consumption","Delaware","DE",948 +1997-04-01,"Residential Consumption","Illinois","IL",41167 +1997-04-01,"Residential Consumption","Texas","TX",15606 +1997-04-01,"Residential Consumption","Vermont","VT",283 +1997-04-01,"Residential Consumption","Michigan","MI",38297 +1997-04-01,"Residential Consumption","Maryland","MD",6912 +1997-04-01,"Residential Consumption","Nevada","NV",2027 +1997-04-01,"Residential Consumption","Florida","FL",914 +1997-04-01,"Residential Consumption","New Hampshire","NH",744 +1997-04-01,"Residential Consumption","Alaska","AK",1177 +1997-04-01,"Residential Consumption","Wisconsin","WI",11047 +1997-04-01,"Residential Consumption","Nebraska","NE",4353 +1997-04-01,"Residential Consumption","District of Columbia","DC",1316 +1997-04-01,"Residential Consumption","New Mexico","NM",1513 +1997-04-01,"Residential Consumption","Missouri","MO",10993 +1997-04-01,"Residential Consumption","Rhode Island","RI",1994 +1997-04-01,"Residential Consumption","Mississippi","MS",1916 +1997-04-01,"Residential Consumption","Iowa","IA",7015 +1997-04-01,"Residential Consumption","Minnesota","MN",11143 +1997-04-01,"Residential Consumption","Pennsylvania","PA",25082 +1997-04-01,"Residential Consumption","Massachusetts","MA",12131 +1997-04-01,"Residential Consumption","New Jersey","NJ",20284 +1997-04-01,"Residential Consumption","Kentucky","KY",4893 +1997-04-01,"Residential Consumption","Alabama","AL",3191 +1997-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",684 +1997-05-01,"Commercial Consumption","Minnesota","MN",4947 +1997-05-01,"Commercial Consumption","Wisconsin","WI",5239 +1997-05-01,"Commercial Consumption","New Hampshire","NH",472 +1997-05-01,"Commercial Consumption","Arizona","AZ",2127 +1997-05-01,"Commercial Consumption","Nevada","NV",1695 +1997-05-01,"Commercial Consumption","South Carolina","SC",1268 +1997-05-01,"Commercial Consumption","South Dakota","SD",603 +1997-05-01,"Commercial Consumption","New Jersey","NJ",11571 +1997-05-01,"Commercial Consumption","Texas","TX",14125 +1997-05-01,"Commercial Consumption","Georgia","GA",3191 +1997-05-01,"Commercial Consumption","Tennessee","TN",3154 +1997-05-01,"Commercial Consumption","Michigan","MI",12841 +1997-05-01,"Commercial Consumption","Louisiana","LA",1615 +1997-05-01,"Commercial Consumption","North Carolina","NC",2260 +1997-05-01,"Commercial Consumption","Colorado","CO",4846 +1997-05-01,"Commercial Consumption","New Mexico","NM",1819 +1997-05-01,"Commercial Consumption","Ohio","OH",11231 +1997-05-01,"Commercial Consumption","Iowa","IA",2382 +1997-05-01,"Commercial Consumption","New York","NY",21731 +1997-05-01,"Commercial Consumption","North Dakota","ND",589 +1997-05-01,"Commercial Consumption","Massachusetts","MA",6215 +1997-05-01,"Commercial Consumption","Maine","ME",152 +1997-05-01,"Commercial Consumption","Florida","FL",2832 +1997-05-01,"Commercial Consumption","Alaska","AK",1813 +1997-05-01,"Commercial Consumption","Nebraska","NE",2093 +1997-05-01,"Commercial Consumption","Indiana","IN",6196 +1997-05-01,"Commercial Consumption","Wyoming","WY",958 +1997-05-01,"Commercial Consumption","Utah","UT",1263 +1997-05-01,"Commercial Consumption","Oklahoma","OK",2616 +1997-05-01,"Commercial Consumption","Missouri","MO",3554 +1997-05-01,"Commercial Consumption","U.S.","U.S.",203684 +1997-05-01,"Commercial Consumption","Alabama","AL",1901 +1997-05-01,"Commercial Consumption","Oregon","OR",1577 +1997-05-01,"Commercial Consumption","Pennsylvania","PA",9950 +1997-05-01,"Commercial Consumption","Kentucky","KY",1863 +1997-05-01,"Commercial Consumption","Vermont","VT",160 +1997-05-01,"Commercial Consumption","Idaho","ID",684 +1997-05-01,"Commercial Consumption","California","CA",18596 +1997-05-01,"Commercial Consumption","District of Columbia","DC",1372 +1997-05-01,"Commercial Consumption","Washington","WA",3153 +1997-05-01,"Commercial Consumption","Virginia","VA",4302 +1997-05-01,"Commercial Consumption","Montana","MT",717 +1997-05-01,"Commercial Consumption","Rhode Island","RI",892 +1997-05-01,"Commercial Consumption","Connecticut","CT",2655 +1997-05-01,"Commercial Consumption","Mississippi","MS",1305 +1997-05-01,"Commercial Consumption","Illinois","IL",10471 +1997-05-01,"Commercial Consumption","West Virginia","WV",1599 +1997-05-01,"Commercial Consumption","Maryland","MD",2741 +1997-05-01,"Commercial Consumption","Kansas","KS",2127 +1997-05-01,"Commercial Consumption","Hawaii","HI",148 +1997-05-01,"Commercial Consumption","Arkansas","AR",1647 +1997-05-01,"Commercial Consumption","Delaware","DE",427 +1997-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102506 +1997-05-01,"Residential Consumption","Hawaii","HI",42 +1997-05-01,"Residential Consumption","Tennessee","TN",3007 +1997-05-01,"Residential Consumption","New Mexico","NM",1965 +1997-05-01,"Residential Consumption","Indiana","IN",9417 +1997-05-01,"Residential Consumption","Iowa","IA",3939 +1997-05-01,"Residential Consumption","Utah","UT",1821 +1997-05-01,"Residential Consumption","Minnesota","MN",6467 +1997-05-01,"Residential Consumption","Georgia","GA",3816 +1997-05-01,"Residential Consumption","Pennsylvania","PA",15416 +1997-05-01,"Residential Consumption","Florida","FL",852 +1997-05-01,"Residential Consumption","Arkansas","AR",2322 +1997-05-01,"Residential Consumption","Colorado","CO",8492 +1997-05-01,"Residential Consumption","Virginia","VA",4201 +1997-05-01,"Residential Consumption","Maryland","MD",4215 +1997-05-01,"Residential Consumption","Kentucky","KY",2959 +1997-05-01,"Residential Consumption","Missouri","MO",6460 +1997-05-01,"Residential Consumption","Delaware","DE",560 +1997-05-01,"Residential Consumption","Illinois","IL",26059 +1997-05-01,"Residential Consumption","Rhode Island","RI",1171 +1997-05-01,"Residential Consumption","Oregon","OR",1883 +1997-05-01,"Residential Consumption","Ohio","OH",21260 +1997-05-01,"Residential Consumption","Mississippi","MS",1472 +1997-05-01,"Residential Consumption","Nebraska","NE",3176 +1997-05-01,"Residential Consumption","Michigan","MI",26982 +1997-05-01,"Residential Consumption","Nevada","NV",1401 +1997-05-01,"Residential Consumption","Massachusetts","MA",6937 +1997-05-01,"Residential Consumption","Idaho","ID",938 +1997-05-01,"Residential Consumption","New Jersey","NJ",11505 +1997-05-01,"Residential Consumption","West Virginia","WV",2223 +1997-05-01,"Residential Consumption","Vermont","VT",189 +1997-05-01,"Residential Consumption","District of Columbia","DC",944 +1997-05-01,"Residential Consumption","Washington","WA",4487 +1997-05-01,"Residential Consumption","New York","NY",24082 +1997-05-01,"Residential Consumption","Connecticut","CT",2362 +1997-05-01,"Residential Consumption","North Dakota","ND",688 +1997-05-01,"Residential Consumption","Montana","MT",1147 +1997-05-01,"Residential Consumption","Kansas","KS",3266 +1997-05-01,"Residential Consumption","Oklahoma","OK",3860 +1997-05-01,"Residential Consumption","U.S.","U.S.",283739 +1997-05-01,"Residential Consumption","South Carolina","SC",1243 +1997-05-01,"Residential Consumption","Maine","ME",56 +1997-05-01,"Residential Consumption","New Hampshire","NH",465 +1997-05-01,"Residential Consumption","Texas","TX",11595 +1997-05-01,"Residential Consumption","North Carolina","NC",2986 +1997-05-01,"Residential Consumption","Louisiana","LA",2866 +1997-05-01,"Residential Consumption","Wisconsin","WI",7413 +1997-05-01,"Residential Consumption","South Dakota","SD",784 +1997-05-01,"Residential Consumption","California","CA",28268 +1997-05-01,"Residential Consumption","Arizona","AZ",1566 +1997-05-01,"Residential Consumption","Alabama","AL",2648 +1997-05-01,"Residential Consumption","Alaska","AK",789 +1997-05-01,"Residential Consumption","Wyoming","WY",1080 +1997-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",707 +1997-06-01,"Commercial Consumption","Montana","MT",453 +1997-06-01,"Commercial Consumption","Florida","FL",2846 +1997-06-01,"Commercial Consumption","Illinois","IL",6052 +1997-06-01,"Commercial Consumption","Oklahoma","OK",1567 +1997-06-01,"Commercial Consumption","South Dakota","SD",283 +1997-06-01,"Commercial Consumption","Maryland","MD",2313 +1997-06-01,"Commercial Consumption","Arkansas","AR",1213 +1997-06-01,"Commercial Consumption","Alabama","AL",1642 +1997-06-01,"Commercial Consumption","Tennessee","TN",2350 +1997-06-01,"Commercial Consumption","North Carolina","NC",1741 +1997-06-01,"Commercial Consumption","Missouri","MO",2457 +1997-06-01,"Commercial Consumption","New Jersey","NJ",8127 +1997-06-01,"Commercial Consumption","New Hampshire","NH",286 +1997-06-01,"Commercial Consumption","Vermont","VT",108 +1997-06-01,"Commercial Consumption","District of Columbia","DC",951 +1997-06-01,"Commercial Consumption","West Virginia","WV",1093 +1997-06-01,"Commercial Consumption","South Carolina","SC",1096 +1997-06-01,"Commercial Consumption","Texas","TX",13383 +1997-06-01,"Commercial Consumption","Ohio","OH",8632 +1997-06-01,"Commercial Consumption","Alaska","AK",1428 +1997-06-01,"Commercial Consumption","New York","NY",20911 +1997-06-01,"Commercial Consumption","Mississippi","MS",1174 +1997-06-01,"Commercial Consumption","Minnesota","MN",2800 +1997-06-01,"Commercial Consumption","Maine","ME",92 +1997-06-01,"Commercial Consumption","Hawaii","HI",152 +1997-06-01,"Commercial Consumption","Nebraska","NE",1309 +1997-06-01,"Commercial Consumption","Wyoming","WY",491 +1997-06-01,"Commercial Consumption","North Dakota","ND",315 +1997-06-01,"Commercial Consumption","Colorado","CO",2954 +1997-06-01,"Commercial Consumption","Pennsylvania","PA",5406 +1997-06-01,"Commercial Consumption","Wisconsin","WI",2711 +1997-06-01,"Commercial Consumption","Rhode Island","RI",537 +1997-06-01,"Commercial Consumption","California","CA",16305 +1997-06-01,"Commercial Consumption","Washington","WA",2235 +1997-06-01,"Commercial Consumption","New Mexico","NM",988 +1997-06-01,"Commercial Consumption","Oregon","OR",1070 +1997-06-01,"Commercial Consumption","Virginia","VA",2699 +1997-06-01,"Commercial Consumption","Massachusetts","MA",7023 +1997-06-01,"Commercial Consumption","U.S.","U.S.",154097 +1997-06-01,"Commercial Consumption","Georgia","GA",2776 +1997-06-01,"Commercial Consumption","Iowa","IA",1238 +1997-06-01,"Commercial Consumption","Connecticut","CT",2234 +1997-06-01,"Commercial Consumption","Arizona","AZ",1963 +1997-06-01,"Commercial Consumption","Michigan","MI",7416 +1997-06-01,"Commercial Consumption","Indiana","IN",3988 +1997-06-01,"Commercial Consumption","Utah","UT",942 +1997-06-01,"Commercial Consumption","Kentucky","KY",1166 +1997-06-01,"Commercial Consumption","Kansas","KS",1560 +1997-06-01,"Commercial Consumption","Idaho","ID",397 +1997-06-01,"Commercial Consumption","Delaware","DE",285 +1997-06-01,"Commercial Consumption","Nevada","NV",1412 +1997-06-01,"Commercial Consumption","Louisiana","LA",1529 +1997-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97083 +1997-06-01,"Residential Consumption","Connecticut","CT",1398 +1997-06-01,"Residential Consumption","New Hampshire","NH",263 +1997-06-01,"Residential Consumption","Washington","WA",2451 +1997-06-01,"Residential Consumption","Arizona","AZ",1150 +1997-06-01,"Residential Consumption","New York","NY",14469 +1997-06-01,"Residential Consumption","Illinois","IL",11606 +1997-06-01,"Residential Consumption","Utah","UT",1602 +1997-06-01,"Residential Consumption","Nevada","NV",985 +1997-06-01,"Residential Consumption","Minnesota","MN",3180 +1997-06-01,"Residential Consumption","California","CA",23226 +1997-06-01,"Residential Consumption","Wisconsin","WI",2948 +1997-06-01,"Residential Consumption","Maine","ME",34 +1997-06-01,"Residential Consumption","Oregon","OR",1069 +1997-06-01,"Residential Consumption","Ohio","OH",14630 +1997-06-01,"Residential Consumption","Vermont","VT",97 +1997-06-01,"Residential Consumption","Massachusetts","MA",4374 +1997-06-01,"Residential Consumption","Montana","MT",634 +1997-06-01,"Residential Consumption","Oklahoma","OK",2107 +1997-06-01,"Residential Consumption","Maryland","MD",2677 +1997-06-01,"Residential Consumption","North Dakota","ND",295 +1997-06-01,"Residential Consumption","Arkansas","AR",1239 +1997-06-01,"Residential Consumption","Missouri","MO",3660 +1997-06-01,"Residential Consumption","South Carolina","SC",709 +1997-06-01,"Residential Consumption","Rhode Island","RI",727 +1997-06-01,"Residential Consumption","Iowa","IA",2107 +1997-06-01,"Residential Consumption","Virginia","VA",2042 +1997-06-01,"Residential Consumption","Georgia","GA",3341 +1997-06-01,"Residential Consumption","New Mexico","NM",239 +1997-06-01,"Residential Consumption","Kentucky","KY",1575 +1997-06-01,"Residential Consumption","Kansas","KS",1506 +1997-06-01,"Residential Consumption","Delaware","DE",320 +1997-06-01,"Residential Consumption","Wyoming","WY",397 +1997-06-01,"Residential Consumption","West Virginia","WV",952 +1997-06-01,"Residential Consumption","U.S.","U.S.",163591 +1997-06-01,"Residential Consumption","Texas","TX",8451 +1997-06-01,"Residential Consumption","Louisiana","LA",2108 +1997-06-01,"Residential Consumption","Tennessee","TN",1652 +1997-06-01,"Residential Consumption","Pennsylvania","PA",7510 +1997-06-01,"Residential Consumption","Idaho","ID",433 +1997-06-01,"Residential Consumption","New Jersey","NJ",6599 +1997-06-01,"Residential Consumption","Alabama","AL",1609 +1997-06-01,"Residential Consumption","Alaska","AK",508 +1997-06-01,"Residential Consumption","North Carolina","NC",1596 +1997-06-01,"Residential Consumption","Mississippi","MS",926 +1997-06-01,"Residential Consumption","Hawaii","HI",41 +1997-06-01,"Residential Consumption","Nebraska","NE",1376 +1997-06-01,"Residential Consumption","Michigan","MI",12017 +1997-06-01,"Residential Consumption","South Dakota","SD",368 +1997-06-01,"Residential Consumption","District of Columbia","DC",562 +1997-06-01,"Residential Consumption","Indiana","IN",4924 +1997-06-01,"Residential Consumption","Florida","FL",773 +1997-06-01,"Residential Consumption","Colorado","CO",4130 +1997-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",684 +1997-07-01,"Commercial Consumption","Wyoming","WY",623 +1997-07-01,"Commercial Consumption","Virginia","VA",2394 +1997-07-01,"Commercial Consumption","Wisconsin","WI",2630 +1997-07-01,"Commercial Consumption","South Dakota","SD",246 +1997-07-01,"Commercial Consumption","Rhode Island","RI",430 +1997-07-01,"Commercial Consumption","Alaska","AK",1404 +1997-07-01,"Commercial Consumption","Alabama","AL",2947 +1997-07-01,"Commercial Consumption","Indiana","IN",1941 +1997-07-01,"Commercial Consumption","South Carolina","SC",989 +1997-07-01,"Commercial Consumption","North Dakota","ND",141 +1997-07-01,"Commercial Consumption","Florida","FL",2512 +1997-07-01,"Commercial Consumption","Iowa","IA",1305 +1997-07-01,"Commercial Consumption","Nebraska","NE",4067 +1997-07-01,"Commercial Consumption","Delaware","DE",209 +1997-07-01,"Commercial Consumption","Arizona","AZ",1927 +1997-07-01,"Commercial Consumption","Tennessee","TN",1943 +1997-07-01,"Commercial Consumption","West Virginia","WV",926 +1997-07-01,"Commercial Consumption","Utah","UT",923 +1997-07-01,"Commercial Consumption","New Mexico","NM",1035 +1997-07-01,"Commercial Consumption","Oklahoma","OK",1728 +1997-07-01,"Commercial Consumption","Washington","WA",1826 +1997-07-01,"Commercial Consumption","Georgia","GA",2677 +1997-07-01,"Commercial Consumption","Connecticut","CT",2143 +1997-07-01,"Commercial Consumption","Mississippi","MS",1206 +1997-07-01,"Commercial Consumption","Massachusetts","MA",5442 +1997-07-01,"Commercial Consumption","Maryland","MD",2235 +1997-07-01,"Commercial Consumption","Kansas","KS",2474 +1997-07-01,"Commercial Consumption","Ohio","OH",4095 +1997-07-01,"Commercial Consumption","Michigan","MI",2213 +1997-07-01,"Commercial Consumption","North Carolina","NC",1513 +1997-07-01,"Commercial Consumption","Minnesota","MN",2342 +1997-07-01,"Commercial Consumption","Pennsylvania","PA",4659 +1997-07-01,"Commercial Consumption","New Hampshire","NH",216 +1997-07-01,"Commercial Consumption","Kentucky","KY",1157 +1997-07-01,"Commercial Consumption","U.S.","U.S.",144040 +1997-07-01,"Commercial Consumption","Texas","TX",16419 +1997-07-01,"Commercial Consumption","Vermont","VT",80 +1997-07-01,"Commercial Consumption","Idaho","ID",372 +1997-07-01,"Commercial Consumption","Colorado","CO",2354 +1997-07-01,"Commercial Consumption","Oregon","OR",1009 +1997-07-01,"Commercial Consumption","New Jersey","NJ",7213 +1997-07-01,"Commercial Consumption","Hawaii","HI",156 +1997-07-01,"Commercial Consumption","California","CA",17772 +1997-07-01,"Commercial Consumption","Nevada","NV",1099 +1997-07-01,"Commercial Consumption","District of Columbia","DC",782 +1997-07-01,"Commercial Consumption","Missouri","MO",2168 +1997-07-01,"Commercial Consumption","Montana","MT",365 +1997-07-01,"Commercial Consumption","Maine","ME",72 +1997-07-01,"Commercial Consumption","Arkansas","AR",1127 +1997-07-01,"Commercial Consumption","New York","NY",21088 +1997-07-01,"Commercial Consumption","Louisiana","LA",1473 +1997-07-01,"Commercial Consumption","Illinois","IL",5970 +1997-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100851 +1997-07-01,"Residential Consumption","Ohio","OH",7425 +1997-07-01,"Residential Consumption","North Carolina","NC",1072 +1997-07-01,"Residential Consumption","Iowa","IA",1599 +1997-07-01,"Residential Consumption","Maryland","MD",1906 +1997-07-01,"Residential Consumption","Massachusetts","MA",2834 +1997-07-01,"Residential Consumption","New Hampshire","NH",160 +1997-07-01,"Residential Consumption","Arizona","AZ",1015 +1997-07-01,"Residential Consumption","U.S.","U.S.",127805 +1997-07-01,"Residential Consumption","Texas","TX",7599 +1997-07-01,"Residential Consumption","South Carolina","SC",517 +1997-07-01,"Residential Consumption","Louisiana","LA",1746 +1997-07-01,"Residential Consumption","South Dakota","SD",248 +1997-07-01,"Residential Consumption","District of Columbia","DC",419 +1997-07-01,"Residential Consumption","Missouri","MO",2714 +1997-07-01,"Residential Consumption","Alabama","AL",1397 +1997-07-01,"Residential Consumption","Hawaii","HI",43 +1997-07-01,"Residential Consumption","Nebraska","NE",1015 +1997-07-01,"Residential Consumption","Georgia","GA",3180 +1997-07-01,"Residential Consumption","North Dakota","ND",190 +1997-07-01,"Residential Consumption","Arkansas","AR",1027 +1997-07-01,"Residential Consumption","Kansas","KS",1688 +1997-07-01,"Residential Consumption","California","CA",26444 +1997-07-01,"Residential Consumption","Rhode Island","RI",480 +1997-07-01,"Residential Consumption","Connecticut","CT",961 +1997-07-01,"Residential Consumption","Utah","UT",1502 +1997-07-01,"Residential Consumption","Nevada","NV",891 +1997-07-01,"Residential Consumption","Minnesota","MN",2385 +1997-07-01,"Residential Consumption","New Mexico","NM",820 +1997-07-01,"Residential Consumption","Maine","ME",21 +1997-07-01,"Residential Consumption","Indiana","IN",2832 +1997-07-01,"Residential Consumption","Alaska","AK",463 +1997-07-01,"Residential Consumption","Illinois","IL",10370 +1997-07-01,"Residential Consumption","Vermont","VT",57 +1997-07-01,"Residential Consumption","Pennsylvania","PA",5254 +1997-07-01,"Residential Consumption","Florida","FL",709 +1997-07-01,"Residential Consumption","Montana","MT",413 +1997-07-01,"Residential Consumption","Washington","WA",1995 +1997-07-01,"Residential Consumption","Oklahoma","OK",1680 +1997-07-01,"Residential Consumption","West Virginia","WV",492 +1997-07-01,"Residential Consumption","Mississippi","MS",815 +1997-07-01,"Residential Consumption","Virginia","VA",1589 +1997-07-01,"Residential Consumption","Michigan","MI",4751 +1997-07-01,"Residential Consumption","Idaho","ID",345 +1997-07-01,"Residential Consumption","Kentucky","KY",1499 +1997-07-01,"Residential Consumption","Delaware","DE",195 +1997-07-01,"Residential Consumption","Oregon","OR",881 +1997-07-01,"Residential Consumption","Wisconsin","WI",2862 +1997-07-01,"Residential Consumption","New York","NY",9719 +1997-07-01,"Residential Consumption","Tennessee","TN",1115 +1997-07-01,"Residential Consumption","New Jersey","NJ",5214 +1997-07-01,"Residential Consumption","Colorado","CO",2965 +1997-07-01,"Residential Consumption","Wyoming","WY",295 +1997-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",707 +1997-08-01,"Commercial Consumption","Washington","WA",1621 +1997-08-01,"Commercial Consumption","Oklahoma","OK",1730 +1997-08-01,"Commercial Consumption","Connecticut","CT",1760 +1997-08-01,"Commercial Consumption","Alabama","AL",2622 +1997-08-01,"Commercial Consumption","West Virginia","WV",1137 +1997-08-01,"Commercial Consumption","South Carolina","SC",1004 +1997-08-01,"Commercial Consumption","Minnesota","MN",2369 +1997-08-01,"Commercial Consumption","Virginia","VA",2475 +1997-08-01,"Commercial Consumption","South Dakota","SD",249 +1997-08-01,"Commercial Consumption","New Hampshire","NH",217 +1997-08-01,"Commercial Consumption","Montana","MT",385 +1997-08-01,"Commercial Consumption","Maryland","MD",2069 +1997-08-01,"Commercial Consumption","Georgia","GA",2597 +1997-08-01,"Commercial Consumption","Vermont","VT",80 +1997-08-01,"Commercial Consumption","Arkansas","AR",1127 +1997-08-01,"Commercial Consumption","Delaware","DE",186 +1997-08-01,"Commercial Consumption","Louisiana","LA",1306 +1997-08-01,"Commercial Consumption","District of Columbia","DC",853 +1997-08-01,"Commercial Consumption","Wyoming","WY",287 +1997-08-01,"Commercial Consumption","North Carolina","NC",1592 +1997-08-01,"Commercial Consumption","Oregon","OR",914 +1997-08-01,"Commercial Consumption","Pennsylvania","PA",4246 +1997-08-01,"Commercial Consumption","Hawaii","HI",143 +1997-08-01,"Commercial Consumption","Nebraska","NE",2295 +1997-08-01,"Commercial Consumption","Mississippi","MS",1309 +1997-08-01,"Commercial Consumption","Arizona","AZ",1759 +1997-08-01,"Commercial Consumption","North Dakota","ND",264 +1997-08-01,"Commercial Consumption","Idaho","ID",354 +1997-08-01,"Commercial Consumption","Colorado","CO",2117 +1997-08-01,"Commercial Consumption","Utah","UT",939 +1997-08-01,"Commercial Consumption","New Mexico","NM",1052 +1997-08-01,"Commercial Consumption","Kentucky","KY",948 +1997-08-01,"Commercial Consumption","Ohio","OH",4351 +1997-08-01,"Commercial Consumption","California","CA",18558 +1997-08-01,"Commercial Consumption","Nevada","NV",1148 +1997-08-01,"Commercial Consumption","Maine","ME",78 +1997-08-01,"Commercial Consumption","Texas","TX",14855 +1997-08-01,"Commercial Consumption","Rhode Island","RI",399 +1997-08-01,"Commercial Consumption","Iowa","IA",1114 +1997-08-01,"Commercial Consumption","New York","NY",18546 +1997-08-01,"Commercial Consumption","Tennessee","TN",1921 +1997-08-01,"Commercial Consumption","Illinois","IL",5809 +1997-08-01,"Commercial Consumption","Wisconsin","WI",2805 +1997-08-01,"Commercial Consumption","New Jersey","NJ",6699 +1997-08-01,"Commercial Consumption","U.S.","U.S.",139686 +1997-08-01,"Commercial Consumption","Alaska","AK",1340 +1997-08-01,"Commercial Consumption","Michigan","MI",5687 +1997-08-01,"Commercial Consumption","Missouri","MO",2062 +1997-08-01,"Commercial Consumption","Massachusetts","MA",5635 +1997-08-01,"Commercial Consumption","Kansas","KS",2018 +1997-08-01,"Commercial Consumption","Florida","FL",2585 +1997-08-01,"Commercial Consumption","Indiana","IN",2069 +1997-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100660 +1997-08-01,"Residential Consumption","Connecticut","CT",914 +1997-08-01,"Residential Consumption","Wisconsin","WI",2535 +1997-08-01,"Residential Consumption","Utah","UT",1466 +1997-08-01,"Residential Consumption","Georgia","GA",2930 +1997-08-01,"Residential Consumption","Arizona","AZ",907 +1997-08-01,"Residential Consumption","Alaska","AK",418 +1997-08-01,"Residential Consumption","New York","NY",10267 +1997-08-01,"Residential Consumption","South Carolina","SC",449 +1997-08-01,"Residential Consumption","Oregon","OR",758 +1997-08-01,"Residential Consumption","Ohio","OH",6112 +1997-08-01,"Residential Consumption","Mississippi","MS",761 +1997-08-01,"Residential Consumption","Tennessee","TN",1075 +1997-08-01,"Residential Consumption","Nebraska","NE",939 +1997-08-01,"Residential Consumption","Maryland","MD",1799 +1997-08-01,"Residential Consumption","Pennsylvania","PA",5236 +1997-08-01,"Residential Consumption","Idaho","ID",294 +1997-08-01,"Residential Consumption","New Jersey","NJ",4726 +1997-08-01,"Residential Consumption","New Hampshire","NH",155 +1997-08-01,"Residential Consumption","Florida","FL",670 +1997-08-01,"Residential Consumption","North Dakota","ND",168 +1997-08-01,"Residential Consumption","Colorado","CO",2590 +1997-08-01,"Residential Consumption","West Virginia","WV",598 +1997-08-01,"Residential Consumption","North Carolina","NC",898 +1997-08-01,"Residential Consumption","Iowa","IA",1479 +1997-08-01,"Residential Consumption","Indiana","IN",2968 +1997-08-01,"Residential Consumption","Oklahoma","OK",1521 +1997-08-01,"Residential Consumption","Delaware","DE",179 +1997-08-01,"Residential Consumption","Rhode Island","RI",443 +1997-08-01,"Residential Consumption","Hawaii","HI",41 +1997-08-01,"Residential Consumption","New Mexico","NM",849 +1997-08-01,"Residential Consumption","Massachusetts","MA",2484 +1997-08-01,"Residential Consumption","Montana","MT",449 +1997-08-01,"Residential Consumption","Kansas","KS",1469 +1997-08-01,"Residential Consumption","Alabama","AL",1242 +1997-08-01,"Residential Consumption","U.S.","U.S.",117900 +1997-08-01,"Residential Consumption","Illinois","IL",10102 +1997-08-01,"Residential Consumption","Nevada","NV",781 +1997-08-01,"Residential Consumption","Maine","ME",26 +1997-08-01,"Residential Consumption","Washington","WA",1791 +1997-08-01,"Residential Consumption","California","CA",20643 +1997-08-01,"Residential Consumption","Wyoming","WY",245 +1997-08-01,"Residential Consumption","Virginia","VA",1467 +1997-08-01,"Residential Consumption","Michigan","MI",7269 +1997-08-01,"Residential Consumption","South Dakota","SD",233 +1997-08-01,"Residential Consumption","District of Columbia","DC",372 +1997-08-01,"Residential Consumption","Arkansas","AR",917 +1997-08-01,"Residential Consumption","Missouri","MO",2401 +1997-08-01,"Residential Consumption","Texas","TX",6789 +1997-08-01,"Residential Consumption","Louisiana","LA",1716 +1997-08-01,"Residential Consumption","Vermont","VT",52 +1997-08-01,"Residential Consumption","Minnesota","MN",2234 +1997-08-01,"Residential Consumption","Kentucky","KY",1073 +1997-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",707 +1997-09-01,"Commercial Consumption","Wyoming","WY",316 +1997-09-01,"Commercial Consumption","Minnesota","MN",2407 +1997-09-01,"Commercial Consumption","Georgia","GA",2718 +1997-09-01,"Commercial Consumption","Rhode Island","RI",460 +1997-09-01,"Commercial Consumption","Iowa","IA",1359 +1997-09-01,"Commercial Consumption","Alabama","AL",2075 +1997-09-01,"Commercial Consumption","Arizona","AZ",1827 +1997-09-01,"Commercial Consumption","Michigan","MI",5996 +1997-09-01,"Commercial Consumption","Louisiana","LA",1353 +1997-09-01,"Commercial Consumption","District of Columbia","DC",852 +1997-09-01,"Commercial Consumption","Virginia","VA",2332 +1997-09-01,"Commercial Consumption","New Jersey","NJ",7142 +1997-09-01,"Commercial Consumption","Kentucky","KY",1249 +1997-09-01,"Commercial Consumption","Ohio","OH",4942 +1997-09-01,"Commercial Consumption","Connecticut","CT",1564 +1997-09-01,"Commercial Consumption","Washington","WA",2036 +1997-09-01,"Commercial Consumption","Colorado","CO",2371 +1997-09-01,"Commercial Consumption","Pennsylvania","PA",4999 +1997-09-01,"Commercial Consumption","South Dakota","SD",334 +1997-09-01,"Commercial Consumption","Maine","ME",91 +1997-09-01,"Commercial Consumption","U.S.","U.S.",141730 +1997-09-01,"Commercial Consumption","Kansas","KS",1580 +1997-09-01,"Commercial Consumption","Florida","FL",2491 +1997-09-01,"Commercial Consumption","Alaska","AK",1594 +1997-09-01,"Commercial Consumption","Nevada","NV",1195 +1997-09-01,"Commercial Consumption","New Mexico","NM",1071 +1997-09-01,"Commercial Consumption","Oklahoma","OK",1760 +1997-09-01,"Commercial Consumption","New Hampshire","NH",249 +1997-09-01,"Commercial Consumption","Hawaii","HI",148 +1997-09-01,"Commercial Consumption","Arkansas","AR",1129 +1997-09-01,"Commercial Consumption","Nebraska","NE",1477 +1997-09-01,"Commercial Consumption","Indiana","IN",2173 +1997-09-01,"Commercial Consumption","Massachusetts","MA",5364 +1997-09-01,"Commercial Consumption","Wisconsin","WI",2737 +1997-09-01,"Commercial Consumption","Maryland","MD",2281 +1997-09-01,"Commercial Consumption","Idaho","ID",409 +1997-09-01,"Commercial Consumption","West Virginia","WV",1106 +1997-09-01,"Commercial Consumption","South Carolina","SC",1884 +1997-09-01,"Commercial Consumption","Mississippi","MS",924 +1997-09-01,"Commercial Consumption","Tennessee","TN",2078 +1997-09-01,"Commercial Consumption","North Dakota","ND",317 +1997-09-01,"Commercial Consumption","California","CA",18325 +1997-09-01,"Commercial Consumption","New York","NY",17280 +1997-09-01,"Commercial Consumption","Delaware","DE",245 +1997-09-01,"Commercial Consumption","Illinois","IL",6425 +1997-09-01,"Commercial Consumption","North Carolina","NC",1713 +1997-09-01,"Commercial Consumption","Utah","UT",1120 +1997-09-01,"Commercial Consumption","Oregon","OR",1025 +1997-09-01,"Commercial Consumption","Missouri","MO",2194 +1997-09-01,"Commercial Consumption","Montana","MT",424 +1997-09-01,"Commercial Consumption","Texas","TX",14478 +1997-09-01,"Commercial Consumption","Vermont","VT",108 +1997-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98348 +1997-09-01,"Residential Consumption","Iowa","IA",1646 +1997-09-01,"Residential Consumption","Pennsylvania","PA",6214 +1997-09-01,"Residential Consumption","Washington","WA",2002 +1997-09-01,"Residential Consumption","New York","NY",9878 +1997-09-01,"Residential Consumption","New Mexico","NM",836 +1997-09-01,"Residential Consumption","Indiana","IN",3467 +1997-09-01,"Residential Consumption","Montana","MT",510 +1997-09-01,"Residential Consumption","Arizona","AZ",1124 +1997-09-01,"Residential Consumption","Rhode Island","RI",473 +1997-09-01,"Residential Consumption","Ohio","OH",7124 +1997-09-01,"Residential Consumption","Utah","UT",1957 +1997-09-01,"Residential Consumption","Nebraska","NE",936 +1997-09-01,"Residential Consumption","Maryland","MD",2067 +1997-09-01,"Residential Consumption","South Dakota","SD",261 +1997-09-01,"Residential Consumption","Nevada","NV",805 +1997-09-01,"Residential Consumption","Maine","ME",30 +1997-09-01,"Residential Consumption","Florida","FL",631 +1997-09-01,"Residential Consumption","Idaho","ID",320 +1997-09-01,"Residential Consumption","Kentucky","KY",1451 +1997-09-01,"Residential Consumption","Missouri","MO",2623 +1997-09-01,"Residential Consumption","California","CA",21448 +1997-09-01,"Residential Consumption","Illinois","IL",11690 +1997-09-01,"Residential Consumption","North Carolina","NC",934 +1997-09-01,"Residential Consumption","Louisiana","LA",1710 +1997-09-01,"Residential Consumption","Michigan","MI",8775 +1997-09-01,"Residential Consumption","Minnesota","MN",2542 +1997-09-01,"Residential Consumption","District of Columbia","DC",393 +1997-09-01,"Residential Consumption","Arkansas","AR",948 +1997-09-01,"Residential Consumption","New Jersey","NJ",5397 +1997-09-01,"Residential Consumption","U.S.","U.S.",129388 +1997-09-01,"Residential Consumption","Mississippi","MS",778 +1997-09-01,"Residential Consumption","Vermont","VT",59 +1997-09-01,"Residential Consumption","Tennessee","TN",1182 +1997-09-01,"Residential Consumption","Virginia","VA",1630 +1997-09-01,"Residential Consumption","Kansas","KS",1485 +1997-09-01,"Residential Consumption","Alabama","AL",1254 +1997-09-01,"Residential Consumption","South Carolina","SC",471 +1997-09-01,"Residential Consumption","Georgia","GA",3158 +1997-09-01,"Residential Consumption","North Dakota","ND",191 +1997-09-01,"Residential Consumption","Texas","TX",7140 +1997-09-01,"Residential Consumption","Oregon","OR",829 +1997-09-01,"Residential Consumption","Connecticut","CT",1014 +1997-09-01,"Residential Consumption","New Hampshire","NH",165 +1997-09-01,"Residential Consumption","Colorado","CO",2714 +1997-09-01,"Residential Consumption","Delaware","DE",184 +1997-09-01,"Residential Consumption","Alaska","AK",743 +1997-09-01,"Residential Consumption","Wyoming","WY",320 +1997-09-01,"Residential Consumption","West Virginia","WV",776 +1997-09-01,"Residential Consumption","Hawaii","HI",40 +1997-09-01,"Residential Consumption","Wisconsin","WI",2957 +1997-09-01,"Residential Consumption","Massachusetts","MA",2557 +1997-09-01,"Residential Consumption","Oklahoma","OK",1549 +1997-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",684 +1997-10-01,"Commercial Consumption","Washington","WA",2653 +1997-10-01,"Commercial Consumption","North Dakota","ND",559 +1997-10-01,"Commercial Consumption","Colorado","CO",2558 +1997-10-01,"Commercial Consumption","Rhode Island","RI",637 +1997-10-01,"Commercial Consumption","Arkansas","AR",1347 +1997-10-01,"Commercial Consumption","Delaware","DE",286 +1997-10-01,"Commercial Consumption","West Virginia","WV",1500 +1997-10-01,"Commercial Consumption","Maine","ME",176 +1997-10-01,"Commercial Consumption","U.S.","U.S.",189614 +1997-10-01,"Commercial Consumption","California","CA",19458 +1997-10-01,"Commercial Consumption","South Carolina","SC",1167 +1997-10-01,"Commercial Consumption","Virginia","VA",3396 +1997-10-01,"Commercial Consumption","Pennsylvania","PA",9345 +1997-10-01,"Commercial Consumption","Connecticut","CT",2509 +1997-10-01,"Commercial Consumption","Alabama","AL",1903 +1997-10-01,"Commercial Consumption","Mississippi","MS",1224 +1997-10-01,"Commercial Consumption","Arizona","AZ",1742 +1997-10-01,"Commercial Consumption","Michigan","MI",9789 +1997-10-01,"Commercial Consumption","Indiana","IN",4515 +1997-10-01,"Commercial Consumption","North Carolina","NC",1908 +1997-10-01,"Commercial Consumption","New Mexico","NM",1222 +1997-10-01,"Commercial Consumption","Oregon","OR",1365 +1997-10-01,"Commercial Consumption","Missouri","MO",2739 +1997-10-01,"Commercial Consumption","Montana","MT",796 +1997-10-01,"Commercial Consumption","Texas","TX",14188 +1997-10-01,"Commercial Consumption","Georgia","GA",3553 +1997-10-01,"Commercial Consumption","Florida","FL",2616 +1997-10-01,"Commercial Consumption","Vermont","VT",184 +1997-10-01,"Commercial Consumption","New York","NY",21116 +1997-10-01,"Commercial Consumption","Tennessee","TN",2652 +1997-10-01,"Commercial Consumption","Illinois","IL",12291 +1997-10-01,"Commercial Consumption","Idaho","ID",584 +1997-10-01,"Commercial Consumption","Iowa","IA",3037 +1997-10-01,"Commercial Consumption","Alaska","AK",2574 +1997-10-01,"Commercial Consumption","Minnesota","MN",5178 +1997-10-01,"Commercial Consumption","Massachusetts","MA",6898 +1997-10-01,"Commercial Consumption","Wisconsin","WI",5406 +1997-10-01,"Commercial Consumption","South Dakota","SD",549 +1997-10-01,"Commercial Consumption","Maryland","MD",2836 +1997-10-01,"Commercial Consumption","Hawaii","HI",152 +1997-10-01,"Commercial Consumption","Utah","UT",2012 +1997-10-01,"Commercial Consumption","Ohio","OH",9715 +1997-10-01,"Commercial Consumption","Nebraska","NE",1855 +1997-10-01,"Commercial Consumption","Nevada","NV",1273 +1997-10-01,"Commercial Consumption","Louisiana","LA",1413 +1997-10-01,"Commercial Consumption","District of Columbia","DC",899 +1997-10-01,"Commercial Consumption","Wyoming","WY",554 +1997-10-01,"Commercial Consumption","Oklahoma","OK",2059 +1997-10-01,"Commercial Consumption","New Jersey","NJ",8454 +1997-10-01,"Commercial Consumption","New Hampshire","NH",411 +1997-10-01,"Commercial Consumption","Kentucky","KY",2417 +1997-10-01,"Commercial Consumption","Kansas","KS",1946 +1997-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101652 +1997-10-01,"Residential Consumption","Maryland","MD",3543 +1997-10-01,"Residential Consumption","Minnesota","MN",6504 +1997-10-01,"Residential Consumption","New Mexico","NM",1217 +1997-10-01,"Residential Consumption","Kansas","KS",2153 +1997-10-01,"Residential Consumption","Rhode Island","RI",659 +1997-10-01,"Residential Consumption","Mississippi","MS",902 +1997-10-01,"Residential Consumption","Connecticut","CT",1629 +1997-10-01,"Residential Consumption","Tennessee","TN",1829 +1997-10-01,"Residential Consumption","Georgia","GA",6693 +1997-10-01,"Residential Consumption","Massachusetts","MA",4784 +1997-10-01,"Residential Consumption","Hawaii","HI",39 +1997-10-01,"Residential Consumption","Indiana","IN",7954 +1997-10-01,"Residential Consumption","Montana","MT",1234 +1997-10-01,"Residential Consumption","Colorado","CO",4290 +1997-10-01,"Residential Consumption","Alabama","AL",1440 +1997-10-01,"Residential Consumption","Iowa","IA",4048 +1997-10-01,"Residential Consumption","Virginia","VA",2989 +1997-10-01,"Residential Consumption","South Dakota","SD",537 +1997-10-01,"Residential Consumption","Delaware","DE",252 +1997-10-01,"Residential Consumption","North Carolina","NC",1438 +1997-10-01,"Residential Consumption","Michigan","MI",17853 +1997-10-01,"Residential Consumption","Nevada","NV",1024 +1997-10-01,"Residential Consumption","District of Columbia","DC",553 +1997-10-01,"Residential Consumption","Pennsylvania","PA",12927 +1997-10-01,"Residential Consumption","Florida","FL",681 +1997-10-01,"Residential Consumption","Idaho","ID",638 +1997-10-01,"Residential Consumption","New Jersey","NJ",9250 +1997-10-01,"Residential Consumption","Missouri","MO",3656 +1997-10-01,"Residential Consumption","U.S.","U.S.",234223 +1997-10-01,"Residential Consumption","South Carolina","SC",637 +1997-10-01,"Residential Consumption","Vermont","VT",118 +1997-10-01,"Residential Consumption","Maine","ME",66 +1997-10-01,"Residential Consumption","California","CA",24538 +1997-10-01,"Residential Consumption","Alaska","AK",1569 +1997-10-01,"Residential Consumption","Wyoming","WY",617 +1997-10-01,"Residential Consumption","New York","NY",17385 +1997-10-01,"Residential Consumption","Illinois","IL",29455 +1997-10-01,"Residential Consumption","Oregon","OR",1536 +1997-10-01,"Residential Consumption","Ohio","OH",19056 +1997-10-01,"Residential Consumption","Wisconsin","WI",8106 +1997-10-01,"Residential Consumption","Nebraska","NE",1382 +1997-10-01,"Residential Consumption","Washington","WA",3623 +1997-10-01,"Residential Consumption","Texas","TX",9175 +1997-10-01,"Residential Consumption","Louisiana","LA",2016 +1997-10-01,"Residential Consumption","Utah","UT",4299 +1997-10-01,"Residential Consumption","North Dakota","ND",434 +1997-10-01,"Residential Consumption","Arkansas","AR",1345 +1997-10-01,"Residential Consumption","New Hampshire","NH",327 +1997-10-01,"Residential Consumption","Kentucky","KY",3063 +1997-10-01,"Residential Consumption","Oklahoma","OK",1968 +1997-10-01,"Residential Consumption","Arizona","AZ",1053 +1997-10-01,"Residential Consumption","West Virginia","WV",1737 +1997-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",707 +1997-11-01,"Commercial Consumption","West Virginia","WV",2809 +1997-11-01,"Commercial Consumption","Washington","WA",7891 +1997-11-01,"Commercial Consumption","Utah","UT",3174 +1997-11-01,"Commercial Consumption","New Hampshire","NH",703 +1997-11-01,"Commercial Consumption","U.S.","U.S.",305569 +1997-11-01,"Commercial Consumption","Vermont","VT",282 +1997-11-01,"Commercial Consumption","Nebraska","NE",2812 +1997-11-01,"Commercial Consumption","North Dakota","ND",1129 +1997-11-01,"Commercial Consumption","Colorado","CO",6176 +1997-11-01,"Commercial Consumption","Oregon","OR",2020 +1997-11-01,"Commercial Consumption","Maine","ME",289 +1997-11-01,"Commercial Consumption","Iowa","IA",5707 +1997-11-01,"Commercial Consumption","Hawaii","HI",37 +1997-11-01,"Commercial Consumption","Alabama","AL",2437 +1997-11-01,"Commercial Consumption","Delaware","DE",512 +1997-11-01,"Commercial Consumption","District of Columbia","DC",1354 +1997-11-01,"Commercial Consumption","Pennsylvania","PA",14059 +1997-11-01,"Commercial Consumption","Wisconsin","WI",10173 +1997-11-01,"Commercial Consumption","Rhode Island","RI",1211 +1997-11-01,"Commercial Consumption","Indiana","IN",8632 +1997-11-01,"Commercial Consumption","Montana","MT",1304 +1997-11-01,"Commercial Consumption","Kentucky","KY",4175 +1997-11-01,"Commercial Consumption","Georgia","GA",6139 +1997-11-01,"Commercial Consumption","Ohio","OH",17725 +1997-11-01,"Commercial Consumption","California","CA",20984 +1997-11-01,"Commercial Consumption","Arizona","AZ",2258 +1997-11-01,"Commercial Consumption","Tennessee","TN",5014 +1997-11-01,"Commercial Consumption","Minnesota","MN",10717 +1997-11-01,"Commercial Consumption","Virginia","VA",5539 +1997-11-01,"Commercial Consumption","South Dakota","SD",1021 +1997-11-01,"Commercial Consumption","Florida","FL",3106 +1997-11-01,"Commercial Consumption","Alaska","AK",2658 +1997-11-01,"Commercial Consumption","Arkansas","AR",2713 +1997-11-01,"Commercial Consumption","New Mexico","NM",2549 +1997-11-01,"Commercial Consumption","Massachusetts","MA",8546 +1997-11-01,"Commercial Consumption","Mississippi","MS",2027 +1997-11-01,"Commercial Consumption","Illinois","IL",22861 +1997-11-01,"Commercial Consumption","Wyoming","WY",966 +1997-11-01,"Commercial Consumption","South Carolina","SC",1757 +1997-11-01,"Commercial Consumption","Texas","TX",19325 +1997-11-01,"Commercial Consumption","Maryland","MD",4957 +1997-11-01,"Commercial Consumption","New York","NY",27091 +1997-11-01,"Commercial Consumption","Nevada","NV",1800 +1997-11-01,"Commercial Consumption","Michigan","MI",19043 +1997-11-01,"Commercial Consumption","Louisiana","LA",2047 +1997-11-01,"Commercial Consumption","North Carolina","NC",3434 +1997-11-01,"Commercial Consumption","Oklahoma","OK",3668 +1997-11-01,"Commercial Consumption","Missouri","MO",6189 +1997-11-01,"Commercial Consumption","New Jersey","NJ",16022 +1997-11-01,"Commercial Consumption","Kansas","KS",3698 +1997-11-01,"Commercial Consumption","Idaho","ID",979 +1997-11-01,"Commercial Consumption","Connecticut","CT",3849 +1997-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98467 +1997-11-01,"Residential Consumption","Connecticut","CT",3672 +1997-11-01,"Residential Consumption","Washington","WA",7594 +1997-11-01,"Residential Consumption","Alabama","AL",3977 +1997-11-01,"Residential Consumption","Wyoming","WY",1179 +1997-11-01,"Residential Consumption","New York","NY",34936 +1997-11-01,"Residential Consumption","South Carolina","SC",2424 +1997-11-01,"Residential Consumption","Oregon","OR",2713 +1997-11-01,"Residential Consumption","North Carolina","NC",4875 +1997-11-01,"Residential Consumption","Vermont","VT",214 +1997-11-01,"Residential Consumption","Michigan","MI",37942 +1997-11-01,"Residential Consumption","Kentucky","KY",8091 +1997-11-01,"Residential Consumption","Oklahoma","OK",6186 +1997-11-01,"Residential Consumption","Missouri","MO",12090 +1997-11-01,"Residential Consumption","West Virginia","WV",4061 +1997-11-01,"Residential Consumption","Rhode Island","RI",1464 +1997-11-01,"Residential Consumption","Mississippi","MS",2561 +1997-11-01,"Residential Consumption","Wisconsin","WI",16127 +1997-11-01,"Residential Consumption","District of Columbia","DC",1414 +1997-11-01,"Residential Consumption","Indiana","IN",17338 +1997-11-01,"Residential Consumption","Florida","FL",1074 +1997-11-01,"Residential Consumption","Montana","MT",2038 +1997-11-01,"Residential Consumption","Delaware","DE",671 +1997-11-01,"Residential Consumption","Arizona","AZ",1973 +1997-11-01,"Residential Consumption","Texas","TX",21561 +1997-11-01,"Residential Consumption","Idaho","ID",1427 +1997-11-01,"Residential Consumption","Arkansas","AR",4013 +1997-11-01,"Residential Consumption","Hawaii","HI",42 +1997-11-01,"Residential Consumption","Nebraska","NE",4399 +1997-11-01,"Residential Consumption","Georgia","GA",16495 +1997-11-01,"Residential Consumption","New Mexico","NM",4095 +1997-11-01,"Residential Consumption","New Jersey","NJ",20208 +1997-11-01,"Residential Consumption","Colorado","CO",10147 +1997-11-01,"Residential Consumption","Kansas","KS",8236 +1997-11-01,"Residential Consumption","Alaska","AK",1684 +1997-11-01,"Residential Consumption","U.S.","U.S.",497310 +1997-11-01,"Residential Consumption","Illinois","IL",56299 +1997-11-01,"Residential Consumption","Virginia","VA",7452 +1997-11-01,"Residential Consumption","South Dakota","SD",1339 +1997-11-01,"Residential Consumption","Minnesota","MN",15098 +1997-11-01,"Residential Consumption","Iowa","IA",8606 +1997-11-01,"Residential Consumption","Utah","UT",6018 +1997-11-01,"Residential Consumption","Maryland","MD",7894 +1997-11-01,"Residential Consumption","Pennsylvania","PA",26561 +1997-11-01,"Residential Consumption","Maine","ME",107 +1997-11-01,"Residential Consumption","North Dakota","ND",1133 +1997-11-01,"Residential Consumption","New Hampshire","NH",616 +1997-11-01,"Residential Consumption","Ohio","OH",36474 +1997-11-01,"Residential Consumption","Louisiana","LA",4176 +1997-11-01,"Residential Consumption","Tennessee","TN",6602 +1997-11-01,"Residential Consumption","Nevada","NV",1925 +1997-11-01,"Residential Consumption","Massachusetts","MA",10149 +1997-11-01,"Residential Consumption","California","CA",39940 +1997-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",684 +1997-12-01,"Commercial Consumption","Colorado","CO",9729 +1997-12-01,"Commercial Consumption","Maine","ME",375 +1997-12-01,"Commercial Consumption","Nevada","NV",2638 +1997-12-01,"Commercial Consumption","Wyoming","WY",1088 +1997-12-01,"Commercial Consumption","Oklahoma","OK",6143 +1997-12-01,"Commercial Consumption","Alaska","AK",3147 +1997-12-01,"Commercial Consumption","Alabama","AL",3745 +1997-12-01,"Commercial Consumption","Indiana","IN",10742 +1997-12-01,"Commercial Consumption","Utah","UT",5257 +1997-12-01,"Commercial Consumption","Massachusetts","MA",11528 +1997-12-01,"Commercial Consumption","Wisconsin","WI",12519 +1997-12-01,"Commercial Consumption","South Dakota","SD",1315 +1997-12-01,"Commercial Consumption","Kentucky","KY",6158 +1997-12-01,"Commercial Consumption","U.S.","U.S.",414419 +1997-12-01,"Commercial Consumption","Texas","TX",24336 +1997-12-01,"Commercial Consumption","Maryland","MD",6587 +1997-12-01,"Commercial Consumption","Vermont","VT",403 +1997-12-01,"Commercial Consumption","Delaware","DE",847 +1997-12-01,"Commercial Consumption","Washington","WA",6763 +1997-12-01,"Commercial Consumption","North Dakota","ND",1343 +1997-12-01,"Commercial Consumption","New Jersey","NJ",23162 +1997-12-01,"Commercial Consumption","New Hampshire","NH",1010 +1997-12-01,"Commercial Consumption","Ohio","OH",25319 +1997-12-01,"Commercial Consumption","Tennessee","TN",7949 +1997-12-01,"Commercial Consumption","Illinois","IL",27094 +1997-12-01,"Commercial Consumption","South Carolina","SC",2639 +1997-12-01,"Commercial Consumption","Oregon","OR",3382 +1997-12-01,"Commercial Consumption","Montana","MT",2028 +1997-12-01,"Commercial Consumption","Idaho","ID",1687 +1997-12-01,"Commercial Consumption","Nebraska","NE",3454 +1997-12-01,"Commercial Consumption","Virginia","VA",9265 +1997-12-01,"Commercial Consumption","Kansas","KS",5563 +1997-12-01,"Commercial Consumption","Rhode Island","RI",1416 +1997-12-01,"Commercial Consumption","Connecticut","CT",5849 +1997-12-01,"Commercial Consumption","Arkansas","AR",3991 +1997-12-01,"Commercial Consumption","Mississippi","MS",2937 +1997-12-01,"Commercial Consumption","Arizona","AZ",3515 +1997-12-01,"Commercial Consumption","Michigan","MI",25893 +1997-12-01,"Commercial Consumption","Louisiana","LA",3087 +1997-12-01,"Commercial Consumption","West Virginia","WV",3391 +1997-12-01,"Commercial Consumption","North Carolina","NC",5508 +1997-12-01,"Commercial Consumption","New Mexico","NM",4286 +1997-12-01,"Commercial Consumption","Pennsylvania","PA",19775 +1997-12-01,"Commercial Consumption","Georgia","GA",8034 +1997-12-01,"Commercial Consumption","Hawaii","HI",165 +1997-12-01,"Commercial Consumption","California","CA",28845 +1997-12-01,"Commercial Consumption","New York","NY",35221 +1997-12-01,"Commercial Consumption","District of Columbia","DC",2379 +1997-12-01,"Commercial Consumption","Minnesota","MN",12344 +1997-12-01,"Commercial Consumption","Missouri","MO",9581 +1997-12-01,"Commercial Consumption","Florida","FL",3777 +1997-12-01,"Commercial Consumption","Iowa","IA",7210 +1997-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100271 +1997-12-01,"Residential Consumption","Rhode Island","RI",2509 +1997-12-01,"Residential Consumption","Iowa","IA",12051 +1997-12-01,"Residential Consumption","Utah","UT",10376 +1997-12-01,"Residential Consumption","Michigan","MI",50037 +1997-12-01,"Residential Consumption","Minnesota","MN",17435 +1997-12-01,"Residential Consumption","Indiana","IN",25914 +1997-12-01,"Residential Consumption","Florida","FL",1837 +1997-12-01,"Residential Consumption","Arkansas","AR",6369 +1997-12-01,"Residential Consumption","Montana","MT",3207 +1997-12-01,"Residential Consumption","Delaware","DE",1213 +1997-12-01,"Residential Consumption","Arizona","AZ",4764 +1997-12-01,"Residential Consumption","Texas","TX",37410 +1997-12-01,"Residential Consumption","Oregon","OR",4684 +1997-12-01,"Residential Consumption","Ohio","OH",50352 +1997-12-01,"Residential Consumption","Vermont","VT",345 +1997-12-01,"Residential Consumption","District of Columbia","DC",2421 +1997-12-01,"Residential Consumption","North Dakota","ND",1423 +1997-12-01,"Residential Consumption","Washington","WA",11405 +1997-12-01,"Residential Consumption","New York","NY",48074 +1997-12-01,"Residential Consumption","Nevada","NV",3884 +1997-12-01,"Residential Consumption","Georgia","GA",19892 +1997-12-01,"Residential Consumption","New Mexico","NM",8217 +1997-12-01,"Residential Consumption","Kansas","KS",10323 +1997-12-01,"Residential Consumption","Oklahoma","OK",11025 +1997-12-01,"Residential Consumption","Missouri","MO",19041 +1997-12-01,"Residential Consumption","California","CA",68486 +1997-12-01,"Residential Consumption","Alaska","AK",2162 +1997-12-01,"Residential Consumption","West Virginia","WV",6017 +1997-12-01,"Residential Consumption","Hawaii","HI",45 +1997-12-01,"Residential Consumption","Virginia","VA",12127 +1997-12-01,"Residential Consumption","Nebraska","NE",5787 +1997-12-01,"Residential Consumption","Massachusetts","MA",15677 +1997-12-01,"Residential Consumption","New Jersey","NJ",31134 +1997-12-01,"Residential Consumption","New Hampshire","NH",933 +1997-12-01,"Residential Consumption","Colorado","CO",17463 +1997-12-01,"Residential Consumption","Mississippi","MS",4355 +1997-12-01,"Residential Consumption","Wisconsin","WI",19045 +1997-12-01,"Residential Consumption","Idaho","ID",2371 +1997-12-01,"Residential Consumption","North Carolina","NC",9202 +1997-12-01,"Residential Consumption","Connecticut","CT",5977 +1997-12-01,"Residential Consumption","Maine","ME",142 +1997-12-01,"Residential Consumption","Alabama","AL",7942 +1997-12-01,"Residential Consumption","Tennessee","TN",11511 +1997-12-01,"Residential Consumption","South Dakota","SD",1734 +1997-12-01,"Residential Consumption","Kentucky","KY",11175 +1997-12-01,"Residential Consumption","Wyoming","WY",2337 +1997-12-01,"Residential Consumption","U.S.","U.S.",731030 +1997-12-01,"Residential Consumption","Illinois","IL",69718 +1997-12-01,"Residential Consumption","South Carolina","SC",4683 +1997-12-01,"Residential Consumption","Louisiana","LA",7960 +1997-12-01,"Residential Consumption","Maryland","MD",11130 +1997-12-01,"Residential Consumption","Pennsylvania","PA",37709 +1997-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",707 +1998-01-01,"Commercial Consumption","Oregon","OR",3872 +1998-01-01,"Commercial Consumption","Maryland","MD",7873 +1998-01-01,"Commercial Consumption","Vermont","VT",487 +1998-01-01,"Commercial Consumption","Ohio","OH",27257 +1998-01-01,"Commercial Consumption","Louisiana","LA",3459 +1998-01-01,"Commercial Consumption","Missouri","MO",11146 +1998-01-01,"Commercial Consumption","Massachusetts","MA",14136 +1998-01-01,"Commercial Consumption","Kentucky","KY",5531 +1998-01-01,"Commercial Consumption","Kansas","KS",7182 +1998-01-01,"Commercial Consumption","Hawaii","HI",168 +1998-01-01,"Commercial Consumption","North Dakota","ND",1715 +1998-01-01,"Commercial Consumption","South Dakota","SD",1619 +1998-01-01,"Commercial Consumption","Texas","TX",21501 +1998-01-01,"Commercial Consumption","Florida","FL",4030 +1998-01-01,"Commercial Consumption","Rhode Island","RI",1817 +1998-01-01,"Commercial Consumption","California","CA",27792 +1998-01-01,"Commercial Consumption","Delaware","DE",921 +1998-01-01,"Commercial Consumption","District of Columbia","DC",2537 +1998-01-01,"Commercial Consumption","North Carolina","NC",6324 +1998-01-01,"Commercial Consumption","Colorado","CO",9954 +1998-01-01,"Commercial Consumption","Oklahoma","OK",7787 +1998-01-01,"Commercial Consumption","Wisconsin","WI",12904 +1998-01-01,"Commercial Consumption","Alaska","AK",3286 +1998-01-01,"Commercial Consumption","Nevada","NV",3105 +1998-01-01,"Commercial Consumption","Virginia","VA",8569 +1998-01-01,"Commercial Consumption","Nebraska","NE",4992 +1998-01-01,"Commercial Consumption","Arizona","AZ",4130 +1998-01-01,"Commercial Consumption","Indiana","IN",12613 +1998-01-01,"Commercial Consumption","Wyoming","WY",1628 +1998-01-01,"Commercial Consumption","Washington","WA",7270 +1998-01-01,"Commercial Consumption","Pennsylvania","PA",21500 +1998-01-01,"Commercial Consumption","Georgia","GA",8545 +1998-01-01,"Commercial Consumption","Iowa","IA",7972 +1998-01-01,"Commercial Consumption","Connecticut","CT",5732 +1998-01-01,"Commercial Consumption","Mississippi","MS",3011 +1998-01-01,"Commercial Consumption","South Carolina","SC",2929 +1998-01-01,"Commercial Consumption","Utah","UT",4553 +1998-01-01,"Commercial Consumption","New Jersey","NJ",19951 +1998-01-01,"Commercial Consumption","New Hampshire","NH",1167 +1998-01-01,"Commercial Consumption","Idaho","ID",1969 +1998-01-01,"Commercial Consumption","Arkansas","AR",4779 +1998-01-01,"Commercial Consumption","Alabama","AL",4569 +1998-01-01,"Commercial Consumption","Michigan","MI",25920 +1998-01-01,"Commercial Consumption","Illinois","IL",30391 +1998-01-01,"Commercial Consumption","West Virginia","WV",3463 +1998-01-01,"Commercial Consumption","Minnesota","MN",14444 +1998-01-01,"Commercial Consumption","New Mexico","NM",4711 +1998-01-01,"Commercial Consumption","Montana","MT",2267 +1998-01-01,"Commercial Consumption","Maine","ME",422 +1998-01-01,"Commercial Consumption","U.S.","U.S.",450690 +1998-01-01,"Commercial Consumption","New York","NY",48490 +1998-01-01,"Commercial Consumption","Tennessee","TN",8298 +1998-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102264 +1998-01-01,"Residential Consumption","Rhode Island","RI",2781 +1998-01-01,"Residential Consumption","Virginia","VA",11615 +1998-01-01,"Residential Consumption","Minnesota","MN",21618 +1998-01-01,"Residential Consumption","District of Columbia","DC",2417 +1998-01-01,"Residential Consumption","North Dakota","ND",1874 +1998-01-01,"Residential Consumption","Montana","MT",3424 +1998-01-01,"Residential Consumption","California","CA",82305 +1998-01-01,"Residential Consumption","Alabama","AL",9683 +1998-01-01,"Residential Consumption","West Virginia","WV",5676 +1998-01-01,"Residential Consumption","Texas","TX",40941 +1998-01-01,"Residential Consumption","Wisconsin","WI",22074 +1998-01-01,"Residential Consumption","Florida","FL",2275 +1998-01-01,"Residential Consumption","Delaware","DE",1398 +1998-01-01,"Residential Consumption","New York","NY",54949 +1998-01-01,"Residential Consumption","Ohio","OH",50903 +1998-01-01,"Residential Consumption","Iowa","IA",13562 +1998-01-01,"Residential Consumption","South Dakota","SD",2196 +1998-01-01,"Residential Consumption","Nevada","NV",5025 +1998-01-01,"Residential Consumption","Arkansas","AR",7759 +1998-01-01,"Residential Consumption","Colorado","CO",19710 +1998-01-01,"Residential Consumption","Alaska","AK",2240 +1998-01-01,"Residential Consumption","South Carolina","SC",5525 +1998-01-01,"Residential Consumption","Oregon","OR",6174 +1998-01-01,"Residential Consumption","Maine","ME",152 +1998-01-01,"Residential Consumption","Oklahoma","OK",14022 +1998-01-01,"Residential Consumption","Mississippi","MS",5066 +1998-01-01,"Residential Consumption","Connecticut","CT",6197 +1998-01-01,"Residential Consumption","Tennessee","TN",12233 +1998-01-01,"Residential Consumption","Utah","UT",8412 +1998-01-01,"Residential Consumption","Pennsylvania","PA",37739 +1998-01-01,"Residential Consumption","New Mexico","NM",8001 +1998-01-01,"Residential Consumption","Arizona","AZ",7156 +1998-01-01,"Residential Consumption","U.S.","U.S.",812108 +1998-01-01,"Residential Consumption","North Carolina","NC",10796 +1998-01-01,"Residential Consumption","Louisiana","LA",9326 +1998-01-01,"Residential Consumption","Hawaii","HI",53 +1998-01-01,"Residential Consumption","Indiana","IN",27478 +1998-01-01,"Residential Consumption","Idaho","ID",2980 +1998-01-01,"Residential Consumption","New Jersey","NJ",32534 +1998-01-01,"Residential Consumption","Kentucky","KY",10589 +1998-01-01,"Residential Consumption","Illinois","IL",77586 +1998-01-01,"Residential Consumption","Maryland","MD",11993 +1998-01-01,"Residential Consumption","Washington","WA",11762 +1998-01-01,"Residential Consumption","Vermont","VT",427 +1998-01-01,"Residential Consumption","Nebraska","NE",7929 +1998-01-01,"Residential Consumption","Michigan","MI",57092 +1998-01-01,"Residential Consumption","Georgia","GA",20365 +1998-01-01,"Residential Consumption","Massachusetts","MA",17087 +1998-01-01,"Residential Consumption","New Hampshire","NH",1140 +1998-01-01,"Residential Consumption","Kansas","KS",13219 +1998-01-01,"Residential Consumption","Missouri","MO",22476 +1998-01-01,"Residential Consumption","Wyoming","WY",2177 +1998-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",793 +1998-02-01,"Commercial Consumption","Colorado","CO",8403 +1998-02-01,"Commercial Consumption","Maine","ME",335 +1998-02-01,"Commercial Consumption","Hawaii","HI",150 +1998-02-01,"Commercial Consumption","Wyoming","WY",1322 +1998-02-01,"Commercial Consumption","North Dakota","ND",1405 +1998-02-01,"Commercial Consumption","Minnesota","MN",10777 +1998-02-01,"Commercial Consumption","South Dakota","SD",1288 +1998-02-01,"Commercial Consumption","Montana","MT",1534 +1998-02-01,"Commercial Consumption","Kentucky","KY",4755 +1998-02-01,"Commercial Consumption","Kansas","KS",6044 +1998-02-01,"Commercial Consumption","Rhode Island","RI",1642 +1998-02-01,"Commercial Consumption","Idaho","ID",1564 +1998-02-01,"Commercial Consumption","Mississippi","MS",3114 +1998-02-01,"Commercial Consumption","West Virginia","WV",3363 +1998-02-01,"Commercial Consumption","South Carolina","SC",2770 +1998-02-01,"Commercial Consumption","Georgia","GA",8205 +1998-02-01,"Commercial Consumption","Ohio","OH",24176 +1998-02-01,"Commercial Consumption","Connecticut","CT",5516 +1998-02-01,"Commercial Consumption","Nebraska","NE",4310 +1998-02-01,"Commercial Consumption","Washington","WA",6430 +1998-02-01,"Commercial Consumption","New Mexico","NM",3377 +1998-02-01,"Commercial Consumption","Oregon","OR",3294 +1998-02-01,"Commercial Consumption","U.S.","U.S.",392573 +1998-02-01,"Commercial Consumption","Iowa","IA",5991 +1998-02-01,"Commercial Consumption","California","CA",25831 +1998-02-01,"Commercial Consumption","Alabama","AL",4082 +1998-02-01,"Commercial Consumption","Delaware","DE",883 +1998-02-01,"Commercial Consumption","Arizona","AZ",3535 +1998-02-01,"Commercial Consumption","Illinois","IL",22336 +1998-02-01,"Commercial Consumption","District of Columbia","DC",2376 +1998-02-01,"Commercial Consumption","Utah","UT",4243 +1998-02-01,"Commercial Consumption","Pennsylvania","PA",19608 +1998-02-01,"Commercial Consumption","Missouri","MO",9496 +1998-02-01,"Commercial Consumption","New Jersey","NJ",19672 +1998-02-01,"Commercial Consumption","Texas","TX",18456 +1998-02-01,"Commercial Consumption","Florida","FL",3879 +1998-02-01,"Commercial Consumption","Wisconsin","WI",9999 +1998-02-01,"Commercial Consumption","Alaska","AK",2674 +1998-02-01,"Commercial Consumption","Arkansas","AR",4088 +1998-02-01,"Commercial Consumption","Tennessee","TN",7821 +1998-02-01,"Commercial Consumption","Oklahoma","OK",6692 +1998-02-01,"Commercial Consumption","New Hampshire","NH",994 +1998-02-01,"Commercial Consumption","New York","NY",40931 +1998-02-01,"Commercial Consumption","Indiana","IN",10260 +1998-02-01,"Commercial Consumption","Louisiana","LA",3179 +1998-02-01,"Commercial Consumption","North Carolina","NC",5635 +1998-02-01,"Commercial Consumption","Virginia","VA",8311 +1998-02-01,"Commercial Consumption","Massachusetts","MA",13826 +1998-02-01,"Commercial Consumption","Maryland","MD",7358 +1998-02-01,"Commercial Consumption","Vermont","VT",436 +1998-02-01,"Commercial Consumption","Nevada","NV",2595 +1998-02-01,"Commercial Consumption","Michigan","MI",23610 +1998-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91025 +1998-02-01,"Residential Consumption","South Carolina","SC",5280 +1998-02-01,"Residential Consumption","Iowa","IA",10267 +1998-02-01,"Residential Consumption","Georgia","GA",18186 +1998-02-01,"Residential Consumption","District of Columbia","DC",2372 +1998-02-01,"Residential Consumption","Maine","ME",127 +1998-02-01,"Residential Consumption","Florida","FL",2073 +1998-02-01,"Residential Consumption","North Dakota","ND",1531 +1998-02-01,"Residential Consumption","Missouri","MO",19049 +1998-02-01,"Residential Consumption","Connecticut","CT",5526 +1998-02-01,"Residential Consumption","Vermont","VT",397 +1998-02-01,"Residential Consumption","Michigan","MI",49366 +1998-02-01,"Residential Consumption","Minnesota","MN",15031 +1998-02-01,"Residential Consumption","Arkansas","AR",6675 +1998-02-01,"Residential Consumption","Alabama","AL",9216 +1998-02-01,"Residential Consumption","North Carolina","NC",9836 +1998-02-01,"Residential Consumption","Utah","UT",8209 +1998-02-01,"Residential Consumption","Montana","MT",2404 +1998-02-01,"Residential Consumption","Washington","WA",9711 +1998-02-01,"Residential Consumption","California","CA",76213 +1998-02-01,"Residential Consumption","West Virginia","WV",4894 +1998-02-01,"Residential Consumption","Texas","TX",33882 +1998-02-01,"Residential Consumption","Rhode Island","RI",2720 +1998-02-01,"Residential Consumption","Mississippi","MS",4516 +1998-02-01,"Residential Consumption","Tennessee","TN",11323 +1998-02-01,"Residential Consumption","Virginia","VA",11135 +1998-02-01,"Residential Consumption","Pennsylvania","PA",34880 +1998-02-01,"Residential Consumption","Indiana","IN",21137 +1998-02-01,"Residential Consumption","Massachusetts","MA",16570 +1998-02-01,"Residential Consumption","Idaho","ID",2236 +1998-02-01,"Residential Consumption","Illinois","IL",53096 +1998-02-01,"Residential Consumption","Hawaii","HI",52 +1998-02-01,"Residential Consumption","South Dakota","SD",1666 +1998-02-01,"Residential Consumption","New Mexico","NM",4387 +1998-02-01,"Residential Consumption","New Hampshire","NH",974 +1998-02-01,"Residential Consumption","Kentucky","KY",8493 +1998-02-01,"Residential Consumption","Delaware","DE",1351 +1998-02-01,"Residential Consumption","Arizona","AZ",5646 +1998-02-01,"Residential Consumption","Oregon","OR",4624 +1998-02-01,"Residential Consumption","Louisiana","LA",8311 +1998-02-01,"Residential Consumption","Colorado","CO",16905 +1998-02-01,"Residential Consumption","Ohio","OH",44246 +1998-02-01,"Residential Consumption","Wisconsin","WI",15358 +1998-02-01,"Residential Consumption","Nebraska","NE",6666 +1998-02-01,"Residential Consumption","Maryland","MD",11172 +1998-02-01,"Residential Consumption","Nevada","NV",4149 +1998-02-01,"Residential Consumption","Oklahoma","OK",11862 +1998-02-01,"Residential Consumption","New Jersey","NJ",31571 +1998-02-01,"Residential Consumption","Kansas","KS",11354 +1998-02-01,"Residential Consumption","Alaska","AK",1716 +1998-02-01,"Residential Consumption","Wyoming","WY",1746 +1998-02-01,"Residential Consumption","U.S.","U.S.",691819 +1998-02-01,"Residential Consumption","New York","NY",51711 +1998-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",717 +1998-03-01,"Commercial Consumption","Minnesota","MN",11517 +1998-03-01,"Commercial Consumption","Colorado","CO",8262 +1998-03-01,"Commercial Consumption","Wisconsin","WI",11009 +1998-03-01,"Commercial Consumption","Maine","ME",316 +1998-03-01,"Commercial Consumption","Kansas","KS",7699 +1998-03-01,"Commercial Consumption","Vermont","VT",381 +1998-03-01,"Commercial Consumption","Alaska","AK",2604 +1998-03-01,"Commercial Consumption","New York","NY",37862 +1998-03-01,"Commercial Consumption","North Dakota","ND",1343 +1998-03-01,"Commercial Consumption","Missouri","MO",8999 +1998-03-01,"Commercial Consumption","Rhode Island","RI",1518 +1998-03-01,"Commercial Consumption","Hawaii","HI",140 +1998-03-01,"Commercial Consumption","Alabama","AL",3566 +1998-03-01,"Commercial Consumption","Michigan","MI",22766 +1998-03-01,"Commercial Consumption","New Jersey","NJ",20041 +1998-03-01,"Commercial Consumption","Montana","MT",1605 +1998-03-01,"Commercial Consumption","Tennessee","TN",6814 +1998-03-01,"Commercial Consumption","West Virginia","WV",3154 +1998-03-01,"Commercial Consumption","Washington","WA",5824 +1998-03-01,"Commercial Consumption","South Dakota","SD",1333 +1998-03-01,"Commercial Consumption","California","CA",17981 +1998-03-01,"Commercial Consumption","Nebraska","NE",4097 +1998-03-01,"Commercial Consumption","Wyoming","WY",1279 +1998-03-01,"Commercial Consumption","South Carolina","SC",2417 +1998-03-01,"Commercial Consumption","Oklahoma","OK",6218 +1998-03-01,"Commercial Consumption","Virginia","VA",7713 +1998-03-01,"Commercial Consumption","Massachusetts","MA",11907 +1998-03-01,"Commercial Consumption","Maryland","MD",7138 +1998-03-01,"Commercial Consumption","Idaho","ID",1417 +1998-03-01,"Commercial Consumption","Connecticut","CT",4980 +1998-03-01,"Commercial Consumption","Delaware","DE",812 +1998-03-01,"Commercial Consumption","Arizona","AZ",3549 +1998-03-01,"Commercial Consumption","Indiana","IN",9874 +1998-03-01,"Commercial Consumption","Illinois","IL",23767 +1998-03-01,"Commercial Consumption","U.S.","U.S.",366881 +1998-03-01,"Commercial Consumption","Texas","TX",16276 +1998-03-01,"Commercial Consumption","Florida","FL",3722 +1998-03-01,"Commercial Consumption","Arkansas","AR",3855 +1998-03-01,"Commercial Consumption","North Carolina","NC",4732 +1998-03-01,"Commercial Consumption","Utah","UT",3795 +1998-03-01,"Commercial Consumption","Ohio","OH",21607 +1998-03-01,"Commercial Consumption","Mississippi","MS",2635 +1998-03-01,"Commercial Consumption","District of Columbia","DC",2028 +1998-03-01,"Commercial Consumption","New Mexico","NM",3357 +1998-03-01,"Commercial Consumption","Oregon","OR",3136 +1998-03-01,"Commercial Consumption","Pennsylvania","PA",16969 +1998-03-01,"Commercial Consumption","New Hampshire","NH",898 +1998-03-01,"Commercial Consumption","Kentucky","KY",4522 +1998-03-01,"Commercial Consumption","Georgia","GA",7438 +1998-03-01,"Commercial Consumption","Iowa","IA",6362 +1998-03-01,"Commercial Consumption","Nevada","NV",2667 +1998-03-01,"Commercial Consumption","Louisiana","LA",2982 +1998-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101614 +1998-03-01,"Residential Consumption","South Carolina","SC",4060 +1998-03-01,"Residential Consumption","Mississippi","MS",3861 +1998-03-01,"Residential Consumption","Iowa","IA",10640 +1998-03-01,"Residential Consumption","New Hampshire","NH",853 +1998-03-01,"Residential Consumption","Kansas","KS",11261 +1998-03-01,"Residential Consumption","California","CA",62009 +1998-03-01,"Residential Consumption","Alaska","AK",1529 +1998-03-01,"Residential Consumption","Rhode Island","RI",2402 +1998-03-01,"Residential Consumption","North Carolina","NC",7633 +1998-03-01,"Residential Consumption","Louisiana","LA",7043 +1998-03-01,"Residential Consumption","Maine","ME",120 +1998-03-01,"Residential Consumption","North Dakota","ND",1436 +1998-03-01,"Residential Consumption","Idaho","ID",2035 +1998-03-01,"Residential Consumption","New Jersey","NJ",28392 +1998-03-01,"Residential Consumption","Washington","WA",8950 +1998-03-01,"Residential Consumption","Delaware","DE",1240 +1998-03-01,"Residential Consumption","New York","NY",48382 +1998-03-01,"Residential Consumption","Nebraska","NE",6505 +1998-03-01,"Residential Consumption","Maryland","MD",9697 +1998-03-01,"Residential Consumption","South Dakota","SD",1738 +1998-03-01,"Residential Consumption","Pennsylvania","PA",32685 +1998-03-01,"Residential Consumption","Arkansas","AR",6076 +1998-03-01,"Residential Consumption","Arizona","AZ",5362 +1998-03-01,"Residential Consumption","Alabama","AL",7486 +1998-03-01,"Residential Consumption","Wyoming","WY",1658 +1998-03-01,"Residential Consumption","Illinois","IL",60088 +1998-03-01,"Residential Consumption","Oregon","OR",4303 +1998-03-01,"Residential Consumption","Connecticut","CT",4997 +1998-03-01,"Residential Consumption","New Mexico","NM",4776 +1998-03-01,"Residential Consumption","Hawaii","HI",45 +1998-03-01,"Residential Consumption","Utah","UT",6494 +1998-03-01,"Residential Consumption","Nevada","NV",3809 +1998-03-01,"Residential Consumption","Florida","FL",1881 +1998-03-01,"Residential Consumption","U.S.","U.S.",647619 +1998-03-01,"Residential Consumption","Indiana","IN",21395 +1998-03-01,"Residential Consumption","Oklahoma","OK",11028 +1998-03-01,"Residential Consumption","Missouri","MO",17840 +1998-03-01,"Residential Consumption","West Virginia","WV",4540 +1998-03-01,"Residential Consumption","Wisconsin","WI",17107 +1998-03-01,"Residential Consumption","Vermont","VT",340 +1998-03-01,"Residential Consumption","Tennessee","TN",9552 +1998-03-01,"Residential Consumption","Michigan","MI",47775 +1998-03-01,"Residential Consumption","Minnesota","MN",16348 +1998-03-01,"Residential Consumption","Georgia","GA",16448 +1998-03-01,"Residential Consumption","District of Columbia","DC",2038 +1998-03-01,"Residential Consumption","Montana","MT",2426 +1998-03-01,"Residential Consumption","Colorado","CO",16272 +1998-03-01,"Residential Consumption","Texas","TX",27829 +1998-03-01,"Residential Consumption","Ohio","OH",44588 +1998-03-01,"Residential Consumption","Virginia","VA",9677 +1998-03-01,"Residential Consumption","Massachusetts","MA",14826 +1998-03-01,"Residential Consumption","Kentucky","KY",8142 +1998-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",793 +1998-04-01,"Commercial Consumption","Minnesota","MN",5531 +1998-04-01,"Commercial Consumption","Utah","UT",2755 +1998-04-01,"Commercial Consumption","Missouri","MO",5556 +1998-04-01,"Commercial Consumption","South Dakota","SD",806 +1998-04-01,"Commercial Consumption","Florida","FL",3615 +1998-04-01,"Commercial Consumption","Hawaii","HI",145 +1998-04-01,"Commercial Consumption","Arizona","AZ",3011 +1998-04-01,"Commercial Consumption","Nevada","NV",2213 +1998-04-01,"Commercial Consumption","Michigan","MI",15595 +1998-04-01,"Commercial Consumption","South Carolina","SC",1728 +1998-04-01,"Commercial Consumption","North Carolina","NC",3222 +1998-04-01,"Commercial Consumption","Wisconsin","WI",6609 +1998-04-01,"Commercial Consumption","Texas","TX",11880 +1998-04-01,"Commercial Consumption","Kansas","KS",3225 +1998-04-01,"Commercial Consumption","Georgia","GA",4687 +1998-04-01,"Commercial Consumption","Vermont","VT",281 +1998-04-01,"Commercial Consumption","Iowa","IA",3593 +1998-04-01,"Commercial Consumption","Connecticut","CT",4279 +1998-04-01,"Commercial Consumption","New Mexico","NM",2384 +1998-04-01,"Commercial Consumption","U.S.","U.S.",255821 +1998-04-01,"Commercial Consumption","Arkansas","AR",2544 +1998-04-01,"Commercial Consumption","Colorado","CO",6187 +1998-04-01,"Commercial Consumption","New Jersey","NJ",11710 +1998-04-01,"Commercial Consumption","Kentucky","KY",2423 +1998-04-01,"Commercial Consumption","Alaska","AK",2222 +1998-04-01,"Commercial Consumption","West Virginia","WV",2176 +1998-04-01,"Commercial Consumption","Washington","WA",4236 +1998-04-01,"Commercial Consumption","North Dakota","ND",935 +1998-04-01,"Commercial Consumption","Oklahoma","OK",4249 +1998-04-01,"Commercial Consumption","Pennsylvania","PA",11091 +1998-04-01,"Commercial Consumption","New York","NY",29457 +1998-04-01,"Commercial Consumption","Nebraska","NE",2829 +1998-04-01,"Commercial Consumption","Mississippi","MS",1645 +1998-04-01,"Commercial Consumption","Illinois","IL",15152 +1998-04-01,"Commercial Consumption","Oregon","OR",2096 +1998-04-01,"Commercial Consumption","Virginia","VA",4806 +1998-04-01,"Commercial Consumption","Massachusetts","MA",9039 +1998-04-01,"Commercial Consumption","Montana","MT",1089 +1998-04-01,"Commercial Consumption","Maine","ME",195 +1998-04-01,"Commercial Consumption","Maryland","MD",4897 +1998-04-01,"Commercial Consumption","Rhode Island","RI",1141 +1998-04-01,"Commercial Consumption","Ohio","OH",13278 +1998-04-01,"Commercial Consumption","Idaho","ID",1072 +1998-04-01,"Commercial Consumption","Alabama","AL",2386 +1998-04-01,"Commercial Consumption","Wyoming","WY",936 +1998-04-01,"Commercial Consumption","California","CA",20978 +1998-04-01,"Commercial Consumption","Delaware","DE",558 +1998-04-01,"Commercial Consumption","Tennessee","TN",4490 +1998-04-01,"Commercial Consumption","Louisiana","LA",2147 +1998-04-01,"Commercial Consumption","New Hampshire","NH",623 +1998-04-01,"Commercial Consumption","Indiana","IN",6292 +1998-04-01,"Commercial Consumption","District of Columbia","DC",1824 +1998-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98122 +1998-04-01,"Residential Consumption","Mississippi","MS",2283 +1998-04-01,"Residential Consumption","Kentucky","KY",3926 +1998-04-01,"Residential Consumption","Missouri","MO",10481 +1998-04-01,"Residential Consumption","U.S.","U.S.",407752 +1998-04-01,"Residential Consumption","North Carolina","NC",5083 +1998-04-01,"Residential Consumption","Pennsylvania","PA",19457 +1998-04-01,"Residential Consumption","Maine","ME",71 +1998-04-01,"Residential Consumption","Florida","FL",1509 +1998-04-01,"Residential Consumption","Oklahoma","OK",6412 +1998-04-01,"Residential Consumption","Alaska","AK",1239 +1998-04-01,"Residential Consumption","South Carolina","SC",2457 +1998-04-01,"Residential Consumption","Connecticut","CT",3600 +1998-04-01,"Residential Consumption","Vermont","VT",266 +1998-04-01,"Residential Consumption","Idaho","ID",1563 +1998-04-01,"Residential Consumption","New Jersey","NJ",18824 +1998-04-01,"Residential Consumption","Delaware","DE",840 +1998-04-01,"Residential Consumption","Wyoming","WY",1278 +1998-04-01,"Residential Consumption","Louisiana","LA",4059 +1998-04-01,"Residential Consumption","Iowa","IA",5824 +1998-04-01,"Residential Consumption","Tennessee","TN",4992 +1998-04-01,"Residential Consumption","Utah","UT",4863 +1998-04-01,"Residential Consumption","South Dakota","SD",1127 +1998-04-01,"Residential Consumption","Nevada","NV",2826 +1998-04-01,"Residential Consumption","Minnesota","MN",7122 +1998-04-01,"Residential Consumption","Georgia","GA",8076 +1998-04-01,"Residential Consumption","Massachusetts","MA",10361 +1998-04-01,"Residential Consumption","New Hampshire","NH",643 +1998-04-01,"Residential Consumption","Colorado","CO",11619 +1998-04-01,"Residential Consumption","North Dakota","ND",935 +1998-04-01,"Residential Consumption","Arizona","AZ",3722 +1998-04-01,"Residential Consumption","Alabama","AL",4584 +1998-04-01,"Residential Consumption","Illinois","IL",32946 +1998-04-01,"Residential Consumption","Oregon","OR",2900 +1998-04-01,"Residential Consumption","Hawaii","HI",49 +1998-04-01,"Residential Consumption","Nebraska","NE",4339 +1998-04-01,"Residential Consumption","Maryland","MD",5778 +1998-04-01,"Residential Consumption","New Mexico","NM",2609 +1998-04-01,"Residential Consumption","Indiana","IN",12074 +1998-04-01,"Residential Consumption","Washington","WA",5827 +1998-04-01,"Residential Consumption","Ohio","OH",25083 +1998-04-01,"Residential Consumption","Arkansas","AR",3926 +1998-04-01,"Residential Consumption","Kansas","KS",7007 +1998-04-01,"Residential Consumption","Texas","TX",15365 +1998-04-01,"Residential Consumption","Rhode Island","RI",1662 +1998-04-01,"Residential Consumption","Wisconsin","WI",9186 +1998-04-01,"Residential Consumption","Virginia","VA",4741 +1998-04-01,"Residential Consumption","Michigan","MI",31983 +1998-04-01,"Residential Consumption","District of Columbia","DC",1198 +1998-04-01,"Residential Consumption","Montana","MT",1672 +1998-04-01,"Residential Consumption","California","CA",54074 +1998-04-01,"Residential Consumption","West Virginia","WV",2879 +1998-04-01,"Residential Consumption","New York","NY",32412 +1998-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",768 +1998-05-01,"Commercial Consumption","North Carolina","NC",1975 +1998-05-01,"Commercial Consumption","New Mexico","NM",1603 +1998-05-01,"Commercial Consumption","South Dakota","SD",538 +1998-05-01,"Commercial Consumption","Texas","TX",10425 +1998-05-01,"Commercial Consumption","Hawaii","HI",140 +1998-05-01,"Commercial Consumption","Louisiana","LA",1597 +1998-05-01,"Commercial Consumption","Oklahoma","OK",2315 +1998-05-01,"Commercial Consumption","Pennsylvania","PA",5955 +1998-05-01,"Commercial Consumption","Georgia","GA",3243 +1998-05-01,"Commercial Consumption","Arkansas","AR",1431 +1998-05-01,"Commercial Consumption","New York","NY",20849 +1998-05-01,"Commercial Consumption","West Virginia","WV",1273 +1998-05-01,"Commercial Consumption","North Dakota","ND",497 +1998-05-01,"Commercial Consumption","Utah","UT",1513 +1998-05-01,"Commercial Consumption","Massachusetts","MA",5846 +1998-05-01,"Commercial Consumption","Maine","ME",122 +1998-05-01,"Commercial Consumption","Kentucky","KY",1466 +1998-05-01,"Commercial Consumption","Iowa","IA",1513 +1998-05-01,"Commercial Consumption","Delaware","DE",321 +1998-05-01,"Commercial Consumption","Tennessee","TN",3003 +1998-05-01,"Commercial Consumption","Illinois","IL",6893 +1998-05-01,"Commercial Consumption","South Carolina","SC",1208 +1998-05-01,"Commercial Consumption","Kansas","KS",1973 +1998-05-01,"Commercial Consumption","Alaska","AK",1976 +1998-05-01,"Commercial Consumption","Alabama","AL",1457 +1998-05-01,"Commercial Consumption","Nebraska","NE",1717 +1998-05-01,"Commercial Consumption","Michigan","MI",8265 +1998-05-01,"Commercial Consumption","Colorado","CO",4320 +1998-05-01,"Commercial Consumption","Oregon","OR",1626 +1998-05-01,"Commercial Consumption","Missouri","MO",2984 +1998-05-01,"Commercial Consumption","Wisconsin","WI",3569 +1998-05-01,"Commercial Consumption","Ohio","OH",7127 +1998-05-01,"Commercial Consumption","California","CA",20004 +1998-05-01,"Commercial Consumption","Mississippi","MS",1229 +1998-05-01,"Commercial Consumption","Indiana","IN",3206 +1998-05-01,"Commercial Consumption","Wyoming","WY",597 +1998-05-01,"Commercial Consumption","U.S.","U.S.",169645 +1998-05-01,"Commercial Consumption","Florida","FL",3059 +1998-05-01,"Commercial Consumption","Rhode Island","RI",694 +1998-05-01,"Commercial Consumption","Idaho","ID",686 +1998-05-01,"Commercial Consumption","Arizona","AZ",2494 +1998-05-01,"Commercial Consumption","Washington","WA",2738 +1998-05-01,"Commercial Consumption","Virginia","VA",3547 +1998-05-01,"Commercial Consumption","New Jersey","NJ",9830 +1998-05-01,"Commercial Consumption","New Hampshire","NH",376 +1998-05-01,"Commercial Consumption","Maryland","MD",3478 +1998-05-01,"Commercial Consumption","Vermont","VT",116 +1998-05-01,"Commercial Consumption","Minnesota","MN",3171 +1998-05-01,"Commercial Consumption","Montana","MT",589 +1998-05-01,"Commercial Consumption","Connecticut","CT",2115 +1998-05-01,"Commercial Consumption","Nevada","NV",1898 +1998-05-01,"Commercial Consumption","District of Columbia","DC",1080 +1998-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101749 +1998-05-01,"Residential Consumption","Texas","TX",9090 +1998-05-01,"Residential Consumption","Virginia","VA",2525 +1998-05-01,"Residential Consumption","South Dakota","SD",508 +1998-05-01,"Residential Consumption","Wyoming","WY",735 +1998-05-01,"Residential Consumption","Louisiana","LA",2464 +1998-05-01,"Residential Consumption","Hawaii","HI",41 +1998-05-01,"Residential Consumption","Connecticut","CT",1858 +1998-05-01,"Residential Consumption","Nebraska","NE",1968 +1998-05-01,"Residential Consumption","New Mexico","NM",1279 +1998-05-01,"Residential Consumption","Florida","FL",920 +1998-05-01,"Residential Consumption","Massachusetts","MA",5550 +1998-05-01,"Residential Consumption","Colorado","CO",7886 +1998-05-01,"Residential Consumption","Alabama","AL",2354 +1998-05-01,"Residential Consumption","Wisconsin","WI",4075 +1998-05-01,"Residential Consumption","Tennessee","TN",2586 +1998-05-01,"Residential Consumption","Nevada","NV",1884 +1998-05-01,"Residential Consumption","Minnesota","MN",3735 +1998-05-01,"Residential Consumption","Montana","MT",865 +1998-05-01,"Residential Consumption","Missouri","MO",5002 +1998-05-01,"Residential Consumption","Arizona","AZ",2107 +1998-05-01,"Residential Consumption","Ohio","OH",11640 +1998-05-01,"Residential Consumption","Vermont","VT",118 +1998-05-01,"Residential Consumption","Utah","UT",2248 +1998-05-01,"Residential Consumption","District of Columbia","DC",638 +1998-05-01,"Residential Consumption","Washington","WA",3221 +1998-05-01,"Residential Consumption","U.S.","U.S.",220830 +1998-05-01,"Residential Consumption","Rhode Island","RI",1001 +1998-05-01,"Residential Consumption","Mississippi","MS",1253 +1998-05-01,"Residential Consumption","Iowa","IA",2808 +1998-05-01,"Residential Consumption","Michigan","MI",13991 +1998-05-01,"Residential Consumption","Maryland","MD",3047 +1998-05-01,"Residential Consumption","North Dakota","ND",480 +1998-05-01,"Residential Consumption","Arkansas","AR",1725 +1998-05-01,"Residential Consumption","New Jersey","NJ",12559 +1998-05-01,"Residential Consumption","Oklahoma","OK",3326 +1998-05-01,"Residential Consumption","California","CA",38119 +1998-05-01,"Residential Consumption","Alaska","AK",933 +1998-05-01,"Residential Consumption","Pennsylvania","PA",9648 +1998-05-01,"Residential Consumption","Kansas","KS",3604 +1998-05-01,"Residential Consumption","Oregon","OR",2174 +1998-05-01,"Residential Consumption","North Carolina","NC",2272 +1998-05-01,"Residential Consumption","Georgia","GA",3577 +1998-05-01,"Residential Consumption","Indiana","IN",5390 +1998-05-01,"Residential Consumption","Idaho","ID",906 +1998-05-01,"Residential Consumption","Delaware","DE",446 +1998-05-01,"Residential Consumption","West Virginia","WV",1278 +1998-05-01,"Residential Consumption","New York","NY",18810 +1998-05-01,"Residential Consumption","South Carolina","SC",1067 +1998-05-01,"Residential Consumption","Maine","ME",45 +1998-05-01,"Residential Consumption","New Hampshire","NH",355 +1998-05-01,"Residential Consumption","Kentucky","KY",1955 +1998-05-01,"Residential Consumption","Illinois","IL",14764 +1998-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",793 +1998-06-01,"Commercial Consumption","Wyoming","WY",442 +1998-06-01,"Commercial Consumption","Washington","WA",2291 +1998-06-01,"Commercial Consumption","Oregon","OR",1440 +1998-06-01,"Commercial Consumption","New Hampshire","NH",280 +1998-06-01,"Commercial Consumption","Kentucky","KY",1096 +1998-06-01,"Commercial Consumption","Alaska","AK",1511 +1998-06-01,"Commercial Consumption","Illinois","IL",6242 +1998-06-01,"Commercial Consumption","District of Columbia","DC",909 +1998-06-01,"Commercial Consumption","South Carolina","SC",1058 +1998-06-01,"Commercial Consumption","Colorado","CO",3087 +1998-06-01,"Commercial Consumption","Virginia","VA",2572 +1998-06-01,"Commercial Consumption","U.S.","U.S.",137688 +1998-06-01,"Commercial Consumption","Rhode Island","RI",506 +1998-06-01,"Commercial Consumption","Ohio","OH",5162 +1998-06-01,"Commercial Consumption","Hawaii","HI",148 +1998-06-01,"Commercial Consumption","California","CA",16352 +1998-06-01,"Commercial Consumption","Arizona","AZ",2073 +1998-06-01,"Commercial Consumption","North Dakota","ND",305 +1998-06-01,"Commercial Consumption","Texas","TX",9114 +1998-06-01,"Commercial Consumption","Nevada","NV",1605 +1998-06-01,"Commercial Consumption","Michigan","MI",6183 +1998-06-01,"Commercial Consumption","Oklahoma","OK",1808 +1998-06-01,"Commercial Consumption","Massachusetts","MA",5336 +1998-06-01,"Commercial Consumption","South Dakota","SD",285 +1998-06-01,"Commercial Consumption","New Jersey","NJ",6478 +1998-06-01,"Commercial Consumption","Kansas","KS",1619 +1998-06-01,"Commercial Consumption","Mississippi","MS",1192 +1998-06-01,"Commercial Consumption","Tennessee","TN",2503 +1998-06-01,"Commercial Consumption","Indiana","IN",2650 +1998-06-01,"Commercial Consumption","Louisiana","LA",1458 +1998-06-01,"Commercial Consumption","West Virginia","WV",1146 +1998-06-01,"Commercial Consumption","New Mexico","NM",963 +1998-06-01,"Commercial Consumption","Maine","ME",90 +1998-06-01,"Commercial Consumption","Maryland","MD",3126 +1998-06-01,"Commercial Consumption","Iowa","IA",1200 +1998-06-01,"Commercial Consumption","Pennsylvania","PA",5005 +1998-06-01,"Commercial Consumption","Florida","FL",2799 +1998-06-01,"Commercial Consumption","Vermont","VT",110 +1998-06-01,"Commercial Consumption","Alabama","AL",1122 +1998-06-01,"Commercial Consumption","Delaware","DE",227 +1998-06-01,"Commercial Consumption","Minnesota","MN",2992 +1998-06-01,"Commercial Consumption","Utah","UT",1156 +1998-06-01,"Commercial Consumption","Missouri","MO",2450 +1998-06-01,"Commercial Consumption","Wisconsin","WI",3347 +1998-06-01,"Commercial Consumption","Georgia","GA",2718 +1998-06-01,"Commercial Consumption","Idaho","ID",535 +1998-06-01,"Commercial Consumption","Connecticut","CT",2143 +1998-06-01,"Commercial Consumption","New York","NY",16706 +1998-06-01,"Commercial Consumption","North Carolina","NC",1583 +1998-06-01,"Commercial Consumption","Montana","MT",481 +1998-06-01,"Commercial Consumption","Arkansas","AR",1213 +1998-06-01,"Commercial Consumption","Nebraska","NE",869 +1998-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97533 +1998-06-01,"Residential Consumption","Connecticut","CT",1183 +1998-06-01,"Residential Consumption","Maryland","MD",2139 +1998-06-01,"Residential Consumption","Pennsylvania","PA",6834 +1998-06-01,"Residential Consumption","North Dakota","ND",286 +1998-06-01,"Residential Consumption","New Hampshire","NH",220 +1998-06-01,"Residential Consumption","Alaska","AK",628 +1998-06-01,"Residential Consumption","Tennessee","TN",1397 +1998-06-01,"Residential Consumption","Virginia","VA",1747 +1998-06-01,"Residential Consumption","Michigan","MI",9848 +1998-06-01,"Residential Consumption","Nevada","NV",1487 +1998-06-01,"Residential Consumption","Minnesota","MN",2765 +1998-06-01,"Residential Consumption","Arkansas","AR",1006 +1998-06-01,"Residential Consumption","Arizona","AZ",1385 +1998-06-01,"Residential Consumption","U.S.","U.S.",152708 +1998-06-01,"Residential Consumption","Texas","TX",6086 +1998-06-01,"Residential Consumption","Ohio","OH",8568 +1998-06-01,"Residential Consumption","Iowa","IA",1436 +1998-06-01,"Residential Consumption","District of Columbia","DC",436 +1998-06-01,"Residential Consumption","New Mexico","NM",286 +1998-06-01,"Residential Consumption","Indiana","IN",3739 +1998-06-01,"Residential Consumption","Colorado","CO",1664 +1998-06-01,"Residential Consumption","California","CA",33208 +1998-06-01,"Residential Consumption","Alabama","AL",1394 +1998-06-01,"Residential Consumption","Vermont","VT",77 +1998-06-01,"Residential Consumption","Georgia","GA",3210 +1998-06-01,"Residential Consumption","Idaho","ID",667 +1998-06-01,"Residential Consumption","New Jersey","NJ",6164 +1998-06-01,"Residential Consumption","Illinois","IL",11525 +1998-06-01,"Residential Consumption","Oregon","OR",1684 +1998-06-01,"Residential Consumption","Mississippi","MS",812 +1998-06-01,"Residential Consumption","Wisconsin","WI",3444 +1998-06-01,"Residential Consumption","Missouri","MO",3141 +1998-06-01,"Residential Consumption","West Virginia","WV",670 +1998-06-01,"Residential Consumption","New York","NY",12205 +1998-06-01,"Residential Consumption","Hawaii","HI",47 +1998-06-01,"Residential Consumption","Nebraska","NE",1202 +1998-06-01,"Residential Consumption","Kansas","KS",2092 +1998-06-01,"Residential Consumption","Delaware","DE",250 +1998-06-01,"Residential Consumption","Wyoming","WY",523 +1998-06-01,"Residential Consumption","Rhode Island","RI",622 +1998-06-01,"Residential Consumption","South Dakota","SD",304 +1998-06-01,"Residential Consumption","Florida","FL",779 +1998-06-01,"Residential Consumption","Montana","MT",669 +1998-06-01,"Residential Consumption","Kentucky","KY",1295 +1998-06-01,"Residential Consumption","Washington","WA",2312 +1998-06-01,"Residential Consumption","South Carolina","SC",543 +1998-06-01,"Residential Consumption","North Carolina","NC",1207 +1998-06-01,"Residential Consumption","Louisiana","LA",1815 +1998-06-01,"Residential Consumption","Utah","UT",1962 +1998-06-01,"Residential Consumption","Maine","ME",31 +1998-06-01,"Residential Consumption","Massachusetts","MA",3827 +1998-06-01,"Residential Consumption","Oklahoma","OK",1889 +1998-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",768 +1998-07-01,"Commercial Consumption","North Carolina","NC",1437 +1998-07-01,"Commercial Consumption","Montana","MT",424 +1998-07-01,"Commercial Consumption","U.S.","U.S.",142313 +1998-07-01,"Commercial Consumption","Iowa","IA",1353 +1998-07-01,"Commercial Consumption","Arizona","AZ",1899 +1998-07-01,"Commercial Consumption","Nevada","NV",1323 +1998-07-01,"Commercial Consumption","Louisiana","LA",1290 +1998-07-01,"Commercial Consumption","Illinois","IL",5203 +1998-07-01,"Commercial Consumption","West Virginia","WV",1102 +1998-07-01,"Commercial Consumption","Colorado","CO",2655 +1998-07-01,"Commercial Consumption","Virginia","VA",2652 +1998-07-01,"Commercial Consumption","Oklahoma","OK",1585 +1998-07-01,"Commercial Consumption","Wisconsin","WI",2893 +1998-07-01,"Commercial Consumption","New Jersey","NJ",5924 +1998-07-01,"Commercial Consumption","Texas","TX",13215 +1998-07-01,"Commercial Consumption","Hawaii","HI",134 +1998-07-01,"Commercial Consumption","Connecticut","CT",2448 +1998-07-01,"Commercial Consumption","Michigan","MI",5197 +1998-07-01,"Commercial Consumption","Wyoming","WY",371 +1998-07-01,"Commercial Consumption","South Carolina","SC",1011 +1998-07-01,"Commercial Consumption","Oregon","OR",1030 +1998-07-01,"Commercial Consumption","New Hampshire","NH",228 +1998-07-01,"Commercial Consumption","Florida","FL",2618 +1998-07-01,"Commercial Consumption","California","CA",23301 +1998-07-01,"Commercial Consumption","Utah","UT",847 +1998-07-01,"Commercial Consumption","South Dakota","SD",282 +1998-07-01,"Commercial Consumption","Maryland","MD",2933 +1998-07-01,"Commercial Consumption","Kansas","KS",1811 +1998-07-01,"Commercial Consumption","New York","NY",18694 +1998-07-01,"Commercial Consumption","Delaware","DE",191 +1998-07-01,"Commercial Consumption","Minnesota","MN",2003 +1998-07-01,"Commercial Consumption","Pennsylvania","PA",4584 +1998-07-01,"Commercial Consumption","Maine","ME",75 +1998-07-01,"Commercial Consumption","Ohio","OH",5461 +1998-07-01,"Commercial Consumption","Arkansas","AR",1277 +1998-07-01,"Commercial Consumption","Alabama","AL",1027 +1998-07-01,"Commercial Consumption","Nebraska","NE",1085 +1998-07-01,"Commercial Consumption","Indiana","IN",2413 +1998-07-01,"Commercial Consumption","District of Columbia","DC",867 +1998-07-01,"Commercial Consumption","Washington","WA",1947 +1998-07-01,"Commercial Consumption","Massachusetts","MA",4264 +1998-07-01,"Commercial Consumption","Kentucky","KY",996 +1998-07-01,"Commercial Consumption","Georgia","GA",2712 +1998-07-01,"Commercial Consumption","Rhode Island","RI",496 +1998-07-01,"Commercial Consumption","Idaho","ID",405 +1998-07-01,"Commercial Consumption","Alaska","AK",1415 +1998-07-01,"Commercial Consumption","Tennessee","TN",2365 +1998-07-01,"Commercial Consumption","North Dakota","ND",280 +1998-07-01,"Commercial Consumption","New Mexico","NM",1039 +1998-07-01,"Commercial Consumption","Missouri","MO",2184 +1998-07-01,"Commercial Consumption","Vermont","VT",102 +1998-07-01,"Commercial Consumption","Mississippi","MS",1265 +1998-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",99336 +1998-07-01,"Residential Consumption","South Carolina","SC",461 +1998-07-01,"Residential Consumption","Ohio","OH",8085 +1998-07-01,"Residential Consumption","Mississippi","MS",729 +1998-07-01,"Residential Consumption","Vermont","VT",56 +1998-07-01,"Residential Consumption","Nebraska","NE",1011 +1998-07-01,"Residential Consumption","Maryland","MD",1874 +1998-07-01,"Residential Consumption","Pennsylvania","PA",5332 +1998-07-01,"Residential Consumption","Arizona","AZ",1070 +1998-07-01,"Residential Consumption","Illinois","IL",9488 +1998-07-01,"Residential Consumption","Tennessee","TN",1164 +1998-07-01,"Residential Consumption","Louisiana","LA",1774 +1998-07-01,"Residential Consumption","Minnesota","MN",2540 +1998-07-01,"Residential Consumption","Georgia","GA",2981 +1998-07-01,"Residential Consumption","District of Columbia","DC",372 +1998-07-01,"Residential Consumption","Massachusetts","MA",2848 +1998-07-01,"Residential Consumption","Montana","MT",499 +1998-07-01,"Residential Consumption","Colorado","CO",3454 +1998-07-01,"Residential Consumption","Missouri","MO",2643 +1998-07-01,"Residential Consumption","West Virginia","WV",513 +1998-07-01,"Residential Consumption","U.S.","U.S.",132390 +1998-07-01,"Residential Consumption","Oregon","OR",944 +1998-07-01,"Residential Consumption","Connecticut","CT",1017 +1998-07-01,"Residential Consumption","Wisconsin","WI",2421 +1998-07-01,"Residential Consumption","Utah","UT",1266 +1998-07-01,"Residential Consumption","Nevada","NV",977 +1998-07-01,"Residential Consumption","New Mexico","NM",828 +1998-07-01,"Residential Consumption","Idaho","ID",403 +1998-07-01,"Residential Consumption","California","CA",25149 +1998-07-01,"Residential Consumption","New York","NY",15342 +1998-07-01,"Residential Consumption","Rhode Island","RI",462 +1998-07-01,"Residential Consumption","North Carolina","NC",1058 +1998-07-01,"Residential Consumption","Florida","FL",705 +1998-07-01,"Residential Consumption","New Jersey","NJ",5345 +1998-07-01,"Residential Consumption","Delaware","DE",196 +1998-07-01,"Residential Consumption","Alabama","AL",1212 +1998-07-01,"Residential Consumption","Wyoming","WY",345 +1998-07-01,"Residential Consumption","Indiana","IN",2817 +1998-07-01,"Residential Consumption","Kentucky","KY",1293 +1998-07-01,"Residential Consumption","Oklahoma","OK",1624 +1998-07-01,"Residential Consumption","Alaska","AK",479 +1998-07-01,"Residential Consumption","Texas","TX",6039 +1998-07-01,"Residential Consumption","Iowa","IA",1596 +1998-07-01,"Residential Consumption","Hawaii","HI",45 +1998-07-01,"Residential Consumption","Michigan","MI",7330 +1998-07-01,"Residential Consumption","Maine","ME",22 +1998-07-01,"Residential Consumption","North Dakota","ND",230 +1998-07-01,"Residential Consumption","Washington","WA",1765 +1998-07-01,"Residential Consumption","Virginia","VA",1435 +1998-07-01,"Residential Consumption","South Dakota","SD",274 +1998-07-01,"Residential Consumption","Arkansas","AR",963 +1998-07-01,"Residential Consumption","New Hampshire","NH",169 +1998-07-01,"Residential Consumption","Kansas","KS",1746 +1998-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",793 +1998-08-01,"Commercial Consumption","Virginia","VA",1857 +1998-08-01,"Commercial Consumption","Rhode Island","RI",195 +1998-08-01,"Commercial Consumption","Connecticut","CT",2171 +1998-08-01,"Commercial Consumption","New York","NY",22277 +1998-08-01,"Commercial Consumption","North Carolina","NC",1571 +1998-08-01,"Commercial Consumption","Oregon","OR",880 +1998-08-01,"Commercial Consumption","Montana","MT",415 +1998-08-01,"Commercial Consumption","Iowa","IA",1166 +1998-08-01,"Commercial Consumption","Nebraska","NE",862 +1998-08-01,"Commercial Consumption","Washington","WA",1818 +1998-08-01,"Commercial Consumption","Oklahoma","OK",1641 +1998-08-01,"Commercial Consumption","Massachusetts","MA",3606 +1998-08-01,"Commercial Consumption","Hawaii","HI",155 +1998-08-01,"Commercial Consumption","Arkansas","AR",1205 +1998-08-01,"Commercial Consumption","Michigan","MI",5694 +1998-08-01,"Commercial Consumption","Colorado","CO",2166 +1998-08-01,"Commercial Consumption","Pennsylvania","PA",4996 +1998-08-01,"Commercial Consumption","New Jersey","NJ",5711 +1998-08-01,"Commercial Consumption","New Hampshire","NH",229 +1998-08-01,"Commercial Consumption","Kentucky","KY",1073 +1998-08-01,"Commercial Consumption","Texas","TX",11729 +1998-08-01,"Commercial Consumption","California","CA",25640 +1998-08-01,"Commercial Consumption","Mississippi","MS",1198 +1998-08-01,"Commercial Consumption","Illinois","IL",6399 +1998-08-01,"Commercial Consumption","Minnesota","MN",2289 +1998-08-01,"Commercial Consumption","Utah","UT",845 +1998-08-01,"Commercial Consumption","New Mexico","NM",1073 +1998-08-01,"Commercial Consumption","Missouri","MO",3005 +1998-08-01,"Commercial Consumption","Maryland","MD",3085 +1998-08-01,"Commercial Consumption","Idaho","ID",380 +1998-08-01,"Commercial Consumption","Arizona","AZ",1719 +1998-08-01,"Commercial Consumption","Tennessee","TN",2215 +1998-08-01,"Commercial Consumption","North Dakota","ND",348 +1998-08-01,"Commercial Consumption","South Dakota","SD",262 +1998-08-01,"Commercial Consumption","Kansas","KS",1713 +1998-08-01,"Commercial Consumption","Georgia","GA",2618 +1998-08-01,"Commercial Consumption","Ohio","OH",4036 +1998-08-01,"Commercial Consumption","Alabama","AL",1026 +1998-08-01,"Commercial Consumption","Louisiana","LA",1364 +1998-08-01,"Commercial Consumption","South Carolina","SC",1028 +1998-08-01,"Commercial Consumption","U.S.","U.S.",144498 +1998-08-01,"Commercial Consumption","Alaska","AK",1414 +1998-08-01,"Commercial Consumption","Indiana","IN",1984 +1998-08-01,"Commercial Consumption","District of Columbia","DC",843 +1998-08-01,"Commercial Consumption","Wyoming","WY",253 +1998-08-01,"Commercial Consumption","West Virginia","WV",1185 +1998-08-01,"Commercial Consumption","Wisconsin","WI",3096 +1998-08-01,"Commercial Consumption","Maine","ME",74 +1998-08-01,"Commercial Consumption","Florida","FL",2640 +1998-08-01,"Commercial Consumption","Vermont","VT",100 +1998-08-01,"Commercial Consumption","Delaware","DE",176 +1998-08-01,"Commercial Consumption","Nevada","NV",1071 +1998-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100027 +1998-08-01,"Residential Consumption","Texas","TX",5774 +1998-08-01,"Residential Consumption","Utah","UT",1335 +1998-08-01,"Residential Consumption","Idaho","ID",292 +1998-08-01,"Residential Consumption","South Carolina","SC",446 +1998-08-01,"Residential Consumption","North Carolina","NC",914 +1998-08-01,"Residential Consumption","Mississippi","MS",718 +1998-08-01,"Residential Consumption","Wisconsin","WI",2768 +1998-08-01,"Residential Consumption","Tennessee","TN",1093 +1998-08-01,"Residential Consumption","Minnesota","MN",2461 +1998-08-01,"Residential Consumption","Colorado","CO",2541 +1998-08-01,"Residential Consumption","Oklahoma","OK",1409 +1998-08-01,"Residential Consumption","Michigan","MI",6782 +1998-08-01,"Residential Consumption","Maryland","MD",1904 +1998-08-01,"Residential Consumption","Nevada","NV",813 +1998-08-01,"Residential Consumption","Maine","ME",25 +1998-08-01,"Residential Consumption","Kansas","KS",1546 +1998-08-01,"Residential Consumption","Rhode Island","RI",438 +1998-08-01,"Residential Consumption","Iowa","IA",1445 +1998-08-01,"Residential Consumption","Hawaii","HI",40 +1998-08-01,"Residential Consumption","Vermont","VT",57 +1998-08-01,"Residential Consumption","North Dakota","ND",204 +1998-08-01,"Residential Consumption","Massachusetts","MA",2370 +1998-08-01,"Residential Consumption","New Hampshire","NH",156 +1998-08-01,"Residential Consumption","Missouri","MO",2192 +1998-08-01,"Residential Consumption","West Virginia","WV",526 +1998-08-01,"Residential Consumption","U.S.","U.S.",116631 +1998-08-01,"Residential Consumption","New York","NY",8900 +1998-08-01,"Residential Consumption","Oregon","OR",668 +1998-08-01,"Residential Consumption","South Dakota","SD",227 +1998-08-01,"Residential Consumption","New Mexico","NM",846 +1998-08-01,"Residential Consumption","Indiana","IN",2803 +1998-08-01,"Residential Consumption","Florida","FL",649 +1998-08-01,"Residential Consumption","Kentucky","KY",1081 +1998-08-01,"Residential Consumption","Washington","WA",1574 +1998-08-01,"Residential Consumption","Alabama","AL",1183 +1998-08-01,"Residential Consumption","Alaska","AK",648 +1998-08-01,"Residential Consumption","Wyoming","WY",307 +1998-08-01,"Residential Consumption","Connecticut","CT",839 +1998-08-01,"Residential Consumption","Nebraska","NE",1030 +1998-08-01,"Residential Consumption","Pennsylvania","PA",5058 +1998-08-01,"Residential Consumption","California","CA",21625 +1998-08-01,"Residential Consumption","Arizona","AZ",902 +1998-08-01,"Residential Consumption","Ohio","OH",7314 +1998-08-01,"Residential Consumption","Louisiana","LA",1588 +1998-08-01,"Residential Consumption","Virginia","VA",1075 +1998-08-01,"Residential Consumption","District of Columbia","DC",328 +1998-08-01,"Residential Consumption","Delaware","DE",164 +1998-08-01,"Residential Consumption","Illinois","IL",10434 +1998-08-01,"Residential Consumption","Georgia","GA",2850 +1998-08-01,"Residential Consumption","Arkansas","AR",872 +1998-08-01,"Residential Consumption","New Jersey","NJ",4945 +1998-08-01,"Residential Consumption","Montana","MT",471 +1998-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",793 +1998-09-01,"Commercial Consumption","Colorado","CO",2371 +1998-09-01,"Commercial Consumption","Iowa","IA",1210 +1998-09-01,"Commercial Consumption","California","CA",22759 +1998-09-01,"Commercial Consumption","Arizona","AZ",1738 +1998-09-01,"Commercial Consumption","Wyoming","WY",343 +1998-09-01,"Commercial Consumption","Minnesota","MN",2717 +1998-09-01,"Commercial Consumption","Utah","UT",1028 +1998-09-01,"Commercial Consumption","New Jersey","NJ",7010 +1998-09-01,"Commercial Consumption","Arkansas","AR",1143 +1998-09-01,"Commercial Consumption","Tennessee","TN",2390 +1998-09-01,"Commercial Consumption","Illinois","IL",6521 +1998-09-01,"Commercial Consumption","Washington","WA",1869 +1998-09-01,"Commercial Consumption","North Dakota","ND",324 +1998-09-01,"Commercial Consumption","Oregon","OR",1023 +1998-09-01,"Commercial Consumption","Oklahoma","OK",1628 +1998-09-01,"Commercial Consumption","South Dakota","SD",269 +1998-09-01,"Commercial Consumption","Kentucky","KY",1089 +1998-09-01,"Commercial Consumption","Hawaii","HI",140 +1998-09-01,"Commercial Consumption","Alabama","AL",1091 +1998-09-01,"Commercial Consumption","Nebraska","NE",963 +1998-09-01,"Commercial Consumption","Pennsylvania","PA",4507 +1998-09-01,"Commercial Consumption","New Hampshire","NH",222 +1998-09-01,"Commercial Consumption","Texas","TX",12410 +1998-09-01,"Commercial Consumption","Florida","FL",2556 +1998-09-01,"Commercial Consumption","Alaska","AK",1619 +1998-09-01,"Commercial Consumption","Connecticut","CT",2033 +1998-09-01,"Commercial Consumption","Louisiana","LA",1285 +1998-09-01,"Commercial Consumption","District of Columbia","DC",833 +1998-09-01,"Commercial Consumption","West Virginia","WV",1237 +1998-09-01,"Commercial Consumption","U.S.","U.S.",139737 +1998-09-01,"Commercial Consumption","Georgia","GA",2584 +1998-09-01,"Commercial Consumption","Rhode Island","RI",483 +1998-09-01,"Commercial Consumption","Delaware","DE",180 +1998-09-01,"Commercial Consumption","Michigan","MI",5685 +1998-09-01,"Commercial Consumption","Vermont","VT",125 +1998-09-01,"Commercial Consumption","Ohio","OH",4995 +1998-09-01,"Commercial Consumption","New York","NY",16899 +1998-09-01,"Commercial Consumption","Mississippi","MS",1327 +1998-09-01,"Commercial Consumption","Nevada","NV",1110 +1998-09-01,"Commercial Consumption","North Carolina","NC",1594 +1998-09-01,"Commercial Consumption","Missouri","MO",2192 +1998-09-01,"Commercial Consumption","Wisconsin","WI",3317 +1998-09-01,"Commercial Consumption","Montana","MT",439 +1998-09-01,"Commercial Consumption","Kansas","KS",1323 +1998-09-01,"Commercial Consumption","Idaho","ID",386 +1998-09-01,"Commercial Consumption","Indiana","IN",2897 +1998-09-01,"Commercial Consumption","South Carolina","SC",1065 +1998-09-01,"Commercial Consumption","New Mexico","NM",1090 +1998-09-01,"Commercial Consumption","Virginia","VA",2449 +1998-09-01,"Commercial Consumption","Massachusetts","MA",2359 +1998-09-01,"Commercial Consumption","Maine","ME",78 +1998-09-01,"Commercial Consumption","Maryland","MD",2832 +1998-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90805 +1998-09-01,"Residential Consumption","Rhode Island","RI",436 +1998-09-01,"Residential Consumption","North Carolina","NC",973 +1998-09-01,"Residential Consumption","Nebraska","NE",883 +1998-09-01,"Residential Consumption","New Mexico","NM",841 +1998-09-01,"Residential Consumption","Colorado","CO",2806 +1998-09-01,"Residential Consumption","Missouri","MO",2627 +1998-09-01,"Residential Consumption","Alabama","AL",1196 +1998-09-01,"Residential Consumption","West Virginia","WV",623 +1998-09-01,"Residential Consumption","Mississippi","MS",725 +1998-09-01,"Residential Consumption","Nevada","NV",824 +1998-09-01,"Residential Consumption","Indiana","IN",3221 +1998-09-01,"Residential Consumption","California","CA",22038 +1998-09-01,"Residential Consumption","U.S.","U.S.",121417 +1998-09-01,"Residential Consumption","District of Columbia","DC",340 +1998-09-01,"Residential Consumption","North Dakota","ND",198 +1998-09-01,"Residential Consumption","Massachusetts","MA",2588 +1998-09-01,"Residential Consumption","New York","NY",9546 +1998-09-01,"Residential Consumption","Illinois","IL",10506 +1998-09-01,"Residential Consumption","South Carolina","SC",471 +1998-09-01,"Residential Consumption","Oregon","OR",767 +1998-09-01,"Residential Consumption","Hawaii","HI",41 +1998-09-01,"Residential Consumption","Connecticut","CT",927 +1998-09-01,"Residential Consumption","Wisconsin","WI",2723 +1998-09-01,"Residential Consumption","Virginia","VA",1467 +1998-09-01,"Residential Consumption","South Dakota","SD",248 +1998-09-01,"Residential Consumption","Florida","FL",657 +1998-09-01,"Residential Consumption","Michigan","MI",7580 +1998-09-01,"Residential Consumption","Georgia","GA",2889 +1998-09-01,"Residential Consumption","Pennsylvania","PA",5161 +1998-09-01,"Residential Consumption","Idaho","ID",316 +1998-09-01,"Residential Consumption","Arkansas","AR",861 +1998-09-01,"Residential Consumption","Arizona","AZ",940 +1998-09-01,"Residential Consumption","Ohio","OH",6390 +1998-09-01,"Residential Consumption","Iowa","IA",1435 +1998-09-01,"Residential Consumption","Tennessee","TN",1159 +1998-09-01,"Residential Consumption","Montana","MT",477 +1998-09-01,"Residential Consumption","Oklahoma","OK",1449 +1998-09-01,"Residential Consumption","Delaware","DE",176 +1998-09-01,"Residential Consumption","Louisiana","LA",1719 +1998-09-01,"Residential Consumption","Maryland","MD",1882 +1998-09-01,"Residential Consumption","New Jersey","NJ",5100 +1998-09-01,"Residential Consumption","Kansas","KS",1479 +1998-09-01,"Residential Consumption","Washington","WA",1667 +1998-09-01,"Residential Consumption","Alaska","AK",818 +1998-09-01,"Residential Consumption","Wyoming","WY",310 +1998-09-01,"Residential Consumption","Texas","TX",5893 +1998-09-01,"Residential Consumption","Vermont","VT",114 +1998-09-01,"Residential Consumption","Utah","UT",1916 +1998-09-01,"Residential Consumption","Minnesota","MN",2678 +1998-09-01,"Residential Consumption","Maine","ME",27 +1998-09-01,"Residential Consumption","New Hampshire","NH",159 +1998-09-01,"Residential Consumption","Kentucky","KY",1150 +1998-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",768 +1998-10-01,"Commercial Consumption","Colorado","CO",3321 +1998-10-01,"Commercial Consumption","Missouri","MO",2389 +1998-10-01,"Commercial Consumption","Massachusetts","MA",5698 +1998-10-01,"Commercial Consumption","Montana","MT",845 +1998-10-01,"Commercial Consumption","California","CA",23016 +1998-10-01,"Commercial Consumption","Arkansas","AR",1359 +1998-10-01,"Commercial Consumption","Alabama","AL",1248 +1998-10-01,"Commercial Consumption","Indiana","IN",4311 +1998-10-01,"Commercial Consumption","Wyoming","WY",493 +1998-10-01,"Commercial Consumption","Oklahoma","OK",1644 +1998-10-01,"Commercial Consumption","South Dakota","SD",363 +1998-10-01,"Commercial Consumption","New Jersey","NJ",8677 +1998-10-01,"Commercial Consumption","Arizona","AZ",1900 +1998-10-01,"Commercial Consumption","District of Columbia","DC",879 +1998-10-01,"Commercial Consumption","North Dakota","ND",547 +1998-10-01,"Commercial Consumption","Texas","TX",10107 +1998-10-01,"Commercial Consumption","Ohio","OH",6706 +1998-10-01,"Commercial Consumption","Tennessee","TN",2520 +1998-10-01,"Commercial Consumption","West Virginia","WV",1579 +1998-10-01,"Commercial Consumption","New Hampshire","NH",371 +1998-10-01,"Commercial Consumption","Hawaii","HI",132 +1998-10-01,"Commercial Consumption","Michigan","MI",8608 +1998-10-01,"Commercial Consumption","Louisiana","LA",1352 +1998-10-01,"Commercial Consumption","New Mexico","NM",1249 +1998-10-01,"Commercial Consumption","Oregon","OR",1291 +1998-10-01,"Commercial Consumption","Pennsylvania","PA",7032 +1998-10-01,"Commercial Consumption","U.S.","U.S.",173381 +1998-10-01,"Commercial Consumption","Vermont","VT",165 +1998-10-01,"Commercial Consumption","Rhode Island","RI",628 +1998-10-01,"Commercial Consumption","Nebraska","NE",1036 +1998-10-01,"Commercial Consumption","Delaware","DE",243 +1998-10-01,"Commercial Consumption","Virginia","VA",3287 +1998-10-01,"Commercial Consumption","Wisconsin","WI",4360 +1998-10-01,"Commercial Consumption","Kentucky","KY",1601 +1998-10-01,"Commercial Consumption","Maryland","MD",3287 +1998-10-01,"Commercial Consumption","New York","NY",20887 +1998-10-01,"Commercial Consumption","Washington","WA",2102 +1998-10-01,"Commercial Consumption","Minnesota","MN",5356 +1998-10-01,"Commercial Consumption","Utah","UT",2083 +1998-10-01,"Commercial Consumption","Kansas","KS",1588 +1998-10-01,"Commercial Consumption","Idaho","ID",577 +1998-10-01,"Commercial Consumption","South Carolina","SC",1156 +1998-10-01,"Commercial Consumption","North Carolina","NC",1767 +1998-10-01,"Commercial Consumption","Maine","ME",165 +1998-10-01,"Commercial Consumption","Georgia","GA",3045 +1998-10-01,"Commercial Consumption","Florida","FL",2603 +1998-10-01,"Commercial Consumption","Iowa","IA",2402 +1998-10-01,"Commercial Consumption","Alaska","AK",2318 +1998-10-01,"Commercial Consumption","Connecticut","CT",2678 +1998-10-01,"Commercial Consumption","Mississippi","MS",1155 +1998-10-01,"Commercial Consumption","Nevada","NV",1307 +1998-10-01,"Commercial Consumption","Illinois","IL",9948 +1998-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97983 +1998-10-01,"Residential Consumption","Texas","TX",7323 +1998-10-01,"Residential Consumption","Mississippi","MS",805 +1998-10-01,"Residential Consumption","Hawaii","HI",39 +1998-10-01,"Residential Consumption","Florida","FL",685 +1998-10-01,"Residential Consumption","Massachusetts","MA",4301 +1998-10-01,"Residential Consumption","California","CA",26159 +1998-10-01,"Residential Consumption","Iowa","IA",3030 +1998-10-01,"Residential Consumption","Tennessee","TN",1447 +1998-10-01,"Residential Consumption","Indiana","IN",6497 +1998-10-01,"Residential Consumption","North Dakota","ND",475 +1998-10-01,"Residential Consumption","Idaho","ID",657 +1998-10-01,"Residential Consumption","Montana","MT",1266 +1998-10-01,"Residential Consumption","Oklahoma","OK",1743 +1998-10-01,"Residential Consumption","Ohio","OH",16290 +1998-10-01,"Residential Consumption","Connecticut","CT",1518 +1998-10-01,"Residential Consumption","Michigan","MI",15956 +1998-10-01,"Residential Consumption","Georgia","GA",4325 +1998-10-01,"Residential Consumption","District of Columbia","DC",459 +1998-10-01,"Residential Consumption","Arkansas","AR",1109 +1998-10-01,"Residential Consumption","Delaware","DE",231 +1998-10-01,"Residential Consumption","New York","NY",15308 +1998-10-01,"Residential Consumption","Oregon","OR",1445 +1998-10-01,"Residential Consumption","Louisiana","LA",1785 +1998-10-01,"Residential Consumption","Nebraska","NE",1623 +1998-10-01,"Residential Consumption","Minnesota","MN",5319 +1998-10-01,"Residential Consumption","Pennsylvania","PA",10204 +1998-10-01,"Residential Consumption","Alabama","AL",1320 +1998-10-01,"Residential Consumption","Illinois","IL",21536 +1998-10-01,"Residential Consumption","Utah","UT",4472 +1998-10-01,"Residential Consumption","Nevada","NV",1367 +1998-10-01,"Residential Consumption","New Jersey","NJ",8720 +1998-10-01,"Residential Consumption","Colorado","CO",4366 +1998-10-01,"Residential Consumption","Washington","WA",2427 +1998-10-01,"Residential Consumption","West Virginia","WV",1300 +1998-10-01,"Residential Consumption","U.S.","U.S.",202996 +1998-10-01,"Residential Consumption","South Carolina","SC",575 +1998-10-01,"Residential Consumption","Virginia","VA",2499 +1998-10-01,"Residential Consumption","Maryland","MD",2863 +1998-10-01,"Residential Consumption","South Dakota","SD",533 +1998-10-01,"Residential Consumption","New Mexico","NM",1171 +1998-10-01,"Residential Consumption","Maine","ME",62 +1998-10-01,"Residential Consumption","Kentucky","KY",2220 +1998-10-01,"Residential Consumption","Kansas","KS",2322 +1998-10-01,"Residential Consumption","Missouri","MO",3355 +1998-10-01,"Residential Consumption","Arizona","AZ",1136 +1998-10-01,"Residential Consumption","North Carolina","NC",1217 +1998-10-01,"Residential Consumption","Wisconsin","WI",6381 +1998-10-01,"Residential Consumption","Alaska","AK",1346 +1998-10-01,"Residential Consumption","Wyoming","WY",773 +1998-10-01,"Residential Consumption","Rhode Island","RI",645 +1998-10-01,"Residential Consumption","Vermont","VT",102 +1998-10-01,"Residential Consumption","New Hampshire","NH",294 +1998-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",793 +1998-11-01,"Commercial Consumption","Oregon","OR",2681 +1998-11-01,"Commercial Consumption","Virginia","VA",5334 +1998-11-01,"Commercial Consumption","Wyoming","WY",927 +1998-11-01,"Commercial Consumption","Massachusetts","MA",7440 +1998-11-01,"Commercial Consumption","Montana","MT",1340 +1998-11-01,"Commercial Consumption","Kansas","KS",3019 +1998-11-01,"Commercial Consumption","Georgia","GA",4094 +1998-11-01,"Commercial Consumption","Rhode Island","RI",1019 +1998-11-01,"Commercial Consumption","Iowa","IA",4261 +1998-11-01,"Commercial Consumption","New York","NY",27494 +1998-11-01,"Commercial Consumption","Illinois","IL",17109 +1998-11-01,"Commercial Consumption","Colorado","CO",4973 +1998-11-01,"Commercial Consumption","Utah","UT",3202 +1998-11-01,"Commercial Consumption","New Mexico","NM",2233 +1998-11-01,"Commercial Consumption","Missouri","MO",4415 +1998-11-01,"Commercial Consumption","Kentucky","KY",3198 +1998-11-01,"Commercial Consumption","Maryland","MD",4928 +1998-11-01,"Commercial Consumption","Florida","FL",2818 +1998-11-01,"Commercial Consumption","California","CA",26959 +1998-11-01,"Commercial Consumption","Arkansas","AR",1999 +1998-11-01,"Commercial Consumption","Mississippi","MS",1512 +1998-11-01,"Commercial Consumption","Nevada","NV",1855 +1998-11-01,"Commercial Consumption","Pennsylvania","PA",12808 +1998-11-01,"Commercial Consumption","U.S.","U.S.",264170 +1998-11-01,"Commercial Consumption","Vermont","VT",276 +1998-11-01,"Commercial Consumption","Alabama","AL",1716 +1998-11-01,"Commercial Consumption","Nebraska","NE",2218 +1998-11-01,"Commercial Consumption","Arizona","AZ",2352 +1998-11-01,"Commercial Consumption","Tennessee","TN",4053 +1998-11-01,"Commercial Consumption","Louisiana","LA",1707 +1998-11-01,"Commercial Consumption","North Dakota","ND",1020 +1998-11-01,"Commercial Consumption","Wisconsin","WI",8411 +1998-11-01,"Commercial Consumption","Connecticut","CT",3251 +1998-11-01,"Commercial Consumption","Oklahoma","OK",2771 +1998-11-01,"Commercial Consumption","South Dakota","SD",913 +1998-11-01,"Commercial Consumption","New Jersey","NJ",12883 +1998-11-01,"Commercial Consumption","Maine","ME",247 +1998-11-01,"Commercial Consumption","Alaska","AK",2668 +1998-11-01,"Commercial Consumption","District of Columbia","DC",1205 +1998-11-01,"Commercial Consumption","West Virginia","WV",2345 +1998-11-01,"Commercial Consumption","Washington","WA",3442 +1998-11-01,"Commercial Consumption","New Hampshire","NH",612 +1998-11-01,"Commercial Consumption","Texas","TX",14533 +1998-11-01,"Commercial Consumption","Hawaii","HI",143 +1998-11-01,"Commercial Consumption","Michigan","MI",15174 +1998-11-01,"Commercial Consumption","South Carolina","SC",1531 +1998-11-01,"Commercial Consumption","North Carolina","NC",2741 +1998-11-01,"Commercial Consumption","Minnesota","MN",8896 +1998-11-01,"Commercial Consumption","Ohio","OH",14894 +1998-11-01,"Commercial Consumption","Idaho","ID",1045 +1998-11-01,"Commercial Consumption","Delaware","DE",448 +1998-11-01,"Commercial Consumption","Indiana","IN",7058 +1998-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94934 +1998-11-01,"Residential Consumption","South Carolina","SC",1726 +1998-11-01,"Residential Consumption","Hawaii","HI",40 +1998-11-01,"Residential Consumption","Massachusetts","MA",9367 +1998-11-01,"Residential Consumption","Kentucky","KY",6112 +1998-11-01,"Residential Consumption","Colorado","CO",8806 +1998-11-01,"Residential Consumption","Missouri","MO",8099 +1998-11-01,"Residential Consumption","Oregon","OR",3180 +1998-11-01,"Residential Consumption","Iowa","IA",6345 +1998-11-01,"Residential Consumption","South Dakota","SD",1157 +1998-11-01,"Residential Consumption","Nevada","NV",2526 +1998-11-01,"Residential Consumption","Minnesota","MN",12193 +1998-11-01,"Residential Consumption","Georgia","GA",9441 +1998-11-01,"Residential Consumption","New Mexico","NM",3552 +1998-11-01,"Residential Consumption","Florida","FL",842 +1998-11-01,"Residential Consumption","New Jersey","NJ",17413 +1998-11-01,"Residential Consumption","Alaska","AK",1858 +1998-11-01,"Residential Consumption","North Carolina","NC",4062 +1998-11-01,"Residential Consumption","Washington","WA",4731 +1998-11-01,"Residential Consumption","Rhode Island","RI",1408 +1998-11-01,"Residential Consumption","Wisconsin","WI",11701 +1998-11-01,"Residential Consumption","Indiana","IN",13541 +1998-11-01,"Residential Consumption","Delaware","DE",571 +1998-11-01,"Residential Consumption","Arizona","AZ",2008 +1998-11-01,"Residential Consumption","Texas","TX",12931 +1998-11-01,"Residential Consumption","Mississippi","MS",1524 +1998-11-01,"Residential Consumption","Connecticut","CT",3224 +1998-11-01,"Residential Consumption","Virginia","VA",6203 +1998-11-01,"Residential Consumption","Nebraska","NE",3386 +1998-11-01,"Residential Consumption","North Dakota","ND",1016 +1998-11-01,"Residential Consumption","New Hampshire","NH",566 +1998-11-01,"Residential Consumption","Montana","MT",2069 +1998-11-01,"Residential Consumption","Alabama","AL",2468 +1998-11-01,"Residential Consumption","Ohio","OH",30086 +1998-11-01,"Residential Consumption","Utah","UT",5820 +1998-11-01,"Residential Consumption","Maryland","MD",6485 +1998-11-01,"Residential Consumption","Maine","ME",95 +1998-11-01,"Residential Consumption","Idaho","ID",1510 +1998-11-01,"Residential Consumption","Kansas","KS",5820 +1998-11-01,"Residential Consumption","California","CA",40200 +1998-11-01,"Residential Consumption","Wyoming","WY",1214 +1998-11-01,"Residential Consumption","Illinois","IL",43853 +1998-11-01,"Residential Consumption","District of Columbia","DC",1088 +1998-11-01,"Residential Consumption","Pennsylvania","PA",21159 +1998-11-01,"Residential Consumption","Arkansas","AR",2668 +1998-11-01,"Residential Consumption","Oklahoma","OK",4245 +1998-11-01,"Residential Consumption","West Virginia","WV",2791 +1998-11-01,"Residential Consumption","Louisiana","LA",2703 +1998-11-01,"Residential Consumption","Vermont","VT",213 +1998-11-01,"Residential Consumption","Tennessee","TN",4397 +1998-11-01,"Residential Consumption","Michigan","MI",29671 +1998-11-01,"Residential Consumption","U.S.","U.S.",398094 +1998-11-01,"Residential Consumption","New York","NY",30010 +1998-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",768 +1998-12-01,"Commercial Consumption","U.S.","U.S.",362095 +1998-12-01,"Commercial Consumption","Connecticut","CT",4986 +1998-12-01,"Commercial Consumption","California","CA",31538 +1998-12-01,"Commercial Consumption","Alabama","AL",2414 +1998-12-01,"Commercial Consumption","South Carolina","SC",1926 +1998-12-01,"Commercial Consumption","North Dakota","ND",1362 +1998-12-01,"Commercial Consumption","North Carolina","NC",3847 +1998-12-01,"Commercial Consumption","Maine","ME",337 +1998-12-01,"Commercial Consumption","Florida","FL",3320 +1998-12-01,"Commercial Consumption","West Virginia","WV",2963 +1998-12-01,"Commercial Consumption","Colorado","CO",7432 +1998-12-01,"Commercial Consumption","New Hampshire","NH",810 +1998-12-01,"Commercial Consumption","Georgia","GA",5531 +1998-12-01,"Commercial Consumption","Iowa","IA",6006 +1998-12-01,"Commercial Consumption","Minnesota","MN",12652 +1998-12-01,"Commercial Consumption","Wisconsin","WI",11803 +1998-12-01,"Commercial Consumption","South Dakota","SD",1305 +1998-12-01,"Commercial Consumption","Kentucky","KY",4714 +1998-12-01,"Commercial Consumption","Texas","TX",19965 +1998-12-01,"Commercial Consumption","Kansas","KS",4591 +1998-12-01,"Commercial Consumption","Rhode Island","RI",1338 +1998-12-01,"Commercial Consumption","Illinois","IL",24727 +1998-12-01,"Commercial Consumption","New Mexico","NM",4125 +1998-12-01,"Commercial Consumption","Oklahoma","OK",5463 +1998-12-01,"Commercial Consumption","Pennsylvania","PA",16940 +1998-12-01,"Commercial Consumption","New Jersey","NJ",18767 +1998-12-01,"Commercial Consumption","Montana","MT",1925 +1998-12-01,"Commercial Consumption","Maryland","MD",6433 +1998-12-01,"Commercial Consumption","Mississippi","MS",2075 +1998-12-01,"Commercial Consumption","Delaware","DE",629 +1998-12-01,"Commercial Consumption","Wyoming","WY",1822 +1998-12-01,"Commercial Consumption","Washington","WA",5595 +1998-12-01,"Commercial Consumption","Utah","UT",4934 +1998-12-01,"Commercial Consumption","Massachusetts","MA",6635 +1998-12-01,"Commercial Consumption","Vermont","VT",401 +1998-12-01,"Commercial Consumption","Hawaii","HI",151 +1998-12-01,"Commercial Consumption","Alaska","AK",3372 +1998-12-01,"Commercial Consumption","Nebraska","NE",3934 +1998-12-01,"Commercial Consumption","Tennessee","TN",5924 +1998-12-01,"Commercial Consumption","Nevada","NV",2565 +1998-12-01,"Commercial Consumption","Indiana","IN",9557 +1998-12-01,"Commercial Consumption","District of Columbia","DC",1480 +1998-12-01,"Commercial Consumption","Virginia","VA",7186 +1998-12-01,"Commercial Consumption","Arkansas","AR",3169 +1998-12-01,"Commercial Consumption","New York","NY",34796 +1998-12-01,"Commercial Consumption","Louisiana","LA",2224 +1998-12-01,"Commercial Consumption","Oregon","OR",3619 +1998-12-01,"Commercial Consumption","Missouri","MO",7177 +1998-12-01,"Commercial Consumption","Ohio","OH",21929 +1998-12-01,"Commercial Consumption","Idaho","ID",1640 +1998-12-01,"Commercial Consumption","Arizona","AZ",3388 +1998-12-01,"Commercial Consumption","Michigan","MI",20671 +1998-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97338 +1998-12-01,"Residential Consumption","Ohio","OH",43384 +1998-12-01,"Residential Consumption","Mississippi","MS",2556 +1998-12-01,"Residential Consumption","District of Columbia","DC",1563 +1998-12-01,"Residential Consumption","North Dakota","ND",1427 +1998-12-01,"Residential Consumption","Washington","WA",7989 +1998-12-01,"Residential Consumption","Iowa","IA",10514 +1998-12-01,"Residential Consumption","Utah","UT",9846 +1998-12-01,"Residential Consumption","Nebraska","NE",4230 +1998-12-01,"Residential Consumption","Kentucky","KY",9289 +1998-12-01,"Residential Consumption","Missouri","MO",13873 +1998-12-01,"Residential Consumption","Arizona","AZ",4666 +1998-12-01,"Residential Consumption","Alaska","AK",2183 +1998-12-01,"Residential Consumption","Wyoming","WY",1636 +1998-12-01,"Residential Consumption","Louisiana","LA",4987 +1998-12-01,"Residential Consumption","Vermont","VT",289 +1998-12-01,"Residential Consumption","Tennessee","TN",8043 +1998-12-01,"Residential Consumption","Pennsylvania","PA",29772 +1998-12-01,"Residential Consumption","Indiana","IN",20031 +1998-12-01,"Residential Consumption","West Virginia","WV",3974 +1998-12-01,"Residential Consumption","Maryland","MD",9224 +1998-12-01,"Residential Consumption","Texas","TX",28302 +1998-12-01,"Residential Consumption","South Carolina","SC",2818 +1998-12-01,"Residential Consumption","Hawaii","HI",44 +1998-12-01,"Residential Consumption","Wisconsin","WI",18710 +1998-12-01,"Residential Consumption","Michigan","MI",42328 +1998-12-01,"Residential Consumption","Minnesota","MN",18639 +1998-12-01,"Residential Consumption","Florida","FL",1127 +1998-12-01,"Residential Consumption","Massachusetts","MA",12366 +1998-12-01,"Residential Consumption","Montana","MT",2931 +1998-12-01,"Residential Consumption","Rhode Island","RI",1883 +1998-12-01,"Residential Consumption","Virginia","VA",9067 +1998-12-01,"Residential Consumption","Oklahoma","OK",7513 +1998-12-01,"Residential Consumption","Alabama","AL",4447 +1998-12-01,"Residential Consumption","U.S.","U.S.",615913 +1998-12-01,"Residential Consumption","New York","NY",41937 +1998-12-01,"Residential Consumption","Illinois","IL",63990 +1998-12-01,"Residential Consumption","Oregon","OR",5555 +1998-12-01,"Residential Consumption","North Carolina","NC",5735 +1998-12-01,"Residential Consumption","South Dakota","SD",1669 +1998-12-01,"Residential Consumption","Nevada","NV",4335 +1998-12-01,"Residential Consumption","Arkansas","AR",4550 +1998-12-01,"Residential Consumption","New Jersey","NJ",25091 +1998-12-01,"Residential Consumption","Colorado","CO",14812 +1998-12-01,"Residential Consumption","California","CA",68831 +1998-12-01,"Residential Consumption","Connecticut","CT",4442 +1998-12-01,"Residential Consumption","Georgia","GA",15049 +1998-12-01,"Residential Consumption","New Mexico","NM",7299 +1998-12-01,"Residential Consumption","Maine","ME",132 +1998-12-01,"Residential Consumption","Idaho","ID",2438 +1998-12-01,"Residential Consumption","New Hampshire","NH",739 +1998-12-01,"Residential Consumption","Kansas","KS",8767 +1998-12-01,"Residential Consumption","Delaware","DE",895 +1998-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",793 +1999-01-01,"Commercial Consumption","Washington","WA",8109 +1999-01-01,"Commercial Consumption","Oregon","OR",4571 +1999-01-01,"Commercial Consumption","Montana","MT",2094 +1999-01-01,"Commercial Consumption","Maine","ME",454 +1999-01-01,"Commercial Consumption","Maryland","MD",8688 +1999-01-01,"Commercial Consumption","Iowa","IA",8909 +1999-01-01,"Commercial Consumption","Alabama","AL",4044 +1999-01-01,"Commercial Consumption","New Jersey","NJ",27940 +1999-01-01,"Commercial Consumption","Connecticut","CT",6620 +1999-01-01,"Commercial Consumption","Louisiana","LA",3726 +1999-01-01,"Commercial Consumption","West Virginia","WV",4038 +1999-01-01,"Commercial Consumption","North Carolina","NC",6259 +1999-01-01,"Commercial Consumption","Minnesota","MN",16281 +1999-01-01,"Commercial Consumption","Oklahoma","OK",7942 +1999-01-01,"Commercial Consumption","Virginia","VA",9383 +1999-01-01,"Commercial Consumption","New Hampshire","NH",1312 +1999-01-01,"Commercial Consumption","U.S.","U.S.",475945 +1999-01-01,"Commercial Consumption","Kansas","KS",7763 +1999-01-01,"Commercial Consumption","Rhode Island","RI",1888 +1999-01-01,"Commercial Consumption","Hawaii","HI",153 +1999-01-01,"Commercial Consumption","Colorado","CO",10001 +1999-01-01,"Commercial Consumption","Florida","FL",3994 +1999-01-01,"Commercial Consumption","California","CA",30085 +1999-01-01,"Commercial Consumption","Michigan","MI",31374 +1999-01-01,"Commercial Consumption","Wyoming","WY",1483 +1999-01-01,"Commercial Consumption","Texas","TX",19987 +1999-01-01,"Commercial Consumption","Idaho","ID",2067 +1999-01-01,"Commercial Consumption","Alaska","AK",3517 +1999-01-01,"Commercial Consumption","Nebraska","NE",5817 +1999-01-01,"Commercial Consumption","Arizona","AZ",3873 +1999-01-01,"Commercial Consumption","Massachusetts","MA",6013 +1999-01-01,"Commercial Consumption","Wisconsin","WI",15606 +1999-01-01,"Commercial Consumption","Kentucky","KY",6549 +1999-01-01,"Commercial Consumption","New York","NY",42261 +1999-01-01,"Commercial Consumption","Nevada","NV",2916 +1999-01-01,"Commercial Consumption","South Carolina","SC",2955 +1999-01-01,"Commercial Consumption","New Mexico","NM",3737 +1999-01-01,"Commercial Consumption","South Dakota","SD",1869 +1999-01-01,"Commercial Consumption","Georgia","GA",7807 +1999-01-01,"Commercial Consumption","Delaware","DE",1040 +1999-01-01,"Commercial Consumption","Indiana","IN",14686 +1999-01-01,"Commercial Consumption","North Dakota","ND",2038 +1999-01-01,"Commercial Consumption","Utah","UT",4557 +1999-01-01,"Commercial Consumption","Pennsylvania","PA",22433 +1999-01-01,"Commercial Consumption","Missouri","MO",12432 +1999-01-01,"Commercial Consumption","Vermont","VT",443 +1999-01-01,"Commercial Consumption","Ohio","OH",28716 +1999-01-01,"Commercial Consumption","Arkansas","AR",5531 +1999-01-01,"Commercial Consumption","Mississippi","MS",3294 +1999-01-01,"Commercial Consumption","Tennessee","TN",10471 +1999-01-01,"Commercial Consumption","Illinois","IL",35733 +1999-01-01,"Commercial Consumption","District of Columbia","DC",2488 +1999-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93156 +1999-01-01,"Residential Consumption","Texas","TX",41853 +1999-01-01,"Residential Consumption","New Mexico","NM",6485 +1999-01-01,"Residential Consumption","Alaska","AK",2668 +1999-01-01,"Residential Consumption","Rhode Island","RI",3083 +1999-01-01,"Residential Consumption","Oregon","OR",6435 +1999-01-01,"Residential Consumption","Louisiana","LA",9279 +1999-01-01,"Residential Consumption","Nevada","NV",4935 +1999-01-01,"Residential Consumption","Arkansas","AR",9044 +1999-01-01,"Residential Consumption","New Jersey","NJ",40333 +1999-01-01,"Residential Consumption","Oklahoma","OK",14975 +1999-01-01,"Residential Consumption","Missouri","MO",26223 +1999-01-01,"Residential Consumption","Alabama","AL",9018 +1999-01-01,"Residential Consumption","Tennessee","TN",14847 +1999-01-01,"Residential Consumption","Maine","ME",165 +1999-01-01,"Residential Consumption","Kansas","KS",15785 +1999-01-01,"Residential Consumption","Washington","WA",12151 +1999-01-01,"Residential Consumption","West Virginia","WV",6202 +1999-01-01,"Residential Consumption","Wisconsin","WI",26866 +1999-01-01,"Residential Consumption","Nebraska","NE",8622 +1999-01-01,"Residential Consumption","Idaho","ID",3097 +1999-01-01,"Residential Consumption","Montana","MT",3458 +1999-01-01,"Residential Consumption","South Carolina","SC",5679 +1999-01-01,"Residential Consumption","Connecticut","CT",7147 +1999-01-01,"Residential Consumption","Virginia","VA",13127 +1999-01-01,"Residential Consumption","Michigan","MI",69010 +1999-01-01,"Residential Consumption","California","CA",88358 +1999-01-01,"Residential Consumption","Wyoming","WY",1982 +1999-01-01,"Residential Consumption","Hawaii","HI",49 +1999-01-01,"Residential Consumption","Minnesota","MN",25407 +1999-01-01,"Residential Consumption","Georgia","GA",18834 +1999-01-01,"Residential Consumption","Pennsylvania","PA",46069 +1999-01-01,"Residential Consumption","Massachusetts","MA",9396 +1999-01-01,"Residential Consumption","North Carolina","NC",11181 +1999-01-01,"Residential Consumption","Mississippi","MS",5727 +1999-01-01,"Residential Consumption","Iowa","IA",16156 +1999-01-01,"Residential Consumption","Utah","UT",8220 +1999-01-01,"Residential Consumption","Maryland","MD",14731 +1999-01-01,"Residential Consumption","District of Columbia","DC",2916 +1999-01-01,"Residential Consumption","Indiana","IN",32894 +1999-01-01,"Residential Consumption","New Hampshire","NH",1246 +1999-01-01,"Residential Consumption","Kentucky","KY",11542 +1999-01-01,"Residential Consumption","New York","NY",66611 +1999-01-01,"Residential Consumption","Ohio","OH",59224 +1999-01-01,"Residential Consumption","Vermont","VT",493 +1999-01-01,"Residential Consumption","South Dakota","SD",2516 +1999-01-01,"Residential Consumption","Florida","FL",2110 +1999-01-01,"Residential Consumption","North Dakota","ND",2285 +1999-01-01,"Residential Consumption","Colorado","CO",20903 +1999-01-01,"Residential Consumption","Delaware","DE",1562 +1999-01-01,"Residential Consumption","Arizona","AZ",6382 +1999-01-01,"Residential Consumption","U.S.","U.S.",911162 +1999-01-01,"Residential Consumption","Illinois","IL",93882 +1999-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",987 +1999-02-01,"Commercial Consumption","Oregon","OR",3912 +1999-02-01,"Commercial Consumption","Oklahoma","OK",5744 +1999-02-01,"Commercial Consumption","Pennsylvania","PA",20095 +1999-02-01,"Commercial Consumption","Montana","MT",1541 +1999-02-01,"Commercial Consumption","Alaska","AK",3275 +1999-02-01,"Commercial Consumption","Alabama","AL",3104 +1999-02-01,"Commercial Consumption","District of Columbia","DC",2553 +1999-02-01,"Commercial Consumption","Wyoming","WY",1218 +1999-02-01,"Commercial Consumption","South Carolina","SC",2258 +1999-02-01,"Commercial Consumption","North Carolina","NC",4724 +1999-02-01,"Commercial Consumption","Colorado","CO",7795 +1999-02-01,"Commercial Consumption","Utah","UT",4177 +1999-02-01,"Commercial Consumption","Virginia","VA",8327 +1999-02-01,"Commercial Consumption","Florida","FL",3808 +1999-02-01,"Commercial Consumption","Iowa","IA",6169 +1999-02-01,"Commercial Consumption","Tennessee","TN",6527 +1999-02-01,"Commercial Consumption","North Dakota","ND",1433 +1999-02-01,"Commercial Consumption","New Jersey","NJ",24936 +1999-02-01,"Commercial Consumption","Maine","ME",341 +1999-02-01,"Commercial Consumption","Kansas","KS",5446 +1999-02-01,"Commercial Consumption","Vermont","VT",308 +1999-02-01,"Commercial Consumption","Ohio","OH",26667 +1999-02-01,"Commercial Consumption","Hawaii","HI",158 +1999-02-01,"Commercial Consumption","Wisconsin","WI",11107 +1999-02-01,"Commercial Consumption","South Dakota","SD",1341 +1999-02-01,"Commercial Consumption","New Hampshire","NH",1070 +1999-02-01,"Commercial Consumption","Rhode Island","RI",1682 +1999-02-01,"Commercial Consumption","Connecticut","CT",6051 +1999-02-01,"Commercial Consumption","New York","NY",39821 +1999-02-01,"Commercial Consumption","Mississippi","MS",2251 +1999-02-01,"Commercial Consumption","Illinois","IL",26362 +1999-02-01,"Commercial Consumption","Minnesota","MN",12553 +1999-02-01,"Commercial Consumption","Arkansas","AR",3515 +1999-02-01,"Commercial Consumption","Arizona","AZ",3583 +1999-02-01,"Commercial Consumption","Indiana","IN",10869 +1999-02-01,"Commercial Consumption","Texas","TX",21433 +1999-02-01,"Commercial Consumption","Georgia","GA",6334 +1999-02-01,"Commercial Consumption","Nebraska","NE",4265 +1999-02-01,"Commercial Consumption","Nevada","NV",2501 +1999-02-01,"Commercial Consumption","West Virginia","WV",3457 +1999-02-01,"Commercial Consumption","New Mexico","NM",3389 +1999-02-01,"Commercial Consumption","Kentucky","KY",5011 +1999-02-01,"Commercial Consumption","U.S.","U.S.",400207 +1999-02-01,"Commercial Consumption","California","CA",25915 +1999-02-01,"Commercial Consumption","Delaware","DE",957 +1999-02-01,"Commercial Consumption","Washington","WA",6701 +1999-02-01,"Commercial Consumption","Missouri","MO",9629 +1999-02-01,"Commercial Consumption","Massachusetts","MA",7931 +1999-02-01,"Commercial Consumption","Maryland","MD",7678 +1999-02-01,"Commercial Consumption","Idaho","ID",1727 +1999-02-01,"Commercial Consumption","Michigan","MI",25759 +1999-02-01,"Commercial Consumption","Louisiana","LA",2801 +1999-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",83973 +1999-02-01,"Residential Consumption","South Carolina","SC",3583 +1999-02-01,"Residential Consumption","Ohio","OH",49192 +1999-02-01,"Residential Consumption","Nebraska","NE",5991 +1999-02-01,"Residential Consumption","Michigan","MI",52327 +1999-02-01,"Residential Consumption","Maryland","MD",11037 +1999-02-01,"Residential Consumption","District of Columbia","DC",2311 +1999-02-01,"Residential Consumption","Missouri","MO",17979 +1999-02-01,"Residential Consumption","Alabama","AL",6161 +1999-02-01,"Residential Consumption","Wyoming","WY",1708 +1999-02-01,"Residential Consumption","New York","NY",57425 +1999-02-01,"Residential Consumption","Hawaii","HI",48 +1999-02-01,"Residential Consumption","Oklahoma","OK",9456 +1999-02-01,"Residential Consumption","U.S.","U.S.",689687 +1999-02-01,"Residential Consumption","Connecticut","CT",6119 +1999-02-01,"Residential Consumption","Florida","FL",1522 +1999-02-01,"Residential Consumption","Idaho","ID",2640 +1999-02-01,"Residential Consumption","Kansas","KS",10828 +1999-02-01,"Residential Consumption","California","CA",77994 +1999-02-01,"Residential Consumption","Illinois","IL",61494 +1999-02-01,"Residential Consumption","Mississippi","MS",3162 +1999-02-01,"Residential Consumption","Louisiana","LA",6197 +1999-02-01,"Residential Consumption","Wisconsin","WI",16977 +1999-02-01,"Residential Consumption","Tennessee","TN",8993 +1999-02-01,"Residential Consumption","North Dakota","ND",1538 +1999-02-01,"Residential Consumption","Arkansas","AR",5257 +1999-02-01,"Residential Consumption","Iowa","IA",10639 +1999-02-01,"Residential Consumption","South Dakota","SD",1719 +1999-02-01,"Residential Consumption","Nevada","NV",4309 +1999-02-01,"Residential Consumption","Minnesota","MN",17084 +1999-02-01,"Residential Consumption","Maine","ME",133 +1999-02-01,"Residential Consumption","Arizona","AZ",5465 +1999-02-01,"Residential Consumption","North Carolina","NC",7462 +1999-02-01,"Residential Consumption","Utah","UT",7725 +1999-02-01,"Residential Consumption","Pennsylvania","PA",36823 +1999-02-01,"Residential Consumption","Indiana","IN",22341 +1999-02-01,"Residential Consumption","New Jersey","NJ",33726 +1999-02-01,"Residential Consumption","Washington","WA",9992 +1999-02-01,"Residential Consumption","Delaware","DE",1472 +1999-02-01,"Residential Consumption","Alaska","AK",2223 +1999-02-01,"Residential Consumption","Rhode Island","RI",2662 +1999-02-01,"Residential Consumption","Oregon","OR",5873 +1999-02-01,"Residential Consumption","Vermont","VT",384 +1999-02-01,"Residential Consumption","Virginia","VA",11294 +1999-02-01,"Residential Consumption","Massachusetts","MA",13197 +1999-02-01,"Residential Consumption","New Hampshire","NH",1036 +1999-02-01,"Residential Consumption","Montana","MT",2495 +1999-02-01,"Residential Consumption","Kentucky","KY",8713 +1999-02-01,"Residential Consumption","West Virginia","WV",4957 +1999-02-01,"Residential Consumption","Texas","TX",23810 +1999-02-01,"Residential Consumption","Georgia","GA",14967 +1999-02-01,"Residential Consumption","New Mexico","NM",4070 +1999-02-01,"Residential Consumption","Colorado","CO",15178 +1999-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",892 +1999-03-01,"Commercial Consumption","Minnesota","MN",11068 +1999-03-01,"Commercial Consumption","Virginia","VA",7842 +1999-03-01,"Commercial Consumption","Pennsylvania","PA",20315 +1999-03-01,"Commercial Consumption","New Jersey","NJ",23610 +1999-03-01,"Commercial Consumption","Iowa","IA",6211 +1999-03-01,"Commercial Consumption","Connecticut","CT",5843 +1999-03-01,"Commercial Consumption","New York","NY",42746 +1999-03-01,"Commercial Consumption","Delaware","DE",1015 +1999-03-01,"Commercial Consumption","Indiana","IN",10099 +1999-03-01,"Commercial Consumption","Louisiana","LA",2545 +1999-03-01,"Commercial Consumption","Illinois","IL",24683 +1999-03-01,"Commercial Consumption","North Carolina","NC",5456 +1999-03-01,"Commercial Consumption","Colorado","CO",6730 +1999-03-01,"Commercial Consumption","New Hampshire","NH",1026 +1999-03-01,"Commercial Consumption","Florida","FL",4027 +1999-03-01,"Commercial Consumption","Vermont","VT",320 +1999-03-01,"Commercial Consumption","Ohio","OH",24157 +1999-03-01,"Commercial Consumption","Mississippi","MS",2243 +1999-03-01,"Commercial Consumption","Utah","UT",3053 +1999-03-01,"Commercial Consumption","South Dakota","SD",1147 +1999-03-01,"Commercial Consumption","Maryland","MD",7857 +1999-03-01,"Commercial Consumption","California","CA",27245 +1999-03-01,"Commercial Consumption","Tennessee","TN",6598 +1999-03-01,"Commercial Consumption","South Carolina","SC",2549 +1999-03-01,"Commercial Consumption","New Mexico","NM",3253 +1999-03-01,"Commercial Consumption","Oklahoma","OK",4673 +1999-03-01,"Commercial Consumption","Massachusetts","MA",9984 +1999-03-01,"Commercial Consumption","Texas","TX",19281 +1999-03-01,"Commercial Consumption","Idaho","ID",1526 +1999-03-01,"Commercial Consumption","Arizona","AZ",3170 +1999-03-01,"Commercial Consumption","North Dakota","ND",1222 +1999-03-01,"Commercial Consumption","Oregon","OR",3480 +1999-03-01,"Commercial Consumption","Missouri","MO",8471 +1999-03-01,"Commercial Consumption","Wisconsin","WI",10699 +1999-03-01,"Commercial Consumption","Georgia","GA",6102 +1999-03-01,"Commercial Consumption","Michigan","MI",26308 +1999-03-01,"Commercial Consumption","Montana","MT",1307 +1999-03-01,"Commercial Consumption","U.S.","U.S.",388912 +1999-03-01,"Commercial Consumption","Hawaii","HI",142 +1999-03-01,"Commercial Consumption","Wyoming","WY",1148 +1999-03-01,"Commercial Consumption","West Virginia","WV",3667 +1999-03-01,"Commercial Consumption","Washington","WA",5957 +1999-03-01,"Commercial Consumption","Kentucky","KY",5181 +1999-03-01,"Commercial Consumption","Kansas","KS",4864 +1999-03-01,"Commercial Consumption","Alaska","AK",3197 +1999-03-01,"Commercial Consumption","Nebraska","NE",3504 +1999-03-01,"Commercial Consumption","Maine","ME",357 +1999-03-01,"Commercial Consumption","Rhode Island","RI",1727 +1999-03-01,"Commercial Consumption","Arkansas","AR",3398 +1999-03-01,"Commercial Consumption","Alabama","AL",3187 +1999-03-01,"Commercial Consumption","Nevada","NV",2389 +1999-03-01,"Commercial Consumption","District of Columbia","DC",2337 +1999-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92958 +1999-03-01,"Residential Consumption","Vermont","VT",374 +1999-03-01,"Residential Consumption","District of Columbia","DC",2326 +1999-03-01,"Residential Consumption","Pennsylvania","PA",37573 +1999-03-01,"Residential Consumption","New Hampshire","NH",991 +1999-03-01,"Residential Consumption","West Virginia","WV",5443 +1999-03-01,"Residential Consumption","U.S.","U.S.",669270 +1999-03-01,"Residential Consumption","New York","NY",56954 +1999-03-01,"Residential Consumption","Rhode Island","RI",2704 +1999-03-01,"Residential Consumption","Wisconsin","WI",16389 +1999-03-01,"Residential Consumption","Michigan","MI",54085 +1999-03-01,"Residential Consumption","Minnesota","MN",15312 +1999-03-01,"Residential Consumption","California","CA",67420 +1999-03-01,"Residential Consumption","Ohio","OH",51346 +1999-03-01,"Residential Consumption","Tennessee","TN",9699 +1999-03-01,"Residential Consumption","Virginia","VA",11382 +1999-03-01,"Residential Consumption","Idaho","ID",2263 +1999-03-01,"Residential Consumption","Arkansas","AR",5154 +1999-03-01,"Residential Consumption","Kentucky","KY",9196 +1999-03-01,"Residential Consumption","Oklahoma","OK",8408 +1999-03-01,"Residential Consumption","Alabama","AL",6393 +1999-03-01,"Residential Consumption","Oregon","OR",5125 +1999-03-01,"Residential Consumption","Maine","ME",131 +1999-03-01,"Residential Consumption","New Jersey","NJ",32578 +1999-03-01,"Residential Consumption","Montana","MT",2114 +1999-03-01,"Residential Consumption","Connecticut","CT",5814 +1999-03-01,"Residential Consumption","Nevada","NV",3331 +1999-03-01,"Residential Consumption","New Mexico","NM",4413 +1999-03-01,"Residential Consumption","Massachusetts","MA",17960 +1999-03-01,"Residential Consumption","Washington","WA",8964 +1999-03-01,"Residential Consumption","Delaware","DE",1577 +1999-03-01,"Residential Consumption","Louisiana","LA",5547 +1999-03-01,"Residential Consumption","Nebraska","NE",5753 +1999-03-01,"Residential Consumption","Maryland","MD",11346 +1999-03-01,"Residential Consumption","Texas","TX",19955 +1999-03-01,"Residential Consumption","South Carolina","SC",4369 +1999-03-01,"Residential Consumption","North Carolina","NC",9427 +1999-03-01,"Residential Consumption","Mississippi","MS",3458 +1999-03-01,"Residential Consumption","Hawaii","HI",44 +1999-03-01,"Residential Consumption","South Dakota","SD",1486 +1999-03-01,"Residential Consumption","Georgia","GA",12351 +1999-03-01,"Residential Consumption","Indiana","IN",23341 +1999-03-01,"Residential Consumption","Florida","FL",1674 +1999-03-01,"Residential Consumption","North Dakota","ND",1292 +1999-03-01,"Residential Consumption","Kansas","KS",9832 +1999-03-01,"Residential Consumption","Arizona","AZ",3735 +1999-03-01,"Residential Consumption","Alaska","AK",2075 +1999-03-01,"Residential Consumption","Wyoming","WY",1346 +1999-03-01,"Residential Consumption","Illinois","IL",61473 +1999-03-01,"Residential Consumption","Iowa","IA",9847 +1999-03-01,"Residential Consumption","Utah","UT",5425 +1999-03-01,"Residential Consumption","Colorado","CO",13479 +1999-03-01,"Residential Consumption","Missouri","MO",16594 +1999-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",987 +1999-04-01,"Commercial Consumption","Colorado","CO",5513 +1999-04-01,"Commercial Consumption","New Mexico","NM",2268 +1999-04-01,"Commercial Consumption","Pennsylvania","PA",12819 +1999-04-01,"Commercial Consumption","New Jersey","NJ",15095 +1999-04-01,"Commercial Consumption","Connecticut","CT",3733 +1999-04-01,"Commercial Consumption","Tennessee","TN",4361 +1999-04-01,"Commercial Consumption","Nevada","NV",1995 +1999-04-01,"Commercial Consumption","Indiana","IN",6200 +1999-04-01,"Commercial Consumption","Louisiana","LA",2160 +1999-04-01,"Commercial Consumption","Oregon","OR",2709 +1999-04-01,"Commercial Consumption","Massachusetts","MA",9484 +1999-04-01,"Commercial Consumption","South Dakota","SD",913 +1999-04-01,"Commercial Consumption","New Hampshire","NH",658 +1999-04-01,"Commercial Consumption","Alabama","AL",2154 +1999-04-01,"Commercial Consumption","Delaware","DE",646 +1999-04-01,"Commercial Consumption","South Carolina","SC",1720 +1999-04-01,"Commercial Consumption","North Carolina","NC",3497 +1999-04-01,"Commercial Consumption","Oklahoma","OK",3862 +1999-04-01,"Commercial Consumption","Virginia","VA",5358 +1999-04-01,"Commercial Consumption","Maine","ME",199 +1999-04-01,"Commercial Consumption","Kentucky","KY",2574 +1999-04-01,"Commercial Consumption","Kansas","KS",3144 +1999-04-01,"Commercial Consumption","Florida","FL",3522 +1999-04-01,"Commercial Consumption","Vermont","VT",218 +1999-04-01,"Commercial Consumption","Rhode Island","RI",1082 +1999-04-01,"Commercial Consumption","Wyoming","WY",999 +1999-04-01,"Commercial Consumption","Washington","WA",4751 +1999-04-01,"Commercial Consumption","Utah","UT",2905 +1999-04-01,"Commercial Consumption","Missouri","MO",5187 +1999-04-01,"Commercial Consumption","Montana","MT",1152 +1999-04-01,"Commercial Consumption","Georgia","GA",3185 +1999-04-01,"Commercial Consumption","Ohio","OH",15161 +1999-04-01,"Commercial Consumption","Arkansas","AR",2514 +1999-04-01,"Commercial Consumption","Arizona","AZ",2994 +1999-04-01,"Commercial Consumption","Wisconsin","WI",6373 +1999-04-01,"Commercial Consumption","U.S.","U.S.",259432 +1999-04-01,"Commercial Consumption","California","CA",20909 +1999-04-01,"Commercial Consumption","Nebraska","NE",2320 +1999-04-01,"Commercial Consumption","Maryland","MD",5260 +1999-04-01,"Commercial Consumption","New York","NY",27116 +1999-04-01,"Commercial Consumption","District of Columbia","DC",1981 +1999-04-01,"Commercial Consumption","North Dakota","ND",886 +1999-04-01,"Commercial Consumption","Minnesota","MN",6697 +1999-04-01,"Commercial Consumption","Texas","TX",12657 +1999-04-01,"Commercial Consumption","Idaho","ID",1228 +1999-04-01,"Commercial Consumption","Iowa","IA",3779 +1999-04-01,"Commercial Consumption","Alaska","AK",1960 +1999-04-01,"Commercial Consumption","Michigan","MI",15237 +1999-04-01,"Commercial Consumption","West Virginia","WV",2284 +1999-04-01,"Commercial Consumption","Hawaii","HI",147 +1999-04-01,"Commercial Consumption","Mississippi","MS",1748 +1999-04-01,"Commercial Consumption","Illinois","IL",14117 +1999-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88809 +1999-04-01,"Residential Consumption","South Carolina","SC",2223 +1999-04-01,"Residential Consumption","Ohio","OH",26855 +1999-04-01,"Residential Consumption","Mississippi","MS",2264 +1999-04-01,"Residential Consumption","Michigan","MI",31738 +1999-04-01,"Residential Consumption","South Dakota","SD",1140 +1999-04-01,"Residential Consumption","Minnesota","MN",8559 +1999-04-01,"Residential Consumption","Florida","FL",1306 +1999-04-01,"Residential Consumption","U.S.","U.S.",420192 +1999-04-01,"Residential Consumption","Illinois","IL",31267 +1999-04-01,"Residential Consumption","Texas","TX",15422 +1999-04-01,"Residential Consumption","Rhode Island","RI",1702 +1999-04-01,"Residential Consumption","Montana","MT",1895 +1999-04-01,"Residential Consumption","New York","NY",35080 +1999-04-01,"Residential Consumption","Nebraska","NE",3750 +1999-04-01,"Residential Consumption","District of Columbia","DC",1270 +1999-04-01,"Residential Consumption","Washington","WA",6858 +1999-04-01,"Residential Consumption","Louisiana","LA",3832 +1999-04-01,"Residential Consumption","Virginia","VA",5129 +1999-04-01,"Residential Consumption","Kansas","KS",5935 +1999-04-01,"Residential Consumption","Missouri","MO",9675 +1999-04-01,"Residential Consumption","Alabama","AL",3892 +1999-04-01,"Residential Consumption","North Carolina","NC",5325 +1999-04-01,"Residential Consumption","Utah","UT",5267 +1999-04-01,"Residential Consumption","Maryland","MD",6158 +1999-04-01,"Residential Consumption","Nevada","NV",2704 +1999-04-01,"Residential Consumption","Maine","ME",76 +1999-04-01,"Residential Consumption","Alaska","AK",1315 +1999-04-01,"Residential Consumption","West Virginia","WV",2957 +1999-04-01,"Residential Consumption","Oregon","OR",3948 +1999-04-01,"Residential Consumption","Hawaii","HI",46 +1999-04-01,"Residential Consumption","Wisconsin","WI",9040 +1999-04-01,"Residential Consumption","Vermont","VT",282 +1999-04-01,"Residential Consumption","Tennessee","TN",4777 +1999-04-01,"Residential Consumption","New Mexico","NM",2419 +1999-04-01,"Residential Consumption","North Dakota","ND",965 +1999-04-01,"Residential Consumption","Arkansas","AR",3730 +1999-04-01,"Residential Consumption","Kentucky","KY",4081 +1999-04-01,"Residential Consumption","California","CA",62128 +1999-04-01,"Residential Consumption","Wyoming","WY",1254 +1999-04-01,"Residential Consumption","Connecticut","CT",3644 +1999-04-01,"Residential Consumption","Georgia","GA",5469 +1999-04-01,"Residential Consumption","Pennsylvania","PA",21743 +1999-04-01,"Residential Consumption","Idaho","ID",1879 +1999-04-01,"Residential Consumption","New Jersey","NJ",19343 +1999-04-01,"Residential Consumption","Colorado","CO",10614 +1999-04-01,"Residential Consumption","Iowa","IA",5533 +1999-04-01,"Residential Consumption","Indiana","IN",13205 +1999-04-01,"Residential Consumption","Massachusetts","MA",11224 +1999-04-01,"Residential Consumption","New Hampshire","NH",672 +1999-04-01,"Residential Consumption","Oklahoma","OK",6234 +1999-04-01,"Residential Consumption","Delaware","DE",991 +1999-04-01,"Residential Consumption","Arizona","AZ",3374 +1999-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",955 +1999-05-01,"Commercial Consumption","Iowa","IA",1768 +1999-05-01,"Commercial Consumption","Alaska","AK",1756 +1999-05-01,"Commercial Consumption","Connecticut","CT",3216 +1999-05-01,"Commercial Consumption","West Virginia","WV",1488 +1999-05-01,"Commercial Consumption","Utah","UT",1849 +1999-05-01,"Commercial Consumption","New Mexico","NM",2045 +1999-05-01,"Commercial Consumption","Wisconsin","WI",3157 +1999-05-01,"Commercial Consumption","Vermont","VT",135 +1999-05-01,"Commercial Consumption","Delaware","DE",355 +1999-05-01,"Commercial Consumption","Indiana","IN",3104 +1999-05-01,"Commercial Consumption","Wyoming","WY",901 +1999-05-01,"Commercial Consumption","North Carolina","NC",2167 +1999-05-01,"Commercial Consumption","Minnesota","MN",4012 +1999-05-01,"Commercial Consumption","Oklahoma","OK",2302 +1999-05-01,"Commercial Consumption","New Jersey","NJ",8462 +1999-05-01,"Commercial Consumption","Maine","ME",112 +1999-05-01,"Commercial Consumption","Michigan","MI",9355 +1999-05-01,"Commercial Consumption","Illinois","IL",8306 +1999-05-01,"Commercial Consumption","Pennsylvania","PA",6804 +1999-05-01,"Commercial Consumption","South Dakota","SD",492 +1999-05-01,"Commercial Consumption","New Hampshire","NH",381 +1999-05-01,"Commercial Consumption","Montana","MT",901 +1999-05-01,"Commercial Consumption","U.S.","U.S.",176232 +1999-05-01,"Commercial Consumption","Maryland","MD",3380 +1999-05-01,"Commercial Consumption","Idaho","ID",849 +1999-05-01,"Commercial Consumption","New York","NY",22226 +1999-05-01,"Commercial Consumption","Tennessee","TN",2508 +1999-05-01,"Commercial Consumption","Georgia","GA",2169 +1999-05-01,"Commercial Consumption","South Carolina","SC",1337 +1999-05-01,"Commercial Consumption","Kansas","KS",2061 +1999-05-01,"Commercial Consumption","Ohio","OH",7794 +1999-05-01,"Commercial Consumption","Hawaii","HI",143 +1999-05-01,"Commercial Consumption","Virginia","VA",3335 +1999-05-01,"Commercial Consumption","Missouri","MO",3214 +1999-05-01,"Commercial Consumption","Kentucky","KY",1694 +1999-05-01,"Commercial Consumption","Alabama","AL",1447 +1999-05-01,"Commercial Consumption","Nevada","NV",1721 +1999-05-01,"Commercial Consumption","Louisiana","LA",1637 +1999-05-01,"Commercial Consumption","Washington","WA",3344 +1999-05-01,"Commercial Consumption","North Dakota","ND",607 +1999-05-01,"Commercial Consumption","Colorado","CO",4910 +1999-05-01,"Commercial Consumption","Oregon","OR",2061 +1999-05-01,"Commercial Consumption","Massachusetts","MA",5215 +1999-05-01,"Commercial Consumption","Texas","TX",9739 +1999-05-01,"Commercial Consumption","Florida","FL",2967 +1999-05-01,"Commercial Consumption","Rhode Island","RI",649 +1999-05-01,"Commercial Consumption","California","CA",20081 +1999-05-01,"Commercial Consumption","Arkansas","AR",1498 +1999-05-01,"Commercial Consumption","Nebraska","NE",1617 +1999-05-01,"Commercial Consumption","Mississippi","MS",1215 +1999-05-01,"Commercial Consumption","Arizona","AZ",2495 +1999-05-01,"Commercial Consumption","District of Columbia","DC",1252 +1999-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90478 +1999-05-01,"Residential Consumption","Virginia","VA",2726 +1999-05-01,"Residential Consumption","Nebraska","NE",2361 +1999-05-01,"Residential Consumption","Michigan","MI",16163 +1999-05-01,"Residential Consumption","South Dakota","SD",629 +1999-05-01,"Residential Consumption","New Mexico","NM",1642 +1999-05-01,"Residential Consumption","Maine","ME",40 +1999-05-01,"Residential Consumption","California","CA",40605 +1999-05-01,"Residential Consumption","Arizona","AZ",2108 +1999-05-01,"Residential Consumption","West Virginia","WV",1398 +1999-05-01,"Residential Consumption","Louisiana","LA",2304 +1999-05-01,"Residential Consumption","Delaware","DE",498 +1999-05-01,"Residential Consumption","Georgia","GA",1902 +1999-05-01,"Residential Consumption","District of Columbia","DC",688 +1999-05-01,"Residential Consumption","Indiana","IN",5908 +1999-05-01,"Residential Consumption","Florida","FL",911 +1999-05-01,"Residential Consumption","Idaho","ID",1247 +1999-05-01,"Residential Consumption","New Jersey","NJ",10520 +1999-05-01,"Residential Consumption","Kentucky","KY",1792 +1999-05-01,"Residential Consumption","Alaska","AK",939 +1999-05-01,"Residential Consumption","U.S.","U.S.",234764 +1999-05-01,"Residential Consumption","South Carolina","SC",1193 +1999-05-01,"Residential Consumption","Oregon","OR",2796 +1999-05-01,"Residential Consumption","Tennessee","TN",1809 +1999-05-01,"Residential Consumption","Minnesota","MN",4966 +1999-05-01,"Residential Consumption","Montana","MT",1380 +1999-05-01,"Residential Consumption","Missouri","MO",5311 +1999-05-01,"Residential Consumption","New York","NY",18880 +1999-05-01,"Residential Consumption","Mississippi","MS",1040 +1999-05-01,"Residential Consumption","Massachusetts","MA",6524 +1999-05-01,"Residential Consumption","Kansas","KS",3420 +1999-05-01,"Residential Consumption","Illinois","IL",15872 +1999-05-01,"Residential Consumption","Texas","TX",8745 +1999-05-01,"Residential Consumption","Utah","UT",2663 +1999-05-01,"Residential Consumption","New Hampshire","NH",367 +1999-05-01,"Residential Consumption","Alabama","AL",1873 +1999-05-01,"Residential Consumption","Hawaii","HI",44 +1999-05-01,"Residential Consumption","Connecticut","CT",2004 +1999-05-01,"Residential Consumption","Wisconsin","WI",5007 +1999-05-01,"Residential Consumption","Vermont","VT",158 +1999-05-01,"Residential Consumption","Maryland","MD",3316 +1999-05-01,"Residential Consumption","Nevada","NV",1843 +1999-05-01,"Residential Consumption","Pennsylvania","PA",11281 +1999-05-01,"Residential Consumption","Oklahoma","OK",3083 +1999-05-01,"Residential Consumption","Rhode Island","RI",949 +1999-05-01,"Residential Consumption","Ohio","OH",12575 +1999-05-01,"Residential Consumption","North Carolina","NC",2597 +1999-05-01,"Residential Consumption","Iowa","IA",3078 +1999-05-01,"Residential Consumption","North Dakota","ND",615 +1999-05-01,"Residential Consumption","Arkansas","AR",1640 +1999-05-01,"Residential Consumption","Colorado","CO",9579 +1999-05-01,"Residential Consumption","Washington","WA",4654 +1999-05-01,"Residential Consumption","Wyoming","WY",1119 +1999-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",987 +1999-06-01,"Commercial Consumption","Missouri","MO",2427 +1999-06-01,"Commercial Consumption","New Hampshire","NH",221 +1999-06-01,"Commercial Consumption","Montana","MT",492 +1999-06-01,"Commercial Consumption","Maryland","MD",2713 +1999-06-01,"Commercial Consumption","Kansas","KS",1427 +1999-06-01,"Commercial Consumption","Rhode Island","RI",525 +1999-06-01,"Commercial Consumption","Ohio","OH",5468 +1999-06-01,"Commercial Consumption","Connecticut","CT",2601 +1999-06-01,"Commercial Consumption","Mississippi","MS",1054 +1999-06-01,"Commercial Consumption","Tennessee","TN",2477 +1999-06-01,"Commercial Consumption","Indiana","IN",2590 +1999-06-01,"Commercial Consumption","Oregon","OR",1467 +1999-06-01,"Commercial Consumption","Wisconsin","WI",2380 +1999-06-01,"Commercial Consumption","South Dakota","SD",437 +1999-06-01,"Commercial Consumption","Florida","FL",2799 +1999-06-01,"Commercial Consumption","Idaho","ID",518 +1999-06-01,"Commercial Consumption","Hawaii","HI",143 +1999-06-01,"Commercial Consumption","South Carolina","SC",1103 +1999-06-01,"Commercial Consumption","New Jersey","NJ",6643 +1999-06-01,"Commercial Consumption","U.S.","U.S.",143702 +1999-06-01,"Commercial Consumption","Delaware","DE",220 +1999-06-01,"Commercial Consumption","Nevada","NV",1419 +1999-06-01,"Commercial Consumption","Wyoming","WY",474 +1999-06-01,"Commercial Consumption","North Carolina","NC",1655 +1999-06-01,"Commercial Consumption","New Mexico","NM",1218 +1999-06-01,"Commercial Consumption","Virginia","VA",2642 +1999-06-01,"Commercial Consumption","Kentucky","KY",1216 +1999-06-01,"Commercial Consumption","Arkansas","AR",1267 +1999-06-01,"Commercial Consumption","West Virginia","WV",1190 +1999-06-01,"Commercial Consumption","Utah","UT",984 +1999-06-01,"Commercial Consumption","Oklahoma","OK",970 +1999-06-01,"Commercial Consumption","Pennsylvania","PA",5081 +1999-06-01,"Commercial Consumption","Georgia","GA",1549 +1999-06-01,"Commercial Consumption","Alaska","AK",1324 +1999-06-01,"Commercial Consumption","Arizona","AZ",2143 +1999-06-01,"Commercial Consumption","Michigan","MI",6485 +1999-06-01,"Commercial Consumption","Louisiana","LA",1500 +1999-06-01,"Commercial Consumption","Minnesota","MN",2690 +1999-06-01,"Commercial Consumption","Colorado","CO",2962 +1999-06-01,"Commercial Consumption","Iowa","IA",1406 +1999-06-01,"Commercial Consumption","New York","NY",22852 +1999-06-01,"Commercial Consumption","Illinois","IL",5976 +1999-06-01,"Commercial Consumption","Washington","WA",2356 +1999-06-01,"Commercial Consumption","Massachusetts","MA",5006 +1999-06-01,"Commercial Consumption","Vermont","VT",87 +1999-06-01,"Commercial Consumption","Alabama","AL",1511 +1999-06-01,"Commercial Consumption","North Dakota","ND",274 +1999-06-01,"Commercial Consumption","Maine","ME",82 +1999-06-01,"Commercial Consumption","Texas","TX",11721 +1999-06-01,"Commercial Consumption","California","CA",15884 +1999-06-01,"Commercial Consumption","Nebraska","NE",1128 +1999-06-01,"Commercial Consumption","District of Columbia","DC",943 +1999-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88321 +1999-06-01,"Residential Consumption","Oregon","OR",1661 +1999-06-01,"Residential Consumption","North Carolina","NC",1312 +1999-06-01,"Residential Consumption","South Dakota","SD",324 +1999-06-01,"Residential Consumption","Colorado","CO",4680 +1999-06-01,"Residential Consumption","Ohio","OH",7969 +1999-06-01,"Residential Consumption","Vermont","VT",77 +1999-06-01,"Residential Consumption","Pennsylvania","PA",6529 +1999-06-01,"Residential Consumption","Arkansas","AR",1030 +1999-06-01,"Residential Consumption","New Jersey","NJ",6254 +1999-06-01,"Residential Consumption","Oklahoma","OK",1925 +1999-06-01,"Residential Consumption","California","CA",32960 +1999-06-01,"Residential Consumption","West Virginia","WV",657 +1999-06-01,"Residential Consumption","Rhode Island","RI",557 +1999-06-01,"Residential Consumption","Tennessee","TN",1428 +1999-06-01,"Residential Consumption","Virginia","VA",1602 +1999-06-01,"Residential Consumption","North Dakota","ND",259 +1999-06-01,"Residential Consumption","Massachusetts","MA",4134 +1999-06-01,"Residential Consumption","Louisiana","LA",1942 +1999-06-01,"Residential Consumption","Wisconsin","WI",3265 +1999-06-01,"Residential Consumption","Washington","WA",3059 +1999-06-01,"Residential Consumption","Missouri","MO",3084 +1999-06-01,"Residential Consumption","Connecticut","CT",1249 +1999-06-01,"Residential Consumption","Georgia","GA",1677 +1999-06-01,"Residential Consumption","Kansas","KS",2065 +1999-06-01,"Residential Consumption","U.S.","U.S.",158235 +1999-06-01,"Residential Consumption","Mississippi","MS",798 +1999-06-01,"Residential Consumption","Utah","UT",1648 +1999-06-01,"Residential Consumption","Michigan","MI",10455 +1999-06-01,"Residential Consumption","Nevada","NV",1233 +1999-06-01,"Residential Consumption","New Hampshire","NH",188 +1999-06-01,"Residential Consumption","Montana","MT",645 +1999-06-01,"Residential Consumption","Delaware","DE",254 +1999-06-01,"Residential Consumption","Arizona","AZ",1354 +1999-06-01,"Residential Consumption","Alaska","AK",559 +1999-06-01,"Residential Consumption","Nebraska","NE",1186 +1999-06-01,"Residential Consumption","Maryland","MD",2182 +1999-06-01,"Residential Consumption","Minnesota","MN",3103 +1999-06-01,"Residential Consumption","District of Columbia","DC",399 +1999-06-01,"Residential Consumption","Maine","ME",26 +1999-06-01,"Residential Consumption","Kentucky","KY",1325 +1999-06-01,"Residential Consumption","Alabama","AL",1357 +1999-06-01,"Residential Consumption","New York","NY",14898 +1999-06-01,"Residential Consumption","Illinois","IL",11128 +1999-06-01,"Residential Consumption","Texas","TX",7070 +1999-06-01,"Residential Consumption","South Carolina","SC",569 +1999-06-01,"Residential Consumption","Iowa","IA",1595 +1999-06-01,"Residential Consumption","Hawaii","HI",43 +1999-06-01,"Residential Consumption","New Mexico","NM",1117 +1999-06-01,"Residential Consumption","Indiana","IN",3457 +1999-06-01,"Residential Consumption","Florida","FL",794 +1999-06-01,"Residential Consumption","Idaho","ID",647 +1999-06-01,"Residential Consumption","Wyoming","WY",506 +1999-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",955 +1999-07-01,"Commercial Consumption","West Virginia","WV",1112 +1999-07-01,"Commercial Consumption","South Carolina","SC",1120 +1999-07-01,"Commercial Consumption","Utah","UT",1085 +1999-07-01,"Commercial Consumption","Massachusetts","MA",2243 +1999-07-01,"Commercial Consumption","Alabama","AL",1499 +1999-07-01,"Commercial Consumption","Louisiana","LA",1431 +1999-07-01,"Commercial Consumption","Kentucky","KY",1012 +1999-07-01,"Commercial Consumption","Connecticut","CT",2545 +1999-07-01,"Commercial Consumption","Arizona","AZ",1875 +1999-07-01,"Commercial Consumption","Indiana","IN",1625 +1999-07-01,"Commercial Consumption","Missouri","MO",3012 +1999-07-01,"Commercial Consumption","Wisconsin","WI",2268 +1999-07-01,"Commercial Consumption","Maryland","MD",2559 +1999-07-01,"Commercial Consumption","Vermont","VT",63 +1999-07-01,"Commercial Consumption","California","CA",15701 +1999-07-01,"Commercial Consumption","Mississippi","MS",1028 +1999-07-01,"Commercial Consumption","Illinois","IL",6186 +1999-07-01,"Commercial Consumption","Wyoming","WY",338 +1999-07-01,"Commercial Consumption","Washington","WA",1965 +1999-07-01,"Commercial Consumption","Oklahoma","OK",1731 +1999-07-01,"Commercial Consumption","Pennsylvania","PA",4396 +1999-07-01,"Commercial Consumption","South Dakota","SD",313 +1999-07-01,"Commercial Consumption","Montana","MT",422 +1999-07-01,"Commercial Consumption","U.S.","U.S.",132204 +1999-07-01,"Commercial Consumption","New York","NY",22751 +1999-07-01,"Commercial Consumption","Texas","TX",9366 +1999-07-01,"Commercial Consumption","Iowa","IA",1519 +1999-07-01,"Commercial Consumption","Alaska","AK",1211 +1999-07-01,"Commercial Consumption","Tennessee","TN",2191 +1999-07-01,"Commercial Consumption","Minnesota","MN",2602 +1999-07-01,"Commercial Consumption","Oregon","OR",1132 +1999-07-01,"Commercial Consumption","Virginia","VA",2683 +1999-07-01,"Commercial Consumption","New Hampshire","NH",196 +1999-07-01,"Commercial Consumption","Kansas","KS",1628 +1999-07-01,"Commercial Consumption","Georgia","GA",1395 +1999-07-01,"Commercial Consumption","Rhode Island","RI",480 +1999-07-01,"Commercial Consumption","Ohio","OH",4642 +1999-07-01,"Commercial Consumption","Idaho","ID",423 +1999-07-01,"Commercial Consumption","Nevada","NV",1269 +1999-07-01,"Commercial Consumption","District of Columbia","DC",853 +1999-07-01,"Commercial Consumption","North Dakota","ND",268 +1999-07-01,"Commercial Consumption","North Carolina","NC",1545 +1999-07-01,"Commercial Consumption","New Jersey","NJ",6320 +1999-07-01,"Commercial Consumption","Maine","ME",77 +1999-07-01,"Commercial Consumption","Florida","FL",2286 +1999-07-01,"Commercial Consumption","Hawaii","HI",144 +1999-07-01,"Commercial Consumption","Arkansas","AR",1301 +1999-07-01,"Commercial Consumption","Nebraska","NE",1080 +1999-07-01,"Commercial Consumption","Delaware","DE",185 +1999-07-01,"Commercial Consumption","Colorado","CO",2278 +1999-07-01,"Commercial Consumption","New Mexico","NM",1063 +1999-07-01,"Commercial Consumption","Michigan","MI",5785 +1999-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90886 +1999-07-01,"Residential Consumption","Michigan","MI",6936 +1999-07-01,"Residential Consumption","Florida","FL",752 +1999-07-01,"Residential Consumption","Idaho","ID",429 +1999-07-01,"Residential Consumption","Colorado","CO",3086 +1999-07-01,"Residential Consumption","Alaska","AK",486 +1999-07-01,"Residential Consumption","Texas","TX",6286 +1999-07-01,"Residential Consumption","Oregon","OR",852 +1999-07-01,"Residential Consumption","Louisiana","LA",1792 +1999-07-01,"Residential Consumption","Utah","UT",2254 +1999-07-01,"Residential Consumption","District of Columbia","DC",369 +1999-07-01,"Residential Consumption","North Dakota","ND",225 +1999-07-01,"Residential Consumption","New Jersey","NJ",5041 +1999-07-01,"Residential Consumption","Illinois","IL",9971 +1999-07-01,"Residential Consumption","Minnesota","MN",2243 +1999-07-01,"Residential Consumption","Indiana","IN",2801 +1999-07-01,"Residential Consumption","Kentucky","KY",1165 +1999-07-01,"Residential Consumption","West Virginia","WV",527 +1999-07-01,"Residential Consumption","North Carolina","NC",1062 +1999-07-01,"Residential Consumption","Iowa","IA",1823 +1999-07-01,"Residential Consumption","Wisconsin","WI",2669 +1999-07-01,"Residential Consumption","Maine","ME",21 +1999-07-01,"Residential Consumption","Arkansas","AR",998 +1999-07-01,"Residential Consumption","California","CA",25727 +1999-07-01,"Residential Consumption","Alabama","AL",1259 +1999-07-01,"Residential Consumption","Rhode Island","RI",448 +1999-07-01,"Residential Consumption","Connecticut","CT",1066 +1999-07-01,"Residential Consumption","South Dakota","SD",274 +1999-07-01,"Residential Consumption","Montana","MT",518 +1999-07-01,"Residential Consumption","Kansas","KS",1479 +1999-07-01,"Residential Consumption","Oklahoma","OK",1659 +1999-07-01,"Residential Consumption","New York","NY",9890 +1999-07-01,"Residential Consumption","South Carolina","SC",491 +1999-07-01,"Residential Consumption","Mississippi","MS",772 +1999-07-01,"Residential Consumption","Hawaii","HI",45 +1999-07-01,"Residential Consumption","Tennessee","TN",1070 +1999-07-01,"Residential Consumption","Virginia","VA",1521 +1999-07-01,"Residential Consumption","New Hampshire","NH",152 +1999-07-01,"Residential Consumption","Missouri","MO",2552 +1999-07-01,"Residential Consumption","Delaware","DE",202 +1999-07-01,"Residential Consumption","Arizona","AZ",1065 +1999-07-01,"Residential Consumption","Wyoming","WY",292 +1999-07-01,"Residential Consumption","Maryland","MD",1905 +1999-07-01,"Residential Consumption","Nevada","NV",940 +1999-07-01,"Residential Consumption","Georgia","GA",2216 +1999-07-01,"Residential Consumption","New Mexico","NM",951 +1999-07-01,"Residential Consumption","Massachusetts","MA",3666 +1999-07-01,"Residential Consumption","Washington","WA",1958 +1999-07-01,"Residential Consumption","Ohio","OH",6618 +1999-07-01,"Residential Consumption","Vermont","VT",56 +1999-07-01,"Residential Consumption","Nebraska","NE",1008 +1999-07-01,"Residential Consumption","Pennsylvania","PA",4974 +1999-07-01,"Residential Consumption","U.S.","U.S.",126561 +1999-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",987 +1999-08-01,"Commercial Consumption","Washington","WA",1813 +1999-08-01,"Commercial Consumption","U.S.","U.S.",137009 +1999-08-01,"Commercial Consumption","Iowa","IA",1246 +1999-08-01,"Commercial Consumption","Hawaii","HI",140 +1999-08-01,"Commercial Consumption","Connecticut","CT",2453 +1999-08-01,"Commercial Consumption","Alabama","AL",1493 +1999-08-01,"Commercial Consumption","Minnesota","MN",2703 +1999-08-01,"Commercial Consumption","Oklahoma","OK",1709 +1999-08-01,"Commercial Consumption","Virginia","VA",2733 +1999-08-01,"Commercial Consumption","Texas","TX",11863 +1999-08-01,"Commercial Consumption","South Carolina","SC",1067 +1999-08-01,"Commercial Consumption","North Carolina","NC",1554 +1999-08-01,"Commercial Consumption","Massachusetts","MA",2622 +1999-08-01,"Commercial Consumption","New Hampshire","NH",204 +1999-08-01,"Commercial Consumption","Maryland","MD",2496 +1999-08-01,"Commercial Consumption","Florida","FL",2264 +1999-08-01,"Commercial Consumption","Arkansas","AR",1519 +1999-08-01,"Commercial Consumption","Delaware","DE",162 +1999-08-01,"Commercial Consumption","Arizona","AZ",1676 +1999-08-01,"Commercial Consumption","Michigan","MI",5339 +1999-08-01,"Commercial Consumption","Illinois","IL",6152 +1999-08-01,"Commercial Consumption","Colorado","CO",2304 +1999-08-01,"Commercial Consumption","Utah","UT",898 +1999-08-01,"Commercial Consumption","Wisconsin","WI",2521 +1999-08-01,"Commercial Consumption","Alaska","AK",1309 +1999-08-01,"Commercial Consumption","California","CA",18733 +1999-08-01,"Commercial Consumption","New York","NY",23324 +1999-08-01,"Commercial Consumption","Nebraska","NE",787 +1999-08-01,"Commercial Consumption","Indiana","IN",2122 +1999-08-01,"Commercial Consumption","Louisiana","LA",1496 +1999-08-01,"Commercial Consumption","West Virginia","WV",1296 +1999-08-01,"Commercial Consumption","North Dakota","ND",252 +1999-08-01,"Commercial Consumption","South Dakota","SD",267 +1999-08-01,"Commercial Consumption","Kansas","KS",1905 +1999-08-01,"Commercial Consumption","Ohio","OH",4661 +1999-08-01,"Commercial Consumption","District of Columbia","DC",843 +1999-08-01,"Commercial Consumption","Wyoming","WY",189 +1999-08-01,"Commercial Consumption","New Mexico","NM",1180 +1999-08-01,"Commercial Consumption","Missouri","MO",2034 +1999-08-01,"Commercial Consumption","Montana","MT",346 +1999-08-01,"Commercial Consumption","Rhode Island","RI",333 +1999-08-01,"Commercial Consumption","Tennessee","TN",2187 +1999-08-01,"Commercial Consumption","Nevada","NV",1267 +1999-08-01,"Commercial Consumption","Georgia","GA",1397 +1999-08-01,"Commercial Consumption","Vermont","VT",74 +1999-08-01,"Commercial Consumption","Idaho","ID",418 +1999-08-01,"Commercial Consumption","Oregon","OR",989 +1999-08-01,"Commercial Consumption","Pennsylvania","PA",4704 +1999-08-01,"Commercial Consumption","New Jersey","NJ",5648 +1999-08-01,"Commercial Consumption","Maine","ME",79 +1999-08-01,"Commercial Consumption","Kentucky","KY",1167 +1999-08-01,"Commercial Consumption","Mississippi","MS",1071 +1999-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90693 +1999-08-01,"Residential Consumption","Texas","TX",5569 +1999-08-01,"Residential Consumption","Vermont","VT",56 +1999-08-01,"Residential Consumption","Alabama","AL",1126 +1999-08-01,"Residential Consumption","New York","NY",8705 +1999-08-01,"Residential Consumption","Illinois","IL",9091 +1999-08-01,"Residential Consumption","Nebraska","NE",1120 +1999-08-01,"Residential Consumption","Florida","FL",702 +1999-08-01,"Residential Consumption","New Hampshire","NH",141 +1999-08-01,"Residential Consumption","Missouri","MO",2292 +1999-08-01,"Residential Consumption","Delaware","DE",168 +1999-08-01,"Residential Consumption","Ohio","OH",6037 +1999-08-01,"Residential Consumption","Connecticut","CT",858 +1999-08-01,"Residential Consumption","Utah","UT",1484 +1999-08-01,"Residential Consumption","Georgia","GA",2349 +1999-08-01,"Residential Consumption","Pennsylvania","PA",4817 +1999-08-01,"Residential Consumption","Arkansas","AR",951 +1999-08-01,"Residential Consumption","Colorado","CO",2750 +1999-08-01,"Residential Consumption","West Virginia","WV",505 +1999-08-01,"Residential Consumption","South Carolina","SC",448 +1999-08-01,"Residential Consumption","Mississippi","MS",705 +1999-08-01,"Residential Consumption","Louisiana","LA",1679 +1999-08-01,"Residential Consumption","Hawaii","HI",41 +1999-08-01,"Residential Consumption","New Mexico","NM",801 +1999-08-01,"Residential Consumption","Idaho","ID",360 +1999-08-01,"Residential Consumption","Iowa","IA",1231 +1999-08-01,"Residential Consumption","Michigan","MI",6458 +1999-08-01,"Residential Consumption","Nevada","NV",921 +1999-08-01,"Residential Consumption","Minnesota","MN",2522 +1999-08-01,"Residential Consumption","Kentucky","KY",1181 +1999-08-01,"Residential Consumption","Wyoming","WY",231 +1999-08-01,"Residential Consumption","Rhode Island","RI",399 +1999-08-01,"Residential Consumption","Wisconsin","WI",2815 +1999-08-01,"Residential Consumption","Virginia","VA",1407 +1999-08-01,"Residential Consumption","District of Columbia","DC",315 +1999-08-01,"Residential Consumption","Indiana","IN",2766 +1999-08-01,"Residential Consumption","Montana","MT",378 +1999-08-01,"Residential Consumption","Tennessee","TN",1167 +1999-08-01,"Residential Consumption","South Dakota","SD",224 +1999-08-01,"Residential Consumption","North Dakota","ND",191 +1999-08-01,"Residential Consumption","New Jersey","NJ",4800 +1999-08-01,"Residential Consumption","U.S.","U.S.",116231 +1999-08-01,"Residential Consumption","Oregon","OR",824 +1999-08-01,"Residential Consumption","North Carolina","NC",921 +1999-08-01,"Residential Consumption","Maryland","MD",1740 +1999-08-01,"Residential Consumption","Maine","ME",25 +1999-08-01,"Residential Consumption","Massachusetts","MA",3327 +1999-08-01,"Residential Consumption","Kansas","KS",1617 +1999-08-01,"Residential Consumption","Washington","WA",1750 +1999-08-01,"Residential Consumption","Oklahoma","OK",1445 +1999-08-01,"Residential Consumption","California","CA",23376 +1999-08-01,"Residential Consumption","Arizona","AZ",963 +1999-08-01,"Residential Consumption","Alaska","AK",481 +1999-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",987 +1999-09-01,"Commercial Consumption","New Mexico","NM",1297 +1999-09-01,"Commercial Consumption","Kansas","KS",1820 +1999-09-01,"Commercial Consumption","Georgia","GA",1367 +1999-09-01,"Commercial Consumption","Alaska","AK",1517 +1999-09-01,"Commercial Consumption","Nevada","NV",1288 +1999-09-01,"Commercial Consumption","South Carolina","SC",1148 +1999-09-01,"Commercial Consumption","New Hampshire","NH",227 +1999-09-01,"Commercial Consumption","Ohio","OH",4732 +1999-09-01,"Commercial Consumption","Hawaii","HI",144 +1999-09-01,"Commercial Consumption","Delaware","DE",183 +1999-09-01,"Commercial Consumption","Michigan","MI",6161 +1999-09-01,"Commercial Consumption","West Virginia","WV",1200 +1999-09-01,"Commercial Consumption","Oregon","OR",1096 +1999-09-01,"Commercial Consumption","Oklahoma","OK",1798 +1999-09-01,"Commercial Consumption","Montana","MT",426 +1999-09-01,"Commercial Consumption","Kentucky","KY",1190 +1999-09-01,"Commercial Consumption","Florida","FL",2420 +1999-09-01,"Commercial Consumption","Rhode Island","RI",453 +1999-09-01,"Commercial Consumption","Alabama","AL",1568 +1999-09-01,"Commercial Consumption","Wyoming","WY",351 +1999-09-01,"Commercial Consumption","Minnesota","MN",3128 +1999-09-01,"Commercial Consumption","Colorado","CO",2274 +1999-09-01,"Commercial Consumption","California","CA",15049 +1999-09-01,"Commercial Consumption","Arkansas","AR",1041 +1999-09-01,"Commercial Consumption","Nebraska","NE",1071 +1999-09-01,"Commercial Consumption","Mississippi","MS",1055 +1999-09-01,"Commercial Consumption","Illinois","IL",6918 +1999-09-01,"Commercial Consumption","Virginia","VA",2680 +1999-09-01,"Commercial Consumption","South Dakota","SD",301 +1999-09-01,"Commercial Consumption","Maine","ME",84 +1999-09-01,"Commercial Consumption","U.S.","U.S.",137366 +1999-09-01,"Commercial Consumption","Arizona","AZ",1781 +1999-09-01,"Commercial Consumption","Washington","WA",1851 +1999-09-01,"Commercial Consumption","North Dakota","ND",328 +1999-09-01,"Commercial Consumption","North Carolina","NC",1806 +1999-09-01,"Commercial Consumption","Utah","UT",1252 +1999-09-01,"Commercial Consumption","New Jersey","NJ",6507 +1999-09-01,"Commercial Consumption","Maryland","MD",2664 +1999-09-01,"Commercial Consumption","Iowa","IA",1625 +1999-09-01,"Commercial Consumption","Connecticut","CT",2555 +1999-09-01,"Commercial Consumption","Indiana","IN",2477 +1999-09-01,"Commercial Consumption","District of Columbia","DC",865 +1999-09-01,"Commercial Consumption","Pennsylvania","PA",5182 +1999-09-01,"Commercial Consumption","Missouri","MO",2367 +1999-09-01,"Commercial Consumption","Wisconsin","WI",2698 +1999-09-01,"Commercial Consumption","Texas","TX",10192 +1999-09-01,"Commercial Consumption","Vermont","VT",77 +1999-09-01,"Commercial Consumption","Idaho","ID",457 +1999-09-01,"Commercial Consumption","Tennessee","TN",2484 +1999-09-01,"Commercial Consumption","Massachusetts","MA",2443 +1999-09-01,"Commercial Consumption","New York","NY",22448 +1999-09-01,"Commercial Consumption","Louisiana","LA",1321 +1999-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87781 +1999-09-01,"Residential Consumption","South Carolina","SC",487 +1999-09-01,"Residential Consumption","Virginia","VA",1497 +1999-09-01,"Residential Consumption","Minnesota","MN",3367 +1999-09-01,"Residential Consumption","Massachusetts","MA",3789 +1999-09-01,"Residential Consumption","Kentucky","KY",1391 +1999-09-01,"Residential Consumption","Washington","WA",1953 +1999-09-01,"Residential Consumption","Oklahoma","OK",1463 +1999-09-01,"Residential Consumption","Wyoming","WY",479 +1999-09-01,"Residential Consumption","Ohio","OH",6862 +1999-09-01,"Residential Consumption","Pennsylvania","PA",5334 +1999-09-01,"Residential Consumption","North Dakota","ND",296 +1999-09-01,"Residential Consumption","Missouri","MO",2743 +1999-09-01,"Residential Consumption","U.S.","U.S.",134861 +1999-09-01,"Residential Consumption","Connecticut","CT",1067 +1999-09-01,"Residential Consumption","South Dakota","SD",300 +1999-09-01,"Residential Consumption","Colorado","CO",2978 +1999-09-01,"Residential Consumption","Rhode Island","RI",445 +1999-09-01,"Residential Consumption","Iowa","IA",1830 +1999-09-01,"Residential Consumption","Vermont","VT",58 +1999-09-01,"Residential Consumption","Nebraska","NE",799 +1999-09-01,"Residential Consumption","Michigan","MI",7868 +1999-09-01,"Residential Consumption","Georgia","GA",3794 +1999-09-01,"Residential Consumption","Florida","FL",702 +1999-09-01,"Residential Consumption","New York","NY",9962 +1999-09-01,"Residential Consumption","Illinois","IL",12552 +1999-09-01,"Residential Consumption","Louisiana","LA",1699 +1999-09-01,"Residential Consumption","Hawaii","HI",41 +1999-09-01,"Residential Consumption","Tennessee","TN",1539 +1999-09-01,"Residential Consumption","Utah","UT",2285 +1999-09-01,"Residential Consumption","New Jersey","NJ",5432 +1999-09-01,"Residential Consumption","Montana","MT",637 +1999-09-01,"Residential Consumption","West Virginia","WV",681 +1999-09-01,"Residential Consumption","Wisconsin","WI",3434 +1999-09-01,"Residential Consumption","New Mexico","NM",1024 +1999-09-01,"Residential Consumption","Indiana","IN",3238 +1999-09-01,"Residential Consumption","Alaska","AK",870 +1999-09-01,"Residential Consumption","Oregon","OR",935 +1999-09-01,"Residential Consumption","North Carolina","NC",1034 +1999-09-01,"Residential Consumption","Mississippi","MS",733 +1999-09-01,"Residential Consumption","Maine","ME",27 +1999-09-01,"Residential Consumption","Arkansas","AR",925 +1999-09-01,"Residential Consumption","New Hampshire","NH",161 +1999-09-01,"Residential Consumption","Delaware","DE",169 +1999-09-01,"Residential Consumption","California","CA",24496 +1999-09-01,"Residential Consumption","Arizona","AZ",1006 +1999-09-01,"Residential Consumption","Alabama","AL",1185 +1999-09-01,"Residential Consumption","Texas","TX",6126 +1999-09-01,"Residential Consumption","Maryland","MD",1960 +1999-09-01,"Residential Consumption","Nevada","NV",953 +1999-09-01,"Residential Consumption","District of Columbia","DC",326 +1999-09-01,"Residential Consumption","Idaho","ID",438 +1999-09-01,"Residential Consumption","Kansas","KS",1489 +1999-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",955 +1999-10-01,"Commercial Consumption","New Jersey","NJ",8601 +1999-10-01,"Commercial Consumption","Alabama","AL",1972 +1999-10-01,"Commercial Consumption","Delaware","DE",310 +1999-10-01,"Commercial Consumption","Michigan","MI",9792 +1999-10-01,"Commercial Consumption","South Carolina","SC",1229 +1999-10-01,"Commercial Consumption","Colorado","CO",3303 +1999-10-01,"Commercial Consumption","Pennsylvania","PA",8905 +1999-10-01,"Commercial Consumption","Missouri","MO",2751 +1999-10-01,"Commercial Consumption","Alaska","AK",2181 +1999-10-01,"Commercial Consumption","Connecticut","CT",2646 +1999-10-01,"Commercial Consumption","California","CA",14337 +1999-10-01,"Commercial Consumption","Massachusetts","MA",3315 +1999-10-01,"Commercial Consumption","Maine","ME",186 +1999-10-01,"Commercial Consumption","Maryland","MD",3358 +1999-10-01,"Commercial Consumption","Ohio","OH",8550 +1999-10-01,"Commercial Consumption","Hawaii","HI",144 +1999-10-01,"Commercial Consumption","Arizona","AZ",1886 +1999-10-01,"Commercial Consumption","Tennessee","TN",2925 +1999-10-01,"Commercial Consumption","Indiana","IN",3955 +1999-10-01,"Commercial Consumption","New Mexico","NM",1560 +1999-10-01,"Commercial Consumption","Oklahoma","OK",1982 +1999-10-01,"Commercial Consumption","U.S.","U.S.",180508 +1999-10-01,"Commercial Consumption","Nebraska","NE",1166 +1999-10-01,"Commercial Consumption","Illinois","IL",11929 +1999-10-01,"Commercial Consumption","District of Columbia","DC",899 +1999-10-01,"Commercial Consumption","North Carolina","NC",2074 +1999-10-01,"Commercial Consumption","Minnesota","MN",5681 +1999-10-01,"Commercial Consumption","Utah","UT",1864 +1999-10-01,"Commercial Consumption","New Hampshire","NH",403 +1999-10-01,"Commercial Consumption","Georgia","GA",2206 +1999-10-01,"Commercial Consumption","New York","NY",25595 +1999-10-01,"Commercial Consumption","West Virginia","WV",1803 +1999-10-01,"Commercial Consumption","Montana","MT",726 +1999-10-01,"Commercial Consumption","Vermont","VT",137 +1999-10-01,"Commercial Consumption","Nevada","NV",1423 +1999-10-01,"Commercial Consumption","Wyoming","WY",709 +1999-10-01,"Commercial Consumption","Virginia","VA",3632 +1999-10-01,"Commercial Consumption","Texas","TX",11172 +1999-10-01,"Commercial Consumption","Mississippi","MS",1086 +1999-10-01,"Commercial Consumption","Louisiana","LA",1524 +1999-10-01,"Commercial Consumption","Washington","WA",3239 +1999-10-01,"Commercial Consumption","North Dakota","ND",622 +1999-10-01,"Commercial Consumption","Oregon","OR",1491 +1999-10-01,"Commercial Consumption","Wisconsin","WI",5427 +1999-10-01,"Commercial Consumption","South Dakota","SD",521 +1999-10-01,"Commercial Consumption","Kentucky","KY",1872 +1999-10-01,"Commercial Consumption","Kansas","KS",1947 +1999-10-01,"Commercial Consumption","Florida","FL",2300 +1999-10-01,"Commercial Consumption","Rhode Island","RI",650 +1999-10-01,"Commercial Consumption","Idaho","ID",673 +1999-10-01,"Commercial Consumption","Iowa","IA",2576 +1999-10-01,"Commercial Consumption","Arkansas","AR",1271 +1999-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90965 +1999-10-01,"Residential Consumption","Mississippi","MS",903 +1999-10-01,"Residential Consumption","Louisiana","LA",1958 +1999-10-01,"Residential Consumption","Virginia","VA",2943 +1999-10-01,"Residential Consumption","Nevada","NV",1208 +1999-10-01,"Residential Consumption","District of Columbia","DC",484 +1999-10-01,"Residential Consumption","Montana","MT",1335 +1999-10-01,"Residential Consumption","Illinois","IL",26435 +1999-10-01,"Residential Consumption","South Carolina","SC",734 +1999-10-01,"Residential Consumption","Wisconsin","WI",7969 +1999-10-01,"Residential Consumption","Kentucky","KY",2631 +1999-10-01,"Residential Consumption","Kansas","KS",2658 +1999-10-01,"Residential Consumption","Vermont","VT",123 +1999-10-01,"Residential Consumption","Utah","UT",3567 +1999-10-01,"Residential Consumption","Massachusetts","MA",5925 +1999-10-01,"Residential Consumption","Arkansas","AR",1264 +1999-10-01,"Residential Consumption","Delaware","DE",278 +1999-10-01,"Residential Consumption","Hawaii","HI",44 +1999-10-01,"Residential Consumption","Connecticut","CT",1522 +1999-10-01,"Residential Consumption","Georgia","GA",5974 +1999-10-01,"Residential Consumption","New Mexico","NM",2280 +1999-10-01,"Residential Consumption","New York","NY",17677 +1999-10-01,"Residential Consumption","North Carolina","NC",1679 +1999-10-01,"Residential Consumption","Iowa","IA",3465 +1999-10-01,"Residential Consumption","South Dakota","SD",607 +1999-10-01,"Residential Consumption","Maine","ME",69 +1999-10-01,"Residential Consumption","Indiana","IN",7273 +1999-10-01,"Residential Consumption","North Dakota","ND",657 +1999-10-01,"Residential Consumption","U.S.","U.S.",233508 +1999-10-01,"Residential Consumption","Ohio","OH",17303 +1999-10-01,"Residential Consumption","Michigan","MI",18416 +1999-10-01,"Residential Consumption","Maryland","MD",3540 +1999-10-01,"Residential Consumption","Minnesota","MN",7112 +1999-10-01,"Residential Consumption","Missouri","MO",4174 +1999-10-01,"Residential Consumption","California","CA",25265 +1999-10-01,"Residential Consumption","Alabama","AL",1560 +1999-10-01,"Residential Consumption","Wyoming","WY",717 +1999-10-01,"Residential Consumption","Rhode Island","RI",691 +1999-10-01,"Residential Consumption","Oregon","OR",1617 +1999-10-01,"Residential Consumption","Nebraska","NE",2128 +1999-10-01,"Residential Consumption","Pennsylvania","PA",12407 +1999-10-01,"Residential Consumption","Colorado","CO",5565 +1999-10-01,"Residential Consumption","Washington","WA",4024 +1999-10-01,"Residential Consumption","Oklahoma","OK",2108 +1999-10-01,"Residential Consumption","Texas","TX",7143 +1999-10-01,"Residential Consumption","Tennessee","TN",1909 +1999-10-01,"Residential Consumption","Florida","FL",731 +1999-10-01,"Residential Consumption","Idaho","ID",869 +1999-10-01,"Residential Consumption","New Jersey","NJ",10322 +1999-10-01,"Residential Consumption","New Hampshire","NH",325 +1999-10-01,"Residential Consumption","Arizona","AZ",1165 +1999-10-01,"Residential Consumption","Alaska","AK",1423 +1999-10-01,"Residential Consumption","West Virginia","WV",1339 +1999-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",987 +1999-11-01,"Commercial Consumption","North Carolina","NC",2876 +1999-11-01,"Commercial Consumption","Minnesota","MN",7856 +1999-11-01,"Commercial Consumption","Virginia","VA",5155 +1999-11-01,"Commercial Consumption","Massachusetts","MA",4813 +1999-11-01,"Commercial Consumption","Kentucky","KY",2938 +1999-11-01,"Commercial Consumption","Vermont","VT",200 +1999-11-01,"Commercial Consumption","Connecticut","CT",3898 +1999-11-01,"Commercial Consumption","Arizona","AZ",2302 +1999-11-01,"Commercial Consumption","Nevada","NV",1791 +1999-11-01,"Commercial Consumption","West Virginia","WV",2380 +1999-11-01,"Commercial Consumption","Utah","UT",2711 +1999-11-01,"Commercial Consumption","New Hampshire","NH",614 +1999-11-01,"Commercial Consumption","Hawaii","HI",145 +1999-11-01,"Commercial Consumption","Indiana","IN",5880 +1999-11-01,"Commercial Consumption","North Dakota","ND",813 +1999-11-01,"Commercial Consumption","New York","NY",30457 +1999-11-01,"Commercial Consumption","Nebraska","NE",1798 +1999-11-01,"Commercial Consumption","Oregon","OR",2265 +1999-11-01,"Commercial Consumption","New Jersey","NJ",13873 +1999-11-01,"Commercial Consumption","Rhode Island","RI",1307 +1999-11-01,"Commercial Consumption","Idaho","ID",1025 +1999-11-01,"Commercial Consumption","Alaska","AK",2993 +1999-11-01,"Commercial Consumption","Tennessee","TN",3943 +1999-11-01,"Commercial Consumption","Washington","WA",4278 +1999-11-01,"Commercial Consumption","South Carolina","SC",1681 +1999-11-01,"Commercial Consumption","New Mexico","NM",2277 +1999-11-01,"Commercial Consumption","Oklahoma","OK",2433 +1999-11-01,"Commercial Consumption","South Dakota","SD",735 +1999-11-01,"Commercial Consumption","Mississippi","MS",1699 +1999-11-01,"Commercial Consumption","Delaware","DE",396 +1999-11-01,"Commercial Consumption","Wyoming","WY",802 +1999-11-01,"Commercial Consumption","Colorado","CO",4375 +1999-11-01,"Commercial Consumption","Montana","MT",1100 +1999-11-01,"Commercial Consumption","Kansas","KS",2395 +1999-11-01,"Commercial Consumption","Ohio","OH",14267 +1999-11-01,"Commercial Consumption","California","CA",17213 +1999-11-01,"Commercial Consumption","Michigan","MI",14639 +1999-11-01,"Commercial Consumption","District of Columbia","DC",1304 +1999-11-01,"Commercial Consumption","Missouri","MO",3894 +1999-11-01,"Commercial Consumption","Wisconsin","WI",7076 +1999-11-01,"Commercial Consumption","Florida","FL",2666 +1999-11-01,"Commercial Consumption","Iowa","IA",3276 +1999-11-01,"Commercial Consumption","Arkansas","AR",1614 +1999-11-01,"Commercial Consumption","Alabama","AL",2395 +1999-11-01,"Commercial Consumption","Illinois","IL",15089 +1999-11-01,"Commercial Consumption","Pennsylvania","PA",13319 +1999-11-01,"Commercial Consumption","Maine","ME",223 +1999-11-01,"Commercial Consumption","U.S.","U.S.",245152 +1999-11-01,"Commercial Consumption","Texas","TX",13814 +1999-11-01,"Commercial Consumption","Maryland","MD",4630 +1999-11-01,"Commercial Consumption","Georgia","GA",3754 +1999-11-01,"Commercial Consumption","Louisiana","LA",1773 +1999-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89424 +1999-11-01,"Residential Consumption","Mississippi","MS",1685 +1999-11-01,"Residential Consumption","Louisiana","LA",2935 +1999-11-01,"Residential Consumption","Vermont","VT",212 +1999-11-01,"Residential Consumption","Utah","UT",5321 +1999-11-01,"Residential Consumption","Maine","ME",93 +1999-11-01,"Residential Consumption","New Jersey","NJ",18160 +1999-11-01,"Residential Consumption","California","CA",34488 +1999-11-01,"Residential Consumption","Alaska","AK",2127 +1999-11-01,"Residential Consumption","U.S.","U.S.",371595 +1999-11-01,"Residential Consumption","Rhode Island","RI",1227 +1999-11-01,"Residential Consumption","Oregon","OR",3108 +1999-11-01,"Residential Consumption","North Carolina","NC",3942 +1999-11-01,"Residential Consumption","Pennsylvania","PA",19812 +1999-11-01,"Residential Consumption","Arkansas","AR",1216 +1999-11-01,"Residential Consumption","Kansas","KS",3997 +1999-11-01,"Residential Consumption","South Carolina","SC",2093 +1999-11-01,"Residential Consumption","Tennessee","TN",4521 +1999-11-01,"Residential Consumption","Georgia","GA",10635 +1999-11-01,"Residential Consumption","Idaho","ID",1530 +1999-11-01,"Residential Consumption","Montana","MT",1983 +1999-11-01,"Residential Consumption","Alabama","AL",3069 +1999-11-01,"Residential Consumption","West Virginia","WV",2541 +1999-11-01,"Residential Consumption","Ohio","OH",27700 +1999-11-01,"Residential Consumption","Iowa","IA",5602 +1999-11-01,"Residential Consumption","Connecticut","CT",3064 +1999-11-01,"Residential Consumption","Nevada","NV",1998 +1999-11-01,"Residential Consumption","District of Columbia","DC",1029 +1999-11-01,"Residential Consumption","Kentucky","KY",5413 +1999-11-01,"Residential Consumption","Oklahoma","OK",3185 +1999-11-01,"Residential Consumption","Wyoming","WY",903 +1999-11-01,"Residential Consumption","Wisconsin","WI",11440 +1999-11-01,"Residential Consumption","Minnesota","MN",10624 +1999-11-01,"Residential Consumption","New Mexico","NM",4083 +1999-11-01,"Residential Consumption","North Dakota","ND",869 +1999-11-01,"Residential Consumption","Massachusetts","MA",9964 +1999-11-01,"Residential Consumption","Delaware","DE",576 +1999-11-01,"Residential Consumption","New York","NY",28487 +1999-11-01,"Residential Consumption","Illinois","IL",38571 +1999-11-01,"Residential Consumption","Texas","TX",11193 +1999-11-01,"Residential Consumption","Nebraska","NE",2733 +1999-11-01,"Residential Consumption","Maryland","MD",6268 +1999-11-01,"Residential Consumption","Missouri","MO",6882 +1999-11-01,"Residential Consumption","Hawaii","HI",36 +1999-11-01,"Residential Consumption","Virginia","VA",5985 +1999-11-01,"Residential Consumption","South Dakota","SD",918 +1999-11-01,"Residential Consumption","Indiana","IN",11571 +1999-11-01,"Residential Consumption","Colorado","CO",8173 +1999-11-01,"Residential Consumption","Washington","WA",6596 +1999-11-01,"Residential Consumption","Arizona","AZ",1682 +1999-11-01,"Residential Consumption","Michigan","MI",29784 +1999-11-01,"Residential Consumption","Florida","FL",1020 +1999-11-01,"Residential Consumption","New Hampshire","NH",549 +1999-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",955 +1999-12-01,"Commercial Consumption","South Carolina","SC",2399 +1999-12-01,"Commercial Consumption","Oregon","OR",3337 +1999-12-01,"Commercial Consumption","Oklahoma","OK",4420 +1999-12-01,"Commercial Consumption","Pennsylvania","PA",19202 +1999-12-01,"Commercial Consumption","Maine","ME",353 +1999-12-01,"Commercial Consumption","Vermont","VT",247 +1999-12-01,"Commercial Consumption","Hawaii","HI",147 +1999-12-01,"Commercial Consumption","New York","NY",38589 +1999-12-01,"Commercial Consumption","Illinois","IL",27069 +1999-12-01,"Commercial Consumption","Colorado","CO",6903 +1999-12-01,"Commercial Consumption","Utah","UT",5026 +1999-12-01,"Commercial Consumption","Virginia","VA",7747 +1999-12-01,"Commercial Consumption","South Dakota","SD",1229 +1999-12-01,"Commercial Consumption","U.S.","U.S.",367989 +1999-12-01,"Commercial Consumption","Alaska","AK",3427 +1999-12-01,"Commercial Consumption","Louisiana","LA",2645 +1999-12-01,"Commercial Consumption","District of Columbia","DC",1518 +1999-12-01,"Commercial Consumption","Wyoming","WY",1224 +1999-12-01,"Commercial Consumption","West Virginia","WV",3387 +1999-12-01,"Commercial Consumption","Minnesota","MN",12790 +1999-12-01,"Commercial Consumption","New Hampshire","NH",901 +1999-12-01,"Commercial Consumption","Kentucky","KY",5395 +1999-12-01,"Commercial Consumption","Iowa","IA",6411 +1999-12-01,"Commercial Consumption","Arkansas","AR",3429 +1999-12-01,"Commercial Consumption","Mississippi","MS",2464 +1999-12-01,"Commercial Consumption","Tennessee","TN",5899 +1999-12-01,"Commercial Consumption","Washington","WA",6369 +1999-12-01,"Commercial Consumption","Kansas","KS",4553 +1999-12-01,"Commercial Consumption","Georgia","GA",6318 +1999-12-01,"Commercial Consumption","Florida","FL",3215 +1999-12-01,"Commercial Consumption","Nebraska","NE",3034 +1999-12-01,"Commercial Consumption","Arizona","AZ",3523 +1999-12-01,"Commercial Consumption","Michigan","MI",23119 +1999-12-01,"Commercial Consumption","North Dakota","ND",1280 +1999-12-01,"Commercial Consumption","Massachusetts","MA",6067 +1999-12-01,"Commercial Consumption","Wisconsin","WI",12377 +1999-12-01,"Commercial Consumption","Montana","MT",1581 +1999-12-01,"Commercial Consumption","Rhode Island","RI",1027 +1999-12-01,"Commercial Consumption","Delaware","DE",651 +1999-12-01,"Commercial Consumption","New Mexico","NM",3816 +1999-12-01,"Commercial Consumption","Texas","TX",20488 +1999-12-01,"Commercial Consumption","Ohio","OH",22759 +1999-12-01,"Commercial Consumption","Idaho","ID",1705 +1999-12-01,"Commercial Consumption","Indiana","IN",10036 +1999-12-01,"Commercial Consumption","North Carolina","NC",4405 +1999-12-01,"Commercial Consumption","Missouri","MO",7682 +1999-12-01,"Commercial Consumption","New Jersey","NJ",16126 +1999-12-01,"Commercial Consumption","Maryland","MD",6818 +1999-12-01,"Commercial Consumption","Connecticut","CT",5394 +1999-12-01,"Commercial Consumption","California","CA",23548 +1999-12-01,"Commercial Consumption","Alabama","AL",3208 +1999-12-01,"Commercial Consumption","Nevada","NV",2732 +1999-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91919 +1999-12-01,"Residential Consumption","Rhode Island","RI",1736 +1999-12-01,"Residential Consumption","Mississippi","MS",3314 +1999-12-01,"Residential Consumption","Iowa","IA",10631 +1999-12-01,"Residential Consumption","Connecticut","CT",4810 +1999-12-01,"Residential Consumption","Massachusetts","MA",16601 +1999-12-01,"Residential Consumption","Arkansas","AR",5037 +1999-12-01,"Residential Consumption","Montana","MT",2840 +1999-12-01,"Residential Consumption","Missouri","MO",14535 +1999-12-01,"Residential Consumption","Alabama","AL",5754 +1999-12-01,"Residential Consumption","West Virginia","WV",4195 +1999-12-01,"Residential Consumption","Wisconsin","WI",21737 +1999-12-01,"Residential Consumption","Vermont","VT",293 +1999-12-01,"Residential Consumption","Michigan","MI",47495 +1999-12-01,"Residential Consumption","Maryland","MD",10665 +1999-12-01,"Residential Consumption","Florida","FL",1572 +1999-12-01,"Residential Consumption","New York","NY",46142 +1999-12-01,"Residential Consumption","Virginia","VA",10575 +1999-12-01,"Residential Consumption","District of Columbia","DC",1714 +1999-12-01,"Residential Consumption","Maine","ME",151 +1999-12-01,"Residential Consumption","New Jersey","NJ",22890 +1999-12-01,"Residential Consumption","Kansas","KS",9040 +1999-12-01,"Residential Consumption","Arizona","AZ",4642 +1999-12-01,"Residential Consumption","U.S.","U.S.",659606 +1999-12-01,"Residential Consumption","Oregon","OR",5391 +1999-12-01,"Residential Consumption","Ohio","OH",46532 +1999-12-01,"Residential Consumption","North Carolina","NC",6912 +1999-12-01,"Residential Consumption","Idaho","ID",2514 +1999-12-01,"Residential Consumption","Oklahoma","OK",7670 +1999-12-01,"Residential Consumption","California","CA",65679 +1999-12-01,"Residential Consumption","Wyoming","WY",1568 +1999-12-01,"Residential Consumption","Illinois","IL",73482 +1999-12-01,"Residential Consumption","Utah","UT",9614 +1999-12-01,"Residential Consumption","Georgia","GA",18610 +1999-12-01,"Residential Consumption","Pennsylvania","PA",34106 +1999-12-01,"Residential Consumption","New Mexico","NM",6263 +1999-12-01,"Residential Consumption","Indiana","IN",22735 +1999-12-01,"Residential Consumption","North Dakota","ND",1380 +1999-12-01,"Residential Consumption","Louisiana","LA",5940 +1999-12-01,"Residential Consumption","South Dakota","SD",1628 +1999-12-01,"Residential Consumption","Nevada","NV",4396 +1999-12-01,"Residential Consumption","Minnesota","MN",18639 +1999-12-01,"Residential Consumption","New Hampshire","NH",783 +1999-12-01,"Residential Consumption","Washington","WA",9745 +1999-12-01,"Residential Consumption","Colorado","CO",14763 +1999-12-01,"Residential Consumption","Texas","TX",22736 +1999-12-01,"Residential Consumption","South Carolina","SC",3799 +1999-12-01,"Residential Consumption","Hawaii","HI",42 +1999-12-01,"Residential Consumption","Tennessee","TN",8802 +1999-12-01,"Residential Consumption","Nebraska","NE",5137 +1999-12-01,"Residential Consumption","Kentucky","KY",10790 +1999-12-01,"Residential Consumption","Delaware","DE",1116 +1999-12-01,"Residential Consumption","Alaska","AK",2466 +1999-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",987 +2000-01-01,"Commercial Consumption","Washington","WA",6952 +2000-01-01,"Commercial Consumption","Wisconsin","WI",14206 +2000-01-01,"Commercial Consumption","Vermont","VT",425 +2000-01-01,"Commercial Consumption","Rhode Island","RI",2006 +2000-01-01,"Commercial Consumption","California","CA",26495 +2000-01-01,"Commercial Consumption","Michigan","MI",31228 +2000-01-01,"Commercial Consumption","North Dakota","ND",1823 +2000-01-01,"Commercial Consumption","Florida","FL",4937 +2000-01-01,"Commercial Consumption","Alaska","AK",3592 +2000-01-01,"Commercial Consumption","Nevada","NV",3050 +2000-01-01,"Commercial Consumption","Louisiana","LA",3256 +2000-01-01,"Commercial Consumption","Wyoming","WY",1343 +2000-01-01,"Commercial Consumption","Oregon","OR",4448 +2000-01-01,"Commercial Consumption","Missouri","MO",10546 +2000-01-01,"Commercial Consumption","New Hampshire","NH",1335 +2000-01-01,"Commercial Consumption","Kentucky","KY",6707 +2000-01-01,"Commercial Consumption","Georgia","GA",9620 +2000-01-01,"Commercial Consumption","Ohio","OH",29710 +2000-01-01,"Commercial Consumption","Idaho","ID",2152 +2000-01-01,"Commercial Consumption","Hawaii","HI",153 +2000-01-01,"Commercial Consumption","Indiana","IN",15368 +2000-01-01,"Commercial Consumption","District of Columbia","DC",2353 +2000-01-01,"Commercial Consumption","Montana","MT",2145 +2000-01-01,"Commercial Consumption","Kansas","KS",6732 +2000-01-01,"Commercial Consumption","South Carolina","SC",2958 +2000-01-01,"Commercial Consumption","New Mexico","NM",3806 +2000-01-01,"Commercial Consumption","Massachusetts","MA",7625 +2000-01-01,"Commercial Consumption","South Dakota","SD",1602 +2000-01-01,"Commercial Consumption","U.S.","U.S.",451876 +2000-01-01,"Commercial Consumption","Connecticut","CT",5648 +2000-01-01,"Commercial Consumption","Arkansas","AR",4345 +2000-01-01,"Commercial Consumption","Utah","UT",4605 +2000-01-01,"Commercial Consumption","Maine","ME",522 +2000-01-01,"Commercial Consumption","Maryland","MD",8579 +2000-01-01,"Commercial Consumption","Alabama","AL",3812 +2000-01-01,"Commercial Consumption","New York","NY",29867 +2000-01-01,"Commercial Consumption","Nebraska","NE",4547 +2000-01-01,"Commercial Consumption","West Virginia","WV",3727 +2000-01-01,"Commercial Consumption","Colorado","CO",8959 +2000-01-01,"Commercial Consumption","Oklahoma","OK",5937 +2000-01-01,"Commercial Consumption","New Jersey","NJ",22916 +2000-01-01,"Commercial Consumption","Texas","TX",22722 +2000-01-01,"Commercial Consumption","Iowa","IA",8032 +2000-01-01,"Commercial Consumption","Tennessee","TN",10257 +2000-01-01,"Commercial Consumption","Illinois","IL",34670 +2000-01-01,"Commercial Consumption","North Carolina","NC",6530 +2000-01-01,"Commercial Consumption","Minnesota","MN",16792 +2000-01-01,"Commercial Consumption","Virginia","VA",9969 +2000-01-01,"Commercial Consumption","Pennsylvania","PA",24958 +2000-01-01,"Commercial Consumption","Mississippi","MS",2939 +2000-01-01,"Commercial Consumption","Delaware","DE",935 +2000-01-01,"Commercial Consumption","Arizona","AZ",4035 +2000-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97358 +2000-01-01,"Residential Consumption","Tennessee","TN",13569 +2000-01-01,"Residential Consumption","Oregon","OR",6622 +2000-01-01,"Residential Consumption","Louisiana","LA",8827 +2000-01-01,"Residential Consumption","Iowa","IA",14063 +2000-01-01,"Residential Consumption","Nevada","NV",4985 +2000-01-01,"Residential Consumption","District of Columbia","DC",2788 +2000-01-01,"Residential Consumption","Pennsylvania","PA",48338 +2000-01-01,"Residential Consumption","Arkansas","AR",7415 +2000-01-01,"Residential Consumption","Oklahoma","OK",11321 +2000-01-01,"Residential Consumption","New York","NY",65819 +2000-01-01,"Residential Consumption","North Carolina","NC",11018 +2000-01-01,"Residential Consumption","Wisconsin","WI",25349 +2000-01-01,"Residential Consumption","Vermont","VT",465 +2000-01-01,"Residential Consumption","Virginia","VA",15108 +2000-01-01,"Residential Consumption","Minnesota","MN",24500 +2000-01-01,"Residential Consumption","Georgia","GA",26533 +2000-01-01,"Residential Consumption","Florida","FL",2179 +2000-01-01,"Residential Consumption","Idaho","ID",3331 +2000-01-01,"Residential Consumption","New Hampshire","NH",1316 +2000-01-01,"Residential Consumption","California","CA",66741 +2000-01-01,"Residential Consumption","Alaska","AK",2355 +2000-01-01,"Residential Consumption","Rhode Island","RI",2857 +2000-01-01,"Residential Consumption","Utah","UT",8319 +2000-01-01,"Residential Consumption","New Mexico","NM",5161 +2000-01-01,"Residential Consumption","Massachusetts","MA",18757 +2000-01-01,"Residential Consumption","Montana","MT",3202 +2000-01-01,"Residential Consumption","Arizona","AZ",6438 +2000-01-01,"Residential Consumption","Mississippi","MS",4956 +2000-01-01,"Residential Consumption","Hawaii","HI",48 +2000-01-01,"Residential Consumption","Connecticut","CT",6891 +2000-01-01,"Residential Consumption","Indiana","IN",31010 +2000-01-01,"Residential Consumption","North Dakota","ND",1950 +2000-01-01,"Residential Consumption","Missouri","MO",21401 +2000-01-01,"Residential Consumption","Wyoming","WY",1676 +2000-01-01,"Residential Consumption","West Virginia","WV",5832 +2000-01-01,"Residential Consumption","South Carolina","SC",5559 +2000-01-01,"Residential Consumption","South Dakota","SD",2149 +2000-01-01,"Residential Consumption","Maine","ME",202 +2000-01-01,"Residential Consumption","Washington","WA",11393 +2000-01-01,"Residential Consumption","Illinois","IL",84544 +2000-01-01,"Residential Consumption","Texas","TX",33787 +2000-01-01,"Residential Consumption","Nebraska","NE",7375 +2000-01-01,"Residential Consumption","Michigan","MI",64539 +2000-01-01,"Residential Consumption","New Jersey","NJ",38111 +2000-01-01,"Residential Consumption","U.S.","U.S.",862900 +2000-01-01,"Residential Consumption","Ohio","OH",63131 +2000-01-01,"Residential Consumption","Maryland","MD",14913 +2000-01-01,"Residential Consumption","Kentucky","KY",13590 +2000-01-01,"Residential Consumption","Colorado","CO",18846 +2000-01-01,"Residential Consumption","Kansas","KS",13149 +2000-01-01,"Residential Consumption","Delaware","DE",1800 +2000-01-01,"Residential Consumption","Alabama","AL",8671 +2000-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",1080 +2000-02-01,"Commercial Consumption","South Carolina","SC",3212 +2000-02-01,"Commercial Consumption","Utah","UT",3893 +2000-02-01,"Commercial Consumption","New Mexico","NM",3220 +2000-02-01,"Commercial Consumption","Missouri","MO",10375 +2000-02-01,"Commercial Consumption","New Hampshire","NH",1314 +2000-02-01,"Commercial Consumption","Kentucky","KY",5715 +2000-02-01,"Commercial Consumption","Ohio","OH",27683 +2000-02-01,"Commercial Consumption","Colorado","CO",8106 +2000-02-01,"Commercial Consumption","Oklahoma","OK",6539 +2000-02-01,"Commercial Consumption","Idaho","ID",1772 +2000-02-01,"Commercial Consumption","Hawaii","HI",149 +2000-02-01,"Commercial Consumption","Alaska","AK",2619 +2000-02-01,"Commercial Consumption","New York","NY",33580 +2000-02-01,"Commercial Consumption","North Dakota","ND",1561 +2000-02-01,"Commercial Consumption","Minnesota","MN",12386 +2000-02-01,"Commercial Consumption","South Dakota","SD",1354 +2000-02-01,"Commercial Consumption","New Jersey","NJ",25781 +2000-02-01,"Commercial Consumption","Texas","TX",22492 +2000-02-01,"Commercial Consumption","Kansas","KS",6091 +2000-02-01,"Commercial Consumption","Rhode Island","RI",2100 +2000-02-01,"Commercial Consumption","Connecticut","CT",7008 +2000-02-01,"Commercial Consumption","Delaware","DE",867 +2000-02-01,"Commercial Consumption","Indiana","IN",13386 +2000-02-01,"Commercial Consumption","Wyoming","WY",1123 +2000-02-01,"Commercial Consumption","West Virginia","WV",3519 +2000-02-01,"Commercial Consumption","Wisconsin","WI",10434 +2000-02-01,"Commercial Consumption","Iowa","IA",6155 +2000-02-01,"Commercial Consumption","California","CA",24242 +2000-02-01,"Commercial Consumption","North Carolina","NC",7211 +2000-02-01,"Commercial Consumption","Oregon","OR",3880 +2000-02-01,"Commercial Consumption","Vermont","VT",428 +2000-02-01,"Commercial Consumption","Arkansas","AR",3910 +2000-02-01,"Commercial Consumption","Mississippi","MS",3128 +2000-02-01,"Commercial Consumption","Arizona","AZ",3593 +2000-02-01,"Commercial Consumption","Louisiana","LA",3177 +2000-02-01,"Commercial Consumption","Pennsylvania","PA",23019 +2000-02-01,"Commercial Consumption","U.S.","U.S.",420754 +2000-02-01,"Commercial Consumption","Maryland","MD",7962 +2000-02-01,"Commercial Consumption","Illinois","IL",27474 +2000-02-01,"Commercial Consumption","Massachusetts","MA",10477 +2000-02-01,"Commercial Consumption","Maine","ME",361 +2000-02-01,"Commercial Consumption","Georgia","GA",7290 +2000-02-01,"Commercial Consumption","Nebraska","NE",4099 +2000-02-01,"Commercial Consumption","Tennessee","TN",8901 +2000-02-01,"Commercial Consumption","Nevada","NV",2544 +2000-02-01,"Commercial Consumption","Michigan","MI",27474 +2000-02-01,"Commercial Consumption","Washington","WA",6562 +2000-02-01,"Commercial Consumption","Virginia","VA",9481 +2000-02-01,"Commercial Consumption","Montana","MT",1834 +2000-02-01,"Commercial Consumption","Florida","FL",4751 +2000-02-01,"Commercial Consumption","Alabama","AL",4236 +2000-02-01,"Commercial Consumption","District of Columbia","DC",2287 +2000-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89676 +2000-02-01,"Residential Consumption","Wisconsin","WI",18333 +2000-02-01,"Residential Consumption","Indiana","IN",26040 +2000-02-01,"Residential Consumption","Colorado","CO",16123 +2000-02-01,"Residential Consumption","Missouri","MO",20789 +2000-02-01,"Residential Consumption","Rhode Island","RI",3500 +2000-02-01,"Residential Consumption","Mississippi","MS",5185 +2000-02-01,"Residential Consumption","Louisiana","LA",7834 +2000-02-01,"Residential Consumption","Utah","UT",7038 +2000-02-01,"Residential Consumption","Arkansas","AR",5734 +2000-02-01,"Residential Consumption","Kentucky","KY",8233 +2000-02-01,"Residential Consumption","Kansas","KS",11829 +2000-02-01,"Residential Consumption","Washington","WA",10369 +2000-02-01,"Residential Consumption","Arizona","AZ",6328 +2000-02-01,"Residential Consumption","Maryland","MD",14599 +2000-02-01,"Residential Consumption","South Dakota","SD",1772 +2000-02-01,"Residential Consumption","District of Columbia","DC",3114 +2000-02-01,"Residential Consumption","Pennsylvania","PA",42456 +2000-02-01,"Residential Consumption","New Mexico","NM",4407 +2000-02-01,"Residential Consumption","New York","NY",66232 +2000-02-01,"Residential Consumption","Illinois","IL",64000 +2000-02-01,"Residential Consumption","Massachusetts","MA",21076 +2000-02-01,"Residential Consumption","Idaho","ID",2716 +2000-02-01,"Residential Consumption","Oklahoma","OK",11681 +2000-02-01,"Residential Consumption","Alaska","AK",1886 +2000-02-01,"Residential Consumption","Oregon","OR",5776 +2000-02-01,"Residential Consumption","Hawaii","HI",49 +2000-02-01,"Residential Consumption","Virginia","VA",14073 +2000-02-01,"Residential Consumption","Maine","ME",122 +2000-02-01,"Residential Consumption","Delaware","DE",1662 +2000-02-01,"Residential Consumption","Vermont","VT",510 +2000-02-01,"Residential Consumption","Tennessee","TN",13170 +2000-02-01,"Residential Consumption","Michigan","MI",59948 +2000-02-01,"Residential Consumption","Georgia","GA",17571 +2000-02-01,"Residential Consumption","New Jersey","NJ",37885 +2000-02-01,"Residential Consumption","Montana","MT",2801 +2000-02-01,"Residential Consumption","Alabama","AL",9716 +2000-02-01,"Residential Consumption","Wyoming","WY",1674 +2000-02-01,"Residential Consumption","U.S.","U.S.",775235 +2000-02-01,"Residential Consumption","Texas","TX",31489 +2000-02-01,"Residential Consumption","Ohio","OH",53644 +2000-02-01,"Residential Consumption","Connecticut","CT",7631 +2000-02-01,"Residential Consumption","Nebraska","NE",6882 +2000-02-01,"Residential Consumption","California","CA",65334 +2000-02-01,"Residential Consumption","West Virginia","WV",6279 +2000-02-01,"Residential Consumption","South Carolina","SC",6445 +2000-02-01,"Residential Consumption","North Carolina","NC",13160 +2000-02-01,"Residential Consumption","Iowa","IA",10992 +2000-02-01,"Residential Consumption","Nevada","NV",3863 +2000-02-01,"Residential Consumption","Minnesota","MN",17866 +2000-02-01,"Residential Consumption","Florida","FL",2503 +2000-02-01,"Residential Consumption","North Dakota","ND",1675 +2000-02-01,"Residential Consumption","New Hampshire","NH",1242 +2000-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1010 +2000-03-01,"Commercial Consumption","Washington","WA",5816 +2000-03-01,"Commercial Consumption","Texas","TX",16594 +2000-03-01,"Commercial Consumption","Ohio","OH",21391 +2000-03-01,"Commercial Consumption","New York","NY",47097 +2000-03-01,"Commercial Consumption","Indiana","IN",8703 +2000-03-01,"Commercial Consumption","District of Columbia","DC",2047 +2000-03-01,"Commercial Consumption","Wyoming","WY",1445 +2000-03-01,"Commercial Consumption","Minnesota","MN",9779 +2000-03-01,"Commercial Consumption","Utah","UT",3889 +2000-03-01,"Commercial Consumption","Pennsylvania","PA",16080 +2000-03-01,"Commercial Consumption","Wisconsin","WI",8051 +2000-03-01,"Commercial Consumption","Kentucky","KY",3728 +2000-03-01,"Commercial Consumption","Vermont","VT",337 +2000-03-01,"Commercial Consumption","North Dakota","ND",1207 +2000-03-01,"Commercial Consumption","Colorado","CO",7202 +2000-03-01,"Commercial Consumption","Massachusetts","MA",7378 +2000-03-01,"Commercial Consumption","New Hampshire","NH",994 +2000-03-01,"Commercial Consumption","Idaho","ID",1526 +2000-03-01,"Commercial Consumption","Iowa","IA",4416 +2000-03-01,"Commercial Consumption","Hawaii","HI",150 +2000-03-01,"Commercial Consumption","Connecticut","CT",5538 +2000-03-01,"Commercial Consumption","Michigan","MI",22035 +2000-03-01,"Commercial Consumption","Oregon","OR",3475 +2000-03-01,"Commercial Consumption","Maine","ME",341 +2000-03-01,"Commercial Consumption","U.S.","U.S.",347668 +2000-03-01,"Commercial Consumption","Arkansas","AR",4130 +2000-03-01,"Commercial Consumption","North Carolina","NC",4836 +2000-03-01,"Commercial Consumption","New Mexico","NM",2996 +2000-03-01,"Commercial Consumption","Missouri","MO",7263 +2000-03-01,"Commercial Consumption","New Jersey","NJ",20076 +2000-03-01,"Commercial Consumption","Alabama","AL",2481 +2000-03-01,"Commercial Consumption","Mississippi","MS",1920 +2000-03-01,"Commercial Consumption","Delaware","DE",450 +2000-03-01,"Commercial Consumption","Tennessee","TN",4660 +2000-03-01,"Commercial Consumption","Louisiana","LA",2415 +2000-03-01,"Commercial Consumption","West Virginia","WV",3048 +2000-03-01,"Commercial Consumption","Oklahoma","OK",4662 +2000-03-01,"Commercial Consumption","Virginia","VA",6721 +2000-03-01,"Commercial Consumption","South Dakota","SD",1317 +2000-03-01,"Commercial Consumption","Montana","MT",1521 +2000-03-01,"Commercial Consumption","Maryland","MD",6224 +2000-03-01,"Commercial Consumption","Kansas","KS",4404 +2000-03-01,"Commercial Consumption","Georgia","GA",5029 +2000-03-01,"Commercial Consumption","Florida","FL",4502 +2000-03-01,"Commercial Consumption","Alaska","AK",2762 +2000-03-01,"Commercial Consumption","Arizona","AZ",3444 +2000-03-01,"Commercial Consumption","Illinois","IL",19510 +2000-03-01,"Commercial Consumption","California","CA",24531 +2000-03-01,"Commercial Consumption","Nebraska","NE",3330 +2000-03-01,"Commercial Consumption","Nevada","NV",2662 +2000-03-01,"Commercial Consumption","South Carolina","SC",2044 +2000-03-01,"Commercial Consumption","Rhode Island","RI",1514 +2000-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98137 +2000-03-01,"Residential Consumption","South Dakota","SD",1360 +2000-03-01,"Residential Consumption","District of Columbia","DC",1747 +2000-03-01,"Residential Consumption","North Dakota","ND",1305 +2000-03-01,"Residential Consumption","Texas","TX",17589 +2000-03-01,"Residential Consumption","South Carolina","SC",2880 +2000-03-01,"Residential Consumption","Ohio","OH",38179 +2000-03-01,"Residential Consumption","Iowa","IA",7680 +2000-03-01,"Residential Consumption","Vermont","VT",396 +2000-03-01,"Residential Consumption","Oklahoma","OK",7477 +2000-03-01,"Residential Consumption","U.S.","U.S.",550261 +2000-03-01,"Residential Consumption","North Carolina","NC",7550 +2000-03-01,"Residential Consumption","Nevada","NV",3711 +2000-03-01,"Residential Consumption","Florida","FL",1622 +2000-03-01,"Residential Consumption","New Hampshire","NH",973 +2000-03-01,"Residential Consumption","Kansas","KS",8180 +2000-03-01,"Residential Consumption","Mississippi","MS",2585 +2000-03-01,"Residential Consumption","Hawaii","HI",48 +2000-03-01,"Residential Consumption","Maine","ME",123 +2000-03-01,"Residential Consumption","Indiana","IN",16221 +2000-03-01,"Residential Consumption","Wyoming","WY",1437 +2000-03-01,"Residential Consumption","West Virginia","WV",3818 +2000-03-01,"Residential Consumption","Rhode Island","RI",2581 +2000-03-01,"Residential Consumption","Nebraska","NE",5815 +2000-03-01,"Residential Consumption","Maryland","MD",8846 +2000-03-01,"Residential Consumption","Minnesota","MN",12764 +2000-03-01,"Residential Consumption","Kentucky","KY",6183 +2000-03-01,"Residential Consumption","Colorado","CO",14321 +2000-03-01,"Residential Consumption","California","CA",62855 +2000-03-01,"Residential Consumption","Louisiana","LA",4490 +2000-03-01,"Residential Consumption","Connecticut","CT",4978 +2000-03-01,"Residential Consumption","Utah","UT",6792 +2000-03-01,"Residential Consumption","Michigan","MI",42901 +2000-03-01,"Residential Consumption","Georgia","GA",11126 +2000-03-01,"Residential Consumption","Pennsylvania","PA",29615 +2000-03-01,"Residential Consumption","New Mexico","NM",3424 +2000-03-01,"Residential Consumption","Massachusetts","MA",13785 +2000-03-01,"Residential Consumption","Idaho","ID",2298 +2000-03-01,"Residential Consumption","Washington","WA",9196 +2000-03-01,"Residential Consumption","Missouri","MO",12977 +2000-03-01,"Residential Consumption","Virginia","VA",8387 +2000-03-01,"Residential Consumption","Arkansas","AR",4139 +2000-03-01,"Residential Consumption","Montana","MT",2290 +2000-03-01,"Residential Consumption","Delaware","DE",1178 +2000-03-01,"Residential Consumption","Illinois","IL",45617 +2000-03-01,"Residential Consumption","Oregon","OR",5048 +2000-03-01,"Residential Consumption","Wisconsin","WI",13106 +2000-03-01,"Residential Consumption","Tennessee","TN",6748 +2000-03-01,"Residential Consumption","New Jersey","NJ",25021 +2000-03-01,"Residential Consumption","Arizona","AZ",4192 +2000-03-01,"Residential Consumption","Alabama","AL",4805 +2000-03-01,"Residential Consumption","Alaska","AK",1764 +2000-03-01,"Residential Consumption","New York","NY",48138 +2000-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",1080 +2000-04-01,"Commercial Consumption","South Carolina","SC",1656 +2000-04-01,"Commercial Consumption","New Mexico","NM",1471 +2000-04-01,"Commercial Consumption","Florida","FL",4155 +2000-04-01,"Commercial Consumption","Vermont","VT",227 +2000-04-01,"Commercial Consumption","Idaho","ID",1132 +2000-04-01,"Commercial Consumption","Iowa","IA",3263 +2000-04-01,"Commercial Consumption","Indiana","IN",6850 +2000-04-01,"Commercial Consumption","North Dakota","ND",882 +2000-04-01,"Commercial Consumption","Oregon","OR",2380 +2000-04-01,"Commercial Consumption","New Jersey","NJ",13562 +2000-04-01,"Commercial Consumption","Maryland","MD",4673 +2000-04-01,"Commercial Consumption","Alaska","AK",2095 +2000-04-01,"Commercial Consumption","Washington","WA",4613 +2000-04-01,"Commercial Consumption","Oklahoma","OK",3358 +2000-04-01,"Commercial Consumption","Kansas","KS",3039 +2000-04-01,"Commercial Consumption","Hawaii","HI",146 +2000-04-01,"Commercial Consumption","California","CA",20237 +2000-04-01,"Commercial Consumption","Michigan","MI",16473 +2000-04-01,"Commercial Consumption","Wyoming","WY",895 +2000-04-01,"Commercial Consumption","West Virginia","WV",2033 +2000-04-01,"Commercial Consumption","New Hampshire","NH",707 +2000-04-01,"Commercial Consumption","U.S.","U.S.",255390 +2000-04-01,"Commercial Consumption","Ohio","OH",14402 +2000-04-01,"Commercial Consumption","Nebraska","NE",2427 +2000-04-01,"Commercial Consumption","Tennessee","TN",3747 +2000-04-01,"Commercial Consumption","Louisiana","LA",2131 +2000-04-01,"Commercial Consumption","District of Columbia","DC",1716 +2000-04-01,"Commercial Consumption","North Carolina","NC",2967 +2000-04-01,"Commercial Consumption","Georgia","GA",4104 +2000-04-01,"Commercial Consumption","Arkansas","AR",1426 +2000-04-01,"Commercial Consumption","Alabama","AL",1972 +2000-04-01,"Commercial Consumption","Illinois","IL",15395 +2000-04-01,"Commercial Consumption","Utah","UT",1993 +2000-04-01,"Commercial Consumption","Virginia","VA",5192 +2000-04-01,"Commercial Consumption","Massachusetts","MA",5889 +2000-04-01,"Commercial Consumption","Kentucky","KY",2534 +2000-04-01,"Commercial Consumption","Connecticut","CT",3741 +2000-04-01,"Commercial Consumption","Arizona","AZ",2836 +2000-04-01,"Commercial Consumption","Minnesota","MN",7580 +2000-04-01,"Commercial Consumption","Pennsylvania","PA",11433 +2000-04-01,"Commercial Consumption","Montana","MT",1098 +2000-04-01,"Commercial Consumption","Maine","ME",271 +2000-04-01,"Commercial Consumption","Rhode Island","RI",1303 +2000-04-01,"Commercial Consumption","Mississippi","MS",1590 +2000-04-01,"Commercial Consumption","Delaware","DE",499 +2000-04-01,"Commercial Consumption","Nevada","NV",2003 +2000-04-01,"Commercial Consumption","Colorado","CO",5699 +2000-04-01,"Commercial Consumption","Missouri","MO",4658 +2000-04-01,"Commercial Consumption","Wisconsin","WI",6336 +2000-04-01,"Commercial Consumption","South Dakota","SD",714 +2000-04-01,"Commercial Consumption","Texas","TX",14888 +2000-04-01,"Commercial Consumption","New York","NY",30999 +2000-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92790 +2000-04-01,"Residential Consumption","Ohio","OH",28363 +2000-04-01,"Residential Consumption","North Carolina","NC",4451 +2000-04-01,"Residential Consumption","Vermont","VT",268 +2000-04-01,"Residential Consumption","Pennsylvania","PA",22060 +2000-04-01,"Residential Consumption","Kentucky","KY",4108 +2000-04-01,"Residential Consumption","California","CA",39046 +2000-04-01,"Residential Consumption","Virginia","VA",5521 +2000-04-01,"Residential Consumption","Utah","UT",2967 +2000-04-01,"Residential Consumption","Maryland","MD",6556 +2000-04-01,"Residential Consumption","Georgia","GA",8441 +2000-04-01,"Residential Consumption","Florida","FL",1133 +2000-04-01,"Residential Consumption","Montana","MT",1559 +2000-04-01,"Residential Consumption","Washington","WA",6568 +2000-04-01,"Residential Consumption","Delaware","DE",985 +2000-04-01,"Residential Consumption","Wyoming","WY",1223 +2000-04-01,"Residential Consumption","New York","NY",37288 +2000-04-01,"Residential Consumption","Rhode Island","RI",1812 +2000-04-01,"Residential Consumption","Hawaii","HI",46 +2000-04-01,"Residential Consumption","Tennessee","TN",4825 +2000-04-01,"Residential Consumption","Nevada","NV",2027 +2000-04-01,"Residential Consumption","Maine","ME",89 +2000-04-01,"Residential Consumption","Indiana","IN",12837 +2000-04-01,"Residential Consumption","New Jersey","NJ",17746 +2000-04-01,"Residential Consumption","Arizona","AZ",2663 +2000-04-01,"Residential Consumption","West Virginia","WV",2491 +2000-04-01,"Residential Consumption","U.S.","U.S.",400886 +2000-04-01,"Residential Consumption","Louisiana","LA",3702 +2000-04-01,"Residential Consumption","District of Columbia","DC",1272 +2000-04-01,"Residential Consumption","Idaho","ID",1695 +2000-04-01,"Residential Consumption","Alabama","AL",3471 +2000-04-01,"Residential Consumption","South Carolina","SC",1919 +2000-04-01,"Residential Consumption","Mississippi","MS",1885 +2000-04-01,"Residential Consumption","Iowa","IA",5392 +2000-04-01,"Residential Consumption","Wisconsin","WI",11201 +2000-04-01,"Residential Consumption","South Dakota","SD",1057 +2000-04-01,"Residential Consumption","Connecticut","CT",3190 +2000-04-01,"Residential Consumption","Minnesota","MN",9668 +2000-04-01,"Residential Consumption","New Mexico","NM",3415 +2000-04-01,"Residential Consumption","Missouri","MO",9281 +2000-04-01,"Residential Consumption","Texas","TX",14597 +2000-04-01,"Residential Consumption","Oregon","OR",3475 +2000-04-01,"Residential Consumption","Nebraska","NE",4561 +2000-04-01,"Residential Consumption","Michigan","MI",33067 +2000-04-01,"Residential Consumption","North Dakota","ND",916 +2000-04-01,"Residential Consumption","New Hampshire","NH",632 +2000-04-01,"Residential Consumption","Colorado","CO",11175 +2000-04-01,"Residential Consumption","Kansas","KS",5744 +2000-04-01,"Residential Consumption","Illinois","IL",35412 +2000-04-01,"Residential Consumption","Massachusetts","MA",10203 +2000-04-01,"Residential Consumption","Arkansas","AR",2439 +2000-04-01,"Residential Consumption","Oklahoma","OK",5208 +2000-04-01,"Residential Consumption","Alaska","AK",1234 +2000-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",1045 +2000-05-01,"Commercial Consumption","South Carolina","SC",1366 +2000-05-01,"Commercial Consumption","Colorado","CO",3411 +2000-05-01,"Commercial Consumption","Missouri","MO",3107 +2000-05-01,"Commercial Consumption","Massachusetts","MA",4325 +2000-05-01,"Commercial Consumption","South Dakota","SD",521 +2000-05-01,"Commercial Consumption","Montana","MT",736 +2000-05-01,"Commercial Consumption","Kentucky","KY",1492 +2000-05-01,"Commercial Consumption","Idaho","ID",674 +2000-05-01,"Commercial Consumption","Iowa","IA",2439 +2000-05-01,"Commercial Consumption","New Jersey","NJ",6049 +2000-05-01,"Commercial Consumption","New Hampshire","NH",472 +2000-05-01,"Commercial Consumption","Maine","ME",107 +2000-05-01,"Commercial Consumption","Ohio","OH",8421 +2000-05-01,"Commercial Consumption","California","CA",16684 +2000-05-01,"Commercial Consumption","Alabama","AL",1466 +2000-05-01,"Commercial Consumption","Delaware","DE",351 +2000-05-01,"Commercial Consumption","Arizona","AZ",2294 +2000-05-01,"Commercial Consumption","Nevada","NV",1802 +2000-05-01,"Commercial Consumption","West Virginia","WV",1638 +2000-05-01,"Commercial Consumption","North Dakota","ND",524 +2000-05-01,"Commercial Consumption","Wisconsin","WI",3634 +2000-05-01,"Commercial Consumption","Texas","TX",13239 +2000-05-01,"Commercial Consumption","Maryland","MD",3498 +2000-05-01,"Commercial Consumption","Tennessee","TN",2499 +2000-05-01,"Commercial Consumption","Indiana","IN",3896 +2000-05-01,"Commercial Consumption","District of Columbia","DC",1345 +2000-05-01,"Commercial Consumption","Vermont","VT",161 +2000-05-01,"Commercial Consumption","Rhode Island","RI",726 +2000-05-01,"Commercial Consumption","Utah","UT",1240 +2000-05-01,"Commercial Consumption","Oregon","OR",1812 +2000-05-01,"Commercial Consumption","Oklahoma","OK",2399 +2000-05-01,"Commercial Consumption","Alaska","AK",1951 +2000-05-01,"Commercial Consumption","Washington","WA",3402 +2000-05-01,"Commercial Consumption","North Carolina","NC",1924 +2000-05-01,"Commercial Consumption","Pennsylvania","PA",6651 +2000-05-01,"Commercial Consumption","Georgia","GA",3788 +2000-05-01,"Commercial Consumption","Hawaii","HI",148 +2000-05-01,"Commercial Consumption","Connecticut","CT",3303 +2000-05-01,"Commercial Consumption","Arkansas","AR",1655 +2000-05-01,"Commercial Consumption","Nebraska","NE",1539 +2000-05-01,"Commercial Consumption","Mississippi","MS",1314 +2000-05-01,"Commercial Consumption","Michigan","MI",10380 +2000-05-01,"Commercial Consumption","Illinois","IL",8281 +2000-05-01,"Commercial Consumption","Minnesota","MN",4054 +2000-05-01,"Commercial Consumption","Virginia","VA",3561 +2000-05-01,"Commercial Consumption","Florida","FL",3839 +2000-05-01,"Commercial Consumption","New York","NY",26831 +2000-05-01,"Commercial Consumption","Wyoming","WY",545 +2000-05-01,"Commercial Consumption","New Mexico","NM",1683 +2000-05-01,"Commercial Consumption","U.S.","U.S.",180659 +2000-05-01,"Commercial Consumption","Kansas","KS",1751 +2000-05-01,"Commercial Consumption","Louisiana","LA",1731 +2000-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96400 +2000-05-01,"Residential Consumption","Utah","UT",1809 +2000-05-01,"Residential Consumption","South Carolina","SC",1141 +2000-05-01,"Residential Consumption","Rhode Island","RI",1279 +2000-05-01,"Residential Consumption","Wisconsin","WI",5027 +2000-05-01,"Residential Consumption","New Hampshire","NH",432 +2000-05-01,"Residential Consumption","Arizona","AZ",1510 +2000-05-01,"Residential Consumption","North Carolina","NC",2225 +2000-05-01,"Residential Consumption","Tennessee","TN",2531 +2000-05-01,"Residential Consumption","Colorado","CO",6487 +2000-05-01,"Residential Consumption","Mississippi","MS",1195 +2000-05-01,"Residential Consumption","Louisiana","LA",2062 +2000-05-01,"Residential Consumption","Vermont","VT",179 +2000-05-01,"Residential Consumption","Virginia","VA",2870 +2000-05-01,"Residential Consumption","South Dakota","SD",573 +2000-05-01,"Residential Consumption","Nevada","NV",1568 +2000-05-01,"Residential Consumption","Georgia","GA",4818 +2000-05-01,"Residential Consumption","Maine","ME",49 +2000-05-01,"Residential Consumption","Idaho","ID",909 +2000-05-01,"Residential Consumption","Kansas","KS",2947 +2000-05-01,"Residential Consumption","Alaska","AK",864 +2000-05-01,"Residential Consumption","Illinois","IL",15613 +2000-05-01,"Residential Consumption","Texas","TX",8503 +2000-05-01,"Residential Consumption","Oregon","OR",2321 +2000-05-01,"Residential Consumption","Hawaii","HI",47 +2000-05-01,"Residential Consumption","Nebraska","NE",1467 +2000-05-01,"Residential Consumption","Michigan","MI",18600 +2000-05-01,"Residential Consumption","Minnesota","MN",4924 +2000-05-01,"Residential Consumption","District of Columbia","DC",741 +2000-05-01,"Residential Consumption","Florida","FL",967 +2000-05-01,"Residential Consumption","North Dakota","ND",496 +2000-05-01,"Residential Consumption","Massachusetts","MA",7051 +2000-05-01,"Residential Consumption","California","CA",31735 +2000-05-01,"Residential Consumption","New York","NY",22525 +2000-05-01,"Residential Consumption","Maryland","MD",3375 +2000-05-01,"Residential Consumption","Pennsylvania","PA",10832 +2000-05-01,"Residential Consumption","New Mexico","NM",1149 +2000-05-01,"Residential Consumption","Indiana","IN",6269 +2000-05-01,"Residential Consumption","Washington","WA",4583 +2000-05-01,"Residential Consumption","Missouri","MO",4869 +2000-05-01,"Residential Consumption","Ohio","OH",13699 +2000-05-01,"Residential Consumption","New Jersey","NJ",11043 +2000-05-01,"Residential Consumption","Kentucky","KY",1415 +2000-05-01,"Residential Consumption","Delaware","DE",655 +2000-05-01,"Residential Consumption","Wyoming","WY",670 +2000-05-01,"Residential Consumption","West Virginia","WV",1898 +2000-05-01,"Residential Consumption","U.S.","U.S.",228439 +2000-05-01,"Residential Consumption","Iowa","IA",2655 +2000-05-01,"Residential Consumption","Connecticut","CT",2226 +2000-05-01,"Residential Consumption","Arkansas","AR",1558 +2000-05-01,"Residential Consumption","Montana","MT",972 +2000-05-01,"Residential Consumption","Oklahoma","OK",2785 +2000-05-01,"Residential Consumption","Alabama","AL",2320 +2000-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",1080 +2000-06-01,"Commercial Consumption","Colorado","CO",2537 +2000-06-01,"Commercial Consumption","Oklahoma","OK",1545 +2000-06-01,"Commercial Consumption","Kentucky","KY",1147 +2000-06-01,"Commercial Consumption","Texas","TX",11644 +2000-06-01,"Commercial Consumption","Tennessee","TN",2079 +2000-06-01,"Commercial Consumption","Utah","UT",954 +2000-06-01,"Commercial Consumption","Arkansas","AR",1537 +2000-06-01,"Commercial Consumption","Mississippi","MS",998 +2000-06-01,"Commercial Consumption","Illinois","IL",6325 +2000-06-01,"Commercial Consumption","Massachusetts","MA",3060 +2000-06-01,"Commercial Consumption","New Jersey","NJ",6230 +2000-06-01,"Commercial Consumption","Vermont","VT",102 +2000-06-01,"Commercial Consumption","Rhode Island","RI",541 +2000-06-01,"Commercial Consumption","Delaware","DE",227 +2000-06-01,"Commercial Consumption","Michigan","MI",6903 +2000-06-01,"Commercial Consumption","West Virginia","WV",1203 +2000-06-01,"Commercial Consumption","New Mexico","NM",1890 +2000-06-01,"Commercial Consumption","New Hampshire","NH",342 +2000-06-01,"Commercial Consumption","Georgia","GA",2304 +2000-06-01,"Commercial Consumption","Idaho","ID",554 +2000-06-01,"Commercial Consumption","North Dakota","ND",362 +2000-06-01,"Commercial Consumption","South Dakota","SD",329 +2000-06-01,"Commercial Consumption","U.S.","U.S.",147135 +2000-06-01,"Commercial Consumption","Maryland","MD",2587 +2000-06-01,"Commercial Consumption","Iowa","IA",1273 +2000-06-01,"Commercial Consumption","Hawaii","HI",151 +2000-06-01,"Commercial Consumption","New York","NY",25888 +2000-06-01,"Commercial Consumption","Nevada","NV",1656 +2000-06-01,"Commercial Consumption","North Carolina","NC",1897 +2000-06-01,"Commercial Consumption","Minnesota","MN",2954 +2000-06-01,"Commercial Consumption","Missouri","MO",2150 +2000-06-01,"Commercial Consumption","Florida","FL",3489 +2000-06-01,"Commercial Consumption","Alaska","AK",988 +2000-06-01,"Commercial Consumption","Alabama","AL",1184 +2000-06-01,"Commercial Consumption","Nebraska","NE",1325 +2000-06-01,"Commercial Consumption","District of Columbia","DC",983 +2000-06-01,"Commercial Consumption","Pennsylvania","PA",5052 +2000-06-01,"Commercial Consumption","Montana","MT",511 +2000-06-01,"Commercial Consumption","Maine","ME",81 +2000-06-01,"Commercial Consumption","Arizona","AZ",2113 +2000-06-01,"Commercial Consumption","Wyoming","WY",333 +2000-06-01,"Commercial Consumption","Washington","WA",2688 +2000-06-01,"Commercial Consumption","South Carolina","SC",1177 +2000-06-01,"Commercial Consumption","Oregon","OR",1391 +2000-06-01,"Commercial Consumption","Virginia","VA",2802 +2000-06-01,"Commercial Consumption","Wisconsin","WI",2395 +2000-06-01,"Commercial Consumption","Kansas","KS",1434 +2000-06-01,"Commercial Consumption","Ohio","OH",5402 +2000-06-01,"Commercial Consumption","Connecticut","CT",2245 +2000-06-01,"Commercial Consumption","California","CA",15966 +2000-06-01,"Commercial Consumption","Indiana","IN",2641 +2000-06-01,"Commercial Consumption","Louisiana","LA",1561 +2000-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94095 +2000-06-01,"Residential Consumption","Texas","TX",7118 +2000-06-01,"Residential Consumption","Rhode Island","RI",715 +2000-06-01,"Residential Consumption","Minnesota","MN",3358 +2000-06-01,"Residential Consumption","Indiana","IN",3693 +2000-06-01,"Residential Consumption","New Jersey","NJ",6216 +2000-06-01,"Residential Consumption","Colorado","CO",4081 +2000-06-01,"Residential Consumption","Oklahoma","OK",1825 +2000-06-01,"Residential Consumption","Alaska","AK",646 +2000-06-01,"Residential Consumption","Vermont","VT",110 +2000-06-01,"Residential Consumption","Florida","FL",831 +2000-06-01,"Residential Consumption","New Hampshire","NH",275 +2000-06-01,"Residential Consumption","California","CA",27625 +2000-06-01,"Residential Consumption","West Virginia","WV",747 +2000-06-01,"Residential Consumption","Ohio","OH",7832 +2000-06-01,"Residential Consumption","Nevada","NV",1184 +2000-06-01,"Residential Consumption","New Mexico","NM",1577 +2000-06-01,"Residential Consumption","Connecticut","CT",1260 +2000-06-01,"Residential Consumption","Wisconsin","WI",2662 +2000-06-01,"Residential Consumption","Nebraska","NE",1003 +2000-06-01,"Residential Consumption","Michigan","MI",9777 +2000-06-01,"Residential Consumption","Maryland","MD",2267 +2000-06-01,"Residential Consumption","South Dakota","SD",333 +2000-06-01,"Residential Consumption","Maine","ME",31 +2000-06-01,"Residential Consumption","North Dakota","ND",329 +2000-06-01,"Residential Consumption","Idaho","ID",633 +2000-06-01,"Residential Consumption","Arkansas","AR",916 +2000-06-01,"Residential Consumption","Washington","WA",3119 +2000-06-01,"Residential Consumption","Oregon","OR",1530 +2000-06-01,"Residential Consumption","North Carolina","NC",1483 +2000-06-01,"Residential Consumption","Mississippi","MS",832 +2000-06-01,"Residential Consumption","Iowa","IA",1611 +2000-06-01,"Residential Consumption","Hawaii","HI",45 +2000-06-01,"Residential Consumption","Tennessee","TN",1319 +2000-06-01,"Residential Consumption","Wyoming","WY",396 +2000-06-01,"Residential Consumption","U.S.","U.S.",154183 +2000-06-01,"Residential Consumption","Louisiana","LA",1815 +2000-06-01,"Residential Consumption","Utah","UT",1494 +2000-06-01,"Residential Consumption","South Carolina","SC",577 +2000-06-01,"Residential Consumption","District of Columbia","DC",485 +2000-06-01,"Residential Consumption","Kansas","KS",1799 +2000-06-01,"Residential Consumption","Missouri","MO",2050 +2000-06-01,"Residential Consumption","Delaware","DE",294 +2000-06-01,"Residential Consumption","Arizona","AZ",1178 +2000-06-01,"Residential Consumption","Alabama","AL",1383 +2000-06-01,"Residential Consumption","Illinois","IL",12052 +2000-06-01,"Residential Consumption","Virginia","VA",1804 +2000-06-01,"Residential Consumption","Georgia","GA",3835 +2000-06-01,"Residential Consumption","Pennsylvania","PA",7890 +2000-06-01,"Residential Consumption","Massachusetts","MA",4065 +2000-06-01,"Residential Consumption","Montana","MT",606 +2000-06-01,"Residential Consumption","Kentucky","KY",1129 +2000-06-01,"Residential Consumption","New York","NY",14349 +2000-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",1045 +2000-07-01,"Commercial Consumption","Wyoming","WY",305 +2000-07-01,"Commercial Consumption","North Dakota","ND",278 +2000-07-01,"Commercial Consumption","Massachusetts","MA",2503 +2000-07-01,"Commercial Consumption","New Jersey","NJ",3844 +2000-07-01,"Commercial Consumption","Kentucky","KY",1056 +2000-07-01,"Commercial Consumption","California","CA",16392 +2000-07-01,"Commercial Consumption","Nebraska","NE",972 +2000-07-01,"Commercial Consumption","Arizona","AZ",1959 +2000-07-01,"Commercial Consumption","Pennsylvania","PA",4240 +2000-07-01,"Commercial Consumption","Wisconsin","WI",2174 +2000-07-01,"Commercial Consumption","Montana","MT",433 +2000-07-01,"Commercial Consumption","Maryland","MD",2077 +2000-07-01,"Commercial Consumption","Kansas","KS",1473 +2000-07-01,"Commercial Consumption","Georgia","GA",2158 +2000-07-01,"Commercial Consumption","Rhode Island","RI",443 +2000-07-01,"Commercial Consumption","Alaska","AK",1253 +2000-07-01,"Commercial Consumption","Tennessee","TN",1807 +2000-07-01,"Commercial Consumption","Minnesota","MN",2964 +2000-07-01,"Commercial Consumption","Oregon","OR",1080 +2000-07-01,"Commercial Consumption","Ohio","OH",4999 +2000-07-01,"Commercial Consumption","Iowa","IA",1400 +2000-07-01,"Commercial Consumption","Hawaii","HI",146 +2000-07-01,"Commercial Consumption","District of Columbia","DC",887 +2000-07-01,"Commercial Consumption","New Mexico","NM",1260 +2000-07-01,"Commercial Consumption","South Dakota","SD",282 +2000-07-01,"Commercial Consumption","New Hampshire","NH",263 +2000-07-01,"Commercial Consumption","Maine","ME",85 +2000-07-01,"Commercial Consumption","Florida","FL",3400 +2000-07-01,"Commercial Consumption","Mississippi","MS",1029 +2000-07-01,"Commercial Consumption","Louisiana","LA",1365 +2000-07-01,"Commercial Consumption","Colorado","CO",2027 +2000-07-01,"Commercial Consumption","Utah","UT",955 +2000-07-01,"Commercial Consumption","Connecticut","CT",2422 +2000-07-01,"Commercial Consumption","New York","NY",25378 +2000-07-01,"Commercial Consumption","Illinois","IL",6246 +2000-07-01,"Commercial Consumption","Washington","WA",2078 +2000-07-01,"Commercial Consumption","Oklahoma","OK",1941 +2000-07-01,"Commercial Consumption","U.S.","U.S.",136910 +2000-07-01,"Commercial Consumption","Texas","TX",11969 +2000-07-01,"Commercial Consumption","Idaho","ID",457 +2000-07-01,"Commercial Consumption","Delaware","DE",195 +2000-07-01,"Commercial Consumption","Indiana","IN",2502 +2000-07-01,"Commercial Consumption","West Virginia","WV",1173 +2000-07-01,"Commercial Consumption","South Carolina","SC",1119 +2000-07-01,"Commercial Consumption","North Carolina","NC",1529 +2000-07-01,"Commercial Consumption","Virginia","VA",2504 +2000-07-01,"Commercial Consumption","Vermont","VT",81 +2000-07-01,"Commercial Consumption","Nevada","NV",1825 +2000-07-01,"Commercial Consumption","Missouri","MO",2052 +2000-07-01,"Commercial Consumption","Arkansas","AR",1403 +2000-07-01,"Commercial Consumption","Alabama","AL",1087 +2000-07-01,"Commercial Consumption","Michigan","MI",5437 +2000-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97199 +2000-07-01,"Residential Consumption","Texas","TX",6220 +2000-07-01,"Residential Consumption","North Carolina","NC",1007 +2000-07-01,"Residential Consumption","Michigan","MI",7823 +2000-07-01,"Residential Consumption","Idaho","ID",438 +2000-07-01,"Residential Consumption","New Hampshire","NH",178 +2000-07-01,"Residential Consumption","Alaska","AK",475 +2000-07-01,"Residential Consumption","New York","NY",10847 +2000-07-01,"Residential Consumption","Oregon","OR",997 +2000-07-01,"Residential Consumption","Wisconsin","WI",2704 +2000-07-01,"Residential Consumption","South Dakota","SD",248 +2000-07-01,"Residential Consumption","Florida","FL",734 +2000-07-01,"Residential Consumption","Arizona","AZ",996 +2000-07-01,"Residential Consumption","Louisiana","LA",1724 +2000-07-01,"Residential Consumption","Iowa","IA",1551 +2000-07-01,"Residential Consumption","Tennessee","TN",1198 +2000-07-01,"Residential Consumption","Virginia","VA",1573 +2000-07-01,"Residential Consumption","Nebraska","NE",917 +2000-07-01,"Residential Consumption","Delaware","DE",246 +2000-07-01,"Residential Consumption","Illinois","IL",9549 +2000-07-01,"Residential Consumption","Ohio","OH",7329 +2000-07-01,"Residential Consumption","Nevada","NV",1009 +2000-07-01,"Residential Consumption","Indiana","IN",2945 +2000-07-01,"Residential Consumption","Kentucky","KY",1071 +2000-07-01,"Residential Consumption","Vermont","VT",70 +2000-07-01,"Residential Consumption","Maryland","MD",1942 +2000-07-01,"Residential Consumption","Kansas","KS",1596 +2000-07-01,"Residential Consumption","Washington","WA",1997 +2000-07-01,"Residential Consumption","California","CA",24448 +2000-07-01,"Residential Consumption","Alabama","AL",1247 +2000-07-01,"Residential Consumption","Mississippi","MS",764 +2000-07-01,"Residential Consumption","Utah","UT",1492 +2000-07-01,"Residential Consumption","Georgia","GA",3775 +2000-07-01,"Residential Consumption","North Dakota","ND",210 +2000-07-01,"Residential Consumption","New Jersey","NJ",4998 +2000-07-01,"Residential Consumption","Colorado","CO",3005 +2000-07-01,"Residential Consumption","West Virginia","WV",520 +2000-07-01,"Residential Consumption","South Carolina","SC",495 +2000-07-01,"Residential Consumption","Hawaii","HI",44 +2000-07-01,"Residential Consumption","Connecticut","CT",953 +2000-07-01,"Residential Consumption","Maine","ME",27 +2000-07-01,"Residential Consumption","Massachusetts","MA",2883 +2000-07-01,"Residential Consumption","Arkansas","AR",791 +2000-07-01,"Residential Consumption","Montana","MT",482 +2000-07-01,"Residential Consumption","Oklahoma","OK",1588 +2000-07-01,"Residential Consumption","U.S.","U.S.",128363 +2000-07-01,"Residential Consumption","Rhode Island","RI",482 +2000-07-01,"Residential Consumption","Minnesota","MN",2866 +2000-07-01,"Residential Consumption","District of Columbia","DC",379 +2000-07-01,"Residential Consumption","Pennsylvania","PA",5827 +2000-07-01,"Residential Consumption","New Mexico","NM",970 +2000-07-01,"Residential Consumption","Missouri","MO",2429 +2000-07-01,"Residential Consumption","Wyoming","WY",303 +2000-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",1080 +2000-08-01,"Commercial Consumption","South Carolina","SC",1107 +2000-08-01,"Commercial Consumption","North Carolina","NC",1542 +2000-08-01,"Commercial Consumption","New Mexico","NM",1127 +2000-08-01,"Commercial Consumption","Massachusetts","MA",2318 +2000-08-01,"Commercial Consumption","Kentucky","KY",1060 +2000-08-01,"Commercial Consumption","Rhode Island","RI",447 +2000-08-01,"Commercial Consumption","Iowa","IA",1086 +2000-08-01,"Commercial Consumption","Colorado","CO",1761 +2000-08-01,"Commercial Consumption","Utah","UT",919 +2000-08-01,"Commercial Consumption","Oregon","OR",1013 +2000-08-01,"Commercial Consumption","Oklahoma","OK",1900 +2000-08-01,"Commercial Consumption","Pennsylvania","PA",4437 +2000-08-01,"Commercial Consumption","South Dakota","SD",251 +2000-08-01,"Commercial Consumption","Maine","ME",78 +2000-08-01,"Commercial Consumption","Illinois","IL",6704 +2000-08-01,"Commercial Consumption","North Dakota","ND",334 +2000-08-01,"Commercial Consumption","Wisconsin","WI",2492 +2000-08-01,"Commercial Consumption","U.S.","U.S.",150288 +2000-08-01,"Commercial Consumption","Texas","TX",12578 +2000-08-01,"Commercial Consumption","Georgia","GA",2122 +2000-08-01,"Commercial Consumption","Nebraska","NE",971 +2000-08-01,"Commercial Consumption","Mississippi","MS",1038 +2000-08-01,"Commercial Consumption","District of Columbia","DC",857 +2000-08-01,"Commercial Consumption","New Jersey","NJ",13684 +2000-08-01,"Commercial Consumption","Kansas","KS",1401 +2000-08-01,"Commercial Consumption","Delaware","DE",185 +2000-08-01,"Commercial Consumption","Arizona","AZ",1877 +2000-08-01,"Commercial Consumption","Tennessee","TN",1840 +2000-08-01,"Commercial Consumption","Virginia","VA",2691 +2000-08-01,"Commercial Consumption","Montana","MT",359 +2000-08-01,"Commercial Consumption","Maryland","MD",2070 +2000-08-01,"Commercial Consumption","Ohio","OH",4948 +2000-08-01,"Commercial Consumption","Idaho","ID",418 +2000-08-01,"Commercial Consumption","Alaska","AK",1311 +2000-08-01,"Commercial Consumption","California","CA",17572 +2000-08-01,"Commercial Consumption","Nevada","NV",1526 +2000-08-01,"Commercial Consumption","Louisiana","LA",1387 +2000-08-01,"Commercial Consumption","Wyoming","WY",300 +2000-08-01,"Commercial Consumption","Hawaii","HI",141 +2000-08-01,"Commercial Consumption","Alabama","AL",1080 +2000-08-01,"Commercial Consumption","Michigan","MI",6111 +2000-08-01,"Commercial Consumption","West Virginia","WV",1235 +2000-08-01,"Commercial Consumption","Washington","WA",1894 +2000-08-01,"Commercial Consumption","New Hampshire","NH",276 +2000-08-01,"Commercial Consumption","Florida","FL",3233 +2000-08-01,"Commercial Consumption","Vermont","VT",82 +2000-08-01,"Commercial Consumption","Arkansas","AR",1927 +2000-08-01,"Commercial Consumption","New York","NY",26687 +2000-08-01,"Commercial Consumption","Indiana","IN",2597 +2000-08-01,"Commercial Consumption","Minnesota","MN",3053 +2000-08-01,"Commercial Consumption","Missouri","MO",1957 +2000-08-01,"Commercial Consumption","Connecticut","CT",2306 +2000-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97934 +2000-08-01,"Residential Consumption","Louisiana","LA",1623 +2000-08-01,"Residential Consumption","Vermont","VT",62 +2000-08-01,"Residential Consumption","Indiana","IN",2927 +2000-08-01,"Residential Consumption","Arkansas","AR",916 +2000-08-01,"Residential Consumption","New Jersey","NJ",5115 +2000-08-01,"Residential Consumption","Colorado","CO",2553 +2000-08-01,"Residential Consumption","Ohio","OH",6830 +2000-08-01,"Residential Consumption","Iowa","IA",1411 +2000-08-01,"Residential Consumption","Connecticut","CT",617 +2000-08-01,"Residential Consumption","Tennessee","TN",1112 +2000-08-01,"Residential Consumption","Pennsylvania","PA",5650 +2000-08-01,"Residential Consumption","Maine","ME",26 +2000-08-01,"Residential Consumption","Florida","FL",701 +2000-08-01,"Residential Consumption","Idaho","ID",349 +2000-08-01,"Residential Consumption","New Hampshire","NH",143 +2000-08-01,"Residential Consumption","Maryland","MD",1951 +2000-08-01,"Residential Consumption","Kentucky","KY",1233 +2000-08-01,"Residential Consumption","Arizona","AZ",903 +2000-08-01,"Residential Consumption","Wyoming","WY",291 +2000-08-01,"Residential Consumption","Hawaii","HI",39 +2000-08-01,"Residential Consumption","Nebraska","NE",790 +2000-08-01,"Residential Consumption","Michigan","MI",7550 +2000-08-01,"Residential Consumption","Nevada","NV",932 +2000-08-01,"Residential Consumption","District of Columbia","DC",356 +2000-08-01,"Residential Consumption","Kansas","KS",1307 +2000-08-01,"Residential Consumption","Texas","TX",5687 +2000-08-01,"Residential Consumption","Wisconsin","WI",2908 +2000-08-01,"Residential Consumption","Virginia","VA",1487 +2000-08-01,"Residential Consumption","Utah","UT",1444 +2000-08-01,"Residential Consumption","North Dakota","ND",223 +2000-08-01,"Residential Consumption","Washington","WA",1614 +2000-08-01,"Residential Consumption","Alaska","AK",618 +2000-08-01,"Residential Consumption","West Virginia","WV",535 +2000-08-01,"Residential Consumption","South Carolina","SC",466 +2000-08-01,"Residential Consumption","New Mexico","NM",984 +2000-08-01,"Residential Consumption","Montana","MT",392 +2000-08-01,"Residential Consumption","Delaware","DE",188 +2000-08-01,"Residential Consumption","California","CA",22116 +2000-08-01,"Residential Consumption","Illinois","IL",10589 +2000-08-01,"Residential Consumption","Oregon","OR",801 +2000-08-01,"Residential Consumption","Mississippi","MS",703 +2000-08-01,"Residential Consumption","Minnesota","MN",2762 +2000-08-01,"Residential Consumption","Georgia","GA",3833 +2000-08-01,"Residential Consumption","Oklahoma","OK",1434 +2000-08-01,"Residential Consumption","Alabama","AL",1175 +2000-08-01,"Residential Consumption","Rhode Island","RI",451 +2000-08-01,"Residential Consumption","North Carolina","NC",1010 +2000-08-01,"Residential Consumption","South Dakota","SD",243 +2000-08-01,"Residential Consumption","Massachusetts","MA",2588 +2000-08-01,"Residential Consumption","Missouri","MO",2480 +2000-08-01,"Residential Consumption","U.S.","U.S.",122408 +2000-08-01,"Residential Consumption","New York","NY",10290 +2000-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",1080 +2000-09-01,"Commercial Consumption","Oklahoma","OK",1962 +2000-09-01,"Commercial Consumption","Texas","TX",11925 +2000-09-01,"Commercial Consumption","Maryland","MD",2392 +2000-09-01,"Commercial Consumption","Michigan","MI",6648 +2000-09-01,"Commercial Consumption","District of Columbia","DC",889 +2000-09-01,"Commercial Consumption","Washington","WA",2073 +2000-09-01,"Commercial Consumption","Oregon","OR",1148 +2000-09-01,"Commercial Consumption","South Dakota","SD",288 +2000-09-01,"Commercial Consumption","Iowa","IA",1462 +2000-09-01,"Commercial Consumption","Hawaii","HI",145 +2000-09-01,"Commercial Consumption","Arizona","AZ",1914 +2000-09-01,"Commercial Consumption","Nevada","NV",1542 +2000-09-01,"Commercial Consumption","Illinois","IL",7544 +2000-09-01,"Commercial Consumption","New Mexico","NM",1540 +2000-09-01,"Commercial Consumption","Pennsylvania","PA",5110 +2000-09-01,"Commercial Consumption","New Hampshire","NH",295 +2000-09-01,"Commercial Consumption","Maine","ME",81 +2000-09-01,"Commercial Consumption","U.S.","U.S.",148609 +2000-09-01,"Commercial Consumption","Idaho","ID",507 +2000-09-01,"Commercial Consumption","Tennessee","TN",2244 +2000-09-01,"Commercial Consumption","Vermont","VT",87 +2000-09-01,"Commercial Consumption","Arkansas","AR",1097 +2000-09-01,"Commercial Consumption","New York","NY",27520 +2000-09-01,"Commercial Consumption","Indiana","IN",3340 +2000-09-01,"Commercial Consumption","Wyoming","WY",383 +2000-09-01,"Commercial Consumption","North Carolina","NC",1695 +2000-09-01,"Commercial Consumption","Colorado","CO",1823 +2000-09-01,"Commercial Consumption","Missouri","MO",1816 +2000-09-01,"Commercial Consumption","Massachusetts","MA",3414 +2000-09-01,"Commercial Consumption","Montana","MT",459 +2000-09-01,"Commercial Consumption","Florida","FL",3348 +2000-09-01,"Commercial Consumption","Delaware","DE",58 +2000-09-01,"Commercial Consumption","Utah","UT",1308 +2000-09-01,"Commercial Consumption","Virginia","VA",2763 +2000-09-01,"Commercial Consumption","Wisconsin","WI",2543 +2000-09-01,"Commercial Consumption","Georgia","GA",2292 +2000-09-01,"Commercial Consumption","Alaska","AK",1573 +2000-09-01,"Commercial Consumption","Mississippi","MS",1143 +2000-09-01,"Commercial Consumption","Minnesota","MN",3246 +2000-09-01,"Commercial Consumption","New Jersey","NJ",4203 +2000-09-01,"Commercial Consumption","Kentucky","KY",1247 +2000-09-01,"Commercial Consumption","Rhode Island","RI",479 +2000-09-01,"Commercial Consumption","Ohio","OH",5112 +2000-09-01,"Commercial Consumption","Connecticut","CT",2212 +2000-09-01,"Commercial Consumption","Louisiana","LA",1348 +2000-09-01,"Commercial Consumption","West Virginia","WV",1211 +2000-09-01,"Commercial Consumption","South Carolina","SC",1180 +2000-09-01,"Commercial Consumption","North Dakota","ND",334 +2000-09-01,"Commercial Consumption","Kansas","KS",1545 +2000-09-01,"Commercial Consumption","California","CA",17990 +2000-09-01,"Commercial Consumption","Alabama","AL",1119 +2000-09-01,"Commercial Consumption","Nebraska","NE",1014 +2000-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94771 +2000-09-01,"Residential Consumption","Nebraska","NE",1066 +2000-09-01,"Residential Consumption","District of Columbia","DC",376 +2000-09-01,"Residential Consumption","Florida","FL",700 +2000-09-01,"Residential Consumption","North Carolina","NC",1052 +2000-09-01,"Residential Consumption","Virginia","VA",1712 +2000-09-01,"Residential Consumption","Arizona","AZ",971 +2000-09-01,"Residential Consumption","New York","NY",11087 +2000-09-01,"Residential Consumption","Illinois","IL",12373 +2000-09-01,"Residential Consumption","Ohio","OH",7681 +2000-09-01,"Residential Consumption","Indiana","IN",3989 +2000-09-01,"Residential Consumption","Arkansas","AR",1154 +2000-09-01,"Residential Consumption","Colorado","CO",2706 +2000-09-01,"Residential Consumption","Alabama","AL",1202 +2000-09-01,"Residential Consumption","Utah","UT",2415 +2000-09-01,"Residential Consumption","Maine","ME",32 +2000-09-01,"Residential Consumption","Missouri","MO",2508 +2000-09-01,"Residential Consumption","U.S.","U.S.",140766 +2000-09-01,"Residential Consumption","Oregon","OR",977 +2000-09-01,"Residential Consumption","Louisiana","LA",1714 +2000-09-01,"Residential Consumption","Vermont","VT",72 +2000-09-01,"Residential Consumption","Nevada","NV",1085 +2000-09-01,"Residential Consumption","Massachusetts","MA",2942 +2000-09-01,"Residential Consumption","New Jersey","NJ",5939 +2000-09-01,"Residential Consumption","New Hampshire","NH",182 +2000-09-01,"Residential Consumption","Montana","MT",610 +2000-09-01,"Residential Consumption","Washington","WA",2023 +2000-09-01,"Residential Consumption","Mississippi","MS",717 +2000-09-01,"Residential Consumption","Michigan","MI",9292 +2000-09-01,"Residential Consumption","Minnesota","MN",3260 +2000-09-01,"Residential Consumption","Pennsylvania","PA",6985 +2000-09-01,"Residential Consumption","North Dakota","ND",251 +2000-09-01,"Residential Consumption","Oklahoma","OK",1496 +2000-09-01,"Residential Consumption","Delaware","DE",172 +2000-09-01,"Residential Consumption","Alaska","AK",927 +2000-09-01,"Residential Consumption","Texas","TX",5805 +2000-09-01,"Residential Consumption","South Carolina","SC",533 +2000-09-01,"Residential Consumption","Iowa","IA",1710 +2000-09-01,"Residential Consumption","Hawaii","HI",41 +2000-09-01,"Residential Consumption","Connecticut","CT",979 +2000-09-01,"Residential Consumption","Wisconsin","WI",3595 +2000-09-01,"Residential Consumption","Tennessee","TN",1224 +2000-09-01,"Residential Consumption","Georgia","GA",4164 +2000-09-01,"Residential Consumption","Kentucky","KY",1446 +2000-09-01,"Residential Consumption","California","CA",24496 +2000-09-01,"Residential Consumption","Rhode Island","RI",506 +2000-09-01,"Residential Consumption","Maryland","MD",2058 +2000-09-01,"Residential Consumption","South Dakota","SD",277 +2000-09-01,"Residential Consumption","New Mexico","NM",1217 +2000-09-01,"Residential Consumption","Idaho","ID",484 +2000-09-01,"Residential Consumption","Kansas","KS",1578 +2000-09-01,"Residential Consumption","Wyoming","WY",386 +2000-09-01,"Residential Consumption","West Virginia","WV",599 +2000-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",1045 +2000-10-01,"Commercial Consumption","South Carolina","SC",1354 +2000-10-01,"Commercial Consumption","Utah","UT",2000 +2000-10-01,"Commercial Consumption","Oregon","OR",1430 +2000-10-01,"Commercial Consumption","Alaska","AK",2624 +2000-10-01,"Commercial Consumption","Delaware","DE",234 +2000-10-01,"Commercial Consumption","Indiana","IN",4729 +2000-10-01,"Commercial Consumption","Washington","WA",2558 +2000-10-01,"Commercial Consumption","Virginia","VA",3840 +2000-10-01,"Commercial Consumption","New Jersey","NJ",6986 +2000-10-01,"Commercial Consumption","Mississippi","MS",1368 +2000-10-01,"Commercial Consumption","Nevada","NV",1775 +2000-10-01,"Commercial Consumption","North Dakota","ND",578 +2000-10-01,"Commercial Consumption","North Carolina","NC",2192 +2000-10-01,"Commercial Consumption","New Mexico","NM",1536 +2000-10-01,"Commercial Consumption","New Hampshire","NH",417 +2000-10-01,"Commercial Consumption","New York","NY",26421 +2000-10-01,"Commercial Consumption","Tennessee","TN",2438 +2000-10-01,"Commercial Consumption","Illinois","IL",10550 +2000-10-01,"Commercial Consumption","District of Columbia","DC",955 +2000-10-01,"Commercial Consumption","Maine","ME",154 +2000-10-01,"Commercial Consumption","Hawaii","HI",146 +2000-10-01,"Commercial Consumption","California","CA",17276 +2000-10-01,"Commercial Consumption","Alabama","AL",1410 +2000-10-01,"Commercial Consumption","Nebraska","NE",1249 +2000-10-01,"Commercial Consumption","Wisconsin","WI",4302 +2000-10-01,"Commercial Consumption","Kentucky","KY",1804 +2000-10-01,"Commercial Consumption","U.S.","U.S.",181030 +2000-10-01,"Commercial Consumption","Georgia","GA",3063 +2000-10-01,"Commercial Consumption","Florida","FL",3523 +2000-10-01,"Commercial Consumption","Ohio","OH",8271 +2000-10-01,"Commercial Consumption","Connecticut","CT",3116 +2000-10-01,"Commercial Consumption","Arizona","AZ",2020 +2000-10-01,"Commercial Consumption","Minnesota","MN",5075 +2000-10-01,"Commercial Consumption","Massachusetts","MA",3243 +2000-10-01,"Commercial Consumption","Montana","MT",835 +2000-10-01,"Commercial Consumption","Texas","TX",11659 +2000-10-01,"Commercial Consumption","Maryland","MD",2747 +2000-10-01,"Commercial Consumption","Vermont","VT",127 +2000-10-01,"Commercial Consumption","Rhode Island","RI",667 +2000-10-01,"Commercial Consumption","Iowa","IA",2242 +2000-10-01,"Commercial Consumption","Arkansas","AR",1525 +2000-10-01,"Commercial Consumption","Louisiana","LA",1562 +2000-10-01,"Commercial Consumption","West Virginia","WV",1634 +2000-10-01,"Commercial Consumption","Oklahoma","OK",2064 +2000-10-01,"Commercial Consumption","Missouri","MO",3103 +2000-10-01,"Commercial Consumption","South Dakota","SD",476 +2000-10-01,"Commercial Consumption","Kansas","KS",1768 +2000-10-01,"Commercial Consumption","Michigan","MI",9294 +2000-10-01,"Commercial Consumption","Wyoming","WY",633 +2000-10-01,"Commercial Consumption","Colorado","CO",3529 +2000-10-01,"Commercial Consumption","Pennsylvania","PA",7835 +2000-10-01,"Commercial Consumption","Idaho","ID",690 +2000-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",99714 +2000-10-01,"Residential Consumption","North Carolina","NC",2450 +2000-10-01,"Residential Consumption","Louisiana","LA",2204 +2000-10-01,"Residential Consumption","Hawaii","HI",41 +2000-10-01,"Residential Consumption","Indiana","IN",6797 +2000-10-01,"Residential Consumption","Florida","FL",829 +2000-10-01,"Residential Consumption","Missouri","MO",4023 +2000-10-01,"Residential Consumption","Wyoming","WY",743 +2000-10-01,"Residential Consumption","West Virginia","WV",1372 +2000-10-01,"Residential Consumption","New York","NY",18636 +2000-10-01,"Residential Consumption","Wisconsin","WI",6852 +2000-10-01,"Residential Consumption","Utah","UT",3824 +2000-10-01,"Residential Consumption","Georgia","GA",6682 +2000-10-01,"Residential Consumption","New Mexico","NM",2505 +2000-10-01,"Residential Consumption","California","CA",31757 +2000-10-01,"Residential Consumption","Alaska","AK",1455 +2000-10-01,"Residential Consumption","Ohio","OH",15925 +2000-10-01,"Residential Consumption","Idaho","ID",859 +2000-10-01,"Residential Consumption","New Jersey","NJ",10449 +2000-10-01,"Residential Consumption","Montana","MT",1308 +2000-10-01,"Residential Consumption","Colorado","CO",5520 +2000-10-01,"Residential Consumption","Rhode Island","RI",722 +2000-10-01,"Residential Consumption","Mississippi","MS",1078 +2000-10-01,"Residential Consumption","Connecticut","CT",2262 +2000-10-01,"Residential Consumption","Vermont","VT",124 +2000-10-01,"Residential Consumption","Nevada","NV",1399 +2000-10-01,"Residential Consumption","District of Columbia","DC",553 +2000-10-01,"Residential Consumption","Maine","ME",63 +2000-10-01,"Residential Consumption","Kentucky","KY",2793 +2000-10-01,"Residential Consumption","Kansas","KS",2524 +2000-10-01,"Residential Consumption","Washington","WA",3234 +2000-10-01,"Residential Consumption","Arizona","AZ",1070 +2000-10-01,"Residential Consumption","Alabama","AL",1761 +2000-10-01,"Residential Consumption","U.S.","U.S.",235799 +2000-10-01,"Residential Consumption","Tennessee","TN",2384 +2000-10-01,"Residential Consumption","Nebraska","NE",1908 +2000-10-01,"Residential Consumption","Michigan","MI",17617 +2000-10-01,"Residential Consumption","North Dakota","ND",585 +2000-10-01,"Residential Consumption","Iowa","IA",3116 +2000-10-01,"Residential Consumption","South Dakota","SD",601 +2000-10-01,"Residential Consumption","Massachusetts","MA",4856 +2000-10-01,"Residential Consumption","New Hampshire","NH",302 +2000-10-01,"Residential Consumption","Texas","TX",8324 +2000-10-01,"Residential Consumption","Oregon","OR",1572 +2000-10-01,"Residential Consumption","Virginia","VA",3287 +2000-10-01,"Residential Consumption","Maryland","MD",3809 +2000-10-01,"Residential Consumption","Oklahoma","OK",2349 +2000-10-01,"Residential Consumption","Illinois","IL",21839 +2000-10-01,"Residential Consumption","South Carolina","SC",1007 +2000-10-01,"Residential Consumption","Minnesota","MN",6156 +2000-10-01,"Residential Consumption","Pennsylvania","PA",12518 +2000-10-01,"Residential Consumption","Arkansas","AR",1487 +2000-10-01,"Residential Consumption","Delaware","DE",270 +2000-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",1080 +2000-11-01,"Commercial Consumption","Wyoming","WY",1079 +2000-11-01,"Commercial Consumption","Utah","UT",4320 +2000-11-01,"Commercial Consumption","Oklahoma","OK",3428 +2000-11-01,"Commercial Consumption","Vermont","VT",212 +2000-11-01,"Commercial Consumption","California","CA",24057 +2000-11-01,"Commercial Consumption","Colorado","CO",5955 +2000-11-01,"Commercial Consumption","South Dakota","SD",1066 +2000-11-01,"Commercial Consumption","Montana","MT",1471 +2000-11-01,"Commercial Consumption","Rhode Island","RI",999 +2000-11-01,"Commercial Consumption","Ohio","OH",16308 +2000-11-01,"Commercial Consumption","Arkansas","AR",3970 +2000-11-01,"Commercial Consumption","Arizona","AZ",2403 +2000-11-01,"Commercial Consumption","Texas","TX",15172 +2000-11-01,"Commercial Consumption","Kansas","KS",3421 +2000-11-01,"Commercial Consumption","Nevada","NV",2431 +2000-11-01,"Commercial Consumption","South Carolina","SC",1784 +2000-11-01,"Commercial Consumption","New Jersey","NJ",12531 +2000-11-01,"Commercial Consumption","U.S.","U.S.",290024 +2000-11-01,"Commercial Consumption","Maryland","MD",4816 +2000-11-01,"Commercial Consumption","Iowa","IA",4831 +2000-11-01,"Commercial Consumption","Alabama","AL",1883 +2000-11-01,"Commercial Consumption","Indiana","IN",8877 +2000-11-01,"Commercial Consumption","North Dakota","ND",1165 +2000-11-01,"Commercial Consumption","North Carolina","NC",3964 +2000-11-01,"Commercial Consumption","Minnesota","MN",10570 +2000-11-01,"Commercial Consumption","Massachusetts","MA",5170 +2000-11-01,"Commercial Consumption","Wisconsin","WI",9099 +2000-11-01,"Commercial Consumption","Maine","ME",249 +2000-11-01,"Commercial Consumption","Georgia","GA",5922 +2000-11-01,"Commercial Consumption","Alaska","AK",2642 +2000-11-01,"Commercial Consumption","Connecticut","CT",4338 +2000-11-01,"Commercial Consumption","Louisiana","LA",2154 +2000-11-01,"Commercial Consumption","Washington","WA",5338 +2000-11-01,"Commercial Consumption","Virginia","VA",6545 +2000-11-01,"Commercial Consumption","Idaho","ID",1415 +2000-11-01,"Commercial Consumption","New York","NY",29217 +2000-11-01,"Commercial Consumption","Illinois","IL",21467 +2000-11-01,"Commercial Consumption","Pennsylvania","PA",13075 +2000-11-01,"Commercial Consumption","Kentucky","KY",4089 +2000-11-01,"Commercial Consumption","Hawaii","HI",152 +2000-11-01,"Commercial Consumption","Tennessee","TN",4436 +2000-11-01,"Commercial Consumption","West Virginia","WV",2209 +2000-11-01,"Commercial Consumption","New Mexico","NM",2568 +2000-11-01,"Commercial Consumption","Oregon","OR",2457 +2000-11-01,"Commercial Consumption","Missouri","MO",4976 +2000-11-01,"Commercial Consumption","New Hampshire","NH",931 +2000-11-01,"Commercial Consumption","Florida","FL",3954 +2000-11-01,"Commercial Consumption","Nebraska","NE",2151 +2000-11-01,"Commercial Consumption","Mississippi","MS",1824 +2000-11-01,"Commercial Consumption","Delaware","DE",421 +2000-11-01,"Commercial Consumption","Michigan","MI",15273 +2000-11-01,"Commercial Consumption","District of Columbia","DC",1236 +2000-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94863 +2000-11-01,"Residential Consumption","Mississippi","MS",1749 +2000-11-01,"Residential Consumption","Hawaii","HI",42 +2000-11-01,"Residential Consumption","Connecticut","CT",3793 +2000-11-01,"Residential Consumption","Utah","UT",8379 +2000-11-01,"Residential Consumption","Nebraska","NE",3682 +2000-11-01,"Residential Consumption","Michigan","MI",31816 +2000-11-01,"Residential Consumption","Texas","TX",15821 +2000-11-01,"Residential Consumption","North Carolina","NC",5969 +2000-11-01,"Residential Consumption","Wisconsin","WI",15551 +2000-11-01,"Residential Consumption","Maryland","MD",8114 +2000-11-01,"Residential Consumption","Nevada","NV",3228 +2000-11-01,"Residential Consumption","Indiana","IN",15595 +2000-11-01,"Residential Consumption","North Dakota","ND",1120 +2000-11-01,"Residential Consumption","Idaho","ID",2147 +2000-11-01,"Residential Consumption","Oklahoma","OK",5617 +2000-11-01,"Residential Consumption","Wyoming","WY",1302 +2000-11-01,"Residential Consumption","West Virginia","WV",2177 +2000-11-01,"Residential Consumption","Illinois","IL",55919 +2000-11-01,"Residential Consumption","Ohio","OH",32808 +2000-11-01,"Residential Consumption","Louisiana","LA",4251 +2000-11-01,"Residential Consumption","Minnesota","MN",14875 +2000-11-01,"Residential Consumption","Delaware","DE",615 +2000-11-01,"Residential Consumption","California","CA",52106 +2000-11-01,"Residential Consumption","New York","NY",33940 +2000-11-01,"Residential Consumption","Rhode Island","RI",1262 +2000-11-01,"Residential Consumption","South Dakota","SD",1375 +2000-11-01,"Residential Consumption","Kentucky","KY",8161 +2000-11-01,"Residential Consumption","Oregon","OR",3552 +2000-11-01,"Residential Consumption","Iowa","IA",8099 +2000-11-01,"Residential Consumption","Tennessee","TN",5209 +2000-11-01,"Residential Consumption","Pennsylvania","PA",23668 +2000-11-01,"Residential Consumption","Vermont","VT",210 +2000-11-01,"Residential Consumption","Virginia","VA",8190 +2000-11-01,"Residential Consumption","District of Columbia","DC",1069 +2000-11-01,"Residential Consumption","Maine","ME",96 +2000-11-01,"Residential Consumption","Florida","FL",994 +2000-11-01,"Residential Consumption","Arkansas","AR",5332 +2000-11-01,"Residential Consumption","New Jersey","NJ",20021 +2000-11-01,"Residential Consumption","Washington","WA",6796 +2000-11-01,"Residential Consumption","South Carolina","SC",2023 +2000-11-01,"Residential Consumption","Georgia","GA",15912 +2000-11-01,"Residential Consumption","New Hampshire","NH",566 +2000-11-01,"Residential Consumption","Alaska","AK",1749 +2000-11-01,"Residential Consumption","U.S.","U.S.",482600 +2000-11-01,"Residential Consumption","New Mexico","NM",4663 +2000-11-01,"Residential Consumption","Massachusetts","MA",9077 +2000-11-01,"Residential Consumption","Montana","MT",2411 +2000-11-01,"Residential Consumption","Colorado","CO",10855 +2000-11-01,"Residential Consumption","Kansas","KS",5602 +2000-11-01,"Residential Consumption","Missouri","MO",9302 +2000-11-01,"Residential Consumption","Arizona","AZ",2787 +2000-11-01,"Residential Consumption","Alabama","AL",3005 +2000-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",1045 +2000-12-01,"Commercial Consumption","West Virginia","WV",3536 +2000-12-01,"Commercial Consumption","North Carolina","NC",6824 +2000-12-01,"Commercial Consumption","Minnesota","MN",16905 +2000-12-01,"Commercial Consumption","Virginia","VA",10029 +2000-12-01,"Commercial Consumption","Missouri","MO",10670 +2000-12-01,"Commercial Consumption","Texas","TX",25572 +2000-12-01,"Commercial Consumption","Ohio","OH",31270 +2000-12-01,"Commercial Consumption","Alaska","AK",3075 +2000-12-01,"Commercial Consumption","Indiana","IN",17488 +2000-12-01,"Commercial Consumption","North Dakota","ND",2012 +2000-12-01,"Commercial Consumption","New Hampshire","NH",977 +2000-12-01,"Commercial Consumption","Kansas","KS",7239 +2000-12-01,"Commercial Consumption","Connecticut","CT",6598 +2000-12-01,"Commercial Consumption","California","CA",24997 +2000-12-01,"Commercial Consumption","Alabama","AL",3851 +2000-12-01,"Commercial Consumption","Oregon","OR",4076 +2000-12-01,"Commercial Consumption","Iowa","IA",9010 +2000-12-01,"Commercial Consumption","Tennessee","TN",8458 +2000-12-01,"Commercial Consumption","Michigan","MI",29545 +2000-12-01,"Commercial Consumption","Colorado","CO",9864 +2000-12-01,"Commercial Consumption","Utah","UT",5205 +2000-12-01,"Commercial Consumption","Pennsylvania","PA",23429 +2000-12-01,"Commercial Consumption","Maine","ME",439 +2000-12-01,"Commercial Consumption","Florida","FL",4774 +2000-12-01,"Commercial Consumption","Nevada","NV",2771 +2000-12-01,"Commercial Consumption","South Carolina","SC",3148 +2000-12-01,"Commercial Consumption","Massachusetts","MA",8390 +2000-12-01,"Commercial Consumption","Rhode Island","RI",1749 +2000-12-01,"Commercial Consumption","Arkansas","AR",6255 +2000-12-01,"Commercial Consumption","Mississippi","MS",3382 +2000-12-01,"Commercial Consumption","Louisiana","LA",3600 +2000-12-01,"Commercial Consumption","Illinois","IL",37604 +2000-12-01,"Commercial Consumption","District of Columbia","DC",2174 +2000-12-01,"Commercial Consumption","New Jersey","NJ",22681 +2000-12-01,"Commercial Consumption","Montana","MT",2131 +2000-12-01,"Commercial Consumption","U.S.","U.S.",472125 +2000-12-01,"Commercial Consumption","New York","NY",36393 +2000-12-01,"Commercial Consumption","Arizona","AZ",3650 +2000-12-01,"Commercial Consumption","Wyoming","WY",1368 +2000-12-01,"Commercial Consumption","Washington","WA",6488 +2000-12-01,"Commercial Consumption","New Mexico","NM",3910 +2000-12-01,"Commercial Consumption","Wisconsin","WI",15471 +2000-12-01,"Commercial Consumption","Kentucky","KY",8089 +2000-12-01,"Commercial Consumption","Maryland","MD",8042 +2000-12-01,"Commercial Consumption","Vermont","VT",327 +2000-12-01,"Commercial Consumption","Oklahoma","OK",7389 +2000-12-01,"Commercial Consumption","South Dakota","SD",1920 +2000-12-01,"Commercial Consumption","Georgia","GA",11100 +2000-12-01,"Commercial Consumption","Idaho","ID",2117 +2000-12-01,"Commercial Consumption","Hawaii","HI",145 +2000-12-01,"Commercial Consumption","Nebraska","NE",5284 +2000-12-01,"Commercial Consumption","Delaware","DE",704 +2000-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97918 +2000-12-01,"Residential Consumption","North Carolina","NC",12523 +2000-12-01,"Residential Consumption","Iowa","IA",15577 +2000-12-01,"Residential Consumption","South Dakota","SD",2621 +2000-12-01,"Residential Consumption","Nevada","NV",4950 +2000-12-01,"Residential Consumption","Indiana","IN",32899 +2000-12-01,"Residential Consumption","New Hampshire","NH",1033 +2000-12-01,"Residential Consumption","Kentucky","KY",15301 +2000-12-01,"Residential Consumption","Missouri","MO",23357 +2000-12-01,"Residential Consumption","Illinois","IL",99546 +2000-12-01,"Residential Consumption","Vermont","VT",376 +2000-12-01,"Residential Consumption","Idaho","ID",3272 +2000-12-01,"Residential Consumption","Arkansas","AR",10480 +2000-12-01,"Residential Consumption","Delaware","DE",1404 +2000-12-01,"Residential Consumption","U.S.","U.S.",914339 +2000-12-01,"Residential Consumption","Texas","TX",38615 +2000-12-01,"Residential Consumption","Hawaii","HI",44 +2000-12-01,"Residential Consumption","Wisconsin","WI",27807 +2000-12-01,"Residential Consumption","Utah","UT",9652 +2000-12-01,"Residential Consumption","Pennsylvania","PA",46950 +2000-12-01,"Residential Consumption","New Mexico","NM",6450 +2000-12-01,"Residential Consumption","Maine","ME",176 +2000-12-01,"Residential Consumption","North Dakota","ND",1904 +2000-12-01,"Residential Consumption","Montana","MT",3483 +2000-12-01,"Residential Consumption","Colorado","CO",20693 +2000-12-01,"Residential Consumption","Washington","WA",10887 +2000-12-01,"Residential Consumption","Connecticut","CT",6755 +2000-12-01,"Residential Consumption","Nebraska","NE",7044 +2000-12-01,"Residential Consumption","Maryland","MD",15652 +2000-12-01,"Residential Consumption","Michigan","MI",64797 +2000-12-01,"Residential Consumption","New York","NY",61072 +2000-12-01,"Residential Consumption","Ohio","OH",68498 +2000-12-01,"Residential Consumption","Virginia","VA",15690 +2000-12-01,"Residential Consumption","Georgia","GA",34149 +2000-12-01,"Residential Consumption","Arizona","AZ",5704 +2000-12-01,"Residential Consumption","Alaska","AK",2014 +2000-12-01,"Residential Consumption","South Carolina","SC",6012 +2000-12-01,"Residential Consumption","Oregon","OR",6028 +2000-12-01,"Residential Consumption","Louisiana","LA",9497 +2000-12-01,"Residential Consumption","Tennessee","TN",15140 +2000-12-01,"Residential Consumption","Massachusetts","MA",16794 +2000-12-01,"Residential Consumption","New Jersey","NJ",37333 +2000-12-01,"Residential Consumption","Kansas","KS",14346 +2000-12-01,"Residential Consumption","Oklahoma","OK",14081 +2000-12-01,"Residential Consumption","West Virginia","WV",5331 +2000-12-01,"Residential Consumption","Rhode Island","RI",2487 +2000-12-01,"Residential Consumption","Mississippi","MS",5383 +2000-12-01,"Residential Consumption","Minnesota","MN",26803 +2000-12-01,"Residential Consumption","District of Columbia","DC",2557 +2000-12-01,"Residential Consumption","Florida","FL",1940 +2000-12-01,"Residential Consumption","California","CA",68470 +2000-12-01,"Residential Consumption","Alabama","AL",8686 +2000-12-01,"Residential Consumption","Wyoming","WY",2076 +2000-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",1080 +2001-01-01,"Commercial Consumption","South Carolina","SC",3672 +2001-01-01,"Commercial Consumption","Oregon","OR",4271 +2001-01-01,"Commercial Consumption","Virginia","VA",10329 +2001-01-01,"Commercial Consumption","Kansas","KS",8040 +2001-01-01,"Commercial Consumption","Mississippi","MS",4353 +2001-01-01,"Commercial Consumption","Utah","UT",5472 +2001-01-01,"Commercial Consumption","Pennsylvania","PA",24955 +2001-01-01,"Commercial Consumption","Missouri","MO",14006 +2001-01-01,"Commercial Consumption","Wisconsin","WI",13406 +2001-01-01,"Commercial Consumption","New Hampshire","NH",1123 +2001-01-01,"Commercial Consumption","Georgia","GA",9892 +2001-01-01,"Commercial Consumption","Ohio","OH",33726 +2001-01-01,"Commercial Consumption","Arizona","AZ",3934 +2001-01-01,"Commercial Consumption","Louisiana","LA",4007 +2001-01-01,"Commercial Consumption","North Dakota","ND",1763 +2001-01-01,"Commercial Consumption","Colorado","CO",11844 +2001-01-01,"Commercial Consumption","Idaho","ID",2375 +2001-01-01,"Commercial Consumption","Hawaii","HI",154 +2001-01-01,"Commercial Consumption","Alaska","AK",1827 +2001-01-01,"Commercial Consumption","Connecticut","CT",6682 +2001-01-01,"Commercial Consumption","Arkansas","AR",5883 +2001-01-01,"Commercial Consumption","Alabama","AL",5552 +2001-01-01,"Commercial Consumption","New York","NY",39080 +2001-01-01,"Commercial Consumption","Delaware","DE",1045 +2001-01-01,"Commercial Consumption","Nevada","NV",2816 +2001-01-01,"Commercial Consumption","District of Columbia","DC",2383 +2001-01-01,"Commercial Consumption","Minnesota","MN",16467 +2001-01-01,"Commercial Consumption","New Mexico","NM",4306 +2001-01-01,"Commercial Consumption","Nebraska","NE",3941 +2001-01-01,"Commercial Consumption","Wyoming","WY",1666 +2001-01-01,"Commercial Consumption","Maine","ME",483 +2001-01-01,"Commercial Consumption","U.S.","U.S.",500267 +2001-01-01,"Commercial Consumption","West Virginia","WV",4230 +2001-01-01,"Commercial Consumption","Massachusetts","MA",10123 +2001-01-01,"Commercial Consumption","South Dakota","SD",1511 +2001-01-01,"Commercial Consumption","Montana","MT",2259 +2001-01-01,"Commercial Consumption","Texas","TX",28090 +2001-01-01,"Commercial Consumption","Florida","FL",5595 +2001-01-01,"Commercial Consumption","Iowa","IA",8964 +2001-01-01,"Commercial Consumption","Tennessee","TN",12356 +2001-01-01,"Commercial Consumption","Michigan","MI",31736 +2001-01-01,"Commercial Consumption","Illinois","IL",34687 +2001-01-01,"Commercial Consumption","Washington","WA",7023 +2001-01-01,"Commercial Consumption","North Carolina","NC",7812 +2001-01-01,"Commercial Consumption","Rhode Island","RI",2149 +2001-01-01,"Commercial Consumption","Indiana","IN",16387 +2001-01-01,"Commercial Consumption","Oklahoma","OK",8895 +2001-01-01,"Commercial Consumption","New Jersey","NJ",23404 +2001-01-01,"Commercial Consumption","Kentucky","KY",7901 +2001-01-01,"Commercial Consumption","Maryland","MD",9749 +2001-01-01,"Commercial Consumption","Vermont","VT",447 +2001-01-01,"Commercial Consumption","California","CA",27492 +2001-01-01,"Delivered to Consumers","Delaware","DE",5014 +2001-01-01,"Delivered to Consumers","Wyoming","WY",7475 +2001-01-01,"Delivered to Consumers","Alaska","AK",12927 +2001-01-01,"Delivered to Consumers","Kansas","KS",35585 +2001-01-01,"Delivered to Consumers","Idaho","ID",9061 +2001-01-01,"Delivered to Consumers","Tennessee","TN",43045 +2001-01-01,"Delivered to Consumers","New Jersey","NJ",79986 +2001-01-01,"Delivered to Consumers","Arizona","AZ",19804 +2001-01-01,"Delivered to Consumers","Minnesota","MN",49278 +2001-01-01,"Delivered to Consumers","South Dakota","SD",4302 +2001-01-01,"Delivered to Consumers","Montana","MT",7993 +2001-01-01,"Delivered to Consumers","Massachusetts","MA",45181 +2001-01-01,"Delivered to Consumers","California","CA",256236 +2001-01-01,"Delivered to Consumers","Georgia","GA",49414 +2001-01-01,"Delivered to Consumers","District of Columbia","DC",5440 +2001-01-01,"Delivered to Consumers","Indiana","IN",77275 +2001-01-01,"Delivered to Consumers","Iowa","IA",33183 +2001-01-01,"Delivered to Consumers","Texas","TX",362844 +2001-01-01,"Delivered to Consumers","Florida","FL",34086 +2001-01-01,"Delivered to Consumers","U.S.","U.S.",2505011 +2001-01-01,"Delivered to Consumers","Hawaii","HI",253 +2001-01-01,"Delivered to Consumers","Ohio","OH",136340 +2001-01-01,"Delivered to Consumers","Kentucky","KY",31659 +2001-01-01,"Delivered to Consumers","Arkansas","AR",26139 +2001-01-01,"Delivered to Consumers","Wisconsin","WI",52126 +2001-01-01,"Delivered to Consumers","Washington","WA",31231 +2001-01-01,"Delivered to Consumers","New Hampshire","NH",3171 +2001-01-01,"Delivered to Consumers","North Dakota","ND",4834 +2001-01-01,"Delivered to Consumers","Rhode Island","RI",9425 +2001-01-01,"Delivered to Consumers","New York","NY",135000 +2001-01-01,"Delivered to Consumers","North Carolina","NC",29800 +2001-01-01,"Delivered to Consumers","Nevada","NV",19952 +2001-01-01,"Delivered to Consumers","Maine","ME",6537 +2001-01-01,"Delivered to Consumers","Utah","UT",20043 +2001-01-01,"Delivered to Consumers","Illinois","IL",151699 +2001-01-01,"Delivered to Consumers","Maryland","MD",28398 +2001-01-01,"Delivered to Consumers","Oklahoma","OK",45337 +2001-01-01,"Delivered to Consumers","Mississippi","MS",26479 +2001-01-01,"Delivered to Consumers","Colorado","CO",57089 +2001-01-01,"Delivered to Consumers","South Carolina","SC",17028 +2001-01-01,"Delivered to Consumers","Louisiana","LA",90750 +2001-01-01,"Delivered to Consumers","New Mexico","NM",16499 +2001-01-01,"Delivered to Consumers","Michigan","MI",133140 +2001-01-01,"Delivered to Consumers","Connecticut","CT",18442 +2001-01-01,"Delivered to Consumers","Alabama","AL",36984 +2001-01-01,"Delivered to Consumers","Pennsylvania","PA",96012 +2001-01-01,"Delivered to Consumers","West Virginia","WV",14634 +2001-01-01,"Delivered to Consumers","Vermont","VT",1164 +2001-01-01,"Delivered to Consumers","Virginia","VA",34325 +2001-01-01,"Delivered to Consumers","Nebraska","NE",17481 +2001-01-01,"Delivered to Consumers","Missouri","MO",51986 +2001-01-01,"Delivered to Consumers","Oregon","OR",21689 +2001-01-01,"Electric Power Consumption","Oklahoma","OK",9448 +2001-01-01,"Electric Power Consumption","Virginia","VA",1606 +2001-01-01,"Electric Power Consumption","New Jersey","NJ",5662 +2001-01-01,"Electric Power Consumption","Idaho","ID",113 +2001-01-01,"Electric Power Consumption","South Carolina","SC",357 +2001-01-01,"Electric Power Consumption","Rhode Island","RI",3422 +2001-01-01,"Electric Power Consumption","Oregon","OR",5971 +2001-01-01,"Electric Power Consumption","Wisconsin","WI",802 +2001-01-01,"Electric Power Consumption","Wyoming","WY",229 +2001-01-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-01-01,"Electric Power Consumption","Alaska","AK",3189 +2001-01-01,"Electric Power Consumption","Nevada","NV",10583 +2001-01-01,"Electric Power Consumption","U.S.","U.S.",340292 +2001-01-01,"Electric Power Consumption","Maine","ME",4548 +2001-01-01,"Electric Power Consumption","Hawaii","HI",0 +2001-01-01,"Electric Power Consumption","Ohio","OH",281 +2001-01-01,"Electric Power Consumption","Connecticut","CT",1038 +2001-01-01,"Electric Power Consumption","Arizona","AZ",7206 +2001-01-01,"Electric Power Consumption","Texas","TX",101920 +2001-01-01,"Electric Power Consumption","Utah","UT",1408 +2001-01-01,"Electric Power Consumption","West Virginia","WV",19 +2001-01-01,"Electric Power Consumption","Mississippi","MS",3552 +2001-01-01,"Electric Power Consumption","Kentucky","KY",68 +2001-01-01,"Electric Power Consumption","Delaware","DE",78 +2001-01-01,"Electric Power Consumption","Alabama","AL",3691 +2001-01-01,"Electric Power Consumption","Arkansas","AR",1668 +2001-01-01,"Electric Power Consumption","Pennsylvania","PA",486 +2001-01-01,"Electric Power Consumption","Vermont","VT",31 +2001-01-01,"Electric Power Consumption","South Dakota","SD",107 +2001-01-01,"Electric Power Consumption","Missouri","MO",485 +2001-01-01,"Electric Power Consumption","Maryland","MD",369 +2001-01-01,"Electric Power Consumption","Indiana","IN",1009 +2001-01-01,"Electric Power Consumption","Georgia","GA",401 +2001-01-01,"Electric Power Consumption","Florida","FL",17288 +2001-01-01,"Electric Power Consumption","New Mexico","NM",2734 +2001-01-01,"Electric Power Consumption","Minnesota","MN",545 +2001-01-01,"Electric Power Consumption","Iowa","IA",232 +2001-01-01,"Electric Power Consumption","Tennessee","TN",0 +2001-01-01,"Electric Power Consumption","Nebraska","NE",60 +2001-01-01,"Electric Power Consumption","Montana","MT",2 +2001-01-01,"Electric Power Consumption","Michigan","MI",9024 +2001-01-01,"Electric Power Consumption","North Dakota","ND",0 +2001-01-01,"Electric Power Consumption","California","CA",90070 +2001-01-01,"Electric Power Consumption","Washington","WA",6896 +2001-01-01,"Electric Power Consumption","Louisiana","LA",14443 +2001-01-01,"Electric Power Consumption","Colorado","CO",6024 +2001-01-01,"Electric Power Consumption","New York","NY",16162 +2001-01-01,"Electric Power Consumption","Illinois","IL",1094 +2001-01-01,"Electric Power Consumption","Massachusetts","MA",5015 +2001-01-01,"Electric Power Consumption","Kansas","KS",754 +2001-01-01,"Electric Power Consumption","North Carolina","NC",200 +2001-01-01,"Industrial Consumption","Oklahoma","OK",10099 +2001-01-01,"Industrial Consumption","Louisiana","LA",59442 +2001-01-01,"Industrial Consumption","Kansas","KS",9002 +2001-01-01,"Industrial Consumption","New Jersey","NJ",7509 +2001-01-01,"Industrial Consumption","Illinois","IL",30126 +2001-01-01,"Industrial Consumption","North Carolina","NC",7082 +2001-01-01,"Industrial Consumption","Montana","MT",2448 +2001-01-01,"Industrial Consumption","Washington","WA",6226 +2001-01-01,"Industrial Consumption","Utah","UT",3150 +2001-01-01,"Industrial Consumption","Oregon","OR",5124 +2001-01-01,"Industrial Consumption","Rhode Island","RI",382 +2001-01-01,"Industrial Consumption","Georgia","GA",11025 +2001-01-01,"Industrial Consumption","Maryland","MD",2601 +2001-01-01,"Industrial Consumption","U.S.","U.S.",686540 +2001-01-01,"Industrial Consumption","Nebraska","NE",3350 +2001-01-01,"Industrial Consumption","Virginia","VA",5554 +2001-01-01,"Industrial Consumption","Vermont","VT",142 +2001-01-01,"Industrial Consumption","Wyoming","WY",3730 +2001-01-01,"Industrial Consumption","Tennessee","TN",10974 +2001-01-01,"Industrial Consumption","Connecticut","CT",2225 +2001-01-01,"Industrial Consumption","North Dakota","ND",1307 +2001-01-01,"Industrial Consumption","Ohio","OH",37109 +2001-01-01,"Industrial Consumption","Alabama","AL",14252 +2001-01-01,"Industrial Consumption","Texas","TX",182736 +2001-01-01,"Industrial Consumption","West Virginia","WV",3688 +2001-01-01,"Industrial Consumption","Iowa","IA",9174 +2001-01-01,"Industrial Consumption","Michigan","MI",25494 +2001-01-01,"Industrial Consumption","California","CA",53179 +2001-01-01,"Industrial Consumption","Arkansas","AR",10671 +2001-01-01,"Industrial Consumption","Wisconsin","WI",14962 +2001-01-01,"Industrial Consumption","Idaho","ID",3074 +2001-01-01,"Industrial Consumption","District of Columbia","DC",0 +2001-01-01,"Industrial Consumption","New Mexico","NM",2862 +2001-01-01,"Industrial Consumption","Arizona","AZ",1898 +2001-01-01,"Industrial Consumption","New York","NY",9291 +2001-01-01,"Industrial Consumption","Mississippi","MS",10677 +2001-01-01,"Industrial Consumption","South Carolina","SC",4868 +2001-01-01,"Industrial Consumption","Minnesota","MN",9110 +2001-01-01,"Industrial Consumption","Indiana","IN",26677 +2001-01-01,"Industrial Consumption","Delaware","DE",1989 +2001-01-01,"Industrial Consumption","Alaska","AK",6025 +2001-01-01,"Industrial Consumption","Missouri","MO",8526 +2001-01-01,"Industrial Consumption","Nevada","NV",1012 +2001-01-01,"Industrial Consumption","Maine","ME",1331 +2001-01-01,"Industrial Consumption","New Hampshire","NH",793 +2001-01-01,"Industrial Consumption","Kentucky","KY",11054 +2001-01-01,"Industrial Consumption","Massachusetts","MA",9223 +2001-01-01,"Industrial Consumption","Hawaii","HI",51 +2001-01-01,"Industrial Consumption","Colorado","CO",17268 +2001-01-01,"Industrial Consumption","South Dakota","SD",513 +2001-01-01,"Industrial Consumption","Pennsylvania","PA",19623 +2001-01-01,"Industrial Consumption","Florida","FL",7915 +2001-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95602 +2001-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",76386 +2001-01-01,"Residential Consumption","North Carolina","NC",14705 +2001-01-01,"Residential Consumption","Hawaii","HI",48 +2001-01-01,"Residential Consumption","Virginia","VA",16837 +2001-01-01,"Residential Consumption","Michigan","MI",66886 +2001-01-01,"Residential Consumption","Arkansas","AR",7917 +2001-01-01,"Residential Consumption","New Jersey","NJ",43411 +2001-01-01,"Residential Consumption","California","CA",85495 +2001-01-01,"Residential Consumption","Vermont","VT",544 +2001-01-01,"Residential Consumption","Utah","UT",10012 +2001-01-01,"Residential Consumption","Pennsylvania","PA",50948 +2001-01-01,"Residential Consumption","North Dakota","ND",1763 +2001-01-01,"Residential Consumption","Arizona","AZ",6767 +2001-01-01,"Residential Consumption","Wyoming","WY",1851 +2001-01-01,"Residential Consumption","Iowa","IA",14813 +2001-01-01,"Residential Consumption","Colorado","CO",21953 +2001-01-01,"Residential Consumption","Missouri","MO",28969 +2001-01-01,"Residential Consumption","Alabama","AL",13490 +2001-01-01,"Residential Consumption","West Virginia","WV",6696 +2001-01-01,"Residential Consumption","Maryland","MD",15679 +2001-01-01,"Residential Consumption","South Dakota","SD",2172 +2001-01-01,"Residential Consumption","Georgia","GA",28095 +2001-01-01,"Residential Consumption","District of Columbia","DC",3057 +2001-01-01,"Residential Consumption","Indiana","IN",33201 +2001-01-01,"Residential Consumption","Washington","WA",11086 +2001-01-01,"Residential Consumption","South Carolina","SC",8131 +2001-01-01,"Residential Consumption","Rhode Island","RI",3471 +2001-01-01,"Residential Consumption","Ohio","OH",65224 +2001-01-01,"Residential Consumption","Louisiana","LA",12858 +2001-01-01,"Residential Consumption","Nebraska","NE",10130 +2001-01-01,"Residential Consumption","Nevada","NV",5541 +2001-01-01,"Residential Consumption","Massachusetts","MA",20821 +2001-01-01,"Residential Consumption","Montana","MT",3284 +2001-01-01,"Residential Consumption","Illinois","IL",85792 +2001-01-01,"Residential Consumption","Wisconsin","WI",22957 +2001-01-01,"Residential Consumption","New Mexico","NM",6597 +2001-01-01,"Residential Consumption","New Hampshire","NH",1255 +2001-01-01,"Residential Consumption","Delaware","DE",1902 +2001-01-01,"Residential Consumption","Texas","TX",50098 +2001-01-01,"Residential Consumption","Tennessee","TN",19716 +2001-01-01,"Residential Consumption","Minnesota","MN",23155 +2001-01-01,"Residential Consumption","Florida","FL",3289 +2001-01-01,"Residential Consumption","Idaho","ID",3499 +2001-01-01,"Residential Consumption","Kentucky","KY",12636 +2001-01-01,"Residential Consumption","Kansas","KS",17789 +2001-01-01,"Residential Consumption","Oklahoma","OK",16896 +2001-01-01,"Residential Consumption","Alaska","AK",1885 +2001-01-01,"Residential Consumption","Oregon","OR",6324 +2001-01-01,"Residential Consumption","Mississippi","MS",7897 +2001-01-01,"Residential Consumption","Connecticut","CT",8497 +2001-01-01,"Residential Consumption","Maine","ME",175 +2001-01-01,"Residential Consumption","U.S.","U.S.",976677 +2001-01-01,"Residential Consumption","New York","NY",70467 +2001-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",1235 +2001-02-01,"Commercial Consumption","Wyoming","WY",1435 +2001-02-01,"Commercial Consumption","West Virginia","WV",3447 +2001-02-01,"Commercial Consumption","South Carolina","SC",2595 +2001-02-01,"Commercial Consumption","North Dakota","ND",1774 +2001-02-01,"Commercial Consumption","Missouri","MO",10971 +2001-02-01,"Commercial Consumption","Connecticut","CT",5953 +2001-02-01,"Commercial Consumption","Alabama","AL",4007 +2001-02-01,"Commercial Consumption","Minnesota","MN",15361 +2001-02-01,"Commercial Consumption","New Jersey","NJ",20468 +2001-02-01,"Commercial Consumption","Maine","ME",409 +2001-02-01,"Commercial Consumption","Iowa","IA",7805 +2001-02-01,"Commercial Consumption","New York","NY",36148 +2001-02-01,"Commercial Consumption","Indiana","IN",12430 +2001-02-01,"Commercial Consumption","Louisiana","LA",3125 +2001-02-01,"Commercial Consumption","Oregon","OR",3960 +2001-02-01,"Commercial Consumption","South Dakota","SD",1675 +2001-02-01,"Commercial Consumption","New Hampshire","NH",1425 +2001-02-01,"Commercial Consumption","Alaska","AK",1690 +2001-02-01,"Commercial Consumption","Tennessee","TN",8201 +2001-02-01,"Commercial Consumption","Washington","WA",6720 +2001-02-01,"Commercial Consumption","Montana","MT",2736 +2001-02-01,"Commercial Consumption","Maryland","MD",7337 +2001-02-01,"Commercial Consumption","Nebraska","NE",4792 +2001-02-01,"Commercial Consumption","Mississippi","MS",2794 +2001-02-01,"Commercial Consumption","Nevada","NV",2775 +2001-02-01,"Commercial Consumption","Kansas","KS",6415 +2001-02-01,"Commercial Consumption","Georgia","GA",6455 +2001-02-01,"Commercial Consumption","Delaware","DE",869 +2001-02-01,"Commercial Consumption","Illinois","IL",30186 +2001-02-01,"Commercial Consumption","Colorado","CO",9309 +2001-02-01,"Commercial Consumption","Utah","UT",4504 +2001-02-01,"Commercial Consumption","Wisconsin","WI",12321 +2001-02-01,"Commercial Consumption","Vermont","VT",374 +2001-02-01,"Commercial Consumption","Idaho","ID",2285 +2001-02-01,"Commercial Consumption","Pennsylvania","PA",20519 +2001-02-01,"Commercial Consumption","U.S.","U.S.",422407 +2001-02-01,"Commercial Consumption","Rhode Island","RI",1931 +2001-02-01,"Commercial Consumption","California","CA",25562 +2001-02-01,"Commercial Consumption","Arizona","AZ",3716 +2001-02-01,"Commercial Consumption","North Carolina","NC",5397 +2001-02-01,"Commercial Consumption","New Mexico","NM",4454 +2001-02-01,"Commercial Consumption","Oklahoma","OK",6563 +2001-02-01,"Commercial Consumption","Virginia","VA",8011 +2001-02-01,"Commercial Consumption","Massachusetts","MA",8942 +2001-02-01,"Commercial Consumption","Kentucky","KY",5421 +2001-02-01,"Commercial Consumption","Texas","TX",20556 +2001-02-01,"Commercial Consumption","Florida","FL",5208 +2001-02-01,"Commercial Consumption","Ohio","OH",29565 +2001-02-01,"Commercial Consumption","Hawaii","HI",151 +2001-02-01,"Commercial Consumption","Arkansas","AR",4212 +2001-02-01,"Commercial Consumption","Michigan","MI",27202 +2001-02-01,"Commercial Consumption","District of Columbia","DC",2246 +2001-02-01,"Delivered to Consumers","Utah","UT",17426 +2001-02-01,"Delivered to Consumers","Indiana","IN",61840 +2001-02-01,"Delivered to Consumers","Delaware","DE",4742 +2001-02-01,"Delivered to Consumers","Ohio","OH",110078 +2001-02-01,"Delivered to Consumers","Kentucky","KY",23182 +2001-02-01,"Delivered to Consumers","Alabama","AL",28384 +2001-02-01,"Delivered to Consumers","Nebraska","NE",15747 +2001-02-01,"Delivered to Consumers","Louisiana","LA",82773 +2001-02-01,"Delivered to Consumers","Wyoming","WY",6484 +2001-02-01,"Delivered to Consumers","Montana","MT",8301 +2001-02-01,"Delivered to Consumers","Idaho","ID",8656 +2001-02-01,"Delivered to Consumers","Iowa","IA",29626 +2001-02-01,"Delivered to Consumers","Virginia","VA",27001 +2001-02-01,"Delivered to Consumers","Nevada","NV",19433 +2001-02-01,"Delivered to Consumers","Alaska","AK",11677 +2001-02-01,"Delivered to Consumers","Massachusetts","MA",40868 +2001-02-01,"Delivered to Consumers","Colorado","CO",50447 +2001-02-01,"Delivered to Consumers","New Jersey","NJ",68763 +2001-02-01,"Delivered to Consumers","Georgia","GA",34292 +2001-02-01,"Delivered to Consumers","Arizona","AZ",23088 +2001-02-01,"Delivered to Consumers","Washington","WA",31904 +2001-02-01,"Delivered to Consumers","Minnesota","MN",47192 +2001-02-01,"Delivered to Consumers","New York","NY",121033 +2001-02-01,"Delivered to Consumers","Maryland","MD",21618 +2001-02-01,"Delivered to Consumers","Kansas","KS",27368 +2001-02-01,"Delivered to Consumers","Michigan","MI",112047 +2001-02-01,"Delivered to Consumers","Wisconsin","WI",51020 +2001-02-01,"Delivered to Consumers","Pennsylvania","PA",79547 +2001-02-01,"Delivered to Consumers","Missouri","MO",40694 +2001-02-01,"Delivered to Consumers","South Carolina","SC",13472 +2001-02-01,"Delivered to Consumers","Oregon","OR",25019 +2001-02-01,"Delivered to Consumers","West Virginia","WV",12224 +2001-02-01,"Delivered to Consumers","Vermont","VT",1003 +2001-02-01,"Delivered to Consumers","Illinois","IL",132638 +2001-02-01,"Delivered to Consumers","South Dakota","SD",4607 +2001-02-01,"Delivered to Consumers","Oklahoma","OK",36026 +2001-02-01,"Delivered to Consumers","Arkansas","AR",20654 +2001-02-01,"Delivered to Consumers","Mississippi","MS",16635 +2001-02-01,"Delivered to Consumers","District of Columbia","DC",4546 +2001-02-01,"Delivered to Consumers","New Mexico","NM",17404 +2001-02-01,"Delivered to Consumers","Hawaii","HI",237 +2001-02-01,"Delivered to Consumers","Maine","ME",6903 +2001-02-01,"Delivered to Consumers","New Hampshire","NH",3309 +2001-02-01,"Delivered to Consumers","Florida","FL",30338 +2001-02-01,"Delivered to Consumers","Rhode Island","RI",8875 +2001-02-01,"Delivered to Consumers","U.S.","U.S.",2156873 +2001-02-01,"Delivered to Consumers","Tennessee","TN",30197 +2001-02-01,"Delivered to Consumers","Connecticut","CT",15861 +2001-02-01,"Delivered to Consumers","North Carolina","NC",21808 +2001-02-01,"Delivered to Consumers","California","CA",225525 +2001-02-01,"Delivered to Consumers","Texas","TX",318006 +2001-02-01,"Delivered to Consumers","North Dakota","ND",5238 +2001-02-01,"Electric Power Consumption","Washington","WA",8729 +2001-02-01,"Electric Power Consumption","New Mexico","NM",3646 +2001-02-01,"Electric Power Consumption","Arkansas","AR",392 +2001-02-01,"Electric Power Consumption","Wisconsin","WI",1745 +2001-02-01,"Electric Power Consumption","Tennessee","TN",0 +2001-02-01,"Electric Power Consumption","South Dakota","SD",302 +2001-02-01,"Electric Power Consumption","North Dakota","ND",0 +2001-02-01,"Electric Power Consumption","Indiana","IN",1490 +2001-02-01,"Electric Power Consumption","Alabama","AL",1856 +2001-02-01,"Electric Power Consumption","Idaho","ID",105 +2001-02-01,"Electric Power Consumption","West Virginia","WV",66 +2001-02-01,"Electric Power Consumption","Connecticut","CT",1552 +2001-02-01,"Electric Power Consumption","California","CA",78688 +2001-02-01,"Electric Power Consumption","Louisiana","LA",11997 +2001-02-01,"Electric Power Consumption","Texas","TX",87176 +2001-02-01,"Electric Power Consumption","Oklahoma","OK",6927 +2001-02-01,"Electric Power Consumption","Utah","UT",1508 +2001-02-01,"Electric Power Consumption","Oregon","OR",7343 +2001-02-01,"Electric Power Consumption","Iowa","IA",179 +2001-02-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-02-01,"Electric Power Consumption","Maryland","MD",496 +2001-02-01,"Electric Power Consumption","Florida","FL",15149 +2001-02-01,"Electric Power Consumption","Virginia","VA",700 +2001-02-01,"Electric Power Consumption","South Carolina","SC",252 +2001-02-01,"Electric Power Consumption","Minnesota","MN",650 +2001-02-01,"Electric Power Consumption","Michigan","MI",7813 +2001-02-01,"Electric Power Consumption","Pennsylvania","PA",712 +2001-02-01,"Electric Power Consumption","Nevada","NV",10261 +2001-02-01,"Electric Power Consumption","Wyoming","WY",229 +2001-02-01,"Electric Power Consumption","Massachusetts","MA",4464 +2001-02-01,"Electric Power Consumption","U.S.","U.S.",312843 +2001-02-01,"Electric Power Consumption","Delaware","DE",189 +2001-02-01,"Electric Power Consumption","Arizona","AZ",10178 +2001-02-01,"Electric Power Consumption","Alaska","AK",2833 +2001-02-01,"Electric Power Consumption","New Jersey","NJ",6141 +2001-02-01,"Electric Power Consumption","Rhode Island","RI",3534 +2001-02-01,"Electric Power Consumption","Vermont","VT",3 +2001-02-01,"Electric Power Consumption","North Carolina","NC",103 +2001-02-01,"Electric Power Consumption","Missouri","MO",658 +2001-02-01,"Electric Power Consumption","Hawaii","HI",0 +2001-02-01,"Electric Power Consumption","Montana","MT",1 +2001-02-01,"Electric Power Consumption","Colorado","CO",6704 +2001-02-01,"Electric Power Consumption","Illinois","IL",2859 +2001-02-01,"Electric Power Consumption","Kansas","KS",698 +2001-02-01,"Electric Power Consumption","Mississippi","MS",1877 +2001-02-01,"Electric Power Consumption","Kentucky","KY",70 +2001-02-01,"Electric Power Consumption","Ohio","OH",271 +2001-02-01,"Electric Power Consumption","New York","NY",16176 +2001-02-01,"Electric Power Consumption","Nebraska","NE",81 +2001-02-01,"Electric Power Consumption","Maine","ME",5484 +2001-02-01,"Electric Power Consumption","Georgia","GA",554 +2001-02-01,"Industrial Consumption","South Dakota","SD",451 +2001-02-01,"Industrial Consumption","Oregon","OR",7777 +2001-02-01,"Industrial Consumption","Kentucky","KY",8742 +2001-02-01,"Industrial Consumption","District of Columbia","DC",0 +2001-02-01,"Industrial Consumption","Massachusetts","MA",9199 +2001-02-01,"Industrial Consumption","Hawaii","HI",43 +2001-02-01,"Industrial Consumption","Colorado","CO",13981 +2001-02-01,"Industrial Consumption","Mississippi","MS",6909 +2001-02-01,"Industrial Consumption","Maine","ME",855 +2001-02-01,"Industrial Consumption","Vermont","VT",180 +2001-02-01,"Industrial Consumption","Florida","FL",7333 +2001-02-01,"Industrial Consumption","Georgia","GA",10991 +2001-02-01,"Industrial Consumption","Utah","UT",3254 +2001-02-01,"Industrial Consumption","Nebraska","NE",3088 +2001-02-01,"Industrial Consumption","Wisconsin","WI",14885 +2001-02-01,"Industrial Consumption","Michigan","MI",22752 +2001-02-01,"Industrial Consumption","Alaska","AK",5327 +2001-02-01,"Industrial Consumption","New Mexico","NM",2583 +2001-02-01,"Industrial Consumption","Arizona","AZ",2093 +2001-02-01,"Industrial Consumption","Arkansas","AR",9476 +2001-02-01,"Industrial Consumption","Wyoming","WY",2988 +2001-02-01,"Industrial Consumption","New Jersey","NJ",7665 +2001-02-01,"Industrial Consumption","Indiana","IN",23164 +2001-02-01,"Industrial Consumption","North Dakota","ND",1550 +2001-02-01,"Industrial Consumption","Montana","MT",2226 +2001-02-01,"Industrial Consumption","Missouri","MO",7720 +2001-02-01,"Industrial Consumption","Louisiana","LA",59434 +2001-02-01,"Industrial Consumption","Washington","WA",5473 +2001-02-01,"Industrial Consumption","Ohio","OH",29330 +2001-02-01,"Industrial Consumption","Kansas","KS",8035 +2001-02-01,"Industrial Consumption","Alabama","AL",13534 +2001-02-01,"Industrial Consumption","West Virginia","WV",3436 +2001-02-01,"Industrial Consumption","Idaho","ID",2803 +2001-02-01,"Industrial Consumption","Iowa","IA",8509 +2001-02-01,"Industrial Consumption","Illinois","IL",27294 +2001-02-01,"Industrial Consumption","Delaware","DE",2006 +2001-02-01,"Industrial Consumption","Maryland","MD",2365 +2001-02-01,"Industrial Consumption","Nevada","NV",976 +2001-02-01,"Industrial Consumption","Virginia","VA",5924 +2001-02-01,"Industrial Consumption","North Carolina","NC",6749 +2001-02-01,"Industrial Consumption","Texas","TX",173653 +2001-02-01,"Industrial Consumption","Tennessee","TN",10081 +2001-02-01,"Industrial Consumption","New Hampshire","NH",750 +2001-02-01,"Industrial Consumption","Minnesota","MN",8557 +2001-02-01,"Industrial Consumption","Connecticut","CT",2099 +2001-02-01,"Industrial Consumption","Rhode Island","RI",444 +2001-02-01,"Industrial Consumption","Oklahoma","OK",10890 +2001-02-01,"Industrial Consumption","U.S.","U.S.",640026 +2001-02-01,"Industrial Consumption","Pennsylvania","PA",18719 +2001-02-01,"Industrial Consumption","New York","NY",8449 +2001-02-01,"Industrial Consumption","California","CA",49474 +2001-02-01,"Industrial Consumption","South Carolina","SC",5810 +2001-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86821 +2001-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",65770 +2001-02-01,"Residential Consumption","Texas","TX",36621 +2001-02-01,"Residential Consumption","Mississippi","MS",5056 +2001-02-01,"Residential Consumption","Virginia","VA",12367 +2001-02-01,"Residential Consumption","Idaho","ID",3464 +2001-02-01,"Residential Consumption","U.S.","U.S.",780482 +2001-02-01,"Residential Consumption","North Carolina","NC",9561 +2001-02-01,"Residential Consumption","Nevada","NV",5420 +2001-02-01,"Residential Consumption","District of Columbia","DC",2300 +2001-02-01,"Residential Consumption","Maine","ME",154 +2001-02-01,"Residential Consumption","Indiana","IN",24756 +2001-02-01,"Residential Consumption","Washington","WA",10982 +2001-02-01,"Residential Consumption","Oklahoma","OK",11646 +2001-02-01,"Residential Consumption","Missouri","MO",21345 +2001-02-01,"Residential Consumption","Alaska","AK",1828 +2001-02-01,"Residential Consumption","Wyoming","WY",1832 +2001-02-01,"Residential Consumption","New York","NY",60260 +2001-02-01,"Residential Consumption","Ohio","OH",50911 +2001-02-01,"Residential Consumption","Vermont","VT",446 +2001-02-01,"Residential Consumption","Nebraska","NE",7786 +2001-02-01,"Residential Consumption","Michigan","MI",54280 +2001-02-01,"Residential Consumption","Minnesota","MN",22623 +2001-02-01,"Residential Consumption","New Jersey","NJ",34488 +2001-02-01,"Residential Consumption","New Hampshire","NH",1134 +2001-02-01,"Residential Consumption","Iowa","IA",13133 +2001-02-01,"Residential Consumption","Hawaii","HI",43 +2001-02-01,"Residential Consumption","Maryland","MD",11419 +2001-02-01,"Residential Consumption","Pennsylvania","PA",39596 +2001-02-01,"Residential Consumption","New Mexico","NM",6721 +2001-02-01,"Residential Consumption","Massachusetts","MA",18263 +2001-02-01,"Residential Consumption","Montana","MT",3338 +2001-02-01,"Residential Consumption","Colorado","CO",20453 +2001-02-01,"Residential Consumption","South Carolina","SC",4815 +2001-02-01,"Residential Consumption","Louisiana","LA",8217 +2001-02-01,"Residential Consumption","Tennessee","TN",11916 +2001-02-01,"Residential Consumption","North Dakota","ND",1914 +2001-02-01,"Residential Consumption","Arkansas","AR",6574 +2001-02-01,"Residential Consumption","Arizona","AZ",7101 +2001-02-01,"Residential Consumption","West Virginia","WV",5275 +2001-02-01,"Residential Consumption","Illinois","IL",72298 +2001-02-01,"Residential Consumption","Wisconsin","WI",22069 +2001-02-01,"Residential Consumption","Florida","FL",2647 +2001-02-01,"Residential Consumption","Alabama","AL",8987 +2001-02-01,"Residential Consumption","Connecticut","CT",6257 +2001-02-01,"Residential Consumption","Utah","UT",8160 +2001-02-01,"Residential Consumption","South Dakota","SD",2179 +2001-02-01,"Residential Consumption","Delaware","DE",1678 +2001-02-01,"Residential Consumption","California","CA",71801 +2001-02-01,"Residential Consumption","Rhode Island","RI",2966 +2001-02-01,"Residential Consumption","Oregon","OR",5939 +2001-02-01,"Residential Consumption","Georgia","GA",16292 +2001-02-01,"Residential Consumption","Kentucky","KY",8950 +2001-02-01,"Residential Consumption","Kansas","KS",12219 +2001-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1115 +2001-03-01,"Commercial Consumption","Colorado","CO",9923 +2001-03-01,"Commercial Consumption","Missouri","MO",9208 +2001-03-01,"Commercial Consumption","New Hampshire","NH",1219 +2001-03-01,"Commercial Consumption","Vermont","VT",356 +2001-03-01,"Commercial Consumption","Alaska","AK",1710 +2001-03-01,"Commercial Consumption","New York","NY",32399 +2001-03-01,"Commercial Consumption","Tennessee","TN",6367 +2001-03-01,"Commercial Consumption","West Virginia","WV",2907 +2001-03-01,"Commercial Consumption","South Carolina","SC",2220 +2001-03-01,"Commercial Consumption","New Jersey","NJ",18611 +2001-03-01,"Commercial Consumption","Montana","MT",964 +2001-03-01,"Commercial Consumption","Florida","FL",4491 +2001-03-01,"Commercial Consumption","Connecticut","CT",5615 +2001-03-01,"Commercial Consumption","Alabama","AL",2969 +2001-03-01,"Commercial Consumption","Nebraska","NE",4326 +2001-03-01,"Commercial Consumption","Indiana","IN",10649 +2001-03-01,"Commercial Consumption","Wyoming","WY",1261 +2001-03-01,"Commercial Consumption","North Dakota","ND",1068 +2001-03-01,"Commercial Consumption","Minnesota","MN",13183 +2001-03-01,"Commercial Consumption","Iowa","IA",6671 +2001-03-01,"Commercial Consumption","Washington","WA",5662 +2001-03-01,"Commercial Consumption","Oklahoma","OK",5805 +2001-03-01,"Commercial Consumption","Texas","TX",18113 +2001-03-01,"Commercial Consumption","Maryland","MD",7271 +2001-03-01,"Commercial Consumption","Mississippi","MS",2540 +2001-03-01,"Commercial Consumption","Delaware","DE",919 +2001-03-01,"Commercial Consumption","Louisiana","LA",2909 +2001-03-01,"Commercial Consumption","Illinois","IL",26259 +2001-03-01,"Commercial Consumption","North Carolina","NC",4696 +2001-03-01,"Commercial Consumption","Utah","UT",3272 +2001-03-01,"Commercial Consumption","New Mexico","NM",3251 +2001-03-01,"Commercial Consumption","Massachusetts","MA",8810 +2001-03-01,"Commercial Consumption","Wisconsin","WI",12115 +2001-03-01,"Commercial Consumption","Kentucky","KY",4854 +2001-03-01,"Commercial Consumption","Kansas","KS",5614 +2001-03-01,"Commercial Consumption","Hawaii","HI",154 +2001-03-01,"Commercial Consumption","District of Columbia","DC",2172 +2001-03-01,"Commercial Consumption","Oregon","OR",3429 +2001-03-01,"Commercial Consumption","Virginia","VA",7267 +2001-03-01,"Commercial Consumption","Georgia","GA",6288 +2001-03-01,"Commercial Consumption","Rhode Island","RI",1882 +2001-03-01,"Commercial Consumption","California","CA",22438 +2001-03-01,"Commercial Consumption","U.S.","U.S.",375688 +2001-03-01,"Commercial Consumption","Idaho","ID",1626 +2001-03-01,"Commercial Consumption","Pennsylvania","PA",19980 +2001-03-01,"Commercial Consumption","South Dakota","SD",1403 +2001-03-01,"Commercial Consumption","Maine","ME",359 +2001-03-01,"Commercial Consumption","Ohio","OH",24800 +2001-03-01,"Commercial Consumption","Arkansas","AR",3942 +2001-03-01,"Commercial Consumption","Arizona","AZ",3543 +2001-03-01,"Commercial Consumption","Nevada","NV",2510 +2001-03-01,"Commercial Consumption","Michigan","MI",25688 +2001-03-01,"Delivered to Consumers","New Mexico","NM",15164 +2001-03-01,"Delivered to Consumers","Maryland","MD",21408 +2001-03-01,"Delivered to Consumers","Tennessee","TN",26202 +2001-03-01,"Delivered to Consumers","Michigan","MI",111301 +2001-03-01,"Delivered to Consumers","Pennsylvania","PA",77363 +2001-03-01,"Delivered to Consumers","Nebraska","NE",13983 +2001-03-01,"Delivered to Consumers","Nevada","NV",17795 +2001-03-01,"Delivered to Consumers","Minnesota","MN",40209 +2001-03-01,"Delivered to Consumers","West Virginia","WV",11221 +2001-03-01,"Delivered to Consumers","Vermont","VT",1084 +2001-03-01,"Delivered to Consumers","Illinois","IL",117186 +2001-03-01,"Delivered to Consumers","Colorado","CO",49042 +2001-03-01,"Delivered to Consumers","Georgia","GA",35867 +2001-03-01,"Delivered to Consumers","Utah","UT",13012 +2001-03-01,"Delivered to Consumers","Wyoming","WY",5643 +2001-03-01,"Delivered to Consumers","Idaho","ID",6890 +2001-03-01,"Delivered to Consumers","California","CA",210711 +2001-03-01,"Delivered to Consumers","South Carolina","SC",12569 +2001-03-01,"Delivered to Consumers","Oregon","OR",21080 +2001-03-01,"Delivered to Consumers","New York","NY",117080 +2001-03-01,"Delivered to Consumers","Iowa","IA",26788 +2001-03-01,"Delivered to Consumers","Wisconsin","WI",52466 +2001-03-01,"Delivered to Consumers","Mississippi","MS",19646 +2001-03-01,"Delivered to Consumers","District of Columbia","DC",4141 +2001-03-01,"Delivered to Consumers","Rhode Island","RI",9886 +2001-03-01,"Delivered to Consumers","Montana","MT",5782 +2001-03-01,"Delivered to Consumers","Hawaii","HI",247 +2001-03-01,"Delivered to Consumers","Alaska","AK",12492 +2001-03-01,"Delivered to Consumers","Kansas","KS",26284 +2001-03-01,"Delivered to Consumers","Kentucky","KY",21670 +2001-03-01,"Delivered to Consumers","Missouri","MO",34239 +2001-03-01,"Delivered to Consumers","Massachusetts","MA",39690 +2001-03-01,"Delivered to Consumers","Texas","TX",336664 +2001-03-01,"Delivered to Consumers","Louisiana","LA",86038 +2001-03-01,"Delivered to Consumers","Florida","FL",35463 +2001-03-01,"Delivered to Consumers","U.S.","U.S.",2086568 +2001-03-01,"Delivered to Consumers","Delaware","DE",5389 +2001-03-01,"Delivered to Consumers","Ohio","OH",102451 +2001-03-01,"Delivered to Consumers","Connecticut","CT",16485 +2001-03-01,"Delivered to Consumers","Alabama","AL",27217 +2001-03-01,"Delivered to Consumers","New Jersey","NJ",70125 +2001-03-01,"Delivered to Consumers","Washington","WA",29422 +2001-03-01,"Delivered to Consumers","New Hampshire","NH",2951 +2001-03-01,"Delivered to Consumers","North Dakota","ND",3535 +2001-03-01,"Delivered to Consumers","South Dakota","SD",4228 +2001-03-01,"Delivered to Consumers","Indiana","IN",57608 +2001-03-01,"Delivered to Consumers","Oklahoma","OK",35468 +2001-03-01,"Delivered to Consumers","Arkansas","AR",21940 +2001-03-01,"Delivered to Consumers","Virginia","VA",23081 +2001-03-01,"Delivered to Consumers","North Carolina","NC",20434 +2001-03-01,"Delivered to Consumers","Maine","ME",6950 +2001-03-01,"Delivered to Consumers","Arizona","AZ",21742 +2001-03-01,"Electric Power Consumption","Rhode Island","RI",4521 +2001-03-01,"Electric Power Consumption","Michigan","MI",8850 +2001-03-01,"Electric Power Consumption","Pennsylvania","PA",1140 +2001-03-01,"Electric Power Consumption","Nevada","NV",10271 +2001-03-01,"Electric Power Consumption","Ohio","OH",571 +2001-03-01,"Electric Power Consumption","Delaware","DE",1109 +2001-03-01,"Electric Power Consumption","Connecticut","CT",2452 +2001-03-01,"Electric Power Consumption","Illinois","IL",1654 +2001-03-01,"Electric Power Consumption","Nebraska","NE",270 +2001-03-01,"Electric Power Consumption","Arizona","AZ",10723 +2001-03-01,"Electric Power Consumption","New Jersey","NJ",9997 +2001-03-01,"Electric Power Consumption","Idaho","ID",124 +2001-03-01,"Electric Power Consumption","Maine","ME",5575 +2001-03-01,"Electric Power Consumption","Montana","MT",5 +2001-03-01,"Electric Power Consumption","Florida","FL",21938 +2001-03-01,"Electric Power Consumption","Virginia","VA",643 +2001-03-01,"Electric Power Consumption","Oklahoma","OK",9555 +2001-03-01,"Electric Power Consumption","Massachusetts","MA",6921 +2001-03-01,"Electric Power Consumption","Wyoming","WY",269 +2001-03-01,"Electric Power Consumption","Mississippi","MS",4445 +2001-03-01,"Electric Power Consumption","Hawaii","HI",0 +2001-03-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-03-01,"Electric Power Consumption","Maryland","MD",1321 +2001-03-01,"Electric Power Consumption","Alabama","AL",3634 +2001-03-01,"Electric Power Consumption","New Mexico","NM",4436 +2001-03-01,"Electric Power Consumption","South Carolina","SC",321 +2001-03-01,"Electric Power Consumption","Utah","UT",1470 +2001-03-01,"Electric Power Consumption","North Dakota","ND",0 +2001-03-01,"Electric Power Consumption","Georgia","GA",506 +2001-03-01,"Electric Power Consumption","Alaska","AK",2962 +2001-03-01,"Electric Power Consumption","Washington","WA",9248 +2001-03-01,"Electric Power Consumption","New York","NY",17930 +2001-03-01,"Electric Power Consumption","Minnesota","MN",611 +2001-03-01,"Electric Power Consumption","West Virginia","WV",16 +2001-03-01,"Electric Power Consumption","Iowa","IA",329 +2001-03-01,"Electric Power Consumption","Indiana","IN",772 +2001-03-01,"Electric Power Consumption","California","CA",82936 +2001-03-01,"Electric Power Consumption","Colorado","CO",8509 +2001-03-01,"Electric Power Consumption","Texas","TX",100334 +2001-03-01,"Electric Power Consumption","Oregon","OR",5742 +2001-03-01,"Electric Power Consumption","Kansas","KS",1011 +2001-03-01,"Electric Power Consumption","Wisconsin","WI",1977 +2001-03-01,"Electric Power Consumption","Tennessee","TN",2 +2001-03-01,"Electric Power Consumption","Missouri","MO",1414 +2001-03-01,"Electric Power Consumption","Louisiana","LA",14142 +2001-03-01,"Electric Power Consumption","Arkansas","AR",1164 +2001-03-01,"Electric Power Consumption","Vermont","VT",6 +2001-03-01,"Electric Power Consumption","U.S.","U.S.",362843 +2001-03-01,"Electric Power Consumption","South Dakota","SD",600 +2001-03-01,"Electric Power Consumption","North Carolina","NC",199 +2001-03-01,"Electric Power Consumption","Kentucky","KY",218 +2001-03-01,"Industrial Consumption","Maryland","MD",2538 +2001-03-01,"Industrial Consumption","South Dakota","SD",449 +2001-03-01,"Industrial Consumption","New Mexico","NM",2566 +2001-03-01,"Industrial Consumption","Utah","UT",2742 +2001-03-01,"Industrial Consumption","Nevada","NV",1036 +2001-03-01,"Industrial Consumption","Arkansas","AR",11092 +2001-03-01,"Industrial Consumption","Nebraska","NE",2887 +2001-03-01,"Industrial Consumption","Virginia","VA",4623 +2001-03-01,"Industrial Consumption","Indiana","IN",24258 +2001-03-01,"Industrial Consumption","Georgia","GA",12416 +2001-03-01,"Industrial Consumption","California","CA",46193 +2001-03-01,"Industrial Consumption","New Hampshire","NH",672 +2001-03-01,"Industrial Consumption","Iowa","IA",8666 +2001-03-01,"Industrial Consumption","North Dakota","ND",1228 +2001-03-01,"Industrial Consumption","Mississippi","MS",9399 +2001-03-01,"Industrial Consumption","West Virginia","WV",3300 +2001-03-01,"Industrial Consumption","New Jersey","NJ",7736 +2001-03-01,"Industrial Consumption","Minnesota","MN",8841 +2001-03-01,"Industrial Consumption","Idaho","ID",2755 +2001-03-01,"Industrial Consumption","Michigan","MI",22291 +2001-03-01,"Industrial Consumption","North Carolina","NC",7837 +2001-03-01,"Industrial Consumption","Alaska","AK",6001 +2001-03-01,"Industrial Consumption","Washington","WA",5628 +2001-03-01,"Industrial Consumption","Arizona","AZ",2015 +2001-03-01,"Industrial Consumption","U.S.","U.S.",664918 +2001-03-01,"Industrial Consumption","Pennsylvania","PA",18460 +2001-03-01,"Industrial Consumption","Tennessee","TN",10280 +2001-03-01,"Industrial Consumption","Oklahoma","OK",10450 +2001-03-01,"Industrial Consumption","Missouri","MO",5601 +2001-03-01,"Industrial Consumption","Louisiana","LA",64182 +2001-03-01,"Industrial Consumption","Kansas","KS",8007 +2001-03-01,"Industrial Consumption","Alabama","AL",14746 +2001-03-01,"Industrial Consumption","South Carolina","SC",6682 +2001-03-01,"Industrial Consumption","Vermont","VT",302 +2001-03-01,"Industrial Consumption","Ohio","OH",29486 +2001-03-01,"Industrial Consumption","Montana","MT",2224 +2001-03-01,"Industrial Consumption","Hawaii","HI",44 +2001-03-01,"Industrial Consumption","Colorado","CO",12731 +2001-03-01,"Industrial Consumption","Maine","ME",872 +2001-03-01,"Industrial Consumption","Florida","FL",7528 +2001-03-01,"Industrial Consumption","Connecticut","CT",2243 +2001-03-01,"Industrial Consumption","Delaware","DE",1830 +2001-03-01,"Industrial Consumption","Rhode Island","RI",601 +2001-03-01,"Industrial Consumption","Massachusetts","MA",6246 +2001-03-01,"Industrial Consumption","Oregon","OR",6862 +2001-03-01,"Industrial Consumption","New York","NY",8204 +2001-03-01,"Industrial Consumption","Texas","TX",194151 +2001-03-01,"Industrial Consumption","Wyoming","WY",3021 +2001-03-01,"Industrial Consumption","Wisconsin","WI",17481 +2001-03-01,"Industrial Consumption","Kentucky","KY",7395 +2001-03-01,"Industrial Consumption","Illinois","IL",28116 +2001-03-01,"Industrial Consumption","District of Columbia","DC",0 +2001-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96438 +2001-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",63626 +2001-03-01,"Residential Consumption","South Carolina","SC",3346 +2001-03-01,"Residential Consumption","Connecticut","CT",6176 +2001-03-01,"Residential Consumption","Pennsylvania","PA",37782 +2001-03-01,"Residential Consumption","New Hampshire","NH",1059 +2001-03-01,"Residential Consumption","Kansas","KS",11653 +2001-03-01,"Residential Consumption","Delaware","DE",1531 +2001-03-01,"Residential Consumption","Texas","TX",24066 +2001-03-01,"Residential Consumption","North Carolina","NC",7702 +2001-03-01,"Residential Consumption","Louisiana","LA",4805 +2001-03-01,"Residential Consumption","Maryland","MD",10277 +2001-03-01,"Residential Consumption","District of Columbia","DC",1970 +2001-03-01,"Residential Consumption","Maine","ME",143 +2001-03-01,"Residential Consumption","Colorado","CO",17880 +2001-03-01,"Residential Consumption","Wisconsin","WI",20892 +2001-03-01,"Residential Consumption","Michigan","MI",54473 +2001-03-01,"Residential Consumption","Arizona","AZ",5461 +2001-03-01,"Residential Consumption","West Virginia","WV",4997 +2001-03-01,"Residential Consumption","Virginia","VA",10548 +2001-03-01,"Residential Consumption","South Dakota","SD",1776 +2001-03-01,"Residential Consumption","Nevada","NV",3978 +2001-03-01,"Residential Consumption","New Mexico","NM",4911 +2001-03-01,"Residential Consumption","North Dakota","ND",1238 +2001-03-01,"Residential Consumption","Oklahoma","OK",9657 +2001-03-01,"Residential Consumption","U.S.","U.S.",681884 +2001-03-01,"Residential Consumption","Ohio","OH",47594 +2001-03-01,"Residential Consumption","Mississippi","MS",3262 +2001-03-01,"Residential Consumption","Iowa","IA",11122 +2001-03-01,"Residential Consumption","Vermont","VT",420 +2001-03-01,"Residential Consumption","Nebraska","NE",6500 +2001-03-01,"Residential Consumption","Montana","MT",2590 +2001-03-01,"Residential Consumption","Missouri","MO",18016 +2001-03-01,"Residential Consumption","Oregon","OR",5046 +2001-03-01,"Residential Consumption","Utah","UT",5528 +2001-03-01,"Residential Consumption","Minnesota","MN",17575 +2001-03-01,"Residential Consumption","New Jersey","NJ",33780 +2001-03-01,"Residential Consumption","Washington","WA",8884 +2001-03-01,"Residential Consumption","Illinois","IL",61158 +2001-03-01,"Residential Consumption","Rhode Island","RI",2881 +2001-03-01,"Residential Consumption","Georgia","GA",16658 +2001-03-01,"Residential Consumption","Massachusetts","MA",17713 +2001-03-01,"Residential Consumption","Arkansas","AR",5743 +2001-03-01,"Residential Consumption","Kentucky","KY",9204 +2001-03-01,"Residential Consumption","California","CA",59144 +2001-03-01,"Residential Consumption","Alabama","AL",5867 +2001-03-01,"Residential Consumption","Wyoming","WY",1092 +2001-03-01,"Residential Consumption","New York","NY",58547 +2001-03-01,"Residential Consumption","Hawaii","HI",49 +2001-03-01,"Residential Consumption","Tennessee","TN",9553 +2001-03-01,"Residential Consumption","Indiana","IN",21929 +2001-03-01,"Residential Consumption","Florida","FL",1507 +2001-03-01,"Residential Consumption","Idaho","ID",2385 +2001-03-01,"Residential Consumption","Alaska","AK",1818 +2001-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",1235 +2001-04-01,"Commercial Consumption","North Carolina","NC",3203 +2001-04-01,"Commercial Consumption","Wisconsin","WI",5385 +2001-04-01,"Commercial Consumption","New Hampshire","NH",886 +2001-04-01,"Commercial Consumption","Kentucky","KY",2339 +2001-04-01,"Commercial Consumption","Georgia","GA",3450 +2001-04-01,"Commercial Consumption","Minnesota","MN",7534 +2001-04-01,"Commercial Consumption","New Mexico","NM",3186 +2001-04-01,"Commercial Consumption","Missouri","MO",5397 +2001-04-01,"Commercial Consumption","Vermont","VT",276 +2001-04-01,"Commercial Consumption","California","CA",26237 +2001-04-01,"Commercial Consumption","Nebraska","NE",2877 +2001-04-01,"Commercial Consumption","Utah","UT",2505 +2001-04-01,"Commercial Consumption","South Dakota","SD",801 +2001-04-01,"Commercial Consumption","Kansas","KS",3040 +2001-04-01,"Commercial Consumption","Alabama","AL",2357 +2001-04-01,"Commercial Consumption","New York","NY",23895 +2001-04-01,"Commercial Consumption","Montana","MT",1253 +2001-04-01,"Commercial Consumption","Maine","ME",247 +2001-04-01,"Commercial Consumption","U.S.","U.S.",255361 +2001-04-01,"Commercial Consumption","Texas","TX",13404 +2001-04-01,"Commercial Consumption","Maryland","MD",5073 +2001-04-01,"Commercial Consumption","Illinois","IL",12190 +2001-04-01,"Commercial Consumption","District of Columbia","DC",1930 +2001-04-01,"Commercial Consumption","Wyoming","WY",898 +2001-04-01,"Commercial Consumption","Virginia","VA",4661 +2001-04-01,"Commercial Consumption","Rhode Island","RI",1382 +2001-04-01,"Commercial Consumption","Arizona","AZ",2778 +2001-04-01,"Commercial Consumption","Tennessee","TN",4673 +2001-04-01,"Commercial Consumption","Colorado","CO",6436 +2001-04-01,"Commercial Consumption","Oregon","OR",2719 +2001-04-01,"Commercial Consumption","Alaska","AK",1221 +2001-04-01,"Commercial Consumption","Connecticut","CT",4240 +2001-04-01,"Commercial Consumption","Arkansas","AR",1822 +2001-04-01,"Commercial Consumption","Michigan","MI",16415 +2001-04-01,"Commercial Consumption","Washington","WA",4929 +2001-04-01,"Commercial Consumption","South Carolina","SC",1816 +2001-04-01,"Commercial Consumption","Oklahoma","OK",3329 +2001-04-01,"Commercial Consumption","New Jersey","NJ",13038 +2001-04-01,"Commercial Consumption","Florida","FL",4262 +2001-04-01,"Commercial Consumption","Ohio","OH",14665 +2001-04-01,"Commercial Consumption","Mississippi","MS",1613 +2001-04-01,"Commercial Consumption","Indiana","IN",5558 +2001-04-01,"Commercial Consumption","Louisiana","LA",1776 +2001-04-01,"Commercial Consumption","West Virginia","WV",2655 +2001-04-01,"Commercial Consumption","North Dakota","ND",803 +2001-04-01,"Commercial Consumption","Pennsylvania","PA",12405 +2001-04-01,"Commercial Consumption","Massachusetts","MA",6323 +2001-04-01,"Commercial Consumption","Idaho","ID",1235 +2001-04-01,"Commercial Consumption","Iowa","IA",3548 +2001-04-01,"Commercial Consumption","Hawaii","HI",150 +2001-04-01,"Commercial Consumption","Delaware","DE",605 +2001-04-01,"Commercial Consumption","Nevada","NV",1940 +2001-04-01,"Delivered to Consumers","Utah","UT",11173 +2001-04-01,"Delivered to Consumers","Indiana","IN",37045 +2001-04-01,"Delivered to Consumers","Pennsylvania","PA",52992 +2001-04-01,"Delivered to Consumers","North Carolina","NC",14585 +2001-04-01,"Delivered to Consumers","South Carolina","SC",10957 +2001-04-01,"Delivered to Consumers","Florida","FL",39708 +2001-04-01,"Delivered to Consumers","South Dakota","SD",2845 +2001-04-01,"Delivered to Consumers","Maryland","MD",13900 +2001-04-01,"Delivered to Consumers","Michigan","MI",76191 +2001-04-01,"Delivered to Consumers","Kentucky","KY",14953 +2001-04-01,"Delivered to Consumers","Mississippi","MS",21739 +2001-04-01,"Delivered to Consumers","Arizona","AZ",19153 +2001-04-01,"Delivered to Consumers","District of Columbia","DC",3185 +2001-04-01,"Delivered to Consumers","Illinois","IL",62934 +2001-04-01,"Delivered to Consumers","Iowa","IA",17172 +2001-04-01,"Delivered to Consumers","Alabama","AL",23714 +2001-04-01,"Delivered to Consumers","Colorado","CO",41157 +2001-04-01,"Delivered to Consumers","California","CA",198804 +2001-04-01,"Delivered to Consumers","Nevada","NV",12312 +2001-04-01,"Delivered to Consumers","Georgia","GA",25368 +2001-04-01,"Delivered to Consumers","New Hampshire","NH",2280 +2001-04-01,"Delivered to Consumers","Wyoming","WY",5505 +2001-04-01,"Delivered to Consumers","Idaho","ID",5799 +2001-04-01,"Delivered to Consumers","Nebraska","NE",11129 +2001-04-01,"Delivered to Consumers","Texas","TX",325130 +2001-04-01,"Delivered to Consumers","Louisiana","LA",87577 +2001-04-01,"Delivered to Consumers","U.S.","U.S.",1663832 +2001-04-01,"Delivered to Consumers","Hawaii","HI",243 +2001-04-01,"Delivered to Consumers","Oklahoma","OK",29023 +2001-04-01,"Delivered to Consumers","Ohio","OH",66525 +2001-04-01,"Delivered to Consumers","Delaware","DE",3439 +2001-04-01,"Delivered to Consumers","West Virginia","WV",9393 +2001-04-01,"Delivered to Consumers","Vermont","VT",834 +2001-04-01,"Delivered to Consumers","Kansas","KS",16906 +2001-04-01,"Delivered to Consumers","Connecticut","CT",10646 +2001-04-01,"Delivered to Consumers","Arkansas","AR",16528 +2001-04-01,"Delivered to Consumers","Wisconsin","WI",24969 +2001-04-01,"Delivered to Consumers","Maine","ME",5791 +2001-04-01,"Delivered to Consumers","New Mexico","NM",15114 +2001-04-01,"Delivered to Consumers","Rhode Island","RI",7566 +2001-04-01,"Delivered to Consumers","Montana","MT",5036 +2001-04-01,"Delivered to Consumers","Alaska","AK",10557 +2001-04-01,"Delivered to Consumers","Tennessee","TN",21053 +2001-04-01,"Delivered to Consumers","Virginia","VA",15728 +2001-04-01,"Delivered to Consumers","Missouri","MO",22717 +2001-04-01,"Delivered to Consumers","Minnesota","MN",25541 +2001-04-01,"Delivered to Consumers","New York","NY",87191 +2001-04-01,"Delivered to Consumers","Massachusetts","MA",30815 +2001-04-01,"Delivered to Consumers","Oregon","OR",18224 +2001-04-01,"Delivered to Consumers","New Jersey","NJ",50543 +2001-04-01,"Delivered to Consumers","Washington","WA",27137 +2001-04-01,"Delivered to Consumers","North Dakota","ND",3807 +2001-04-01,"Electric Power Consumption","Oklahoma","OK",10427 +2001-04-01,"Electric Power Consumption","Pennsylvania","PA",773 +2001-04-01,"Electric Power Consumption","Indiana","IN",1087 +2001-04-01,"Electric Power Consumption","Utah","UT",1594 +2001-04-01,"Electric Power Consumption","Illinois","IL",2161 +2001-04-01,"Electric Power Consumption","Nebraska","NE",310 +2001-04-01,"Electric Power Consumption","Maine","ME",4579 +2001-04-01,"Electric Power Consumption","Florida","FL",26673 +2001-04-01,"Electric Power Consumption","Colorado","CO",7506 +2001-04-01,"Electric Power Consumption","South Carolina","SC",362 +2001-04-01,"Electric Power Consumption","Minnesota","MN",788 +2001-04-01,"Electric Power Consumption","Iowa","IA",365 +2001-04-01,"Electric Power Consumption","Washington","WA",9179 +2001-04-01,"Electric Power Consumption","Ohio","OH",602 +2001-04-01,"Electric Power Consumption","Georgia","GA",2689 +2001-04-01,"Electric Power Consumption","Texas","TX",115391 +2001-04-01,"Electric Power Consumption","Rhode Island","RI",3613 +2001-04-01,"Electric Power Consumption","West Virginia","WV",50 +2001-04-01,"Electric Power Consumption","North Carolina","NC",461 +2001-04-01,"Electric Power Consumption","Missouri","MO",2191 +2001-04-01,"Electric Power Consumption","Mississippi","MS",9786 +2001-04-01,"Electric Power Consumption","North Dakota","ND",0 +2001-04-01,"Electric Power Consumption","Arkansas","AR",2511 +2001-04-01,"Electric Power Consumption","New York","NY",17686 +2001-04-01,"Electric Power Consumption","Oregon","OR",5695 +2001-04-01,"Electric Power Consumption","Massachusetts","MA",4553 +2001-04-01,"Electric Power Consumption","Kansas","KS",922 +2001-04-01,"Electric Power Consumption","Tennessee","TN",68 +2001-04-01,"Electric Power Consumption","Kentucky","KY",241 +2001-04-01,"Electric Power Consumption","Hawaii","HI",0 +2001-04-01,"Electric Power Consumption","Montana","MT",2 +2001-04-01,"Electric Power Consumption","Delaware","DE",89 +2001-04-01,"Electric Power Consumption","Connecticut","CT",614 +2001-04-01,"Electric Power Consumption","New Mexico","NM",5084 +2001-04-01,"Electric Power Consumption","Idaho","ID",144 +2001-04-01,"Electric Power Consumption","Michigan","MI",6900 +2001-04-01,"Electric Power Consumption","Wisconsin","WI",808 +2001-04-01,"Electric Power Consumption","Vermont","VT",2 +2001-04-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-04-01,"Electric Power Consumption","Arizona","AZ",11729 +2001-04-01,"Electric Power Consumption","California","CA",80724 +2001-04-01,"Electric Power Consumption","Virginia","VA",1113 +2001-04-01,"Electric Power Consumption","New Jersey","NJ",8697 +2001-04-01,"Electric Power Consumption","Louisiana","LA",21746 +2001-04-01,"Electric Power Consumption","Nevada","NV",6926 +2001-04-01,"Electric Power Consumption","Wyoming","WY",384 +2001-04-01,"Electric Power Consumption","U.S.","U.S.",384494 +2001-04-01,"Electric Power Consumption","South Dakota","SD",632 +2001-04-01,"Electric Power Consumption","Maryland","MD",862 +2001-04-01,"Electric Power Consumption","Alabama","AL",3342 +2001-04-01,"Industrial Consumption","Montana","MT",1871 +2001-04-01,"Industrial Consumption","Kansas","KS",7187 +2001-04-01,"Industrial Consumption","U.S.","U.S.",622054 +2001-04-01,"Industrial Consumption","Virginia","VA",4388 +2001-04-01,"Industrial Consumption","Wyoming","WY",3074 +2001-04-01,"Industrial Consumption","Tennessee","TN",10930 +2001-04-01,"Industrial Consumption","Iowa","IA",7687 +2001-04-01,"Industrial Consumption","Florida","FL",7465 +2001-04-01,"Industrial Consumption","North Dakota","ND",2195 +2001-04-01,"Industrial Consumption","Maryland","MD",2053 +2001-04-01,"Industrial Consumption","Pennsylvania","PA",16607 +2001-04-01,"Industrial Consumption","New York","NY",7788 +2001-04-01,"Industrial Consumption","Vermont","VT",239 +2001-04-01,"Industrial Consumption","Arkansas","AR",10224 +2001-04-01,"Industrial Consumption","Texas","TX",181708 +2001-04-01,"Industrial Consumption","South Carolina","SC",6138 +2001-04-01,"Industrial Consumption","Wisconsin","WI",10597 +2001-04-01,"Industrial Consumption","New Jersey","NJ",7686 +2001-04-01,"Industrial Consumption","North Carolina","NC",5882 +2001-04-01,"Industrial Consumption","Arizona","AZ",1810 +2001-04-01,"Industrial Consumption","Nevada","NV",974 +2001-04-01,"Industrial Consumption","Alabama","AL",13227 +2001-04-01,"Industrial Consumption","Nebraska","NE",3230 +2001-04-01,"Industrial Consumption","New Hampshire","NH",660 +2001-04-01,"Industrial Consumption","Michigan","MI",20181 +2001-04-01,"Industrial Consumption","Massachusetts","MA",8282 +2001-04-01,"Industrial Consumption","Missouri","MO",5511 +2001-04-01,"Industrial Consumption","New Mexico","NM",3612 +2001-04-01,"Industrial Consumption","West Virginia","WV",3293 +2001-04-01,"Industrial Consumption","Idaho","ID",2621 +2001-04-01,"Industrial Consumption","Connecticut","CT",2115 +2001-04-01,"Industrial Consumption","Indiana","IN",19456 +2001-04-01,"Industrial Consumption","Rhode Island","RI",437 +2001-04-01,"Industrial Consumption","Colorado","CO",14667 +2001-04-01,"Industrial Consumption","Oregon","OR",5895 +2001-04-01,"Industrial Consumption","California","CA",50003 +2001-04-01,"Industrial Consumption","Minnesota","MN",7676 +2001-04-01,"Industrial Consumption","Kentucky","KY",9901 +2001-04-01,"Industrial Consumption","Delaware","DE",1718 +2001-04-01,"Industrial Consumption","Hawaii","HI",47 +2001-04-01,"Industrial Consumption","Washington","WA",5751 +2001-04-01,"Industrial Consumption","South Dakota","SD",370 +2001-04-01,"Industrial Consumption","Mississippi","MS",8347 +2001-04-01,"Industrial Consumption","Maine","ME",874 +2001-04-01,"Industrial Consumption","Illinois","IL",22192 +2001-04-01,"Industrial Consumption","Oklahoma","OK",9852 +2001-04-01,"Industrial Consumption","Louisiana","LA",60893 +2001-04-01,"Industrial Consumption","Ohio","OH",23751 +2001-04-01,"Industrial Consumption","Utah","UT",2978 +2001-04-01,"Industrial Consumption","Georgia","GA",12284 +2001-04-01,"Industrial Consumption","District of Columbia","DC",0 +2001-04-01,"Industrial Consumption","Alaska","AK",5721 +2001-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92602 +2001-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",50736 +2001-04-01,"Residential Consumption","Pennsylvania","PA",23207 +2001-04-01,"Residential Consumption","Idaho","ID",1799 +2001-04-01,"Residential Consumption","Montana","MT",1910 +2001-04-01,"Residential Consumption","Kansas","KS",5756 +2001-04-01,"Residential Consumption","Washington","WA",7279 +2001-04-01,"Residential Consumption","West Virginia","WV",3394 +2001-04-01,"Residential Consumption","Louisiana","LA",3162 +2001-04-01,"Residential Consumption","Connecticut","CT",3678 +2001-04-01,"Residential Consumption","New Jersey","NJ",21123 +2001-04-01,"Residential Consumption","South Dakota","SD",1042 +2001-04-01,"Residential Consumption","Florida","FL",1307 +2001-04-01,"Residential Consumption","Oklahoma","OK",5415 +2001-04-01,"Residential Consumption","North Dakota","ND",809 +2001-04-01,"Residential Consumption","Illinois","IL",26391 +2001-04-01,"Residential Consumption","Oregon","OR",3915 +2001-04-01,"Residential Consumption","Nevada","NV",2473 +2001-04-01,"Residential Consumption","Georgia","GA",6945 +2001-04-01,"Residential Consumption","New Hampshire","NH",734 +2001-04-01,"Residential Consumption","Kentucky","KY",2471 +2001-04-01,"Residential Consumption","Missouri","MO",9618 +2001-04-01,"Residential Consumption","Alabama","AL",4787 +2001-04-01,"Residential Consumption","Alaska","AK",1183 +2001-04-01,"Residential Consumption","U.S.","U.S.",400728 +2001-04-01,"Residential Consumption","South Carolina","SC",2640 +2001-04-01,"Residential Consumption","Mississippi","MS",1993 +2001-04-01,"Residential Consumption","Tennessee","TN",5382 +2001-04-01,"Residential Consumption","Nebraska","NE",4713 +2001-04-01,"Residential Consumption","Michigan","MI",32694 +2001-04-01,"Residential Consumption","Minnesota","MN",9542 +2001-04-01,"Residential Consumption","District of Columbia","DC",1256 +2001-04-01,"Residential Consumption","Indiana","IN",10943 +2001-04-01,"Residential Consumption","Massachusetts","MA",11658 +2001-04-01,"Residential Consumption","Arizona","AZ",2836 +2001-04-01,"Residential Consumption","New York","NY",37822 +2001-04-01,"Residential Consumption","Texas","TX",14627 +2001-04-01,"Residential Consumption","Rhode Island","RI",2133 +2001-04-01,"Residential Consumption","Ohio","OH",27507 +2001-04-01,"Residential Consumption","North Carolina","NC",5039 +2001-04-01,"Residential Consumption","Iowa","IA",5573 +2001-04-01,"Residential Consumption","Hawaii","HI",47 +2001-04-01,"Residential Consumption","Vermont","VT",316 +2001-04-01,"Residential Consumption","Maine","ME",91 +2001-04-01,"Residential Consumption","Arkansas","AR",1971 +2001-04-01,"Residential Consumption","California","CA",41839 +2001-04-01,"Residential Consumption","Wyoming","WY",1149 +2001-04-01,"Residential Consumption","Wisconsin","WI",8178 +2001-04-01,"Residential Consumption","Virginia","VA",5566 +2001-04-01,"Residential Consumption","Utah","UT",4096 +2001-04-01,"Residential Consumption","Maryland","MD",5912 +2001-04-01,"Residential Consumption","New Mexico","NM",3231 +2001-04-01,"Residential Consumption","Colorado","CO",12549 +2001-04-01,"Residential Consumption","Delaware","DE",1026 +2001-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",1195 +2001-05-01,"Commercial Consumption","Maine","ME",130 +2001-05-01,"Commercial Consumption","Kansas","KS",1440 +2001-05-01,"Commercial Consumption","Alaska","AK",1050 +2001-05-01,"Commercial Consumption","Alabama","AL",1497 +2001-05-01,"Commercial Consumption","New York","NY",22097 +2001-05-01,"Commercial Consumption","Arizona","AZ",2289 +2001-05-01,"Commercial Consumption","Massachusetts","MA",3897 +2001-05-01,"Commercial Consumption","New Jersey","NJ",7276 +2001-05-01,"Commercial Consumption","Florida","FL",3953 +2001-05-01,"Commercial Consumption","Vermont","VT",136 +2001-05-01,"Commercial Consumption","Iowa","IA",1812 +2001-05-01,"Commercial Consumption","California","CA",16799 +2001-05-01,"Commercial Consumption","Michigan","MI",8564 +2001-05-01,"Commercial Consumption","Louisiana","LA",1577 +2001-05-01,"Commercial Consumption","District of Columbia","DC",1115 +2001-05-01,"Commercial Consumption","North Carolina","NC",2024 +2001-05-01,"Commercial Consumption","New Mexico","NM",1715 +2001-05-01,"Commercial Consumption","Missouri","MO",2699 +2001-05-01,"Commercial Consumption","South Dakota","SD",410 +2001-05-01,"Commercial Consumption","Montana","MT",767 +2001-05-01,"Commercial Consumption","U.S.","U.S.",164146 +2001-05-01,"Commercial Consumption","Georgia","GA",2424 +2001-05-01,"Commercial Consumption","Rhode Island","RI",743 +2001-05-01,"Commercial Consumption","Idaho","ID",762 +2001-05-01,"Commercial Consumption","Wisconsin","WI",3006 +2001-05-01,"Commercial Consumption","Connecticut","CT",2370 +2001-05-01,"Commercial Consumption","Indiana","IN",3200 +2001-05-01,"Commercial Consumption","Wyoming","WY",479 +2001-05-01,"Commercial Consumption","Washington","WA",3843 +2001-05-01,"Commercial Consumption","North Dakota","ND",396 +2001-05-01,"Commercial Consumption","Colorado","CO",4428 +2001-05-01,"Commercial Consumption","Texas","TX",10927 +2001-05-01,"Commercial Consumption","Maryland","MD",3495 +2001-05-01,"Commercial Consumption","Nebraska","NE",1554 +2001-05-01,"Commercial Consumption","Tennessee","TN",2359 +2001-05-01,"Commercial Consumption","Nevada","NV",1528 +2001-05-01,"Commercial Consumption","South Carolina","SC",1308 +2001-05-01,"Commercial Consumption","Kentucky","KY",1262 +2001-05-01,"Commercial Consumption","Arkansas","AR",1168 +2001-05-01,"Commercial Consumption","Mississippi","MS",1194 +2001-05-01,"Commercial Consumption","Minnesota","MN",4204 +2001-05-01,"Commercial Consumption","Oregon","OR",1984 +2001-05-01,"Commercial Consumption","Virginia","VA",3125 +2001-05-01,"Commercial Consumption","Pennsylvania","PA",6661 +2001-05-01,"Commercial Consumption","New Hampshire","NH",417 +2001-05-01,"Commercial Consumption","West Virginia","WV",1272 +2001-05-01,"Commercial Consumption","Utah","UT",1368 +2001-05-01,"Commercial Consumption","Oklahoma","OK",1764 +2001-05-01,"Commercial Consumption","Ohio","OH",7443 +2001-05-01,"Commercial Consumption","Hawaii","HI",145 +2001-05-01,"Commercial Consumption","Delaware","DE",285 +2001-05-01,"Commercial Consumption","Illinois","IL",7784 +2001-05-01,"Delivered to Consumers","New York","NY",75087 +2001-05-01,"Delivered to Consumers","Alaska","AK",9618 +2001-05-01,"Delivered to Consumers","Idaho","ID",4539 +2001-05-01,"Delivered to Consumers","Connecticut","CT",7197 +2001-05-01,"Delivered to Consumers","Arkansas","AR",13819 +2001-05-01,"Delivered to Consumers","Mississippi","MS",20948 +2001-05-01,"Delivered to Consumers","Colorado","CO",30506 +2001-05-01,"Delivered to Consumers","South Carolina","SC",8683 +2001-05-01,"Delivered to Consumers","Nevada","NV",12723 +2001-05-01,"Delivered to Consumers","Louisiana","LA",81223 +2001-05-01,"Delivered to Consumers","North Dakota","ND",2613 +2001-05-01,"Delivered to Consumers","District of Columbia","DC",1654 +2001-05-01,"Delivered to Consumers","Indiana","IN",27762 +2001-05-01,"Delivered to Consumers","West Virginia","WV",5380 +2001-05-01,"Delivered to Consumers","Oklahoma","OK",26153 +2001-05-01,"Delivered to Consumers","Alabama","AL",21027 +2001-05-01,"Delivered to Consumers","Maine","ME",7780 +2001-05-01,"Delivered to Consumers","Georgia","GA",20633 +2001-05-01,"Delivered to Consumers","Montana","MT",3055 +2001-05-01,"Delivered to Consumers","Tennessee","TN",13399 +2001-05-01,"Delivered to Consumers","Iowa","IA",12430 +2001-05-01,"Delivered to Consumers","California","CA",182600 +2001-05-01,"Delivered to Consumers","Arizona","AZ",21113 +2001-05-01,"Delivered to Consumers","Washington","WA",23855 +2001-05-01,"Delivered to Consumers","New Mexico","NM",10947 +2001-05-01,"Delivered to Consumers","South Dakota","SD",1940 +2001-05-01,"Delivered to Consumers","Maryland","MD",9252 +2001-05-01,"Delivered to Consumers","Hawaii","HI",237 +2001-05-01,"Delivered to Consumers","Texas","TX",322975 +2001-05-01,"Delivered to Consumers","Vermont","VT",544 +2001-05-01,"Delivered to Consumers","Rhode Island","RI",7317 +2001-05-01,"Delivered to Consumers","Kansas","KS",10552 +2001-05-01,"Delivered to Consumers","Ohio","OH",41541 +2001-05-01,"Delivered to Consumers","Michigan","MI",48707 +2001-05-01,"Delivered to Consumers","Virginia","VA",11714 +2001-05-01,"Delivered to Consumers","Nebraska","NE",7094 +2001-05-01,"Delivered to Consumers","North Carolina","NC",11544 +2001-05-01,"Delivered to Consumers","Missouri","MO",13209 +2001-05-01,"Delivered to Consumers","New Hampshire","NH",1441 +2001-05-01,"Delivered to Consumers","Florida","FL",42466 +2001-05-01,"Delivered to Consumers","Delaware","DE",2924 +2001-05-01,"Delivered to Consumers","Illinois","IL",46113 +2001-05-01,"Delivered to Consumers","Pennsylvania","PA",33092 +2001-05-01,"Delivered to Consumers","Oregon","OR",15822 +2001-05-01,"Delivered to Consumers","Wyoming","WY",4182 +2001-05-01,"Delivered to Consumers","Kentucky","KY",9527 +2001-05-01,"Delivered to Consumers","Wisconsin","WI",17238 +2001-05-01,"Delivered to Consumers","Utah","UT",7791 +2001-05-01,"Delivered to Consumers","U.S.","U.S.",1385163 +2001-05-01,"Delivered to Consumers","Massachusetts","MA",23495 +2001-05-01,"Delivered to Consumers","New Jersey","NJ",32523 +2001-05-01,"Delivered to Consumers","Minnesota","MN",15943 +2001-05-01,"Electric Power Consumption","Virginia","VA",924 +2001-05-01,"Electric Power Consumption","Texas","TX",131842 +2001-05-01,"Electric Power Consumption","Rhode Island","RI",5102 +2001-05-01,"Electric Power Consumption","Utah","UT",1601 +2001-05-01,"Electric Power Consumption","Massachusetts","MA",6846 +2001-05-01,"Electric Power Consumption","West Virginia","WV",95 +2001-05-01,"Electric Power Consumption","U.S.","U.S.",433923 +2001-05-01,"Electric Power Consumption","Indiana","IN",753 +2001-05-01,"Electric Power Consumption","Illinois","IL",4004 +2001-05-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-05-01,"Electric Power Consumption","Maryland","MD",1062 +2001-05-01,"Electric Power Consumption","Wisconsin","WI",1005 +2001-05-01,"Electric Power Consumption","Nevada","NV",8715 +2001-05-01,"Electric Power Consumption","Montana","MT",9 +2001-05-01,"Electric Power Consumption","Delaware","DE",959 +2001-05-01,"Electric Power Consumption","Alaska","AK",2255 +2001-05-01,"Electric Power Consumption","New Mexico","NM",4877 +2001-05-01,"Electric Power Consumption","Wyoming","WY",256 +2001-05-01,"Electric Power Consumption","North Carolina","NC",577 +2001-05-01,"Electric Power Consumption","Mississippi","MS",10365 +2001-05-01,"Electric Power Consumption","Hawaii","HI",0 +2001-05-01,"Electric Power Consumption","Arizona","AZ",14944 +2001-05-01,"Electric Power Consumption","Florida","FL",29161 +2001-05-01,"Electric Power Consumption","California","CA",83703 +2001-05-01,"Electric Power Consumption","Washington","WA",8961 +2001-05-01,"Electric Power Consumption","Louisiana","LA",20692 +2001-05-01,"Electric Power Consumption","New York","NY",27910 +2001-05-01,"Electric Power Consumption","Kansas","KS",1178 +2001-05-01,"Electric Power Consumption","Iowa","IA",534 +2001-05-01,"Electric Power Consumption","Tennessee","TN",169 +2001-05-01,"Electric Power Consumption","Ohio","OH",1060 +2001-05-01,"Electric Power Consumption","North Dakota","ND",1 +2001-05-01,"Electric Power Consumption","Connecticut","CT",1179 +2001-05-01,"Electric Power Consumption","Georgia","GA",2635 +2001-05-01,"Electric Power Consumption","Idaho","ID",212 +2001-05-01,"Electric Power Consumption","Colorado","CO",6875 +2001-05-01,"Electric Power Consumption","Arkansas","AR",1753 +2001-05-01,"Electric Power Consumption","Oregon","OR",5456 +2001-05-01,"Electric Power Consumption","Minnesota","MN",866 +2001-05-01,"Electric Power Consumption","Pennsylvania","PA",1109 +2001-05-01,"Electric Power Consumption","South Dakota","SD",652 +2001-05-01,"Electric Power Consumption","Nebraska","NE",302 +2001-05-01,"Electric Power Consumption","Missouri","MO",2151 +2001-05-01,"Electric Power Consumption","Kentucky","KY",324 +2001-05-01,"Electric Power Consumption","New Jersey","NJ",9177 +2001-05-01,"Electric Power Consumption","South Carolina","SC",371 +2001-05-01,"Electric Power Consumption","Oklahoma","OK",12484 +2001-05-01,"Electric Power Consumption","Michigan","MI",7748 +2001-05-01,"Electric Power Consumption","Vermont","VT",54 +2001-05-01,"Electric Power Consumption","Maine","ME",6364 +2001-05-01,"Electric Power Consumption","Alabama","AL",4651 +2001-05-01,"Industrial Consumption","Maryland","MD",2019 +2001-05-01,"Industrial Consumption","Wyoming","WY",2843 +2001-05-01,"Industrial Consumption","New Jersey","NJ",6581 +2001-05-01,"Industrial Consumption","New Hampshire","NH",618 +2001-05-01,"Industrial Consumption","Georgia","GA",10980 +2001-05-01,"Industrial Consumption","Arizona","AZ",1975 +2001-05-01,"Industrial Consumption","New York","NY",6281 +2001-05-01,"Industrial Consumption","California","CA",51398 +2001-05-01,"Industrial Consumption","Minnesota","MN",6052 +2001-05-01,"Industrial Consumption","Idaho","ID",2499 +2001-05-01,"Industrial Consumption","Iowa","IA",7439 +2001-05-01,"Industrial Consumption","Kentucky","KY",6629 +2001-05-01,"Industrial Consumption","Indiana","IN",18831 +2001-05-01,"Industrial Consumption","Rhode Island","RI",443 +2001-05-01,"Industrial Consumption","Montana","MT",1230 +2001-05-01,"Industrial Consumption","New Mexico","NM",2506 +2001-05-01,"Industrial Consumption","Pennsylvania","PA",15205 +2001-05-01,"Industrial Consumption","Wisconsin","WI",8607 +2001-05-01,"Industrial Consumption","Connecticut","CT",2331 +2001-05-01,"Industrial Consumption","South Dakota","SD",329 +2001-05-01,"Industrial Consumption","Maine","ME",1248 +2001-05-01,"Industrial Consumption","Vermont","VT",207 +2001-05-01,"Industrial Consumption","Florida","FL",8401 +2001-05-01,"Industrial Consumption","Michigan","MI",16240 +2001-05-01,"Industrial Consumption","Illinois","IL",19913 +2001-05-01,"Industrial Consumption","Delaware","DE",1229 +2001-05-01,"Industrial Consumption","Missouri","MO",4509 +2001-05-01,"Industrial Consumption","Louisiana","LA",56959 +2001-05-01,"Industrial Consumption","Ohio","OH",20933 +2001-05-01,"Industrial Consumption","U.S.","U.S.",576532 +2001-05-01,"Industrial Consumption","Alaska","AK",5333 +2001-05-01,"Industrial Consumption","Kansas","KS",5497 +2001-05-01,"Industrial Consumption","Oregon","OR",5730 +2001-05-01,"Industrial Consumption","Arkansas","AR",9956 +2001-05-01,"Industrial Consumption","Virginia","VA",5348 +2001-05-01,"Industrial Consumption","Massachusetts","MA",6935 +2001-05-01,"Industrial Consumption","Nevada","NV",838 +2001-05-01,"Industrial Consumption","Mississippi","MS",8233 +2001-05-01,"Industrial Consumption","Tennessee","TN",8891 +2001-05-01,"Industrial Consumption","North Dakota","ND",1852 +2001-05-01,"Industrial Consumption","Hawaii","HI",46 +2001-05-01,"Industrial Consumption","Oklahoma","OK",9605 +2001-05-01,"Industrial Consumption","Colorado","CO",10985 +2001-05-01,"Industrial Consumption","Washington","WA",6151 +2001-05-01,"Industrial Consumption","Utah","UT",2945 +2001-05-01,"Industrial Consumption","Alabama","AL",12911 +2001-05-01,"Industrial Consumption","Texas","TX",172227 +2001-05-01,"Industrial Consumption","South Carolina","SC",6015 +2001-05-01,"Industrial Consumption","Nebraska","NE",2646 +2001-05-01,"Industrial Consumption","West Virginia","WV",3050 +2001-05-01,"Industrial Consumption","North Carolina","NC",6904 +2001-05-01,"Industrial Consumption","District of Columbia","DC",0 +2001-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94981 +2001-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",42238 +2001-05-01,"Residential Consumption","Michigan","MI",16156 +2001-05-01,"Residential Consumption","Florida","FL",951 +2001-05-01,"Residential Consumption","Arkansas","AR",942 +2001-05-01,"Residential Consumption","Montana","MT",1050 +2001-05-01,"Residential Consumption","Washington","WA",4900 +2001-05-01,"Residential Consumption","Oregon","OR",2653 +2001-05-01,"Residential Consumption","Ohio","OH",12105 +2001-05-01,"Residential Consumption","Hawaii","HI",46 +2001-05-01,"Residential Consumption","Georgia","GA",4594 +2001-05-01,"Residential Consumption","District of Columbia","DC",539 +2001-05-01,"Residential Consumption","Idaho","ID",1066 +2001-05-01,"Residential Consumption","Kansas","KS",2438 +2001-05-01,"Residential Consumption","Wyoming","WY",605 +2001-05-01,"Residential Consumption","Texas","TX",7979 +2001-05-01,"Residential Consumption","North Carolina","NC",2040 +2001-05-01,"Residential Consumption","Vermont","VT",146 +2001-05-01,"Residential Consumption","Nevada","NV",1641 +2001-05-01,"Residential Consumption","New Mexico","NM",1849 +2001-05-01,"Residential Consumption","Maine","ME",38 +2001-05-01,"Residential Consumption","Colorado","CO",8218 +2001-05-01,"Residential Consumption","Alabama","AL",1968 +2001-05-01,"Residential Consumption","New York","NY",18799 +2001-05-01,"Residential Consumption","Illinois","IL",14412 +2001-05-01,"Residential Consumption","South Carolina","SC",989 +2001-05-01,"Residential Consumption","Utah","UT",1877 +2001-05-01,"Residential Consumption","Maryland","MD",2674 +2001-05-01,"Residential Consumption","Oklahoma","OK",2300 +2001-05-01,"Residential Consumption","Rhode Island","RI",1030 +2001-05-01,"Residential Consumption","Louisiana","LA",1996 +2001-05-01,"Residential Consumption","Indiana","IN",4977 +2001-05-01,"Residential Consumption","California","CA",30699 +2001-05-01,"Residential Consumption","Mississippi","MS",1156 +2001-05-01,"Residential Consumption","Connecticut","CT",1317 +2001-05-01,"Residential Consumption","Tennessee","TN",1981 +2001-05-01,"Residential Consumption","Virginia","VA",2317 +2001-05-01,"Residential Consumption","Nebraska","NE",2592 +2001-05-01,"Residential Consumption","Minnesota","MN",4821 +2001-05-01,"Residential Consumption","North Dakota","ND",363 +2001-05-01,"Residential Consumption","New Jersey","NJ",9488 +2001-05-01,"Residential Consumption","Kentucky","KY",1312 +2001-05-01,"Residential Consumption","West Virginia","WV",963 +2001-05-01,"Residential Consumption","Wisconsin","WI",4620 +2001-05-01,"Residential Consumption","Pennsylvania","PA",10118 +2001-05-01,"Residential Consumption","New Hampshire","NH",406 +2001-05-01,"Residential Consumption","Delaware","DE",451 +2001-05-01,"Residential Consumption","Arizona","AZ",1904 +2001-05-01,"Residential Consumption","Alaska","AK",981 +2001-05-01,"Residential Consumption","U.S.","U.S.",209327 +2001-05-01,"Residential Consumption","Iowa","IA",2645 +2001-05-01,"Residential Consumption","South Dakota","SD",549 +2001-05-01,"Residential Consumption","Massachusetts","MA",5817 +2001-05-01,"Residential Consumption","Missouri","MO",3850 +2001-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",1235 +2001-06-01,"Commercial Consumption","Oklahoma","OK",1456 +2001-06-01,"Commercial Consumption","Missouri","MO",2198 +2001-06-01,"Commercial Consumption","Massachusetts","MA",2651 +2001-06-01,"Commercial Consumption","Colorado","CO",2659 +2001-06-01,"Commercial Consumption","Virginia","VA",2622 +2001-06-01,"Commercial Consumption","Wisconsin","WI",2455 +2001-06-01,"Commercial Consumption","Kansas","KS",1230 +2001-06-01,"Commercial Consumption","Rhode Island","RI",511 +2001-06-01,"Commercial Consumption","Mississippi","MS",1037 +2001-06-01,"Commercial Consumption","Washington","WA",2686 +2001-06-01,"Commercial Consumption","North Dakota","ND",278 +2001-06-01,"Commercial Consumption","Minnesota","MN",3210 +2001-06-01,"Commercial Consumption","Pennsylvania","PA",4883 +2001-06-01,"Commercial Consumption","New Hampshire","NH",187 +2001-06-01,"Commercial Consumption","West Virginia","WV",1241 +2001-06-01,"Commercial Consumption","Oregon","OR",1362 +2001-06-01,"Commercial Consumption","Maryland","MD",2753 +2001-06-01,"Commercial Consumption","Ohio","OH",5345 +2001-06-01,"Commercial Consumption","Delaware","DE",221 +2001-06-01,"Commercial Consumption","Tennessee","TN",2065 +2001-06-01,"Commercial Consumption","Indiana","IN",2710 +2001-06-01,"Commercial Consumption","District of Columbia","DC",852 +2001-06-01,"Commercial Consumption","New Mexico","NM",1139 +2001-06-01,"Commercial Consumption","South Dakota","SD",302 +2001-06-01,"Commercial Consumption","Kentucky","KY",1081 +2001-06-01,"Commercial Consumption","Texas","TX",9873 +2001-06-01,"Commercial Consumption","Michigan","MI",6076 +2001-06-01,"Commercial Consumption","Louisiana","LA",1456 +2001-06-01,"Commercial Consumption","Wyoming","WY",352 +2001-06-01,"Commercial Consumption","Idaho","ID",526 +2001-06-01,"Commercial Consumption","Arkansas","AR",1549 +2001-06-01,"Commercial Consumption","Alabama","AL",1180 +2001-06-01,"Commercial Consumption","South Carolina","SC",1116 +2001-06-01,"Commercial Consumption","New Jersey","NJ",4326 +2001-06-01,"Commercial Consumption","Montana","MT",492 +2001-06-01,"Commercial Consumption","Maine","ME",65 +2001-06-01,"Commercial Consumption","U.S.","U.S.",135449 +2001-06-01,"Commercial Consumption","Georgia","GA",2147 +2001-06-01,"Commercial Consumption","Florida","FL",3590 +2001-06-01,"Commercial Consumption","Vermont","VT",108 +2001-06-01,"Commercial Consumption","Alaska","AK",640 +2001-06-01,"Commercial Consumption","Connecticut","CT",2455 +2001-06-01,"Commercial Consumption","New York","NY",22083 +2001-06-01,"Commercial Consumption","Arizona","AZ",1947 +2001-06-01,"Commercial Consumption","Nevada","NV",1325 +2001-06-01,"Commercial Consumption","North Carolina","NC",1564 +2001-06-01,"Commercial Consumption","Utah","UT",961 +2001-06-01,"Commercial Consumption","Iowa","IA",1426 +2001-06-01,"Commercial Consumption","Hawaii","HI",151 +2001-06-01,"Commercial Consumption","California","CA",15537 +2001-06-01,"Commercial Consumption","Nebraska","NE",1162 +2001-06-01,"Commercial Consumption","Illinois","IL",6206 +2001-06-01,"Delivered to Consumers","Ohio","OH",34864 +2001-06-01,"Delivered to Consumers","Michigan","MI",41686 +2001-06-01,"Delivered to Consumers","Iowa","IA",10449 +2001-06-01,"Delivered to Consumers","Wisconsin","WI",15421 +2001-06-01,"Delivered to Consumers","Arizona","AZ",17703 +2001-06-01,"Delivered to Consumers","New Hampshire","NH",1134 +2001-06-01,"Delivered to Consumers","Illinois","IL",39615 +2001-06-01,"Delivered to Consumers","Alaska","AK",8588 +2001-06-01,"Delivered to Consumers","Kentucky","KY",8890 +2001-06-01,"Delivered to Consumers","Massachusetts","MA",19798 +2001-06-01,"Delivered to Consumers","Louisiana","LA",77877 +2001-06-01,"Delivered to Consumers","U.S.","U.S.",1313119 +2001-06-01,"Delivered to Consumers","Rhode Island","RI",6419 +2001-06-01,"Delivered to Consumers","New York","NY",78246 +2001-06-01,"Delivered to Consumers","Kansas","KS",11171 +2001-06-01,"Delivered to Consumers","Alabama","AL",21010 +2001-06-01,"Delivered to Consumers","California","CA",174840 +2001-06-01,"Delivered to Consumers","Washington","WA",18345 +2001-06-01,"Delivered to Consumers","District of Columbia","DC",1252 +2001-06-01,"Delivered to Consumers","Indiana","IN",26685 +2001-06-01,"Delivered to Consumers","West Virginia","WV",4688 +2001-06-01,"Delivered to Consumers","Maryland","MD",8342 +2001-06-01,"Delivered to Consumers","Oklahoma","OK",28194 +2001-06-01,"Delivered to Consumers","Tennessee","TN",12059 +2001-06-01,"Delivered to Consumers","North Dakota","ND",2533 +2001-06-01,"Delivered to Consumers","South Dakota","SD",1381 +2001-06-01,"Delivered to Consumers","Connecticut","CT",7730 +2001-06-01,"Delivered to Consumers","Nebraska","NE",5429 +2001-06-01,"Delivered to Consumers","Texas","TX",323054 +2001-06-01,"Delivered to Consumers","Delaware","DE",3276 +2001-06-01,"Delivered to Consumers","Wyoming","WY",3864 +2001-06-01,"Delivered to Consumers","Vermont","VT",381 +2001-06-01,"Delivered to Consumers","Montana","MT",2439 +2001-06-01,"Delivered to Consumers","Pennsylvania","PA",26098 +2001-06-01,"Delivered to Consumers","Mississippi","MS",20348 +2001-06-01,"Delivered to Consumers","Nevada","NV",11650 +2001-06-01,"Delivered to Consumers","New Jersey","NJ",31342 +2001-06-01,"Delivered to Consumers","Idaho","ID",3728 +2001-06-01,"Delivered to Consumers","Virginia","VA",10937 +2001-06-01,"Delivered to Consumers","North Carolina","NC",11979 +2001-06-01,"Delivered to Consumers","Missouri","MO",12679 +2001-06-01,"Delivered to Consumers","Colorado","CO",23904 +2001-06-01,"Delivered to Consumers","South Carolina","SC",9367 +2001-06-01,"Delivered to Consumers","Oregon","OR",14891 +2001-06-01,"Delivered to Consumers","Minnesota","MN",13524 +2001-06-01,"Delivered to Consumers","Utah","UT",7056 +2001-06-01,"Delivered to Consumers","New Mexico","NM",9811 +2001-06-01,"Delivered to Consumers","Hawaii","HI",244 +2001-06-01,"Delivered to Consumers","Arkansas","AR",12558 +2001-06-01,"Delivered to Consumers","Maine","ME",6957 +2001-06-01,"Delivered to Consumers","Georgia","GA",20544 +2001-06-01,"Delivered to Consumers","Florida","FL",46947 +2001-06-01,"Electric Power Consumption","Virginia","VA",3118 +2001-06-01,"Electric Power Consumption","New Mexico","NM",5258 +2001-06-01,"Electric Power Consumption","Arkansas","AR",1403 +2001-06-01,"Electric Power Consumption","New York","NY",36706 +2001-06-01,"Electric Power Consumption","Vermont","VT",3 +2001-06-01,"Electric Power Consumption","Tennessee","TN",313 +2001-06-01,"Electric Power Consumption","North Carolina","NC",2266 +2001-06-01,"Electric Power Consumption","Mississippi","MS",10566 +2001-06-01,"Electric Power Consumption","Montana","MT",20 +2001-06-01,"Electric Power Consumption","Arizona","AZ",12611 +2001-06-01,"Electric Power Consumption","Washington","WA",7013 +2001-06-01,"Electric Power Consumption","Massachusetts","MA",8389 +2001-06-01,"Electric Power Consumption","Nevada","NV",8399 +2001-06-01,"Electric Power Consumption","Iowa","IA",479 +2001-06-01,"Electric Power Consumption","Connecticut","CT",1891 +2001-06-01,"Electric Power Consumption","Minnesota","MN",791 +2001-06-01,"Electric Power Consumption","Pennsylvania","PA",1771 +2001-06-01,"Electric Power Consumption","Maine","ME",6254 +2001-06-01,"Electric Power Consumption","Hawaii","HI",0 +2001-06-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-06-01,"Electric Power Consumption","Indiana","IN",1818 +2001-06-01,"Electric Power Consumption","Delaware","DE",1358 +2001-06-01,"Electric Power Consumption","Alabama","AL",6493 +2001-06-01,"Electric Power Consumption","Texas","TX",151710 +2001-06-01,"Electric Power Consumption","Illinois","IL",3757 +2001-06-01,"Electric Power Consumption","West Virginia","WV",47 +2001-06-01,"Electric Power Consumption","Wisconsin","WI",1751 +2001-06-01,"Electric Power Consumption","South Dakota","SD",455 +2001-06-01,"Electric Power Consumption","Missouri","MO",3045 +2001-06-01,"Electric Power Consumption","Ohio","OH",923 +2001-06-01,"Electric Power Consumption","Georgia","GA",4291 +2001-06-01,"Electric Power Consumption","Rhode Island","RI",4790 +2001-06-01,"Electric Power Consumption","Utah","UT",1475 +2001-06-01,"Electric Power Consumption","Oregon","OR",6550 +2001-06-01,"Electric Power Consumption","Wyoming","WY",162 +2001-06-01,"Electric Power Consumption","Kentucky","KY",388 +2001-06-01,"Electric Power Consumption","Colorado","CO",7181 +2001-06-01,"Electric Power Consumption","South Carolina","SC",1430 +2001-06-01,"Electric Power Consumption","North Dakota","ND",0 +2001-06-01,"Electric Power Consumption","Maryland","MD",1330 +2001-06-01,"Electric Power Consumption","New Jersey","NJ",13768 +2001-06-01,"Electric Power Consumption","Louisiana","LA",21707 +2001-06-01,"Electric Power Consumption","Michigan","MI",9902 +2001-06-01,"Electric Power Consumption","Kansas","KS",1864 +2001-06-01,"Electric Power Consumption","U.S.","U.S.",492819 +2001-06-01,"Electric Power Consumption","Nebraska","NE",422 +2001-06-01,"Electric Power Consumption","Alaska","AK",2427 +2001-06-01,"Electric Power Consumption","Idaho","ID",207 +2001-06-01,"Electric Power Consumption","Oklahoma","OK",16765 +2001-06-01,"Electric Power Consumption","Florida","FL",35294 +2001-06-01,"Electric Power Consumption","California","CA",84253 +2001-06-01,"Industrial Consumption","North Dakota","ND",2011 +2001-06-01,"Industrial Consumption","Missouri","MO",4386 +2001-06-01,"Industrial Consumption","Ohio","OH",19944 +2001-06-01,"Industrial Consumption","Kansas","KS",6335 +2001-06-01,"Industrial Consumption","Utah","UT",2848 +2001-06-01,"Industrial Consumption","Minnesota","MN",6046 +2001-06-01,"Industrial Consumption","Maryland","MD",2312 +2001-06-01,"Industrial Consumption","Hawaii","HI",46 +2001-06-01,"Industrial Consumption","Arizona","AZ",1872 +2001-06-01,"Industrial Consumption","Pennsylvania","PA",13093 +2001-06-01,"Industrial Consumption","Nevada","NV",751 +2001-06-01,"Industrial Consumption","Arkansas","AR",8795 +2001-06-01,"Industrial Consumption","Alabama","AL",11989 +2001-06-01,"Industrial Consumption","New Jersey","NJ",7031 +2001-06-01,"Industrial Consumption","New Hampshire","NH",734 +2001-06-01,"Industrial Consumption","Rhode Island","RI",474 +2001-06-01,"Industrial Consumption","Alaska","AK",4909 +2001-06-01,"Industrial Consumption","Louisiana","LA",53080 +2001-06-01,"Industrial Consumption","Washington","WA",5621 +2001-06-01,"Industrial Consumption","Vermont","VT",173 +2001-06-01,"Industrial Consumption","Wyoming","WY",2914 +2001-06-01,"Industrial Consumption","Kentucky","KY",6460 +2001-06-01,"Industrial Consumption","Delaware","DE",1429 +2001-06-01,"Industrial Consumption","Colorado","CO",9633 +2001-06-01,"Industrial Consumption","New Mexico","NM",2355 +2001-06-01,"Industrial Consumption","Oregon","OR",5472 +2001-06-01,"Industrial Consumption","New York","NY",6030 +2001-06-01,"Industrial Consumption","Virginia","VA",3437 +2001-06-01,"Industrial Consumption","West Virginia","WV",2959 +2001-06-01,"Industrial Consumption","District of Columbia","DC",0 +2001-06-01,"Industrial Consumption","Tennessee","TN",8385 +2001-06-01,"Industrial Consumption","Idaho","ID",2410 +2001-06-01,"Industrial Consumption","Connecticut","CT",2168 +2001-06-01,"Industrial Consumption","Illinois","IL",18238 +2001-06-01,"Industrial Consumption","Oklahoma","OK",8292 +2001-06-01,"Industrial Consumption","South Dakota","SD",253 +2001-06-01,"Industrial Consumption","Nebraska","NE",2637 +2001-06-01,"Industrial Consumption","Indiana","IN",18369 +2001-06-01,"Industrial Consumption","U.S.","U.S.",536820 +2001-06-01,"Industrial Consumption","Mississippi","MS",7961 +2001-06-01,"Industrial Consumption","California","CA",51983 +2001-06-01,"Industrial Consumption","South Carolina","SC",6245 +2001-06-01,"Industrial Consumption","Iowa","IA",6610 +2001-06-01,"Industrial Consumption","Florida","FL",7285 +2001-06-01,"Industrial Consumption","Michigan","MI",15260 +2001-06-01,"Industrial Consumption","North Carolina","NC",7048 +2001-06-01,"Industrial Consumption","Georgia","GA",10558 +2001-06-01,"Industrial Consumption","Montana","MT",1230 +2001-06-01,"Industrial Consumption","Massachusetts","MA",5213 +2001-06-01,"Industrial Consumption","Maine","ME",616 +2001-06-01,"Industrial Consumption","Texas","TX",154950 +2001-06-01,"Industrial Consumption","Wisconsin","WI",7970 +2001-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91218 +2001-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",40041 +2001-06-01,"Residential Consumption","Rhode Island","RI",644 +2001-06-01,"Residential Consumption","Mississippi","MS",783 +2001-06-01,"Residential Consumption","Connecticut","CT",1216 +2001-06-01,"Residential Consumption","Vermont","VT",96 +2001-06-01,"Residential Consumption","District of Columbia","DC",400 +2001-06-01,"Residential Consumption","West Virginia","WV",442 +2001-06-01,"Residential Consumption","Oregon","OR",1508 +2001-06-01,"Residential Consumption","Iowa","IA",1934 +2001-06-01,"Residential Consumption","New Mexico","NM",1058 +2001-06-01,"Residential Consumption","Idaho","ID",585 +2001-06-01,"Residential Consumption","Kentucky","KY",961 +2001-06-01,"Residential Consumption","Missouri","MO",3051 +2001-06-01,"Residential Consumption","Wyoming","WY",435 +2001-06-01,"Residential Consumption","Illinois","IL",11415 +2001-06-01,"Residential Consumption","Michigan","MI",10447 +2001-06-01,"Residential Consumption","Pennsylvania","PA",6350 +2001-06-01,"Residential Consumption","Indiana","IN",3788 +2001-06-01,"Residential Consumption","New Jersey","NJ",6217 +2001-06-01,"Residential Consumption","Delaware","DE",269 +2001-06-01,"Residential Consumption","Louisiana","LA",1634 +2001-06-01,"Residential Consumption","Nebraska","NE",1209 +2001-06-01,"Residential Consumption","South Dakota","SD",370 +2001-06-01,"Residential Consumption","Minnesota","MN",3477 +2001-06-01,"Residential Consumption","Maine","ME",22 +2001-06-01,"Residential Consumption","Arkansas","AR",811 +2001-06-01,"Residential Consumption","New Hampshire","NH",213 +2001-06-01,"Residential Consumption","Colorado","CO",4431 +2001-06-01,"Residential Consumption","Oklahoma","OK",1680 +2001-06-01,"Residential Consumption","U.S.","U.S.",146837 +2001-06-01,"Residential Consumption","New York","NY",13426 +2001-06-01,"Residential Consumption","Texas","TX",6521 +2001-06-01,"Residential Consumption","South Carolina","SC",575 +2001-06-01,"Residential Consumption","Alabama","AL",1348 +2001-06-01,"Residential Consumption","Alaska","AK",612 +2001-06-01,"Residential Consumption","Ohio","OH",8652 +2001-06-01,"Residential Consumption","Nevada","NV",1175 +2001-06-01,"Residential Consumption","North Dakota","ND",243 +2001-06-01,"Residential Consumption","California","CA",23066 +2001-06-01,"Residential Consumption","Arizona","AZ",1272 +2001-06-01,"Residential Consumption","North Carolina","NC",1101 +2001-06-01,"Residential Consumption","Hawaii","HI",47 +2001-06-01,"Residential Consumption","Virginia","VA",1760 +2001-06-01,"Residential Consumption","Utah","UT",1771 +2001-06-01,"Residential Consumption","Maryland","MD",1948 +2001-06-01,"Residential Consumption","Georgia","GA",3547 +2001-06-01,"Residential Consumption","Florida","FL",778 +2001-06-01,"Residential Consumption","Kansas","KS",1742 +2001-06-01,"Residential Consumption","Wisconsin","WI",3245 +2001-06-01,"Residential Consumption","Tennessee","TN",1295 +2001-06-01,"Residential Consumption","Massachusetts","MA",3545 +2001-06-01,"Residential Consumption","Montana","MT",697 +2001-06-01,"Residential Consumption","Washington","WA",3025 +2001-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",1195 +2001-07-01,"Commercial Consumption","Oregon","OR",1084 +2001-07-01,"Commercial Consumption","Georgia","GA",2058 +2001-07-01,"Commercial Consumption","Rhode Island","RI",460 +2001-07-01,"Commercial Consumption","Alaska","AK",603 +2001-07-01,"Commercial Consumption","California","CA",15370 +2001-07-01,"Commercial Consumption","Arizona","AZ",1763 +2001-07-01,"Commercial Consumption","District of Columbia","DC",908 +2001-07-01,"Commercial Consumption","West Virginia","WV",808 +2001-07-01,"Commercial Consumption","Minnesota","MN",2807 +2001-07-01,"Commercial Consumption","New Mexico","NM",1012 +2001-07-01,"Commercial Consumption","Texas","TX",9871 +2001-07-01,"Commercial Consumption","Idaho","ID",456 +2001-07-01,"Commercial Consumption","Hawaii","HI",148 +2001-07-01,"Commercial Consumption","Michigan","MI",5147 +2001-07-01,"Commercial Consumption","Louisiana","LA",1358 +2001-07-01,"Commercial Consumption","Utah","UT",926 +2001-07-01,"Commercial Consumption","Virginia","VA",2647 +2001-07-01,"Commercial Consumption","New Hampshire","NH",126 +2001-07-01,"Commercial Consumption","North Dakota","ND",333 +2001-07-01,"Commercial Consumption","Massachusetts","MA",2264 +2001-07-01,"Commercial Consumption","Wisconsin","WI",2228 +2001-07-01,"Commercial Consumption","South Dakota","SD",274 +2001-07-01,"Commercial Consumption","Maine","ME",68 +2001-07-01,"Commercial Consumption","U.S.","U.S.",130415 +2001-07-01,"Commercial Consumption","Kansas","KS",1465 +2001-07-01,"Commercial Consumption","Nebraska","NE",1090 +2001-07-01,"Commercial Consumption","Nevada","NV",1237 +2001-07-01,"Commercial Consumption","Wyoming","WY",257 +2001-07-01,"Commercial Consumption","South Carolina","SC",1067 +2001-07-01,"Commercial Consumption","North Carolina","NC",1569 +2001-07-01,"Commercial Consumption","Montana","MT",383 +2001-07-01,"Commercial Consumption","Arkansas","AR",1220 +2001-07-01,"Commercial Consumption","New York","NY",25103 +2001-07-01,"Commercial Consumption","Pennsylvania","PA",4157 +2001-07-01,"Commercial Consumption","Maryland","MD",2641 +2001-07-01,"Commercial Consumption","Illinois","IL",6161 +2001-07-01,"Commercial Consumption","Washington","WA",2089 +2001-07-01,"Commercial Consumption","Oklahoma","OK",1731 +2001-07-01,"Commercial Consumption","Missouri","MO",2040 +2001-07-01,"Commercial Consumption","New Jersey","NJ",4730 +2001-07-01,"Commercial Consumption","Kentucky","KY",1015 +2001-07-01,"Commercial Consumption","Florida","FL",3387 +2001-07-01,"Commercial Consumption","Vermont","VT",74 +2001-07-01,"Commercial Consumption","Ohio","OH",5113 +2001-07-01,"Commercial Consumption","Alabama","AL",1104 +2001-07-01,"Commercial Consumption","Mississippi","MS",1078 +2001-07-01,"Commercial Consumption","Tennessee","TN",2068 +2001-07-01,"Commercial Consumption","Indiana","IN",1957 +2001-07-01,"Commercial Consumption","Colorado","CO",2071 +2001-07-01,"Commercial Consumption","Iowa","IA",1086 +2001-07-01,"Commercial Consumption","Connecticut","CT",1617 +2001-07-01,"Commercial Consumption","Delaware","DE",184 +2001-07-01,"Delivered to Consumers","South Carolina","SC",10138 +2001-07-01,"Delivered to Consumers","Georgia","GA",24229 +2001-07-01,"Delivered to Consumers","Delaware","DE",3324 +2001-07-01,"Delivered to Consumers","Kansas","KS",18862 +2001-07-01,"Delivered to Consumers","Mississippi","MS",30696 +2001-07-01,"Delivered to Consumers","Wyoming","WY",3515 +2001-07-01,"Delivered to Consumers","South Dakota","SD",1492 +2001-07-01,"Delivered to Consumers","Kentucky","KY",9668 +2001-07-01,"Delivered to Consumers","Wisconsin","WI",16478 +2001-07-01,"Delivered to Consumers","Colorado","CO",22403 +2001-07-01,"Delivered to Consumers","Oregon","OR",14036 +2001-07-01,"Delivered to Consumers","Louisiana","LA",93937 +2001-07-01,"Delivered to Consumers","Minnesota","MN",13674 +2001-07-01,"Delivered to Consumers","New Mexico","NM",10282 +2001-07-01,"Delivered to Consumers","Indiana","IN",25473 +2001-07-01,"Delivered to Consumers","Montana","MT",2359 +2001-07-01,"Delivered to Consumers","Maryland","MD",9046 +2001-07-01,"Delivered to Consumers","Hawaii","HI",242 +2001-07-01,"Delivered to Consumers","Nebraska","NE",8556 +2001-07-01,"Delivered to Consumers","Massachusetts","MA",19305 +2001-07-01,"Delivered to Consumers","Nevada","NV",12329 +2001-07-01,"Delivered to Consumers","Utah","UT",6214 +2001-07-01,"Delivered to Consumers","Vermont","VT",304 +2001-07-01,"Delivered to Consumers","Illinois","IL",44463 +2001-07-01,"Delivered to Consumers","Iowa","IA",10249 +2001-07-01,"Delivered to Consumers","Arkansas","AR",14779 +2001-07-01,"Delivered to Consumers","Alabama","AL",22537 +2001-07-01,"Delivered to Consumers","North Carolina","NC",13229 +2001-07-01,"Delivered to Consumers","Texas","TX",373497 +2001-07-01,"Delivered to Consumers","Maine","ME",8161 +2001-07-01,"Delivered to Consumers","North Dakota","ND",1360 +2001-07-01,"Delivered to Consumers","Connecticut","CT",7420 +2001-07-01,"Delivered to Consumers","Virginia","VA",14866 +2001-07-01,"Delivered to Consumers","Arizona","AZ",18312 +2001-07-01,"Delivered to Consumers","Rhode Island","RI",6971 +2001-07-01,"Delivered to Consumers","Pennsylvania","PA",25208 +2001-07-01,"Delivered to Consumers","Missouri","MO",16175 +2001-07-01,"Delivered to Consumers","U.S.","U.S.",1459919 +2001-07-01,"Delivered to Consumers","West Virginia","WV",5050 +2001-07-01,"Delivered to Consumers","New York","NY",82949 +2001-07-01,"Delivered to Consumers","Alaska","AK",9860 +2001-07-01,"Delivered to Consumers","Oklahoma","OK",41056 +2001-07-01,"Delivered to Consumers","Idaho","ID",4106 +2001-07-01,"Delivered to Consumers","Tennessee","TN",12967 +2001-07-01,"Delivered to Consumers","Ohio","OH",34025 +2001-07-01,"Delivered to Consumers","Michigan","MI",43845 +2001-07-01,"Delivered to Consumers","California","CA",186844 +2001-07-01,"Delivered to Consumers","New Jersey","NJ",30182 +2001-07-01,"Delivered to Consumers","Washington","WA",18349 +2001-07-01,"Delivered to Consumers","New Hampshire","NH",1003 +2001-07-01,"Delivered to Consumers","Florida","FL",53430 +2001-07-01,"Delivered to Consumers","District of Columbia","DC",1226 +2001-07-01,"Electric Power Consumption","Iowa","IA",1124 +2001-07-01,"Electric Power Consumption","U.S.","U.S.",634425 +2001-07-01,"Electric Power Consumption","Indiana","IN",2926 +2001-07-01,"Electric Power Consumption","Delaware","DE",1474 +2001-07-01,"Electric Power Consumption","Arizona","AZ",13636 +2001-07-01,"Electric Power Consumption","California","CA",92713 +2001-07-01,"Electric Power Consumption","Rhode Island","RI",5482 +2001-07-01,"Electric Power Consumption","Minnesota","MN",1941 +2001-07-01,"Electric Power Consumption","Wyoming","WY",228 +2001-07-01,"Electric Power Consumption","Nebraska","NE",1201 +2001-07-01,"Electric Power Consumption","Ohio","OH",2372 +2001-07-01,"Electric Power Consumption","Virginia","VA",4493 +2001-07-01,"Electric Power Consumption","Louisiana","LA",32832 +2001-07-01,"Electric Power Consumption","Colorado","CO",8212 +2001-07-01,"Electric Power Consumption","South Carolina","SC",1906 +2001-07-01,"Electric Power Consumption","Kansas","KS",7234 +2001-07-01,"Electric Power Consumption","Connecticut","CT",2476 +2001-07-01,"Electric Power Consumption","Alaska","AK",2439 +2001-07-01,"Electric Power Consumption","Washington","WA",8652 +2001-07-01,"Electric Power Consumption","New Jersey","NJ",13532 +2001-07-01,"Electric Power Consumption","New York","NY",41800 +2001-07-01,"Electric Power Consumption","Texas","TX",190037 +2001-07-01,"Electric Power Consumption","Michigan","MI",15513 +2001-07-01,"Electric Power Consumption","Massachusetts","MA",8716 +2001-07-01,"Electric Power Consumption","Wisconsin","WI",3847 +2001-07-01,"Electric Power Consumption","Vermont","VT",3 +2001-07-01,"Electric Power Consumption","Oklahoma","OK",29681 +2001-07-01,"Electric Power Consumption","Utah","UT",1250 +2001-07-01,"Electric Power Consumption","Nevada","NV",9156 +2001-07-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-07-01,"Electric Power Consumption","Montana","MT",62 +2001-07-01,"Electric Power Consumption","Oregon","OR",6621 +2001-07-01,"Electric Power Consumption","Illinois","IL",8474 +2001-07-01,"Electric Power Consumption","Pennsylvania","PA",2262 +2001-07-01,"Electric Power Consumption","South Dakota","SD",711 +2001-07-01,"Electric Power Consumption","Maine","ME",7517 +2001-07-01,"Electric Power Consumption","Hawaii","HI",0 +2001-07-01,"Electric Power Consumption","Florida","FL",40418 +2001-07-01,"Electric Power Consumption","Arkansas","AR",3790 +2001-07-01,"Electric Power Consumption","West Virginia","WV",598 +2001-07-01,"Electric Power Consumption","Tennessee","TN",1011 +2001-07-01,"Electric Power Consumption","Mississippi","MS",21171 +2001-07-01,"Electric Power Consumption","Kentucky","KY",872 +2001-07-01,"Electric Power Consumption","North Dakota","ND",0 +2001-07-01,"Electric Power Consumption","Maryland","MD",2607 +2001-07-01,"Electric Power Consumption","Georgia","GA",7681 +2001-07-01,"Electric Power Consumption","Alabama","AL",8348 +2001-07-01,"Electric Power Consumption","New Mexico","NM",5860 +2001-07-01,"Electric Power Consumption","Idaho","ID",824 +2001-07-01,"Electric Power Consumption","North Carolina","NC",3764 +2001-07-01,"Electric Power Consumption","Missouri","MO",6959 +2001-07-01,"Industrial Consumption","Pennsylvania","PA",13764 +2001-07-01,"Industrial Consumption","New Jersey","NJ",6881 +2001-07-01,"Industrial Consumption","Massachusetts","MA",5613 +2001-07-01,"Industrial Consumption","Louisiana","LA",57884 +2001-07-01,"Industrial Consumption","Ohio","OH",19239 +2001-07-01,"Industrial Consumption","Virginia","VA",6230 +2001-07-01,"Industrial Consumption","Oklahoma","OK",8183 +2001-07-01,"Industrial Consumption","New Mexico","NM",2520 +2001-07-01,"Industrial Consumption","Oregon","OR",5277 +2001-07-01,"Industrial Consumption","Nebraska","NE",5283 +2001-07-01,"Industrial Consumption","Iowa","IA",6490 +2001-07-01,"Industrial Consumption","Connecticut","CT",2517 +2001-07-01,"Industrial Consumption","Indiana","IN",17553 +2001-07-01,"Industrial Consumption","Illinois","IL",19905 +2001-07-01,"Industrial Consumption","Maine","ME",552 +2001-07-01,"Industrial Consumption","Alabama","AL",11891 +2001-07-01,"Industrial Consumption","Tennessee","TN",8749 +2001-07-01,"Industrial Consumption","Georgia","GA",10974 +2001-07-01,"Industrial Consumption","Washington","WA",5600 +2001-07-01,"Industrial Consumption","Arizona","AZ",1853 +2001-07-01,"Industrial Consumption","Utah","UT",2624 +2001-07-01,"Industrial Consumption","Arkansas","AR",8802 +2001-07-01,"Industrial Consumption","Texas","TX",168168 +2001-07-01,"Industrial Consumption","North Carolina","NC",6810 +2001-07-01,"Industrial Consumption","Montana","MT",1497 +2001-07-01,"Industrial Consumption","Maryland","MD",2204 +2001-07-01,"Industrial Consumption","California","CA",54565 +2001-07-01,"Industrial Consumption","Vermont","VT",162 +2001-07-01,"Industrial Consumption","Wyoming","WY",2792 +2001-07-01,"Industrial Consumption","Wisconsin","WI",7599 +2001-07-01,"Industrial Consumption","Minnesota","MN",6202 +2001-07-01,"Industrial Consumption","Michigan","MI",16263 +2001-07-01,"Industrial Consumption","Hawaii","HI",50 +2001-07-01,"Industrial Consumption","U.S.","U.S.",570067 +2001-07-01,"Industrial Consumption","New York","NY",6233 +2001-07-01,"Industrial Consumption","Nevada","NV",894 +2001-07-01,"Industrial Consumption","South Carolina","SC",6665 +2001-07-01,"Industrial Consumption","West Virginia","WV",3258 +2001-07-01,"Industrial Consumption","Idaho","ID",2413 +2001-07-01,"Industrial Consumption","Florida","FL",8899 +2001-07-01,"Industrial Consumption","Kentucky","KY",6740 +2001-07-01,"Industrial Consumption","Delaware","DE",1454 +2001-07-01,"Industrial Consumption","Alaska","AK",6300 +2001-07-01,"Industrial Consumption","North Dakota","ND",814 +2001-07-01,"Industrial Consumption","Missouri","MO",4772 +2001-07-01,"Industrial Consumption","Colorado","CO",9063 +2001-07-01,"Industrial Consumption","South Dakota","SD",260 +2001-07-01,"Industrial Consumption","Kansas","KS",8627 +2001-07-01,"Industrial Consumption","Mississippi","MS",7703 +2001-07-01,"Industrial Consumption","New Hampshire","NH",724 +2001-07-01,"Industrial Consumption","Rhode Island","RI",553 +2001-07-01,"Industrial Consumption","District of Columbia","DC",0 +2001-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93635 +2001-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",44518 +2001-07-01,"Residential Consumption","South Dakota","SD",248 +2001-07-01,"Residential Consumption","District of Columbia","DC",318 +2001-07-01,"Residential Consumption","Washington","WA",2008 +2001-07-01,"Residential Consumption","Arizona","AZ",1060 +2001-07-01,"Residential Consumption","North Carolina","NC",1086 +2001-07-01,"Residential Consumption","Hawaii","HI",44 +2001-07-01,"Residential Consumption","Massachusetts","MA",2713 +2001-07-01,"Residential Consumption","Oklahoma","OK",1462 +2001-07-01,"Residential Consumption","U.S.","U.S.",123777 +2001-07-01,"Residential Consumption","Louisiana","LA",1862 +2001-07-01,"Residential Consumption","Vermont","VT",65 +2001-07-01,"Residential Consumption","Tennessee","TN",1139 +2001-07-01,"Residential Consumption","Minnesota","MN",2723 +2001-07-01,"Residential Consumption","Pennsylvania","PA",5025 +2001-07-01,"Residential Consumption","Idaho","ID",413 +2001-07-01,"Residential Consumption","New Hampshire","NH",153 +2001-07-01,"Residential Consumption","Kansas","KS",1536 +2001-07-01,"Residential Consumption","West Virginia","WV",386 +2001-07-01,"Residential Consumption","Rhode Island","RI",476 +2001-07-01,"Residential Consumption","Michigan","MI",6923 +2001-07-01,"Residential Consumption","Georgia","GA",3517 +2001-07-01,"Residential Consumption","Arkansas","AR",967 +2001-07-01,"Residential Consumption","Montana","MT",417 +2001-07-01,"Residential Consumption","Illinois","IL",9923 +2001-07-01,"Residential Consumption","Ohio","OH",7301 +2001-07-01,"Residential Consumption","Utah","UT",1414 +2001-07-01,"Residential Consumption","Nevada","NV",1042 +2001-07-01,"Residential Consumption","Florida","FL",726 +2001-07-01,"Residential Consumption","California","CA",24195 +2001-07-01,"Residential Consumption","Alaska","AK",520 +2001-07-01,"Residential Consumption","Texas","TX",5422 +2001-07-01,"Residential Consumption","South Carolina","SC",499 +2001-07-01,"Residential Consumption","Mississippi","MS",744 +2001-07-01,"Residential Consumption","Iowa","IA",1549 +2001-07-01,"Residential Consumption","Nebraska","NE",982 +2001-07-01,"Residential Consumption","New Jersey","NJ",5039 +2001-07-01,"Residential Consumption","Delaware","DE",212 +2001-07-01,"Residential Consumption","Wyoming","WY",238 +2001-07-01,"Residential Consumption","New York","NY",9813 +2001-07-01,"Residential Consumption","Connecticut","CT",809 +2001-07-01,"Residential Consumption","Wisconsin","WI",2803 +2001-07-01,"Residential Consumption","Virginia","VA",1497 +2001-07-01,"Residential Consumption","Maryland","MD",1594 +2001-07-01,"Residential Consumption","Maine","ME",25 +2001-07-01,"Residential Consumption","Indiana","IN",3038 +2001-07-01,"Residential Consumption","North Dakota","ND",213 +2001-07-01,"Residential Consumption","Kentucky","KY",1041 +2001-07-01,"Residential Consumption","Missouri","MO",2404 +2001-07-01,"Residential Consumption","Alabama","AL",1194 +2001-07-01,"Residential Consumption","Oregon","OR",1054 +2001-07-01,"Residential Consumption","New Mexico","NM",891 +2001-07-01,"Residential Consumption","Colorado","CO",3058 +2001-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",1235 +2001-08-01,"Commercial Consumption","North Carolina","NC",1445 +2001-08-01,"Commercial Consumption","U.S.","U.S.",133687 +2001-08-01,"Commercial Consumption","Ohio","OH",4609 +2001-08-01,"Commercial Consumption","Delaware","DE",160 +2001-08-01,"Commercial Consumption","Tennessee","TN",1817 +2001-08-01,"Commercial Consumption","Michigan","MI",5108 +2001-08-01,"Commercial Consumption","Washington","WA",1954 +2001-08-01,"Commercial Consumption","Minnesota","MN",3002 +2001-08-01,"Commercial Consumption","Virginia","VA",2771 +2001-08-01,"Commercial Consumption","Montana","MT",363 +2001-08-01,"Commercial Consumption","Indiana","IN",2211 +2001-08-01,"Commercial Consumption","Wyoming","WY",211 +2001-08-01,"Commercial Consumption","Utah","UT",961 +2001-08-01,"Commercial Consumption","Missouri","MO",1977 +2001-08-01,"Commercial Consumption","Massachusetts","MA",2290 +2001-08-01,"Commercial Consumption","New Jersey","NJ",4150 +2001-08-01,"Commercial Consumption","Georgia","GA",2102 +2001-08-01,"Commercial Consumption","Connecticut","CT",1933 +2001-08-01,"Commercial Consumption","California","CA",17275 +2001-08-01,"Commercial Consumption","District of Columbia","DC",623 +2001-08-01,"Commercial Consumption","South Carolina","SC",1076 +2001-08-01,"Commercial Consumption","Oregon","OR",1030 +2001-08-01,"Commercial Consumption","New Hampshire","NH",218 +2001-08-01,"Commercial Consumption","Texas","TX",9894 +2001-08-01,"Commercial Consumption","Maryland","MD",2591 +2001-08-01,"Commercial Consumption","Idaho","ID",402 +2001-08-01,"Commercial Consumption","Hawaii","HI",140 +2001-08-01,"Commercial Consumption","North Dakota","ND",313 +2001-08-01,"Commercial Consumption","New Mexico","NM",1055 +2001-08-01,"Commercial Consumption","Oklahoma","OK",1579 +2001-08-01,"Commercial Consumption","Arkansas","AR",1704 +2001-08-01,"Commercial Consumption","South Dakota","SD",294 +2001-08-01,"Commercial Consumption","Illinois","IL",6333 +2001-08-01,"Commercial Consumption","West Virginia","WV",1099 +2001-08-01,"Commercial Consumption","Colorado","CO",1633 +2001-08-01,"Commercial Consumption","Wisconsin","WI",1917 +2001-08-01,"Commercial Consumption","Maine","ME",69 +2001-08-01,"Commercial Consumption","Kentucky","KY",1119 +2001-08-01,"Commercial Consumption","Vermont","VT",72 +2001-08-01,"Commercial Consumption","Rhode Island","RI",465 +2001-08-01,"Commercial Consumption","Iowa","IA",998 +2001-08-01,"Commercial Consumption","Alabama","AL",1092 +2001-08-01,"Commercial Consumption","Mississippi","MS",1143 +2001-08-01,"Commercial Consumption","Nevada","NV",1238 +2001-08-01,"Commercial Consumption","Louisiana","LA",1422 +2001-08-01,"Commercial Consumption","Pennsylvania","PA",4220 +2001-08-01,"Commercial Consumption","Kansas","KS",1352 +2001-08-01,"Commercial Consumption","Florida","FL",3393 +2001-08-01,"Commercial Consumption","Alaska","AK",610 +2001-08-01,"Commercial Consumption","New York","NY",27552 +2001-08-01,"Commercial Consumption","Nebraska","NE",954 +2001-08-01,"Commercial Consumption","Arizona","AZ",1747 +2001-08-01,"Delivered to Consumers","Hawaii","HI",227 +2001-08-01,"Delivered to Consumers","Michigan","MI",44577 +2001-08-01,"Delivered to Consumers","Mississippi","MS",31715 +2001-08-01,"Delivered to Consumers","Oregon","OR",15541 +2001-08-01,"Delivered to Consumers","West Virginia","WV",5820 +2001-08-01,"Delivered to Consumers","Rhode Island","RI",7536 +2001-08-01,"Delivered to Consumers","Kentucky","KY",9881 +2001-08-01,"Delivered to Consumers","Arkansas","AR",16061 +2001-08-01,"Delivered to Consumers","Alabama","AL",23488 +2001-08-01,"Delivered to Consumers","Wisconsin","WI",16540 +2001-08-01,"Delivered to Consumers","North Carolina","NC",15763 +2001-08-01,"Delivered to Consumers","Massachusetts","MA",23154 +2001-08-01,"Delivered to Consumers","Vermont","VT",307 +2001-08-01,"Delivered to Consumers","Kansas","KS",17962 +2001-08-01,"Delivered to Consumers","Ohio","OH",32667 +2001-08-01,"Delivered to Consumers","Missouri","MO",16218 +2001-08-01,"Delivered to Consumers","Minnesota","MN",14855 +2001-08-01,"Delivered to Consumers","New Mexico","NM",9892 +2001-08-01,"Delivered to Consumers","Maryland","MD",11007 +2001-08-01,"Delivered to Consumers","Connecticut","CT",9010 +2001-08-01,"Delivered to Consumers","South Carolina","SC",11625 +2001-08-01,"Delivered to Consumers","Arizona","AZ",16919 +2001-08-01,"Delivered to Consumers","Indiana","IN",29184 +2001-08-01,"Delivered to Consumers","Illinois","IL",46777 +2001-08-01,"Delivered to Consumers","New York","NY",95148 +2001-08-01,"Delivered to Consumers","Oklahoma","OK",38697 +2001-08-01,"Delivered to Consumers","Colorado","CO",22033 +2001-08-01,"Delivered to Consumers","Nevada","NV",14023 +2001-08-01,"Delivered to Consumers","Louisiana","LA",105743 +2001-08-01,"Delivered to Consumers","District of Columbia","DC",905 +2001-08-01,"Delivered to Consumers","U.S.","U.S.",1528483 +2001-08-01,"Delivered to Consumers","Montana","MT",2152 +2001-08-01,"Delivered to Consumers","Idaho","ID",4145 +2001-08-01,"Delivered to Consumers","Tennessee","TN",13230 +2001-08-01,"Delivered to Consumers","Virginia","VA",15873 +2001-08-01,"Delivered to Consumers","Pennsylvania","PA",27662 +2001-08-01,"Delivered to Consumers","California","CA",204883 +2001-08-01,"Delivered to Consumers","Texas","TX",369956 +2001-08-01,"Delivered to Consumers","New Jersey","NJ",34881 +2001-08-01,"Delivered to Consumers","Georgia","GA",26863 +2001-08-01,"Delivered to Consumers","Utah","UT",6023 +2001-08-01,"Delivered to Consumers","Delaware","DE",4609 +2001-08-01,"Delivered to Consumers","Wyoming","WY",3541 +2001-08-01,"Delivered to Consumers","South Dakota","SD",1496 +2001-08-01,"Delivered to Consumers","Alaska","AK",10185 +2001-08-01,"Delivered to Consumers","Nebraska","NE",6368 +2001-08-01,"Delivered to Consumers","North Dakota","ND",2387 +2001-08-01,"Delivered to Consumers","Iowa","IA",10177 +2001-08-01,"Delivered to Consumers","Maine","ME",9020 +2001-08-01,"Delivered to Consumers","Washington","WA",16283 +2001-08-01,"Delivered to Consumers","New Hampshire","NH",888 +2001-08-01,"Delivered to Consumers","Florida","FL",53352 +2001-08-01,"Electric Power Consumption","Washington","WA",7236 +2001-08-01,"Electric Power Consumption","Colorado","CO",7998 +2001-08-01,"Electric Power Consumption","South Carolina","SC",2993 +2001-08-01,"Electric Power Consumption","Nevada","NV",10878 +2001-08-01,"Electric Power Consumption","U.S.","U.S.",686753 +2001-08-01,"Electric Power Consumption","Montana","MT",48 +2001-08-01,"Electric Power Consumption","Arkansas","AR",4318 +2001-08-01,"Electric Power Consumption","New York","NY",52220 +2001-08-01,"Electric Power Consumption","Tennessee","TN",868 +2001-08-01,"Electric Power Consumption","Delaware","DE",2856 +2001-08-01,"Electric Power Consumption","Arizona","AZ",12373 +2001-08-01,"Electric Power Consumption","Georgia","GA",9154 +2001-08-01,"Electric Power Consumption","Florida","FL",41538 +2001-08-01,"Electric Power Consumption","New Jersey","NJ",18799 +2001-08-01,"Electric Power Consumption","Texas","TX",191478 +2001-08-01,"Electric Power Consumption","Oklahoma","OK",26402 +2001-08-01,"Electric Power Consumption","Utah","UT",1271 +2001-08-01,"Electric Power Consumption","Michigan","MI",17622 +2001-08-01,"Electric Power Consumption","Kansas","KS",5034 +2001-08-01,"Electric Power Consumption","Alabama","AL",8892 +2001-08-01,"Electric Power Consumption","New Mexico","NM",5171 +2001-08-01,"Electric Power Consumption","Wyoming","WY",186 +2001-08-01,"Electric Power Consumption","Nebraska","NE",701 +2001-08-01,"Electric Power Consumption","North Carolina","NC",6039 +2001-08-01,"Electric Power Consumption","Missouri","MO",7272 +2001-08-01,"Electric Power Consumption","Hawaii","HI",0 +2001-08-01,"Electric Power Consumption","Illinois","IL",11093 +2001-08-01,"Electric Power Consumption","Kentucky","KY",1078 +2001-08-01,"Electric Power Consumption","Indiana","IN",4027 +2001-08-01,"Electric Power Consumption","Alaska","AK",2574 +2001-08-01,"Electric Power Consumption","Virginia","VA",6360 +2001-08-01,"Electric Power Consumption","Rhode Island","RI",6056 +2001-08-01,"Electric Power Consumption","Pennsylvania","PA",3427 +2001-08-01,"Electric Power Consumption","South Dakota","SD",666 +2001-08-01,"Electric Power Consumption","Maine","ME",8230 +2001-08-01,"Electric Power Consumption","Ohio","OH",2889 +2001-08-01,"Electric Power Consumption","New Hampshire","NH",20 +2001-08-01,"Electric Power Consumption","North Dakota","ND",0 +2001-08-01,"Electric Power Consumption","Louisiana","LA",38346 +2001-08-01,"Electric Power Consumption","Idaho","ID",1309 +2001-08-01,"Electric Power Consumption","Wisconsin","WI",4156 +2001-08-01,"Electric Power Consumption","Iowa","IA",1278 +2001-08-01,"Electric Power Consumption","Vermont","VT",2 +2001-08-01,"Electric Power Consumption","Mississippi","MS",21933 +2001-08-01,"Electric Power Consumption","Connecticut","CT",4089 +2001-08-01,"Electric Power Consumption","Oregon","OR",8791 +2001-08-01,"Electric Power Consumption","Minnesota","MN",2026 +2001-08-01,"Electric Power Consumption","Massachusetts","MA",11433 +2001-08-01,"Electric Power Consumption","West Virginia","WV",1238 +2001-08-01,"Electric Power Consumption","Maryland","MD",4377 +2001-08-01,"Electric Power Consumption","California","CA",100006 +2001-08-01,"Industrial Consumption","Utah","UT",2349 +2001-08-01,"Industrial Consumption","U.S.","U.S.",589875 +2001-08-01,"Industrial Consumption","Pennsylvania","PA",15092 +2001-08-01,"Industrial Consumption","New York","NY",5925 +2001-08-01,"Industrial Consumption","Nebraska","NE",3782 +2001-08-01,"Industrial Consumption","Virginia","VA",5204 +2001-08-01,"Industrial Consumption","Tennessee","TN",9419 +2001-08-01,"Industrial Consumption","North Carolina","NC",7331 +2001-08-01,"Industrial Consumption","Maryland","MD",2437 +2001-08-01,"Industrial Consumption","Washington","WA",5436 +2001-08-01,"Industrial Consumption","California","CA",65128 +2001-08-01,"Industrial Consumption","Arkansas","AR",9233 +2001-08-01,"Industrial Consumption","Alabama","AL",12319 +2001-08-01,"Industrial Consumption","Wisconsin","WI",8165 +2001-08-01,"Industrial Consumption","District of Columbia","DC",0 +2001-08-01,"Industrial Consumption","South Dakota","SD",259 +2001-08-01,"Industrial Consumption","Kansas","KS",10037 +2001-08-01,"Industrial Consumption","Arizona","AZ",1813 +2001-08-01,"Industrial Consumption","Oregon","OR",4839 +2001-08-01,"Industrial Consumption","Montana","MT",1337 +2001-08-01,"Industrial Consumption","Missouri","MO",4809 +2001-08-01,"Industrial Consumption","Texas","TX",161273 +2001-08-01,"Industrial Consumption","South Carolina","SC",7082 +2001-08-01,"Industrial Consumption","Florida","FL",7721 +2001-08-01,"Industrial Consumption","Kentucky","KY",6597 +2001-08-01,"Industrial Consumption","Indiana","IN",20171 +2001-08-01,"Industrial Consumption","Mississippi","MS",7984 +2001-08-01,"Industrial Consumption","Vermont","VT",179 +2001-08-01,"Industrial Consumption","New Jersey","NJ",6928 +2001-08-01,"Industrial Consumption","Minnesota","MN",7183 +2001-08-01,"Industrial Consumption","Connecticut","CT",1977 +2001-08-01,"Industrial Consumption","Illinois","IL",20406 +2001-08-01,"Industrial Consumption","North Dakota","ND",1795 +2001-08-01,"Industrial Consumption","Massachusetts","MA",6996 +2001-08-01,"Industrial Consumption","Colorado","CO",9888 +2001-08-01,"Industrial Consumption","New Mexico","NM",2820 +2001-08-01,"Industrial Consumption","West Virginia","WV",3035 +2001-08-01,"Industrial Consumption","New Hampshire","NH",503 +2001-08-01,"Industrial Consumption","Delaware","DE",1433 +2001-08-01,"Industrial Consumption","Oklahoma","OK",9437 +2001-08-01,"Industrial Consumption","Ohio","OH",19128 +2001-08-01,"Industrial Consumption","Maine","ME",696 +2001-08-01,"Industrial Consumption","Wyoming","WY",2897 +2001-08-01,"Industrial Consumption","Iowa","IA",6582 +2001-08-01,"Industrial Consumption","Michigan","MI",15666 +2001-08-01,"Industrial Consumption","Rhode Island","RI",565 +2001-08-01,"Industrial Consumption","Georgia","GA",12062 +2001-08-01,"Industrial Consumption","Hawaii","HI",47 +2001-08-01,"Industrial Consumption","Louisiana","LA",64447 +2001-08-01,"Industrial Consumption","Nevada","NV",910 +2001-08-01,"Industrial Consumption","Idaho","ID",2093 +2001-08-01,"Industrial Consumption","Alaska","AK",6462 +2001-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94087 +2001-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",46609 +2001-08-01,"Residential Consumption","Rhode Island","RI",450 +2001-08-01,"Residential Consumption","Hawaii","HI",41 +2001-08-01,"Residential Consumption","Michigan","MI",6180 +2001-08-01,"Residential Consumption","Arkansas","AR",806 +2001-08-01,"Residential Consumption","Wyoming","WY",247 +2001-08-01,"Residential Consumption","New York","NY",9451 +2001-08-01,"Residential Consumption","Louisiana","LA",1527 +2001-08-01,"Residential Consumption","Connecticut","CT",1012 +2001-08-01,"Residential Consumption","Tennessee","TN",1125 +2001-08-01,"Residential Consumption","Nebraska","NE",931 +2001-08-01,"Residential Consumption","Nevada","NV",996 +2001-08-01,"Residential Consumption","Georgia","GA",3546 +2001-08-01,"Residential Consumption","District of Columbia","DC",282 +2001-08-01,"Residential Consumption","Florida","FL",700 +2001-08-01,"Residential Consumption","Idaho","ID",341 +2001-08-01,"Residential Consumption","Colorado","CO",2513 +2001-08-01,"Residential Consumption","Kansas","KS",1539 +2001-08-01,"Residential Consumption","Arizona","AZ",986 +2001-08-01,"Residential Consumption","South Carolina","SC",473 +2001-08-01,"Residential Consumption","Oregon","OR",882 +2001-08-01,"Residential Consumption","Iowa","IA",1318 +2001-08-01,"Residential Consumption","Minnesota","MN",2643 +2001-08-01,"Residential Consumption","North Dakota","ND",279 +2001-08-01,"Residential Consumption","New Jersey","NJ",5003 +2001-08-01,"Residential Consumption","California","CA",22473 +2001-08-01,"Residential Consumption","Alabama","AL",1185 +2001-08-01,"Residential Consumption","Texas","TX",7310 +2001-08-01,"Residential Consumption","Utah","UT",1442 +2001-08-01,"Residential Consumption","Indiana","IN",2775 +2001-08-01,"Residential Consumption","Montana","MT",405 +2001-08-01,"Residential Consumption","Kentucky","KY",1087 +2001-08-01,"Residential Consumption","Alaska","AK",538 +2001-08-01,"Residential Consumption","U.S.","U.S.",116934 +2001-08-01,"Residential Consumption","Illinois","IL",8945 +2001-08-01,"Residential Consumption","Wisconsin","WI",2302 +2001-08-01,"Residential Consumption","Vermont","VT",54 +2001-08-01,"Residential Consumption","Virginia","VA",1538 +2001-08-01,"Residential Consumption","New Mexico","NM",847 +2001-08-01,"Residential Consumption","Maine","ME",25 +2001-08-01,"Residential Consumption","Massachusetts","MA",2435 +2001-08-01,"Residential Consumption","Oklahoma","OK",1279 +2001-08-01,"Residential Consumption","West Virginia","WV",448 +2001-08-01,"Residential Consumption","Ohio","OH",6041 +2001-08-01,"Residential Consumption","Missouri","MO",2160 +2001-08-01,"Residential Consumption","New Hampshire","NH",148 +2001-08-01,"Residential Consumption","North Carolina","NC",948 +2001-08-01,"Residential Consumption","Mississippi","MS",656 +2001-08-01,"Residential Consumption","Maryland","MD",1602 +2001-08-01,"Residential Consumption","South Dakota","SD",277 +2001-08-01,"Residential Consumption","Pennsylvania","PA",4923 +2001-08-01,"Residential Consumption","Washington","WA",1656 +2001-08-01,"Residential Consumption","Delaware","DE",161 +2001-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",1235 +2001-09-01,"Commercial Consumption","New Mexico","NM",1078 +2001-09-01,"Commercial Consumption","New Jersey","NJ",5028 +2001-09-01,"Commercial Consumption","Kentucky","KY",1138 +2001-09-01,"Commercial Consumption","Ohio","OH",5472 +2001-09-01,"Commercial Consumption","Idaho","ID",462 +2001-09-01,"Commercial Consumption","Michigan","MI",5943 +2001-09-01,"Commercial Consumption","Colorado","CO",1854 +2001-09-01,"Commercial Consumption","Massachusetts","MA",2668 +2001-09-01,"Commercial Consumption","New Hampshire","NH",231 +2001-09-01,"Commercial Consumption","U.S.","U.S.",143342 +2001-09-01,"Commercial Consumption","Iowa","IA",1605 +2001-09-01,"Commercial Consumption","Connecticut","CT",2521 +2001-09-01,"Commercial Consumption","Delaware","DE",185 +2001-09-01,"Commercial Consumption","Nevada","NV",1655 +2001-09-01,"Commercial Consumption","North Dakota","ND",322 +2001-09-01,"Commercial Consumption","North Carolina","NC",1626 +2001-09-01,"Commercial Consumption","Minnesota","MN",3048 +2001-09-01,"Commercial Consumption","South Dakota","SD",282 +2001-09-01,"Commercial Consumption","Montana","MT",387 +2001-09-01,"Commercial Consumption","Hawaii","HI",145 +2001-09-01,"Commercial Consumption","California","CA",16322 +2001-09-01,"Commercial Consumption","Indiana","IN",2832 +2001-09-01,"Commercial Consumption","Illinois","IL",7631 +2001-09-01,"Commercial Consumption","West Virginia","WV",1243 +2001-09-01,"Commercial Consumption","Texas","TX",8816 +2001-09-01,"Commercial Consumption","Maryland","MD",3118 +2001-09-01,"Commercial Consumption","Kansas","KS",1273 +2001-09-01,"Commercial Consumption","Georgia","GA",2230 +2001-09-01,"Commercial Consumption","Florida","FL",3547 +2001-09-01,"Commercial Consumption","Vermont","VT",92 +2001-09-01,"Commercial Consumption","Arkansas","AR",1853 +2001-09-01,"Commercial Consumption","Alabama","AL",1164 +2001-09-01,"Commercial Consumption","Nebraska","NE",1006 +2001-09-01,"Commercial Consumption","Louisiana","LA",1305 +2001-09-01,"Commercial Consumption","Oregon","OR",1162 +2001-09-01,"Commercial Consumption","Virginia","VA",2950 +2001-09-01,"Commercial Consumption","New York","NY",28804 +2001-09-01,"Commercial Consumption","Mississippi","MS",935 +2001-09-01,"Commercial Consumption","Arizona","AZ",1771 +2001-09-01,"Commercial Consumption","Tennessee","TN",2066 +2001-09-01,"Commercial Consumption","District of Columbia","DC",786 +2001-09-01,"Commercial Consumption","Wyoming","WY",311 +2001-09-01,"Commercial Consumption","Oklahoma","OK",1667 +2001-09-01,"Commercial Consumption","Pennsylvania","PA",4753 +2001-09-01,"Commercial Consumption","Wisconsin","WI",2479 +2001-09-01,"Commercial Consumption","Maine","ME",85 +2001-09-01,"Commercial Consumption","Alaska","AK",789 +2001-09-01,"Commercial Consumption","Washington","WA",1949 +2001-09-01,"Commercial Consumption","South Carolina","SC",1118 +2001-09-01,"Commercial Consumption","Utah","UT",992 +2001-09-01,"Commercial Consumption","Missouri","MO",2152 +2001-09-01,"Commercial Consumption","Rhode Island","RI",492 +2001-09-01,"Delivered to Consumers","New Mexico","NM",8474 +2001-09-01,"Delivered to Consumers","New York","NY",84785 +2001-09-01,"Delivered to Consumers","Iowa","IA",10494 +2001-09-01,"Delivered to Consumers","Florida","FL",55306 +2001-09-01,"Delivered to Consumers","Indiana","IN",25697 +2001-09-01,"Delivered to Consumers","Wyoming","WY",3688 +2001-09-01,"Delivered to Consumers","West Virginia","WV",5703 +2001-09-01,"Delivered to Consumers","Kansas","KS",13422 +2001-09-01,"Delivered to Consumers","Ohio","OH",33129 +2001-09-01,"Delivered to Consumers","Virginia","VA",15145 +2001-09-01,"Delivered to Consumers","California","CA",185162 +2001-09-01,"Delivered to Consumers","South Carolina","SC",9077 +2001-09-01,"Delivered to Consumers","Utah","UT",6572 +2001-09-01,"Delivered to Consumers","Montana","MT",2135 +2001-09-01,"Delivered to Consumers","Hawaii","HI",226 +2001-09-01,"Delivered to Consumers","Alaska","AK",9784 +2001-09-01,"Delivered to Consumers","North Carolina","NC",11364 +2001-09-01,"Delivered to Consumers","Louisiana","LA",93365 +2001-09-01,"Delivered to Consumers","North Dakota","ND",1944 +2001-09-01,"Delivered to Consumers","U.S.","U.S.",1360871 +2001-09-01,"Delivered to Consumers","South Dakota","SD",1058 +2001-09-01,"Delivered to Consumers","Oklahoma","OK",30910 +2001-09-01,"Delivered to Consumers","Connecticut","CT",11276 +2001-09-01,"Delivered to Consumers","Maine","ME",8835 +2001-09-01,"Delivered to Consumers","Washington","WA",15107 +2001-09-01,"Delivered to Consumers","Illinois","IL",41870 +2001-09-01,"Delivered to Consumers","Michigan","MI",40142 +2001-09-01,"Delivered to Consumers","Alabama","AL",21619 +2001-09-01,"Delivered to Consumers","Wisconsin","WI",16716 +2001-09-01,"Delivered to Consumers","Pennsylvania","PA",29499 +2001-09-01,"Delivered to Consumers","Nebraska","NE",5506 +2001-09-01,"Delivered to Consumers","Massachusetts","MA",22753 +2001-09-01,"Delivered to Consumers","Texas","TX",306053 +2001-09-01,"Delivered to Consumers","District of Columbia","DC",1087 +2001-09-01,"Delivered to Consumers","Rhode Island","RI",7493 +2001-09-01,"Delivered to Consumers","Missouri","MO",12056 +2001-09-01,"Delivered to Consumers","New Jersey","NJ",28906 +2001-09-01,"Delivered to Consumers","Georgia","GA",21857 +2001-09-01,"Delivered to Consumers","Arizona","AZ",14352 +2001-09-01,"Delivered to Consumers","Minnesota","MN",14705 +2001-09-01,"Delivered to Consumers","Delaware","DE",4923 +2001-09-01,"Delivered to Consumers","Vermont","VT",361 +2001-09-01,"Delivered to Consumers","Arkansas","AR",15014 +2001-09-01,"Delivered to Consumers","Maryland","MD",9109 +2001-09-01,"Delivered to Consumers","Idaho","ID",4609 +2001-09-01,"Delivered to Consumers","Tennessee","TN",11569 +2001-09-01,"Delivered to Consumers","Kentucky","KY",10024 +2001-09-01,"Delivered to Consumers","Mississippi","MS",28537 +2001-09-01,"Delivered to Consumers","Colorado","CO",19905 +2001-09-01,"Delivered to Consumers","Oregon","OR",15102 +2001-09-01,"Delivered to Consumers","Nevada","NV",12067 +2001-09-01,"Delivered to Consumers","New Hampshire","NH",1182 +2001-09-01,"Electric Power Consumption","New York","NY",39717 +2001-09-01,"Electric Power Consumption","Oregon","OR",7952 +2001-09-01,"Electric Power Consumption","Minnesota","MN",513 +2001-09-01,"Electric Power Consumption","Pennsylvania","PA",2964 +2001-09-01,"Electric Power Consumption","Mississippi","MS",18783 +2001-09-01,"Electric Power Consumption","Montana","MT",5 +2001-09-01,"Electric Power Consumption","Maryland","MD",2319 +2001-09-01,"Electric Power Consumption","Alaska","AK",2392 +2001-09-01,"Electric Power Consumption","Michigan","MI",11276 +2001-09-01,"Electric Power Consumption","Kansas","KS",1476 +2001-09-01,"Electric Power Consumption","Hawaii","HI",0 +2001-09-01,"Electric Power Consumption","California","CA",83677 +2001-09-01,"Electric Power Consumption","Wisconsin","WI",2064 +2001-09-01,"Electric Power Consumption","North Carolina","NC",1231 +2001-09-01,"Electric Power Consumption","North Dakota","ND",0 +2001-09-01,"Electric Power Consumption","Rhode Island","RI",5945 +2001-09-01,"Electric Power Consumption","West Virginia","WV",138 +2001-09-01,"Electric Power Consumption","Missouri","MO",2925 +2001-09-01,"Electric Power Consumption","Indiana","IN",1339 +2001-09-01,"Electric Power Consumption","Delaware","DE",2998 +2001-09-01,"Electric Power Consumption","Georgia","GA",4276 +2001-09-01,"Electric Power Consumption","New Jersey","NJ",11986 +2001-09-01,"Electric Power Consumption","Nevada","NV",8520 +2001-09-01,"Electric Power Consumption","Wyoming","WY",173 +2001-09-01,"Electric Power Consumption","Vermont","VT",2 +2001-09-01,"Electric Power Consumption","Connecticut","CT",5913 +2001-09-01,"Electric Power Consumption","Alabama","AL",7157 +2001-09-01,"Electric Power Consumption","New Mexico","NM",3897 +2001-09-01,"Electric Power Consumption","Idaho","ID",1572 +2001-09-01,"Electric Power Consumption","Colorado","CO",6696 +2001-09-01,"Electric Power Consumption","Texas","TX",135134 +2001-09-01,"Electric Power Consumption","Oklahoma","OK",17639 +2001-09-01,"Electric Power Consumption","Iowa","IA",449 +2001-09-01,"Electric Power Consumption","U.S.","U.S.",510262 +2001-09-01,"Electric Power Consumption","South Dakota","SD",211 +2001-09-01,"Electric Power Consumption","New Hampshire","NH",185 +2001-09-01,"Electric Power Consumption","Florida","FL",42864 +2001-09-01,"Electric Power Consumption","Washington","WA",5871 +2001-09-01,"Electric Power Consumption","Virginia","VA",5831 +2001-09-01,"Electric Power Consumption","Louisiana","LA",25901 +2001-09-01,"Electric Power Consumption","Arkansas","AR",2798 +2001-09-01,"Electric Power Consumption","Illinois","IL",2676 +2001-09-01,"Electric Power Consumption","Maine","ME",7828 +2001-09-01,"Electric Power Consumption","Kentucky","KY",426 +2001-09-01,"Electric Power Consumption","Ohio","OH",627 +2001-09-01,"Electric Power Consumption","Arizona","AZ",10115 +2001-09-01,"Electric Power Consumption","South Carolina","SC",602 +2001-09-01,"Electric Power Consumption","Utah","UT",1280 +2001-09-01,"Electric Power Consumption","Massachusetts","MA",11686 +2001-09-01,"Electric Power Consumption","Tennessee","TN",48 +2001-09-01,"Electric Power Consumption","Nebraska","NE",185 +2001-09-01,"Industrial Consumption","North Dakota","ND",1359 +2001-09-01,"Industrial Consumption","Maryland","MD",1999 +2001-09-01,"Industrial Consumption","Louisiana","LA",64571 +2001-09-01,"Industrial Consumption","Arizona","AZ",1439 +2001-09-01,"Industrial Consumption","U.S.","U.S.",578590 +2001-09-01,"Industrial Consumption","Virginia","VA",4911 +2001-09-01,"Industrial Consumption","Idaho","ID",2150 +2001-09-01,"Industrial Consumption","South Dakota","SD",287 +2001-09-01,"Industrial Consumption","Pennsylvania","PA",16432 +2001-09-01,"Industrial Consumption","Nevada","NV",858 +2001-09-01,"Industrial Consumption","South Carolina","SC",6839 +2001-09-01,"Industrial Consumption","West Virginia","WV",3571 +2001-09-01,"Industrial Consumption","Wyoming","WY",2933 +2001-09-01,"Industrial Consumption","Minnesota","MN",7926 +2001-09-01,"Industrial Consumption","Delaware","DE",1557 +2001-09-01,"Industrial Consumption","Rhode Island","RI",550 +2001-09-01,"Industrial Consumption","District of Columbia","DC",0 +2001-09-01,"Industrial Consumption","Massachusetts","MA",5547 +2001-09-01,"Industrial Consumption","New Mexico","NM",2596 +2001-09-01,"Industrial Consumption","New Hampshire","NH",582 +2001-09-01,"Industrial Consumption","Missouri","MO",4386 +2001-09-01,"Industrial Consumption","Washington","WA",5507 +2001-09-01,"Industrial Consumption","Kansas","KS",9467 +2001-09-01,"Industrial Consumption","California","CA",63833 +2001-09-01,"Industrial Consumption","Alabama","AL",12134 +2001-09-01,"Industrial Consumption","New Jersey","NJ",6221 +2001-09-01,"Industrial Consumption","Georgia","GA",11624 +2001-09-01,"Industrial Consumption","Montana","MT",1241 +2001-09-01,"Industrial Consumption","Colorado","CO",8555 +2001-09-01,"Industrial Consumption","Arkansas","AR",9591 +2001-09-01,"Industrial Consumption","Vermont","VT",200 +2001-09-01,"Industrial Consumption","Iowa","IA",6852 +2001-09-01,"Industrial Consumption","Florida","FL",8196 +2001-09-01,"Industrial Consumption","Connecticut","CT",1952 +2001-09-01,"Industrial Consumption","Kentucky","KY",7074 +2001-09-01,"Industrial Consumption","Indiana","IN",17971 +2001-09-01,"Industrial Consumption","Ohio","OH",20275 +2001-09-01,"Industrial Consumption","New York","NY",6076 +2001-09-01,"Industrial Consumption","Texas","TX",156874 +2001-09-01,"Industrial Consumption","Wisconsin","WI",8625 +2001-09-01,"Industrial Consumption","Illinois","IL",19383 +2001-09-01,"Industrial Consumption","North Carolina","NC",7421 +2001-09-01,"Industrial Consumption","Alaska","AK",5784 +2001-09-01,"Industrial Consumption","Utah","UT",2711 +2001-09-01,"Industrial Consumption","Oregon","OR",5096 +2001-09-01,"Industrial Consumption","Nebraska","NE",3414 +2001-09-01,"Industrial Consumption","Tennessee","TN",8227 +2001-09-01,"Industrial Consumption","Michigan","MI",14433 +2001-09-01,"Industrial Consumption","Hawaii","HI",39 +2001-09-01,"Industrial Consumption","Oklahoma","OK",10333 +2001-09-01,"Industrial Consumption","Mississippi","MS",8097 +2001-09-01,"Industrial Consumption","Maine","ME",891 +2001-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91760 +2001-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",41497 +2001-09-01,"Residential Consumption","Vermont","VT",67 +2001-09-01,"Residential Consumption","Virginia","VA",1454 +2001-09-01,"Residential Consumption","Utah","UT",1589 +2001-09-01,"Residential Consumption","New Hampshire","NH",184 +2001-09-01,"Residential Consumption","Montana","MT",503 +2001-09-01,"Residential Consumption","South Carolina","SC",516 +2001-09-01,"Residential Consumption","Tennessee","TN",1228 +2001-09-01,"Residential Consumption","Indiana","IN",3555 +2001-09-01,"Residential Consumption","North Dakota","ND",263 +2001-09-01,"Residential Consumption","Washington","WA",1780 +2001-09-01,"Residential Consumption","U.S.","U.S.",127482 +2001-09-01,"Residential Consumption","Oregon","OR",893 +2001-09-01,"Residential Consumption","Hawaii","HI",43 +2001-09-01,"Residential Consumption","Connecticut","CT",889 +2001-09-01,"Residential Consumption","Pennsylvania","PA",5351 +2001-09-01,"Residential Consumption","New Mexico","NM",903 +2001-09-01,"Residential Consumption","Arkansas","AR",772 +2001-09-01,"Residential Consumption","Arizona","AZ",1028 +2001-09-01,"Residential Consumption","Alaska","AK",819 +2001-09-01,"Residential Consumption","Ohio","OH",6755 +2001-09-01,"Residential Consumption","Minnesota","MN",3217 +2001-09-01,"Residential Consumption","Florida","FL",699 +2001-09-01,"Residential Consumption","Colorado","CO",2801 +2001-09-01,"Residential Consumption","West Virginia","WV",752 +2001-09-01,"Residential Consumption","Illinois","IL",12180 +2001-09-01,"Residential Consumption","Iowa","IA",1587 +2001-09-01,"Residential Consumption","District of Columbia","DC",301 +2001-09-01,"Residential Consumption","Missouri","MO",2592 +2001-09-01,"Residential Consumption","Wyoming","WY",271 +2001-09-01,"Residential Consumption","New York","NY",10188 +2001-09-01,"Residential Consumption","North Carolina","NC",1086 +2001-09-01,"Residential Consumption","Mississippi","MS",722 +2001-09-01,"Residential Consumption","Nevada","NV",1034 +2001-09-01,"Residential Consumption","Massachusetts","MA",2852 +2001-09-01,"Residential Consumption","Idaho","ID",424 +2001-09-01,"Residential Consumption","Oklahoma","OK",1271 +2001-09-01,"Residential Consumption","California","CA",21331 +2001-09-01,"Residential Consumption","Texas","TX",5229 +2001-09-01,"Residential Consumption","Louisiana","LA",1588 +2001-09-01,"Residential Consumption","Nebraska","NE",901 +2001-09-01,"Residential Consumption","Michigan","MI",8490 +2001-09-01,"Residential Consumption","Georgia","GA",3728 +2001-09-01,"Residential Consumption","New Jersey","NJ",5671 +2001-09-01,"Residential Consumption","Kansas","KS",1207 +2001-09-01,"Residential Consumption","Delaware","DE",183 +2001-09-01,"Residential Consumption","Rhode Island","RI",506 +2001-09-01,"Residential Consumption","Wisconsin","WI",3549 +2001-09-01,"Residential Consumption","Maryland","MD",1673 +2001-09-01,"Residential Consumption","South Dakota","SD",279 +2001-09-01,"Residential Consumption","Maine","ME",32 +2001-09-01,"Residential Consumption","Kentucky","KY",1385 +2001-09-01,"Residential Consumption","Alabama","AL",1164 +2001-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",1195 +2001-10-01,"Commercial Consumption","Wyoming","WY",607 +2001-10-01,"Commercial Consumption","Colorado","CO",2408 +2001-10-01,"Commercial Consumption","Missouri","MO",2787 +2001-10-01,"Commercial Consumption","Maine","ME",140 +2001-10-01,"Commercial Consumption","Idaho","ID",613 +2001-10-01,"Commercial Consumption","Connecticut","CT",2252 +2001-10-01,"Commercial Consumption","Arkansas","AR",2083 +2001-10-01,"Commercial Consumption","Nebraska","NE",1079 +2001-10-01,"Commercial Consumption","Louisiana","LA",1502 +2001-10-01,"Commercial Consumption","Oklahoma","OK",1693 +2001-10-01,"Commercial Consumption","Tennessee","TN",2395 +2001-10-01,"Commercial Consumption","Indiana","IN",5016 +2001-10-01,"Commercial Consumption","District of Columbia","DC",802 +2001-10-01,"Commercial Consumption","South Carolina","SC",1298 +2001-10-01,"Commercial Consumption","Virginia","VA",3736 +2001-10-01,"Commercial Consumption","Delaware","DE",290 +2001-10-01,"Commercial Consumption","Utah","UT",1834 +2001-10-01,"Commercial Consumption","New Mexico","NM",1334 +2001-10-01,"Commercial Consumption","South Dakota","SD",600 +2001-10-01,"Commercial Consumption","Florida","FL",3617 +2001-10-01,"Commercial Consumption","Alaska","AK",1499 +2001-10-01,"Commercial Consumption","New York","NY",26630 +2001-10-01,"Commercial Consumption","Nevada","NV",1383 +2001-10-01,"Commercial Consumption","Illinois","IL",12120 +2001-10-01,"Commercial Consumption","West Virginia","WV",2754 +2001-10-01,"Commercial Consumption","Washington","WA",4179 +2001-10-01,"Commercial Consumption","North Dakota","ND",781 +2001-10-01,"Commercial Consumption","Oregon","OR",1284 +2001-10-01,"Commercial Consumption","Pennsylvania","PA",8255 +2001-10-01,"Commercial Consumption","Massachusetts","MA",3061 +2001-10-01,"Commercial Consumption","Kentucky","KY",1772 +2001-10-01,"Commercial Consumption","Iowa","IA",2840 +2001-10-01,"Commercial Consumption","Arizona","AZ",1819 +2001-10-01,"Commercial Consumption","Minnesota","MN",6185 +2001-10-01,"Commercial Consumption","Maryland","MD",4473 +2001-10-01,"Commercial Consumption","Georgia","GA",3443 +2001-10-01,"Commercial Consumption","Hawaii","HI",138 +2001-10-01,"Commercial Consumption","Mississippi","MS",1234 +2001-10-01,"Commercial Consumption","Wisconsin","WI",5089 +2001-10-01,"Commercial Consumption","Ohio","OH",8991 +2001-10-01,"Commercial Consumption","California","CA",18308 +2001-10-01,"Commercial Consumption","North Carolina","NC",2264 +2001-10-01,"Commercial Consumption","New Jersey","NJ",6669 +2001-10-01,"Commercial Consumption","New Hampshire","NH",260 +2001-10-01,"Commercial Consumption","Montana","MT",725 +2001-10-01,"Commercial Consumption","U.S.","U.S.",185356 +2001-10-01,"Commercial Consumption","Texas","TX",10051 +2001-10-01,"Commercial Consumption","Kansas","KS",1461 +2001-10-01,"Commercial Consumption","Vermont","VT",108 +2001-10-01,"Commercial Consumption","Rhode Island","RI",635 +2001-10-01,"Commercial Consumption","Alabama","AL",1394 +2001-10-01,"Commercial Consumption","Michigan","MI",9463 +2001-10-01,"Delivered to Consumers","Delaware","DE",5078 +2001-10-01,"Delivered to Consumers","Maryland","MD",12662 +2001-10-01,"Delivered to Consumers","Alaska","AK",11290 +2001-10-01,"Delivered to Consumers","Ohio","OH",48517 +2001-10-01,"Delivered to Consumers","Iowa","IA",14476 +2001-10-01,"Delivered to Consumers","Wisconsin","WI",25355 +2001-10-01,"Delivered to Consumers","Nebraska","NE",5854 +2001-10-01,"Delivered to Consumers","Massachusetts","MA",24627 +2001-10-01,"Delivered to Consumers","California","CA",184119 +2001-10-01,"Delivered to Consumers","New Jersey","NJ",36822 +2001-10-01,"Delivered to Consumers","Alabama","AL",24186 +2001-10-01,"Delivered to Consumers","Colorado","CO",22672 +2001-10-01,"Delivered to Consumers","Maine","ME",8864 +2001-10-01,"Delivered to Consumers","North Dakota","ND",3013 +2001-10-01,"Delivered to Consumers","U.S.","U.S.",1507428 +2001-10-01,"Delivered to Consumers","West Virginia","WV",7694 +2001-10-01,"Delivered to Consumers","Vermont","VT",438 +2001-10-01,"Delivered to Consumers","Idaho","ID",5611 +2001-10-01,"Delivered to Consumers","Connecticut","CT",11370 +2001-10-01,"Delivered to Consumers","Mississippi","MS",28525 +2001-10-01,"Delivered to Consumers","Texas","TX",298861 +2001-10-01,"Delivered to Consumers","Nevada","NV",12854 +2001-10-01,"Delivered to Consumers","Louisiana","LA",92353 +2001-10-01,"Delivered to Consumers","Indiana","IN",34650 +2001-10-01,"Delivered to Consumers","South Dakota","SD",1661 +2001-10-01,"Delivered to Consumers","Rhode Island","RI",7652 +2001-10-01,"Delivered to Consumers","Kansas","KS",11375 +2001-10-01,"Delivered to Consumers","Tennessee","TN",16135 +2001-10-01,"Delivered to Consumers","Kentucky","KY",12591 +2001-10-01,"Delivered to Consumers","South Carolina","SC",11870 +2001-10-01,"Delivered to Consumers","Arizona","AZ",14127 +2001-10-01,"Delivered to Consumers","Florida","FL",52955 +2001-10-01,"Delivered to Consumers","District of Columbia","DC",1231 +2001-10-01,"Delivered to Consumers","New Mexico","NM",8362 +2001-10-01,"Delivered to Consumers","Wyoming","WY",4790 +2001-10-01,"Delivered to Consumers","Illinois","IL",67167 +2001-10-01,"Delivered to Consumers","Michigan","MI",59283 +2001-10-01,"Delivered to Consumers","Arkansas","AR",18239 +2001-10-01,"Delivered to Consumers","Virginia","VA",14257 +2001-10-01,"Delivered to Consumers","Oregon","OR",16822 +2001-10-01,"Delivered to Consumers","Utah","UT",9189 +2001-10-01,"Delivered to Consumers","New York","NY",85317 +2001-10-01,"Delivered to Consumers","Pennsylvania","PA",38457 +2001-10-01,"Delivered to Consumers","North Carolina","NC",14905 +2001-10-01,"Delivered to Consumers","Georgia","GA",25679 +2001-10-01,"Delivered to Consumers","New Hampshire","NH",1589 +2001-10-01,"Delivered to Consumers","Montana","MT",3446 +2001-10-01,"Delivered to Consumers","Missouri","MO",13682 +2001-10-01,"Delivered to Consumers","Washington","WA",23527 +2001-10-01,"Delivered to Consumers","Hawaii","HI",220 +2001-10-01,"Delivered to Consumers","Oklahoma","OK",29194 +2001-10-01,"Delivered to Consumers","Minnesota","MN",22582 +2001-10-01,"Electric Power Consumption","Oklahoma","OK",14051 +2001-10-01,"Electric Power Consumption","Mississippi","MS",19065 +2001-10-01,"Electric Power Consumption","Arizona","AZ",9808 +2001-10-01,"Electric Power Consumption","Florida","FL",40435 +2001-10-01,"Electric Power Consumption","Washington","WA",5763 +2001-10-01,"Electric Power Consumption","Louisiana","LA",19391 +2001-10-01,"Electric Power Consumption","North Carolina","NC",1016 +2001-10-01,"Electric Power Consumption","Missouri","MO",2000 +2001-10-01,"Electric Power Consumption","Georgia","GA",1788 +2001-10-01,"Electric Power Consumption","Alabama","AL",7473 +2001-10-01,"Electric Power Consumption","South Carolina","SC",1337 +2001-10-01,"Electric Power Consumption","Texas","TX",118063 +2001-10-01,"Electric Power Consumption","Illinois","IL",4679 +2001-10-01,"Electric Power Consumption","West Virginia","WV",148 +2001-10-01,"Electric Power Consumption","Vermont","VT",3 +2001-10-01,"Electric Power Consumption","Tennessee","TN",0 +2001-10-01,"Electric Power Consumption","North Dakota","ND",0 +2001-10-01,"Electric Power Consumption","New Jersey","NJ",12925 +2001-10-01,"Electric Power Consumption","New York","NY",35309 +2001-10-01,"Electric Power Consumption","Minnesota","MN",866 +2001-10-01,"Electric Power Consumption","Wisconsin","WI",1882 +2001-10-01,"Electric Power Consumption","Nebraska","NE",252 +2001-10-01,"Electric Power Consumption","Maine","ME",7534 +2001-10-01,"Electric Power Consumption","New Hampshire","NH",292 +2001-10-01,"Electric Power Consumption","Arkansas","AR",2845 +2001-10-01,"Electric Power Consumption","Montana","MT",3 +2001-10-01,"Electric Power Consumption","California","CA",75445 +2001-10-01,"Electric Power Consumption","Alaska","AK",2865 +2001-10-01,"Electric Power Consumption","Pennsylvania","PA",2732 +2001-10-01,"Electric Power Consumption","Nevada","NV",9264 +2001-10-01,"Electric Power Consumption","Wyoming","WY",196 +2001-10-01,"Electric Power Consumption","Indiana","IN",600 +2001-10-01,"Electric Power Consumption","Connecticut","CT",4880 +2001-10-01,"Electric Power Consumption","New Mexico","NM",3303 +2001-10-01,"Electric Power Consumption","Idaho","ID",1871 +2001-10-01,"Electric Power Consumption","Rhode Island","RI",5793 +2001-10-01,"Electric Power Consumption","Utah","UT",863 +2001-10-01,"Electric Power Consumption","Michigan","MI",14520 +2001-10-01,"Electric Power Consumption","Massachusetts","MA",10562 +2001-10-01,"Electric Power Consumption","U.S.","U.S.",466080 +2001-10-01,"Electric Power Consumption","Kentucky","KY",267 +2001-10-01,"Electric Power Consumption","Hawaii","HI",0 +2001-10-01,"Electric Power Consumption","Virginia","VA",4012 +2001-10-01,"Electric Power Consumption","Colorado","CO",8071 +2001-10-01,"Electric Power Consumption","Oregon","OR",8062 +2001-10-01,"Electric Power Consumption","Kansas","KS",1137 +2001-10-01,"Electric Power Consumption","Iowa","IA",259 +2001-10-01,"Electric Power Consumption","South Dakota","SD",61 +2001-10-01,"Electric Power Consumption","Ohio","OH",354 +2001-10-01,"Electric Power Consumption","Maryland","MD",1555 +2001-10-01,"Electric Power Consumption","Delaware","DE",2483 +2001-10-01,"Industrial Consumption","Missouri","MO",4954 +2001-10-01,"Industrial Consumption","Colorado","CO",8139 +2001-10-01,"Industrial Consumption","Pennsylvania","PA",16385 +2001-10-01,"Industrial Consumption","Minnesota","MN",7945 +2001-10-01,"Industrial Consumption","Florida","FL",8140 +2001-10-01,"Industrial Consumption","Indiana","IN",21014 +2001-10-01,"Industrial Consumption","Rhode Island","RI",606 +2001-10-01,"Industrial Consumption","Alaska","AK",5263 +2001-10-01,"Industrial Consumption","Massachusetts","MA",6493 +2001-10-01,"Industrial Consumption","Washington","WA",7892 +2001-10-01,"Industrial Consumption","Utah","UT",3024 +2001-10-01,"Industrial Consumption","Oregon","OR",6033 +2001-10-01,"Industrial Consumption","New York","NY",6531 +2001-10-01,"Industrial Consumption","Wisconsin","WI",10688 +2001-10-01,"Industrial Consumption","Illinois","IL",24125 +2001-10-01,"Industrial Consumption","Delaware","DE",1971 +2001-10-01,"Industrial Consumption","North Carolina","NC",9111 +2001-10-01,"Industrial Consumption","Montana","MT",1558 +2001-10-01,"Industrial Consumption","New Mexico","NM",2614 +2001-10-01,"Industrial Consumption","California","CA",61177 +2001-10-01,"Industrial Consumption","Virginia","VA",3420 +2001-10-01,"Industrial Consumption","West Virginia","WV",3265 +2001-10-01,"Industrial Consumption","Wyoming","WY",3272 +2001-10-01,"Industrial Consumption","New Hampshire","NH",737 +2001-10-01,"Industrial Consumption","Iowa","IA",7846 +2001-10-01,"Industrial Consumption","Maryland","MD",2117 +2001-10-01,"Industrial Consumption","Hawaii","HI",41 +2001-10-01,"Industrial Consumption","Connecticut","CT",2104 +2001-10-01,"Industrial Consumption","Georgia","GA",12533 +2001-10-01,"Industrial Consumption","District of Columbia","DC",0 +2001-10-01,"Industrial Consumption","Oklahoma","OK",11560 +2001-10-01,"Industrial Consumption","Ohio","OH",23504 +2001-10-01,"Industrial Consumption","Arizona","AZ",1344 +2001-10-01,"Industrial Consumption","Nevada","NV",962 +2001-10-01,"Industrial Consumption","New Jersey","NJ",7283 +2001-10-01,"Industrial Consumption","North Dakota","ND",1460 +2001-10-01,"Industrial Consumption","Louisiana","LA",69233 +2001-10-01,"Industrial Consumption","U.S.","U.S.",617291 +2001-10-01,"Industrial Consumption","Alabama","AL",13613 +2001-10-01,"Industrial Consumption","Texas","TX",162820 +2001-10-01,"Industrial Consumption","Vermont","VT",236 +2001-10-01,"Industrial Consumption","Idaho","ID",2413 +2001-10-01,"Industrial Consumption","Kentucky","KY",7364 +2001-10-01,"Industrial Consumption","South Dakota","SD",329 +2001-10-01,"Industrial Consumption","Kansas","KS",6721 +2001-10-01,"Industrial Consumption","Mississippi","MS",7304 +2001-10-01,"Industrial Consumption","Maine","ME",1135 +2001-10-01,"Industrial Consumption","Arkansas","AR",11777 +2001-10-01,"Industrial Consumption","Nebraska","NE",2746 +2001-10-01,"Industrial Consumption","South Carolina","SC",8343 +2001-10-01,"Industrial Consumption","Tennessee","TN",11542 +2001-10-01,"Industrial Consumption","Michigan","MI",16600 +2001-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95679 +2001-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",45967 +2001-10-01,"Residential Consumption","Oregon","OR",1442 +2001-10-01,"Residential Consumption","Michigan","MI",18699 +2001-10-01,"Residential Consumption","District of Columbia","DC",428 +2001-10-01,"Residential Consumption","Pennsylvania","PA",11085 +2001-10-01,"Residential Consumption","Arkansas","AR",1534 +2001-10-01,"Residential Consumption","New Hampshire","NH",300 +2001-10-01,"Residential Consumption","Kentucky","KY",3187 +2001-10-01,"Residential Consumption","Alaska","AK",1662 +2001-10-01,"Residential Consumption","West Virginia","WV",1527 +2001-10-01,"Residential Consumption","Texas","TX",7927 +2001-10-01,"Residential Consumption","Ohio","OH",15669 +2001-10-01,"Residential Consumption","Connecticut","CT",2135 +2001-10-01,"Residential Consumption","Tennessee","TN",2198 +2001-10-01,"Residential Consumption","Florida","FL",762 +2001-10-01,"Residential Consumption","New Jersey","NJ",9944 +2001-10-01,"Residential Consumption","Montana","MT",1160 +2001-10-01,"Residential Consumption","Colorado","CO",4054 +2001-10-01,"Residential Consumption","Kansas","KS",2057 +2001-10-01,"Residential Consumption","Oklahoma","OK",1891 +2001-10-01,"Residential Consumption","Rhode Island","RI",617 +2001-10-01,"Residential Consumption","Louisiana","LA",2228 +2001-10-01,"Residential Consumption","Nebraska","NE",1777 +2001-10-01,"Residential Consumption","Maine","ME",54 +2001-10-01,"Residential Consumption","New York","NY",16847 +2001-10-01,"Residential Consumption","Iowa","IA",3531 +2001-10-01,"Residential Consumption","Virginia","VA",3088 +2001-10-01,"Residential Consumption","Maryland","MD",4517 +2001-10-01,"Residential Consumption","South Dakota","SD",670 +2001-10-01,"Residential Consumption","Georgia","GA",7915 +2001-10-01,"Residential Consumption","Delaware","DE",334 +2001-10-01,"Residential Consumption","Hawaii","HI",40 +2001-10-01,"Residential Consumption","Wisconsin","WI",7696 +2001-10-01,"Residential Consumption","Utah","UT",3468 +2001-10-01,"Residential Consumption","Minnesota","MN",7587 +2001-10-01,"Residential Consumption","New Mexico","NM",1112 +2001-10-01,"Residential Consumption","Alabama","AL",1706 +2001-10-01,"Residential Consumption","South Carolina","SC",892 +2001-10-01,"Residential Consumption","Idaho","ID",713 +2001-10-01,"Residential Consumption","California","CA",29189 +2001-10-01,"Residential Consumption","Arizona","AZ",1156 +2001-10-01,"Residential Consumption","Wyoming","WY",716 +2001-10-01,"Residential Consumption","Illinois","IL",26244 +2001-10-01,"Residential Consumption","North Carolina","NC",2514 +2001-10-01,"Residential Consumption","Nevada","NV",1245 +2001-10-01,"Residential Consumption","Mississippi","MS",921 +2001-10-01,"Residential Consumption","Vermont","VT",91 +2001-10-01,"Residential Consumption","Indiana","IN",8020 +2001-10-01,"Residential Consumption","North Dakota","ND",771 +2001-10-01,"Residential Consumption","Massachusetts","MA",4510 +2001-10-01,"Residential Consumption","Washington","WA",5692 +2001-10-01,"Residential Consumption","Missouri","MO",3942 +2001-10-01,"Residential Consumption","U.S.","U.S.",237466 +2001-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",1235 +2001-11-01,"Commercial Consumption","Virginia","VA",5189 +2001-11-01,"Commercial Consumption","Massachusetts","MA",4369 +2001-11-01,"Commercial Consumption","South Dakota","SD",780 +2001-11-01,"Commercial Consumption","Kentucky","KY",2867 +2001-11-01,"Commercial Consumption","Florida","FL",4026 +2001-11-01,"Commercial Consumption","Ohio","OH",11695 +2001-11-01,"Commercial Consumption","Iowa","IA",3555 +2001-11-01,"Commercial Consumption","Illinois","IL",14372 +2001-11-01,"Commercial Consumption","Maine","ME",257 +2001-11-01,"Commercial Consumption","Colorado","CO",4204 +2001-11-01,"Commercial Consumption","Kansas","KS",2155 +2001-11-01,"Commercial Consumption","Georgia","GA",4008 +2001-11-01,"Commercial Consumption","Hawaii","HI",137 +2001-11-01,"Commercial Consumption","Connecticut","CT",4336 +2001-11-01,"Commercial Consumption","South Carolina","SC",1585 +2001-11-01,"Commercial Consumption","North Carolina","NC",2946 +2001-11-01,"Commercial Consumption","Minnesota","MN",6546 +2001-11-01,"Commercial Consumption","Utah","UT",2870 +2001-11-01,"Commercial Consumption","Oregon","OR",2252 +2001-11-01,"Commercial Consumption","Oklahoma","OK",2207 +2001-11-01,"Commercial Consumption","Pennsylvania","PA",10114 +2001-11-01,"Commercial Consumption","New York","NY",26198 +2001-11-01,"Commercial Consumption","Tennessee","TN",3807 +2001-11-01,"Commercial Consumption","Louisiana","LA",1770 +2001-11-01,"Commercial Consumption","Washington","WA",6904 +2001-11-01,"Commercial Consumption","New Mexico","NM",1619 +2001-11-01,"Commercial Consumption","New Jersey","NJ",10009 +2001-11-01,"Commercial Consumption","Vermont","VT",189 +2001-11-01,"Commercial Consumption","California","CA",19010 +2001-11-01,"Commercial Consumption","Arkansas","AR",2901 +2001-11-01,"Commercial Consumption","Alabama","AL",1798 +2001-11-01,"Commercial Consumption","Mississippi","MS",1659 +2001-11-01,"Commercial Consumption","Arizona","AZ",2240 +2001-11-01,"Commercial Consumption","Michigan","MI",13255 +2001-11-01,"Commercial Consumption","Missouri","MO",4083 +2001-11-01,"Commercial Consumption","New Hampshire","NH",493 +2001-11-01,"Commercial Consumption","U.S.","U.S.",230554 +2001-11-01,"Commercial Consumption","Texas","TX",12174 +2001-11-01,"Commercial Consumption","District of Columbia","DC",1223 +2001-11-01,"Commercial Consumption","North Dakota","ND",997 +2001-11-01,"Commercial Consumption","Montana","MT",1147 +2001-11-01,"Commercial Consumption","Rhode Island","RI",934 +2001-11-01,"Commercial Consumption","Alaska","AK",1911 +2001-11-01,"Commercial Consumption","Delaware","DE",396 +2001-11-01,"Commercial Consumption","Indiana","IN",6253 +2001-11-01,"Commercial Consumption","Wyoming","WY",1081 +2001-11-01,"Commercial Consumption","West Virginia","WV",2573 +2001-11-01,"Commercial Consumption","Wisconsin","WI",5686 +2001-11-01,"Commercial Consumption","Maryland","MD",5197 +2001-11-01,"Commercial Consumption","Idaho","ID",1060 +2001-11-01,"Commercial Consumption","Nebraska","NE",1742 +2001-11-01,"Commercial Consumption","Nevada","NV",1774 +2001-11-01,"Delivered to Consumers","U.S.","U.S.",1561970 +2001-11-01,"Delivered to Consumers","Indiana","IN",39146 +2001-11-01,"Delivered to Consumers","West Virginia","WV",9286 +2001-11-01,"Delivered to Consumers","South Dakota","SD",2126 +2001-11-01,"Delivered to Consumers","Montana","MT",5081 +2001-11-01,"Delivered to Consumers","North Carolina","NC",15898 +2001-11-01,"Delivered to Consumers","South Carolina","SC",11334 +2001-11-01,"Delivered to Consumers","Hawaii","HI",217 +2001-11-01,"Delivered to Consumers","Ohio","OH",59935 +2001-11-01,"Delivered to Consumers","Arkansas","AR",19675 +2001-11-01,"Delivered to Consumers","California","CA",174839 +2001-11-01,"Delivered to Consumers","Louisiana","LA",85277 +2001-11-01,"Delivered to Consumers","Georgia","GA",23983 +2001-11-01,"Delivered to Consumers","New Mexico","NM",9186 +2001-11-01,"Delivered to Consumers","Rhode Island","RI",6918 +2001-11-01,"Delivered to Consumers","Kansas","KS",14263 +2001-11-01,"Delivered to Consumers","Kentucky","KY",16271 +2001-11-01,"Delivered to Consumers","Alabama","AL",23647 +2001-11-01,"Delivered to Consumers","Nebraska","NE",10730 +2001-11-01,"Delivered to Consumers","Missouri","MO",18230 +2001-11-01,"Delivered to Consumers","New Jersey","NJ",42533 +2001-11-01,"Delivered to Consumers","Maine","ME",9644 +2001-11-01,"Delivered to Consumers","Arizona","AZ",12164 +2001-11-01,"Delivered to Consumers","District of Columbia","DC",2088 +2001-11-01,"Delivered to Consumers","Wyoming","WY",5518 +2001-11-01,"Delivered to Consumers","Vermont","VT",658 +2001-11-01,"Delivered to Consumers","Idaho","ID",7528 +2001-11-01,"Delivered to Consumers","Mississippi","MS",24653 +2001-11-01,"Delivered to Consumers","Massachusetts","MA",24646 +2001-11-01,"Delivered to Consumers","Oregon","OR",18239 +2001-11-01,"Delivered to Consumers","North Dakota","ND",3065 +2001-11-01,"Delivered to Consumers","Minnesota","MN",25778 +2001-11-01,"Delivered to Consumers","Florida","FL",42205 +2001-11-01,"Delivered to Consumers","Illinois","IL",74519 +2001-11-01,"Delivered to Consumers","Virginia","VA",21748 +2001-11-01,"Delivered to Consumers","Colorado","CO",30231 +2001-11-01,"Delivered to Consumers","Nevada","NV",12525 +2001-11-01,"Delivered to Consumers","New Hampshire","NH",1904 +2001-11-01,"Delivered to Consumers","Alaska","AK",11926 +2001-11-01,"Delivered to Consumers","Oklahoma","OK",26719 +2001-11-01,"Delivered to Consumers","Tennessee","TN",19011 +2001-11-01,"Delivered to Consumers","Texas","TX",278385 +2001-11-01,"Delivered to Consumers","Washington","WA",30172 +2001-11-01,"Delivered to Consumers","Utah","UT",11646 +2001-11-01,"Delivered to Consumers","Delaware","DE",3908 +2001-11-01,"Delivered to Consumers","New York","NY",85604 +2001-11-01,"Delivered to Consumers","Wisconsin","WI",26981 +2001-11-01,"Delivered to Consumers","Maryland","MD",13558 +2001-11-01,"Delivered to Consumers","Michigan","MI",71352 +2001-11-01,"Delivered to Consumers","Iowa","IA",16865 +2001-11-01,"Delivered to Consumers","Connecticut","CT",12345 +2001-11-01,"Delivered to Consumers","Pennsylvania","PA",46614 +2001-11-01,"Electric Power Consumption","Oregon","OR",6832 +2001-11-01,"Electric Power Consumption","Nevada","NV",7698 +2001-11-01,"Electric Power Consumption","Montana","MT",2 +2001-11-01,"Electric Power Consumption","Louisiana","LA",10270 +2001-11-01,"Electric Power Consumption","South Carolina","SC",477 +2001-11-01,"Electric Power Consumption","New York","NY",26679 +2001-11-01,"Electric Power Consumption","Rhode Island","RI",4362 +2001-11-01,"Electric Power Consumption","Illinois","IL",2025 +2001-11-01,"Electric Power Consumption","Hawaii","HI",0 +2001-11-01,"Electric Power Consumption","Delaware","DE",1094 +2001-11-01,"Electric Power Consumption","Connecticut","CT",2279 +2001-11-01,"Electric Power Consumption","New Mexico","NM",2839 +2001-11-01,"Electric Power Consumption","Idaho","ID",2331 +2001-11-01,"Electric Power Consumption","Colorado","CO",5554 +2001-11-01,"Electric Power Consumption","Minnesota","MN",469 +2001-11-01,"Electric Power Consumption","Massachusetts","MA",8428 +2001-11-01,"Electric Power Consumption","Pennsylvania","PA",2582 +2001-11-01,"Electric Power Consumption","U.S.","U.S.",350549 +2001-11-01,"Electric Power Consumption","Kentucky","KY",178 +2001-11-01,"Electric Power Consumption","New Hampshire","NH",0 +2001-11-01,"Electric Power Consumption","North Dakota","ND",0 +2001-11-01,"Electric Power Consumption","Georgia","GA",338 +2001-11-01,"Electric Power Consumption","California","CA",59350 +2001-11-01,"Electric Power Consumption","Alabama","AL",7007 +2001-11-01,"Electric Power Consumption","Alaska","AK",2986 +2001-11-01,"Electric Power Consumption","Virginia","VA",2546 +2001-11-01,"Electric Power Consumption","New Jersey","NJ",9013 +2001-11-01,"Electric Power Consumption","Tennessee","TN",0 +2001-11-01,"Electric Power Consumption","Missouri","MO",1841 +2001-11-01,"Electric Power Consumption","Arkansas","AR",2200 +2001-11-01,"Electric Power Consumption","Oklahoma","OK",10276 +2001-11-01,"Electric Power Consumption","Utah","UT",636 +2001-11-01,"Electric Power Consumption","Michigan","MI",11915 +2001-11-01,"Electric Power Consumption","Iowa","IA",247 +2001-11-01,"Electric Power Consumption","Vermont","VT",3 +2001-11-01,"Electric Power Consumption","Nebraska","NE",250 +2001-11-01,"Electric Power Consumption","Maryland","MD",525 +2001-11-01,"Electric Power Consumption","Indiana","IN",1088 +2001-11-01,"Electric Power Consumption","Wyoming","WY",193 +2001-11-01,"Electric Power Consumption","Maine","ME",8167 +2001-11-01,"Electric Power Consumption","Mississippi","MS",12944 +2001-11-01,"Electric Power Consumption","Washington","WA",4277 +2001-11-01,"Electric Power Consumption","Texas","TX",91505 +2001-11-01,"Electric Power Consumption","Kansas","KS",1096 +2001-11-01,"Electric Power Consumption","South Dakota","SD",29 +2001-11-01,"Electric Power Consumption","North Carolina","NC",189 +2001-11-01,"Electric Power Consumption","West Virginia","WV",165 +2001-11-01,"Electric Power Consumption","Wisconsin","WI",1028 +2001-11-01,"Electric Power Consumption","Ohio","OH",404 +2001-11-01,"Electric Power Consumption","Arizona","AZ",6853 +2001-11-01,"Electric Power Consumption","Florida","FL",29384 +2001-11-01,"Industrial Consumption","Louisiana","LA",69913 +2001-11-01,"Industrial Consumption","Tennessee","TN",10696 +2001-11-01,"Industrial Consumption","South Dakota","SD",343 +2001-11-01,"Industrial Consumption","Ohio","OH",24307 +2001-11-01,"Industrial Consumption","Utah","UT",2565 +2001-11-01,"Industrial Consumption","Pennsylvania","PA",16402 +2001-11-01,"Industrial Consumption","Oregon","OR",5814 +2001-11-01,"Industrial Consumption","Maine","ME",1160 +2001-11-01,"Industrial Consumption","Alabama","AL",11767 +2001-11-01,"Industrial Consumption","Connecticut","CT",2118 +2001-11-01,"Industrial Consumption","Illinois","IL",23899 +2001-11-01,"Industrial Consumption","Colorado","CO",11955 +2001-11-01,"Industrial Consumption","Arizona","AZ",1412 +2001-11-01,"Industrial Consumption","New York","NY",5076 +2001-11-01,"Industrial Consumption","Vermont","VT",263 +2001-11-01,"Industrial Consumption","Indiana","IN",20330 +2001-11-01,"Industrial Consumption","North Carolina","NC",8170 +2001-11-01,"Industrial Consumption","Georgia","GA",11239 +2001-11-01,"Industrial Consumption","Wyoming","WY",3204 +2001-11-01,"Industrial Consumption","Florida","FL",7811 +2001-11-01,"Industrial Consumption","Michigan","MI",18669 +2001-11-01,"Industrial Consumption","Rhode Island","RI",468 +2001-11-01,"Industrial Consumption","Alaska","AK",4843 +2001-11-01,"Industrial Consumption","North Dakota","ND",1068 +2001-11-01,"Industrial Consumption","New Mexico","NM",2834 +2001-11-01,"Industrial Consumption","Nevada","NV",865 +2001-11-01,"Industrial Consumption","Arkansas","AR",11168 +2001-11-01,"Industrial Consumption","South Carolina","SC",7201 +2001-11-01,"Industrial Consumption","Nebraska","NE",3947 +2001-11-01,"Industrial Consumption","Virginia","VA",8820 +2001-11-01,"Industrial Consumption","Idaho","ID",2536 +2001-11-01,"Industrial Consumption","Delaware","DE",1804 +2001-11-01,"Industrial Consumption","Montana","MT",2089 +2001-11-01,"Industrial Consumption","Maryland","MD",2701 +2001-11-01,"Industrial Consumption","Kansas","KS",7176 +2001-11-01,"Industrial Consumption","U.S.","U.S.",618950 +2001-11-01,"Industrial Consumption","Mississippi","MS",8146 +2001-11-01,"Industrial Consumption","New Jersey","NJ",7205 +2001-11-01,"Industrial Consumption","New Hampshire","NH",921 +2001-11-01,"Industrial Consumption","Missouri","MO",5329 +2001-11-01,"Industrial Consumption","Washington","WA",7846 +2001-11-01,"Industrial Consumption","West Virginia","WV",3459 +2001-11-01,"Industrial Consumption","Wisconsin","WI",11062 +2001-11-01,"Industrial Consumption","Iowa","IA",8268 +2001-11-01,"Industrial Consumption","Kentucky","KY",8090 +2001-11-01,"Industrial Consumption","District of Columbia","DC",0 +2001-11-01,"Industrial Consumption","Massachusetts","MA",4811 +2001-11-01,"Industrial Consumption","Hawaii","HI",37 +2001-11-01,"Industrial Consumption","Oklahoma","OK",10829 +2001-11-01,"Industrial Consumption","California","CA",57442 +2001-11-01,"Industrial Consumption","Texas","TX",161815 +2001-11-01,"Industrial Consumption","Minnesota","MN",9056 +2001-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91351 +2001-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",47630 +2001-11-01,"Residential Consumption","Texas","TX",12891 +2001-11-01,"Residential Consumption","Indiana","IN",11475 +2001-11-01,"Residential Consumption","Oklahoma","OK",3407 +2001-11-01,"Residential Consumption","Alaska","AK",2187 +2001-11-01,"Residential Consumption","Iowa","IA",4795 +2001-11-01,"Residential Consumption","Hawaii","HI",43 +2001-11-01,"Residential Consumption","Tennessee","TN",4509 +2001-11-01,"Residential Consumption","Minnesota","MN",9708 +2001-11-01,"Residential Consumption","Georgia","GA",8398 +2001-11-01,"Residential Consumption","Idaho","ID",1601 +2001-11-01,"Residential Consumption","Arkansas","AR",3407 +2001-11-01,"Residential Consumption","Montana","MT",1842 +2001-11-01,"Residential Consumption","Kentucky","KY",5135 +2001-11-01,"Residential Consumption","Wyoming","WY",1040 +2001-11-01,"Residential Consumption","New York","NY",27651 +2001-11-01,"Residential Consumption","Nebraska","NE",4791 +2001-11-01,"Residential Consumption","Maryland","MD",5135 +2001-11-01,"Residential Consumption","Pennsylvania","PA",17515 +2001-11-01,"Residential Consumption","New Mexico","NM",1894 +2001-11-01,"Residential Consumption","Colorado","CO",8518 +2001-11-01,"Residential Consumption","Ohio","OH",23530 +2001-11-01,"Residential Consumption","Louisiana","LA",3325 +2001-11-01,"Residential Consumption","Vermont","VT",203 +2001-11-01,"Residential Consumption","Florida","FL",983 +2001-11-01,"Residential Consumption","Missouri","MO",6977 +2001-11-01,"Residential Consumption","California","CA",39037 +2001-11-01,"Residential Consumption","South Carolina","SC",2071 +2001-11-01,"Residential Consumption","Rhode Island","RI",1153 +2001-11-01,"Residential Consumption","Mississippi","MS",1904 +2001-11-01,"Residential Consumption","Connecticut","CT",3611 +2001-11-01,"Residential Consumption","Utah","UT",5575 +2001-11-01,"Residential Consumption","New Jersey","NJ",16307 +2001-11-01,"Residential Consumption","Delaware","DE",615 +2001-11-01,"Residential Consumption","Arizona","AZ",1660 +2001-11-01,"Residential Consumption","Alabama","AL",3075 +2001-11-01,"Residential Consumption","West Virginia","WV",3089 +2001-11-01,"Residential Consumption","Illinois","IL",34223 +2001-11-01,"Residential Consumption","Wisconsin","WI",9205 +2001-11-01,"Residential Consumption","Michigan","MI",27514 +2001-11-01,"Residential Consumption","Nevada","NV",2188 +2001-11-01,"Residential Consumption","Kansas","KS",3836 +2001-11-01,"Residential Consumption","Washington","WA",11145 +2001-11-01,"Residential Consumption","Virginia","VA",5192 +2001-11-01,"Residential Consumption","South Dakota","SD",974 +2001-11-01,"Residential Consumption","District of Columbia","DC",865 +2001-11-01,"Residential Consumption","North Dakota","ND",999 +2001-11-01,"Residential Consumption","U.S.","U.S.",360721 +2001-11-01,"Residential Consumption","Oregon","OR",3342 +2001-11-01,"Residential Consumption","North Carolina","NC",4592 +2001-11-01,"Residential Consumption","Maine","ME",61 +2001-11-01,"Residential Consumption","Massachusetts","MA",7038 +2001-11-01,"Residential Consumption","New Hampshire","NH",490 +2001-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",1195 +2001-12-01,"Commercial Consumption","Texas","TX",20079 +2001-12-01,"Commercial Consumption","Georgia","GA",6149 +2001-12-01,"Commercial Consumption","Idaho","ID",1820 +2001-12-01,"Commercial Consumption","California","CA",25444 +2001-12-01,"Commercial Consumption","Indiana","IN",9276 +2001-12-01,"Commercial Consumption","Oklahoma","OK",3869 +2001-12-01,"Commercial Consumption","South Dakota","SD",1378 +2001-12-01,"Commercial Consumption","Iowa","IA",5582 +2001-12-01,"Commercial Consumption","Hawaii","HI",136 +2001-12-01,"Commercial Consumption","Nevada","NV",2731 +2001-12-01,"Commercial Consumption","West Virginia","WV",3507 +2001-12-01,"Commercial Consumption","Pennsylvania","PA",15565 +2001-12-01,"Commercial Consumption","Alabama","AL",2275 +2001-12-01,"Commercial Consumption","Delaware","DE",522 +2001-12-01,"Commercial Consumption","Wyoming","WY",979 +2001-12-01,"Commercial Consumption","North Carolina","NC",4038 +2001-12-01,"Commercial Consumption","Oregon","OR",3348 +2001-12-01,"Commercial Consumption","Virginia","VA",6501 +2001-12-01,"Commercial Consumption","Kentucky","KY",4485 +2001-12-01,"Commercial Consumption","Nebraska","NE",3269 +2001-12-01,"Commercial Consumption","Tennessee","TN",4836 +2001-12-01,"Commercial Consumption","New Mexico","NM",2983 +2001-12-01,"Commercial Consumption","Massachusetts","MA",6278 +2001-12-01,"Commercial Consumption","U.S.","U.S.",346038 +2001-12-01,"Commercial Consumption","New York","NY",37264 +2001-12-01,"Commercial Consumption","Arizona","AZ",3574 +2001-12-01,"Commercial Consumption","Michigan","MI",19137 +2001-12-01,"Commercial Consumption","District of Columbia","DC",1506 +2001-12-01,"Commercial Consumption","Missouri","MO",7407 +2001-12-01,"Commercial Consumption","New Hampshire","NH",765 +2001-12-01,"Commercial Consumption","Montana","MT",1770 +2001-12-01,"Commercial Consumption","Maine","ME",330 +2001-12-01,"Commercial Consumption","Rhode Island","RI",1222 +2001-12-01,"Commercial Consumption","Mississippi","MS",2005 +2001-12-01,"Commercial Consumption","Louisiana","LA",2398 +2001-12-01,"Commercial Consumption","Illinois","IL",25230 +2001-12-01,"Commercial Consumption","Washington","WA",9222 +2001-12-01,"Commercial Consumption","South Carolina","SC",1870 +2001-12-01,"Commercial Consumption","North Dakota","ND",1626 +2001-12-01,"Commercial Consumption","Minnesota","MN",12297 +2001-12-01,"Commercial Consumption","Colorado","CO",8243 +2001-12-01,"Commercial Consumption","Florida","FL",4215 +2001-12-01,"Commercial Consumption","Alaska","AK",2299 +2001-12-01,"Commercial Consumption","Utah","UT",5250 +2001-12-01,"Commercial Consumption","Wisconsin","WI",10006 +2001-12-01,"Commercial Consumption","New Jersey","NJ",13706 +2001-12-01,"Commercial Consumption","Maryland","MD",6102 +2001-12-01,"Commercial Consumption","Kansas","KS",4076 +2001-12-01,"Commercial Consumption","Vermont","VT",241 +2001-12-01,"Commercial Consumption","Ohio","OH",21130 +2001-12-01,"Commercial Consumption","Connecticut","CT",4404 +2001-12-01,"Commercial Consumption","Arkansas","AR",3694 +2001-12-01,"Delivered to Consumers","Wyoming","WY",6170 +2001-12-01,"Delivered to Consumers","Ohio","OH",87118 +2001-12-01,"Delivered to Consumers","Mississippi","MS",28356 +2001-12-01,"Delivered to Consumers","Utah","UT",18505 +2001-12-01,"Delivered to Consumers","Vermont","VT",827 +2001-12-01,"Delivered to Consumers","Wisconsin","WI",41400 +2001-12-01,"Delivered to Consumers","Pennsylvania","PA",63083 +2001-12-01,"Delivered to Consumers","North Carolina","NC",19179 +2001-12-01,"Delivered to Consumers","New Jersey","NJ",54282 +2001-12-01,"Delivered to Consumers","Delaware","DE",3419 +2001-12-01,"Delivered to Consumers","Alaska","AK",13523 +2001-12-01,"Delivered to Consumers","Idaho","ID",8984 +2001-12-01,"Delivered to Consumers","Connecticut","CT",15400 +2001-12-01,"Delivered to Consumers","Missouri","MO",29876 +2001-12-01,"Delivered to Consumers","Massachusetts","MA",31456 +2001-12-01,"Delivered to Consumers","Maine","ME",9127 +2001-12-01,"Delivered to Consumers","Michigan","MI",92053 +2001-12-01,"Delivered to Consumers","Alabama","AL",25742 +2001-12-01,"Delivered to Consumers","Colorado","CO",42797 +2001-12-01,"Delivered to Consumers","California","CA",213717 +2001-12-01,"Delivered to Consumers","Oregon","OR",22097 +2001-12-01,"Delivered to Consumers","Nevada","NV",17842 +2001-12-01,"Delivered to Consumers","Arizona","AZ",19204 +2001-12-01,"Delivered to Consumers","North Dakota","ND",4459 +2001-12-01,"Delivered to Consumers","Illinois","IL",115418 +2001-12-01,"Delivered to Consumers","New York","NY",117809 +2001-12-01,"Delivered to Consumers","Hawaii","HI",225 +2001-12-01,"Delivered to Consumers","Iowa","IA",23400 +2001-12-01,"Delivered to Consumers","Nebraska","NE",11012 +2001-12-01,"Delivered to Consumers","Washington","WA",37445 +2001-12-01,"Delivered to Consumers","District of Columbia","DC",2737 +2001-12-01,"Delivered to Consumers","U.S.","U.S.",1965873 +2001-12-01,"Delivered to Consumers","West Virginia","WV",10802 +2001-12-01,"Delivered to Consumers","Rhode Island","RI",9231 +2001-12-01,"Delivered to Consumers","Oklahoma","OK",33193 +2001-12-01,"Delivered to Consumers","Kansas","KS",20610 +2001-12-01,"Delivered to Consumers","Tennessee","TN",23239 +2001-12-01,"Delivered to Consumers","Kentucky","KY",23216 +2001-12-01,"Delivered to Consumers","Georgia","GA",34450 +2001-12-01,"Delivered to Consumers","New Hampshire","NH",2520 +2001-12-01,"Delivered to Consumers","South Dakota","SD",3617 +2001-12-01,"Delivered to Consumers","Arkansas","AR",22233 +2001-12-01,"Delivered to Consumers","Virginia","VA",23733 +2001-12-01,"Delivered to Consumers","Texas","TX",300793 +2001-12-01,"Delivered to Consumers","South Carolina","SC",12725 +2001-12-01,"Delivered to Consumers","Louisiana","LA",92797 +2001-12-01,"Delivered to Consumers","New Mexico","NM",12882 +2001-12-01,"Delivered to Consumers","Indiana","IN",51997 +2001-12-01,"Delivered to Consumers","Montana","MT",6696 +2001-12-01,"Delivered to Consumers","Maryland","MD",17125 +2001-12-01,"Delivered to Consumers","Minnesota","MN",38517 +2001-12-01,"Delivered to Consumers","Florida","FL",47598 +2001-12-01,"Electric Power Consumption","Colorado","CO",6624 +2001-12-01,"Electric Power Consumption","New York","NY",29115 +2001-12-01,"Electric Power Consumption","Oklahoma","OK",10238 +2001-12-01,"Electric Power Consumption","Utah","UT",785 +2001-12-01,"Electric Power Consumption","Minnesota","MN",543 +2001-12-01,"Electric Power Consumption","Massachusetts","MA",9281 +2001-12-01,"Electric Power Consumption","West Virginia","WV",41 +2001-12-01,"Electric Power Consumption","Tennessee","TN",0 +2001-12-01,"Electric Power Consumption","U.S.","U.S.",367018 +2001-12-01,"Electric Power Consumption","South Dakota","SD",70 +2001-12-01,"Electric Power Consumption","Nebraska","NE",256 +2001-12-01,"Electric Power Consumption","Connecticut","CT",3798 +2001-12-01,"Electric Power Consumption","Alabama","AL",6324 +2001-12-01,"Electric Power Consumption","New Mexico","NM",1876 +2001-12-01,"Electric Power Consumption","Arkansas","AR",1253 +2001-12-01,"Electric Power Consumption","Illinois","IL",2327 +2001-12-01,"Electric Power Consumption","Kansas","KS",863 +2001-12-01,"Electric Power Consumption","Pennsylvania","PA",2675 +2001-12-01,"Electric Power Consumption","Wyoming","WY",224 +2001-12-01,"Electric Power Consumption","Missouri","MO",1864 +2001-12-01,"Electric Power Consumption","Rhode Island","RI",5797 +2001-12-01,"Electric Power Consumption","Michigan","MI",11972 +2001-12-01,"Electric Power Consumption","Delaware","DE",443 +2001-12-01,"Electric Power Consumption","Florida","FL",34168 +2001-12-01,"Electric Power Consumption","Washington","WA",4358 +2001-12-01,"Electric Power Consumption","New Jersey","NJ",8681 +2001-12-01,"Electric Power Consumption","Louisiana","LA",11549 +2001-12-01,"Electric Power Consumption","Idaho","ID",1667 +2001-12-01,"Electric Power Consumption","Iowa","IA",279 +2001-12-01,"Electric Power Consumption","Kentucky","KY",302 +2001-12-01,"Electric Power Consumption","Ohio","OH",191 +2001-12-01,"Electric Power Consumption","Indiana","IN",869 +2001-12-01,"Electric Power Consumption","California","CA",61761 +2001-12-01,"Electric Power Consumption","North Carolina","NC",201 +2001-12-01,"Electric Power Consumption","Mississippi","MS",14943 +2001-12-01,"Electric Power Consumption","Montana","MT",2 +2001-12-01,"Electric Power Consumption","Arizona","AZ",8910 +2001-12-01,"Electric Power Consumption","Virginia","VA",1773 +2001-12-01,"Electric Power Consumption","Wisconsin","WI",1291 +2001-12-01,"Electric Power Consumption","Nevada","NV",7837 +2001-12-01,"Electric Power Consumption","Maine","ME",7964 +2001-12-01,"Electric Power Consumption","North Dakota","ND",0 +2001-12-01,"Electric Power Consumption","Maryland","MD",698 +2001-12-01,"Electric Power Consumption","Texas","TX",91523 +2001-12-01,"Electric Power Consumption","Hawaii","HI",0 +2001-12-01,"Electric Power Consumption","Georgia","GA",354 +2001-12-01,"Electric Power Consumption","South Carolina","SC",534 +2001-12-01,"Electric Power Consumption","Oregon","OR",7527 +2001-12-01,"Electric Power Consumption","Vermont","VT",3 +2001-12-01,"Electric Power Consumption","New Hampshire","NH",29 +2001-12-01,"Electric Power Consumption","Alaska","AK",3235 +2001-12-01,"Industrial Consumption","Missouri","MO",7342 +2001-12-01,"Industrial Consumption","Ohio","OH",28550 +2001-12-01,"Industrial Consumption","New Mexico","NM",3286 +2001-12-01,"Industrial Consumption","Kansas","KS",7259 +2001-12-01,"Industrial Consumption","Arizona","AZ",1704 +2001-12-01,"Industrial Consumption","Oregon","OR",5948 +2001-12-01,"Industrial Consumption","North Carolina","NC",8498 +2001-12-01,"Industrial Consumption","District of Columbia","DC",0 +2001-12-01,"Industrial Consumption","Maryland","MD",2065 +2001-12-01,"Industrial Consumption","Oklahoma","OK",11371 +2001-12-01,"Industrial Consumption","Pennsylvania","PA",17894 +2001-12-01,"Industrial Consumption","Iowa","IA",8465 +2001-12-01,"Industrial Consumption","California","CA",62087 +2001-12-01,"Industrial Consumption","Nebraska","NE",3135 +2001-12-01,"Industrial Consumption","Tennessee","TN",10391 +2001-12-01,"Industrial Consumption","Kentucky","KY",8851 +2001-12-01,"Industrial Consumption","Delaware","DE",1639 +2001-12-01,"Industrial Consumption","Washington","WA",7885 +2001-12-01,"Industrial Consumption","South Dakota","SD",367 +2001-12-01,"Industrial Consumption","New York","NY",8527 +2001-12-01,"Industrial Consumption","Wisconsin","WI",12340 +2001-12-01,"Industrial Consumption","Minnesota","MN",7858 +2001-12-01,"Industrial Consumption","Illinois","IL",23695 +2001-12-01,"Industrial Consumption","Colorado","CO",10843 +2001-12-01,"Industrial Consumption","Arkansas","AR",11527 +2001-12-01,"Industrial Consumption","South Carolina","SC",7785 +2001-12-01,"Industrial Consumption","Vermont","VT",313 +2001-12-01,"Industrial Consumption","Florida","FL",8016 +2001-12-01,"Industrial Consumption","Alaska","AK",5205 +2001-12-01,"Industrial Consumption","Massachusetts","MA",6625 +2001-12-01,"Industrial Consumption","U.S.","U.S.",642556 +2001-12-01,"Industrial Consumption","Nevada","NV",1398 +2001-12-01,"Industrial Consumption","Texas","TX",159434 +2001-12-01,"Industrial Consumption","Virginia","VA",7375 +2001-12-01,"Industrial Consumption","Wyoming","WY",3468 +2001-12-01,"Industrial Consumption","New Jersey","NJ",7371 +2001-12-01,"Industrial Consumption","New Hampshire","NH",990 +2001-12-01,"Industrial Consumption","Idaho","ID",2669 +2001-12-01,"Industrial Consumption","Michigan","MI",20006 +2001-12-01,"Industrial Consumption","North Dakota","ND",1119 +2001-12-01,"Industrial Consumption","Mississippi","MS",8580 +2001-12-01,"Industrial Consumption","Alabama","AL",12672 +2001-12-01,"Industrial Consumption","Connecticut","CT",1773 +2001-12-01,"Industrial Consumption","Indiana","IN",22971 +2001-12-01,"Industrial Consumption","Georgia","GA",11212 +2001-12-01,"Industrial Consumption","Montana","MT",1972 +2001-12-01,"Industrial Consumption","Hawaii","HI",42 +2001-12-01,"Industrial Consumption","Louisiana","LA",73048 +2001-12-01,"Industrial Consumption","Utah","UT",2395 +2001-12-01,"Industrial Consumption","Maine","ME",701 +2001-12-01,"Industrial Consumption","West Virginia","WV",3284 +2001-12-01,"Industrial Consumption","Rhode Island","RI",604 +2001-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94379 +2001-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",59946 +2001-12-01,"Residential Consumption","Wisconsin","WI",17762 +2001-12-01,"Residential Consumption","Vermont","VT",270 +2001-12-01,"Residential Consumption","Virginia","VA",8084 +2001-12-01,"Residential Consumption","Massachusetts","MA",9272 +2001-12-01,"Residential Consumption","Montana","MT",2952 +2001-12-01,"Residential Consumption","Kansas","KS",8412 +2001-12-01,"Residential Consumption","Oregon","OR",5274 +2001-12-01,"Residential Consumption","Iowa","IA",9075 +2001-12-01,"Residential Consumption","Nevada","NV",5877 +2001-12-01,"Residential Consumption","Georgia","GA",16734 +2001-12-01,"Residential Consumption","North Dakota","ND",1714 +2001-12-01,"Residential Consumption","Colorado","CO",17087 +2001-12-01,"Residential Consumption","Missouri","MO",13263 +2001-12-01,"Residential Consumption","South Carolina","SC",2537 +2001-12-01,"Residential Consumption","Ohio","OH",37246 +2001-12-01,"Residential Consumption","Minnesota","MN",17820 +2001-12-01,"Residential Consumption","Pennsylvania","PA",26949 +2001-12-01,"Residential Consumption","Indiana","IN",18881 +2001-12-01,"Residential Consumption","Florida","FL",1199 +2001-12-01,"Residential Consumption","New Hampshire","NH",735 +2001-12-01,"Residential Consumption","California","CA",64425 +2001-12-01,"Residential Consumption","Alaska","AK",2785 +2001-12-01,"Residential Consumption","Rhode Island","RI",1609 +2001-12-01,"Residential Consumption","Mississippi","MS",2828 +2001-12-01,"Residential Consumption","Louisiana","LA",5802 +2001-12-01,"Residential Consumption","Utah","UT",10075 +2001-12-01,"Residential Consumption","South Dakota","SD",1801 +2001-12-01,"Residential Consumption","District of Columbia","DC",1231 +2001-12-01,"Residential Consumption","Kentucky","KY",9578 +2001-12-01,"Residential Consumption","Washington","WA",15980 +2001-12-01,"Residential Consumption","Texas","TX",29757 +2001-12-01,"Residential Consumption","North Carolina","NC",6443 +2001-12-01,"Residential Consumption","Hawaii","HI",47 +2001-12-01,"Residential Consumption","Connecticut","CT",5425 +2001-12-01,"Residential Consumption","Nebraska","NE",4352 +2001-12-01,"Residential Consumption","Arkansas","AR",5759 +2001-12-01,"Residential Consumption","Arizona","AZ",5016 +2001-12-01,"Residential Consumption","Wyoming","WY",1499 +2001-12-01,"Residential Consumption","West Virginia","WV",3970 +2001-12-01,"Residential Consumption","U.S.","U.S.",609025 +2001-12-01,"Residential Consumption","Illinois","IL",64165 +2001-12-01,"Residential Consumption","Michigan","MI",40939 +2001-12-01,"Residential Consumption","New Mexico","NM",4737 +2001-12-01,"Residential Consumption","Alabama","AL",4470 +2001-12-01,"Residential Consumption","New Jersey","NJ",24524 +2001-12-01,"Residential Consumption","Delaware","DE",815 +2001-12-01,"Residential Consumption","Tennessee","TN",8012 +2001-12-01,"Residential Consumption","Maryland","MD",8260 +2001-12-01,"Residential Consumption","Maine","ME",132 +2001-12-01,"Residential Consumption","Idaho","ID",2827 +2001-12-01,"Residential Consumption","Oklahoma","OK",7714 +2001-12-01,"Residential Consumption","New York","NY",42904 +2001-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",1235 +2002-01-01,"Commercial Consumption","Washington","WA",7431 +2002-01-01,"Commercial Consumption","Wisconsin","WI",12335 +2002-01-01,"Commercial Consumption","Kansas","KS",6451 +2002-01-01,"Commercial Consumption","Nebraska","NE",3688 +2002-01-01,"Commercial Consumption","Louisiana","LA",3342 +2002-01-01,"Commercial Consumption","District of Columbia","DC",2473 +2002-01-01,"Commercial Consumption","Minnesota","MN",14400 +2002-01-01,"Commercial Consumption","Connecticut","CT",5438 +2002-01-01,"Commercial Consumption","Arkansas","AR",4617 +2002-01-01,"Commercial Consumption","Arizona","AZ",4212 +2002-01-01,"Commercial Consumption","Virginia","VA",8921 +2002-01-01,"Commercial Consumption","South Dakota","SD",1519 +2002-01-01,"Commercial Consumption","New Hampshire","NH",1163 +2002-01-01,"Commercial Consumption","Texas","TX",31321 +2002-01-01,"Commercial Consumption","Idaho","ID",2254 +2002-01-01,"Commercial Consumption","Alabama","AL",4036 +2002-01-01,"Commercial Consumption","Mississippi","MS",3155 +2002-01-01,"Commercial Consumption","Delaware","DE",1145 +2002-01-01,"Commercial Consumption","New Mexico","NM",4024 +2002-01-01,"Commercial Consumption","Oregon","OR",4302 +2002-01-01,"Commercial Consumption","Missouri","MO",9913 +2002-01-01,"Commercial Consumption","California","CA",27340 +2002-01-01,"Commercial Consumption","Nevada","NV",2998 +2002-01-01,"Commercial Consumption","Indiana","IN",12638 +2002-01-01,"Commercial Consumption","Wyoming","WY",1578 +2002-01-01,"Commercial Consumption","Massachusetts","MA",8554 +2002-01-01,"Commercial Consumption","New Jersey","NJ",19830 +2002-01-01,"Commercial Consumption","Florida","FL",5736 +2002-01-01,"Commercial Consumption","Rhode Island","RI",1789 +2002-01-01,"Commercial Consumption","Iowa","IA",7186 +2002-01-01,"Commercial Consumption","Alaska","AK",1839 +2002-01-01,"Commercial Consumption","New York","NY",38849 +2002-01-01,"Commercial Consumption","Tennessee","TN",9043 +2002-01-01,"Commercial Consumption","West Virginia","WV",3387 +2002-01-01,"Commercial Consumption","North Dakota","ND",1754 +2002-01-01,"Commercial Consumption","North Carolina","NC",6314 +2002-01-01,"Commercial Consumption","Colorado","CO",11111 +2002-01-01,"Commercial Consumption","Maine","ME",708 +2002-01-01,"Commercial Consumption","Georgia","GA",7718 +2002-01-01,"Commercial Consumption","Vermont","VT",362 +2002-01-01,"Commercial Consumption","Ohio","OH",23126 +2002-01-01,"Commercial Consumption","Michigan","MI",26142 +2002-01-01,"Commercial Consumption","South Carolina","SC",2987 +2002-01-01,"Commercial Consumption","U.S.","U.S.",435234 +2002-01-01,"Commercial Consumption","Maryland","MD",8356 +2002-01-01,"Commercial Consumption","Hawaii","HI",145 +2002-01-01,"Commercial Consumption","Utah","UT",5779 +2002-01-01,"Commercial Consumption","Oklahoma","OK",6805 +2002-01-01,"Commercial Consumption","Pennsylvania","PA",19297 +2002-01-01,"Commercial Consumption","Montana","MT",2274 +2002-01-01,"Commercial Consumption","Kentucky","KY",5497 +2002-01-01,"Commercial Consumption","Illinois","IL",29952 +2002-01-01,"Delivered to Consumers","South Dakota","SD",4603 +2002-01-01,"Delivered to Consumers","Oklahoma","OK",42957 +2002-01-01,"Delivered to Consumers","Kansas","KS",28513 +2002-01-01,"Delivered to Consumers","Ohio","OH",106011 +2002-01-01,"Delivered to Consumers","Alabama","AL",36559 +2002-01-01,"Delivered to Consumers","Colorado","CO",47541 +2002-01-01,"Delivered to Consumers","Arizona","AZ",19840 +2002-01-01,"Delivered to Consumers","Utah","UT",19727 +2002-01-01,"Delivered to Consumers","Illinois","IL",131434 +2002-01-01,"Delivered to Consumers","Montana","MT",7738 +2002-01-01,"Delivered to Consumers","Minnesota","MN",45190 +2002-01-01,"Delivered to Consumers","Maryland","MD",24221 +2002-01-01,"Delivered to Consumers","Hawaii","HI",236 +2002-01-01,"Delivered to Consumers","Idaho","ID",8747 +2002-01-01,"Delivered to Consumers","Michigan","MI",119902 +2002-01-01,"Delivered to Consumers","Virginia","VA",30728 +2002-01-01,"Delivered to Consumers","Pennsylvania","PA",80458 +2002-01-01,"Delivered to Consumers","Missouri","MO",39936 +2002-01-01,"Delivered to Consumers","Nevada","NV",18621 +2002-01-01,"Delivered to Consumers","Louisiana","LA",102807 +2002-01-01,"Delivered to Consumers","Georgia","GA",44041 +2002-01-01,"Delivered to Consumers","North Dakota","ND",5661 +2002-01-01,"Delivered to Consumers","Tennessee","TN",37019 +2002-01-01,"Delivered to Consumers","Mississippi","MS",29331 +2002-01-01,"Delivered to Consumers","Massachusetts","MA",44559 +2002-01-01,"Delivered to Consumers","South Carolina","SC",20494 +2002-01-01,"Delivered to Consumers","Oregon","OR",25687 +2002-01-01,"Delivered to Consumers","New Hampshire","NH",2917 +2002-01-01,"Delivered to Consumers","Vermont","VT",1127 +2002-01-01,"Delivered to Consumers","Rhode Island","RI",10511 +2002-01-01,"Delivered to Consumers","Kentucky","KY",26131 +2002-01-01,"Delivered to Consumers","Connecticut","CT",19009 +2002-01-01,"Delivered to Consumers","New Jersey","NJ",72928 +2002-01-01,"Delivered to Consumers","Washington","WA",29531 +2002-01-01,"Delivered to Consumers","New Mexico","NM",14279 +2002-01-01,"Delivered to Consumers","Wyoming","WY",6844 +2002-01-01,"Delivered to Consumers","New York","NY",130795 +2002-01-01,"Delivered to Consumers","Alaska","AK",12414 +2002-01-01,"Delivered to Consumers","Arkansas","AR",24431 +2002-01-01,"Delivered to Consumers","Wisconsin","WI",49850 +2002-01-01,"Delivered to Consumers","Nebraska","NE",16123 +2002-01-01,"Delivered to Consumers","North Carolina","NC",27750 +2002-01-01,"Delivered to Consumers","California","CA",223346 +2002-01-01,"Delivered to Consumers","Texas","TX",350229 +2002-01-01,"Delivered to Consumers","Florida","FL",50177 +2002-01-01,"Delivered to Consumers","U.S.","U.S.",2319273 +2002-01-01,"Delivered to Consumers","Indiana","IN",65893 +2002-01-01,"Delivered to Consumers","Delaware","DE",5258 +2002-01-01,"Delivered to Consumers","West Virginia","WV",12686 +2002-01-01,"Delivered to Consumers","Iowa","IA",28527 +2002-01-01,"Delivered to Consumers","Maine","ME",9857 +2002-01-01,"Delivered to Consumers","District of Columbia","DC",4830 +2002-01-01,"Electric Power Consumption","New Mexico","NM",1836 +2002-01-01,"Electric Power Consumption","Colorado","CO",5071 +2002-01-01,"Electric Power Consumption","Arkansas","AR",1580 +2002-01-01,"Electric Power Consumption","Texas","TX",105480 +2002-01-01,"Electric Power Consumption","Michigan","MI",11301 +2002-01-01,"Electric Power Consumption","Hawaii","HI",0 +2002-01-01,"Electric Power Consumption","Ohio","OH",184 +2002-01-01,"Electric Power Consumption","Arizona","AZ",6386 +2002-01-01,"Electric Power Consumption","Rhode Island","RI",5753 +2002-01-01,"Electric Power Consumption","Minnesota","MN",715 +2002-01-01,"Electric Power Consumption","Vermont","VT",4 +2002-01-01,"Electric Power Consumption","Idaho","ID",149 +2002-01-01,"Electric Power Consumption","Nevada","NV",8690 +2002-01-01,"Electric Power Consumption","Mississippi","MS",12280 +2002-01-01,"Electric Power Consumption","North Dakota","ND",0 +2002-01-01,"Electric Power Consumption","Florida","FL",34679 +2002-01-01,"Electric Power Consumption","Alabama","AL",9105 +2002-01-01,"Electric Power Consumption","Washington","WA",3915 +2002-01-01,"Electric Power Consumption","Virginia","VA",2080 +2002-01-01,"Electric Power Consumption","Louisiana","LA",20006 +2002-01-01,"Electric Power Consumption","Massachusetts","MA",10482 +2002-01-01,"Electric Power Consumption","West Virginia","WV",76 +2002-01-01,"Electric Power Consumption","Wisconsin","WI",1111 +2002-01-01,"Electric Power Consumption","Tennessee","TN",0 +2002-01-01,"Electric Power Consumption","Indiana","IN",1860 +2002-01-01,"Electric Power Consumption","New Jersey","NJ",10379 +2002-01-01,"Electric Power Consumption","New York","NY",26059 +2002-01-01,"Electric Power Consumption","Oklahoma","OK",11020 +2002-01-01,"Electric Power Consumption","Utah","UT",703 +2002-01-01,"Electric Power Consumption","Oregon","OR",7332 +2002-01-01,"Electric Power Consumption","Connecticut","CT",4423 +2002-01-01,"Electric Power Consumption","Illinois","IL",2251 +2002-01-01,"Electric Power Consumption","Wyoming","WY",217 +2002-01-01,"Electric Power Consumption","Iowa","IA",366 +2002-01-01,"Electric Power Consumption","U.S.","U.S.",381434 +2002-01-01,"Electric Power Consumption","Nebraska","NE",220 +2002-01-01,"Electric Power Consumption","Missouri","MO",1904 +2002-01-01,"Electric Power Consumption","Maine","ME",8535 +2002-01-01,"Electric Power Consumption","Kentucky","KY",293 +2002-01-01,"Electric Power Consumption","Maryland","MD",573 +2002-01-01,"Electric Power Consumption","Georgia","GA",1191 +2002-01-01,"Electric Power Consumption","California","CA",53569 +2002-01-01,"Electric Power Consumption","Alaska","AK",2769 +2002-01-01,"Electric Power Consumption","Kansas","KS",883 +2002-01-01,"Electric Power Consumption","South Dakota","SD",9 +2002-01-01,"Electric Power Consumption","Montana","MT",2 +2002-01-01,"Electric Power Consumption","South Carolina","SC",2954 +2002-01-01,"Electric Power Consumption","Pennsylvania","PA",1487 +2002-01-01,"Electric Power Consumption","North Carolina","NC",736 +2002-01-01,"Electric Power Consumption","New Hampshire","NH",18 +2002-01-01,"Electric Power Consumption","Delaware","DE",797 +2002-01-01,"Industrial Consumption","Massachusetts","MA",8237 +2002-01-01,"Industrial Consumption","Colorado","CO",10256 +2002-01-01,"Industrial Consumption","New York","NY",9133 +2002-01-01,"Industrial Consumption","Nevada","NV",1063 +2002-01-01,"Industrial Consumption","Maine","ME",464 +2002-01-01,"Industrial Consumption","California","CA",62945 +2002-01-01,"Industrial Consumption","Alabama","AL",14069 +2002-01-01,"Industrial Consumption","Vermont","VT",342 +2002-01-01,"Industrial Consumption","Iowa","IA",8979 +2002-01-01,"Industrial Consumption","Montana","MT",2134 +2002-01-01,"Industrial Consumption","Missouri","MO",7089 +2002-01-01,"Industrial Consumption","Washington","WA",7255 +2002-01-01,"Industrial Consumption","Virginia","VA",6351 +2002-01-01,"Industrial Consumption","West Virginia","WV",4308 +2002-01-01,"Industrial Consumption","Wyoming","WY",3714 +2002-01-01,"Industrial Consumption","Michigan","MI",23016 +2002-01-01,"Industrial Consumption","Kansas","KS",7922 +2002-01-01,"Industrial Consumption","Arizona","AZ",1705 +2002-01-01,"Industrial Consumption","Florida","FL",7262 +2002-01-01,"Industrial Consumption","Illinois","IL",28312 +2002-01-01,"Industrial Consumption","North Carolina","NC",8843 +2002-01-01,"Industrial Consumption","District of Columbia","DC",0 +2002-01-01,"Industrial Consumption","Louisiana","LA",70512 +2002-01-01,"Industrial Consumption","Ohio","OH",29194 +2002-01-01,"Industrial Consumption","U.S.","U.S.",686108 +2002-01-01,"Industrial Consumption","New Jersey","NJ",8346 +2002-01-01,"Industrial Consumption","Oklahoma","OK",12141 +2002-01-01,"Industrial Consumption","South Dakota","SD",1045 +2002-01-01,"Industrial Consumption","Pennsylvania","PA",19982 +2002-01-01,"Industrial Consumption","Mississippi","MS",8485 +2002-01-01,"Industrial Consumption","South Carolina","SC",8654 +2002-01-01,"Industrial Consumption","Tennessee","TN",13400 +2002-01-01,"Industrial Consumption","New Hampshire","NH",704 +2002-01-01,"Industrial Consumption","Kentucky","KY",10214 +2002-01-01,"Industrial Consumption","Indiana","IN",24441 +2002-01-01,"Industrial Consumption","Georgia","GA",12320 +2002-01-01,"Industrial Consumption","Alaska","AK",5749 +2002-01-01,"Industrial Consumption","Utah","UT",2632 +2002-01-01,"Industrial Consumption","Oregon","OR",7607 +2002-01-01,"Industrial Consumption","Nebraska","NE",3374 +2002-01-01,"Industrial Consumption","Wisconsin","WI",15327 +2002-01-01,"Industrial Consumption","Minnesota","MN",9366 +2002-01-01,"Industrial Consumption","Connecticut","CT",2982 +2002-01-01,"Industrial Consumption","Rhode Island","RI",122 +2002-01-01,"Industrial Consumption","North Dakota","ND",2070 +2002-01-01,"Industrial Consumption","Maryland","MD",2389 +2002-01-01,"Industrial Consumption","Hawaii","HI",42 +2002-01-01,"Industrial Consumption","New Mexico","NM",2231 +2002-01-01,"Industrial Consumption","Arkansas","AR",11021 +2002-01-01,"Industrial Consumption","Texas","TX",173921 +2002-01-01,"Industrial Consumption","Idaho","ID",2888 +2002-01-01,"Industrial Consumption","Delaware","DE",1550 +2002-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95508 +2002-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",72857 +2002-01-01,"Residential Consumption","Louisiana","LA",8946 +2002-01-01,"Residential Consumption","Connecticut","CT",6166 +2002-01-01,"Residential Consumption","Georgia","GA",22812 +2002-01-01,"Residential Consumption","District of Columbia","DC",2357 +2002-01-01,"Residential Consumption","Pennsylvania","PA",39692 +2002-01-01,"Residential Consumption","Delaware","DE",1766 +2002-01-01,"Residential Consumption","Michigan","MI",59444 +2002-01-01,"Residential Consumption","Minnesota","MN",20708 +2002-01-01,"Residential Consumption","Maine","ME",150 +2002-01-01,"Residential Consumption","North Dakota","ND",1837 +2002-01-01,"Residential Consumption","Arkansas","AR",7213 +2002-01-01,"Residential Consumption","Colorado","CO",21103 +2002-01-01,"Residential Consumption","Oklahoma","OK",12991 +2002-01-01,"Residential Consumption","New York","NY",56754 +2002-01-01,"Residential Consumption","Illinois","IL",70918 +2002-01-01,"Residential Consumption","Texas","TX",39507 +2002-01-01,"Residential Consumption","Iowa","IA",11996 +2002-01-01,"Residential Consumption","Hawaii","HI",49 +2002-01-01,"Residential Consumption","Maryland","MD",12903 +2002-01-01,"Residential Consumption","Indiana","IN",26954 +2002-01-01,"Residential Consumption","Florida","FL",2500 +2002-01-01,"Residential Consumption","West Virginia","WV",4915 +2002-01-01,"Residential Consumption","Oregon","OR",6445 +2002-01-01,"Residential Consumption","Nebraska","NE",8840 +2002-01-01,"Residential Consumption","Missouri","MO",21030 +2002-01-01,"Residential Consumption","California","CA",79491 +2002-01-01,"Residential Consumption","North Carolina","NC",11858 +2002-01-01,"Residential Consumption","Utah","UT",10613 +2002-01-01,"Residential Consumption","South Dakota","SD",2030 +2002-01-01,"Residential Consumption","Massachusetts","MA",17287 +2002-01-01,"Residential Consumption","Montana","MT",3329 +2002-01-01,"Residential Consumption","Wyoming","WY",1335 +2002-01-01,"Residential Consumption","Rhode Island","RI",2847 +2002-01-01,"Residential Consumption","Ohio","OH",53506 +2002-01-01,"Residential Consumption","New Mexico","NM",6188 +2002-01-01,"Residential Consumption","New Hampshire","NH",1032 +2002-01-01,"Residential Consumption","Arizona","AZ",7537 +2002-01-01,"Residential Consumption","Wisconsin","WI",21077 +2002-01-01,"Residential Consumption","Virginia","VA",13376 +2002-01-01,"Residential Consumption","Nevada","NV",5871 +2002-01-01,"Residential Consumption","Washington","WA",10931 +2002-01-01,"Residential Consumption","U.S.","U.S.",815227 +2002-01-01,"Residential Consumption","South Carolina","SC",5900 +2002-01-01,"Residential Consumption","Mississippi","MS",5411 +2002-01-01,"Residential Consumption","Vermont","VT",419 +2002-01-01,"Residential Consumption","Tennessee","TN",14576 +2002-01-01,"Residential Consumption","Idaho","ID",3455 +2002-01-01,"Residential Consumption","New Jersey","NJ",34373 +2002-01-01,"Residential Consumption","Kentucky","KY",10128 +2002-01-01,"Residential Consumption","Kansas","KS",13256 +2002-01-01,"Residential Consumption","Alabama","AL",9350 +2002-01-01,"Residential Consumption","Alaska","AK",2057 +2002-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",1270 +2002-02-01,"Commercial Consumption","North Carolina","NC",5606 +2002-02-01,"Commercial Consumption","Colorado","CO",9511 +2002-02-01,"Commercial Consumption","Missouri","MO",9371 +2002-02-01,"Commercial Consumption","Massachusetts","MA",8733 +2002-02-01,"Commercial Consumption","New Hampshire","NH",1149 +2002-02-01,"Commercial Consumption","Alabama","AL",3605 +2002-02-01,"Commercial Consumption","Illinois","IL",26156 +2002-02-01,"Commercial Consumption","Washington","WA",6149 +2002-02-01,"Commercial Consumption","South Carolina","SC",2605 +2002-02-01,"Commercial Consumption","Utah","UT",5206 +2002-02-01,"Commercial Consumption","U.S.","U.S.",399911 +2002-02-01,"Commercial Consumption","Kansas","KS",5744 +2002-02-01,"Commercial Consumption","Georgia","GA",6850 +2002-02-01,"Commercial Consumption","Iowa","IA",6437 +2002-02-01,"Commercial Consumption","Louisiana","LA",3250 +2002-02-01,"Commercial Consumption","District of Columbia","DC",2223 +2002-02-01,"Commercial Consumption","Minnesota","MN",12438 +2002-02-01,"Commercial Consumption","Idaho","ID",2288 +2002-02-01,"Commercial Consumption","Nevada","NV",2713 +2002-02-01,"Commercial Consumption","Maine","ME",579 +2002-02-01,"Commercial Consumption","Florida","FL",5160 +2002-02-01,"Commercial Consumption","California","CA",23711 +2002-02-01,"Commercial Consumption","New York","NY",40947 +2002-02-01,"Commercial Consumption","Michigan","MI",24665 +2002-02-01,"Commercial Consumption","Oregon","OR",3933 +2002-02-01,"Commercial Consumption","Virginia","VA",7971 +2002-02-01,"Commercial Consumption","Pennsylvania","PA",17977 +2002-02-01,"Commercial Consumption","Texas","TX",23866 +2002-02-01,"Commercial Consumption","Alaska","AK",1665 +2002-02-01,"Commercial Consumption","Mississippi","MS",3212 +2002-02-01,"Commercial Consumption","Tennessee","TN",7747 +2002-02-01,"Commercial Consumption","North Dakota","ND",1377 +2002-02-01,"Commercial Consumption","New Mexico","NM",4085 +2002-02-01,"Commercial Consumption","Wisconsin","WI",10651 +2002-02-01,"Commercial Consumption","Maryland","MD",8024 +2002-02-01,"Commercial Consumption","Rhode Island","RI",1566 +2002-02-01,"Commercial Consumption","Connecticut","CT",5243 +2002-02-01,"Commercial Consumption","Arkansas","AR",4805 +2002-02-01,"Commercial Consumption","Nebraska","NE",4376 +2002-02-01,"Commercial Consumption","Delaware","DE",1002 +2002-02-01,"Commercial Consumption","Arizona","AZ",3920 +2002-02-01,"Commercial Consumption","Indiana","IN",11220 +2002-02-01,"Commercial Consumption","Oklahoma","OK",6341 +2002-02-01,"Commercial Consumption","South Dakota","SD",1309 +2002-02-01,"Commercial Consumption","Montana","MT",1910 +2002-02-01,"Commercial Consumption","Kentucky","KY",5249 +2002-02-01,"Commercial Consumption","Vermont","VT",383 +2002-02-01,"Commercial Consumption","Hawaii","HI",138 +2002-02-01,"Commercial Consumption","Wyoming","WY",914 +2002-02-01,"Commercial Consumption","West Virginia","WV",3213 +2002-02-01,"Commercial Consumption","New Jersey","NJ",18604 +2002-02-01,"Commercial Consumption","Ohio","OH",24115 +2002-02-01,"Delivered to Consumers","U.S.","U.S.",2090786 +2002-02-01,"Delivered to Consumers","Indiana","IN",58962 +2002-02-01,"Delivered to Consumers","Hawaii","HI",226 +2002-02-01,"Delivered to Consumers","Idaho","ID",8547 +2002-02-01,"Delivered to Consumers","Louisiana","LA",96945 +2002-02-01,"Delivered to Consumers","Washington","WA",27361 +2002-02-01,"Delivered to Consumers","Illinois","IL",119430 +2002-02-01,"Delivered to Consumers","Iowa","IA",25072 +2002-02-01,"Delivered to Consumers","Arkansas","AR",24940 +2002-02-01,"Delivered to Consumers","North Carolina","NC",25444 +2002-02-01,"Delivered to Consumers","Oregon","OR",22100 +2002-02-01,"Delivered to Consumers","Maine","ME",10737 +2002-02-01,"Delivered to Consumers","Minnesota","MN",38565 +2002-02-01,"Delivered to Consumers","New Mexico","NM",14695 +2002-02-01,"Delivered to Consumers","Wyoming","WY",5846 +2002-02-01,"Delivered to Consumers","Maryland","MD",22802 +2002-02-01,"Delivered to Consumers","Tennessee","TN",31272 +2002-02-01,"Delivered to Consumers","Michigan","MI",108891 +2002-02-01,"Delivered to Consumers","New Jersey","NJ",65857 +2002-02-01,"Delivered to Consumers","North Dakota","ND",4458 +2002-02-01,"Delivered to Consumers","Ohio","OH",98576 +2002-02-01,"Delivered to Consumers","Wisconsin","WI",43815 +2002-02-01,"Delivered to Consumers","Mississippi","MS",28518 +2002-02-01,"Delivered to Consumers","Massachusetts","MA",40420 +2002-02-01,"Delivered to Consumers","Delaware","DE",4880 +2002-02-01,"Delivered to Consumers","New York","NY",125601 +2002-02-01,"Delivered to Consumers","Alaska","AK",11258 +2002-02-01,"Delivered to Consumers","Oklahoma","OK",42546 +2002-02-01,"Delivered to Consumers","Kentucky","KY",24533 +2002-02-01,"Delivered to Consumers","Missouri","MO",35157 +2002-02-01,"Delivered to Consumers","Colorado","CO",44713 +2002-02-01,"Delivered to Consumers","California","CA",185421 +2002-02-01,"Delivered to Consumers","South Carolina","SC",17611 +2002-02-01,"Delivered to Consumers","New Hampshire","NH",3188 +2002-02-01,"Delivered to Consumers","Vermont","VT",1149 +2002-02-01,"Delivered to Consumers","Rhode Island","RI",8745 +2002-02-01,"Delivered to Consumers","Kansas","KS",25068 +2002-02-01,"Delivered to Consumers","Connecticut","CT",18410 +2002-02-01,"Delivered to Consumers","Texas","TX",309217 +2002-02-01,"Delivered to Consumers","Nevada","NV",16951 +2002-02-01,"Delivered to Consumers","Florida","FL",41302 +2002-02-01,"Delivered to Consumers","Utah","UT",17659 +2002-02-01,"Delivered to Consumers","West Virginia","WV",11546 +2002-02-01,"Delivered to Consumers","South Dakota","SD",4036 +2002-02-01,"Delivered to Consumers","Montana","MT",6859 +2002-02-01,"Delivered to Consumers","Virginia","VA",25956 +2002-02-01,"Delivered to Consumers","Pennsylvania","PA",74651 +2002-02-01,"Delivered to Consumers","Nebraska","NE",14049 +2002-02-01,"Delivered to Consumers","Georgia","GA",37992 +2002-02-01,"Delivered to Consumers","Arizona","AZ",19954 +2002-02-01,"Delivered to Consumers","Alabama","AL",33467 +2002-02-01,"Delivered to Consumers","District of Columbia","DC",4239 +2002-02-01,"Electric Power Consumption","New Mexico","NM",2405 +2002-02-01,"Electric Power Consumption","New Jersey","NJ",9313 +2002-02-01,"Electric Power Consumption","Oklahoma","OK",14532 +2002-02-01,"Electric Power Consumption","Tennessee","TN",34 +2002-02-01,"Electric Power Consumption","South Dakota","SD",145 +2002-02-01,"Electric Power Consumption","Nebraska","NE",89 +2002-02-01,"Electric Power Consumption","Connecticut","CT",3978 +2002-02-01,"Electric Power Consumption","Washington","WA",3853 +2002-02-01,"Electric Power Consumption","Louisiana","LA",19396 +2002-02-01,"Electric Power Consumption","Idaho","ID",144 +2002-02-01,"Electric Power Consumption","Massachusetts","MA",6633 +2002-02-01,"Electric Power Consumption","Kansas","KS",776 +2002-02-01,"Electric Power Consumption","Missouri","MO",1622 +2002-02-01,"Electric Power Consumption","New York","NY",23831 +2002-02-01,"Electric Power Consumption","Texas","TX",90578 +2002-02-01,"Electric Power Consumption","Pennsylvania","PA",3362 +2002-02-01,"Electric Power Consumption","Iowa","IA",291 +2002-02-01,"Electric Power Consumption","Virginia","VA",942 +2002-02-01,"Electric Power Consumption","Colorado","CO",4419 +2002-02-01,"Electric Power Consumption","Arkansas","AR",1857 +2002-02-01,"Electric Power Consumption","South Carolina","SC",2014 +2002-02-01,"Electric Power Consumption","Oregon","OR",5748 +2002-02-01,"Electric Power Consumption","U.S.","U.S.",344243 +2002-02-01,"Electric Power Consumption","North Carolina","NC",1598 +2002-02-01,"Electric Power Consumption","Maine","ME",7612 +2002-02-01,"Electric Power Consumption","Ohio","OH",740 +2002-02-01,"Electric Power Consumption","Maryland","MD",490 +2002-02-01,"Electric Power Consumption","Indiana","IN",2683 +2002-02-01,"Electric Power Consumption","Georgia","GA",887 +2002-02-01,"Electric Power Consumption","California","CA",46030 +2002-02-01,"Electric Power Consumption","Alabama","AL",8006 +2002-02-01,"Electric Power Consumption","Utah","UT",667 +2002-02-01,"Electric Power Consumption","Illinois","IL",3005 +2002-02-01,"Electric Power Consumption","North Dakota","ND",0 +2002-02-01,"Electric Power Consumption","Delaware","DE",1123 +2002-02-01,"Electric Power Consumption","Arizona","AZ",7902 +2002-02-01,"Electric Power Consumption","Minnesota","MN",815 +2002-02-01,"Electric Power Consumption","West Virginia","WV",58 +2002-02-01,"Electric Power Consumption","Nevada","NV",7845 +2002-02-01,"Electric Power Consumption","Hawaii","HI",0 +2002-02-01,"Electric Power Consumption","Rhode Island","RI",4458 +2002-02-01,"Electric Power Consumption","Wisconsin","WI",1203 +2002-02-01,"Electric Power Consumption","New Hampshire","NH",12 +2002-02-01,"Electric Power Consumption","Michigan","MI",10280 +2002-02-01,"Electric Power Consumption","Wyoming","WY",214 +2002-02-01,"Electric Power Consumption","Vermont","VT",3 +2002-02-01,"Electric Power Consumption","Mississippi","MS",12553 +2002-02-01,"Electric Power Consumption","Kentucky","KY",537 +2002-02-01,"Electric Power Consumption","Montana","MT",1 +2002-02-01,"Electric Power Consumption","Florida","FL",27217 +2002-02-01,"Electric Power Consumption","Alaska","AK",2342 +2002-02-01,"Industrial Consumption","South Dakota","SD",851 +2002-02-01,"Industrial Consumption","Ohio","OH",26686 +2002-02-01,"Industrial Consumption","Utah","UT",2431 +2002-02-01,"Industrial Consumption","Mississippi","MS",8021 +2002-02-01,"Industrial Consumption","Nebraska","NE",3222 +2002-02-01,"Industrial Consumption","Idaho","ID",2668 +2002-02-01,"Industrial Consumption","Florida","FL",7044 +2002-02-01,"Industrial Consumption","Connecticut","CT",2873 +2002-02-01,"Industrial Consumption","Delaware","DE",1301 +2002-02-01,"Industrial Consumption","Montana","MT",2136 +2002-02-01,"Industrial Consumption","Maryland","MD",2374 +2002-02-01,"Industrial Consumption","Hawaii","HI",40 +2002-02-01,"Industrial Consumption","Missouri","MO",5945 +2002-02-01,"Industrial Consumption","New Jersey","NJ",7648 +2002-02-01,"Industrial Consumption","Louisiana","LA",65911 +2002-02-01,"Industrial Consumption","Washington","WA",6131 +2002-02-01,"Industrial Consumption","New Mexico","NM",2036 +2002-02-01,"Industrial Consumption","Pennsylvania","PA",18572 +2002-02-01,"Industrial Consumption","California","CA",51558 +2002-02-01,"Industrial Consumption","Wyoming","WY",3312 +2002-02-01,"Industrial Consumption","Iowa","IA",8036 +2002-02-01,"Industrial Consumption","North Dakota","ND",1625 +2002-02-01,"Industrial Consumption","Arizona","AZ",1448 +2002-02-01,"Industrial Consumption","Oregon","OR",6323 +2002-02-01,"Industrial Consumption","Maine","ME",2399 +2002-02-01,"Industrial Consumption","Arkansas","AR",11320 +2002-02-01,"Industrial Consumption","New Hampshire","NH",974 +2002-02-01,"Industrial Consumption","Kentucky","KY",9404 +2002-02-01,"Industrial Consumption","Indiana","IN",23170 +2002-02-01,"Industrial Consumption","Illinois","IL",26992 +2002-02-01,"Industrial Consumption","New York","NY",9071 +2002-02-01,"Industrial Consumption","Nevada","NV",797 +2002-02-01,"Industrial Consumption","Texas","TX",157028 +2002-02-01,"Industrial Consumption","Virginia","VA",6083 +2002-02-01,"Industrial Consumption","Vermont","VT",323 +2002-02-01,"Industrial Consumption","Wisconsin","WI",13840 +2002-02-01,"Industrial Consumption","Georgia","GA",11739 +2002-02-01,"Industrial Consumption","Colorado","CO",10606 +2002-02-01,"Industrial Consumption","Tennessee","TN",12094 +2002-02-01,"Industrial Consumption","Minnesota","MN",8391 +2002-02-01,"Industrial Consumption","Alaska","AK",5318 +2002-02-01,"Industrial Consumption","Massachusetts","MA",8719 +2002-02-01,"Industrial Consumption","Oklahoma","OK",10474 +2002-02-01,"Industrial Consumption","Kansas","KS",7346 +2002-02-01,"Industrial Consumption","U.S.","U.S.",632621 +2002-02-01,"Industrial Consumption","Alabama","AL",13875 +2002-02-01,"Industrial Consumption","South Carolina","SC",8380 +2002-02-01,"Industrial Consumption","North Carolina","NC",8714 +2002-02-01,"Industrial Consumption","West Virginia","WV",3461 +2002-02-01,"Industrial Consumption","Michigan","MI",23762 +2002-02-01,"Industrial Consumption","Rhode Island","RI",149 +2002-02-01,"Industrial Consumption","District of Columbia","DC",0 +2002-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86015 +2002-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",65626 +2002-02-01,"Residential Consumption","Louisiana","LA",8388 +2002-02-01,"Residential Consumption","Utah","UT",9355 +2002-02-01,"Residential Consumption","Pennsylvania","PA",34740 +2002-02-01,"Residential Consumption","Wyoming","WY",1406 +2002-02-01,"Residential Consumption","Hawaii","HI",48 +2002-02-01,"Residential Consumption","Georgia","GA",18516 +2002-02-01,"Residential Consumption","Oklahoma","OK",11198 +2002-02-01,"Residential Consumption","South Carolina","SC",4612 +2002-02-01,"Residential Consumption","Wisconsin","WI",18121 +2002-02-01,"Residential Consumption","Indiana","IN",21888 +2002-02-01,"Residential Consumption","New Jersey","NJ",30291 +2002-02-01,"Residential Consumption","Washington","WA",11228 +2002-02-01,"Residential Consumption","Illinois","IL",63278 +2002-02-01,"Residential Consumption","North Carolina","NC",9526 +2002-02-01,"Residential Consumption","Maryland","MD",11915 +2002-02-01,"Residential Consumption","Nevada","NV",5596 +2002-02-01,"Residential Consumption","Minnesota","MN",16921 +2002-02-01,"Residential Consumption","North Dakota","ND",1455 +2002-02-01,"Residential Consumption","Massachusetts","MA",16335 +2002-02-01,"Residential Consumption","Montana","MT",2812 +2002-02-01,"Residential Consumption","Colorado","CO",20177 +2002-02-01,"Residential Consumption","Kansas","KS",11202 +2002-02-01,"Residential Consumption","Vermont","VT",441 +2002-02-01,"Residential Consumption","Maine","ME",147 +2002-02-01,"Residential Consumption","California","CA",64122 +2002-02-01,"Residential Consumption","Arizona","AZ",6684 +2002-02-01,"Residential Consumption","Alaska","AK",1933 +2002-02-01,"Residential Consumption","West Virginia","WV",4814 +2002-02-01,"Residential Consumption","Texas","TX",37745 +2002-02-01,"Residential Consumption","Oregon","OR",6096 +2002-02-01,"Residential Consumption","Ohio","OH",47035 +2002-02-01,"Residential Consumption","Virginia","VA",10960 +2002-02-01,"Residential Consumption","South Dakota","SD",1730 +2002-02-01,"Residential Consumption","Florida","FL",1881 +2002-02-01,"Residential Consumption","Missouri","MO",18219 +2002-02-01,"Residential Consumption","Alabama","AL",7981 +2002-02-01,"Residential Consumption","U.S.","U.S.",712863 +2002-02-01,"Residential Consumption","Rhode Island","RI",2573 +2002-02-01,"Residential Consumption","Mississippi","MS",4732 +2002-02-01,"Residential Consumption","Iowa","IA",10308 +2002-02-01,"Residential Consumption","Connecticut","CT",6316 +2002-02-01,"Residential Consumption","Nebraska","NE",6363 +2002-02-01,"Residential Consumption","Michigan","MI",50184 +2002-02-01,"Residential Consumption","New Hampshire","NH",1053 +2002-02-01,"Residential Consumption","Tennessee","TN",11396 +2002-02-01,"Residential Consumption","District of Columbia","DC",2015 +2002-02-01,"Residential Consumption","New Mexico","NM",6169 +2002-02-01,"Residential Consumption","Idaho","ID",3448 +2002-02-01,"Residential Consumption","Arkansas","AR",6958 +2002-02-01,"Residential Consumption","Kentucky","KY",9343 +2002-02-01,"Residential Consumption","Delaware","DE",1455 +2002-02-01,"Residential Consumption","New York","NY",51753 +2002-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1147 +2002-03-01,"Commercial Consumption","Washington","WA",5619 +2002-03-01,"Commercial Consumption","Colorado","CO",8502 +2002-03-01,"Commercial Consumption","Maine","ME",747 +2002-03-01,"Commercial Consumption","Vermont","VT",294 +2002-03-01,"Commercial Consumption","New York","NY",38668 +2002-03-01,"Commercial Consumption","Wyoming","WY",1043 +2002-03-01,"Commercial Consumption","South Carolina","SC",2433 +2002-03-01,"Commercial Consumption","South Dakota","SD",1414 +2002-03-01,"Commercial Consumption","Florida","FL",5579 +2002-03-01,"Commercial Consumption","Nebraska","NE",4074 +2002-03-01,"Commercial Consumption","Delaware","DE",941 +2002-03-01,"Commercial Consumption","Illinois","IL",24832 +2002-03-01,"Commercial Consumption","West Virginia","WV",3239 +2002-03-01,"Commercial Consumption","North Dakota","ND",1792 +2002-03-01,"Commercial Consumption","North Carolina","NC",4787 +2002-03-01,"Commercial Consumption","Wisconsin","WI",11694 +2002-03-01,"Commercial Consumption","New Jersey","NJ",15310 +2002-03-01,"Commercial Consumption","Texas","TX",23376 +2002-03-01,"Commercial Consumption","Maryland","MD",7598 +2002-03-01,"Commercial Consumption","Alaska","AK",1705 +2002-03-01,"Commercial Consumption","Arkansas","AR",4350 +2002-03-01,"Commercial Consumption","Alabama","AL",3301 +2002-03-01,"Commercial Consumption","Indiana","IN",10759 +2002-03-01,"Commercial Consumption","District of Columbia","DC",2047 +2002-03-01,"Commercial Consumption","Massachusetts","MA",6764 +2002-03-01,"Commercial Consumption","Montana","MT",2087 +2002-03-01,"Commercial Consumption","Kentucky","KY",4970 +2002-03-01,"Commercial Consumption","Ohio","OH",22697 +2002-03-01,"Commercial Consumption","Hawaii","HI",138 +2002-03-01,"Commercial Consumption","Mississippi","MS",2610 +2002-03-01,"Commercial Consumption","Oregon","OR",3416 +2002-03-01,"Commercial Consumption","Virginia","VA",7518 +2002-03-01,"Commercial Consumption","Pennsylvania","PA",16528 +2002-03-01,"Commercial Consumption","Georgia","GA",5509 +2002-03-01,"Commercial Consumption","Rhode Island","RI",1379 +2002-03-01,"Commercial Consumption","Iowa","IA",6548 +2002-03-01,"Commercial Consumption","California","CA",21883 +2002-03-01,"Commercial Consumption","Arizona","AZ",3323 +2002-03-01,"Commercial Consumption","Oklahoma","OK",5664 +2002-03-01,"Commercial Consumption","New Hampshire","NH",1104 +2002-03-01,"Commercial Consumption","Idaho","ID",1894 +2002-03-01,"Commercial Consumption","Connecticut","CT",4970 +2002-03-01,"Commercial Consumption","Michigan","MI",20884 +2002-03-01,"Commercial Consumption","Utah","UT",4127 +2002-03-01,"Commercial Consumption","New Mexico","NM",3519 +2002-03-01,"Commercial Consumption","Missouri","MO",8497 +2002-03-01,"Commercial Consumption","U.S.","U.S.",372845 +2002-03-01,"Commercial Consumption","Kansas","KS",5410 +2002-03-01,"Commercial Consumption","Tennessee","TN",6746 +2002-03-01,"Commercial Consumption","Minnesota","MN",14535 +2002-03-01,"Commercial Consumption","Nevada","NV",2705 +2002-03-01,"Commercial Consumption","Louisiana","LA",3313 +2002-03-01,"Delivered to Consumers","Utah","UT",15165 +2002-03-01,"Delivered to Consumers","Wyoming","WY",6319 +2002-03-01,"Delivered to Consumers","West Virginia","WV",11965 +2002-03-01,"Delivered to Consumers","Ohio","OH",94429 +2002-03-01,"Delivered to Consumers","Nebraska","NE",12938 +2002-03-01,"Delivered to Consumers","Missouri","MO",34198 +2002-03-01,"Delivered to Consumers","Nevada","NV",15943 +2002-03-01,"Delivered to Consumers","Maine","ME",9131 +2002-03-01,"Delivered to Consumers","Minnesota","MN",44505 +2002-03-01,"Delivered to Consumers","Idaho","ID",7861 +2002-03-01,"Delivered to Consumers","Alabama","AL",32355 +2002-03-01,"Delivered to Consumers","Wisconsin","WI",48646 +2002-03-01,"Delivered to Consumers","Virginia","VA",22525 +2002-03-01,"Delivered to Consumers","Colorado","CO",45909 +2002-03-01,"Delivered to Consumers","California","CA",206416 +2002-03-01,"Delivered to Consumers","Delaware","DE",4847 +2002-03-01,"Delivered to Consumers","Illinois","IL",122242 +2002-03-01,"Delivered to Consumers","South Dakota","SD",4766 +2002-03-01,"Delivered to Consumers","Oklahoma","OK",40981 +2002-03-01,"Delivered to Consumers","Tennessee","TN",27242 +2002-03-01,"Delivered to Consumers","Massachusetts","MA",40295 +2002-03-01,"Delivered to Consumers","Rhode Island","RI",7848 +2002-03-01,"Delivered to Consumers","New York","NY",121522 +2002-03-01,"Delivered to Consumers","Hawaii","HI",225 +2002-03-01,"Delivered to Consumers","Arkansas","AR",22284 +2002-03-01,"Delivered to Consumers","Oregon","OR",21179 +2002-03-01,"Delivered to Consumers","Georgia","GA",33260 +2002-03-01,"Delivered to Consumers","New Hampshire","NH",2833 +2002-03-01,"Delivered to Consumers","North Dakota","ND",5166 +2002-03-01,"Delivered to Consumers","Indiana","IN",58569 +2002-03-01,"Delivered to Consumers","Kansas","KS",25566 +2002-03-01,"Delivered to Consumers","Kentucky","KY",23241 +2002-03-01,"Delivered to Consumers","Mississippi","MS",28650 +2002-03-01,"Delivered to Consumers","South Carolina","SC",16270 +2002-03-01,"Delivered to Consumers","Florida","FL",50453 +2002-03-01,"Delivered to Consumers","U.S.","U.S.",2096915 +2002-03-01,"Delivered to Consumers","New Mexico","NM",13429 +2002-03-01,"Delivered to Consumers","Vermont","VT",960 +2002-03-01,"Delivered to Consumers","Montana","MT",7247 +2002-03-01,"Delivered to Consumers","Alaska","AK",11090 +2002-03-01,"Delivered to Consumers","Michigan","MI",104208 +2002-03-01,"Delivered to Consumers","North Carolina","NC",22993 +2002-03-01,"Delivered to Consumers","Texas","TX",323520 +2002-03-01,"Delivered to Consumers","New Jersey","NJ",60240 +2002-03-01,"Delivered to Consumers","Louisiana","LA",102315 +2002-03-01,"Delivered to Consumers","Maryland","MD",20670 +2002-03-01,"Delivered to Consumers","Connecticut","CT",17585 +2002-03-01,"Delivered to Consumers","Pennsylvania","PA",70773 +2002-03-01,"Delivered to Consumers","District of Columbia","DC",3718 +2002-03-01,"Delivered to Consumers","Iowa","IA",25693 +2002-03-01,"Delivered to Consumers","Arizona","AZ",18340 +2002-03-01,"Delivered to Consumers","Washington","WA",27117 +2002-03-01,"Electric Power Consumption","Arkansas","AR",1919 +2002-03-01,"Electric Power Consumption","New York","NY",24629 +2002-03-01,"Electric Power Consumption","Massachusetts","MA",9702 +2002-03-01,"Electric Power Consumption","North Carolina","NC",1481 +2002-03-01,"Electric Power Consumption","Maine","ME",7776 +2002-03-01,"Electric Power Consumption","Mississippi","MS",13002 +2002-03-01,"Electric Power Consumption","Oklahoma","OK",14144 +2002-03-01,"Electric Power Consumption","Wyoming","WY",340 +2002-03-01,"Electric Power Consumption","Iowa","IA",364 +2002-03-01,"Electric Power Consumption","Maryland","MD",607 +2002-03-01,"Electric Power Consumption","Indiana","IN",2173 +2002-03-01,"Electric Power Consumption","Arizona","AZ",9125 +2002-03-01,"Electric Power Consumption","Georgia","GA",863 +2002-03-01,"Electric Power Consumption","Washington","WA",5065 +2002-03-01,"Electric Power Consumption","Virginia","VA",1105 +2002-03-01,"Electric Power Consumption","New Jersey","NJ",10547 +2002-03-01,"Electric Power Consumption","Louisiana","LA",24864 +2002-03-01,"Electric Power Consumption","Colorado","CO",7141 +2002-03-01,"Electric Power Consumption","Oregon","OR",6225 +2002-03-01,"Electric Power Consumption","Minnesota","MN",1155 +2002-03-01,"Electric Power Consumption","Illinois","IL",4995 +2002-03-01,"Electric Power Consumption","Michigan","MI",12090 +2002-03-01,"Electric Power Consumption","U.S.","U.S.",406516 +2002-03-01,"Electric Power Consumption","Nebraska","NE",93 +2002-03-01,"Electric Power Consumption","Hawaii","HI",0 +2002-03-01,"Electric Power Consumption","Florida","FL",35261 +2002-03-01,"Electric Power Consumption","Alabama","AL",7301 +2002-03-01,"Electric Power Consumption","Texas","TX",104754 +2002-03-01,"Electric Power Consumption","Tennessee","TN",172 +2002-03-01,"Electric Power Consumption","Ohio","OH",645 +2002-03-01,"Electric Power Consumption","Alaska","AK",2663 +2002-03-01,"Electric Power Consumption","New Mexico","NM",2855 +2002-03-01,"Electric Power Consumption","Idaho","ID",490 +2002-03-01,"Electric Power Consumption","Rhode Island","RI",3904 +2002-03-01,"Electric Power Consumption","Utah","UT",899 +2002-03-01,"Electric Power Consumption","Pennsylvania","PA",3212 +2002-03-01,"Electric Power Consumption","South Dakota","SD",61 +2002-03-01,"Electric Power Consumption","Missouri","MO",2117 +2002-03-01,"Electric Power Consumption","Delaware","DE",1226 +2002-03-01,"Electric Power Consumption","Connecticut","CT",4703 +2002-03-01,"Electric Power Consumption","Vermont","VT",2 +2002-03-01,"Electric Power Consumption","California","CA",62953 +2002-03-01,"Electric Power Consumption","South Carolina","SC",1160 +2002-03-01,"Electric Power Consumption","Kansas","KS",1531 +2002-03-01,"Electric Power Consumption","Wisconsin","WI",1574 +2002-03-01,"Electric Power Consumption","Kentucky","KY",811 +2002-03-01,"Electric Power Consumption","North Dakota","ND",0 +2002-03-01,"Electric Power Consumption","West Virginia","WV",164 +2002-03-01,"Electric Power Consumption","Nevada","NV",8650 +2002-03-01,"Electric Power Consumption","New Hampshire","NH",1 +2002-03-01,"Electric Power Consumption","Montana","MT",1 +2002-03-01,"Industrial Consumption","Louisiana","LA",67135 +2002-03-01,"Industrial Consumption","Virginia","VA",4656 +2002-03-01,"Industrial Consumption","New Jersey","NJ",7106 +2002-03-01,"Industrial Consumption","Idaho","ID",2675 +2002-03-01,"Industrial Consumption","Kentucky","KY",9297 +2002-03-01,"Industrial Consumption","Ohio","OH",26292 +2002-03-01,"Industrial Consumption","Oregon","OR",6281 +2002-03-01,"Industrial Consumption","New York","NY",8916 +2002-03-01,"Industrial Consumption","Wyoming","WY",3494 +2002-03-01,"Industrial Consumption","Wisconsin","WI",14801 +2002-03-01,"Industrial Consumption","Michigan","MI",20891 +2002-03-01,"Industrial Consumption","North Carolina","NC",8888 +2002-03-01,"Industrial Consumption","Hawaii","HI",39 +2002-03-01,"Industrial Consumption","South Dakota","SD",1343 +2002-03-01,"Industrial Consumption","Kansas","KS",7976 +2002-03-01,"Industrial Consumption","Texas","TX",166204 +2002-03-01,"Industrial Consumption","West Virginia","WV",4035 +2002-03-01,"Industrial Consumption","Tennessee","TN",9944 +2002-03-01,"Industrial Consumption","New Hampshire","NH",795 +2002-03-01,"Industrial Consumption","District of Columbia","DC",0 +2002-03-01,"Industrial Consumption","Montana","MT",1938 +2002-03-01,"Industrial Consumption","U.S.","U.S.",655854 +2002-03-01,"Industrial Consumption","Pennsylvania","PA",19291 +2002-03-01,"Industrial Consumption","Alabama","AL",14404 +2002-03-01,"Industrial Consumption","Nebraska","NE",2416 +2002-03-01,"Industrial Consumption","Minnesota","MN",9188 +2002-03-01,"Industrial Consumption","Florida","FL",7671 +2002-03-01,"Industrial Consumption","Alaska","AK",4607 +2002-03-01,"Industrial Consumption","Mississippi","MS",8941 +2002-03-01,"Industrial Consumption","Maine","ME",466 +2002-03-01,"Industrial Consumption","Illinois","IL",27788 +2002-03-01,"Industrial Consumption","Oklahoma","OK",10650 +2002-03-01,"Industrial Consumption","Missouri","MO",6709 +2002-03-01,"Industrial Consumption","Arkansas","AR",9844 +2002-03-01,"Industrial Consumption","South Carolina","SC",8435 +2002-03-01,"Industrial Consumption","North Dakota","ND",1612 +2002-03-01,"Industrial Consumption","Maryland","MD",2739 +2002-03-01,"Industrial Consumption","New Mexico","NM",2056 +2002-03-01,"Industrial Consumption","Arizona","AZ",1418 +2002-03-01,"Industrial Consumption","Connecticut","CT",2953 +2002-03-01,"Industrial Consumption","Indiana","IN",23714 +2002-03-01,"Industrial Consumption","Georgia","GA",13039 +2002-03-01,"Industrial Consumption","Massachusetts","MA",9197 +2002-03-01,"Industrial Consumption","Colorado","CO",12835 +2002-03-01,"Industrial Consumption","Washington","WA",6163 +2002-03-01,"Industrial Consumption","Utah","UT",2332 +2002-03-01,"Industrial Consumption","Nevada","NV",863 +2002-03-01,"Industrial Consumption","California","CA",63581 +2002-03-01,"Industrial Consumption","Vermont","VT",318 +2002-03-01,"Industrial Consumption","Iowa","IA",8306 +2002-03-01,"Industrial Consumption","Delaware","DE",1328 +2002-03-01,"Industrial Consumption","Rhode Island","RI",283 +2002-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95646 +2002-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",65870 +2002-03-01,"Residential Consumption","South Carolina","SC",4243 +2002-03-01,"Residential Consumption","North Carolina","NC",7835 +2002-03-01,"Residential Consumption","Hawaii","HI",48 +2002-03-01,"Residential Consumption","Connecticut","CT",4958 +2002-03-01,"Residential Consumption","Nevada","NV",3726 +2002-03-01,"Residential Consumption","Maine","ME",143 +2002-03-01,"Residential Consumption","New Jersey","NJ",27277 +2002-03-01,"Residential Consumption","New Hampshire","NH",934 +2002-03-01,"Residential Consumption","Kentucky","KY",8162 +2002-03-01,"Residential Consumption","Colorado","CO",17430 +2002-03-01,"Residential Consumption","California","CA",57999 +2002-03-01,"Residential Consumption","Alaska","AK",2115 +2002-03-01,"Residential Consumption","Rhode Island","RI",2282 +2002-03-01,"Residential Consumption","Iowa","IA",10475 +2002-03-01,"Residential Consumption","Idaho","ID",2802 +2002-03-01,"Residential Consumption","Wisconsin","WI",20577 +2002-03-01,"Residential Consumption","Michigan","MI",50343 +2002-03-01,"Residential Consumption","Massachusetts","MA",14632 +2002-03-01,"Residential Consumption","Missouri","MO",16874 +2002-03-01,"Residential Consumption","Delaware","DE",1352 +2002-03-01,"Residential Consumption","Oregon","OR",5257 +2002-03-01,"Residential Consumption","Virginia","VA",9246 +2002-03-01,"Residential Consumption","Indiana","IN",21923 +2002-03-01,"Residential Consumption","Montana","MT",3222 +2002-03-01,"Residential Consumption","Texas","TX",29187 +2002-03-01,"Residential Consumption","Mississippi","MS",4097 +2002-03-01,"Residential Consumption","Minnesota","MN",19626 +2002-03-01,"Residential Consumption","Ohio","OH",44795 +2002-03-01,"Residential Consumption","Louisiana","LA",7003 +2002-03-01,"Residential Consumption","Vermont","VT",346 +2002-03-01,"Residential Consumption","Tennessee","TN",10380 +2002-03-01,"Residential Consumption","Nebraska","NE",6356 +2002-03-01,"Residential Consumption","South Dakota","SD",1947 +2002-03-01,"Residential Consumption","Florida","FL",1942 +2002-03-01,"Residential Consumption","North Dakota","ND",1761 +2002-03-01,"Residential Consumption","Arkansas","AR",6172 +2002-03-01,"Residential Consumption","West Virginia","WV",4528 +2002-03-01,"Residential Consumption","New York","NY",49309 +2002-03-01,"Residential Consumption","Utah","UT",7806 +2002-03-01,"Residential Consumption","Georgia","GA",13849 +2002-03-01,"Residential Consumption","Pennsylvania","PA",31742 +2002-03-01,"Residential Consumption","New Mexico","NM",4998 +2002-03-01,"Residential Consumption","Arizona","AZ",4473 +2002-03-01,"Residential Consumption","Illinois","IL",64626 +2002-03-01,"Residential Consumption","Maryland","MD",9725 +2002-03-01,"Residential Consumption","District of Columbia","DC",1671 +2002-03-01,"Residential Consumption","Kansas","KS",10649 +2002-03-01,"Residential Consumption","Washington","WA",10270 +2002-03-01,"Residential Consumption","Oklahoma","OK",10524 +2002-03-01,"Residential Consumption","Alabama","AL",7349 +2002-03-01,"Residential Consumption","Wyoming","WY",1443 +2002-03-01,"Residential Consumption","U.S.","U.S.",660430 +2002-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",1270 +2002-04-01,"Commercial Consumption","Virginia","VA",4160 +2002-04-01,"Commercial Consumption","Missouri","MO",5523 +2002-04-01,"Commercial Consumption","South Dakota","SD",968 +2002-04-01,"Commercial Consumption","Kansas","KS",3342 +2002-04-01,"Commercial Consumption","Idaho","ID",1243 +2002-04-01,"Commercial Consumption","Michigan","MI",18107 +2002-04-01,"Commercial Consumption","Illinois","IL",19118 +2002-04-01,"Commercial Consumption","North Carolina","NC",2861 +2002-04-01,"Commercial Consumption","Montana","MT",1463 +2002-04-01,"Commercial Consumption","Georgia","GA",2880 +2002-04-01,"Commercial Consumption","Florida","FL",4812 +2002-04-01,"Commercial Consumption","Vermont","VT",249 +2002-04-01,"Commercial Consumption","California","CA",19797 +2002-04-01,"Commercial Consumption","Nebraska","NE",3063 +2002-04-01,"Commercial Consumption","Nevada","NV",1782 +2002-04-01,"Commercial Consumption","Utah","UT",2220 +2002-04-01,"Commercial Consumption","New Mexico","NM",2448 +2002-04-01,"Commercial Consumption","Oregon","OR",2609 +2002-04-01,"Commercial Consumption","Oklahoma","OK",3965 +2002-04-01,"Commercial Consumption","District of Columbia","DC",1257 +2002-04-01,"Commercial Consumption","Maine","ME",469 +2002-04-01,"Commercial Consumption","U.S.","U.S.",267206 +2002-04-01,"Commercial Consumption","Maryland","MD",4423 +2002-04-01,"Commercial Consumption","Connecticut","CT",3846 +2002-04-01,"Commercial Consumption","Alabama","AL",1928 +2002-04-01,"Commercial Consumption","Tennessee","TN",4469 +2002-04-01,"Commercial Consumption","Wyoming","WY",720 +2002-04-01,"Commercial Consumption","Colorado","CO",4288 +2002-04-01,"Commercial Consumption","New Jersey","NJ",12001 +2002-04-01,"Commercial Consumption","New Hampshire","NH",700 +2002-04-01,"Commercial Consumption","Indiana","IN",6909 +2002-04-01,"Commercial Consumption","Louisiana","LA",2046 +2002-04-01,"Commercial Consumption","West Virginia","WV",2246 +2002-04-01,"Commercial Consumption","Massachusetts","MA",5778 +2002-04-01,"Commercial Consumption","Rhode Island","RI",1074 +2002-04-01,"Commercial Consumption","Ohio","OH",14829 +2002-04-01,"Commercial Consumption","Alaska","AK",1572 +2002-04-01,"Commercial Consumption","Washington","WA",4723 +2002-04-01,"Commercial Consumption","North Dakota","ND",980 +2002-04-01,"Commercial Consumption","Wisconsin","WI",6749 +2002-04-01,"Commercial Consumption","Kentucky","KY",2399 +2002-04-01,"Commercial Consumption","Iowa","IA",3914 +2002-04-01,"Commercial Consumption","Hawaii","HI",143 +2002-04-01,"Commercial Consumption","Arkansas","AR",2937 +2002-04-01,"Commercial Consumption","Mississippi","MS",1730 +2002-04-01,"Commercial Consumption","Arizona","AZ",2642 +2002-04-01,"Commercial Consumption","South Carolina","SC",1596 +2002-04-01,"Commercial Consumption","Minnesota","MN",9410 +2002-04-01,"Commercial Consumption","Pennsylvania","PA",12387 +2002-04-01,"Commercial Consumption","Texas","TX",17947 +2002-04-01,"Commercial Consumption","New York","NY",29786 +2002-04-01,"Commercial Consumption","Delaware","DE",696 +2002-04-01,"Delivered to Consumers","West Virginia","WV",8927 +2002-04-01,"Delivered to Consumers","Vermont","VT",808 +2002-04-01,"Delivered to Consumers","Rhode Island","RI",6823 +2002-04-01,"Delivered to Consumers","Hawaii","HI",234 +2002-04-01,"Delivered to Consumers","Alaska","AK",10310 +2002-04-01,"Delivered to Consumers","Kansas","KS",17348 +2002-04-01,"Delivered to Consumers","Kentucky","KY",14879 +2002-04-01,"Delivered to Consumers","Virginia","VA",16988 +2002-04-01,"Delivered to Consumers","Pennsylvania","PA",53368 +2002-04-01,"Delivered to Consumers","Delaware","DE",3830 +2002-04-01,"Delivered to Consumers","Montana","MT",5853 +2002-04-01,"Delivered to Consumers","Maryland","MD",12534 +2002-04-01,"Delivered to Consumers","Idaho","ID",5699 +2002-04-01,"Delivered to Consumers","Michigan","MI",87138 +2002-04-01,"Delivered to Consumers","Alabama","AL",26061 +2002-04-01,"Delivered to Consumers","California","CA",162875 +2002-04-01,"Delivered to Consumers","Indiana","IN",44882 +2002-04-01,"Delivered to Consumers","Illinois","IL",93668 +2002-04-01,"Delivered to Consumers","Ohio","OH",70082 +2002-04-01,"Delivered to Consumers","Connecticut","CT",13782 +2002-04-01,"Delivered to Consumers","Texas","TX",347110 +2002-04-01,"Delivered to Consumers","New Jersey","NJ",47158 +2002-04-01,"Delivered to Consumers","Arizona","AZ",14544 +2002-04-01,"Delivered to Consumers","Utah","UT",8453 +2002-04-01,"Delivered to Consumers","Nebraska","NE",10424 +2002-04-01,"Delivered to Consumers","South Carolina","SC",14448 +2002-04-01,"Delivered to Consumers","Georgia","GA",23775 +2002-04-01,"Delivered to Consumers","South Dakota","SD",3060 +2002-04-01,"Delivered to Consumers","Tennessee","TN",19932 +2002-04-01,"Delivered to Consumers","Arkansas","AR",19166 +2002-04-01,"Delivered to Consumers","North Carolina","NC",16550 +2002-04-01,"Delivered to Consumers","Missouri","MO",24362 +2002-04-01,"Delivered to Consumers","Minnesota","MN",28680 +2002-04-01,"Delivered to Consumers","District of Columbia","DC",2066 +2002-04-01,"Delivered to Consumers","U.S.","U.S.",1734549 +2002-04-01,"Delivered to Consumers","New Mexico","NM",10209 +2002-04-01,"Delivered to Consumers","New York","NY",96684 +2002-04-01,"Delivered to Consumers","Iowa","IA",18706 +2002-04-01,"Delivered to Consumers","Oregon","OR",14501 +2002-04-01,"Delivered to Consumers","Wisconsin","WI",31946 +2002-04-01,"Delivered to Consumers","Mississippi","MS",25702 +2002-04-01,"Delivered to Consumers","Colorado","CO",30319 +2002-04-01,"Delivered to Consumers","Washington","WA",20531 +2002-04-01,"Delivered to Consumers","Florida","FL",55845 +2002-04-01,"Delivered to Consumers","Wyoming","WY",5737 +2002-04-01,"Delivered to Consumers","Oklahoma","OK",36989 +2002-04-01,"Delivered to Consumers","Massachusetts","MA",29989 +2002-04-01,"Delivered to Consumers","Nevada","NV",11123 +2002-04-01,"Delivered to Consumers","Maine","ME",9186 +2002-04-01,"Delivered to Consumers","Louisiana","LA",94281 +2002-04-01,"Delivered to Consumers","New Hampshire","NH",2179 +2002-04-01,"Delivered to Consumers","North Dakota","ND",3571 +2002-04-01,"Electric Power Consumption","New Jersey","NJ",11159 +2002-04-01,"Electric Power Consumption","Massachusetts","MA",6925 +2002-04-01,"Electric Power Consumption","Vermont","VT",2 +2002-04-01,"Electric Power Consumption","North Dakota","ND",0 +2002-04-01,"Electric Power Consumption","Florida","FL",41741 +2002-04-01,"Electric Power Consumption","Illinois","IL",7075 +2002-04-01,"Electric Power Consumption","Iowa","IA",323 +2002-04-01,"Electric Power Consumption","Kentucky","KY",629 +2002-04-01,"Electric Power Consumption","Maryland","MD",1253 +2002-04-01,"Electric Power Consumption","California","CA",44074 +2002-04-01,"Electric Power Consumption","Alabama","AL",7217 +2002-04-01,"Electric Power Consumption","Virginia","VA",2957 +2002-04-01,"Electric Power Consumption","Louisiana","LA",27662 +2002-04-01,"Electric Power Consumption","Texas","TX",116473 +2002-04-01,"Electric Power Consumption","Michigan","MI",10941 +2002-04-01,"Electric Power Consumption","Tennessee","TN",233 +2002-04-01,"Electric Power Consumption","Hawaii","HI",0 +2002-04-01,"Electric Power Consumption","Montana","MT",1 +2002-04-01,"Electric Power Consumption","Indiana","IN",3043 +2002-04-01,"Electric Power Consumption","Georgia","GA",3430 +2002-04-01,"Electric Power Consumption","Idaho","ID",174 +2002-04-01,"Electric Power Consumption","New York","NY",24408 +2002-04-01,"Electric Power Consumption","Utah","UT",958 +2002-04-01,"Electric Power Consumption","Minnesota","MN",652 +2002-04-01,"Electric Power Consumption","Delaware","DE",1067 +2002-04-01,"Electric Power Consumption","Arizona","AZ",7964 +2002-04-01,"Electric Power Consumption","Arkansas","AR",2681 +2002-04-01,"Electric Power Consumption","U.S.","U.S.",404384 +2002-04-01,"Electric Power Consumption","Missouri","MO",2584 +2002-04-01,"Electric Power Consumption","New Mexico","NM",3043 +2002-04-01,"Electric Power Consumption","South Carolina","SC",2915 +2002-04-01,"Electric Power Consumption","Rhode Island","RI",3575 +2002-04-01,"Electric Power Consumption","Oregon","OR",2355 +2002-04-01,"Electric Power Consumption","Nevada","NV",5974 +2002-04-01,"Electric Power Consumption","North Carolina","NC",1792 +2002-04-01,"Electric Power Consumption","Mississippi","MS",13836 +2002-04-01,"Electric Power Consumption","Alaska","AK",2562 +2002-04-01,"Electric Power Consumption","Oklahoma","OK",16702 +2002-04-01,"Electric Power Consumption","Kansas","KS",957 +2002-04-01,"Electric Power Consumption","Wyoming","WY",231 +2002-04-01,"Electric Power Consumption","South Dakota","SD",62 +2002-04-01,"Electric Power Consumption","Nebraska","NE",269 +2002-04-01,"Electric Power Consumption","Ohio","OH",1261 +2002-04-01,"Electric Power Consumption","New Hampshire","NH",11 +2002-04-01,"Electric Power Consumption","Connecticut","CT",3922 +2002-04-01,"Electric Power Consumption","Washington","WA",2048 +2002-04-01,"Electric Power Consumption","Colorado","CO",6739 +2002-04-01,"Electric Power Consumption","West Virginia","WV",253 +2002-04-01,"Electric Power Consumption","Wisconsin","WI",1979 +2002-04-01,"Electric Power Consumption","Pennsylvania","PA",1733 +2002-04-01,"Electric Power Consumption","Maine","ME",6539 +2002-04-01,"Industrial Consumption","Ohio","OH",24740 +2002-04-01,"Industrial Consumption","Arizona","AZ",1308 +2002-04-01,"Industrial Consumption","Maine","ME",2084 +2002-04-01,"Industrial Consumption","New Hampshire","NH",835 +2002-04-01,"Industrial Consumption","Indiana","IN",20750 +2002-04-01,"Industrial Consumption","Idaho","ID",2483 +2002-04-01,"Industrial Consumption","Connecticut","CT",2080 +2002-04-01,"Industrial Consumption","Rhode Island","RI",367 +2002-04-01,"Industrial Consumption","North Dakota","ND",1563 +2002-04-01,"Industrial Consumption","Montana","MT",2296 +2002-04-01,"Industrial Consumption","Missouri","MO",5703 +2002-04-01,"Industrial Consumption","Kansas","KS",6741 +2002-04-01,"Industrial Consumption","Alabama","AL",13433 +2002-04-01,"Industrial Consumption","Tennessee","TN",9816 +2002-04-01,"Industrial Consumption","Iowa","IA",7943 +2002-04-01,"Industrial Consumption","North Carolina","NC",7805 +2002-04-01,"Industrial Consumption","Massachusetts","MA",7344 +2002-04-01,"Industrial Consumption","Louisiana","LA",60540 +2002-04-01,"Industrial Consumption","Colorado","CO",11039 +2002-04-01,"Industrial Consumption","Nevada","NV",963 +2002-04-01,"Industrial Consumption","Arkansas","AR",9842 +2002-04-01,"Industrial Consumption","West Virginia","WV",3787 +2002-04-01,"Industrial Consumption","Vermont","VT",245 +2002-04-01,"Industrial Consumption","New Jersey","NJ",6467 +2002-04-01,"Industrial Consumption","Kentucky","KY",8186 +2002-04-01,"Industrial Consumption","South Dakota","SD",795 +2002-04-01,"Industrial Consumption","Pennsylvania","PA",17038 +2002-04-01,"Industrial Consumption","New York","NY",8244 +2002-04-01,"Industrial Consumption","California","CA",55898 +2002-04-01,"Industrial Consumption","Nebraska","NE",2786 +2002-04-01,"Industrial Consumption","Illinois","IL",25387 +2002-04-01,"Industrial Consumption","Georgia","GA",11629 +2002-04-01,"Industrial Consumption","District of Columbia","DC",0 +2002-04-01,"Industrial Consumption","Oklahoma","OK",9757 +2002-04-01,"Industrial Consumption","Washington","WA",5880 +2002-04-01,"Industrial Consumption","New Mexico","NM",2043 +2002-04-01,"Industrial Consumption","Utah","UT",2004 +2002-04-01,"Industrial Consumption","U.S.","U.S.",646534 +2002-04-01,"Industrial Consumption","Oregon","OR",5685 +2002-04-01,"Industrial Consumption","Texas","TX",198261 +2002-04-01,"Industrial Consumption","Virginia","VA",5588 +2002-04-01,"Industrial Consumption","Florida","FL",8047 +2002-04-01,"Industrial Consumption","Michigan","MI",21878 +2002-04-01,"Industrial Consumption","Alaska","AK",4771 +2002-04-01,"Industrial Consumption","South Carolina","SC",8041 +2002-04-01,"Industrial Consumption","Wyoming","WY",3737 +2002-04-01,"Industrial Consumption","Wisconsin","WI",11823 +2002-04-01,"Industrial Consumption","Maryland","MD",2107 +2002-04-01,"Industrial Consumption","Hawaii","HI",42 +2002-04-01,"Industrial Consumption","Mississippi","MS",7960 +2002-04-01,"Industrial Consumption","Minnesota","MN",7661 +2002-04-01,"Industrial Consumption","Delaware","DE",1111 +2002-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91995 +2002-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",54441 +2002-04-01,"Residential Consumption","Iowa","IA",6527 +2002-04-01,"Residential Consumption","Maryland","MD",4751 +2002-04-01,"Residential Consumption","Georgia","GA",5836 +2002-04-01,"Residential Consumption","U.S.","U.S.",415196 +2002-04-01,"Residential Consumption","Wisconsin","WI",11395 +2002-04-01,"Residential Consumption","California","CA",43106 +2002-04-01,"Residential Consumption","Alaska","AK",1406 +2002-04-01,"Residential Consumption","West Virginia","WV",2641 +2002-04-01,"Residential Consumption","Nebraska","NE",4307 +2002-04-01,"Residential Consumption","Arkansas","AR",3706 +2002-04-01,"Residential Consumption","Washington","WA",7880 +2002-04-01,"Residential Consumption","Arizona","AZ",2630 +2002-04-01,"Residential Consumption","Oregon","OR",3851 +2002-04-01,"Residential Consumption","Hawaii","HI",49 +2002-04-01,"Residential Consumption","Vermont","VT",312 +2002-04-01,"Residential Consumption","Massachusetts","MA",9942 +2002-04-01,"Residential Consumption","Oklahoma","OK",6565 +2002-04-01,"Residential Consumption","South Carolina","SC",1895 +2002-04-01,"Residential Consumption","Rhode Island","RI",1807 +2002-04-01,"Residential Consumption","Mississippi","MS",2176 +2002-04-01,"Residential Consumption","Connecticut","CT",3934 +2002-04-01,"Residential Consumption","Michigan","MI",36212 +2002-04-01,"Residential Consumption","South Dakota","SD",1235 +2002-04-01,"Residential Consumption","Pennsylvania","PA",22210 +2002-04-01,"Residential Consumption","North Dakota","ND",1028 +2002-04-01,"Residential Consumption","Idaho","ID",1798 +2002-04-01,"Residential Consumption","Montana","MT",2093 +2002-04-01,"Residential Consumption","Alabama","AL",3484 +2002-04-01,"Residential Consumption","Illinois","IL",42088 +2002-04-01,"Residential Consumption","Louisiana","LA",4033 +2002-04-01,"Residential Consumption","Tennessee","TN",5414 +2002-04-01,"Residential Consumption","Virginia","VA",4284 +2002-04-01,"Residential Consumption","District of Columbia","DC",809 +2002-04-01,"Residential Consumption","Kentucky","KY",3666 +2002-04-01,"Residential Consumption","Colorado","CO",8254 +2002-04-01,"Residential Consumption","Kansas","KS",6308 +2002-04-01,"Residential Consumption","Ohio","OH",29251 +2002-04-01,"Residential Consumption","North Carolina","NC",4091 +2002-04-01,"Residential Consumption","Utah","UT",3271 +2002-04-01,"Residential Consumption","Minnesota","MN",10958 +2002-04-01,"Residential Consumption","Maine","ME",94 +2002-04-01,"Residential Consumption","Indiana","IN",14179 +2002-04-01,"Residential Consumption","Florida","FL",1244 +2002-04-01,"Residential Consumption","New Hampshire","NH",634 +2002-04-01,"Residential Consumption","Missouri","MO",10552 +2002-04-01,"Residential Consumption","Wyoming","WY",1049 +2002-04-01,"Residential Consumption","Texas","TX",14429 +2002-04-01,"Residential Consumption","Nevada","NV",2405 +2002-04-01,"Residential Consumption","New Mexico","NM",2675 +2002-04-01,"Residential Consumption","New Jersey","NJ",17532 +2002-04-01,"Residential Consumption","Delaware","DE",955 +2002-04-01,"Residential Consumption","New York","NY",34246 +2002-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",1229 +2002-05-01,"Commercial Consumption","North Carolina","NC",1902 +2002-05-01,"Commercial Consumption","Minnesota","MN",6213 +2002-05-01,"Commercial Consumption","Utah","UT",1618 +2002-05-01,"Commercial Consumption","Oklahoma","OK",2217 +2002-05-01,"Commercial Consumption","Montana","MT",983 +2002-05-01,"Commercial Consumption","U.S.","U.S.",192070 +2002-05-01,"Commercial Consumption","Florida","FL",4306 +2002-05-01,"Commercial Consumption","California","CA",19836 +2002-05-01,"Commercial Consumption","Nebraska","NE",1668 +2002-05-01,"Commercial Consumption","Delaware","DE",452 +2002-05-01,"Commercial Consumption","Indiana","IN",3723 +2002-05-01,"Commercial Consumption","West Virginia","WV",1633 +2002-05-01,"Commercial Consumption","Washington","WA",3416 +2002-05-01,"Commercial Consumption","New Mexico","NM",1524 +2002-05-01,"Commercial Consumption","Kansas","KS",1743 +2002-05-01,"Commercial Consumption","Connecticut","CT",2362 +2002-05-01,"Commercial Consumption","Alabama","AL",1352 +2002-05-01,"Commercial Consumption","New York","NY",22858 +2002-05-01,"Commercial Consumption","Mississippi","MS",1076 +2002-05-01,"Commercial Consumption","Tennessee","TN",2654 +2002-05-01,"Commercial Consumption","Missouri","MO",3708 +2002-05-01,"Commercial Consumption","South Dakota","SD",555 +2002-05-01,"Commercial Consumption","Texas","TX",14303 +2002-05-01,"Commercial Consumption","Maryland","MD",3149 +2002-05-01,"Commercial Consumption","Alaska","AK",768 +2002-05-01,"Commercial Consumption","New Jersey","NJ",10652 +2002-05-01,"Commercial Consumption","New Hampshire","NH",557 +2002-05-01,"Commercial Consumption","Georgia","GA",2496 +2002-05-01,"Commercial Consumption","Hawaii","HI",139 +2002-05-01,"Commercial Consumption","Michigan","MI",11525 +2002-05-01,"Commercial Consumption","Massachusetts","MA",4332 +2002-05-01,"Commercial Consumption","Maine","ME",284 +2002-05-01,"Commercial Consumption","North Dakota","ND",583 +2002-05-01,"Commercial Consumption","Oregon","OR",2016 +2002-05-01,"Commercial Consumption","Virginia","VA",3538 +2002-05-01,"Commercial Consumption","Wisconsin","WI",4525 +2002-05-01,"Commercial Consumption","Kentucky","KY",1792 +2002-05-01,"Commercial Consumption","Rhode Island","RI",787 +2002-05-01,"Commercial Consumption","Ohio","OH",9398 +2002-05-01,"Commercial Consumption","Iowa","IA",2146 +2002-05-01,"Commercial Consumption","Arizona","AZ",2257 +2002-05-01,"Commercial Consumption","Louisiana","LA",1729 +2002-05-01,"Commercial Consumption","Illinois","IL",11204 +2002-05-01,"Commercial Consumption","District of Columbia","DC",977 +2002-05-01,"Commercial Consumption","Wyoming","WY",425 +2002-05-01,"Commercial Consumption","South Carolina","SC",1276 +2002-05-01,"Commercial Consumption","Colorado","CO",3209 +2002-05-01,"Commercial Consumption","Pennsylvania","PA",7767 +2002-05-01,"Commercial Consumption","Vermont","VT",161 +2002-05-01,"Commercial Consumption","Idaho","ID",800 +2002-05-01,"Commercial Consumption","Arkansas","AR",1917 +2002-05-01,"Commercial Consumption","Nevada","NV",1562 +2002-05-01,"Delivered to Consumers","U.S.","U.S.",1470504 +2002-05-01,"Delivered to Consumers","Rhode Island","RI",6244 +2002-05-01,"Delivered to Consumers","Montana","MT",4084 +2002-05-01,"Delivered to Consumers","Hawaii","HI",226 +2002-05-01,"Delivered to Consumers","Oklahoma","OK",28784 +2002-05-01,"Delivered to Consumers","Alabama","AL",23580 +2002-05-01,"Delivered to Consumers","Wisconsin","WI",24278 +2002-05-01,"Delivered to Consumers","Colorado","CO",24230 +2002-05-01,"Delivered to Consumers","Nevada","NV",11789 +2002-05-01,"Delivered to Consumers","New Jersey","NJ",36702 +2002-05-01,"Delivered to Consumers","Arizona","AZ",14463 +2002-05-01,"Delivered to Consumers","New Hampshire","NH",1815 +2002-05-01,"Delivered to Consumers","North Dakota","ND",2897 +2002-05-01,"Delivered to Consumers","District of Columbia","DC",1544 +2002-05-01,"Delivered to Consumers","Vermont","VT",575 +2002-05-01,"Delivered to Consumers","Kentucky","KY",12317 +2002-05-01,"Delivered to Consumers","South Dakota","SD",2078 +2002-05-01,"Delivered to Consumers","Maryland","MD",8846 +2002-05-01,"Delivered to Consumers","Iowa","IA",13413 +2002-05-01,"Delivered to Consumers","Mississippi","MS",23117 +2002-05-01,"Delivered to Consumers","Texas","TX",323045 +2002-05-01,"Delivered to Consumers","West Virginia","WV",7125 +2002-05-01,"Delivered to Consumers","North Carolina","NC",13274 +2002-05-01,"Delivered to Consumers","Oregon","OR",12612 +2002-05-01,"Delivered to Consumers","Maine","ME",10030 +2002-05-01,"Delivered to Consumers","Florida","FL",56767 +2002-05-01,"Delivered to Consumers","Delaware","DE",2810 +2002-05-01,"Delivered to Consumers","Alaska","AK",10076 +2002-05-01,"Delivered to Consumers","Idaho","ID",4667 +2002-05-01,"Delivered to Consumers","Virginia","VA",14493 +2002-05-01,"Delivered to Consumers","South Carolina","SC",14921 +2002-05-01,"Delivered to Consumers","Wyoming","WY",5034 +2002-05-01,"Delivered to Consumers","Illinois","IL",61529 +2002-05-01,"Delivered to Consumers","Kansas","KS",13424 +2002-05-01,"Delivered to Consumers","Tennessee","TN",14058 +2002-05-01,"Delivered to Consumers","Pennsylvania","PA",38209 +2002-05-01,"Delivered to Consumers","Nebraska","NE",6676 +2002-05-01,"Delivered to Consumers","Minnesota","MN",21749 +2002-05-01,"Delivered to Consumers","New Mexico","NM",7115 +2002-05-01,"Delivered to Consumers","Indiana","IN",32659 +2002-05-01,"Delivered to Consumers","Ohio","OH",51854 +2002-05-01,"Delivered to Consumers","Connecticut","CT",12805 +2002-05-01,"Delivered to Consumers","Arkansas","AR",15635 +2002-05-01,"Delivered to Consumers","Missouri","MO",15624 +2002-05-01,"Delivered to Consumers","Massachusetts","MA",27757 +2002-05-01,"Delivered to Consumers","Washington","WA",15439 +2002-05-01,"Delivered to Consumers","Utah","UT",7113 +2002-05-01,"Delivered to Consumers","New York","NY",77319 +2002-05-01,"Delivered to Consumers","Michigan","MI",63810 +2002-05-01,"Delivered to Consumers","California","CA",156501 +2002-05-01,"Delivered to Consumers","Louisiana","LA",91511 +2002-05-01,"Delivered to Consumers","Georgia","GA",22612 +2002-05-01,"Electric Power Consumption","Texas","TX",125291 +2002-05-01,"Electric Power Consumption","Massachusetts","MA",10459 +2002-05-01,"Electric Power Consumption","West Virginia","WV",99 +2002-05-01,"Electric Power Consumption","Nevada","NV",7672 +2002-05-01,"Electric Power Consumption","Tennessee","TN",58 +2002-05-01,"Electric Power Consumption","North Carolina","NC",1565 +2002-05-01,"Electric Power Consumption","North Dakota","ND",0 +2002-05-01,"Electric Power Consumption","Montana","MT",12 +2002-05-01,"Electric Power Consumption","California","CA",44768 +2002-05-01,"Electric Power Consumption","Virginia","VA",1949 +2002-05-01,"Electric Power Consumption","New Mexico","NM",2494 +2002-05-01,"Electric Power Consumption","Louisiana","LA",28456 +2002-05-01,"Electric Power Consumption","Colorado","CO",5962 +2002-05-01,"Electric Power Consumption","Oklahoma","OK",14183 +2002-05-01,"Electric Power Consumption","Michigan","MI",9599 +2002-05-01,"Electric Power Consumption","Vermont","VT",3 +2002-05-01,"Electric Power Consumption","Maryland","MD",843 +2002-05-01,"Electric Power Consumption","Georgia","GA",3377 +2002-05-01,"Electric Power Consumption","Rhode Island","RI",3920 +2002-05-01,"Electric Power Consumption","Kansas","KS",755 +2002-05-01,"Electric Power Consumption","Iowa","IA",325 +2002-05-01,"Electric Power Consumption","Nebraska","NE",283 +2002-05-01,"Electric Power Consumption","Kentucky","KY",560 +2002-05-01,"Electric Power Consumption","Ohio","OH",655 +2002-05-01,"Electric Power Consumption","Washington","WA",1168 +2002-05-01,"Electric Power Consumption","South Carolina","SC",4535 +2002-05-01,"Electric Power Consumption","Illinois","IL",3969 +2002-05-01,"Electric Power Consumption","U.S.","U.S.",410108 +2002-05-01,"Electric Power Consumption","Alaska","AK",2398 +2002-05-01,"Electric Power Consumption","Idaho","ID",229 +2002-05-01,"Electric Power Consumption","Mississippi","MS",13207 +2002-05-01,"Electric Power Consumption","Hawaii","HI",0 +2002-05-01,"Electric Power Consumption","Connecticut","CT",5828 +2002-05-01,"Electric Power Consumption","Arkansas","AR",2524 +2002-05-01,"Electric Power Consumption","New York","NY",23869 +2002-05-01,"Electric Power Consumption","Utah","UT",1024 +2002-05-01,"Electric Power Consumption","Minnesota","MN",648 +2002-05-01,"Electric Power Consumption","Pennsylvania","PA",2051 +2002-05-01,"Electric Power Consumption","Wyoming","WY",217 +2002-05-01,"Electric Power Consumption","Delaware","DE",1018 +2002-05-01,"Electric Power Consumption","Alabama","AL",7316 +2002-05-01,"Electric Power Consumption","South Dakota","SD",58 +2002-05-01,"Electric Power Consumption","New Hampshire","NH",39 +2002-05-01,"Electric Power Consumption","Indiana","IN",1326 +2002-05-01,"Electric Power Consumption","Florida","FL",44436 +2002-05-01,"Electric Power Consumption","New Jersey","NJ",9236 +2002-05-01,"Electric Power Consumption","Oregon","OR",2073 +2002-05-01,"Electric Power Consumption","Wisconsin","WI",1211 +2002-05-01,"Electric Power Consumption","Missouri","MO",1530 +2002-05-01,"Electric Power Consumption","Maine","ME",7668 +2002-05-01,"Electric Power Consumption","Arizona","AZ",9245 +2002-05-01,"Industrial Consumption","Kansas","KS",7964 +2002-05-01,"Industrial Consumption","Arizona","AZ",1279 +2002-05-01,"Industrial Consumption","New York","NY",7160 +2002-05-01,"Industrial Consumption","Nevada","NV",803 +2002-05-01,"Industrial Consumption","Alabama","AL",13224 +2002-05-01,"Industrial Consumption","Nebraska","NE",2840 +2002-05-01,"Industrial Consumption","Tennessee","TN",9251 +2002-05-01,"Industrial Consumption","New Jersey","NJ",6301 +2002-05-01,"Industrial Consumption","Florida","FL",7119 +2002-05-01,"Industrial Consumption","North Carolina","NC",8045 +2002-05-01,"Industrial Consumption","Louisiana","LA",59376 +2002-05-01,"Industrial Consumption","Pennsylvania","PA",16175 +2002-05-01,"Industrial Consumption","New Hampshire","NH",775 +2002-05-01,"Industrial Consumption","Michigan","MI",19293 +2002-05-01,"Industrial Consumption","Kentucky","KY",8277 +2002-05-01,"Industrial Consumption","Hawaii","HI",43 +2002-05-01,"Industrial Consumption","Oklahoma","OK",9627 +2002-05-01,"Industrial Consumption","Ohio","OH",25148 +2002-05-01,"Industrial Consumption","Oregon","OR",5748 +2002-05-01,"Industrial Consumption","Iowa","IA",7429 +2002-05-01,"Industrial Consumption","Rhode Island","RI",306 +2002-05-01,"Industrial Consumption","Georgia","GA",11929 +2002-05-01,"Industrial Consumption","Alaska","AK",5952 +2002-05-01,"Industrial Consumption","North Dakota","ND",1672 +2002-05-01,"Industrial Consumption","Massachusetts","MA",6115 +2002-05-01,"Industrial Consumption","Missouri","MO",5620 +2002-05-01,"Industrial Consumption","South Dakota","SD",706 +2002-05-01,"Industrial Consumption","Utah","UT",2175 +2002-05-01,"Industrial Consumption","South Carolina","SC",8281 +2002-05-01,"Industrial Consumption","Connecticut","CT",2249 +2002-05-01,"Industrial Consumption","Illinois","IL",23234 +2002-05-01,"Industrial Consumption","District of Columbia","DC",0 +2002-05-01,"Industrial Consumption","Virginia","VA",6276 +2002-05-01,"Industrial Consumption","Wyoming","WY",3697 +2002-05-01,"Industrial Consumption","Wisconsin","WI",10638 +2002-05-01,"Industrial Consumption","Idaho","ID",2400 +2002-05-01,"Industrial Consumption","Delaware","DE",857 +2002-05-01,"Industrial Consumption","New Mexico","NM",1817 +2002-05-01,"Industrial Consumption","U.S.","U.S.",611973 +2002-05-01,"Industrial Consumption","Vermont","VT",230 +2002-05-01,"Industrial Consumption","Minnesota","MN",7001 +2002-05-01,"Industrial Consumption","Montana","MT",1672 +2002-05-01,"Industrial Consumption","Maryland","MD",1755 +2002-05-01,"Industrial Consumption","Mississippi","MS",8002 +2002-05-01,"Industrial Consumption","Maine","ME",2025 +2002-05-01,"Industrial Consumption","California","CA",57251 +2002-05-01,"Industrial Consumption","West Virginia","WV",3783 +2002-05-01,"Industrial Consumption","Colorado","CO",9828 +2002-05-01,"Industrial Consumption","Washington","WA",5318 +2002-05-01,"Industrial Consumption","Arkansas","AR",9685 +2002-05-01,"Industrial Consumption","Texas","TX",176856 +2002-05-01,"Industrial Consumption","Indiana","IN",18770 +2002-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94802 +2002-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",46147 +2002-05-01,"Residential Consumption","Vermont","VT",182 +2002-05-01,"Residential Consumption","Georgia","GA",4810 +2002-05-01,"Residential Consumption","Indiana","IN",8840 +2002-05-01,"Residential Consumption","Kentucky","KY",1688 +2002-05-01,"Residential Consumption","Missouri","MO",4765 +2002-05-01,"Residential Consumption","Alaska","AK",957 +2002-05-01,"Residential Consumption","Rhode Island","RI",1232 +2002-05-01,"Residential Consumption","Tennessee","TN",2096 +2002-05-01,"Residential Consumption","Michigan","MI",23393 +2002-05-01,"Residential Consumption","District of Columbia","DC",567 +2002-05-01,"Residential Consumption","Pennsylvania","PA",12217 +2002-05-01,"Residential Consumption","Arkansas","AR",1510 +2002-05-01,"Residential Consumption","U.S.","U.S.",255083 +2002-05-01,"Residential Consumption","South Carolina","SC",829 +2002-05-01,"Residential Consumption","Oregon","OR",2776 +2002-05-01,"Residential Consumption","Mississippi","MS",832 +2002-05-01,"Residential Consumption","Louisiana","LA",1949 +2002-05-01,"Residential Consumption","Virginia","VA",2730 +2002-05-01,"Residential Consumption","Kansas","KS",2961 +2002-05-01,"Residential Consumption","Washington","WA",5536 +2002-05-01,"Residential Consumption","Hawaii","HI",44 +2002-05-01,"Residential Consumption","Nevada","NV",1753 +2002-05-01,"Residential Consumption","Minnesota","MN",7887 +2002-05-01,"Residential Consumption","Maine","ME",52 +2002-05-01,"Residential Consumption","Oklahoma","OK",2758 +2002-05-01,"Residential Consumption","West Virginia","WV",1609 +2002-05-01,"Residential Consumption","Texas","TX",6596 +2002-05-01,"Residential Consumption","Iowa","IA",3513 +2002-05-01,"Residential Consumption","Wisconsin","WI",7905 +2002-05-01,"Residential Consumption","Nebraska","NE",1886 +2002-05-01,"Residential Consumption","Florida","FL",906 +2002-05-01,"Residential Consumption","North Dakota","ND",641 +2002-05-01,"Residential Consumption","New Jersey","NJ",10513 +2002-05-01,"Residential Consumption","New Hampshire","NH",445 +2002-05-01,"Residential Consumption","Delaware","DE",483 +2002-05-01,"Residential Consumption","Illinois","IL",23123 +2002-05-01,"Residential Consumption","Ohio","OH",16654 +2002-05-01,"Residential Consumption","Connecticut","CT",2366 +2002-05-01,"Residential Consumption","Maryland","MD",3099 +2002-05-01,"Residential Consumption","New Mexico","NM",1279 +2002-05-01,"Residential Consumption","Arizona","AZ",1683 +2002-05-01,"Residential Consumption","Alabama","AL",1688 +2002-05-01,"Residential Consumption","North Carolina","NC",1763 +2002-05-01,"Residential Consumption","Utah","UT",2297 +2002-05-01,"Residential Consumption","South Dakota","SD",759 +2002-05-01,"Residential Consumption","California","CA",34646 +2002-05-01,"Residential Consumption","Wyoming","WY",694 +2002-05-01,"Residential Consumption","New York","NY",23432 +2002-05-01,"Residential Consumption","Massachusetts","MA",6851 +2002-05-01,"Residential Consumption","Idaho","ID",1239 +2002-05-01,"Residential Consumption","Montana","MT",1418 +2002-05-01,"Residential Consumption","Colorado","CO",5232 +2002-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",1270 +2002-06-01,"Commercial Consumption","Wyoming","WY",304 +2002-06-01,"Commercial Consumption","New Mexico","NM",1220 +2002-06-01,"Commercial Consumption","New Jersey","NJ",6297 +2002-06-01,"Commercial Consumption","Maryland","MD",2760 +2002-06-01,"Commercial Consumption","Utah","UT",1051 +2002-06-01,"Commercial Consumption","Oregon","OR",1407 +2002-06-01,"Commercial Consumption","Vermont","VT",108 +2002-06-01,"Commercial Consumption","Idaho","ID",509 +2002-06-01,"Commercial Consumption","South Carolina","SC",1151 +2002-06-01,"Commercial Consumption","Minnesota","MN",3445 +2002-06-01,"Commercial Consumption","Virginia","VA",2566 +2002-06-01,"Commercial Consumption","U.S.","U.S.",146151 +2002-06-01,"Commercial Consumption","Iowa","IA",1528 +2002-06-01,"Commercial Consumption","Connecticut","CT",1901 +2002-06-01,"Commercial Consumption","Alabama","AL",1184 +2002-06-01,"Commercial Consumption","Mississippi","MS",983 +2002-06-01,"Commercial Consumption","Michigan","MI",7527 +2002-06-01,"Commercial Consumption","Indiana","IN",2669 +2002-06-01,"Commercial Consumption","Washington","WA",2506 +2002-06-01,"Commercial Consumption","Rhode Island","RI",540 +2002-06-01,"Commercial Consumption","Arkansas","AR",1544 +2002-06-01,"Commercial Consumption","Nebraska","NE",1267 +2002-06-01,"Commercial Consumption","Delaware","DE",297 +2002-06-01,"Commercial Consumption","Arizona","AZ",2050 +2002-06-01,"Commercial Consumption","Illinois","IL",7082 +2002-06-01,"Commercial Consumption","District of Columbia","DC",803 +2002-06-01,"Commercial Consumption","West Virginia","WV",1152 +2002-06-01,"Commercial Consumption","North Carolina","NC",1882 +2002-06-01,"Commercial Consumption","Massachusetts","MA",3632 +2002-06-01,"Commercial Consumption","South Dakota","SD",310 +2002-06-01,"Commercial Consumption","New Hampshire","NH",436 +2002-06-01,"Commercial Consumption","Montana","MT",588 +2002-06-01,"Commercial Consumption","Maine","ME",191 +2002-06-01,"Commercial Consumption","Texas","TX",13022 +2002-06-01,"Commercial Consumption","Florida","FL",4235 +2002-06-01,"Commercial Consumption","Ohio","OH",5759 +2002-06-01,"Commercial Consumption","New York","NY",20638 +2002-06-01,"Commercial Consumption","Tennessee","TN",2336 +2002-06-01,"Commercial Consumption","North Dakota","ND",278 +2002-06-01,"Commercial Consumption","Missouri","MO",2092 +2002-06-01,"Commercial Consumption","Kentucky","KY",989 +2002-06-01,"Commercial Consumption","Kansas","KS",1320 +2002-06-01,"Commercial Consumption","Hawaii","HI",146 +2002-06-01,"Commercial Consumption","Nevada","NV",1361 +2002-06-01,"Commercial Consumption","Colorado","CO",1819 +2002-06-01,"Commercial Consumption","Oklahoma","OK",1639 +2002-06-01,"Commercial Consumption","Wisconsin","WI",2544 +2002-06-01,"Commercial Consumption","California","CA",17245 +2002-06-01,"Commercial Consumption","Louisiana","LA",1598 +2002-06-01,"Commercial Consumption","Pennsylvania","PA",5303 +2002-06-01,"Commercial Consumption","Georgia","GA",2078 +2002-06-01,"Commercial Consumption","Alaska","AK",858 +2002-06-01,"Delivered to Consumers","Vermont","VT",428 +2002-06-01,"Delivered to Consumers","South Dakota","SD",1454 +2002-06-01,"Delivered to Consumers","Arkansas","AR",16964 +2002-06-01,"Delivered to Consumers","Virginia","VA",13877 +2002-06-01,"Delivered to Consumers","Mississippi","MS",27335 +2002-06-01,"Delivered to Consumers","Texas","TX",359334 +2002-06-01,"Delivered to Consumers","Nevada","NV",13044 +2002-06-01,"Delivered to Consumers","Minnesota","MN",14684 +2002-06-01,"Delivered to Consumers","Utah","UT",5260 +2002-06-01,"Delivered to Consumers","U.S.","U.S.",1453967 +2002-06-01,"Delivered to Consumers","New Mexico","NM",8350 +2002-06-01,"Delivered to Consumers","Delaware","DE",2738 +2002-06-01,"Delivered to Consumers","Oklahoma","OK",31741 +2002-06-01,"Delivered to Consumers","Kansas","KS",13947 +2002-06-01,"Delivered to Consumers","Idaho","ID",3654 +2002-06-01,"Delivered to Consumers","Kentucky","KY",11623 +2002-06-01,"Delivered to Consumers","Oregon","OR",11363 +2002-06-01,"Delivered to Consumers","Arizona","AZ",17262 +2002-06-01,"Delivered to Consumers","Wyoming","WY",4070 +2002-06-01,"Delivered to Consumers","Rhode Island","RI",5757 +2002-06-01,"Delivered to Consumers","Missouri","MO",13116 +2002-06-01,"Delivered to Consumers","Massachusetts","MA",25316 +2002-06-01,"Delivered to Consumers","New Jersey","NJ",34685 +2002-06-01,"Delivered to Consumers","New Hampshire","NH",1423 +2002-06-01,"Delivered to Consumers","Michigan","MI",52457 +2002-06-01,"Delivered to Consumers","Iowa","IA",10076 +2002-06-01,"Delivered to Consumers","Pennsylvania","PA",33401 +2002-06-01,"Delivered to Consumers","California","CA",163505 +2002-06-01,"Delivered to Consumers","West Virginia","WV",5425 +2002-06-01,"Delivered to Consumers","Hawaii","HI",224 +2002-06-01,"Delivered to Consumers","Alabama","AL",27901 +2002-06-01,"Delivered to Consumers","Nebraska","NE",4984 +2002-06-01,"Delivered to Consumers","Georgia","GA",24924 +2002-06-01,"Delivered to Consumers","Florida","FL",62343 +2002-06-01,"Delivered to Consumers","District of Columbia","DC",1155 +2002-06-01,"Delivered to Consumers","New York","NY",74903 +2002-06-01,"Delivered to Consumers","Montana","MT",2965 +2002-06-01,"Delivered to Consumers","Maryland","MD",8846 +2002-06-01,"Delivered to Consumers","Alaska","AK",11260 +2002-06-01,"Delivered to Consumers","Ohio","OH",40885 +2002-06-01,"Delivered to Consumers","North Carolina","NC",14816 +2002-06-01,"Delivered to Consumers","Colorado","CO",22105 +2002-06-01,"Delivered to Consumers","North Dakota","ND",2629 +2002-06-01,"Delivered to Consumers","Indiana","IN",27696 +2002-06-01,"Delivered to Consumers","Illinois","IL",49664 +2002-06-01,"Delivered to Consumers","Connecticut","CT",10983 +2002-06-01,"Delivered to Consumers","Wisconsin","WI",16100 +2002-06-01,"Delivered to Consumers","South Carolina","SC",14889 +2002-06-01,"Delivered to Consumers","Tennessee","TN",12918 +2002-06-01,"Delivered to Consumers","Maine","ME",9602 +2002-06-01,"Delivered to Consumers","Louisiana","LA",97058 +2002-06-01,"Delivered to Consumers","Washington","WA",11596 +2002-06-01,"Electric Power Consumption","Idaho","ID",290 +2002-06-01,"Electric Power Consumption","Colorado","CO",7198 +2002-06-01,"Electric Power Consumption","Oregon","OR",3093 +2002-06-01,"Electric Power Consumption","Vermont","VT",3 +2002-06-01,"Electric Power Consumption","South Dakota","SD",182 +2002-06-01,"Electric Power Consumption","Mississippi","MS",17814 +2002-06-01,"Electric Power Consumption","North Dakota","ND",0 +2002-06-01,"Electric Power Consumption","Montana","MT",35 +2002-06-01,"Electric Power Consumption","Arizona","AZ",12579 +2002-06-01,"Electric Power Consumption","Illinois","IL",9924 +2002-06-01,"Electric Power Consumption","Kansas","KS",2829 +2002-06-01,"Electric Power Consumption","Wisconsin","WI",1873 +2002-06-01,"Electric Power Consumption","Tennessee","TN",277 +2002-06-01,"Electric Power Consumption","U.S.","U.S.",550941 +2002-06-01,"Electric Power Consumption","Kentucky","KY",2192 +2002-06-01,"Electric Power Consumption","Maryland","MD",1972 +2002-06-01,"Electric Power Consumption","Connecticut","CT",5560 +2002-06-01,"Electric Power Consumption","Florida","FL",51289 +2002-06-01,"Electric Power Consumption","Alabama","AL",12396 +2002-06-01,"Electric Power Consumption","Minnesota","MN",1310 +2002-06-01,"Electric Power Consumption","West Virginia","WV",229 +2002-06-01,"Electric Power Consumption","Wyoming","WY",230 +2002-06-01,"Electric Power Consumption","Maine","ME",6350 +2002-06-01,"Electric Power Consumption","Hawaii","HI",0 +2002-06-01,"Electric Power Consumption","Indiana","IN",3544 +2002-06-01,"Electric Power Consumption","Georgia","GA",7736 +2002-06-01,"Electric Power Consumption","Virginia","VA",3473 +2002-06-01,"Electric Power Consumption","New Jersey","NJ",16110 +2002-06-01,"Electric Power Consumption","Louisiana","LA",34039 +2002-06-01,"Electric Power Consumption","Pennsylvania","PA",5822 +2002-06-01,"Electric Power Consumption","Washington","WA",981 +2002-06-01,"Electric Power Consumption","New Mexico","NM",4335 +2002-06-01,"Electric Power Consumption","New York","NY",33762 +2002-06-01,"Electric Power Consumption","Arkansas","AR",5309 +2002-06-01,"Electric Power Consumption","Texas","TX",156428 +2002-06-01,"Electric Power Consumption","Rhode Island","RI",4095 +2002-06-01,"Electric Power Consumption","Massachusetts","MA",10846 +2002-06-01,"Electric Power Consumption","Nevada","NV",9532 +2002-06-01,"Electric Power Consumption","Iowa","IA",587 +2002-06-01,"Electric Power Consumption","Ohio","OH",2444 +2002-06-01,"Electric Power Consumption","Oklahoma","OK",19641 +2002-06-01,"Electric Power Consumption","Utah","UT",758 +2002-06-01,"Electric Power Consumption","Michigan","MI",12844 +2002-06-01,"Electric Power Consumption","Missouri","MO",3437 +2002-06-01,"Electric Power Consumption","Delaware","DE",1357 +2002-06-01,"Electric Power Consumption","California","CA",64112 +2002-06-01,"Electric Power Consumption","South Carolina","SC",4924 +2002-06-01,"Electric Power Consumption","Nebraska","NE",618 +2002-06-01,"Electric Power Consumption","North Carolina","NC",3958 +2002-06-01,"Electric Power Consumption","New Hampshire","NH",108 +2002-06-01,"Electric Power Consumption","Alaska","AK",2518 +2002-06-01,"Industrial Consumption","Arizona","AZ",1278 +2002-06-01,"Industrial Consumption","Mississippi","MS",7800 +2002-06-01,"Industrial Consumption","California","CA",55782 +2002-06-01,"Industrial Consumption","Nebraska","NE",1919 +2002-06-01,"Industrial Consumption","New Jersey","NJ",6029 +2002-06-01,"Industrial Consumption","Florida","FL",5988 +2002-06-01,"Industrial Consumption","Delaware","DE",804 +2002-06-01,"Industrial Consumption","Massachusetts","MA",6321 +2002-06-01,"Industrial Consumption","Washington","WA",5084 +2002-06-01,"Industrial Consumption","U.S.","U.S.",595674 +2002-06-01,"Industrial Consumption","Kentucky","KY",7314 +2002-06-01,"Industrial Consumption","Illinois","IL",20581 +2002-06-01,"Industrial Consumption","Georgia","GA",11381 +2002-06-01,"Industrial Consumption","Montana","MT",1554 +2002-06-01,"Industrial Consumption","Oklahoma","OK",8483 +2002-06-01,"Industrial Consumption","Ohio","OH",22819 +2002-06-01,"Industrial Consumption","Nevada","NV",855 +2002-06-01,"Industrial Consumption","Arkansas","AR",9045 +2002-06-01,"Industrial Consumption","Vermont","VT",199 +2002-06-01,"Industrial Consumption","Wisconsin","WI",8198 +2002-06-01,"Industrial Consumption","Colorado","CO",10392 +2002-06-01,"Industrial Consumption","New York","NY",6647 +2002-06-01,"Industrial Consumption","Minnesota","MN",6431 +2002-06-01,"Industrial Consumption","Indiana","IN",17297 +2002-06-01,"Industrial Consumption","Maryland","MD",2047 +2002-06-01,"Industrial Consumption","South Dakota","SD",635 +2002-06-01,"Industrial Consumption","Kansas","KS",7812 +2002-06-01,"Industrial Consumption","Oregon","OR",5251 +2002-06-01,"Industrial Consumption","Maine","ME",3030 +2002-06-01,"Industrial Consumption","Texas","TX",183885 +2002-06-01,"Industrial Consumption","Virginia","VA",6159 +2002-06-01,"Industrial Consumption","Tennessee","TN",8682 +2002-06-01,"Industrial Consumption","Iowa","IA",6094 +2002-06-01,"Industrial Consumption","Connecticut","CT",2098 +2002-06-01,"Industrial Consumption","Hawaii","HI",36 +2002-06-01,"Industrial Consumption","Louisiana","LA",59591 +2002-06-01,"Industrial Consumption","New Mexico","NM",1826 +2002-06-01,"Industrial Consumption","Pennsylvania","PA",14999 +2002-06-01,"Industrial Consumption","West Virginia","WV",3512 +2002-06-01,"Industrial Consumption","Wyoming","WY",3137 +2002-06-01,"Industrial Consumption","Michigan","MI",18230 +2002-06-01,"Industrial Consumption","Rhode Island","RI",359 +2002-06-01,"Industrial Consumption","North Dakota","ND",2104 +2002-06-01,"Industrial Consumption","Missouri","MO",4458 +2002-06-01,"Industrial Consumption","Utah","UT",1864 +2002-06-01,"Industrial Consumption","New Hampshire","NH",575 +2002-06-01,"Industrial Consumption","Alaska","AK",6692 +2002-06-01,"Industrial Consumption","Alabama","AL",12875 +2002-06-01,"Industrial Consumption","South Carolina","SC",8096 +2002-06-01,"Industrial Consumption","Idaho","ID",2157 +2002-06-01,"Industrial Consumption","North Carolina","NC",7271 +2002-06-01,"Industrial Consumption","District of Columbia","DC",0 +2002-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91805 +2002-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",45601 +2002-06-01,"Residential Consumption","South Carolina","SC",718 +2002-06-01,"Residential Consumption","Louisiana","LA",1830 +2002-06-01,"Residential Consumption","Pennsylvania","PA",7277 +2002-06-01,"Residential Consumption","West Virginia","WV",533 +2002-06-01,"Residential Consumption","New York","NY",13856 +2002-06-01,"Residential Consumption","Mississippi","MS",738 +2002-06-01,"Residential Consumption","Utah","UT",1587 +2002-06-01,"Residential Consumption","Georgia","GA",3730 +2002-06-01,"Residential Consumption","District of Columbia","DC",352 +2002-06-01,"Residential Consumption","New Mexico","NM",968 +2002-06-01,"Residential Consumption","Maine","ME",32 +2002-06-01,"Residential Consumption","Florida","FL",831 +2002-06-01,"Residential Consumption","Washington","WA",3025 +2002-06-01,"Residential Consumption","Missouri","MO",3129 +2002-06-01,"Residential Consumption","Ohio","OH",9863 +2002-06-01,"Residential Consumption","Hawaii","HI",41 +2002-06-01,"Residential Consumption","Nebraska","NE",1180 +2002-06-01,"Residential Consumption","New Jersey","NJ",6250 +2002-06-01,"Residential Consumption","Oklahoma","OK",1978 +2002-06-01,"Residential Consumption","Delaware","DE",279 +2002-06-01,"Residential Consumption","Arizona","AZ",1355 +2002-06-01,"Residential Consumption","Oregon","OR",1613 +2002-06-01,"Residential Consumption","Michigan","MI",13856 +2002-06-01,"Residential Consumption","South Dakota","SD",327 +2002-06-01,"Residential Consumption","Nevada","NV",1296 +2002-06-01,"Residential Consumption","Minnesota","MN",3497 +2002-06-01,"Residential Consumption","Colorado","CO",2696 +2002-06-01,"Residential Consumption","California","CA",26367 +2002-06-01,"Residential Consumption","Texas","TX",6000 +2002-06-01,"Residential Consumption","North Carolina","NC",1705 +2002-06-01,"Residential Consumption","Connecticut","CT",1424 +2002-06-01,"Residential Consumption","Arkansas","AR",1066 +2002-06-01,"Residential Consumption","Alabama","AL",1446 +2002-06-01,"Residential Consumption","Illinois","IL",12078 +2002-06-01,"Residential Consumption","Iowa","IA",1867 +2002-06-01,"Residential Consumption","Wisconsin","WI",3486 +2002-06-01,"Residential Consumption","Virginia","VA",1678 +2002-06-01,"Residential Consumption","North Dakota","ND",248 +2002-06-01,"Residential Consumption","Massachusetts","MA",4517 +2002-06-01,"Residential Consumption","Idaho","ID",698 +2002-06-01,"Residential Consumption","New Hampshire","NH",303 +2002-06-01,"Residential Consumption","Montana","MT",789 +2002-06-01,"Residential Consumption","Alaska","AK",1192 +2002-06-01,"Residential Consumption","Rhode Island","RI",763 +2002-06-01,"Residential Consumption","Vermont","VT",119 +2002-06-01,"Residential Consumption","Tennessee","TN",1623 +2002-06-01,"Residential Consumption","Indiana","IN",4186 +2002-06-01,"Residential Consumption","Kentucky","KY",1129 +2002-06-01,"Residential Consumption","Kansas","KS",1985 +2002-06-01,"Residential Consumption","Maryland","MD",2067 +2002-06-01,"Residential Consumption","Wyoming","WY",399 +2002-06-01,"Residential Consumption","U.S.","U.S.",159973 +2002-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",1229 +2002-07-01,"Commercial Consumption","New Jersey","NJ",5911 +2002-07-01,"Commercial Consumption","Rhode Island","RI",412 +2002-07-01,"Commercial Consumption","Tennessee","TN",1869 +2002-07-01,"Commercial Consumption","Louisiana","LA",1355 +2002-07-01,"Commercial Consumption","West Virginia","WV",998 +2002-07-01,"Commercial Consumption","South Carolina","SC",1072 +2002-07-01,"Commercial Consumption","North Carolina","NC",1511 +2002-07-01,"Commercial Consumption","Oklahoma","OK",1387 +2002-07-01,"Commercial Consumption","New York","NY",22775 +2002-07-01,"Commercial Consumption","Georgia","GA",2159 +2002-07-01,"Commercial Consumption","Nebraska","NE",984 +2002-07-01,"Commercial Consumption","Delaware","DE",259 +2002-07-01,"Commercial Consumption","North Dakota","ND",273 +2002-07-01,"Commercial Consumption","Massachusetts","MA",2663 +2002-07-01,"Commercial Consumption","Wisconsin","WI",2168 +2002-07-01,"Commercial Consumption","New Hampshire","NH",399 +2002-07-01,"Commercial Consumption","Montana","MT",428 +2002-07-01,"Commercial Consumption","Kentucky","KY",1071 +2002-07-01,"Commercial Consumption","U.S.","U.S.",136841 +2002-07-01,"Commercial Consumption","Hawaii","HI",147 +2002-07-01,"Commercial Consumption","Alaska","AK",547 +2002-07-01,"Commercial Consumption","Arizona","AZ",1874 +2002-07-01,"Commercial Consumption","Wyoming","WY",661 +2002-07-01,"Commercial Consumption","Minnesota","MN",3368 +2002-07-01,"Commercial Consumption","Oregon","OR",1068 +2002-07-01,"Commercial Consumption","Virginia","VA",2566 +2002-07-01,"Commercial Consumption","Missouri","MO",1892 +2002-07-01,"Commercial Consumption","South Dakota","SD",277 +2002-07-01,"Commercial Consumption","Kansas","KS",1413 +2002-07-01,"Commercial Consumption","Florida","FL",4107 +2002-07-01,"Commercial Consumption","California","CA",16694 +2002-07-01,"Commercial Consumption","Utah","UT",950 +2002-07-01,"Commercial Consumption","New Mexico","NM",967 +2002-07-01,"Commercial Consumption","Pennsylvania","PA",4585 +2002-07-01,"Commercial Consumption","Texas","TX",13094 +2002-07-01,"Commercial Consumption","Iowa","IA",1279 +2002-07-01,"Commercial Consumption","Connecticut","CT",1819 +2002-07-01,"Commercial Consumption","Michigan","MI",5609 +2002-07-01,"Commercial Consumption","Illinois","IL",6736 +2002-07-01,"Commercial Consumption","Maine","ME",300 +2002-07-01,"Commercial Consumption","Maryland","MD",2425 +2002-07-01,"Commercial Consumption","Vermont","VT",72 +2002-07-01,"Commercial Consumption","Arkansas","AR",1738 +2002-07-01,"Commercial Consumption","Washington","WA",1828 +2002-07-01,"Commercial Consumption","Colorado","CO",1807 +2002-07-01,"Commercial Consumption","Ohio","OH",4668 +2002-07-01,"Commercial Consumption","Idaho","ID",349 +2002-07-01,"Commercial Consumption","Alabama","AL",1068 +2002-07-01,"Commercial Consumption","Mississippi","MS",1096 +2002-07-01,"Commercial Consumption","Nevada","NV",1203 +2002-07-01,"Commercial Consumption","Indiana","IN",2107 +2002-07-01,"Commercial Consumption","District of Columbia","DC",831 +2002-07-01,"Delivered to Consumers","South Dakota","SD",1619 +2002-07-01,"Delivered to Consumers","Rhode Island","RI",5873 +2002-07-01,"Delivered to Consumers","Maryland","MD",10514 +2002-07-01,"Delivered to Consumers","Kansas","KS",18253 +2002-07-01,"Delivered to Consumers","North Carolina","NC",16400 +2002-07-01,"Delivered to Consumers","New Jersey","NJ",39001 +2002-07-01,"Delivered to Consumers","Wyoming","WY",4980 +2002-07-01,"Delivered to Consumers","Hawaii","HI",239 +2002-07-01,"Delivered to Consumers","Idaho","ID",3038 +2002-07-01,"Delivered to Consumers","Tennessee","TN",12293 +2002-07-01,"Delivered to Consumers","Nebraska","NE",8748 +2002-07-01,"Delivered to Consumers","Mississippi","MS",33509 +2002-07-01,"Delivered to Consumers","Louisiana","LA",107870 +2002-07-01,"Delivered to Consumers","North Dakota","ND",1967 +2002-07-01,"Delivered to Consumers","Minnesota","MN",15388 +2002-07-01,"Delivered to Consumers","Illinois","IL",60624 +2002-07-01,"Delivered to Consumers","New York","NY",86308 +2002-07-01,"Delivered to Consumers","Connecticut","CT",13033 +2002-07-01,"Delivered to Consumers","Massachusetts","MA",23254 +2002-07-01,"Delivered to Consumers","Washington","WA",10256 +2002-07-01,"Delivered to Consumers","New Hampshire","NH",1657 +2002-07-01,"Delivered to Consumers","District of Columbia","DC",1149 +2002-07-01,"Delivered to Consumers","Michigan","MI",51899 +2002-07-01,"Delivered to Consumers","Wisconsin","WI",16531 +2002-07-01,"Delivered to Consumers","Virginia","VA",18202 +2002-07-01,"Delivered to Consumers","Texas","TX",378700 +2002-07-01,"Delivered to Consumers","South Carolina","SC",16325 +2002-07-01,"Delivered to Consumers","Florida","FL",67197 +2002-07-01,"Delivered to Consumers","Montana","MT",2265 +2002-07-01,"Delivered to Consumers","Oklahoma","OK",39440 +2002-07-01,"Delivered to Consumers","Alabama","AL",29889 +2002-07-01,"Delivered to Consumers","Colorado","CO",26301 +2002-07-01,"Delivered to Consumers","U.S.","U.S.",1602849 +2002-07-01,"Delivered to Consumers","Delaware","DE",6396 +2002-07-01,"Delivered to Consumers","West Virginia","WV",5123 +2002-07-01,"Delivered to Consumers","Kentucky","KY",13804 +2002-07-01,"Delivered to Consumers","California","CA",194816 +2002-07-01,"Delivered to Consumers","Oregon","OR",9336 +2002-07-01,"Delivered to Consumers","Maine","ME",7965 +2002-07-01,"Delivered to Consumers","New Mexico","NM",9010 +2002-07-01,"Delivered to Consumers","Vermont","VT",330 +2002-07-01,"Delivered to Consumers","Nevada","NV",14033 +2002-07-01,"Delivered to Consumers","Georgia","GA",30113 +2002-07-01,"Delivered to Consumers","Arizona","AZ",23546 +2002-07-01,"Delivered to Consumers","Utah","UT",5915 +2002-07-01,"Delivered to Consumers","Indiana","IN",30899 +2002-07-01,"Delivered to Consumers","Alaska","AK",10510 +2002-07-01,"Delivered to Consumers","Ohio","OH",40538 +2002-07-01,"Delivered to Consumers","Iowa","IA",9731 +2002-07-01,"Delivered to Consumers","Arkansas","AR",18741 +2002-07-01,"Delivered to Consumers","Pennsylvania","PA",32700 +2002-07-01,"Delivered to Consumers","Missouri","MO",15351 +2002-07-01,"Electric Power Consumption","Oklahoma","OK",26315 +2002-07-01,"Electric Power Consumption","Utah","UT",1570 +2002-07-01,"Electric Power Consumption","Georgia","GA",12902 +2002-07-01,"Electric Power Consumption","Texas","TX",182218 +2002-07-01,"Electric Power Consumption","Illinois","IL",23588 +2002-07-01,"Electric Power Consumption","Massachusetts","MA",13254 +2002-07-01,"Electric Power Consumption","Indiana","IN",6744 +2002-07-01,"Electric Power Consumption","Idaho","ID",467 +2002-07-01,"Electric Power Consumption","Arkansas","AR",8423 +2002-07-01,"Electric Power Consumption","Oregon","OR",2066 +2002-07-01,"Electric Power Consumption","Kentucky","KY",4626 +2002-07-01,"Electric Power Consumption","Ohio","OH",6411 +2002-07-01,"Electric Power Consumption","Alabama","AL",15228 +2002-07-01,"Electric Power Consumption","New Mexico","NM",5431 +2002-07-01,"Electric Power Consumption","Louisiana","LA",40542 +2002-07-01,"Electric Power Consumption","South Carolina","SC",7032 +2002-07-01,"Electric Power Consumption","Iowa","IA",1032 +2002-07-01,"Electric Power Consumption","Vermont","VT",4 +2002-07-01,"Electric Power Consumption","Tennessee","TN",739 +2002-07-01,"Electric Power Consumption","New Hampshire","NH",79 +2002-07-01,"Electric Power Consumption","Arizona","AZ",19305 +2002-07-01,"Electric Power Consumption","New Jersey","NJ",22580 +2002-07-01,"Electric Power Consumption","Kansas","KS",5491 +2002-07-01,"Electric Power Consumption","Pennsylvania","PA",8680 +2002-07-01,"Electric Power Consumption","South Dakota","SD",480 +2002-07-01,"Electric Power Consumption","Maine","ME",7614 +2002-07-01,"Electric Power Consumption","Mississippi","MS",23291 +2002-07-01,"Electric Power Consumption","Connecticut","CT",7982 +2002-07-01,"Electric Power Consumption","Washington","WA",1848 +2002-07-01,"Electric Power Consumption","Virginia","VA",6757 +2002-07-01,"Electric Power Consumption","Colorado","CO",8964 +2002-07-01,"Electric Power Consumption","Rhode Island","RI",4617 +2002-07-01,"Electric Power Consumption","Wisconsin","WI",3770 +2002-07-01,"Electric Power Consumption","U.S.","U.S.",733887 +2002-07-01,"Electric Power Consumption","North Carolina","NC",6801 +2002-07-01,"Electric Power Consumption","North Dakota","ND",0 +2002-07-01,"Electric Power Consumption","Florida","FL",55847 +2002-07-01,"Electric Power Consumption","Alaska","AK",2786 +2002-07-01,"Electric Power Consumption","New York","NY",47533 +2002-07-01,"Electric Power Consumption","West Virginia","WV",219 +2002-07-01,"Electric Power Consumption","Nevada","NV",10965 +2002-07-01,"Electric Power Consumption","Wyoming","WY",317 +2002-07-01,"Electric Power Consumption","Nebraska","NE",1251 +2002-07-01,"Electric Power Consumption","Missouri","MO",6710 +2002-07-01,"Electric Power Consumption","Hawaii","HI",0 +2002-07-01,"Electric Power Consumption","Montana","MT",29 +2002-07-01,"Electric Power Consumption","Maryland","MD",4207 +2002-07-01,"Electric Power Consumption","Minnesota","MN",2991 +2002-07-01,"Electric Power Consumption","Michigan","MI",20819 +2002-07-01,"Electric Power Consumption","Delaware","DE",4884 +2002-07-01,"Electric Power Consumption","California","CA",88478 +2002-07-01,"Industrial Consumption","Montana","MT",1351 +2002-07-01,"Industrial Consumption","Oklahoma","OK",10232 +2002-07-01,"Industrial Consumption","Washington","WA",4698 +2002-07-01,"Industrial Consumption","U.S.","U.S.",605786 +2002-07-01,"Industrial Consumption","Mississippi","MS",8401 +2002-07-01,"Industrial Consumption","California","CA",64753 +2002-07-01,"Industrial Consumption","Wyoming","WY",3086 +2002-07-01,"Industrial Consumption","New Jersey","NJ",5538 +2002-07-01,"Industrial Consumption","Rhode Island","RI",379 +2002-07-01,"Industrial Consumption","Georgia","GA",11441 +2002-07-01,"Industrial Consumption","Pennsylvania","PA",14256 +2002-07-01,"Industrial Consumption","Maine","ME",24 +2002-07-01,"Industrial Consumption","Minnesota","MN",6011 +2002-07-01,"Industrial Consumption","Iowa","IA",6095 +2002-07-01,"Industrial Consumption","Hawaii","HI",47 +2002-07-01,"Industrial Consumption","South Dakota","SD",637 +2002-07-01,"Industrial Consumption","Arizona","AZ",1291 +2002-07-01,"Industrial Consumption","Utah","UT",1971 +2002-07-01,"Industrial Consumption","New York","NY",6260 +2002-07-01,"Industrial Consumption","Texas","TX",177469 +2002-07-01,"Industrial Consumption","West Virginia","WV",3369 +2002-07-01,"Industrial Consumption","New Hampshire","NH",966 +2002-07-01,"Industrial Consumption","Michigan","MI",17903 +2002-07-01,"Industrial Consumption","Delaware","DE",1053 +2002-07-01,"Industrial Consumption","North Dakota","ND",1499 +2002-07-01,"Industrial Consumption","New Mexico","NM",1787 +2002-07-01,"Industrial Consumption","Arkansas","AR",7746 +2002-07-01,"Industrial Consumption","South Carolina","SC",7685 +2002-07-01,"Industrial Consumption","Missouri","MO",4410 +2002-07-01,"Industrial Consumption","Alabama","AL",12442 +2002-07-01,"Industrial Consumption","Tennessee","TN",8484 +2002-07-01,"Industrial Consumption","Florida","FL",6469 +2002-07-01,"Industrial Consumption","North Carolina","NC",7074 +2002-07-01,"Industrial Consumption","Kansas","KS",9890 +2002-07-01,"Industrial Consumption","Idaho","ID",1830 +2002-07-01,"Industrial Consumption","Connecticut","CT",2273 +2002-07-01,"Industrial Consumption","Illinois","IL",20901 +2002-07-01,"Industrial Consumption","District of Columbia","DC",0 +2002-07-01,"Industrial Consumption","Louisiana","LA",64331 +2002-07-01,"Industrial Consumption","Colorado","CO",12914 +2002-07-01,"Industrial Consumption","Nevada","NV",832 +2002-07-01,"Industrial Consumption","Nebraska","NE",5602 +2002-07-01,"Industrial Consumption","Virginia","VA",7390 +2002-07-01,"Industrial Consumption","Wisconsin","WI",7989 +2002-07-01,"Industrial Consumption","Kentucky","KY",7074 +2002-07-01,"Industrial Consumption","Maryland","MD",2242 +2002-07-01,"Industrial Consumption","Massachusetts","MA",4184 +2002-07-01,"Industrial Consumption","Ohio","OH",21954 +2002-07-01,"Industrial Consumption","Oregon","OR",5210 +2002-07-01,"Industrial Consumption","Vermont","VT",189 +2002-07-01,"Industrial Consumption","Indiana","IN",19398 +2002-07-01,"Industrial Consumption","Alaska","AK",6756 +2002-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95227 +2002-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",50359 +2002-07-01,"Residential Consumption","South Carolina","SC",535 +2002-07-01,"Residential Consumption","Mississippi","MS",721 +2002-07-01,"Residential Consumption","Vermont","VT",64 +2002-07-01,"Residential Consumption","Tennessee","TN",1201 +2002-07-01,"Residential Consumption","Nevada","NV",1033 +2002-07-01,"Residential Consumption","Idaho","ID",392 +2002-07-01,"Residential Consumption","Oklahoma","OK",1506 +2002-07-01,"Residential Consumption","Nebraska","NE",911 +2002-07-01,"Residential Consumption","District of Columbia","DC",318 +2002-07-01,"Residential Consumption","Florida","FL",774 +2002-07-01,"Residential Consumption","North Dakota","ND",195 +2002-07-01,"Residential Consumption","New Hampshire","NH",212 +2002-07-01,"Residential Consumption","Wyoming","WY",916 +2002-07-01,"Residential Consumption","U.S.","U.S.",125065 +2002-07-01,"Residential Consumption","New York","NY",9740 +2002-07-01,"Residential Consumption","Oregon","OR",993 +2002-07-01,"Residential Consumption","Ohio","OH",7504 +2002-07-01,"Residential Consumption","Michigan","MI",7567 +2002-07-01,"Residential Consumption","Maryland","MD",1640 +2002-07-01,"Residential Consumption","New Jersey","NJ",4973 +2002-07-01,"Residential Consumption","Delaware","DE",201 +2002-07-01,"Residential Consumption","Arizona","AZ",1077 +2002-07-01,"Residential Consumption","Alabama","AL",1150 +2002-07-01,"Residential Consumption","Illinois","IL",9399 +2002-07-01,"Residential Consumption","North Carolina","NC",1014 +2002-07-01,"Residential Consumption","Iowa","IA",1324 +2002-07-01,"Residential Consumption","Utah","UT",1424 +2002-07-01,"Residential Consumption","Minnesota","MN",3018 +2002-07-01,"Residential Consumption","Texas","TX",5920 +2002-07-01,"Residential Consumption","Rhode Island","RI",465 +2002-07-01,"Residential Consumption","Hawaii","HI",45 +2002-07-01,"Residential Consumption","South Dakota","SD",224 +2002-07-01,"Residential Consumption","New Mexico","NM",825 +2002-07-01,"Residential Consumption","Indiana","IN",2650 +2002-07-01,"Residential Consumption","Arkansas","AR",835 +2002-07-01,"Residential Consumption","Montana","MT",457 +2002-07-01,"Residential Consumption","Washington","WA",1881 +2002-07-01,"Residential Consumption","Alaska","AK",421 +2002-07-01,"Residential Consumption","Maine","ME",27 +2002-07-01,"Residential Consumption","Kentucky","KY",1033 +2002-07-01,"Residential Consumption","Colorado","CO",2617 +2002-07-01,"Residential Consumption","West Virginia","WV",537 +2002-07-01,"Residential Consumption","Georgia","GA",3611 +2002-07-01,"Residential Consumption","Pennsylvania","PA",5179 +2002-07-01,"Residential Consumption","California","CA",24891 +2002-07-01,"Residential Consumption","Louisiana","LA",1642 +2002-07-01,"Residential Consumption","Connecticut","CT",958 +2002-07-01,"Residential Consumption","Wisconsin","WI",2604 +2002-07-01,"Residential Consumption","Virginia","VA",1489 +2002-07-01,"Residential Consumption","Massachusetts","MA",3153 +2002-07-01,"Residential Consumption","Kansas","KS",1459 +2002-07-01,"Residential Consumption","Missouri","MO",2339 +2002-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",1270 +2002-08-01,"Commercial Consumption","North Dakota","ND",334 +2002-08-01,"Commercial Consumption","Montana","MT",415 +2002-08-01,"Commercial Consumption","Ohio","OH",4277 +2002-08-01,"Commercial Consumption","South Carolina","SC",1037 +2002-08-01,"Commercial Consumption","Oklahoma","OK",1465 +2002-08-01,"Commercial Consumption","Pennsylvania","PA",4744 +2002-08-01,"Commercial Consumption","Alabama","AL",1062 +2002-08-01,"Commercial Consumption","New York","NY",23435 +2002-08-01,"Commercial Consumption","Tennessee","TN",1912 +2002-08-01,"Commercial Consumption","Minnesota","MN",3481 +2002-08-01,"Commercial Consumption","Oregon","OR",989 +2002-08-01,"Commercial Consumption","Massachusetts","MA",2311 +2002-08-01,"Commercial Consumption","New Jersey","NJ",4505 +2002-08-01,"Commercial Consumption","Georgia","GA",1984 +2002-08-01,"Commercial Consumption","Florida","FL",3936 +2002-08-01,"Commercial Consumption","Iowa","IA",1189 +2002-08-01,"Commercial Consumption","Hawaii","HI",138 +2002-08-01,"Commercial Consumption","Alaska","AK",627 +2002-08-01,"Commercial Consumption","Mississippi","MS",808 +2002-08-01,"Commercial Consumption","Louisiana","LA",1344 +2002-08-01,"Commercial Consumption","Utah","UT",994 +2002-08-01,"Commercial Consumption","New Mexico","NM",960 +2002-08-01,"Commercial Consumption","Wisconsin","WI",2765 +2002-08-01,"Commercial Consumption","Maryland","MD",2373 +2002-08-01,"Commercial Consumption","Rhode Island","RI",392 +2002-08-01,"Commercial Consumption","Idaho","ID",352 +2002-08-01,"Commercial Consumption","Connecticut","CT",1918 +2002-08-01,"Commercial Consumption","Washington","WA",1680 +2002-08-01,"Commercial Consumption","U.S.","U.S.",135717 +2002-08-01,"Commercial Consumption","Delaware","DE",270 +2002-08-01,"Commercial Consumption","Michigan","MI",5127 +2002-08-01,"Commercial Consumption","Illinois","IL",6722 +2002-08-01,"Commercial Consumption","Colorado","CO",1832 +2002-08-01,"Commercial Consumption","New Hampshire","NH",193 +2002-08-01,"Commercial Consumption","Maine","ME",178 +2002-08-01,"Commercial Consumption","California","CA",17287 +2002-08-01,"Commercial Consumption","Nebraska","NE",940 +2002-08-01,"Commercial Consumption","Nevada","NV",1185 +2002-08-01,"Commercial Consumption","Wyoming","WY",235 +2002-08-01,"Commercial Consumption","West Virginia","WV",1042 +2002-08-01,"Commercial Consumption","South Dakota","SD",266 +2002-08-01,"Commercial Consumption","Kentucky","KY",1100 +2002-08-01,"Commercial Consumption","Indiana","IN",2555 +2002-08-01,"Commercial Consumption","District of Columbia","DC",845 +2002-08-01,"Commercial Consumption","North Carolina","NC",1437 +2002-08-01,"Commercial Consumption","Virginia","VA",2612 +2002-08-01,"Commercial Consumption","Missouri","MO",1796 +2002-08-01,"Commercial Consumption","Texas","TX",13970 +2002-08-01,"Commercial Consumption","Kansas","KS",1452 +2002-08-01,"Commercial Consumption","Vermont","VT",75 +2002-08-01,"Commercial Consumption","Arkansas","AR",1375 +2002-08-01,"Commercial Consumption","Arizona","AZ",1795 +2002-08-01,"Delivered to Consumers","Nevada","NV",14618 +2002-08-01,"Delivered to Consumers","Washington","WA",11367 +2002-08-01,"Delivered to Consumers","New Hampshire","NH",1055 +2002-08-01,"Delivered to Consumers","North Dakota","ND",1963 +2002-08-01,"Delivered to Consumers","U.S.","U.S.",1582079 +2002-08-01,"Delivered to Consumers","Oklahoma","OK",43092 +2002-08-01,"Delivered to Consumers","Idaho","ID",2812 +2002-08-01,"Delivered to Consumers","Michigan","MI",47094 +2002-08-01,"Delivered to Consumers","Pennsylvania","PA",34743 +2002-08-01,"Delivered to Consumers","Massachusetts","MA",26957 +2002-08-01,"Delivered to Consumers","Texas","TX",376676 +2002-08-01,"Delivered to Consumers","New Jersey","NJ",38755 +2002-08-01,"Delivered to Consumers","Maine","ME",10909 +2002-08-01,"Delivered to Consumers","Louisiana","LA",109348 +2002-08-01,"Delivered to Consumers","West Virginia","WV",5557 +2002-08-01,"Delivered to Consumers","Vermont","VT",336 +2002-08-01,"Delivered to Consumers","Arkansas","AR",17700 +2002-08-01,"Delivered to Consumers","District of Columbia","DC",1164 +2002-08-01,"Delivered to Consumers","South Dakota","SD",1300 +2002-08-01,"Delivered to Consumers","Montana","MT",2298 +2002-08-01,"Delivered to Consumers","Tennessee","TN",12439 +2002-08-01,"Delivered to Consumers","Iowa","IA",9815 +2002-08-01,"Delivered to Consumers","Connecticut","CT",13177 +2002-08-01,"Delivered to Consumers","North Carolina","NC",17088 +2002-08-01,"Delivered to Consumers","Missouri","MO",13593 +2002-08-01,"Delivered to Consumers","South Carolina","SC",15616 +2002-08-01,"Delivered to Consumers","Utah","UT",6481 +2002-08-01,"Delivered to Consumers","Indiana","IN",30668 +2002-08-01,"Delivered to Consumers","Wyoming","WY",4124 +2002-08-01,"Delivered to Consumers","Ohio","OH",38774 +2002-08-01,"Delivered to Consumers","Minnesota","MN",15077 +2002-08-01,"Delivered to Consumers","Delaware","DE",3816 +2002-08-01,"Delivered to Consumers","Illinois","IL",51277 +2002-08-01,"Delivered to Consumers","Rhode Island","RI",5748 +2002-08-01,"Delivered to Consumers","Alaska","AK",9907 +2002-08-01,"Delivered to Consumers","Kansas","KS",20062 +2002-08-01,"Delivered to Consumers","Alabama","AL",30615 +2002-08-01,"Delivered to Consumers","Georgia","GA",29701 +2002-08-01,"Delivered to Consumers","Florida","FL",70144 +2002-08-01,"Delivered to Consumers","New York","NY",87878 +2002-08-01,"Delivered to Consumers","Maryland","MD",12842 +2002-08-01,"Delivered to Consumers","Hawaii","HI",222 +2002-08-01,"Delivered to Consumers","Wisconsin","WI",15795 +2002-08-01,"Delivered to Consumers","Virginia","VA",18373 +2002-08-01,"Delivered to Consumers","Nebraska","NE",7414 +2002-08-01,"Delivered to Consumers","Mississippi","MS",29104 +2002-08-01,"Delivered to Consumers","California","CA",189345 +2002-08-01,"Delivered to Consumers","Oregon","OR",12198 +2002-08-01,"Delivered to Consumers","Arizona","AZ",22088 +2002-08-01,"Delivered to Consumers","New Mexico","NM",7698 +2002-08-01,"Delivered to Consumers","Kentucky","KY",10869 +2002-08-01,"Delivered to Consumers","Colorado","CO",21119 +2002-08-01,"Electric Power Consumption","Texas","TX",190565 +2002-08-01,"Electric Power Consumption","South Dakota","SD",55 +2002-08-01,"Electric Power Consumption","Kentucky","KY",1996 +2002-08-01,"Electric Power Consumption","Indiana","IN",4557 +2002-08-01,"Electric Power Consumption","Washington","WA",3219 +2002-08-01,"Electric Power Consumption","New Mexico","NM",4209 +2002-08-01,"Electric Power Consumption","Michigan","MI",18463 +2002-08-01,"Electric Power Consumption","Massachusetts","MA",14505 +2002-08-01,"Electric Power Consumption","West Virginia","WV",448 +2002-08-01,"Electric Power Consumption","Pennsylvania","PA",10396 +2002-08-01,"Electric Power Consumption","Nevada","NV",11631 +2002-08-01,"Electric Power Consumption","Florida","FL",58690 +2002-08-01,"Electric Power Consumption","Alabama","AL",15892 +2002-08-01,"Electric Power Consumption","North Carolina","NC",6995 +2002-08-01,"Electric Power Consumption","Ohio","OH",5335 +2002-08-01,"Electric Power Consumption","Rhode Island","RI",4444 +2002-08-01,"Electric Power Consumption","Wyoming","WY",387 +2002-08-01,"Electric Power Consumption","Tennessee","TN",651 +2002-08-01,"Electric Power Consumption","U.S.","U.S.",717592 +2002-08-01,"Electric Power Consumption","Missouri","MO",5248 +2002-08-01,"Electric Power Consumption","New Hampshire","NH",311 +2002-08-01,"Electric Power Consumption","Montana","MT",20 +2002-08-01,"Electric Power Consumption","Connecticut","CT",8302 +2002-08-01,"Electric Power Consumption","Virginia","VA",6819 +2002-08-01,"Electric Power Consumption","Utah","UT",2022 +2002-08-01,"Electric Power Consumption","Iowa","IA",637 +2002-08-01,"Electric Power Consumption","Oregon","OR",4899 +2002-08-01,"Electric Power Consumption","Minnesota","MN",1526 +2002-08-01,"Electric Power Consumption","Mississippi","MS",19402 +2002-08-01,"Electric Power Consumption","New Jersey","NJ",22412 +2002-08-01,"Electric Power Consumption","Louisiana","LA",41790 +2002-08-01,"Electric Power Consumption","South Carolina","SC",6603 +2002-08-01,"Electric Power Consumption","Oklahoma","OK",29818 +2002-08-01,"Electric Power Consumption","Kansas","KS",4045 +2002-08-01,"Electric Power Consumption","Vermont","VT",3 +2002-08-01,"Electric Power Consumption","Maine","ME",8041 +2002-08-01,"Electric Power Consumption","Hawaii","HI",0 +2002-08-01,"Electric Power Consumption","Maryland","MD",6572 +2002-08-01,"Electric Power Consumption","Arizona","AZ",17996 +2002-08-01,"Electric Power Consumption","California","CA",80441 +2002-08-01,"Electric Power Consumption","Idaho","ID",228 +2002-08-01,"Electric Power Consumption","Colorado","CO",7515 +2002-08-01,"Electric Power Consumption","Arkansas","AR",6460 +2002-08-01,"Electric Power Consumption","New York","NY",48900 +2002-08-01,"Electric Power Consumption","Illinois","IL",15556 +2002-08-01,"Electric Power Consumption","Wisconsin","WI",2149 +2002-08-01,"Electric Power Consumption","Nebraska","NE",842 +2002-08-01,"Electric Power Consumption","North Dakota","ND",0 +2002-08-01,"Electric Power Consumption","Delaware","DE",2210 +2002-08-01,"Electric Power Consumption","Georgia","GA",11906 +2002-08-01,"Electric Power Consumption","Alaska","AK",2482 +2002-08-01,"Industrial Consumption","Massachusetts","MA",7865 +2002-08-01,"Industrial Consumption","Hawaii","HI",42 +2002-08-01,"Industrial Consumption","Louisiana","LA",64681 +2002-08-01,"Industrial Consumption","Maine","ME",2661 +2002-08-01,"Industrial Consumption","Illinois","IL",19953 +2002-08-01,"Industrial Consumption","Georgia","GA",12306 +2002-08-01,"Industrial Consumption","North Dakota","ND",1376 +2002-08-01,"Industrial Consumption","Colorado","CO",9205 +2002-08-01,"Industrial Consumption","Alabama","AL",12540 +2002-08-01,"Industrial Consumption","Rhode Island","RI",481 +2002-08-01,"Industrial Consumption","North Carolina","NC",7771 +2002-08-01,"Industrial Consumption","Alaska","AK",6206 +2002-08-01,"Industrial Consumption","Arizona","AZ",1281 +2002-08-01,"Industrial Consumption","Oregon","OR",5471 +2002-08-01,"Industrial Consumption","Mississippi","MS",8207 +2002-08-01,"Industrial Consumption","California","CA",68124 +2002-08-01,"Industrial Consumption","Virginia","VA",7330 +2002-08-01,"Industrial Consumption","Wyoming","WY",3296 +2002-08-01,"Industrial Consumption","Tennessee","TN",8782 +2002-08-01,"Industrial Consumption","Florida","FL",6798 +2002-08-01,"Industrial Consumption","Kentucky","KY",6669 +2002-08-01,"Industrial Consumption","Delaware","DE",1166 +2002-08-01,"Industrial Consumption","Maryland","MD",2271 +2002-08-01,"Industrial Consumption","Missouri","MO",4486 +2002-08-01,"Industrial Consumption","Washington","WA",4881 +2002-08-01,"Industrial Consumption","U.S.","U.S.",611822 +2002-08-01,"Industrial Consumption","Pennsylvania","PA",15136 +2002-08-01,"Industrial Consumption","Arkansas","AR",9082 +2002-08-01,"Industrial Consumption","Vermont","VT",200 +2002-08-01,"Industrial Consumption","Wisconsin","WI",8207 +2002-08-01,"Industrial Consumption","Minnesota","MN",7494 +2002-08-01,"Industrial Consumption","Utah","UT",2040 +2002-08-01,"Industrial Consumption","Nevada","NV",861 +2002-08-01,"Industrial Consumption","Texas","TX",166495 +2002-08-01,"Industrial Consumption","Nebraska","NE",4879 +2002-08-01,"Industrial Consumption","West Virginia","WV",3619 +2002-08-01,"Industrial Consumption","New Jersey","NJ",6845 +2002-08-01,"Industrial Consumption","New Hampshire","NH",411 +2002-08-01,"Industrial Consumption","Idaho","ID",1872 +2002-08-01,"Industrial Consumption","Iowa","IA",6628 +2002-08-01,"Industrial Consumption","Indiana","IN",20664 +2002-08-01,"Industrial Consumption","District of Columbia","DC",0 +2002-08-01,"Industrial Consumption","Oklahoma","OK",10436 +2002-08-01,"Industrial Consumption","Kansas","KS",13216 +2002-08-01,"Industrial Consumption","Michigan","MI",17019 +2002-08-01,"Industrial Consumption","Ohio","OH",23129 +2002-08-01,"Industrial Consumption","New Mexico","NM",1710 +2002-08-01,"Industrial Consumption","New York","NY",6431 +2002-08-01,"Industrial Consumption","South Carolina","SC",7515 +2002-08-01,"Industrial Consumption","Connecticut","CT",1936 +2002-08-01,"Industrial Consumption","Montana","MT",1409 +2002-08-01,"Industrial Consumption","South Dakota","SD",739 +2002-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93998 +2002-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",49635 +2002-08-01,"Residential Consumption","Tennessee","TN",1094 +2002-08-01,"Residential Consumption","Maryland","MD",1625 +2002-08-01,"Residential Consumption","Indiana","IN",2892 +2002-08-01,"Residential Consumption","Massachusetts","MA",2276 +2002-08-01,"Residential Consumption","Idaho","ID",360 +2002-08-01,"Residential Consumption","Arizona","AZ",1016 +2002-08-01,"Residential Consumption","New York","NY",9113 +2002-08-01,"Residential Consumption","Minnesota","MN",2575 +2002-08-01,"Residential Consumption","District of Columbia","DC",319 +2002-08-01,"Residential Consumption","New Hampshire","NH",140 +2002-08-01,"Residential Consumption","Montana","MT",453 +2002-08-01,"Residential Consumption","Kansas","KS",1349 +2002-08-01,"Residential Consumption","Illinois","IL",9047 +2002-08-01,"Residential Consumption","Rhode Island","RI",431 +2002-08-01,"Residential Consumption","Pennsylvania","PA",4467 +2002-08-01,"Residential Consumption","North Dakota","ND",253 +2002-08-01,"Residential Consumption","U.S.","U.S.",115678 +2002-08-01,"Residential Consumption","South Carolina","SC",462 +2002-08-01,"Residential Consumption","Oregon","OR",840 +2002-08-01,"Residential Consumption","Mississippi","MS",686 +2002-08-01,"Residential Consumption","Iowa","IA",1361 +2002-08-01,"Residential Consumption","Nebraska","NE",752 +2002-08-01,"Residential Consumption","Oklahoma","OK",1372 +2002-08-01,"Residential Consumption","Missouri","MO",2063 +2002-08-01,"Residential Consumption","California","CA",23494 +2002-08-01,"Residential Consumption","Alabama","AL",1122 +2002-08-01,"Residential Consumption","Alaska","AK",592 +2002-08-01,"Residential Consumption","Texas","TX",5647 +2002-08-01,"Residential Consumption","Michigan","MI",6485 +2002-08-01,"Residential Consumption","Maine","ME",28 +2002-08-01,"Residential Consumption","New Jersey","NJ",4993 +2002-08-01,"Residential Consumption","West Virginia","WV",448 +2002-08-01,"Residential Consumption","Ohio","OH",6032 +2002-08-01,"Residential Consumption","North Carolina","NC",885 +2002-08-01,"Residential Consumption","Connecticut","CT",1021 +2002-08-01,"Residential Consumption","Virginia","VA",1611 +2002-08-01,"Residential Consumption","Utah","UT",1424 +2002-08-01,"Residential Consumption","South Dakota","SD",239 +2002-08-01,"Residential Consumption","Nevada","NV",940 +2002-08-01,"Residential Consumption","Kentucky","KY",1104 +2002-08-01,"Residential Consumption","Delaware","DE",171 +2002-08-01,"Residential Consumption","Louisiana","LA",1533 +2002-08-01,"Residential Consumption","Wisconsin","WI",2673 +2002-08-01,"Residential Consumption","Vermont","VT",58 +2002-08-01,"Residential Consumption","Florida","FL",720 +2002-08-01,"Residential Consumption","Colorado","CO",2567 +2002-08-01,"Residential Consumption","Washington","WA",1587 +2002-08-01,"Residential Consumption","Wyoming","WY",206 +2002-08-01,"Residential Consumption","Hawaii","HI",42 +2002-08-01,"Residential Consumption","Georgia","GA",3505 +2002-08-01,"Residential Consumption","New Mexico","NM",819 +2002-08-01,"Residential Consumption","Arkansas","AR",783 +2002-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",1270 +2002-09-01,"Commercial Consumption","New Mexico","NM",764 +2002-09-01,"Commercial Consumption","Massachusetts","MA",3293 +2002-09-01,"Commercial Consumption","New Jersey","NJ",8016 +2002-09-01,"Commercial Consumption","Delaware","DE",280 +2002-09-01,"Commercial Consumption","Nevada","NV",1249 +2002-09-01,"Commercial Consumption","Michigan","MI",5570 +2002-09-01,"Commercial Consumption","District of Columbia","DC",864 +2002-09-01,"Commercial Consumption","Wyoming","WY",457 +2002-09-01,"Commercial Consumption","North Dakota","ND",358 +2002-09-01,"Commercial Consumption","North Carolina","NC",1624 +2002-09-01,"Commercial Consumption","Utah","UT",1257 +2002-09-01,"Commercial Consumption","Oklahoma","OK",1477 +2002-09-01,"Commercial Consumption","Virginia","VA",2621 +2002-09-01,"Commercial Consumption","Pennsylvania","PA",4874 +2002-09-01,"Commercial Consumption","Maine","ME",306 +2002-09-01,"Commercial Consumption","Georgia","GA",1997 +2002-09-01,"Commercial Consumption","Rhode Island","RI",429 +2002-09-01,"Commercial Consumption","New York","NY",21051 +2002-09-01,"Commercial Consumption","Mississippi","MS",1114 +2002-09-01,"Commercial Consumption","Illinois","IL",7809 +2002-09-01,"Commercial Consumption","Washington","WA",1707 +2002-09-01,"Commercial Consumption","Kentucky","KY",1033 +2002-09-01,"Commercial Consumption","Nebraska","NE",973 +2002-09-01,"Commercial Consumption","South Carolina","SC",1114 +2002-09-01,"Commercial Consumption","Vermont","VT",83 +2002-09-01,"Commercial Consumption","Indiana","IN",2484 +2002-09-01,"Commercial Consumption","Louisiana","LA",1452 +2002-09-01,"Commercial Consumption","Wisconsin","WI",2917 +2002-09-01,"Commercial Consumption","New Hampshire","NH",437 +2002-09-01,"Commercial Consumption","Connecticut","CT",1766 +2002-09-01,"Commercial Consumption","California","CA",15819 +2002-09-01,"Commercial Consumption","Arizona","AZ",1820 +2002-09-01,"Commercial Consumption","Tennessee","TN",2137 +2002-09-01,"Commercial Consumption","Minnesota","MN",3845 +2002-09-01,"Commercial Consumption","Colorado","CO",2343 +2002-09-01,"Commercial Consumption","Oregon","OR",1062 +2002-09-01,"Commercial Consumption","Kansas","KS",1274 +2002-09-01,"Commercial Consumption","Alabama","AL",1075 +2002-09-01,"Commercial Consumption","Missouri","MO",1953 +2002-09-01,"Commercial Consumption","South Dakota","SD",315 +2002-09-01,"Commercial Consumption","Montana","MT",443 +2002-09-01,"Commercial Consumption","Florida","FL",4087 +2002-09-01,"Commercial Consumption","Ohio","OH",4382 +2002-09-01,"Commercial Consumption","Idaho","ID",423 +2002-09-01,"Commercial Consumption","Alaska","AK",750 +2002-09-01,"Commercial Consumption","West Virginia","WV",953 +2002-09-01,"Commercial Consumption","U.S.","U.S.",141457 +2002-09-01,"Commercial Consumption","Texas","TX",12749 +2002-09-01,"Commercial Consumption","Maryland","MD",3324 +2002-09-01,"Commercial Consumption","Iowa","IA",1843 +2002-09-01,"Commercial Consumption","Hawaii","HI",144 +2002-09-01,"Commercial Consumption","Arkansas","AR",1342 +2002-09-01,"Delivered to Consumers","Tennessee","TN",11103 +2002-09-01,"Delivered to Consumers","Alabama","AL",26781 +2002-09-01,"Delivered to Consumers","Colorado","CO",21764 +2002-09-01,"Delivered to Consumers","Nevada","NV",13988 +2002-09-01,"Delivered to Consumers","New Jersey","NJ",34515 +2002-09-01,"Delivered to Consumers","Arizona","AZ",20988 +2002-09-01,"Delivered to Consumers","Utah","UT",7591 +2002-09-01,"Delivered to Consumers","West Virginia","WV",4801 +2002-09-01,"Delivered to Consumers","Hawaii","HI",224 +2002-09-01,"Delivered to Consumers","Kentucky","KY",11129 +2002-09-01,"Delivered to Consumers","Connecticut","CT",12069 +2002-09-01,"Delivered to Consumers","Pennsylvania","PA",30425 +2002-09-01,"Delivered to Consumers","Florida","FL",65136 +2002-09-01,"Delivered to Consumers","Delaware","DE",4170 +2002-09-01,"Delivered to Consumers","Rhode Island","RI",5630 +2002-09-01,"Delivered to Consumers","Ohio","OH",34999 +2002-09-01,"Delivered to Consumers","Wisconsin","WI",16659 +2002-09-01,"Delivered to Consumers","Nebraska","NE",6786 +2002-09-01,"Delivered to Consumers","Mississippi","MS",24492 +2002-09-01,"Delivered to Consumers","Massachusetts","MA",25422 +2002-09-01,"Delivered to Consumers","District of Columbia","DC",1202 +2002-09-01,"Delivered to Consumers","New Mexico","NM",6514 +2002-09-01,"Delivered to Consumers","Oklahoma","OK",34007 +2002-09-01,"Delivered to Consumers","Michigan","MI",40938 +2002-09-01,"Delivered to Consumers","California","CA",177933 +2002-09-01,"Delivered to Consumers","Georgia","GA",24899 +2002-09-01,"Delivered to Consumers","North Dakota","ND",1988 +2002-09-01,"Delivered to Consumers","Wyoming","WY",4599 +2002-09-01,"Delivered to Consumers","Alaska","AK",9717 +2002-09-01,"Delivered to Consumers","Idaho","ID",3303 +2002-09-01,"Delivered to Consumers","Iowa","IA",10403 +2002-09-01,"Delivered to Consumers","Missouri","MO",11804 +2002-09-01,"Delivered to Consumers","Oregon","OR",12978 +2002-09-01,"Delivered to Consumers","Maine","ME",8186 +2002-09-01,"Delivered to Consumers","New Hampshire","NH",1381 +2002-09-01,"Delivered to Consumers","Minnesota","MN",14862 +2002-09-01,"Delivered to Consumers","Illinois","IL",43656 +2002-09-01,"Delivered to Consumers","New York","NY",74748 +2002-09-01,"Delivered to Consumers","Maryland","MD",10157 +2002-09-01,"Delivered to Consumers","Kansas","KS",15937 +2002-09-01,"Delivered to Consumers","Washington","WA",12459 +2002-09-01,"Delivered to Consumers","Indiana","IN",28357 +2002-09-01,"Delivered to Consumers","Vermont","VT",348 +2002-09-01,"Delivered to Consumers","Montana","MT",2711 +2002-09-01,"Delivered to Consumers","North Carolina","NC",13640 +2002-09-01,"Delivered to Consumers","Texas","TX",319061 +2002-09-01,"Delivered to Consumers","Louisiana","LA",97986 +2002-09-01,"Delivered to Consumers","U.S.","U.S.",1408599 +2002-09-01,"Delivered to Consumers","South Dakota","SD",1471 +2002-09-01,"Delivered to Consumers","Arkansas","AR",16789 +2002-09-01,"Delivered to Consumers","Virginia","VA",14992 +2002-09-01,"Delivered to Consumers","South Carolina","SC",11675 +2002-09-01,"Electric Power Consumption","Idaho","ID",156 +2002-09-01,"Electric Power Consumption","Maine","ME",7831 +2002-09-01,"Electric Power Consumption","New Hampshire","NH",219 +2002-09-01,"Electric Power Consumption","North Dakota","ND",0 +2002-09-01,"Electric Power Consumption","Connecticut","CT",7282 +2002-09-01,"Electric Power Consumption","Arizona","AZ",16847 +2002-09-01,"Electric Power Consumption","California","CA",75298 +2002-09-01,"Electric Power Consumption","New Mexico","NM",2989 +2002-09-01,"Electric Power Consumption","Colorado","CO",6242 +2002-09-01,"Electric Power Consumption","South Carolina","SC",2795 +2002-09-01,"Electric Power Consumption","Texas","TX",148525 +2002-09-01,"Electric Power Consumption","Minnesota","MN",1304 +2002-09-01,"Electric Power Consumption","West Virginia","WV",139 +2002-09-01,"Electric Power Consumption","North Carolina","NC",3243 +2002-09-01,"Electric Power Consumption","Kentucky","KY",1262 +2002-09-01,"Electric Power Consumption","Georgia","GA",7887 +2002-09-01,"Electric Power Consumption","New York","NY",37923 +2002-09-01,"Electric Power Consumption","Utah","UT",2199 +2002-09-01,"Electric Power Consumption","Tennessee","TN",74 +2002-09-01,"Electric Power Consumption","U.S.","U.S.",568699 +2002-09-01,"Electric Power Consumption","Nebraska","NE",548 +2002-09-01,"Electric Power Consumption","Alabama","AL",11855 +2002-09-01,"Electric Power Consumption","Virginia","VA",4318 +2002-09-01,"Electric Power Consumption","Montana","MT",10 +2002-09-01,"Electric Power Consumption","Maryland","MD",2957 +2002-09-01,"Electric Power Consumption","Washington","WA",3934 +2002-09-01,"Electric Power Consumption","New Jersey","NJ",15609 +2002-09-01,"Electric Power Consumption","Louisiana","LA",32420 +2002-09-01,"Electric Power Consumption","Massachusetts","MA",13386 +2002-09-01,"Electric Power Consumption","Mississippi","MS",15022 +2002-09-01,"Electric Power Consumption","Ohio","OH",3175 +2002-09-01,"Electric Power Consumption","Indiana","IN",3299 +2002-09-01,"Electric Power Consumption","Delaware","DE",1932 +2002-09-01,"Electric Power Consumption","Pennsylvania","PA",5545 +2002-09-01,"Electric Power Consumption","Nevada","NV",10763 +2002-09-01,"Electric Power Consumption","Oklahoma","OK",21384 +2002-09-01,"Electric Power Consumption","Michigan","MI",13037 +2002-09-01,"Electric Power Consumption","Iowa","IA",551 +2002-09-01,"Electric Power Consumption","South Dakota","SD",148 +2002-09-01,"Electric Power Consumption","Missouri","MO",3221 +2002-09-01,"Electric Power Consumption","Hawaii","HI",0 +2002-09-01,"Electric Power Consumption","Florida","FL",53763 +2002-09-01,"Electric Power Consumption","Alaska","AK",2601 +2002-09-01,"Electric Power Consumption","Arkansas","AR",5298 +2002-09-01,"Electric Power Consumption","Rhode Island","RI",4282 +2002-09-01,"Electric Power Consumption","Oregon","OR",5614 +2002-09-01,"Electric Power Consumption","Illinois","IL",6897 +2002-09-01,"Electric Power Consumption","Kansas","KS",1984 +2002-09-01,"Electric Power Consumption","Wisconsin","WI",2350 +2002-09-01,"Electric Power Consumption","Wyoming","WY",576 +2002-09-01,"Electric Power Consumption","Vermont","VT",3 +2002-09-01,"Industrial Consumption","Pennsylvania","PA",14848 +2002-09-01,"Industrial Consumption","Virginia","VA",6500 +2002-09-01,"Industrial Consumption","Florida","FL",6548 +2002-09-01,"Industrial Consumption","North Carolina","NC",7733 +2002-09-01,"Industrial Consumption","Montana","MT",1696 +2002-09-01,"Industrial Consumption","New York","NY",6443 +2002-09-01,"Industrial Consumption","Mississippi","MS",7668 +2002-09-01,"Industrial Consumption","Texas","TX",152084 +2002-09-01,"Industrial Consumption","Iowa","IA",6589 +2002-09-01,"Industrial Consumption","Hawaii","HI",36 +2002-09-01,"Industrial Consumption","Missouri","MO",4255 +2002-09-01,"Industrial Consumption","Washington","WA",5034 +2002-09-01,"Industrial Consumption","South Dakota","SD",724 +2002-09-01,"Industrial Consumption","Kansas","KS",11270 +2002-09-01,"Industrial Consumption","Maine","ME",20 +2002-09-01,"Industrial Consumption","Michigan","MI",15021 +2002-09-01,"Industrial Consumption","Delaware","DE",1778 +2002-09-01,"Industrial Consumption","Massachusetts","MA",6085 +2002-09-01,"Industrial Consumption","California","CA",63667 +2002-09-01,"Industrial Consumption","Alabama","AL",12721 +2002-09-01,"Industrial Consumption","New Hampshire","NH",562 +2002-09-01,"Industrial Consumption","Illinois","IL",18993 +2002-09-01,"Industrial Consumption","Nevada","NV",894 +2002-09-01,"Industrial Consumption","West Virginia","WV",3160 +2002-09-01,"Industrial Consumption","Vermont","VT",199 +2002-09-01,"Industrial Consumption","Rhode Island","RI",502 +2002-09-01,"Industrial Consumption","North Dakota","ND",1348 +2002-09-01,"Industrial Consumption","Oklahoma","OK",9783 +2002-09-01,"Industrial Consumption","Arizona","AZ",1247 +2002-09-01,"Industrial Consumption","Oregon","OR",5370 +2002-09-01,"Industrial Consumption","Tennessee","TN",7748 +2002-09-01,"Industrial Consumption","Minnesota","MN",6376 +2002-09-01,"Industrial Consumption","Louisiana","LA",62517 +2002-09-01,"Industrial Consumption","Ohio","OH",21439 +2002-09-01,"Industrial Consumption","New Mexico","NM",1922 +2002-09-01,"Industrial Consumption","Utah","UT",2117 +2002-09-01,"Industrial Consumption","U.S.","U.S.",573310 +2002-09-01,"Industrial Consumption","Wyoming","WY",3058 +2002-09-01,"Industrial Consumption","New Jersey","NJ",5773 +2002-09-01,"Industrial Consumption","Connecticut","CT",2029 +2002-09-01,"Industrial Consumption","Indiana","IN",19688 +2002-09-01,"Industrial Consumption","Georgia","GA",11390 +2002-09-01,"Industrial Consumption","District of Columbia","DC",0 +2002-09-01,"Industrial Consumption","Maryland","MD",1836 +2002-09-01,"Industrial Consumption","Colorado","CO",9597 +2002-09-01,"Industrial Consumption","Arkansas","AR",9352 +2002-09-01,"Industrial Consumption","South Carolina","SC",7269 +2002-09-01,"Industrial Consumption","Nebraska","NE",4369 +2002-09-01,"Industrial Consumption","Wisconsin","WI",8487 +2002-09-01,"Industrial Consumption","Idaho","ID",2281 +2002-09-01,"Industrial Consumption","Kentucky","KY",7743 +2002-09-01,"Industrial Consumption","Alaska","AK",5537 +2002-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89315 +2002-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",44256 +2002-09-01,"Residential Consumption","Virginia","VA",1553 +2002-09-01,"Residential Consumption","Michigan","MI",7310 +2002-09-01,"Residential Consumption","Minnesota","MN",3336 +2002-09-01,"Residential Consumption","Georgia","GA",3625 +2002-09-01,"Residential Consumption","New Mexico","NM",839 +2002-09-01,"Residential Consumption","Indiana","IN",2886 +2002-09-01,"Residential Consumption","Oklahoma","OK",1363 +2002-09-01,"Residential Consumption","Delaware","DE",180 +2002-09-01,"Residential Consumption","Alabama","AL",1130 +2002-09-01,"Residential Consumption","New York","NY",9332 +2002-09-01,"Residential Consumption","Hawaii","HI",44 +2002-09-01,"Residential Consumption","South Dakota","SD",285 +2002-09-01,"Residential Consumption","Florida","FL",738 +2002-09-01,"Residential Consumption","North Dakota","ND",282 +2002-09-01,"Residential Consumption","Iowa","IA",1420 +2002-09-01,"Residential Consumption","Idaho","ID",442 +2002-09-01,"Residential Consumption","Montana","MT",562 +2002-09-01,"Residential Consumption","Kentucky","KY",1091 +2002-09-01,"Residential Consumption","Kansas","KS",1409 +2002-09-01,"Residential Consumption","West Virginia","WV",549 +2002-09-01,"Residential Consumption","Illinois","IL",9956 +2002-09-01,"Residential Consumption","Oregon","OR",931 +2002-09-01,"Residential Consumption","North Carolina","NC",1040 +2002-09-01,"Residential Consumption","Connecticut","CT",991 +2002-09-01,"Residential Consumption","Wisconsin","WI",2905 +2002-09-01,"Residential Consumption","District of Columbia","DC",338 +2002-09-01,"Residential Consumption","Missouri","MO",2375 +2002-09-01,"Residential Consumption","Arizona","AZ",1073 +2002-09-01,"Residential Consumption","Alaska","AK",828 +2002-09-01,"Residential Consumption","Rhode Island","RI",417 +2002-09-01,"Residential Consumption","Ohio","OH",6003 +2002-09-01,"Residential Consumption","New Hampshire","NH",163 +2002-09-01,"Residential Consumption","Colorado","CO",3581 +2002-09-01,"Residential Consumption","Washington","WA",1784 +2002-09-01,"Residential Consumption","California","CA",23150 +2002-09-01,"Residential Consumption","Texas","TX",5703 +2002-09-01,"Residential Consumption","South Carolina","SC",496 +2002-09-01,"Residential Consumption","Mississippi","MS",687 +2002-09-01,"Residential Consumption","Vermont","VT",63 +2002-09-01,"Residential Consumption","Tennessee","TN",1144 +2002-09-01,"Residential Consumption","Maine","ME",28 +2002-09-01,"Residential Consumption","Arkansas","AR",796 +2002-09-01,"Residential Consumption","U.S.","U.S.",123904 +2002-09-01,"Residential Consumption","Louisiana","LA",1597 +2002-09-01,"Residential Consumption","Massachusetts","MA",2658 +2002-09-01,"Residential Consumption","New Jersey","NJ",5117 +2002-09-01,"Residential Consumption","Wyoming","WY",508 +2002-09-01,"Residential Consumption","Utah","UT",2018 +2002-09-01,"Residential Consumption","Nebraska","NE",896 +2002-09-01,"Residential Consumption","Maryland","MD",2040 +2002-09-01,"Residential Consumption","Nevada","NV",1081 +2002-09-01,"Residential Consumption","Pennsylvania","PA",5158 +2002-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",1229 +2002-10-01,"Commercial Consumption","West Virginia","WV",926 +2002-10-01,"Commercial Consumption","New Jersey","NJ",8636 +2002-10-01,"Commercial Consumption","New Hampshire","NH",369 +2002-10-01,"Commercial Consumption","Hawaii","HI",144 +2002-10-01,"Commercial Consumption","Nebraska","NE",1236 +2002-10-01,"Commercial Consumption","Illinois","IL",14279 +2002-10-01,"Commercial Consumption","Colorado","CO",5279 +2002-10-01,"Commercial Consumption","New Mexico","NM",1133 +2002-10-01,"Commercial Consumption","Virginia","VA",4202 +2002-10-01,"Commercial Consumption","Maine","ME",339 +2002-10-01,"Commercial Consumption","Rhode Island","RI",556 +2002-10-01,"Commercial Consumption","Iowa","IA",2690 +2002-10-01,"Commercial Consumption","New York","NY",22574 +2002-10-01,"Commercial Consumption","Indiana","IN",5357 +2002-10-01,"Commercial Consumption","Washington","WA",2243 +2002-10-01,"Commercial Consumption","Utah","UT",2327 +2002-10-01,"Commercial Consumption","Maryland","MD",4619 +2002-10-01,"Commercial Consumption","Ohio","OH",9168 +2002-10-01,"Commercial Consumption","Mississippi","MS",1233 +2002-10-01,"Commercial Consumption","Arizona","AZ",1963 +2002-10-01,"Commercial Consumption","Tennessee","TN",2370 +2002-10-01,"Commercial Consumption","U.S.","U.S.",199288 +2002-10-01,"Commercial Consumption","Texas","TX",15488 +2002-10-01,"Commercial Consumption","Georgia","GA",2556 +2002-10-01,"Commercial Consumption","Connecticut","CT",2405 +2002-10-01,"Commercial Consumption","Michigan","MI",9627 +2002-10-01,"Commercial Consumption","Minnesota","MN",7905 +2002-10-01,"Commercial Consumption","Oregon","OR",1304 +2002-10-01,"Commercial Consumption","Oklahoma","OK",1482 +2002-10-01,"Commercial Consumption","Massachusetts","MA",5366 +2002-10-01,"Commercial Consumption","Florida","FL",3936 +2002-10-01,"Commercial Consumption","Vermont","VT",114 +2002-10-01,"Commercial Consumption","Idaho","ID",634 +2002-10-01,"Commercial Consumption","North Dakota","ND",1014 +2002-10-01,"Commercial Consumption","Pennsylvania","PA",8521 +2002-10-01,"Commercial Consumption","Nevada","NV",1478 +2002-10-01,"Commercial Consumption","North Carolina","NC",2429 +2002-10-01,"Commercial Consumption","Missouri","MO",3425 +2002-10-01,"Commercial Consumption","Montana","MT",919 +2002-10-01,"Commercial Consumption","Kentucky","KY",2122 +2002-10-01,"Commercial Consumption","Kansas","KS",1902 +2002-10-01,"Commercial Consumption","Alabama","AL",1188 +2002-10-01,"Commercial Consumption","District of Columbia","DC",1283 +2002-10-01,"Commercial Consumption","Wyoming","WY",864 +2002-10-01,"Commercial Consumption","South Carolina","SC",1186 +2002-10-01,"Commercial Consumption","Wisconsin","WI",6440 +2002-10-01,"Commercial Consumption","South Dakota","SD",763 +2002-10-01,"Commercial Consumption","Alaska","AK",1532 +2002-10-01,"Commercial Consumption","California","CA",18131 +2002-10-01,"Commercial Consumption","Arkansas","AR",1747 +2002-10-01,"Commercial Consumption","Delaware","DE",355 +2002-10-01,"Commercial Consumption","Louisiana","LA",1533 +2002-10-01,"Delivered to Consumers","Montana","MT",4300 +2002-10-01,"Delivered to Consumers","Wisconsin","WI",28429 +2002-10-01,"Delivered to Consumers","North Carolina","NC",15047 +2002-10-01,"Delivered to Consumers","Missouri","MO",14038 +2002-10-01,"Delivered to Consumers","New Jersey","NJ",35116 +2002-10-01,"Delivered to Consumers","Arizona","AZ",19112 +2002-10-01,"Delivered to Consumers","New Mexico","NM",7065 +2002-10-01,"Delivered to Consumers","Delaware","DE",3843 +2002-10-01,"Delivered to Consumers","Oklahoma","OK",26058 +2002-10-01,"Delivered to Consumers","New Hampshire","NH",1038 +2002-10-01,"Delivered to Consumers","Kansas","KS",13007 +2002-10-01,"Delivered to Consumers","Louisiana","LA",94054 +2002-10-01,"Delivered to Consumers","Utah","UT",11589 +2002-10-01,"Delivered to Consumers","U.S.","U.S.",1506936 +2002-10-01,"Delivered to Consumers","Indiana","IN",37204 +2002-10-01,"Delivered to Consumers","West Virginia","WV",6781 +2002-10-01,"Delivered to Consumers","Illinois","IL",70127 +2002-10-01,"Delivered to Consumers","Alabama","AL",22744 +2002-10-01,"Delivered to Consumers","Oregon","OR",14195 +2002-10-01,"Delivered to Consumers","Georgia","GA",23785 +2002-10-01,"Delivered to Consumers","Washington","WA",15045 +2002-10-01,"Delivered to Consumers","Alaska","AK",10827 +2002-10-01,"Delivered to Consumers","Nebraska","NE",6218 +2002-10-01,"Delivered to Consumers","California","CA",177028 +2002-10-01,"Delivered to Consumers","South Carolina","SC",10993 +2002-10-01,"Delivered to Consumers","Florida","FL",64259 +2002-10-01,"Delivered to Consumers","District of Columbia","DC",2189 +2002-10-01,"Delivered to Consumers","South Dakota","SD",2623 +2002-10-01,"Delivered to Consumers","Maryland","MD",12911 +2002-10-01,"Delivered to Consumers","Hawaii","HI",215 +2002-10-01,"Delivered to Consumers","Idaho","ID",4162 +2002-10-01,"Delivered to Consumers","Tennessee","TN",13432 +2002-10-01,"Delivered to Consumers","Ohio","OH",51972 +2002-10-01,"Delivered to Consumers","Iowa","IA",14561 +2002-10-01,"Delivered to Consumers","Arkansas","AR",16932 +2002-10-01,"Delivered to Consumers","Colorado","CO",34563 +2002-10-01,"Delivered to Consumers","Nevada","NV",13798 +2002-10-01,"Delivered to Consumers","North Dakota","ND",3550 +2002-10-01,"Delivered to Consumers","Vermont","VT",485 +2002-10-01,"Delivered to Consumers","Rhode Island","RI",5720 +2002-10-01,"Delivered to Consumers","New York","NY",77281 +2002-10-01,"Delivered to Consumers","Michigan","MI",53419 +2002-10-01,"Delivered to Consumers","Connecticut","CT",11230 +2002-10-01,"Delivered to Consumers","Texas","TX",291387 +2002-10-01,"Delivered to Consumers","Minnesota","MN",27484 +2002-10-01,"Delivered to Consumers","Wyoming","WY",6126 +2002-10-01,"Delivered to Consumers","Kentucky","KY",14628 +2002-10-01,"Delivered to Consumers","Virginia","VA",16512 +2002-10-01,"Delivered to Consumers","Pennsylvania","PA",40462 +2002-10-01,"Delivered to Consumers","Mississippi","MS",19663 +2002-10-01,"Delivered to Consumers","Massachusetts","MA",27484 +2002-10-01,"Delivered to Consumers","Maine","ME",10974 +2002-10-01,"Electric Power Consumption","New York","NY",30298 +2002-10-01,"Electric Power Consumption","Oregon","OR",5579 +2002-10-01,"Electric Power Consumption","Wisconsin","WI",956 +2002-10-01,"Electric Power Consumption","Nebraska","NE",413 +2002-10-01,"Electric Power Consumption","Indiana","IN",1903 +2002-10-01,"Electric Power Consumption","Florida","FL",52477 +2002-10-01,"Electric Power Consumption","Louisiana","LA",23674 +2002-10-01,"Electric Power Consumption","Rhode Island","RI",3985 +2002-10-01,"Electric Power Consumption","Oklahoma","OK",12173 +2002-10-01,"Electric Power Consumption","Illinois","IL",2177 +2002-10-01,"Electric Power Consumption","Vermont","VT",4 +2002-10-01,"Electric Power Consumption","Kentucky","KY",296 +2002-10-01,"Electric Power Consumption","California","CA",57204 +2002-10-01,"Electric Power Consumption","Alabama","AL",7064 +2002-10-01,"Electric Power Consumption","Alaska","AK",2861 +2002-10-01,"Electric Power Consumption","Idaho","ID",170 +2002-10-01,"Electric Power Consumption","South Carolina","SC",1101 +2002-10-01,"Electric Power Consumption","Kansas","KS",683 +2002-10-01,"Electric Power Consumption","Pennsylvania","PA",3617 +2002-10-01,"Electric Power Consumption","Mississippi","MS",8932 +2002-10-01,"Electric Power Consumption","New Hampshire","NH",194 +2002-10-01,"Electric Power Consumption","Maryland","MD",1098 +2002-10-01,"Electric Power Consumption","Connecticut","CT",4687 +2002-10-01,"Electric Power Consumption","New Mexico","NM",2866 +2002-10-01,"Electric Power Consumption","Colorado","CO",7059 +2002-10-01,"Electric Power Consumption","Michigan","MI",10028 +2002-10-01,"Electric Power Consumption","Iowa","IA",281 +2002-10-01,"Electric Power Consumption","Maine","ME",7554 +2002-10-01,"Electric Power Consumption","Hawaii","HI",0 +2002-10-01,"Electric Power Consumption","North Dakota","ND",0 +2002-10-01,"Electric Power Consumption","Washington","WA",4011 +2002-10-01,"Electric Power Consumption","New Jersey","NJ",10334 +2002-10-01,"Electric Power Consumption","Minnesota","MN",830 +2002-10-01,"Electric Power Consumption","Nevada","NV",9859 +2002-10-01,"Electric Power Consumption","Missouri","MO",543 +2002-10-01,"Electric Power Consumption","North Carolina","NC",1979 +2002-10-01,"Electric Power Consumption","Ohio","OH",1034 +2002-10-01,"Electric Power Consumption","Arizona","AZ",14354 +2002-10-01,"Electric Power Consumption","Virginia","VA",1913 +2002-10-01,"Electric Power Consumption","Arkansas","AR",3676 +2002-10-01,"Electric Power Consumption","Texas","TX",124397 +2002-10-01,"Electric Power Consumption","Utah","UT",2334 +2002-10-01,"Electric Power Consumption","West Virginia","WV",81 +2002-10-01,"Electric Power Consumption","Tennessee","TN",1 +2002-10-01,"Electric Power Consumption","South Dakota","SD",27 +2002-10-01,"Electric Power Consumption","Massachusetts","MA",11693 +2002-10-01,"Electric Power Consumption","Wyoming","WY",498 +2002-10-01,"Electric Power Consumption","U.S.","U.S.",442357 +2002-10-01,"Electric Power Consumption","Montana","MT",1 +2002-10-01,"Electric Power Consumption","Delaware","DE",1248 +2002-10-01,"Electric Power Consumption","Georgia","GA",4206 +2002-10-01,"Industrial Consumption","U.S.","U.S.",613448 +2002-10-01,"Industrial Consumption","Virginia","VA",6162 +2002-10-01,"Industrial Consumption","New Hampshire","NH",202 +2002-10-01,"Industrial Consumption","Minnesota","MN",8535 +2002-10-01,"Industrial Consumption","Kentucky","KY",9145 +2002-10-01,"Industrial Consumption","North Dakota","ND",1491 +2002-10-01,"Industrial Consumption","Montana","MT",1920 +2002-10-01,"Industrial Consumption","Hawaii","HI",35 +2002-10-01,"Industrial Consumption","New Mexico","NM",1917 +2002-10-01,"Industrial Consumption","New Jersey","NJ",6139 +2002-10-01,"Industrial Consumption","Connecticut","CT",2388 +2002-10-01,"Industrial Consumption","Indiana","IN",22268 +2002-10-01,"Industrial Consumption","North Carolina","NC",8589 +2002-10-01,"Industrial Consumption","Georgia","GA",11650 +2002-10-01,"Industrial Consumption","Maryland","MD",2161 +2002-10-01,"Industrial Consumption","Missouri","MO",6007 +2002-10-01,"Industrial Consumption","Alabama","AL",13268 +2002-10-01,"Industrial Consumption","South Dakota","SD",901 +2002-10-01,"Industrial Consumption","Pennsylvania","PA",17010 +2002-10-01,"Industrial Consumption","Oregon","OR",5848 +2002-10-01,"Industrial Consumption","Maine","ME",3011 +2002-10-01,"Industrial Consumption","Kansas","KS",8045 +2002-10-01,"Industrial Consumption","New York","NY",7131 +2002-10-01,"Industrial Consumption","California","CA",70242 +2002-10-01,"Industrial Consumption","South Carolina","SC",8097 +2002-10-01,"Industrial Consumption","West Virginia","WV",4218 +2002-10-01,"Industrial Consumption","Vermont","VT",269 +2002-10-01,"Industrial Consumption","Idaho","ID",2490 +2002-10-01,"Industrial Consumption","Michigan","MI",15825 +2002-10-01,"Industrial Consumption","Massachusetts","MA",6264 +2002-10-01,"Industrial Consumption","Nevada","NV",1033 +2002-10-01,"Industrial Consumption","Mississippi","MS",8724 +2002-10-01,"Industrial Consumption","Texas","TX",142717 +2002-10-01,"Industrial Consumption","Nebraska","NE",2846 +2002-10-01,"Industrial Consumption","Wyoming","WY",3741 +2002-10-01,"Industrial Consumption","Wisconsin","WI",11328 +2002-10-01,"Industrial Consumption","Iowa","IA",7622 +2002-10-01,"Industrial Consumption","Delaware","DE",1965 +2002-10-01,"Industrial Consumption","Oklahoma","OK",10612 +2002-10-01,"Industrial Consumption","Louisiana","LA",67104 +2002-10-01,"Industrial Consumption","Washington","WA",5633 +2002-10-01,"Industrial Consumption","Arizona","AZ",1530 +2002-10-01,"Industrial Consumption","Utah","UT",2415 +2002-10-01,"Industrial Consumption","Arkansas","AR",10289 +2002-10-01,"Industrial Consumption","Florida","FL",7102 +2002-10-01,"Industrial Consumption","Illinois","IL",24645 +2002-10-01,"Industrial Consumption","Rhode Island","RI",578 +2002-10-01,"Industrial Consumption","District of Columbia","DC",0 +2002-10-01,"Industrial Consumption","Alaska","AK",5220 +2002-10-01,"Industrial Consumption","Colorado","CO",12317 +2002-10-01,"Industrial Consumption","Ohio","OH",25594 +2002-10-01,"Industrial Consumption","Tennessee","TN",9208 +2002-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91673 +2002-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",47265 +2002-10-01,"Residential Consumption","South Carolina","SC",609 +2002-10-01,"Residential Consumption","Oregon","OR",1464 +2002-10-01,"Residential Consumption","North Carolina","NC",2051 +2002-10-01,"Residential Consumption","Mississippi","MS",773 +2002-10-01,"Residential Consumption","Nevada","NV",1428 +2002-10-01,"Residential Consumption","Idaho","ID",868 +2002-10-01,"Residential Consumption","New Hampshire","NH",273 +2002-10-01,"Residential Consumption","Wyoming","WY",1023 +2002-10-01,"Residential Consumption","U.S.","U.S.",250573 +2002-10-01,"Residential Consumption","Texas","TX",8784 +2002-10-01,"Residential Consumption","Wisconsin","WI",9705 +2002-10-01,"Residential Consumption","North Dakota","ND",1046 +2002-10-01,"Residential Consumption","New Jersey","NJ",10006 +2002-10-01,"Residential Consumption","Washington","WA",3158 +2002-10-01,"Residential Consumption","California","CA",31451 +2002-10-01,"Residential Consumption","West Virginia","WV",1556 +2002-10-01,"Residential Consumption","Illinois","IL",29026 +2002-10-01,"Residential Consumption","Ohio","OH",16176 +2002-10-01,"Residential Consumption","Utah","UT",4514 +2002-10-01,"Residential Consumption","Pennsylvania","PA",11314 +2002-10-01,"Residential Consumption","Massachusetts","MA",4162 +2002-10-01,"Residential Consumption","Kentucky","KY",3065 +2002-10-01,"Residential Consumption","Alabama","AL",1225 +2002-10-01,"Residential Consumption","Connecticut","CT",1751 +2002-10-01,"Residential Consumption","Virginia","VA",4235 +2002-10-01,"Residential Consumption","District of Columbia","DC",907 +2002-10-01,"Residential Consumption","Montana","MT",1459 +2002-10-01,"Residential Consumption","New York","NY",17278 +2002-10-01,"Residential Consumption","Tennessee","TN",1852 +2002-10-01,"Residential Consumption","South Dakota","SD",933 +2002-10-01,"Residential Consumption","Minnesota","MN",10215 +2002-10-01,"Residential Consumption","Indiana","IN",7676 +2002-10-01,"Residential Consumption","Florida","FL",744 +2002-10-01,"Residential Consumption","Alaska","AK",1214 +2002-10-01,"Residential Consumption","Rhode Island","RI",603 +2002-10-01,"Residential Consumption","Louisiana","LA",1743 +2002-10-01,"Residential Consumption","Iowa","IA",3967 +2002-10-01,"Residential Consumption","Hawaii","HI",36 +2002-10-01,"Residential Consumption","Nebraska","NE",1723 +2002-10-01,"Residential Consumption","Maryland","MD",5033 +2002-10-01,"Residential Consumption","New Mexico","NM",1150 +2002-10-01,"Residential Consumption","Colorado","CO",9908 +2002-10-01,"Residential Consumption","Kansas","KS",2377 +2002-10-01,"Residential Consumption","Missouri","MO",4063 +2002-10-01,"Residential Consumption","Delaware","DE",275 +2002-10-01,"Residential Consumption","Arizona","AZ",1265 +2002-10-01,"Residential Consumption","Vermont","VT",98 +2002-10-01,"Residential Consumption","Michigan","MI",17940 +2002-10-01,"Residential Consumption","Georgia","GA",5372 +2002-10-01,"Residential Consumption","Maine","ME",70 +2002-10-01,"Residential Consumption","Arkansas","AR",1219 +2002-10-01,"Residential Consumption","Oklahoma","OK",1791 +2002-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",1270 +2002-11-01,"Commercial Consumption","South Dakota","SD",1186 +2002-11-01,"Commercial Consumption","Montana","MT",1441 +2002-11-01,"Commercial Consumption","Maine","ME",434 +2002-11-01,"Commercial Consumption","Alaska","AK",1707 +2002-11-01,"Commercial Consumption","Arizona","AZ",2471 +2002-11-01,"Commercial Consumption","Utah","UT",3580 +2002-11-01,"Commercial Consumption","Oklahoma","OK",2941 +2002-11-01,"Commercial Consumption","Missouri","MO",5514 +2002-11-01,"Commercial Consumption","Wisconsin","WI",9978 +2002-11-01,"Commercial Consumption","New Hampshire","NH",917 +2002-11-01,"Commercial Consumption","Ohio","OH",16250 +2002-11-01,"Commercial Consumption","Idaho","ID",1249 +2002-11-01,"Commercial Consumption","Hawaii","HI",146 +2002-11-01,"Commercial Consumption","California","CA",18290 +2002-11-01,"Commercial Consumption","Mississippi","MS",1503 +2002-11-01,"Commercial Consumption","Illinois","IL",21703 +2002-11-01,"Commercial Consumption","Massachusetts","MA",4825 +2002-11-01,"Commercial Consumption","Kentucky","KY",3894 +2002-11-01,"Commercial Consumption","Alabama","AL",1842 +2002-11-01,"Commercial Consumption","New York","NY",37932 +2002-11-01,"Commercial Consumption","Tennessee","TN",4289 +2002-11-01,"Commercial Consumption","District of Columbia","DC",2064 +2002-11-01,"Commercial Consumption","Minnesota","MN",11035 +2002-11-01,"Commercial Consumption","Colorado","CO",7658 +2002-11-01,"Commercial Consumption","New Mexico","NM",1734 +2002-11-01,"Commercial Consumption","Oregon","OR",2311 +2002-11-01,"Commercial Consumption","Virginia","VA",6538 +2002-11-01,"Commercial Consumption","New Jersey","NJ",13130 +2002-11-01,"Commercial Consumption","Maryland","MD",7122 +2002-11-01,"Commercial Consumption","Kansas","KS",3693 +2002-11-01,"Commercial Consumption","Florida","FL",4433 +2002-11-01,"Commercial Consumption","Nebraska","NE",2337 +2002-11-01,"Commercial Consumption","Michigan","MI",16602 +2002-11-01,"Commercial Consumption","Washington","WA",3995 +2002-11-01,"Commercial Consumption","Pennsylvania","PA",13337 +2002-11-01,"Commercial Consumption","Vermont","VT",238 +2002-11-01,"Commercial Consumption","Rhode Island","RI",1001 +2002-11-01,"Commercial Consumption","Delaware","DE",682 +2002-11-01,"Commercial Consumption","Nevada","NV",1926 +2002-11-01,"Commercial Consumption","Indiana","IN",8600 +2002-11-01,"Commercial Consumption","South Carolina","SC",1698 +2002-11-01,"Commercial Consumption","North Dakota","ND",1315 +2002-11-01,"Commercial Consumption","North Carolina","NC",3620 +2002-11-01,"Commercial Consumption","Wyoming","WY",1381 +2002-11-01,"Commercial Consumption","West Virginia","WV",2487 +2002-11-01,"Commercial Consumption","U.S.","U.S.",298091 +2002-11-01,"Commercial Consumption","Texas","TX",19915 +2002-11-01,"Commercial Consumption","Georgia","GA",4256 +2002-11-01,"Commercial Consumption","Iowa","IA",4946 +2002-11-01,"Commercial Consumption","Connecticut","CT",3468 +2002-11-01,"Commercial Consumption","Arkansas","AR",2759 +2002-11-01,"Commercial Consumption","Louisiana","LA",1716 +2002-11-01,"Delivered to Consumers","Nevada","NV",14840 +2002-11-01,"Delivered to Consumers","Arizona","AZ",17712 +2002-11-01,"Delivered to Consumers","Florida","FL",47600 +2002-11-01,"Delivered to Consumers","U.S.","U.S.",1766395 +2002-11-01,"Delivered to Consumers","Illinois","IL",100944 +2002-11-01,"Delivered to Consumers","New York","NY",106098 +2002-11-01,"Delivered to Consumers","Oklahoma","OK",27197 +2002-11-01,"Delivered to Consumers","Iowa","IA",22219 +2002-11-01,"Delivered to Consumers","Pennsylvania","PA",58542 +2002-11-01,"Delivered to Consumers","Massachusetts","MA",31958 +2002-11-01,"Delivered to Consumers","Georgia","GA",32829 +2002-11-01,"Delivered to Consumers","Minnesota","MN",37214 +2002-11-01,"Delivered to Consumers","Utah","UT",13814 +2002-11-01,"Delivered to Consumers","Arkansas","AR",17770 +2002-11-01,"Delivered to Consumers","Missouri","MO",22945 +2002-11-01,"Delivered to Consumers","South Carolina","SC",12221 +2002-11-01,"Delivered to Consumers","Kansas","KS",21946 +2002-11-01,"Delivered to Consumers","Ohio","OH",76275 +2002-11-01,"Delivered to Consumers","Mississippi","MS",18433 +2002-11-01,"Delivered to Consumers","Louisiana","LA",96857 +2002-11-01,"Delivered to Consumers","North Dakota","ND",3908 +2002-11-01,"Delivered to Consumers","New Mexico","NM",9000 +2002-11-01,"Delivered to Consumers","Indiana","IN",49556 +2002-11-01,"Delivered to Consumers","Delaware","DE",3936 +2002-11-01,"Delivered to Consumers","Alaska","AK",10291 +2002-11-01,"Delivered to Consumers","Michigan","MI",82015 +2002-11-01,"Delivered to Consumers","Kentucky","KY",21069 +2002-11-01,"Delivered to Consumers","Alabama","AL",22838 +2002-11-01,"Delivered to Consumers","North Carolina","NC",19024 +2002-11-01,"Delivered to Consumers","Washington","WA",20551 +2002-11-01,"Delivered to Consumers","Wyoming","WY",7421 +2002-11-01,"Delivered to Consumers","Vermont","VT",803 +2002-11-01,"Delivered to Consumers","Connecticut","CT",14214 +2002-11-01,"Delivered to Consumers","Texas","TX",278990 +2002-11-01,"Delivered to Consumers","Oregon","OR",16780 +2002-11-01,"Delivered to Consumers","New Hampshire","NH",1847 +2002-11-01,"Delivered to Consumers","West Virginia","WV",10011 +2002-11-01,"Delivered to Consumers","South Dakota","SD",3873 +2002-11-01,"Delivered to Consumers","Rhode Island","RI",8981 +2002-11-01,"Delivered to Consumers","Montana","MT",5929 +2002-11-01,"Delivered to Consumers","Tennessee","TN",20337 +2002-11-01,"Delivered to Consumers","Wisconsin","WI",39330 +2002-11-01,"Delivered to Consumers","Nebraska","NE",9753 +2002-11-01,"Delivered to Consumers","Colorado","CO",38884 +2002-11-01,"Delivered to Consumers","California","CA",170370 +2002-11-01,"Delivered to Consumers","New Jersey","NJ",53058 +2002-11-01,"Delivered to Consumers","Maryland","MD",20408 +2002-11-01,"Delivered to Consumers","Hawaii","HI",227 +2002-11-01,"Delivered to Consumers","Idaho","ID",5950 +2002-11-01,"Delivered to Consumers","Virginia","VA",22349 +2002-11-01,"Delivered to Consumers","Maine","ME",12161 +2002-11-01,"Delivered to Consumers","District of Columbia","DC",3889 +2002-11-01,"Electric Power Consumption","Virginia","VA",659 +2002-11-01,"Electric Power Consumption","Colorado","CO",5672 +2002-11-01,"Electric Power Consumption","New York","NY",23132 +2002-11-01,"Electric Power Consumption","Rhode Island","RI",5812 +2002-11-01,"Electric Power Consumption","Missouri","MO",576 +2002-11-01,"Electric Power Consumption","New Hampshire","NH",0 +2002-11-01,"Electric Power Consumption","Indiana","IN",2010 +2002-11-01,"Electric Power Consumption","California","CA",52006 +2002-11-01,"Electric Power Consumption","New Jersey","NJ",11207 +2002-11-01,"Electric Power Consumption","Oklahoma","OK",7041 +2002-11-01,"Electric Power Consumption","Minnesota","MN",605 +2002-11-01,"Electric Power Consumption","Iowa","IA",264 +2002-11-01,"Electric Power Consumption","South Dakota","SD",12 +2002-11-01,"Electric Power Consumption","Hawaii","HI",0 +2002-11-01,"Electric Power Consumption","Connecticut","CT",4165 +2002-11-01,"Electric Power Consumption","Alaska","AK",2605 +2002-11-01,"Electric Power Consumption","New Mexico","NM",2430 +2002-11-01,"Electric Power Consumption","Oregon","OR",5330 +2002-11-01,"Electric Power Consumption","Vermont","VT",4 +2002-11-01,"Electric Power Consumption","Tennessee","TN",77 +2002-11-01,"Electric Power Consumption","North Carolina","NC",413 +2002-11-01,"Electric Power Consumption","Maine","ME",7749 +2002-11-01,"Electric Power Consumption","Ohio","OH",410 +2002-11-01,"Electric Power Consumption","Texas","TX",103613 +2002-11-01,"Electric Power Consumption","Michigan","MI",7328 +2002-11-01,"Electric Power Consumption","Massachusetts","MA",9628 +2002-11-01,"Electric Power Consumption","Kansas","KS",781 +2002-11-01,"Electric Power Consumption","West Virginia","WV",73 +2002-11-01,"Electric Power Consumption","Pennsylvania","PA",2284 +2002-11-01,"Electric Power Consumption","Kentucky","KY",261 +2002-11-01,"Electric Power Consumption","Idaho","ID",98 +2002-11-01,"Electric Power Consumption","Nevada","NV",9317 +2002-11-01,"Electric Power Consumption","Mississippi","MS",6416 +2002-11-01,"Electric Power Consumption","Georgia","GA",849 +2002-11-01,"Electric Power Consumption","Louisiana","LA",16204 +2002-11-01,"Electric Power Consumption","U.S.","U.S.",351612 +2002-11-01,"Electric Power Consumption","Delaware","DE",269 +2002-11-01,"Electric Power Consumption","Florida","FL",35484 +2002-11-01,"Electric Power Consumption","Arkansas","AR",1415 +2002-11-01,"Electric Power Consumption","Utah","UT",1065 +2002-11-01,"Electric Power Consumption","Maryland","MD",769 +2002-11-01,"Electric Power Consumption","Arizona","AZ",11510 +2002-11-01,"Electric Power Consumption","Washington","WA",3821 +2002-11-01,"Electric Power Consumption","South Carolina","SC",396 +2002-11-01,"Electric Power Consumption","Illinois","IL",1013 +2002-11-01,"Electric Power Consumption","Wisconsin","WI",1028 +2002-11-01,"Electric Power Consumption","Wyoming","WY",217 +2002-11-01,"Electric Power Consumption","Nebraska","NE",175 +2002-11-01,"Electric Power Consumption","North Dakota","ND",0 +2002-11-01,"Electric Power Consumption","Montana","MT",1 +2002-11-01,"Electric Power Consumption","Alabama","AL",5415 +2002-11-01,"Industrial Consumption","North Dakota","ND",1306 +2002-11-01,"Industrial Consumption","Montana","MT",2215 +2002-11-01,"Industrial Consumption","Missouri","MO",5966 +2002-11-01,"Industrial Consumption","Louisiana","LA",76062 +2002-11-01,"Industrial Consumption","Virginia","VA",5866 +2002-11-01,"Industrial Consumption","Tennessee","TN",10219 +2002-11-01,"Industrial Consumption","Alaska","AK",4578 +2002-11-01,"Industrial Consumption","Massachusetts","MA",7442 +2002-11-01,"Industrial Consumption","Colorado","CO",9933 +2002-11-01,"Industrial Consumption","Washington","WA",5874 +2002-11-01,"Industrial Consumption","New Mexico","NM",2147 +2002-11-01,"Industrial Consumption","U.S.","U.S.",632273 +2002-11-01,"Industrial Consumption","New Jersey","NJ",6794 +2002-11-01,"Industrial Consumption","Kentucky","KY",9856 +2002-11-01,"Industrial Consumption","Indiana","IN",23322 +2002-11-01,"Industrial Consumption","Delaware","DE",2120 +2002-11-01,"Industrial Consumption","North Carolina","NC",8746 +2002-11-01,"Industrial Consumption","District of Columbia","DC",0 +2002-11-01,"Industrial Consumption","Maryland","MD",2776 +2002-11-01,"Industrial Consumption","Utah","UT",2409 +2002-11-01,"Industrial Consumption","Oregon","OR",5714 +2002-11-01,"Industrial Consumption","Nebraska","NE",2950 +2002-11-01,"Industrial Consumption","West Virginia","WV",4094 +2002-11-01,"Industrial Consumption","Wyoming","WY",4028 +2002-11-01,"Industrial Consumption","Connecticut","CT",2516 +2002-11-01,"Industrial Consumption","South Dakota","SD",1185 +2002-11-01,"Industrial Consumption","Kansas","KS",10155 +2002-11-01,"Industrial Consumption","South Carolina","SC",8096 +2002-11-01,"Industrial Consumption","Florida","FL",6751 +2002-11-01,"Industrial Consumption","Georgia","GA",12080 +2002-11-01,"Industrial Consumption","Ohio","OH",28066 +2002-11-01,"Industrial Consumption","Pennsylvania","PA",18503 +2002-11-01,"Industrial Consumption","Mississippi","MS",8987 +2002-11-01,"Industrial Consumption","Maine","ME",3868 +2002-11-01,"Industrial Consumption","Arkansas","AR",10474 +2002-11-01,"Industrial Consumption","Wisconsin","WI",12517 +2002-11-01,"Industrial Consumption","New Hampshire","NH",290 +2002-11-01,"Industrial Consumption","Iowa","IA",9370 +2002-11-01,"Industrial Consumption","Michigan","MI",19810 +2002-11-01,"Industrial Consumption","Rhode Island","RI",588 +2002-11-01,"Industrial Consumption","Hawaii","HI",35 +2002-11-01,"Industrial Consumption","Oklahoma","OK",11799 +2002-11-01,"Industrial Consumption","Arizona","AZ",1622 +2002-11-01,"Industrial Consumption","New York","NY",8270 +2002-11-01,"Industrial Consumption","California","CA",63406 +2002-11-01,"Industrial Consumption","Minnesota","MN",9542 +2002-11-01,"Industrial Consumption","Nevada","NV",994 +2002-11-01,"Industrial Consumption","Alabama","AL",12690 +2002-11-01,"Industrial Consumption","Texas","TX",137598 +2002-11-01,"Industrial Consumption","Vermont","VT",287 +2002-11-01,"Industrial Consumption","Idaho","ID",2451 +2002-11-01,"Industrial Consumption","Illinois","IL",25907 +2002-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91840 +2002-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",55394 +2002-11-01,"Residential Consumption","Oregon","OR",3424 +2002-11-01,"Residential Consumption","Iowa","IA",7640 +2002-11-01,"Residential Consumption","Hawaii","HI",46 +2002-11-01,"Residential Consumption","Oklahoma","OK",5416 +2002-11-01,"Residential Consumption","Louisiana","LA",2875 +2002-11-01,"Residential Consumption","Maryland","MD",9741 +2002-11-01,"Residential Consumption","Kansas","KS",7316 +2002-11-01,"Residential Consumption","Delaware","DE",865 +2002-11-01,"Residential Consumption","Ohio","OH",31550 +2002-11-01,"Residential Consumption","Massachusetts","MA",10063 +2002-11-01,"Residential Consumption","Colorado","CO",15622 +2002-11-01,"Residential Consumption","California","CA",36668 +2002-11-01,"Residential Consumption","Alaska","AK",1401 +2002-11-01,"Residential Consumption","West Virginia","WV",3357 +2002-11-01,"Residential Consumption","Mississippi","MS",1527 +2002-11-01,"Residential Consumption","Wisconsin","WI",15807 +2002-11-01,"Residential Consumption","Utah","UT",6759 +2002-11-01,"Residential Consumption","Nebraska","NE",4290 +2002-11-01,"Residential Consumption","District of Columbia","DC",1825 +2002-11-01,"Residential Consumption","New Mexico","NM",2689 +2002-11-01,"Residential Consumption","Indiana","IN",15624 +2002-11-01,"Residential Consumption","Montana","MT",2272 +2002-11-01,"Residential Consumption","Washington","WA",6861 +2002-11-01,"Residential Consumption","Missouri","MO",10890 +2002-11-01,"Residential Consumption","Connecticut","CT",4066 +2002-11-01,"Residential Consumption","Vermont","VT",274 +2002-11-01,"Residential Consumption","Michigan","MI",38275 +2002-11-01,"Residential Consumption","South Dakota","SD",1491 +2002-11-01,"Residential Consumption","Minnesota","MN",16032 +2002-11-01,"Residential Consumption","Georgia","GA",15644 +2002-11-01,"Residential Consumption","Pennsylvania","PA",24419 +2002-11-01,"Residential Consumption","Maine","ME",110 +2002-11-01,"Residential Consumption","North Dakota","ND",1287 +2002-11-01,"Residential Consumption","Texas","TX",17864 +2002-11-01,"Residential Consumption","Tennessee","TN",5751 +2002-11-01,"Residential Consumption","Virginia","VA",9286 +2002-11-01,"Residential Consumption","Nevada","NV",2603 +2002-11-01,"Residential Consumption","Florida","FL",931 +2002-11-01,"Residential Consumption","Idaho","ID",2152 +2002-11-01,"Residential Consumption","New Jersey","NJ",21927 +2002-11-01,"Residential Consumption","Kentucky","KY",7058 +2002-11-01,"Residential Consumption","Arizona","AZ",2108 +2002-11-01,"Residential Consumption","U.S.","U.S.",483192 +2002-11-01,"Residential Consumption","Rhode Island","RI",1580 +2002-11-01,"Residential Consumption","North Carolina","NC",6245 +2002-11-01,"Residential Consumption","Wyoming","WY",1794 +2002-11-01,"Residential Consumption","Illinois","IL",52322 +2002-11-01,"Residential Consumption","South Carolina","SC",2031 +2002-11-01,"Residential Consumption","Arkansas","AR",3121 +2002-11-01,"Residential Consumption","New Hampshire","NH",640 +2002-11-01,"Residential Consumption","Alabama","AL",2890 +2002-11-01,"Residential Consumption","New York","NY",36764 +2002-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",1229 +2002-12-01,"Commercial Consumption","South Carolina","SC",2875 +2002-12-01,"Commercial Consumption","North Dakota","ND",1617 +2002-12-01,"Commercial Consumption","North Carolina","NC",6225 +2002-12-01,"Commercial Consumption","Utah","UT",4392 +2002-12-01,"Commercial Consumption","New Hampshire","NH",1344 +2002-12-01,"Commercial Consumption","Florida","FL",5478 +2002-12-01,"Commercial Consumption","Iowa","IA",6716 +2002-12-01,"Commercial Consumption","Alaska","AK",2120 +2002-12-01,"Commercial Consumption","Mississippi","MS",2698 +2002-12-01,"Commercial Consumption","Tennessee","TN",8138 +2002-12-01,"Commercial Consumption","Illinois","IL",28977 +2002-12-01,"Commercial Consumption","West Virginia","WV",3453 +2002-12-01,"Commercial Consumption","Washington","WA",5158 +2002-12-01,"Commercial Consumption","Oregon","OR",3297 +2002-12-01,"Commercial Consumption","Oklahoma","OK",4846 +2002-12-01,"Commercial Consumption","Pennsylvania","PA",20881 +2002-12-01,"Commercial Consumption","Massachusetts","MA",8514 +2002-12-01,"Commercial Consumption","New Jersey","NJ",23286 +2002-12-01,"Commercial Consumption","Maryland","MD",9825 +2002-12-01,"Commercial Consumption","Vermont","VT",332 +2002-12-01,"Commercial Consumption","Nevada","NV",2524 +2002-12-01,"Commercial Consumption","Colorado","CO",9580 +2002-12-01,"Commercial Consumption","New Mexico","NM",3098 +2002-12-01,"Commercial Consumption","Wisconsin","WI",13044 +2002-12-01,"Commercial Consumption","Kansas","KS",5058 +2002-12-01,"Commercial Consumption","Ohio","OH",24603 +2002-12-01,"Commercial Consumption","Hawaii","HI",151 +2002-12-01,"Commercial Consumption","Minnesota","MN",14311 +2002-12-01,"Commercial Consumption","Alabama","AL",3370 +2002-12-01,"Commercial Consumption","New York","NY",42734 +2002-12-01,"Commercial Consumption","Michigan","MI",24624 +2002-12-01,"Commercial Consumption","Missouri","MO",8212 +2002-12-01,"Commercial Consumption","Montana","MT",1753 +2002-12-01,"Commercial Consumption","Texas","TX",27224 +2002-12-01,"Commercial Consumption","Arkansas","AR",3796 +2002-12-01,"Commercial Consumption","District of Columbia","DC",2663 +2002-12-01,"Commercial Consumption","South Dakota","SD",1375 +2002-12-01,"Commercial Consumption","Maine","ME",631 +2002-12-01,"Commercial Consumption","Kentucky","KY",5827 +2002-12-01,"Commercial Consumption","U.S.","U.S.",419358 +2002-12-01,"Commercial Consumption","Rhode Island","RI",1544 +2002-12-01,"Commercial Consumption","Connecticut","CT",5400 +2002-12-01,"Commercial Consumption","California","CA",22275 +2002-12-01,"Commercial Consumption","Arizona","AZ",3380 +2002-12-01,"Commercial Consumption","Wyoming","WY",1831 +2002-12-01,"Commercial Consumption","Virginia","VA",9486 +2002-12-01,"Commercial Consumption","Idaho","ID",1597 +2002-12-01,"Commercial Consumption","Nebraska","NE",3579 +2002-12-01,"Commercial Consumption","Louisiana","LA",2863 +2002-12-01,"Commercial Consumption","Georgia","GA",8148 +2002-12-01,"Commercial Consumption","Delaware","DE",1100 +2002-12-01,"Commercial Consumption","Indiana","IN",13405 +2002-12-01,"Delivered to Consumers","New Mexico","NM",12303 +2002-12-01,"Delivered to Consumers","Vermont","VT",1003 +2002-12-01,"Delivered to Consumers","Illinois","IL",131720 +2002-12-01,"Delivered to Consumers","Alaska","AK",11621 +2002-12-01,"Delivered to Consumers","Idaho","ID",7000 +2002-12-01,"Delivered to Consumers","Iowa","IA",27225 +2002-12-01,"Delivered to Consumers","Missouri","MO",32834 +2002-12-01,"Delivered to Consumers","California","CA",208568 +2002-12-01,"Delivered to Consumers","New Jersey","NJ",78844 +2002-12-01,"Delivered to Consumers","Washington","WA",25818 +2002-12-01,"Delivered to Consumers","North Dakota","ND",4743 +2002-12-01,"Delivered to Consumers","Florida","FL",45144 +2002-12-01,"Delivered to Consumers","District of Columbia","DC",5436 +2002-12-01,"Delivered to Consumers","Utah","UT",16447 +2002-12-01,"Delivered to Consumers","Maryland","MD",28827 +2002-12-01,"Delivered to Consumers","Tennessee","TN",31833 +2002-12-01,"Delivered to Consumers","Ohio","OH",108800 +2002-12-01,"Delivered to Consumers","North Carolina","NC",27257 +2002-12-01,"Delivered to Consumers","Colorado","CO",46826 +2002-12-01,"Delivered to Consumers","Nevada","NV",16521 +2002-12-01,"Delivered to Consumers","U.S.","U.S.",2214167 +2002-12-01,"Delivered to Consumers","Delaware","DE",5597 +2002-12-01,"Delivered to Consumers","New York","NY",130678 +2002-12-01,"Delivered to Consumers","Montana","MT",6147 +2002-12-01,"Delivered to Consumers","Hawaii","HI",236 +2002-12-01,"Delivered to Consumers","Virginia","VA",32089 +2002-12-01,"Delivered to Consumers","Pennsylvania","PA",83877 +2002-12-01,"Delivered to Consumers","Maine","ME",11924 +2002-12-01,"Delivered to Consumers","New Hampshire","NH",3507 +2002-12-01,"Delivered to Consumers","Wyoming","WY",8523 +2002-12-01,"Delivered to Consumers","Connecticut","CT",18625 +2002-12-01,"Delivered to Consumers","Alabama","AL",31044 +2002-12-01,"Delivered to Consumers","Texas","TX",307430 +2002-12-01,"Delivered to Consumers","South Carolina","SC",16164 +2002-12-01,"Delivered to Consumers","Georgia","GA",47106 +2002-12-01,"Delivered to Consumers","West Virginia","WV",12951 +2002-12-01,"Delivered to Consumers","Oklahoma","OK",34574 +2002-12-01,"Delivered to Consumers","Arkansas","AR",21567 +2002-12-01,"Delivered to Consumers","Indiana","IN",68056 +2002-12-01,"Delivered to Consumers","Kentucky","KY",27646 +2002-12-01,"Delivered to Consumers","Mississippi","MS",24444 +2002-12-01,"Delivered to Consumers","Louisiana","LA",102289 +2002-12-01,"Delivered to Consumers","Michigan","MI",114268 +2002-12-01,"Delivered to Consumers","Arizona","AZ",21662 +2002-12-01,"Delivered to Consumers","Minnesota","MN",45054 +2002-12-01,"Delivered to Consumers","South Dakota","SD",4121 +2002-12-01,"Delivered to Consumers","Rhode Island","RI",9553 +2002-12-01,"Delivered to Consumers","Kansas","KS",26371 +2002-12-01,"Delivered to Consumers","Wisconsin","WI",49912 +2002-12-01,"Delivered to Consumers","Nebraska","NE",13269 +2002-12-01,"Delivered to Consumers","Massachusetts","MA",45435 +2002-12-01,"Delivered to Consumers","Oregon","OR",20005 +2002-12-01,"Electric Power Consumption","Kansas","KS",672 +2002-12-01,"Electric Power Consumption","Montana","MT",4 +2002-12-01,"Electric Power Consumption","Georgia","GA",1354 +2002-12-01,"Electric Power Consumption","Idaho","ID",125 +2002-12-01,"Electric Power Consumption","Texas","TX",101970 +2002-12-01,"Electric Power Consumption","Oklahoma","OK",7817 +2002-12-01,"Electric Power Consumption","Oregon","OR",5541 +2002-12-01,"Electric Power Consumption","Minnesota","MN",629 +2002-12-01,"Electric Power Consumption","Massachusetts","MA",11339 +2002-12-01,"Electric Power Consumption","Pennsylvania","PA",2064 +2002-12-01,"Electric Power Consumption","Iowa","IA",229 +2002-12-01,"Electric Power Consumption","U.S.","U.S.",360123 +2002-12-01,"Electric Power Consumption","South Dakota","SD",25 +2002-12-01,"Electric Power Consumption","Delaware","DE",329 +2002-12-01,"Electric Power Consumption","California","CA",57695 +2002-12-01,"Electric Power Consumption","Colorado","CO",6190 +2002-12-01,"Electric Power Consumption","Vermont","VT",3 +2002-12-01,"Electric Power Consumption","Hawaii","HI",0 +2002-12-01,"Electric Power Consumption","North Dakota","ND",0 +2002-12-01,"Electric Power Consumption","Connecticut","CT",4227 +2002-12-01,"Electric Power Consumption","New Jersey","NJ",11476 +2002-12-01,"Electric Power Consumption","Illinois","IL",1418 +2002-12-01,"Electric Power Consumption","Mississippi","MS",7909 +2002-12-01,"Electric Power Consumption","Alaska","AK",3118 +2002-12-01,"Electric Power Consumption","Utah","UT",1239 +2002-12-01,"Electric Power Consumption","Tennessee","TN",281 +2002-12-01,"Electric Power Consumption","New Hampshire","NH",103 +2002-12-01,"Electric Power Consumption","Indiana","IN",1962 +2002-12-01,"Electric Power Consumption","Florida","FL",30983 +2002-12-01,"Electric Power Consumption","Washington","WA",5690 +2002-12-01,"Electric Power Consumption","Arkansas","AR",1288 +2002-12-01,"Electric Power Consumption","South Carolina","SC",279 +2002-12-01,"Electric Power Consumption","Michigan","MI",9403 +2002-12-01,"Electric Power Consumption","West Virginia","WV",45 +2002-12-01,"Electric Power Consumption","Wyoming","WY",320 +2002-12-01,"Electric Power Consumption","Ohio","OH",428 +2002-12-01,"Electric Power Consumption","Arizona","AZ",12131 +2002-12-01,"Electric Power Consumption","New Mexico","NM",2431 +2002-12-01,"Electric Power Consumption","Rhode Island","RI",5121 +2002-12-01,"Electric Power Consumption","Nevada","NV",8707 +2002-12-01,"Electric Power Consumption","Nebraska","NE",145 +2002-12-01,"Electric Power Consumption","Maine","ME",7498 +2002-12-01,"Electric Power Consumption","Maryland","MD",932 +2002-12-01,"Electric Power Consumption","Virginia","VA",1963 +2002-12-01,"Electric Power Consumption","Louisiana","LA",14750 +2002-12-01,"Electric Power Consumption","New York","NY",21361 +2002-12-01,"Electric Power Consumption","Wisconsin","WI",1336 +2002-12-01,"Electric Power Consumption","North Carolina","NC",1315 +2002-12-01,"Electric Power Consumption","Missouri","MO",418 +2002-12-01,"Electric Power Consumption","Kentucky","KY",251 +2002-12-01,"Electric Power Consumption","Alabama","AL",5608 +2002-12-01,"Industrial Consumption","North Dakota","ND",1435 +2002-12-01,"Industrial Consumption","Colorado","CO",11415 +2002-12-01,"Industrial Consumption","West Virginia","WV",4147 +2002-12-01,"Industrial Consumption","Idaho","ID",2533 +2002-12-01,"Industrial Consumption","Maryland","MD",2485 +2002-12-01,"Industrial Consumption","New Mexico","NM",1874 +2002-12-01,"Industrial Consumption","Texas","TX",145667 +2002-12-01,"Industrial Consumption","Vermont","VT",283 +2002-12-01,"Industrial Consumption","New Jersey","NJ",7496 +2002-12-01,"Industrial Consumption","Connecticut","CT",2673 +2002-12-01,"Industrial Consumption","Kentucky","KY",9932 +2002-12-01,"Industrial Consumption","Georgia","GA",12247 +2002-12-01,"Industrial Consumption","Hawaii","HI",37 +2002-12-01,"Industrial Consumption","Nevada","NV",1064 +2002-12-01,"Industrial Consumption","Wyoming","WY",3816 +2002-12-01,"Industrial Consumption","Wisconsin","WI",14552 +2002-12-01,"Industrial Consumption","Florida","FL",6768 +2002-12-01,"Industrial Consumption","Illinois","IL",27786 +2002-12-01,"Industrial Consumption","Oklahoma","OK",12211 +2002-12-01,"Industrial Consumption","Maine","ME",3620 +2002-12-01,"Industrial Consumption","Tennessee","TN",10610 +2002-12-01,"Industrial Consumption","Alaska","AK",4308 +2002-12-01,"Industrial Consumption","Missouri","MO",6319 +2002-12-01,"Industrial Consumption","Oregon","OR",6001 +2002-12-01,"Industrial Consumption","California","CA",62987 +2002-12-01,"Industrial Consumption","Arkansas","AR",10733 +2002-12-01,"Industrial Consumption","Minnesota","MN",9675 +2002-12-01,"Industrial Consumption","Massachusetts","MA",8179 +2002-12-01,"Industrial Consumption","Washington","WA",5766 +2002-12-01,"Industrial Consumption","Ohio","OH",30823 +2002-12-01,"Industrial Consumption","Utah","UT",2488 +2002-12-01,"Industrial Consumption","Alabama","AL",14398 +2002-12-01,"Industrial Consumption","Michigan","MI",23485 +2002-12-01,"Industrial Consumption","Indiana","IN",25579 +2002-12-01,"Industrial Consumption","Delaware","DE",2600 +2002-12-01,"Industrial Consumption","Montana","MT",1547 +2002-12-01,"Industrial Consumption","New York","NY",8544 +2002-12-01,"Industrial Consumption","Mississippi","MS",9761 +2002-12-01,"Industrial Consumption","South Carolina","SC",7718 +2002-12-01,"Industrial Consumption","Nebraska","NE",3224 +2002-12-01,"Industrial Consumption","Louisiana","LA",77070 +2002-12-01,"Industrial Consumption","South Dakota","SD",1023 +2002-12-01,"Industrial Consumption","Kansas","KS",10049 +2002-12-01,"Industrial Consumption","Arizona","AZ",1748 +2002-12-01,"Industrial Consumption","U.S.","U.S.",661782 +2002-12-01,"Industrial Consumption","Pennsylvania","PA",20224 +2002-12-01,"Industrial Consumption","Virginia","VA",5613 +2002-12-01,"Industrial Consumption","New Hampshire","NH",966 +2002-12-01,"Industrial Consumption","Iowa","IA",9132 +2002-12-01,"Industrial Consumption","Rhode Island","RI",342 +2002-12-01,"Industrial Consumption","North Carolina","NC",8826 +2002-12-01,"Industrial Consumption","District of Columbia","DC",0 +2002-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95259 +2002-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",69469 +2002-12-01,"Residential Consumption","Rhode Island","RI",2546 +2002-12-01,"Residential Consumption","Connecticut","CT",6324 +2002-12-01,"Residential Consumption","Wisconsin","WI",20980 +2002-12-01,"Residential Consumption","New Mexico","NM",4901 +2002-12-01,"Residential Consumption","Arkansas","AR",5751 +2002-12-01,"Residential Consumption","New Hampshire","NH",1095 +2002-12-01,"Residential Consumption","Montana","MT",2844 +2002-12-01,"Residential Consumption","Oklahoma","OK",9700 +2002-12-01,"Residential Consumption","California","CA",65611 +2002-12-01,"Residential Consumption","Arizona","AZ",4403 +2002-12-01,"Residential Consumption","Alabama","AL",7667 +2002-12-01,"Residential Consumption","Iowa","IA",11147 +2002-12-01,"Residential Consumption","Georgia","GA",25357 +2002-12-01,"Residential Consumption","Pennsylvania","PA",40708 +2002-12-01,"Residential Consumption","Maine","ME",175 +2002-12-01,"Residential Consumption","Indiana","IN",27110 +2002-12-01,"Residential Consumption","North Dakota","ND",1692 +2002-12-01,"Residential Consumption","Idaho","ID",2744 +2002-12-01,"Residential Consumption","New Jersey","NJ",36586 +2002-12-01,"Residential Consumption","North Carolina","NC",10891 +2002-12-01,"Residential Consumption","Louisiana","LA",7606 +2002-12-01,"Residential Consumption","Virginia","VA",15028 +2002-12-01,"Residential Consumption","Kentucky","KY",11636 +2002-12-01,"Residential Consumption","Kansas","KS",10591 +2002-12-01,"Residential Consumption","New York","NY",58038 +2002-12-01,"Residential Consumption","Texas","TX",32569 +2002-12-01,"Residential Consumption","Ohio","OH",52947 +2002-12-01,"Residential Consumption","Mississippi","MS",4076 +2002-12-01,"Residential Consumption","District of Columbia","DC",2773 +2002-12-01,"Residential Consumption","Delaware","DE",1568 +2002-12-01,"Residential Consumption","Nebraska","NE",6322 +2002-12-01,"Residential Consumption","South Dakota","SD",1698 +2002-12-01,"Residential Consumption","Colorado","CO",19641 +2002-12-01,"Residential Consumption","U.S.","U.S.",771634 +2002-12-01,"Residential Consumption","South Carolina","SC",5291 +2002-12-01,"Residential Consumption","Hawaii","HI",48 +2002-12-01,"Residential Consumption","Michigan","MI",56756 +2002-12-01,"Residential Consumption","Minnesota","MN",20438 +2002-12-01,"Residential Consumption","Missouri","MO",17885 +2002-12-01,"Residential Consumption","Wyoming","WY",2557 +2002-12-01,"Residential Consumption","West Virginia","WV",5306 +2002-12-01,"Residential Consumption","Illinois","IL",73540 +2002-12-01,"Residential Consumption","Oregon","OR",5167 +2002-12-01,"Residential Consumption","Vermont","VT",385 +2002-12-01,"Residential Consumption","Tennessee","TN",12804 +2002-12-01,"Residential Consumption","Utah","UT",8328 +2002-12-01,"Residential Consumption","Maryland","MD",15584 +2002-12-01,"Residential Consumption","Nevada","NV",4226 +2002-12-01,"Residential Consumption","Florida","FL",1915 +2002-12-01,"Residential Consumption","Massachusetts","MA",17403 +2002-12-01,"Residential Consumption","Alaska","AK",2074 +2002-12-01,"Residential Consumption","Washington","WA",9204 +2002-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",1270 +2003-01-01,"Commercial Consumption","Texas","TX",31541 +2003-01-01,"Commercial Consumption","Alaska","AK",1815 +2003-01-01,"Commercial Consumption","Arizona","AZ",4039 +2003-01-01,"Commercial Consumption","District of Columbia","DC",2436 +2003-01-01,"Commercial Consumption","Wyoming","WY",1433 +2003-01-01,"Commercial Consumption","Minnesota","MN",17576 +2003-01-01,"Commercial Consumption","Massachusetts","MA",10615 +2003-01-01,"Commercial Consumption","Ohio","OH",37157 +2003-01-01,"Commercial Consumption","New York","NY",49079 +2003-01-01,"Commercial Consumption","Nevada","NV",2967 +2003-01-01,"Commercial Consumption","Colorado","CO",8572 +2003-01-01,"Commercial Consumption","New Mexico","NM",3835 +2003-01-01,"Commercial Consumption","Missouri","MO",10989 +2003-01-01,"Commercial Consumption","New Jersey","NJ",24504 +2003-01-01,"Commercial Consumption","Kansas","KS",6667 +2003-01-01,"Commercial Consumption","Vermont","VT",429 +2003-01-01,"Commercial Consumption","Idaho","ID",1809 +2003-01-01,"Commercial Consumption","Mississippi","MS",3682 +2003-01-01,"Commercial Consumption","Indiana","IN",17166 +2003-01-01,"Commercial Consumption","Illinois","IL",37747 +2003-01-01,"Commercial Consumption","North Carolina","NC",7576 +2003-01-01,"Commercial Consumption","Oklahoma","OK",6228 +2003-01-01,"Commercial Consumption","Virginia","VA",11039 +2003-01-01,"Commercial Consumption","Pennsylvania","PA",27861 +2003-01-01,"Commercial Consumption","South Dakota","SD",1714 +2003-01-01,"Commercial Consumption","Montana","MT",2127 +2003-01-01,"Commercial Consumption","U.S.","U.S.",514945 +2003-01-01,"Commercial Consumption","Maryland","MD",10833 +2003-01-01,"Commercial Consumption","Iowa","IA",8292 +2003-01-01,"Commercial Consumption","Alabama","AL",4358 +2003-01-01,"Commercial Consumption","Delaware","DE",1534 +2003-01-01,"Commercial Consumption","South Carolina","SC",3444 +2003-01-01,"Commercial Consumption","North Dakota","ND",1953 +2003-01-01,"Commercial Consumption","Utah","UT",4469 +2003-01-01,"Commercial Consumption","Wisconsin","WI",16183 +2003-01-01,"Commercial Consumption","Connecticut","CT",6101 +2003-01-01,"Commercial Consumption","California","CA",31390 +2003-01-01,"Commercial Consumption","West Virginia","WV",4291 +2003-01-01,"Commercial Consumption","Washington","WA",6464 +2003-01-01,"Commercial Consumption","Oregon","OR",3737 +2003-01-01,"Commercial Consumption","Kentucky","KY",7826 +2003-01-01,"Commercial Consumption","Georgia","GA",8587 +2003-01-01,"Commercial Consumption","Florida","FL",5523 +2003-01-01,"Commercial Consumption","Nebraska","NE",4299 +2003-01-01,"Commercial Consumption","Tennessee","TN",9595 +2003-01-01,"Commercial Consumption","Louisiana","LA",3658 +2003-01-01,"Commercial Consumption","Maine","ME",750 +2003-01-01,"Commercial Consumption","Hawaii","HI",161 +2003-01-01,"Commercial Consumption","Michigan","MI",32096 +2003-01-01,"Commercial Consumption","New Hampshire","NH",1792 +2003-01-01,"Commercial Consumption","Rhode Island","RI",1884 +2003-01-01,"Commercial Consumption","Arkansas","AR",5125 +2003-01-01,"Delivered to Consumers","New Mexico","NM",13953 +2003-01-01,"Delivered to Consumers","Alaska","AK",9731 +2003-01-01,"Delivered to Consumers","Idaho","ID",7519 +2003-01-01,"Delivered to Consumers","Connecticut","CT",19308 +2003-01-01,"Delivered to Consumers","Alabama","AL",39779 +2003-01-01,"Delivered to Consumers","Wisconsin","WI",62523 +2003-01-01,"Delivered to Consumers","North Carolina","NC",32135 +2003-01-01,"Delivered to Consumers","Wyoming","WY",7672 +2003-01-01,"Delivered to Consumers","West Virginia","WV",15151 +2003-01-01,"Delivered to Consumers","Maryland","MD",31739 +2003-01-01,"Delivered to Consumers","Tennessee","TN",37778 +2003-01-01,"Delivered to Consumers","Michigan","MI",140545 +2003-01-01,"Delivered to Consumers","Kentucky","KY",34776 +2003-01-01,"Delivered to Consumers","Missouri","MO",42257 +2003-01-01,"Delivered to Consumers","New Jersey","NJ",86899 +2003-01-01,"Delivered to Consumers","Louisiana","LA",106504 +2003-01-01,"Delivered to Consumers","Washington","WA",27912 +2003-01-01,"Delivered to Consumers","Minnesota","MN",53794 +2003-01-01,"Delivered to Consumers","Florida","FL",53384 +2003-01-01,"Delivered to Consumers","Illinois","IL",167855 +2003-01-01,"Delivered to Consumers","Hawaii","HI",251 +2003-01-01,"Delivered to Consumers","Oklahoma","OK",44633 +2003-01-01,"Delivered to Consumers","Kansas","KS",31180 +2003-01-01,"Delivered to Consumers","Nebraska","NE",15675 +2003-01-01,"Delivered to Consumers","Mississippi","MS",29743 +2003-01-01,"Delivered to Consumers","Colorado","CO",44971 +2003-01-01,"Delivered to Consumers","Texas","TX",344839 +2003-01-01,"Delivered to Consumers","South Carolina","SC",18666 +2003-01-01,"Delivered to Consumers","Arizona","AZ",20639 +2003-01-01,"Delivered to Consumers","District of Columbia","DC",5818 +2003-01-01,"Delivered to Consumers","Iowa","IA",31445 +2003-01-01,"Delivered to Consumers","Pennsylvania","PA",101975 +2003-01-01,"Delivered to Consumers","California","CA",206909 +2003-01-01,"Delivered to Consumers","Oregon","OR",23496 +2003-01-01,"Delivered to Consumers","Nevada","NV",17053 +2003-01-01,"Delivered to Consumers","Maine","ME",8047 +2003-01-01,"Delivered to Consumers","Rhode Island","RI",9510 +2003-01-01,"Delivered to Consumers","Montana","MT",7471 +2003-01-01,"Delivered to Consumers","Massachusetts","MA",46732 +2003-01-01,"Delivered to Consumers","Georgia","GA",56470 +2003-01-01,"Delivered to Consumers","New Hampshire","NH",6844 +2003-01-01,"Delivered to Consumers","Virginia","VA",39589 +2003-01-01,"Delivered to Consumers","Vermont","VT",1153 +2003-01-01,"Delivered to Consumers","Arkansas","AR",27116 +2003-01-01,"Delivered to Consumers","Utah","UT",16474 +2003-01-01,"Delivered to Consumers","U.S.","U.S.",2532736 +2003-01-01,"Delivered to Consumers","Indiana","IN",80534 +2003-01-01,"Delivered to Consumers","Delaware","DE",6397 +2003-01-01,"Delivered to Consumers","South Dakota","SD",5421 +2003-01-01,"Delivered to Consumers","New York","NY",145176 +2003-01-01,"Delivered to Consumers","Ohio","OH",140436 +2003-01-01,"Delivered to Consumers","North Dakota","ND",5308 +2003-01-01,"Electric Power Consumption","U.S.","U.S.",382443 +2003-01-01,"Electric Power Consumption","South Dakota","SD",157 +2003-01-01,"Electric Power Consumption","North Carolina","NC",1488 +2003-01-01,"Electric Power Consumption","Mississippi","MS",10537 +2003-01-01,"Electric Power Consumption","Washington","WA",5000 +2003-01-01,"Electric Power Consumption","South Carolina","SC",986 +2003-01-01,"Electric Power Consumption","Kansas","KS",801 +2003-01-01,"Electric Power Consumption","West Virginia","WV",67 +2003-01-01,"Electric Power Consumption","Wyoming","WY",399 +2003-01-01,"Electric Power Consumption","New Hampshire","NH",1716 +2003-01-01,"Electric Power Consumption","Indiana","IN",1395 +2003-01-01,"Electric Power Consumption","Arizona","AZ",8033 +2003-01-01,"Electric Power Consumption","Idaho","ID",195 +2003-01-01,"Electric Power Consumption","Oregon","OR",7862 +2003-01-01,"Electric Power Consumption","Wisconsin","WI",2059 +2003-01-01,"Electric Power Consumption","Iowa","IA",247 +2003-01-01,"Electric Power Consumption","Nebraska","NE",97 +2003-01-01,"Electric Power Consumption","Missouri","MO",1631 +2003-01-01,"Electric Power Consumption","Maine","ME",6649 +2003-01-01,"Electric Power Consumption","Arkansas","AR",2616 +2003-01-01,"Electric Power Consumption","Illinois","IL",2687 +2003-01-01,"Electric Power Consumption","Ohio","OH",928 +2003-01-01,"Electric Power Consumption","California","CA",52963 +2003-01-01,"Electric Power Consumption","Michigan","MI",11993 +2003-01-01,"Electric Power Consumption","Hawaii","HI",0 +2003-01-01,"Electric Power Consumption","North Dakota","ND",0 +2003-01-01,"Electric Power Consumption","Montana","MT",7 +2003-01-01,"Electric Power Consumption","Delaware","DE",465 +2003-01-01,"Electric Power Consumption","Georgia","GA",3221 +2003-01-01,"Electric Power Consumption","Texas","TX",106379 +2003-01-01,"Electric Power Consumption","Rhode Island","RI",3879 +2003-01-01,"Electric Power Consumption","Massachusetts","MA",8619 +2003-01-01,"Electric Power Consumption","Vermont","VT",1 +2003-01-01,"Electric Power Consumption","Florida","FL",37980 +2003-01-01,"Electric Power Consumption","Virginia","VA",3058 +2003-01-01,"Electric Power Consumption","New Mexico","NM",2156 +2003-01-01,"Electric Power Consumption","Louisiana","LA",19955 +2003-01-01,"Electric Power Consumption","Oklahoma","OK",11661 +2003-01-01,"Electric Power Consumption","Utah","UT",1432 +2003-01-01,"Electric Power Consumption","Nevada","NV",7604 +2003-01-01,"Electric Power Consumption","Kentucky","KY",627 +2003-01-01,"Electric Power Consumption","Maryland","MD",811 +2003-01-01,"Electric Power Consumption","New Jersey","NJ",9174 +2003-01-01,"Electric Power Consumption","Colorado","CO",6527 +2003-01-01,"Electric Power Consumption","New York","NY",18688 +2003-01-01,"Electric Power Consumption","Minnesota","MN",885 +2003-01-01,"Electric Power Consumption","Pennsylvania","PA",1872 +2003-01-01,"Electric Power Consumption","Tennessee","TN",1704 +2003-01-01,"Electric Power Consumption","Connecticut","CT",2459 +2003-01-01,"Electric Power Consumption","Alabama","AL",9428 +2003-01-01,"Electric Power Consumption","Alaska","AK",3346 +2003-01-01,"Industrial Consumption","Washington","WA",6080 +2003-01-01,"Industrial Consumption","Nevada","NV",1052 +2003-01-01,"Industrial Consumption","Mississippi","MS",9949 +2003-01-01,"Industrial Consumption","Maine","ME",434 +2003-01-01,"Industrial Consumption","Nebraska","NE",3384 +2003-01-01,"Industrial Consumption","Virginia","VA",6484 +2003-01-01,"Industrial Consumption","Vermont","VT",219 +2003-01-01,"Industrial Consumption","Indiana","IN",27047 +2003-01-01,"Industrial Consumption","Alaska","AK",2354 +2003-01-01,"Industrial Consumption","South Dakota","SD",1123 +2003-01-01,"Industrial Consumption","Utah","UT",2399 +2003-01-01,"Industrial Consumption","Pennsylvania","PA",20995 +2003-01-01,"Industrial Consumption","New Hampshire","NH",1992 +2003-01-01,"Industrial Consumption","Kentucky","KY",11702 +2003-01-01,"Industrial Consumption","Delaware","DE",2167 +2003-01-01,"Industrial Consumption","Oregon","OR",5930 +2003-01-01,"Industrial Consumption","Texas","TX",161673 +2003-01-01,"Industrial Consumption","West Virginia","WV",4009 +2003-01-01,"Industrial Consumption","Minnesota","MN",9539 +2003-01-01,"Industrial Consumption","Massachusetts","MA",6407 +2003-01-01,"Industrial Consumption","Louisiana","LA",72726 +2003-01-01,"Industrial Consumption","Kansas","KS",10045 +2003-01-01,"Industrial Consumption","U.S.","U.S.",687821 +2003-01-01,"Industrial Consumption","Alabama","AL",15463 +2003-01-01,"Industrial Consumption","Connecticut","CT",2442 +2003-01-01,"Industrial Consumption","Ohio","OH",32628 +2003-01-01,"Industrial Consumption","Arizona","AZ",1527 +2003-01-01,"Industrial Consumption","Tennessee","TN",11144 +2003-01-01,"Industrial Consumption","Florida","FL",6976 +2003-01-01,"Industrial Consumption","Michigan","MI",26081 +2003-01-01,"Industrial Consumption","Rhode Island","RI",550 +2003-01-01,"Industrial Consumption","Georgia","GA",14903 +2003-01-01,"Industrial Consumption","Montana","MT",2105 +2003-01-01,"Industrial Consumption","Hawaii","HI",40 +2003-01-01,"Industrial Consumption","Oklahoma","OK",14135 +2003-01-01,"Industrial Consumption","Colorado","CO",11626 +2003-01-01,"Industrial Consumption","California","CA",59814 +2003-01-01,"Industrial Consumption","South Carolina","SC",7833 +2003-01-01,"Industrial Consumption","Wisconsin","WI",16386 +2003-01-01,"Industrial Consumption","New Jersey","NJ",7645 +2003-01-01,"Industrial Consumption","Idaho","ID",2492 +2003-01-01,"Industrial Consumption","Iowa","IA",8957 +2003-01-01,"Industrial Consumption","Maryland","MD",2121 +2003-01-01,"Industrial Consumption","New Mexico","NM",1883 +2003-01-01,"Industrial Consumption","New York","NY",9195 +2003-01-01,"Industrial Consumption","Arkansas","AR",11631 +2003-01-01,"Industrial Consumption","Wyoming","WY",3958 +2003-01-01,"Industrial Consumption","Illinois","IL",31254 +2003-01-01,"Industrial Consumption","North Carolina","NC",9007 +2003-01-01,"Industrial Consumption","North Dakota","ND",1234 +2003-01-01,"Industrial Consumption","Missouri","MO",7084 +2003-01-01,"Industrial Consumption","District of Columbia","DC",0 +2003-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94993 +2003-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",72816 +2003-01-01,"Residential Consumption","Texas","TX",45246 +2003-01-01,"Residential Consumption","Iowa","IA",13948 +2003-01-01,"Residential Consumption","Georgia","GA",29759 +2003-01-01,"Residential Consumption","California","CA",62742 +2003-01-01,"Residential Consumption","Illinois","IL",96167 +2003-01-01,"Residential Consumption","South Carolina","SC",6404 +2003-01-01,"Residential Consumption","North Carolina","NC",14064 +2003-01-01,"Residential Consumption","Vermont","VT",504 +2003-01-01,"Residential Consumption","Maryland","MD",17974 +2003-01-01,"Residential Consumption","Maine","ME",215 +2003-01-01,"Residential Consumption","Florida","FL",2904 +2003-01-01,"Residential Consumption","Alaska","AK",2216 +2003-01-01,"Residential Consumption","Wisconsin","WI",27895 +2003-01-01,"Residential Consumption","Tennessee","TN",15336 +2003-01-01,"Residential Consumption","District of Columbia","DC",3382 +2003-01-01,"Residential Consumption","Kentucky","KY",14620 +2003-01-01,"Residential Consumption","New York","NY",68215 +2003-01-01,"Residential Consumption","Mississippi","MS",5577 +2003-01-01,"Residential Consumption","Indiana","IN",34927 +2003-01-01,"Residential Consumption","North Dakota","ND",2122 +2003-01-01,"Residential Consumption","Delaware","DE",2231 +2003-01-01,"Residential Consumption","Arkansas","AR",7744 +2003-01-01,"Residential Consumption","Montana","MT",3232 +2003-01-01,"Residential Consumption","West Virginia","WV",6785 +2003-01-01,"Residential Consumption","U.S.","U.S.",945975 +2003-01-01,"Residential Consumption","Rhode Island","RI",3197 +2003-01-01,"Residential Consumption","Oregon","OR",5968 +2003-01-01,"Residential Consumption","Louisiana","LA",10166 +2003-01-01,"Residential Consumption","Utah","UT",8173 +2003-01-01,"Residential Consumption","Nevada","NV",5431 +2003-01-01,"Residential Consumption","Pennsylvania","PA",51246 +2003-01-01,"Residential Consumption","New Mexico","NM",6080 +2003-01-01,"Residential Consumption","Colorado","CO",18246 +2003-01-01,"Residential Consumption","Washington","WA",10368 +2003-01-01,"Residential Consumption","Wyoming","WY",1882 +2003-01-01,"Residential Consumption","Ohio","OH",69723 +2003-01-01,"Residential Consumption","Hawaii","HI",51 +2003-01-01,"Residential Consumption","Connecticut","CT",8306 +2003-01-01,"Residential Consumption","Virginia","VA",19009 +2003-01-01,"Residential Consumption","Michigan","MI",70376 +2003-01-01,"Residential Consumption","South Dakota","SD",2427 +2003-01-01,"Residential Consumption","Minnesota","MN",25795 +2003-01-01,"Residential Consumption","Massachusetts","MA",21091 +2003-01-01,"Residential Consumption","Idaho","ID",3023 +2003-01-01,"Residential Consumption","New Jersey","NJ",45576 +2003-01-01,"Residential Consumption","Kansas","KS",13667 +2003-01-01,"Residential Consumption","Alabama","AL",10529 +2003-01-01,"Residential Consumption","Nebraska","NE",7895 +2003-01-01,"Residential Consumption","New Hampshire","NH",1345 +2003-01-01,"Residential Consumption","Oklahoma","OK",12608 +2003-01-01,"Residential Consumption","Missouri","MO",22553 +2003-01-01,"Residential Consumption","Arizona","AZ",7038 +2003-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",1552 +2003-02-01,"Commercial Consumption","West Virginia","WV",4565 +2003-02-01,"Commercial Consumption","North Dakota","ND",1841 +2003-02-01,"Commercial Consumption","New Hampshire","NH",1892 +2003-02-01,"Commercial Consumption","U.S.","U.S.",482485 +2003-02-01,"Commercial Consumption","Michigan","MI",30665 +2003-02-01,"Commercial Consumption","Illinois","IL",33540 +2003-02-01,"Commercial Consumption","Utah","UT",4544 +2003-02-01,"Commercial Consumption","New Mexico","NM",3326 +2003-02-01,"Commercial Consumption","Florida","FL",5673 +2003-02-01,"Commercial Consumption","Connecticut","CT",5570 +2003-02-01,"Commercial Consumption","North Carolina","NC",7127 +2003-02-01,"Commercial Consumption","Oklahoma","OK",6889 +2003-02-01,"Commercial Consumption","Missouri","MO",11402 +2003-02-01,"Commercial Consumption","Massachusetts","MA",9578 +2003-02-01,"Commercial Consumption","Wisconsin","WI",14684 +2003-02-01,"Commercial Consumption","New Jersey","NJ",24263 +2003-02-01,"Commercial Consumption","Alabama","AL",4429 +2003-02-01,"Commercial Consumption","Nebraska","NE",4708 +2003-02-01,"Commercial Consumption","Washington","WA",5862 +2003-02-01,"Commercial Consumption","Virginia","VA",8976 +2003-02-01,"Commercial Consumption","Maine","ME",640 +2003-02-01,"Commercial Consumption","Maryland","MD",9514 +2003-02-01,"Commercial Consumption","Kansas","KS",6592 +2003-02-01,"Commercial Consumption","Rhode Island","RI",1970 +2003-02-01,"Commercial Consumption","District of Columbia","DC",2344 +2003-02-01,"Commercial Consumption","Wyoming","WY",1409 +2003-02-01,"Commercial Consumption","South Carolina","SC",3237 +2003-02-01,"Commercial Consumption","Colorado","CO",9425 +2003-02-01,"Commercial Consumption","Pennsylvania","PA",25382 +2003-02-01,"Commercial Consumption","Kentucky","KY",6918 +2003-02-01,"Commercial Consumption","Vermont","VT",486 +2003-02-01,"Commercial Consumption","Idaho","ID",1635 +2003-02-01,"Commercial Consumption","Alaska","AK",1368 +2003-02-01,"Commercial Consumption","Louisiana","LA",3694 +2003-02-01,"Commercial Consumption","South Dakota","SD",1651 +2003-02-01,"Commercial Consumption","Ohio","OH",30234 +2003-02-01,"Commercial Consumption","Iowa","IA",8321 +2003-02-01,"Commercial Consumption","Hawaii","HI",150 +2003-02-01,"Commercial Consumption","New York","NY",50889 +2003-02-01,"Commercial Consumption","Montana","MT",1979 +2003-02-01,"Commercial Consumption","Texas","TX",28821 +2003-02-01,"Commercial Consumption","California","CA",26125 +2003-02-01,"Commercial Consumption","Arkansas","AR",5602 +2003-02-01,"Commercial Consumption","Mississippi","MS",3844 +2003-02-01,"Commercial Consumption","Delaware","DE",1426 +2003-02-01,"Commercial Consumption","Nevada","NV",2588 +2003-02-01,"Commercial Consumption","Indiana","IN",15337 +2003-02-01,"Commercial Consumption","Minnesota","MN",16340 +2003-02-01,"Commercial Consumption","Oregon","OR",3287 +2003-02-01,"Commercial Consumption","Georgia","GA",8135 +2003-02-01,"Commercial Consumption","Arizona","AZ",3373 +2003-02-01,"Commercial Consumption","Tennessee","TN",10236 +2003-02-01,"Delivered to Consumers","Ohio","OH",123688 +2003-02-01,"Delivered to Consumers","Michigan","MI",133702 +2003-02-01,"Delivered to Consumers","Virginia","VA",32153 +2003-02-01,"Delivered to Consumers","Nebraska","NE",15319 +2003-02-01,"Delivered to Consumers","Massachusetts","MA",47096 +2003-02-01,"Delivered to Consumers","Washington","WA",26079 +2003-02-01,"Delivered to Consumers","District of Columbia","DC",4995 +2003-02-01,"Delivered to Consumers","Maryland","MD",28530 +2003-02-01,"Delivered to Consumers","Kansas","KS",29594 +2003-02-01,"Delivered to Consumers","Connecticut","CT",18126 +2003-02-01,"Delivered to Consumers","Arkansas","AR",27256 +2003-02-01,"Delivered to Consumers","New Jersey","NJ",82946 +2003-02-01,"Delivered to Consumers","Delaware","DE",5499 +2003-02-01,"Delivered to Consumers","Illinois","IL",147181 +2003-02-01,"Delivered to Consumers","Alaska","AK",8407 +2003-02-01,"Delivered to Consumers","North Carolina","NC",30180 +2003-02-01,"Delivered to Consumers","Texas","TX",320745 +2003-02-01,"Delivered to Consumers","Florida","FL",43538 +2003-02-01,"Delivered to Consumers","New Mexico","NM",13147 +2003-02-01,"Delivered to Consumers","Vermont","VT",1191 +2003-02-01,"Delivered to Consumers","Rhode Island","RI",10141 +2003-02-01,"Delivered to Consumers","Hawaii","HI",236 +2003-02-01,"Delivered to Consumers","Iowa","IA",32450 +2003-02-01,"Delivered to Consumers","Pennsylvania","PA",96176 +2003-02-01,"Delivered to Consumers","Mississippi","MS",24826 +2003-02-01,"Delivered to Consumers","Nevada","NV",15548 +2003-02-01,"Delivered to Consumers","New Hampshire","NH",6457 +2003-02-01,"Delivered to Consumers","Minnesota","MN",50612 +2003-02-01,"Delivered to Consumers","U.S.","U.S.",2346489 +2003-02-01,"Delivered to Consumers","West Virginia","WV",14627 +2003-02-01,"Delivered to Consumers","Idaho","ID",7632 +2003-02-01,"Delivered to Consumers","Tennessee","TN",37692 +2003-02-01,"Delivered to Consumers","Missouri","MO",42379 +2003-02-01,"Delivered to Consumers","North Dakota","ND",4986 +2003-02-01,"Delivered to Consumers","Wyoming","WY",7313 +2003-02-01,"Delivered to Consumers","South Dakota","SD",5156 +2003-02-01,"Delivered to Consumers","New York","NY",150464 +2003-02-01,"Delivered to Consumers","Kentucky","KY",29032 +2003-02-01,"Delivered to Consumers","Louisiana","LA",91821 +2003-02-01,"Delivered to Consumers","Georgia","GA",43704 +2003-02-01,"Delivered to Consumers","Oklahoma","OK",43363 +2003-02-01,"Delivered to Consumers","Colorado","CO",47164 +2003-02-01,"Delivered to Consumers","California","CA",199691 +2003-02-01,"Delivered to Consumers","South Carolina","SC",17514 +2003-02-01,"Delivered to Consumers","Utah","UT",16494 +2003-02-01,"Delivered to Consumers","Indiana","IN",70155 +2003-02-01,"Delivered to Consumers","Montana","MT",6977 +2003-02-01,"Delivered to Consumers","Alabama","AL",34222 +2003-02-01,"Delivered to Consumers","Wisconsin","WI",55695 +2003-02-01,"Delivered to Consumers","Oregon","OR",19260 +2003-02-01,"Delivered to Consumers","Maine","ME",5034 +2003-02-01,"Delivered to Consumers","Arizona","AZ",18895 +2003-02-01,"Electric Power Consumption","Washington","WA",5051 +2003-02-01,"Electric Power Consumption","Louisiana","LA",15360 +2003-02-01,"Electric Power Consumption","Nevada","NV",7622 +2003-02-01,"Electric Power Consumption","South Dakota","SD",173 +2003-02-01,"Electric Power Consumption","West Virginia","WV",36 +2003-02-01,"Electric Power Consumption","Nebraska","NE",141 +2003-02-01,"Electric Power Consumption","Mississippi","MS",6713 +2003-02-01,"Electric Power Consumption","Delaware","DE",353 +2003-02-01,"Electric Power Consumption","Connecticut","CT",2060 +2003-02-01,"Electric Power Consumption","Florida","FL",28693 +2003-02-01,"Electric Power Consumption","New Mexico","NM",2670 +2003-02-01,"Electric Power Consumption","New Jersey","NJ",7854 +2003-02-01,"Electric Power Consumption","South Carolina","SC",514 +2003-02-01,"Electric Power Consumption","Illinois","IL",2517 +2003-02-01,"Electric Power Consumption","Wisconsin","WI",2202 +2003-02-01,"Electric Power Consumption","Iowa","IA",276 +2003-02-01,"Electric Power Consumption","Ohio","OH",730 +2003-02-01,"Electric Power Consumption","Montana","MT",20 +2003-02-01,"Electric Power Consumption","California","CA",51480 +2003-02-01,"Electric Power Consumption","Virginia","VA",814 +2003-02-01,"Electric Power Consumption","Oklahoma","OK",11556 +2003-02-01,"Electric Power Consumption","Oregon","OR",5409 +2003-02-01,"Electric Power Consumption","Pennsylvania","PA",1635 +2003-02-01,"Electric Power Consumption","U.S.","U.S.",334698 +2003-02-01,"Electric Power Consumption","North Carolina","NC",915 +2003-02-01,"Electric Power Consumption","Missouri","MO",669 +2003-02-01,"Electric Power Consumption","North Dakota","ND",0 +2003-02-01,"Electric Power Consumption","Maryland","MD",691 +2003-02-01,"Electric Power Consumption","Arizona","AZ",9177 +2003-02-01,"Electric Power Consumption","Alabama","AL",5069 +2003-02-01,"Electric Power Consumption","New York","NY",16711 +2003-02-01,"Electric Power Consumption","Texas","TX",100241 +2003-02-01,"Electric Power Consumption","Vermont","VT",1 +2003-02-01,"Electric Power Consumption","Georgia","GA",638 +2003-02-01,"Electric Power Consumption","Alaska","AK",2960 +2003-02-01,"Electric Power Consumption","Rhode Island","RI",4020 +2003-02-01,"Electric Power Consumption","Wyoming","WY",439 +2003-02-01,"Electric Power Consumption","Kentucky","KY",173 +2003-02-01,"Electric Power Consumption","Hawaii","HI",0 +2003-02-01,"Electric Power Consumption","Indiana","IN",1700 +2003-02-01,"Electric Power Consumption","Colorado","CO",6160 +2003-02-01,"Electric Power Consumption","Minnesota","MN",881 +2003-02-01,"Electric Power Consumption","Michigan","MI",9809 +2003-02-01,"Electric Power Consumption","Massachusetts","MA",8909 +2003-02-01,"Electric Power Consumption","Maine","ME",3865 +2003-02-01,"Electric Power Consumption","Idaho","ID",1035 +2003-02-01,"Electric Power Consumption","Arkansas","AR",3165 +2003-02-01,"Electric Power Consumption","Utah","UT",1248 +2003-02-01,"Electric Power Consumption","Kansas","KS",700 +2003-02-01,"Electric Power Consumption","Tennessee","TN",256 +2003-02-01,"Electric Power Consumption","New Hampshire","NH",1389 +2003-02-01,"Industrial Consumption","New Mexico","NM",2082 +2003-02-01,"Industrial Consumption","Tennessee","TN",11487 +2003-02-01,"Industrial Consumption","Iowa","IA",10155 +2003-02-01,"Industrial Consumption","Colorado","CO",11414 +2003-02-01,"Industrial Consumption","Utah","UT",2240 +2003-02-01,"Industrial Consumption","Mississippi","MS",8529 +2003-02-01,"Industrial Consumption","California","CA",60780 +2003-02-01,"Industrial Consumption","Arkansas","AR",10424 +2003-02-01,"Industrial Consumption","Vermont","VT",124 +2003-02-01,"Industrial Consumption","Wyoming","WY",3634 +2003-02-01,"Industrial Consumption","Michigan","MI",25855 +2003-02-01,"Industrial Consumption","Maine","ME",338 +2003-02-01,"Industrial Consumption","Minnesota","MN",9625 +2003-02-01,"Industrial Consumption","Illinois","IL",28899 +2003-02-01,"Industrial Consumption","Delaware","DE",1702 +2003-02-01,"Industrial Consumption","District of Columbia","DC",0 +2003-02-01,"Industrial Consumption","Massachusetts","MA",5586 +2003-02-01,"Industrial Consumption","Missouri","MO",6868 +2003-02-01,"Industrial Consumption","Louisiana","LA",62959 +2003-02-01,"Industrial Consumption","Pennsylvania","PA",19250 +2003-02-01,"Industrial Consumption","Alabama","AL",14505 +2003-02-01,"Industrial Consumption","South Carolina","SC",7301 +2003-02-01,"Industrial Consumption","Idaho","ID",2203 +2003-02-01,"Industrial Consumption","Florida","FL",6327 +2003-02-01,"Industrial Consumption","Rhode Island","RI",448 +2003-02-01,"Industrial Consumption","Alaska","AK",2374 +2003-02-01,"Industrial Consumption","North Dakota","ND",1175 +2003-02-01,"Industrial Consumption","Montana","MT",1990 +2003-02-01,"Industrial Consumption","Washington","WA",5587 +2003-02-01,"Industrial Consumption","New York","NY",9209 +2003-02-01,"Industrial Consumption","West Virginia","WV",3804 +2003-02-01,"Industrial Consumption","New Hampshire","NH",1740 +2003-02-01,"Industrial Consumption","Georgia","GA",14274 +2003-02-01,"Industrial Consumption","Kansas","KS",9012 +2003-02-01,"Industrial Consumption","Arizona","AZ",1431 +2003-02-01,"Industrial Consumption","Nevada","NV",775 +2003-02-01,"Industrial Consumption","Maryland","MD",2157 +2003-02-01,"Industrial Consumption","Hawaii","HI",36 +2003-02-01,"Industrial Consumption","Oklahoma","OK",11988 +2003-02-01,"Industrial Consumption","South Dakota","SD",1200 +2003-02-01,"Industrial Consumption","U.S.","U.S.",643666 +2003-02-01,"Industrial Consumption","Oregon","OR",5500 +2003-02-01,"Industrial Consumption","Texas","TX",151087 +2003-02-01,"Industrial Consumption","Nebraska","NE",3125 +2003-02-01,"Industrial Consumption","Virginia","VA",6550 +2003-02-01,"Industrial Consumption","Kentucky","KY",9996 +2003-02-01,"Industrial Consumption","Ohio","OH",29744 +2003-02-01,"Industrial Consumption","Wisconsin","WI",15170 +2003-02-01,"Industrial Consumption","New Jersey","NJ",7276 +2003-02-01,"Industrial Consumption","Connecticut","CT",2098 +2003-02-01,"Industrial Consumption","Indiana","IN",24384 +2003-02-01,"Industrial Consumption","North Carolina","NC",9247 +2003-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86364 +2003-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",67462 +2003-02-01,"Residential Consumption","South Dakota","SD",2132 +2003-02-01,"Residential Consumption","Nevada","NV",4563 +2003-02-01,"Residential Consumption","Pennsylvania","PA",49909 +2003-02-01,"Residential Consumption","Indiana","IN",28735 +2003-02-01,"Residential Consumption","North Dakota","ND",1970 +2003-02-01,"Residential Consumption","Idaho","ID",2758 +2003-02-01,"Residential Consumption","Hawaii","HI",50 +2003-02-01,"Residential Consumption","Connecticut","CT",8398 +2003-02-01,"Residential Consumption","Minnesota","MN",23767 +2003-02-01,"Residential Consumption","Florida","FL",2846 +2003-02-01,"Residential Consumption","New Hampshire","NH",1436 +2003-02-01,"Residential Consumption","Colorado","CO",20165 +2003-02-01,"Residential Consumption","Oklahoma","OK",12931 +2003-02-01,"Residential Consumption","Alabama","AL",10219 +2003-02-01,"Residential Consumption","Illinois","IL",82225 +2003-02-01,"Residential Consumption","Rhode Island","RI",3703 +2003-02-01,"Residential Consumption","Oregon","OR",5064 +2003-02-01,"Residential Consumption","Ohio","OH",62980 +2003-02-01,"Residential Consumption","Maryland","MD",16168 +2003-02-01,"Residential Consumption","Louisiana","LA",9807 +2003-02-01,"Residential Consumption","Iowa","IA",13698 +2003-02-01,"Residential Consumption","New Jersey","NJ",43553 +2003-02-01,"Residential Consumption","Kansas","KS",13290 +2003-02-01,"Residential Consumption","Delaware","DE",2018 +2003-02-01,"Residential Consumption","Alaska","AK",1705 +2003-02-01,"Residential Consumption","Wyoming","WY",1831 +2003-02-01,"Residential Consumption","New York","NY",73655 +2003-02-01,"Residential Consumption","Mississippi","MS",5740 +2003-02-01,"Residential Consumption","District of Columbia","DC",2651 +2003-02-01,"Residential Consumption","Montana","MT",2987 +2003-02-01,"Residential Consumption","Washington","WA",9580 +2003-02-01,"Residential Consumption","North Carolina","NC",12890 +2003-02-01,"Residential Consumption","Wisconsin","WI",23640 +2003-02-01,"Residential Consumption","Utah","UT",8462 +2003-02-01,"Residential Consumption","Nebraska","NE",7345 +2003-02-01,"Residential Consumption","New Mexico","NM",5069 +2003-02-01,"Residential Consumption","Arkansas","AR",8065 +2003-02-01,"Residential Consumption","California","CA",61307 +2003-02-01,"Residential Consumption","West Virginia","WV",6223 +2003-02-01,"Residential Consumption","South Carolina","SC",6462 +2003-02-01,"Residential Consumption","Tennessee","TN",15713 +2003-02-01,"Residential Consumption","Virginia","VA",15813 +2003-02-01,"Residential Consumption","Georgia","GA",20657 +2003-02-01,"Residential Consumption","Maine","ME",191 +2003-02-01,"Residential Consumption","Massachusetts","MA",23023 +2003-02-01,"Residential Consumption","Kentucky","KY",11945 +2003-02-01,"Residential Consumption","Texas","TX",40596 +2003-02-01,"Residential Consumption","Vermont","VT",580 +2003-02-01,"Residential Consumption","Michigan","MI",67374 +2003-02-01,"Residential Consumption","Missouri","MO",23439 +2003-02-01,"Residential Consumption","Arizona","AZ",4914 +2003-02-01,"Residential Consumption","U.S.","U.S.",884238 +2003-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1402 +2003-03-01,"Commercial Consumption","Vermont","VT",397 +2003-03-01,"Commercial Consumption","Idaho","ID",1470 +2003-03-01,"Commercial Consumption","Alaska","AK",1539 +2003-03-01,"Commercial Consumption","Arkansas","AR",4434 +2003-03-01,"Commercial Consumption","Nebraska","NE",4085 +2003-03-01,"Commercial Consumption","Mississippi","MS",2876 +2003-03-01,"Commercial Consumption","Tennessee","TN",7187 +2003-03-01,"Commercial Consumption","Indiana","IN",10136 +2003-03-01,"Commercial Consumption","Louisiana","LA",2864 +2003-03-01,"Commercial Consumption","Washington","WA",5613 +2003-03-01,"Commercial Consumption","Nevada","NV",2532 +2003-03-01,"Commercial Consumption","Wyoming","WY",1234 +2003-03-01,"Commercial Consumption","South Carolina","SC",2357 +2003-03-01,"Commercial Consumption","Colorado","CO",7632 +2003-03-01,"Commercial Consumption","Wisconsin","WI",11427 +2003-03-01,"Commercial Consumption","Florida","FL",4909 +2003-03-01,"Commercial Consumption","Hawaii","HI",146 +2003-03-01,"Commercial Consumption","California","CA",21962 +2003-03-01,"Commercial Consumption","Michigan","MI",26592 +2003-03-01,"Commercial Consumption","Illinois","IL",26285 +2003-03-01,"Commercial Consumption","North Dakota","ND",1542 +2003-03-01,"Commercial Consumption","Pennsylvania","PA",20204 +2003-03-01,"Commercial Consumption","South Dakota","SD",1383 +2003-03-01,"Commercial Consumption","New Hampshire","NH",1267 +2003-03-01,"Commercial Consumption","U.S.","U.S.",388190 +2003-03-01,"Commercial Consumption","Maryland","MD",7277 +2003-03-01,"Commercial Consumption","Iowa","IA",6509 +2003-03-01,"Commercial Consumption","Connecticut","CT",4924 +2003-03-01,"Commercial Consumption","Alabama","AL",2958 +2003-03-01,"Commercial Consumption","New York","NY",43424 +2003-03-01,"Commercial Consumption","Delaware","DE",1012 +2003-03-01,"Commercial Consumption","District of Columbia","DC",1923 +2003-03-01,"Commercial Consumption","New Mexico","NM",3073 +2003-03-01,"Commercial Consumption","Oregon","OR",3183 +2003-03-01,"Commercial Consumption","Virginia","VA",7083 +2003-03-01,"Commercial Consumption","Missouri","MO",8956 +2003-03-01,"Commercial Consumption","Kentucky","KY",4647 +2003-03-01,"Commercial Consumption","Arizona","AZ",3422 +2003-03-01,"Commercial Consumption","Minnesota","MN",12370 +2003-03-01,"Commercial Consumption","Utah","UT",3359 +2003-03-01,"Commercial Consumption","Oklahoma","OK",6060 +2003-03-01,"Commercial Consumption","Massachusetts","MA",6993 +2003-03-01,"Commercial Consumption","New Jersey","NJ",19817 +2003-03-01,"Commercial Consumption","Georgia","GA",5264 +2003-03-01,"Commercial Consumption","Ohio","OH",23988 +2003-03-01,"Commercial Consumption","North Carolina","NC",4812 +2003-03-01,"Commercial Consumption","Maine","ME",616 +2003-03-01,"Commercial Consumption","Kansas","KS",5599 +2003-03-01,"Commercial Consumption","Rhode Island","RI",1744 +2003-03-01,"Commercial Consumption","West Virginia","WV",3011 +2003-03-01,"Commercial Consumption","Montana","MT",1945 +2003-03-01,"Commercial Consumption","Texas","TX",24148 +2003-03-01,"Delivered to Consumers","New York","NY",132321 +2003-03-01,"Delivered to Consumers","Maryland","MD",21240 +2003-03-01,"Delivered to Consumers","Alabama","AL",26412 +2003-03-01,"Delivered to Consumers","Nebraska","NE",13354 +2003-03-01,"Delivered to Consumers","South Carolina","SC",12917 +2003-03-01,"Delivered to Consumers","Louisiana","LA",89554 +2003-03-01,"Delivered to Consumers","Minnesota","MN",39189 +2003-03-01,"Delivered to Consumers","Delaware","DE",5102 +2003-03-01,"Delivered to Consumers","Vermont","VT",1062 +2003-03-01,"Delivered to Consumers","Georgia","GA",31355 +2003-03-01,"Delivered to Consumers","Florida","FL",54761 +2003-03-01,"Delivered to Consumers","Rhode Island","RI",9429 +2003-03-01,"Delivered to Consumers","Arkansas","AR",22904 +2003-03-01,"Delivered to Consumers","Mississippi","MS",20395 +2003-03-01,"Delivered to Consumers","Texas","TX",306409 +2003-03-01,"Delivered to Consumers","Nevada","NV",15238 +2003-03-01,"Delivered to Consumers","Indiana","IN",52368 +2003-03-01,"Delivered to Consumers","Montana","MT",6706 +2003-03-01,"Delivered to Consumers","Alaska","AK",9561 +2003-03-01,"Delivered to Consumers","Oklahoma","OK",39395 +2003-03-01,"Delivered to Consumers","Connecticut","CT",17872 +2003-03-01,"Delivered to Consumers","Arizona","AZ",21753 +2003-03-01,"Delivered to Consumers","New Mexico","NM",12530 +2003-03-01,"Delivered to Consumers","Hawaii","HI",234 +2003-03-01,"Delivered to Consumers","Kansas","KS",25952 +2003-03-01,"Delivered to Consumers","Michigan","MI",114085 +2003-03-01,"Delivered to Consumers","Wisconsin","WI",44756 +2003-03-01,"Delivered to Consumers","Colorado","CO",38292 +2003-03-01,"Delivered to Consumers","California","CA",190785 +2003-03-01,"Delivered to Consumers","Maine","ME",5581 +2003-03-01,"Delivered to Consumers","Washington","WA",26003 +2003-03-01,"Delivered to Consumers","District of Columbia","DC",3621 +2003-03-01,"Delivered to Consumers","Utah","UT",12825 +2003-03-01,"Delivered to Consumers","Wyoming","WY",7026 +2003-03-01,"Delivered to Consumers","Tennessee","TN",27915 +2003-03-01,"Delivered to Consumers","North Carolina","NC",20979 +2003-03-01,"Delivered to Consumers","New Jersey","NJ",70961 +2003-03-01,"Delivered to Consumers","New Hampshire","NH",5490 +2003-03-01,"Delivered to Consumers","North Dakota","ND",4115 +2003-03-01,"Delivered to Consumers","U.S.","U.S.",2041522 +2003-03-01,"Delivered to Consumers","West Virginia","WV",10226 +2003-03-01,"Delivered to Consumers","Idaho","ID",7150 +2003-03-01,"Delivered to Consumers","Virginia","VA",25608 +2003-03-01,"Delivered to Consumers","Pennsylvania","PA",79246 +2003-03-01,"Delivered to Consumers","Illinois","IL",114072 +2003-03-01,"Delivered to Consumers","South Dakota","SD",4455 +2003-03-01,"Delivered to Consumers","Ohio","OH",99629 +2003-03-01,"Delivered to Consumers","Kentucky","KY",20580 +2003-03-01,"Delivered to Consumers","Iowa","IA",25482 +2003-03-01,"Delivered to Consumers","Missouri","MO",33569 +2003-03-01,"Delivered to Consumers","Massachusetts","MA",41405 +2003-03-01,"Delivered to Consumers","Oregon","OR",18102 +2003-03-01,"Electric Power Consumption","Utah","UT",1235 +2003-03-01,"Electric Power Consumption","Massachusetts","MA",9871 +2003-03-01,"Electric Power Consumption","South Dakota","SD",135 +2003-03-01,"Electric Power Consumption","Ohio","OH",1377 +2003-03-01,"Electric Power Consumption","Indiana","IN",1800 +2003-03-01,"Electric Power Consumption","California","CA",52364 +2003-03-01,"Electric Power Consumption","Oklahoma","OK",10081 +2003-03-01,"Electric Power Consumption","Illinois","IL",1904 +2003-03-01,"Electric Power Consumption","Hawaii","HI",0 +2003-03-01,"Electric Power Consumption","Washington","WA",5173 +2003-03-01,"Electric Power Consumption","Colorado","CO",5955 +2003-03-01,"Electric Power Consumption","Minnesota","MN",540 +2003-03-01,"Electric Power Consumption","West Virginia","WV",76 +2003-03-01,"Electric Power Consumption","Pennsylvania","PA",2717 +2003-03-01,"Electric Power Consumption","Wyoming","WY",266 +2003-03-01,"Electric Power Consumption","Nebraska","NE",104 +2003-03-01,"Electric Power Consumption","Missouri","MO",810 +2003-03-01,"Electric Power Consumption","Maine","ME",4509 +2003-03-01,"Electric Power Consumption","New Hampshire","NH",2422 +2003-03-01,"Electric Power Consumption","Delaware","DE",1273 +2003-03-01,"Electric Power Consumption","Connecticut","CT",4165 +2003-03-01,"Electric Power Consumption","Alabama","AL",4057 +2003-03-01,"Electric Power Consumption","Alaska","AK",2855 +2003-03-01,"Electric Power Consumption","Texas","TX",103485 +2003-03-01,"Electric Power Consumption","Rhode Island","RI",4001 +2003-03-01,"Electric Power Consumption","Michigan","MI",9212 +2003-03-01,"Electric Power Consumption","Iowa","IA",270 +2003-03-01,"Electric Power Consumption","Vermont","VT",1 +2003-03-01,"Electric Power Consumption","North Carolina","NC",334 +2003-03-01,"Electric Power Consumption","Kentucky","KY",152 +2003-03-01,"Electric Power Consumption","Arizona","AZ",11951 +2003-03-01,"Electric Power Consumption","New Mexico","NM",2777 +2003-03-01,"Electric Power Consumption","New Jersey","NJ",9919 +2003-03-01,"Electric Power Consumption","U.S.","U.S.",361243 +2003-03-01,"Electric Power Consumption","Virginia","VA",2442 +2003-03-01,"Electric Power Consumption","Louisiana","LA",14860 +2003-03-01,"Electric Power Consumption","New York","NY",19294 +2003-03-01,"Electric Power Consumption","Oregon","OR",4352 +2003-03-01,"Electric Power Consumption","Nevada","NV",7633 +2003-03-01,"Electric Power Consumption","Tennessee","TN",239 +2003-03-01,"Electric Power Consumption","Mississippi","MS",6275 +2003-03-01,"Electric Power Consumption","Montana","MT",21 +2003-03-01,"Electric Power Consumption","South Carolina","SC",290 +2003-03-01,"Electric Power Consumption","Kansas","KS",976 +2003-03-01,"Electric Power Consumption","Idaho","ID",802 +2003-03-01,"Electric Power Consumption","Arkansas","AR",2530 +2003-03-01,"Electric Power Consumption","Wisconsin","WI",2414 +2003-03-01,"Electric Power Consumption","North Dakota","ND",0 +2003-03-01,"Electric Power Consumption","Maryland","MD",439 +2003-03-01,"Electric Power Consumption","Georgia","GA",867 +2003-03-01,"Electric Power Consumption","Florida","FL",42017 +2003-03-01,"Industrial Consumption","North Dakota","ND",911 +2003-03-01,"Industrial Consumption","Maryland","MD",2041 +2003-03-01,"Industrial Consumption","Louisiana","LA",66109 +2003-03-01,"Industrial Consumption","U.S.","U.S.",615956 +2003-03-01,"Industrial Consumption","New York","NY",8109 +2003-03-01,"Industrial Consumption","Kentucky","KY",8913 +2003-03-01,"Industrial Consumption","Montana","MT",1859 +2003-03-01,"Industrial Consumption","Arizona","AZ",1448 +2003-03-01,"Industrial Consumption","Tennessee","TN",10262 +2003-03-01,"Industrial Consumption","Indiana","IN",21994 +2003-03-01,"Industrial Consumption","District of Columbia","DC",0 +2003-03-01,"Industrial Consumption","Alaska","AK",3121 +2003-03-01,"Industrial Consumption","Massachusetts","MA",5349 +2003-03-01,"Industrial Consumption","Ohio","OH",27309 +2003-03-01,"Industrial Consumption","Utah","UT",2186 +2003-03-01,"Industrial Consumption","Mississippi","MS",7392 +2003-03-01,"Industrial Consumption","Arkansas","AR",9570 +2003-03-01,"Industrial Consumption","Nebraska","NE",2517 +2003-03-01,"Industrial Consumption","Minnesota","MN",8206 +2003-03-01,"Industrial Consumption","Connecticut","CT",2170 +2003-03-01,"Industrial Consumption","Alabama","AL",13359 +2003-03-01,"Industrial Consumption","South Carolina","SC",6090 +2003-03-01,"Industrial Consumption","Virginia","VA",6373 +2003-03-01,"Industrial Consumption","Rhode Island","RI",438 +2003-03-01,"Industrial Consumption","Georgia","GA",13044 +2003-03-01,"Industrial Consumption","Colorado","CO",9920 +2003-03-01,"Industrial Consumption","Maine","ME",282 +2003-03-01,"Industrial Consumption","Texas","TX",150493 +2003-03-01,"Industrial Consumption","Wisconsin","WI",12842 +2003-03-01,"Industrial Consumption","Michigan","MI",22526 +2003-03-01,"Industrial Consumption","Washington","WA",5846 +2003-03-01,"Industrial Consumption","New Mexico","NM",2080 +2003-03-01,"Industrial Consumption","Pennsylvania","PA",17751 +2003-03-01,"Industrial Consumption","California","CA",65097 +2003-03-01,"Industrial Consumption","Vermont","VT",181 +2003-03-01,"Industrial Consumption","Wyoming","WY",3945 +2003-03-01,"Industrial Consumption","New Hampshire","NH",579 +2003-03-01,"Industrial Consumption","Idaho","ID",2403 +2003-03-01,"Industrial Consumption","Iowa","IA",8270 +2003-03-01,"Industrial Consumption","Florida","FL",6236 +2003-03-01,"Industrial Consumption","Illinois","IL",26298 +2003-03-01,"Industrial Consumption","Delaware","DE",1251 +2003-03-01,"Industrial Consumption","Hawaii","HI",40 +2003-03-01,"Industrial Consumption","Oklahoma","OK",11704 +2003-03-01,"Industrial Consumption","Missouri","MO",6028 +2003-03-01,"Industrial Consumption","South Dakota","SD",1067 +2003-03-01,"Industrial Consumption","Kansas","KS",8326 +2003-03-01,"Industrial Consumption","Oregon","OR",5575 +2003-03-01,"Industrial Consumption","West Virginia","WV",2754 +2003-03-01,"Industrial Consumption","New Jersey","NJ",7078 +2003-03-01,"Industrial Consumption","North Carolina","NC",7603 +2003-03-01,"Industrial Consumption","Nevada","NV",1014 +2003-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97721 +2003-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",58692 +2003-03-01,"Residential Consumption","Indiana","IN",18438 +2003-03-01,"Residential Consumption","North Dakota","ND",1663 +2003-03-01,"Residential Consumption","New Hampshire","NH",1223 +2003-03-01,"Residential Consumption","South Carolina","SC",4180 +2003-03-01,"Residential Consumption","Iowa","IA",10432 +2003-03-01,"Residential Consumption","Utah","UT",6045 +2003-03-01,"Residential Consumption","Minnesota","MN",18073 +2003-03-01,"Residential Consumption","Georgia","GA",12180 +2003-03-01,"Residential Consumption","District of Columbia","DC",1698 +2003-03-01,"Residential Consumption","Maine","ME",173 +2003-03-01,"Residential Consumption","Montana","MT",2881 +2003-03-01,"Residential Consumption","Kentucky","KY",6867 +2003-03-01,"Residential Consumption","Washington","WA",9371 +2003-03-01,"Residential Consumption","Missouri","MO",17776 +2003-03-01,"Residential Consumption","Wyoming","WY",1580 +2003-03-01,"Residential Consumption","Texas","TX",28283 +2003-03-01,"Residential Consumption","Rhode Island","RI",3246 +2003-03-01,"Residential Consumption","Mississippi","MS",3853 +2003-03-01,"Residential Consumption","Pennsylvania","PA",38575 +2003-03-01,"Residential Consumption","New Mexico","NM",4600 +2003-03-01,"Residential Consumption","Idaho","ID",2475 +2003-03-01,"Residential Consumption","Arkansas","AR",6369 +2003-03-01,"Residential Consumption","New Jersey","NJ",34147 +2003-03-01,"Residential Consumption","Colorado","CO",14786 +2003-03-01,"Residential Consumption","Alaska","AK",2046 +2003-03-01,"Residential Consumption","New York","NY",61494 +2003-03-01,"Residential Consumption","Illinois","IL",59585 +2003-03-01,"Residential Consumption","Wisconsin","WI",18072 +2003-03-01,"Residential Consumption","Florida","FL",1600 +2003-03-01,"Residential Consumption","Louisiana","LA",5721 +2003-03-01,"Residential Consumption","Connecticut","CT",6612 +2003-03-01,"Residential Consumption","Delaware","DE",1566 +2003-03-01,"Residential Consumption","Alabama","AL",6038 +2003-03-01,"Residential Consumption","West Virginia","WV",4385 +2003-03-01,"Residential Consumption","North Carolina","NC",8230 +2003-03-01,"Residential Consumption","Virginia","VA",9711 +2003-03-01,"Residential Consumption","Arizona","AZ",4931 +2003-03-01,"Residential Consumption","Oregon","OR",4992 +2003-03-01,"Residential Consumption","Ohio","OH",46955 +2003-03-01,"Residential Consumption","Nebraska","NE",6648 +2003-03-01,"Residential Consumption","Nevada","NV",4059 +2003-03-01,"Residential Consumption","Massachusetts","MA",19192 +2003-03-01,"Residential Consumption","Oklahoma","OK",11550 +2003-03-01,"Residential Consumption","California","CA",51363 +2003-03-01,"Residential Consumption","Hawaii","HI",48 +2003-03-01,"Residential Consumption","Vermont","VT",483 +2003-03-01,"Residential Consumption","Tennessee","TN",10227 +2003-03-01,"Residential Consumption","Michigan","MI",55754 +2003-03-01,"Residential Consumption","Maryland","MD",11483 +2003-03-01,"Residential Consumption","South Dakota","SD",1870 +2003-03-01,"Residential Consumption","Kansas","KS",11051 +2003-03-01,"Residential Consumption","U.S.","U.S.",674582 +2003-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",1552 +2003-04-01,"Commercial Consumption","Washington","WA",4652 +2003-04-01,"Commercial Consumption","Oregon","OR",2544 +2003-04-01,"Commercial Consumption","New Jersey","NJ",14111 +2003-04-01,"Commercial Consumption","Kansas","KS",2903 +2003-04-01,"Commercial Consumption","North Carolina","NC",3255 +2003-04-01,"Commercial Consumption","Kentucky","KY",2415 +2003-04-01,"Commercial Consumption","California","CA",19424 +2003-04-01,"Commercial Consumption","Alabama","AL",1858 +2003-04-01,"Commercial Consumption","Delaware","DE",727 +2003-04-01,"Commercial Consumption","Massachusetts","MA",5454 +2003-04-01,"Commercial Consumption","U.S.","U.S.",261069 +2003-04-01,"Commercial Consumption","Georgia","GA",5621 +2003-04-01,"Commercial Consumption","Vermont","VT",302 +2003-04-01,"Commercial Consumption","Idaho","ID",1102 +2003-04-01,"Commercial Consumption","Connecticut","CT",3602 +2003-04-01,"Commercial Consumption","South Carolina","SC",1771 +2003-04-01,"Commercial Consumption","Utah","UT",2577 +2003-04-01,"Commercial Consumption","Pennsylvania","PA",12824 +2003-04-01,"Commercial Consumption","Wisconsin","WI",6766 +2003-04-01,"Commercial Consumption","Maryland","MD",5794 +2003-04-01,"Commercial Consumption","Ohio","OH",14641 +2003-04-01,"Commercial Consumption","Iowa","IA",3724 +2003-04-01,"Commercial Consumption","Alaska","AK",1363 +2003-04-01,"Commercial Consumption","Arkansas","AR",2584 +2003-04-01,"Commercial Consumption","Oklahoma","OK",3426 +2003-04-01,"Commercial Consumption","Virginia","VA",4562 +2003-04-01,"Commercial Consumption","Missouri","MO",4766 +2003-04-01,"Commercial Consumption","Rhode Island","RI",1191 +2003-04-01,"Commercial Consumption","Nebraska","NE",2482 +2003-04-01,"Commercial Consumption","Arizona","AZ",2852 +2003-04-01,"Commercial Consumption","District of Columbia","DC",1434 +2003-04-01,"Commercial Consumption","West Virginia","WV",1855 +2003-04-01,"Commercial Consumption","Colorado","CO",4780 +2003-04-01,"Commercial Consumption","Montana","MT",1218 +2003-04-01,"Commercial Consumption","Texas","TX",17295 +2003-04-01,"Commercial Consumption","Mississippi","MS",1530 +2003-04-01,"Commercial Consumption","Wyoming","WY",888 +2003-04-01,"Commercial Consumption","North Dakota","ND",562 +2003-04-01,"Commercial Consumption","Minnesota","MN",7958 +2003-04-01,"Commercial Consumption","New Mexico","NM",2344 +2003-04-01,"Commercial Consumption","Hawaii","HI",144 +2003-04-01,"Commercial Consumption","New York","NY",28289 +2003-04-01,"Commercial Consumption","Tennessee","TN",3838 +2003-04-01,"Commercial Consumption","Nevada","NV",2151 +2003-04-01,"Commercial Consumption","Louisiana","LA",2190 +2003-04-01,"Commercial Consumption","South Dakota","SD",790 +2003-04-01,"Commercial Consumption","New Hampshire","NH",863 +2003-04-01,"Commercial Consumption","Maine","ME",446 +2003-04-01,"Commercial Consumption","Florida","FL",4514 +2003-04-01,"Commercial Consumption","Michigan","MI",17614 +2003-04-01,"Commercial Consumption","Indiana","IN",5494 +2003-04-01,"Commercial Consumption","Illinois","IL",15577 +2003-04-01,"Delivered to Consumers","U.S.","U.S.",1603853 +2003-04-01,"Delivered to Consumers","Wyoming","WY",5737 +2003-04-01,"Delivered to Consumers","Virginia","VA",18114 +2003-04-01,"Delivered to Consumers","Missouri","MO",21083 +2003-04-01,"Delivered to Consumers","Massachusetts","MA",35646 +2003-04-01,"Delivered to Consumers","Colorado","CO",25380 +2003-04-01,"Delivered to Consumers","Louisiana","LA",89376 +2003-04-01,"Delivered to Consumers","New York","NY",96357 +2003-04-01,"Delivered to Consumers","Kansas","KS",16337 +2003-04-01,"Delivered to Consumers","Kentucky","KY",14017 +2003-04-01,"Delivered to Consumers","Arkansas","AR",18625 +2003-04-01,"Delivered to Consumers","Oregon","OR",13784 +2003-04-01,"Delivered to Consumers","Nevada","NV",12410 +2003-04-01,"Delivered to Consumers","Washington","WA",19269 +2003-04-01,"Delivered to Consumers","District of Columbia","DC",2478 +2003-04-01,"Delivered to Consumers","Hawaii","HI",229 +2003-04-01,"Delivered to Consumers","Michigan","MI",80651 +2003-04-01,"Delivered to Consumers","South Carolina","SC",11948 +2003-04-01,"Delivered to Consumers","Georgia","GA",30232 +2003-04-01,"Delivered to Consumers","Utah","UT",10664 +2003-04-01,"Delivered to Consumers","Montana","MT",4682 +2003-04-01,"Delivered to Consumers","Pennsylvania","PA",53759 +2003-04-01,"Delivered to Consumers","New Hampshire","NH",3772 +2003-04-01,"Delivered to Consumers","Delaware","DE",3399 +2003-04-01,"Delivered to Consumers","Illinois","IL",74457 +2003-04-01,"Delivered to Consumers","Rhode Island","RI",5721 +2003-04-01,"Delivered to Consumers","Ohio","OH",65861 +2003-04-01,"Delivered to Consumers","North Carolina","NC",15717 +2003-04-01,"Delivered to Consumers","Maine","ME",5924 +2003-04-01,"Delivered to Consumers","North Dakota","ND",2464 +2003-04-01,"Delivered to Consumers","West Virginia","WV",7588 +2003-04-01,"Delivered to Consumers","Idaho","ID",5498 +2003-04-01,"Delivered to Consumers","Alabama","AL",23422 +2003-04-01,"Delivered to Consumers","Wisconsin","WI",32270 +2003-04-01,"Delivered to Consumers","New Mexico","NM",9893 +2003-04-01,"Delivered to Consumers","Indiana","IN",35903 +2003-04-01,"Delivered to Consumers","South Dakota","SD",2953 +2003-04-01,"Delivered to Consumers","Iowa","IA",16870 +2003-04-01,"Delivered to Consumers","Connecticut","CT",13329 +2003-04-01,"Delivered to Consumers","California","CA",169036 +2003-04-01,"Delivered to Consumers","Vermont","VT",906 +2003-04-01,"Delivered to Consumers","Maryland","MD",15685 +2003-04-01,"Delivered to Consumers","Alaska","AK",9112 +2003-04-01,"Delivered to Consumers","Oklahoma","OK",32941 +2003-04-01,"Delivered to Consumers","Tennessee","TN",18989 +2003-04-01,"Delivered to Consumers","Nebraska","NE",8644 +2003-04-01,"Delivered to Consumers","Mississippi","MS",19195 +2003-04-01,"Delivered to Consumers","Texas","TX",274512 +2003-04-01,"Delivered to Consumers","New Jersey","NJ",52763 +2003-04-01,"Delivered to Consumers","Arizona","AZ",16848 +2003-04-01,"Delivered to Consumers","Minnesota","MN",26415 +2003-04-01,"Delivered to Consumers","Florida","FL",51487 +2003-04-01,"Electric Power Consumption","New Mexico","NM",2335 +2003-04-01,"Electric Power Consumption","Kentucky","KY",189 +2003-04-01,"Electric Power Consumption","Ohio","OH",1393 +2003-04-01,"Electric Power Consumption","Maryland","MD",732 +2003-04-01,"Electric Power Consumption","California","CA",43190 +2003-04-01,"Electric Power Consumption","Colorado","CO",4403 +2003-04-01,"Electric Power Consumption","U.S.","U.S.",352164 +2003-04-01,"Electric Power Consumption","South Dakota","SD",122 +2003-04-01,"Electric Power Consumption","Nebraska","NE",236 +2003-04-01,"Electric Power Consumption","Mississippi","MS",8585 +2003-04-01,"Electric Power Consumption","Hawaii","HI",0 +2003-04-01,"Electric Power Consumption","Indiana","IN",603 +2003-04-01,"Electric Power Consumption","Virginia","VA",3186 +2003-04-01,"Electric Power Consumption","New York","NY",18315 +2003-04-01,"Electric Power Consumption","Vermont","VT",2 +2003-04-01,"Electric Power Consumption","Maine","ME",5130 +2003-04-01,"Electric Power Consumption","New Hampshire","NH",1544 +2003-04-01,"Electric Power Consumption","Alabama","AL",5528 +2003-04-01,"Electric Power Consumption","Arkansas","AR",3278 +2003-04-01,"Electric Power Consumption","Rhode Island","RI",1997 +2003-04-01,"Electric Power Consumption","Massachusetts","MA",13235 +2003-04-01,"Electric Power Consumption","West Virginia","WV",140 +2003-04-01,"Electric Power Consumption","Washington","WA",1890 +2003-04-01,"Electric Power Consumption","South Carolina","SC",980 +2003-04-01,"Electric Power Consumption","Utah","UT",1652 +2003-04-01,"Electric Power Consumption","Connecticut","CT",3486 +2003-04-01,"Electric Power Consumption","Alaska","AK",2590 +2003-04-01,"Electric Power Consumption","New Jersey","NJ",9975 +2003-04-01,"Electric Power Consumption","Oklahoma","OK",12588 +2003-04-01,"Electric Power Consumption","Michigan","MI",9259 +2003-04-01,"Electric Power Consumption","Pennsylvania","PA",2468 +2003-04-01,"Electric Power Consumption","Tennessee","TN",866 +2003-04-01,"Electric Power Consumption","Arizona","AZ",9660 +2003-04-01,"Electric Power Consumption","Texas","TX",101849 +2003-04-01,"Electric Power Consumption","Oregon","OR",1994 +2003-04-01,"Electric Power Consumption","Minnesota","MN",1029 +2003-04-01,"Electric Power Consumption","Kansas","KS",716 +2003-04-01,"Electric Power Consumption","Nevada","NV",6427 +2003-04-01,"Electric Power Consumption","Wyoming","WY",249 +2003-04-01,"Electric Power Consumption","North Carolina","NC",512 +2003-04-01,"Electric Power Consumption","Georgia","GA",3973 +2003-04-01,"Electric Power Consumption","Florida","FL",39455 +2003-04-01,"Electric Power Consumption","Louisiana","LA",18716 +2003-04-01,"Electric Power Consumption","Idaho","ID",329 +2003-04-01,"Electric Power Consumption","Illinois","IL",1699 +2003-04-01,"Electric Power Consumption","Wisconsin","WI",2120 +2003-04-01,"Electric Power Consumption","Iowa","IA",241 +2003-04-01,"Electric Power Consumption","Missouri","MO",2434 +2003-04-01,"Electric Power Consumption","North Dakota","ND",0 +2003-04-01,"Electric Power Consumption","Montana","MT",2 +2003-04-01,"Electric Power Consumption","Delaware","DE",861 +2003-04-01,"Industrial Consumption","Massachusetts","MA",4041 +2003-04-01,"Industrial Consumption","Oklahoma","OK",11216 +2003-04-01,"Industrial Consumption","U.S.","U.S.",574624 +2003-04-01,"Industrial Consumption","Wyoming","WY",3672 +2003-04-01,"Industrial Consumption","Arizona","AZ",1325 +2003-04-01,"Industrial Consumption","Utah","UT",2021 +2003-04-01,"Industrial Consumption","Oregon","OR",5408 +2003-04-01,"Industrial Consumption","New York","NY",7686 +2003-04-01,"Industrial Consumption","Nevada","NV",1018 +2003-04-01,"Industrial Consumption","Kentucky","KY",7847 +2003-04-01,"Industrial Consumption","Delaware","DE",847 +2003-04-01,"Industrial Consumption","Missouri","MO",4820 +2003-04-01,"Industrial Consumption","California","CA",59951 +2003-04-01,"Industrial Consumption","Texas","TX",144425 +2003-04-01,"Industrial Consumption","Nebraska","NE",2548 +2003-04-01,"Industrial Consumption","Minnesota","MN",7310 +2003-04-01,"Industrial Consumption","North Carolina","NC",7196 +2003-04-01,"Industrial Consumption","Hawaii","HI",38 +2003-04-01,"Industrial Consumption","South Dakota","SD",1001 +2003-04-01,"Industrial Consumption","Ohio","OH",23316 +2003-04-01,"Industrial Consumption","Pennsylvania","PA",16102 +2003-04-01,"Industrial Consumption","Alabama","AL",12784 +2003-04-01,"Industrial Consumption","West Virginia","WV",3308 +2003-04-01,"Industrial Consumption","New Jersey","NJ",6438 +2003-04-01,"Industrial Consumption","Georgia","GA",13382 +2003-04-01,"Industrial Consumption","Colorado","CO",7462 +2003-04-01,"Industrial Consumption","New Mexico","NM",2136 +2003-04-01,"Industrial Consumption","Arkansas","AR",9720 +2003-04-01,"Industrial Consumption","Iowa","IA",7315 +2003-04-01,"Industrial Consumption","Connecticut","CT",2119 +2003-04-01,"Industrial Consumption","Rhode Island","RI",396 +2003-04-01,"Industrial Consumption","Alaska","AK",3831 +2003-04-01,"Industrial Consumption","North Dakota","ND",1077 +2003-04-01,"Industrial Consumption","Montana","MT",1842 +2003-04-01,"Industrial Consumption","Louisiana","LA",65699 +2003-04-01,"Industrial Consumption","Mississippi","MS",7250 +2003-04-01,"Industrial Consumption","South Carolina","SC",6962 +2003-04-01,"Industrial Consumption","Michigan","MI",19100 +2003-04-01,"Industrial Consumption","Indiana","IN",19376 +2003-04-01,"Industrial Consumption","District of Columbia","DC",0 +2003-04-01,"Industrial Consumption","Florida","FL",6325 +2003-04-01,"Industrial Consumption","Illinois","IL",21911 +2003-04-01,"Industrial Consumption","Maryland","MD",2422 +2003-04-01,"Industrial Consumption","Washington","WA",5666 +2003-04-01,"Industrial Consumption","Kansas","KS",7215 +2003-04-01,"Industrial Consumption","Maine","ME",234 +2003-04-01,"Industrial Consumption","Virginia","VA",4408 +2003-04-01,"Industrial Consumption","Vermont","VT",269 +2003-04-01,"Industrial Consumption","Wisconsin","WI",11450 +2003-04-01,"Industrial Consumption","Tennessee","TN",9997 +2003-04-01,"Industrial Consumption","New Hampshire","NH",537 +2003-04-01,"Industrial Consumption","Idaho","ID",2209 +2003-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93569 +2003-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",46108 +2003-04-01,"Residential Consumption","Georgia","GA",7256 +2003-04-01,"Residential Consumption","New Hampshire","NH",827 +2003-04-01,"Residential Consumption","Washington","WA",7061 +2003-04-01,"Residential Consumption","Arizona","AZ",3011 +2003-04-01,"Residential Consumption","Wyoming","WY",928 +2003-04-01,"Residential Consumption","Louisiana","LA",2771 +2003-04-01,"Residential Consumption","Vermont","VT",332 +2003-04-01,"Residential Consumption","Virginia","VA",5958 +2003-04-01,"Residential Consumption","Michigan","MI",34678 +2003-04-01,"Residential Consumption","South Dakota","SD",1040 +2003-04-01,"Residential Consumption","California","CA",46472 +2003-04-01,"Residential Consumption","West Virginia","WV",2285 +2003-04-01,"Residential Consumption","Mississippi","MS",1830 +2003-04-01,"Residential Consumption","Hawaii","HI",46 +2003-04-01,"Residential Consumption","Maryland","MD",6738 +2003-04-01,"Residential Consumption","Minnesota","MN",10118 +2003-04-01,"Residential Consumption","North Dakota","ND",825 +2003-04-01,"Residential Consumption","Kentucky","KY",3566 +2003-04-01,"Residential Consumption","Missouri","MO",9063 +2003-04-01,"Residential Consumption","Texas","TX",10943 +2003-04-01,"Residential Consumption","Connecticut","CT",4123 +2003-04-01,"Residential Consumption","Florida","FL",1193 +2003-04-01,"Residential Consumption","U.S.","U.S.",414495 +2003-04-01,"Residential Consumption","Illinois","IL",35270 +2003-04-01,"Residential Consumption","South Carolina","SC",2235 +2003-04-01,"Residential Consumption","North Carolina","NC",4754 +2003-04-01,"Residential Consumption","Nebraska","NE",3378 +2003-04-01,"Residential Consumption","Maine","ME",114 +2003-04-01,"Residential Consumption","Arkansas","AR",3043 +2003-04-01,"Residential Consumption","New Jersey","NJ",22238 +2003-04-01,"Residential Consumption","Ohio","OH",26511 +2003-04-01,"Residential Consumption","Iowa","IA",5590 +2003-04-01,"Residential Consumption","New Mexico","NM",3078 +2003-04-01,"Residential Consumption","Massachusetts","MA",12916 +2003-04-01,"Residential Consumption","Idaho","ID",1857 +2003-04-01,"Residential Consumption","Montana","MT",1618 +2003-04-01,"Residential Consumption","Delaware","DE",966 +2003-04-01,"Residential Consumption","Alaska","AK",1328 +2003-04-01,"Residential Consumption","New York","NY",42067 +2003-04-01,"Residential Consumption","Oregon","OR",3838 +2003-04-01,"Residential Consumption","Utah","UT",4414 +2003-04-01,"Residential Consumption","Indiana","IN",10431 +2003-04-01,"Residential Consumption","Colorado","CO",8735 +2003-04-01,"Residential Consumption","Kansas","KS",5503 +2003-04-01,"Residential Consumption","Alabama","AL",3253 +2003-04-01,"Residential Consumption","Rhode Island","RI",2137 +2003-04-01,"Residential Consumption","Wisconsin","WI",11933 +2003-04-01,"Residential Consumption","Tennessee","TN",4288 +2003-04-01,"Residential Consumption","Nevada","NV",2814 +2003-04-01,"Residential Consumption","District of Columbia","DC",1044 +2003-04-01,"Residential Consumption","Pennsylvania","PA",22365 +2003-04-01,"Residential Consumption","Oklahoma","OK",5712 +2003-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",1502 +2003-05-01,"Commercial Consumption","Wyoming","WY",616 +2003-05-01,"Commercial Consumption","Colorado","CO",2992 +2003-05-01,"Commercial Consumption","Massachusetts","MA",4044 +2003-05-01,"Commercial Consumption","New Jersey","NJ",9682 +2003-05-01,"Commercial Consumption","West Virginia","WV",1365 +2003-05-01,"Commercial Consumption","Pennsylvania","PA",7290 +2003-05-01,"Commercial Consumption","U.S.","U.S.",179065 +2003-05-01,"Commercial Consumption","Texas","TX",14899 +2003-05-01,"Commercial Consumption","Kansas","KS",1636 +2003-05-01,"Commercial Consumption","Alabama","AL",1476 +2003-05-01,"Commercial Consumption","New York","NY",20885 +2003-05-01,"Commercial Consumption","Arizona","AZ",2457 +2003-05-01,"Commercial Consumption","Washington","WA",3627 +2003-05-01,"Commercial Consumption","North Dakota","ND",371 +2003-05-01,"Commercial Consumption","Missouri","MO",2974 +2003-05-01,"Commercial Consumption","Georgia","GA",1682 +2003-05-01,"Commercial Consumption","Rhode Island","RI",757 +2003-05-01,"Commercial Consumption","Arkansas","AR",1755 +2003-05-01,"Commercial Consumption","Nebraska","NE",1586 +2003-05-01,"Commercial Consumption","Delaware","DE",440 +2003-05-01,"Commercial Consumption","Minnesota","MN",5316 +2003-05-01,"Commercial Consumption","Vermont","VT",157 +2003-05-01,"Commercial Consumption","Nevada","NV",1879 +2003-05-01,"Commercial Consumption","South Carolina","SC",1428 +2003-05-01,"Commercial Consumption","Oregon","OR",2088 +2003-05-01,"Commercial Consumption","New Hampshire","NH",520 +2003-05-01,"Commercial Consumption","Ohio","OH",7074 +2003-05-01,"Commercial Consumption","Alaska","AK",1065 +2003-05-01,"Commercial Consumption","Connecticut","CT",2077 +2003-05-01,"Commercial Consumption","North Carolina","NC",2268 +2003-05-01,"Commercial Consumption","New Mexico","NM",1604 +2003-05-01,"Commercial Consumption","Oklahoma","OK",2004 +2003-05-01,"Commercial Consumption","South Dakota","SD",454 +2003-05-01,"Commercial Consumption","Maine","ME",219 +2003-05-01,"Commercial Consumption","Iowa","IA",2003 +2003-05-01,"Commercial Consumption","Hawaii","HI",144 +2003-05-01,"Commercial Consumption","Tennessee","TN",3038 +2003-05-01,"Commercial Consumption","Utah","UT",1592 +2003-05-01,"Commercial Consumption","Idaho","ID",839 +2003-05-01,"Commercial Consumption","California","CA",18107 +2003-05-01,"Commercial Consumption","Michigan","MI",10215 +2003-05-01,"Commercial Consumption","Indiana","IN",3916 +2003-05-01,"Commercial Consumption","Louisiana","LA",1609 +2003-05-01,"Commercial Consumption","Illinois","IL",9138 +2003-05-01,"Commercial Consumption","Virginia","VA",3285 +2003-05-01,"Commercial Consumption","Wisconsin","WI",3717 +2003-05-01,"Commercial Consumption","Montana","MT",930 +2003-05-01,"Commercial Consumption","Kentucky","KY",1512 +2003-05-01,"Commercial Consumption","Maryland","MD",3869 +2003-05-01,"Commercial Consumption","Florida","FL",4264 +2003-05-01,"Commercial Consumption","Mississippi","MS",1218 +2003-05-01,"Commercial Consumption","District of Columbia","DC",982 +2003-05-01,"Delivered to Consumers","Indiana","IN",31266 +2003-05-01,"Delivered to Consumers","South Dakota","SD",1928 +2003-05-01,"Delivered to Consumers","Oklahoma","OK",30147 +2003-05-01,"Delivered to Consumers","Ohio","OH",43326 +2003-05-01,"Delivered to Consumers","Kentucky","KY",10797 +2003-05-01,"Delivered to Consumers","Iowa","IA",12421 +2003-05-01,"Delivered to Consumers","Mississippi","MS",18492 +2003-05-01,"Delivered to Consumers","Massachusetts","MA",26400 +2003-05-01,"Delivered to Consumers","California","CA",156895 +2003-05-01,"Delivered to Consumers","New Mexico","NM",8557 +2003-05-01,"Delivered to Consumers","Wyoming","WY",4976 +2003-05-01,"Delivered to Consumers","Texas","TX",307569 +2003-05-01,"Delivered to Consumers","Maine","ME",4577 +2003-05-01,"Delivered to Consumers","Rhode Island","RI",4332 +2003-05-01,"Delivered to Consumers","Hawaii","HI",226 +2003-05-01,"Delivered to Consumers","Alaska","AK",8639 +2003-05-01,"Delivered to Consumers","Virginia","VA",15312 +2003-05-01,"Delivered to Consumers","South Carolina","SC",9803 +2003-05-01,"Delivered to Consumers","New Jersey","NJ",38335 +2003-05-01,"Delivered to Consumers","Georgia","GA",21920 +2003-05-01,"Delivered to Consumers","New York","NY",69848 +2003-05-01,"Delivered to Consumers","Idaho","ID",4487 +2003-05-01,"Delivered to Consumers","Tennessee","TN",14580 +2003-05-01,"Delivered to Consumers","Connecticut","CT",9619 +2003-05-01,"Delivered to Consumers","North Carolina","NC",12038 +2003-05-01,"Delivered to Consumers","Missouri","MO",13307 +2003-05-01,"Delivered to Consumers","Oregon","OR",12066 +2003-05-01,"Delivered to Consumers","Louisiana","LA",88426 +2003-05-01,"Delivered to Consumers","Arizona","AZ",14559 +2003-05-01,"Delivered to Consumers","New Hampshire","NH",3085 +2003-05-01,"Delivered to Consumers","North Dakota","ND",2072 +2003-05-01,"Delivered to Consumers","Delaware","DE",2081 +2003-05-01,"Delivered to Consumers","Vermont","VT",539 +2003-05-01,"Delivered to Consumers","Montana","MT",3515 +2003-05-01,"Delivered to Consumers","Maryland","MD",9809 +2003-05-01,"Delivered to Consumers","Kansas","KS",13386 +2003-05-01,"Delivered to Consumers","Washington","WA",14939 +2003-05-01,"Delivered to Consumers","U.S.","U.S.",1379497 +2003-05-01,"Delivered to Consumers","Illinois","IL",47169 +2003-05-01,"Delivered to Consumers","Michigan","MI",53258 +2003-05-01,"Delivered to Consumers","Alabama","AL",20310 +2003-05-01,"Delivered to Consumers","Wisconsin","WI",20752 +2003-05-01,"Delivered to Consumers","Minnesota","MN",18135 +2003-05-01,"Delivered to Consumers","Utah","UT",6942 +2003-05-01,"Delivered to Consumers","Arkansas","AR",17603 +2003-05-01,"Delivered to Consumers","Pennsylvania","PA",36015 +2003-05-01,"Delivered to Consumers","Colorado","CO",24811 +2003-05-01,"Delivered to Consumers","Nevada","NV",12410 +2003-05-01,"Delivered to Consumers","Florida","FL",62575 +2003-05-01,"Delivered to Consumers","District of Columbia","DC",1550 +2003-05-01,"Delivered to Consumers","West Virginia","WV",5910 +2003-05-01,"Delivered to Consumers","Nebraska","NE",6232 +2003-05-01,"Electric Power Consumption","New Jersey","NJ",10237 +2003-05-01,"Electric Power Consumption","Vermont","VT",3 +2003-05-01,"Electric Power Consumption","Montana","MT",11 +2003-05-01,"Electric Power Consumption","Connecticut","CT",3226 +2003-05-01,"Electric Power Consumption","Florida","FL",50901 +2003-05-01,"Electric Power Consumption","Virginia","VA",2132 +2003-05-01,"Electric Power Consumption","New Mexico","NM",3256 +2003-05-01,"Electric Power Consumption","South Carolina","SC",738 +2003-05-01,"Electric Power Consumption","Michigan","MI",6786 +2003-05-01,"Electric Power Consumption","Massachusetts","MA",11504 +2003-05-01,"Electric Power Consumption","Kansas","KS",791 +2003-05-01,"Electric Power Consumption","Nevada","NV",7558 +2003-05-01,"Electric Power Consumption","Iowa","IA",195 +2003-05-01,"Electric Power Consumption","South Dakota","SD",39 +2003-05-01,"Electric Power Consumption","Maine","ME",4088 +2003-05-01,"Electric Power Consumption","Alaska","AK",2515 +2003-05-01,"Electric Power Consumption","Colorado","CO",5813 +2003-05-01,"Electric Power Consumption","Wisconsin","WI",1061 +2003-05-01,"Electric Power Consumption","Missouri","MO",1315 +2003-05-01,"Electric Power Consumption","Hawaii","HI",0 +2003-05-01,"Electric Power Consumption","Georgia","GA",2448 +2003-05-01,"Electric Power Consumption","Oklahoma","OK",14872 +2003-05-01,"Electric Power Consumption","Oregon","OR",1537 +2003-05-01,"Electric Power Consumption","Wyoming","WY",90 +2003-05-01,"Electric Power Consumption","Mississippi","MS",9406 +2003-05-01,"Electric Power Consumption","Delaware","DE",358 +2003-05-01,"Electric Power Consumption","California","CA",40837 +2003-05-01,"Electric Power Consumption","Idaho","ID",237 +2003-05-01,"Electric Power Consumption","Utah","UT",927 +2003-05-01,"Electric Power Consumption","Minnesota","MN",481 +2003-05-01,"Electric Power Consumption","Illinois","IL",1563 +2003-05-01,"Electric Power Consumption","New Hampshire","NH",1569 +2003-05-01,"Electric Power Consumption","New York","NY",17100 +2003-05-01,"Electric Power Consumption","Rhode Island","RI",1848 +2003-05-01,"Electric Power Consumption","U.S.","U.S.",394021 +2003-05-01,"Electric Power Consumption","Indiana","IN",2583 +2003-05-01,"Electric Power Consumption","Louisiana","LA",20153 +2003-05-01,"Electric Power Consumption","Texas","TX",141494 +2003-05-01,"Electric Power Consumption","West Virginia","WV",95 +2003-05-01,"Electric Power Consumption","Pennsylvania","PA",2210 +2003-05-01,"Electric Power Consumption","Tennessee","TN",29 +2003-05-01,"Electric Power Consumption","North Carolina","NC",517 +2003-05-01,"Electric Power Consumption","North Dakota","ND",0 +2003-05-01,"Electric Power Consumption","Maryland","MD",630 +2003-05-01,"Electric Power Consumption","Arizona","AZ",8750 +2003-05-01,"Electric Power Consumption","Alabama","AL",4274 +2003-05-01,"Electric Power Consumption","Washington","WA",1140 +2003-05-01,"Electric Power Consumption","Arkansas","AR",5252 +2003-05-01,"Electric Power Consumption","Nebraska","NE",263 +2003-05-01,"Electric Power Consumption","Kentucky","KY",302 +2003-05-01,"Electric Power Consumption","Ohio","OH",887 +2003-05-01,"Industrial Consumption","Montana","MT",1310 +2003-05-01,"Industrial Consumption","Maryland","MD",1445 +2003-05-01,"Industrial Consumption","Hawaii","HI",35 +2003-05-01,"Industrial Consumption","Arizona","AZ",1262 +2003-05-01,"Industrial Consumption","Alabama","AL",12651 +2003-05-01,"Industrial Consumption","Florida","FL",6434 +2003-05-01,"Industrial Consumption","Indiana","IN",18238 +2003-05-01,"Industrial Consumption","Illinois","IL",19034 +2003-05-01,"Industrial Consumption","Louisiana","LA",64719 +2003-05-01,"Industrial Consumption","South Dakota","SD",851 +2003-05-01,"Industrial Consumption","U.S.","U.S.",557167 +2003-05-01,"Industrial Consumption","Pennsylvania","PA",14232 +2003-05-01,"Industrial Consumption","Iowa","IA",7108 +2003-05-01,"Industrial Consumption","Alaska","AK",4124 +2003-05-01,"Industrial Consumption","New Mexico","NM",2061 +2003-05-01,"Industrial Consumption","New York","NY",6089 +2003-05-01,"Industrial Consumption","Texas","TX",143171 +2003-05-01,"Industrial Consumption","Vermont","VT",190 +2003-05-01,"Industrial Consumption","New Hampshire","NH",495 +2003-05-01,"Industrial Consumption","Kentucky","KY",7552 +2003-05-01,"Industrial Consumption","Delaware","DE",748 +2003-05-01,"Industrial Consumption","Kansas","KS",8177 +2003-05-01,"Industrial Consumption","Oregon","OR",5382 +2003-05-01,"Industrial Consumption","California","CA",61718 +2003-05-01,"Industrial Consumption","Virginia","VA",7190 +2003-05-01,"Industrial Consumption","New Jersey","NJ",6258 +2003-05-01,"Industrial Consumption","Massachusetts","MA",3162 +2003-05-01,"Industrial Consumption","Ohio","OH",22015 +2003-05-01,"Industrial Consumption","Utah","UT",1934 +2003-05-01,"Industrial Consumption","Nevada","NV",858 +2003-05-01,"Industrial Consumption","Maine","ME",210 +2003-05-01,"Industrial Consumption","Arkansas","AR",9116 +2003-05-01,"Industrial Consumption","Connecticut","CT",1737 +2003-05-01,"Industrial Consumption","Georgia","GA",13121 +2003-05-01,"Industrial Consumption","District of Columbia","DC",0 +2003-05-01,"Industrial Consumption","Colorado","CO",10331 +2003-05-01,"Industrial Consumption","Nebraska","NE",2640 +2003-05-01,"Industrial Consumption","Minnesota","MN",6802 +2003-05-01,"Industrial Consumption","Idaho","ID",2008 +2003-05-01,"Industrial Consumption","North Dakota","ND",1239 +2003-05-01,"Industrial Consumption","Missouri","MO",4273 +2003-05-01,"Industrial Consumption","Washington","WA",5070 +2003-05-01,"Industrial Consumption","Mississippi","MS",6818 +2003-05-01,"Industrial Consumption","Wisconsin","WI",9679 +2003-05-01,"Industrial Consumption","Tennessee","TN",9368 +2003-05-01,"Industrial Consumption","Michigan","MI",15427 +2003-05-01,"Industrial Consumption","Rhode Island","RI",309 +2003-05-01,"Industrial Consumption","North Carolina","NC",6729 +2003-05-01,"Industrial Consumption","Oklahoma","OK",10525 +2003-05-01,"Industrial Consumption","South Carolina","SC",6475 +2003-05-01,"Industrial Consumption","West Virginia","WV",3279 +2003-05-01,"Industrial Consumption","Wyoming","WY",3570 +2003-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95542 +2003-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",39657 +2003-05-01,"Residential Consumption","Rhode Island","RI",1418 +2003-05-01,"Residential Consumption","Oregon","OR",3058 +2003-05-01,"Residential Consumption","Mississippi","MS",1050 +2003-05-01,"Residential Consumption","Connecticut","CT",2579 +2003-05-01,"Residential Consumption","Tennessee","TN",2146 +2003-05-01,"Residential Consumption","Michigan","MI",20830 +2003-05-01,"Residential Consumption","Nevada","NV",2114 +2003-05-01,"Residential Consumption","Pennsylvania","PA",12283 +2003-05-01,"Residential Consumption","Florida","FL",976 +2003-05-01,"Residential Consumption","New Jersey","NJ",12159 +2003-05-01,"Residential Consumption","New Hampshire","NH",500 +2003-05-01,"Residential Consumption","Montana","MT",1264 +2003-05-01,"Residential Consumption","West Virginia","WV",1171 +2003-05-01,"Residential Consumption","Idaho","ID",1403 +2003-05-01,"Residential Consumption","Kansas","KS",2782 +2003-05-01,"Residential Consumption","California","CA",36234 +2003-05-01,"Residential Consumption","South Carolina","SC",1162 +2003-05-01,"Residential Consumption","Ohio","OH",13351 +2003-05-01,"Residential Consumption","North Carolina","NC",2524 +2003-05-01,"Residential Consumption","Iowa","IA",3114 +2003-05-01,"Residential Consumption","Hawaii","HI",48 +2003-05-01,"Residential Consumption","New Mexico","NM",1635 +2003-05-01,"Residential Consumption","Colorado","CO",5675 +2003-05-01,"Residential Consumption","Arizona","AZ",2090 +2003-05-01,"Residential Consumption","Texas","TX",8006 +2003-05-01,"Residential Consumption","Wisconsin","WI",6295 +2003-05-01,"Residential Consumption","Utah","UT",2489 +2003-05-01,"Residential Consumption","Maryland","MD",3866 +2003-05-01,"Residential Consumption","South Dakota","SD",585 +2003-05-01,"Residential Consumption","District of Columbia","DC",568 +2003-05-01,"Residential Consumption","Indiana","IN",6528 +2003-05-01,"Residential Consumption","Arkansas","AR",1480 +2003-05-01,"Residential Consumption","Kentucky","KY",1431 +2003-05-01,"Residential Consumption","Oklahoma","OK",2747 +2003-05-01,"Residential Consumption","Alaska","AK",935 +2003-05-01,"Residential Consumption","Minnesota","MN",5537 +2003-05-01,"Residential Consumption","Massachusetts","MA",7690 +2003-05-01,"Residential Consumption","Missouri","MO",4744 +2003-05-01,"Residential Consumption","Alabama","AL",1909 +2003-05-01,"Residential Consumption","Virginia","VA",2705 +2003-05-01,"Residential Consumption","Washington","WA",5102 +2003-05-01,"Residential Consumption","Wyoming","WY",700 +2003-05-01,"Residential Consumption","New York","NY",25774 +2003-05-01,"Residential Consumption","Nebraska","NE",1743 +2003-05-01,"Residential Consumption","Illinois","IL",17433 +2003-05-01,"Residential Consumption","Louisiana","LA",1945 +2003-05-01,"Residential Consumption","Vermont","VT",188 +2003-05-01,"Residential Consumption","Georgia","GA",4668 +2003-05-01,"Residential Consumption","Maine","ME",60 +2003-05-01,"Residential Consumption","North Dakota","ND",462 +2003-05-01,"Residential Consumption","Delaware","DE",535 +2003-05-01,"Residential Consumption","U.S.","U.S.",247693 +2003-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",1552 +2003-06-01,"Commercial Consumption","Washington","WA",2603 +2003-06-01,"Commercial Consumption","Virginia","VA",2464 +2003-06-01,"Commercial Consumption","South Dakota","SD",325 +2003-06-01,"Commercial Consumption","New Hampshire","NH",291 +2003-06-01,"Commercial Consumption","U.S.","U.S.",134302 +2003-06-01,"Commercial Consumption","Florida","FL",4017 +2003-06-01,"Commercial Consumption","Iowa","IA",1498 +2003-06-01,"Commercial Consumption","Delaware","DE",343 +2003-06-01,"Commercial Consumption","Indiana","IN",2579 +2003-06-01,"Commercial Consumption","Wyoming","WY",426 +2003-06-01,"Commercial Consumption","North Dakota","ND",197 +2003-06-01,"Commercial Consumption","North Carolina","NC",1693 +2003-06-01,"Commercial Consumption","Minnesota","MN",2562 +2003-06-01,"Commercial Consumption","Oregon","OR",1409 +2003-06-01,"Commercial Consumption","Kansas","KS",1308 +2003-06-01,"Commercial Consumption","Nebraska","NE",1134 +2003-06-01,"Commercial Consumption","Nevada","NV",1415 +2003-06-01,"Commercial Consumption","Rhode Island","RI",460 +2003-06-01,"Commercial Consumption","Arkansas","AR",1411 +2003-06-01,"Commercial Consumption","Alabama","AL",1161 +2003-06-01,"Commercial Consumption","New York","NY",15587 +2003-06-01,"Commercial Consumption","Illinois","IL",6234 +2003-06-01,"Commercial Consumption","Maine","ME",237 +2003-06-01,"Commercial Consumption","Texas","TX",12731 +2003-06-01,"Commercial Consumption","Idaho","ID",485 +2003-06-01,"Commercial Consumption","Connecticut","CT",1714 +2003-06-01,"Commercial Consumption","District of Columbia","DC",765 +2003-06-01,"Commercial Consumption","Utah","UT",1026 +2003-06-01,"Commercial Consumption","Pennsylvania","PA",5066 +2003-06-01,"Commercial Consumption","New Jersey","NJ",6351 +2003-06-01,"Commercial Consumption","Vermont","VT",94 +2003-06-01,"Commercial Consumption","Hawaii","HI",142 +2003-06-01,"Commercial Consumption","Michigan","MI",6163 +2003-06-01,"Commercial Consumption","West Virginia","WV",1096 +2003-06-01,"Commercial Consumption","South Carolina","SC",1160 +2003-06-01,"Commercial Consumption","New Mexico","NM",1138 +2003-06-01,"Commercial Consumption","Ohio","OH",5019 +2003-06-01,"Commercial Consumption","Louisiana","LA",1398 +2003-06-01,"Commercial Consumption","Oklahoma","OK",1371 +2003-06-01,"Commercial Consumption","Massachusetts","MA",2751 +2003-06-01,"Commercial Consumption","Montana","MT",613 +2003-06-01,"Commercial Consumption","Maryland","MD",3283 +2003-06-01,"Commercial Consumption","Alaska","AK",1052 +2003-06-01,"Commercial Consumption","California","CA",15352 +2003-06-01,"Commercial Consumption","Arizona","AZ",2068 +2003-06-01,"Commercial Consumption","Tennessee","TN",2518 +2003-06-01,"Commercial Consumption","Colorado","CO",2458 +2003-06-01,"Commercial Consumption","Missouri","MO",2147 +2003-06-01,"Commercial Consumption","Wisconsin","WI",2315 +2003-06-01,"Commercial Consumption","Kentucky","KY",1177 +2003-06-01,"Commercial Consumption","Georgia","GA",2355 +2003-06-01,"Commercial Consumption","Mississippi","MS",1138 +2003-06-01,"Delivered to Consumers","South Dakota","SD",1710 +2003-06-01,"Delivered to Consumers","Rhode Island","RI",4902 +2003-06-01,"Delivered to Consumers","Montana","MT",2729 +2003-06-01,"Delivered to Consumers","Alaska","AK",8518 +2003-06-01,"Delivered to Consumers","Alabama","AL",22858 +2003-06-01,"Delivered to Consumers","Missouri","MO",10498 +2003-06-01,"Delivered to Consumers","Maine","ME",4916 +2003-06-01,"Delivered to Consumers","Washington","WA",11471 +2003-06-01,"Delivered to Consumers","New Mexico","NM",7783 +2003-06-01,"Delivered to Consumers","Vermont","VT",367 +2003-06-01,"Delivered to Consumers","Tennessee","TN",13392 +2003-06-01,"Delivered to Consumers","Delaware","DE",2433 +2003-06-01,"Delivered to Consumers","New York","NY",57468 +2003-06-01,"Delivered to Consumers","Pennsylvania","PA",29095 +2003-06-01,"Delivered to Consumers","North Carolina","NC",9338 +2003-06-01,"Delivered to Consumers","Louisiana","LA",78863 +2003-06-01,"Delivered to Consumers","Georgia","GA",20512 +2003-06-01,"Delivered to Consumers","Minnesota","MN",12708 +2003-06-01,"Delivered to Consumers","Florida","FL",58312 +2003-06-01,"Delivered to Consumers","District of Columbia","DC",1112 +2003-06-01,"Delivered to Consumers","U.S.","U.S.",1240196 +2003-06-01,"Delivered to Consumers","Maryland","MD",8723 +2003-06-01,"Delivered to Consumers","Kansas","KS",11371 +2003-06-01,"Delivered to Consumers","Massachusetts","MA",24827 +2003-06-01,"Delivered to Consumers","Texas","TX",296723 +2003-06-01,"Delivered to Consumers","Arizona","AZ",16858 +2003-06-01,"Delivered to Consumers","Utah","UT",5612 +2003-06-01,"Delivered to Consumers","Connecticut","CT",7757 +2003-06-01,"Delivered to Consumers","South Carolina","SC",8615 +2003-06-01,"Delivered to Consumers","Oregon","OR",11146 +2003-06-01,"Delivered to Consumers","Wyoming","WY",4408 +2003-06-01,"Delivered to Consumers","Illinois","IL",38291 +2003-06-01,"Delivered to Consumers","Oklahoma","OK",32417 +2003-06-01,"Delivered to Consumers","Idaho","ID",3443 +2003-06-01,"Delivered to Consumers","Michigan","MI",37279 +2003-06-01,"Delivered to Consumers","Kentucky","KY",9334 +2003-06-01,"Delivered to Consumers","Virginia","VA",12832 +2003-06-01,"Delivered to Consumers","Nebraska","NE",4472 +2003-06-01,"Delivered to Consumers","California","CA",155289 +2003-06-01,"Delivered to Consumers","New Jersey","NJ",30506 +2003-06-01,"Delivered to Consumers","New Hampshire","NH",2034 +2003-06-01,"Delivered to Consumers","North Dakota","ND",1511 +2003-06-01,"Delivered to Consumers","Indiana","IN",25652 +2003-06-01,"Delivered to Consumers","West Virginia","WV",5006 +2003-06-01,"Delivered to Consumers","Ohio","OH",32959 +2003-06-01,"Delivered to Consumers","Iowa","IA",10288 +2003-06-01,"Delivered to Consumers","Wisconsin","WI",15502 +2003-06-01,"Delivered to Consumers","Colorado","CO",18484 +2003-06-01,"Delivered to Consumers","Nevada","NV",13355 +2003-06-01,"Delivered to Consumers","Hawaii","HI",218 +2003-06-01,"Delivered to Consumers","Arkansas","AR",17849 +2003-06-01,"Delivered to Consumers","Mississippi","MS",16946 +2003-06-01,"Electric Power Consumption","Washington","WA",1121 +2003-06-01,"Electric Power Consumption","Utah","UT",1145 +2003-06-01,"Electric Power Consumption","West Virginia","WV",144 +2003-06-01,"Electric Power Consumption","Nevada","NV",9885 +2003-06-01,"Electric Power Consumption","Vermont","VT",2 +2003-06-01,"Electric Power Consumption","Mississippi","MS",7621 +2003-06-01,"Electric Power Consumption","Kentucky","KY",155 +2003-06-01,"Electric Power Consumption","South Carolina","SC",1354 +2003-06-01,"Electric Power Consumption","Oklahoma","OK",19537 +2003-06-01,"Electric Power Consumption","Maine","ME",4441 +2003-06-01,"Electric Power Consumption","New Hampshire","NH",1137 +2003-06-01,"Electric Power Consumption","Delaware","DE",890 +2003-06-01,"Electric Power Consumption","New Jersey","NJ",11330 +2003-06-01,"Electric Power Consumption","New York","NY",21724 +2003-06-01,"Electric Power Consumption","Texas","TX",143084 +2003-06-01,"Electric Power Consumption","Pennsylvania","PA",3279 +2003-06-01,"Electric Power Consumption","Tennessee","TN",350 +2003-06-01,"Electric Power Consumption","Alabama","AL",8673 +2003-06-01,"Electric Power Consumption","New Mexico","NM",3554 +2003-06-01,"Electric Power Consumption","Arkansas","AR",6844 +2003-06-01,"Electric Power Consumption","Illinois","IL",2481 +2003-06-01,"Electric Power Consumption","Arizona","AZ",12182 +2003-06-01,"Electric Power Consumption","Florida","FL",47753 +2003-06-01,"Electric Power Consumption","Alaska","AK",2769 +2003-06-01,"Electric Power Consumption","Virginia","VA",2323 +2003-06-01,"Electric Power Consumption","Idaho","ID",320 +2003-06-01,"Electric Power Consumption","Minnesota","MN",844 +2003-06-01,"Electric Power Consumption","Kansas","KS",1107 +2003-06-01,"Electric Power Consumption","Wisconsin","WI",1291 +2003-06-01,"Electric Power Consumption","North Carolina","NC",539 +2003-06-01,"Electric Power Consumption","Hawaii","HI",0 +2003-06-01,"Electric Power Consumption","North Dakota","ND",0 +2003-06-01,"Electric Power Consumption","Maryland","MD",1740 +2003-06-01,"Electric Power Consumption","Rhode Island","RI",3167 +2003-06-01,"Electric Power Consumption","Oregon","OR",3203 +2003-06-01,"Electric Power Consumption","Wyoming","WY",58 +2003-06-01,"Electric Power Consumption","Missouri","MO",1287 +2003-06-01,"Electric Power Consumption","Ohio","OH",1052 +2003-06-01,"Electric Power Consumption","Montana","MT",37 +2003-06-01,"Electric Power Consumption","Indiana","IN",2402 +2003-06-01,"Electric Power Consumption","Connecticut","CT",2869 +2003-06-01,"Electric Power Consumption","California","CA",48698 +2003-06-01,"Electric Power Consumption","Massachusetts","MA",15307 +2003-06-01,"Electric Power Consumption","Iowa","IA",316 +2003-06-01,"Electric Power Consumption","South Dakota","SD",232 +2003-06-01,"Electric Power Consumption","Nebraska","NE",447 +2003-06-01,"Electric Power Consumption","Louisiana","LA",22791 +2003-06-01,"Electric Power Consumption","Colorado","CO",4759 +2003-06-01,"Electric Power Consumption","Michigan","MI",6352 +2003-06-01,"Electric Power Consumption","U.S.","U.S.",435598 +2003-06-01,"Electric Power Consumption","Georgia","GA",3000 +2003-06-01,"Industrial Consumption","South Dakota","SD",805 +2003-06-01,"Industrial Consumption","California","CA",63535 +2003-06-01,"Industrial Consumption","West Virginia","WV",3166 +2003-06-01,"Industrial Consumption","Wisconsin","WI",8575 +2003-06-01,"Industrial Consumption","Tennessee","TN",9088 +2003-06-01,"Industrial Consumption","Idaho","ID",2005 +2003-06-01,"Industrial Consumption","Connecticut","CT",1511 +2003-06-01,"Industrial Consumption","Alaska","AK",4125 +2003-06-01,"Industrial Consumption","Oklahoma","OK",9751 +2003-06-01,"Industrial Consumption","Louisiana","LA",53203 +2003-06-01,"Industrial Consumption","Utah","UT",1902 +2003-06-01,"Industrial Consumption","Nevada","NV",834 +2003-06-01,"Industrial Consumption","Arkansas","AR",8672 +2003-06-01,"Industrial Consumption","Minnesota","MN",6487 +2003-06-01,"Industrial Consumption","Kentucky","KY",6781 +2003-06-01,"Industrial Consumption","Massachusetts","MA",2280 +2003-06-01,"Industrial Consumption","Washington","WA",4827 +2003-06-01,"Industrial Consumption","Ohio","OH",18602 +2003-06-01,"Industrial Consumption","Mississippi","MS",7414 +2003-06-01,"Industrial Consumption","Maine","ME",206 +2003-06-01,"Industrial Consumption","New Hampshire","NH",351 +2003-06-01,"Industrial Consumption","Iowa","IA",6661 +2003-06-01,"Industrial Consumption","Delaware","DE",850 +2003-06-01,"Industrial Consumption","Rhode Island","RI",462 +2003-06-01,"Industrial Consumption","Hawaii","HI",36 +2003-06-01,"Industrial Consumption","Missouri","MO",3942 +2003-06-01,"Industrial Consumption","Colorado","CO",7436 +2003-06-01,"Industrial Consumption","Oregon","OR",4933 +2003-06-01,"Industrial Consumption","Florida","FL",5724 +2003-06-01,"Industrial Consumption","Montana","MT",1413 +2003-06-01,"Industrial Consumption","New York","NY",5202 +2003-06-01,"Industrial Consumption","Texas","TX",134864 +2003-06-01,"Industrial Consumption","Nebraska","NE",1816 +2003-06-01,"Industrial Consumption","Virginia","VA",6196 +2003-06-01,"Industrial Consumption","Wyoming","WY",3501 +2003-06-01,"Industrial Consumption","North Carolina","NC",5652 +2003-06-01,"Industrial Consumption","Georgia","GA",11350 +2003-06-01,"Industrial Consumption","Maryland","MD",1361 +2003-06-01,"Industrial Consumption","South Carolina","SC",5469 +2003-06-01,"Industrial Consumption","Indiana","IN",16652 +2003-06-01,"Industrial Consumption","Arizona","AZ",1242 +2003-06-01,"Industrial Consumption","U.S.","U.S.",511339 +2003-06-01,"Industrial Consumption","Pennsylvania","PA",13196 +2003-06-01,"Industrial Consumption","Vermont","VT",176 +2003-06-01,"Industrial Consumption","North Dakota","ND",1086 +2003-06-01,"Industrial Consumption","New Mexico","NM",2082 +2003-06-01,"Industrial Consumption","Kansas","KS",7265 +2003-06-01,"Industrial Consumption","Alabama","AL",11707 +2003-06-01,"Industrial Consumption","New Jersey","NJ",5611 +2003-06-01,"Industrial Consumption","Michigan","MI",13472 +2003-06-01,"Industrial Consumption","Illinois","IL",17861 +2003-06-01,"Industrial Consumption","District of Columbia","DC",0 +2003-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92521 +2003-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",35652 +2003-06-01,"Residential Consumption","Hawaii","HI",40 +2003-06-01,"Residential Consumption","Tennessee","TN",1436 +2003-06-01,"Residential Consumption","Utah","UT",1540 +2003-06-01,"Residential Consumption","Michigan","MI",11291 +2003-06-01,"Residential Consumption","Maryland","MD",2339 +2003-06-01,"Residential Consumption","Minnesota","MN",2815 +2003-06-01,"Residential Consumption","Indiana","IN",4019 +2003-06-01,"Residential Consumption","Arkansas","AR",923 +2003-06-01,"Residential Consumption","Colorado","CO",3831 +2003-06-01,"Residential Consumption","California","CA",27704 +2003-06-01,"Residential Consumption","Oregon","OR",1600 +2003-06-01,"Residential Consumption","North Carolina","NC",1454 +2003-06-01,"Residential Consumption","Louisiana","LA",1472 +2003-06-01,"Residential Consumption","Virginia","VA",1850 +2003-06-01,"Residential Consumption","Nebraska","NE",1076 +2003-06-01,"Residential Consumption","Georgia","GA",3807 +2003-06-01,"Residential Consumption","Massachusetts","MA",4489 +2003-06-01,"Residential Consumption","Washington","WA",2919 +2003-06-01,"Residential Consumption","Delaware","DE",350 +2003-06-01,"Residential Consumption","New York","NY",14955 +2003-06-01,"Residential Consumption","Rhode Island","RI",812 +2003-06-01,"Residential Consumption","Connecticut","CT",1663 +2003-06-01,"Residential Consumption","Wisconsin","WI",3321 +2003-06-01,"Residential Consumption","Nevada","NV",1221 +2003-06-01,"Residential Consumption","North Dakota","ND",227 +2003-06-01,"Residential Consumption","Oklahoma","OK",1758 +2003-06-01,"Residential Consumption","West Virginia","WV",600 +2003-06-01,"Residential Consumption","Iowa","IA",1813 +2003-06-01,"Residential Consumption","Maine","ME",31 +2003-06-01,"Residential Consumption","New Hampshire","NH",254 +2003-06-01,"Residential Consumption","Kentucky","KY",1221 +2003-06-01,"Residential Consumption","Wyoming","WY",423 +2003-06-01,"Residential Consumption","New Jersey","NJ",7215 +2003-06-01,"Residential Consumption","Kansas","KS",1691 +2003-06-01,"Residential Consumption","Vermont","VT",95 +2003-06-01,"Residential Consumption","Pennsylvania","PA",7554 +2003-06-01,"Residential Consumption","New Mexico","NM",1009 +2003-06-01,"Residential Consumption","Illinois","IL",11715 +2003-06-01,"Residential Consumption","Texas","TX",6043 +2003-06-01,"Residential Consumption","District of Columbia","DC",347 +2003-06-01,"Residential Consumption","Missouri","MO",3122 +2003-06-01,"Residential Consumption","Arizona","AZ",1366 +2003-06-01,"Residential Consumption","U.S.","U.S.",157454 +2003-06-01,"Residential Consumption","South Carolina","SC",632 +2003-06-01,"Residential Consumption","Ohio","OH",8286 +2003-06-01,"Residential Consumption","Mississippi","MS",773 +2003-06-01,"Residential Consumption","South Dakota","SD",348 +2003-06-01,"Residential Consumption","Florida","FL",818 +2003-06-01,"Residential Consumption","Idaho","ID",632 +2003-06-01,"Residential Consumption","Montana","MT",665 +2003-06-01,"Residential Consumption","Alabama","AL",1317 +2003-06-01,"Residential Consumption","Alaska","AK",572 +2003-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",1502 +2003-07-01,"Commercial Consumption","Washington","WA",1969 +2003-07-01,"Commercial Consumption","Oklahoma","OK",1274 +2003-07-01,"Commercial Consumption","Pennsylvania","PA",4063 +2003-07-01,"Commercial Consumption","Texas","TX",14225 +2003-07-01,"Commercial Consumption","Hawaii","HI",145 +2003-07-01,"Commercial Consumption","Alabama","AL",1084 +2003-07-01,"Commercial Consumption","Michigan","MI",5336 +2003-07-01,"Commercial Consumption","Indiana","IN",2330 +2003-07-01,"Commercial Consumption","South Carolina","SC",1155 +2003-07-01,"Commercial Consumption","Colorado","CO",1847 +2003-07-01,"Commercial Consumption","Florida","FL",3902 +2003-07-01,"Commercial Consumption","District of Columbia","DC",801 +2003-07-01,"Commercial Consumption","North Carolina","NC",1560 +2003-07-01,"Commercial Consumption","Minnesota","MN",3486 +2003-07-01,"Commercial Consumption","Montana","MT",452 +2003-07-01,"Commercial Consumption","Maryland","MD",3049 +2003-07-01,"Commercial Consumption","Georgia","GA",2313 +2003-07-01,"Commercial Consumption","Ohio","OH",4494 +2003-07-01,"Commercial Consumption","Iowa","IA",1258 +2003-07-01,"Commercial Consumption","Connecticut","CT",1577 +2003-07-01,"Commercial Consumption","Louisiana","LA",1469 +2003-07-01,"Commercial Consumption","Illinois","IL",6817 +2003-07-01,"Commercial Consumption","New Mexico","NM",954 +2003-07-01,"Commercial Consumption","Massachusetts","MA",2229 +2003-07-01,"Commercial Consumption","New Jersey","NJ",7052 +2003-07-01,"Commercial Consumption","Kansas","KS",1232 +2003-07-01,"Commercial Consumption","California","CA",14488 +2003-07-01,"Commercial Consumption","Delaware","DE",303 +2003-07-01,"Commercial Consumption","Nevada","NV",1355 +2003-07-01,"Commercial Consumption","West Virginia","WV",1066 +2003-07-01,"Commercial Consumption","Oregon","OR",1057 +2003-07-01,"Commercial Consumption","Virginia","VA",2569 +2003-07-01,"Commercial Consumption","Wisconsin","WI",2183 +2003-07-01,"Commercial Consumption","New Hampshire","NH",303 +2003-07-01,"Commercial Consumption","U.S.","U.S.",131884 +2003-07-01,"Commercial Consumption","Arkansas","AR",1393 +2003-07-01,"Commercial Consumption","Wyoming","WY",286 +2003-07-01,"Commercial Consumption","South Dakota","SD",264 +2003-07-01,"Commercial Consumption","Nebraska","NE",1010 +2003-07-01,"Commercial Consumption","Tennessee","TN",2296 +2003-07-01,"Commercial Consumption","North Dakota","ND",259 +2003-07-01,"Commercial Consumption","Missouri","MO",1867 +2003-07-01,"Commercial Consumption","Maine","ME",160 +2003-07-01,"Commercial Consumption","Rhode Island","RI",288 +2003-07-01,"Commercial Consumption","Idaho","ID",377 +2003-07-01,"Commercial Consumption","Utah","UT",902 +2003-07-01,"Commercial Consumption","Kentucky","KY",1073 +2003-07-01,"Commercial Consumption","Vermont","VT",71 +2003-07-01,"Commercial Consumption","Alaska","AK",1060 +2003-07-01,"Commercial Consumption","New York","NY",18055 +2003-07-01,"Commercial Consumption","Mississippi","MS",1146 +2003-07-01,"Commercial Consumption","Arizona","AZ",1980 +2003-07-01,"Delivered to Consumers","Utah","UT",6174 +2003-07-01,"Delivered to Consumers","U.S.","U.S.",1464704 +2003-07-01,"Delivered to Consumers","Maryland","MD",8128 +2003-07-01,"Delivered to Consumers","Arkansas","AR",18208 +2003-07-01,"Delivered to Consumers","Pennsylvania","PA",30298 +2003-07-01,"Delivered to Consumers","Mississippi","MS",17613 +2003-07-01,"Delivered to Consumers","Indiana","IN",24580 +2003-07-01,"Delivered to Consumers","Vermont","VT",293 +2003-07-01,"Delivered to Consumers","Illinois","IL",39012 +2003-07-01,"Delivered to Consumers","New York","NY",66369 +2003-07-01,"Delivered to Consumers","Nebraska","NE",7653 +2003-07-01,"Delivered to Consumers","Louisiana","LA",91469 +2003-07-01,"Delivered to Consumers","North Dakota","ND",1109 +2003-07-01,"Delivered to Consumers","Oklahoma","OK",46076 +2003-07-01,"Delivered to Consumers","Michigan","MI",35261 +2003-07-01,"Delivered to Consumers","Colorado","CO",23772 +2003-07-01,"Delivered to Consumers","Texas","TX",377943 +2003-07-01,"Delivered to Consumers","Maine","ME",6000 +2003-07-01,"Delivered to Consumers","New Mexico","NM",8777 +2003-07-01,"Delivered to Consumers","Wyoming","WY",4112 +2003-07-01,"Delivered to Consumers","Hawaii","HI",224 +2003-07-01,"Delivered to Consumers","Ohio","OH",33810 +2003-07-01,"Delivered to Consumers","Alabama","AL",27147 +2003-07-01,"Delivered to Consumers","Wisconsin","WI",15630 +2003-07-01,"Delivered to Consumers","North Carolina","NC",12359 +2003-07-01,"Delivered to Consumers","District of Columbia","DC",1094 +2003-07-01,"Delivered to Consumers","South Dakota","SD",1882 +2003-07-01,"Delivered to Consumers","Tennessee","TN",11615 +2003-07-01,"Delivered to Consumers","Washington","WA",15334 +2003-07-01,"Delivered to Consumers","Delaware","DE",3570 +2003-07-01,"Delivered to Consumers","Rhode Island","RI",5830 +2003-07-01,"Delivered to Consumers","Kansas","KS",15614 +2003-07-01,"Delivered to Consumers","Virginia","VA",14519 +2003-07-01,"Delivered to Consumers","Missouri","MO",12889 +2003-07-01,"Delivered to Consumers","South Carolina","SC",10304 +2003-07-01,"Delivered to Consumers","Nevada","NV",17113 +2003-07-01,"Delivered to Consumers","Florida","FL",64041 +2003-07-01,"Delivered to Consumers","Montana","MT",2042 +2003-07-01,"Delivered to Consumers","Alaska","AK",8461 +2003-07-01,"Delivered to Consumers","Idaho","ID",4268 +2003-07-01,"Delivered to Consumers","Massachusetts","MA",26581 +2003-07-01,"Delivered to Consumers","Georgia","GA",23789 +2003-07-01,"Delivered to Consumers","New Hampshire","NH",3900 +2003-07-01,"Delivered to Consumers","Minnesota","MN",14981 +2003-07-01,"Delivered to Consumers","West Virginia","WV",4985 +2003-07-01,"Delivered to Consumers","Kentucky","KY",9467 +2003-07-01,"Delivered to Consumers","Iowa","IA",9892 +2003-07-01,"Delivered to Consumers","Connecticut","CT",8318 +2003-07-01,"Delivered to Consumers","California","CA",190664 +2003-07-01,"Delivered to Consumers","Oregon","OR",16560 +2003-07-01,"Delivered to Consumers","New Jersey","NJ",34444 +2003-07-01,"Delivered to Consumers","Arizona","AZ",28981 +2003-07-01,"Electric Power Consumption","Oregon","OR",9285 +2003-07-01,"Electric Power Consumption","Wyoming","WY",354 +2003-07-01,"Electric Power Consumption","South Dakota","SD",569 +2003-07-01,"Electric Power Consumption","Nebraska","NE",1371 +2003-07-01,"Electric Power Consumption","North Carolina","NC",3656 +2003-07-01,"Electric Power Consumption","Maine","ME",5529 +2003-07-01,"Electric Power Consumption","California","CA",87492 +2003-07-01,"Electric Power Consumption","Colorado","CO",9648 +2003-07-01,"Electric Power Consumption","Illinois","IL",5100 +2003-07-01,"Electric Power Consumption","Massachusetts","MA",19958 +2003-07-01,"Electric Power Consumption","Pennsylvania","PA",6446 +2003-07-01,"Electric Power Consumption","U.S.","U.S.",630270 +2003-07-01,"Electric Power Consumption","Ohio","OH",2489 +2003-07-01,"Electric Power Consumption","New Hampshire","NH",3107 +2003-07-01,"Electric Power Consumption","Montana","MT",26 +2003-07-01,"Electric Power Consumption","Maryland","MD",1851 +2003-07-01,"Electric Power Consumption","Georgia","GA",5906 +2003-07-01,"Electric Power Consumption","Alaska","AK",2869 +2003-07-01,"Electric Power Consumption","New York","NY",33099 +2003-07-01,"Electric Power Consumption","Minnesota","MN",2220 +2003-07-01,"Electric Power Consumption","Michigan","MI",8797 +2003-07-01,"Electric Power Consumption","Wisconsin","WI",2585 +2003-07-01,"Electric Power Consumption","Delaware","DE",2222 +2003-07-01,"Electric Power Consumption","Connecticut","CT",3891 +2003-07-01,"Electric Power Consumption","New Jersey","NJ",15780 +2003-07-01,"Electric Power Consumption","Oklahoma","OK",32402 +2003-07-01,"Electric Power Consumption","Kansas","KS",2804 +2003-07-01,"Electric Power Consumption","Vermont","VT",2 +2003-07-01,"Electric Power Consumption","Tennessee","TN",357 +2003-07-01,"Electric Power Consumption","Florida","FL",53548 +2003-07-01,"Electric Power Consumption","Arkansas","AR",8883 +2003-07-01,"Electric Power Consumption","Iowa","IA",559 +2003-07-01,"Electric Power Consumption","Missouri","MO",5317 +2003-07-01,"Electric Power Consumption","Arizona","AZ",24698 +2003-07-01,"Electric Power Consumption","Mississippi","MS",9146 +2003-07-01,"Electric Power Consumption","Kentucky","KY",464 +2003-07-01,"Electric Power Consumption","North Dakota","ND",0 +2003-07-01,"Electric Power Consumption","Alabama","AL",12971 +2003-07-01,"Electric Power Consumption","Washington","WA",6914 +2003-07-01,"Electric Power Consumption","Virginia","VA",5401 +2003-07-01,"Electric Power Consumption","Louisiana","LA",26663 +2003-07-01,"Electric Power Consumption","South Carolina","SC",2706 +2003-07-01,"Electric Power Consumption","Utah","UT",2002 +2003-07-01,"Electric Power Consumption","West Virginia","WV",284 +2003-07-01,"Electric Power Consumption","New Mexico","NM",4777 +2003-07-01,"Electric Power Consumption","Idaho","ID",1845 +2003-07-01,"Electric Power Consumption","Texas","TX",172747 +2003-07-01,"Electric Power Consumption","Rhode Island","RI",4808 +2003-07-01,"Electric Power Consumption","Nevada","NV",13857 +2003-07-01,"Electric Power Consumption","Hawaii","HI",0 +2003-07-01,"Electric Power Consumption","Indiana","IN",2865 +2003-07-01,"Industrial Consumption","Maryland","MD",1395 +2003-07-01,"Industrial Consumption","Louisiana","LA",61688 +2003-07-01,"Industrial Consumption","Washington","WA",4552 +2003-07-01,"Industrial Consumption","Mississippi","MS",6619 +2003-07-01,"Industrial Consumption","Connecticut","CT",1686 +2003-07-01,"Industrial Consumption","Illinois","IL",17230 +2003-07-01,"Industrial Consumption","Alaska","AK",4097 +2003-07-01,"Industrial Consumption","Massachusetts","MA",1505 +2003-07-01,"Industrial Consumption","Hawaii","HI",38 +2003-07-01,"Industrial Consumption","Colorado","CO",9508 +2003-07-01,"Industrial Consumption","Arizona","AZ",1181 +2003-07-01,"Industrial Consumption","Utah","UT",1911 +2003-07-01,"Industrial Consumption","U.S.","U.S.",574374 +2003-07-01,"Industrial Consumption","Oregon","OR",5222 +2003-07-01,"Industrial Consumption","South Carolina","SC",5910 +2003-07-01,"Industrial Consumption","Georgia","GA",11925 +2003-07-01,"Industrial Consumption","New York","NY",5166 +2003-07-01,"Industrial Consumption","Nevada","NV",786 +2003-07-01,"Industrial Consumption","Maine","ME",283 +2003-07-01,"Industrial Consumption","Texas","TX",185078 +2003-07-01,"Industrial Consumption","New Jersey","NJ",6007 +2003-07-01,"Industrial Consumption","New Hampshire","NH",319 +2003-07-01,"Industrial Consumption","Idaho","ID",1632 +2003-07-01,"Industrial Consumption","Kentucky","KY",6777 +2003-07-01,"Industrial Consumption","District of Columbia","DC",0 +2003-07-01,"Industrial Consumption","Montana","MT",1122 +2003-07-01,"Industrial Consumption","Missouri","MO",3396 +2003-07-01,"Industrial Consumption","South Dakota","SD",803 +2003-07-01,"Industrial Consumption","Wisconsin","WI",8174 +2003-07-01,"Industrial Consumption","North Dakota","ND",649 +2003-07-01,"Industrial Consumption","Oklahoma","OK",10952 +2003-07-01,"Industrial Consumption","Ohio","OH",19268 +2003-07-01,"Industrial Consumption","New Mexico","NM",2212 +2003-07-01,"Industrial Consumption","Alabama","AL",11923 +2003-07-01,"Industrial Consumption","Minnesota","MN",6575 +2003-07-01,"Industrial Consumption","Florida","FL",5837 +2003-07-01,"Industrial Consumption","Indiana","IN",16774 +2003-07-01,"Industrial Consumption","North Carolina","NC",6005 +2003-07-01,"Industrial Consumption","California","CA",63716 +2003-07-01,"Industrial Consumption","Pennsylvania","PA",14483 +2003-07-01,"Industrial Consumption","Kansas","KS",10127 +2003-07-01,"Industrial Consumption","Arkansas","AR",7102 +2003-07-01,"Industrial Consumption","Nebraska","NE",4392 +2003-07-01,"Industrial Consumption","Virginia","VA",4980 +2003-07-01,"Industrial Consumption","West Virginia","WV",3157 +2003-07-01,"Industrial Consumption","Vermont","VT",155 +2003-07-01,"Industrial Consumption","Wyoming","WY",3216 +2003-07-01,"Industrial Consumption","Tennessee","TN",7711 +2003-07-01,"Industrial Consumption","Iowa","IA",6665 +2003-07-01,"Industrial Consumption","Michigan","MI",13400 +2003-07-01,"Industrial Consumption","Delaware","DE",828 +2003-07-01,"Industrial Consumption","Rhode Island","RI",239 +2003-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93673 +2003-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",42107 +2003-07-01,"Residential Consumption","Mississippi","MS",703 +2003-07-01,"Residential Consumption","Hawaii","HI",42 +2003-07-01,"Residential Consumption","Vermont","VT",65 +2003-07-01,"Residential Consumption","Maryland","MD",1832 +2003-07-01,"Residential Consumption","Minnesota","MN",2699 +2003-07-01,"Residential Consumption","Georgia","GA",3644 +2003-07-01,"Residential Consumption","New Mexico","NM",835 +2003-07-01,"Residential Consumption","Florida","FL",753 +2003-07-01,"Residential Consumption","Kentucky","KY",1153 +2003-07-01,"Residential Consumption","Texas","TX",5893 +2003-07-01,"Residential Consumption","Nebraska","NE",880 +2003-07-01,"Residential Consumption","New Hampshire","NH",172 +2003-07-01,"Residential Consumption","Missouri","MO",2309 +2003-07-01,"Residential Consumption","Alabama","AL",1169 +2003-07-01,"Residential Consumption","Alaska","AK",435 +2003-07-01,"Residential Consumption","Illinois","IL",9865 +2003-07-01,"Residential Consumption","Rhode Island","RI",495 +2003-07-01,"Residential Consumption","Maine","ME",28 +2003-07-01,"Residential Consumption","Indiana","IN",2612 +2003-07-01,"Residential Consumption","Wyoming","WY",256 +2003-07-01,"Residential Consumption","Ohio","OH",7558 +2003-07-01,"Residential Consumption","Connecticut","CT",1165 +2003-07-01,"Residential Consumption","Idaho","ID",413 +2003-07-01,"Residential Consumption","Arkansas","AR",831 +2003-07-01,"Residential Consumption","California","CA",24968 +2003-07-01,"Residential Consumption","Arizona","AZ",1122 +2003-07-01,"Residential Consumption","Virginia","VA",1570 +2003-07-01,"Residential Consumption","South Dakota","SD",246 +2003-07-01,"Residential Consumption","District of Columbia","DC",293 +2003-07-01,"Residential Consumption","Montana","MT",442 +2003-07-01,"Residential Consumption","Colorado","CO",2769 +2003-07-01,"Residential Consumption","Washington","WA",1899 +2003-07-01,"Residential Consumption","West Virginia","WV",477 +2003-07-01,"Residential Consumption","South Carolina","SC",533 +2003-07-01,"Residential Consumption","Oregon","OR",997 +2003-07-01,"Residential Consumption","Louisiana","LA",1650 +2003-07-01,"Residential Consumption","U.S.","U.S.",126624 +2003-07-01,"Residential Consumption","North Carolina","NC",1137 +2003-07-01,"Residential Consumption","Wisconsin","WI",2689 +2003-07-01,"Residential Consumption","Pennsylvania","PA",5305 +2003-07-01,"Residential Consumption","North Dakota","ND",201 +2003-07-01,"Residential Consumption","New Jersey","NJ",5605 +2003-07-01,"Residential Consumption","Oklahoma","OK",1449 +2003-07-01,"Residential Consumption","Delaware","DE",217 +2003-07-01,"Residential Consumption","New York","NY",10049 +2003-07-01,"Residential Consumption","Iowa","IA",1410 +2003-07-01,"Residential Consumption","Tennessee","TN",1251 +2003-07-01,"Residential Consumption","Utah","UT",1358 +2003-07-01,"Residential Consumption","Michigan","MI",7729 +2003-07-01,"Residential Consumption","Nevada","NV",1114 +2003-07-01,"Residential Consumption","Massachusetts","MA",2889 +2003-07-01,"Residential Consumption","Kansas","KS",1452 +2003-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",1552 +2003-08-01,"Commercial Consumption","South Carolina","SC",1151 +2003-08-01,"Commercial Consumption","Wisconsin","WI",2134 +2003-08-01,"Commercial Consumption","Georgia","GA",2331 +2003-08-01,"Commercial Consumption","Idaho","ID",356 +2003-08-01,"Commercial Consumption","Connecticut","CT",1509 +2003-08-01,"Commercial Consumption","California","CA",14695 +2003-08-01,"Commercial Consumption","Tennessee","TN",2282 +2003-08-01,"Commercial Consumption","Indiana","IN",1867 +2003-08-01,"Commercial Consumption","District of Columbia","DC",944 +2003-08-01,"Commercial Consumption","Washington","WA",1705 +2003-08-01,"Commercial Consumption","Pennsylvania","PA",4203 +2003-08-01,"Commercial Consumption","Kentucky","KY",1071 +2003-08-01,"Commercial Consumption","U.S.","U.S.",130829 +2003-08-01,"Commercial Consumption","Alaska","AK",1124 +2003-08-01,"Commercial Consumption","New Mexico","NM",906 +2003-08-01,"Commercial Consumption","New Jersey","NJ",6550 +2003-08-01,"Commercial Consumption","New Hampshire","NH",320 +2003-08-01,"Commercial Consumption","Montana","MT",443 +2003-08-01,"Commercial Consumption","Maine","ME",195 +2003-08-01,"Commercial Consumption","Florida","FL",3938 +2003-08-01,"Commercial Consumption","Rhode Island","RI",281 +2003-08-01,"Commercial Consumption","Iowa","IA",1246 +2003-08-01,"Commercial Consumption","Arkansas","AR",1325 +2003-08-01,"Commercial Consumption","Alabama","AL",1113 +2003-08-01,"Commercial Consumption","Oklahoma","OK",1294 +2003-08-01,"Commercial Consumption","Massachusetts","MA",2308 +2003-08-01,"Commercial Consumption","Illinois","IL",6368 +2003-08-01,"Commercial Consumption","West Virginia","WV",1066 +2003-08-01,"Commercial Consumption","Minnesota","MN",2318 +2003-08-01,"Commercial Consumption","Utah","UT",973 +2003-08-01,"Commercial Consumption","Missouri","MO",2023 +2003-08-01,"Commercial Consumption","South Dakota","SD",282 +2003-08-01,"Commercial Consumption","New York","NY",19414 +2003-08-01,"Commercial Consumption","Arizona","AZ",1907 +2003-08-01,"Commercial Consumption","North Dakota","ND",275 +2003-08-01,"Commercial Consumption","North Carolina","NC",1521 +2003-08-01,"Commercial Consumption","Texas","TX",14330 +2003-08-01,"Commercial Consumption","Kansas","KS",1196 +2003-08-01,"Commercial Consumption","Vermont","VT",75 +2003-08-01,"Commercial Consumption","Louisiana","LA",1306 +2003-08-01,"Commercial Consumption","Wyoming","WY",282 +2003-08-01,"Commercial Consumption","Colorado","CO",1789 +2003-08-01,"Commercial Consumption","Oregon","OR",976 +2003-08-01,"Commercial Consumption","Virginia","VA",2641 +2003-08-01,"Commercial Consumption","Maryland","MD",3111 +2003-08-01,"Commercial Consumption","Ohio","OH",4443 +2003-08-01,"Commercial Consumption","Hawaii","HI",137 +2003-08-01,"Commercial Consumption","Nebraska","NE",1112 +2003-08-01,"Commercial Consumption","Nevada","NV",1231 +2003-08-01,"Commercial Consumption","Mississippi","MS",995 +2003-08-01,"Commercial Consumption","Delaware","DE",282 +2003-08-01,"Commercial Consumption","Michigan","MI",5488 +2003-08-01,"Delivered to Consumers","New York","NY",71177 +2003-08-01,"Delivered to Consumers","Michigan","MI",42115 +2003-08-01,"Delivered to Consumers","Arkansas","AR",18467 +2003-08-01,"Delivered to Consumers","Alabama","AL",32162 +2003-08-01,"Delivered to Consumers","Pennsylvania","PA",32640 +2003-08-01,"Delivered to Consumers","Nebraska","NE",7469 +2003-08-01,"Delivered to Consumers","Georgia","GA",26828 +2003-08-01,"Delivered to Consumers","Rhode Island","RI",5423 +2003-08-01,"Delivered to Consumers","Montana","MT",2006 +2003-08-01,"Delivered to Consumers","Idaho","ID",3399 +2003-08-01,"Delivered to Consumers","South Carolina","SC",12231 +2003-08-01,"Delivered to Consumers","Oregon","OR",16275 +2003-08-01,"Delivered to Consumers","Nevada","NV",17666 +2003-08-01,"Delivered to Consumers","North Dakota","ND",963 +2003-08-01,"Delivered to Consumers","New Mexico","NM",9009 +2003-08-01,"Delivered to Consumers","Indiana","IN",26666 +2003-08-01,"Delivered to Consumers","Vermont","VT",312 +2003-08-01,"Delivered to Consumers","Oklahoma","OK",47914 +2003-08-01,"Delivered to Consumers","Kentucky","KY",10296 +2003-08-01,"Delivered to Consumers","Wisconsin","WI",18099 +2003-08-01,"Delivered to Consumers","Virginia","VA",15084 +2003-08-01,"Delivered to Consumers","North Carolina","NC",13177 +2003-08-01,"Delivered to Consumers","Mississippi","MS",19394 +2003-08-01,"Delivered to Consumers","Massachusetts","MA",25461 +2003-08-01,"Delivered to Consumers","Texas","TX",379876 +2003-08-01,"Delivered to Consumers","Arizona","AZ",30940 +2003-08-01,"Delivered to Consumers","District of Columbia","DC",1240 +2003-08-01,"Delivered to Consumers","Utah","UT",6166 +2003-08-01,"Delivered to Consumers","South Dakota","SD",1675 +2003-08-01,"Delivered to Consumers","Minnesota","MN",15594 +2003-08-01,"Delivered to Consumers","U.S.","U.S.",1512522 +2003-08-01,"Delivered to Consumers","Wyoming","WY",4164 +2003-08-01,"Delivered to Consumers","Ohio","OH",37562 +2003-08-01,"Delivered to Consumers","California","CA",186767 +2003-08-01,"Delivered to Consumers","Maryland","MD",7986 +2003-08-01,"Delivered to Consumers","Kansas","KS",15421 +2003-08-01,"Delivered to Consumers","Tennessee","TN",12627 +2003-08-01,"Delivered to Consumers","Missouri","MO",15215 +2003-08-01,"Delivered to Consumers","Louisiana","LA",95243 +2003-08-01,"Delivered to Consumers","Washington","WA",15006 +2003-08-01,"Delivered to Consumers","Delaware","DE",3550 +2003-08-01,"Delivered to Consumers","Illinois","IL",43781 +2003-08-01,"Delivered to Consumers","Hawaii","HI",218 +2003-08-01,"Delivered to Consumers","Alaska","AK",8717 +2003-08-01,"Delivered to Consumers","Iowa","IA",10030 +2003-08-01,"Delivered to Consumers","Colorado","CO",23529 +2003-08-01,"Delivered to Consumers","New Hampshire","NH",5640 +2003-08-01,"Delivered to Consumers","West Virginia","WV",5571 +2003-08-01,"Delivered to Consumers","Connecticut","CT",8775 +2003-08-01,"Delivered to Consumers","New Jersey","NJ",34047 +2003-08-01,"Delivered to Consumers","Maine","ME",5629 +2003-08-01,"Delivered to Consumers","Florida","FL",61764 +2003-08-01,"Electric Power Consumption","West Virginia","WV",602 +2003-08-01,"Electric Power Consumption","Vermont","VT",3 +2003-08-01,"Electric Power Consumption","North Carolina","NC",3813 +2003-08-01,"Electric Power Consumption","Kentucky","KY",958 +2003-08-01,"Electric Power Consumption","Florida","FL",51138 +2003-08-01,"Electric Power Consumption","Colorado","CO",10010 +2003-08-01,"Electric Power Consumption","Arkansas","AR",9093 +2003-08-01,"Electric Power Consumption","Oklahoma","OK",33866 +2003-08-01,"Electric Power Consumption","Delaware","DE",2118 +2003-08-01,"Electric Power Consumption","Connecticut","CT",4415 +2003-08-01,"Electric Power Consumption","Alabama","AL",17126 +2003-08-01,"Electric Power Consumption","New Mexico","NM",5227 +2003-08-01,"Electric Power Consumption","Texas","TX",183393 +2003-08-01,"Electric Power Consumption","Wyoming","WY",314 +2003-08-01,"Electric Power Consumption","Mississippi","MS",11168 +2003-08-01,"Electric Power Consumption","Indiana","IN",4399 +2003-08-01,"Electric Power Consumption","New Jersey","NJ",16693 +2003-08-01,"Electric Power Consumption","Idaho","ID",1144 +2003-08-01,"Electric Power Consumption","South Carolina","SC",4278 +2003-08-01,"Electric Power Consumption","Rhode Island","RI",4397 +2003-08-01,"Electric Power Consumption","Maryland","MD",1639 +2003-08-01,"Electric Power Consumption","New York","NY",37688 +2003-08-01,"Electric Power Consumption","Nevada","NV",14648 +2003-08-01,"Electric Power Consumption","Iowa","IA",1008 +2003-08-01,"Electric Power Consumption","Ohio","OH",6891 +2003-08-01,"Electric Power Consumption","New Hampshire","NH",4815 +2003-08-01,"Electric Power Consumption","Minnesota","MN",3812 +2003-08-01,"Electric Power Consumption","Pennsylvania","PA",8721 +2003-08-01,"Electric Power Consumption","U.S.","U.S.",683513 +2003-08-01,"Electric Power Consumption","Maine","ME",5184 +2003-08-01,"Electric Power Consumption","Montana","MT",63 +2003-08-01,"Electric Power Consumption","Arizona","AZ",26821 +2003-08-01,"Electric Power Consumption","Georgia","GA",8337 +2003-08-01,"Electric Power Consumption","California","CA",81851 +2003-08-01,"Electric Power Consumption","Alaska","AK",2668 +2003-08-01,"Electric Power Consumption","Utah","UT",1884 +2003-08-01,"Electric Power Consumption","Kansas","KS",3758 +2003-08-01,"Electric Power Consumption","Wisconsin","WI",4682 +2003-08-01,"Electric Power Consumption","Tennessee","TN",1324 +2003-08-01,"Electric Power Consumption","South Dakota","SD",423 +2003-08-01,"Electric Power Consumption","Missouri","MO",6247 +2003-08-01,"Electric Power Consumption","North Dakota","ND",0 +2003-08-01,"Electric Power Consumption","Washington","WA",6789 +2003-08-01,"Electric Power Consumption","Virginia","VA",6875 +2003-08-01,"Electric Power Consumption","Louisiana","LA",28685 +2003-08-01,"Electric Power Consumption","Oregon","OR",9064 +2003-08-01,"Electric Power Consumption","Illinois","IL",9766 +2003-08-01,"Electric Power Consumption","Michigan","MI",15273 +2003-08-01,"Electric Power Consumption","Massachusetts","MA",19177 +2003-08-01,"Electric Power Consumption","Nebraska","NE",1264 +2003-08-01,"Electric Power Consumption","Hawaii","HI",0 +2003-08-01,"Industrial Consumption","Maryland","MD",1420 +2003-08-01,"Industrial Consumption","Oklahoma","OK",11488 +2003-08-01,"Industrial Consumption","Nevada","NV",793 +2003-08-01,"Industrial Consumption","Wyoming","WY",3324 +2003-08-01,"Industrial Consumption","Massachusetts","MA",1400 +2003-08-01,"Industrial Consumption","Hawaii","HI",37 +2003-08-01,"Industrial Consumption","Ohio","OH",19980 +2003-08-01,"Industrial Consumption","Kansas","KS",9127 +2003-08-01,"Industrial Consumption","Mississippi","MS",6544 +2003-08-01,"Industrial Consumption","Maine","ME",222 +2003-08-01,"Industrial Consumption","Kentucky","KY",7226 +2003-08-01,"Industrial Consumption","Indiana","IN",17813 +2003-08-01,"Industrial Consumption","North Dakota","ND",460 +2003-08-01,"Industrial Consumption","South Dakota","SD",744 +2003-08-01,"Industrial Consumption","Pennsylvania","PA",14851 +2003-08-01,"Industrial Consumption","Oregon","OR",5416 +2003-08-01,"Industrial Consumption","New York","NY",5353 +2003-08-01,"Industrial Consumption","Alabama","AL",12800 +2003-08-01,"Industrial Consumption","New Hampshire","NH",343 +2003-08-01,"Industrial Consumption","North Carolina","NC",6840 +2003-08-01,"Industrial Consumption","Missouri","MO",4833 +2003-08-01,"Industrial Consumption","Louisiana","LA",63784 +2003-08-01,"Industrial Consumption","Arizona","AZ",1112 +2003-08-01,"Industrial Consumption","Texas","TX",176595 +2003-08-01,"Industrial Consumption","Nebraska","NE",4190 +2003-08-01,"Industrial Consumption","Wisconsin","WI",8669 +2003-08-01,"Industrial Consumption","Illinois","IL",18104 +2003-08-01,"Industrial Consumption","Montana","MT",1086 +2003-08-01,"Industrial Consumption","Utah","UT",1955 +2003-08-01,"Industrial Consumption","Arkansas","AR",7278 +2003-08-01,"Industrial Consumption","South Carolina","SC",6307 +2003-08-01,"Industrial Consumption","Connecticut","CT",1897 +2003-08-01,"Industrial Consumption","District of Columbia","DC",0 +2003-08-01,"Industrial Consumption","Washington","WA",4967 +2003-08-01,"Industrial Consumption","New Mexico","NM",2123 +2003-08-01,"Industrial Consumption","U.S.","U.S.",580776 +2003-08-01,"Industrial Consumption","California","CA",68056 +2003-08-01,"Industrial Consumption","Virginia","VA",4068 +2003-08-01,"Industrial Consumption","New Jersey","NJ",5690 +2003-08-01,"Industrial Consumption","Alaska","AK",4327 +2003-08-01,"Industrial Consumption","Colorado","CO",9023 +2003-08-01,"Industrial Consumption","Vermont","VT",174 +2003-08-01,"Industrial Consumption","Tennessee","TN",7948 +2003-08-01,"Industrial Consumption","Minnesota","MN",6769 +2003-08-01,"Industrial Consumption","Idaho","ID",1544 +2003-08-01,"Industrial Consumption","Iowa","IA",6380 +2003-08-01,"Industrial Consumption","Michigan","MI",14298 +2003-08-01,"Industrial Consumption","Delaware","DE",969 +2003-08-01,"Industrial Consumption","Rhode Island","RI",278 +2003-08-01,"Industrial Consumption","West Virginia","WV",3460 +2003-08-01,"Industrial Consumption","Florida","FL",5951 +2003-08-01,"Industrial Consumption","Georgia","GA",12763 +2003-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95576 +2003-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",43482 +2003-08-01,"Residential Consumption","Texas","TX",5558 +2003-08-01,"Residential Consumption","Tennessee","TN",1074 +2003-08-01,"Residential Consumption","Utah","UT",1355 +2003-08-01,"Residential Consumption","Georgia","GA",3397 +2003-08-01,"Residential Consumption","Pennsylvania","PA",4865 +2003-08-01,"Residential Consumption","Arkansas","AR",771 +2003-08-01,"Residential Consumption","Oklahoma","OK",1266 +2003-08-01,"Residential Consumption","Oregon","OR",819 +2003-08-01,"Residential Consumption","North Carolina","NC",1004 +2003-08-01,"Residential Consumption","Vermont","VT",60 +2003-08-01,"Residential Consumption","Michigan","MI",7057 +2003-08-01,"Residential Consumption","Indiana","IN",2587 +2003-08-01,"Residential Consumption","Florida","FL",737 +2003-08-01,"Residential Consumption","South Carolina","SC",495 +2003-08-01,"Residential Consumption","Connecticut","CT",953 +2003-08-01,"Residential Consumption","Wisconsin","WI",2615 +2003-08-01,"Residential Consumption","South Dakota","SD",226 +2003-08-01,"Residential Consumption","Nevada","NV",994 +2003-08-01,"Residential Consumption","Rhode Island","RI",468 +2003-08-01,"Residential Consumption","Iowa","IA",1396 +2003-08-01,"Residential Consumption","New Jersey","NJ",5114 +2003-08-01,"Residential Consumption","Montana","MT",414 +2003-08-01,"Residential Consumption","Kentucky","KY",1041 +2003-08-01,"Residential Consumption","Delaware","DE",181 +2003-08-01,"Residential Consumption","California","CA",22166 +2003-08-01,"Residential Consumption","Mississippi","MS",687 +2003-08-01,"Residential Consumption","Virginia","VA",1500 +2003-08-01,"Residential Consumption","District of Columbia","DC",297 +2003-08-01,"Residential Consumption","New Hampshire","NH",162 +2003-08-01,"Residential Consumption","Alabama","AL",1123 +2003-08-01,"Residential Consumption","West Virginia","WV",443 +2003-08-01,"Residential Consumption","Ohio","OH",6248 +2003-08-01,"Residential Consumption","Louisiana","LA",1468 +2003-08-01,"Residential Consumption","Hawaii","HI",44 +2003-08-01,"Residential Consumption","Nebraska","NE",903 +2003-08-01,"Residential Consumption","Maryland","MD",1817 +2003-08-01,"Residential Consumption","New Mexico","NM",754 +2003-08-01,"Residential Consumption","North Dakota","ND",228 +2003-08-01,"Residential Consumption","Idaho","ID",354 +2003-08-01,"Residential Consumption","Colorado","CO",2707 +2003-08-01,"Residential Consumption","Kansas","KS",1340 +2003-08-01,"Residential Consumption","Washington","WA",1546 +2003-08-01,"Residential Consumption","U.S.","U.S.",115852 +2003-08-01,"Residential Consumption","Minnesota","MN",2695 +2003-08-01,"Residential Consumption","Maine","ME",29 +2003-08-01,"Residential Consumption","Massachusetts","MA",2576 +2003-08-01,"Residential Consumption","Alaska","AK",599 +2003-08-01,"Residential Consumption","Illinois","IL",9543 +2003-08-01,"Residential Consumption","Missouri","MO",2112 +2003-08-01,"Residential Consumption","Arizona","AZ",1100 +2003-08-01,"Residential Consumption","Wyoming","WY",243 +2003-08-01,"Residential Consumption","New York","NY",8722 +2003-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",1552 +2003-09-01,"Commercial Consumption","West Virginia","WV",1316 +2003-09-01,"Commercial Consumption","Oklahoma","OK",1315 +2003-09-01,"Commercial Consumption","Ohio","OH",5275 +2003-09-01,"Commercial Consumption","Alaska","AK",1312 +2003-09-01,"Commercial Consumption","Arizona","AZ",1815 +2003-09-01,"Commercial Consumption","District of Columbia","DC",663 +2003-09-01,"Commercial Consumption","North Dakota","ND",358 +2003-09-01,"Commercial Consumption","New Mexico","NM",950 +2003-09-01,"Commercial Consumption","Missouri","MO",2198 +2003-09-01,"Commercial Consumption","Iowa","IA",1457 +2003-09-01,"Commercial Consumption","Nebraska","NE",946 +2003-09-01,"Commercial Consumption","Wisconsin","WI",2713 +2003-09-01,"Commercial Consumption","Kentucky","KY",1195 +2003-09-01,"Commercial Consumption","Georgia","GA",2481 +2003-09-01,"Commercial Consumption","Hawaii","HI",145 +2003-09-01,"Commercial Consumption","California","CA",14050 +2003-09-01,"Commercial Consumption","Delaware","DE",311 +2003-09-01,"Commercial Consumption","Minnesota","MN",3476 +2003-09-01,"Commercial Consumption","New Hampshire","NH",290 +2003-09-01,"Commercial Consumption","U.S.","U.S.",136088 +2003-09-01,"Commercial Consumption","Maryland","MD",3063 +2003-09-01,"Commercial Consumption","Kansas","KS",1164 +2003-09-01,"Commercial Consumption","Vermont","VT",76 +2003-09-01,"Commercial Consumption","New York","NY",18801 +2003-09-01,"Commercial Consumption","Illinois","IL",7876 +2003-09-01,"Commercial Consumption","Utah","UT",1243 +2003-09-01,"Commercial Consumption","Florida","FL",3973 +2003-09-01,"Commercial Consumption","Mississippi","MS",1141 +2003-09-01,"Commercial Consumption","Nevada","NV",1334 +2003-09-01,"Commercial Consumption","Louisiana","LA",1376 +2003-09-01,"Commercial Consumption","North Carolina","NC",1698 +2003-09-01,"Commercial Consumption","Colorado","CO",2746 +2003-09-01,"Commercial Consumption","Rhode Island","RI",256 +2003-09-01,"Commercial Consumption","Arkansas","AR",1361 +2003-09-01,"Commercial Consumption","Washington","WA",1976 +2003-09-01,"Commercial Consumption","South Carolina","SC",1170 +2003-09-01,"Commercial Consumption","Massachusetts","MA",2267 +2003-09-01,"Commercial Consumption","New Jersey","NJ",7209 +2003-09-01,"Commercial Consumption","Montana","MT",665 +2003-09-01,"Commercial Consumption","Maine","ME",213 +2003-09-01,"Commercial Consumption","Connecticut","CT",1702 +2003-09-01,"Commercial Consumption","Tennessee","TN",2385 +2003-09-01,"Commercial Consumption","Michigan","MI",5160 +2003-09-01,"Commercial Consumption","Wyoming","WY",368 +2003-09-01,"Commercial Consumption","Oregon","OR",1041 +2003-09-01,"Commercial Consumption","Virginia","VA",2484 +2003-09-01,"Commercial Consumption","Pennsylvania","PA",4048 +2003-09-01,"Commercial Consumption","South Dakota","SD",329 +2003-09-01,"Commercial Consumption","Texas","TX",12136 +2003-09-01,"Commercial Consumption","Idaho","ID",439 +2003-09-01,"Commercial Consumption","Alabama","AL",1121 +2003-09-01,"Commercial Consumption","Indiana","IN",3003 +2003-09-01,"Delivered to Consumers","New Mexico","NM",7158 +2003-09-01,"Delivered to Consumers","Indiana","IN",27072 +2003-09-01,"Delivered to Consumers","New York","NY",61893 +2003-09-01,"Delivered to Consumers","Oklahoma","OK",30139 +2003-09-01,"Delivered to Consumers","Mississippi","MS",16780 +2003-09-01,"Delivered to Consumers","California","CA",182143 +2003-09-01,"Delivered to Consumers","Maine","ME",5606 +2003-09-01,"Delivered to Consumers","Michigan","MI",32744 +2003-09-01,"Delivered to Consumers","Kentucky","KY",10390 +2003-09-01,"Delivered to Consumers","Iowa","IA",10550 +2003-09-01,"Delivered to Consumers","North Carolina","NC",11210 +2003-09-01,"Delivered to Consumers","Georgia","GA",21628 +2003-09-01,"Delivered to Consumers","Kansas","KS",13725 +2003-09-01,"Delivered to Consumers","Virginia","VA",11238 +2003-09-01,"Delivered to Consumers","Texas","TX",294294 +2003-09-01,"Delivered to Consumers","Louisiana","LA",85824 +2003-09-01,"Delivered to Consumers","South Dakota","SD",1591 +2003-09-01,"Delivered to Consumers","Maryland","MD",7131 +2003-09-01,"Delivered to Consumers","Tennessee","TN",12016 +2003-09-01,"Delivered to Consumers","Ohio","OH",32918 +2003-09-01,"Delivered to Consumers","Massachusetts","MA",23294 +2003-09-01,"Delivered to Consumers","New Hampshire","NH",4166 +2003-09-01,"Delivered to Consumers","Florida","FL",62150 +2003-09-01,"Delivered to Consumers","Vermont","VT",325 +2003-09-01,"Delivered to Consumers","Rhode Island","RI",4891 +2003-09-01,"Delivered to Consumers","Montana","MT",2468 +2003-09-01,"Delivered to Consumers","Alaska","AK",8895 +2003-09-01,"Delivered to Consumers","Alabama","AL",21482 +2003-09-01,"Delivered to Consumers","Missouri","MO",9788 +2003-09-01,"Delivered to Consumers","Colorado","CO",20981 +2003-09-01,"Delivered to Consumers","New Jersey","NJ",29057 +2003-09-01,"Delivered to Consumers","Washington","WA",15698 +2003-09-01,"Delivered to Consumers","North Dakota","ND",1664 +2003-09-01,"Delivered to Consumers","Utah","UT",6229 +2003-09-01,"Delivered to Consumers","Wyoming","WY",4356 +2003-09-01,"Delivered to Consumers","West Virginia","WV",5552 +2003-09-01,"Delivered to Consumers","Hawaii","HI",223 +2003-09-01,"Delivered to Consumers","Wisconsin","WI",16485 +2003-09-01,"Delivered to Consumers","Arizona","AZ",25278 +2003-09-01,"Delivered to Consumers","Minnesota","MN",14570 +2003-09-01,"Delivered to Consumers","Delaware","DE",2728 +2003-09-01,"Delivered to Consumers","Pennsylvania","PA",26799 +2003-09-01,"Delivered to Consumers","South Carolina","SC",8766 +2003-09-01,"Delivered to Consumers","Oregon","OR",17015 +2003-09-01,"Delivered to Consumers","District of Columbia","DC",844 +2003-09-01,"Delivered to Consumers","U.S.","U.S.",1299128 +2003-09-01,"Delivered to Consumers","Illinois","IL",39310 +2003-09-01,"Delivered to Consumers","Idaho","ID",3902 +2003-09-01,"Delivered to Consumers","Connecticut","CT",8389 +2003-09-01,"Delivered to Consumers","Arkansas","AR",15282 +2003-09-01,"Delivered to Consumers","Nebraska","NE",5904 +2003-09-01,"Delivered to Consumers","Nevada","NV",15088 +2003-09-01,"Electric Power Consumption","Louisiana","LA",20590 +2003-09-01,"Electric Power Consumption","South Carolina","SC",651 +2003-09-01,"Electric Power Consumption","Iowa","IA",244 +2003-09-01,"Electric Power Consumption","South Dakota","SD",175 +2003-09-01,"Electric Power Consumption","Maine","ME",5144 +2003-09-01,"Electric Power Consumption","Florida","FL",51573 +2003-09-01,"Electric Power Consumption","California","CA",74232 +2003-09-01,"Electric Power Consumption","Alabama","AL",6906 +2003-09-01,"Electric Power Consumption","Alaska","AK",2628 +2003-09-01,"Electric Power Consumption","Arkansas","AR",5199 +2003-09-01,"Electric Power Consumption","Oregon","OR",9436 +2003-09-01,"Electric Power Consumption","North Carolina","NC",1465 +2003-09-01,"Electric Power Consumption","Missouri","MO",809 +2003-09-01,"Electric Power Consumption","New Mexico","NM",3182 +2003-09-01,"Electric Power Consumption","New York","NY",28053 +2003-09-01,"Electric Power Consumption","Oklahoma","OK",16449 +2003-09-01,"Electric Power Consumption","Nevada","NV",11903 +2003-09-01,"Electric Power Consumption","Nebraska","NE",164 +2003-09-01,"Electric Power Consumption","Mississippi","MS",8487 +2003-09-01,"Electric Power Consumption","Kentucky","KY",158 +2003-09-01,"Electric Power Consumption","Ohio","OH",954 +2003-09-01,"Electric Power Consumption","New Hampshire","NH",3408 +2003-09-01,"Electric Power Consumption","North Dakota","ND",0 +2003-09-01,"Electric Power Consumption","Arizona","AZ",21367 +2003-09-01,"Electric Power Consumption","Minnesota","MN",1498 +2003-09-01,"Electric Power Consumption","Hawaii","HI",0 +2003-09-01,"Electric Power Consumption","Delaware","DE",1127 +2003-09-01,"Electric Power Consumption","Washington","WA",6675 +2003-09-01,"Electric Power Consumption","Colorado","CO",6344 +2003-09-01,"Electric Power Consumption","Utah","UT",1181 +2003-09-01,"Electric Power Consumption","Wisconsin","WI",1232 +2003-09-01,"Electric Power Consumption","Tennessee","TN",177 +2003-09-01,"Electric Power Consumption","U.S.","U.S.",468510 +2003-09-01,"Electric Power Consumption","Montana","MT",11 +2003-09-01,"Electric Power Consumption","Virginia","VA",2191 +2003-09-01,"Electric Power Consumption","Wyoming","WY",105 +2003-09-01,"Electric Power Consumption","Vermont","VT",3 +2003-09-01,"Electric Power Consumption","Connecticut","CT",4211 +2003-09-01,"Electric Power Consumption","New Jersey","NJ",11122 +2003-09-01,"Electric Power Consumption","Idaho","ID",1102 +2003-09-01,"Electric Power Consumption","Texas","TX",119762 +2003-09-01,"Electric Power Consumption","Illinois","IL",1350 +2003-09-01,"Electric Power Consumption","Kansas","KS",738 +2003-09-01,"Electric Power Consumption","Maryland","MD",680 +2003-09-01,"Electric Power Consumption","Indiana","IN",2334 +2003-09-01,"Electric Power Consumption","Georgia","GA",2629 +2003-09-01,"Electric Power Consumption","Rhode Island","RI",3931 +2003-09-01,"Electric Power Consumption","Michigan","MI",6415 +2003-09-01,"Electric Power Consumption","Massachusetts","MA",16909 +2003-09-01,"Electric Power Consumption","West Virginia","WV",206 +2003-09-01,"Electric Power Consumption","Pennsylvania","PA",3401 +2003-09-01,"Industrial Consumption","Louisiana","LA",62246 +2003-09-01,"Industrial Consumption","South Dakota","SD",768 +2003-09-01,"Industrial Consumption","Nebraska","NE",4005 +2003-09-01,"Industrial Consumption","Alaska","AK",4057 +2003-09-01,"Industrial Consumption","Colorado","CO",7330 +2003-09-01,"Industrial Consumption","Ohio","OH",19576 +2003-09-01,"Industrial Consumption","Kansas","KS",10209 +2003-09-01,"Industrial Consumption","Arkansas","AR",7919 +2003-09-01,"Industrial Consumption","Alabama","AL",12339 +2003-09-01,"Industrial Consumption","Virginia","VA",5070 +2003-09-01,"Industrial Consumption","Minnesota","MN",6284 +2003-09-01,"Industrial Consumption","Illinois","IL",18657 +2003-09-01,"Industrial Consumption","Delaware","DE",1095 +2003-09-01,"Industrial Consumption","North Carolina","NC",6894 +2003-09-01,"Industrial Consumption","Montana","MT",1234 +2003-09-01,"Industrial Consumption","Maryland","MD",1487 +2003-09-01,"Industrial Consumption","Oklahoma","OK",11057 +2003-09-01,"Industrial Consumption","Mississippi","MS",6475 +2003-09-01,"Industrial Consumption","Texas","TX",156602 +2003-09-01,"Industrial Consumption","Wisconsin","WI",9067 +2003-09-01,"Industrial Consumption","New Jersey","NJ",5565 +2003-09-01,"Industrial Consumption","Georgia","GA",12912 +2003-09-01,"Industrial Consumption","Massachusetts","MA",1279 +2003-09-01,"Industrial Consumption","U.S.","U.S.",564407 +2003-09-01,"Industrial Consumption","Oregon","OR",5634 +2003-09-01,"Industrial Consumption","New York","NY",5583 +2003-09-01,"Industrial Consumption","Nevada","NV",775 +2003-09-01,"Industrial Consumption","California","CA",71778 +2003-09-01,"Industrial Consumption","Michigan","MI",13093 +2003-09-01,"Industrial Consumption","Rhode Island","RI",284 +2003-09-01,"Industrial Consumption","District of Columbia","DC",0 +2003-09-01,"Industrial Consumption","North Dakota","ND",989 +2003-09-01,"Industrial Consumption","Hawaii","HI",36 +2003-09-01,"Industrial Consumption","Arizona","AZ",1045 +2003-09-01,"Industrial Consumption","Tennessee","TN",8204 +2003-09-01,"Industrial Consumption","Indiana","IN",18398 +2003-09-01,"Industrial Consumption","Washington","WA",5210 +2003-09-01,"Industrial Consumption","West Virginia","WV",3350 +2003-09-01,"Industrial Consumption","Missouri","MO",4317 +2003-09-01,"Industrial Consumption","Utah","UT",1950 +2003-09-01,"Industrial Consumption","Pennsylvania","PA",14443 +2003-09-01,"Industrial Consumption","New Hampshire","NH",307 +2003-09-01,"Industrial Consumption","Idaho","ID",1909 +2003-09-01,"Industrial Consumption","Florida","FL",5864 +2003-09-01,"Industrial Consumption","Connecticut","CT",1715 +2003-09-01,"Industrial Consumption","New Mexico","NM",2212 +2003-09-01,"Industrial Consumption","Maine","ME",219 +2003-09-01,"Industrial Consumption","South Carolina","SC",6449 +2003-09-01,"Industrial Consumption","Vermont","VT",182 +2003-09-01,"Industrial Consumption","Wyoming","WY",3480 +2003-09-01,"Industrial Consumption","Iowa","IA",7288 +2003-09-01,"Industrial Consumption","Kentucky","KY",7568 +2003-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92079 +2003-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",37347 +2003-09-01,"Residential Consumption","Wisconsin","WI",3472 +2003-09-01,"Residential Consumption","Georgia","GA",3607 +2003-09-01,"Residential Consumption","Massachusetts","MA",2838 +2003-09-01,"Residential Consumption","Missouri","MO",2464 +2003-09-01,"Residential Consumption","Alabama","AL",1116 +2003-09-01,"Residential Consumption","New York","NY",9456 +2003-09-01,"Residential Consumption","Texas","TX",5794 +2003-09-01,"Residential Consumption","Ohio","OH",7113 +2003-09-01,"Residential Consumption","Iowa","IA",1561 +2003-09-01,"Residential Consumption","South Dakota","SD",320 +2003-09-01,"Residential Consumption","Indiana","IN",3336 +2003-09-01,"Residential Consumption","New Jersey","NJ",5162 +2003-09-01,"Residential Consumption","Kentucky","KY",1470 +2003-09-01,"Residential Consumption","Colorado","CO",4560 +2003-09-01,"Residential Consumption","Connecticut","CT",761 +2003-09-01,"Residential Consumption","Utah","UT",1856 +2003-09-01,"Residential Consumption","District of Columbia","DC",181 +2003-09-01,"Residential Consumption","New Hampshire","NH",161 +2003-09-01,"Residential Consumption","Alaska","AK",898 +2003-09-01,"Residential Consumption","West Virginia","WV",680 +2003-09-01,"Residential Consumption","U.S.","U.S.",128621 +2003-09-01,"Residential Consumption","Oregon","OR",904 +2003-09-01,"Residential Consumption","North Carolina","NC",1154 +2003-09-01,"Residential Consumption","Mississippi","MS",677 +2003-09-01,"Residential Consumption","Minnesota","MN",3313 +2003-09-01,"Residential Consumption","New Mexico","NM",815 +2003-09-01,"Residential Consumption","North Dakota","ND",317 +2003-09-01,"Residential Consumption","Montana","MT",557 +2003-09-01,"Residential Consumption","Washington","WA",1838 +2003-09-01,"Residential Consumption","Wyoming","WY",402 +2003-09-01,"Residential Consumption","Louisiana","LA",1612 +2003-09-01,"Residential Consumption","Hawaii","HI",42 +2003-09-01,"Residential Consumption","Nebraska","NE",789 +2003-09-01,"Residential Consumption","Michigan","MI",8075 +2003-09-01,"Residential Consumption","Oklahoma","OK",1318 +2003-09-01,"Residential Consumption","Tennessee","TN",1250 +2003-09-01,"Residential Consumption","Pennsylvania","PA",4907 +2003-09-01,"Residential Consumption","Maine","ME",30 +2003-09-01,"Residential Consumption","Florida","FL",740 +2003-09-01,"Residential Consumption","Kansas","KS",1614 +2003-09-01,"Residential Consumption","Delaware","DE",194 +2003-09-01,"Residential Consumption","California","CA",22084 +2003-09-01,"Residential Consumption","Rhode Island","RI",420 +2003-09-01,"Residential Consumption","Virginia","VA",1493 +2003-09-01,"Residential Consumption","Maryland","MD",1901 +2003-09-01,"Residential Consumption","Arkansas","AR",803 +2003-09-01,"Residential Consumption","South Carolina","SC",497 +2003-09-01,"Residential Consumption","Vermont","VT",63 +2003-09-01,"Residential Consumption","Nevada","NV",1075 +2003-09-01,"Residential Consumption","Idaho","ID",452 +2003-09-01,"Residential Consumption","Arizona","AZ",1052 +2003-09-01,"Residential Consumption","Illinois","IL",11428 +2003-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",1502 +2003-10-01,"Commercial Consumption","Wyoming","WY",544 +2003-10-01,"Commercial Consumption","Massachusetts","MA",2881 +2003-10-01,"Commercial Consumption","Ohio","OH",9378 +2003-10-01,"Commercial Consumption","California","CA",15035 +2003-10-01,"Commercial Consumption","Michigan","MI",9556 +2003-10-01,"Commercial Consumption","Minnesota","MN",5728 +2003-10-01,"Commercial Consumption","New Mexico","NM",1063 +2003-10-01,"Commercial Consumption","New Jersey","NJ",7465 +2003-10-01,"Commercial Consumption","Alaska","AK",1186 +2003-10-01,"Commercial Consumption","Connecticut","CT",2122 +2003-10-01,"Commercial Consumption","Nevada","NV",1511 +2003-10-01,"Commercial Consumption","Louisiana","LA",1438 +2003-10-01,"Commercial Consumption","Illinois","IL",12670 +2003-10-01,"Commercial Consumption","North Carolina","NC",2758 +2003-10-01,"Commercial Consumption","Utah","UT",1718 +2003-10-01,"Commercial Consumption","Oklahoma","OK",1341 +2003-10-01,"Commercial Consumption","New Hampshire","NH",435 +2003-10-01,"Commercial Consumption","Kansas","KS",1488 +2003-10-01,"Commercial Consumption","Arizona","AZ",2104 +2003-10-01,"Commercial Consumption","West Virginia","WV",1699 +2003-10-01,"Commercial Consumption","Oregon","OR",1149 +2003-10-01,"Commercial Consumption","Missouri","MO",2505 +2003-10-01,"Commercial Consumption","Rhode Island","RI",440 +2003-10-01,"Commercial Consumption","Iowa","IA",2654 +2003-10-01,"Commercial Consumption","Alabama","AL",1333 +2003-10-01,"Commercial Consumption","South Carolina","SC",1348 +2003-10-01,"Commercial Consumption","Wisconsin","WI",4848 +2003-10-01,"Commercial Consumption","Kentucky","KY",1898 +2003-10-01,"Commercial Consumption","U.S.","U.S.",176727 +2003-10-01,"Commercial Consumption","Florida","FL",3935 +2003-10-01,"Commercial Consumption","New York","NY",20203 +2003-10-01,"Commercial Consumption","Nebraska","NE",1277 +2003-10-01,"Commercial Consumption","Delaware","DE",422 +2003-10-01,"Commercial Consumption","Tennessee","TN",2913 +2003-10-01,"Commercial Consumption","District of Columbia","DC",1113 +2003-10-01,"Commercial Consumption","Colorado","CO",3332 +2003-10-01,"Commercial Consumption","South Dakota","SD",533 +2003-10-01,"Commercial Consumption","Georgia","GA",2614 +2003-10-01,"Commercial Consumption","Hawaii","HI",143 +2003-10-01,"Commercial Consumption","Pennsylvania","PA",8059 +2003-10-01,"Commercial Consumption","Maryland","MD",5235 +2003-10-01,"Commercial Consumption","Idaho","ID",533 +2003-10-01,"Commercial Consumption","Arkansas","AR",1531 +2003-10-01,"Commercial Consumption","Mississippi","MS",1274 +2003-10-01,"Commercial Consumption","Washington","WA",2370 +2003-10-01,"Commercial Consumption","North Dakota","ND",639 +2003-10-01,"Commercial Consumption","Virginia","VA",4207 +2003-10-01,"Commercial Consumption","Montana","MT",954 +2003-10-01,"Commercial Consumption","Maine","ME",324 +2003-10-01,"Commercial Consumption","Texas","TX",11763 +2003-10-01,"Commercial Consumption","Vermont","VT",125 +2003-10-01,"Commercial Consumption","Indiana","IN",4932 +2003-10-01,"Delivered to Consumers","Wyoming","WY",5062 +2003-10-01,"Delivered to Consumers","Virginia","VA",15259 +2003-10-01,"Delivered to Consumers","Pennsylvania","PA",39895 +2003-10-01,"Delivered to Consumers","Nebraska","NE",6758 +2003-10-01,"Delivered to Consumers","New Hampshire","NH",4643 +2003-10-01,"Delivered to Consumers","Michigan","MI",49901 +2003-10-01,"Delivered to Consumers","Wisconsin","WI",24636 +2003-10-01,"Delivered to Consumers","North Carolina","NC",12814 +2003-10-01,"Delivered to Consumers","South Dakota","SD",2054 +2003-10-01,"Delivered to Consumers","Oklahoma","OK",28937 +2003-10-01,"Delivered to Consumers","Ohio","OH",52253 +2003-10-01,"Delivered to Consumers","Iowa","IA",13644 +2003-10-01,"Delivered to Consumers","Alabama","AL",18885 +2003-10-01,"Delivered to Consumers","Texas","TX",281431 +2003-10-01,"Delivered to Consumers","Oregon","OR",16463 +2003-10-01,"Delivered to Consumers","Minnesota","MN",22649 +2003-10-01,"Delivered to Consumers","Utah","UT",7898 +2003-10-01,"Delivered to Consumers","Montana","MT",3629 +2003-10-01,"Delivered to Consumers","Maryland","MD",11863 +2003-10-01,"Delivered to Consumers","Hawaii","HI",218 +2003-10-01,"Delivered to Consumers","Missouri","MO",10817 +2003-10-01,"Delivered to Consumers","South Carolina","SC",8909 +2003-10-01,"Delivered to Consumers","New Jersey","NJ",34046 +2003-10-01,"Delivered to Consumers","Washington","WA",18116 +2003-10-01,"Delivered to Consumers","Indiana","IN",34914 +2003-10-01,"Delivered to Consumers","Vermont","VT",502 +2003-10-01,"Delivered to Consumers","Illinois","IL",59953 +2003-10-01,"Delivered to Consumers","Rhode Island","RI",4709 +2003-10-01,"Delivered to Consumers","Tennessee","TN",13775 +2003-10-01,"Delivered to Consumers","Maine","ME",6652 +2003-10-01,"Delivered to Consumers","Florida","FL",59558 +2003-10-01,"Delivered to Consumers","New Mexico","NM",6216 +2003-10-01,"Delivered to Consumers","Alaska","AK",10027 +2003-10-01,"Delivered to Consumers","Kansas","KS",13096 +2003-10-01,"Delivered to Consumers","Kentucky","KY",13196 +2003-10-01,"Delivered to Consumers","Connecticut","CT",9797 +2003-10-01,"Delivered to Consumers","Arkansas","AR",16402 +2003-10-01,"Delivered to Consumers","Colorado","CO",22248 +2003-10-01,"Delivered to Consumers","Georgia","GA",22981 +2003-10-01,"Delivered to Consumers","Delaware","DE",2949 +2003-10-01,"Delivered to Consumers","West Virginia","WV",7192 +2003-10-01,"Delivered to Consumers","Idaho","ID",3977 +2003-10-01,"Delivered to Consumers","Mississippi","MS",14228 +2003-10-01,"Delivered to Consumers","Massachusetts","MA",32416 +2003-10-01,"Delivered to Consumers","Nevada","NV",14301 +2003-10-01,"Delivered to Consumers","Louisiana","LA",84198 +2003-10-01,"Delivered to Consumers","Arizona","AZ",24409 +2003-10-01,"Delivered to Consumers","North Dakota","ND",2336 +2003-10-01,"Delivered to Consumers","District of Columbia","DC",1963 +2003-10-01,"Delivered to Consumers","U.S.","U.S.",1417234 +2003-10-01,"Delivered to Consumers","New York","NY",63566 +2003-10-01,"Delivered to Consumers","California","CA",179341 +2003-10-01,"Electric Power Consumption","Virginia","VA",1488 +2003-10-01,"Electric Power Consumption","Oregon","OR",8083 +2003-10-01,"Electric Power Consumption","Minnesota","MN",1734 +2003-10-01,"Electric Power Consumption","Kansas","KS",533 +2003-10-01,"Electric Power Consumption","Wisconsin","WI",1369 +2003-10-01,"Electric Power Consumption","Maine","ME",5992 +2003-10-01,"Electric Power Consumption","Ohio","OH",608 +2003-10-01,"Electric Power Consumption","Indiana","IN",1387 +2003-10-01,"Electric Power Consumption","Alabama","AL",2735 +2003-10-01,"Electric Power Consumption","New Jersey","NJ",9833 +2003-10-01,"Electric Power Consumption","Idaho","ID",731 +2003-10-01,"Electric Power Consumption","Rhode Island","RI",3356 +2003-10-01,"Electric Power Consumption","Mississippi","MS",5103 +2003-10-01,"Electric Power Consumption","Hawaii","HI",0 +2003-10-01,"Electric Power Consumption","Georgia","GA",590 +2003-10-01,"Electric Power Consumption","New Mexico","NM",2564 +2003-10-01,"Electric Power Consumption","Arkansas","AR",4109 +2003-10-01,"Electric Power Consumption","West Virginia","WV",116 +2003-10-01,"Electric Power Consumption","U.S.","U.S.",408817 +2003-10-01,"Electric Power Consumption","Utah","UT",1076 +2003-10-01,"Electric Power Consumption","Massachusetts","MA",18511 +2003-10-01,"Electric Power Consumption","Vermont","VT",4 +2003-10-01,"Electric Power Consumption","Tennessee","TN",75 +2003-10-01,"Electric Power Consumption","Maryland","MD",548 +2003-10-01,"Electric Power Consumption","Florida","FL",48650 +2003-10-01,"Electric Power Consumption","South Carolina","SC",304 +2003-10-01,"Electric Power Consumption","New York","NY",19738 +2003-10-01,"Electric Power Consumption","Oklahoma","OK",13598 +2003-10-01,"Electric Power Consumption","Illinois","IL",956 +2003-10-01,"Electric Power Consumption","Nebraska","NE",197 +2003-10-01,"Electric Power Consumption","North Dakota","ND",0 +2003-10-01,"Electric Power Consumption","Connecticut","CT",3757 +2003-10-01,"Electric Power Consumption","Alaska","AK",2848 +2003-10-01,"Electric Power Consumption","Louisiana","LA",18689 +2003-10-01,"Electric Power Consumption","North Carolina","NC",211 +2003-10-01,"Electric Power Consumption","Arizona","AZ",19806 +2003-10-01,"Electric Power Consumption","Washington","WA",6771 +2003-10-01,"Electric Power Consumption","Texas","TX",103052 +2003-10-01,"Electric Power Consumption","Michigan","MI",6138 +2003-10-01,"Electric Power Consumption","Pennsylvania","PA",3391 +2003-10-01,"Electric Power Consumption","South Dakota","SD",95 +2003-10-01,"Electric Power Consumption","Missouri","MO",112 +2003-10-01,"Electric Power Consumption","Kentucky","KY",101 +2003-10-01,"Electric Power Consumption","Montana","MT",15 +2003-10-01,"Electric Power Consumption","Delaware","DE",904 +2003-10-01,"Electric Power Consumption","California","CA",68666 +2003-10-01,"Electric Power Consumption","Colorado","CO",5751 +2003-10-01,"Electric Power Consumption","Nevada","NV",10672 +2003-10-01,"Electric Power Consumption","Wyoming","WY",111 +2003-10-01,"Electric Power Consumption","Iowa","IA",226 +2003-10-01,"Electric Power Consumption","New Hampshire","NH",3512 +2003-10-01,"Industrial Consumption","Oklahoma","OK",12316 +2003-10-01,"Industrial Consumption","Missouri","MO",4659 +2003-10-01,"Industrial Consumption","Pennsylvania","PA",16113 +2003-10-01,"Industrial Consumption","Tennessee","TN",8695 +2003-10-01,"Industrial Consumption","Minnesota","MN",8202 +2003-10-01,"Industrial Consumption","District of Columbia","DC",0 +2003-10-01,"Industrial Consumption","Louisiana","LA",62280 +2003-10-01,"Industrial Consumption","Colorado","CO",7354 +2003-10-01,"Industrial Consumption","Washington","WA",6071 +2003-10-01,"Industrial Consumption","Michigan","MI",14244 +2003-10-01,"Industrial Consumption","Kentucky","KY",8569 +2003-10-01,"Industrial Consumption","South Dakota","SD",836 +2003-10-01,"Industrial Consumption","Kansas","KS",8954 +2003-10-01,"Industrial Consumption","New York","NY",6475 +2003-10-01,"Industrial Consumption","West Virginia","WV",3562 +2003-10-01,"Industrial Consumption","Connecticut","CT",2072 +2003-10-01,"Industrial Consumption","Indiana","IN",20589 +2003-10-01,"Industrial Consumption","New Mexico","NM",1613 +2003-10-01,"Industrial Consumption","Oregon","OR",6003 +2003-10-01,"Industrial Consumption","South Carolina","SC",6519 +2003-10-01,"Industrial Consumption","Iowa","IA",7710 +2003-10-01,"Industrial Consumption","Rhode Island","RI",249 +2003-10-01,"Industrial Consumption","Georgia","GA",14159 +2003-10-01,"Industrial Consumption","North Dakota","ND",1063 +2003-10-01,"Industrial Consumption","Hawaii","HI",36 +2003-10-01,"Industrial Consumption","Wyoming","WY",3759 +2003-10-01,"Industrial Consumption","Wisconsin","WI",10870 +2003-10-01,"Industrial Consumption","Illinois","IL",20858 +2003-10-01,"Industrial Consumption","North Carolina","NC",7555 +2003-10-01,"Industrial Consumption","Maryland","MD",1373 +2003-10-01,"Industrial Consumption","Ohio","OH",24052 +2003-10-01,"Industrial Consumption","Arizona","AZ",1101 +2003-10-01,"Industrial Consumption","California","CA",69904 +2003-10-01,"Industrial Consumption","Alabama","AL",13365 +2003-10-01,"Industrial Consumption","Nebraska","NE",3644 +2003-10-01,"Industrial Consumption","Virginia","VA",5399 +2003-10-01,"Industrial Consumption","Montana","MT",1701 +2003-10-01,"Industrial Consumption","Massachusetts","MA",6410 +2003-10-01,"Industrial Consumption","U.S.","U.S.",598581 +2003-10-01,"Industrial Consumption","Nevada","NV",846 +2003-10-01,"Industrial Consumption","Mississippi","MS",7002 +2003-10-01,"Industrial Consumption","Arkansas","AR",9730 +2003-10-01,"Industrial Consumption","Texas","TX",159504 +2003-10-01,"Industrial Consumption","Vermont","VT",254 +2003-10-01,"Industrial Consumption","New Jersey","NJ",6033 +2003-10-01,"Industrial Consumption","Idaho","ID",2062 +2003-10-01,"Industrial Consumption","Florida","FL",6209 +2003-10-01,"Industrial Consumption","Alaska","AK",4626 +2003-10-01,"Industrial Consumption","Utah","UT",2117 +2003-10-01,"Industrial Consumption","Maine","ME",273 +2003-10-01,"Industrial Consumption","New Hampshire","NH",380 +2003-10-01,"Industrial Consumption","Delaware","DE",1212 +2003-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95213 +2003-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",40742 +2003-10-01,"Residential Consumption","District of Columbia","DC",849 +2003-10-01,"Residential Consumption","New Mexico","NM",976 +2003-10-01,"Residential Consumption","North Dakota","ND",634 +2003-10-01,"Residential Consumption","Connecticut","CT",1846 +2003-10-01,"Residential Consumption","Virginia","VA",4164 +2003-10-01,"Residential Consumption","Minnesota","MN",6986 +2003-10-01,"Residential Consumption","Montana","MT",960 +2003-10-01,"Residential Consumption","Kentucky","KY",2628 +2003-10-01,"Residential Consumption","Alaska","AK",1368 +2003-10-01,"Residential Consumption","Wyoming","WY",649 +2003-10-01,"Residential Consumption","U.S.","U.S.",231558 +2003-10-01,"Residential Consumption","South Carolina","SC",738 +2003-10-01,"Residential Consumption","Oregon","OR",1227 +2003-10-01,"Residential Consumption","Ohio","OH",18215 +2003-10-01,"Residential Consumption","Wisconsin","WI",7549 +2003-10-01,"Residential Consumption","Vermont","VT",119 +2003-10-01,"Residential Consumption","Tennessee","TN",2092 +2003-10-01,"Residential Consumption","Florida","FL",764 +2003-10-01,"Residential Consumption","Massachusetts","MA",4614 +2003-10-01,"Residential Consumption","Oklahoma","OK",1683 +2003-10-01,"Residential Consumption","Delaware","DE",412 +2003-10-01,"Residential Consumption","Rhode Island","RI",665 +2003-10-01,"Residential Consumption","North Carolina","NC",2290 +2003-10-01,"Residential Consumption","Utah","UT",2988 +2003-10-01,"Residential Consumption","Nebraska","NE",1640 +2003-10-01,"Residential Consumption","Michigan","MI",19963 +2003-10-01,"Residential Consumption","Nevada","NV",1272 +2003-10-01,"Residential Consumption","Georgia","GA",5617 +2003-10-01,"Residential Consumption","Idaho","ID",651 +2003-10-01,"Residential Consumption","Arkansas","AR",1032 +2003-10-01,"Residential Consumption","Louisiana","LA",1790 +2003-10-01,"Residential Consumption","Iowa","IA",3054 +2003-10-01,"Residential Consumption","Hawaii","HI",39 +2003-10-01,"Residential Consumption","South Dakota","SD",590 +2003-10-01,"Residential Consumption","Pennsylvania","PA",12331 +2003-10-01,"Residential Consumption","Kansas","KS",2121 +2003-10-01,"Residential Consumption","Missouri","MO",3542 +2003-10-01,"Residential Consumption","Arizona","AZ",1399 +2003-10-01,"Residential Consumption","Maryland","MD",4707 +2003-10-01,"Residential Consumption","Maine","ME",63 +2003-10-01,"Residential Consumption","New Jersey","NJ",10715 +2003-10-01,"Residential Consumption","New Hampshire","NH",317 +2003-10-01,"Residential Consumption","New York","NY",17149 +2003-10-01,"Residential Consumption","Texas","TX",7112 +2003-10-01,"Residential Consumption","Mississippi","MS",849 +2003-10-01,"Residential Consumption","Indiana","IN",8006 +2003-10-01,"Residential Consumption","Colorado","CO",5811 +2003-10-01,"Residential Consumption","Washington","WA",2903 +2003-10-01,"Residential Consumption","California","CA",25736 +2003-10-01,"Residential Consumption","Alabama","AL",1452 +2003-10-01,"Residential Consumption","West Virginia","WV",1816 +2003-10-01,"Residential Consumption","Illinois","IL",25469 +2003-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",1552 +2003-11-01,"Commercial Consumption","Minnesota","MN",9741 +2003-11-01,"Commercial Consumption","New Mexico","NM",1511 +2003-11-01,"Commercial Consumption","Iowa","IA",4350 +2003-11-01,"Commercial Consumption","New York","NY",23236 +2003-11-01,"Commercial Consumption","District of Columbia","DC",1397 +2003-11-01,"Commercial Consumption","Wyoming","WY",1083 +2003-11-01,"Commercial Consumption","Pennsylvania","PA",11128 +2003-11-01,"Commercial Consumption","South Dakota","SD",1166 +2003-11-01,"Commercial Consumption","Kentucky","KY",2926 +2003-11-01,"Commercial Consumption","Texas","TX",15238 +2003-11-01,"Commercial Consumption","Idaho","ID",1177 +2003-11-01,"Commercial Consumption","Hawaii","HI",140 +2003-11-01,"Commercial Consumption","Arkansas","AR",1981 +2003-11-01,"Commercial Consumption","West Virginia","WV",2029 +2003-11-01,"Commercial Consumption","South Carolina","SC",1505 +2003-11-01,"Commercial Consumption","North Dakota","ND",1424 +2003-11-01,"Commercial Consumption","Colorado","CO",7212 +2003-11-01,"Commercial Consumption","U.S.","U.S.",256260 +2003-11-01,"Commercial Consumption","Georgia","GA",3208 +2003-11-01,"Commercial Consumption","Tennessee","TN",3652 +2003-11-01,"Commercial Consumption","Louisiana","LA",1628 +2003-11-01,"Commercial Consumption","New Hampshire","NH",667 +2003-11-01,"Commercial Consumption","Vermont","VT",207 +2003-11-01,"Commercial Consumption","Connecticut","CT",3144 +2003-11-01,"Commercial Consumption","Delaware","DE",644 +2003-11-01,"Commercial Consumption","Arizona","AZ",2516 +2003-11-01,"Commercial Consumption","Illinois","IL",19454 +2003-11-01,"Commercial Consumption","Utah","UT",3783 +2003-11-01,"Commercial Consumption","Oregon","OR",2130 +2003-11-01,"Commercial Consumption","Missouri","MO",4030 +2003-11-01,"Commercial Consumption","New Jersey","NJ",12494 +2003-11-01,"Commercial Consumption","Montana","MT",1681 +2003-11-01,"Commercial Consumption","Maryland","MD",5943 +2003-11-01,"Commercial Consumption","Michigan","MI",14617 +2003-11-01,"Commercial Consumption","Indiana","IN",7578 +2003-11-01,"Commercial Consumption","Oklahoma","OK",1942 +2003-11-01,"Commercial Consumption","Virginia","VA",5406 +2003-11-01,"Commercial Consumption","Massachusetts","MA",7354 +2003-11-01,"Commercial Consumption","Maine","ME",292 +2003-11-01,"Commercial Consumption","Florida","FL",4299 +2003-11-01,"Commercial Consumption","Ohio","OH",14238 +2003-11-01,"Commercial Consumption","Mississippi","MS",1388 +2003-11-01,"Commercial Consumption","Washington","WA",4366 +2003-11-01,"Commercial Consumption","North Carolina","NC",3854 +2003-11-01,"Commercial Consumption","Wisconsin","WI",8738 +2003-11-01,"Commercial Consumption","Kansas","KS",2742 +2003-11-01,"Commercial Consumption","Alaska","AK",1938 +2003-11-01,"Commercial Consumption","Nebraska","NE",2163 +2003-11-01,"Commercial Consumption","Rhode Island","RI",787 +2003-11-01,"Commercial Consumption","California","CA",18426 +2003-11-01,"Commercial Consumption","Alabama","AL",1535 +2003-11-01,"Commercial Consumption","Nevada","NV",2170 +2003-11-01,"Delivered to Consumers","Oklahoma","OK",26588 +2003-11-01,"Delivered to Consumers","North Carolina","NC",16520 +2003-11-01,"Delivered to Consumers","Colorado","CO",39408 +2003-11-01,"Delivered to Consumers","California","CA",181360 +2003-11-01,"Delivered to Consumers","Arizona","AZ",16317 +2003-11-01,"Delivered to Consumers","Utah","UT",13299 +2003-11-01,"Delivered to Consumers","Indiana","IN",46556 +2003-11-01,"Delivered to Consumers","Delaware","DE",3547 +2003-11-01,"Delivered to Consumers","New York","NY",74370 +2003-11-01,"Delivered to Consumers","Maryland","MD",16167 +2003-11-01,"Delivered to Consumers","Kentucky","KY",16933 +2003-11-01,"Delivered to Consumers","Wisconsin","WI",36907 +2003-11-01,"Delivered to Consumers","Virginia","VA",21050 +2003-11-01,"Delivered to Consumers","Mississippi","MS",16133 +2003-11-01,"Delivered to Consumers","Missouri","MO",17229 +2003-11-01,"Delivered to Consumers","Washington","WA",25119 +2003-11-01,"Delivered to Consumers","Wyoming","WY",5554 +2003-11-01,"Delivered to Consumers","Alaska","AK",9481 +2003-11-01,"Delivered to Consumers","Alabama","AL",20502 +2003-11-01,"Delivered to Consumers","Massachusetts","MA",32407 +2003-11-01,"Delivered to Consumers","Maine","ME",5970 +2003-11-01,"Delivered to Consumers","South Dakota","SD",3715 +2003-11-01,"Delivered to Consumers","Montana","MT",6282 +2003-11-01,"Delivered to Consumers","Tennessee","TN",16202 +2003-11-01,"Delivered to Consumers","Michigan","MI",69659 +2003-11-01,"Delivered to Consumers","Arkansas","AR",16960 +2003-11-01,"Delivered to Consumers","Nebraska","NE",8775 +2003-11-01,"Delivered to Consumers","Texas","TX",267757 +2003-11-01,"Delivered to Consumers","Oregon","OR",19222 +2003-11-01,"Delivered to Consumers","Nevada","NV",14598 +2003-11-01,"Delivered to Consumers","Georgia","GA",26920 +2003-11-01,"Delivered to Consumers","Idaho","ID",6312 +2003-11-01,"Delivered to Consumers","Connecticut","CT",12778 +2003-11-01,"Delivered to Consumers","North Dakota","ND",3871 +2003-11-01,"Delivered to Consumers","U.S.","U.S.",1616154 +2003-11-01,"Delivered to Consumers","New Mexico","NM",7850 +2003-11-01,"Delivered to Consumers","Vermont","VT",708 +2003-11-01,"Delivered to Consumers","District of Columbia","DC",2691 +2003-11-01,"Delivered to Consumers","West Virginia","WV",8076 +2003-11-01,"Delivered to Consumers","Illinois","IL",89354 +2003-11-01,"Delivered to Consumers","Hawaii","HI",216 +2003-11-01,"Delivered to Consumers","Kansas","KS",15980 +2003-11-01,"Delivered to Consumers","Ohio","OH",65617 +2003-11-01,"Delivered to Consumers","Iowa","IA",20542 +2003-11-01,"Delivered to Consumers","Pennsylvania","PA",47467 +2003-11-01,"Delivered to Consumers","Minnesota","MN",35945 +2003-11-01,"Delivered to Consumers","Rhode Island","RI",6468 +2003-11-01,"Delivered to Consumers","South Carolina","SC",9675 +2003-11-01,"Delivered to Consumers","New Jersey","NJ",45854 +2003-11-01,"Delivered to Consumers","Louisiana","LA",83677 +2003-11-01,"Delivered to Consumers","New Hampshire","NH",3574 +2003-11-01,"Delivered to Consumers","Florida","FL",56488 +2003-11-01,"Electric Power Consumption","Louisiana","LA",15461 +2003-11-01,"Electric Power Consumption","South Carolina","SC",235 +2003-11-01,"Electric Power Consumption","Michigan","MI",6210 +2003-11-01,"Electric Power Consumption","Nebraska","NE",218 +2003-11-01,"Electric Power Consumption","Maine","ME",5250 +2003-11-01,"Electric Power Consumption","Ohio","OH",751 +2003-11-01,"Electric Power Consumption","North Dakota","ND",0 +2003-11-01,"Electric Power Consumption","Georgia","GA",206 +2003-11-01,"Electric Power Consumption","New Jersey","NJ",8868 +2003-11-01,"Electric Power Consumption","U.S.","U.S.",348129 +2003-11-01,"Electric Power Consumption","Washington","WA",7268 +2003-11-01,"Electric Power Consumption","Massachusetts","MA",14243 +2003-11-01,"Electric Power Consumption","Kansas","KS",775 +2003-11-01,"Electric Power Consumption","Vermont","VT",5 +2003-11-01,"Electric Power Consumption","Delaware","DE",476 +2003-11-01,"Electric Power Consumption","Minnesota","MN",1560 +2003-11-01,"Electric Power Consumption","Nevada","NV",8648 +2003-11-01,"Electric Power Consumption","Tennessee","TN",104 +2003-11-01,"Electric Power Consumption","Connecticut","CT",4363 +2003-11-01,"Electric Power Consumption","Alabama","AL",3573 +2003-11-01,"Electric Power Consumption","Texas","TX",89312 +2003-11-01,"Electric Power Consumption","Rhode Island","RI",3882 +2003-11-01,"Electric Power Consumption","Illinois","IL",835 +2003-11-01,"Electric Power Consumption","Pennsylvania","PA",2248 +2003-11-01,"Electric Power Consumption","Wyoming","WY",60 +2003-11-01,"Electric Power Consumption","South Dakota","SD",90 +2003-11-01,"Electric Power Consumption","Mississippi","MS",6419 +2003-11-01,"Electric Power Consumption","New Hampshire","NH",1935 +2003-11-01,"Electric Power Consumption","Indiana","IN",2628 +2003-11-01,"Electric Power Consumption","California","CA",51327 +2003-11-01,"Electric Power Consumption","Virginia","VA",3330 +2003-11-01,"Electric Power Consumption","Iowa","IA",447 +2003-11-01,"Electric Power Consumption","Florida","FL",45632 +2003-11-01,"Electric Power Consumption","New Mexico","NM",2454 +2003-11-01,"Electric Power Consumption","New York","NY",15746 +2003-11-01,"Electric Power Consumption","Oklahoma","OK",8453 +2003-11-01,"Electric Power Consumption","Oregon","OR",7783 +2003-11-01,"Electric Power Consumption","North Carolina","NC",268 +2003-11-01,"Electric Power Consumption","Missouri","MO",476 +2003-11-01,"Electric Power Consumption","Kentucky","KY",105 +2003-11-01,"Electric Power Consumption","Hawaii","HI",0 +2003-11-01,"Electric Power Consumption","Montana","MT",11 +2003-11-01,"Electric Power Consumption","Idaho","ID",1100 +2003-11-01,"Electric Power Consumption","Colorado","CO",6145 +2003-11-01,"Electric Power Consumption","Arkansas","AR",3382 +2003-11-01,"Electric Power Consumption","Utah","UT",332 +2003-11-01,"Electric Power Consumption","West Virginia","WV",169 +2003-11-01,"Electric Power Consumption","Wisconsin","WI",1305 +2003-11-01,"Electric Power Consumption","Maryland","MD",609 +2003-11-01,"Electric Power Consumption","Arizona","AZ",10442 +2003-11-01,"Electric Power Consumption","Alaska","AK",2990 +2003-11-01,"Industrial Consumption","Oklahoma","OK",12760 +2003-11-01,"Industrial Consumption","South Dakota","SD",995 +2003-11-01,"Industrial Consumption","California","CA",68187 +2003-11-01,"Industrial Consumption","Alabama","AL",13235 +2003-11-01,"Industrial Consumption","South Carolina","SC",6559 +2003-11-01,"Industrial Consumption","Delaware","DE",1668 +2003-11-01,"Industrial Consumption","Georgia","GA",13309 +2003-11-01,"Industrial Consumption","Alaska","AK",2231 +2003-11-01,"Industrial Consumption","North Dakota","ND",925 +2003-11-01,"Industrial Consumption","Massachusetts","MA",2015 +2003-11-01,"Industrial Consumption","Hawaii","HI",34 +2003-11-01,"Industrial Consumption","Mississippi","MS",7111 +2003-11-01,"Industrial Consumption","Texas","TX",149475 +2003-11-01,"Industrial Consumption","Wisconsin","WI",12583 +2003-11-01,"Industrial Consumption","New Jersey","NJ",6742 +2003-11-01,"Industrial Consumption","Idaho","ID",2109 +2003-11-01,"Industrial Consumption","Illinois","IL",24087 +2003-11-01,"Industrial Consumption","North Carolina","NC",7175 +2003-11-01,"Industrial Consumption","Missouri","MO",5254 +2003-11-01,"Industrial Consumption","Oregon","OR",6130 +2003-11-01,"Industrial Consumption","Maine","ME",323 +2003-11-01,"Industrial Consumption","Rhode Island","RI",445 +2003-11-01,"Industrial Consumption","Louisiana","LA",64440 +2003-11-01,"Industrial Consumption","Colorado","CO",9958 +2003-11-01,"Industrial Consumption","New Mexico","NM",1880 +2003-11-01,"Industrial Consumption","Kansas","KS",7754 +2003-11-01,"Industrial Consumption","Utah","UT",2270 +2003-11-01,"Industrial Consumption","Iowa","IA",8640 +2003-11-01,"Industrial Consumption","Connecticut","CT",1813 +2003-11-01,"Industrial Consumption","Michigan","MI",16883 +2003-11-01,"Industrial Consumption","Kentucky","KY",8686 +2003-11-01,"Industrial Consumption","Montana","MT",2238 +2003-11-01,"Industrial Consumption","Maryland","MD",2102 +2003-11-01,"Industrial Consumption","Washington","WA",5904 +2003-11-01,"Industrial Consumption","New York","NY",6990 +2003-11-01,"Industrial Consumption","Vermont","VT",260 +2003-11-01,"Industrial Consumption","Minnesota","MN",9271 +2003-11-01,"Industrial Consumption","Pennsylvania","PA",15448 +2003-11-01,"Industrial Consumption","Arkansas","AR",9533 +2003-11-01,"Industrial Consumption","Virginia","VA",5457 +2003-11-01,"Industrial Consumption","Tennessee","TN",8620 +2003-11-01,"Industrial Consumption","District of Columbia","DC",0 +2003-11-01,"Industrial Consumption","Arizona","AZ",1214 +2003-11-01,"Industrial Consumption","U.S.","U.S.",596599 +2003-11-01,"Industrial Consumption","Nevada","NV",965 +2003-11-01,"Industrial Consumption","Wyoming","WY",3001 +2003-11-01,"Industrial Consumption","New Hampshire","NH",398 +2003-11-01,"Industrial Consumption","Florida","FL",5645 +2003-11-01,"Industrial Consumption","Indiana","IN",22780 +2003-11-01,"Industrial Consumption","Ohio","OH",24733 +2003-11-01,"Industrial Consumption","Nebraska","NE",2863 +2003-11-01,"Industrial Consumption","West Virginia","WV",3499 +2003-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91026 +2003-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",46462 +2003-11-01,"Residential Consumption","Georgia","GA",10196 +2003-11-01,"Residential Consumption","Massachusetts","MA",8796 +2003-11-01,"Residential Consumption","Kansas","KS",4710 +2003-11-01,"Residential Consumption","Arizona","AZ",2145 +2003-11-01,"Residential Consumption","Alabama","AL",2159 +2003-11-01,"Residential Consumption","New York","NY",28397 +2003-11-01,"Residential Consumption","Illinois","IL",44978 +2003-11-01,"Residential Consumption","Louisiana","LA",2147 +2003-11-01,"Residential Consumption","New Mexico","NM",2005 +2003-11-01,"Residential Consumption","Indiana","IN",13569 +2003-11-01,"Residential Consumption","Arkansas","AR",2065 +2003-11-01,"Residential Consumption","New Hampshire","NH",574 +2003-11-01,"Residential Consumption","Wyoming","WY",1410 +2003-11-01,"Residential Consumption","U.S.","U.S.",413663 +2003-11-01,"Residential Consumption","Hawaii","HI",41 +2003-11-01,"Residential Consumption","Tennessee","TN",3826 +2003-11-01,"Residential Consumption","Utah","UT",6914 +2003-11-01,"Residential Consumption","Nevada","NV",2816 +2003-11-01,"Residential Consumption","Wisconsin","WI",14281 +2003-11-01,"Residential Consumption","Vermont","VT",235 +2003-11-01,"Residential Consumption","Maryland","MD",7512 +2003-11-01,"Residential Consumption","Kentucky","KY",5216 +2003-11-01,"Residential Consumption","Alaska","AK",2322 +2003-11-01,"Residential Consumption","Oregon","OR",3179 +2003-11-01,"Residential Consumption","Virginia","VA",6856 +2003-11-01,"Residential Consumption","Nebraska","NE",3532 +2003-11-01,"Residential Consumption","Florida","FL",912 +2003-11-01,"Residential Consumption","North Dakota","ND",1522 +2003-11-01,"Residential Consumption","Idaho","ID",1926 +2003-11-01,"Residential Consumption","Montana","MT",2351 +2003-11-01,"Residential Consumption","Colorado","CO",16094 +2003-11-01,"Residential Consumption","Mississippi","MS",1216 +2003-11-01,"Residential Consumption","Pennsylvania","PA",18643 +2003-11-01,"Residential Consumption","West Virginia","WV",2379 +2003-11-01,"Residential Consumption","South Carolina","SC",1376 +2003-11-01,"Residential Consumption","Rhode Island","RI",1354 +2003-11-01,"Residential Consumption","North Carolina","NC",5223 +2003-11-01,"Residential Consumption","Iowa","IA",7105 +2003-11-01,"Residential Consumption","Connecticut","CT",3457 +2003-11-01,"Residential Consumption","Michigan","MI",31949 +2003-11-01,"Residential Consumption","South Dakota","SD",1464 +2003-11-01,"Residential Consumption","Maine","ME",105 +2003-11-01,"Residential Consumption","New Jersey","NJ",17750 +2003-11-01,"Residential Consumption","Washington","WA",7581 +2003-11-01,"Residential Consumption","Oklahoma","OK",3433 +2003-11-01,"Residential Consumption","Delaware","DE",759 +2003-11-01,"Residential Consumption","Texas","TX",13732 +2003-11-01,"Residential Consumption","Ohio","OH",25894 +2003-11-01,"Residential Consumption","Minnesota","MN",15373 +2003-11-01,"Residential Consumption","District of Columbia","DC",1295 +2003-11-01,"Residential Consumption","Missouri","MO",7469 +2003-11-01,"Residential Consumption","California","CA",43421 +2003-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",1502 +2003-12-01,"Commercial Consumption","Wisconsin","WI",11423 +2003-12-01,"Commercial Consumption","Texas","TX",21437 +2003-12-01,"Commercial Consumption","Idaho","ID",1795 +2003-12-01,"Commercial Consumption","Hawaii","HI",154 +2003-12-01,"Commercial Consumption","Arkansas","AR",3245 +2003-12-01,"Commercial Consumption","New York","NY",31509 +2003-12-01,"Commercial Consumption","Wyoming","WY",1418 +2003-12-01,"Commercial Consumption","Washington","WA",6638 +2003-12-01,"Commercial Consumption","Utah","UT",4807 +2003-12-01,"Commercial Consumption","Oklahoma","OK",4328 +2003-12-01,"Commercial Consumption","Pennsylvania","PA",19328 +2003-12-01,"Commercial Consumption","New Jersey","NJ",20151 +2003-12-01,"Commercial Consumption","Florida","FL",5337 +2003-12-01,"Commercial Consumption","Connecticut","CT",4718 +2003-12-01,"Commercial Consumption","Louisiana","LA",2530 +2003-12-01,"Commercial Consumption","District of Columbia","DC",2298 +2003-12-01,"Commercial Consumption","Oregon","OR",3508 +2003-12-01,"Commercial Consumption","Kentucky","KY",5553 +2003-12-01,"Commercial Consumption","Alaska","AK",2447 +2003-12-01,"Commercial Consumption","Michigan","MI",22627 +2003-12-01,"Commercial Consumption","South Carolina","SC",2640 +2003-12-01,"Commercial Consumption","New Mexico","NM",3041 +2003-12-01,"Commercial Consumption","Georgia","GA",5682 +2003-12-01,"Commercial Consumption","Mississippi","MS",2702 +2003-12-01,"Commercial Consumption","Delaware","DE",995 +2003-12-01,"Commercial Consumption","Arizona","AZ",3759 +2003-12-01,"Commercial Consumption","Maine","ME",689 +2003-12-01,"Commercial Consumption","Iowa","IA",6767 +2003-12-01,"Commercial Consumption","Nevada","NV",2967 +2003-12-01,"Commercial Consumption","Indiana","IN",12887 +2003-12-01,"Commercial Consumption","U.S.","U.S.",387647 +2003-12-01,"Commercial Consumption","Vermont","VT",337 +2003-12-01,"Commercial Consumption","Rhode Island","RI",1332 +2003-12-01,"Commercial Consumption","Illinois","IL",30005 +2003-12-01,"Commercial Consumption","West Virginia","WV",3321 +2003-12-01,"Commercial Consumption","Colorado","CO",9831 +2003-12-01,"Commercial Consumption","Massachusetts","MA",6116 +2003-12-01,"Commercial Consumption","South Dakota","SD",1485 +2003-12-01,"Commercial Consumption","New Hampshire","NH",1034 +2003-12-01,"Commercial Consumption","Montana","MT",2111 +2003-12-01,"Commercial Consumption","North Dakota","ND",1530 +2003-12-01,"Commercial Consumption","North Carolina","NC",6140 +2003-12-01,"Commercial Consumption","Minnesota","MN",14576 +2003-12-01,"Commercial Consumption","Virginia","VA",9288 +2003-12-01,"Commercial Consumption","Missouri","MO",7658 +2003-12-01,"Commercial Consumption","Maryland","MD",9586 +2003-12-01,"Commercial Consumption","Kansas","KS",5255 +2003-12-01,"Commercial Consumption","Ohio","OH",23670 +2003-12-01,"Commercial Consumption","California","CA",23860 +2003-12-01,"Commercial Consumption","Alabama","AL",2929 +2003-12-01,"Commercial Consumption","Nebraska","NE",3565 +2003-12-01,"Commercial Consumption","Tennessee","TN",6637 +2003-12-01,"Delivered to Consumers","Indiana","IN",64253 +2003-12-01,"Delivered to Consumers","Kansas","KS",25771 +2003-12-01,"Delivered to Consumers","Mississippi","MS",21577 +2003-12-01,"Delivered to Consumers","Texas","TX",293156 +2003-12-01,"Delivered to Consumers","Oregon","OR",21940 +2003-12-01,"Delivered to Consumers","Maine","ME",6036 +2003-12-01,"Delivered to Consumers","Washington","WA",27774 +2003-12-01,"Delivered to Consumers","Utah","UT",16533 +2003-12-01,"Delivered to Consumers","U.S.","U.S.",2108690 +2003-12-01,"Delivered to Consumers","New Mexico","NM",12722 +2003-12-01,"Delivered to Consumers","New York","NY",103175 +2003-12-01,"Delivered to Consumers","Alaska","AK",10141 +2003-12-01,"Delivered to Consumers","Kentucky","KY",27218 +2003-12-01,"Delivered to Consumers","Nevada","NV",18798 +2003-12-01,"Delivered to Consumers","New Hampshire","NH",4515 +2003-12-01,"Delivered to Consumers","Minnesota","MN",46332 +2003-12-01,"Delivered to Consumers","Wyoming","WY",7236 +2003-12-01,"Delivered to Consumers","West Virginia","WV",12413 +2003-12-01,"Delivered to Consumers","Wisconsin","WI",47677 +2003-12-01,"Delivered to Consumers","North Carolina","NC",25999 +2003-12-01,"Delivered to Consumers","New Jersey","NJ",71131 +2003-12-01,"Delivered to Consumers","Florida","FL",50525 +2003-12-01,"Delivered to Consumers","Hawaii","HI",239 +2003-12-01,"Delivered to Consumers","Oklahoma","OK",39627 +2003-12-01,"Delivered to Consumers","Missouri","MO",30354 +2003-12-01,"Delivered to Consumers","Georgia","GA",45508 +2003-12-01,"Delivered to Consumers","Maryland","MD",27049 +2003-12-01,"Delivered to Consumers","Pennsylvania","PA",78054 +2003-12-01,"Delivered to Consumers","Arizona","AZ",18043 +2003-12-01,"Delivered to Consumers","District of Columbia","DC",4848 +2003-12-01,"Delivered to Consumers","Ohio","OH",103846 +2003-12-01,"Delivered to Consumers","Iowa","IA",26599 +2003-12-01,"Delivered to Consumers","Virginia","VA",32921 +2003-12-01,"Delivered to Consumers","South Carolina","SC",14460 +2003-12-01,"Delivered to Consumers","North Dakota","ND",6879 +2003-12-01,"Delivered to Consumers","Rhode Island","RI",6670 +2003-12-01,"Delivered to Consumers","Montana","MT",7503 +2003-12-01,"Delivered to Consumers","Idaho","ID",7657 +2003-12-01,"Delivered to Consumers","Michigan","MI",99067 +2003-12-01,"Delivered to Consumers","Alabama","AL",29389 +2003-12-01,"Delivered to Consumers","Nebraska","NE",13011 +2003-12-01,"Delivered to Consumers","Louisiana","LA",94139 +2003-12-01,"Delivered to Consumers","Delaware","DE",4833 +2003-12-01,"Delivered to Consumers","Vermont","VT",1029 +2003-12-01,"Delivered to Consumers","Illinois","IL",127165 +2003-12-01,"Delivered to Consumers","South Dakota","SD",4455 +2003-12-01,"Delivered to Consumers","Tennessee","TN",27807 +2003-12-01,"Delivered to Consumers","Connecticut","CT",16442 +2003-12-01,"Delivered to Consumers","Arkansas","AR",20603 +2003-12-01,"Delivered to Consumers","Massachusetts","MA",39583 +2003-12-01,"Delivered to Consumers","Colorado","CO",48023 +2003-12-01,"Delivered to Consumers","California","CA",216415 +2003-12-01,"Electric Power Consumption","New Jersey","NJ",9346 +2003-12-01,"Electric Power Consumption","Massachusetts","MA",13008 +2003-12-01,"Electric Power Consumption","Mississippi","MS",6622 +2003-12-01,"Electric Power Consumption","Kentucky","KY",282 +2003-12-01,"Electric Power Consumption","Arizona","AZ",7253 +2003-12-01,"Electric Power Consumption","Colorado","CO",6380 +2003-12-01,"Electric Power Consumption","Arkansas","AR",2018 +2003-12-01,"Electric Power Consumption","South Carolina","SC",445 +2003-12-01,"Electric Power Consumption","Rhode Island","RI",2724 +2003-12-01,"Electric Power Consumption","Michigan","MI",7076 +2003-12-01,"Electric Power Consumption","West Virginia","WV",151 +2003-12-01,"Electric Power Consumption","Maryland","MD",624 +2003-12-01,"Electric Power Consumption","Texas","TX",89060 +2003-12-01,"Electric Power Consumption","Nevada","NV",9503 +2003-12-01,"Electric Power Consumption","Wyoming","WY",38 +2003-12-01,"Electric Power Consumption","Maine","ME",4885 +2003-12-01,"Electric Power Consumption","Delaware","DE",665 +2003-12-01,"Electric Power Consumption","Florida","FL",37759 +2003-12-01,"Electric Power Consumption","Virginia","VA",2014 +2003-12-01,"Electric Power Consumption","South Dakota","SD",54 +2003-12-01,"Electric Power Consumption","Nebraska","NE",92 +2003-12-01,"Electric Power Consumption","North Dakota","ND",0 +2003-12-01,"Electric Power Consumption","Indiana","IN",2576 +2003-12-01,"Electric Power Consumption","New Mexico","NM",2897 +2003-12-01,"Electric Power Consumption","New York","NY",14577 +2003-12-01,"Electric Power Consumption","Minnesota","MN",1269 +2003-12-01,"Electric Power Consumption","Pennsylvania","PA",2849 +2003-12-01,"Electric Power Consumption","Tennessee","TN",140 +2003-12-01,"Electric Power Consumption","Alaska","AK",3365 +2003-12-01,"Electric Power Consumption","Louisiana","LA",14484 +2003-12-01,"Electric Power Consumption","Idaho","ID",755 +2003-12-01,"Electric Power Consumption","Vermont","VT",3 +2003-12-01,"Electric Power Consumption","U.S.","U.S.",335810 +2003-12-01,"Electric Power Consumption","Hawaii","HI",0 +2003-12-01,"Electric Power Consumption","Ohio","OH",713 +2003-12-01,"Electric Power Consumption","Montana","MT",34 +2003-12-01,"Electric Power Consumption","Connecticut","CT",3666 +2003-12-01,"Electric Power Consumption","Georgia","GA",443 +2003-12-01,"Electric Power Consumption","California","CA",52244 +2003-12-01,"Electric Power Consumption","Alabama","AL",5791 +2003-12-01,"Electric Power Consumption","Washington","WA",4089 +2003-12-01,"Electric Power Consumption","Oklahoma","OK",11648 +2003-12-01,"Electric Power Consumption","Utah","UT",372 +2003-12-01,"Electric Power Consumption","Kansas","KS",789 +2003-12-01,"Electric Power Consumption","Wisconsin","WI",1809 +2003-12-01,"Electric Power Consumption","New Hampshire","NH",2072 +2003-12-01,"Electric Power Consumption","Oregon","OR",6392 +2003-12-01,"Electric Power Consumption","Illinois","IL",1309 +2003-12-01,"Electric Power Consumption","Iowa","IA",221 +2003-12-01,"Electric Power Consumption","North Carolina","NC",632 +2003-12-01,"Electric Power Consumption","Missouri","MO",671 +2003-12-01,"Industrial Consumption","Hawaii","HI",39 +2003-12-01,"Industrial Consumption","Arkansas","AR",10471 +2003-12-01,"Industrial Consumption","Wisconsin","WI",14141 +2003-12-01,"Industrial Consumption","Massachusetts","MA",4694 +2003-12-01,"Industrial Consumption","New York","NY",7373 +2003-12-01,"Industrial Consumption","Wyoming","WY",3939 +2003-12-01,"Industrial Consumption","Delaware","DE",1836 +2003-12-01,"Industrial Consumption","Alaska","AK",1900 +2003-12-01,"Industrial Consumption","North Dakota","ND",3642 +2003-12-01,"Industrial Consumption","Ohio","OH",29260 +2003-12-01,"Industrial Consumption","Arizona","AZ",1390 +2003-12-01,"Industrial Consumption","Tennessee","TN",9922 +2003-12-01,"Industrial Consumption","Indiana","IN",24621 +2003-12-01,"Industrial Consumption","Rhode Island","RI",354 +2003-12-01,"Industrial Consumption","Missouri","MO",6070 +2003-12-01,"Industrial Consumption","Utah","UT",2317 +2003-12-01,"Industrial Consumption","Oregon","OR",6387 +2003-12-01,"Industrial Consumption","California","CA",66550 +2003-12-01,"Industrial Consumption","South Carolina","SC",6934 +2003-12-01,"Industrial Consumption","Iowa","IA",8708 +2003-12-01,"Industrial Consumption","Michigan","MI",18873 +2003-12-01,"Industrial Consumption","Montana","MT",2294 +2003-12-01,"Industrial Consumption","Colorado","CO",10976 +2003-12-01,"Industrial Consumption","New Mexico","NM",2018 +2003-12-01,"Industrial Consumption","Pennsylvania","PA",18838 +2003-12-01,"Industrial Consumption","Nevada","NV",954 +2003-12-01,"Industrial Consumption","Maine","ME",291 +2003-12-01,"Industrial Consumption","West Virginia","WV",3977 +2003-12-01,"Industrial Consumption","Vermont","VT",294 +2003-12-01,"Industrial Consumption","Florida","FL",5805 +2003-12-01,"Industrial Consumption","Kentucky","KY",10655 +2003-12-01,"Industrial Consumption","North Carolina","NC",8542 +2003-12-01,"Industrial Consumption","Georgia","GA",14265 +2003-12-01,"Industrial Consumption","Maryland","MD",2505 +2003-12-01,"Industrial Consumption","Louisiana","LA",70346 +2003-12-01,"Industrial Consumption","U.S.","U.S.",645086 +2003-12-01,"Industrial Consumption","Nebraska","NE",2991 +2003-12-01,"Industrial Consumption","Idaho","ID",2113 +2003-12-01,"Industrial Consumption","Illinois","IL",26077 +2003-12-01,"Industrial Consumption","District of Columbia","DC",0 +2003-12-01,"Industrial Consumption","Washington","WA",6104 +2003-12-01,"Industrial Consumption","Kansas","KS",8580 +2003-12-01,"Industrial Consumption","Mississippi","MS",8618 +2003-12-01,"Industrial Consumption","Texas","TX",153171 +2003-12-01,"Industrial Consumption","New Jersey","NJ",7108 +2003-12-01,"Industrial Consumption","Oklahoma","OK",14423 +2003-12-01,"Industrial Consumption","South Dakota","SD",988 +2003-12-01,"Industrial Consumption","Alabama","AL",14381 +2003-12-01,"Industrial Consumption","Virginia","VA",6916 +2003-12-01,"Industrial Consumption","New Hampshire","NH",440 +2003-12-01,"Industrial Consumption","Minnesota","MN",9703 +2003-12-01,"Industrial Consumption","Connecticut","CT",2294 +2003-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94005 +2003-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",60963 +2003-12-01,"Residential Consumption","Oregon","OR",5653 +2003-12-01,"Residential Consumption","North Carolina","NC",10686 +2003-12-01,"Residential Consumption","Mississippi","MS",3635 +2003-12-01,"Residential Consumption","Iowa","IA",10902 +2003-12-01,"Residential Consumption","Virginia","VA",14703 +2003-12-01,"Residential Consumption","Nevada","NV",5374 +2003-12-01,"Residential Consumption","Rhode Island","RI",2261 +2003-12-01,"Residential Consumption","Louisiana","LA",6779 +2003-12-01,"Residential Consumption","Utah","UT",9037 +2003-12-01,"Residential Consumption","Georgia","GA",25117 +2003-12-01,"Residential Consumption","Pennsylvania","PA",37038 +2003-12-01,"Residential Consumption","New Jersey","NJ",34526 +2003-12-01,"Residential Consumption","New Hampshire","NH",970 +2003-12-01,"Residential Consumption","Missouri","MO",15955 +2003-12-01,"Residential Consumption","Texas","TX",29487 +2003-12-01,"Residential Consumption","Ohio","OH",50202 +2003-12-01,"Residential Consumption","Nebraska","NE",6362 +2003-12-01,"Residential Consumption","New Mexico","NM",4766 +2003-12-01,"Residential Consumption","Maine","ME",172 +2003-12-01,"Residential Consumption","Kentucky","KY",10727 +2003-12-01,"Residential Consumption","Alaska","AK",2430 +2003-12-01,"Residential Consumption","New York","NY",49716 +2003-12-01,"Residential Consumption","Hawaii","HI",46 +2003-12-01,"Residential Consumption","Michigan","MI",50491 +2003-12-01,"Residential Consumption","Maryland","MD",14333 +2003-12-01,"Residential Consumption","District of Columbia","DC",2551 +2003-12-01,"Residential Consumption","Oklahoma","OK",9227 +2003-12-01,"Residential Consumption","California","CA",73760 +2003-12-01,"Residential Consumption","U.S.","U.S.",738596 +2003-12-01,"Residential Consumption","Minnesota","MN",20784 +2003-12-01,"Residential Consumption","Massachusetts","MA",15766 +2003-12-01,"Residential Consumption","Washington","WA",10942 +2003-12-01,"Residential Consumption","Delaware","DE",1338 +2003-12-01,"Residential Consumption","West Virginia","WV",4964 +2003-12-01,"Residential Consumption","Illinois","IL",69774 +2003-12-01,"Residential Consumption","South Carolina","SC",4441 +2003-12-01,"Residential Consumption","Wisconsin","WI",20304 +2003-12-01,"Residential Consumption","Vermont","VT",394 +2003-12-01,"Residential Consumption","Montana","MT",3064 +2003-12-01,"Residential Consumption","Wyoming","WY",1840 +2003-12-01,"Residential Consumption","Connecticut","CT",5764 +2003-12-01,"Residential Consumption","Tennessee","TN",11108 +2003-12-01,"Residential Consumption","Florida","FL",1623 +2003-12-01,"Residential Consumption","Idaho","ID",2994 +2003-12-01,"Residential Consumption","Colorado","CO",20836 +2003-12-01,"Residential Consumption","Kansas","KS",11147 +2003-12-01,"Residential Consumption","Arizona","AZ",5642 +2003-12-01,"Residential Consumption","South Dakota","SD",1929 +2003-12-01,"Residential Consumption","Indiana","IN",24169 +2003-12-01,"Residential Consumption","North Dakota","ND",1708 +2003-12-01,"Residential Consumption","Arkansas","AR",4869 +2003-12-01,"Residential Consumption","Alabama","AL",6288 +2003-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",1552 +2004-01-01,"Commercial Consumption","Minnesota","MN",18700 +2004-01-01,"Commercial Consumption","Florida","FL",5983 +2004-01-01,"Commercial Consumption","Hawaii","HI",158 +2004-01-01,"Commercial Consumption","New York","NY",51591 +2004-01-01,"Commercial Consumption","Nebraska","NE",4411 +2004-01-01,"Commercial Consumption","Wyoming","WY",1647 +2004-01-01,"Commercial Consumption","Washington","WA",7672 +2004-01-01,"Commercial Consumption","Oklahoma","OK",6258 +2004-01-01,"Commercial Consumption","South Dakota","SD",1871 +2004-01-01,"Commercial Consumption","Maryland","MD",10264 +2004-01-01,"Commercial Consumption","Ohio","OH",33101 +2004-01-01,"Commercial Consumption","California","CA",25447 +2004-01-01,"Commercial Consumption","West Virginia","WV",4007 +2004-01-01,"Commercial Consumption","Virginia","VA",11078 +2004-01-01,"Commercial Consumption","Pennsylvania","PA",26034 +2004-01-01,"Commercial Consumption","Wisconsin","WI",16368 +2004-01-01,"Commercial Consumption","Iowa","IA",8559 +2004-01-01,"Commercial Consumption","Nevada","NV",3503 +2004-01-01,"Commercial Consumption","Louisiana","LA",3475 +2004-01-01,"Commercial Consumption","Illinois","IL",36022 +2004-01-01,"Commercial Consumption","New Hampshire","NH",1423 +2004-01-01,"Commercial Consumption","Montana","MT",2410 +2004-01-01,"Commercial Consumption","Kansas","KS",7357 +2004-01-01,"Commercial Consumption","Rhode Island","RI",1964 +2004-01-01,"Commercial Consumption","Alaska","AK",2914 +2004-01-01,"Commercial Consumption","Alabama","AL",4246 +2004-01-01,"Commercial Consumption","Delaware","DE",1582 +2004-01-01,"Commercial Consumption","Colorado","CO",9347 +2004-01-01,"Commercial Consumption","New Mexico","NM",3960 +2004-01-01,"Commercial Consumption","New Jersey","NJ",26574 +2004-01-01,"Commercial Consumption","North Dakota","ND",2026 +2004-01-01,"Commercial Consumption","Kentucky","KY",7333 +2004-01-01,"Commercial Consumption","Texas","TX",25594 +2004-01-01,"Commercial Consumption","Idaho","ID",2361 +2004-01-01,"Commercial Consumption","Arkansas","AR",4725 +2004-01-01,"Commercial Consumption","District of Columbia","DC",2798 +2004-01-01,"Commercial Consumption","North Carolina","NC",7463 +2004-01-01,"Commercial Consumption","Oregon","OR",4600 +2004-01-01,"Commercial Consumption","Missouri","MO",10783 +2004-01-01,"Commercial Consumption","Maine","ME",785 +2004-01-01,"Commercial Consumption","U.S.","U.S.",506719 +2004-01-01,"Commercial Consumption","Mississippi","MS",3370 +2004-01-01,"Commercial Consumption","Tennessee","TN",9265 +2004-01-01,"Commercial Consumption","Indiana","IN",15930 +2004-01-01,"Commercial Consumption","South Carolina","SC",3321 +2004-01-01,"Commercial Consumption","Utah","UT",6396 +2004-01-01,"Commercial Consumption","Massachusetts","MA",9040 +2004-01-01,"Commercial Consumption","Georgia","GA",10051 +2004-01-01,"Commercial Consumption","Vermont","VT",466 +2004-01-01,"Commercial Consumption","Connecticut","CT",6241 +2004-01-01,"Commercial Consumption","Arizona","AZ",4245 +2004-01-01,"Commercial Consumption","Michigan","MI",32001 +2004-01-01,"Delivered to Consumers","Indiana","IN",80680 +2004-01-01,"Delivered to Consumers","Vermont","VT",1154 +2004-01-01,"Delivered to Consumers","Illinois","IL",163310 +2004-01-01,"Delivered to Consumers","South Dakota","SD",5515 +2004-01-01,"Delivered to Consumers","Kansas","KS",30087 +2004-01-01,"Delivered to Consumers","Virginia","VA",40135 +2004-01-01,"Delivered to Consumers","Mississippi","MS",23187 +2004-01-01,"Delivered to Consumers","Missouri","MO",41477 +2004-01-01,"Delivered to Consumers","California","CA",225305 +2004-01-01,"Delivered to Consumers","New Jersey","NJ",87227 +2004-01-01,"Delivered to Consumers","Louisiana","LA",101114 +2004-01-01,"Delivered to Consumers","Minnesota","MN",58327 +2004-01-01,"Delivered to Consumers","West Virginia","WV",14651 +2004-01-01,"Delivered to Consumers","Rhode Island","RI",9122 +2004-01-01,"Delivered to Consumers","Delaware","DE",6827 +2004-01-01,"Delivered to Consumers","Montana","MT",8787 +2004-01-01,"Delivered to Consumers","Maryland","MD",33576 +2004-01-01,"Delivered to Consumers","Hawaii","HI",243 +2004-01-01,"Delivered to Consumers","Ohio","OH",137568 +2004-01-01,"Delivered to Consumers","Iowa","IA",32639 +2004-01-01,"Delivered to Consumers","Connecticut","CT",19725 +2004-01-01,"Delivered to Consumers","Nevada","NV",19886 +2004-01-01,"Delivered to Consumers","New Mexico","NM",14875 +2004-01-01,"Delivered to Consumers","Michigan","MI",137906 +2004-01-01,"Delivered to Consumers","Kentucky","KY",32640 +2004-01-01,"Delivered to Consumers","Arkansas","AR",24746 +2004-01-01,"Delivered to Consumers","North Carolina","NC",31785 +2004-01-01,"Delivered to Consumers","South Carolina","SC",19029 +2004-01-01,"Delivered to Consumers","Georgia","GA",52486 +2004-01-01,"Delivered to Consumers","Washington","WA",33107 +2004-01-01,"Delivered to Consumers","New Hampshire","NH",5204 +2004-01-01,"Delivered to Consumers","Utah","UT",21414 +2004-01-01,"Delivered to Consumers","U.S.","U.S.",2512844 +2004-01-01,"Delivered to Consumers","Oklahoma","OK",44286 +2004-01-01,"Delivered to Consumers","Nebraska","NE",16104 +2004-01-01,"Delivered to Consumers","Texas","TX",308056 +2004-01-01,"Delivered to Consumers","Arizona","AZ",25379 +2004-01-01,"Delivered to Consumers","Florida","FL",50877 +2004-01-01,"Delivered to Consumers","New York","NY",143310 +2004-01-01,"Delivered to Consumers","District of Columbia","DC",6285 +2004-01-01,"Delivered to Consumers","Wyoming","WY",7555 +2004-01-01,"Delivered to Consumers","Alaska","AK",12414 +2004-01-01,"Delivered to Consumers","Idaho","ID",10168 +2004-01-01,"Delivered to Consumers","Tennessee","TN",34375 +2004-01-01,"Delivered to Consumers","Alabama","AL",38499 +2004-01-01,"Delivered to Consumers","Wisconsin","WI",65038 +2004-01-01,"Delivered to Consumers","Pennsylvania","PA",100298 +2004-01-01,"Delivered to Consumers","Oregon","OR",26773 +2004-01-01,"Delivered to Consumers","Maine","ME",7095 +2004-01-01,"Delivered to Consumers","North Dakota","ND",5976 +2004-01-01,"Delivered to Consumers","Massachusetts","MA",47337 +2004-01-01,"Delivered to Consumers","Colorado","CO",47548 +2004-01-01,"Electric Power Consumption","Washington","WA",5717 +2004-01-01,"Electric Power Consumption","Oklahoma","OK",11057 +2004-01-01,"Electric Power Consumption","Utah","UT",313 +2004-01-01,"Electric Power Consumption","Illinois","IL",2156 +2004-01-01,"Electric Power Consumption","Kentucky","KY",406 +2004-01-01,"Electric Power Consumption","Hawaii","HI",0 +2004-01-01,"Electric Power Consumption","Idaho","ID",1363 +2004-01-01,"Electric Power Consumption","New York","NY",14733 +2004-01-01,"Electric Power Consumption","Texas","TX",92080 +2004-01-01,"Electric Power Consumption","Kansas","KS",406 +2004-01-01,"Electric Power Consumption","Pennsylvania","PA",4087 +2004-01-01,"Electric Power Consumption","Nevada","NV",8546 +2004-01-01,"Electric Power Consumption","U.S.","U.S.",361401 +2004-01-01,"Electric Power Consumption","Mississippi","MS",6495 +2004-01-01,"Electric Power Consumption","Delaware","DE",968 +2004-01-01,"Electric Power Consumption","Connecticut","CT",2696 +2004-01-01,"Electric Power Consumption","Florida","FL",36288 +2004-01-01,"Electric Power Consumption","California","CA",52770 +2004-01-01,"Electric Power Consumption","Virginia","VA",3391 +2004-01-01,"Electric Power Consumption","Minnesota","MN",2209 +2004-01-01,"Electric Power Consumption","North Carolina","NC",1675 +2004-01-01,"Electric Power Consumption","Maine","ME",4143 +2004-01-01,"Electric Power Consumption","North Dakota","ND",0 +2004-01-01,"Electric Power Consumption","Rhode Island","RI",3264 +2004-01-01,"Electric Power Consumption","Wisconsin","WI",3098 +2004-01-01,"Electric Power Consumption","Wyoming","WY",46 +2004-01-01,"Electric Power Consumption","South Dakota","SD",115 +2004-01-01,"Electric Power Consumption","Georgia","GA",1274 +2004-01-01,"Electric Power Consumption","New Jersey","NJ",6357 +2004-01-01,"Electric Power Consumption","Louisiana","LA",17038 +2004-01-01,"Electric Power Consumption","Arkansas","AR",2308 +2004-01-01,"Electric Power Consumption","Oregon","OR",8070 +2004-01-01,"Electric Power Consumption","Michigan","MI",11717 +2004-01-01,"Electric Power Consumption","West Virginia","WV",54 +2004-01-01,"Electric Power Consumption","Iowa","IA",388 +2004-01-01,"Electric Power Consumption","Vermont","VT",1 +2004-01-01,"Electric Power Consumption","Nebraska","NE",145 +2004-01-01,"Electric Power Consumption","Colorado","CO",6382 +2004-01-01,"Electric Power Consumption","South Carolina","SC",2187 +2004-01-01,"Electric Power Consumption","Missouri","MO",1676 +2004-01-01,"Electric Power Consumption","Montana","MT",16 +2004-01-01,"Electric Power Consumption","Alabama","AL",9038 +2004-01-01,"Electric Power Consumption","Alaska","AK",3694 +2004-01-01,"Electric Power Consumption","Tennessee","TN",564 +2004-01-01,"Electric Power Consumption","New Hampshire","NH",1775 +2004-01-01,"Electric Power Consumption","Maryland","MD",691 +2004-01-01,"Electric Power Consumption","Indiana","IN",3287 +2004-01-01,"Electric Power Consumption","Arizona","AZ",11922 +2004-01-01,"Electric Power Consumption","New Mexico","NM",2589 +2004-01-01,"Electric Power Consumption","Massachusetts","MA",11387 +2004-01-01,"Electric Power Consumption","Ohio","OH",822 +2004-01-01,"Industrial Consumption","Montana","MT",2487 +2004-01-01,"Industrial Consumption","Hawaii","HI",37 +2004-01-01,"Industrial Consumption","Oklahoma","OK",15167 +2004-01-01,"Industrial Consumption","Missouri","MO",7377 +2004-01-01,"Industrial Consumption","Louisiana","LA",71841 +2004-01-01,"Industrial Consumption","New York","NY",8193 +2004-01-01,"Industrial Consumption","Mississippi","MS",8198 +2004-01-01,"Industrial Consumption","Alabama","AL",15170 +2004-01-01,"Industrial Consumption","Vermont","VT",148 +2004-01-01,"Industrial Consumption","Tennessee","TN",9949 +2004-01-01,"Industrial Consumption","Idaho","ID",2435 +2004-01-01,"Industrial Consumption","Alaska","AK",2655 +2004-01-01,"Industrial Consumption","Arizona","AZ",2082 +2004-01-01,"Industrial Consumption","Texas","TX",152480 +2004-01-01,"Industrial Consumption","Connecticut","CT",2264 +2004-01-01,"Industrial Consumption","Michigan","MI",24023 +2004-01-01,"Industrial Consumption","Illinois","IL",29852 +2004-01-01,"Industrial Consumption","Delaware","DE",1938 +2004-01-01,"Industrial Consumption","Rhode Island","RI",649 +2004-01-01,"Industrial Consumption","Colorado","CO",11434 +2004-01-01,"Industrial Consumption","Utah","UT",2557 +2004-01-01,"Industrial Consumption","Nevada","NV",1065 +2004-01-01,"Industrial Consumption","Wyoming","WY",3709 +2004-01-01,"Industrial Consumption","North Dakota","ND",1680 +2004-01-01,"Industrial Consumption","Maryland","MD",2595 +2004-01-01,"Industrial Consumption","Massachusetts","MA",5947 +2004-01-01,"Industrial Consumption","South Dakota","SD",1023 +2004-01-01,"Industrial Consumption","New Mexico","NM",2198 +2004-01-01,"Industrial Consumption","Maine","ME",1931 +2004-01-01,"Industrial Consumption","Wisconsin","WI",16639 +2004-01-01,"Industrial Consumption","New Jersey","NJ",7355 +2004-01-01,"Industrial Consumption","New Hampshire","NH",701 +2004-01-01,"Industrial Consumption","U.S.","U.S.",680076 +2004-01-01,"Industrial Consumption","Oregon","OR",6544 +2004-01-01,"Industrial Consumption","California","CA",66480 +2004-01-01,"Industrial Consumption","Minnesota","MN",9787 +2004-01-01,"Industrial Consumption","Iowa","IA",9207 +2004-01-01,"Industrial Consumption","Washington","WA",6415 +2004-01-01,"Industrial Consumption","Nebraska","NE",3428 +2004-01-01,"Industrial Consumption","District of Columbia","DC",0 +2004-01-01,"Industrial Consumption","Ohio","OH",36641 +2004-01-01,"Industrial Consumption","Pennsylvania","PA",19918 +2004-01-01,"Industrial Consumption","South Carolina","SC",7000 +2004-01-01,"Industrial Consumption","Virginia","VA",6111 +2004-01-01,"Industrial Consumption","Kentucky","KY",11629 +2004-01-01,"Industrial Consumption","Indiana","IN",28155 +2004-01-01,"Industrial Consumption","North Carolina","NC",8627 +2004-01-01,"Industrial Consumption","Georgia","GA",14458 +2004-01-01,"Industrial Consumption","Kansas","KS",8778 +2004-01-01,"Industrial Consumption","Arkansas","AR",10719 +2004-01-01,"Industrial Consumption","West Virginia","WV",4412 +2004-01-01,"Industrial Consumption","Florida","FL",5990 +2004-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94386 +2004-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",68605 +2004-01-01,"Residential Consumption","Tennessee","TN",14597 +2004-01-01,"Residential Consumption","Utah","UT",12149 +2004-01-01,"Residential Consumption","Georgia","GA",26702 +2004-01-01,"Residential Consumption","Arizona","AZ",7129 +2004-01-01,"Residential Consumption","Wyoming","WY",2153 +2004-01-01,"Residential Consumption","Virginia","VA",19556 +2004-01-01,"Residential Consumption","Michigan","MI",70165 +2004-01-01,"Residential Consumption","South Dakota","SD",2506 +2004-01-01,"Residential Consumption","Pennsylvania","PA",50259 +2004-01-01,"Residential Consumption","New Mexico","NM",6127 +2004-01-01,"Residential Consumption","Delaware","DE",2339 +2004-01-01,"Residential Consumption","South Carolina","SC",6522 +2004-01-01,"Residential Consumption","Oregon","OR",7559 +2004-01-01,"Residential Consumption","Louisiana","LA",8760 +2004-01-01,"Residential Consumption","Connecticut","CT",8524 +2004-01-01,"Residential Consumption","Nevada","NV",6772 +2004-01-01,"Residential Consumption","Florida","FL",2617 +2004-01-01,"Residential Consumption","Massachusetts","MA",20963 +2004-01-01,"Residential Consumption","Idaho","ID",4010 +2004-01-01,"Residential Consumption","Minnesota","MN",27631 +2004-01-01,"Residential Consumption","District of Columbia","DC",3486 +2004-01-01,"Residential Consumption","West Virginia","WV",6178 +2004-01-01,"Residential Consumption","New York","NY",68793 +2004-01-01,"Residential Consumption","Texas","TX",37903 +2004-01-01,"Residential Consumption","Rhode Island","RI",3245 +2004-01-01,"Residential Consumption","Maryland","MD",20027 +2004-01-01,"Residential Consumption","Kentucky","KY",13274 +2004-01-01,"Residential Consumption","Colorado","CO",20385 +2004-01-01,"Residential Consumption","Kansas","KS",13546 +2004-01-01,"Residential Consumption","California","CA",80607 +2004-01-01,"Residential Consumption","Illinois","IL",95279 +2004-01-01,"Residential Consumption","Mississippi","MS",5124 +2004-01-01,"Residential Consumption","Iowa","IA",14485 +2004-01-01,"Residential Consumption","Hawaii","HI",48 +2004-01-01,"Residential Consumption","Wisconsin","WI",28933 +2004-01-01,"Residential Consumption","Maine","ME",236 +2004-01-01,"Residential Consumption","Indiana","IN",33308 +2004-01-01,"Residential Consumption","North Dakota","ND",2269 +2004-01-01,"Residential Consumption","New Jersey","NJ",46941 +2004-01-01,"Residential Consumption","Montana","MT",3874 +2004-01-01,"Residential Consumption","Washington","WA",13304 +2004-01-01,"Residential Consumption","Oklahoma","OK",11804 +2004-01-01,"Residential Consumption","Missouri","MO",21642 +2004-01-01,"Residential Consumption","U.S.","U.S.",962910 +2004-01-01,"Residential Consumption","Nebraska","NE",8120 +2004-01-01,"Residential Consumption","Ohio","OH",67004 +2004-01-01,"Residential Consumption","North Carolina","NC",14020 +2004-01-01,"Residential Consumption","Vermont","VT",539 +2004-01-01,"Residential Consumption","Arkansas","AR",6994 +2004-01-01,"Residential Consumption","New Hampshire","NH",1306 +2004-01-01,"Residential Consumption","Alabama","AL",10044 +2004-01-01,"Residential Consumption","Alaska","AK",3151 +2004-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",1737 +2004-02-01,"Commercial Consumption","Minnesota","MN",14800 +2004-02-01,"Commercial Consumption","Idaho","ID",2073 +2004-02-01,"Commercial Consumption","California","CA",25795 +2004-02-01,"Commercial Consumption","Louisiana","LA",3503 +2004-02-01,"Commercial Consumption","New Mexico","NM",4027 +2004-02-01,"Commercial Consumption","Oregon","OR",3912 +2004-02-01,"Commercial Consumption","Massachusetts","MA",9797 +2004-02-01,"Commercial Consumption","Maine","ME",628 +2004-02-01,"Commercial Consumption","Rhode Island","RI",2202 +2004-02-01,"Commercial Consumption","Arkansas","AR",4991 +2004-02-01,"Commercial Consumption","Nevada","NV",3236 +2004-02-01,"Commercial Consumption","Michigan","MI",30391 +2004-02-01,"Commercial Consumption","Indiana","IN",15104 +2004-02-01,"Commercial Consumption","Washington","WA",6233 +2004-02-01,"Commercial Consumption","Kentucky","KY",6286 +2004-02-01,"Commercial Consumption","Texas","TX",26290 +2004-02-01,"Commercial Consumption","New York","NY",51228 +2004-02-01,"Commercial Consumption","Wyoming","WY",1444 +2004-02-01,"Commercial Consumption","North Dakota","ND",1474 +2004-02-01,"Commercial Consumption","Utah","UT",5407 +2004-02-01,"Commercial Consumption","Oklahoma","OK",7081 +2004-02-01,"Commercial Consumption","U.S.","U.S.",477627 +2004-02-01,"Commercial Consumption","Iowa","IA",8295 +2004-02-01,"Commercial Consumption","Nebraska","NE",5104 +2004-02-01,"Commercial Consumption","South Carolina","SC",3502 +2004-02-01,"Commercial Consumption","Pennsylvania","PA",23790 +2004-02-01,"Commercial Consumption","Wisconsin","WI",12287 +2004-02-01,"Commercial Consumption","South Dakota","SD",1653 +2004-02-01,"Commercial Consumption","New Jersey","NJ",25951 +2004-02-01,"Commercial Consumption","Alabama","AL",4184 +2004-02-01,"Commercial Consumption","Illinois","IL",32461 +2004-02-01,"Commercial Consumption","Florida","FL",5705 +2004-02-01,"Commercial Consumption","District of Columbia","DC",2272 +2004-02-01,"Commercial Consumption","North Carolina","NC",7438 +2004-02-01,"Commercial Consumption","Maryland","MD",9529 +2004-02-01,"Commercial Consumption","Kansas","KS",7364 +2004-02-01,"Commercial Consumption","Georgia","GA",9202 +2004-02-01,"Commercial Consumption","Vermont","VT",491 +2004-02-01,"Commercial Consumption","Ohio","OH",28402 +2004-02-01,"Commercial Consumption","Connecticut","CT",5654 +2004-02-01,"Commercial Consumption","Arizona","AZ",4202 +2004-02-01,"Commercial Consumption","Tennessee","TN",9384 +2004-02-01,"Commercial Consumption","West Virginia","WV",3996 +2004-02-01,"Commercial Consumption","Colorado","CO",9735 +2004-02-01,"Commercial Consumption","Virginia","VA",9307 +2004-02-01,"Commercial Consumption","Missouri","MO",11541 +2004-02-01,"Commercial Consumption","New Hampshire","NH",1585 +2004-02-01,"Commercial Consumption","Montana","MT",1883 +2004-02-01,"Commercial Consumption","Hawaii","HI",147 +2004-02-01,"Commercial Consumption","Alaska","AK",2081 +2004-02-01,"Commercial Consumption","Mississippi","MS",3249 +2004-02-01,"Commercial Consumption","Delaware","DE",1330 +2004-02-01,"Delivered to Consumers","Utah","UT",17627 +2004-02-01,"Delivered to Consumers","New Mexico","NM",14724 +2004-02-01,"Delivered to Consumers","Illinois","IL",135906 +2004-02-01,"Delivered to Consumers","Alaska","AK",10221 +2004-02-01,"Delivered to Consumers","Tennessee","TN",33788 +2004-02-01,"Delivered to Consumers","Iowa","IA",30955 +2004-02-01,"Delivered to Consumers","Wisconsin","WI",48498 +2004-02-01,"Delivered to Consumers","North Carolina","NC",30416 +2004-02-01,"Delivered to Consumers","South Carolina","SC",19575 +2004-02-01,"Delivered to Consumers","Maine","ME",8049 +2004-02-01,"Delivered to Consumers","Louisiana","LA",98005 +2004-02-01,"Delivered to Consumers","Arizona","AZ",30143 +2004-02-01,"Delivered to Consumers","New Hampshire","NH",7595 +2004-02-01,"Delivered to Consumers","Florida","FL",49866 +2004-02-01,"Delivered to Consumers","Indiana","IN",70341 +2004-02-01,"Delivered to Consumers","West Virginia","WV",15031 +2004-02-01,"Delivered to Consumers","Vermont","VT",1381 +2004-02-01,"Delivered to Consumers","Michigan","MI",127671 +2004-02-01,"Delivered to Consumers","Alabama","AL",36343 +2004-02-01,"Delivered to Consumers","Mississippi","MS",23828 +2004-02-01,"Delivered to Consumers","Missouri","MO",43268 +2004-02-01,"Delivered to Consumers","Delaware","DE",5602 +2004-02-01,"Delivered to Consumers","Idaho","ID",9168 +2004-02-01,"Delivered to Consumers","Kentucky","KY",27566 +2004-02-01,"Delivered to Consumers","Nebraska","NE",16445 +2004-02-01,"Delivered to Consumers","Nevada","NV",20030 +2004-02-01,"Delivered to Consumers","North Dakota","ND",4565 +2004-02-01,"Delivered to Consumers","New York","NY",146400 +2004-02-01,"Delivered to Consumers","Montana","MT",6926 +2004-02-01,"Delivered to Consumers","Massachusetts","MA",47355 +2004-02-01,"Delivered to Consumers","California","CA",217935 +2004-02-01,"Delivered to Consumers","Oregon","OR",24112 +2004-02-01,"Delivered to Consumers","Maryland","MD",27062 +2004-02-01,"Delivered to Consumers","Hawaii","HI",230 +2004-02-01,"Delivered to Consumers","Oklahoma","OK",47720 +2004-02-01,"Delivered to Consumers","Arkansas","AR",25909 +2004-02-01,"Delivered to Consumers","Texas","TX",300833 +2004-02-01,"Delivered to Consumers","Minnesota","MN",45894 +2004-02-01,"Delivered to Consumers","U.S.","U.S.",2358946 +2004-02-01,"Delivered to Consumers","Rhode Island","RI",9552 +2004-02-01,"Delivered to Consumers","Ohio","OH",117976 +2004-02-01,"Delivered to Consumers","Connecticut","CT",19986 +2004-02-01,"Delivered to Consumers","Pennsylvania","PA",95715 +2004-02-01,"Delivered to Consumers","Colorado","CO",44859 +2004-02-01,"Delivered to Consumers","New Jersey","NJ",84410 +2004-02-01,"Delivered to Consumers","Georgia","GA",48806 +2004-02-01,"Delivered to Consumers","Washington","WA",29246 +2004-02-01,"Delivered to Consumers","Wyoming","WY",7180 +2004-02-01,"Delivered to Consumers","South Dakota","SD",4940 +2004-02-01,"Delivered to Consumers","Kansas","KS",29036 +2004-02-01,"Delivered to Consumers","Virginia","VA",33982 +2004-02-01,"Delivered to Consumers","District of Columbia","DC",4650 +2004-02-01,"Electric Power Consumption","West Virginia","WV",76 +2004-02-01,"Electric Power Consumption","Iowa","IA",177 +2004-02-01,"Electric Power Consumption","New Hampshire","NH",3764 +2004-02-01,"Electric Power Consumption","Colorado","CO",5235 +2004-02-01,"Electric Power Consumption","Arkansas","AR",3105 +2004-02-01,"Electric Power Consumption","Nevada","NV",9853 +2004-02-01,"Electric Power Consumption","Vermont","VT",3 +2004-02-01,"Electric Power Consumption","Mississippi","MS",7503 +2004-02-01,"Electric Power Consumption","Georgia","GA",1704 +2004-02-01,"Electric Power Consumption","Virginia","VA",4221 +2004-02-01,"Electric Power Consumption","Idaho","ID",1334 +2004-02-01,"Electric Power Consumption","Utah","UT",333 +2004-02-01,"Electric Power Consumption","Wisconsin","WI",1567 +2004-02-01,"Electric Power Consumption","U.S.","U.S.",373466 +2004-02-01,"Electric Power Consumption","Hawaii","HI",0 +2004-02-01,"Electric Power Consumption","North Dakota","ND",0 +2004-02-01,"Electric Power Consumption","Maryland","MD",523 +2004-02-01,"Electric Power Consumption","Florida","FL",36040 +2004-02-01,"Electric Power Consumption","Alaska","AK",3316 +2004-02-01,"Electric Power Consumption","Washington","WA",6676 +2004-02-01,"Electric Power Consumption","Illinois","IL",2007 +2004-02-01,"Electric Power Consumption","Kansas","KS",361 +2004-02-01,"Electric Power Consumption","Pennsylvania","PA",6499 +2004-02-01,"Electric Power Consumption","South Dakota","SD",24 +2004-02-01,"Electric Power Consumption","Nebraska","NE",159 +2004-02-01,"Electric Power Consumption","Ohio","OH",888 +2004-02-01,"Electric Power Consumption","New Mexico","NM",2356 +2004-02-01,"Electric Power Consumption","New Jersey","NJ",7934 +2004-02-01,"Electric Power Consumption","Oklahoma","OK",13396 +2004-02-01,"Electric Power Consumption","Massachusetts","MA",10037 +2004-02-01,"Electric Power Consumption","Missouri","MO",1666 +2004-02-01,"Electric Power Consumption","California","CA",53789 +2004-02-01,"Electric Power Consumption","New York","NY",15958 +2004-02-01,"Electric Power Consumption","Rhode Island","RI",2652 +2004-02-01,"Electric Power Consumption","Michigan","MI",10675 +2004-02-01,"Electric Power Consumption","Tennessee","TN",139 +2004-02-01,"Electric Power Consumption","North Carolina","NC",892 +2004-02-01,"Electric Power Consumption","Maine","ME",5500 +2004-02-01,"Electric Power Consumption","Delaware","DE",796 +2004-02-01,"Electric Power Consumption","Arizona","AZ",16931 +2004-02-01,"Electric Power Consumption","Louisiana","LA",17344 +2004-02-01,"Electric Power Consumption","Minnesota","MN",1317 +2004-02-01,"Electric Power Consumption","Wyoming","WY",48 +2004-02-01,"Electric Power Consumption","Kentucky","KY",277 +2004-02-01,"Electric Power Consumption","Indiana","IN",4188 +2004-02-01,"Electric Power Consumption","Alabama","AL",8270 +2004-02-01,"Electric Power Consumption","South Carolina","SC",2171 +2004-02-01,"Electric Power Consumption","Texas","TX",90099 +2004-02-01,"Electric Power Consumption","Oregon","OR",7672 +2004-02-01,"Electric Power Consumption","Montana","MT",16 +2004-02-01,"Electric Power Consumption","Connecticut","CT",3977 +2004-02-01,"Industrial Consumption","Maryland","MD",2075 +2004-02-01,"Industrial Consumption","Arkansas","AR",10376 +2004-02-01,"Industrial Consumption","Texas","TX",145621 +2004-02-01,"Industrial Consumption","South Carolina","SC",6923 +2004-02-01,"Industrial Consumption","Wyoming","WY",3871 +2004-02-01,"Industrial Consumption","Indiana","IN",25447 +2004-02-01,"Industrial Consumption","Alaska","AK",2775 +2004-02-01,"Industrial Consumption","U.S.","U.S.",648777 +2004-02-01,"Industrial Consumption","Pennsylvania","PA",18492 +2004-02-01,"Industrial Consumption","Delaware","DE",1515 +2004-02-01,"Industrial Consumption","Colorado","CO",10376 +2004-02-01,"Industrial Consumption","South Dakota","SD",1049 +2004-02-01,"Industrial Consumption","Ohio","OH",30495 +2004-02-01,"Industrial Consumption","Kansas","KS",7435 +2004-02-01,"Industrial Consumption","Nevada","NV",1034 +2004-02-01,"Industrial Consumption","Alabama","AL",14489 +2004-02-01,"Industrial Consumption","Vermont","VT",307 +2004-02-01,"Industrial Consumption","Wisconsin","WI",14386 +2004-02-01,"Industrial Consumption","New Jersey","NJ",7436 +2004-02-01,"Industrial Consumption","Minnesota","MN",8941 +2004-02-01,"Industrial Consumption","Idaho","ID",2255 +2004-02-01,"Industrial Consumption","Michigan","MI",23433 +2004-02-01,"Industrial Consumption","Rhode Island","RI",651 +2004-02-01,"Industrial Consumption","Missouri","MO",6846 +2004-02-01,"Industrial Consumption","New Mexico","NM",2142 +2004-02-01,"Industrial Consumption","Connecticut","CT",2166 +2004-02-01,"Industrial Consumption","North Carolina","NC",8576 +2004-02-01,"Industrial Consumption","Georgia","GA",14427 +2004-02-01,"Industrial Consumption","District of Columbia","DC",0 +2004-02-01,"Industrial Consumption","Washington","WA",5974 +2004-02-01,"Industrial Consumption","West Virginia","WV",4390 +2004-02-01,"Industrial Consumption","Tennessee","TN",9441 +2004-02-01,"Industrial Consumption","Montana","MT",2030 +2004-02-01,"Industrial Consumption","Massachusetts","MA",6303 +2004-02-01,"Industrial Consumption","Louisiana","LA",68808 +2004-02-01,"Industrial Consumption","Arizona","AZ",2108 +2004-02-01,"Industrial Consumption","Utah","UT",2405 +2004-02-01,"Industrial Consumption","Mississippi","MS",8208 +2004-02-01,"Industrial Consumption","Iowa","IA",9312 +2004-02-01,"Industrial Consumption","Florida","FL",5630 +2004-02-01,"Industrial Consumption","Kentucky","KY",10760 +2004-02-01,"Industrial Consumption","North Dakota","ND",1380 +2004-02-01,"Industrial Consumption","Oregon","OR",6319 +2004-02-01,"Industrial Consumption","Maine","ME",1739 +2004-02-01,"Industrial Consumption","Nebraska","NE",3291 +2004-02-01,"Industrial Consumption","Virginia","VA",5660 +2004-02-01,"Industrial Consumption","New Hampshire","NH",865 +2004-02-01,"Industrial Consumption","Illinois","IL",27792 +2004-02-01,"Industrial Consumption","Hawaii","HI",36 +2004-02-01,"Industrial Consumption","Oklahoma","OK",14324 +2004-02-01,"Industrial Consumption","New York","NY",8871 +2004-02-01,"Industrial Consumption","California","CA",69591 +2004-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87746 +2004-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",64405 +2004-02-01,"Residential Consumption","Iowa","IA",13171 +2004-02-01,"Residential Consumption","Michigan","MI",63171 +2004-02-01,"Residential Consumption","Maryland","MD",14935 +2004-02-01,"Residential Consumption","Montana","MT",2996 +2004-02-01,"Residential Consumption","Kentucky","KY",10242 +2004-02-01,"Residential Consumption","Alabama","AL",9400 +2004-02-01,"Residential Consumption","North Carolina","NC",13510 +2004-02-01,"Residential Consumption","Louisiana","LA",8350 +2004-02-01,"Residential Consumption","Nebraska","NE",7891 +2004-02-01,"Residential Consumption","District of Columbia","DC",2378 +2004-02-01,"Residential Consumption","Arkansas","AR",7438 +2004-02-01,"Residential Consumption","Kansas","KS",13875 +2004-02-01,"Residential Consumption","Washington","WA",10362 +2004-02-01,"Residential Consumption","Massachusetts","MA",21217 +2004-02-01,"Residential Consumption","New Hampshire","NH",1381 +2004-02-01,"Residential Consumption","Wyoming","WY",1817 +2004-02-01,"Residential Consumption","Hawaii","HI",46 +2004-02-01,"Residential Consumption","Connecticut","CT",8190 +2004-02-01,"Residential Consumption","Tennessee","TN",14823 +2004-02-01,"Residential Consumption","Georgia","GA",23473 +2004-02-01,"Residential Consumption","New York","NY",70343 +2004-02-01,"Residential Consumption","South Carolina","SC",6979 +2004-02-01,"Residential Consumption","Mississippi","MS",4868 +2004-02-01,"Residential Consumption","Nevada","NV",5908 +2004-02-01,"Residential Consumption","Minnesota","MN",20837 +2004-02-01,"Residential Consumption","Pennsylvania","PA",46933 +2004-02-01,"Residential Consumption","Maine","ME",181 +2004-02-01,"Residential Consumption","Missouri","MO",23215 +2004-02-01,"Residential Consumption","Delaware","DE",1962 +2004-02-01,"Residential Consumption","Arizona","AZ",6902 +2004-02-01,"Residential Consumption","Alaska","AK",2049 +2004-02-01,"Residential Consumption","U.S.","U.S.",857450 +2004-02-01,"Residential Consumption","Illinois","IL",73647 +2004-02-01,"Residential Consumption","Texas","TX",38823 +2004-02-01,"Residential Consumption","Oregon","OR",6208 +2004-02-01,"Residential Consumption","Vermont","VT",581 +2004-02-01,"Residential Consumption","Virginia","VA",14794 +2004-02-01,"Residential Consumption","New Mexico","NM",6200 +2004-02-01,"Residential Consumption","Florida","FL",2491 +2004-02-01,"Residential Consumption","Oklahoma","OK",12919 +2004-02-01,"Residential Consumption","Ohio","OH",58191 +2004-02-01,"Residential Consumption","Wisconsin","WI",20258 +2004-02-01,"Residential Consumption","South Dakota","SD",2214 +2004-02-01,"Residential Consumption","California","CA",68760 +2004-02-01,"Residential Consumption","Rhode Island","RI",4047 +2004-02-01,"Residential Consumption","Utah","UT",9483 +2004-02-01,"Residential Consumption","Indiana","IN",25602 +2004-02-01,"Residential Consumption","North Dakota","ND",1709 +2004-02-01,"Residential Consumption","Idaho","ID",3506 +2004-02-01,"Residential Consumption","New Jersey","NJ",43089 +2004-02-01,"Residential Consumption","Colorado","CO",19514 +2004-02-01,"Residential Consumption","West Virginia","WV",6569 +2004-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1625 +2004-03-01,"Commercial Consumption","Wyoming","WY",1101 +2004-03-01,"Commercial Consumption","North Carolina","NC",5282 +2004-03-01,"Commercial Consumption","Ohio","OH",22171 +2004-03-01,"Commercial Consumption","Tennessee","TN",6872 +2004-03-01,"Commercial Consumption","Indiana","IN",9038 +2004-03-01,"Commercial Consumption","New Mexico","NM",3524 +2004-03-01,"Commercial Consumption","Massachusetts","MA",7000 +2004-03-01,"Commercial Consumption","New Jersey","NJ",19547 +2004-03-01,"Commercial Consumption","New Hampshire","NH",1213 +2004-03-01,"Commercial Consumption","Iowa","IA",5533 +2004-03-01,"Commercial Consumption","Nevada","NV",2560 +2004-03-01,"Commercial Consumption","Michigan","MI",21629 +2004-03-01,"Commercial Consumption","Louisiana","LA",2932 +2004-03-01,"Commercial Consumption","West Virginia","WV",3036 +2004-03-01,"Commercial Consumption","Washington","WA",5408 +2004-03-01,"Commercial Consumption","South Dakota","SD",1129 +2004-03-01,"Commercial Consumption","Maryland","MD",7728 +2004-03-01,"Commercial Consumption","Vermont","VT",355 +2004-03-01,"Commercial Consumption","Alaska","AK",2091 +2004-03-01,"Commercial Consumption","Connecticut","CT",4231 +2004-03-01,"Commercial Consumption","California","CA",22236 +2004-03-01,"Commercial Consumption","Mississippi","MS",2457 +2004-03-01,"Commercial Consumption","Idaho","ID",1485 +2004-03-01,"Commercial Consumption","Alabama","AL",3218 +2004-03-01,"Commercial Consumption","New York","NY",40002 +2004-03-01,"Commercial Consumption","North Dakota","ND",1182 +2004-03-01,"Commercial Consumption","Oregon","OR",2957 +2004-03-01,"Commercial Consumption","Wisconsin","WI",9683 +2004-03-01,"Commercial Consumption","Montana","MT",1454 +2004-03-01,"Commercial Consumption","Kentucky","KY",4160 +2004-03-01,"Commercial Consumption","Texas","TX",19122 +2004-03-01,"Commercial Consumption","Arkansas","AR",3729 +2004-03-01,"Commercial Consumption","South Carolina","SC",2549 +2004-03-01,"Commercial Consumption","Colorado","CO",5996 +2004-03-01,"Commercial Consumption","Oklahoma","OK",5392 +2004-03-01,"Commercial Consumption","Missouri","MO",8085 +2004-03-01,"Commercial Consumption","U.S.","U.S.",357088 +2004-03-01,"Commercial Consumption","Kansas","KS",4864 +2004-03-01,"Commercial Consumption","Georgia","GA",4971 +2004-03-01,"Commercial Consumption","Hawaii","HI",152 +2004-03-01,"Commercial Consumption","Virginia","VA",7114 +2004-03-01,"Commercial Consumption","Nebraska","NE",3888 +2004-03-01,"Commercial Consumption","Minnesota","MN",11455 +2004-03-01,"Commercial Consumption","Utah","UT",2934 +2004-03-01,"Commercial Consumption","Pennsylvania","PA",18174 +2004-03-01,"Commercial Consumption","Maine","ME",564 +2004-03-01,"Commercial Consumption","Florida","FL",5514 +2004-03-01,"Commercial Consumption","Rhode Island","RI",1510 +2004-03-01,"Commercial Consumption","Delaware","DE",966 +2004-03-01,"Commercial Consumption","Arizona","AZ",3310 +2004-03-01,"Commercial Consumption","Illinois","IL",23798 +2004-03-01,"Commercial Consumption","District of Columbia","DC",1785 +2004-03-01,"Delivered to Consumers","U.S.","U.S.",1952607 +2004-03-01,"Delivered to Consumers","South Dakota","SD",3584 +2004-03-01,"Delivered to Consumers","Montana","MT",5508 +2004-03-01,"Delivered to Consumers","Iowa","IA",23081 +2004-03-01,"Delivered to Consumers","Pennsylvania","PA",73189 +2004-03-01,"Delivered to Consumers","Arizona","AZ",26925 +2004-03-01,"Delivered to Consumers","Florida","FL",51687 +2004-03-01,"Delivered to Consumers","Illinois","IL",102899 +2004-03-01,"Delivered to Consumers","Alaska","AK",10996 +2004-03-01,"Delivered to Consumers","Idaho","ID",7032 +2004-03-01,"Delivered to Consumers","Missouri","MO",30344 +2004-03-01,"Delivered to Consumers","Nevada","NV",14760 +2004-03-01,"Delivered to Consumers","North Dakota","ND",4243 +2004-03-01,"Delivered to Consumers","District of Columbia","DC",3323 +2004-03-01,"Delivered to Consumers","Utah","UT",10247 +2004-03-01,"Delivered to Consumers","California","CA",193344 +2004-03-01,"Delivered to Consumers","Washington","WA",23696 +2004-03-01,"Delivered to Consumers","Wyoming","WY",6077 +2004-03-01,"Delivered to Consumers","West Virginia","WV",11525 +2004-03-01,"Delivered to Consumers","Oklahoma","OK",40198 +2004-03-01,"Delivered to Consumers","Wisconsin","WI",41599 +2004-03-01,"Delivered to Consumers","Virginia","VA",24192 +2004-03-01,"Delivered to Consumers","North Carolina","NC",22379 +2004-03-01,"Delivered to Consumers","South Carolina","SC",14664 +2004-03-01,"Delivered to Consumers","Louisiana","LA",96851 +2004-03-01,"Delivered to Consumers","Kentucky","KY",21630 +2004-03-01,"Delivered to Consumers","Nebraska","NE",12058 +2004-03-01,"Delivered to Consumers","Oregon","OR",19699 +2004-03-01,"Delivered to Consumers","Maine","ME",7635 +2004-03-01,"Delivered to Consumers","Georgia","GA",31529 +2004-03-01,"Delivered to Consumers","Indiana","IN",53056 +2004-03-01,"Delivered to Consumers","Maryland","MD",20558 +2004-03-01,"Delivered to Consumers","Kansas","KS",21955 +2004-03-01,"Delivered to Consumers","Ohio","OH",93845 +2004-03-01,"Delivered to Consumers","Mississippi","MS",21311 +2004-03-01,"Delivered to Consumers","Texas","TX",284762 +2004-03-01,"Delivered to Consumers","New Mexico","NM",12615 +2004-03-01,"Delivered to Consumers","Vermont","VT",1072 +2004-03-01,"Delivered to Consumers","New York","NY",118918 +2004-03-01,"Delivered to Consumers","Arkansas","AR",21663 +2004-03-01,"Delivered to Consumers","Massachusetts","MA",40517 +2004-03-01,"Delivered to Consumers","New Hampshire","NH",6870 +2004-03-01,"Delivered to Consumers","Minnesota","MN",36866 +2004-03-01,"Delivered to Consumers","Delaware","DE",4600 +2004-03-01,"Delivered to Consumers","Rhode Island","RI",6607 +2004-03-01,"Delivered to Consumers","Hawaii","HI",239 +2004-03-01,"Delivered to Consumers","Tennessee","TN",24928 +2004-03-01,"Delivered to Consumers","Michigan","MI",102442 +2004-03-01,"Delivered to Consumers","Connecticut","CT",15986 +2004-03-01,"Delivered to Consumers","Alabama","AL",31829 +2004-03-01,"Delivered to Consumers","Colorado","CO",30853 +2004-03-01,"Delivered to Consumers","New Jersey","NJ",64483 +2004-03-01,"Electric Power Consumption","Virginia","VA",1468 +2004-03-01,"Electric Power Consumption","New Mexico","NM",1998 +2004-03-01,"Electric Power Consumption","Minnesota","MN",987 +2004-03-01,"Electric Power Consumption","Illinois","IL",1760 +2004-03-01,"Electric Power Consumption","New Hampshire","NH",4070 +2004-03-01,"Electric Power Consumption","Delaware","DE",838 +2004-03-01,"Electric Power Consumption","Colorado","CO",4767 +2004-03-01,"Electric Power Consumption","Arkansas","AR",2888 +2004-03-01,"Electric Power Consumption","South Carolina","SC",595 +2004-03-01,"Electric Power Consumption","Utah","UT",254 +2004-03-01,"Electric Power Consumption","North Dakota","ND",0 +2004-03-01,"Electric Power Consumption","Alaska","AK",2860 +2004-03-01,"Electric Power Consumption","Idaho","ID",947 +2004-03-01,"Electric Power Consumption","Rhode Island","RI",1896 +2004-03-01,"Electric Power Consumption","Oregon","OR",5888 +2004-03-01,"Electric Power Consumption","Michigan","MI",10456 +2004-03-01,"Electric Power Consumption","U.S.","U.S.",375203 +2004-03-01,"Electric Power Consumption","North Carolina","NC",115 +2004-03-01,"Electric Power Consumption","Arizona","AZ",17044 +2004-03-01,"Electric Power Consumption","Wyoming","WY",53 +2004-03-01,"Electric Power Consumption","Maine","ME",5324 +2004-03-01,"Electric Power Consumption","Montana","MT",16 +2004-03-01,"Electric Power Consumption","Maryland","MD",490 +2004-03-01,"Electric Power Consumption","Texas","TX",98499 +2004-03-01,"Electric Power Consumption","West Virginia","WV",25 +2004-03-01,"Electric Power Consumption","Pennsylvania","PA",3712 +2004-03-01,"Electric Power Consumption","Missouri","MO",936 +2004-03-01,"Electric Power Consumption","Ohio","OH",881 +2004-03-01,"Electric Power Consumption","Florida","FL",38091 +2004-03-01,"Electric Power Consumption","California","CA",60295 +2004-03-01,"Electric Power Consumption","Washington","WA",4023 +2004-03-01,"Electric Power Consumption","Massachusetts","MA",13270 +2004-03-01,"Electric Power Consumption","Kansas","KS",533 +2004-03-01,"Electric Power Consumption","Wisconsin","WI",2201 +2004-03-01,"Electric Power Consumption","Iowa","IA",332 +2004-03-01,"Electric Power Consumption","Vermont","VT",1 +2004-03-01,"Electric Power Consumption","Tennessee","TN",40 +2004-03-01,"Electric Power Consumption","South Dakota","SD",31 +2004-03-01,"Electric Power Consumption","Kentucky","KY",311 +2004-03-01,"Electric Power Consumption","New York","NY",16095 +2004-03-01,"Electric Power Consumption","Nevada","NV",7203 +2004-03-01,"Electric Power Consumption","Mississippi","MS",6484 +2004-03-01,"Electric Power Consumption","Hawaii","HI",0 +2004-03-01,"Electric Power Consumption","Indiana","IN",1799 +2004-03-01,"Electric Power Consumption","Georgia","GA",2152 +2004-03-01,"Electric Power Consumption","Alabama","AL",8672 +2004-03-01,"Electric Power Consumption","New Jersey","NJ",7977 +2004-03-01,"Electric Power Consumption","Louisiana","LA",19280 +2004-03-01,"Electric Power Consumption","Oklahoma","OK",13579 +2004-03-01,"Electric Power Consumption","Nebraska","NE",179 +2004-03-01,"Electric Power Consumption","Connecticut","CT",3888 +2004-03-01,"Industrial Consumption","North Dakota","ND",1752 +2004-03-01,"Industrial Consumption","Montana","MT",1804 +2004-03-01,"Industrial Consumption","Maryland","MD",2209 +2004-03-01,"Industrial Consumption","Oklahoma","OK",12285 +2004-03-01,"Industrial Consumption","South Dakota","SD",987 +2004-03-01,"Industrial Consumption","Arizona","AZ",1725 +2004-03-01,"Industrial Consumption","Oregon","OR",6254 +2004-03-01,"Industrial Consumption","New Hampshire","NH",623 +2004-03-01,"Industrial Consumption","Minnesota","MN",8594 +2004-03-01,"Industrial Consumption","Rhode Island","RI",584 +2004-03-01,"Industrial Consumption","North Carolina","NC",8451 +2004-03-01,"Industrial Consumption","New Jersey","NJ",7395 +2004-03-01,"Industrial Consumption","Michigan","MI",23399 +2004-03-01,"Industrial Consumption","Indiana","IN",25012 +2004-03-01,"Industrial Consumption","Illinois","IL",26094 +2004-03-01,"Industrial Consumption","Georgia","GA",13755 +2004-03-01,"Industrial Consumption","District of Columbia","DC",0 +2004-03-01,"Industrial Consumption","Colorado","CO",8694 +2004-03-01,"Industrial Consumption","New Mexico","NM",2017 +2004-03-01,"Industrial Consumption","Utah","UT",2213 +2004-03-01,"Industrial Consumption","California","CA",62162 +2004-03-01,"Industrial Consumption","Alabama","AL",13878 +2004-03-01,"Industrial Consumption","South Carolina","SC",7105 +2004-03-01,"Industrial Consumption","Massachusetts","MA",5074 +2004-03-01,"Industrial Consumption","Kansas","KS",7869 +2004-03-01,"Industrial Consumption","U.S.","U.S.",627150 +2004-03-01,"Industrial Consumption","Missouri","MO",5989 +2004-03-01,"Industrial Consumption","Nebraska","NE",2458 +2004-03-01,"Industrial Consumption","Connecticut","CT",2044 +2004-03-01,"Industrial Consumption","Kentucky","KY",10598 +2004-03-01,"Industrial Consumption","Alaska","AK",3983 +2004-03-01,"Industrial Consumption","New York","NY",7888 +2004-03-01,"Industrial Consumption","Mississippi","MS",9033 +2004-03-01,"Industrial Consumption","Arkansas","AR",9849 +2004-03-01,"Industrial Consumption","Vermont","VT",284 +2004-03-01,"Industrial Consumption","Tennessee","TN",8515 +2004-03-01,"Industrial Consumption","Idaho","ID",2117 +2004-03-01,"Industrial Consumption","Florida","FL",6086 +2004-03-01,"Industrial Consumption","Louisiana","LA",68634 +2004-03-01,"Industrial Consumption","Washington","WA",5892 +2004-03-01,"Industrial Consumption","Ohio","OH",28938 +2004-03-01,"Industrial Consumption","Pennsylvania","PA",18188 +2004-03-01,"Industrial Consumption","Maine","ME",1589 +2004-03-01,"Industrial Consumption","Texas","TX",147078 +2004-03-01,"Industrial Consumption","Wyoming","WY",3620 +2004-03-01,"Industrial Consumption","Wisconsin","WI",13243 +2004-03-01,"Industrial Consumption","Iowa","IA",8522 +2004-03-01,"Industrial Consumption","Delaware","DE",1466 +2004-03-01,"Industrial Consumption","Hawaii","HI",39 +2004-03-01,"Industrial Consumption","Nevada","NV",960 +2004-03-01,"Industrial Consumption","Virginia","VA",6190 +2004-03-01,"Industrial Consumption","West Virginia","WV",4009 +2004-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95007 +2004-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",53307 +2004-03-01,"Residential Consumption","South Carolina","SC",4416 +2004-03-01,"Residential Consumption","Oregon","OR",4601 +2004-03-01,"Residential Consumption","Virginia","VA",9419 +2004-03-01,"Residential Consumption","Georgia","GA",10651 +2004-03-01,"Residential Consumption","Montana","MT",2233 +2004-03-01,"Residential Consumption","Washington","WA",8373 +2004-03-01,"Residential Consumption","Mississippi","MS",3338 +2004-03-01,"Residential Consumption","Tennessee","TN",9500 +2004-03-01,"Residential Consumption","Alabama","AL",6062 +2004-03-01,"Residential Consumption","Ohio","OH",41855 +2004-03-01,"Residential Consumption","Louisiana","LA",6005 +2004-03-01,"Residential Consumption","Connecticut","CT",5823 +2004-03-01,"Residential Consumption","Minnesota","MN",15830 +2004-03-01,"Residential Consumption","New Mexico","NM",5076 +2004-03-01,"Residential Consumption","Florida","FL",1995 +2004-03-01,"Residential Consumption","New Hampshire","NH",964 +2004-03-01,"Residential Consumption","Alaska","AK",2061 +2004-03-01,"Residential Consumption","West Virginia","WV",4455 +2004-03-01,"Residential Consumption","Rhode Island","RI",2617 +2004-03-01,"Residential Consumption","Hawaii","HI",47 +2004-03-01,"Residential Consumption","Wisconsin","WI",16472 +2004-03-01,"Residential Consumption","Nebraska","NE",5533 +2004-03-01,"Residential Consumption","Maryland","MD",10130 +2004-03-01,"Residential Consumption","Maine","ME",158 +2004-03-01,"Residential Consumption","Indiana","IN",17207 +2004-03-01,"Residential Consumption","Massachusetts","MA",15172 +2004-03-01,"Residential Consumption","U.S.","U.S.",591428 +2004-03-01,"Residential Consumption","Michigan","MI",46957 +2004-03-01,"Residential Consumption","South Dakota","SD",1437 +2004-03-01,"Residential Consumption","Arizona","AZ",4846 +2004-03-01,"Residential Consumption","North Carolina","NC",8531 +2004-03-01,"Residential Consumption","Pennsylvania","PA",33116 +2004-03-01,"Residential Consumption","New Jersey","NJ",29563 +2004-03-01,"Residential Consumption","Colorado","CO",11395 +2004-03-01,"Residential Consumption","Missouri","MO",15334 +2004-03-01,"Residential Consumption","Delaware","DE",1330 +2004-03-01,"Residential Consumption","Wyoming","WY",1303 +2004-03-01,"Residential Consumption","New York","NY",54933 +2004-03-01,"Residential Consumption","Iowa","IA",8694 +2004-03-01,"Residential Consumption","Vermont","VT",432 +2004-03-01,"Residential Consumption","Utah","UT",4845 +2004-03-01,"Residential Consumption","District of Columbia","DC",1538 +2004-03-01,"Residential Consumption","North Dakota","ND",1308 +2004-03-01,"Residential Consumption","Idaho","ID",2484 +2004-03-01,"Residential Consumption","Kentucky","KY",6560 +2004-03-01,"Residential Consumption","Oklahoma","OK",8942 +2004-03-01,"Residential Consumption","Texas","TX",20063 +2004-03-01,"Residential Consumption","Nevada","NV",4037 +2004-03-01,"Residential Consumption","Arkansas","AR",5198 +2004-03-01,"Residential Consumption","Kansas","KS",8690 +2004-03-01,"Residential Consumption","California","CA",48651 +2004-03-01,"Residential Consumption","Illinois","IL",51248 +2004-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",1737 +2004-04-01,"Commercial Consumption","Massachusetts","MA",5509 +2004-04-01,"Commercial Consumption","Wisconsin","WI",5566 +2004-04-01,"Commercial Consumption","Florida","FL",5073 +2004-04-01,"Commercial Consumption","Rhode Island","RI",1221 +2004-04-01,"Commercial Consumption","West Virginia","WV",2142 +2004-04-01,"Commercial Consumption","Missouri","MO",4907 +2004-04-01,"Commercial Consumption","Montana","MT",1015 +2004-04-01,"Commercial Consumption","Maryland","MD",5715 +2004-04-01,"Commercial Consumption","California","CA",17684 +2004-04-01,"Commercial Consumption","Nevada","NV",1933 +2004-04-01,"Commercial Consumption","Indiana","IN",5772 +2004-04-01,"Commercial Consumption","North Carolina","NC",3483 +2004-04-01,"Commercial Consumption","Colorado","CO",4673 +2004-04-01,"Commercial Consumption","New Mexico","NM",2121 +2004-04-01,"Commercial Consumption","Oklahoma","OK",2831 +2004-04-01,"Commercial Consumption","South Dakota","SD",698 +2004-04-01,"Commercial Consumption","Ohio","OH",14297 +2004-04-01,"Commercial Consumption","Idaho","ID",907 +2004-04-01,"Commercial Consumption","Iowa","IA",3236 +2004-04-01,"Commercial Consumption","Hawaii","HI",155 +2004-04-01,"Commercial Consumption","New York","NY",33308 +2004-04-01,"Commercial Consumption","Tennessee","TN",4482 +2004-04-01,"Commercial Consumption","Michigan","MI",15622 +2004-04-01,"Commercial Consumption","South Carolina","SC",1782 +2004-04-01,"Commercial Consumption","Kentucky","KY",2641 +2004-04-01,"Commercial Consumption","Vermont","VT",267 +2004-04-01,"Commercial Consumption","Alaska","AK",1664 +2004-04-01,"Commercial Consumption","Arkansas","AR",2329 +2004-04-01,"Commercial Consumption","Mississippi","MS",1747 +2004-04-01,"Commercial Consumption","Delaware","DE",679 +2004-04-01,"Commercial Consumption","Louisiana","LA",2088 +2004-04-01,"Commercial Consumption","Virginia","VA",4663 +2004-04-01,"Commercial Consumption","New Jersey","NJ",14730 +2004-04-01,"Commercial Consumption","New Hampshire","NH",844 +2004-04-01,"Commercial Consumption","Texas","TX",14757 +2004-04-01,"Commercial Consumption","Connecticut","CT",3167 +2004-04-01,"Commercial Consumption","Alabama","AL",2045 +2004-04-01,"Commercial Consumption","Arizona","AZ",2570 +2004-04-01,"Commercial Consumption","Illinois","IL",14937 +2004-04-01,"Commercial Consumption","District of Columbia","DC",1345 +2004-04-01,"Commercial Consumption","Washington","WA",4006 +2004-04-01,"Commercial Consumption","Minnesota","MN",6958 +2004-04-01,"Commercial Consumption","Utah","UT",2327 +2004-04-01,"Commercial Consumption","Georgia","GA",3555 +2004-04-01,"Commercial Consumption","Wyoming","WY",850 +2004-04-01,"Commercial Consumption","Maine","ME",411 +2004-04-01,"Commercial Consumption","Nebraska","NE",2084 +2004-04-01,"Commercial Consumption","North Dakota","ND",698 +2004-04-01,"Commercial Consumption","Oregon","OR",2009 +2004-04-01,"Commercial Consumption","Pennsylvania","PA",12908 +2004-04-01,"Commercial Consumption","U.S.","U.S.",253143 +2004-04-01,"Commercial Consumption","Kansas","KS",2731 +2004-04-01,"Delivered to Consumers","Kentucky","KY",15771 +2004-04-01,"Delivered to Consumers","Connecticut","CT",13516 +2004-04-01,"Delivered to Consumers","Alabama","AL",27460 +2004-04-01,"Delivered to Consumers","New Jersey","NJ",52496 +2004-04-01,"Delivered to Consumers","Georgia","GA",28718 +2004-04-01,"Delivered to Consumers","Washington","WA",18926 +2004-04-01,"Delivered to Consumers","Idaho","ID",4556 +2004-04-01,"Delivered to Consumers","Mississippi","MS",19087 +2004-04-01,"Delivered to Consumers","Missouri","MO",20642 +2004-04-01,"Delivered to Consumers","Colorado","CO",28458 +2004-04-01,"Delivered to Consumers","Oregon","OR",16486 +2004-04-01,"Delivered to Consumers","Minnesota","MN",24741 +2004-04-01,"Delivered to Consumers","District of Columbia","DC",2349 +2004-04-01,"Delivered to Consumers","Delaware","DE",3387 +2004-04-01,"Delivered to Consumers","Illinois","IL",68328 +2004-04-01,"Delivered to Consumers","New York","NY",96553 +2004-04-01,"Delivered to Consumers","Michigan","MI",76978 +2004-04-01,"Delivered to Consumers","Wisconsin","WI",27544 +2004-04-01,"Delivered to Consumers","California","CA",178944 +2004-04-01,"Delivered to Consumers","Louisiana","LA",86763 +2004-04-01,"Delivered to Consumers","South Dakota","SD",2439 +2004-04-01,"Delivered to Consumers","Kansas","KS",15496 +2004-04-01,"Delivered to Consumers","North Carolina","NC",16242 +2004-04-01,"Delivered to Consumers","Vermont","VT",829 +2004-04-01,"Delivered to Consumers","Rhode Island","RI",6373 +2004-04-01,"Delivered to Consumers","Arkansas","AR",16382 +2004-04-01,"Delivered to Consumers","Virginia","VA",18779 +2004-04-01,"Delivered to Consumers","Texas","TX",266451 +2004-04-01,"Delivered to Consumers","Florida","FL",53442 +2004-04-01,"Delivered to Consumers","U.S.","U.S.",1609746 +2004-04-01,"Delivered to Consumers","New Mexico","NM",8521 +2004-04-01,"Delivered to Consumers","Wyoming","WY",5400 +2004-04-01,"Delivered to Consumers","Montana","MT",3906 +2004-04-01,"Delivered to Consumers","Alaska","AK",9967 +2004-04-01,"Delivered to Consumers","Oklahoma","OK",35528 +2004-04-01,"Delivered to Consumers","Tennessee","TN",18001 +2004-04-01,"Delivered to Consumers","South Carolina","SC",11619 +2004-04-01,"Delivered to Consumers","Utah","UT",9033 +2004-04-01,"Delivered to Consumers","West Virginia","WV",9338 +2004-04-01,"Delivered to Consumers","Ohio","OH",67347 +2004-04-01,"Delivered to Consumers","Pennsylvania","PA",54937 +2004-04-01,"Delivered to Consumers","Massachusetts","MA",38312 +2004-04-01,"Delivered to Consumers","Nevada","NV",11514 +2004-04-01,"Delivered to Consumers","Maine","ME",7137 +2004-04-01,"Delivered to Consumers","New Hampshire","NH",6131 +2004-04-01,"Delivered to Consumers","North Dakota","ND",2998 +2004-04-01,"Delivered to Consumers","Indiana","IN",37842 +2004-04-01,"Delivered to Consumers","Maryland","MD",14623 +2004-04-01,"Delivered to Consumers","Hawaii","HI",240 +2004-04-01,"Delivered to Consumers","Iowa","IA",15569 +2004-04-01,"Delivered to Consumers","Nebraska","NE",7983 +2004-04-01,"Delivered to Consumers","Arizona","AZ",23982 +2004-04-01,"Electric Power Consumption","Wisconsin","WI",1319 +2004-04-01,"Electric Power Consumption","Kentucky","KY",554 +2004-04-01,"Electric Power Consumption","Arizona","AZ",17528 +2004-04-01,"Electric Power Consumption","Georgia","GA",4875 +2004-04-01,"Electric Power Consumption","Virginia","VA",2754 +2004-04-01,"Electric Power Consumption","Utah","UT",639 +2004-04-01,"Electric Power Consumption","Iowa","IA",213 +2004-04-01,"Electric Power Consumption","Vermont","VT",2 +2004-04-01,"Electric Power Consumption","Tennessee","TN",77 +2004-04-01,"Electric Power Consumption","U.S.","U.S.",389328 +2004-04-01,"Electric Power Consumption","Hawaii","HI",0 +2004-04-01,"Electric Power Consumption","Indiana","IN",1693 +2004-04-01,"Electric Power Consumption","Connecticut","CT",4214 +2004-04-01,"Electric Power Consumption","California","CA",56992 +2004-04-01,"Electric Power Consumption","Alabama","AL",8552 +2004-04-01,"Electric Power Consumption","New Jersey","NJ",10275 +2004-04-01,"Electric Power Consumption","West Virginia","WV",382 +2004-04-01,"Electric Power Consumption","Maryland","MD",770 +2004-04-01,"Electric Power Consumption","Delaware","DE",626 +2004-04-01,"Electric Power Consumption","Florida","FL",41173 +2004-04-01,"Electric Power Consumption","Alaska","AK",2640 +2004-04-01,"Electric Power Consumption","Idaho","ID",175 +2004-04-01,"Electric Power Consumption","Michigan","MI",10451 +2004-04-01,"Electric Power Consumption","South Dakota","SD",10 +2004-04-01,"Electric Power Consumption","North Dakota","ND",0 +2004-04-01,"Electric Power Consumption","Montana","MT",16 +2004-04-01,"Electric Power Consumption","Texas","TX",103954 +2004-04-01,"Electric Power Consumption","Massachusetts","MA",17193 +2004-04-01,"Electric Power Consumption","New Hampshire","NH",3928 +2004-04-01,"Electric Power Consumption","Washington","WA",3768 +2004-04-01,"Electric Power Consumption","Colorado","CO",5363 +2004-04-01,"Electric Power Consumption","South Carolina","SC",1052 +2004-04-01,"Electric Power Consumption","New York","NY",15431 +2004-04-01,"Electric Power Consumption","Rhode Island","RI",2316 +2004-04-01,"Electric Power Consumption","Oklahoma","OK",16643 +2004-04-01,"Electric Power Consumption","Minnesota","MN",957 +2004-04-01,"Electric Power Consumption","Kansas","KS",787 +2004-04-01,"Electric Power Consumption","Wyoming","WY",63 +2004-04-01,"Electric Power Consumption","North Carolina","NC",263 +2004-04-01,"Electric Power Consumption","Maine","ME",5309 +2004-04-01,"Electric Power Consumption","New Mexico","NM",1782 +2004-04-01,"Electric Power Consumption","Arkansas","AR",2298 +2004-04-01,"Electric Power Consumption","Oregon","OR",5633 +2004-04-01,"Electric Power Consumption","Nevada","NV",6595 +2004-04-01,"Electric Power Consumption","Nebraska","NE",176 +2004-04-01,"Electric Power Consumption","Missouri","MO",1570 +2004-04-01,"Electric Power Consumption","Ohio","OH",809 +2004-04-01,"Electric Power Consumption","Louisiana","LA",15608 +2004-04-01,"Electric Power Consumption","Illinois","IL",1124 +2004-04-01,"Electric Power Consumption","Pennsylvania","PA",3302 +2004-04-01,"Electric Power Consumption","Mississippi","MS",7475 +2004-04-01,"Industrial Consumption","Oregon","OR",5865 +2004-04-01,"Industrial Consumption","New York","NY",7187 +2004-04-01,"Industrial Consumption","Nebraska","NE",2973 +2004-04-01,"Industrial Consumption","New Jersey","NJ",6914 +2004-04-01,"Industrial Consumption","Georgia","GA",13178 +2004-04-01,"Industrial Consumption","District of Columbia","DC",0 +2004-04-01,"Industrial Consumption","Hawaii","HI",38 +2004-04-01,"Industrial Consumption","U.S.","U.S.",585952 +2004-04-01,"Industrial Consumption","Pennsylvania","PA",15863 +2004-04-01,"Industrial Consumption","Nevada","NV",961 +2004-04-01,"Industrial Consumption","Texas","TX",136484 +2004-04-01,"Industrial Consumption","Wisconsin","WI",10899 +2004-04-01,"Industrial Consumption","North Dakota","ND",1515 +2004-04-01,"Industrial Consumption","Massachusetts","MA",4289 +2004-04-01,"Industrial Consumption","Mississippi","MS",8529 +2004-04-01,"Industrial Consumption","California","CA",68688 +2004-04-01,"Industrial Consumption","Arkansas","AR",8987 +2004-04-01,"Industrial Consumption","Montana","MT",1456 +2004-04-01,"Industrial Consumption","Maryland","MD",1837 +2004-04-01,"Industrial Consumption","Colorado","CO",9635 +2004-04-01,"Industrial Consumption","Kansas","KS",7557 +2004-04-01,"Industrial Consumption","Virginia","VA",5642 +2004-04-01,"Industrial Consumption","Wyoming","WY",3511 +2004-04-01,"Industrial Consumption","New Hampshire","NH",652 +2004-04-01,"Industrial Consumption","Florida","FL",5814 +2004-04-01,"Industrial Consumption","Illinois","IL",21637 +2004-04-01,"Industrial Consumption","Oklahoma","OK",11799 +2004-04-01,"Industrial Consumption","Utah","UT",2069 +2004-04-01,"Industrial Consumption","Michigan","MI",18226 +2004-04-01,"Industrial Consumption","Indiana","IN",21558 +2004-04-01,"Industrial Consumption","Rhode Island","RI",511 +2004-04-01,"Industrial Consumption","Washington","WA",5526 +2004-04-01,"Industrial Consumption","Alabama","AL",13567 +2004-04-01,"Industrial Consumption","Vermont","VT",229 +2004-04-01,"Industrial Consumption","Idaho","ID",2006 +2004-04-01,"Industrial Consumption","Connecticut","CT",1742 +2004-04-01,"Industrial Consumption","Alaska","AK",4253 +2004-04-01,"Industrial Consumption","South Dakota","SD",863 +2004-04-01,"Industrial Consumption","Arizona","AZ",1590 +2004-04-01,"Industrial Consumption","Minnesota","MN",7829 +2004-04-01,"Industrial Consumption","Missouri","MO",5220 +2004-04-01,"Industrial Consumption","Louisiana","LA",66085 +2004-04-01,"Industrial Consumption","Ohio","OH",25615 +2004-04-01,"Industrial Consumption","New Mexico","NM",1984 +2004-04-01,"Industrial Consumption","Maine","ME",1316 +2004-04-01,"Industrial Consumption","South Carolina","SC",6482 +2004-04-01,"Industrial Consumption","West Virginia","WV",3856 +2004-04-01,"Industrial Consumption","Tennessee","TN",8177 +2004-04-01,"Industrial Consumption","Iowa","IA",7541 +2004-04-01,"Industrial Consumption","Kentucky","KY",9045 +2004-04-01,"Industrial Consumption","Delaware","DE",1176 +2004-04-01,"Industrial Consumption","North Carolina","NC",7575 +2004-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91478 +2004-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",43947 +2004-04-01,"Residential Consumption","South Carolina","SC",2303 +2004-04-01,"Residential Consumption","North Carolina","NC",4921 +2004-04-01,"Residential Consumption","Maryland","MD",6302 +2004-04-01,"Residential Consumption","New Hampshire","NH",708 +2004-04-01,"Residential Consumption","Wisconsin","WI",9760 +2004-04-01,"Residential Consumption","Kansas","KS",4421 +2004-04-01,"Residential Consumption","U.S.","U.S.",379642 +2004-04-01,"Residential Consumption","Oregon","OR",2979 +2004-04-01,"Residential Consumption","Ohio","OH",26627 +2004-04-01,"Residential Consumption","Hawaii","HI",48 +2004-04-01,"Residential Consumption","Nebraska","NE",2750 +2004-04-01,"Residential Consumption","Minnesota","MN",8997 +2004-04-01,"Residential Consumption","New Mexico","NM",2634 +2004-04-01,"Residential Consumption","New Jersey","NJ",20576 +2004-04-01,"Residential Consumption","California","CA",35580 +2004-04-01,"Residential Consumption","Alabama","AL",3296 +2004-04-01,"Residential Consumption","Wyoming","WY",975 +2004-04-01,"Residential Consumption","Utah","UT",3998 +2004-04-01,"Residential Consumption","South Dakota","SD",868 +2004-04-01,"Residential Consumption","Pennsylvania","PA",22863 +2004-04-01,"Residential Consumption","Indiana","IN",8819 +2004-04-01,"Residential Consumption","Arkansas","AR",2768 +2004-04-01,"Residential Consumption","Colorado","CO",8788 +2004-04-01,"Residential Consumption","Oklahoma","OK",4255 +2004-04-01,"Residential Consumption","Missouri","MO",8945 +2004-04-01,"Residential Consumption","Arizona","AZ",2295 +2004-04-01,"Residential Consumption","West Virginia","WV",2958 +2004-04-01,"Residential Consumption","Louisiana","LA",2981 +2004-04-01,"Residential Consumption","Tennessee","TN",5266 +2004-04-01,"Residential Consumption","Nevada","NV",2025 +2004-04-01,"Residential Consumption","Maine","ME",102 +2004-04-01,"Residential Consumption","Idaho","ID",1469 +2004-04-01,"Residential Consumption","Alaska","AK",1410 +2004-04-01,"Residential Consumption","Mississippi","MS",1335 +2004-04-01,"Residential Consumption","Florida","FL",1381 +2004-04-01,"Residential Consumption","North Dakota","ND",784 +2004-04-01,"Residential Consumption","Montana","MT",1419 +2004-04-01,"Residential Consumption","Washington","WA",5626 +2004-04-01,"Residential Consumption","Delaware","DE",905 +2004-04-01,"Residential Consumption","New York","NY",40627 +2004-04-01,"Residential Consumption","Illinois","IL",30629 +2004-04-01,"Residential Consumption","Rhode Island","RI",2325 +2004-04-01,"Residential Consumption","Connecticut","CT",4393 +2004-04-01,"Residential Consumption","Vermont","VT",331 +2004-04-01,"Residential Consumption","Michigan","MI",32678 +2004-04-01,"Residential Consumption","District of Columbia","DC",1004 +2004-04-01,"Residential Consumption","Massachusetts","MA",11321 +2004-04-01,"Residential Consumption","Kentucky","KY",3531 +2004-04-01,"Residential Consumption","Texas","TX",11255 +2004-04-01,"Residential Consumption","Iowa","IA",4578 +2004-04-01,"Residential Consumption","Virginia","VA",5721 +2004-04-01,"Residential Consumption","Georgia","GA",7111 +2004-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",1681 +2004-05-01,"Commercial Consumption","Oregon","OR",1559 +2004-05-01,"Commercial Consumption","Oklahoma","OK",1914 +2004-05-01,"Commercial Consumption","Louisiana","LA",1683 +2004-05-01,"Commercial Consumption","District of Columbia","DC",857 +2004-05-01,"Commercial Consumption","Washington","WA",2939 +2004-05-01,"Commercial Consumption","North Carolina","NC",2214 +2004-05-01,"Commercial Consumption","Kentucky","KY",1462 +2004-05-01,"Commercial Consumption","Kansas","KS",1958 +2004-05-01,"Commercial Consumption","Alaska","AK",1046 +2004-05-01,"Commercial Consumption","California","CA",17561 +2004-05-01,"Commercial Consumption","Arizona","AZ",2239 +2004-05-01,"Commercial Consumption","Nevada","NV",1827 +2004-05-01,"Commercial Consumption","Minnesota","MN",4114 +2004-05-01,"Commercial Consumption","Colorado","CO",3122 +2004-05-01,"Commercial Consumption","Massachusetts","MA",3416 +2004-05-01,"Commercial Consumption","Montana","MT",737 +2004-05-01,"Commercial Consumption","Idaho","ID",654 +2004-05-01,"Commercial Consumption","Iowa","IA",1752 +2004-05-01,"Commercial Consumption","Alabama","AL",1670 +2004-05-01,"Commercial Consumption","Michigan","MI",8901 +2004-05-01,"Commercial Consumption","South Dakota","SD",467 +2004-05-01,"Commercial Consumption","New Jersey","NJ",9693 +2004-05-01,"Commercial Consumption","New Hampshire","NH",479 +2004-05-01,"Commercial Consumption","Arkansas","AR",1651 +2004-05-01,"Commercial Consumption","Missouri","MO",3042 +2004-05-01,"Commercial Consumption","Wisconsin","WI",3587 +2004-05-01,"Commercial Consumption","Florida","FL",4744 +2004-05-01,"Commercial Consumption","Vermont","VT",151 +2004-05-01,"Commercial Consumption","Rhode Island","RI",623 +2004-05-01,"Commercial Consumption","Ohio","OH",7214 +2004-05-01,"Commercial Consumption","Connecticut","CT",1866 +2004-05-01,"Commercial Consumption","Nebraska","NE",1374 +2004-05-01,"Commercial Consumption","Indiana","IN",3240 +2004-05-01,"Commercial Consumption","Illinois","IL",9030 +2004-05-01,"Commercial Consumption","Pennsylvania","PA",6539 +2004-05-01,"Commercial Consumption","Texas","TX",12848 +2004-05-01,"Commercial Consumption","Hawaii","HI",145 +2004-05-01,"Commercial Consumption","Mississippi","MS",1209 +2004-05-01,"Commercial Consumption","Wyoming","WY",567 +2004-05-01,"Commercial Consumption","Utah","UT",1487 +2004-05-01,"Commercial Consumption","New Mexico","NM",1740 +2004-05-01,"Commercial Consumption","Virginia","VA",2928 +2004-05-01,"Commercial Consumption","Maine","ME",275 +2004-05-01,"Commercial Consumption","Maryland","MD",3634 +2004-05-01,"Commercial Consumption","Delaware","DE",342 +2004-05-01,"Commercial Consumption","West Virginia","WV",1342 +2004-05-01,"Commercial Consumption","South Carolina","SC",1311 +2004-05-01,"Commercial Consumption","North Dakota","ND",508 +2004-05-01,"Commercial Consumption","U.S.","U.S.",172982 +2004-05-01,"Commercial Consumption","Georgia","GA",2482 +2004-05-01,"Commercial Consumption","New York","NY",23756 +2004-05-01,"Commercial Consumption","Tennessee","TN",3083 +2004-05-01,"Delivered to Consumers","West Virginia","WV",5321 +2004-05-01,"Delivered to Consumers","South Dakota","SD",1808 +2004-05-01,"Delivered to Consumers","Alaska","AK",9462 +2004-05-01,"Delivered to Consumers","Pennsylvania","PA",42873 +2004-05-01,"Delivered to Consumers","Mississippi","MS",24565 +2004-05-01,"Delivered to Consumers","Missouri","MO",15737 +2004-05-01,"Delivered to Consumers","South Carolina","SC",12602 +2004-05-01,"Delivered to Consumers","Louisiana","LA",89143 +2004-05-01,"Delivered to Consumers","New Hampshire","NH",2712 +2004-05-01,"Delivered to Consumers","Montana","MT",3279 +2004-05-01,"Delivered to Consumers","Hawaii","HI",221 +2004-05-01,"Delivered to Consumers","Kansas","KS",13148 +2004-05-01,"Delivered to Consumers","Ohio","OH",46827 +2004-05-01,"Delivered to Consumers","Alabama","AL",26994 +2004-05-01,"Delivered to Consumers","Nebraska","NE",6255 +2004-05-01,"Delivered to Consumers","Massachusetts","MA",23705 +2004-05-01,"Delivered to Consumers","Colorado","CO",23766 +2004-05-01,"Delivered to Consumers","New Jersey","NJ",39871 +2004-05-01,"Delivered to Consumers","North Dakota","ND",2087 +2004-05-01,"Delivered to Consumers","New Mexico","NM",8219 +2004-05-01,"Delivered to Consumers","Indiana","IN",30840 +2004-05-01,"Delivered to Consumers","Vermont","VT",517 +2004-05-01,"Delivered to Consumers","Illinois","IL",47779 +2004-05-01,"Delivered to Consumers","Connecticut","CT",11263 +2004-05-01,"Delivered to Consumers","Arizona","AZ",26878 +2004-05-01,"Delivered to Consumers","Washington","WA",15242 +2004-05-01,"Delivered to Consumers","Utah","UT",6775 +2004-05-01,"Delivered to Consumers","U.S.","U.S.",1441557 +2004-05-01,"Delivered to Consumers","Wyoming","WY",4775 +2004-05-01,"Delivered to Consumers","Michigan","MI",54610 +2004-05-01,"Delivered to Consumers","Iowa","IA",11543 +2004-05-01,"Delivered to Consumers","Minnesota","MN",17416 +2004-05-01,"Delivered to Consumers","Delaware","DE",3731 +2004-05-01,"Delivered to Consumers","Oklahoma","OK",36608 +2004-05-01,"Delivered to Consumers","Wisconsin","WI",21106 +2004-05-01,"Delivered to Consumers","Nevada","NV",13220 +2004-05-01,"Delivered to Consumers","Georgia","GA",26610 +2004-05-01,"Delivered to Consumers","Maryland","MD",9867 +2004-05-01,"Delivered to Consumers","Tennessee","TN",14262 +2004-05-01,"Delivered to Consumers","Oregon","OR",14346 +2004-05-01,"Delivered to Consumers","Maine","ME",6496 +2004-05-01,"Delivered to Consumers","District of Columbia","DC",1239 +2004-05-01,"Delivered to Consumers","Rhode Island","RI",5874 +2004-05-01,"Delivered to Consumers","Idaho","ID",4391 +2004-05-01,"Delivered to Consumers","North Carolina","NC",16033 +2004-05-01,"Delivered to Consumers","California","CA",167463 +2004-05-01,"Delivered to Consumers","Texas","TX",286412 +2004-05-01,"Delivered to Consumers","Florida","FL",62663 +2004-05-01,"Delivered to Consumers","New York","NY",76708 +2004-05-01,"Delivered to Consumers","Kentucky","KY",12331 +2004-05-01,"Delivered to Consumers","Arkansas","AR",15991 +2004-05-01,"Delivered to Consumers","Virginia","VA",18241 +2004-05-01,"Electric Power Consumption","Washington","WA",3523 +2004-05-01,"Electric Power Consumption","Michigan","MI",11704 +2004-05-01,"Electric Power Consumption","Tennessee","TN",618 +2004-05-01,"Electric Power Consumption","Nebraska","NE",606 +2004-05-01,"Electric Power Consumption","Ohio","OH",4107 +2004-05-01,"Electric Power Consumption","Illinois","IL",4328 +2004-05-01,"Electric Power Consumption","Massachusetts","MA",12018 +2004-05-01,"Electric Power Consumption","Vermont","VT",2 +2004-05-01,"Electric Power Consumption","Mississippi","MS",13877 +2004-05-01,"Electric Power Consumption","Georgia","GA",6650 +2004-05-01,"Electric Power Consumption","Louisiana","LA",19393 +2004-05-01,"Electric Power Consumption","New York","NY",24268 +2004-05-01,"Electric Power Consumption","Rhode Island","RI",3763 +2004-05-01,"Electric Power Consumption","Utah","UT",924 +2004-05-01,"Electric Power Consumption","Oregon","OR",4756 +2004-05-01,"Electric Power Consumption","New Hampshire","NH",1257 +2004-05-01,"Electric Power Consumption","California","CA",56398 +2004-05-01,"Electric Power Consumption","Arkansas","AR",3950 +2004-05-01,"Electric Power Consumption","Wyoming","WY",53 +2004-05-01,"Electric Power Consumption","North Carolina","NC",4594 +2004-05-01,"Electric Power Consumption","Kentucky","KY",475 +2004-05-01,"Electric Power Consumption","Indiana","IN",3079 +2004-05-01,"Electric Power Consumption","New Jersey","NJ",15451 +2004-05-01,"Electric Power Consumption","Idaho","ID",1025 +2004-05-01,"Electric Power Consumption","Colorado","CO",6967 +2004-05-01,"Electric Power Consumption","Texas","TX",118578 +2004-05-01,"Electric Power Consumption","West Virginia","WV",235 +2004-05-01,"Electric Power Consumption","Wisconsin","WI",1539 +2004-05-01,"Electric Power Consumption","Maryland","MD",1891 +2004-05-01,"Electric Power Consumption","Florida","FL",51135 +2004-05-01,"Electric Power Consumption","Alaska","AK",3027 +2004-05-01,"Electric Power Consumption","New Mexico","NM",3001 +2004-05-01,"Electric Power Consumption","South Carolina","SC",4032 +2004-05-01,"Electric Power Consumption","Minnesota","MN",991 +2004-05-01,"Electric Power Consumption","Kansas","KS",636 +2004-05-01,"Electric Power Consumption","Maine","ME",5016 +2004-05-01,"Electric Power Consumption","Montana","MT",16 +2004-05-01,"Electric Power Consumption","Virginia","VA",7758 +2004-05-01,"Electric Power Consumption","Oklahoma","OK",20095 +2004-05-01,"Electric Power Consumption","Iowa","IA",324 +2004-05-01,"Electric Power Consumption","U.S.","U.S.",485114 +2004-05-01,"Electric Power Consumption","Missouri","MO",3470 +2004-05-01,"Electric Power Consumption","North Dakota","ND",0 +2004-05-01,"Electric Power Consumption","Connecticut","CT",5821 +2004-05-01,"Electric Power Consumption","Arizona","AZ",21411 +2004-05-01,"Electric Power Consumption","Alabama","AL",10409 +2004-05-01,"Electric Power Consumption","Pennsylvania","PA",11504 +2004-05-01,"Electric Power Consumption","Nevada","NV",8714 +2004-05-01,"Electric Power Consumption","South Dakota","SD",26 +2004-05-01,"Electric Power Consumption","Hawaii","HI",0 +2004-05-01,"Electric Power Consumption","Delaware","DE",1701 +2004-05-01,"Industrial Consumption","Colorado","CO",8728 +2004-05-01,"Industrial Consumption","New Mexico","NM",1749 +2004-05-01,"Industrial Consumption","Mississippi","MS",8545 +2004-05-01,"Industrial Consumption","Rhode Island","RI",321 +2004-05-01,"Industrial Consumption","North Dakota","ND",1052 +2004-05-01,"Industrial Consumption","Montana","MT",1444 +2004-05-01,"Industrial Consumption","Hawaii","HI",33 +2004-05-01,"Industrial Consumption","Arizona","AZ",1523 +2004-05-01,"Industrial Consumption","Wisconsin","WI",10122 +2004-05-01,"Industrial Consumption","Tennessee","TN",7916 +2004-05-01,"Industrial Consumption","Iowa","IA",6876 +2004-05-01,"Industrial Consumption","Georgia","GA",12893 +2004-05-01,"Industrial Consumption","Massachusetts","MA",2798 +2004-05-01,"Industrial Consumption","Kansas","KS",7828 +2004-05-01,"Industrial Consumption","Nevada","NV",955 +2004-05-01,"Industrial Consumption","Vermont","VT",187 +2004-05-01,"Industrial Consumption","Wyoming","WY",3526 +2004-05-01,"Industrial Consumption","Minnesota","MN",6637 +2004-05-01,"Industrial Consumption","Kentucky","KY",8910 +2004-05-01,"Industrial Consumption","North Carolina","NC",7272 +2004-05-01,"Industrial Consumption","New York","NY",5808 +2004-05-01,"Industrial Consumption","Maine","ME",1158 +2004-05-01,"Industrial Consumption","Alabama","AL",12955 +2004-05-01,"Industrial Consumption","South Carolina","SC",6341 +2004-05-01,"Industrial Consumption","New Jersey","NJ",5860 +2004-05-01,"Industrial Consumption","New Hampshire","NH",632 +2004-05-01,"Industrial Consumption","Idaho","ID",1694 +2004-05-01,"Industrial Consumption","Florida","FL",5716 +2004-05-01,"Industrial Consumption","Michigan","MI",15843 +2004-05-01,"Industrial Consumption","Delaware","DE",1290 +2004-05-01,"Industrial Consumption","Oklahoma","OK",11991 +2004-05-01,"Industrial Consumption","Washington","WA",5229 +2004-05-01,"Industrial Consumption","Pennsylvania","PA",14925 +2004-05-01,"Industrial Consumption","Virginia","VA",5534 +2004-05-01,"Industrial Consumption","West Virginia","WV",2481 +2004-05-01,"Industrial Consumption","Illinois","IL",18997 +2004-05-01,"Industrial Consumption","Maryland","MD",1694 +2004-05-01,"Industrial Consumption","South Dakota","SD",770 +2004-05-01,"Industrial Consumption","Ohio","OH",23011 +2004-05-01,"Industrial Consumption","Utah","UT",2021 +2004-05-01,"Industrial Consumption","U.S.","U.S.",568079 +2004-05-01,"Industrial Consumption","California","CA",65201 +2004-05-01,"Industrial Consumption","Arkansas","AR",8944 +2004-05-01,"Industrial Consumption","Nebraska","NE",2584 +2004-05-01,"Industrial Consumption","Connecticut","CT",1431 +2004-05-01,"Industrial Consumption","Missouri","MO",4565 +2004-05-01,"Industrial Consumption","Louisiana","LA",66036 +2004-05-01,"Industrial Consumption","Oregon","OR",5954 +2004-05-01,"Industrial Consumption","Texas","TX",146577 +2004-05-01,"Industrial Consumption","Indiana","IN",19052 +2004-05-01,"Industrial Consumption","District of Columbia","DC",0 +2004-05-01,"Industrial Consumption","Alaska","AK",4470 +2004-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92131 +2004-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",39356 +2004-05-01,"Residential Consumption","Texas","TX",8409 +2004-05-01,"Residential Consumption","Michigan","MI",18162 +2004-05-01,"Residential Consumption","Maryland","MD",2648 +2004-05-01,"Residential Consumption","New Jersey","NJ",8867 +2004-05-01,"Residential Consumption","Colorado","CO",4949 +2004-05-01,"Residential Consumption","Washington","WA",3552 +2004-05-01,"Residential Consumption","New York","NY",22876 +2004-05-01,"Residential Consumption","South Carolina","SC",918 +2004-05-01,"Residential Consumption","Rhode Island","RI",1168 +2004-05-01,"Residential Consumption","Mississippi","MS",934 +2004-05-01,"Residential Consumption","Indiana","IN",5468 +2004-05-01,"Residential Consumption","Idaho","ID",1019 +2004-05-01,"Residential Consumption","New Hampshire","NH",344 +2004-05-01,"Residential Consumption","Oklahoma","OK",2607 +2004-05-01,"Residential Consumption","Delaware","DE",398 +2004-05-01,"Residential Consumption","Alaska","AK",919 +2004-05-01,"Residential Consumption","Iowa","IA",2591 +2004-05-01,"Residential Consumption","Wisconsin","WI",5859 +2004-05-01,"Residential Consumption","Tennessee","TN",2645 +2004-05-01,"Residential Consumption","Utah","UT",2342 +2004-05-01,"Residential Consumption","Montana","MT",1081 +2004-05-01,"Residential Consumption","California","CA",28303 +2004-05-01,"Residential Consumption","U.S.","U.S.",213645 +2004-05-01,"Residential Consumption","Louisiana","LA",2032 +2004-05-01,"Residential Consumption","South Dakota","SD",545 +2004-05-01,"Residential Consumption","New Mexico","NM",1729 +2004-05-01,"Residential Consumption","Florida","FL",1069 +2004-05-01,"Residential Consumption","North Dakota","ND",526 +2004-05-01,"Residential Consumption","Illinois","IL",15424 +2004-05-01,"Residential Consumption","Oregon","OR",2077 +2004-05-01,"Residential Consumption","Ohio","OH",12495 +2004-05-01,"Residential Consumption","North Carolina","NC",1953 +2004-05-01,"Residential Consumption","Vermont","VT",177 +2004-05-01,"Residential Consumption","Nevada","NV",1724 +2004-05-01,"Residential Consumption","Minnesota","MN",5673 +2004-05-01,"Residential Consumption","Georgia","GA",4585 +2004-05-01,"Residential Consumption","Kentucky","KY",1484 +2004-05-01,"Residential Consumption","Hawaii","HI",44 +2004-05-01,"Residential Consumption","Virginia","VA",2021 +2004-05-01,"Residential Consumption","Maine","ME",47 +2004-05-01,"Residential Consumption","Kansas","KS",2726 +2004-05-01,"Residential Consumption","West Virginia","WV",1262 +2004-05-01,"Residential Consumption","Connecticut","CT",2144 +2004-05-01,"Residential Consumption","Massachusetts","MA",5472 +2004-05-01,"Residential Consumption","Missouri","MO",4660 +2004-05-01,"Residential Consumption","Wyoming","WY",629 +2004-05-01,"Residential Consumption","Nebraska","NE",1692 +2004-05-01,"Residential Consumption","District of Columbia","DC",382 +2004-05-01,"Residential Consumption","Pennsylvania","PA",9906 +2004-05-01,"Residential Consumption","Arkansas","AR",1446 +2004-05-01,"Residential Consumption","Arizona","AZ",1705 +2004-05-01,"Residential Consumption","Alabama","AL",1960 +2004-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",1737 +2004-06-01,"Commercial Consumption","Utah","UT",992 +2004-06-01,"Commercial Consumption","New Mexico","NM",1086 +2004-06-01,"Commercial Consumption","Pennsylvania","PA",5007 +2004-06-01,"Commercial Consumption","Missouri","MO",2256 +2004-06-01,"Commercial Consumption","Texas","TX",11206 +2004-06-01,"Commercial Consumption","Florida","FL",4171 +2004-06-01,"Commercial Consumption","Ohio","OH",4795 +2004-06-01,"Commercial Consumption","New York","NY",18052 +2004-06-01,"Commercial Consumption","Mississippi","MS",1049 +2004-06-01,"Commercial Consumption","Michigan","MI",6317 +2004-06-01,"Commercial Consumption","Indiana","IN",2372 +2004-06-01,"Commercial Consumption","Washington","WA",2568 +2004-06-01,"Commercial Consumption","New Hampshire","NH",364 +2004-06-01,"Commercial Consumption","Montana","MT",647 +2004-06-01,"Commercial Consumption","North Dakota","ND",280 +2004-06-01,"Commercial Consumption","Minnesota","MN",3086 +2004-06-01,"Commercial Consumption","Virginia","VA",2626 +2004-06-01,"Commercial Consumption","South Dakota","SD",355 +2004-06-01,"Commercial Consumption","New Jersey","NJ",8360 +2004-06-01,"Commercial Consumption","Rhode Island","RI",362 +2004-06-01,"Commercial Consumption","Tennessee","TN",2305 +2004-06-01,"Commercial Consumption","Oklahoma","OK",1470 +2004-06-01,"Commercial Consumption","U.S.","U.S.",138786 +2004-06-01,"Commercial Consumption","Kansas","KS",1660 +2004-06-01,"Commercial Consumption","Iowa","IA",1531 +2004-06-01,"Commercial Consumption","Nebraska","NE",987 +2004-06-01,"Commercial Consumption","Nevada","NV",1602 +2004-06-01,"Commercial Consumption","Illinois","IL",7453 +2004-06-01,"Commercial Consumption","Wyoming","WY",418 +2004-06-01,"Commercial Consumption","Colorado","CO",2201 +2004-06-01,"Commercial Consumption","Idaho","ID",518 +2004-06-01,"Commercial Consumption","Arkansas","AR",1340 +2004-06-01,"Commercial Consumption","Alabama","AL",1441 +2004-06-01,"Commercial Consumption","Louisiana","LA",1374 +2004-06-01,"Commercial Consumption","Maryland","MD",3291 +2004-06-01,"Commercial Consumption","South Carolina","SC",1175 +2004-06-01,"Commercial Consumption","Massachusetts","MA",2304 +2004-06-01,"Commercial Consumption","Maine","ME",216 +2004-06-01,"Commercial Consumption","Vermont","VT",93 +2004-06-01,"Commercial Consumption","Alaska","AK",797 +2004-06-01,"Commercial Consumption","California","CA",15914 +2004-06-01,"Commercial Consumption","West Virginia","WV",1054 +2004-06-01,"Commercial Consumption","North Carolina","NC",2035 +2004-06-01,"Commercial Consumption","Oregon","OR",1361 +2004-06-01,"Commercial Consumption","Wisconsin","WI",2420 +2004-06-01,"Commercial Consumption","Kentucky","KY",1151 +2004-06-01,"Commercial Consumption","Georgia","GA",2189 +2004-06-01,"Commercial Consumption","Hawaii","HI",155 +2004-06-01,"Commercial Consumption","Connecticut","CT",1315 +2004-06-01,"Commercial Consumption","Delaware","DE",307 +2004-06-01,"Commercial Consumption","Arizona","AZ",1973 +2004-06-01,"Commercial Consumption","District of Columbia","DC",783 +2004-06-01,"Delivered to Consumers","West Virginia","WV",4737 +2004-06-01,"Delivered to Consumers","Alaska","AK",9831 +2004-06-01,"Delivered to Consumers","Kentucky","KY",11249 +2004-06-01,"Delivered to Consumers","Alabama","AL",26923 +2004-06-01,"Delivered to Consumers","Wisconsin","WI",15420 +2004-06-01,"Delivered to Consumers","Maine","ME",6314 +2004-06-01,"Delivered to Consumers","Minnesota","MN",14831 +2004-06-01,"Delivered to Consumers","Indiana","IN",25006 +2004-06-01,"Delivered to Consumers","South Dakota","SD",1650 +2004-06-01,"Delivered to Consumers","Maryland","MD",8560 +2004-06-01,"Delivered to Consumers","Hawaii","HI",235 +2004-06-01,"Delivered to Consumers","Kansas","KS",12282 +2004-06-01,"Delivered to Consumers","Wyoming","WY",4216 +2004-06-01,"Delivered to Consumers","Illinois","IL",40404 +2004-06-01,"Delivered to Consumers","Idaho","ID",3602 +2004-06-01,"Delivered to Consumers","Missouri","MO",12404 +2004-06-01,"Delivered to Consumers","Michigan","MI",41310 +2004-06-01,"Delivered to Consumers","Connecticut","CT",9889 +2004-06-01,"Delivered to Consumers","Nebraska","NE",5830 +2004-06-01,"Delivered to Consumers","Nevada","NV",16819 +2004-06-01,"Delivered to Consumers","North Dakota","ND",1270 +2004-06-01,"Delivered to Consumers","Florida","FL",69628 +2004-06-01,"Delivered to Consumers","Oklahoma","OK",33843 +2004-06-01,"Delivered to Consumers","Ohio","OH",33561 +2004-06-01,"Delivered to Consumers","Iowa","IA",10481 +2004-06-01,"Delivered to Consumers","Mississippi","MS",21821 +2004-06-01,"Delivered to Consumers","New Jersey","NJ",33708 +2004-06-01,"Delivered to Consumers","Arizona","AZ",29819 +2004-06-01,"Delivered to Consumers","District of Columbia","DC",1067 +2004-06-01,"Delivered to Consumers","Delaware","DE",2595 +2004-06-01,"Delivered to Consumers","New York","NY",61518 +2004-06-01,"Delivered to Consumers","Tennessee","TN",11211 +2004-06-01,"Delivered to Consumers","North Carolina","NC",12711 +2004-06-01,"Delivered to Consumers","California","CA",166916 +2004-06-01,"Delivered to Consumers","South Carolina","SC",10686 +2004-06-01,"Delivered to Consumers","Utah","UT",5344 +2004-06-01,"Delivered to Consumers","U.S.","U.S.",1356266 +2004-06-01,"Delivered to Consumers","Vermont","VT",421 +2004-06-01,"Delivered to Consumers","Arkansas","AR",14085 +2004-06-01,"Delivered to Consumers","Virginia","VA",16500 +2004-06-01,"Delivered to Consumers","Pennsylvania","PA",33367 +2004-06-01,"Delivered to Consumers","Massachusetts","MA",22360 +2004-06-01,"Delivered to Consumers","Oregon","OR",12752 +2004-06-01,"Delivered to Consumers","Georgia","GA",24562 +2004-06-01,"Delivered to Consumers","New Mexico","NM",7135 +2004-06-01,"Delivered to Consumers","Rhode Island","RI",5299 +2004-06-01,"Delivered to Consumers","Montana","MT",2725 +2004-06-01,"Delivered to Consumers","Colorado","CO",20408 +2004-06-01,"Delivered to Consumers","Texas","TX",311889 +2004-06-01,"Delivered to Consumers","Louisiana","LA",89075 +2004-06-01,"Delivered to Consumers","Washington","WA",11848 +2004-06-01,"Delivered to Consumers","New Hampshire","NH",4473 +2004-06-01,"Electric Power Consumption","Louisiana","LA",22176 +2004-06-01,"Electric Power Consumption","Oklahoma","OK",18978 +2004-06-01,"Electric Power Consumption","Minnesota","MN",703 +2004-06-01,"Electric Power Consumption","Michigan","MI",11622 +2004-06-01,"Electric Power Consumption","Kansas","KS",1212 +2004-06-01,"Electric Power Consumption","Wisconsin","WI",1846 +2004-06-01,"Electric Power Consumption","Pennsylvania","PA",7421 +2004-06-01,"Electric Power Consumption","Delaware","DE",1105 +2004-06-01,"Electric Power Consumption","Georgia","GA",6005 +2004-06-01,"Electric Power Consumption","Florida","FL",59830 +2004-06-01,"Electric Power Consumption","Washington","WA",1511 +2004-06-01,"Electric Power Consumption","Colorado","CO",6707 +2004-06-01,"Electric Power Consumption","South Carolina","SC",2908 +2004-06-01,"Electric Power Consumption","Wyoming","WY",36 +2004-06-01,"Electric Power Consumption","Vermont","VT",22 +2004-06-01,"Electric Power Consumption","Nebraska","NE",603 +2004-06-01,"Electric Power Consumption","Ohio","OH",2668 +2004-06-01,"Electric Power Consumption","Arizona","AZ",24959 +2004-06-01,"Electric Power Consumption","Texas","TX",137272 +2004-06-01,"Electric Power Consumption","Nevada","NV",12911 +2004-06-01,"Electric Power Consumption","Hawaii","HI",0 +2004-06-01,"Electric Power Consumption","Montana","MT",16 +2004-06-01,"Electric Power Consumption","Indiana","IN",1320 +2004-06-01,"Electric Power Consumption","New York","NY",25128 +2004-06-01,"Electric Power Consumption","West Virginia","WV",197 +2004-06-01,"Electric Power Consumption","Maine","ME",5125 +2004-06-01,"Electric Power Consumption","Maryland","MD",1669 +2004-06-01,"Electric Power Consumption","California","CA",56402 +2004-06-01,"Electric Power Consumption","New Mexico","NM",3221 +2004-06-01,"Electric Power Consumption","Oregon","OR",4199 +2004-06-01,"Electric Power Consumption","Idaho","ID",485 +2004-06-01,"Electric Power Consumption","Rhode Island","RI",3842 +2004-06-01,"Electric Power Consumption","Illinois","IL",4378 +2004-06-01,"Electric Power Consumption","Iowa","IA",704 +2004-06-01,"Electric Power Consumption","U.S.","U.S.",508140 +2004-06-01,"Electric Power Consumption","New Hampshire","NH",3457 +2004-06-01,"Electric Power Consumption","North Dakota","ND",0 +2004-06-01,"Electric Power Consumption","Utah","UT",1131 +2004-06-01,"Electric Power Consumption","Massachusetts","MA",14359 +2004-06-01,"Electric Power Consumption","South Dakota","SD",160 +2004-06-01,"Electric Power Consumption","North Carolina","NC",2876 +2004-06-01,"Electric Power Consumption","Missouri","MO",2644 +2004-06-01,"Electric Power Consumption","Kentucky","KY",551 +2004-06-01,"Electric Power Consumption","Connecticut","CT",5783 +2004-06-01,"Electric Power Consumption","Virginia","VA",5257 +2004-06-01,"Electric Power Consumption","New Jersey","NJ",13500 +2004-06-01,"Electric Power Consumption","Arkansas","AR",4978 +2004-06-01,"Electric Power Consumption","Tennessee","TN",160 +2004-06-01,"Electric Power Consumption","Mississippi","MS",11437 +2004-06-01,"Electric Power Consumption","Alabama","AL",11388 +2004-06-01,"Electric Power Consumption","Alaska","AK",3275 +2004-06-01,"Industrial Consumption","North Dakota","ND",720 +2004-06-01,"Industrial Consumption","Arkansas","AR",6903 +2004-06-01,"Industrial Consumption","Nebraska","NE",3188 +2004-06-01,"Industrial Consumption","U.S.","U.S.",562774 +2004-06-01,"Industrial Consumption","Mississippi","MS",8657 +2004-06-01,"Industrial Consumption","Alabama","AL",12878 +2004-06-01,"Industrial Consumption","Iowa","IA",6676 +2004-06-01,"Industrial Consumption","Michigan","MI",14028 +2004-06-01,"Industrial Consumption","Maryland","MD",1943 +2004-06-01,"Industrial Consumption","Hawaii","HI",38 +2004-06-01,"Industrial Consumption","Texas","TX",156942 +2004-06-01,"Industrial Consumption","West Virginia","WV",3002 +2004-06-01,"Industrial Consumption","Tennessee","TN",7359 +2004-06-01,"Industrial Consumption","District of Columbia","DC",0 +2004-06-01,"Industrial Consumption","Montana","MT",1206 +2004-06-01,"Industrial Consumption","Missouri","MO",4624 +2004-06-01,"Industrial Consumption","South Dakota","SD",781 +2004-06-01,"Industrial Consumption","Ohio","OH",19347 +2004-06-01,"Industrial Consumption","New York","NY",5275 +2004-06-01,"Industrial Consumption","Nevada","NV",887 +2004-06-01,"Industrial Consumption","Wyoming","WY",3343 +2004-06-01,"Industrial Consumption","Wisconsin","WI",7904 +2004-06-01,"Industrial Consumption","New Jersey","NJ",5823 +2004-06-01,"Industrial Consumption","Idaho","ID",1885 +2004-06-01,"Industrial Consumption","Connecticut","CT",1342 +2004-06-01,"Industrial Consumption","Kentucky","KY",8413 +2004-06-01,"Industrial Consumption","Illinois","IL",17420 +2004-06-01,"Industrial Consumption","Rhode Island","RI",451 +2004-06-01,"Industrial Consumption","Alaska","AK",5222 +2004-06-01,"Industrial Consumption","Massachusetts","MA",2262 +2004-06-01,"Industrial Consumption","Oklahoma","OK",11641 +2004-06-01,"Industrial Consumption","Louisiana","LA",63882 +2004-06-01,"Industrial Consumption","Oregon","OR",5635 +2004-06-01,"Industrial Consumption","California","CA",67632 +2004-06-01,"Industrial Consumption","New Hampshire","NH",449 +2004-06-01,"Industrial Consumption","Minnesota","MN",7549 +2004-06-01,"Industrial Consumption","Delaware","DE",964 +2004-06-01,"Industrial Consumption","Colorado","CO",7987 +2004-06-01,"Industrial Consumption","Arizona","AZ",1633 +2004-06-01,"Industrial Consumption","Pennsylvania","PA",14380 +2004-06-01,"Industrial Consumption","Maine","ME",941 +2004-06-01,"Industrial Consumption","Florida","FL",4795 +2004-06-01,"Industrial Consumption","Indiana","IN",18264 +2004-06-01,"Industrial Consumption","Washington","WA",4927 +2004-06-01,"Industrial Consumption","Kansas","KS",7713 +2004-06-01,"Industrial Consumption","North Carolina","NC",6572 +2004-06-01,"Industrial Consumption","Georgia","GA",12329 +2004-06-01,"Industrial Consumption","New Mexico","NM",1832 +2004-06-01,"Industrial Consumption","Utah","UT",1892 +2004-06-01,"Industrial Consumption","South Carolina","SC",6047 +2004-06-01,"Industrial Consumption","Virginia","VA",6983 +2004-06-01,"Industrial Consumption","Vermont","VT",208 +2004-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90387 +2004-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",37031 +2004-06-01,"Residential Consumption","South Carolina","SC",556 +2004-06-01,"Residential Consumption","Vermont","VT",98 +2004-06-01,"Residential Consumption","Utah","UT",1328 +2004-06-01,"Residential Consumption","District of Columbia","DC",284 +2004-06-01,"Residential Consumption","Colorado","CO",3512 +2004-06-01,"Residential Consumption","Kansas","KS",1697 +2004-06-01,"Residential Consumption","Delaware","DE",219 +2004-06-01,"Residential Consumption","Virginia","VA",1635 +2004-06-01,"Residential Consumption","Minnesota","MN",3492 +2004-06-01,"Residential Consumption","Georgia","GA",4039 +2004-06-01,"Residential Consumption","North Dakota","ND",270 +2004-06-01,"Residential Consumption","Kentucky","KY",1133 +2004-06-01,"Residential Consumption","Missouri","MO",2880 +2004-06-01,"Residential Consumption","Mississippi","MS",679 +2004-06-01,"Residential Consumption","Louisiana","LA",1643 +2004-06-01,"Residential Consumption","Iowa","IA",1570 +2004-06-01,"Residential Consumption","South Dakota","SD",355 +2004-06-01,"Residential Consumption","Indiana","IN",3050 +2004-06-01,"Residential Consumption","Idaho","ID",713 +2004-06-01,"Residential Consumption","Oklahoma","OK",1753 +2004-06-01,"Residential Consumption","Alabama","AL",1216 +2004-06-01,"Residential Consumption","Texas","TX",6469 +2004-06-01,"Residential Consumption","Oregon","OR",1557 +2004-06-01,"Residential Consumption","Connecticut","CT",1449 +2004-06-01,"Residential Consumption","Wisconsin","WI",3250 +2004-06-01,"Residential Consumption","Maine","ME",32 +2004-06-01,"Residential Consumption","Florida","FL",832 +2004-06-01,"Residential Consumption","Montana","MT",856 +2004-06-01,"Residential Consumption","Alaska","AK",538 +2004-06-01,"Residential Consumption","West Virginia","WV",484 +2004-06-01,"Residential Consumption","Illinois","IL",11154 +2004-06-01,"Residential Consumption","Michigan","MI",9343 +2004-06-01,"Residential Consumption","Washington","WA",2842 +2004-06-01,"Residential Consumption","California","CA",26967 +2004-06-01,"Residential Consumption","U.S.","U.S.",144885 +2004-06-01,"Residential Consumption","Tennessee","TN",1387 +2004-06-01,"Residential Consumption","Maryland","MD",1657 +2004-06-01,"Residential Consumption","Pennsylvania","PA",6559 +2004-06-01,"Residential Consumption","New Jersey","NJ",6026 +2004-06-01,"Residential Consumption","Ohio","OH",6750 +2004-06-01,"Residential Consumption","North Carolina","NC",1228 +2004-06-01,"Residential Consumption","Hawaii","HI",42 +2004-06-01,"Residential Consumption","Nevada","NV",1419 +2004-06-01,"Residential Consumption","New Mexico","NM",996 +2004-06-01,"Residential Consumption","Massachusetts","MA",3434 +2004-06-01,"Residential Consumption","Arkansas","AR",863 +2004-06-01,"Residential Consumption","New Hampshire","NH",203 +2004-06-01,"Residential Consumption","Arizona","AZ",1254 +2004-06-01,"Residential Consumption","Wyoming","WY",419 +2004-06-01,"Residential Consumption","Rhode Island","RI",643 +2004-06-01,"Residential Consumption","Nebraska","NE",1051 +2004-06-01,"Residential Consumption","New York","NY",13061 +2004-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",1681 +2004-07-01,"Commercial Consumption","West Virginia","WV",1056 +2004-07-01,"Commercial Consumption","Colorado","CO",1923 +2004-07-01,"Commercial Consumption","Pennsylvania","PA",4139 +2004-07-01,"Commercial Consumption","New Jersey","NJ",7004 +2004-07-01,"Commercial Consumption","Maine","ME",187 +2004-07-01,"Commercial Consumption","Maryland","MD",2878 +2004-07-01,"Commercial Consumption","California","CA",14895 +2004-07-01,"Commercial Consumption","Arkansas","AR",1308 +2004-07-01,"Commercial Consumption","Mississippi","MS",1086 +2004-07-01,"Commercial Consumption","Nevada","NV",1562 +2004-07-01,"Commercial Consumption","Kentucky","KY",1135 +2004-07-01,"Commercial Consumption","Iowa","IA",1262 +2004-07-01,"Commercial Consumption","New York","NY",17228 +2004-07-01,"Commercial Consumption","Nebraska","NE",1191 +2004-07-01,"Commercial Consumption","Illinois","IL",7277 +2004-07-01,"Commercial Consumption","South Carolina","SC",1158 +2004-07-01,"Commercial Consumption","North Dakota","ND",277 +2004-07-01,"Commercial Consumption","New Mexico","NM",937 +2004-07-01,"Commercial Consumption","Wisconsin","WI",2359 +2004-07-01,"Commercial Consumption","Texas","TX",10937 +2004-07-01,"Commercial Consumption","Connecticut","CT",1387 +2004-07-01,"Commercial Consumption","Oklahoma","OK",1360 +2004-07-01,"Commercial Consumption","Vermont","VT",76 +2004-07-01,"Commercial Consumption","Arizona","AZ",1922 +2004-07-01,"Commercial Consumption","Michigan","MI",5117 +2004-07-01,"Commercial Consumption","District of Columbia","DC",740 +2004-07-01,"Commercial Consumption","Wyoming","WY",319 +2004-07-01,"Commercial Consumption","U.S.","U.S.",128669 +2004-07-01,"Commercial Consumption","Ohio","OH",4842 +2004-07-01,"Commercial Consumption","Delaware","DE",271 +2004-07-01,"Commercial Consumption","Tennessee","TN",2289 +2004-07-01,"Commercial Consumption","North Carolina","NC",1949 +2004-07-01,"Commercial Consumption","Oregon","OR",978 +2004-07-01,"Commercial Consumption","Massachusetts","MA",2296 +2004-07-01,"Commercial Consumption","South Dakota","SD",269 +2004-07-01,"Commercial Consumption","Florida","FL",3866 +2004-07-01,"Commercial Consumption","Rhode Island","RI",297 +2004-07-01,"Commercial Consumption","Louisiana","LA",1423 +2004-07-01,"Commercial Consumption","Washington","WA",2062 +2004-07-01,"Commercial Consumption","Utah","UT",606 +2004-07-01,"Commercial Consumption","Missouri","MO",2072 +2004-07-01,"Commercial Consumption","Montana","MT",456 +2004-07-01,"Commercial Consumption","Kansas","KS",1503 +2004-07-01,"Commercial Consumption","Alaska","AK",697 +2004-07-01,"Commercial Consumption","Alabama","AL",1515 +2004-07-01,"Commercial Consumption","Minnesota","MN",2870 +2004-07-01,"Commercial Consumption","Virginia","VA",2354 +2004-07-01,"Commercial Consumption","New Hampshire","NH",297 +2004-07-01,"Commercial Consumption","Georgia","GA",2094 +2004-07-01,"Commercial Consumption","Idaho","ID",410 +2004-07-01,"Commercial Consumption","Hawaii","HI",147 +2004-07-01,"Commercial Consumption","Indiana","IN",2385 +2004-07-01,"Delivered to Consumers","Utah","UT",6398 +2004-07-01,"Delivered to Consumers","Oklahoma","OK",39855 +2004-07-01,"Delivered to Consumers","Arkansas","AR",14456 +2004-07-01,"Delivered to Consumers","Oregon","OR",16235 +2004-07-01,"Delivered to Consumers","Louisiana","LA",96344 +2004-07-01,"Delivered to Consumers","Georgia","GA",26132 +2004-07-01,"Delivered to Consumers","Illinois","IL",40176 +2004-07-01,"Delivered to Consumers","New York","NY",59080 +2004-07-01,"Delivered to Consumers","Massachusetts","MA",23202 +2004-07-01,"Delivered to Consumers","Nevada","NV",20333 +2004-07-01,"Delivered to Consumers","Washington","WA",16510 +2004-07-01,"Delivered to Consumers","U.S.","U.S.",1452339 +2004-07-01,"Delivered to Consumers","Delaware","DE",2620 +2004-07-01,"Delivered to Consumers","Maryland","MD",7704 +2004-07-01,"Delivered to Consumers","Alaska","AK",9829 +2004-07-01,"Delivered to Consumers","Connecticut","CT",10184 +2004-07-01,"Delivered to Consumers","Mississippi","MS",24034 +2004-07-01,"Delivered to Consumers","Arizona","AZ",35860 +2004-07-01,"Delivered to Consumers","New Mexico","NM",7566 +2004-07-01,"Delivered to Consumers","South Dakota","SD",1686 +2004-07-01,"Delivered to Consumers","Idaho","ID",3672 +2004-07-01,"Delivered to Consumers","Ohio","OH",34567 +2004-07-01,"Delivered to Consumers","Kentucky","KY",10810 +2004-07-01,"Delivered to Consumers","Pennsylvania","PA",36047 +2004-07-01,"Delivered to Consumers","New Hampshire","NH",4167 +2004-07-01,"Delivered to Consumers","Minnesota","MN",14126 +2004-07-01,"Delivered to Consumers","Florida","FL",72443 +2004-07-01,"Delivered to Consumers","Hawaii","HI",229 +2004-07-01,"Delivered to Consumers","South Carolina","SC",12311 +2004-07-01,"Delivered to Consumers","New Jersey","NJ",33345 +2004-07-01,"Delivered to Consumers","North Dakota","ND",1207 +2004-07-01,"Delivered to Consumers","District of Columbia","DC",985 +2004-07-01,"Delivered to Consumers","Kansas","KS",11912 +2004-07-01,"Delivered to Consumers","Iowa","IA",9546 +2004-07-01,"Delivered to Consumers","Virginia","VA",15667 +2004-07-01,"Delivered to Consumers","Maine","ME",6648 +2004-07-01,"Delivered to Consumers","West Virginia","WV",4621 +2004-07-01,"Delivered to Consumers","Montana","MT",2154 +2004-07-01,"Delivered to Consumers","Tennessee","TN",10988 +2004-07-01,"Delivered to Consumers","Wisconsin","WI",15949 +2004-07-01,"Delivered to Consumers","Nebraska","NE",6952 +2004-07-01,"Delivered to Consumers","North Carolina","NC",12866 +2004-07-01,"Delivered to Consumers","Missouri","MO",12556 +2004-07-01,"Delivered to Consumers","Colorado","CO",22895 +2004-07-01,"Delivered to Consumers","California","CA",190886 +2004-07-01,"Delivered to Consumers","Indiana","IN",25592 +2004-07-01,"Delivered to Consumers","Wyoming","WY",4064 +2004-07-01,"Delivered to Consumers","Vermont","VT",331 +2004-07-01,"Delivered to Consumers","Rhode Island","RI",4296 +2004-07-01,"Delivered to Consumers","Michigan","MI",38001 +2004-07-01,"Delivered to Consumers","Alabama","AL",32691 +2004-07-01,"Delivered to Consumers","Texas","TX",339873 +2004-07-01,"Electric Power Consumption","Washington","WA",7909 +2004-07-01,"Electric Power Consumption","New Jersey","NJ",15358 +2004-07-01,"Electric Power Consumption","Louisiana","LA",24790 +2004-07-01,"Electric Power Consumption","Oregon","OR",8724 +2004-07-01,"Electric Power Consumption","Minnesota","MN",1652 +2004-07-01,"Electric Power Consumption","Pennsylvania","PA",12436 +2004-07-01,"Electric Power Consumption","Wyoming","WY",41 +2004-07-01,"Electric Power Consumption","Iowa","IA",788 +2004-07-01,"Electric Power Consumption","Kentucky","KY",511 +2004-07-01,"Electric Power Consumption","Arizona","AZ",31355 +2004-07-01,"Electric Power Consumption","Florida","FL",62865 +2004-07-01,"Electric Power Consumption","Indiana","IN",2176 +2004-07-01,"Electric Power Consumption","Connecticut","CT",6418 +2004-07-01,"Electric Power Consumption","California","CA",84330 +2004-07-01,"Electric Power Consumption","Alaska","AK",3317 +2004-07-01,"Electric Power Consumption","Colorado","CO",9675 +2004-07-01,"Electric Power Consumption","Arkansas","AR",5639 +2004-07-01,"Electric Power Consumption","Kansas","KS",902 +2004-07-01,"Electric Power Consumption","Nevada","NV",16687 +2004-07-01,"Electric Power Consumption","Tennessee","TN",239 +2004-07-01,"Electric Power Consumption","Missouri","MO",3916 +2004-07-01,"Electric Power Consumption","North Dakota","ND",0 +2004-07-01,"Electric Power Consumption","Montana","MT",16 +2004-07-01,"Electric Power Consumption","Delaware","DE",1129 +2004-07-01,"Electric Power Consumption","Alabama","AL",17481 +2004-07-01,"Electric Power Consumption","Idaho","ID",1078 +2004-07-01,"Electric Power Consumption","Rhode Island","RI",3174 +2004-07-01,"Electric Power Consumption","Utah","UT",1597 +2004-07-01,"Electric Power Consumption","Massachusetts","MA",15301 +2004-07-01,"Electric Power Consumption","U.S.","U.S.",626401 +2004-07-01,"Electric Power Consumption","Nebraska","NE",487 +2004-07-01,"Electric Power Consumption","North Carolina","NC",3827 +2004-07-01,"Electric Power Consumption","Hawaii","HI",0 +2004-07-01,"Electric Power Consumption","New Hampshire","NH",3174 +2004-07-01,"Electric Power Consumption","Michigan","MI",11757 +2004-07-01,"Electric Power Consumption","West Virginia","WV",82 +2004-07-01,"Electric Power Consumption","Mississippi","MS",13889 +2004-07-01,"Electric Power Consumption","Ohio","OH",2843 +2004-07-01,"Electric Power Consumption","Virginia","VA",6805 +2004-07-01,"Electric Power Consumption","New Mexico","NM",3879 +2004-07-01,"Electric Power Consumption","New York","NY",26901 +2004-07-01,"Electric Power Consumption","Illinois","IL",5391 +2004-07-01,"Electric Power Consumption","Vermont","VT",5 +2004-07-01,"Electric Power Consumption","South Carolina","SC",4599 +2004-07-01,"Electric Power Consumption","Texas","TX",160095 +2004-07-01,"Electric Power Consumption","Oklahoma","OK",25654 +2004-07-01,"Electric Power Consumption","Wisconsin","WI",2419 +2004-07-01,"Electric Power Consumption","South Dakota","SD",447 +2004-07-01,"Electric Power Consumption","Maine","ME",5323 +2004-07-01,"Electric Power Consumption","Maryland","MD",1400 +2004-07-01,"Electric Power Consumption","Georgia","GA",7918 +2004-07-01,"Industrial Consumption","Alabama","AL",12557 +2004-07-01,"Industrial Consumption","Iowa","IA",6354 +2004-07-01,"Industrial Consumption","Connecticut","CT",1330 +2004-07-01,"Industrial Consumption","Kentucky","KY",8094 +2004-07-01,"Industrial Consumption","Illinois","IL",17806 +2004-07-01,"Industrial Consumption","Delaware","DE",1027 +2004-07-01,"Industrial Consumption","Washington","WA",4679 +2004-07-01,"Industrial Consumption","Arizona","AZ",1455 +2004-07-01,"Industrial Consumption","Utah","UT",2588 +2004-07-01,"Industrial Consumption","New York","NY",5038 +2004-07-01,"Industrial Consumption","New Jersey","NJ",5549 +2004-07-01,"Industrial Consumption","Minnesota","MN",6968 +2004-07-01,"Industrial Consumption","Florida","FL",4979 +2004-07-01,"Industrial Consumption","Maryland","MD",1767 +2004-07-01,"Industrial Consumption","Oklahoma","OK",11355 +2004-07-01,"Industrial Consumption","Missouri","MO",4193 +2004-07-01,"Industrial Consumption","Kansas","KS",8023 +2004-07-01,"Industrial Consumption","Oregon","OR",5527 +2004-07-01,"Industrial Consumption","California","CA",67551 +2004-07-01,"Industrial Consumption","Nebraska","NE",4366 +2004-07-01,"Industrial Consumption","Georgia","GA",12563 +2004-07-01,"Industrial Consumption","Massachusetts","MA",1946 +2004-07-01,"Industrial Consumption","Texas","TX",162747 +2004-07-01,"Industrial Consumption","South Carolina","SC",6054 +2004-07-01,"Industrial Consumption","West Virginia","WV",2997 +2004-07-01,"Industrial Consumption","Rhode Island","RI",329 +2004-07-01,"Industrial Consumption","South Dakota","SD",768 +2004-07-01,"Industrial Consumption","District of Columbia","DC",0 +2004-07-01,"Industrial Consumption","Louisiana","LA",68547 +2004-07-01,"Industrial Consumption","Colorado","CO",8460 +2004-07-01,"Industrial Consumption","Ohio","OH",20217 +2004-07-01,"Industrial Consumption","U.S.","U.S.",570650 +2004-07-01,"Industrial Consumption","Mississippi","MS",8384 +2004-07-01,"Industrial Consumption","Maine","ME",1111 +2004-07-01,"Industrial Consumption","Virginia","VA",5094 +2004-07-01,"Industrial Consumption","Vermont","VT",181 +2004-07-01,"Industrial Consumption","Michigan","MI",13355 +2004-07-01,"Industrial Consumption","Indiana","IN",18325 +2004-07-01,"Industrial Consumption","Montana","MT",1129 +2004-07-01,"Industrial Consumption","New Mexico","NM",1880 +2004-07-01,"Industrial Consumption","Pennsylvania","PA",14436 +2004-07-01,"Industrial Consumption","Arkansas","AR",6708 +2004-07-01,"Industrial Consumption","Wyoming","WY",3398 +2004-07-01,"Industrial Consumption","New Hampshire","NH",533 +2004-07-01,"Industrial Consumption","Idaho","ID",1724 +2004-07-01,"Industrial Consumption","North Carolina","NC",5975 +2004-07-01,"Industrial Consumption","Alaska","AK",5348 +2004-07-01,"Industrial Consumption","North Dakota","ND",729 +2004-07-01,"Industrial Consumption","Hawaii","HI",38 +2004-07-01,"Industrial Consumption","Nevada","NV",894 +2004-07-01,"Industrial Consumption","Wisconsin","WI",8373 +2004-07-01,"Industrial Consumption","Tennessee","TN",7202 +2004-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92943 +2004-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",39651 +2004-07-01,"Residential Consumption","Rhode Island","RI",495 +2004-07-01,"Residential Consumption","North Carolina","NC",1115 +2004-07-01,"Residential Consumption","Louisiana","LA",1584 +2004-07-01,"Residential Consumption","Washington","WA",1860 +2004-07-01,"Residential Consumption","U.S.","U.S.",124882 +2004-07-01,"Residential Consumption","Mississippi","MS",675 +2004-07-01,"Residential Consumption","Connecticut","CT",1049 +2004-07-01,"Residential Consumption","Vermont","VT",68 +2004-07-01,"Residential Consumption","Maryland","MD",1659 +2004-07-01,"Residential Consumption","Massachusetts","MA",3659 +2004-07-01,"Residential Consumption","Ohio","OH",6665 +2004-07-01,"Residential Consumption","Nebraska","NE",908 +2004-07-01,"Residential Consumption","Pennsylvania","PA",5036 +2004-07-01,"Residential Consumption","Indiana","IN",2705 +2004-07-01,"Residential Consumption","Idaho","ID",461 +2004-07-01,"Residential Consumption","Delaware","DE",193 +2004-07-01,"Residential Consumption","Alabama","AL",1138 +2004-07-01,"Residential Consumption","Iowa","IA",1142 +2004-07-01,"Residential Consumption","Arkansas","AR",802 +2004-07-01,"Residential Consumption","Texas","TX",6094 +2004-07-01,"Residential Consumption","South Carolina","SC",500 +2004-07-01,"Residential Consumption","Wisconsin","WI",2798 +2004-07-01,"Residential Consumption","Tennessee","TN",1258 +2004-07-01,"Residential Consumption","Virginia","VA",1414 +2004-07-01,"Residential Consumption","Nevada","NV",1190 +2004-07-01,"Residential Consumption","Missouri","MO",2374 +2004-07-01,"Residential Consumption","Illinois","IL",9702 +2004-07-01,"Residential Consumption","South Dakota","SD",201 +2004-07-01,"Residential Consumption","Montana","MT",553 +2004-07-01,"Residential Consumption","Kentucky","KY",1070 +2004-07-01,"Residential Consumption","Kansas","KS",1483 +2004-07-01,"Residential Consumption","Arizona","AZ",1128 +2004-07-01,"Residential Consumption","Hawaii","HI",44 +2004-07-01,"Residential Consumption","Utah","UT",1607 +2004-07-01,"Residential Consumption","Michigan","MI",7772 +2004-07-01,"Residential Consumption","Minnesota","MN",2637 +2004-07-01,"Residential Consumption","Georgia","GA",3556 +2004-07-01,"Residential Consumption","New Mexico","NM",870 +2004-07-01,"Residential Consumption","New Jersey","NJ",5433 +2004-07-01,"Residential Consumption","New Hampshire","NH",163 +2004-07-01,"Residential Consumption","Oklahoma","OK",1488 +2004-07-01,"Residential Consumption","Wyoming","WY",306 +2004-07-01,"Residential Consumption","West Virginia","WV",486 +2004-07-01,"Residential Consumption","Oregon","OR",1006 +2004-07-01,"Residential Consumption","District of Columbia","DC",245 +2004-07-01,"Residential Consumption","Maine","ME",28 +2004-07-01,"Residential Consumption","Florida","FL",733 +2004-07-01,"Residential Consumption","North Dakota","ND",201 +2004-07-01,"Residential Consumption","Colorado","CO",2837 +2004-07-01,"Residential Consumption","California","CA",24110 +2004-07-01,"Residential Consumption","Alaska","AK",467 +2004-07-01,"Residential Consumption","New York","NY",9913 +2004-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",1737 +2004-08-01,"Commercial Consumption","North Dakota","ND",321 +2004-08-01,"Commercial Consumption","North Carolina","NC",2038 +2004-08-01,"Commercial Consumption","Pennsylvania","PA",4160 +2004-08-01,"Commercial Consumption","South Dakota","SD",300 +2004-08-01,"Commercial Consumption","Georgia","GA",2145 +2004-08-01,"Commercial Consumption","Delaware","DE",292 +2004-08-01,"Commercial Consumption","Minnesota","MN",3047 +2004-08-01,"Commercial Consumption","Oregon","OR",896 +2004-08-01,"Commercial Consumption","Virginia","VA",2637 +2004-08-01,"Commercial Consumption","New Jersey","NJ",7656 +2004-08-01,"Commercial Consumption","New Hampshire","NH",303 +2004-08-01,"Commercial Consumption","Kentucky","KY",1143 +2004-08-01,"Commercial Consumption","U.S.","U.S.",128662 +2004-08-01,"Commercial Consumption","Kansas","KS",919 +2004-08-01,"Commercial Consumption","Florida","FL",3925 +2004-08-01,"Commercial Consumption","Rhode Island","RI",262 +2004-08-01,"Commercial Consumption","California","CA",15212 +2004-08-01,"Commercial Consumption","West Virginia","WV",1089 +2004-08-01,"Commercial Consumption","South Carolina","SC",1180 +2004-08-01,"Commercial Consumption","Massachusetts","MA",2032 +2004-08-01,"Commercial Consumption","Iowa","IA",1422 +2004-08-01,"Commercial Consumption","Hawaii","HI",144 +2004-08-01,"Commercial Consumption","Ohio","OH",4785 +2004-08-01,"Commercial Consumption","Alaska","AK",676 +2004-08-01,"Commercial Consumption","New York","NY",16525 +2004-08-01,"Commercial Consumption","Tennessee","TN",2188 +2004-08-01,"Commercial Consumption","Nevada","NV",1426 +2004-08-01,"Commercial Consumption","Louisiana","LA",1281 +2004-08-01,"Commercial Consumption","Wisconsin","WI",2390 +2004-08-01,"Commercial Consumption","Maine","ME",205 +2004-08-01,"Commercial Consumption","Maryland","MD",3203 +2004-08-01,"Commercial Consumption","Arkansas","AR",1354 +2004-08-01,"Commercial Consumption","Indiana","IN",2533 +2004-08-01,"Commercial Consumption","District of Columbia","DC",794 +2004-08-01,"Commercial Consumption","Washington","WA",1857 +2004-08-01,"Commercial Consumption","Oklahoma","OK",1438 +2004-08-01,"Commercial Consumption","Missouri","MO",2052 +2004-08-01,"Commercial Consumption","Nebraska","NE",1071 +2004-08-01,"Commercial Consumption","Arizona","AZ",1835 +2004-08-01,"Commercial Consumption","Illinois","IL",7256 +2004-08-01,"Commercial Consumption","New Mexico","NM",894 +2004-08-01,"Commercial Consumption","Texas","TX",10345 +2004-08-01,"Commercial Consumption","Vermont","VT",78 +2004-08-01,"Commercial Consumption","Alabama","AL",1255 +2004-08-01,"Commercial Consumption","Mississippi","MS",1062 +2004-08-01,"Commercial Consumption","Michigan","MI",5282 +2004-08-01,"Commercial Consumption","Wyoming","WY",337 +2004-08-01,"Commercial Consumption","Colorado","CO",2214 +2004-08-01,"Commercial Consumption","Utah","UT",982 +2004-08-01,"Commercial Consumption","Montana","MT",423 +2004-08-01,"Commercial Consumption","Idaho","ID",415 +2004-08-01,"Commercial Consumption","Connecticut","CT",1386 +2004-08-01,"Delivered to Consumers","New Mexico","NM",6560 +2004-08-01,"Delivered to Consumers","South Dakota","SD",1576 +2004-08-01,"Delivered to Consumers","Montana","MT",2098 +2004-08-01,"Delivered to Consumers","Oklahoma","OK",38791 +2004-08-01,"Delivered to Consumers","Tennessee","TN",11553 +2004-08-01,"Delivered to Consumers","Arkansas","AR",14551 +2004-08-01,"Delivered to Consumers","Missouri","MO",11676 +2004-08-01,"Delivered to Consumers","Massachusetts","MA",21585 +2004-08-01,"Delivered to Consumers","California","CA",192642 +2004-08-01,"Delivered to Consumers","Utah","UT",5617 +2004-08-01,"Delivered to Consumers","U.S.","U.S.",1445892 +2004-08-01,"Delivered to Consumers","Vermont","VT",342 +2004-08-01,"Delivered to Consumers","Iowa","IA",10080 +2004-08-01,"Delivered to Consumers","Oregon","OR",16733 +2004-08-01,"Delivered to Consumers","Wyoming","WY",4187 +2004-08-01,"Delivered to Consumers","New York","NY",60352 +2004-08-01,"Delivered to Consumers","Alaska","AK",8537 +2004-08-01,"Delivered to Consumers","Idaho","ID",3601 +2004-08-01,"Delivered to Consumers","Virginia","VA",17654 +2004-08-01,"Delivered to Consumers","Pennsylvania","PA",33735 +2004-08-01,"Delivered to Consumers","Colorado","CO",21210 +2004-08-01,"Delivered to Consumers","Texas","TX",336875 +2004-08-01,"Delivered to Consumers","Louisiana","LA",98583 +2004-08-01,"Delivered to Consumers","Washington","WA",17954 +2004-08-01,"Delivered to Consumers","District of Columbia","DC",1168 +2004-08-01,"Delivered to Consumers","Hawaii","HI",222 +2004-08-01,"Delivered to Consumers","Maine","ME",7333 +2004-08-01,"Delivered to Consumers","Minnesota","MN",13324 +2004-08-01,"Delivered to Consumers","Florida","FL",70540 +2004-08-01,"Delivered to Consumers","Illinois","IL",39133 +2004-08-01,"Delivered to Consumers","Rhode Island","RI",4885 +2004-08-01,"Delivered to Consumers","Maryland","MD",8271 +2004-08-01,"Delivered to Consumers","Alabama","AL",29710 +2004-08-01,"Delivered to Consumers","Arizona","AZ",33244 +2004-08-01,"Delivered to Consumers","Kentucky","KY",11428 +2004-08-01,"Delivered to Consumers","South Carolina","SC",13363 +2004-08-01,"Delivered to Consumers","Nevada","NV",19864 +2004-08-01,"Delivered to Consumers","New Hampshire","NH",4306 +2004-08-01,"Delivered to Consumers","West Virginia","WV",4572 +2004-08-01,"Delivered to Consumers","Kansas","KS",13013 +2004-08-01,"Delivered to Consumers","Ohio","OH",34689 +2004-08-01,"Delivered to Consumers","Michigan","MI",37565 +2004-08-01,"Delivered to Consumers","Connecticut","CT",10663 +2004-08-01,"Delivered to Consumers","Nebraska","NE",6641 +2004-08-01,"Delivered to Consumers","Mississippi","MS",23064 +2004-08-01,"Delivered to Consumers","New Jersey","NJ",34799 +2004-08-01,"Delivered to Consumers","North Dakota","ND",1858 +2004-08-01,"Delivered to Consumers","Indiana","IN",27498 +2004-08-01,"Delivered to Consumers","Delaware","DE",2437 +2004-08-01,"Delivered to Consumers","Wisconsin","WI",14951 +2004-08-01,"Delivered to Consumers","North Carolina","NC",13027 +2004-08-01,"Delivered to Consumers","Georgia","GA",26093 +2004-08-01,"Electric Power Consumption","Kansas","KS",1827 +2004-08-01,"Electric Power Consumption","Nevada","NV",16518 +2004-08-01,"Electric Power Consumption","Iowa","IA",657 +2004-08-01,"Electric Power Consumption","Vermont","VT",3 +2004-08-01,"Electric Power Consumption","Maine","ME",6042 +2004-08-01,"Electric Power Consumption","Kentucky","KY",526 +2004-08-01,"Electric Power Consumption","Oregon","OR",9401 +2004-08-01,"Electric Power Consumption","Pennsylvania","PA",10361 +2004-08-01,"Electric Power Consumption","South Dakota","SD",246 +2004-08-01,"Electric Power Consumption","Georgia","GA",7322 +2004-08-01,"Electric Power Consumption","Texas","TX",157525 +2004-08-01,"Electric Power Consumption","Utah","UT",1604 +2004-08-01,"Electric Power Consumption","Delaware","DE",1055 +2004-08-01,"Electric Power Consumption","Arkansas","AR",5291 +2004-08-01,"Electric Power Consumption","South Carolina","SC",5291 +2004-08-01,"Electric Power Consumption","New York","NY",29436 +2004-08-01,"Electric Power Consumption","Massachusetts","MA",15055 +2004-08-01,"Electric Power Consumption","Hawaii","HI",0 +2004-08-01,"Electric Power Consumption","Ohio","OH",2634 +2004-08-01,"Electric Power Consumption","Maryland","MD",1334 +2004-08-01,"Electric Power Consumption","Arizona","AZ",28859 +2004-08-01,"Electric Power Consumption","Florida","FL",60783 +2004-08-01,"Electric Power Consumption","Louisiana","LA",27960 +2004-08-01,"Electric Power Consumption","Colorado","CO",7902 +2004-08-01,"Electric Power Consumption","Minnesota","MN",402 +2004-08-01,"Electric Power Consumption","Michigan","MI",11929 +2004-08-01,"Electric Power Consumption","Wyoming","WY",38 +2004-08-01,"Electric Power Consumption","U.S.","U.S.",612571 +2004-08-01,"Electric Power Consumption","Missouri","MO",2985 +2004-08-01,"Electric Power Consumption","New Hampshire","NH",3285 +2004-08-01,"Electric Power Consumption","Virginia","VA",7343 +2004-08-01,"Electric Power Consumption","Illinois","IL",4356 +2004-08-01,"Electric Power Consumption","Tennessee","TN",206 +2004-08-01,"Electric Power Consumption","Washington","WA",9321 +2004-08-01,"Electric Power Consumption","New Jersey","NJ",16351 +2004-08-01,"Electric Power Consumption","Idaho","ID",1172 +2004-08-01,"Electric Power Consumption","Oklahoma","OK",24300 +2004-08-01,"Electric Power Consumption","West Virginia","WV",86 +2004-08-01,"Electric Power Consumption","Nebraska","NE",314 +2004-08-01,"Electric Power Consumption","North Carolina","NC",3531 +2004-08-01,"Electric Power Consumption","Montana","MT",16 +2004-08-01,"Electric Power Consumption","Alabama","AL",14662 +2004-08-01,"Electric Power Consumption","Alaska","AK",2960 +2004-08-01,"Electric Power Consumption","New Mexico","NM",3130 +2004-08-01,"Electric Power Consumption","Rhode Island","RI",3864 +2004-08-01,"Electric Power Consumption","Wisconsin","WI",1216 +2004-08-01,"Electric Power Consumption","Mississippi","MS",12823 +2004-08-01,"Electric Power Consumption","North Dakota","ND",0 +2004-08-01,"Electric Power Consumption","Indiana","IN",2179 +2004-08-01,"Electric Power Consumption","Connecticut","CT",6918 +2004-08-01,"Electric Power Consumption","California","CA",81551 +2004-08-01,"Industrial Consumption","Maryland","MD",1711 +2004-08-01,"Industrial Consumption","South Dakota","SD",774 +2004-08-01,"Industrial Consumption","Nevada","NV",837 +2004-08-01,"Industrial Consumption","Mississippi","MS",8535 +2004-08-01,"Industrial Consumption","Texas","TX",163394 +2004-08-01,"Industrial Consumption","Virginia","VA",5890 +2004-08-01,"Industrial Consumption","North Carolina","NC",6411 +2004-08-01,"Industrial Consumption","Alaska","AK",4387 +2004-08-01,"Industrial Consumption","Louisiana","LA",67912 +2004-08-01,"Industrial Consumption","Colorado","CO",8200 +2004-08-01,"Industrial Consumption","Washington","WA",5178 +2004-08-01,"Industrial Consumption","South Carolina","SC",6413 +2004-08-01,"Industrial Consumption","Iowa","IA",6568 +2004-08-01,"Industrial Consumption","Kentucky","KY",8712 +2004-08-01,"Industrial Consumption","Missouri","MO",4543 +2004-08-01,"Industrial Consumption","Oregon","OR",5637 +2004-08-01,"Industrial Consumption","Vermont","VT",196 +2004-08-01,"Industrial Consumption","Wisconsin","WI",8719 +2004-08-01,"Industrial Consumption","Tennessee","TN",7978 +2004-08-01,"Industrial Consumption","New Hampshire","NH",540 +2004-08-01,"Industrial Consumption","Minnesota","MN",6623 +2004-08-01,"Industrial Consumption","Connecticut","CT",1300 +2004-08-01,"Industrial Consumption","Rhode Island","RI",332 +2004-08-01,"Industrial Consumption","Hawaii","HI",38 +2004-08-01,"Industrial Consumption","U.S.","U.S.",583113 +2004-08-01,"Industrial Consumption","New York","NY",5033 +2004-08-01,"Industrial Consumption","California","CA",73433 +2004-08-01,"Industrial Consumption","Arkansas","AR",7128 +2004-08-01,"Industrial Consumption","Nebraska","NE",4402 +2004-08-01,"Industrial Consumption","Kansas","KS",8936 +2004-08-01,"Industrial Consumption","Arizona","AZ",1500 +2004-08-01,"Industrial Consumption","New Jersey","NJ",5364 +2004-08-01,"Industrial Consumption","Georgia","GA",12941 +2004-08-01,"Industrial Consumption","New Mexico","NM",1700 +2004-08-01,"Industrial Consumption","West Virginia","WV",2949 +2004-08-01,"Industrial Consumption","Wyoming","WY",3533 +2004-08-01,"Industrial Consumption","Michigan","MI",13293 +2004-08-01,"Industrial Consumption","Illinois","IL",17754 +2004-08-01,"Industrial Consumption","Delaware","DE",911 +2004-08-01,"Industrial Consumption","District of Columbia","DC",0 +2004-08-01,"Industrial Consumption","North Dakota","ND",1307 +2004-08-01,"Industrial Consumption","Montana","MT",1277 +2004-08-01,"Industrial Consumption","Massachusetts","MA",1570 +2004-08-01,"Industrial Consumption","Oklahoma","OK",11723 +2004-08-01,"Industrial Consumption","Ohio","OH",21268 +2004-08-01,"Industrial Consumption","Pennsylvania","PA",14532 +2004-08-01,"Industrial Consumption","Maine","ME",1057 +2004-08-01,"Industrial Consumption","Florida","FL",5118 +2004-08-01,"Industrial Consumption","Indiana","IN",19767 +2004-08-01,"Industrial Consumption","Utah","UT",1446 +2004-08-01,"Industrial Consumption","Alabama","AL",12722 +2004-08-01,"Industrial Consumption","Idaho","ID",1618 +2004-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92594 +2004-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",39477 +2004-08-01,"Residential Consumption","Hawaii","HI",40 +2004-08-01,"Residential Consumption","Virginia","VA",1784 +2004-08-01,"Residential Consumption","Pennsylvania","PA",4682 +2004-08-01,"Residential Consumption","Maine","ME",28 +2004-08-01,"Residential Consumption","Idaho","ID",395 +2004-08-01,"Residential Consumption","Wyoming","WY",278 +2004-08-01,"Residential Consumption","Texas","TX",5611 +2004-08-01,"Residential Consumption","Oregon","OR",799 +2004-08-01,"Residential Consumption","North Carolina","NC",1047 +2004-08-01,"Residential Consumption","Tennessee","TN",1182 +2004-08-01,"Residential Consumption","Utah","UT",1585 +2004-08-01,"Residential Consumption","Indiana","IN",3019 +2004-08-01,"Residential Consumption","Montana","MT",382 +2004-08-01,"Residential Consumption","Missouri","MO",2096 +2004-08-01,"Residential Consumption","Delaware","DE",180 +2004-08-01,"Residential Consumption","Alabama","AL",1072 +2004-08-01,"Residential Consumption","South Carolina","SC",479 +2004-08-01,"Residential Consumption","Iowa","IA",1433 +2004-08-01,"Residential Consumption","Wisconsin","WI",2627 +2004-08-01,"Residential Consumption","Massachusetts","MA",2928 +2004-08-01,"Residential Consumption","New Jersey","NJ",5428 +2004-08-01,"Residential Consumption","Kentucky","KY",1048 +2004-08-01,"Residential Consumption","Oklahoma","OK",1331 +2004-08-01,"Residential Consumption","Illinois","IL",9767 +2004-08-01,"Residential Consumption","Connecticut","CT",1060 +2004-08-01,"Residential Consumption","Georgia","GA",3685 +2004-08-01,"Residential Consumption","Alaska","AK",513 +2004-08-01,"Residential Consumption","West Virginia","WV",449 +2004-08-01,"Residential Consumption","Louisiana","LA",1430 +2004-08-01,"Residential Consumption","Vermont","VT",64 +2004-08-01,"Residential Consumption","Nebraska","NE",854 +2004-08-01,"Residential Consumption","Michigan","MI",7060 +2004-08-01,"Residential Consumption","Maryland","MD",2023 +2004-08-01,"Residential Consumption","South Dakota","SD",255 +2004-08-01,"Residential Consumption","Nevada","NV",1083 +2004-08-01,"Residential Consumption","California","CA",22446 +2004-08-01,"Residential Consumption","Arizona","AZ",1050 +2004-08-01,"Residential Consumption","New York","NY",9358 +2004-08-01,"Residential Consumption","Rhode Island","RI",427 +2004-08-01,"Residential Consumption","Mississippi","MS",644 +2004-08-01,"Residential Consumption","District of Columbia","DC",374 +2004-08-01,"Residential Consumption","New Mexico","NM",836 +2004-08-01,"Residential Consumption","New Hampshire","NH",178 +2004-08-01,"Residential Consumption","Colorado","CO",2893 +2004-08-01,"Residential Consumption","Kansas","KS",1331 +2004-08-01,"Residential Consumption","Ohio","OH",6002 +2004-08-01,"Residential Consumption","Arkansas","AR",778 +2004-08-01,"Residential Consumption","Washington","WA",1598 +2004-08-01,"Residential Consumption","Minnesota","MN",3253 +2004-08-01,"Residential Consumption","Florida","FL",713 +2004-08-01,"Residential Consumption","North Dakota","ND",230 +2004-08-01,"Residential Consumption","U.S.","U.S.",119809 +2004-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",1737 +2004-09-01,"Commercial Consumption","New Mexico","NM",907 +2004-09-01,"Commercial Consumption","Massachusetts","MA",2206 +2004-09-01,"Commercial Consumption","Washington","WA",2115 +2004-09-01,"Commercial Consumption","Oklahoma","OK",1446 +2004-09-01,"Commercial Consumption","Virginia","VA",2779 +2004-09-01,"Commercial Consumption","U.S.","U.S.",132058 +2004-09-01,"Commercial Consumption","Texas","TX",11049 +2004-09-01,"Commercial Consumption","Tennessee","TN",2291 +2004-09-01,"Commercial Consumption","West Virginia","WV",1090 +2004-09-01,"Commercial Consumption","Florida","FL",3917 +2004-09-01,"Commercial Consumption","Hawaii","HI",151 +2004-09-01,"Commercial Consumption","Arkansas","AR",1405 +2004-09-01,"Commercial Consumption","Alabama","AL",1174 +2004-09-01,"Commercial Consumption","New York","NY",16857 +2004-09-01,"Commercial Consumption","Nebraska","NE",1135 +2004-09-01,"Commercial Consumption","Delaware","DE",313 +2004-09-01,"Commercial Consumption","Michigan","MI",4481 +2004-09-01,"Commercial Consumption","Wyoming","WY",400 +2004-09-01,"Commercial Consumption","North Carolina","NC",2017 +2004-09-01,"Commercial Consumption","Oregon","OR",1016 +2004-09-01,"Commercial Consumption","Idaho","ID",472 +2004-09-01,"Commercial Consumption","Louisiana","LA",1485 +2004-09-01,"Commercial Consumption","North Dakota","ND",342 +2004-09-01,"Commercial Consumption","Maine","ME",203 +2004-09-01,"Commercial Consumption","Mississippi","MS",1117 +2004-09-01,"Commercial Consumption","Nevada","NV",1648 +2004-09-01,"Commercial Consumption","Utah","UT",1131 +2004-09-01,"Commercial Consumption","Pennsylvania","PA",4304 +2004-09-01,"Commercial Consumption","Missouri","MO",2198 +2004-09-01,"Commercial Consumption","New Hampshire","NH",336 +2004-09-01,"Commercial Consumption","Montana","MT",543 +2004-09-01,"Commercial Consumption","Kentucky","KY",1187 +2004-09-01,"Commercial Consumption","Maryland","MD",3122 +2004-09-01,"Commercial Consumption","Kansas","KS",846 +2004-09-01,"Commercial Consumption","Ohio","OH",5143 +2004-09-01,"Commercial Consumption","District of Columbia","DC",791 +2004-09-01,"Commercial Consumption","South Carolina","SC",1164 +2004-09-01,"Commercial Consumption","Colorado","CO",2515 +2004-09-01,"Commercial Consumption","Wisconsin","WI",2219 +2004-09-01,"Commercial Consumption","New Jersey","NJ",8191 +2004-09-01,"Commercial Consumption","Vermont","VT",88 +2004-09-01,"Commercial Consumption","Rhode Island","RI",262 +2004-09-01,"Commercial Consumption","Iowa","IA",1373 +2004-09-01,"Commercial Consumption","Alaska","AK",1123 +2004-09-01,"Commercial Consumption","Connecticut","CT",1378 +2004-09-01,"Commercial Consumption","California","CA",14792 +2004-09-01,"Commercial Consumption","Indiana","IN",2653 +2004-09-01,"Commercial Consumption","Minnesota","MN",2506 +2004-09-01,"Commercial Consumption","South Dakota","SD",320 +2004-09-01,"Commercial Consumption","Georgia","GA",2226 +2004-09-01,"Commercial Consumption","Arizona","AZ",1879 +2004-09-01,"Commercial Consumption","Illinois","IL",7754 +2004-09-01,"Delivered to Consumers","New York","NY",63530 +2004-09-01,"Delivered to Consumers","Tennessee","TN",11041 +2004-09-01,"Delivered to Consumers","Michigan","MI",37285 +2004-09-01,"Delivered to Consumers","Colorado","CO",20651 +2004-09-01,"Delivered to Consumers","New Hampshire","NH",4766 +2004-09-01,"Delivered to Consumers","Florida","FL",70259 +2004-09-01,"Delivered to Consumers","New Mexico","NM",5767 +2004-09-01,"Delivered to Consumers","Alaska","AK",9512 +2004-09-01,"Delivered to Consumers","Alabama","AL",24787 +2004-09-01,"Delivered to Consumers","Nebraska","NE",4338 +2004-09-01,"Delivered to Consumers","North Carolina","NC",11970 +2004-09-01,"Delivered to Consumers","South Carolina","SC",11234 +2004-09-01,"Delivered to Consumers","New Jersey","NJ",31379 +2004-09-01,"Delivered to Consumers","Arizona","AZ",27591 +2004-09-01,"Delivered to Consumers","Minnesota","MN",14266 +2004-09-01,"Delivered to Consumers","Utah","UT",6456 +2004-09-01,"Delivered to Consumers","Illinois","IL",37585 +2004-09-01,"Delivered to Consumers","Montana","MT",2533 +2004-09-01,"Delivered to Consumers","Wisconsin","WI",16063 +2004-09-01,"Delivered to Consumers","Missouri","MO",12399 +2004-09-01,"Delivered to Consumers","California","CA",188814 +2004-09-01,"Delivered to Consumers","Oregon","OR",16179 +2004-09-01,"Delivered to Consumers","Georgia","GA",22927 +2004-09-01,"Delivered to Consumers","North Dakota","ND",2219 +2004-09-01,"Delivered to Consumers","Wyoming","WY",4024 +2004-09-01,"Delivered to Consumers","South Dakota","SD",1638 +2004-09-01,"Delivered to Consumers","Oklahoma","OK",36056 +2004-09-01,"Delivered to Consumers","Massachusetts","MA",20120 +2004-09-01,"Delivered to Consumers","Louisiana","LA",93156 +2004-09-01,"Delivered to Consumers","Indiana","IN",26658 +2004-09-01,"Delivered to Consumers","West Virginia","WV",4754 +2004-09-01,"Delivered to Consumers","Vermont","VT",365 +2004-09-01,"Delivered to Consumers","Ohio","OH",34129 +2004-09-01,"Delivered to Consumers","Arkansas","AR",11956 +2004-09-01,"Delivered to Consumers","Maryland","MD",7535 +2004-09-01,"Delivered to Consumers","Kansas","KS",13177 +2004-09-01,"Delivered to Consumers","Connecticut","CT",10334 +2004-09-01,"Delivered to Consumers","Mississippi","MS",18228 +2004-09-01,"Delivered to Consumers","Texas","TX",299518 +2004-09-01,"Delivered to Consumers","Maine","ME",6100 +2004-09-01,"Delivered to Consumers","Hawaii","HI",226 +2004-09-01,"Delivered to Consumers","Idaho","ID",3844 +2004-09-01,"Delivered to Consumers","Kentucky","KY",10883 +2004-09-01,"Delivered to Consumers","Iowa","IA",10193 +2004-09-01,"Delivered to Consumers","Pennsylvania","PA",32060 +2004-09-01,"Delivered to Consumers","Washington","WA",16165 +2004-09-01,"Delivered to Consumers","District of Columbia","DC",1066 +2004-09-01,"Delivered to Consumers","U.S.","U.S.",1357712 +2004-09-01,"Delivered to Consumers","Delaware","DE",2880 +2004-09-01,"Delivered to Consumers","Rhode Island","RI",3594 +2004-09-01,"Delivered to Consumers","Virginia","VA",16341 +2004-09-01,"Delivered to Consumers","Nevada","NV",17480 +2004-09-01,"Electric Power Consumption","Louisiana","LA",23911 +2004-09-01,"Electric Power Consumption","New York","NY",31803 +2004-09-01,"Electric Power Consumption","West Virginia","WV",69 +2004-09-01,"Electric Power Consumption","U.S.","U.S.",529440 +2004-09-01,"Electric Power Consumption","Nebraska","NE",231 +2004-09-01,"Electric Power Consumption","Indiana","IN",1520 +2004-09-01,"Electric Power Consumption","Washington","WA",6539 +2004-09-01,"Electric Power Consumption","Oregon","OR",8320 +2004-09-01,"Electric Power Consumption","Vermont","VT",4 +2004-09-01,"Electric Power Consumption","Tennessee","TN",52 +2004-09-01,"Electric Power Consumption","Missouri","MO",3072 +2004-09-01,"Electric Power Consumption","Florida","FL",61468 +2004-09-01,"Electric Power Consumption","California","CA",77112 +2004-09-01,"Electric Power Consumption","Alabama","AL",9689 +2004-09-01,"Electric Power Consumption","Colorado","CO",6481 +2004-09-01,"Electric Power Consumption","Illinois","IL",2351 +2004-09-01,"Electric Power Consumption","Michigan","MI",11422 +2004-09-01,"Electric Power Consumption","Nevada","NV",13687 +2004-09-01,"Electric Power Consumption","Wyoming","WY",36 +2004-09-01,"Electric Power Consumption","North Dakota","ND",0 +2004-09-01,"Electric Power Consumption","Delaware","DE",1324 +2004-09-01,"Electric Power Consumption","Arizona","AZ",23051 +2004-09-01,"Electric Power Consumption","Idaho","ID",1101 +2004-09-01,"Electric Power Consumption","Minnesota","MN",1492 +2004-09-01,"Electric Power Consumption","Kansas","KS",2267 +2004-09-01,"Electric Power Consumption","Pennsylvania","PA",8535 +2004-09-01,"Electric Power Consumption","South Dakota","SD",293 +2004-09-01,"Electric Power Consumption","North Carolina","NC",1738 +2004-09-01,"Electric Power Consumption","Mississippi","MS",9052 +2004-09-01,"Electric Power Consumption","Kentucky","KY",233 +2004-09-01,"Electric Power Consumption","New Hampshire","NH",3673 +2004-09-01,"Electric Power Consumption","Connecticut","CT",6399 +2004-09-01,"Electric Power Consumption","New Mexico","NM",2403 +2004-09-01,"Electric Power Consumption","South Carolina","SC",3150 +2004-09-01,"Electric Power Consumption","Rhode Island","RI",2516 +2004-09-01,"Electric Power Consumption","Maine","ME",4778 +2004-09-01,"Electric Power Consumption","Hawaii","HI",0 +2004-09-01,"Electric Power Consumption","Montana","MT",16 +2004-09-01,"Electric Power Consumption","Virginia","VA",4415 +2004-09-01,"Electric Power Consumption","Texas","TX",131609 +2004-09-01,"Electric Power Consumption","Iowa","IA",770 +2004-09-01,"Electric Power Consumption","Ohio","OH",1400 +2004-09-01,"Electric Power Consumption","New Jersey","NJ",12208 +2004-09-01,"Electric Power Consumption","Oklahoma","OK",22073 +2004-09-01,"Electric Power Consumption","Wisconsin","WI",1979 +2004-09-01,"Electric Power Consumption","Maryland","MD",1184 +2004-09-01,"Electric Power Consumption","Georgia","GA",3993 +2004-09-01,"Electric Power Consumption","Alaska","AK",2999 +2004-09-01,"Electric Power Consumption","Arkansas","AR",2578 +2004-09-01,"Electric Power Consumption","Utah","UT",890 +2004-09-01,"Electric Power Consumption","Massachusetts","MA",13553 +2004-09-01,"Industrial Consumption","North Dakota","ND",1591 +2004-09-01,"Industrial Consumption","Montana","MT",1387 +2004-09-01,"Industrial Consumption","Missouri","MO",4470 +2004-09-01,"Industrial Consumption","Ohio","OH",21020 +2004-09-01,"Industrial Consumption","Pennsylvania","PA",14192 +2004-09-01,"Industrial Consumption","Texas","TX",150968 +2004-09-01,"Industrial Consumption","Virginia","VA",7489 +2004-09-01,"Industrial Consumption","Vermont","VT",197 +2004-09-01,"Industrial Consumption","Wisconsin","WI",9096 +2004-09-01,"Industrial Consumption","District of Columbia","DC",0 +2004-09-01,"Industrial Consumption","Arkansas","AR",7153 +2004-09-01,"Industrial Consumption","West Virginia","WV",3105 +2004-09-01,"Industrial Consumption","New Hampshire","NH",557 +2004-09-01,"Industrial Consumption","Maryland","MD",1518 +2004-09-01,"Industrial Consumption","Hawaii","HI",35 +2004-09-01,"Industrial Consumption","Louisiana","LA",66218 +2004-09-01,"Industrial Consumption","New Mexico","NM",1594 +2004-09-01,"Industrial Consumption","Utah","UT",2158 +2004-09-01,"Industrial Consumption","U.S.","U.S.",569609 +2004-09-01,"Industrial Consumption","Washington","WA",5487 +2004-09-01,"Industrial Consumption","New York","NY",5282 +2004-09-01,"Industrial Consumption","Maine","ME",1087 +2004-09-01,"Industrial Consumption","Nebraska","NE",2170 +2004-09-01,"Industrial Consumption","New Jersey","NJ",5593 +2004-09-01,"Industrial Consumption","Florida","FL",4135 +2004-09-01,"Industrial Consumption","Alaska","AK",4325 +2004-09-01,"Industrial Consumption","Oregon","OR",5845 +2004-09-01,"Industrial Consumption","Minnesota","MN",7309 +2004-09-01,"Industrial Consumption","Iowa","IA",6673 +2004-09-01,"Industrial Consumption","Michigan","MI",13411 +2004-09-01,"Industrial Consumption","Indiana","IN",19514 +2004-09-01,"Industrial Consumption","Illinois","IL",17735 +2004-09-01,"Industrial Consumption","Mississippi","MS",7419 +2004-09-01,"Industrial Consumption","California","CA",75362 +2004-09-01,"Industrial Consumption","Idaho","ID",1736 +2004-09-01,"Industrial Consumption","Massachusetts","MA",1779 +2004-09-01,"Industrial Consumption","South Dakota","SD",756 +2004-09-01,"Industrial Consumption","Kansas","KS",8734 +2004-09-01,"Industrial Consumption","Arizona","AZ",1504 +2004-09-01,"Industrial Consumption","Tennessee","TN",7432 +2004-09-01,"Industrial Consumption","Connecticut","CT",1519 +2004-09-01,"Industrial Consumption","Oklahoma","OK",11157 +2004-09-01,"Industrial Consumption","Colorado","CO",7683 +2004-09-01,"Industrial Consumption","Nevada","NV",928 +2004-09-01,"Industrial Consumption","Alabama","AL",12800 +2004-09-01,"Industrial Consumption","South Carolina","SC",6405 +2004-09-01,"Industrial Consumption","Wyoming","WY",3205 +2004-09-01,"Industrial Consumption","Kentucky","KY",8332 +2004-09-01,"Industrial Consumption","Delaware","DE",1043 +2004-09-01,"Industrial Consumption","Rhode Island","RI",382 +2004-09-01,"Industrial Consumption","North Carolina","NC",7211 +2004-09-01,"Industrial Consumption","Georgia","GA",12907 +2004-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",87371 +2004-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",37067 +2004-09-01,"Residential Consumption","South Carolina","SC",515 +2004-09-01,"Residential Consumption","Oregon","OR",998 +2004-09-01,"Residential Consumption","Michigan","MI",7971 +2004-09-01,"Residential Consumption","Georgia","GA",3801 +2004-09-01,"Residential Consumption","Florida","FL",740 +2004-09-01,"Residential Consumption","Arkansas","AR",820 +2004-09-01,"Residential Consumption","Washington","WA",2024 +2004-09-01,"Residential Consumption","Texas","TX",5892 +2004-09-01,"Residential Consumption","Hawaii","HI",39 +2004-09-01,"Residential Consumption","Wisconsin","WI",2770 +2004-09-01,"Residential Consumption","Virginia","VA",1659 +2004-09-01,"Residential Consumption","Nevada","NV",1216 +2004-09-01,"Residential Consumption","District of Columbia","DC",275 +2004-09-01,"Residential Consumption","Kentucky","KY",1131 +2004-09-01,"Residential Consumption","Colorado","CO",3971 +2004-09-01,"Residential Consumption","Kansas","KS",1330 +2004-09-01,"Residential Consumption","Illinois","IL",9744 +2004-09-01,"Residential Consumption","Louisiana","LA",1541 +2004-09-01,"Residential Consumption","Iowa","IA",1378 +2004-09-01,"Residential Consumption","Maryland","MD",1712 +2004-09-01,"Residential Consumption","New Mexico","NM",863 +2004-09-01,"Residential Consumption","U.S.","U.S.",124924 +2004-09-01,"Residential Consumption","New York","NY",9587 +2004-09-01,"Residential Consumption","Connecticut","CT",1038 +2004-09-01,"Residential Consumption","Utah","UT",2277 +2004-09-01,"Residential Consumption","Indiana","IN",2970 +2004-09-01,"Residential Consumption","Idaho","ID",535 +2004-09-01,"Residential Consumption","New Hampshire","NH",201 +2004-09-01,"Residential Consumption","Montana","MT",587 +2004-09-01,"Residential Consumption","Nebraska","NE",800 +2004-09-01,"Residential Consumption","Maine","ME",32 +2004-09-01,"Residential Consumption","Oklahoma","OK",1381 +2004-09-01,"Residential Consumption","Missouri","MO",2660 +2004-09-01,"Residential Consumption","California","CA",21547 +2004-09-01,"Residential Consumption","Alaska","AK",1065 +2004-09-01,"Residential Consumption","West Virginia","WV",491 +2004-09-01,"Residential Consumption","Rhode Island","RI",435 +2004-09-01,"Residential Consumption","Ohio","OH",6567 +2004-09-01,"Residential Consumption","Mississippi","MS",641 +2004-09-01,"Residential Consumption","Tennessee","TN",1267 +2004-09-01,"Residential Consumption","South Dakota","SD",269 +2004-09-01,"Residential Consumption","Pennsylvania","PA",5028 +2004-09-01,"Residential Consumption","North Dakota","ND",286 +2004-09-01,"Residential Consumption","Alabama","AL",1124 +2004-09-01,"Residential Consumption","North Carolina","NC",1003 +2004-09-01,"Residential Consumption","Vermont","VT",76 +2004-09-01,"Residential Consumption","Massachusetts","MA",2583 +2004-09-01,"Residential Consumption","Delaware","DE",199 +2004-09-01,"Residential Consumption","Arizona","AZ",1156 +2004-09-01,"Residential Consumption","Wyoming","WY",382 +2004-09-01,"Residential Consumption","Minnesota","MN",2960 +2004-09-01,"Residential Consumption","New Jersey","NJ",5387 +2004-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",1681 +2004-10-01,"Commercial Consumption","Massachusetts","MA",2651 +2004-10-01,"Commercial Consumption","New Hampshire","NH",416 +2004-10-01,"Commercial Consumption","Georgia","GA",2548 +2004-10-01,"Commercial Consumption","Alaska","AK",1387 +2004-10-01,"Commercial Consumption","Arkansas","AR",1626 +2004-10-01,"Commercial Consumption","Alabama","AL",1286 +2004-10-01,"Commercial Consumption","Nevada","NV",1816 +2004-10-01,"Commercial Consumption","Washington","WA",2696 +2004-10-01,"Commercial Consumption","Montana","MT",879 +2004-10-01,"Commercial Consumption","Vermont","VT",113 +2004-10-01,"Commercial Consumption","Connecticut","CT",1882 +2004-10-01,"Commercial Consumption","Wyoming","WY",559 +2004-10-01,"Commercial Consumption","West Virginia","WV",1439 +2004-10-01,"Commercial Consumption","North Dakota","ND",697 +2004-10-01,"Commercial Consumption","Maryland","MD",5029 +2004-10-01,"Commercial Consumption","Rhode Island","RI",447 +2004-10-01,"Commercial Consumption","Nebraska","NE",1613 +2004-10-01,"Commercial Consumption","Missouri","MO",2736 +2004-10-01,"Commercial Consumption","Wisconsin","WI",4637 +2004-10-01,"Commercial Consumption","Idaho","ID",624 +2004-10-01,"Commercial Consumption","Mississippi","MS",1156 +2004-10-01,"Commercial Consumption","Minnesota","MN",6225 +2004-10-01,"Commercial Consumption","New Mexico","NM",1098 +2004-10-01,"Commercial Consumption","South Dakota","SD",518 +2004-10-01,"Commercial Consumption","Kentucky","KY",1791 +2004-10-01,"Commercial Consumption","U.S.","U.S.",175142 +2004-10-01,"Commercial Consumption","Iowa","IA",2473 +2004-10-01,"Commercial Consumption","California","CA",16771 +2004-10-01,"Commercial Consumption","New York","NY",19725 +2004-10-01,"Commercial Consumption","South Carolina","SC",1253 +2004-10-01,"Commercial Consumption","North Carolina","NC",2305 +2004-10-01,"Commercial Consumption","Utah","UT",1530 +2004-10-01,"Commercial Consumption","Oklahoma","OK",1448 +2004-10-01,"Commercial Consumption","Delaware","DE",471 +2004-10-01,"Commercial Consumption","Indiana","IN",5092 +2004-10-01,"Commercial Consumption","Louisiana","LA",1477 +2004-10-01,"Commercial Consumption","District of Columbia","DC",1172 +2004-10-01,"Commercial Consumption","Oregon","OR",1251 +2004-10-01,"Commercial Consumption","New Jersey","NJ",9418 +2004-10-01,"Commercial Consumption","Maine","ME",305 +2004-10-01,"Commercial Consumption","Texas","TX",12017 +2004-10-01,"Commercial Consumption","Kansas","KS",1200 +2004-10-01,"Commercial Consumption","Florida","FL",3874 +2004-10-01,"Commercial Consumption","Ohio","OH",8239 +2004-10-01,"Commercial Consumption","Arizona","AZ",2150 +2004-10-01,"Commercial Consumption","Tennessee","TN",2562 +2004-10-01,"Commercial Consumption","Illinois","IL",11416 +2004-10-01,"Commercial Consumption","Colorado","CO",3691 +2004-10-01,"Commercial Consumption","Virginia","VA",3937 +2004-10-01,"Commercial Consumption","Pennsylvania","PA",7185 +2004-10-01,"Commercial Consumption","Hawaii","HI",146 +2004-10-01,"Commercial Consumption","Michigan","MI",8164 +2004-10-01,"Delivered to Consumers","Delaware","DE",2484 +2004-10-01,"Delivered to Consumers","Utah","UT",8714 +2004-10-01,"Delivered to Consumers","Indiana","IN",33102 +2004-10-01,"Delivered to Consumers","Kansas","KS",13809 +2004-10-01,"Delivered to Consumers","Virginia","VA",13924 +2004-10-01,"Delivered to Consumers","Missouri","MO",11977 +2004-10-01,"Delivered to Consumers","Texas","TX",291473 +2004-10-01,"Delivered to Consumers","South Carolina","SC",9815 +2004-10-01,"Delivered to Consumers","Nevada","NV",16556 +2004-10-01,"Delivered to Consumers","Arizona","AZ",23349 +2004-10-01,"Delivered to Consumers","Washington","WA",18170 +2004-10-01,"Delivered to Consumers","New Hampshire","NH",3194 +2004-10-01,"Delivered to Consumers","District of Columbia","DC",1895 +2004-10-01,"Delivered to Consumers","Wyoming","WY",5032 +2004-10-01,"Delivered to Consumers","Vermont","VT",479 +2004-10-01,"Delivered to Consumers","U.S.","U.S.",1426546 +2004-10-01,"Delivered to Consumers","Illinois","IL",53947 +2004-10-01,"Delivered to Consumers","Connecticut","CT",9761 +2004-10-01,"Delivered to Consumers","Arkansas","AR",14094 +2004-10-01,"Delivered to Consumers","Alabama","AL",23688 +2004-10-01,"Delivered to Consumers","Mississippi","MS",18641 +2004-10-01,"Delivered to Consumers","Colorado","CO",26731 +2004-10-01,"Delivered to Consumers","New Jersey","NJ",32916 +2004-10-01,"Delivered to Consumers","North Dakota","ND",2970 +2004-10-01,"Delivered to Consumers","West Virginia","WV",5775 +2004-10-01,"Delivered to Consumers","New York","NY",61753 +2004-10-01,"Delivered to Consumers","Kentucky","KY",13355 +2004-10-01,"Delivered to Consumers","Iowa","IA",14132 +2004-10-01,"Delivered to Consumers","Pennsylvania","PA",34578 +2004-10-01,"Delivered to Consumers","Montana","MT",3912 +2004-10-01,"Delivered to Consumers","Maryland","MD",11725 +2004-10-01,"Delivered to Consumers","Alaska","AK",9377 +2004-10-01,"Delivered to Consumers","Michigan","MI",48239 +2004-10-01,"Delivered to Consumers","Nebraska","NE",5935 +2004-10-01,"Delivered to Consumers","Georgia","GA",22025 +2004-10-01,"Delivered to Consumers","Wisconsin","WI",23268 +2004-10-01,"Delivered to Consumers","North Carolina","NC",11729 +2004-10-01,"Delivered to Consumers","Massachusetts","MA",22710 +2004-10-01,"Delivered to Consumers","California","CA",186336 +2004-10-01,"Delivered to Consumers","Oregon","OR",17146 +2004-10-01,"Delivered to Consumers","New Mexico","NM",6085 +2004-10-01,"Delivered to Consumers","South Dakota","SD",1998 +2004-10-01,"Delivered to Consumers","Rhode Island","RI",3675 +2004-10-01,"Delivered to Consumers","Hawaii","HI",221 +2004-10-01,"Delivered to Consumers","Oklahoma","OK",30069 +2004-10-01,"Delivered to Consumers","Idaho","ID",4668 +2004-10-01,"Delivered to Consumers","Tennessee","TN",11874 +2004-10-01,"Delivered to Consumers","Ohio","OH",47268 +2004-10-01,"Delivered to Consumers","Maine","ME",7027 +2004-10-01,"Delivered to Consumers","Louisiana","LA",94397 +2004-10-01,"Delivered to Consumers","Minnesota","MN",21849 +2004-10-01,"Delivered to Consumers","Florida","FL",66961 +2004-10-01,"Electric Power Consumption","New York","NY",20491 +2004-10-01,"Electric Power Consumption","Texas","TX",120125 +2004-10-01,"Electric Power Consumption","Pennsylvania","PA",1074 +2004-10-01,"Electric Power Consumption","Missouri","MO",1133 +2004-10-01,"Electric Power Consumption","North Dakota","ND",0 +2004-10-01,"Electric Power Consumption","Alabama","AL",7254 +2004-10-01,"Electric Power Consumption","Washington","WA",5953 +2004-10-01,"Electric Power Consumption","New Jersey","NJ",7784 +2004-10-01,"Electric Power Consumption","Kansas","KS",662 +2004-10-01,"Electric Power Consumption","Tennessee","TN",47 +2004-10-01,"Electric Power Consumption","U.S.","U.S.",439841 +2004-10-01,"Electric Power Consumption","North Carolina","NC",412 +2004-10-01,"Electric Power Consumption","Connecticut","CT",4556 +2004-10-01,"Electric Power Consumption","Alaska","AK",2788 +2004-10-01,"Electric Power Consumption","South Carolina","SC",1431 +2004-10-01,"Electric Power Consumption","Iowa","IA",1086 +2004-10-01,"Electric Power Consumption","Nebraska","NE",150 +2004-10-01,"Electric Power Consumption","Arizona","AZ",18066 +2004-10-01,"Electric Power Consumption","Colorado","CO",7046 +2004-10-01,"Electric Power Consumption","Arkansas","AR",3784 +2004-10-01,"Electric Power Consumption","Oklahoma","OK",15870 +2004-10-01,"Electric Power Consumption","Wisconsin","WI",879 +2004-10-01,"Electric Power Consumption","Maine","ME",5328 +2004-10-01,"Electric Power Consumption","Maryland","MD",579 +2004-10-01,"Electric Power Consumption","Florida","FL",57548 +2004-10-01,"Electric Power Consumption","California","CA",65163 +2004-10-01,"Electric Power Consumption","Rhode Island","RI",2312 +2004-10-01,"Electric Power Consumption","Illinois","IL",794 +2004-10-01,"Electric Power Consumption","Nevada","NV",12106 +2004-10-01,"Electric Power Consumption","Hawaii","HI",0 +2004-10-01,"Electric Power Consumption","Indiana","IN",393 +2004-10-01,"Electric Power Consumption","Virginia","VA",1065 +2004-10-01,"Electric Power Consumption","Louisiana","LA",22987 +2004-10-01,"Electric Power Consumption","Idaho","ID",1017 +2004-10-01,"Electric Power Consumption","Minnesota","MN",626 +2004-10-01,"Electric Power Consumption","Wyoming","WY",36 +2004-10-01,"Electric Power Consumption","Vermont","VT",3 +2004-10-01,"Electric Power Consumption","New Mexico","NM",2279 +2004-10-01,"Electric Power Consumption","Utah","UT",638 +2004-10-01,"Electric Power Consumption","Massachusetts","MA",13727 +2004-10-01,"Electric Power Consumption","South Dakota","SD",95 +2004-10-01,"Electric Power Consumption","Mississippi","MS",9339 +2004-10-01,"Electric Power Consumption","Ohio","OH",68 +2004-10-01,"Electric Power Consumption","New Hampshire","NH",1920 +2004-10-01,"Electric Power Consumption","Montana","MT",16 +2004-10-01,"Electric Power Consumption","Delaware","DE",504 +2004-10-01,"Electric Power Consumption","Georgia","GA",1716 +2004-10-01,"Electric Power Consumption","Oregon","OR",8314 +2004-10-01,"Electric Power Consumption","Michigan","MI",10471 +2004-10-01,"Electric Power Consumption","West Virginia","WV",65 +2004-10-01,"Electric Power Consumption","Kentucky","KY",141 +2004-10-01,"Industrial Consumption","Washington","WA",6027 +2004-10-01,"Industrial Consumption","Pennsylvania","PA",15787 +2004-10-01,"Industrial Consumption","Alabama","AL",13906 +2004-10-01,"Industrial Consumption","South Carolina","SC",6534 +2004-10-01,"Industrial Consumption","Virginia","VA",5437 +2004-10-01,"Industrial Consumption","Kentucky","KY",9496 +2004-10-01,"Industrial Consumption","Delaware","DE",1164 +2004-10-01,"Industrial Consumption","Georgia","GA",13095 +2004-10-01,"Industrial Consumption","Massachusetts","MA",2266 +2004-10-01,"Industrial Consumption","Louisiana","LA",68354 +2004-10-01,"Industrial Consumption","Colorado","CO",8441 +2004-10-01,"Industrial Consumption","New York","NY",5802 +2004-10-01,"Industrial Consumption","Maine","ME",1332 +2004-10-01,"Industrial Consumption","West Virginia","WV",3206 +2004-10-01,"Industrial Consumption","Rhode Island","RI",322 +2004-10-01,"Industrial Consumption","Oregon","OR",6110 +2004-10-01,"Industrial Consumption","Tennessee","TN",7728 +2004-10-01,"Industrial Consumption","New Jersey","NJ",6090 +2004-10-01,"Industrial Consumption","Michigan","MI",13883 +2004-10-01,"Industrial Consumption","Alaska","AK",3650 +2004-10-01,"Industrial Consumption","North Dakota","ND",1562 +2004-10-01,"Industrial Consumption","Maryland","MD",1818 +2004-10-01,"Industrial Consumption","Minnesota","MN",7714 +2004-10-01,"Industrial Consumption","North Carolina","NC",7413 +2004-10-01,"Industrial Consumption","South Dakota","SD",780 +2004-10-01,"Industrial Consumption","New Mexico","NM",1504 +2004-10-01,"Industrial Consumption","Utah","UT",2293 +2004-10-01,"Industrial Consumption","California","CA",73862 +2004-10-01,"Industrial Consumption","Connecticut","CT",1483 +2004-10-01,"Industrial Consumption","Montana","MT",1883 +2004-10-01,"Industrial Consumption","Texas","TX",152693 +2004-10-01,"Industrial Consumption","Nebraska","NE",2830 +2004-10-01,"Industrial Consumption","Vermont","VT",253 +2004-10-01,"Industrial Consumption","New Hampshire","NH",597 +2004-10-01,"Industrial Consumption","Iowa","IA",7660 +2004-10-01,"Industrial Consumption","Florida","FL",4753 +2004-10-01,"Industrial Consumption","Illinois","IL",20119 +2004-10-01,"Industrial Consumption","District of Columbia","DC",0 +2004-10-01,"Industrial Consumption","Oklahoma","OK",11189 +2004-10-01,"Industrial Consumption","Missouri","MO",4690 +2004-10-01,"Industrial Consumption","U.S.","U.S.",593409 +2004-10-01,"Industrial Consumption","Arkansas","AR",7699 +2004-10-01,"Industrial Consumption","Indiana","IN",20781 +2004-10-01,"Industrial Consumption","Hawaii","HI",36 +2004-10-01,"Industrial Consumption","Ohio","OH",24137 +2004-10-01,"Industrial Consumption","Kansas","KS",10148 +2004-10-01,"Industrial Consumption","Arizona","AZ",1641 +2004-10-01,"Industrial Consumption","Nevada","NV",1046 +2004-10-01,"Industrial Consumption","Mississippi","MS",7376 +2004-10-01,"Industrial Consumption","Wyoming","WY",3690 +2004-10-01,"Industrial Consumption","Wisconsin","WI",10912 +2004-10-01,"Industrial Consumption","Idaho","ID",2215 +2004-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91736 +2004-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",38942 +2004-10-01,"Residential Consumption","Ohio","OH",14824 +2004-10-01,"Residential Consumption","Vermont","VT",110 +2004-10-01,"Residential Consumption","Maryland","MD",4299 +2004-10-01,"Residential Consumption","Colorado","CO",7553 +2004-10-01,"Residential Consumption","Arizona","AZ",1492 +2004-10-01,"Residential Consumption","Hawaii","HI",40 +2004-10-01,"Residential Consumption","Virginia","VA",3485 +2004-10-01,"Residential Consumption","Utah","UT",4253 +2004-10-01,"Residential Consumption","Massachusetts","MA",4066 +2004-10-01,"Residential Consumption","Kansas","KS",1798 +2004-10-01,"Residential Consumption","Alabama","AL",1241 +2004-10-01,"Residential Consumption","New York","NY",15734 +2004-10-01,"Residential Consumption","Michigan","MI",15721 +2004-10-01,"Residential Consumption","Georgia","GA",4666 +2004-10-01,"Residential Consumption","New Mexico","NM",1203 +2004-10-01,"Residential Consumption","Indiana","IN",6836 +2004-10-01,"Residential Consumption","Idaho","ID",813 +2004-10-01,"Residential Consumption","Alaska","AK",1552 +2004-10-01,"Residential Consumption","Louisiana","LA",1579 +2004-10-01,"Residential Consumption","Delaware","DE",345 +2004-10-01,"Residential Consumption","West Virginia","WV",1065 +2004-10-01,"Residential Consumption","U.S.","U.S.",216417 +2004-10-01,"Residential Consumption","Texas","TX",6637 +2004-10-01,"Residential Consumption","South Carolina","SC",597 +2004-10-01,"Residential Consumption","Wisconsin","WI",6840 +2004-10-01,"Residential Consumption","Tennessee","TN",1537 +2004-10-01,"Residential Consumption","Arkansas","AR",985 +2004-10-01,"Residential Consumption","Montana","MT",1135 +2004-10-01,"Residential Consumption","Missouri","MO",3419 +2004-10-01,"Residential Consumption","Oregon","OR",1471 +2004-10-01,"Residential Consumption","Iowa","IA",2913 +2004-10-01,"Residential Consumption","Connecticut","CT",1841 +2004-10-01,"Residential Consumption","Nevada","NV",1587 +2004-10-01,"Residential Consumption","Pennsylvania","PA",10532 +2004-10-01,"Residential Consumption","Maine","ME",62 +2004-10-01,"Residential Consumption","Florida","FL",787 +2004-10-01,"Residential Consumption","New Jersey","NJ",9624 +2004-10-01,"Residential Consumption","Kentucky","KY",1927 +2004-10-01,"Residential Consumption","Wyoming","WY",747 +2004-10-01,"Residential Consumption","Mississippi","MS",771 +2004-10-01,"Residential Consumption","South Dakota","SD",605 +2004-10-01,"Residential Consumption","District of Columbia","DC",723 +2004-10-01,"Residential Consumption","Washington","WA",3494 +2004-10-01,"Residential Consumption","Oklahoma","OK",1562 +2004-10-01,"Residential Consumption","Illinois","IL",21618 +2004-10-01,"Residential Consumption","Rhode Island","RI",594 +2004-10-01,"Residential Consumption","North Carolina","NC",1600 +2004-10-01,"Residential Consumption","Nebraska","NE",1341 +2004-10-01,"Residential Consumption","Minnesota","MN",7283 +2004-10-01,"Residential Consumption","North Dakota","ND",710 +2004-10-01,"Residential Consumption","New Hampshire","NH",260 +2004-10-01,"Residential Consumption","California","CA",30541 +2004-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",1737 +2004-11-01,"Commercial Consumption","Oregon","OR",2252 +2004-11-01,"Commercial Consumption","Pennsylvania","PA",11763 +2004-11-01,"Commercial Consumption","New Hampshire","NH",666 +2004-11-01,"Commercial Consumption","Hawaii","HI",148 +2004-11-01,"Commercial Consumption","Texas","TX",16048 +2004-11-01,"Commercial Consumption","Maryland","MD",6135 +2004-11-01,"Commercial Consumption","Kansas","KS",2012 +2004-11-01,"Commercial Consumption","Florida","FL",4292 +2004-11-01,"Commercial Consumption","Arkansas","AR",1952 +2004-11-01,"Commercial Consumption","New York","NY",28687 +2004-11-01,"Commercial Consumption","Indiana","IN",7628 +2004-11-01,"Commercial Consumption","Illinois","IL",17347 +2004-11-01,"Commercial Consumption","West Virginia","WV",1765 +2004-11-01,"Commercial Consumption","Minnesota","MN",8843 +2004-11-01,"Commercial Consumption","South Dakota","SD",914 +2004-11-01,"Commercial Consumption","Ohio","OH",13443 +2004-11-01,"Commercial Consumption","Iowa","IA",4391 +2004-11-01,"Commercial Consumption","Delaware","DE",731 +2004-11-01,"Commercial Consumption","Tennessee","TN",3153 +2004-11-01,"Commercial Consumption","Michigan","MI",13714 +2004-11-01,"Commercial Consumption","Wyoming","WY",975 +2004-11-01,"Commercial Consumption","Oklahoma","OK",2039 +2004-11-01,"Commercial Consumption","Maine","ME",406 +2004-11-01,"Commercial Consumption","U.S.","U.S.",256336 +2004-11-01,"Commercial Consumption","Nebraska","NE",2902 +2004-11-01,"Commercial Consumption","Nevada","NV",2391 +2004-11-01,"Commercial Consumption","New Mexico","NM",1912 +2004-11-01,"Commercial Consumption","Virginia","VA",6076 +2004-11-01,"Commercial Consumption","Wisconsin","WI",7865 +2004-11-01,"Commercial Consumption","Montana","MT",1227 +2004-11-01,"Commercial Consumption","Georgia","GA",4615 +2004-11-01,"Commercial Consumption","Vermont","VT",229 +2004-11-01,"Commercial Consumption","Idaho","ID",1218 +2004-11-01,"Commercial Consumption","Connecticut","CT",2814 +2004-11-01,"Commercial Consumption","Washington","WA",4513 +2004-11-01,"Commercial Consumption","North Dakota","ND",1069 +2004-11-01,"Commercial Consumption","Colorado","CO",7318 +2004-11-01,"Commercial Consumption","Utah","UT",2736 +2004-11-01,"Commercial Consumption","Missouri","MO",4121 +2004-11-01,"Commercial Consumption","Kentucky","KY",3019 +2004-11-01,"Commercial Consumption","North Carolina","NC",3377 +2004-11-01,"Commercial Consumption","New Jersey","NJ",12044 +2004-11-01,"Commercial Consumption","Rhode Island","RI",829 +2004-11-01,"Commercial Consumption","Alaska","AK",1743 +2004-11-01,"Commercial Consumption","California","CA",19780 +2004-11-01,"Commercial Consumption","Alabama","AL",1639 +2004-11-01,"Commercial Consumption","Mississippi","MS",1660 +2004-11-01,"Commercial Consumption","Arizona","AZ",2853 +2004-11-01,"Commercial Consumption","Louisiana","LA",1608 +2004-11-01,"Commercial Consumption","District of Columbia","DC",1630 +2004-11-01,"Commercial Consumption","South Carolina","SC",1502 +2004-11-01,"Commercial Consumption","Massachusetts","MA",4343 +2004-11-01,"Delivered to Consumers","Delaware","DE",4033 +2004-11-01,"Delivered to Consumers","Wyoming","WY",6153 +2004-11-01,"Delivered to Consumers","Alaska","AK",9374 +2004-11-01,"Delivered to Consumers","Texas","TX",268077 +2004-11-01,"Delivered to Consumers","New Jersey","NJ",52729 +2004-11-01,"Delivered to Consumers","Georgia","GA",29012 +2004-11-01,"Delivered to Consumers","New Mexico","NM",8276 +2004-11-01,"Delivered to Consumers","Rhode Island","RI",6015 +2004-11-01,"Delivered to Consumers","Montana","MT",5268 +2004-11-01,"Delivered to Consumers","Hawaii","HI",230 +2004-11-01,"Delivered to Consumers","Connecticut","CT",11869 +2004-11-01,"Delivered to Consumers","Arkansas","AR",13138 +2004-11-01,"Delivered to Consumers","Alabama","AL",22042 +2004-11-01,"Delivered to Consumers","Mississippi","MS",15628 +2004-11-01,"Delivered to Consumers","Massachusetts","MA",28310 +2004-11-01,"Delivered to Consumers","Colorado","CO",39719 +2004-11-01,"Delivered to Consumers","Nevada","NV",18897 +2004-11-01,"Delivered to Consumers","Utah","UT",13097 +2004-11-01,"Delivered to Consumers","Maryland","MD",16222 +2004-11-01,"Delivered to Consumers","Ohio","OH",64279 +2004-11-01,"Delivered to Consumers","Michigan","MI",71870 +2004-11-01,"Delivered to Consumers","Kentucky","KY",17689 +2004-11-01,"Delivered to Consumers","Wisconsin","WI",33602 +2004-11-01,"Delivered to Consumers","Missouri","MO",16704 +2004-11-01,"Delivered to Consumers","South Carolina","SC",10497 +2004-11-01,"Delivered to Consumers","Maine","ME",7786 +2004-11-01,"Delivered to Consumers","District of Columbia","DC",2937 +2004-11-01,"Delivered to Consumers","North Dakota","ND",3638 +2004-11-01,"Delivered to Consumers","U.S.","U.S.",1647979 +2004-11-01,"Delivered to Consumers","Idaho","ID",6536 +2004-11-01,"Delivered to Consumers","North Carolina","NC",15635 +2004-11-01,"Delivered to Consumers","Indiana","IN",43630 +2004-11-01,"Delivered to Consumers","Tennessee","TN",13718 +2004-11-01,"Delivered to Consumers","Iowa","IA",20759 +2004-11-01,"Delivered to Consumers","Virginia","VA",21649 +2004-11-01,"Delivered to Consumers","Nebraska","NE",8995 +2004-11-01,"Delivered to Consumers","Washington","WA",24172 +2004-11-01,"Delivered to Consumers","New Hampshire","NH",5704 +2004-11-01,"Delivered to Consumers","Minnesota","MN",31497 +2004-11-01,"Delivered to Consumers","West Virginia","WV",6898 +2004-11-01,"Delivered to Consumers","Vermont","VT",769 +2004-11-01,"Delivered to Consumers","Illinois","IL",80742 +2004-11-01,"Delivered to Consumers","South Dakota","SD",3307 +2004-11-01,"Delivered to Consumers","Kansas","KS",15207 +2004-11-01,"Delivered to Consumers","California","CA",205784 +2004-11-01,"Delivered to Consumers","Oregon","OR",21137 +2004-11-01,"Delivered to Consumers","Louisiana","LA",89577 +2004-11-01,"Delivered to Consumers","New York","NY",84337 +2004-11-01,"Delivered to Consumers","Oklahoma","OK",25036 +2004-11-01,"Delivered to Consumers","Pennsylvania","PA",50908 +2004-11-01,"Delivered to Consumers","Arizona","AZ",23090 +2004-11-01,"Delivered to Consumers","Florida","FL",50122 +2004-11-01,"Electric Power Consumption","Washington","WA",5921 +2004-11-01,"Electric Power Consumption","South Carolina","SC",1083 +2004-11-01,"Electric Power Consumption","Maine","ME",5893 +2004-11-01,"Electric Power Consumption","Indiana","IN",332 +2004-11-01,"Electric Power Consumption","Arizona","AZ",15540 +2004-11-01,"Electric Power Consumption","Georgia","GA",573 +2004-11-01,"Electric Power Consumption","Florida","FL",39980 +2004-11-01,"Electric Power Consumption","Alabama","AL",4995 +2004-11-01,"Electric Power Consumption","Texas","TX",89952 +2004-11-01,"Electric Power Consumption","Michigan","MI",10238 +2004-11-01,"Electric Power Consumption","Nevada","NV",11938 +2004-11-01,"Electric Power Consumption","Wyoming","WY",37 +2004-11-01,"Electric Power Consumption","Vermont","VT",3 +2004-11-01,"Electric Power Consumption","Nebraska","NE",152 +2004-11-01,"Electric Power Consumption","Ohio","OH",862 +2004-11-01,"Electric Power Consumption","New York","NY",20010 +2004-11-01,"Electric Power Consumption","Oklahoma","OK",8250 +2004-11-01,"Electric Power Consumption","Missouri","MO",592 +2004-11-01,"Electric Power Consumption","North Dakota","ND",0 +2004-11-01,"Electric Power Consumption","Maryland","MD",718 +2004-11-01,"Electric Power Consumption","Alaska","AK",3003 +2004-11-01,"Electric Power Consumption","Colorado","CO",8738 +2004-11-01,"Electric Power Consumption","Rhode Island","RI",3179 +2004-11-01,"Electric Power Consumption","West Virginia","WV",42 +2004-11-01,"Electric Power Consumption","New Hampshire","NH",3935 +2004-11-01,"Electric Power Consumption","New Jersey","NJ",15033 +2004-11-01,"Electric Power Consumption","Pennsylvania","PA",3120 +2004-11-01,"Electric Power Consumption","South Dakota","SD",78 +2004-11-01,"Electric Power Consumption","Kentucky","KY",219 +2004-11-01,"Electric Power Consumption","Virginia","VA",2302 +2004-11-01,"Electric Power Consumption","Arkansas","AR",1789 +2004-11-01,"Electric Power Consumption","Oregon","OR",9292 +2004-11-01,"Electric Power Consumption","Minnesota","MN",612 +2004-11-01,"Electric Power Consumption","Tennessee","TN",12 +2004-11-01,"Electric Power Consumption","North Carolina","NC",312 +2004-11-01,"Electric Power Consumption","Montana","MT",16 +2004-11-01,"Electric Power Consumption","Delaware","DE",913 +2004-11-01,"Electric Power Consumption","New Mexico","NM",2053 +2004-11-01,"Electric Power Consumption","Idaho","ID",1183 +2004-11-01,"Electric Power Consumption","Massachusetts","MA",10649 +2004-11-01,"Electric Power Consumption","Wisconsin","WI",1490 +2004-11-01,"Electric Power Consumption","Iowa","IA",1395 +2004-11-01,"Electric Power Consumption","Mississippi","MS",3729 +2004-11-01,"Electric Power Consumption","Hawaii","HI",0 +2004-11-01,"Electric Power Consumption","Connecticut","CT",4045 +2004-11-01,"Electric Power Consumption","California","CA",63338 +2004-11-01,"Electric Power Consumption","Louisiana","LA",16905 +2004-11-01,"Electric Power Consumption","Utah","UT",515 +2004-11-01,"Electric Power Consumption","Illinois","IL",764 +2004-11-01,"Electric Power Consumption","Kansas","KS",440 +2004-11-01,"Electric Power Consumption","U.S.","U.S.",376169 +2004-11-01,"Industrial Consumption","North Dakota","ND",1484 +2004-11-01,"Industrial Consumption","Maryland","MD",1933 +2004-11-01,"Industrial Consumption","Washington","WA",6207 +2004-11-01,"Industrial Consumption","U.S.","U.S.",606591 +2004-11-01,"Industrial Consumption","New York","NY",6528 +2004-11-01,"Industrial Consumption","Arkansas","AR",7533 +2004-11-01,"Industrial Consumption","Wisconsin","WI",11770 +2004-11-01,"Industrial Consumption","Florida","FL",4918 +2004-11-01,"Industrial Consumption","Michigan","MI",17417 +2004-11-01,"Industrial Consumption","Illinois","IL",22025 +2004-11-01,"Industrial Consumption","North Carolina","NC",7730 +2004-11-01,"Industrial Consumption","Louisiana","LA",69066 +2004-11-01,"Industrial Consumption","South Carolina","SC",6432 +2004-11-01,"Industrial Consumption","New Mexico","NM",1630 +2004-11-01,"Industrial Consumption","Oregon","OR",6026 +2004-11-01,"Industrial Consumption","Wyoming","WY",3817 +2004-11-01,"Industrial Consumption","Delaware","DE",1571 +2004-11-01,"Industrial Consumption","Maine","ME",1384 +2004-11-01,"Industrial Consumption","West Virginia","WV",3131 +2004-11-01,"Industrial Consumption","New Jersey","NJ",6613 +2004-11-01,"Industrial Consumption","District of Columbia","DC",0 +2004-11-01,"Industrial Consumption","Missouri","MO",5183 +2004-11-01,"Industrial Consumption","South Dakota","SD",1196 +2004-11-01,"Industrial Consumption","Pennsylvania","PA",16362 +2004-11-01,"Industrial Consumption","Texas","TX",147395 +2004-11-01,"Industrial Consumption","Idaho","ID",2081 +2004-11-01,"Industrial Consumption","Kentucky","KY",9776 +2004-11-01,"Industrial Consumption","Montana","MT",2095 +2004-11-01,"Industrial Consumption","Hawaii","HI",40 +2004-11-01,"Industrial Consumption","Arizona","AZ",1854 +2004-11-01,"Industrial Consumption","Mississippi","MS",8781 +2004-11-01,"Industrial Consumption","Nebraska","NE",3472 +2004-11-01,"Industrial Consumption","Virginia","VA",5551 +2004-11-01,"Industrial Consumption","Vermont","VT",285 +2004-11-01,"Industrial Consumption","Tennessee","TN",7632 +2004-11-01,"Industrial Consumption","Iowa","IA",9564 +2004-11-01,"Industrial Consumption","Connecticut","CT",2003 +2004-11-01,"Industrial Consumption","Alaska","AK",2622 +2004-11-01,"Industrial Consumption","Oklahoma","OK",11798 +2004-11-01,"Industrial Consumption","Kansas","KS",8704 +2004-11-01,"Industrial Consumption","Nevada","NV",1070 +2004-11-01,"Industrial Consumption","New Hampshire","NH",575 +2004-11-01,"Industrial Consumption","Massachusetts","MA",5077 +2004-11-01,"Industrial Consumption","Colorado","CO",8231 +2004-11-01,"Industrial Consumption","Ohio","OH",23774 +2004-11-01,"Industrial Consumption","Utah","UT",2451 +2004-11-01,"Industrial Consumption","California","CA",72814 +2004-11-01,"Industrial Consumption","Alabama","AL",13521 +2004-11-01,"Industrial Consumption","Minnesota","MN",9582 +2004-11-01,"Industrial Consumption","Indiana","IN",22067 +2004-11-01,"Industrial Consumption","Rhode Island","RI",648 +2004-11-01,"Industrial Consumption","Georgia","GA",13173 +2004-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89828 +2004-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",44990 +2004-11-01,"Residential Consumption","Connecticut","CT",3006 +2004-11-01,"Residential Consumption","Tennessee","TN",2921 +2004-11-01,"Residential Consumption","Virginia","VA",7720 +2004-11-01,"Residential Consumption","Indiana","IN",13604 +2004-11-01,"Residential Consumption","New Hampshire","NH",528 +2004-11-01,"Residential Consumption","Missouri","MO",6808 +2004-11-01,"Residential Consumption","Alabama","AL",1887 +2004-11-01,"Residential Consumption","U.S.","U.S.",407202 +2004-11-01,"Residential Consumption","Wisconsin","WI",12477 +2004-11-01,"Residential Consumption","South Dakota","SD",1119 +2004-11-01,"Residential Consumption","Nevada","NV",3498 +2004-11-01,"Residential Consumption","Pennsylvania","PA",19662 +2004-11-01,"Residential Consumption","New Mexico","NM",2681 +2004-11-01,"Residential Consumption","Massachusetts","MA",8241 +2004-11-01,"Residential Consumption","Oklahoma","OK",2950 +2004-11-01,"Residential Consumption","Arizona","AZ",2844 +2004-11-01,"Residential Consumption","Wyoming","WY",1324 +2004-11-01,"Residential Consumption","Ohio","OH",26200 +2004-11-01,"Residential Consumption","North Carolina","NC",4216 +2004-11-01,"Residential Consumption","Maryland","MD",7437 +2004-11-01,"Residential Consumption","Maine","ME",104 +2004-11-01,"Residential Consumption","Kansas","KS",4051 +2004-11-01,"Residential Consumption","Georgia","GA",10650 +2004-11-01,"Residential Consumption","Arkansas","AR",1864 +2004-11-01,"Residential Consumption","New Jersey","NJ",19039 +2004-11-01,"Residential Consumption","Kentucky","KY",4674 +2004-11-01,"Residential Consumption","Delaware","DE",818 +2004-11-01,"Residential Consumption","Alaska","AK",2006 +2004-11-01,"Residential Consumption","West Virginia","WV",1959 +2004-11-01,"Residential Consumption","New York","NY",29113 +2004-11-01,"Residential Consumption","Oregon","OR",3569 +2004-11-01,"Residential Consumption","Iowa","IA",5408 +2004-11-01,"Residential Consumption","Vermont","VT",252 +2004-11-01,"Residential Consumption","Idaho","ID",2054 +2004-11-01,"Residential Consumption","Louisiana","LA",1997 +2004-11-01,"Residential Consumption","Hawaii","HI",41 +2004-11-01,"Residential Consumption","Michigan","MI",30501 +2004-11-01,"Residential Consumption","North Dakota","ND",1085 +2004-11-01,"Residential Consumption","Washington","WA",7531 +2004-11-01,"Residential Consumption","California","CA",49852 +2004-11-01,"Residential Consumption","Illinois","IL",40606 +2004-11-01,"Residential Consumption","South Carolina","SC",1480 +2004-11-01,"Residential Consumption","Rhode Island","RI",1359 +2004-11-01,"Residential Consumption","Mississippi","MS",1458 +2004-11-01,"Residential Consumption","Minnesota","MN",12461 +2004-11-01,"Residential Consumption","Montana","MT",1930 +2004-11-01,"Residential Consumption","Texas","TX",14683 +2004-11-01,"Residential Consumption","Utah","UT",7395 +2004-11-01,"Residential Consumption","Nebraska","NE",2469 +2004-11-01,"Residential Consumption","District of Columbia","DC",1307 +2004-11-01,"Residential Consumption","Florida","FL",932 +2004-11-01,"Residential Consumption","Colorado","CO",15431 +2004-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",1681 +2004-12-01,"Commercial Consumption","Washington","WA",6386 +2004-12-01,"Commercial Consumption","New Mexico","NM",3251 +2004-12-01,"Commercial Consumption","Hawaii","HI",154 +2004-12-01,"Commercial Consumption","Louisiana","LA",2369 +2004-12-01,"Commercial Consumption","Minnesota","MN",13937 +2004-12-01,"Commercial Consumption","U.S.","U.S.",401760 +2004-12-01,"Commercial Consumption","Oklahoma","OK",4425 +2004-12-01,"Commercial Consumption","Pennsylvania","PA",18604 +2004-12-01,"Commercial Consumption","Ohio","OH",23808 +2004-12-01,"Commercial Consumption","Nebraska","NE",4097 +2004-12-01,"Commercial Consumption","Nevada","NV",3358 +2004-12-01,"Commercial Consumption","North Dakota","ND",1598 +2004-12-01,"Commercial Consumption","North Carolina","NC",5782 +2004-12-01,"Commercial Consumption","Oregon","OR",3425 +2004-12-01,"Commercial Consumption","Wisconsin","WI",12806 +2004-12-01,"Commercial Consumption","New Hampshire","NH",1017 +2004-12-01,"Commercial Consumption","Rhode Island","RI",1308 +2004-12-01,"Commercial Consumption","Connecticut","CT",4189 +2004-12-01,"Commercial Consumption","Virginia","VA",9021 +2004-12-01,"Commercial Consumption","Kentucky","KY",5681 +2004-12-01,"Commercial Consumption","Mississippi","MS",2968 +2004-12-01,"Commercial Consumption","Delaware","DE",1180 +2004-12-01,"Commercial Consumption","Tennessee","TN",6328 +2004-12-01,"Commercial Consumption","Indiana","IN",13134 +2004-12-01,"Commercial Consumption","Colorado","CO",9222 +2004-12-01,"Commercial Consumption","Maine","ME",627 +2004-12-01,"Commercial Consumption","Georgia","GA",8970 +2004-12-01,"Commercial Consumption","Vermont","VT",316 +2004-12-01,"Commercial Consumption","Arkansas","AR",3411 +2004-12-01,"Commercial Consumption","New York","NY",42112 +2004-12-01,"Commercial Consumption","Arizona","AZ",3981 +2004-12-01,"Commercial Consumption","Michigan","MI",23569 +2004-12-01,"Commercial Consumption","West Virginia","WV",3162 +2004-12-01,"Commercial Consumption","Utah","UT",4627 +2004-12-01,"Commercial Consumption","Montana","MT",1735 +2004-12-01,"Commercial Consumption","Kansas","KS",4365 +2004-12-01,"Commercial Consumption","Iowa","IA",6241 +2004-12-01,"Commercial Consumption","California","CA",25510 +2004-12-01,"Commercial Consumption","Illinois","IL",29289 +2004-12-01,"Commercial Consumption","District of Columbia","DC",2416 +2004-12-01,"Commercial Consumption","Wyoming","WY",1300 +2004-12-01,"Commercial Consumption","South Carolina","SC",2358 +2004-12-01,"Commercial Consumption","Missouri","MO",7962 +2004-12-01,"Commercial Consumption","Massachusetts","MA",6285 +2004-12-01,"Commercial Consumption","South Dakota","SD",1465 +2004-12-01,"Commercial Consumption","New Jersey","NJ",19597 +2004-12-01,"Commercial Consumption","Texas","TX",22689 +2004-12-01,"Commercial Consumption","Maryland","MD",9669 +2004-12-01,"Commercial Consumption","Florida","FL",5257 +2004-12-01,"Commercial Consumption","Idaho","ID",1859 +2004-12-01,"Commercial Consumption","Alaska","AK",2154 +2004-12-01,"Commercial Consumption","Alabama","AL",2783 +2004-12-01,"Delivered to Consumers","Illinois","IL",131346 +2004-12-01,"Delivered to Consumers","Maryland","MD",26279 +2004-12-01,"Delivered to Consumers","Connecticut","CT",15876 +2004-12-01,"Delivered to Consumers","Nebraska","NE",13129 +2004-12-01,"Delivered to Consumers","Colorado","CO",50977 +2004-12-01,"Delivered to Consumers","South Carolina","SC",15861 +2004-12-01,"Delivered to Consumers","Oregon","OR",23569 +2004-12-01,"Delivered to Consumers","Utah","UT",17058 +2004-12-01,"Delivered to Consumers","West Virginia","WV",10999 +2004-12-01,"Delivered to Consumers","South Dakota","SD",4743 +2004-12-01,"Delivered to Consumers","New Hampshire","NH",6026 +2004-12-01,"Delivered to Consumers","District of Columbia","DC",4696 +2004-12-01,"Delivered to Consumers","Kansas","KS",23992 +2004-12-01,"Delivered to Consumers","Iowa","IA",27591 +2004-12-01,"Delivered to Consumers","U.S.","U.S.",2176020 +2004-12-01,"Delivered to Consumers","Montana","MT",6895 +2004-12-01,"Delivered to Consumers","Oklahoma","OK",35444 +2004-12-01,"Delivered to Consumers","Michigan","MI",107025 +2004-12-01,"Delivered to Consumers","Alabama","AL",29661 +2004-12-01,"Delivered to Consumers","Massachusetts","MA",35091 +2004-12-01,"Delivered to Consumers","Maine","ME",7858 +2004-12-01,"Delivered to Consumers","Louisiana","LA",99046 +2004-12-01,"Delivered to Consumers","Georgia","GA",49125 +2004-12-01,"Delivered to Consumers","North Dakota","ND",4990 +2004-12-01,"Delivered to Consumers","Indiana","IN",65054 +2004-12-01,"Delivered to Consumers","Vermont","VT",1011 +2004-12-01,"Delivered to Consumers","Tennessee","TN",24756 +2004-12-01,"Delivered to Consumers","Ohio","OH",99290 +2004-12-01,"Delivered to Consumers","Texas","TX",298771 +2004-12-01,"Delivered to Consumers","New Jersey","NJ",71562 +2004-12-01,"Delivered to Consumers","Washington","WA",28231 +2004-12-01,"Delivered to Consumers","Wyoming","WY",6963 +2004-12-01,"Delivered to Consumers","New York","NY",116290 +2004-12-01,"Delivered to Consumers","Kentucky","KY",27203 +2004-12-01,"Delivered to Consumers","California","CA",235615 +2004-12-01,"Delivered to Consumers","Hawaii","HI",236 +2004-12-01,"Delivered to Consumers","Alaska","AK",11436 +2004-12-01,"Delivered to Consumers","Idaho","ID",8238 +2004-12-01,"Delivered to Consumers","Wisconsin","WI",56693 +2004-12-01,"Delivered to Consumers","Virginia","VA",31243 +2004-12-01,"Delivered to Consumers","Mississippi","MS",21305 +2004-12-01,"Delivered to Consumers","Missouri","MO",31367 +2004-12-01,"Delivered to Consumers","Minnesota","MN",46174 +2004-12-01,"Delivered to Consumers","New Mexico","NM",12319 +2004-12-01,"Delivered to Consumers","Delaware","DE",6759 +2004-12-01,"Delivered to Consumers","Rhode Island","RI",6955 +2004-12-01,"Delivered to Consumers","Arkansas","AR",18337 +2004-12-01,"Delivered to Consumers","Pennsylvania","PA",74224 +2004-12-01,"Delivered to Consumers","North Carolina","NC",24946 +2004-12-01,"Delivered to Consumers","Nevada","NV",22720 +2004-12-01,"Delivered to Consumers","Arizona","AZ",26140 +2004-12-01,"Delivered to Consumers","Florida","FL",53169 +2004-12-01,"Electric Power Consumption","Washington","WA",5207 +2004-12-01,"Electric Power Consumption","Michigan","MI",10743 +2004-12-01,"Electric Power Consumption","Vermont","VT",3 +2004-12-01,"Electric Power Consumption","Missouri","MO",914 +2004-12-01,"Electric Power Consumption","Maine","ME",5464 +2004-12-01,"Electric Power Consumption","New Hampshire","NH",3495 +2004-12-01,"Electric Power Consumption","Texas","TX",94619 +2004-12-01,"Electric Power Consumption","Oregon","OR",8464 +2004-12-01,"Electric Power Consumption","West Virginia","WV",93 +2004-12-01,"Electric Power Consumption","Alabama","AL",6647 +2004-12-01,"Electric Power Consumption","Alaska","AK",3762 +2004-12-01,"Electric Power Consumption","Illinois","IL",1215 +2004-12-01,"Electric Power Consumption","Nebraska","NE",138 +2004-12-01,"Electric Power Consumption","Connecticut","CT",4120 +2004-12-01,"Electric Power Consumption","Arizona","AZ",13656 +2004-12-01,"Electric Power Consumption","Virginia","VA",2006 +2004-12-01,"Electric Power Consumption","New Mexico","NM",2125 +2004-12-01,"Electric Power Consumption","New Jersey","NJ",12435 +2004-12-01,"Electric Power Consumption","South Carolina","SC",2768 +2004-12-01,"Electric Power Consumption","Minnesota","MN",826 +2004-12-01,"Electric Power Consumption","Iowa","IA",1457 +2004-12-01,"Electric Power Consumption","Montana","MT",16 +2004-12-01,"Electric Power Consumption","Delaware","DE",2110 +2004-12-01,"Electric Power Consumption","California","CA",62377 +2004-12-01,"Electric Power Consumption","Rhode Island","RI",3181 +2004-12-01,"Electric Power Consumption","Mississippi","MS",5330 +2004-12-01,"Electric Power Consumption","North Dakota","ND",1 +2004-12-01,"Electric Power Consumption","Colorado","CO",8106 +2004-12-01,"Electric Power Consumption","Arkansas","AR",1531 +2004-12-01,"Electric Power Consumption","Kansas","KS",442 +2004-12-01,"Electric Power Consumption","U.S.","U.S.",386690 +2004-12-01,"Electric Power Consumption","South Dakota","SD",151 +2004-12-01,"Electric Power Consumption","Hawaii","HI",0 +2004-12-01,"Electric Power Consumption","Louisiana","LA",17970 +2004-12-01,"Electric Power Consumption","Idaho","ID",1013 +2004-12-01,"Electric Power Consumption","New York","NY",18395 +2004-12-01,"Electric Power Consumption","Utah","UT",584 +2004-12-01,"Electric Power Consumption","Massachusetts","MA",10851 +2004-12-01,"Electric Power Consumption","Wisconsin","WI",1739 +2004-12-01,"Electric Power Consumption","Pennsylvania","PA",4135 +2004-12-01,"Electric Power Consumption","Wyoming","WY",44 +2004-12-01,"Electric Power Consumption","Florida","FL",40641 +2004-12-01,"Electric Power Consumption","Oklahoma","OK",10012 +2004-12-01,"Electric Power Consumption","Nevada","NV",12187 +2004-12-01,"Electric Power Consumption","Tennessee","TN",107 +2004-12-01,"Electric Power Consumption","North Carolina","NC",1187 +2004-12-01,"Electric Power Consumption","Kentucky","KY",627 +2004-12-01,"Electric Power Consumption","Ohio","OH",276 +2004-12-01,"Electric Power Consumption","Maryland","MD",796 +2004-12-01,"Electric Power Consumption","Indiana","IN",980 +2004-12-01,"Electric Power Consumption","Georgia","GA",1743 +2004-12-01,"Industrial Consumption","Hawaii","HI",37 +2004-12-01,"Industrial Consumption","New Mexico","NM",1818 +2004-12-01,"Industrial Consumption","Kansas","KS",9084 +2004-12-01,"Industrial Consumption","New York","NY",7384 +2004-12-01,"Industrial Consumption","Arkansas","AR",8589 +2004-12-01,"Industrial Consumption","Florida","FL",5668 +2004-12-01,"Industrial Consumption","Massachusetts","MA",4234 +2004-12-01,"Industrial Consumption","Missouri","MO",6783 +2004-12-01,"Industrial Consumption","Colorado","CO",14305 +2004-12-01,"Industrial Consumption","Ohio","OH",27560 +2004-12-01,"Industrial Consumption","Utah","UT",2581 +2004-12-01,"Industrial Consumption","West Virginia","WV",3770 +2004-12-01,"Industrial Consumption","New Hampshire","NH",665 +2004-12-01,"Industrial Consumption","Idaho","ID",2142 +2004-12-01,"Industrial Consumption","Delaware","DE",1960 +2004-12-01,"Industrial Consumption","Georgia","GA",14840 +2004-12-01,"Industrial Consumption","Maryland","MD",2261 +2004-12-01,"Industrial Consumption","Alabama","AL",14812 +2004-12-01,"Industrial Consumption","Texas","TX",151795 +2004-12-01,"Industrial Consumption","Virginia","VA",6670 +2004-12-01,"Industrial Consumption","Indiana","IN",24940 +2004-12-01,"Industrial Consumption","Pennsylvania","PA",18274 +2004-12-01,"Industrial Consumption","New Jersey","NJ",7031 +2004-12-01,"Industrial Consumption","Minnesota","MN",9571 +2004-12-01,"Industrial Consumption","Iowa","IA",8936 +2004-12-01,"Industrial Consumption","Connecticut","CT",1906 +2004-12-01,"Industrial Consumption","Kentucky","KY",10526 +2004-12-01,"Industrial Consumption","Washington","WA",6272 +2004-12-01,"Industrial Consumption","Arizona","AZ",2097 +2004-12-01,"Industrial Consumption","Oregon","OR",5971 +2004-12-01,"Industrial Consumption","Mississippi","MS",9338 +2004-12-01,"Industrial Consumption","South Carolina","SC",6685 +2004-12-01,"Industrial Consumption","Wisconsin","WI",19020 +2004-12-01,"Industrial Consumption","South Dakota","SD",1219 +2004-12-01,"Industrial Consumption","Nevada","NV",1100 +2004-12-01,"Industrial Consumption","California","CA",73046 +2004-12-01,"Industrial Consumption","Rhode Island","RI",350 +2004-12-01,"Industrial Consumption","North Dakota","ND",1638 +2004-12-01,"Industrial Consumption","Montana","MT",2283 +2004-12-01,"Industrial Consumption","Oklahoma","OK",12549 +2004-12-01,"Industrial Consumption","Louisiana","LA",73874 +2004-12-01,"Industrial Consumption","U.S.","U.S.",660229 +2004-12-01,"Industrial Consumption","Vermont","VT",307 +2004-12-01,"Industrial Consumption","Wyoming","WY",3862 +2004-12-01,"Industrial Consumption","North Carolina","NC",8320 +2004-12-01,"Industrial Consumption","District of Columbia","DC",0 +2004-12-01,"Industrial Consumption","Maine","ME",1589 +2004-12-01,"Industrial Consumption","Nebraska","NE",3704 +2004-12-01,"Industrial Consumption","Tennessee","TN",9372 +2004-12-01,"Industrial Consumption","Michigan","MI",20190 +2004-12-01,"Industrial Consumption","Illinois","IL",26251 +2004-12-01,"Industrial Consumption","Alaska","AK",3051 +2004-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92299 +2004-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",59411 +2004-12-01,"Residential Consumption","Oregon","OR",5709 +2004-12-01,"Residential Consumption","Louisiana","LA",4832 +2004-12-01,"Residential Consumption","Iowa","IA",10957 +2004-12-01,"Residential Consumption","Utah","UT",9265 +2004-12-01,"Residential Consumption","Michigan","MI",52522 +2004-12-01,"Residential Consumption","Maryland","MD",13553 +2004-12-01,"Residential Consumption","Indiana","IN",25999 +2004-12-01,"Residential Consumption","Arkansas","AR",4805 +2004-12-01,"Residential Consumption","New Jersey","NJ",32498 +2004-12-01,"Residential Consumption","U.S.","U.S.",725603 +2004-12-01,"Residential Consumption","New York","NY",48400 +2004-12-01,"Residential Consumption","Rhode Island","RI",2116 +2004-12-01,"Residential Consumption","Ohio","OH",47645 +2004-12-01,"Residential Consumption","North Carolina","NC",9656 +2004-12-01,"Residential Consumption","Wisconsin","WI",23127 +2004-12-01,"Residential Consumption","Oklahoma","OK",8458 +2004-12-01,"Residential Consumption","Missouri","MO",15707 +2004-12-01,"Residential Consumption","Alaska","AK",2469 +2004-12-01,"Residential Consumption","Wyoming","WY",1757 +2004-12-01,"Residential Consumption","Tennessee","TN",8948 +2004-12-01,"Residential Consumption","Georgia","GA",23572 +2004-12-01,"Residential Consumption","District of Columbia","DC",2280 +2004-12-01,"Residential Consumption","New Mexico","NM",5124 +2004-12-01,"Residential Consumption","Kentucky","KY",10369 +2004-12-01,"Residential Consumption","Kansas","KS",10101 +2004-12-01,"Residential Consumption","Washington","WA",10366 +2004-12-01,"Residential Consumption","California","CA",74682 +2004-12-01,"Residential Consumption","Mississippi","MS",3669 +2004-12-01,"Residential Consumption","Virginia","VA",13547 +2004-12-01,"Residential Consumption","Nebraska","NE",5190 +2004-12-01,"Residential Consumption","Minnesota","MN",21840 +2004-12-01,"Residential Consumption","Hawaii","HI",45 +2004-12-01,"Residential Consumption","Connecticut","CT",5661 +2004-12-01,"Residential Consumption","South Dakota","SD",1907 +2004-12-01,"Residential Consumption","North Dakota","ND",1753 +2004-12-01,"Residential Consumption","Massachusetts","MA",13721 +2004-12-01,"Residential Consumption","Idaho","ID",3225 +2004-12-01,"Residential Consumption","Arizona","AZ",6406 +2004-12-01,"Residential Consumption","Alabama","AL",5420 +2004-12-01,"Residential Consumption","Texas","TX",29668 +2004-12-01,"Residential Consumption","South Carolina","SC",4049 +2004-12-01,"Residential Consumption","Florida","FL",1603 +2004-12-01,"Residential Consumption","West Virginia","WV",3974 +2004-12-01,"Residential Consumption","Illinois","IL",74592 +2004-12-01,"Residential Consumption","Maine","ME",179 +2004-12-01,"Residential Consumption","Montana","MT",2861 +2004-12-01,"Residential Consumption","Colorado","CO",19344 +2004-12-01,"Residential Consumption","Delaware","DE",1509 +2004-12-01,"Residential Consumption","Vermont","VT",385 +2004-12-01,"Residential Consumption","Nevada","NV",6075 +2004-12-01,"Residential Consumption","Pennsylvania","PA",33211 +2004-12-01,"Residential Consumption","New Hampshire","NH",850 +2004-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",1737 +2005-01-01,"Commercial Consumption","Washington","WA",7133 +2005-01-01,"Commercial Consumption","Kansas","KS",6022 +2005-01-01,"Commercial Consumption","Vermont","VT",435 +2005-01-01,"Commercial Consumption","Delaware","DE",1358 +2005-01-01,"Commercial Consumption","Minnesota","MN",18205 +2005-01-01,"Commercial Consumption","Wisconsin","WI",15842 +2005-01-01,"Commercial Consumption","South Dakota","SD",1715 +2005-01-01,"Commercial Consumption","California","CA",26277 +2005-01-01,"Commercial Consumption","Alabama","AL",3595 +2005-01-01,"Commercial Consumption","Nebraska","NE",5098 +2005-01-01,"Commercial Consumption","Louisiana","LA",3497 +2005-01-01,"Commercial Consumption","New Jersey","NJ",26219 +2005-01-01,"Commercial Consumption","Georgia","GA",8149 +2005-01-01,"Commercial Consumption","West Virginia","WV",3522 +2005-01-01,"Commercial Consumption","Oklahoma","OK",6721 +2005-01-01,"Commercial Consumption","Virginia","VA",10211 +2005-01-01,"Commercial Consumption","Missouri","MO",11063 +2005-01-01,"Commercial Consumption","Kentucky","KY",6354 +2005-01-01,"Commercial Consumption","Arkansas","AR",4708 +2005-01-01,"Commercial Consumption","Illinois","IL",35200 +2005-01-01,"Commercial Consumption","Wyoming","WY",1531 +2005-01-01,"Commercial Consumption","Utah","UT",5436 +2005-01-01,"Commercial Consumption","Maine","ME",733 +2005-01-01,"Commercial Consumption","Florida","FL",5940 +2005-01-01,"Commercial Consumption","Idaho","ID",2172 +2005-01-01,"Commercial Consumption","Iowa","IA",8192 +2005-01-01,"Commercial Consumption","Hawaii","HI",154 +2005-01-01,"Commercial Consumption","Michigan","MI",30588 +2005-01-01,"Commercial Consumption","Massachusetts","MA",8459 +2005-01-01,"Commercial Consumption","New Hampshire","NH",1597 +2005-01-01,"Commercial Consumption","Maryland","MD",9894 +2005-01-01,"Commercial Consumption","Rhode Island","RI",1847 +2005-01-01,"Commercial Consumption","Connecticut","CT",5653 +2005-01-01,"Commercial Consumption","Arizona","AZ",4056 +2005-01-01,"Commercial Consumption","Nevada","NV",3435 +2005-01-01,"Commercial Consumption","North Carolina","NC",7551 +2005-01-01,"Commercial Consumption","New Mexico","NM",3955 +2005-01-01,"Commercial Consumption","U.S.","U.S.",466725 +2005-01-01,"Commercial Consumption","Alaska","AK",2263 +2005-01-01,"Commercial Consumption","Indiana","IN",13729 +2005-01-01,"Commercial Consumption","South Carolina","SC",3005 +2005-01-01,"Commercial Consumption","North Dakota","ND",1942 +2005-01-01,"Commercial Consumption","Colorado","CO",9665 +2005-01-01,"Commercial Consumption","Oregon","OR",4280 +2005-01-01,"Commercial Consumption","Pennsylvania","PA",23937 +2005-01-01,"Commercial Consumption","Montana","MT",2388 +2005-01-01,"Commercial Consumption","Texas","TX",22414 +2005-01-01,"Commercial Consumption","Ohio","OH",28695 +2005-01-01,"Commercial Consumption","New York","NY",38121 +2005-01-01,"Commercial Consumption","Mississippi","MS",2548 +2005-01-01,"Commercial Consumption","Tennessee","TN",8661 +2005-01-01,"Commercial Consumption","District of Columbia","DC",2561 +2005-01-01,"Delivered to Consumers","Utah","UT",18357 +2005-01-01,"Delivered to Consumers","Delaware","DE",6870 +2005-01-01,"Delivered to Consumers","Rhode Island","RI",8403 +2005-01-01,"Delivered to Consumers","New York","NY",131102 +2005-01-01,"Delivered to Consumers","Kansas","KS",29876 +2005-01-01,"Delivered to Consumers","Tennessee","TN",30997 +2005-01-01,"Delivered to Consumers","Texas","TX",283104 +2005-01-01,"Delivered to Consumers","Louisiana","LA",102652 +2005-01-01,"Delivered to Consumers","South Dakota","SD",5319 +2005-01-01,"Delivered to Consumers","Alaska","AK",11592 +2005-01-01,"Delivered to Consumers","Iowa","IA",34272 +2005-01-01,"Delivered to Consumers","Connecticut","CT",19417 +2005-01-01,"Delivered to Consumers","Nebraska","NE",17242 +2005-01-01,"Delivered to Consumers","Colorado","CO",50356 +2005-01-01,"Delivered to Consumers","North Dakota","ND",5232 +2005-01-01,"Delivered to Consumers","Indiana","IN",72775 +2005-01-01,"Delivered to Consumers","Wyoming","WY",7585 +2005-01-01,"Delivered to Consumers","Illinois","IL",153861 +2005-01-01,"Delivered to Consumers","Montana","MT",8717 +2005-01-01,"Delivered to Consumers","Idaho","ID",9355 +2005-01-01,"Delivered to Consumers","Alabama","AL",32785 +2005-01-01,"Delivered to Consumers","Wisconsin","WI",59667 +2005-01-01,"Delivered to Consumers","Virginia","VA",37448 +2005-01-01,"Delivered to Consumers","North Carolina","NC",30538 +2005-01-01,"Delivered to Consumers","Missouri","MO",42227 +2005-01-01,"Delivered to Consumers","Massachusetts","MA",43684 +2005-01-01,"Delivered to Consumers","Oregon","OR",25874 +2005-01-01,"Delivered to Consumers","Washington","WA",32764 +2005-01-01,"Delivered to Consumers","U.S.","U.S.",2396713 +2005-01-01,"Delivered to Consumers","Ohio","OH",122404 +2005-01-01,"Delivered to Consumers","Michigan","MI",133079 +2005-01-01,"Delivered to Consumers","Pennsylvania","PA",90958 +2005-01-01,"Delivered to Consumers","Nevada","NV",23220 +2005-01-01,"Delivered to Consumers","New Jersey","NJ",82164 +2005-01-01,"Delivered to Consumers","New Hampshire","NH",6958 +2005-01-01,"Delivered to Consumers","Minnesota","MN",56027 +2005-01-01,"Delivered to Consumers","Arkansas","AR",22386 +2005-01-01,"Delivered to Consumers","Georgia","GA",47756 +2005-01-01,"Delivered to Consumers","Arizona","AZ",24400 +2005-01-01,"Delivered to Consumers","Vermont","VT",1211 +2005-01-01,"Delivered to Consumers","Kentucky","KY",29373 +2005-01-01,"Delivered to Consumers","Mississippi","MS",23881 +2005-01-01,"Delivered to Consumers","New Mexico","NM",14713 +2005-01-01,"Delivered to Consumers","West Virginia","WV",13027 +2005-01-01,"Delivered to Consumers","Hawaii","HI",242 +2005-01-01,"Delivered to Consumers","Oklahoma","OK",42941 +2005-01-01,"Delivered to Consumers","California","CA",228279 +2005-01-01,"Delivered to Consumers","South Carolina","SC",19494 +2005-01-01,"Delivered to Consumers","Maine","ME",5882 +2005-01-01,"Delivered to Consumers","Maryland","MD",29469 +2005-01-01,"Delivered to Consumers","Florida","FL",59417 +2005-01-01,"Delivered to Consumers","District of Columbia","DC",5419 +2005-01-01,"Electric Power Consumption","Nevada","NV",11741 +2005-01-01,"Electric Power Consumption","Maryland","MD",813 +2005-01-01,"Electric Power Consumption","Connecticut","CT",3669 +2005-01-01,"Electric Power Consumption","Alabama","AL",6019 +2005-01-01,"Electric Power Consumption","Washington","WA",6588 +2005-01-01,"Electric Power Consumption","Virginia","VA",3494 +2005-01-01,"Electric Power Consumption","New Mexico","NM",2789 +2005-01-01,"Electric Power Consumption","Wyoming","WY",40 +2005-01-01,"Electric Power Consumption","North Carolina","NC",1827 +2005-01-01,"Electric Power Consumption","Mississippi","MS",6900 +2005-01-01,"Electric Power Consumption","Kentucky","KY",886 +2005-01-01,"Electric Power Consumption","Delaware","DE",1412 +2005-01-01,"Electric Power Consumption","Arkansas","AR",1819 +2005-01-01,"Electric Power Consumption","Texas","TX",93970 +2005-01-01,"Electric Power Consumption","Minnesota","MN",1279 +2005-01-01,"Electric Power Consumption","Pennsylvania","PA",3681 +2005-01-01,"Electric Power Consumption","Iowa","IA",1307 +2005-01-01,"Electric Power Consumption","U.S.","U.S.",384710 +2005-01-01,"Electric Power Consumption","Nebraska","NE",344 +2005-01-01,"Electric Power Consumption","New Hampshire","NH",3291 +2005-01-01,"Electric Power Consumption","New Jersey","NJ",6605 +2005-01-01,"Electric Power Consumption","New York","NY",18089 +2005-01-01,"Electric Power Consumption","Vermont","VT",3 +2005-01-01,"Electric Power Consumption","Tennessee","TN",80 +2005-01-01,"Electric Power Consumption","North Dakota","ND",0 +2005-01-01,"Electric Power Consumption","Louisiana","LA",19636 +2005-01-01,"Electric Power Consumption","Rhode Island","RI",2862 +2005-01-01,"Electric Power Consumption","Michigan","MI",11433 +2005-01-01,"Electric Power Consumption","Massachusetts","MA",9788 +2005-01-01,"Electric Power Consumption","South Dakota","SD",94 +2005-01-01,"Electric Power Consumption","Ohio","OH",1665 +2005-01-01,"Electric Power Consumption","Montana","MT",13 +2005-01-01,"Electric Power Consumption","Indiana","IN",1534 +2005-01-01,"Electric Power Consumption","Florida","FL",44733 +2005-01-01,"Electric Power Consumption","Wisconsin","WI",2303 +2005-01-01,"Electric Power Consumption","Idaho","ID",1122 +2005-01-01,"Electric Power Consumption","Colorado","CO",8116 +2005-01-01,"Electric Power Consumption","Oklahoma","OK",11179 +2005-01-01,"Electric Power Consumption","Utah","UT",686 +2005-01-01,"Electric Power Consumption","Oregon","OR",8480 +2005-01-01,"Electric Power Consumption","Illinois","IL",2966 +2005-01-01,"Electric Power Consumption","West Virginia","WV",227 +2005-01-01,"Electric Power Consumption","Maine","ME",4191 +2005-01-01,"Electric Power Consumption","Hawaii","HI",NA +2005-01-01,"Electric Power Consumption","Arizona","AZ",11557 +2005-01-01,"Electric Power Consumption","California","CA",52729 +2005-01-01,"Electric Power Consumption","South Carolina","SC",3544 +2005-01-01,"Electric Power Consumption","Kansas","KS",707 +2005-01-01,"Electric Power Consumption","Missouri","MO",1600 +2005-01-01,"Electric Power Consumption","Georgia","GA",3476 +2005-01-01,"Electric Power Consumption","Alaska","AK",3422 +2005-01-01,"Industrial Consumption","Missouri","MO",7534 +2005-01-01,"Industrial Consumption","Ohio","OH",31923 +2005-01-01,"Industrial Consumption","U.S.","U.S.",650989 +2005-01-01,"Industrial Consumption","Vermont","VT",232 +2005-01-01,"Industrial Consumption","Wyoming","WY",4072 +2005-01-01,"Industrial Consumption","Tennessee","TN",8885 +2005-01-01,"Industrial Consumption","New Jersey","NJ",7592 +2005-01-01,"Industrial Consumption","Minnesota","MN",10057 +2005-01-01,"Industrial Consumption","Utah","UT",2326 +2005-01-01,"Industrial Consumption","Mississippi","MS",9767 +2005-01-01,"Industrial Consumption","Arkansas","AR",9018 +2005-01-01,"Industrial Consumption","West Virginia","WV",4117 +2005-01-01,"Industrial Consumption","Wisconsin","WI",15843 +2005-01-01,"Industrial Consumption","New Hampshire","NH",724 +2005-01-01,"Industrial Consumption","Iowa","IA",10425 +2005-01-01,"Industrial Consumption","Illinois","IL",29846 +2005-01-01,"Industrial Consumption","Georgia","GA",14510 +2005-01-01,"Industrial Consumption","Montana","MT",2438 +2005-01-01,"Industrial Consumption","Maryland","MD",2150 +2005-01-01,"Industrial Consumption","Washington","WA",6535 +2005-01-01,"Industrial Consumption","New Mexico","NM",1980 +2005-01-01,"Industrial Consumption","Kansas","KS",9237 +2005-01-01,"Industrial Consumption","Oregon","OR",6253 +2005-01-01,"Industrial Consumption","Maine","ME",750 +2005-01-01,"Industrial Consumption","Texas","TX",126867 +2005-01-01,"Industrial Consumption","Virginia","VA",6697 +2005-01-01,"Industrial Consumption","Idaho","ID",2269 +2005-01-01,"Industrial Consumption","Florida","FL",6333 +2005-01-01,"Industrial Consumption","Connecticut","CT",2172 +2005-01-01,"Industrial Consumption","North Carolina","NC",8558 +2005-01-01,"Industrial Consumption","Alaska","AK",3174 +2005-01-01,"Industrial Consumption","Colorado","CO",12086 +2005-01-01,"Industrial Consumption","California","CA",72402 +2005-01-01,"Industrial Consumption","Indiana","IN",28069 +2005-01-01,"Industrial Consumption","New York","NY",8745 +2005-01-01,"Industrial Consumption","Kentucky","KY",11242 +2005-01-01,"Industrial Consumption","Alabama","AL",14959 +2005-01-01,"Industrial Consumption","Rhode Island","RI",573 +2005-01-01,"Industrial Consumption","Hawaii","HI",38 +2005-01-01,"Industrial Consumption","Arizona","AZ",1617 +2005-01-01,"Industrial Consumption","Nebraska","NE",3450 +2005-01-01,"Industrial Consumption","Delaware","DE",2068 +2005-01-01,"Industrial Consumption","North Dakota","ND",1089 +2005-01-01,"Industrial Consumption","Massachusetts","MA",6342 +2005-01-01,"Industrial Consumption","Oklahoma","OK",12333 +2005-01-01,"Industrial Consumption","Louisiana","LA",71022 +2005-01-01,"Industrial Consumption","South Dakota","SD",1113 +2005-01-01,"Industrial Consumption","Pennsylvania","PA",18700 +2005-01-01,"Industrial Consumption","Nevada","NV",1211 +2005-01-01,"Industrial Consumption","South Carolina","SC",7222 +2005-01-01,"Industrial Consumption","Michigan","MI",24423 +2005-01-01,"Industrial Consumption","District of Columbia","DC",0 +2005-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96256 +2005-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",68889 +2005-01-01,"Residential Consumption","South Carolina","SC",5723 +2005-01-01,"Residential Consumption","Oregon","OR",6861 +2005-01-01,"Residential Consumption","Tennessee","TN",13370 +2005-01-01,"Residential Consumption","Nevada","NV",6833 +2005-01-01,"Residential Consumption","Washington","WA",12508 +2005-01-01,"Residential Consumption","Mississippi","MS",4666 +2005-01-01,"Residential Consumption","Connecticut","CT",7922 +2005-01-01,"Residential Consumption","Vermont","VT",541 +2005-01-01,"Residential Consumption","Virginia","VA",17045 +2005-01-01,"Residential Consumption","Utah","UT",9909 +2005-01-01,"Residential Consumption","Massachusetts","MA",19096 +2005-01-01,"Residential Consumption","Kentucky","KY",10892 +2005-01-01,"Residential Consumption","Missouri","MO",22031 +2005-01-01,"Residential Consumption","North Carolina","NC",12601 +2005-01-01,"Residential Consumption","South Dakota","SD",2398 +2005-01-01,"Residential Consumption","Arizona","AZ",7170 +2005-01-01,"Residential Consumption","Wyoming","WY",1942 +2005-01-01,"Residential Consumption","New York","NY",66148 +2005-01-01,"Residential Consumption","Illinois","IL",85849 +2005-01-01,"Residential Consumption","Michigan","MI",66635 +2005-01-01,"Residential Consumption","District of Columbia","DC",2858 +2005-01-01,"Residential Consumption","Indiana","IN",29442 +2005-01-01,"Residential Consumption","Arkansas","AR",6841 +2005-01-01,"Residential Consumption","Kansas","KS",13910 +2005-01-01,"Residential Consumption","Delaware","DE",2031 +2005-01-01,"Residential Consumption","West Virginia","WV",5162 +2005-01-01,"Residential Consumption","Rhode Island","RI",3120 +2005-01-01,"Residential Consumption","Louisiana","LA",8496 +2005-01-01,"Residential Consumption","Wisconsin","WI",25678 +2005-01-01,"Residential Consumption","Minnesota","MN",26485 +2005-01-01,"Residential Consumption","Georgia","GA",21620 +2005-01-01,"Residential Consumption","Pennsylvania","PA",44640 +2005-01-01,"Residential Consumption","North Dakota","ND",2201 +2005-01-01,"Residential Consumption","New Hampshire","NH",1346 +2005-01-01,"Residential Consumption","Colorado","CO",20489 +2005-01-01,"Residential Consumption","Oklahoma","OK",12708 +2005-01-01,"Residential Consumption","U.S.","U.S.",892345 +2005-01-01,"Residential Consumption","Ohio","OH",60120 +2005-01-01,"Residential Consumption","Hawaii","HI",50 +2005-01-01,"Residential Consumption","Maryland","MD",16612 +2005-01-01,"Residential Consumption","New Mexico","NM",5990 +2005-01-01,"Residential Consumption","Florida","FL",2411 +2005-01-01,"Residential Consumption","Montana","MT",3879 +2005-01-01,"Residential Consumption","Alaska","AK",2734 +2005-01-01,"Residential Consumption","Texas","TX",39852 +2005-01-01,"Residential Consumption","Iowa","IA",14348 +2005-01-01,"Residential Consumption","Idaho","ID",3792 +2005-01-01,"Residential Consumption","California","CA",76870 +2005-01-01,"Residential Consumption","Nebraska","NE",8350 +2005-01-01,"Residential Consumption","Maine","ME",208 +2005-01-01,"Residential Consumption","New Jersey","NJ",41748 +2005-01-01,"Residential Consumption","Alabama","AL",8212 +2005-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",1944 +2005-02-01,"Commercial Consumption","Washington","WA",5901 +2005-02-01,"Commercial Consumption","South Carolina","SC",2841 +2005-02-01,"Commercial Consumption","Mississippi","MS",2844 +2005-02-01,"Commercial Consumption","Michigan","MI",26773 +2005-02-01,"Commercial Consumption","New Mexico","NM",3549 +2005-02-01,"Commercial Consumption","Massachusetts","MA",8690 +2005-02-01,"Commercial Consumption","Kentucky","KY",5086 +2005-02-01,"Commercial Consumption","North Carolina","NC",6951 +2005-02-01,"Commercial Consumption","Pennsylvania","PA",22109 +2005-02-01,"Commercial Consumption","New Jersey","NJ",24812 +2005-02-01,"Commercial Consumption","New Hampshire","NH",1449 +2005-02-01,"Commercial Consumption","Maine","ME",610 +2005-02-01,"Commercial Consumption","Maryland","MD",9353 +2005-02-01,"Commercial Consumption","Alaska","AK",2062 +2005-02-01,"Commercial Consumption","California","CA",24408 +2005-02-01,"Commercial Consumption","Nevada","NV",3152 +2005-02-01,"Commercial Consumption","Louisiana","LA",3193 +2005-02-01,"Commercial Consumption","West Virginia","WV",3534 +2005-02-01,"Commercial Consumption","Florida","FL",5741 +2005-02-01,"Commercial Consumption","New York","NY",36856 +2005-02-01,"Commercial Consumption","District of Columbia","DC",2307 +2005-02-01,"Commercial Consumption","Utah","UT",4994 +2005-02-01,"Commercial Consumption","Oregon","OR",3710 +2005-02-01,"Commercial Consumption","Kansas","KS",4892 +2005-02-01,"Commercial Consumption","Hawaii","HI",146 +2005-02-01,"Commercial Consumption","Connecticut","CT",5452 +2005-02-01,"Commercial Consumption","Alabama","AL",3442 +2005-02-01,"Commercial Consumption","Arizona","AZ",3578 +2005-02-01,"Commercial Consumption","Indiana","IN",10934 +2005-02-01,"Commercial Consumption","Wyoming","WY",1186 +2005-02-01,"Commercial Consumption","North Dakota","ND",1312 +2005-02-01,"Commercial Consumption","Missouri","MO",9540 +2005-02-01,"Commercial Consumption","Ohio","OH",25748 +2005-02-01,"Commercial Consumption","Delaware","DE",1253 +2005-02-01,"Commercial Consumption","Minnesota","MN",13683 +2005-02-01,"Commercial Consumption","Oklahoma","OK",6588 +2005-02-01,"Commercial Consumption","U.S.","U.S.",411963 +2005-02-01,"Commercial Consumption","Texas","TX",21233 +2005-02-01,"Commercial Consumption","Georgia","GA",7080 +2005-02-01,"Commercial Consumption","Vermont","VT",432 +2005-02-01,"Commercial Consumption","Iowa","IA",6314 +2005-02-01,"Commercial Consumption","Nebraska","NE",4149 +2005-02-01,"Commercial Consumption","Tennessee","TN",8057 +2005-02-01,"Commercial Consumption","Colorado","CO",7725 +2005-02-01,"Commercial Consumption","Virginia","VA",8551 +2005-02-01,"Commercial Consumption","Wisconsin","WI",11345 +2005-02-01,"Commercial Consumption","South Dakota","SD",1425 +2005-02-01,"Commercial Consumption","Montana","MT",1585 +2005-02-01,"Commercial Consumption","Rhode Island","RI",1915 +2005-02-01,"Commercial Consumption","Idaho","ID",1887 +2005-02-01,"Commercial Consumption","Arkansas","AR",4160 +2005-02-01,"Commercial Consumption","Illinois","IL",27427 +2005-02-01,"Delivered to Consumers","Delaware","DE",5543 +2005-02-01,"Delivered to Consumers","Arkansas","AR",19719 +2005-02-01,"Delivered to Consumers","Pennsylvania","PA",84388 +2005-02-01,"Delivered to Consumers","Texas","TX",246886 +2005-02-01,"Delivered to Consumers","New Hampshire","NH",7545 +2005-02-01,"Delivered to Consumers","Utah","UT",16430 +2005-02-01,"Delivered to Consumers","Maryland","MD",25497 +2005-02-01,"Delivered to Consumers","South Carolina","SC",16945 +2005-02-01,"Delivered to Consumers","District of Columbia","DC",4311 +2005-02-01,"Delivered to Consumers","Indiana","IN",58428 +2005-02-01,"Delivered to Consumers","New York","NY",130863 +2005-02-01,"Delivered to Consumers","Oklahoma","OK",41516 +2005-02-01,"Delivered to Consumers","Idaho","ID",8465 +2005-02-01,"Delivered to Consumers","Tennessee","TN",29214 +2005-02-01,"Delivered to Consumers","Michigan","MI",112812 +2005-02-01,"Delivered to Consumers","Iowa","IA",27838 +2005-02-01,"Delivered to Consumers","Wisconsin","WI",45463 +2005-02-01,"Delivered to Consumers","Missouri","MO",35965 +2005-02-01,"Delivered to Consumers","New Jersey","NJ",79445 +2005-02-01,"Delivered to Consumers","Maine","ME",5823 +2005-02-01,"Delivered to Consumers","Georgia","GA",39503 +2005-02-01,"Delivered to Consumers","Arizona","AZ",22209 +2005-02-01,"Delivered to Consumers","Alaska","AK",10185 +2005-02-01,"Delivered to Consumers","Kentucky","KY",24036 +2005-02-01,"Delivered to Consumers","Nebraska","NE",14641 +2005-02-01,"Delivered to Consumers","California","CA",203927 +2005-02-01,"Delivered to Consumers","Vermont","VT",1280 +2005-02-01,"Delivered to Consumers","South Dakota","SD",4504 +2005-02-01,"Delivered to Consumers","Mississippi","MS",20984 +2005-02-01,"Delivered to Consumers","Massachusetts","MA",45004 +2005-02-01,"Delivered to Consumers","Oregon","OR",23392 +2005-02-01,"Delivered to Consumers","Nevada","NV",21494 +2005-02-01,"Delivered to Consumers","Florida","FL",49956 +2005-02-01,"Delivered to Consumers","New Mexico","NM",13220 +2005-02-01,"Delivered to Consumers","West Virginia","WV",12645 +2005-02-01,"Delivered to Consumers","Rhode Island","RI",8917 +2005-02-01,"Delivered to Consumers","Montana","MT",6227 +2005-02-01,"Delivered to Consumers","Hawaii","HI",225 +2005-02-01,"Delivered to Consumers","Ohio","OH",107459 +2005-02-01,"Delivered to Consumers","Virginia","VA",31508 +2005-02-01,"Delivered to Consumers","Colorado","CO",41495 +2005-02-01,"Delivered to Consumers","Louisiana","LA",87403 +2005-02-01,"Delivered to Consumers","Washington","WA",27001 +2005-02-01,"Delivered to Consumers","Kansas","KS",25291 +2005-02-01,"Delivered to Consumers","North Dakota","ND",4001 +2005-02-01,"Delivered to Consumers","U.S.","U.S.",2094357 +2005-02-01,"Delivered to Consumers","Wyoming","WY",6443 +2005-02-01,"Delivered to Consumers","Illinois","IL",118319 +2005-02-01,"Delivered to Consumers","Connecticut","CT",20079 +2005-02-01,"Delivered to Consumers","Alabama","AL",29012 +2005-02-01,"Delivered to Consumers","North Carolina","NC",27324 +2005-02-01,"Delivered to Consumers","Minnesota","MN",41821 +2005-02-01,"Electric Power Consumption","New Mexico","NM",2383 +2005-02-01,"Electric Power Consumption","Louisiana","LA",15729 +2005-02-01,"Electric Power Consumption","Colorado","CO",6705 +2005-02-01,"Electric Power Consumption","New York","NY",16484 +2005-02-01,"Electric Power Consumption","Michigan","MI",6832 +2005-02-01,"Electric Power Consumption","Massachusetts","MA",9918 +2005-02-01,"Electric Power Consumption","Pennsylvania","PA",2103 +2005-02-01,"Electric Power Consumption","Nevada","NV",11563 +2005-02-01,"Electric Power Consumption","Montana","MT",11 +2005-02-01,"Electric Power Consumption","South Carolina","SC",1827 +2005-02-01,"Electric Power Consumption","Minnesota","MN",997 +2005-02-01,"Electric Power Consumption","Wyoming","WY",28 +2005-02-01,"Electric Power Consumption","North Dakota","ND",0 +2005-02-01,"Electric Power Consumption","Delaware","DE",1001 +2005-02-01,"Electric Power Consumption","New Jersey","NJ",7737 +2005-02-01,"Electric Power Consumption","Idaho","ID",1098 +2005-02-01,"Electric Power Consumption","Arkansas","AR",1725 +2005-02-01,"Electric Power Consumption","Texas","TX",83671 +2005-02-01,"Electric Power Consumption","Illinois","IL",1263 +2005-02-01,"Electric Power Consumption","Nebraska","NE",303 +2005-02-01,"Electric Power Consumption","Missouri","MO",1015 +2005-02-01,"Electric Power Consumption","Maine","ME",4461 +2005-02-01,"Electric Power Consumption","Kentucky","KY",323 +2005-02-01,"Electric Power Consumption","California","CA",45266 +2005-02-01,"Electric Power Consumption","Washington","WA",5392 +2005-02-01,"Electric Power Consumption","Oklahoma","OK",9776 +2005-02-01,"Electric Power Consumption","Iowa","IA",1096 +2005-02-01,"Electric Power Consumption","North Carolina","NC",485 +2005-02-01,"Electric Power Consumption","Oregon","OR",8335 +2005-02-01,"Electric Power Consumption","West Virginia","WV",99 +2005-02-01,"Electric Power Consumption","Mississippi","MS",5736 +2005-02-01,"Electric Power Consumption","New Hampshire","NH",4138 +2005-02-01,"Electric Power Consumption","Maryland","MD",673 +2005-02-01,"Electric Power Consumption","Tennessee","TN",68 +2005-02-01,"Electric Power Consumption","South Dakota","SD",36 +2005-02-01,"Electric Power Consumption","Ohio","OH",606 +2005-02-01,"Electric Power Consumption","Arizona","AZ",11589 +2005-02-01,"Electric Power Consumption","Alabama","AL",4524 +2005-02-01,"Electric Power Consumption","Rhode Island","RI",2953 +2005-02-01,"Electric Power Consumption","Utah","UT",571 +2005-02-01,"Electric Power Consumption","Kansas","KS",621 +2005-02-01,"Electric Power Consumption","Wisconsin","WI",1943 +2005-02-01,"Electric Power Consumption","U.S.","U.S.",330547 +2005-02-01,"Electric Power Consumption","Hawaii","HI",NA +2005-02-01,"Electric Power Consumption","Indiana","IN",844 +2005-02-01,"Electric Power Consumption","Connecticut","CT",4923 +2005-02-01,"Electric Power Consumption","Georgia","GA",1066 +2005-02-01,"Electric Power Consumption","Alaska","AK",2993 +2005-02-01,"Electric Power Consumption","Virginia","VA",3169 +2005-02-01,"Electric Power Consumption","Vermont","VT",7 +2005-02-01,"Electric Power Consumption","Florida","FL",36459 +2005-02-01,"Industrial Consumption","Arizona","AZ",1442 +2005-02-01,"Industrial Consumption","Utah","UT",2345 +2005-02-01,"Industrial Consumption","Maine","ME",578 +2005-02-01,"Industrial Consumption","Michigan","MI",20656 +2005-02-01,"Industrial Consumption","Illinois","IL",26239 +2005-02-01,"Industrial Consumption","Colorado","CO",10602 +2005-02-01,"Industrial Consumption","South Dakota","SD",1186 +2005-02-01,"Industrial Consumption","Texas","TX",109956 +2005-02-01,"Industrial Consumption","Wisconsin","WI",13238 +2005-02-01,"Industrial Consumption","District of Columbia","DC",0 +2005-02-01,"Industrial Consumption","Ohio","OH",29614 +2005-02-01,"Industrial Consumption","Minnesota","MN",8561 +2005-02-01,"Industrial Consumption","Iowa","IA",10143 +2005-02-01,"Industrial Consumption","North Carolina","NC",8290 +2005-02-01,"Industrial Consumption","Massachusetts","MA",6707 +2005-02-01,"Industrial Consumption","Oklahoma","OK",13811 +2005-02-01,"Industrial Consumption","Louisiana","LA",61602 +2005-02-01,"Industrial Consumption","New Mexico","NM",1848 +2005-02-01,"Industrial Consumption","New York","NY",9156 +2005-02-01,"Industrial Consumption","Nebraska","NE",3453 +2005-02-01,"Industrial Consumption","Vermont","VT",304 +2005-02-01,"Industrial Consumption","Tennessee","TN",8462 +2005-02-01,"Industrial Consumption","New Hampshire","NH",650 +2005-02-01,"Industrial Consumption","Kentucky","KY",10146 +2005-02-01,"Industrial Consumption","Hawaii","HI",35 +2005-02-01,"Industrial Consumption","Kansas","KS",8405 +2005-02-01,"Industrial Consumption","Oregon","OR",5532 +2005-02-01,"Industrial Consumption","Mississippi","MS",8472 +2005-02-01,"Industrial Consumption","California","CA",71329 +2005-02-01,"Industrial Consumption","Arkansas","AR",7827 +2005-02-01,"Industrial Consumption","Florida","FL",5502 +2005-02-01,"Industrial Consumption","Maryland","MD",2038 +2005-02-01,"Industrial Consumption","Missouri","MO",6457 +2005-02-01,"Industrial Consumption","South Carolina","SC",6952 +2005-02-01,"Industrial Consumption","Georgia","GA",13587 +2005-02-01,"Industrial Consumption","U.S.","U.S.",590965 +2005-02-01,"Industrial Consumption","Pennsylvania","PA",18314 +2005-02-01,"Industrial Consumption","Alabama","AL",13377 +2005-02-01,"Industrial Consumption","Virginia","VA",5856 +2005-02-01,"Industrial Consumption","Wyoming","WY",3545 +2005-02-01,"Industrial Consumption","Idaho","ID",2201 +2005-02-01,"Industrial Consumption","Indiana","IN",24575 +2005-02-01,"Industrial Consumption","Alaska","AK",2891 +2005-02-01,"Industrial Consumption","North Dakota","ND",1106 +2005-02-01,"Industrial Consumption","Montana","MT",1968 +2005-02-01,"Industrial Consumption","Washington","WA",5788 +2005-02-01,"Industrial Consumption","Nevada","NV",1147 +2005-02-01,"Industrial Consumption","West Virginia","WV",3543 +2005-02-01,"Industrial Consumption","New Jersey","NJ",7304 +2005-02-01,"Industrial Consumption","Connecticut","CT",2173 +2005-02-01,"Industrial Consumption","Delaware","DE",1465 +2005-02-01,"Industrial Consumption","Rhode Island","RI",587 +2005-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88430 +2005-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",60200 +2005-02-01,"Residential Consumption","North Carolina","NC",11599 +2005-02-01,"Residential Consumption","Louisiana","LA",6879 +2005-02-01,"Residential Consumption","Washington","WA",9921 +2005-02-01,"Residential Consumption","Oklahoma","OK",11340 +2005-02-01,"Residential Consumption","California","CA",62924 +2005-02-01,"Residential Consumption","Arizona","AZ",5600 +2005-02-01,"Residential Consumption","Wyoming","WY",1685 +2005-02-01,"Residential Consumption","Texas","TX",32025 +2005-02-01,"Residential Consumption","Ohio","OH",51491 +2005-02-01,"Residential Consumption","Wisconsin","WI",18937 +2005-02-01,"Residential Consumption","Michigan","MI",58551 +2005-02-01,"Residential Consumption","Arkansas","AR",6007 +2005-02-01,"Residential Consumption","Missouri","MO",18953 +2005-02-01,"Residential Consumption","Delaware","DE",1824 +2005-02-01,"Residential Consumption","South Carolina","SC",5325 +2005-02-01,"Residential Consumption","Vermont","VT",537 +2005-02-01,"Residential Consumption","Virginia","VA",13932 +2005-02-01,"Residential Consumption","Idaho","ID",3278 +2005-02-01,"Residential Consumption","Kansas","KS",11374 +2005-02-01,"Residential Consumption","Alaska","AK",2239 +2005-02-01,"Residential Consumption","West Virginia","WV",5469 +2005-02-01,"Residential Consumption","New York","NY",68368 +2005-02-01,"Residential Consumption","Mississippi","MS",3932 +2005-02-01,"Residential Consumption","Massachusetts","MA",19689 +2005-02-01,"Residential Consumption","Illinois","IL",63390 +2005-02-01,"Residential Consumption","Hawaii","HI",44 +2005-02-01,"Residential Consumption","Tennessee","TN",12627 +2005-02-01,"Residential Consumption","Pennsylvania","PA",41862 +2005-02-01,"Residential Consumption","Florida","FL",2254 +2005-02-01,"Residential Consumption","New Hampshire","NH",1308 +2005-02-01,"Residential Consumption","Connecticut","CT",7531 +2005-02-01,"Residential Consumption","Utah","UT",8520 +2005-02-01,"Residential Consumption","North Dakota","ND",1583 +2005-02-01,"Residential Consumption","Alabama","AL",7670 +2005-02-01,"Residential Consumption","Maryland","MD",13433 +2005-02-01,"Residential Consumption","Minnesota","MN",18580 +2005-02-01,"Residential Consumption","New Mexico","NM",5440 +2005-02-01,"Residential Consumption","Maine","ME",174 +2005-02-01,"Residential Consumption","Indiana","IN",22075 +2005-02-01,"Residential Consumption","New Jersey","NJ",39591 +2005-02-01,"Residential Consumption","Montana","MT",2663 +2005-02-01,"Residential Consumption","Colorado","CO",16463 +2005-02-01,"Residential Consumption","U.S.","U.S.",759126 +2005-02-01,"Residential Consumption","Rhode Island","RI",3461 +2005-02-01,"Residential Consumption","Oregon","OR",5816 +2005-02-01,"Residential Consumption","Iowa","IA",10285 +2005-02-01,"Residential Consumption","Nebraska","NE",6736 +2005-02-01,"Residential Consumption","South Dakota","SD",1857 +2005-02-01,"Residential Consumption","Nevada","NV",5631 +2005-02-01,"Residential Consumption","Georgia","GA",17769 +2005-02-01,"Residential Consumption","District of Columbia","DC",2005 +2005-02-01,"Residential Consumption","Kentucky","KY",8481 +2005-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1755 +2005-03-01,"Commercial Consumption","Wyoming","WY",1071 +2005-03-01,"Commercial Consumption","Washington","WA",5476 +2005-03-01,"Commercial Consumption","Oklahoma","OK",4709 +2005-03-01,"Commercial Consumption","Pennsylvania","PA",21686 +2005-03-01,"Commercial Consumption","Massachusetts","MA",8045 +2005-03-01,"Commercial Consumption","Wisconsin","WI",11351 +2005-03-01,"Commercial Consumption","Georgia","GA",6532 +2005-03-01,"Commercial Consumption","North Carolina","NC",6156 +2005-03-01,"Commercial Consumption","New Jersey","NJ",23231 +2005-03-01,"Commercial Consumption","Florida","FL",5708 +2005-03-01,"Commercial Consumption","Idaho","ID",1403 +2005-03-01,"Commercial Consumption","Connecticut","CT",5015 +2005-03-01,"Commercial Consumption","Alabama","AL",2844 +2005-03-01,"Commercial Consumption","Nevada","NV",2510 +2005-03-01,"Commercial Consumption","District of Columbia","DC",2356 +2005-03-01,"Commercial Consumption","North Dakota","ND",1288 +2005-03-01,"Commercial Consumption","Colorado","CO",7272 +2005-03-01,"Commercial Consumption","Vermont","VT",402 +2005-03-01,"Commercial Consumption","South Carolina","SC",2600 +2005-03-01,"Commercial Consumption","Utah","UT",4027 +2005-03-01,"Commercial Consumption","New Mexico","NM",3115 +2005-03-01,"Commercial Consumption","Virginia","VA",8609 +2005-03-01,"Commercial Consumption","Kansas","KS",3613 +2005-03-01,"Commercial Consumption","Nebraska","NE",3311 +2005-03-01,"Commercial Consumption","Arizona","AZ",3264 +2005-03-01,"Commercial Consumption","Illinois","IL",26904 +2005-03-01,"Commercial Consumption","Oregon","OR",2914 +2005-03-01,"Commercial Consumption","South Dakota","SD",1097 +2005-03-01,"Commercial Consumption","New Hampshire","NH",1382 +2005-03-01,"Commercial Consumption","Maryland","MD",8908 +2005-03-01,"Commercial Consumption","Hawaii","HI",156 +2005-03-01,"Commercial Consumption","Delaware","DE",1198 +2005-03-01,"Commercial Consumption","West Virginia","WV",3418 +2005-03-01,"Commercial Consumption","Minnesota","MN",12586 +2005-03-01,"Commercial Consumption","Iowa","IA",5527 +2005-03-01,"Commercial Consumption","Alaska","AK",1815 +2005-03-01,"Commercial Consumption","California","CA",20903 +2005-03-01,"Commercial Consumption","New York","NY",35813 +2005-03-01,"Commercial Consumption","Louisiana","LA",2806 +2005-03-01,"Commercial Consumption","Kentucky","KY",4947 +2005-03-01,"Commercial Consumption","U.S.","U.S.",377031 +2005-03-01,"Commercial Consumption","Texas","TX",16093 +2005-03-01,"Commercial Consumption","Tennessee","TN",6950 +2005-03-01,"Commercial Consumption","Michigan","MI",25853 +2005-03-01,"Commercial Consumption","Indiana","IN",10165 +2005-03-01,"Commercial Consumption","Missouri","MO",7767 +2005-03-01,"Commercial Consumption","Montana","MT",1385 +2005-03-01,"Commercial Consumption","Maine","ME",613 +2005-03-01,"Commercial Consumption","Rhode Island","RI",1762 +2005-03-01,"Commercial Consumption","Ohio","OH",24561 +2005-03-01,"Commercial Consumption","Arkansas","AR",3533 +2005-03-01,"Commercial Consumption","Mississippi","MS",2383 +2005-03-01,"Delivered to Consumers","Rhode Island","RI",7847 +2005-03-01,"Delivered to Consumers","Hawaii","HI",240 +2005-03-01,"Delivered to Consumers","Pennsylvania","PA",85058 +2005-03-01,"Delivered to Consumers","New Hampshire","NH",6875 +2005-03-01,"Delivered to Consumers","South Dakota","SD",3722 +2005-03-01,"Delivered to Consumers","Montana","MT",5828 +2005-03-01,"Delivered to Consumers","Idaho","ID",6757 +2005-03-01,"Delivered to Consumers","Tennessee","TN",25561 +2005-03-01,"Delivered to Consumers","North Carolina","NC",26203 +2005-03-01,"Delivered to Consumers","Mississippi","MS",23827 +2005-03-01,"Delivered to Consumers","Missouri","MO",31014 +2005-03-01,"Delivered to Consumers","Massachusetts","MA",45737 +2005-03-01,"Delivered to Consumers","California","CA",184829 +2005-03-01,"Delivered to Consumers","Arizona","AZ",17591 +2005-03-01,"Delivered to Consumers","Utah","UT",13763 +2005-03-01,"Delivered to Consumers","Alaska","AK",10627 +2005-03-01,"Delivered to Consumers","Kentucky","KY",24578 +2005-03-01,"Delivered to Consumers","Connecticut","CT",18777 +2005-03-01,"Delivered to Consumers","Maine","ME",5955 +2005-03-01,"Delivered to Consumers","Minnesota","MN",38832 +2005-03-01,"Delivered to Consumers","Oklahoma","OK",38987 +2005-03-01,"Delivered to Consumers","Arkansas","AR",19170 +2005-03-01,"Delivered to Consumers","South Carolina","SC",17212 +2005-03-01,"Delivered to Consumers","Oregon","OR",21951 +2005-03-01,"Delivered to Consumers","Washington","WA",24695 +2005-03-01,"Delivered to Consumers","North Dakota","ND",3696 +2005-03-01,"Delivered to Consumers","Delaware","DE",5427 +2005-03-01,"Delivered to Consumers","New York","NY",130581 +2005-03-01,"Delivered to Consumers","Maryland","MD",24272 +2005-03-01,"Delivered to Consumers","Alabama","AL",29689 +2005-03-01,"Delivered to Consumers","Texas","TX",249246 +2005-03-01,"Delivered to Consumers","Nevada","NV",17907 +2005-03-01,"Delivered to Consumers","Florida","FL",60238 +2005-03-01,"Delivered to Consumers","U.S.","U.S.",2048169 +2005-03-01,"Delivered to Consumers","New Mexico","NM",11693 +2005-03-01,"Delivered to Consumers","Iowa","IA",24671 +2005-03-01,"Delivered to Consumers","Wisconsin","WI",47647 +2005-03-01,"Delivered to Consumers","Virginia","VA",31147 +2005-03-01,"Delivered to Consumers","Colorado","CO",39617 +2005-03-01,"Delivered to Consumers","Louisiana","LA",100620 +2005-03-01,"Delivered to Consumers","Georgia","GA",39085 +2005-03-01,"Delivered to Consumers","West Virginia","WV",12670 +2005-03-01,"Delivered to Consumers","Illinois","IL",117462 +2005-03-01,"Delivered to Consumers","Ohio","OH",105183 +2005-03-01,"Delivered to Consumers","Michigan","MI",108608 +2005-03-01,"Delivered to Consumers","Nebraska","NE",11440 +2005-03-01,"Delivered to Consumers","Indiana","IN",61390 +2005-03-01,"Delivered to Consumers","Wyoming","WY",6231 +2005-03-01,"Delivered to Consumers","Vermont","VT",1199 +2005-03-01,"Delivered to Consumers","Kansas","KS",20604 +2005-03-01,"Delivered to Consumers","New Jersey","NJ",75959 +2005-03-01,"Delivered to Consumers","District of Columbia","DC",4308 +2005-03-01,"Electric Power Consumption","Illinois","IL",3085 +2005-03-01,"Electric Power Consumption","Kansas","KS",682 +2005-03-01,"Electric Power Consumption","Maine","ME",4518 +2005-03-01,"Electric Power Consumption","Indiana","IN",2175 +2005-03-01,"Electric Power Consumption","Georgia","GA",2035 +2005-03-01,"Electric Power Consumption","Florida","FL",46794 +2005-03-01,"Electric Power Consumption","Alaska","AK",3098 +2005-03-01,"Electric Power Consumption","Colorado","CO",5649 +2005-03-01,"Electric Power Consumption","Texas","TX",93732 +2005-03-01,"Electric Power Consumption","Wisconsin","WI",3673 +2005-03-01,"Electric Power Consumption","Pennsylvania","PA",5459 +2005-03-01,"Electric Power Consumption","South Dakota","SD",163 +2005-03-01,"Electric Power Consumption","North Dakota","ND",0 +2005-03-01,"Electric Power Consumption","New Mexico","NM",2307 +2005-03-01,"Electric Power Consumption","New Jersey","NJ",7825 +2005-03-01,"Electric Power Consumption","Louisiana","LA",19997 +2005-03-01,"Electric Power Consumption","Nebraska","NE",355 +2005-03-01,"Electric Power Consumption","North Carolina","NC",1841 +2005-03-01,"Electric Power Consumption","Maryland","MD",731 +2005-03-01,"Electric Power Consumption","California","CA",47897 +2005-03-01,"Electric Power Consumption","Alabama","AL",6532 +2005-03-01,"Electric Power Consumption","Arkansas","AR",2640 +2005-03-01,"Electric Power Consumption","Utah","UT",620 +2005-03-01,"Electric Power Consumption","Nevada","NV",10278 +2005-03-01,"Electric Power Consumption","U.S.","U.S.",386309 +2005-03-01,"Electric Power Consumption","Kentucky","KY",596 +2005-03-01,"Electric Power Consumption","New Hampshire","NH",3611 +2005-03-01,"Electric Power Consumption","Virginia","VA",3825 +2005-03-01,"Electric Power Consumption","South Carolina","SC",3077 +2005-03-01,"Electric Power Consumption","Minnesota","MN",1027 +2005-03-01,"Electric Power Consumption","Vermont","VT",0 +2005-03-01,"Electric Power Consumption","Missouri","MO",1830 +2005-03-01,"Electric Power Consumption","Hawaii","HI",NA +2005-03-01,"Electric Power Consumption","Montana","MT",14 +2005-03-01,"Electric Power Consumption","Rhode Island","RI",2483 +2005-03-01,"Electric Power Consumption","Massachusetts","MA",10746 +2005-03-01,"Electric Power Consumption","Wyoming","WY",40 +2005-03-01,"Electric Power Consumption","Mississippi","MS",9790 +2005-03-01,"Electric Power Consumption","Ohio","OH",1524 +2005-03-01,"Electric Power Consumption","Idaho","ID",1019 +2005-03-01,"Electric Power Consumption","New York","NY",21312 +2005-03-01,"Electric Power Consumption","Oregon","OR",8641 +2005-03-01,"Electric Power Consumption","Connecticut","CT",4944 +2005-03-01,"Electric Power Consumption","Arizona","AZ",8394 +2005-03-01,"Electric Power Consumption","Washington","WA",5018 +2005-03-01,"Electric Power Consumption","Oklahoma","OK",13850 +2005-03-01,"Electric Power Consumption","Michigan","MI",8692 +2005-03-01,"Electric Power Consumption","West Virginia","WV",202 +2005-03-01,"Electric Power Consumption","Iowa","IA",2541 +2005-03-01,"Electric Power Consumption","Tennessee","TN",82 +2005-03-01,"Electric Power Consumption","Delaware","DE",965 +2005-03-01,"Industrial Consumption","Louisiana","LA",72541 +2005-03-01,"Industrial Consumption","Pennsylvania","PA",18377 +2005-03-01,"Industrial Consumption","Oregon","OR",6022 +2005-03-01,"Industrial Consumption","Mississippi","MS",8624 +2005-03-01,"Industrial Consumption","Texas","TX",116420 +2005-03-01,"Industrial Consumption","Nebraska","NE",2623 +2005-03-01,"Industrial Consumption","West Virginia","WV",3894 +2005-03-01,"Industrial Consumption","Wyoming","WY",3672 +2005-03-01,"Industrial Consumption","Michigan","MI",19541 +2005-03-01,"Industrial Consumption","Alaska","AK",3812 +2005-03-01,"Industrial Consumption","North Dakota","ND",1031 +2005-03-01,"Industrial Consumption","Missouri","MO",6449 +2005-03-01,"Industrial Consumption","Ohio","OH",29126 +2005-03-01,"Industrial Consumption","Kansas","KS",7922 +2005-03-01,"Industrial Consumption","Arizona","AZ",1498 +2005-03-01,"Industrial Consumption","Utah","UT",2134 +2005-03-01,"Industrial Consumption","Alabama","AL",14398 +2005-03-01,"Industrial Consumption","Iowa","IA",7559 +2005-03-01,"Industrial Consumption","Connecticut","CT",2136 +2005-03-01,"Industrial Consumption","North Carolina","NC",8545 +2005-03-01,"Industrial Consumption","Maine","ME",653 +2005-03-01,"Industrial Consumption","Tennessee","TN",8505 +2005-03-01,"Industrial Consumption","Illinois","IL",26061 +2005-03-01,"Industrial Consumption","Georgia","GA",14599 +2005-03-01,"Industrial Consumption","Maryland","MD",2319 +2005-03-01,"Industrial Consumption","Washington","WA",5933 +2005-03-01,"Industrial Consumption","U.S.","U.S.",604866 +2005-03-01,"Industrial Consumption","California","CA",65134 +2005-03-01,"Industrial Consumption","Arkansas","AR",8255 +2005-03-01,"Industrial Consumption","Virginia","VA",6173 +2005-03-01,"Industrial Consumption","Rhode Island","RI",605 +2005-03-01,"Industrial Consumption","Oklahoma","OK",12546 +2005-03-01,"Industrial Consumption","Colorado","CO",11364 +2005-03-01,"Industrial Consumption","South Dakota","SD",942 +2005-03-01,"Industrial Consumption","New York","NY",8450 +2005-03-01,"Industrial Consumption","Nevada","NV",1225 +2005-03-01,"Industrial Consumption","Vermont","VT",303 +2005-03-01,"Industrial Consumption","Minnesota","MN",7940 +2005-03-01,"Industrial Consumption","District of Columbia","DC",0 +2005-03-01,"Industrial Consumption","Montana","MT",2138 +2005-03-01,"Industrial Consumption","New Mexico","NM",1674 +2005-03-01,"Industrial Consumption","South Carolina","SC",7325 +2005-03-01,"Industrial Consumption","Wisconsin","WI",13980 +2005-03-01,"Industrial Consumption","Florida","FL",5781 +2005-03-01,"Industrial Consumption","Indiana","IN",27661 +2005-03-01,"Industrial Consumption","Massachusetts","MA",6262 +2005-03-01,"Industrial Consumption","Hawaii","HI",38 +2005-03-01,"Industrial Consumption","New Jersey","NJ",7920 +2005-03-01,"Industrial Consumption","New Hampshire","NH",712 +2005-03-01,"Industrial Consumption","Idaho","ID",1970 +2005-03-01,"Industrial Consumption","Kentucky","KY",10519 +2005-03-01,"Industrial Consumption","Delaware","DE",1558 +2005-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98748 +2005-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",58871 +2005-03-01,"Residential Consumption","Rhode Island","RI",2997 +2005-03-01,"Residential Consumption","North Carolina","NC",9662 +2005-03-01,"Residential Consumption","Iowa","IA",9044 +2005-03-01,"Residential Consumption","Tennessee","TN",10024 +2005-03-01,"Residential Consumption","Indiana","IN",21390 +2005-03-01,"Residential Consumption","Oklahoma","OK",7882 +2005-03-01,"Residential Consumption","Louisiana","LA",5276 +2005-03-01,"Residential Consumption","Hawaii","HI",46 +2005-03-01,"Residential Consumption","Connecticut","CT",6682 +2005-03-01,"Residential Consumption","Vermont","VT",495 +2005-03-01,"Residential Consumption","Virginia","VA",12540 +2005-03-01,"Residential Consumption","Michigan","MI",54522 +2005-03-01,"Residential Consumption","District of Columbia","DC",1952 +2005-03-01,"Residential Consumption","North Dakota","ND",1377 +2005-03-01,"Residential Consumption","Massachusetts","MA",20684 +2005-03-01,"Residential Consumption","Idaho","ID",2365 +2005-03-01,"Residential Consumption","New Hampshire","NH",1170 +2005-03-01,"Residential Consumption","Kansas","KS",8386 +2005-03-01,"Residential Consumption","U.S.","U.S.",678019 +2005-03-01,"Residential Consumption","Georgia","GA",15920 +2005-03-01,"Residential Consumption","Florida","FL",1955 +2005-03-01,"Residential Consumption","Montana","MT",2291 +2005-03-01,"Residential Consumption","South Carolina","SC",4209 +2005-03-01,"Residential Consumption","South Dakota","SD",1520 +2005-03-01,"Residential Consumption","Delaware","DE",1705 +2005-03-01,"Residential Consumption","New York","NY",65007 +2005-03-01,"Residential Consumption","Texas","TX",23000 +2005-03-01,"Residential Consumption","Ohio","OH",49971 +2005-03-01,"Residential Consumption","Utah","UT",6983 +2005-03-01,"Residential Consumption","Maryland","MD",12315 +2005-03-01,"Residential Consumption","New Jersey","NJ",36983 +2005-03-01,"Residential Consumption","Colorado","CO",15332 +2005-03-01,"Residential Consumption","Washington","WA",8268 +2005-03-01,"Residential Consumption","California","CA",50895 +2005-03-01,"Residential Consumption","Nebraska","NE",5151 +2005-03-01,"Residential Consumption","Nevada","NV",3894 +2005-03-01,"Residential Consumption","Pennsylvania","PA",39536 +2005-03-01,"Residential Consumption","New Mexico","NM",4597 +2005-03-01,"Residential Consumption","Maine","ME",171 +2005-03-01,"Residential Consumption","Alabama","AL",5914 +2005-03-01,"Residential Consumption","Mississippi","MS",3030 +2005-03-01,"Residential Consumption","Wisconsin","WI",18643 +2005-03-01,"Residential Consumption","Minnesota","MN",17278 +2005-03-01,"Residential Consumption","Arkansas","AR",4743 +2005-03-01,"Residential Consumption","Kentucky","KY",8516 +2005-03-01,"Residential Consumption","Wyoming","WY",1448 +2005-03-01,"Residential Consumption","Oregon","OR",4374 +2005-03-01,"Residential Consumption","Missouri","MO",14969 +2005-03-01,"Residential Consumption","Arizona","AZ",4435 +2005-03-01,"Residential Consumption","Alaska","AK",1901 +2005-03-01,"Residential Consumption","West Virginia","WV",5157 +2005-03-01,"Residential Consumption","Illinois","IL",61412 +2005-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",1944 +2005-04-01,"Commercial Consumption","North Dakota","ND",561 +2005-04-01,"Commercial Consumption","New Hampshire","NH",911 +2005-04-01,"Commercial Consumption","Vermont","VT",240 +2005-04-01,"Commercial Consumption","California","CA",18166 +2005-04-01,"Commercial Consumption","Mississippi","MS",1646 +2005-04-01,"Commercial Consumption","Minnesota","MN",6947 +2005-04-01,"Commercial Consumption","Oklahoma","OK",3573 +2005-04-01,"Commercial Consumption","Alabama","AL",2130 +2005-04-01,"Commercial Consumption","New York","NY",25636 +2005-04-01,"Commercial Consumption","Washington","WA",4553 +2005-04-01,"Commercial Consumption","North Carolina","NC",3951 +2005-04-01,"Commercial Consumption","Oregon","OR",2503 +2005-04-01,"Commercial Consumption","Pennsylvania","PA",11611 +2005-04-01,"Commercial Consumption","New Jersey","NJ",14773 +2005-04-01,"Commercial Consumption","Georgia","GA",3484 +2005-04-01,"Commercial Consumption","Florida","FL",5423 +2005-04-01,"Commercial Consumption","Rhode Island","RI",1192 +2005-04-01,"Commercial Consumption","Ohio","OH",13348 +2005-04-01,"Commercial Consumption","Indiana","IN",4732 +2005-04-01,"Commercial Consumption","Utah","UT",3658 +2005-04-01,"Commercial Consumption","Virginia","VA",4478 +2005-04-01,"Commercial Consumption","Wisconsin","WI",5695 +2005-04-01,"Commercial Consumption","South Dakota","SD",862 +2005-04-01,"Commercial Consumption","Delaware","DE",572 +2005-04-01,"Commercial Consumption","Wyoming","WY",878 +2005-04-01,"Commercial Consumption","West Virginia","WV",1960 +2005-04-01,"Commercial Consumption","South Carolina","SC",1818 +2005-04-01,"Commercial Consumption","New Mexico","NM",2732 +2005-04-01,"Commercial Consumption","Maryland","MD",5512 +2005-04-01,"Commercial Consumption","Idaho","ID",1196 +2005-04-01,"Commercial Consumption","Alaska","AK",1317 +2005-04-01,"Commercial Consumption","Arkansas","AR",2612 +2005-04-01,"Commercial Consumption","Arizona","AZ",2828 +2005-04-01,"Commercial Consumption","Tennessee","TN",4738 +2005-04-01,"Commercial Consumption","Nevada","NV",2274 +2005-04-01,"Commercial Consumption","Michigan","MI",14650 +2005-04-01,"Commercial Consumption","Illinois","IL",13751 +2005-04-01,"Commercial Consumption","Maine","ME",375 +2005-04-01,"Commercial Consumption","U.S.","U.S.",242656 +2005-04-01,"Commercial Consumption","Nebraska","NE",1975 +2005-04-01,"Commercial Consumption","Colorado","CO",5618 +2005-04-01,"Commercial Consumption","Massachusetts","MA",5301 +2005-04-01,"Commercial Consumption","Montana","MT",1127 +2005-04-01,"Commercial Consumption","Kentucky","KY",2392 +2005-04-01,"Commercial Consumption","Texas","TX",11944 +2005-04-01,"Commercial Consumption","Iowa","IA",3661 +2005-04-01,"Commercial Consumption","Connecticut","CT",3163 +2005-04-01,"Commercial Consumption","Louisiana","LA",2144 +2005-04-01,"Commercial Consumption","District of Columbia","DC",1177 +2005-04-01,"Commercial Consumption","Missouri","MO",4578 +2005-04-01,"Commercial Consumption","Kansas","KS",2137 +2005-04-01,"Commercial Consumption","Hawaii","HI",155 +2005-04-01,"Delivered to Consumers","New Mexico","NM",11439 +2005-04-01,"Delivered to Consumers","Indiana","IN",39473 +2005-04-01,"Delivered to Consumers","Rhode Island","RI",7729 +2005-04-01,"Delivered to Consumers","Hawaii","HI",240 +2005-04-01,"Delivered to Consumers","Alaska","AK",9847 +2005-04-01,"Delivered to Consumers","Oklahoma","OK",36599 +2005-04-01,"Delivered to Consumers","Tennessee","TN",19122 +2005-04-01,"Delivered to Consumers","Colorado","CO",33501 +2005-04-01,"Delivered to Consumers","Utah","UT",12951 +2005-04-01,"Delivered to Consumers","West Virginia","WV",7853 +2005-04-01,"Delivered to Consumers","Michigan","MI",72884 +2005-04-01,"Delivered to Consumers","Connecticut","CT",14958 +2005-04-01,"Delivered to Consumers","Pennsylvania","PA",50137 +2005-04-01,"Delivered to Consumers","Missouri","MO",19890 +2005-04-01,"Delivered to Consumers","Kentucky","KY",15557 +2005-04-01,"Delivered to Consumers","Virginia","VA",18853 +2005-04-01,"Delivered to Consumers","North Carolina","NC",17851 +2005-04-01,"Delivered to Consumers","New Jersey","NJ",48550 +2005-04-01,"Delivered to Consumers","Georgia","GA",25191 +2005-04-01,"Delivered to Consumers","New Hampshire","NH",5691 +2005-04-01,"Delivered to Consumers","Texas","TX",243251 +2005-04-01,"Delivered to Consumers","Maine","ME",5764 +2005-04-01,"Delivered to Consumers","Florida","FL",55269 +2005-04-01,"Delivered to Consumers","District of Columbia","DC",1880 +2005-04-01,"Delivered to Consumers","Illinois","IL",65549 +2005-04-01,"Delivered to Consumers","Louisiana","LA",97398 +2005-04-01,"Delivered to Consumers","Arizona","AZ",20779 +2005-04-01,"Delivered to Consumers","Vermont","VT",776 +2005-04-01,"Delivered to Consumers","Kansas","KS",15459 +2005-04-01,"Delivered to Consumers","Iowa","IA",18370 +2005-04-01,"Delivered to Consumers","Mississippi","MS",18047 +2005-04-01,"Delivered to Consumers","California","CA",170521 +2005-04-01,"Delivered to Consumers","Washington","WA",21951 +2005-04-01,"Delivered to Consumers","Wyoming","WY",5612 +2005-04-01,"Delivered to Consumers","South Dakota","SD",3219 +2005-04-01,"Delivered to Consumers","New York","NY",94151 +2005-04-01,"Delivered to Consumers","Montana","MT",4563 +2005-04-01,"Delivered to Consumers","Maryland","MD",13414 +2005-04-01,"Delivered to Consumers","Arkansas","AR",15597 +2005-04-01,"Delivered to Consumers","Alabama","AL",22622 +2005-04-01,"Delivered to Consumers","Nebraska","NE",8360 +2005-04-01,"Delivered to Consumers","South Carolina","SC",12523 +2005-04-01,"Delivered to Consumers","Nevada","NV",16239 +2005-04-01,"Delivered to Consumers","North Dakota","ND",1946 +2005-04-01,"Delivered to Consumers","U.S.","U.S.",1585188 +2005-04-01,"Delivered to Consumers","Delaware","DE",2696 +2005-04-01,"Delivered to Consumers","Idaho","ID",6168 +2005-04-01,"Delivered to Consumers","Ohio","OH",63669 +2005-04-01,"Delivered to Consumers","Wisconsin","WI",29885 +2005-04-01,"Delivered to Consumers","Massachusetts","MA",36162 +2005-04-01,"Delivered to Consumers","Oregon","OR",20274 +2005-04-01,"Delivered to Consumers","Minnesota","MN",22877 +2005-04-01,"Electric Power Consumption","New York","NY",19399 +2005-04-01,"Electric Power Consumption","Minnesota","MN",1984 +2005-04-01,"Electric Power Consumption","Kansas","KS",865 +2005-04-01,"Electric Power Consumption","Nevada","NV",9699 +2005-04-01,"Electric Power Consumption","Iowa","IA",1671 +2005-04-01,"Electric Power Consumption","Mississippi","MS",6431 +2005-04-01,"Electric Power Consumption","Hawaii","HI",NA +2005-04-01,"Electric Power Consumption","Arizona","AZ",13303 +2005-04-01,"Electric Power Consumption","South Carolina","SC",1949 +2005-04-01,"Electric Power Consumption","Texas","TX",104415 +2005-04-01,"Electric Power Consumption","Utah","UT",467 +2005-04-01,"Electric Power Consumption","Michigan","MI",8677 +2005-04-01,"Electric Power Consumption","Massachusetts","MA",14084 +2005-04-01,"Electric Power Consumption","Tennessee","TN",23 +2005-04-01,"Electric Power Consumption","Maine","ME",4825 +2005-04-01,"Electric Power Consumption","New Hampshire","NH",3493 +2005-04-01,"Electric Power Consumption","Maryland","MD",693 +2005-04-01,"Electric Power Consumption","Connecticut","CT",5869 +2005-04-01,"Electric Power Consumption","Colorado","CO",7115 +2005-04-01,"Electric Power Consumption","Arkansas","AR",2356 +2005-04-01,"Electric Power Consumption","Oregon","OR",7944 +2005-04-01,"Electric Power Consumption","Wisconsin","WI",5244 +2005-04-01,"Electric Power Consumption","Missouri","MO",1738 +2005-04-01,"Electric Power Consumption","Delaware","DE",280 +2005-04-01,"Electric Power Consumption","California","CA",44239 +2005-04-01,"Electric Power Consumption","Louisiana","LA",22435 +2005-04-01,"Electric Power Consumption","Idaho","ID",933 +2005-04-01,"Electric Power Consumption","Rhode Island","RI",3586 +2005-04-01,"Electric Power Consumption","Oklahoma","OK",14115 +2005-04-01,"Electric Power Consumption","U.S.","U.S.",390358 +2005-04-01,"Electric Power Consumption","Kentucky","KY",483 +2005-04-01,"Electric Power Consumption","Ohio","OH",1614 +2005-04-01,"Electric Power Consumption","Indiana","IN",3653 +2005-04-01,"Electric Power Consumption","Georgia","GA",808 +2005-04-01,"Electric Power Consumption","Florida","FL",42028 +2005-04-01,"Electric Power Consumption","Alabama","AL",3991 +2005-04-01,"Electric Power Consumption","Illinois","IL",3161 +2005-04-01,"Electric Power Consumption","West Virginia","WV",114 +2005-04-01,"Electric Power Consumption","Wyoming","WY",34 +2005-04-01,"Electric Power Consumption","Alaska","AK",2769 +2005-04-01,"Electric Power Consumption","Washington","WA",4463 +2005-04-01,"Electric Power Consumption","Virginia","VA",3400 +2005-04-01,"Electric Power Consumption","Pennsylvania","PA",2436 +2005-04-01,"Electric Power Consumption","Vermont","VT",0 +2005-04-01,"Electric Power Consumption","South Dakota","SD",495 +2005-04-01,"Electric Power Consumption","North Dakota","ND",0 +2005-04-01,"Electric Power Consumption","Montana","MT",14 +2005-04-01,"Electric Power Consumption","New Mexico","NM",2967 +2005-04-01,"Electric Power Consumption","New Jersey","NJ",8304 +2005-04-01,"Electric Power Consumption","Nebraska","NE",389 +2005-04-01,"Electric Power Consumption","North Carolina","NC",1404 +2005-04-01,"Industrial Consumption","Montana","MT",1678 +2005-04-01,"Industrial Consumption","New Mexico","NM",2085 +2005-04-01,"Industrial Consumption","Arizona","AZ",1620 +2005-04-01,"Industrial Consumption","Oregon","OR",6041 +2005-04-01,"Industrial Consumption","Nebraska","NE",2975 +2005-04-01,"Industrial Consumption","Wyoming","WY",3521 +2005-04-01,"Industrial Consumption","Connecticut","CT",1602 +2005-04-01,"Industrial Consumption","Michigan","MI",19315 +2005-04-01,"Industrial Consumption","Massachusetts","MA",4633 +2005-04-01,"Industrial Consumption","South Dakota","SD",915 +2005-04-01,"Industrial Consumption","Nevada","NV",1186 +2005-04-01,"Industrial Consumption","Alabama","AL",12900 +2005-04-01,"Industrial Consumption","Wisconsin","WI",10252 +2005-04-01,"Industrial Consumption","Tennessee","TN",8382 +2005-04-01,"Industrial Consumption","Idaho","ID",1920 +2005-04-01,"Industrial Consumption","Virginia","VA",5965 +2005-04-01,"Industrial Consumption","West Virginia","WV",3245 +2005-04-01,"Industrial Consumption","Georgia","GA",13397 +2005-04-01,"Industrial Consumption","Oklahoma","OK",13724 +2005-04-01,"Industrial Consumption","U.S.","U.S.",566130 +2005-04-01,"Industrial Consumption","Mississippi","MS",8362 +2005-04-01,"Industrial Consumption","Texas","TX",114207 +2005-04-01,"Industrial Consumption","Minnesota","MN",6667 +2005-04-01,"Industrial Consumption","North Carolina","NC",7185 +2005-04-01,"Industrial Consumption","North Dakota","ND",745 +2005-04-01,"Industrial Consumption","Washington","WA",5847 +2005-04-01,"Industrial Consumption","South Carolina","SC",6577 +2005-04-01,"Industrial Consumption","Vermont","VT",233 +2005-04-01,"Industrial Consumption","New Jersey","NJ",6823 +2005-04-01,"Industrial Consumption","New Hampshire","NH",541 +2005-04-01,"Industrial Consumption","Iowa","IA",8502 +2005-04-01,"Industrial Consumption","Alaska","AK",4438 +2005-04-01,"Industrial Consumption","Colorado","CO",10395 +2005-04-01,"Industrial Consumption","Pennsylvania","PA",15412 +2005-04-01,"Industrial Consumption","New York","NY",7189 +2005-04-01,"Industrial Consumption","California","CA",67858 +2005-04-01,"Industrial Consumption","Illinois","IL",21818 +2005-04-01,"Industrial Consumption","Maryland","MD",1477 +2005-04-01,"Industrial Consumption","Missouri","MO",5350 +2005-04-01,"Industrial Consumption","Louisiana","LA",69921 +2005-04-01,"Industrial Consumption","Ohio","OH",24281 +2005-04-01,"Industrial Consumption","Maine","ME",478 +2005-04-01,"Industrial Consumption","Florida","FL",6271 +2005-04-01,"Industrial Consumption","Rhode Island","RI",736 +2005-04-01,"Industrial Consumption","District of Columbia","DC",0 +2005-04-01,"Industrial Consumption","Hawaii","HI",36 +2005-04-01,"Industrial Consumption","Kansas","KS",7223 +2005-04-01,"Industrial Consumption","Utah","UT",2394 +2005-04-01,"Industrial Consumption","Arkansas","AR",7435 +2005-04-01,"Industrial Consumption","Kentucky","KY",9307 +2005-04-01,"Industrial Consumption","Indiana","IN",22009 +2005-04-01,"Industrial Consumption","Delaware","DE",1055 +2005-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94125 +2005-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",45564 +2005-04-01,"Residential Consumption","Oregon","OR",3787 +2005-04-01,"Residential Consumption","Mississippi","MS",1608 +2005-04-01,"Residential Consumption","Indiana","IN",9080 +2005-04-01,"Residential Consumption","North Dakota","ND",640 +2005-04-01,"Residential Consumption","Massachusetts","MA",12144 +2005-04-01,"Residential Consumption","Montana","MT",1745 +2005-04-01,"Residential Consumption","South Carolina","SC",2179 +2005-04-01,"Residential Consumption","North Carolina","NC",5311 +2005-04-01,"Residential Consumption","Iowa","IA",4536 +2005-04-01,"Residential Consumption","Hawaii","HI",49 +2005-04-01,"Residential Consumption","Utah","UT",6432 +2005-04-01,"Residential Consumption","Michigan","MI",30243 +2005-04-01,"Residential Consumption","Colorado","CO",10372 +2005-04-01,"Residential Consumption","Illinois","IL",26819 +2005-04-01,"Residential Consumption","Wisconsin","WI",8694 +2005-04-01,"Residential Consumption","Virginia","VA",5010 +2005-04-01,"Residential Consumption","Arizona","AZ",3027 +2005-04-01,"Residential Consumption","Wyoming","WY",1179 +2005-04-01,"Residential Consumption","Texas","TX",12685 +2005-04-01,"Residential Consumption","Rhode Island","RI",2214 +2005-04-01,"Residential Consumption","Louisiana","LA",2898 +2005-04-01,"Residential Consumption","Vermont","VT",302 +2005-04-01,"Residential Consumption","South Dakota","SD",947 +2005-04-01,"Residential Consumption","Pennsylvania","PA",20678 +2005-04-01,"Residential Consumption","Florida","FL",1547 +2005-04-01,"Residential Consumption","Idaho","ID",2118 +2005-04-01,"Residential Consumption","New Jersey","NJ",18650 +2005-04-01,"Residential Consumption","California","CA",40258 +2005-04-01,"Residential Consumption","West Virginia","WV",2534 +2005-04-01,"Residential Consumption","U.S.","U.S.",384163 +2005-04-01,"Residential Consumption","Connecticut","CT",4323 +2005-04-01,"Residential Consumption","Tennessee","TN",5979 +2005-04-01,"Residential Consumption","Nebraska","NE",3023 +2005-04-01,"Residential Consumption","District of Columbia","DC",703 +2005-04-01,"Residential Consumption","New Mexico","NM",3655 +2005-04-01,"Residential Consumption","New Hampshire","NH",746 +2005-04-01,"Residential Consumption","Kentucky","KY",3375 +2005-04-01,"Residential Consumption","Kansas","KS",5234 +2005-04-01,"Residential Consumption","Missouri","MO",8224 +2005-04-01,"Residential Consumption","Alabama","AL",3600 +2005-04-01,"Residential Consumption","Alaska","AK",1323 +2005-04-01,"Residential Consumption","Ohio","OH",24426 +2005-04-01,"Residential Consumption","Maryland","MD",5731 +2005-04-01,"Residential Consumption","Nevada","NV",3081 +2005-04-01,"Residential Consumption","Georgia","GA",7502 +2005-04-01,"Residential Consumption","Maine","ME",86 +2005-04-01,"Residential Consumption","New York","NY",41926 +2005-04-01,"Residential Consumption","Washington","WA",7088 +2005-04-01,"Residential Consumption","Oklahoma","OK",5187 +2005-04-01,"Residential Consumption","Minnesota","MN",7279 +2005-04-01,"Residential Consumption","Arkansas","AR",3195 +2005-04-01,"Residential Consumption","Delaware","DE",790 +2005-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",1881 +2005-05-01,"Commercial Consumption","Washington","WA",3068 +2005-05-01,"Commercial Consumption","Virginia","VA",3108 +2005-05-01,"Commercial Consumption","Montana","MT",850 +2005-05-01,"Commercial Consumption","Kansas","KS",1335 +2005-05-01,"Commercial Consumption","Vermont","VT",149 +2005-05-01,"Commercial Consumption","Ohio","OH",8394 +2005-05-01,"Commercial Consumption","Tennessee","TN",2875 +2005-05-01,"Commercial Consumption","Nevada","NV",1927 +2005-05-01,"Commercial Consumption","West Virginia","WV",1534 +2005-05-01,"Commercial Consumption","South Carolina","SC",1347 +2005-05-01,"Commercial Consumption","New Jersey","NJ",9313 +2005-05-01,"Commercial Consumption","Maine","ME",318 +2005-05-01,"Commercial Consumption","Georgia","GA",2588 +2005-05-01,"Commercial Consumption","Michigan","MI",9496 +2005-05-01,"Commercial Consumption","Louisiana","LA",1721 +2005-05-01,"Commercial Consumption","Minnesota","MN",4475 +2005-05-01,"Commercial Consumption","Colorado","CO",3399 +2005-05-01,"Commercial Consumption","New Mexico","NM",1683 +2005-05-01,"Commercial Consumption","Pennsylvania","PA",8390 +2005-05-01,"Commercial Consumption","Massachusetts","MA",3403 +2005-05-01,"Commercial Consumption","U.S.","U.S.",173748 +2005-05-01,"Commercial Consumption","Texas","TX",10931 +2005-05-01,"Commercial Consumption","Maryland","MD",3917 +2005-05-01,"Commercial Consumption","Florida","FL",4766 +2005-05-01,"Commercial Consumption","Alaska","AK",912 +2005-05-01,"Commercial Consumption","Alabama","AL",1590 +2005-05-01,"Commercial Consumption","Mississippi","MS",1321 +2005-05-01,"Commercial Consumption","Utah","UT",2513 +2005-05-01,"Commercial Consumption","Oregon","OR",1726 +2005-05-01,"Commercial Consumption","South Dakota","SD",469 +2005-05-01,"Commercial Consumption","New Hampshire","NH",605 +2005-05-01,"Commercial Consumption","Idaho","ID",719 +2005-05-01,"Commercial Consumption","New York","NY",17221 +2005-05-01,"Commercial Consumption","Illinois","IL",9820 +2005-05-01,"Commercial Consumption","North Carolina","NC",2488 +2005-05-01,"Commercial Consumption","California","CA",18477 +2005-05-01,"Commercial Consumption","Arkansas","AR",1927 +2005-05-01,"Commercial Consumption","Nebraska","NE",1592 +2005-05-01,"Commercial Consumption","Indiana","IN",2959 +2005-05-01,"Commercial Consumption","North Dakota","ND",506 +2005-05-01,"Commercial Consumption","Oklahoma","OK",2129 +2005-05-01,"Commercial Consumption","Kentucky","KY",1557 +2005-05-01,"Commercial Consumption","Arizona","AZ",2274 +2005-05-01,"Commercial Consumption","Wyoming","WY",675 +2005-05-01,"Commercial Consumption","Wisconsin","WI",3913 +2005-05-01,"Commercial Consumption","Iowa","IA",2020 +2005-05-01,"Commercial Consumption","Hawaii","HI",157 +2005-05-01,"Commercial Consumption","District of Columbia","DC",984 +2005-05-01,"Commercial Consumption","Missouri","MO",3028 +2005-05-01,"Commercial Consumption","Rhode Island","RI",662 +2005-05-01,"Commercial Consumption","Connecticut","CT",2095 +2005-05-01,"Commercial Consumption","Delaware","DE",424 +2005-05-01,"Delivered to Consumers","Utah","UT",9253 +2005-05-01,"Delivered to Consumers","U.S.","U.S.",1386917 +2005-05-01,"Delivered to Consumers","Delaware","DE",2517 +2005-05-01,"Delivered to Consumers","Alaska","AK",9809 +2005-05-01,"Delivered to Consumers","Tennessee","TN",13849 +2005-05-01,"Delivered to Consumers","Illinois","IL",48798 +2005-05-01,"Delivered to Consumers","South Dakota","SD",2207 +2005-05-01,"Delivered to Consumers","Oregon","OR",11452 +2005-05-01,"Delivered to Consumers","Maine","ME",4162 +2005-05-01,"Delivered to Consumers","West Virginia","WV",5985 +2005-05-01,"Delivered to Consumers","Montana","MT",3517 +2005-05-01,"Delivered to Consumers","Arkansas","AR",14643 +2005-05-01,"Delivered to Consumers","Georgia","GA",23198 +2005-05-01,"Delivered to Consumers","Indiana","IN",30697 +2005-05-01,"Delivered to Consumers","Hawaii","HI",245 +2005-05-01,"Delivered to Consumers","Connecticut","CT",12586 +2005-05-01,"Delivered to Consumers","Massachusetts","MA",25515 +2005-05-01,"Delivered to Consumers","Nevada","NV",13790 +2005-05-01,"Delivered to Consumers","New Mexico","NM",9242 +2005-05-01,"Delivered to Consumers","Wyoming","WY",5092 +2005-05-01,"Delivered to Consumers","Vermont","VT",558 +2005-05-01,"Delivered to Consumers","Alabama","AL",22525 +2005-05-01,"Delivered to Consumers","Texas","TX",251559 +2005-05-01,"Delivered to Consumers","New Jersey","NJ",33360 +2005-05-01,"Delivered to Consumers","Louisiana","LA",104027 +2005-05-01,"Delivered to Consumers","Rhode Island","RI",6062 +2005-05-01,"Delivered to Consumers","Oklahoma","OK",35972 +2005-05-01,"Delivered to Consumers","Virginia","VA",12905 +2005-05-01,"Delivered to Consumers","Nebraska","NE",6579 +2005-05-01,"Delivered to Consumers","North Carolina","NC",13162 +2005-05-01,"Delivered to Consumers","South Carolina","SC",11619 +2005-05-01,"Delivered to Consumers","New Hampshire","NH",6049 +2005-05-01,"Delivered to Consumers","North Dakota","ND",1836 +2005-05-01,"Delivered to Consumers","Michigan","MI",50886 +2005-05-01,"Delivered to Consumers","Iowa","IA",13180 +2005-05-01,"Delivered to Consumers","Missouri","MO",15686 +2005-05-01,"Delivered to Consumers","Arizona","AZ",22660 +2005-05-01,"Delivered to Consumers","Minnesota","MN",17882 +2005-05-01,"Delivered to Consumers","New York","NY",72115 +2005-05-01,"Delivered to Consumers","Maryland","MD",10273 +2005-05-01,"Delivered to Consumers","Kansas","KS",12953 +2005-05-01,"Delivered to Consumers","Idaho","ID",3946 +2005-05-01,"Delivered to Consumers","Ohio","OH",47239 +2005-05-01,"Delivered to Consumers","Kentucky","KY",13614 +2005-05-01,"Delivered to Consumers","Wisconsin","WI",23265 +2005-05-01,"Delivered to Consumers","Pennsylvania","PA",38196 +2005-05-01,"Delivered to Consumers","Mississippi","MS",21247 +2005-05-01,"Delivered to Consumers","Colorado","CO",25108 +2005-05-01,"Delivered to Consumers","California","CA",163918 +2005-05-01,"Delivered to Consumers","Washington","WA",14060 +2005-05-01,"Delivered to Consumers","Florida","FL",64436 +2005-05-01,"Delivered to Consumers","District of Columbia","DC",1539 +2005-05-01,"Electric Power Consumption","Washington","WA",1988 +2005-05-01,"Electric Power Consumption","Utah","UT",682 +2005-05-01,"Electric Power Consumption","Illinois","IL",1969 +2005-05-01,"Electric Power Consumption","Michigan","MI",6476 +2005-05-01,"Electric Power Consumption","Missouri","MO",2916 +2005-05-01,"Electric Power Consumption","Kentucky","KY",1332 +2005-05-01,"Electric Power Consumption","Connecticut","CT",6517 +2005-05-01,"Electric Power Consumption","Georgia","GA",3050 +2005-05-01,"Electric Power Consumption","Idaho","ID",275 +2005-05-01,"Electric Power Consumption","Vermont","VT",4 +2005-05-01,"Electric Power Consumption","U.S.","U.S.",422978 +2005-05-01,"Electric Power Consumption","North Carolina","NC",748 +2005-05-01,"Electric Power Consumption","Mississippi","MS",10822 +2005-05-01,"Electric Power Consumption","Delaware","DE",440 +2005-05-01,"Electric Power Consumption","New Mexico","NM",3557 +2005-05-01,"Electric Power Consumption","Louisiana","LA",28666 +2005-05-01,"Electric Power Consumption","Arkansas","AR",4185 +2005-05-01,"Electric Power Consumption","Pennsylvania","PA",2771 +2005-05-01,"Electric Power Consumption","Maine","ME",3300 +2005-05-01,"Electric Power Consumption","Indiana","IN",2422 +2005-05-01,"Electric Power Consumption","Florida","FL",52577 +2005-05-01,"Electric Power Consumption","Colorado","CO",6825 +2005-05-01,"Electric Power Consumption","Minnesota","MN",931 +2005-05-01,"Electric Power Consumption","Kansas","KS",1011 +2005-05-01,"Electric Power Consumption","West Virginia","WV",89 +2005-05-01,"Electric Power Consumption","Wyoming","WY",42 +2005-05-01,"Electric Power Consumption","Nebraska","NE",496 +2005-05-01,"Electric Power Consumption","New Hampshire","NH",4424 +2005-05-01,"Electric Power Consumption","Maryland","MD",827 +2005-05-01,"Electric Power Consumption","Virginia","VA",1004 +2005-05-01,"Electric Power Consumption","South Carolina","SC",2681 +2005-05-01,"Electric Power Consumption","Massachusetts","MA",12229 +2005-05-01,"Electric Power Consumption","Tennessee","TN",117 +2005-05-01,"Electric Power Consumption","Hawaii","HI",NA +2005-05-01,"Electric Power Consumption","North Dakota","ND",0 +2005-05-01,"Electric Power Consumption","Arizona","AZ",17038 +2005-05-01,"Electric Power Consumption","Alaska","AK",2815 +2005-05-01,"Electric Power Consumption","New Jersey","NJ",6523 +2005-05-01,"Electric Power Consumption","Rhode Island","RI",3821 +2005-05-01,"Electric Power Consumption","Wisconsin","WI",3412 +2005-05-01,"Electric Power Consumption","Iowa","IA",1351 +2005-05-01,"Electric Power Consumption","South Dakota","SD",293 +2005-05-01,"Electric Power Consumption","California","CA",46818 +2005-05-01,"Electric Power Consumption","New York","NY",22143 +2005-05-01,"Electric Power Consumption","Nevada","NV",8716 +2005-05-01,"Electric Power Consumption","Alabama","AL",6678 +2005-05-01,"Electric Power Consumption","Texas","TX",116656 +2005-05-01,"Electric Power Consumption","Oklahoma","OK",19028 +2005-05-01,"Electric Power Consumption","Oregon","OR",1561 +2005-05-01,"Electric Power Consumption","Ohio","OH",743 +2005-05-01,"Electric Power Consumption","Montana","MT",13 +2005-05-01,"Industrial Consumption","South Dakota","SD",805 +2005-05-01,"Industrial Consumption","U.S.","U.S.",540722 +2005-05-01,"Industrial Consumption","South Carolina","SC",6527 +2005-05-01,"Industrial Consumption","Florida","FL",5999 +2005-05-01,"Industrial Consumption","Michigan","MI",15384 +2005-05-01,"Industrial Consumption","Illinois","IL",18504 +2005-05-01,"Industrial Consumption","North Carolina","NC",7155 +2005-05-01,"Industrial Consumption","District of Columbia","DC",0 +2005-05-01,"Industrial Consumption","North Dakota","ND",769 +2005-05-01,"Industrial Consumption","Maryland","MD",2034 +2005-05-01,"Industrial Consumption","Ohio","OH",22434 +2005-05-01,"Industrial Consumption","Connecticut","CT",1527 +2005-05-01,"Industrial Consumption","Alaska","AK",5212 +2005-05-01,"Industrial Consumption","Montana","MT",1466 +2005-05-01,"Industrial Consumption","Oklahoma","OK",11949 +2005-05-01,"Industrial Consumption","Missouri","MO",4758 +2005-05-01,"Industrial Consumption","New Mexico","NM",2112 +2005-05-01,"Industrial Consumption","New York","NY",6419 +2005-05-01,"Industrial Consumption","Nevada","NV",1104 +2005-05-01,"Industrial Consumption","Virginia","VA",5488 +2005-05-01,"Industrial Consumption","Rhode Island","RI",417 +2005-05-01,"Industrial Consumption","Hawaii","HI",40 +2005-05-01,"Industrial Consumption","Arizona","AZ",1491 +2005-05-01,"Industrial Consumption","Wisconsin","WI",9555 +2005-05-01,"Industrial Consumption","New Jersey","NJ",5879 +2005-05-01,"Industrial Consumption","Kansas","KS",7497 +2005-05-01,"Industrial Consumption","Pennsylvania","PA",14772 +2005-05-01,"Industrial Consumption","Alabama","AL",12229 +2005-05-01,"Industrial Consumption","Texas","TX",115944 +2005-05-01,"Industrial Consumption","Vermont","VT",225 +2005-05-01,"Industrial Consumption","Delaware","DE",1185 +2005-05-01,"Industrial Consumption","Washington","WA",5312 +2005-05-01,"Industrial Consumption","Oregon","OR",5854 +2005-05-01,"Industrial Consumption","Maine","ME",481 +2005-05-01,"Industrial Consumption","Nebraska","NE",2545 +2005-05-01,"Industrial Consumption","West Virginia","WV",2701 +2005-05-01,"Industrial Consumption","Idaho","ID",1797 +2005-05-01,"Industrial Consumption","Iowa","IA",6689 +2005-05-01,"Industrial Consumption","Massachusetts","MA",3283 +2005-05-01,"Industrial Consumption","Colorado","CO",9087 +2005-05-01,"Industrial Consumption","Mississippi","MS",8012 +2005-05-01,"Industrial Consumption","Arkansas","AR",6998 +2005-05-01,"Industrial Consumption","New Hampshire","NH",571 +2005-05-01,"Industrial Consumption","Indiana","IN",19346 +2005-05-01,"Industrial Consumption","Louisiana","LA",71755 +2005-05-01,"Industrial Consumption","Utah","UT",2133 +2005-05-01,"Industrial Consumption","California","CA",66838 +2005-05-01,"Industrial Consumption","Wyoming","WY",3529 +2005-05-01,"Industrial Consumption","Tennessee","TN",7919 +2005-05-01,"Industrial Consumption","Minnesota","MN",5872 +2005-05-01,"Industrial Consumption","Kentucky","KY",8613 +2005-05-01,"Industrial Consumption","Georgia","GA",12506 +2005-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95833 +2005-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",39863 +2005-05-01,"Residential Consumption","Montana","MT",1188 +2005-05-01,"Residential Consumption","Washington","WA",3692 +2005-05-01,"Residential Consumption","California","CA",31785 +2005-05-01,"Residential Consumption","Rhode Island","RI",1162 +2005-05-01,"Residential Consumption","Louisiana","LA",1885 +2005-05-01,"Residential Consumption","Nebraska","NE",1947 +2005-05-01,"Residential Consumption","New York","NY",26332 +2005-05-01,"Residential Consumption","South Carolina","SC",1064 +2005-05-01,"Residential Consumption","Connecticut","CT",2448 +2005-05-01,"Residential Consumption","Wisconsin","WI",6385 +2005-05-01,"Residential Consumption","Tennessee","TN",2939 +2005-05-01,"Residential Consumption","Nevada","NV",2044 +2005-05-01,"Residential Consumption","Georgia","GA",5055 +2005-05-01,"Residential Consumption","North Dakota","ND",561 +2005-05-01,"Residential Consumption","Arkansas","AR",1533 +2005-05-01,"Residential Consumption","New Hampshire","NH",449 +2005-05-01,"Residential Consumption","Missouri","MO",4983 +2005-05-01,"Residential Consumption","Alabama","AL",2028 +2005-05-01,"Residential Consumption","Texas","TX",8028 +2005-05-01,"Residential Consumption","Ohio","OH",15669 +2005-05-01,"Residential Consumption","North Carolina","NC",2771 +2005-05-01,"Residential Consumption","South Dakota","SD",640 +2005-05-01,"Residential Consumption","Maine","ME",63 +2005-05-01,"Residential Consumption","Massachusetts","MA",6600 +2005-05-01,"Residential Consumption","Kentucky","KY",2113 +2005-05-01,"Residential Consumption","Colorado","CO",5798 +2005-05-01,"Residential Consumption","Virginia","VA",3305 +2005-05-01,"Residential Consumption","Michigan","MI",19529 +2005-05-01,"Residential Consumption","Indiana","IN",5971 +2005-05-01,"Residential Consumption","Florida","FL",1094 +2005-05-01,"Residential Consumption","Idaho","ID",1155 +2005-05-01,"Residential Consumption","Alaska","AK",869 +2005-05-01,"Residential Consumption","U.S.","U.S.",247525 +2005-05-01,"Residential Consumption","Mississippi","MS",1092 +2005-05-01,"Residential Consumption","Utah","UT",3925 +2005-05-01,"Residential Consumption","District of Columbia","DC",555 +2005-05-01,"Residential Consumption","New Jersey","NJ",11646 +2005-05-01,"Residential Consumption","Oklahoma","OK",2866 +2005-05-01,"Residential Consumption","Arizona","AZ",1857 +2005-05-01,"Residential Consumption","West Virginia","WV",1660 +2005-05-01,"Residential Consumption","Oregon","OR",2311 +2005-05-01,"Residential Consumption","Iowa","IA",3119 +2005-05-01,"Residential Consumption","Hawaii","HI",47 +2005-05-01,"Residential Consumption","Maryland","MD",3495 +2005-05-01,"Residential Consumption","Pennsylvania","PA",12263 +2005-05-01,"Residential Consumption","Wyoming","WY",847 +2005-05-01,"Residential Consumption","Illinois","IL",18505 +2005-05-01,"Residential Consumption","Vermont","VT",180 +2005-05-01,"Residential Consumption","Minnesota","MN",6603 +2005-05-01,"Residential Consumption","New Mexico","NM",1891 +2005-05-01,"Residential Consumption","Kansas","KS",3109 +2005-05-01,"Residential Consumption","Delaware","DE",468 +2005-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",1944 +2005-06-01,"Commercial Consumption","New Hampshire","NH",418 +2005-06-01,"Commercial Consumption","Kansas","KS",946 +2005-06-01,"Commercial Consumption","Georgia","GA",2184 +2005-06-01,"Commercial Consumption","Alaska","AK",719 +2005-06-01,"Commercial Consumption","Alabama","AL",1437 +2005-06-01,"Commercial Consumption","Delaware","DE",291 +2005-06-01,"Commercial Consumption","Wisconsin","WI",2573 +2005-06-01,"Commercial Consumption","Texas","TX",9809 +2005-06-01,"Commercial Consumption","Rhode Island","RI",428 +2005-06-01,"Commercial Consumption","Idaho","ID",532 +2005-06-01,"Commercial Consumption","North Dakota","ND",296 +2005-06-01,"Commercial Consumption","Vermont","VT",101 +2005-06-01,"Commercial Consumption","Ohio","OH",4968 +2005-06-01,"Commercial Consumption","Nebraska","NE",999 +2005-06-01,"Commercial Consumption","Indiana","IN",2040 +2005-06-01,"Commercial Consumption","South Carolina","SC",1219 +2005-06-01,"Commercial Consumption","North Carolina","NC",2108 +2005-06-01,"Commercial Consumption","Utah","UT",1684 +2005-06-01,"Commercial Consumption","New Mexico","NM",1091 +2005-06-01,"Commercial Consumption","Oregon","OR",1395 +2005-06-01,"Commercial Consumption","Massachusetts","MA",2696 +2005-06-01,"Commercial Consumption","Florida","FL",4382 +2005-06-01,"Commercial Consumption","Tennessee","TN",2390 +2005-06-01,"Commercial Consumption","Wyoming","WY",377 +2005-06-01,"Commercial Consumption","New Jersey","NJ",6615 +2005-06-01,"Commercial Consumption","Maine","ME",195 +2005-06-01,"Commercial Consumption","California","CA",16762 +2005-06-01,"Commercial Consumption","Arkansas","AR",1628 +2005-06-01,"Commercial Consumption","West Virginia","WV",1085 +2005-06-01,"Commercial Consumption","Minnesota","MN",4253 +2005-06-01,"Commercial Consumption","Missouri","MO",2296 +2005-06-01,"Commercial Consumption","Kentucky","KY",1172 +2005-06-01,"Commercial Consumption","Nevada","NV",1891 +2005-06-01,"Commercial Consumption","Louisiana","LA",1554 +2005-06-01,"Commercial Consumption","District of Columbia","DC",759 +2005-06-01,"Commercial Consumption","Washington","WA",2588 +2005-06-01,"Commercial Consumption","Colorado","CO",2265 +2005-06-01,"Commercial Consumption","Pennsylvania","PA",4895 +2005-06-01,"Commercial Consumption","South Dakota","SD",315 +2005-06-01,"Commercial Consumption","Montana","MT",589 +2005-06-01,"Commercial Consumption","Maryland","MD",3140 +2005-06-01,"Commercial Consumption","Connecticut","CT",1444 +2005-06-01,"Commercial Consumption","New York","NY",13786 +2005-06-01,"Commercial Consumption","Mississippi","MS",1100 +2005-06-01,"Commercial Consumption","Michigan","MI",6319 +2005-06-01,"Commercial Consumption","Oklahoma","OK",1663 +2005-06-01,"Commercial Consumption","Virginia","VA",3200 +2005-06-01,"Commercial Consumption","U.S.","U.S.",135458 +2005-06-01,"Commercial Consumption","Iowa","IA",1650 +2005-06-01,"Commercial Consumption","Hawaii","HI",159 +2005-06-01,"Commercial Consumption","Arizona","AZ",2050 +2005-06-01,"Commercial Consumption","Illinois","IL",7005 +2005-06-01,"Delivered to Consumers","Michigan","MI",47768 +2005-06-01,"Delivered to Consumers","Arkansas","AR",15315 +2005-06-01,"Delivered to Consumers","Pennsylvania","PA",34547 +2005-06-01,"Delivered to Consumers","Maine","ME",5163 +2005-06-01,"Delivered to Consumers","Washington","WA",13150 +2005-06-01,"Delivered to Consumers","Minnesota","MN",17797 +2005-06-01,"Delivered to Consumers","West Virginia","WV",4008 +2005-06-01,"Delivered to Consumers","Alabama","AL",26381 +2005-06-01,"Delivered to Consumers","Texas","TX",286763 +2005-06-01,"Delivered to Consumers","Nevada","NV",15823 +2005-06-01,"Delivered to Consumers","Arizona","AZ",23609 +2005-06-01,"Delivered to Consumers","Vermont","VT",404 +2005-06-01,"Delivered to Consumers","Illinois","IL",46244 +2005-06-01,"Delivered to Consumers","Hawaii","HI",238 +2005-06-01,"Delivered to Consumers","Oklahoma","OK",45327 +2005-06-01,"Delivered to Consumers","Idaho","ID",3381 +2005-06-01,"Delivered to Consumers","Missouri","MO",13519 +2005-06-01,"Delivered to Consumers","Colorado","CO",20725 +2005-06-01,"Delivered to Consumers","South Carolina","SC",12506 +2005-06-01,"Delivered to Consumers","New Jersey","NJ",32116 +2005-06-01,"Delivered to Consumers","District of Columbia","DC",1133 +2005-06-01,"Delivered to Consumers","Wyoming","WY",4247 +2005-06-01,"Delivered to Consumers","Kentucky","KY",13693 +2005-06-01,"Delivered to Consumers","North Carolina","NC",12669 +2005-06-01,"Delivered to Consumers","Oregon","OR",11481 +2005-06-01,"Delivered to Consumers","Utah","UT",7461 +2005-06-01,"Delivered to Consumers","U.S.","U.S.",1400018 +2005-06-01,"Delivered to Consumers","New Mexico","NM",8800 +2005-06-01,"Delivered to Consumers","Alaska","AK",9712 +2005-06-01,"Delivered to Consumers","Iowa","IA",12206 +2005-06-01,"Delivered to Consumers","Virginia","VA",18009 +2005-06-01,"Delivered to Consumers","Mississippi","MS",24690 +2005-06-01,"Delivered to Consumers","Louisiana","LA",102860 +2005-06-01,"Delivered to Consumers","North Dakota","ND",1412 +2005-06-01,"Delivered to Consumers","Indiana","IN",28897 +2005-06-01,"Delivered to Consumers","Delaware","DE",2866 +2005-06-01,"Delivered to Consumers","South Dakota","SD",2079 +2005-06-01,"Delivered to Consumers","Montana","MT",2678 +2005-06-01,"Delivered to Consumers","Maryland","MD",10104 +2005-06-01,"Delivered to Consumers","Tennessee","TN",11579 +2005-06-01,"Delivered to Consumers","Wisconsin","WI",22788 +2005-06-01,"Delivered to Consumers","Massachusetts","MA",25040 +2005-06-01,"Delivered to Consumers","California","CA",156344 +2005-06-01,"Delivered to Consumers","Rhode Island","RI",6293 +2005-06-01,"Delivered to Consumers","New York","NY",68850 +2005-06-01,"Delivered to Consumers","Kansas","KS",11687 +2005-06-01,"Delivered to Consumers","Ohio","OH",37221 +2005-06-01,"Delivered to Consumers","Connecticut","CT",10204 +2005-06-01,"Delivered to Consumers","Nebraska","NE",5853 +2005-06-01,"Delivered to Consumers","Georgia","GA",26957 +2005-06-01,"Delivered to Consumers","New Hampshire","NH",5824 +2005-06-01,"Delivered to Consumers","Florida","FL",69719 +2005-06-01,"Electric Power Consumption","New Jersey","NJ",13737 +2005-06-01,"Electric Power Consumption","Rhode Island","RI",4611 +2005-06-01,"Electric Power Consumption","Utah","UT",1236 +2005-06-01,"Electric Power Consumption","Oregon","OR",2690 +2005-06-01,"Electric Power Consumption","Nebraska","NE",1268 +2005-06-01,"Electric Power Consumption","Georgia","GA",8374 +2005-06-01,"Electric Power Consumption","New Mexico","NM",4545 +2005-06-01,"Electric Power Consumption","Oklahoma","OK",29617 +2005-06-01,"Electric Power Consumption","Illinois","IL",10514 +2005-06-01,"Electric Power Consumption","Missouri","MO",3925 +2005-06-01,"Electric Power Consumption","Kentucky","KY",3265 +2005-06-01,"Electric Power Consumption","Ohio","OH",4721 +2005-06-01,"Electric Power Consumption","Kansas","KS",1814 +2005-06-01,"Electric Power Consumption","Pennsylvania","PA",10076 +2005-06-01,"Electric Power Consumption","Iowa","IA",2257 +2005-06-01,"Electric Power Consumption","U.S.","U.S.",594137 +2005-06-01,"Electric Power Consumption","North Carolina","NC",2362 +2005-06-01,"Electric Power Consumption","New Hampshire","NH",4604 +2005-06-01,"Electric Power Consumption","Montana","MT",24 +2005-06-01,"Electric Power Consumption","Louisiana","LA",30717 +2005-06-01,"Electric Power Consumption","Arkansas","AR",6114 +2005-06-01,"Electric Power Consumption","Hawaii","HI",NA +2005-06-01,"Electric Power Consumption","Arizona","AZ",18875 +2005-06-01,"Electric Power Consumption","Idaho","ID",275 +2005-06-01,"Electric Power Consumption","New York","NY",35084 +2005-06-01,"Electric Power Consumption","Wyoming","WY",60 +2005-06-01,"Electric Power Consumption","South Dakota","SD",616 +2005-06-01,"Electric Power Consumption","Maryland","MD",2767 +2005-06-01,"Electric Power Consumption","Indiana","IN",5416 +2005-06-01,"Electric Power Consumption","Connecticut","CT",5807 +2005-06-01,"Electric Power Consumption","Florida","FL",59238 +2005-06-01,"Electric Power Consumption","Alabama","AL",11921 +2005-06-01,"Electric Power Consumption","Washington","WA",2690 +2005-06-01,"Electric Power Consumption","Colorado","CO",6382 +2005-06-01,"Electric Power Consumption","West Virginia","WV",153 +2005-06-01,"Electric Power Consumption","Wisconsin","WI",9120 +2005-06-01,"Electric Power Consumption","Nevada","NV",11215 +2005-06-01,"Electric Power Consumption","Delaware","DE",1474 +2005-06-01,"Electric Power Consumption","California","CA",48797 +2005-06-01,"Electric Power Consumption","Virginia","VA",8105 +2005-06-01,"Electric Power Consumption","South Carolina","SC",4328 +2005-06-01,"Electric Power Consumption","Texas","TX",158003 +2005-06-01,"Electric Power Consumption","Minnesota","MN",3602 +2005-06-01,"Electric Power Consumption","Massachusetts","MA",15201 +2005-06-01,"Electric Power Consumption","Tennessee","TN",432 +2005-06-01,"Electric Power Consumption","Maine","ME",4540 +2005-06-01,"Electric Power Consumption","Mississippi","MS",14589 +2005-06-01,"Electric Power Consumption","Michigan","MI",16004 +2005-06-01,"Electric Power Consumption","Vermont","VT",2 +2005-06-01,"Electric Power Consumption","North Dakota","ND",0 +2005-06-01,"Electric Power Consumption","Alaska","AK",2968 +2005-06-01,"Industrial Consumption","Missouri","MO",4701 +2005-06-01,"Industrial Consumption","New Mexico","NM",2094 +2005-06-01,"Industrial Consumption","New Jersey","NJ",5654 +2005-06-01,"Industrial Consumption","Montana","MT",1274 +2005-06-01,"Industrial Consumption","Massachusetts","MA",2695 +2005-06-01,"Industrial Consumption","Hawaii","HI",38 +2005-06-01,"Industrial Consumption","Colorado","CO",8899 +2005-06-01,"Industrial Consumption","Alabama","AL",11710 +2005-06-01,"Industrial Consumption","Nebraska","NE",2597 +2005-06-01,"Industrial Consumption","Wisconsin","WI",8302 +2005-06-01,"Industrial Consumption","Delaware","DE",825 +2005-06-01,"Industrial Consumption","Georgia","GA",12465 +2005-06-01,"Industrial Consumption","District of Columbia","DC",0 +2005-06-01,"Industrial Consumption","Kansas","KS",7294 +2005-06-01,"Industrial Consumption","Pennsylvania","PA",13145 +2005-06-01,"Industrial Consumption","Oregon","OR",5728 +2005-06-01,"Industrial Consumption","Nevada","NV",1083 +2005-06-01,"Industrial Consumption","California","CA",62435 +2005-06-01,"Industrial Consumption","Illinois","IL",18254 +2005-06-01,"Industrial Consumption","Oklahoma","OK",12281 +2005-06-01,"Industrial Consumption","Ohio","OH",20025 +2005-06-01,"Industrial Consumption","Arizona","AZ",1303 +2005-06-01,"Industrial Consumption","U.S.","U.S.",516522 +2005-06-01,"Industrial Consumption","Arkansas","AR",6705 +2005-06-01,"Industrial Consumption","New Hampshire","NH",514 +2005-06-01,"Industrial Consumption","Connecticut","CT",1448 +2005-06-01,"Industrial Consumption","Rhode Island","RI",423 +2005-06-01,"Industrial Consumption","Maryland","MD",1988 +2005-06-01,"Industrial Consumption","Louisiana","LA",69015 +2005-06-01,"Industrial Consumption","Washington","WA",4993 +2005-06-01,"Industrial Consumption","Mississippi","MS",8232 +2005-06-01,"Industrial Consumption","West Virginia","WV",2133 +2005-06-01,"Industrial Consumption","Vermont","VT",185 +2005-06-01,"Industrial Consumption","Wyoming","WY",3347 +2005-06-01,"Industrial Consumption","Iowa","IA",6817 +2005-06-01,"Industrial Consumption","Indiana","IN",18322 +2005-06-01,"Industrial Consumption","South Dakota","SD",842 +2005-06-01,"Industrial Consumption","Maine","ME",397 +2005-06-01,"Industrial Consumption","Tennessee","TN",7117 +2005-06-01,"Industrial Consumption","Idaho","ID",1822 +2005-06-01,"Industrial Consumption","North Dakota","ND",836 +2005-06-01,"Industrial Consumption","New York","NY",5305 +2005-06-01,"Industrial Consumption","Texas","TX",112481 +2005-06-01,"Industrial Consumption","Utah","UT",2016 +2005-06-01,"Industrial Consumption","South Carolina","SC",6379 +2005-06-01,"Industrial Consumption","Virginia","VA",4756 +2005-06-01,"Industrial Consumption","Minnesota","MN",6386 +2005-06-01,"Industrial Consumption","Florida","FL",5194 +2005-06-01,"Industrial Consumption","Michigan","MI",15777 +2005-06-01,"Industrial Consumption","Kentucky","KY",8097 +2005-06-01,"Industrial Consumption","North Carolina","NC",6750 +2005-06-01,"Industrial Consumption","Alaska","AK",5444 +2005-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",93862 +2005-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",40242 +2005-06-01,"Residential Consumption","Connecticut","CT",1505 +2005-06-01,"Residential Consumption","Michigan","MI",9668 +2005-06-01,"Residential Consumption","Iowa","IA",1482 +2005-06-01,"Residential Consumption","Vermont","VT",116 +2005-06-01,"Residential Consumption","Utah","UT",2526 +2005-06-01,"Residential Consumption","South Dakota","SD",307 +2005-06-01,"Residential Consumption","Montana","MT",791 +2005-06-01,"Residential Consumption","Washington","WA",2879 +2005-06-01,"Residential Consumption","California","CA",28351 +2005-06-01,"Residential Consumption","Louisiana","LA",1574 +2005-06-01,"Residential Consumption","Minnesota","MN",3556 +2005-06-01,"Residential Consumption","Georgia","GA",3934 +2005-06-01,"Residential Consumption","New Mexico","NM",1070 +2005-06-01,"Residential Consumption","New Jersey","NJ",6110 +2005-06-01,"Residential Consumption","Missouri","MO",2597 +2005-06-01,"Residential Consumption","New York","NY",14675 +2005-06-01,"Residential Consumption","Texas","TX",6470 +2005-06-01,"Residential Consumption","South Carolina","SC",580 +2005-06-01,"Residential Consumption","North Carolina","NC",1450 +2005-06-01,"Residential Consumption","Nebraska","NE",990 +2005-06-01,"Residential Consumption","North Dakota","ND",279 +2005-06-01,"Residential Consumption","Arkansas","AR",868 +2005-06-01,"Residential Consumption","U.S.","U.S.",152020 +2005-06-01,"Residential Consumption","Oregon","OR",1668 +2005-06-01,"Residential Consumption","Hawaii","HI",42 +2005-06-01,"Residential Consumption","New Hampshire","NH",288 +2005-06-01,"Residential Consumption","Alaska","AK",581 +2005-06-01,"Residential Consumption","West Virginia","WV",636 +2005-06-01,"Residential Consumption","Tennessee","TN",1640 +2005-06-01,"Residential Consumption","Virginia","VA",1948 +2005-06-01,"Residential Consumption","Pennsylvania","PA",6431 +2005-06-01,"Residential Consumption","Maine","ME",30 +2005-06-01,"Residential Consumption","Florida","FL",905 +2005-06-01,"Residential Consumption","Idaho","ID",752 +2005-06-01,"Residential Consumption","Arizona","AZ",1382 +2005-06-01,"Residential Consumption","Wyoming","WY",463 +2005-06-01,"Residential Consumption","Illinois","IL",10470 +2005-06-01,"Residential Consumption","Rhode Island","RI",831 +2005-06-01,"Residential Consumption","Ohio","OH",7507 +2005-06-01,"Residential Consumption","Nevada","NV",1633 +2005-06-01,"Residential Consumption","Kentucky","KY",1158 +2005-06-01,"Residential Consumption","Colorado","CO",3179 +2005-06-01,"Residential Consumption","Oklahoma","OK",1767 +2005-06-01,"Residential Consumption","Alabama","AL",1313 +2005-06-01,"Residential Consumption","Mississippi","MS",769 +2005-06-01,"Residential Consumption","Wisconsin","WI",2792 +2005-06-01,"Residential Consumption","Maryland","MD",2209 +2005-06-01,"Residential Consumption","District of Columbia","DC",374 +2005-06-01,"Residential Consumption","Indiana","IN",3119 +2005-06-01,"Residential Consumption","Massachusetts","MA",4446 +2005-06-01,"Residential Consumption","Kansas","KS",1633 +2005-06-01,"Residential Consumption","Delaware","DE",276 +2005-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",1881 +2005-07-01,"Commercial Consumption","West Virginia","WV",989 +2005-07-01,"Commercial Consumption","Virginia","VA",2558 +2005-07-01,"Commercial Consumption","Montana","MT",375 +2005-07-01,"Commercial Consumption","U.S.","U.S.",124649 +2005-07-01,"Commercial Consumption","Florida","FL",4092 +2005-07-01,"Commercial Consumption","Idaho","ID",413 +2005-07-01,"Commercial Consumption","Hawaii","HI",154 +2005-07-01,"Commercial Consumption","Nebraska","NE",1046 +2005-07-01,"Commercial Consumption","Texas","TX",9404 +2005-07-01,"Commercial Consumption","Alaska","AK",570 +2005-07-01,"Commercial Consumption","New York","NY",13716 +2005-07-01,"Commercial Consumption","Mississippi","MS",1083 +2005-07-01,"Commercial Consumption","Delaware","DE",272 +2005-07-01,"Commercial Consumption","Indiana","IN",1966 +2005-07-01,"Commercial Consumption","Louisiana","LA",1501 +2005-07-01,"Commercial Consumption","Pennsylvania","PA",4055 +2005-07-01,"Commercial Consumption","Kansas","KS",907 +2005-07-01,"Commercial Consumption","Connecticut","CT",1396 +2005-07-01,"Commercial Consumption","Nevada","NV",1466 +2005-07-01,"Commercial Consumption","Washington","WA",2099 +2005-07-01,"Commercial Consumption","New Mexico","NM",843 +2005-07-01,"Commercial Consumption","Oklahoma","OK",1440 +2005-07-01,"Commercial Consumption","California","CA",16627 +2005-07-01,"Commercial Consumption","Michigan","MI",4890 +2005-07-01,"Commercial Consumption","Illinois","IL",6449 +2005-07-01,"Commercial Consumption","District of Columbia","DC",896 +2005-07-01,"Commercial Consumption","South Carolina","SC",1140 +2005-07-01,"Commercial Consumption","Maine","ME",208 +2005-07-01,"Commercial Consumption","Maryland","MD",2875 +2005-07-01,"Commercial Consumption","Georgia","GA",2123 +2005-07-01,"Commercial Consumption","Arizona","AZ",1865 +2005-07-01,"Commercial Consumption","Wyoming","WY",306 +2005-07-01,"Commercial Consumption","North Dakota","ND",281 +2005-07-01,"Commercial Consumption","Minnesota","MN",3360 +2005-07-01,"Commercial Consumption","Colorado","CO",1742 +2005-07-01,"Commercial Consumption","Oregon","OR",1109 +2005-07-01,"Commercial Consumption","Massachusetts","MA",2272 +2005-07-01,"Commercial Consumption","Rhode Island","RI",282 +2005-07-01,"Commercial Consumption","Alabama","AL",1405 +2005-07-01,"Commercial Consumption","Tennessee","TN",2209 +2005-07-01,"Commercial Consumption","Missouri","MO",1737 +2005-07-01,"Commercial Consumption","Wisconsin","WI",2522 +2005-07-01,"Commercial Consumption","Kentucky","KY",1181 +2005-07-01,"Commercial Consumption","Vermont","VT",69 +2005-07-01,"Commercial Consumption","Iowa","IA",1412 +2005-07-01,"Commercial Consumption","Arkansas","AR",1519 +2005-07-01,"Commercial Consumption","North Carolina","NC",1958 +2005-07-01,"Commercial Consumption","Utah","UT",1299 +2005-07-01,"Commercial Consumption","South Dakota","SD",250 +2005-07-01,"Commercial Consumption","New Jersey","NJ",7593 +2005-07-01,"Commercial Consumption","New Hampshire","NH",322 +2005-07-01,"Commercial Consumption","Ohio","OH",4400 +2005-07-01,"Delivered to Consumers","U.S.","U.S.",1547608 +2005-07-01,"Delivered to Consumers","Arkansas","AR",16703 +2005-07-01,"Delivered to Consumers","Kansas","KS",13164 +2005-07-01,"Delivered to Consumers","Iowa","IA",11888 +2005-07-01,"Delivered to Consumers","Nevada","NV",20156 +2005-07-01,"Delivered to Consumers","Louisiana","LA",104234 +2005-07-01,"Delivered to Consumers","Georgia","GA",31619 +2005-07-01,"Delivered to Consumers","Florida","FL",90376 +2005-07-01,"Delivered to Consumers","Utah","UT",7380 +2005-07-01,"Delivered to Consumers","Wyoming","WY",4081 +2005-07-01,"Delivered to Consumers","Rhode Island","RI",5990 +2005-07-01,"Delivered to Consumers","Hawaii","HI",224 +2005-07-01,"Delivered to Consumers","Idaho","ID",3511 +2005-07-01,"Delivered to Consumers","Alabama","AL",30759 +2005-07-01,"Delivered to Consumers","Nebraska","NE",7874 +2005-07-01,"Delivered to Consumers","Missouri","MO",13855 +2005-07-01,"Delivered to Consumers","Massachusetts","MA",24822 +2005-07-01,"Delivered to Consumers","Texas","TX",305006 +2005-07-01,"Delivered to Consumers","Vermont","VT",310 +2005-07-01,"Delivered to Consumers","Illinois","IL",44217 +2005-07-01,"Delivered to Consumers","South Dakota","SD",1880 +2005-07-01,"Delivered to Consumers","Oklahoma","OK",48696 +2005-07-01,"Delivered to Consumers","Tennessee","TN",11055 +2005-07-01,"Delivered to Consumers","Colorado","CO",26350 +2005-07-01,"Delivered to Consumers","Maine","ME",5883 +2005-07-01,"Delivered to Consumers","Arizona","AZ",35036 +2005-07-01,"Delivered to Consumers","New Mexico","NM",9146 +2005-07-01,"Delivered to Consumers","West Virginia","WV",3754 +2005-07-01,"Delivered to Consumers","Alaska","AK",10596 +2005-07-01,"Delivered to Consumers","Pennsylvania","PA",36133 +2005-07-01,"Delivered to Consumers","South Carolina","SC",16813 +2005-07-01,"Delivered to Consumers","New Hampshire","NH",5780 +2005-07-01,"Delivered to Consumers","Minnesota","MN",17093 +2005-07-01,"Delivered to Consumers","Indiana","IN",28628 +2005-07-01,"Delivered to Consumers","New York","NY",75042 +2005-07-01,"Delivered to Consumers","Maryland","MD",9641 +2005-07-01,"Delivered to Consumers","Ohio","OH",35833 +2005-07-01,"Delivered to Consumers","Kentucky","KY",12658 +2005-07-01,"Delivered to Consumers","Connecticut","CT",11073 +2005-07-01,"Delivered to Consumers","Wisconsin","WI",21959 +2005-07-01,"Delivered to Consumers","Virginia","VA",23552 +2005-07-01,"Delivered to Consumers","Oregon","OR",14502 +2005-07-01,"Delivered to Consumers","New Jersey","NJ",36629 +2005-07-01,"Delivered to Consumers","Washington","WA",16232 +2005-07-01,"Delivered to Consumers","North Dakota","ND",1270 +2005-07-01,"Delivered to Consumers","Delaware","DE",3287 +2005-07-01,"Delivered to Consumers","Michigan","MI",50667 +2005-07-01,"Delivered to Consumers","North Carolina","NC",15688 +2005-07-01,"Delivered to Consumers","California","CA",191687 +2005-07-01,"Delivered to Consumers","District of Columbia","DC",1217 +2005-07-01,"Delivered to Consumers","Montana","MT",2135 +2005-07-01,"Delivered to Consumers","Mississippi","MS",29577 +2005-07-01,"Electric Power Consumption","Colorado","CO",11218 +2005-07-01,"Electric Power Consumption","New York","NY",45765 +2005-07-01,"Electric Power Consumption","Utah","UT",2347 +2005-07-01,"Electric Power Consumption","Kansas","KS",2632 +2005-07-01,"Electric Power Consumption","Pennsylvania","PA",14795 +2005-07-01,"Electric Power Consumption","Iowa","IA",2620 +2005-07-01,"Electric Power Consumption","Delaware","DE",2014 +2005-07-01,"Electric Power Consumption","Oklahoma","OK",34470 +2005-07-01,"Electric Power Consumption","Oregon","OR",6970 +2005-07-01,"Electric Power Consumption","Minnesota","MN",4476 +2005-07-01,"Electric Power Consumption","Massachusetts","MA",17746 +2005-07-01,"Electric Power Consumption","Wisconsin","WI",9036 +2005-07-01,"Electric Power Consumption","Wyoming","WY",80 +2005-07-01,"Electric Power Consumption","Montana","MT",32 +2005-07-01,"Electric Power Consumption","Maryland","MD",3162 +2005-07-01,"Electric Power Consumption","Indiana","IN",6420 +2005-07-01,"Electric Power Consumption","Arizona","AZ",30885 +2005-07-01,"Electric Power Consumption","Alabama","AL",15974 +2005-07-01,"Electric Power Consumption","Alaska","AK",3527 +2005-07-01,"Electric Power Consumption","Texas","TX",172564 +2005-07-01,"Electric Power Consumption","Michigan","MI",20326 +2005-07-01,"Electric Power Consumption","Connecticut","CT",7102 +2005-07-01,"Electric Power Consumption","Georgia","GA",13538 +2005-07-01,"Electric Power Consumption","Florida","FL",80627 +2005-07-01,"Electric Power Consumption","California","CA",86224 +2005-07-01,"Electric Power Consumption","Idaho","ID",975 +2005-07-01,"Electric Power Consumption","Rhode Island","RI",4807 +2005-07-01,"Electric Power Consumption","Illinois","IL",11645 +2005-07-01,"Electric Power Consumption","Nevada","NV",16503 +2005-07-01,"Electric Power Consumption","U.S.","U.S.",777000 +2005-07-01,"Electric Power Consumption","South Dakota","SD",686 +2005-07-01,"Electric Power Consumption","Ohio","OH",6150 +2005-07-01,"Electric Power Consumption","Virginia","VA",13031 +2005-07-01,"Electric Power Consumption","Louisiana","LA",32870 +2005-07-01,"Electric Power Consumption","Tennessee","TN",1014 +2005-07-01,"Electric Power Consumption","Nebraska","NE",1606 +2005-07-01,"Electric Power Consumption","New Hampshire","NH",4821 +2005-07-01,"Electric Power Consumption","North Dakota","ND",0 +2005-07-01,"Electric Power Consumption","Washington","WA",7363 +2005-07-01,"Electric Power Consumption","Vermont","VT",2 +2005-07-01,"Electric Power Consumption","North Carolina","NC",6332 +2005-07-01,"Electric Power Consumption","Mississippi","MS",20048 +2005-07-01,"Electric Power Consumption","New Mexico","NM",5373 +2005-07-01,"Electric Power Consumption","New Jersey","NJ",18344 +2005-07-01,"Electric Power Consumption","Arkansas","AR",8057 +2005-07-01,"Electric Power Consumption","Maine","ME",5261 +2005-07-01,"Electric Power Consumption","Kentucky","KY",2647 +2005-07-01,"Electric Power Consumption","Hawaii","HI",NA +2005-07-01,"Electric Power Consumption","South Carolina","SC",9079 +2005-07-01,"Electric Power Consumption","West Virginia","WV",268 +2005-07-01,"Electric Power Consumption","Missouri","MO",5568 +2005-07-01,"Industrial Consumption","Hawaii","HI",34 +2005-07-01,"Industrial Consumption","Colorado","CO",10543 +2005-07-01,"Industrial Consumption","Ohio","OH",19136 +2005-07-01,"Industrial Consumption","New Mexico","NM",2050 +2005-07-01,"Industrial Consumption","U.S.","U.S.",521733 +2005-07-01,"Industrial Consumption","Virginia","VA",6408 +2005-07-01,"Industrial Consumption","Wisconsin","WI",7840 +2005-07-01,"Industrial Consumption","Connecticut","CT",1520 +2005-07-01,"Industrial Consumption","Alaska","AK",5992 +2005-07-01,"Industrial Consumption","North Dakota","ND",804 +2005-07-01,"Industrial Consumption","Oklahoma","OK",11409 +2005-07-01,"Industrial Consumption","Washington","WA",4754 +2005-07-01,"Industrial Consumption","New York","NY",5258 +2005-07-01,"Industrial Consumption","Mississippi","MS",7730 +2005-07-01,"Industrial Consumption","Wyoming","WY",3418 +2005-07-01,"Industrial Consumption","New Hampshire","NH",455 +2005-07-01,"Industrial Consumption","Indiana","IN",17340 +2005-07-01,"Industrial Consumption","Texas","TX",117029 +2005-07-01,"Industrial Consumption","Vermont","VT",175 +2005-07-01,"Industrial Consumption","Minnesota","MN",6507 +2005-07-01,"Industrial Consumption","Michigan","MI",18343 +2005-07-01,"Industrial Consumption","Georgia","GA",12320 +2005-07-01,"Industrial Consumption","Oregon","OR",5322 +2005-07-01,"Industrial Consumption","Nevada","NV",1015 +2005-07-01,"Industrial Consumption","South Carolina","SC",6095 +2005-07-01,"Industrial Consumption","West Virginia","WV",2098 +2005-07-01,"Industrial Consumption","Florida","FL",4859 +2005-07-01,"Industrial Consumption","Delaware","DE",804 +2005-07-01,"Industrial Consumption","North Carolina","NC",6195 +2005-07-01,"Industrial Consumption","South Dakota","SD",706 +2005-07-01,"Industrial Consumption","Utah","UT",1927 +2005-07-01,"Industrial Consumption","California","CA",65091 +2005-07-01,"Industrial Consumption","Arkansas","AR",6367 +2005-07-01,"Industrial Consumption","Alabama","AL",12259 +2005-07-01,"Industrial Consumption","Idaho","ID",1620 +2005-07-01,"Industrial Consumption","Illinois","IL",16787 +2005-07-01,"Industrial Consumption","Rhode Island","RI",397 +2005-07-01,"Industrial Consumption","Missouri","MO",4433 +2005-07-01,"Industrial Consumption","Tennessee","TN",6636 +2005-07-01,"Industrial Consumption","New Jersey","NJ",5437 +2005-07-01,"Industrial Consumption","Iowa","IA",6469 +2005-07-01,"Industrial Consumption","District of Columbia","DC",0 +2005-07-01,"Industrial Consumption","Montana","MT",1244 +2005-07-01,"Industrial Consumption","Maryland","MD",1833 +2005-07-01,"Industrial Consumption","Louisiana","LA",68404 +2005-07-01,"Industrial Consumption","Pennsylvania","PA",12685 +2005-07-01,"Industrial Consumption","Maine","ME",386 +2005-07-01,"Industrial Consumption","Massachusetts","MA",2077 +2005-07-01,"Industrial Consumption","Kansas","KS",8273 +2005-07-01,"Industrial Consumption","Arizona","AZ",1131 +2005-07-01,"Industrial Consumption","Nebraska","NE",4393 +2005-07-01,"Industrial Consumption","Kentucky","KY",7726 +2005-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94516 +2005-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",44485 +2005-07-01,"Residential Consumption","Texas","TX",6008 +2005-07-01,"Residential Consumption","South Carolina","SC",498 +2005-07-01,"Residential Consumption","Oregon","OR",1101 +2005-07-01,"Residential Consumption","Vermont","VT",64 +2005-07-01,"Residential Consumption","New Jersey","NJ",5255 +2005-07-01,"Residential Consumption","Montana","MT",484 +2005-07-01,"Residential Consumption","Alaska","AK",506 +2005-07-01,"Residential Consumption","Illinois","IL",9337 +2005-07-01,"Residential Consumption","Nebraska","NE",830 +2005-07-01,"Residential Consumption","Nevada","NV",1173 +2005-07-01,"Residential Consumption","North Dakota","ND",185 +2005-07-01,"Residential Consumption","Oklahoma","OK",1377 +2005-07-01,"Residential Consumption","West Virginia","WV",399 +2005-07-01,"Residential Consumption","Rhode Island","RI",504 +2005-07-01,"Residential Consumption","North Carolina","NC",1203 +2005-07-01,"Residential Consumption","Hawaii","HI",36 +2005-07-01,"Residential Consumption","Tennessee","TN",1197 +2005-07-01,"Residential Consumption","Minnesota","MN",2751 +2005-07-01,"Residential Consumption","Maine","ME",28 +2005-07-01,"Residential Consumption","Delaware","DE",197 +2005-07-01,"Residential Consumption","U.S.","U.S.",122282 +2005-07-01,"Residential Consumption","Mississippi","MS",716 +2005-07-01,"Residential Consumption","Louisiana","LA",1459 +2005-07-01,"Residential Consumption","Iowa","IA",1387 +2005-07-01,"Residential Consumption","South Dakota","SD",238 +2005-07-01,"Residential Consumption","New Mexico","NM",880 +2005-07-01,"Residential Consumption","Florida","FL",799 +2005-07-01,"Residential Consumption","Arkansas","AR",760 +2005-07-01,"Residential Consumption","New Hampshire","NH",182 +2005-07-01,"Residential Consumption","Kansas","KS",1352 +2005-07-01,"Residential Consumption","Washington","WA",2015 +2005-07-01,"Residential Consumption","Ohio","OH",6148 +2005-07-01,"Residential Consumption","Maryland","MD",1771 +2005-07-01,"Residential Consumption","Colorado","CO",2847 +2005-07-01,"Residential Consumption","New York","NY",10303 +2005-07-01,"Residential Consumption","Connecticut","CT",1056 +2005-07-01,"Residential Consumption","Virginia","VA",1555 +2005-07-01,"Residential Consumption","Michigan","MI",7108 +2005-07-01,"Residential Consumption","Massachusetts","MA",2727 +2005-07-01,"Residential Consumption","Kentucky","KY",1105 +2005-07-01,"Residential Consumption","Missouri","MO",2117 +2005-07-01,"Residential Consumption","Alabama","AL",1120 +2005-07-01,"Residential Consumption","Wisconsin","WI",2562 +2005-07-01,"Residential Consumption","Utah","UT",1807 +2005-07-01,"Residential Consumption","Georgia","GA",3637 +2005-07-01,"Residential Consumption","Pennsylvania","PA",4598 +2005-07-01,"Residential Consumption","Indiana","IN",2902 +2005-07-01,"Residential Consumption","California","CA",23745 +2005-07-01,"Residential Consumption","District of Columbia","DC",321 +2005-07-01,"Residential Consumption","Idaho","ID",503 +2005-07-01,"Residential Consumption","Arizona","AZ",1155 +2005-07-01,"Residential Consumption","Wyoming","WY",277 +2005-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",1944 +2005-08-01,"Commercial Consumption","Maine","ME",192 +2005-08-01,"Commercial Consumption","Idaho","ID",373 +2005-08-01,"Commercial Consumption","Hawaii","HI",148 +2005-08-01,"Commercial Consumption","Tennessee","TN",2158 +2005-08-01,"Commercial Consumption","West Virginia","WV",1033 +2005-08-01,"Commercial Consumption","Washington","WA",1953 +2005-08-01,"Commercial Consumption","Minnesota","MN",2576 +2005-08-01,"Commercial Consumption","Oklahoma","OK",1466 +2005-08-01,"Commercial Consumption","Missouri","MO",1980 +2005-08-01,"Commercial Consumption","Wisconsin","WI",2719 +2005-08-01,"Commercial Consumption","Connecticut","CT",1341 +2005-08-01,"Commercial Consumption","California","CA",16074 +2005-08-01,"Commercial Consumption","Arkansas","AR",1542 +2005-08-01,"Commercial Consumption","New York","NY",14300 +2005-08-01,"Commercial Consumption","Nebraska","NE",1024 +2005-08-01,"Commercial Consumption","Arizona","AZ",1760 +2005-08-01,"Commercial Consumption","Utah","UT",1059 +2005-08-01,"Commercial Consumption","Oregon","OR",948 +2005-08-01,"Commercial Consumption","Virginia","VA",2600 +2005-08-01,"Commercial Consumption","New Jersey","NJ",7415 +2005-08-01,"Commercial Consumption","New Hampshire","NH",286 +2005-08-01,"Commercial Consumption","Kentucky","KY",1266 +2005-08-01,"Commercial Consumption","Georgia","GA",2156 +2005-08-01,"Commercial Consumption","Delaware","DE",289 +2005-08-01,"Commercial Consumption","District of Columbia","DC",881 +2005-08-01,"Commercial Consumption","Wyoming","WY",275 +2005-08-01,"Commercial Consumption","South Carolina","SC",1056 +2005-08-01,"Commercial Consumption","New Mexico","NM",819 +2005-08-01,"Commercial Consumption","Texas","TX",9409 +2005-08-01,"Commercial Consumption","Maryland","MD",3197 +2005-08-01,"Commercial Consumption","Kansas","KS",908 +2005-08-01,"Commercial Consumption","Rhode Island","RI",245 +2005-08-01,"Commercial Consumption","Mississippi","MS",1082 +2005-08-01,"Commercial Consumption","North Dakota","ND",286 +2005-08-01,"Commercial Consumption","U.S.","U.S.",123903 +2005-08-01,"Commercial Consumption","Florida","FL",3966 +2005-08-01,"Commercial Consumption","Ohio","OH",4256 +2005-08-01,"Commercial Consumption","Illinois","IL",6558 +2005-08-01,"Commercial Consumption","North Carolina","NC",1889 +2005-08-01,"Commercial Consumption","Massachusetts","MA",2059 +2005-08-01,"Commercial Consumption","Alabama","AL",1404 +2005-08-01,"Commercial Consumption","Colorado","CO",1955 +2005-08-01,"Commercial Consumption","Montana","MT",479 +2005-08-01,"Commercial Consumption","Alaska","AK",705 +2005-08-01,"Commercial Consumption","Michigan","MI",4914 +2005-08-01,"Commercial Consumption","Louisiana","LA",1353 +2005-08-01,"Commercial Consumption","Pennsylvania","PA",4476 +2005-08-01,"Commercial Consumption","South Dakota","SD",302 +2005-08-01,"Commercial Consumption","Vermont","VT",73 +2005-08-01,"Commercial Consumption","Iowa","IA",1345 +2005-08-01,"Commercial Consumption","Nevada","NV",1441 +2005-08-01,"Commercial Consumption","Indiana","IN",1910 +2005-08-01,"Delivered to Consumers","Vermont","VT",298 +2005-08-01,"Delivered to Consumers","Alaska","AK",10360 +2005-08-01,"Delivered to Consumers","Iowa","IA",11542 +2005-08-01,"Delivered to Consumers","Arkansas","AR",17392 +2005-08-01,"Delivered to Consumers","California","CA",187213 +2005-08-01,"Delivered to Consumers","Arizona","AZ",34587 +2005-08-01,"Delivered to Consumers","District of Columbia","DC",1100 +2005-08-01,"Delivered to Consumers","Utah","UT",6187 +2005-08-01,"Delivered to Consumers","Indiana","IN",29602 +2005-08-01,"Delivered to Consumers","New York","NY",73408 +2005-08-01,"Delivered to Consumers","Michigan","MI",44890 +2005-08-01,"Delivered to Consumers","Wisconsin","WI",22549 +2005-08-01,"Delivered to Consumers","Colorado","CO",23387 +2005-08-01,"Delivered to Consumers","South Carolina","SC",18833 +2005-08-01,"Delivered to Consumers","Oregon","OR",16348 +2005-08-01,"Delivered to Consumers","Delaware","DE",3735 +2005-08-01,"Delivered to Consumers","South Dakota","SD",1845 +2005-08-01,"Delivered to Consumers","Maryland","MD",11634 +2005-08-01,"Delivered to Consumers","Oklahoma","OK",49698 +2005-08-01,"Delivered to Consumers","Connecticut","CT",11107 +2005-08-01,"Delivered to Consumers","Virginia","VA",25949 +2005-08-01,"Delivered to Consumers","New Hampshire","NH",6010 +2005-08-01,"Delivered to Consumers","Minnesota","MN",17307 +2005-08-01,"Delivered to Consumers","Florida","FL",84114 +2005-08-01,"Delivered to Consumers","Kansas","KS",13264 +2005-08-01,"Delivered to Consumers","Alabama","AL",31841 +2005-08-01,"Delivered to Consumers","New Jersey","NJ",37974 +2005-08-01,"Delivered to Consumers","Washington","WA",18247 +2005-08-01,"Delivered to Consumers","Ohio","OH",37060 +2005-08-01,"Delivered to Consumers","Kentucky","KY",14134 +2005-08-01,"Delivered to Consumers","Nebraska","NE",8028 +2005-08-01,"Delivered to Consumers","Massachusetts","MA",25383 +2005-08-01,"Delivered to Consumers","Nevada","NV",20490 +2005-08-01,"Delivered to Consumers","Louisiana","LA",99244 +2005-08-01,"Delivered to Consumers","New Mexico","NM",8446 +2005-08-01,"Delivered to Consumers","Rhode Island","RI",6010 +2005-08-01,"Delivered to Consumers","Hawaii","HI",225 +2005-08-01,"Delivered to Consumers","Pennsylvania","PA",37648 +2005-08-01,"Delivered to Consumers","Maine","ME",6097 +2005-08-01,"Delivered to Consumers","Idaho","ID",3614 +2005-08-01,"Delivered to Consumers","Tennessee","TN",13522 +2005-08-01,"Delivered to Consumers","North Carolina","NC",16197 +2005-08-01,"Delivered to Consumers","Georgia","GA",33089 +2005-08-01,"Delivered to Consumers","U.S.","U.S.",1555887 +2005-08-01,"Delivered to Consumers","Wyoming","WY",3903 +2005-08-01,"Delivered to Consumers","West Virginia","WV",4142 +2005-08-01,"Delivered to Consumers","Illinois","IL",44371 +2005-08-01,"Delivered to Consumers","Montana","MT",2426 +2005-08-01,"Delivered to Consumers","Mississippi","MS",32966 +2005-08-01,"Delivered to Consumers","Missouri","MO",14649 +2005-08-01,"Delivered to Consumers","Texas","TX",310731 +2005-08-01,"Delivered to Consumers","North Dakota","ND",1148 +2005-08-01,"Electric Power Consumption","New Jersey","NJ",19903 +2005-08-01,"Electric Power Consumption","Rhode Island","RI",4964 +2005-08-01,"Electric Power Consumption","Pennsylvania","PA",14914 +2005-08-01,"Electric Power Consumption","Maine","ME",5371 +2005-08-01,"Electric Power Consumption","Hawaii","HI",NA +2005-08-01,"Electric Power Consumption","New Hampshire","NH",5093 +2005-08-01,"Electric Power Consumption","Connecticut","CT",7254 +2005-08-01,"Electric Power Consumption","Arizona","AZ",30523 +2005-08-01,"Electric Power Consumption","Utah","UT",2010 +2005-08-01,"Electric Power Consumption","Minnesota","MN",3729 +2005-08-01,"Electric Power Consumption","Michigan","MI",18634 +2005-08-01,"Electric Power Consumption","Nevada","NV",16868 +2005-08-01,"Electric Power Consumption","Iowa","IA",2885 +2005-08-01,"Electric Power Consumption","North Carolina","NC",6613 +2005-08-01,"Electric Power Consumption","Missouri","MO",6037 +2005-08-01,"Electric Power Consumption","Alabama","AL",17573 +2005-08-01,"Electric Power Consumption","Texas","TX",176753 +2005-08-01,"Electric Power Consumption","South Dakota","SD",567 +2005-08-01,"Electric Power Consumption","Maryland","MD",4809 +2005-08-01,"Electric Power Consumption","Idaho","ID",1275 +2005-08-01,"Electric Power Consumption","Arkansas","AR",8276 +2005-08-01,"Electric Power Consumption","Wisconsin","WI",8333 +2005-08-01,"Electric Power Consumption","New York","NY",44111 +2005-08-01,"Electric Power Consumption","Tennessee","TN",2879 +2005-08-01,"Electric Power Consumption","U.S.","U.S.",791293 +2005-08-01,"Electric Power Consumption","North Dakota","ND",0 +2005-08-01,"Electric Power Consumption","Indiana","IN",6106 +2005-08-01,"Electric Power Consumption","Georgia","GA",15011 +2005-08-01,"Electric Power Consumption","California","CA",86927 +2005-08-01,"Electric Power Consumption","Colorado","CO",8839 +2005-08-01,"Electric Power Consumption","Oklahoma","OK",35302 +2005-08-01,"Electric Power Consumption","Kansas","KS",2083 +2005-08-01,"Electric Power Consumption","West Virginia","WV",459 +2005-08-01,"Electric Power Consumption","Ohio","OH",6032 +2005-08-01,"Electric Power Consumption","Virginia","VA",14892 +2005-08-01,"Electric Power Consumption","Louisiana","LA",31768 +2005-08-01,"Electric Power Consumption","South Carolina","SC",11146 +2005-08-01,"Electric Power Consumption","Oregon","OR",9097 +2005-08-01,"Electric Power Consumption","Illinois","IL",11824 +2005-08-01,"Electric Power Consumption","Massachusetts","MA",19181 +2005-08-01,"Electric Power Consumption","Wyoming","WY",75 +2005-08-01,"Electric Power Consumption","Nebraska","NE",1316 +2005-08-01,"Electric Power Consumption","Mississippi","MS",23145 +2005-08-01,"Electric Power Consumption","Delaware","DE",2335 +2005-08-01,"Electric Power Consumption","Alaska","AK",3809 +2005-08-01,"Electric Power Consumption","Washington","WA",9648 +2005-08-01,"Electric Power Consumption","New Mexico","NM",4695 +2005-08-01,"Electric Power Consumption","Vermont","VT",3 +2005-08-01,"Electric Power Consumption","Kentucky","KY",3340 +2005-08-01,"Electric Power Consumption","Montana","MT",32 +2005-08-01,"Electric Power Consumption","Florida","FL",74855 +2005-08-01,"Industrial Consumption","Massachusetts","MA",1839 +2005-08-01,"Industrial Consumption","Ohio","OH",21068 +2005-08-01,"Industrial Consumption","New Mexico","NM",2104 +2005-08-01,"Industrial Consumption","U.S.","U.S.",526148 +2005-08-01,"Industrial Consumption","New York","NY",5470 +2005-08-01,"Industrial Consumption","Nevada","NV",1067 +2005-08-01,"Industrial Consumption","Maine","ME",504 +2005-08-01,"Industrial Consumption","Alabama","AL",11816 +2005-08-01,"Industrial Consumption","Florida","FL",4551 +2005-08-01,"Industrial Consumption","Missouri","MO",4709 +2005-08-01,"Industrial Consumption","Louisiana","LA",64695 +2005-08-01,"Industrial Consumption","Utah","UT",1771 +2005-08-01,"Industrial Consumption","South Carolina","SC",6187 +2005-08-01,"Industrial Consumption","Connecticut","CT",1613 +2005-08-01,"Industrial Consumption","Michigan","MI",15371 +2005-08-01,"Industrial Consumption","Washington","WA",4962 +2005-08-01,"Industrial Consumption","Oklahoma","OK",11658 +2005-08-01,"Industrial Consumption","New Jersey","NJ",5475 +2005-08-01,"Industrial Consumption","New Hampshire","NH",479 +2005-08-01,"Industrial Consumption","Delaware","DE",930 +2005-08-01,"Industrial Consumption","Rhode Island","RI",389 +2005-08-01,"Industrial Consumption","Mississippi","MS",8075 +2005-08-01,"Industrial Consumption","California","CA",62315 +2005-08-01,"Industrial Consumption","Texas","TX",119033 +2005-08-01,"Industrial Consumption","Wisconsin","WI",8760 +2005-08-01,"Industrial Consumption","Kentucky","KY",8471 +2005-08-01,"Industrial Consumption","District of Columbia","DC",0 +2005-08-01,"Industrial Consumption","North Dakota","ND",660 +2005-08-01,"Industrial Consumption","Arizona","AZ",1251 +2005-08-01,"Industrial Consumption","Nebraska","NE",4914 +2005-08-01,"Industrial Consumption","Virginia","VA",7055 +2005-08-01,"Industrial Consumption","Vermont","VT",161 +2005-08-01,"Industrial Consumption","Wyoming","WY",3319 +2005-08-01,"Industrial Consumption","Indiana","IN",19005 +2005-08-01,"Industrial Consumption","North Carolina","NC",6671 +2005-08-01,"Industrial Consumption","Montana","MT",1475 +2005-08-01,"Industrial Consumption","Hawaii","HI",37 +2005-08-01,"Industrial Consumption","Kansas","KS",9035 +2005-08-01,"Industrial Consumption","Pennsylvania","PA",13962 +2005-08-01,"Industrial Consumption","Oregon","OR",5449 +2005-08-01,"Industrial Consumption","Arkansas","AR",6880 +2005-08-01,"Industrial Consumption","West Virginia","WV",2254 +2005-08-01,"Industrial Consumption","Tennessee","TN",7363 +2005-08-01,"Industrial Consumption","Minnesota","MN",8372 +2005-08-01,"Industrial Consumption","Idaho","ID",1587 +2005-08-01,"Industrial Consumption","Iowa","IA",6068 +2005-08-01,"Industrial Consumption","Illinois","IL",17517 +2005-08-01,"Industrial Consumption","Georgia","GA",12209 +2005-08-01,"Industrial Consumption","Maryland","MD",1870 +2005-08-01,"Industrial Consumption","Colorado","CO",9727 +2005-08-01,"Industrial Consumption","South Dakota","SD",711 +2005-08-01,"Industrial Consumption","Alaska","AK",5284 +2005-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94493 +2005-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",44721 +2005-08-01,"Residential Consumption","Rhode Island","RI",411 +2005-08-01,"Residential Consumption","Oregon","OR",855 +2005-08-01,"Residential Consumption","Iowa","IA",1243 +2005-08-01,"Residential Consumption","Hawaii","HI",40 +2005-08-01,"Residential Consumption","Connecticut","CT",899 +2005-08-01,"Residential Consumption","Utah","UT",1347 +2005-08-01,"Residential Consumption","Nevada","NV",1115 +2005-08-01,"Residential Consumption","Florida","FL",742 +2005-08-01,"Residential Consumption","New Jersey","NJ",5182 +2005-08-01,"Residential Consumption","New Hampshire","NH",152 +2005-08-01,"Residential Consumption","U.S.","U.S.",112600 +2005-08-01,"Residential Consumption","Ohio","OH",5704 +2005-08-01,"Residential Consumption","Virginia","VA",1401 +2005-08-01,"Residential Consumption","New Mexico","NM",827 +2005-08-01,"Residential Consumption","Colorado","CO",2867 +2005-08-01,"Residential Consumption","Alabama","AL",1048 +2005-08-01,"Residential Consumption","Louisiana","LA",1427 +2005-08-01,"Residential Consumption","Maine","ME",30 +2005-08-01,"Residential Consumption","North Dakota","ND",202 +2005-08-01,"Residential Consumption","Delaware","DE",181 +2005-08-01,"Residential Consumption","Arizona","AZ",1053 +2005-08-01,"Residential Consumption","Mississippi","MS",665 +2005-08-01,"Residential Consumption","Nebraska","NE",774 +2005-08-01,"Residential Consumption","Michigan","MI",5970 +2005-08-01,"Residential Consumption","South Dakota","SD",265 +2005-08-01,"Residential Consumption","Minnesota","MN",2630 +2005-08-01,"Residential Consumption","Massachusetts","MA",2304 +2005-08-01,"Residential Consumption","Oklahoma","OK",1271 +2005-08-01,"Residential Consumption","West Virginia","WV",396 +2005-08-01,"Residential Consumption","South Carolina","SC",444 +2005-08-01,"Residential Consumption","Maryland","MD",1758 +2005-08-01,"Residential Consumption","Idaho","ID",379 +2005-08-01,"Residential Consumption","Kentucky","KY",1057 +2005-08-01,"Residential Consumption","North Carolina","NC",1024 +2005-08-01,"Residential Consumption","Tennessee","TN",1122 +2005-08-01,"Residential Consumption","Georgia","GA",3712 +2005-08-01,"Residential Consumption","Washington","WA",1683 +2005-08-01,"Residential Consumption","Missouri","MO",1924 +2005-08-01,"Residential Consumption","California","CA",21897 +2005-08-01,"Residential Consumption","New York","NY",9527 +2005-08-01,"Residential Consumption","Illinois","IL",8472 +2005-08-01,"Residential Consumption","Texas","TX",5536 +2005-08-01,"Residential Consumption","Wisconsin","WI",2739 +2005-08-01,"Residential Consumption","Indiana","IN",2581 +2005-08-01,"Residential Consumption","Vermont","VT",61 +2005-08-01,"Residential Consumption","District of Columbia","DC",219 +2005-08-01,"Residential Consumption","Pennsylvania","PA",4296 +2005-08-01,"Residential Consumption","Arkansas","AR",695 +2005-08-01,"Residential Consumption","Montana","MT",440 +2005-08-01,"Residential Consumption","Kansas","KS",1238 +2005-08-01,"Residential Consumption","Alaska","AK",563 +2005-08-01,"Residential Consumption","Wyoming","WY",234 +2005-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",1944 +2005-09-01,"Commercial Consumption","North Dakota","ND",227 +2005-09-01,"Commercial Consumption","Colorado","CO",1990 +2005-09-01,"Commercial Consumption","New Mexico","NM",852 +2005-09-01,"Commercial Consumption","Alaska","AK",857 +2005-09-01,"Commercial Consumption","California","CA",17357 +2005-09-01,"Commercial Consumption","Alabama","AL",1328 +2005-09-01,"Commercial Consumption","Texas","TX",9600 +2005-09-01,"Commercial Consumption","Georgia","GA",1940 +2005-09-01,"Commercial Consumption","Florida","FL",3968 +2005-09-01,"Commercial Consumption","Michigan","MI",5133 +2005-09-01,"Commercial Consumption","Louisiana","LA",932 +2005-09-01,"Commercial Consumption","West Virginia","WV",1039 +2005-09-01,"Commercial Consumption","Oregon","OR",1072 +2005-09-01,"Commercial Consumption","Oklahoma","OK",1482 +2005-09-01,"Commercial Consumption","Virginia","VA",2617 +2005-09-01,"Commercial Consumption","Montana","MT",463 +2005-09-01,"Commercial Consumption","Ohio","OH",5237 +2005-09-01,"Commercial Consumption","Idaho","ID",466 +2005-09-01,"Commercial Consumption","Iowa","IA",1502 +2005-09-01,"Commercial Consumption","Arizona","AZ",1815 +2005-09-01,"Commercial Consumption","Nevada","NV",1564 +2005-09-01,"Commercial Consumption","Wyoming","WY",307 +2005-09-01,"Commercial Consumption","Washington","WA",2169 +2005-09-01,"Commercial Consumption","Pennsylvania","PA",4126 +2005-09-01,"Commercial Consumption","Arkansas","AR",1584 +2005-09-01,"Commercial Consumption","Delaware","DE",294 +2005-09-01,"Commercial Consumption","District of Columbia","DC",824 +2005-09-01,"Commercial Consumption","New Hampshire","NH",319 +2005-09-01,"Commercial Consumption","U.S.","U.S.",126731 +2005-09-01,"Commercial Consumption","Kansas","KS",821 +2005-09-01,"Commercial Consumption","Tennessee","TN",2314 +2005-09-01,"Commercial Consumption","South Carolina","SC",1122 +2005-09-01,"Commercial Consumption","South Dakota","SD",302 +2005-09-01,"Commercial Consumption","New Jersey","NJ",7881 +2005-09-01,"Commercial Consumption","Hawaii","HI",152 +2005-09-01,"Commercial Consumption","Connecticut","CT",1358 +2005-09-01,"Commercial Consumption","Nebraska","NE",1091 +2005-09-01,"Commercial Consumption","Minnesota","MN",2299 +2005-09-01,"Commercial Consumption","Utah","UT",1224 +2005-09-01,"Commercial Consumption","Missouri","MO",2071 +2005-09-01,"Commercial Consumption","Massachusetts","MA",2035 +2005-09-01,"Commercial Consumption","Wisconsin","WI",2895 +2005-09-01,"Commercial Consumption","Kentucky","KY",1066 +2005-09-01,"Commercial Consumption","Maryland","MD",2878 +2005-09-01,"Commercial Consumption","New York","NY",13017 +2005-09-01,"Commercial Consumption","Mississippi","MS",977 +2005-09-01,"Commercial Consumption","North Carolina","NC",2026 +2005-09-01,"Commercial Consumption","Maine","ME",180 +2005-09-01,"Commercial Consumption","Vermont","VT",78 +2005-09-01,"Commercial Consumption","Rhode Island","RI",276 +2005-09-01,"Commercial Consumption","Indiana","IN",2373 +2005-09-01,"Commercial Consumption","Illinois","IL",7234 +2005-09-01,"Delivered to Consumers","U.S.","U.S.",1301829 +2005-09-01,"Delivered to Consumers","Illinois","IL",39592 +2005-09-01,"Delivered to Consumers","Alabama","AL",22975 +2005-09-01,"Delivered to Consumers","South Carolina","SC",10439 +2005-09-01,"Delivered to Consumers","District of Columbia","DC",1124 +2005-09-01,"Delivered to Consumers","Rhode Island","RI",4836 +2005-09-01,"Delivered to Consumers","Kansas","KS",12147 +2005-09-01,"Delivered to Consumers","Idaho","ID",3733 +2005-09-01,"Delivered to Consumers","Mississippi","MS",20932 +2005-09-01,"Delivered to Consumers","Missouri","MO",12548 +2005-09-01,"Delivered to Consumers","West Virginia","WV",3627 +2005-09-01,"Delivered to Consumers","Maryland","MD",8302 +2005-09-01,"Delivered to Consumers","Kentucky","KY",12122 +2005-09-01,"Delivered to Consumers","Nebraska","NE",6345 +2005-09-01,"Delivered to Consumers","California","CA",166515 +2005-09-01,"Delivered to Consumers","Florida","FL",67877 +2005-09-01,"Delivered to Consumers","Utah","UT",6053 +2005-09-01,"Delivered to Consumers","Delaware","DE",2652 +2005-09-01,"Delivered to Consumers","New York","NY",58655 +2005-09-01,"Delivered to Consumers","Montana","MT",2551 +2005-09-01,"Delivered to Consumers","Ohio","OH",33808 +2005-09-01,"Delivered to Consumers","North Carolina","NC",12616 +2005-09-01,"Delivered to Consumers","Colorado","CO",22698 +2005-09-01,"Delivered to Consumers","Nevada","NV",18633 +2005-09-01,"Delivered to Consumers","New Jersey","NJ",30011 +2005-09-01,"Delivered to Consumers","Maine","ME",4936 +2005-09-01,"Delivered to Consumers","Minnesota","MN",14377 +2005-09-01,"Delivered to Consumers","New Mexico","NM",7883 +2005-09-01,"Delivered to Consumers","Indiana","IN",26476 +2005-09-01,"Delivered to Consumers","Alaska","AK",10325 +2005-09-01,"Delivered to Consumers","Oklahoma","OK",42454 +2005-09-01,"Delivered to Consumers","Michigan","MI",35502 +2005-09-01,"Delivered to Consumers","Connecticut","CT",8196 +2005-09-01,"Delivered to Consumers","Arkansas","AR",13113 +2005-09-01,"Delivered to Consumers","Pennsylvania","PA",32674 +2005-09-01,"Delivered to Consumers","Texas","TX",259546 +2005-09-01,"Delivered to Consumers","Oregon","OR",15706 +2005-09-01,"Delivered to Consumers","Tennessee","TN",11117 +2005-09-01,"Delivered to Consumers","Virginia","VA",18966 +2005-09-01,"Delivered to Consumers","Louisiana","LA",82252 +2005-09-01,"Delivered to Consumers","Arizona","AZ",26451 +2005-09-01,"Delivered to Consumers","Washington","WA",15311 +2005-09-01,"Delivered to Consumers","Wyoming","WY",4080 +2005-09-01,"Delivered to Consumers","South Dakota","SD",1562 +2005-09-01,"Delivered to Consumers","Wisconsin","WI",19566 +2005-09-01,"Delivered to Consumers","Massachusetts","MA",21751 +2005-09-01,"Delivered to Consumers","Georgia","GA",28453 +2005-09-01,"Delivered to Consumers","New Hampshire","NH",4491 +2005-09-01,"Delivered to Consumers","Vermont","VT",295 +2005-09-01,"Delivered to Consumers","Hawaii","HI",226 +2005-09-01,"Delivered to Consumers","Iowa","IA",11838 +2005-09-01,"Delivered to Consumers","North Dakota","ND",1611 +2005-09-01,"Electric Power Consumption","New Jersey","NJ",11807 +2005-09-01,"Electric Power Consumption","Louisiana","LA",29702 +2005-09-01,"Electric Power Consumption","Rhode Island","RI",3729 +2005-09-01,"Electric Power Consumption","U.S.","U.S.",577543 +2005-09-01,"Electric Power Consumption","Arizona","AZ",22218 +2005-09-01,"Electric Power Consumption","Florida","FL",58916 +2005-09-01,"Electric Power Consumption","Colorado","CO",8250 +2005-09-01,"Electric Power Consumption","South Carolina","SC",4526 +2005-09-01,"Electric Power Consumption","New York","NY",30741 +2005-09-01,"Electric Power Consumption","Michigan","MI",10323 +2005-09-01,"Electric Power Consumption","Iowa","IA",1817 +2005-09-01,"Electric Power Consumption","South Dakota","SD",247 +2005-09-01,"Electric Power Consumption","Vermont","VT",3 +2005-09-01,"Electric Power Consumption","Ohio","OH",2104 +2005-09-01,"Electric Power Consumption","Maryland","MD",2123 +2005-09-01,"Electric Power Consumption","Indiana","IN",2540 +2005-09-01,"Electric Power Consumption","California","CA",61079 +2005-09-01,"Electric Power Consumption","Alaska","AK",3157 +2005-09-01,"Electric Power Consumption","Virginia","VA",8184 +2005-09-01,"Electric Power Consumption","Oklahoma","OK",27551 +2005-09-01,"Electric Power Consumption","Tennessee","TN",446 +2005-09-01,"Electric Power Consumption","Nebraska","NE",818 +2005-09-01,"Electric Power Consumption","North Carolina","NC",3067 +2005-09-01,"Electric Power Consumption","Georgia","GA",11382 +2005-09-01,"Electric Power Consumption","New Mexico","NM",3966 +2005-09-01,"Electric Power Consumption","Texas","TX",148199 +2005-09-01,"Electric Power Consumption","Utah","UT",1214 +2005-09-01,"Electric Power Consumption","Illinois","IL",6338 +2005-09-01,"Electric Power Consumption","Kansas","KS",1325 +2005-09-01,"Electric Power Consumption","Maine","ME",4092 +2005-09-01,"Electric Power Consumption","Kentucky","KY",1900 +2005-09-01,"Electric Power Consumption","Hawaii","HI",NA +2005-09-01,"Electric Power Consumption","North Dakota","ND",0 +2005-09-01,"Electric Power Consumption","Alabama","AL",9582 +2005-09-01,"Electric Power Consumption","Arkansas","AR",4441 +2005-09-01,"Electric Power Consumption","Oregon","OR",8251 +2005-09-01,"Electric Power Consumption","Minnesota","MN",2169 +2005-09-01,"Electric Power Consumption","West Virginia","WV",73 +2005-09-01,"Electric Power Consumption","Nevada","NV",14753 +2005-09-01,"Electric Power Consumption","Wyoming","WY",54 +2005-09-01,"Electric Power Consumption","Missouri","MO",3404 +2005-09-01,"Electric Power Consumption","Connecticut","CT",4431 +2005-09-01,"Electric Power Consumption","Idaho","ID",1127 +2005-09-01,"Electric Power Consumption","Wisconsin","WI",5898 +2005-09-01,"Electric Power Consumption","Pennsylvania","PA",10640 +2005-09-01,"Electric Power Consumption","Mississippi","MS",14759 +2005-09-01,"Electric Power Consumption","Montana","MT",19 +2005-09-01,"Electric Power Consumption","Washington","WA",5998 +2005-09-01,"Electric Power Consumption","Massachusetts","MA",15275 +2005-09-01,"Electric Power Consumption","New Hampshire","NH",3592 +2005-09-01,"Electric Power Consumption","Delaware","DE",1312 +2005-09-01,"Industrial Consumption","Washington","WA",5081 +2005-09-01,"Industrial Consumption","Maine","ME",636 +2005-09-01,"Industrial Consumption","California","CA",64648 +2005-09-01,"Industrial Consumption","Michigan","MI",13148 +2005-09-01,"Industrial Consumption","District of Columbia","DC",0 +2005-09-01,"Industrial Consumption","Louisiana","LA",50697 +2005-09-01,"Industrial Consumption","Kansas","KS",8744 +2005-09-01,"Industrial Consumption","Arkansas","AR",6349 +2005-09-01,"Industrial Consumption","New Jersey","NJ",5332 +2005-09-01,"Industrial Consumption","Rhode Island","RI",368 +2005-09-01,"Industrial Consumption","U.S.","U.S.",477413 +2005-09-01,"Industrial Consumption","Texas","TX",95868 +2005-09-01,"Industrial Consumption","South Carolina","SC",4276 +2005-09-01,"Industrial Consumption","Nebraska","NE",3613 +2005-09-01,"Industrial Consumption","Idaho","ID",1604 +2005-09-01,"Industrial Consumption","Iowa","IA",7212 +2005-09-01,"Industrial Consumption","Connecticut","CT",1427 +2005-09-01,"Industrial Consumption","Delaware","DE",864 +2005-09-01,"Industrial Consumption","North Dakota","ND",1163 +2005-09-01,"Industrial Consumption","Hawaii","HI",34 +2005-09-01,"Industrial Consumption","Ohio","OH",20716 +2005-09-01,"Industrial Consumption","Arizona","AZ",1273 +2005-09-01,"Industrial Consumption","New York","NY",5650 +2005-09-01,"Industrial Consumption","Mississippi","MS",4567 +2005-09-01,"Industrial Consumption","West Virginia","WV",2096 +2005-09-01,"Industrial Consumption","Kentucky","KY",8177 +2005-09-01,"Industrial Consumption","Montana","MT",1520 +2005-09-01,"Industrial Consumption","Nevada","NV",1036 +2005-09-01,"Industrial Consumption","Tennessee","TN",7098 +2005-09-01,"Industrial Consumption","North Carolina","NC",6437 +2005-09-01,"Industrial Consumption","Oregon","OR",5371 +2005-09-01,"Industrial Consumption","Wyoming","WY",3435 +2005-09-01,"Industrial Consumption","Wisconsin","WI",8216 +2005-09-01,"Industrial Consumption","Indiana","IN",18711 +2005-09-01,"Industrial Consumption","Illinois","IL",17260 +2005-09-01,"Industrial Consumption","Massachusetts","MA",1970 +2005-09-01,"Industrial Consumption","Oklahoma","OK",12140 +2005-09-01,"Industrial Consumption","Alabama","AL",11009 +2005-09-01,"Industrial Consumption","Virginia","VA",6543 +2005-09-01,"Industrial Consumption","Vermont","VT",146 +2005-09-01,"Industrial Consumption","New Hampshire","NH",416 +2005-09-01,"Industrial Consumption","Florida","FL",4231 +2005-09-01,"Industrial Consumption","Maryland","MD",1765 +2005-09-01,"Industrial Consumption","Missouri","MO",4733 +2005-09-01,"Industrial Consumption","Colorado","CO",9285 +2005-09-01,"Industrial Consumption","South Dakota","SD",762 +2005-09-01,"Industrial Consumption","New Mexico","NM",2197 +2005-09-01,"Industrial Consumption","Utah","UT",1969 +2005-09-01,"Industrial Consumption","Pennsylvania","PA",13370 +2005-09-01,"Industrial Consumption","Minnesota","MN",7268 +2005-09-01,"Industrial Consumption","Georgia","GA",11515 +2005-09-01,"Industrial Consumption","Alaska","AK",5468 +2005-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",83252 +2005-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",37415 +2005-09-01,"Residential Consumption","South Carolina","SC",515 +2005-09-01,"Residential Consumption","Mississippi","MS",630 +2005-09-01,"Residential Consumption","Utah","UT",1645 +2005-09-01,"Residential Consumption","Florida","FL",762 +2005-09-01,"Residential Consumption","Massachusetts","MA",2471 +2005-09-01,"Residential Consumption","New Hampshire","NH",164 +2005-09-01,"Residential Consumption","Montana","MT",548 +2005-09-01,"Residential Consumption","Kentucky","KY",979 +2005-09-01,"Residential Consumption","Missouri","MO",2340 +2005-09-01,"Residential Consumption","Arizona","AZ",1144 +2005-09-01,"Residential Consumption","Texas","TX",5879 +2005-09-01,"Residential Consumption","Oregon","OR",1013 +2005-09-01,"Residential Consumption","Louisiana","LA",921 +2005-09-01,"Residential Consumption","Tennessee","TN",1258 +2005-09-01,"Residential Consumption","Maryland","MD",1537 +2005-09-01,"Residential Consumption","Arkansas","AR",738 +2005-09-01,"Residential Consumption","New Jersey","NJ",4991 +2005-09-01,"Residential Consumption","Washington","WA",2063 +2005-09-01,"Residential Consumption","Alaska","AK",843 +2005-09-01,"Residential Consumption","Wyoming","WY",285 +2005-09-01,"Residential Consumption","U.S.","U.S.",118261 +2005-09-01,"Residential Consumption","Iowa","IA",1306 +2005-09-01,"Residential Consumption","Wisconsin","WI",2557 +2005-09-01,"Residential Consumption","Hawaii","HI",40 +2005-09-01,"Residential Consumption","Connecticut","CT",980 +2005-09-01,"Residential Consumption","Nevada","NV",1279 +2005-09-01,"Residential Consumption","Indiana","IN",2852 +2005-09-01,"Residential Consumption","Colorado","CO",3173 +2005-09-01,"Residential Consumption","Rhode Island","RI",463 +2005-09-01,"Residential Consumption","Oklahoma","OK",1280 +2005-09-01,"Residential Consumption","California","CA",23432 +2005-09-01,"Residential Consumption","West Virginia","WV",419 +2005-09-01,"Residential Consumption","Ohio","OH",5751 +2005-09-01,"Residential Consumption","Virginia","VA",1621 +2005-09-01,"Residential Consumption","South Dakota","SD",251 +2005-09-01,"Residential Consumption","Georgia","GA",3615 +2005-09-01,"Residential Consumption","District of Columbia","DC",300 +2005-09-01,"Residential Consumption","North Dakota","ND",222 +2005-09-01,"Residential Consumption","North Carolina","NC",1087 +2005-09-01,"Residential Consumption","Nebraska","NE",823 +2005-09-01,"Residential Consumption","Michigan","MI",6898 +2005-09-01,"Residential Consumption","Pennsylvania","PA",4538 +2005-09-01,"Residential Consumption","Maine","ME",28 +2005-09-01,"Residential Consumption","Alabama","AL",1056 +2005-09-01,"Residential Consumption","New York","NY",9247 +2005-09-01,"Residential Consumption","Vermont","VT",68 +2005-09-01,"Residential Consumption","Minnesota","MN",2641 +2005-09-01,"Residential Consumption","New Mexico","NM",869 +2005-09-01,"Residential Consumption","Idaho","ID",537 +2005-09-01,"Residential Consumption","Kansas","KS",1257 +2005-09-01,"Residential Consumption","Delaware","DE",182 +2005-09-01,"Residential Consumption","Illinois","IL",8761 +2005-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",1881 +2005-10-01,"Commercial Consumption","Wyoming","WY",455 +2005-10-01,"Commercial Consumption","New Jersey","NJ",8462 +2005-10-01,"Commercial Consumption","Maine","ME",289 +2005-10-01,"Commercial Consumption","Florida","FL",4036 +2005-10-01,"Commercial Consumption","Idaho","ID",657 +2005-10-01,"Commercial Consumption","Mississippi","MS",1293 +2005-10-01,"Commercial Consumption","Michigan","MI",7306 +2005-10-01,"Commercial Consumption","Virginia","VA",3896 +2005-10-01,"Commercial Consumption","Arizona","AZ",2069 +2005-10-01,"Commercial Consumption","Washington","WA",2798 +2005-10-01,"Commercial Consumption","Colorado","CO",4057 +2005-10-01,"Commercial Consumption","Utah","UT",1560 +2005-10-01,"Commercial Consumption","New Mexico","NM",959 +2005-10-01,"Commercial Consumption","Oregon","OR",1304 +2005-10-01,"Commercial Consumption","Wisconsin","WI",4590 +2005-10-01,"Commercial Consumption","Kansas","KS",1128 +2005-10-01,"Commercial Consumption","Georgia","GA",2907 +2005-10-01,"Commercial Consumption","Connecticut","CT",1770 +2005-10-01,"Commercial Consumption","South Dakota","SD",544 +2005-10-01,"Commercial Consumption","Hawaii","HI",149 +2005-10-01,"Commercial Consumption","Nebraska","NE",1324 +2005-10-01,"Commercial Consumption","South Carolina","SC",1549 +2005-10-01,"Commercial Consumption","Minnesota","MN",4948 +2005-10-01,"Commercial Consumption","Pennsylvania","PA",6830 +2005-10-01,"Commercial Consumption","Massachusetts","MA",2362 +2005-10-01,"Commercial Consumption","Louisiana","LA",1856 +2005-10-01,"Commercial Consumption","Illinois","IL",10717 +2005-10-01,"Commercial Consumption","District of Columbia","DC",1043 +2005-10-01,"Commercial Consumption","Kentucky","KY",2060 +2005-10-01,"Commercial Consumption","Vermont","VT",101 +2005-10-01,"Commercial Consumption","Rhode Island","RI",440 +2005-10-01,"Commercial Consumption","Ohio","OH",6840 +2005-10-01,"Commercial Consumption","Arkansas","AR",1869 +2005-10-01,"Commercial Consumption","Tennessee","TN",2584 +2005-10-01,"Commercial Consumption","North Dakota","ND",631 +2005-10-01,"Commercial Consumption","Oklahoma","OK",1494 +2005-10-01,"Commercial Consumption","Missouri","MO",2668 +2005-10-01,"Commercial Consumption","Montana","MT",855 +2005-10-01,"Commercial Consumption","Maryland","MD",4612 +2005-10-01,"Commercial Consumption","Alaska","AK",1340 +2005-10-01,"Commercial Consumption","Alabama","AL",1200 +2005-10-01,"Commercial Consumption","New York","NY",14291 +2005-10-01,"Commercial Consumption","Delaware","DE",433 +2005-10-01,"Commercial Consumption","West Virginia","WV",1414 +2005-10-01,"Commercial Consumption","North Carolina","NC",2564 +2005-10-01,"Commercial Consumption","New Hampshire","NH",429 +2005-10-01,"Commercial Consumption","U.S.","U.S.",162077 +2005-10-01,"Commercial Consumption","Texas","TX",9505 +2005-10-01,"Commercial Consumption","Iowa","IA",2506 +2005-10-01,"Commercial Consumption","California","CA",17171 +2005-10-01,"Commercial Consumption","Nevada","NV",1799 +2005-10-01,"Commercial Consumption","Indiana","IN",4413 +2005-10-01,"Delivered to Consumers","Montana","MT",4121 +2005-10-01,"Delivered to Consumers","Maryland","MD",12060 +2005-10-01,"Delivered to Consumers","Oklahoma","OK",32097 +2005-10-01,"Delivered to Consumers","Tennessee","TN",11668 +2005-10-01,"Delivered to Consumers","Iowa","IA",13551 +2005-10-01,"Delivered to Consumers","Alabama","AL",19574 +2005-10-01,"Delivered to Consumers","Pennsylvania","PA",35439 +2005-10-01,"Delivered to Consumers","New Jersey","NJ",29763 +2005-10-01,"Delivered to Consumers","Louisiana","LA",75899 +2005-10-01,"Delivered to Consumers","North Dakota","ND",2646 +2005-10-01,"Delivered to Consumers","Indiana","IN",32838 +2005-10-01,"Delivered to Consumers","Vermont","VT",418 +2005-10-01,"Delivered to Consumers","Alaska","AK",10740 +2005-10-01,"Delivered to Consumers","Idaho","ID",4635 +2005-10-01,"Delivered to Consumers","Kentucky","KY",14104 +2005-10-01,"Delivered to Consumers","Virginia","VA",16884 +2005-10-01,"Delivered to Consumers","North Carolina","NC",12082 +2005-10-01,"Delivered to Consumers","Missouri","MO",11637 +2005-10-01,"Delivered to Consumers","Colorado","CO",29399 +2005-10-01,"Delivered to Consumers","Delaware","DE",2870 +2005-10-01,"Delivered to Consumers","Rhode Island","RI",5169 +2005-10-01,"Delivered to Consumers","Michigan","MI",42661 +2005-10-01,"Delivered to Consumers","South Carolina","SC",8087 +2005-10-01,"Delivered to Consumers","Illinois","IL",52800 +2005-10-01,"Delivered to Consumers","Massachusetts","MA",18920 +2005-10-01,"Delivered to Consumers","Texas","TX",239477 +2005-10-01,"Delivered to Consumers","Oregon","OR",17387 +2005-10-01,"Delivered to Consumers","West Virginia","WV",4345 +2005-10-01,"Delivered to Consumers","Connecticut","CT",9915 +2005-10-01,"Delivered to Consumers","Wisconsin","WI",23868 +2005-10-01,"Delivered to Consumers","Nebraska","NE",6081 +2005-10-01,"Delivered to Consumers","Mississippi","MS",16623 +2005-10-01,"Delivered to Consumers","California","CA",163308 +2005-10-01,"Delivered to Consumers","Washington","WA",16197 +2005-10-01,"Delivered to Consumers","Utah","UT",6449 +2005-10-01,"Delivered to Consumers","New Mexico","NM",7391 +2005-10-01,"Delivered to Consumers","South Dakota","SD",1943 +2005-10-01,"Delivered to Consumers","Hawaii","HI",218 +2005-10-01,"Delivered to Consumers","Ohio","OH",42569 +2005-10-01,"Delivered to Consumers","Arkansas","AR",13511 +2005-10-01,"Delivered to Consumers","Maine","ME",4955 +2005-10-01,"Delivered to Consumers","Arizona","AZ",24130 +2005-10-01,"Delivered to Consumers","New Hampshire","NH",4069 +2005-10-01,"Delivered to Consumers","District of Columbia","DC",1628 +2005-10-01,"Delivered to Consumers","Wyoming","WY",4829 +2005-10-01,"Delivered to Consumers","New York","NY",53370 +2005-10-01,"Delivered to Consumers","Kansas","KS",11254 +2005-10-01,"Delivered to Consumers","Nevada","NV",16596 +2005-10-01,"Delivered to Consumers","U.S.","U.S.",1302758 +2005-10-01,"Delivered to Consumers","Georgia","GA",26199 +2005-10-01,"Delivered to Consumers","Minnesota","MN",20659 +2005-10-01,"Delivered to Consumers","Florida","FL",63782 +2005-10-01,"Electric Power Consumption","Idaho","ID",1130 +2005-10-01,"Electric Power Consumption","Colorado","CO",7129 +2005-10-01,"Electric Power Consumption","Maryland","MD",1960 +2005-10-01,"Electric Power Consumption","Arizona","AZ",19430 +2005-10-01,"Electric Power Consumption","Texas","TX",122115 +2005-10-01,"Electric Power Consumption","Minnesota","MN",1953 +2005-10-01,"Electric Power Consumption","Massachusetts","MA",10203 +2005-10-01,"Electric Power Consumption","Wisconsin","WI",3450 +2005-10-01,"Electric Power Consumption","Wyoming","WY",37 +2005-10-01,"Electric Power Consumption","U.S.","U.S.",434692 +2005-10-01,"Electric Power Consumption","Alaska","AK",3507 +2005-10-01,"Electric Power Consumption","Oregon","OR",8661 +2005-10-01,"Electric Power Consumption","Illinois","IL",2448 +2005-10-01,"Electric Power Consumption","Kansas","KS",925 +2005-10-01,"Electric Power Consumption","Nevada","NV",11965 +2005-10-01,"Electric Power Consumption","Hawaii","HI",NA +2005-10-01,"Electric Power Consumption","North Dakota","ND",0 +2005-10-01,"Electric Power Consumption","Georgia","GA",4592 +2005-10-01,"Electric Power Consumption","New Mexico","NM",3341 +2005-10-01,"Electric Power Consumption","Rhode Island","RI",3765 +2005-10-01,"Electric Power Consumption","Utah","UT",622 +2005-10-01,"Electric Power Consumption","Tennessee","TN",248 +2005-10-01,"Electric Power Consumption","North Carolina","NC",770 +2005-10-01,"Electric Power Consumption","California","CA",54455 +2005-10-01,"Electric Power Consumption","New Jersey","NJ",7982 +2005-10-01,"Electric Power Consumption","New York","NY",18807 +2005-10-01,"Electric Power Consumption","West Virginia","WV",91 +2005-10-01,"Electric Power Consumption","Iowa","IA",977 +2005-10-01,"Electric Power Consumption","Montana","MT",14 +2005-10-01,"Electric Power Consumption","Virginia","VA",2727 +2005-10-01,"Electric Power Consumption","South Carolina","SC",695 +2005-10-01,"Electric Power Consumption","Kentucky","KY",585 +2005-10-01,"Electric Power Consumption","Alabama","AL",5720 +2005-10-01,"Electric Power Consumption","Oklahoma","OK",16869 +2005-10-01,"Electric Power Consumption","Michigan","MI",7428 +2005-10-01,"Electric Power Consumption","Pennsylvania","PA",5409 +2005-10-01,"Electric Power Consumption","Vermont","VT",4 +2005-10-01,"Electric Power Consumption","South Dakota","SD",66 +2005-10-01,"Electric Power Consumption","Missouri","MO",1041 +2005-10-01,"Electric Power Consumption","Maine","ME",4046 +2005-10-01,"Electric Power Consumption","Mississippi","MS",7375 +2005-10-01,"Electric Power Consumption","New Hampshire","NH",2879 +2005-10-01,"Electric Power Consumption","Indiana","IN",1339 +2005-10-01,"Electric Power Consumption","Washington","WA",4052 +2005-10-01,"Electric Power Consumption","Louisiana","LA",18668 +2005-10-01,"Electric Power Consumption","Arkansas","AR",3327 +2005-10-01,"Electric Power Consumption","Nebraska","NE",440 +2005-10-01,"Electric Power Consumption","Ohio","OH",952 +2005-10-01,"Electric Power Consumption","Delaware","DE",930 +2005-10-01,"Electric Power Consumption","Connecticut","CT",5023 +2005-10-01,"Electric Power Consumption","Florida","FL",54543 +2005-10-01,"Industrial Consumption","Louisiana","LA",53633 +2005-10-01,"Industrial Consumption","Utah","UT",1937 +2005-10-01,"Industrial Consumption","New York","NY",5912 +2005-10-01,"Industrial Consumption","Nevada","NV",1210 +2005-10-01,"Industrial Consumption","Alabama","AL",11518 +2005-10-01,"Industrial Consumption","South Carolina","SC",5018 +2005-10-01,"Industrial Consumption","West Virginia","WV",2084 +2005-10-01,"Industrial Consumption","Minnesota","MN",7383 +2005-10-01,"Industrial Consumption","Alaska","AK",4231 +2005-10-01,"Industrial Consumption","Maryland","MD",1662 +2005-10-01,"Industrial Consumption","U.S.","U.S.",501875 +2005-10-01,"Industrial Consumption","Pennsylvania","PA",14251 +2005-10-01,"Industrial Consumption","Oregon","OR",5790 +2005-10-01,"Industrial Consumption","Arkansas","AR",7385 +2005-10-01,"Industrial Consumption","Texas","TX",101146 +2005-10-01,"Industrial Consumption","Vermont","VT",214 +2005-10-01,"Industrial Consumption","Wisconsin","WI",9761 +2005-10-01,"Industrial Consumption","New Jersey","NJ",5373 +2005-10-01,"Industrial Consumption","Michigan","MI",13801 +2005-10-01,"Industrial Consumption","Illinois","IL",19192 +2005-10-01,"Industrial Consumption","North Carolina","NC",7024 +2005-10-01,"Industrial Consumption","Massachusetts","MA",2555 +2005-10-01,"Industrial Consumption","South Dakota","SD",761 +2005-10-01,"Industrial Consumption","California","CA",63180 +2005-10-01,"Industrial Consumption","Idaho","ID",1925 +2005-10-01,"Industrial Consumption","Indiana","IN",20639 +2005-10-01,"Industrial Consumption","Delaware","DE",1222 +2005-10-01,"Industrial Consumption","Colorado","CO",10541 +2005-10-01,"Industrial Consumption","Mississippi","MS",6971 +2005-10-01,"Industrial Consumption","New Hampshire","NH",515 +2005-10-01,"Industrial Consumption","Florida","FL",4384 +2005-10-01,"Industrial Consumption","Connecticut","CT",1506 +2005-10-01,"Industrial Consumption","Rhode Island","RI",457 +2005-10-01,"Industrial Consumption","Hawaii","HI",35 +2005-10-01,"Industrial Consumption","Virginia","VA",6643 +2005-10-01,"Industrial Consumption","Tennessee","TN",7399 +2005-10-01,"Industrial Consumption","North Dakota","ND",1413 +2005-10-01,"Industrial Consumption","Missouri","MO",4965 +2005-10-01,"Industrial Consumption","Ohio","OH",21012 +2005-10-01,"Industrial Consumption","Montana","MT",2140 +2005-10-01,"Industrial Consumption","Oklahoma","OK",12265 +2005-10-01,"Industrial Consumption","Washington","WA",5716 +2005-10-01,"Industrial Consumption","Arizona","AZ",1253 +2005-10-01,"Industrial Consumption","Wyoming","WY",3809 +2005-10-01,"Industrial Consumption","Iowa","IA",7426 +2005-10-01,"Industrial Consumption","New Mexico","NM",2010 +2005-10-01,"Industrial Consumption","Kansas","KS",7335 +2005-10-01,"Industrial Consumption","Maine","ME",561 +2005-10-01,"Industrial Consumption","Nebraska","NE",3175 +2005-10-01,"Industrial Consumption","Kentucky","KY",9076 +2005-10-01,"Industrial Consumption","Georgia","GA",12461 +2005-10-01,"Industrial Consumption","District of Columbia","DC",0 +2005-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",88025 +2005-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",37443 +2005-10-01,"Residential Consumption","Wisconsin","WI",6067 +2005-10-01,"Residential Consumption","Utah","UT",2329 +2005-10-01,"Residential Consumption","Pennsylvania","PA",8949 +2005-10-01,"Residential Consumption","Kentucky","KY",2383 +2005-10-01,"Residential Consumption","Missouri","MO",2963 +2005-10-01,"Residential Consumption","Rhode Island","RI",507 +2005-10-01,"Residential Consumption","Louisiana","LA",1741 +2005-10-01,"Residential Consumption","Maryland","MD",3826 +2005-10-01,"Residential Consumption","District of Columbia","DC",585 +2005-10-01,"Residential Consumption","Florida","FL",818 +2005-10-01,"Residential Consumption","New Hampshire","NH",246 +2005-10-01,"Residential Consumption","Wyoming","WY",528 +2005-10-01,"Residential Consumption","Mississippi","MS",984 +2005-10-01,"Residential Consumption","Tennessee","TN",1438 +2005-10-01,"Residential Consumption","Virginia","VA",3617 +2005-10-01,"Residential Consumption","Michigan","MI",14127 +2005-10-01,"Residential Consumption","South Dakota","SD",573 +2005-10-01,"Residential Consumption","New Mexico","NM",1081 +2005-10-01,"Residential Consumption","Maine","ME",59 +2005-10-01,"Residential Consumption","Massachusetts","MA",3800 +2005-10-01,"Residential Consumption","Kansas","KS",1866 +2005-10-01,"Residential Consumption","California","CA",28502 +2005-10-01,"Residential Consumption","West Virginia","WV",756 +2005-10-01,"Residential Consumption","Nebraska","NE",1142 +2005-10-01,"Residential Consumption","Georgia","GA",6238 +2005-10-01,"Residential Consumption","North Dakota","ND",601 +2005-10-01,"Residential Consumption","Colorado","CO",7672 +2005-10-01,"Residential Consumption","Oklahoma","OK",1470 +2005-10-01,"Residential Consumption","U.S.","U.S.",202172 +2005-10-01,"Residential Consumption","Texas","TX",6711 +2005-10-01,"Residential Consumption","Montana","MT",1112 +2005-10-01,"Residential Consumption","Alabama","AL",1137 +2005-10-01,"Residential Consumption","Illinois","IL",20443 +2005-10-01,"Residential Consumption","North Carolina","NC",1724 +2005-10-01,"Residential Consumption","Nevada","NV",1623 +2005-10-01,"Residential Consumption","New Jersey","NJ",7946 +2005-10-01,"Residential Consumption","Washington","WA",3631 +2005-10-01,"Residential Consumption","Alaska","AK",1662 +2005-10-01,"Residential Consumption","New York","NY",14360 +2005-10-01,"Residential Consumption","Hawaii","HI",35 +2005-10-01,"Residential Consumption","Vermont","VT",98 +2005-10-01,"Residential Consumption","Indiana","IN",6446 +2005-10-01,"Residential Consumption","Arkansas","AR",930 +2005-10-01,"Residential Consumption","Arizona","AZ",1379 +2005-10-01,"Residential Consumption","South Carolina","SC",825 +2005-10-01,"Residential Consumption","Oregon","OR",1632 +2005-10-01,"Residential Consumption","Ohio","OH",13766 +2005-10-01,"Residential Consumption","Iowa","IA",2642 +2005-10-01,"Residential Consumption","Connecticut","CT",1616 +2005-10-01,"Residential Consumption","Minnesota","MN",6376 +2005-10-01,"Residential Consumption","Idaho","ID",923 +2005-10-01,"Residential Consumption","Delaware","DE",285 +2005-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",1944 +2005-11-01,"Commercial Consumption","North Carolina","NC",3466 +2005-11-01,"Commercial Consumption","Oregon","OR",2337 +2005-11-01,"Commercial Consumption","New Hampshire","NH",710 +2005-11-01,"Commercial Consumption","Rhode Island","RI",579 +2005-11-01,"Commercial Consumption","Minnesota","MN",8445 +2005-11-01,"Commercial Consumption","Kansas","KS",2064 +2005-11-01,"Commercial Consumption","Mississippi","MS",1666 +2005-11-01,"Commercial Consumption","Washington","WA",4670 +2005-11-01,"Commercial Consumption","North Dakota","ND",1055 +2005-11-01,"Commercial Consumption","Georgia","GA",4805 +2005-11-01,"Commercial Consumption","Hawaii","HI",152 +2005-11-01,"Commercial Consumption","New York","NY",19998 +2005-11-01,"Commercial Consumption","Arizona","AZ",2565 +2005-11-01,"Commercial Consumption","Tennessee","TN",3944 +2005-11-01,"Commercial Consumption","West Virginia","WV",2114 +2005-11-01,"Commercial Consumption","Missouri","MO",4382 +2005-11-01,"Commercial Consumption","Maryland","MD",5961 +2005-11-01,"Commercial Consumption","Florida","FL",4454 +2005-11-01,"Commercial Consumption","Iowa","IA",3997 +2005-11-01,"Commercial Consumption","Illinois","IL",17770 +2005-11-01,"Commercial Consumption","Utah","UT",2251 +2005-11-01,"Commercial Consumption","New Mexico","NM",1586 +2005-11-01,"Commercial Consumption","Virginia","VA",6118 +2005-11-01,"Commercial Consumption","Pennsylvania","PA",11763 +2005-11-01,"Commercial Consumption","Montana","MT",1090 +2005-11-01,"Commercial Consumption","Arkansas","AR",2418 +2005-11-01,"Commercial Consumption","Alabama","AL",1705 +2005-11-01,"Commercial Consumption","Wyoming","WY",758 +2005-11-01,"Commercial Consumption","Oklahoma","OK",2322 +2005-11-01,"Commercial Consumption","Massachusetts","MA",3932 +2005-11-01,"Commercial Consumption","Wisconsin","WI",8475 +2005-11-01,"Commercial Consumption","Idaho","ID",1171 +2005-11-01,"Commercial Consumption","California","CA",17669 +2005-11-01,"Commercial Consumption","Nevada","NV",1905 +2005-11-01,"Commercial Consumption","District of Columbia","DC",1516 +2005-11-01,"Commercial Consumption","Colorado","CO",6099 +2005-11-01,"Commercial Consumption","Maine","ME",416 +2005-11-01,"Commercial Consumption","Kentucky","KY",3456 +2005-11-01,"Commercial Consumption","U.S.","U.S.",240134 +2005-11-01,"Commercial Consumption","Vermont","VT",196 +2005-11-01,"Commercial Consumption","Ohio","OH",13368 +2005-11-01,"Commercial Consumption","Alaska","AK",2176 +2005-11-01,"Commercial Consumption","Connecticut","CT",2586 +2005-11-01,"Commercial Consumption","Delaware","DE",702 +2005-11-01,"Commercial Consumption","South Carolina","SC",1601 +2005-11-01,"Commercial Consumption","South Dakota","SD",886 +2005-11-01,"Commercial Consumption","New Jersey","NJ",12551 +2005-11-01,"Commercial Consumption","Texas","TX",11823 +2005-11-01,"Commercial Consumption","Nebraska","NE",1835 +2005-11-01,"Commercial Consumption","Michigan","MI",13510 +2005-11-01,"Commercial Consumption","Indiana","IN",7488 +2005-11-01,"Commercial Consumption","Louisiana","LA",1626 +2005-11-01,"Delivered to Consumers","West Virginia","WV",6919 +2005-11-01,"Delivered to Consumers","Alaska","AK",11792 +2005-11-01,"Delivered to Consumers","Oklahoma","OK",30402 +2005-11-01,"Delivered to Consumers","Idaho","ID",6142 +2005-11-01,"Delivered to Consumers","Ohio","OH",65578 +2005-11-01,"Delivered to Consumers","Virginia","VA",20579 +2005-11-01,"Delivered to Consumers","Missouri","MO",18427 +2005-11-01,"Delivered to Consumers","South Carolina","SC",9210 +2005-11-01,"Delivered to Consumers","North Dakota","ND",3372 +2005-11-01,"Delivered to Consumers","Florida","FL",55683 +2005-11-01,"Delivered to Consumers","New Mexico","NM",8861 +2005-11-01,"Delivered to Consumers","Indiana","IN",44576 +2005-11-01,"Delivered to Consumers","Vermont","VT",666 +2005-11-01,"Delivered to Consumers","Kentucky","KY",19304 +2005-11-01,"Delivered to Consumers","Iowa","IA",19595 +2005-11-01,"Delivered to Consumers","Arkansas","AR",15272 +2005-11-01,"Delivered to Consumers","Louisiana","LA",72958 +2005-11-01,"Delivered to Consumers","Wyoming","WY",5360 +2005-11-01,"Delivered to Consumers","Hawaii","HI",229 +2005-11-01,"Delivered to Consumers","Michigan","MI",64574 +2005-11-01,"Delivered to Consumers","Alabama","AL",22782 +2005-11-01,"Delivered to Consumers","Pennsylvania","PA",50234 +2005-11-01,"Delivered to Consumers","Nebraska","NE",8200 +2005-11-01,"Delivered to Consumers","North Carolina","NC",15331 +2005-11-01,"Delivered to Consumers","New Jersey","NJ",42561 +2005-11-01,"Delivered to Consumers","New York","NY",68534 +2005-11-01,"Delivered to Consumers","Tennessee","TN",16197 +2005-11-01,"Delivered to Consumers","California","CA",170177 +2005-11-01,"Delivered to Consumers","Washington","WA",22774 +2005-11-01,"Delivered to Consumers","District of Columbia","DC",2941 +2005-11-01,"Delivered to Consumers","Kansas","KS",14924 +2005-11-01,"Delivered to Consumers","Connecticut","CT",11821 +2005-11-01,"Delivered to Consumers","Massachusetts","MA",24651 +2005-11-01,"Delivered to Consumers","Texas","TX",225717 +2005-11-01,"Delivered to Consumers","Minnesota","MN",33116 +2005-11-01,"Delivered to Consumers","U.S.","U.S.",1529693 +2005-11-01,"Delivered to Consumers","Illinois","IL",83616 +2005-11-01,"Delivered to Consumers","Colorado","CO",38140 +2005-11-01,"Delivered to Consumers","Nevada","NV",16816 +2005-11-01,"Delivered to Consumers","Maine","ME",4236 +2005-11-01,"Delivered to Consumers","Georgia","GA",32483 +2005-11-01,"Delivered to Consumers","Arizona","AZ",22651 +2005-11-01,"Delivered to Consumers","Utah","UT",9027 +2005-11-01,"Delivered to Consumers","Rhode Island","RI",5246 +2005-11-01,"Delivered to Consumers","Montana","MT",4933 +2005-11-01,"Delivered to Consumers","Maryland","MD",16807 +2005-11-01,"Delivered to Consumers","Wisconsin","WI",35232 +2005-11-01,"Delivered to Consumers","Mississippi","MS",17362 +2005-11-01,"Delivered to Consumers","Oregon","OR",20042 +2005-11-01,"Delivered to Consumers","New Hampshire","NH",5173 +2005-11-01,"Delivered to Consumers","Delaware","DE",3515 +2005-11-01,"Delivered to Consumers","South Dakota","SD",3073 +2005-11-01,"Electric Power Consumption","Virginia","VA",1337 +2005-11-01,"Electric Power Consumption","Colorado","CO",7770 +2005-11-01,"Electric Power Consumption","Michigan","MI",6371 +2005-11-01,"Electric Power Consumption","Tennessee","TN",170 +2005-11-01,"Electric Power Consumption","U.S.","U.S.",373351 +2005-11-01,"Electric Power Consumption","Arkansas","AR",3215 +2005-11-01,"Electric Power Consumption","Texas","TX",96564 +2005-11-01,"Electric Power Consumption","Rhode Island","RI",3101 +2005-11-01,"Electric Power Consumption","Oregon","OR",8210 +2005-11-01,"Electric Power Consumption","Massachusetts","MA",9504 +2005-11-01,"Electric Power Consumption","Nevada","NV",11183 +2005-11-01,"Electric Power Consumption","Alabama","AL",6523 +2005-11-01,"Electric Power Consumption","New Mexico","NM",2791 +2005-11-01,"Electric Power Consumption","New Jersey","NJ",7055 +2005-11-01,"Electric Power Consumption","Kansas","KS",734 +2005-11-01,"Electric Power Consumption","Ohio","OH",677 +2005-11-01,"Electric Power Consumption","North Dakota","ND",0 +2005-11-01,"Electric Power Consumption","Maryland","MD",909 +2005-11-01,"Electric Power Consumption","Florida","FL",45508 +2005-11-01,"Electric Power Consumption","California","CA",55973 +2005-11-01,"Electric Power Consumption","Utah","UT",813 +2005-11-01,"Electric Power Consumption","Maine","ME",3205 +2005-11-01,"Electric Power Consumption","Kentucky","KY",762 +2005-11-01,"Electric Power Consumption","Indiana","IN",862 +2005-11-01,"Electric Power Consumption","Arizona","AZ",16475 +2005-11-01,"Electric Power Consumption","Georgia","GA",3122 +2005-11-01,"Electric Power Consumption","Alaska","AK",3443 +2005-11-01,"Electric Power Consumption","Idaho","ID",1141 +2005-11-01,"Electric Power Consumption","West Virginia","WV",184 +2005-11-01,"Electric Power Consumption","Wyoming","WY",39 +2005-11-01,"Electric Power Consumption","Hawaii","HI",NA +2005-11-01,"Electric Power Consumption","Connecticut","CT",4341 +2005-11-01,"Electric Power Consumption","Louisiana","LA",13130 +2005-11-01,"Electric Power Consumption","Oklahoma","OK",13161 +2005-11-01,"Electric Power Consumption","Illinois","IL",1356 +2005-11-01,"Electric Power Consumption","Vermont","VT",4 +2005-11-01,"Electric Power Consumption","North Carolina","NC",239 +2005-11-01,"Electric Power Consumption","Missouri","MO",1076 +2005-11-01,"Electric Power Consumption","Mississippi","MS",7251 +2005-11-01,"Electric Power Consumption","Wisconsin","WI",2659 +2005-11-01,"Electric Power Consumption","Pennsylvania","PA",4766 +2005-11-01,"Electric Power Consumption","South Dakota","SD",181 +2005-11-01,"Electric Power Consumption","Delaware","DE",494 +2005-11-01,"Electric Power Consumption","Washington","WA",4764 +2005-11-01,"Electric Power Consumption","South Carolina","SC",278 +2005-11-01,"Electric Power Consumption","New York","NY",15476 +2005-11-01,"Electric Power Consumption","Minnesota","MN",1934 +2005-11-01,"Electric Power Consumption","Iowa","IA",920 +2005-11-01,"Electric Power Consumption","Nebraska","NE",329 +2005-11-01,"Electric Power Consumption","New Hampshire","NH",3338 +2005-11-01,"Electric Power Consumption","Montana","MT",12 +2005-11-01,"Industrial Consumption","North Dakota","ND",1183 +2005-11-01,"Industrial Consumption","Kansas","KS",7824 +2005-11-01,"Industrial Consumption","Pennsylvania","PA",14919 +2005-11-01,"Industrial Consumption","West Virginia","WV",2283 +2005-11-01,"Industrial Consumption","Alaska","AK",3588 +2005-11-01,"Industrial Consumption","South Dakota","SD",942 +2005-11-01,"Industrial Consumption","U.S.","U.S.",527303 +2005-11-01,"Industrial Consumption","Nevada","NV",1215 +2005-11-01,"Industrial Consumption","Idaho","ID",1910 +2005-11-01,"Industrial Consumption","Kentucky","KY",9805 +2005-11-01,"Industrial Consumption","North Carolina","NC",6886 +2005-11-01,"Industrial Consumption","Montana","MT",2175 +2005-11-01,"Industrial Consumption","Arizona","AZ",1427 +2005-11-01,"Industrial Consumption","Maine","ME",513 +2005-11-01,"Industrial Consumption","Wyoming","WY",3615 +2005-11-01,"Industrial Consumption","New Hampshire","NH",591 +2005-11-01,"Industrial Consumption","Michigan","MI",15401 +2005-11-01,"Industrial Consumption","Oklahoma","OK",11940 +2005-11-01,"Industrial Consumption","New York","NY",5875 +2005-11-01,"Industrial Consumption","South Carolina","SC",5213 +2005-11-01,"Industrial Consumption","Nebraska","NE",3696 +2005-11-01,"Industrial Consumption","Hawaii","HI",36 +2005-11-01,"Industrial Consumption","Colorado","CO",10899 +2005-11-01,"Industrial Consumption","Ohio","OH",24229 +2005-11-01,"Industrial Consumption","California","CA",61455 +2005-11-01,"Industrial Consumption","Texas","TX",106533 +2005-11-01,"Industrial Consumption","Wisconsin","WI",11110 +2005-11-01,"Industrial Consumption","Minnesota","MN",9850 +2005-11-01,"Industrial Consumption","Maryland","MD",2093 +2005-11-01,"Industrial Consumption","Missouri","MO",5487 +2005-11-01,"Industrial Consumption","New Mexico","NM",2384 +2005-11-01,"Industrial Consumption","Mississippi","MS",6501 +2005-11-01,"Industrial Consumption","Alabama","AL",11913 +2005-11-01,"Industrial Consumption","Tennessee","TN",8031 +2005-11-01,"Industrial Consumption","Indiana","IN",21908 +2005-11-01,"Industrial Consumption","Delaware","DE",1597 +2005-11-01,"Industrial Consumption","Rhode Island","RI",436 +2005-11-01,"Industrial Consumption","Virginia","VA",5498 +2005-11-01,"Industrial Consumption","Vermont","VT",241 +2005-11-01,"Industrial Consumption","New Jersey","NJ",5738 +2005-11-01,"Industrial Consumption","Connecticut","CT",1546 +2005-11-01,"Industrial Consumption","Illinois","IL",21892 +2005-11-01,"Industrial Consumption","Georgia","GA",12990 +2005-11-01,"Industrial Consumption","Massachusetts","MA",3450 +2005-11-01,"Industrial Consumption","Louisiana","LA",55350 +2005-11-01,"Industrial Consumption","Washington","WA",5884 +2005-11-01,"Industrial Consumption","Utah","UT",2233 +2005-11-01,"Industrial Consumption","Oregon","OR",6088 +2005-11-01,"Industrial Consumption","Arkansas","AR",7474 +2005-11-01,"Industrial Consumption","Iowa","IA",8825 +2005-11-01,"Industrial Consumption","Florida","FL",4629 +2005-11-01,"Industrial Consumption","District of Columbia","DC",0 +2005-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",89739 +2005-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",43968 +2005-11-01,"Residential Consumption","District of Columbia","DC",1425 +2005-11-01,"Residential Consumption","Alabama","AL",2641 +2005-11-01,"Residential Consumption","Ohio","OH",27303 +2005-11-01,"Residential Consumption","Iowa","IA",5853 +2005-11-01,"Residential Consumption","Michigan","MI",29292 +2005-11-01,"Residential Consumption","Nevada","NV",2513 +2005-11-01,"Residential Consumption","Kentucky","KY",5280 +2005-11-01,"Residential Consumption","Kansas","KS",4301 +2005-11-01,"Residential Consumption","U.S.","U.S.",387025 +2005-11-01,"Residential Consumption","Maryland","MD",7843 +2005-11-01,"Residential Consumption","North Dakota","ND",1135 +2005-11-01,"Residential Consumption","New Jersey","NJ",17217 +2005-11-01,"Residential Consumption","New Hampshire","NH",534 +2005-11-01,"Residential Consumption","Oklahoma","OK",2979 +2005-11-01,"Residential Consumption","Rhode Island","RI",1130 +2005-11-01,"Residential Consumption","Utah","UT",3730 +2005-11-01,"Residential Consumption","Georgia","GA",11566 +2005-11-01,"Residential Consumption","Pennsylvania","PA",18786 +2005-11-01,"Residential Consumption","New Mexico","NM",2100 +2005-11-01,"Residential Consumption","Florida","FL",1092 +2005-11-01,"Residential Consumption","Idaho","ID",1919 +2005-11-01,"Residential Consumption","Delaware","DE",721 +2005-11-01,"Residential Consumption","Illinois","IL",42598 +2005-11-01,"Residential Consumption","South Carolina","SC",2118 +2005-11-01,"Residential Consumption","North Carolina","NC",4739 +2005-11-01,"Residential Consumption","Wisconsin","WI",12988 +2005-11-01,"Residential Consumption","Virginia","VA",7627 +2005-11-01,"Residential Consumption","Montana","MT",1655 +2005-11-01,"Residential Consumption","Missouri","MO",7482 +2005-11-01,"Residential Consumption","California","CA",35080 +2005-11-01,"Residential Consumption","Alaska","AK",2584 +2005-11-01,"Residential Consumption","West Virginia","WV",2339 +2005-11-01,"Residential Consumption","Texas","TX",10798 +2005-11-01,"Residential Consumption","South Dakota","SD",1063 +2005-11-01,"Residential Consumption","Minnesota","MN",12888 +2005-11-01,"Residential Consumption","Maine","ME",102 +2005-11-01,"Residential Consumption","Louisiana","LA",2852 +2005-11-01,"Residential Consumption","Connecticut","CT",3349 +2005-11-01,"Residential Consumption","Nebraska","NE",2340 +2005-11-01,"Residential Consumption","Arkansas","AR",2165 +2005-11-01,"Residential Consumption","Washington","WA",7456 +2005-11-01,"Residential Consumption","New York","NY",27186 +2005-11-01,"Residential Consumption","Oregon","OR",3407 +2005-11-01,"Residential Consumption","Mississippi","MS",1944 +2005-11-01,"Residential Consumption","Hawaii","HI",42 +2005-11-01,"Residential Consumption","Vermont","VT",224 +2005-11-01,"Residential Consumption","Tennessee","TN",4052 +2005-11-01,"Residential Consumption","Indiana","IN",14319 +2005-11-01,"Residential Consumption","Massachusetts","MA",7764 +2005-11-01,"Residential Consumption","Colorado","CO",13372 +2005-11-01,"Residential Consumption","Arizona","AZ",2183 +2005-11-01,"Residential Consumption","Wyoming","WY",948 +2005-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",1881 +2005-12-01,"Commercial Consumption","South Carolina","SC",2750 +2005-12-01,"Commercial Consumption","Colorado","CO",10312 +2005-12-01,"Commercial Consumption","New Mexico","NM",3001 +2005-12-01,"Commercial Consumption","Georgia","GA",8952 +2005-12-01,"Commercial Consumption","Arkansas","AR",4020 +2005-12-01,"Commercial Consumption","Michigan","MI",25192 +2005-12-01,"Commercial Consumption","Oklahoma","OK",5772 +2005-12-01,"Commercial Consumption","Texas","TX",17807 +2005-12-01,"Commercial Consumption","Kansas","KS",4841 +2005-12-01,"Commercial Consumption","Rhode Island","RI",1413 +2005-12-01,"Commercial Consumption","Alaska","AK",2165 +2005-12-01,"Commercial Consumption","Wyoming","WY",1366 +2005-12-01,"Commercial Consumption","Missouri","MO",9261 +2005-12-01,"Commercial Consumption","Montana","MT",1950 +2005-12-01,"Commercial Consumption","Maryland","MD",9472 +2005-12-01,"Commercial Consumption","Florida","FL",5213 +2005-12-01,"Commercial Consumption","California","CA",23190 +2005-12-01,"Commercial Consumption","Delaware","DE",1297 +2005-12-01,"Commercial Consumption","Arizona","AZ",3764 +2005-12-01,"Commercial Consumption","North Dakota","ND",1518 +2005-12-01,"Commercial Consumption","Minnesota","MN",14139 +2005-12-01,"Commercial Consumption","Virginia","VA",9892 +2005-12-01,"Commercial Consumption","Wisconsin","WI",14166 +2005-12-01,"Commercial Consumption","Hawaii","HI",158 +2005-12-01,"Commercial Consumption","Louisiana","LA",2901 +2005-12-01,"Commercial Consumption","District of Columbia","DC",2379 +2005-12-01,"Commercial Consumption","North Carolina","NC",6590 +2005-12-01,"Commercial Consumption","Pennsylvania","PA",21093 +2005-12-01,"Commercial Consumption","Vermont","VT",332 +2005-12-01,"Commercial Consumption","Nebraska","NE",3958 +2005-12-01,"Commercial Consumption","Mississippi","MS",2938 +2005-12-01,"Commercial Consumption","West Virginia","WV",3443 +2005-12-01,"Commercial Consumption","Utah","UT",4741 +2005-12-01,"Commercial Consumption","Massachusetts","MA",7410 +2005-12-01,"Commercial Consumption","Kentucky","KY",6357 +2005-12-01,"Commercial Consumption","Ohio","OH",26878 +2005-12-01,"Commercial Consumption","Iowa","IA",7027 +2005-12-01,"Commercial Consumption","Oregon","OR",4334 +2005-12-01,"Commercial Consumption","New Jersey","NJ",20994 +2005-12-01,"Commercial Consumption","Maine","ME",664 +2005-12-01,"Commercial Consumption","Idaho","ID",2240 +2005-12-01,"Commercial Consumption","New York","NY",32967 +2005-12-01,"Commercial Consumption","Nevada","NV",3187 +2005-12-01,"Commercial Consumption","Indiana","IN",13509 +2005-12-01,"Commercial Consumption","Washington","WA",7337 +2005-12-01,"Commercial Consumption","South Dakota","SD",1653 +2005-12-01,"Commercial Consumption","New Hampshire","NH",1419 +2005-12-01,"Commercial Consumption","U.S.","U.S.",413844 +2005-12-01,"Commercial Consumption","Connecticut","CT",4483 +2005-12-01,"Commercial Consumption","Alabama","AL",2965 +2005-12-01,"Commercial Consumption","Tennessee","TN",7386 +2005-12-01,"Commercial Consumption","Illinois","IL",33048 +2005-12-01,"Delivered to Consumers","Indiana","IN",70488 +2005-12-01,"Delivered to Consumers","Idaho","ID",9403 +2005-12-01,"Delivered to Consumers","Ohio","OH",113292 +2005-12-01,"Delivered to Consumers","Alabama","AL",32045 +2005-12-01,"Delivered to Consumers","Virginia","VA",36086 +2005-12-01,"Delivered to Consumers","Pennsylvania","PA",80301 +2005-12-01,"Delivered to Consumers","Mississippi","MS",24289 +2005-12-01,"Delivered to Consumers","Colorado","CO",54566 +2005-12-01,"Delivered to Consumers","Nevada","NV",23279 +2005-12-01,"Delivered to Consumers","Georgia","GA",52399 +2005-12-01,"Delivered to Consumers","Florida","FL",46489 +2005-12-01,"Delivered to Consumers","Rhode Island","RI",7434 +2005-12-01,"Delivered to Consumers","Illinois","IL",143580 +2005-12-01,"Delivered to Consumers","Maryland","MD",28263 +2005-12-01,"Delivered to Consumers","Oklahoma","OK",42813 +2005-12-01,"Delivered to Consumers","Tennessee","TN",27185 +2005-12-01,"Delivered to Consumers","Oregon","OR",26669 +2005-12-01,"Delivered to Consumers","Maine","ME",2234 +2005-12-01,"Delivered to Consumers","Utah","UT",16786 +2005-12-01,"Delivered to Consumers","U.S.","U.S.",2169754 +2005-12-01,"Delivered to Consumers","Delaware","DE",4876 +2005-12-01,"Delivered to Consumers","Vermont","VT",943 +2005-12-01,"Delivered to Consumers","New York","NY",109966 +2005-12-01,"Delivered to Consumers","Kentucky","KY",29050 +2005-12-01,"Delivered to Consumers","Arkansas","AR",20113 +2005-12-01,"Delivered to Consumers","North Carolina","NC",25731 +2005-12-01,"Delivered to Consumers","South Carolina","SC",15920 +2005-12-01,"Delivered to Consumers","North Dakota","ND",4268 +2005-12-01,"Delivered to Consumers","Minnesota","MN",47767 +2005-12-01,"Delivered to Consumers","Wyoming","WY",7262 +2005-12-01,"Delivered to Consumers","South Dakota","SD",4906 +2005-12-01,"Delivered to Consumers","Nebraska","NE",13733 +2005-12-01,"Delivered to Consumers","Washington","WA",33671 +2005-12-01,"Delivered to Consumers","New Hampshire","NH",5988 +2005-12-01,"Delivered to Consumers","District of Columbia","DC",4935 +2005-12-01,"Delivered to Consumers","Montana","MT",7501 +2005-12-01,"Delivered to Consumers","Hawaii","HI",240 +2005-12-01,"Delivered to Consumers","Kansas","KS",25902 +2005-12-01,"Delivered to Consumers","Wisconsin","WI",54600 +2005-12-01,"Delivered to Consumers","Texas","TX",251536 +2005-12-01,"Delivered to Consumers","New Jersey","NJ",72346 +2005-12-01,"Delivered to Consumers","New Mexico","NM",12623 +2005-12-01,"Delivered to Consumers","Massachusetts","MA",38819 +2005-12-01,"Delivered to Consumers","California","CA",200612 +2005-12-01,"Delivered to Consumers","Arizona","AZ",28011 +2005-12-01,"Delivered to Consumers","West Virginia","WV",11453 +2005-12-01,"Delivered to Consumers","Alaska","AK",11516 +2005-12-01,"Delivered to Consumers","Michigan","MI",111058 +2005-12-01,"Delivered to Consumers","Iowa","IA",30763 +2005-12-01,"Delivered to Consumers","Connecticut","CT",16510 +2005-12-01,"Delivered to Consumers","Missouri","MO",35991 +2005-12-01,"Delivered to Consumers","Louisiana","LA",91598 +2005-12-01,"Electric Power Consumption","Michigan","MI",9405 +2005-12-01,"Electric Power Consumption","West Virginia","WV",327 +2005-12-01,"Electric Power Consumption","Maine","ME",836 +2005-12-01,"Electric Power Consumption","Kentucky","KY",1063 +2005-12-01,"Electric Power Consumption","Maryland","MD",1011 +2005-12-01,"Electric Power Consumption","Louisiana","LA",21702 +2005-12-01,"Electric Power Consumption","South Carolina","SC",1881 +2005-12-01,"Electric Power Consumption","New York","NY",16648 +2005-12-01,"Electric Power Consumption","Oregon","OR",9159 +2005-12-01,"Electric Power Consumption","Illinois","IL",1850 +2005-12-01,"Electric Power Consumption","Delaware","DE",217 +2005-12-01,"Electric Power Consumption","Wisconsin","WI",3548 +2005-12-01,"Electric Power Consumption","Nebraska","NE",403 +2005-12-01,"Electric Power Consumption","Mississippi","MS",8717 +2005-12-01,"Electric Power Consumption","Georgia","GA",5814 +2005-12-01,"Electric Power Consumption","Arkansas","AR",2832 +2005-12-01,"Electric Power Consumption","Oklahoma","OK",17260 +2005-12-01,"Electric Power Consumption","Utah","UT",972 +2005-12-01,"Electric Power Consumption","South Dakota","SD",124 +2005-12-01,"Electric Power Consumption","Missouri","MO",1682 +2005-12-01,"Electric Power Consumption","Arizona","AZ",17199 +2005-12-01,"Electric Power Consumption","Florida","FL",34132 +2005-12-01,"Electric Power Consumption","California","CA",58767 +2005-12-01,"Electric Power Consumption","Rhode Island","RI",3231 +2005-12-01,"Electric Power Consumption","Kansas","KS",706 +2005-12-01,"Electric Power Consumption","Nevada","NV",13261 +2005-12-01,"Electric Power Consumption","Iowa","IA",1841 +2005-12-01,"Electric Power Consumption","U.S.","U.S.",406226 +2005-12-01,"Electric Power Consumption","Indiana","IN",2064 +2005-12-01,"Electric Power Consumption","Alabama","AL",9749 +2005-12-01,"Electric Power Consumption","New Mexico","NM",2493 +2005-12-01,"Electric Power Consumption","Idaho","ID",1056 +2005-12-01,"Electric Power Consumption","Colorado","CO",8631 +2005-12-01,"Electric Power Consumption","Massachusetts","MA",8554 +2005-12-01,"Electric Power Consumption","Wyoming","WY",48 +2005-12-01,"Electric Power Consumption","Vermont","VT",0 +2005-12-01,"Electric Power Consumption","Tennessee","TN",68 +2005-12-01,"Electric Power Consumption","North Carolina","NC",1320 +2005-12-01,"Electric Power Consumption","Hawaii","HI",NA +2005-12-01,"Electric Power Consumption","Ohio","OH",1151 +2005-12-01,"Electric Power Consumption","New Hampshire","NH",2641 +2005-12-01,"Electric Power Consumption","New Jersey","NJ",9277 +2005-12-01,"Electric Power Consumption","North Dakota","ND",0 +2005-12-01,"Electric Power Consumption","Alaska","AK",3776 +2005-12-01,"Electric Power Consumption","Washington","WA",7844 +2005-12-01,"Electric Power Consumption","Virginia","VA",3782 +2005-12-01,"Electric Power Consumption","Texas","TX",99620 +2005-12-01,"Electric Power Consumption","Minnesota","MN",1944 +2005-12-01,"Electric Power Consumption","Pennsylvania","PA",3590 +2005-12-01,"Electric Power Consumption","Montana","MT",15 +2005-12-01,"Electric Power Consumption","Connecticut","CT",4017 +2005-12-01,"Industrial Consumption","Montana","MT",2498 +2005-12-01,"Industrial Consumption","Maryland","MD",2542 +2005-12-01,"Industrial Consumption","South Dakota","SD",975 +2005-12-01,"Industrial Consumption","New Mexico","NM",2285 +2005-12-01,"Industrial Consumption","Arizona","AZ",1669 +2005-12-01,"Industrial Consumption","Wyoming","WY",4024 +2005-12-01,"Industrial Consumption","Minnesota","MN",10127 +2005-12-01,"Industrial Consumption","Georgia","GA",13642 +2005-12-01,"Industrial Consumption","North Dakota","ND",1043 +2005-12-01,"Industrial Consumption","Oklahoma","OK",10536 +2005-12-01,"Industrial Consumption","Kansas","KS",9092 +2005-12-01,"Industrial Consumption","Nevada","NV",1253 +2005-12-01,"Industrial Consumption","Mississippi","MS",8205 +2005-12-01,"Industrial Consumption","Alabama","AL",13013 +2005-12-01,"Industrial Consumption","Nebraska","NE",3514 +2005-12-01,"Industrial Consumption","Virginia","VA",6659 +2005-12-01,"Industrial Consumption","Michigan","MI",20379 +2005-12-01,"Industrial Consumption","Delaware","DE",1683 +2005-12-01,"Industrial Consumption","North Carolina","NC",7125 +2005-12-01,"Industrial Consumption","Alaska","AK",3352 +2005-12-01,"Industrial Consumption","Louisiana","LA",61249 +2005-12-01,"Industrial Consumption","California","CA",58697 +2005-12-01,"Industrial Consumption","Tennessee","TN",9101 +2005-12-01,"Industrial Consumption","Iowa","IA",9870 +2005-12-01,"Industrial Consumption","Indiana","IN",26437 +2005-12-01,"Industrial Consumption","Rhode Island","RI",503 +2005-12-01,"Industrial Consumption","Utah","UT",2184 +2005-12-01,"Industrial Consumption","Oregon","OR",6195 +2005-12-01,"Industrial Consumption","Maine","ME",563 +2005-12-01,"Industrial Consumption","Florida","FL",5399 +2005-12-01,"Industrial Consumption","Connecticut","CT",1799 +2005-12-01,"Industrial Consumption","Massachusetts","MA",5962 +2005-12-01,"Industrial Consumption","Hawaii","HI",38 +2005-12-01,"Industrial Consumption","Washington","WA",6069 +2005-12-01,"Industrial Consumption","U.S.","U.S.",576502 +2005-12-01,"Industrial Consumption","New York","NY",7253 +2005-12-01,"Industrial Consumption","Vermont","VT",208 +2005-12-01,"Industrial Consumption","Illinois","IL",27167 +2005-12-01,"Industrial Consumption","Missouri","MO",6775 +2005-12-01,"Industrial Consumption","Pennsylvania","PA",17097 +2005-12-01,"Industrial Consumption","West Virginia","WV",2815 +2005-12-01,"Industrial Consumption","Wisconsin","WI",13713 +2005-12-01,"Industrial Consumption","Kentucky","KY",10826 +2005-12-01,"Industrial Consumption","Colorado","CO",12931 +2005-12-01,"Industrial Consumption","Ohio","OH",30420 +2005-12-01,"Industrial Consumption","Arkansas","AR",8130 +2005-12-01,"Industrial Consumption","Texas","TX",105977 +2005-12-01,"Industrial Consumption","South Carolina","SC",6232 +2005-12-01,"Industrial Consumption","New Jersey","NJ",6330 +2005-12-01,"Industrial Consumption","New Hampshire","NH",721 +2005-12-01,"Industrial Consumption","Idaho","ID",2226 +2005-12-01,"Industrial Consumption","District of Columbia","DC",0 +2005-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94239 +2005-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",62367 +2005-12-01,"Residential Consumption","Louisiana","LA",5746 +2005-12-01,"Residential Consumption","Hawaii","HI",44 +2005-12-01,"Residential Consumption","Virginia","VA",15754 +2005-12-01,"Residential Consumption","Michigan","MI",56082 +2005-12-01,"Residential Consumption","Minnesota","MN",21557 +2005-12-01,"Residential Consumption","Idaho","ID",3881 +2005-12-01,"Residential Consumption","Kansas","KS",11263 +2005-12-01,"Residential Consumption","Nebraska","NE",5858 +2005-12-01,"Residential Consumption","South Dakota","SD",2154 +2005-12-01,"Residential Consumption","Maine","ME",170 +2005-12-01,"Residential Consumption","Florida","FL",1745 +2005-12-01,"Residential Consumption","New Jersey","NJ",35745 +2005-12-01,"Residential Consumption","Rhode Island","RI",2288 +2005-12-01,"Residential Consumption","Ohio","OH",54842 +2005-12-01,"Residential Consumption","North Dakota","ND",1707 +2005-12-01,"Residential Consumption","Delaware","DE",1679 +2005-12-01,"Residential Consumption","Wyoming","WY",1825 +2005-12-01,"Residential Consumption","New York","NY",53098 +2005-12-01,"Residential Consumption","Illinois","IL",81516 +2005-12-01,"Residential Consumption","North Carolina","NC",10695 +2005-12-01,"Residential Consumption","Mississippi","MS",4429 +2005-12-01,"Residential Consumption","Iowa","IA",12025 +2005-12-01,"Residential Consumption","Utah","UT",8890 +2005-12-01,"Residential Consumption","New Hampshire","NH",1207 +2005-12-01,"Residential Consumption","Oklahoma","OK",9245 +2005-12-01,"Residential Consumption","Alaska","AK",2224 +2005-12-01,"Residential Consumption","U.S.","U.S.",771237 +2005-12-01,"Residential Consumption","Texas","TX",28133 +2005-12-01,"Residential Consumption","Tennessee","TN",10630 +2005-12-01,"Residential Consumption","Arkansas","AR",5131 +2005-12-01,"Residential Consumption","Washington","WA",12420 +2005-12-01,"Residential Consumption","Arizona","AZ",5380 +2005-12-01,"Residential Consumption","South Carolina","SC",5058 +2005-12-01,"Residential Consumption","Oregon","OR",6982 +2005-12-01,"Residential Consumption","Vermont","VT",402 +2005-12-01,"Residential Consumption","Pennsylvania","PA",38521 +2005-12-01,"Residential Consumption","New Mexico","NM",4844 +2005-12-01,"Residential Consumption","Massachusetts","MA",16893 +2005-12-01,"Residential Consumption","Colorado","CO",22692 +2005-12-01,"Residential Consumption","Missouri","MO",18273 +2005-12-01,"Residential Consumption","California","CA",59959 +2005-12-01,"Residential Consumption","Wisconsin","WI",23173 +2005-12-01,"Residential Consumption","Maryland","MD",15238 +2005-12-01,"Residential Consumption","Nevada","NV",5578 +2005-12-01,"Residential Consumption","Montana","MT",3038 +2005-12-01,"Residential Consumption","Kentucky","KY",10803 +2005-12-01,"Residential Consumption","Alabama","AL",6318 +2005-12-01,"Residential Consumption","Connecticut","CT",6211 +2005-12-01,"Residential Consumption","Georgia","GA",23991 +2005-12-01,"Residential Consumption","District of Columbia","DC",2556 +2005-12-01,"Residential Consumption","Indiana","IN",28478 +2005-12-01,"Residential Consumption","West Virginia","WV",4868 +2005-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",1944 +2006-01-01,"Commercial Consumption","North Dakota","ND",1303 +2006-01-01,"Commercial Consumption","Wisconsin","WI",12262 +2006-01-01,"Commercial Consumption","New Jersey","NJ",22741 +2006-01-01,"Commercial Consumption","New Hampshire","NH",1381 +2006-01-01,"Commercial Consumption","Vermont","VT",375 +2006-01-01,"Commercial Consumption","Iowa","IA",6671 +2006-01-01,"Commercial Consumption","Indiana","IN",10389 +2006-01-01,"Commercial Consumption","Washington","WA",6585 +2006-01-01,"Commercial Consumption","South Carolina","SC",2657 +2006-01-01,"Commercial Consumption","Minnesota","MN",12605 +2006-01-01,"Commercial Consumption","Colorado","CO",8162 +2006-01-01,"Commercial Consumption","South Dakota","SD",1292 +2006-01-01,"Commercial Consumption","Kansas","KS",4846 +2006-01-01,"Commercial Consumption","Georgia","GA",7005 +2006-01-01,"Commercial Consumption","Nebraska","NE",4319 +2006-01-01,"Commercial Consumption","Tennessee","TN",7918 +2006-01-01,"Commercial Consumption","Maine","ME",605 +2006-01-01,"Commercial Consumption","Texas","TX",19039 +2006-01-01,"Commercial Consumption","Ohio","OH",22428 +2006-01-01,"Commercial Consumption","Connecticut","CT",4805 +2006-01-01,"Commercial Consumption","Mississippi","MS",2762 +2006-01-01,"Commercial Consumption","Nevada","NV",3455 +2006-01-01,"Commercial Consumption","District of Columbia","DC",2341 +2006-01-01,"Commercial Consumption","West Virginia","WV",3272 +2006-01-01,"Commercial Consumption","New Mexico","NM",3388 +2006-01-01,"Commercial Consumption","Idaho","ID",2123 +2006-01-01,"Commercial Consumption","Delaware","DE",1166 +2006-01-01,"Commercial Consumption","Arizona","AZ",3966 +2006-01-01,"Commercial Consumption","North Carolina","NC",7102 +2006-01-01,"Commercial Consumption","Virginia","VA",8267 +2006-01-01,"Commercial Consumption","Florida","FL",5197 +2006-01-01,"Commercial Consumption","California","CA",24730 +2006-01-01,"Commercial Consumption","Arkansas","AR",4408 +2006-01-01,"Commercial Consumption","New York","NY",33973 +2006-01-01,"Commercial Consumption","Louisiana","LA",2678 +2006-01-01,"Commercial Consumption","Wyoming","WY",1402 +2006-01-01,"Commercial Consumption","Utah","UT",5634 +2006-01-01,"Commercial Consumption","Missouri","MO",9461 +2006-01-01,"Commercial Consumption","Massachusetts","MA",8162 +2006-01-01,"Commercial Consumption","Maryland","MD",8362 +2006-01-01,"Commercial Consumption","Hawaii","HI",154 +2006-01-01,"Commercial Consumption","Alaska","AK",2547 +2006-01-01,"Commercial Consumption","Alabama","AL",3762 +2006-01-01,"Commercial Consumption","Oklahoma","OK",5807 +2006-01-01,"Commercial Consumption","Pennsylvania","PA",21022 +2006-01-01,"Commercial Consumption","Montana","MT",1742 +2006-01-01,"Commercial Consumption","Kentucky","KY",4992 +2006-01-01,"Commercial Consumption","U.S.","U.S.",396993 +2006-01-01,"Commercial Consumption","Rhode Island","RI",1668 +2006-01-01,"Commercial Consumption","Oregon","OR",3987 +2006-01-01,"Commercial Consumption","Michigan","MI",24158 +2006-01-01,"Commercial Consumption","Illinois","IL",27915 +2006-01-01,"Delivered to Consumers","New Mexico","NM",12723 +2006-01-01,"Delivered to Consumers","Illinois","IL",116915 +2006-01-01,"Delivered to Consumers","Idaho","ID",8375 +2006-01-01,"Delivered to Consumers","Arkansas","AR",19984 +2006-01-01,"Delivered to Consumers","Alabama","AL",29011 +2006-01-01,"Delivered to Consumers","Nebraska","NE",15551 +2006-01-01,"Delivered to Consumers","Mississippi","MS",16707 +2006-01-01,"Delivered to Consumers","Louisiana","LA",80495 +2006-01-01,"Delivered to Consumers","Indiana","IN",56899 +2006-01-01,"Delivered to Consumers","Montana","MT",7064 +2006-01-01,"Delivered to Consumers","Virginia","VA",27027 +2006-01-01,"Delivered to Consumers","South Carolina","SC",14609 +2006-01-01,"Delivered to Consumers","Florida","FL",54827 +2006-01-01,"Delivered to Consumers","Rhode Island","RI",8207 +2006-01-01,"Delivered to Consumers","New York","NY",117077 +2006-01-01,"Delivered to Consumers","Hawaii","HI",241 +2006-01-01,"Delivered to Consumers","Oklahoma","OK",42641 +2006-01-01,"Delivered to Consumers","Kentucky","KY",23093 +2006-01-01,"Delivered to Consumers","Massachusetts","MA",42251 +2006-01-01,"Delivered to Consumers","Oregon","OR",20318 +2006-01-01,"Delivered to Consumers","North Dakota","ND",3774 +2006-01-01,"Delivered to Consumers","Utah","UT",19708 +2006-01-01,"Delivered to Consumers","Delaware","DE",5025 +2006-01-01,"Delivered to Consumers","West Virginia","WV",10973 +2006-01-01,"Delivered to Consumers","Alaska","AK",11927 +2006-01-01,"Delivered to Consumers","Iowa","IA",26997 +2006-01-01,"Delivered to Consumers","U.S.","U.S.",2010926 +2006-01-01,"Delivered to Consumers","Vermont","VT",1112 +2006-01-01,"Delivered to Consumers","Ohio","OH",95548 +2006-01-01,"Delivered to Consumers","Connecticut","CT",18231 +2006-01-01,"Delivered to Consumers","Pennsylvania","PA",76519 +2006-01-01,"Delivered to Consumers","Georgia","GA",39904 +2006-01-01,"Delivered to Consumers","Colorado","CO",45074 +2006-01-01,"Delivered to Consumers","New Hampshire","NH",7782 +2006-01-01,"Delivered to Consumers","Minnesota","MN",41902 +2006-01-01,"Delivered to Consumers","Wyoming","WY",7304 +2006-01-01,"Delivered to Consumers","South Dakota","SD",4013 +2006-01-01,"Delivered to Consumers","Tennessee","TN",28862 +2006-01-01,"Delivered to Consumers","Missouri","MO",34416 +2006-01-01,"Delivered to Consumers","Maine","ME",3888 +2006-01-01,"Delivered to Consumers","Arizona","AZ",26212 +2006-01-01,"Delivered to Consumers","Washington","WA",26071 +2006-01-01,"Delivered to Consumers","Maryland","MD",24101 +2006-01-01,"Delivered to Consumers","Kansas","KS",25596 +2006-01-01,"Delivered to Consumers","Michigan","MI",104803 +2006-01-01,"Delivered to Consumers","Wisconsin","WI",44700 +2006-01-01,"Delivered to Consumers","North Carolina","NC",25596 +2006-01-01,"Delivered to Consumers","California","CA",199652 +2006-01-01,"Delivered to Consumers","Texas","TX",236862 +2006-01-01,"Delivered to Consumers","Nevada","NV",22656 +2006-01-01,"Delivered to Consumers","New Jersey","NJ",71490 +2006-01-01,"Delivered to Consumers","District of Columbia","DC",4198 +2006-01-01,"Electric Power Consumption","New Mexico","NM",2588 +2006-01-01,"Electric Power Consumption","Illinois","IL",887 +2006-01-01,"Electric Power Consumption","Wyoming","WY",45 +2006-01-01,"Electric Power Consumption","Alabama","AL",4041 +2006-01-01,"Electric Power Consumption","Alaska","AK",3831 +2006-01-01,"Electric Power Consumption","Washington","WA",2717 +2006-01-01,"Electric Power Consumption","Louisiana","LA",8856 +2006-01-01,"Electric Power Consumption","Minnesota","MN",907 +2006-01-01,"Electric Power Consumption","West Virginia","WV",135 +2006-01-01,"Electric Power Consumption","Iowa","IA",681 +2006-01-01,"Electric Power Consumption","Tennessee","TN",42 +2006-01-01,"Electric Power Consumption","Georgia","GA",1368 +2006-01-01,"Electric Power Consumption","Virginia","VA",753 +2006-01-01,"Electric Power Consumption","Rhode Island","RI",3153 +2006-01-01,"Electric Power Consumption","Pennsylvania","PA",2157 +2006-01-01,"Electric Power Consumption","Missouri","MO",265 +2006-01-01,"Electric Power Consumption","Maine","ME",1923 +2006-01-01,"Electric Power Consumption","Montana","MT",7 +2006-01-01,"Electric Power Consumption","Colorado","CO",8020 +2006-01-01,"Electric Power Consumption","Arkansas","AR",1786 +2006-01-01,"Electric Power Consumption","Wisconsin","WI",1792 +2006-01-01,"Electric Power Consumption","Nevada","NV",11725 +2006-01-01,"Electric Power Consumption","Nebraska","NE",123 +2006-01-01,"Electric Power Consumption","Ohio","OH",563 +2006-01-01,"Electric Power Consumption","Oregon","OR",3510 +2006-01-01,"Electric Power Consumption","Hawaii","HI",NA +2006-01-01,"Electric Power Consumption","Texas","TX",78499 +2006-01-01,"Electric Power Consumption","Oklahoma","OK",12631 +2006-01-01,"Electric Power Consumption","Kansas","KS",459 +2006-01-01,"Electric Power Consumption","U.S.","U.S.",318364 +2006-01-01,"Electric Power Consumption","South Dakota","SD",20 +2006-01-01,"Electric Power Consumption","Kentucky","KY",344 +2006-01-01,"Electric Power Consumption","Indiana","IN",1376 +2006-01-01,"Electric Power Consumption","Delaware","DE",453 +2006-01-01,"Electric Power Consumption","New York","NY",17720 +2006-01-01,"Electric Power Consumption","Utah","UT",1266 +2006-01-01,"Electric Power Consumption","Massachusetts","MA",9873 +2006-01-01,"Electric Power Consumption","Mississippi","MS",2121 +2006-01-01,"Electric Power Consumption","New Hampshire","NH",4661 +2006-01-01,"Electric Power Consumption","Connecticut","CT",4858 +2006-01-01,"Electric Power Consumption","Arizona","AZ",14183 +2006-01-01,"Electric Power Consumption","Florida","FL",40727 +2006-01-01,"Electric Power Consumption","California","CA",49457 +2006-01-01,"Electric Power Consumption","New Jersey","NJ",7842 +2006-01-01,"Electric Power Consumption","Idaho","ID",255 +2006-01-01,"Electric Power Consumption","South Carolina","SC",844 +2006-01-01,"Electric Power Consumption","Michigan","MI",7680 +2006-01-01,"Electric Power Consumption","Vermont","VT",1 +2006-01-01,"Electric Power Consumption","North Carolina","NC",280 +2006-01-01,"Electric Power Consumption","North Dakota","ND",0 +2006-01-01,"Electric Power Consumption","Maryland","MD",938 +2006-01-01,"Industrial Consumption","Missouri","MO",6869 +2006-01-01,"Industrial Consumption","Colorado","CO",11511 +2006-01-01,"Industrial Consumption","Nebraska","NE",4851 +2006-01-01,"Industrial Consumption","Virginia","VA",5642 +2006-01-01,"Industrial Consumption","Montana","MT",2426 +2006-01-01,"Industrial Consumption","Oklahoma","OK",14008 +2006-01-01,"Industrial Consumption","Pennsylvania","PA",17398 +2006-01-01,"Industrial Consumption","Oregon","OR",6349 +2006-01-01,"Industrial Consumption","Idaho","ID",2295 +2006-01-01,"Industrial Consumption","Iowa","IA",9483 +2006-01-01,"Industrial Consumption","Florida","FL",6398 +2006-01-01,"Industrial Consumption","Massachusetts","MA",5809 +2006-01-01,"Industrial Consumption","U.S.","U.S.",579855 +2006-01-01,"Industrial Consumption","Nevada","NV",1289 +2006-01-01,"Industrial Consumption","Texas","TX",108827 +2006-01-01,"Industrial Consumption","Kansas","KS",9400 +2006-01-01,"Industrial Consumption","Arizona","AZ",1828 +2006-01-01,"Industrial Consumption","Maine","ME",1206 +2006-01-01,"Industrial Consumption","Arkansas","AR",8140 +2006-01-01,"Industrial Consumption","South Carolina","SC",6324 +2006-01-01,"Industrial Consumption","Wyoming","WY",4058 +2006-01-01,"Industrial Consumption","District of Columbia","DC",0 +2006-01-01,"Industrial Consumption","Washington","WA",6355 +2006-01-01,"Industrial Consumption","Vermont","VT",256 +2006-01-01,"Industrial Consumption","Wisconsin","WI",12451 +2006-01-01,"Industrial Consumption","Tennessee","TN",8651 +2006-01-01,"Industrial Consumption","Kentucky","KY",10029 +2006-01-01,"Industrial Consumption","Illinois","IL",25954 +2006-01-01,"Industrial Consumption","Rhode Island","RI",472 +2006-01-01,"Industrial Consumption","Maryland","MD",2429 +2006-01-01,"Industrial Consumption","South Dakota","SD",1044 +2006-01-01,"Industrial Consumption","New York","NY",7489 +2006-01-01,"Industrial Consumption","Alabama","AL",13370 +2006-01-01,"Industrial Consumption","New Jersey","NJ",6502 +2006-01-01,"Industrial Consumption","New Hampshire","NH",557 +2006-01-01,"Industrial Consumption","Minnesota","MN",10085 +2006-01-01,"Industrial Consumption","North Carolina","NC",7286 +2006-01-01,"Industrial Consumption","Georgia","GA",13714 +2006-01-01,"Industrial Consumption","Hawaii","HI",39 +2006-01-01,"Industrial Consumption","Louisiana","LA",62975 +2006-01-01,"Industrial Consumption","New Mexico","NM",1643 +2006-01-01,"Industrial Consumption","Connecticut","CT",1761 +2006-01-01,"Industrial Consumption","Michigan","MI",20975 +2006-01-01,"Industrial Consumption","Alaska","AK",2225 +2006-01-01,"Industrial Consumption","North Dakota","ND",1045 +2006-01-01,"Industrial Consumption","Ohio","OH",28224 +2006-01-01,"Industrial Consumption","Utah","UT",2704 +2006-01-01,"Industrial Consumption","Mississippi","MS",7892 +2006-01-01,"Industrial Consumption","California","CA",60043 +2006-01-01,"Industrial Consumption","West Virginia","WV",2887 +2006-01-01,"Industrial Consumption","Indiana","IN",25027 +2006-01-01,"Industrial Consumption","Delaware","DE",1663 +2006-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95508 +2006-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",58834 +2006-01-01,"Residential Consumption","Texas","TX",30497 +2006-01-01,"Residential Consumption","North Carolina","NC",10928 +2006-01-01,"Residential Consumption","Mississippi","MS",3932 +2006-01-01,"Residential Consumption","Nebraska","NE",6258 +2006-01-01,"Residential Consumption","Michigan","MI",51990 +2006-01-01,"Residential Consumption","Minnesota","MN",18305 +2006-01-01,"Residential Consumption","Illinois","IL",62158 +2006-01-01,"Residential Consumption","Wisconsin","WI",18195 +2006-01-01,"Residential Consumption","South Dakota","SD",1656 +2006-01-01,"Residential Consumption","Pennsylvania","PA",35942 +2006-01-01,"Residential Consumption","Oklahoma","OK",10195 +2006-01-01,"Residential Consumption","Utah","UT",10103 +2006-01-01,"Residential Consumption","Maine","ME",153 +2006-01-01,"Residential Consumption","Florida","FL",2506 +2006-01-01,"Residential Consumption","Idaho","ID",3702 +2006-01-01,"Residential Consumption","Colorado","CO",17381 +2006-01-01,"Residential Consumption","Alaska","AK",3324 +2006-01-01,"Residential Consumption","New York","NY",57895 +2006-01-01,"Residential Consumption","Ohio","OH",44333 +2006-01-01,"Residential Consumption","Virginia","VA",12364 +2006-01-01,"Residential Consumption","Massachusetts","MA",18408 +2006-01-01,"Residential Consumption","Arkansas","AR",5651 +2006-01-01,"Residential Consumption","New Hampshire","NH",1183 +2006-01-01,"Residential Consumption","Kentucky","KY",7727 +2006-01-01,"Residential Consumption","Missouri","MO",17821 +2006-01-01,"Residential Consumption","West Virginia","WV",4679 +2006-01-01,"Residential Consumption","Rhode Island","RI",2914 +2006-01-01,"Residential Consumption","Tennessee","TN",12251 +2006-01-01,"Residential Consumption","Nevada","NV",6188 +2006-01-01,"Residential Consumption","District of Columbia","DC",1857 +2006-01-01,"Residential Consumption","Kansas","KS",10890 +2006-01-01,"Residential Consumption","Alabama","AL",7838 +2006-01-01,"Residential Consumption","U.S.","U.S.",713698 +2006-01-01,"Residential Consumption","Oregon","OR",6471 +2006-01-01,"Residential Consumption","Hawaii","HI",49 +2006-01-01,"Residential Consumption","New Jersey","NJ",34405 +2006-01-01,"Residential Consumption","California","CA",65421 +2006-01-01,"Residential Consumption","Wyoming","WY",1798 +2006-01-01,"Residential Consumption","Iowa","IA",10163 +2006-01-01,"Residential Consumption","New Mexico","NM",5103 +2006-01-01,"Residential Consumption","North Dakota","ND",1425 +2006-01-01,"Residential Consumption","Delaware","DE",1743 +2006-01-01,"Residential Consumption","Arizona","AZ",6235 +2006-01-01,"Residential Consumption","South Carolina","SC",4785 +2006-01-01,"Residential Consumption","Louisiana","LA",5987 +2006-01-01,"Residential Consumption","Connecticut","CT",6808 +2006-01-01,"Residential Consumption","Vermont","VT",480 +2006-01-01,"Residential Consumption","Maryland","MD",12372 +2006-01-01,"Residential Consumption","Georgia","GA",17817 +2006-01-01,"Residential Consumption","Indiana","IN",20108 +2006-01-01,"Residential Consumption","Montana","MT",2889 +2006-01-01,"Residential Consumption","Washington","WA",10414 +2006-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2016 +2006-02-01,"Commercial Consumption","South Carolina","SC",2683 +2006-02-01,"Commercial Consumption","Maine","ME",636 +2006-02-01,"Commercial Consumption","U.S.","U.S.",390067 +2006-02-01,"Commercial Consumption","Texas","TX",17090 +2006-02-01,"Commercial Consumption","Vermont","VT",350 +2006-02-01,"Commercial Consumption","Rhode Island","RI",1458 +2006-02-01,"Commercial Consumption","Iowa","IA",6338 +2006-02-01,"Commercial Consumption","Mississippi","MS",2709 +2006-02-01,"Commercial Consumption","Arizona","AZ",3764 +2006-02-01,"Commercial Consumption","Virginia","VA",8578 +2006-02-01,"Commercial Consumption","Idaho","ID",1983 +2006-02-01,"Commercial Consumption","Alaska","AK",2022 +2006-02-01,"Commercial Consumption","Alabama","AL",3283 +2006-02-01,"Commercial Consumption","West Virginia","WV",3335 +2006-02-01,"Commercial Consumption","Pennsylvania","PA",19736 +2006-02-01,"Commercial Consumption","Massachusetts","MA",7452 +2006-02-01,"Commercial Consumption","New Jersey","NJ",20066 +2006-02-01,"Commercial Consumption","Montana","MT",1718 +2006-02-01,"Commercial Consumption","Georgia","GA",7433 +2006-02-01,"Commercial Consumption","New Mexico","NM",3595 +2006-02-01,"Commercial Consumption","Oregon","OR",3764 +2006-02-01,"Commercial Consumption","Kansas","KS",4220 +2006-02-01,"Commercial Consumption","Ohio","OH",24722 +2006-02-01,"Commercial Consumption","Connecticut","CT",4598 +2006-02-01,"Commercial Consumption","Arkansas","AR",4253 +2006-02-01,"Commercial Consumption","Delaware","DE",1248 +2006-02-01,"Commercial Consumption","Michigan","MI",23321 +2006-02-01,"Commercial Consumption","Wyoming","WY",1313 +2006-02-01,"Commercial Consumption","Washington","WA",6728 +2006-02-01,"Commercial Consumption","North Carolina","NC",6464 +2006-02-01,"Commercial Consumption","Florida","FL",4990 +2006-02-01,"Commercial Consumption","Hawaii","HI",149 +2006-02-01,"Commercial Consumption","District of Columbia","DC",2250 +2006-02-01,"Commercial Consumption","Minnesota","MN",13221 +2006-02-01,"Commercial Consumption","South Dakota","SD",1443 +2006-02-01,"Commercial Consumption","Kentucky","KY",5320 +2006-02-01,"Commercial Consumption","California","CA",23938 +2006-02-01,"Commercial Consumption","Nebraska","NE",3826 +2006-02-01,"Commercial Consumption","Louisiana","LA",2772 +2006-02-01,"Commercial Consumption","Colorado","CO",8788 +2006-02-01,"Commercial Consumption","Utah","UT",5045 +2006-02-01,"Commercial Consumption","Oklahoma","OK",5145 +2006-02-01,"Commercial Consumption","Missouri","MO",8543 +2006-02-01,"Commercial Consumption","New Hampshire","NH",1173 +2006-02-01,"Commercial Consumption","New York","NY",34766 +2006-02-01,"Commercial Consumption","Tennessee","TN",7538 +2006-02-01,"Commercial Consumption","Nevada","NV",2966 +2006-02-01,"Commercial Consumption","Indiana","IN",10833 +2006-02-01,"Commercial Consumption","North Dakota","ND",1480 +2006-02-01,"Commercial Consumption","Wisconsin","WI",13936 +2006-02-01,"Commercial Consumption","Maryland","MD",8780 +2006-02-01,"Commercial Consumption","Illinois","IL",28307 +2006-02-01,"Delivered to Consumers","Utah","UT",17533 +2006-02-01,"Delivered to Consumers","New Mexico","NM",12746 +2006-02-01,"Delivered to Consumers","Idaho","ID",8140 +2006-02-01,"Delivered to Consumers","Iowa","IA",26909 +2006-02-01,"Delivered to Consumers","Louisiana","LA",79755 +2006-02-01,"Delivered to Consumers","South Dakota","SD",4348 +2006-02-01,"Delivered to Consumers","Maryland","MD",24846 +2006-02-01,"Delivered to Consumers","Oregon","OR",21431 +2006-02-01,"Delivered to Consumers","New Jersey","NJ",67063 +2006-02-01,"Delivered to Consumers","Arizona","AZ",24177 +2006-02-01,"Delivered to Consumers","Indiana","IN",57392 +2006-02-01,"Delivered to Consumers","Missouri","MO",32481 +2006-02-01,"Delivered to Consumers","Massachusetts","MA",39967 +2006-02-01,"Delivered to Consumers","Washington","WA",27834 +2006-02-01,"Delivered to Consumers","New Hampshire","NH",6823 +2006-02-01,"Delivered to Consumers","Florida","FL",56557 +2006-02-01,"Delivered to Consumers","West Virginia","WV",10984 +2006-02-01,"Delivered to Consumers","Hawaii","HI",226 +2006-02-01,"Delivered to Consumers","Wisconsin","WI",49036 +2006-02-01,"Delivered to Consumers","Maine","ME",4850 +2006-02-01,"Delivered to Consumers","U.S.","U.S.",1999359 +2006-02-01,"Delivered to Consumers","Wyoming","WY",6824 +2006-02-01,"Delivered to Consumers","Vermont","VT",1063 +2006-02-01,"Delivered to Consumers","Alaska","AK",10195 +2006-02-01,"Delivered to Consumers","Connecticut","CT",17525 +2006-02-01,"Delivered to Consumers","Virginia","VA",31003 +2006-02-01,"Delivered to Consumers","Pennsylvania","PA",77324 +2006-02-01,"Delivered to Consumers","Mississippi","MS",18381 +2006-02-01,"Delivered to Consumers","North Dakota","ND",4128 +2006-02-01,"Delivered to Consumers","Minnesota","MN",44696 +2006-02-01,"Delivered to Consumers","District of Columbia","DC",4285 +2006-02-01,"Delivered to Consumers","Delaware","DE",4699 +2006-02-01,"Delivered to Consumers","Illinois","IL",121058 +2006-02-01,"Delivered to Consumers","New York","NY",122348 +2006-02-01,"Delivered to Consumers","Kansas","KS",23451 +2006-02-01,"Delivered to Consumers","Tennessee","TN",27863 +2006-02-01,"Delivered to Consumers","Arkansas","AR",19909 +2006-02-01,"Delivered to Consumers","Alabama","AL",27730 +2006-02-01,"Delivered to Consumers","North Carolina","NC",23904 +2006-02-01,"Delivered to Consumers","California","CA",186181 +2006-02-01,"Delivered to Consumers","Texas","TX",231398 +2006-02-01,"Delivered to Consumers","South Carolina","SC",15594 +2006-02-01,"Delivered to Consumers","Nevada","NV",20590 +2006-02-01,"Delivered to Consumers","Kentucky","KY",23721 +2006-02-01,"Delivered to Consumers","Nebraska","NE",13741 +2006-02-01,"Delivered to Consumers","Colorado","CO",45360 +2006-02-01,"Delivered to Consumers","Rhode Island","RI",6737 +2006-02-01,"Delivered to Consumers","Montana","MT",7060 +2006-02-01,"Delivered to Consumers","Oklahoma","OK",45534 +2006-02-01,"Delivered to Consumers","Ohio","OH",97666 +2006-02-01,"Delivered to Consumers","Michigan","MI",99454 +2006-02-01,"Delivered to Consumers","Georgia","GA",45015 +2006-02-01,"Electric Power Consumption","Rhode Island","RI",2496 +2006-02-01,"Electric Power Consumption","Missouri","MO",1063 +2006-02-01,"Electric Power Consumption","Alaska","AK",3390 +2006-02-01,"Electric Power Consumption","West Virginia","WV",124 +2006-02-01,"Electric Power Consumption","Mississippi","MS",5018 +2006-02-01,"Electric Power Consumption","Alabama","AL",5197 +2006-02-01,"Electric Power Consumption","New Mexico","NM",2467 +2006-02-01,"Electric Power Consumption","Texas","TX",86729 +2006-02-01,"Electric Power Consumption","Oklahoma","OK",18588 +2006-02-01,"Electric Power Consumption","Pennsylvania","PA",4828 +2006-02-01,"Electric Power Consumption","Virginia","VA",3326 +2006-02-01,"Electric Power Consumption","South Carolina","SC",1836 +2006-02-01,"Electric Power Consumption","Minnesota","MN",737 +2006-02-01,"Electric Power Consumption","Illinois","IL",962 +2006-02-01,"Electric Power Consumption","Michigan","MI",6183 +2006-02-01,"Electric Power Consumption","Massachusetts","MA",10515 +2006-02-01,"Electric Power Consumption","Kansas","KS",594 +2006-02-01,"Electric Power Consumption","Wisconsin","WI",2763 +2006-02-01,"Electric Power Consumption","Nebraska","NE",185 +2006-02-01,"Electric Power Consumption","Ohio","OH",500 +2006-02-01,"Electric Power Consumption","North Dakota","ND",0 +2006-02-01,"Electric Power Consumption","Arizona","AZ",12939 +2006-02-01,"Electric Power Consumption","New Jersey","NJ",6847 +2006-02-01,"Electric Power Consumption","Nevada","NV",11020 +2006-02-01,"Electric Power Consumption","U.S.","U.S.",346138 +2006-02-01,"Electric Power Consumption","Maryland","MD",912 +2006-02-01,"Electric Power Consumption","California","CA",46922 +2006-02-01,"Electric Power Consumption","Idaho","ID",543 +2006-02-01,"Electric Power Consumption","Colorado","CO",7130 +2006-02-01,"Electric Power Consumption","Arkansas","AR",2436 +2006-02-01,"Electric Power Consumption","Oregon","OR",5417 +2006-02-01,"Electric Power Consumption","Wyoming","WY",42 +2006-02-01,"Electric Power Consumption","Iowa","IA",489 +2006-02-01,"Electric Power Consumption","Tennessee","TN",111 +2006-02-01,"Electric Power Consumption","South Dakota","SD",36 +2006-02-01,"Electric Power Consumption","Maine","ME",2622 +2006-02-01,"Electric Power Consumption","Hawaii","HI",NA +2006-02-01,"Electric Power Consumption","Delaware","DE",387 +2006-02-01,"Electric Power Consumption","Florida","FL",43507 +2006-02-01,"Electric Power Consumption","Louisiana","LA",9660 +2006-02-01,"Electric Power Consumption","New Hampshire","NH",3994 +2006-02-01,"Electric Power Consumption","Montana","MT",8 +2006-02-01,"Electric Power Consumption","Indiana","IN",779 +2006-02-01,"Electric Power Consumption","Georgia","GA",4057 +2006-02-01,"Electric Power Consumption","Washington","WA",3652 +2006-02-01,"Electric Power Consumption","New York","NY",18504 +2006-02-01,"Electric Power Consumption","Utah","UT",778 +2006-02-01,"Electric Power Consumption","Vermont","VT",0 +2006-02-01,"Electric Power Consumption","North Carolina","NC",300 +2006-02-01,"Electric Power Consumption","Kentucky","KY",411 +2006-02-01,"Electric Power Consumption","Connecticut","CT",5132 +2006-02-01,"Industrial Consumption","Oklahoma","OK",13352 +2006-02-01,"Industrial Consumption","Kansas","KS",9090 +2006-02-01,"Industrial Consumption","U.S.","U.S.",559052 +2006-02-01,"Industrial Consumption","Texas","TX",101638 +2006-02-01,"Industrial Consumption","Nebraska","NE",4406 +2006-02-01,"Industrial Consumption","Wisconsin","WI",11875 +2006-02-01,"Industrial Consumption","Michigan","MI",18318 +2006-02-01,"Industrial Consumption","Illinois","IL",24272 +2006-02-01,"Industrial Consumption","Delaware","DE",1364 +2006-02-01,"Industrial Consumption","Montana","MT",2676 +2006-02-01,"Industrial Consumption","Louisiana","LA",61941 +2006-02-01,"Industrial Consumption","South Dakota","SD",963 +2006-02-01,"Industrial Consumption","Vermont","VT",267 +2006-02-01,"Industrial Consumption","Tennessee","TN",9286 +2006-02-01,"Industrial Consumption","North Dakota","ND",962 +2006-02-01,"Industrial Consumption","Utah","UT",2719 +2006-02-01,"Industrial Consumption","Pennsylvania","PA",17151 +2006-02-01,"Industrial Consumption","New York","NY",9264 +2006-02-01,"Industrial Consumption","Alabama","AL",12848 +2006-02-01,"Industrial Consumption","Florida","FL",5800 +2006-02-01,"Industrial Consumption","Missouri","MO",6415 +2006-02-01,"Industrial Consumption","New Mexico","NM",1623 +2006-02-01,"Industrial Consumption","Maine","ME",1426 +2006-02-01,"Industrial Consumption","Wyoming","WY",3771 +2006-02-01,"Industrial Consumption","North Carolina","NC",7493 +2006-02-01,"Industrial Consumption","Maryland","MD",2123 +2006-02-01,"Industrial Consumption","Hawaii","HI",34 +2006-02-01,"Industrial Consumption","Colorado","CO",10839 +2006-02-01,"Industrial Consumption","Washington","WA",6168 +2006-02-01,"Industrial Consumption","Mississippi","MS",6977 +2006-02-01,"Industrial Consumption","Virginia","VA",6035 +2006-02-01,"Industrial Consumption","Connecticut","CT",1779 +2006-02-01,"Industrial Consumption","Indiana","IN",23973 +2006-02-01,"Industrial Consumption","District of Columbia","DC",0 +2006-02-01,"Industrial Consumption","Alaska","AK",2549 +2006-02-01,"Industrial Consumption","Ohio","OH",25471 +2006-02-01,"Industrial Consumption","Nevada","NV",1189 +2006-02-01,"Industrial Consumption","West Virginia","WV",2955 +2006-02-01,"Industrial Consumption","Kentucky","KY",9456 +2006-02-01,"Industrial Consumption","Oregon","OR",6100 +2006-02-01,"Industrial Consumption","Arkansas","AR",7753 +2006-02-01,"Industrial Consumption","Minnesota","MN",10344 +2006-02-01,"Industrial Consumption","Idaho","ID",2106 +2006-02-01,"Industrial Consumption","Iowa","IA",9530 +2006-02-01,"Industrial Consumption","Rhode Island","RI",485 +2006-02-01,"Industrial Consumption","Massachusetts","MA",5421 +2006-02-01,"Industrial Consumption","Arizona","AZ",1747 +2006-02-01,"Industrial Consumption","California","CA",59659 +2006-02-01,"Industrial Consumption","South Carolina","SC",6458 +2006-02-01,"Industrial Consumption","New Jersey","NJ",6043 +2006-02-01,"Industrial Consumption","New Hampshire","NH",614 +2006-02-01,"Industrial Consumption","Georgia","GA",14324 +2006-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",86529 +2006-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",58490 +2006-02-01,"Residential Consumption","Texas","TX",25942 +2006-02-01,"Residential Consumption","Louisiana","LA",5382 +2006-02-01,"Residential Consumption","Connecticut","CT",6015 +2006-02-01,"Residential Consumption","Washington","WA",11287 +2006-02-01,"Residential Consumption","District of Columbia","DC",2035 +2006-02-01,"Residential Consumption","Indiana","IN",21807 +2006-02-01,"Residential Consumption","Idaho","ID",3509 +2006-02-01,"Residential Consumption","Montana","MT",2659 +2006-02-01,"Residential Consumption","Kansas","KS",9547 +2006-02-01,"Residential Consumption","Alaska","AK",2233 +2006-02-01,"Residential Consumption","South Carolina","SC",4618 +2006-02-01,"Residential Consumption","Colorado","CO",18603 +2006-02-01,"Residential Consumption","Missouri","MO",16459 +2006-02-01,"Residential Consumption","Illinois","IL",67517 +2006-02-01,"Residential Consumption","Oregon","OR",6150 +2006-02-01,"Residential Consumption","Hawaii","HI",43 +2006-02-01,"Residential Consumption","Vermont","VT",445 +2006-02-01,"Residential Consumption","Nebraska","NE",5325 +2006-02-01,"Residential Consumption","Michigan","MI",51632 +2006-02-01,"Residential Consumption","Nevada","NV",5415 +2006-02-01,"Residential Consumption","New Mexico","NM",5061 +2006-02-01,"Residential Consumption","New Jersey","NJ",34106 +2006-02-01,"Residential Consumption","Minnesota","MN",20393 +2006-02-01,"Residential Consumption","Georgia","GA",19201 +2006-02-01,"Residential Consumption","Pennsylvania","PA",35609 +2006-02-01,"Residential Consumption","California","CA",55662 +2006-02-01,"Residential Consumption","Alabama","AL",6402 +2006-02-01,"Residential Consumption","Rhode Island","RI",2298 +2006-02-01,"Residential Consumption","Ohio","OH",46972 +2006-02-01,"Residential Consumption","North Carolina","NC",9647 +2006-02-01,"Residential Consumption","Wisconsin","WI",20461 +2006-02-01,"Residential Consumption","Tennessee","TN",10927 +2006-02-01,"Residential Consumption","Virginia","VA",13064 +2006-02-01,"Residential Consumption","Utah","UT",8992 +2006-02-01,"Residential Consumption","Maryland","MD",13031 +2006-02-01,"Residential Consumption","Florida","FL",2261 +2006-02-01,"Residential Consumption","New Hampshire","NH",1043 +2006-02-01,"Residential Consumption","Oklahoma","OK",8450 +2006-02-01,"Residential Consumption","Delaware","DE",1700 +2006-02-01,"Residential Consumption","Arizona","AZ",5727 +2006-02-01,"Residential Consumption","Mississippi","MS",3676 +2006-02-01,"Residential Consumption","South Dakota","SD",1906 +2006-02-01,"Residential Consumption","West Virginia","WV",4570 +2006-02-01,"Residential Consumption","U.S.","U.S.",702280 +2006-02-01,"Residential Consumption","Iowa","IA",10552 +2006-02-01,"Residential Consumption","Maine","ME",166 +2006-02-01,"Residential Consumption","North Dakota","ND",1686 +2006-02-01,"Residential Consumption","Massachusetts","MA",16580 +2006-02-01,"Residential Consumption","Arkansas","AR",5467 +2006-02-01,"Residential Consumption","Kentucky","KY",8534 +2006-02-01,"Residential Consumption","Wyoming","WY",1698 +2006-02-01,"Residential Consumption","New York","NY",59815 +2006-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1821 +2006-03-01,"Commercial Consumption","Wyoming","WY",1307 +2006-03-01,"Commercial Consumption","New Mexico","NM",3156 +2006-03-01,"Commercial Consumption","Texas","TX",16533 +2006-03-01,"Commercial Consumption","New York","NY",33172 +2006-03-01,"Commercial Consumption","Michigan","MI",21863 +2006-03-01,"Commercial Consumption","Utah","UT",4625 +2006-03-01,"Commercial Consumption","Virginia","VA",7478 +2006-03-01,"Commercial Consumption","Montana","MT",1743 +2006-03-01,"Commercial Consumption","U.S.","U.S.",352874 +2006-03-01,"Commercial Consumption","Alabama","AL",2880 +2006-03-01,"Commercial Consumption","Louisiana","LA",1983 +2006-03-01,"Commercial Consumption","Oregon","OR",3884 +2006-03-01,"Commercial Consumption","New Hampshire","NH",1227 +2006-03-01,"Commercial Consumption","Idaho","ID",1705 +2006-03-01,"Commercial Consumption","Connecticut","CT",4590 +2006-03-01,"Commercial Consumption","Nebraska","NE",3932 +2006-03-01,"Commercial Consumption","North Dakota","ND",1204 +2006-03-01,"Commercial Consumption","North Carolina","NC",5564 +2006-03-01,"Commercial Consumption","Missouri","MO",7353 +2006-03-01,"Commercial Consumption","Kentucky","KY",3917 +2006-03-01,"Commercial Consumption","Maryland","MD",7460 +2006-03-01,"Commercial Consumption","Kansas","KS",3643 +2006-03-01,"Commercial Consumption","Ohio","OH",19878 +2006-03-01,"Commercial Consumption","Iowa","IA",5598 +2006-03-01,"Commercial Consumption","Nevada","NV",3168 +2006-03-01,"Commercial Consumption","West Virginia","WV",3007 +2006-03-01,"Commercial Consumption","Washington","WA",6270 +2006-03-01,"Commercial Consumption","New Jersey","NJ",19026 +2006-03-01,"Commercial Consumption","Maine","ME",620 +2006-03-01,"Commercial Consumption","Georgia","GA",5145 +2006-03-01,"Commercial Consumption","Florida","FL",4803 +2006-03-01,"Commercial Consumption","Vermont","VT",379 +2006-03-01,"Commercial Consumption","Arkansas","AR",3902 +2006-03-01,"Commercial Consumption","Delaware","DE",964 +2006-03-01,"Commercial Consumption","Minnesota","MN",11409 +2006-03-01,"Commercial Consumption","Colorado","CO",7887 +2006-03-01,"Commercial Consumption","Oklahoma","OK",4386 +2006-03-01,"Commercial Consumption","Pennsylvania","PA",18192 +2006-03-01,"Commercial Consumption","Massachusetts","MA",8342 +2006-03-01,"Commercial Consumption","South Dakota","SD",1244 +2006-03-01,"Commercial Consumption","Rhode Island","RI",1657 +2006-03-01,"Commercial Consumption","Arizona","AZ",3597 +2006-03-01,"Commercial Consumption","Illinois","IL",24390 +2006-03-01,"Commercial Consumption","South Carolina","SC",2266 +2006-03-01,"Commercial Consumption","Wisconsin","WI",10896 +2006-03-01,"Commercial Consumption","Hawaii","HI",158 +2006-03-01,"Commercial Consumption","Alaska","AK",2155 +2006-03-01,"Commercial Consumption","California","CA",24062 +2006-03-01,"Commercial Consumption","Mississippi","MS",2464 +2006-03-01,"Commercial Consumption","Tennessee","TN",6670 +2006-03-01,"Commercial Consumption","Indiana","IN",9140 +2006-03-01,"Commercial Consumption","District of Columbia","DC",1983 +2006-03-01,"Delivered to Consumers","U.S.","U.S.",1972165 +2006-03-01,"Delivered to Consumers","Indiana","IN",54200 +2006-03-01,"Delivered to Consumers","Vermont","VT",1190 +2006-03-01,"Delivered to Consumers","New York","NY",125713 +2006-03-01,"Delivered to Consumers","Maryland","MD",19870 +2006-03-01,"Delivered to Consumers","Iowa","IA",23941 +2006-03-01,"Delivered to Consumers","Mississippi","MS",20274 +2006-03-01,"Delivered to Consumers","Oregon","OR",22860 +2006-03-01,"Delivered to Consumers","North Dakota","ND",3685 +2006-03-01,"Delivered to Consumers","Utah","UT",16428 +2006-03-01,"Delivered to Consumers","Wyoming","WY",6957 +2006-03-01,"Delivered to Consumers","Rhode Island","RI",7405 +2006-03-01,"Delivered to Consumers","Ohio","OH",85732 +2006-03-01,"Delivered to Consumers","Connecticut","CT",19733 +2006-03-01,"Delivered to Consumers","Wisconsin","WI",42628 +2006-03-01,"Delivered to Consumers","California","CA",207878 +2006-03-01,"Delivered to Consumers","Minnesota","MN",35090 +2006-03-01,"Delivered to Consumers","South Dakota","SD",3843 +2006-03-01,"Delivered to Consumers","North Carolina","NC",23271 +2006-03-01,"Delivered to Consumers","Nevada","NV",21653 +2006-03-01,"Delivered to Consumers","Louisiana","LA",88341 +2006-03-01,"Delivered to Consumers","Georgia","GA",35118 +2006-03-01,"Delivered to Consumers","New Mexico","NM",11707 +2006-03-01,"Delivered to Consumers","Delaware","DE",4451 +2006-03-01,"Delivered to Consumers","West Virginia","WV",10154 +2006-03-01,"Delivered to Consumers","Hawaii","HI",242 +2006-03-01,"Delivered to Consumers","Massachusetts","MA",43664 +2006-03-01,"Delivered to Consumers","Arizona","AZ",22606 +2006-03-01,"Delivered to Consumers","Florida","FL",68707 +2006-03-01,"Delivered to Consumers","Oklahoma","OK",43562 +2006-03-01,"Delivered to Consumers","Kansas","KS",22320 +2006-03-01,"Delivered to Consumers","Idaho","ID",7439 +2006-03-01,"Delivered to Consumers","Missouri","MO",28891 +2006-03-01,"Delivered to Consumers","Washington","WA",24614 +2006-03-01,"Delivered to Consumers","District of Columbia","DC",3486 +2006-03-01,"Delivered to Consumers","Montana","MT",7344 +2006-03-01,"Delivered to Consumers","Alaska","AK",10701 +2006-03-01,"Delivered to Consumers","Arkansas","AR",19394 +2006-03-01,"Delivered to Consumers","Nebraska","NE",13940 +2006-03-01,"Delivered to Consumers","South Carolina","SC",14881 +2006-03-01,"Delivered to Consumers","New Hampshire","NH",7852 +2006-03-01,"Delivered to Consumers","Michigan","MI",96633 +2006-03-01,"Delivered to Consumers","Alabama","AL",28949 +2006-03-01,"Delivered to Consumers","Texas","TX",247349 +2006-03-01,"Delivered to Consumers","New Jersey","NJ",64461 +2006-03-01,"Delivered to Consumers","Maine","ME",5239 +2006-03-01,"Delivered to Consumers","Illinois","IL",104406 +2006-03-01,"Delivered to Consumers","Tennessee","TN",24557 +2006-03-01,"Delivered to Consumers","Kentucky","KY",20380 +2006-03-01,"Delivered to Consumers","Virginia","VA",26918 +2006-03-01,"Delivered to Consumers","Pennsylvania","PA",76877 +2006-03-01,"Delivered to Consumers","Colorado","CO",42614 +2006-03-01,"Electric Power Consumption","New Mexico","NM",2877 +2006-03-01,"Electric Power Consumption","Michigan","MI",7271 +2006-03-01,"Electric Power Consumption","Wyoming","WY",51 +2006-03-01,"Electric Power Consumption","Iowa","IA",909 +2006-03-01,"Electric Power Consumption","South Dakota","SD",45 +2006-03-01,"Electric Power Consumption","Mississippi","MS",6901 +2006-03-01,"Electric Power Consumption","New Hampshire","NH",4874 +2006-03-01,"Electric Power Consumption","Indiana","IN",1617 +2006-03-01,"Electric Power Consumption","Delaware","DE",812 +2006-03-01,"Electric Power Consumption","Florida","FL",55900 +2006-03-01,"Electric Power Consumption","West Virginia","WV",141 +2006-03-01,"Electric Power Consumption","Alabama","AL",7726 +2006-03-01,"Electric Power Consumption","Arkansas","AR",2788 +2006-03-01,"Electric Power Consumption","Hawaii","HI",NA +2006-03-01,"Electric Power Consumption","Idaho","ID",494 +2006-03-01,"Electric Power Consumption","Wisconsin","WI",3299 +2006-03-01,"Electric Power Consumption","Pennsylvania","PA",8760 +2006-03-01,"Electric Power Consumption","North Dakota","ND",0 +2006-03-01,"Electric Power Consumption","Montana","MT",12 +2006-03-01,"Electric Power Consumption","Arizona","AZ",12286 +2006-03-01,"Electric Power Consumption","Virginia","VA",2765 +2006-03-01,"Electric Power Consumption","New Jersey","NJ",7577 +2006-03-01,"Electric Power Consumption","Colorado","CO",7701 +2006-03-01,"Electric Power Consumption","Kansas","KS",1213 +2006-03-01,"Electric Power Consumption","North Carolina","NC",1641 +2006-03-01,"Electric Power Consumption","Ohio","OH",564 +2006-03-01,"Electric Power Consumption","Connecticut","CT",6381 +2006-03-01,"Electric Power Consumption","California","CA",53099 +2006-03-01,"Electric Power Consumption","South Carolina","SC",2046 +2006-03-01,"Electric Power Consumption","Illinois","IL",1482 +2006-03-01,"Electric Power Consumption","Vermont","VT",2 +2006-03-01,"Electric Power Consumption","U.S.","U.S.",406970 +2006-03-01,"Electric Power Consumption","Alaska","AK",3554 +2006-03-01,"Electric Power Consumption","New York","NY",28892 +2006-03-01,"Electric Power Consumption","Rhode Island","RI",2376 +2006-03-01,"Electric Power Consumption","Oklahoma","OK",17978 +2006-03-01,"Electric Power Consumption","Massachusetts","MA",12512 +2006-03-01,"Electric Power Consumption","Nevada","NV",11955 +2006-03-01,"Electric Power Consumption","Missouri","MO",1696 +2006-03-01,"Electric Power Consumption","Maine","ME",2355 +2006-03-01,"Electric Power Consumption","Washington","WA",1403 +2006-03-01,"Electric Power Consumption","Louisiana","LA",11968 +2006-03-01,"Electric Power Consumption","Texas","TX",97292 +2006-03-01,"Electric Power Consumption","Utah","UT",1064 +2006-03-01,"Electric Power Consumption","Oregon","OR",6304 +2006-03-01,"Electric Power Consumption","Minnesota","MN",833 +2006-03-01,"Electric Power Consumption","Tennessee","TN",167 +2006-03-01,"Electric Power Consumption","Nebraska","NE",298 +2006-03-01,"Electric Power Consumption","Kentucky","KY",575 +2006-03-01,"Electric Power Consumption","Maryland","MD",1039 +2006-03-01,"Electric Power Consumption","Georgia","GA",3476 +2006-03-01,"Industrial Consumption","Nevada","NV",1325 +2006-03-01,"Industrial Consumption","Mississippi","MS",8023 +2006-03-01,"Industrial Consumption","Alabama","AL",13006 +2006-03-01,"Industrial Consumption","South Carolina","SC",7264 +2006-03-01,"Industrial Consumption","Nebraska","NE",3758 +2006-03-01,"Industrial Consumption","Kentucky","KY",9754 +2006-03-01,"Industrial Consumption","Montana","MT",2788 +2006-03-01,"Industrial Consumption","Vermont","VT",316 +2006-03-01,"Industrial Consumption","Maryland","MD",2080 +2006-03-01,"Industrial Consumption","Hawaii","HI",37 +2006-03-01,"Industrial Consumption","Utah","UT",2574 +2006-03-01,"Industrial Consumption","Virginia","VA",6404 +2006-03-01,"Industrial Consumption","Iowa","IA",8709 +2006-03-01,"Industrial Consumption","Connecticut","CT",2422 +2006-03-01,"Industrial Consumption","District of Columbia","DC",0 +2006-03-01,"Industrial Consumption","North Dakota","ND",1128 +2006-03-01,"Industrial Consumption","Massachusetts","MA",5667 +2006-03-01,"Industrial Consumption","Oklahoma","OK",13574 +2006-03-01,"Industrial Consumption","Colorado","CO",11156 +2006-03-01,"Industrial Consumption","New Mexico","NM",1509 +2006-03-01,"Industrial Consumption","New York","NY",7948 +2006-03-01,"Industrial Consumption","California","CA",61924 +2006-03-01,"Industrial Consumption","Wyoming","WY",3927 +2006-03-01,"Industrial Consumption","Tennessee","TN",8448 +2006-03-01,"Industrial Consumption","New Hampshire","NH",632 +2006-03-01,"Industrial Consumption","Alaska","AK",2793 +2006-03-01,"Industrial Consumption","Missouri","MO",6259 +2006-03-01,"Industrial Consumption","South Dakota","SD",974 +2006-03-01,"Industrial Consumption","Ohio","OH",24749 +2006-03-01,"Industrial Consumption","Kansas","KS",9242 +2006-03-01,"Industrial Consumption","Maine","ME",2121 +2006-03-01,"Industrial Consumption","West Virginia","WV",2812 +2006-03-01,"Industrial Consumption","Wisconsin","WI",12416 +2006-03-01,"Industrial Consumption","Delaware","DE",1329 +2006-03-01,"Industrial Consumption","Rhode Island","RI",598 +2006-03-01,"Industrial Consumption","North Carolina","NC",8275 +2006-03-01,"Industrial Consumption","U.S.","U.S.",584380 +2006-03-01,"Industrial Consumption","Texas","TX",109588 +2006-03-01,"Industrial Consumption","Illinois","IL",24460 +2006-03-01,"Industrial Consumption","Arizona","AZ",1808 +2006-03-01,"Industrial Consumption","Pennsylvania","PA",18059 +2006-03-01,"Industrial Consumption","Arkansas","AR",7797 +2006-03-01,"Industrial Consumption","New Jersey","NJ",6382 +2006-03-01,"Industrial Consumption","Minnesota","MN",7172 +2006-03-01,"Industrial Consumption","Florida","FL",6197 +2006-03-01,"Industrial Consumption","Indiana","IN",25455 +2006-03-01,"Industrial Consumption","Georgia","GA",14076 +2006-03-01,"Industrial Consumption","Louisiana","LA",70864 +2006-03-01,"Industrial Consumption","Washington","WA",6577 +2006-03-01,"Industrial Consumption","Oregon","OR",6587 +2006-03-01,"Industrial Consumption","Idaho","ID",2279 +2006-03-01,"Industrial Consumption","Michigan","MI",21135 +2006-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96527 +2006-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",57677 +2006-03-01,"Residential Consumption","Tennessee","TN",9273 +2006-03-01,"Residential Consumption","Utah","UT",8165 +2006-03-01,"Residential Consumption","Nebraska","NE",5951 +2006-03-01,"Residential Consumption","Idaho","ID",2961 +2006-03-01,"Residential Consumption","Texas","TX",23936 +2006-03-01,"Residential Consumption","South Carolina","SC",3305 +2006-03-01,"Residential Consumption","Mississippi","MS",2886 +2006-03-01,"Residential Consumption","Hawaii","HI",47 +2006-03-01,"Residential Consumption","Vermont","VT",492 +2006-03-01,"Residential Consumption","Maryland","MD",9292 +2006-03-01,"Residential Consumption","Nevada","NV",5206 +2006-03-01,"Residential Consumption","Georgia","GA",12421 +2006-03-01,"Residential Consumption","New Jersey","NJ",31475 +2006-03-01,"Residential Consumption","New Hampshire","NH",1119 +2006-03-01,"Residential Consumption","North Carolina","NC",7791 +2006-03-01,"Residential Consumption","Louisiana","LA",3526 +2006-03-01,"Residential Consumption","District of Columbia","DC",1503 +2006-03-01,"Residential Consumption","Kentucky","KY",6134 +2006-03-01,"Residential Consumption","West Virginia","WV",4193 +2006-03-01,"Residential Consumption","Illinois","IL",54075 +2006-03-01,"Residential Consumption","Iowa","IA",8725 +2006-03-01,"Residential Consumption","Minnesota","MN",15676 +2006-03-01,"Residential Consumption","Pennsylvania","PA",31866 +2006-03-01,"Residential Consumption","Maine","ME",142 +2006-03-01,"Residential Consumption","New York","NY",55702 +2006-03-01,"Residential Consumption","Ohio","OH",40541 +2006-03-01,"Residential Consumption","Connecticut","CT",6341 +2006-03-01,"Residential Consumption","Wisconsin","WI",16017 +2006-03-01,"Residential Consumption","Michigan","MI",46363 +2006-03-01,"Residential Consumption","South Dakota","SD",1580 +2006-03-01,"Residential Consumption","Florida","FL",1807 +2006-03-01,"Residential Consumption","Colorado","CO",15870 +2006-03-01,"Residential Consumption","Arizona","AZ",4915 +2006-03-01,"Residential Consumption","Montana","MT",2800 +2006-03-01,"Residential Consumption","Oklahoma","OK",7624 +2006-03-01,"Residential Consumption","Rhode Island","RI",2774 +2006-03-01,"Residential Consumption","Virginia","VA",10271 +2006-03-01,"Residential Consumption","Indiana","IN",17987 +2006-03-01,"Residential Consumption","North Dakota","ND",1353 +2006-03-01,"Residential Consumption","Massachusetts","MA",17143 +2006-03-01,"Residential Consumption","Kansas","KS",8223 +2006-03-01,"Residential Consumption","Washington","WA",10365 +2006-03-01,"Residential Consumption","Delaware","DE",1346 +2006-03-01,"Residential Consumption","Alabama","AL",5337 +2006-03-01,"Residential Consumption","Alaska","AK",2198 +2006-03-01,"Residential Consumption","Wyoming","WY",1673 +2006-03-01,"Residential Consumption","Oregon","OR",6085 +2006-03-01,"Residential Consumption","New Mexico","NM",4165 +2006-03-01,"Residential Consumption","Arkansas","AR",4907 +2006-03-01,"Residential Consumption","Missouri","MO",13583 +2006-03-01,"Residential Consumption","California","CA",68793 +2006-03-01,"Residential Consumption","U.S.","U.S.",625925 +2006-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2016 +2006-04-01,"Commercial Consumption","Georgia","GA",2639 +2006-04-01,"Commercial Consumption","Mississippi","MS",1045 +2006-04-01,"Commercial Consumption","Delaware","DE",574 +2006-04-01,"Commercial Consumption","West Virginia","WV",1829 +2006-04-01,"Commercial Consumption","Washington","WA",4595 +2006-04-01,"Commercial Consumption","Virginia","VA",4024 +2006-04-01,"Commercial Consumption","South Dakota","SD",758 +2006-04-01,"Commercial Consumption","Kentucky","KY",2159 +2006-04-01,"Commercial Consumption","Idaho","ID",1200 +2006-04-01,"Commercial Consumption","Connecticut","CT",2874 +2006-04-01,"Commercial Consumption","California","CA",21985 +2006-04-01,"Commercial Consumption","Arkansas","AR",2463 +2006-04-01,"Commercial Consumption","Indiana","IN",4051 +2006-04-01,"Commercial Consumption","District of Columbia","DC",1195 +2006-04-01,"Commercial Consumption","North Carolina","NC",3540 +2006-04-01,"Commercial Consumption","Minnesota","MN",6329 +2006-04-01,"Commercial Consumption","Utah","UT",3585 +2006-04-01,"Commercial Consumption","Oregon","OR",2516 +2006-04-01,"Commercial Consumption","Missouri","MO",4323 +2006-04-01,"Commercial Consumption","Massachusetts","MA",4634 +2006-04-01,"Commercial Consumption","Wisconsin","WI",5541 +2006-04-01,"Commercial Consumption","Vermont","VT",226 +2006-04-01,"Commercial Consumption","Hawaii","HI",157 +2006-04-01,"Commercial Consumption","Alaska","AK",1504 +2006-04-01,"Commercial Consumption","Nevada","NV",2565 +2006-04-01,"Commercial Consumption","Michigan","MI",12729 +2006-04-01,"Commercial Consumption","New Hampshire","NH",981 +2006-04-01,"Commercial Consumption","Nebraska","NE",2579 +2006-04-01,"Commercial Consumption","Tennessee","TN",3903 +2006-04-01,"Commercial Consumption","New Mexico","NM",2368 +2006-04-01,"Commercial Consumption","New Jersey","NJ",11603 +2006-04-01,"Commercial Consumption","Montana","MT",1105 +2006-04-01,"Commercial Consumption","Maine","ME",355 +2006-04-01,"Commercial Consumption","Arizona","AZ",2928 +2006-04-01,"Commercial Consumption","Louisiana","LA",1462 +2006-04-01,"Commercial Consumption","North Dakota","ND",545 +2006-04-01,"Commercial Consumption","U.S.","U.S.",225687 +2006-04-01,"Commercial Consumption","Rhode Island","RI",1085 +2006-04-01,"Commercial Consumption","Iowa","IA",3414 +2006-04-01,"Commercial Consumption","Alabama","AL",1949 +2006-04-01,"Commercial Consumption","Wyoming","WY",910 +2006-04-01,"Commercial Consumption","Colorado","CO",4568 +2006-04-01,"Commercial Consumption","Pennsylvania","PA",10644 +2006-04-01,"Commercial Consumption","Texas","TX",11395 +2006-04-01,"Commercial Consumption","Ohio","OH",10958 +2006-04-01,"Commercial Consumption","South Carolina","SC",1532 +2006-04-01,"Commercial Consumption","Oklahoma","OK",2655 +2006-04-01,"Commercial Consumption","Maryland","MD",4621 +2006-04-01,"Commercial Consumption","Kansas","KS",2023 +2006-04-01,"Commercial Consumption","Florida","FL",4421 +2006-04-01,"Commercial Consumption","New York","NY",22952 +2006-04-01,"Commercial Consumption","Illinois","IL",15690 +2006-04-01,"Delivered to Consumers","U.S.","U.S.",1543302 +2006-04-01,"Delivered to Consumers","Colorado","CO",26074 +2006-04-01,"Delivered to Consumers","Maine","ME",4090 +2006-04-01,"Delivered to Consumers","Louisiana","LA",86459 +2006-04-01,"Delivered to Consumers","Utah","UT",13496 +2006-04-01,"Delivered to Consumers","Vermont","VT",745 +2006-04-01,"Delivered to Consumers","New York","NY",88492 +2006-04-01,"Delivered to Consumers","Montana","MT",4972 +2006-04-01,"Delivered to Consumers","Massachusetts","MA",31251 +2006-04-01,"Delivered to Consumers","Georgia","GA",26670 +2006-04-01,"Delivered to Consumers","Arizona","AZ",21814 +2006-04-01,"Delivered to Consumers","Indiana","IN",34311 +2006-04-01,"Delivered to Consumers","Wyoming","WY",5389 +2006-04-01,"Delivered to Consumers","North Dakota","ND",2658 +2006-04-01,"Delivered to Consumers","Kansas","KS",16673 +2006-04-01,"Delivered to Consumers","Iowa","IA",17158 +2006-04-01,"Delivered to Consumers","Wisconsin","WI",24331 +2006-04-01,"Delivered to Consumers","South Carolina","SC",12013 +2006-04-01,"Delivered to Consumers","Florida","FL",73645 +2006-04-01,"Delivered to Consumers","Illinois","IL",73083 +2006-04-01,"Delivered to Consumers","Idaho","ID",5455 +2006-04-01,"Delivered to Consumers","Michigan","MI",65814 +2006-04-01,"Delivered to Consumers","Connecticut","CT",14202 +2006-04-01,"Delivered to Consumers","Nevada","NV",18176 +2006-04-01,"Delivered to Consumers","New Jersey","NJ",41052 +2006-04-01,"Delivered to Consumers","Minnesota","MN",21908 +2006-04-01,"Delivered to Consumers","West Virginia","WV",6693 +2006-04-01,"Delivered to Consumers","South Dakota","SD",2535 +2006-04-01,"Delivered to Consumers","Rhode Island","RI",5579 +2006-04-01,"Delivered to Consumers","Hawaii","HI",237 +2006-04-01,"Delivered to Consumers","Alaska","AK",9259 +2006-04-01,"Delivered to Consumers","Tennessee","TN",16721 +2006-04-01,"Delivered to Consumers","Arkansas","AR",17499 +2006-04-01,"Delivered to Consumers","Oregon","OR",12842 +2006-04-01,"Delivered to Consumers","New Mexico","NM",10770 +2006-04-01,"Delivered to Consumers","Maryland","MD",11807 +2006-04-01,"Delivered to Consumers","Oklahoma","OK",45754 +2006-04-01,"Delivered to Consumers","Virginia","VA",15287 +2006-04-01,"Delivered to Consumers","Nebraska","NE",10766 +2006-04-01,"Delivered to Consumers","North Carolina","NC",15873 +2006-04-01,"Delivered to Consumers","Mississippi","MS",19883 +2006-04-01,"Delivered to Consumers","Texas","TX",247167 +2006-04-01,"Delivered to Consumers","District of Columbia","DC",1795 +2006-04-01,"Delivered to Consumers","Delaware","DE",2549 +2006-04-01,"Delivered to Consumers","Ohio","OH",52957 +2006-04-01,"Delivered to Consumers","Kentucky","KY",14447 +2006-04-01,"Delivered to Consumers","Alabama","AL",25903 +2006-04-01,"Delivered to Consumers","Pennsylvania","PA",49039 +2006-04-01,"Delivered to Consumers","Missouri","MO",18864 +2006-04-01,"Delivered to Consumers","California","CA",174325 +2006-04-01,"Delivered to Consumers","Washington","WA",18361 +2006-04-01,"Delivered to Consumers","New Hampshire","NH",4511 +2006-04-01,"Electric Power Consumption","Texas","TX",115654 +2006-04-01,"Electric Power Consumption","Utah","UT",1175 +2006-04-01,"Electric Power Consumption","Oregon","OR",588 +2006-04-01,"Electric Power Consumption","Michigan","MI",8695 +2006-04-01,"Electric Power Consumption","Massachusetts","MA",12088 +2006-04-01,"Electric Power Consumption","Nevada","NV",11087 +2006-04-01,"Electric Power Consumption","Tennessee","TN",563 +2006-04-01,"Electric Power Consumption","Montana","MT",8 +2006-04-01,"Electric Power Consumption","Delaware","DE",234 +2006-04-01,"Electric Power Consumption","Arizona","AZ",14248 +2006-04-01,"Electric Power Consumption","Florida","FL",61761 +2006-04-01,"Electric Power Consumption","Alabama","AL",9059 +2006-04-01,"Electric Power Consumption","Arkansas","AR",5482 +2006-04-01,"Electric Power Consumption","Rhode Island","RI",1840 +2006-04-01,"Electric Power Consumption","Oklahoma","OK",25171 +2006-04-01,"Electric Power Consumption","U.S.","U.S.",426027 +2006-04-01,"Electric Power Consumption","Nebraska","NE",379 +2006-04-01,"Electric Power Consumption","New Hampshire","NH",2310 +2006-04-01,"Electric Power Consumption","Connecticut","CT",5822 +2006-04-01,"Electric Power Consumption","Virginia","VA",1439 +2006-04-01,"Electric Power Consumption","South Dakota","SD",21 +2006-04-01,"Electric Power Consumption","North Carolina","NC",1062 +2006-04-01,"Electric Power Consumption","North Dakota","ND",0 +2006-04-01,"Electric Power Consumption","Colorado","CO",5752 +2006-04-01,"Electric Power Consumption","Minnesota","MN",443 +2006-04-01,"Electric Power Consumption","Wyoming","WY",47 +2006-04-01,"Electric Power Consumption","Missouri","MO",1940 +2006-04-01,"Electric Power Consumption","Hawaii","HI",NA +2006-04-01,"Electric Power Consumption","Maryland","MD",874 +2006-04-01,"Electric Power Consumption","Alaska","AK",3174 +2006-04-01,"Electric Power Consumption","New Jersey","NJ",7685 +2006-04-01,"Electric Power Consumption","Louisiana","LA",16015 +2006-04-01,"Electric Power Consumption","Kansas","KS",1530 +2006-04-01,"Electric Power Consumption","Wisconsin","WI",2014 +2006-04-01,"Electric Power Consumption","Idaho","ID",160 +2006-04-01,"Electric Power Consumption","New York","NY",25894 +2006-04-01,"Electric Power Consumption","Illinois","IL",2869 +2006-04-01,"Electric Power Consumption","Iowa","IA",707 +2006-04-01,"Electric Power Consumption","Georgia","GA",6395 +2006-04-01,"Electric Power Consumption","California","CA",44123 +2006-04-01,"Electric Power Consumption","Washington","WA",1089 +2006-04-01,"Electric Power Consumption","New Mexico","NM",4029 +2006-04-01,"Electric Power Consumption","South Carolina","SC",2299 +2006-04-01,"Electric Power Consumption","Pennsylvania","PA",5619 +2006-04-01,"Electric Power Consumption","Ohio","OH",503 +2006-04-01,"Electric Power Consumption","West Virginia","WV",122 +2006-04-01,"Electric Power Consumption","Vermont","VT",2 +2006-04-01,"Electric Power Consumption","Maine","ME",2405 +2006-04-01,"Electric Power Consumption","Mississippi","MS",9740 +2006-04-01,"Electric Power Consumption","Kentucky","KY",224 +2006-04-01,"Electric Power Consumption","Indiana","IN",1685 +2006-04-01,"Industrial Consumption","Massachusetts","MA",4242 +2006-04-01,"Industrial Consumption","Maine","ME",1243 +2006-04-01,"Industrial Consumption","Arkansas","AR",6923 +2006-04-01,"Industrial Consumption","Minnesota","MN",8168 +2006-04-01,"Industrial Consumption","Nevada","NV",1190 +2006-04-01,"Industrial Consumption","Mississippi","MS",7584 +2006-04-01,"Industrial Consumption","Alabama","AL",11889 +2006-04-01,"Industrial Consumption","Wisconsin","WI",8729 +2006-04-01,"Industrial Consumption","New Jersey","NJ",5651 +2006-04-01,"Industrial Consumption","Michigan","MI",16904 +2006-04-01,"Industrial Consumption","Indiana","IN",20862 +2006-04-01,"Industrial Consumption","Illinois","IL",19712 +2006-04-01,"Industrial Consumption","Alaska","AK",2898 +2006-04-01,"Industrial Consumption","South Carolina","SC",6505 +2006-04-01,"Industrial Consumption","Nebraska","NE",4299 +2006-04-01,"Industrial Consumption","Virginia","VA",6039 +2006-04-01,"Industrial Consumption","Idaho","ID",1964 +2006-04-01,"Industrial Consumption","Georgia","GA",12291 +2006-04-01,"Industrial Consumption","Missouri","MO",5168 +2006-04-01,"Industrial Consumption","South Dakota","SD",886 +2006-04-01,"Industrial Consumption","New Mexico","NM",1606 +2006-04-01,"Industrial Consumption","U.S.","U.S.",534140 +2006-04-01,"Industrial Consumption","Wyoming","WY",3317 +2006-04-01,"Industrial Consumption","District of Columbia","DC",0 +2006-04-01,"Industrial Consumption","Louisiana","LA",66764 +2006-04-01,"Industrial Consumption","Washington","WA",5914 +2006-04-01,"Industrial Consumption","Kansas","KS",8693 +2006-04-01,"Industrial Consumption","Oregon","OR",5880 +2006-04-01,"Industrial Consumption","Tennessee","TN",7409 +2006-04-01,"Industrial Consumption","New Hampshire","NH",530 +2006-04-01,"Industrial Consumption","Connecticut","CT",1844 +2006-04-01,"Industrial Consumption","Rhode Island","RI",560 +2006-04-01,"Industrial Consumption","Oklahoma","OK",13489 +2006-04-01,"Industrial Consumption","Colorado","CO",7510 +2006-04-01,"Industrial Consumption","Arizona","AZ",1518 +2006-04-01,"Industrial Consumption","Pennsylvania","PA",15765 +2006-04-01,"Industrial Consumption","California","CA",60888 +2006-04-01,"Industrial Consumption","Vermont","VT",229 +2006-04-01,"Industrial Consumption","Kentucky","KY",9263 +2006-04-01,"Industrial Consumption","North Dakota","ND",1548 +2006-04-01,"Industrial Consumption","Montana","MT",2044 +2006-04-01,"Industrial Consumption","Utah","UT",2568 +2006-04-01,"Industrial Consumption","Texas","TX",108376 +2006-04-01,"Industrial Consumption","West Virginia","WV",2462 +2006-04-01,"Industrial Consumption","Delaware","DE",1032 +2006-04-01,"Industrial Consumption","Maryland","MD",1857 +2006-04-01,"Industrial Consumption","Hawaii","HI",34 +2006-04-01,"Industrial Consumption","Ohio","OH",22099 +2006-04-01,"Industrial Consumption","New York","NY",6203 +2006-04-01,"Industrial Consumption","Iowa","IA",8616 +2006-04-01,"Industrial Consumption","Florida","FL",6119 +2006-04-01,"Industrial Consumption","North Carolina","NC",6857 +2006-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",92558 +2006-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",45145 +2006-04-01,"Residential Consumption","Louisiana","LA",2219 +2006-04-01,"Residential Consumption","Pennsylvania","PA",17012 +2006-04-01,"Residential Consumption","Kentucky","KY",2801 +2006-04-01,"Residential Consumption","Kansas","KS",4427 +2006-04-01,"Residential Consumption","Delaware","DE",710 +2006-04-01,"Residential Consumption","Texas","TX",11741 +2006-04-01,"Residential Consumption","Rhode Island","RI",2094 +2006-04-01,"Residential Consumption","Mississippi","MS",1514 +2006-04-01,"Residential Consumption","Connecticut","CT",3662 +2006-04-01,"Residential Consumption","Idaho","ID",2132 +2006-04-01,"Residential Consumption","New Jersey","NJ",16112 +2006-04-01,"Residential Consumption","Montana","MT",1813 +2006-04-01,"Residential Consumption","Washington","WA",6762 +2006-04-01,"Residential Consumption","Alaska","AK",1683 +2006-04-01,"Residential Consumption","Iowa","IA",4421 +2006-04-01,"Residential Consumption","Maryland","MD",4455 +2006-04-01,"Residential Consumption","Oklahoma","OK",4439 +2006-04-01,"Residential Consumption","Oregon","OR",3858 +2006-04-01,"Residential Consumption","Ohio","OH",19397 +2006-04-01,"Residential Consumption","Tennessee","TN",4846 +2006-04-01,"Residential Consumption","Georgia","GA",5345 +2006-04-01,"Residential Consumption","U.S.","U.S.",355496 +2006-04-01,"Residential Consumption","South Carolina","SC",1677 +2006-04-01,"Residential Consumption","Vermont","VT",288 +2006-04-01,"Residential Consumption","Nebraska","NE",3510 +2006-04-01,"Residential Consumption","Michigan","MI",27486 +2006-04-01,"Residential Consumption","District of Columbia","DC",600 +2006-04-01,"Residential Consumption","Florida","FL",1345 +2006-04-01,"Residential Consumption","Missouri","MO",7433 +2006-04-01,"Residential Consumption","Hawaii","HI",47 +2006-04-01,"Residential Consumption","Utah","UT",6167 +2006-04-01,"Residential Consumption","Minnesota","MN",6969 +2006-04-01,"Residential Consumption","New Mexico","NM",2768 +2006-04-01,"Residential Consumption","Maine","ME",87 +2006-04-01,"Residential Consumption","North Dakota","ND",565 +2006-04-01,"Residential Consumption","Arkansas","AR",2631 +2006-04-01,"Residential Consumption","Arizona","AZ",3120 +2006-04-01,"Residential Consumption","Alabama","AL",3006 +2006-04-01,"Residential Consumption","New York","NY",33443 +2006-04-01,"Residential Consumption","North Carolina","NC",4414 +2006-04-01,"Residential Consumption","Nevada","NV",3334 +2006-04-01,"Residential Consumption","Colorado","CO",8243 +2006-04-01,"Residential Consumption","Wisconsin","WI",8047 +2006-04-01,"Residential Consumption","Virginia","VA",3785 +2006-04-01,"Residential Consumption","South Dakota","SD",870 +2006-04-01,"Residential Consumption","Indiana","IN",7713 +2006-04-01,"Residential Consumption","Massachusetts","MA",10286 +2006-04-01,"Residential Consumption","New Hampshire","NH",689 +2006-04-01,"Residential Consumption","California","CA",47329 +2006-04-01,"Residential Consumption","Wyoming","WY",1115 +2006-04-01,"Residential Consumption","West Virginia","WV",2280 +2006-04-01,"Residential Consumption","Illinois","IL",34812 +2006-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",1951 +2006-05-01,"Commercial Consumption","Pennsylvania","PA",6628 +2006-05-01,"Commercial Consumption","Missouri","MO",2631 +2006-05-01,"Commercial Consumption","Kansas","KS",1095 +2006-05-01,"Commercial Consumption","Florida","FL",4037 +2006-05-01,"Commercial Consumption","New York","NY",15611 +2006-05-01,"Commercial Consumption","Utah","UT",1943 +2006-05-01,"Commercial Consumption","Oklahoma","OK",1678 +2006-05-01,"Commercial Consumption","Massachusetts","MA",3099 +2006-05-01,"Commercial Consumption","New Hampshire","NH",491 +2006-05-01,"Commercial Consumption","Maine","ME",231 +2006-05-01,"Commercial Consumption","Idaho","ID",629 +2006-05-01,"Commercial Consumption","Iowa","IA",1993 +2006-05-01,"Commercial Consumption","Arizona","AZ",2245 +2006-05-01,"Commercial Consumption","West Virginia","WV",1420 +2006-05-01,"Commercial Consumption","Washington","WA",3275 +2006-05-01,"Commercial Consumption","Minnesota","MN",3889 +2006-05-01,"Commercial Consumption","New Jersey","NJ",9603 +2006-05-01,"Commercial Consumption","Kentucky","KY",1394 +2006-05-01,"Commercial Consumption","Michigan","MI",7833 +2006-05-01,"Commercial Consumption","Louisiana","LA",1473 +2006-05-01,"Commercial Consumption","Wyoming","WY",616 +2006-05-01,"Commercial Consumption","Ohio","OH",7527 +2006-05-01,"Commercial Consumption","Hawaii","HI",154 +2006-05-01,"Commercial Consumption","California","CA",18659 +2006-05-01,"Commercial Consumption","Nebraska","NE",1515 +2006-05-01,"Commercial Consumption","Mississippi","MS",872 +2006-05-01,"Commercial Consumption","Virginia","VA",3735 +2006-05-01,"Commercial Consumption","Wisconsin","WI",3938 +2006-05-01,"Commercial Consumption","Montana","MT",695 +2006-05-01,"Commercial Consumption","Maryland","MD",3440 +2006-05-01,"Commercial Consumption","Alaska","AK",1003 +2006-05-01,"Commercial Consumption","Alabama","AL",1328 +2006-05-01,"Commercial Consumption","Delaware","DE",410 +2006-05-01,"Commercial Consumption","Tennessee","TN",2569 +2006-05-01,"Commercial Consumption","Oregon","OR",1645 +2006-05-01,"Commercial Consumption","District of Columbia","DC",933 +2006-05-01,"Commercial Consumption","U.S.","U.S.",160316 +2006-05-01,"Commercial Consumption","Vermont","VT",132 +2006-05-01,"Commercial Consumption","Rhode Island","RI",649 +2006-05-01,"Commercial Consumption","Arkansas","AR",1719 +2006-05-01,"Commercial Consumption","Nevada","NV",1867 +2006-05-01,"Commercial Consumption","Indiana","IN",3166 +2006-05-01,"Commercial Consumption","Illinois","IL",9521 +2006-05-01,"Commercial Consumption","South Carolina","SC",1342 +2006-05-01,"Commercial Consumption","North Dakota","ND",416 +2006-05-01,"Commercial Consumption","North Carolina","NC",2561 +2006-05-01,"Commercial Consumption","Colorado","CO",2952 +2006-05-01,"Commercial Consumption","New Mexico","NM",1348 +2006-05-01,"Commercial Consumption","South Dakota","SD",396 +2006-05-01,"Commercial Consumption","Texas","TX",9748 +2006-05-01,"Commercial Consumption","Georgia","GA",2293 +2006-05-01,"Commercial Consumption","Connecticut","CT",1970 +2006-05-01,"Delivered to Consumers","South Dakota","SD",1775 +2006-05-01,"Delivered to Consumers","Idaho","ID",3877 +2006-05-01,"Delivered to Consumers","Alabama","AL",26745 +2006-05-01,"Delivered to Consumers","Virginia","VA",13141 +2006-05-01,"Delivered to Consumers","North Carolina","NC",13091 +2006-05-01,"Delivered to Consumers","Mississippi","MS",20121 +2006-05-01,"Delivered to Consumers","Oregon","OR",10230 +2006-05-01,"Delivered to Consumers","Georgia","GA",26891 +2006-05-01,"Delivered to Consumers","Minnesota","MN",15506 +2006-05-01,"Delivered to Consumers","Indiana","IN",30004 +2006-05-01,"Delivered to Consumers","Wisconsin","WI",20527 +2006-05-01,"Delivered to Consumers","Missouri","MO",13872 +2006-05-01,"Delivered to Consumers","Texas","TX",261204 +2006-05-01,"Delivered to Consumers","Utah","UT",8309 +2006-05-01,"Delivered to Consumers","Montana","MT",3562 +2006-05-01,"Delivered to Consumers","Ohio","OH",42766 +2006-05-01,"Delivered to Consumers","Massachusetts","MA",26934 +2006-05-01,"Delivered to Consumers","Illinois","IL",49546 +2006-05-01,"Delivered to Consumers","Rhode Island","RI",5935 +2006-05-01,"Delivered to Consumers","Tennessee","TN",12157 +2006-05-01,"Delivered to Consumers","Kentucky","KY",13054 +2006-05-01,"Delivered to Consumers","Pennsylvania","PA",37224 +2006-05-01,"Delivered to Consumers","South Carolina","SC",11535 +2006-05-01,"Delivered to Consumers","Nevada","NV",17142 +2006-05-01,"Delivered to Consumers","District of Columbia","DC",1375 +2006-05-01,"Delivered to Consumers","New Mexico","NM",9189 +2006-05-01,"Delivered to Consumers","West Virginia","WV",5534 +2006-05-01,"Delivered to Consumers","Alaska","AK",8450 +2006-05-01,"Delivered to Consumers","Iowa","IA",14088 +2006-05-01,"Delivered to Consumers","Nebraska","NE",7411 +2006-05-01,"Delivered to Consumers","Colorado","CO",20799 +2006-05-01,"Delivered to Consumers","California","CA",163781 +2006-05-01,"Delivered to Consumers","Maryland","MD",9034 +2006-05-01,"Delivered to Consumers","Oklahoma","OK",43689 +2006-05-01,"Delivered to Consumers","New Jersey","NJ",32890 +2006-05-01,"Delivered to Consumers","New Hampshire","NH",2505 +2006-05-01,"Delivered to Consumers","North Dakota","ND",2395 +2006-05-01,"Delivered to Consumers","Delaware","DE",2659 +2006-05-01,"Delivered to Consumers","Wyoming","WY",4762 +2006-05-01,"Delivered to Consumers","Hawaii","HI",239 +2006-05-01,"Delivered to Consumers","Kansas","KS",12748 +2006-05-01,"Delivered to Consumers","Michigan","MI",43901 +2006-05-01,"Delivered to Consumers","Arkansas","AR",17865 +2006-05-01,"Delivered to Consumers","Maine","ME",5138 +2006-05-01,"Delivered to Consumers","Louisiana","LA",88047 +2006-05-01,"Delivered to Consumers","Arizona","AZ",22339 +2006-05-01,"Delivered to Consumers","Washington","WA",14131 +2006-05-01,"Delivered to Consumers","U.S.","U.S.",1390353 +2006-05-01,"Delivered to Consumers","Vermont","VT",501 +2006-05-01,"Delivered to Consumers","New York","NY",72223 +2006-05-01,"Delivered to Consumers","Connecticut","CT",12151 +2006-05-01,"Delivered to Consumers","Florida","FL",85346 +2006-05-01,"Electric Power Consumption","Colorado","CO",5933 +2006-05-01,"Electric Power Consumption","Wisconsin","WI",3028 +2006-05-01,"Electric Power Consumption","Alaska","AK",3327 +2006-05-01,"Electric Power Consumption","Arkansas","AR",7993 +2006-05-01,"Electric Power Consumption","Michigan","MI",8049 +2006-05-01,"Electric Power Consumption","Kansas","KS",1771 +2006-05-01,"Electric Power Consumption","New Hampshire","NH",1105 +2006-05-01,"Electric Power Consumption","Delaware","DE",530 +2006-05-01,"Electric Power Consumption","Arizona","AZ",16913 +2006-05-01,"Electric Power Consumption","California","CA",54019 +2006-05-01,"Electric Power Consumption","Washington","WA",970 +2006-05-01,"Electric Power Consumption","Utah","UT",1034 +2006-05-01,"Electric Power Consumption","Illinois","IL",3469 +2006-05-01,"Electric Power Consumption","Tennessee","TN",216 +2006-05-01,"Electric Power Consumption","South Dakota","SD",126 +2006-05-01,"Electric Power Consumption","North Carolina","NC",1514 +2006-05-01,"Electric Power Consumption","Mississippi","MS",10981 +2006-05-01,"Electric Power Consumption","Georgia","GA",7215 +2006-05-01,"Electric Power Consumption","New Mexico","NM",5047 +2006-05-01,"Electric Power Consumption","Louisiana","LA",16160 +2006-05-01,"Electric Power Consumption","Idaho","ID",399 +2006-05-01,"Electric Power Consumption","New York","NY",31902 +2006-05-01,"Electric Power Consumption","Rhode Island","RI",3537 +2006-05-01,"Electric Power Consumption","Oklahoma","OK",27763 +2006-05-01,"Electric Power Consumption","Minnesota","MN",1060 +2006-05-01,"Electric Power Consumption","Massachusetts","MA",14552 +2006-05-01,"Electric Power Consumption","Nevada","NV",12372 +2006-05-01,"Electric Power Consumption","Kentucky","KY",1084 +2006-05-01,"Electric Power Consumption","Maryland","MD",1201 +2006-05-01,"Electric Power Consumption","New Jersey","NJ",10571 +2006-05-01,"Electric Power Consumption","South Carolina","SC",2545 +2006-05-01,"Electric Power Consumption","Vermont","VT",2 +2006-05-01,"Electric Power Consumption","U.S.","U.S.",504409 +2006-05-01,"Electric Power Consumption","Hawaii","HI",NA +2006-05-01,"Electric Power Consumption","North Dakota","ND",0 +2006-05-01,"Electric Power Consumption","Virginia","VA",2191 +2006-05-01,"Electric Power Consumption","Texas","TX",134777 +2006-05-01,"Electric Power Consumption","West Virginia","WV",263 +2006-05-01,"Electric Power Consumption","Pennsylvania","PA",6787 +2006-05-01,"Electric Power Consumption","Iowa","IA",1672 +2006-05-01,"Electric Power Consumption","Maine","ME",3514 +2006-05-01,"Electric Power Consumption","Ohio","OH",1213 +2006-05-01,"Electric Power Consumption","Connecticut","CT",6143 +2006-05-01,"Electric Power Consumption","Florida","FL",73935 +2006-05-01,"Electric Power Consumption","Wyoming","WY",57 +2006-05-01,"Electric Power Consumption","Nebraska","NE",503 +2006-05-01,"Electric Power Consumption","Missouri","MO",2864 +2006-05-01,"Electric Power Consumption","Montana","MT",11 +2006-05-01,"Electric Power Consumption","Alabama","AL",11642 +2006-05-01,"Electric Power Consumption","Oregon","OR",711 +2006-05-01,"Electric Power Consumption","Indiana","IN",1740 +2006-05-01,"Industrial Consumption","Montana","MT",1766 +2006-05-01,"Industrial Consumption","Ohio","OH",22468 +2006-05-01,"Industrial Consumption","Nevada","NV",1087 +2006-05-01,"Industrial Consumption","Maine","ME",1342 +2006-05-01,"Industrial Consumption","Nebraska","NE",3657 +2006-05-01,"Industrial Consumption","Wyoming","WY",3386 +2006-05-01,"Industrial Consumption","New Jersey","NJ",5115 +2006-05-01,"Industrial Consumption","Connecticut","CT",1711 +2006-05-01,"Industrial Consumption","Kentucky","KY",9134 +2006-05-01,"Industrial Consumption","North Dakota","ND",1615 +2006-05-01,"Industrial Consumption","Maryland","MD",1884 +2006-05-01,"Industrial Consumption","Hawaii","HI",38 +2006-05-01,"Industrial Consumption","Washington","WA",5577 +2006-05-01,"Industrial Consumption","South Dakota","SD",758 +2006-05-01,"Industrial Consumption","U.S.","U.S.",520100 +2006-05-01,"Industrial Consumption","Alabama","AL",12438 +2006-05-01,"Industrial Consumption","Virginia","VA",4705 +2006-05-01,"Industrial Consumption","Delaware","DE",1376 +2006-05-01,"Industrial Consumption","Missouri","MO",4767 +2006-05-01,"Industrial Consumption","Colorado","CO",7333 +2006-05-01,"Industrial Consumption","New Mexico","NM",1482 +2006-05-01,"Industrial Consumption","Utah","UT",2348 +2006-05-01,"Industrial Consumption","Oregon","OR",5649 +2006-05-01,"Industrial Consumption","New York","NY",5738 +2006-05-01,"Industrial Consumption","Wisconsin","WI",8478 +2006-05-01,"Industrial Consumption","Tennessee","TN",7578 +2006-05-01,"Industrial Consumption","Minnesota","MN",5878 +2006-05-01,"Industrial Consumption","Florida","FL",6354 +2006-05-01,"Industrial Consumption","North Carolina","NC",7138 +2006-05-01,"Industrial Consumption","District of Columbia","DC",0 +2006-05-01,"Industrial Consumption","Louisiana","LA",69046 +2006-05-01,"Industrial Consumption","Kansas","KS",7795 +2006-05-01,"Industrial Consumption","Arizona","AZ",1413 +2006-05-01,"Industrial Consumption","West Virginia","WV",2706 +2006-05-01,"Industrial Consumption","Vermont","VT",204 +2006-05-01,"Industrial Consumption","Illinois","IL",17441 +2006-05-01,"Industrial Consumption","Alaska","AK",3210 +2006-05-01,"Industrial Consumption","California","CA",58174 +2006-05-01,"Industrial Consumption","Idaho","ID",1902 +2006-05-01,"Industrial Consumption","Indiana","IN",19892 +2006-05-01,"Industrial Consumption","Rhode Island","RI",533 +2006-05-01,"Industrial Consumption","Oklahoma","OK",12310 +2006-05-01,"Industrial Consumption","Pennsylvania","PA",14948 +2006-05-01,"Industrial Consumption","Texas","TX",109687 +2006-05-01,"Industrial Consumption","South Carolina","SC",6972 +2006-05-01,"Industrial Consumption","Iowa","IA",8007 +2006-05-01,"Industrial Consumption","Georgia","GA",12906 +2006-05-01,"Industrial Consumption","Massachusetts","MA",3060 +2006-05-01,"Industrial Consumption","Mississippi","MS",7858 +2006-05-01,"Industrial Consumption","Arkansas","AR",7073 +2006-05-01,"Industrial Consumption","New Hampshire","NH",538 +2006-05-01,"Industrial Consumption","Michigan","MI",13629 +2006-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95279 +2006-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",40665 +2006-05-01,"Residential Consumption","Tennessee","TN",1795 +2006-05-01,"Residential Consumption","Pennsylvania","PA",8861 +2006-05-01,"Residential Consumption","Kentucky","KY",1443 +2006-05-01,"Residential Consumption","Delaware","DE",343 +2006-05-01,"Residential Consumption","Texas","TX",6993 +2006-05-01,"Residential Consumption","Louisiana","LA",1368 +2006-05-01,"Residential Consumption","Vermont","VT",163 +2006-05-01,"Residential Consumption","North Dakota","ND",365 +2006-05-01,"Residential Consumption","Rhode Island","RI",1216 +2006-05-01,"Residential Consumption","Connecticut","CT",2327 +2006-05-01,"Residential Consumption","Utah","UT",2983 +2006-05-01,"Residential Consumption","Nebraska","NE",1736 +2006-05-01,"Residential Consumption","New Jersey","NJ",7601 +2006-05-01,"Residential Consumption","New Hampshire","NH",371 +2006-05-01,"Residential Consumption","Colorado","CO",4581 +2006-05-01,"Residential Consumption","Illinois","IL",19116 +2006-05-01,"Residential Consumption","South Carolina","SC",676 +2006-05-01,"Residential Consumption","South Dakota","SD",495 +2006-05-01,"Residential Consumption","Georgia","GA",4477 +2006-05-01,"Residential Consumption","District of Columbia","DC",442 +2006-05-01,"Residential Consumption","New Mexico","NM",1313 +2006-05-01,"Residential Consumption","Florida","FL",1020 +2006-05-01,"Residential Consumption","Massachusetts","MA",6223 +2006-05-01,"Residential Consumption","Iowa","IA",2416 +2006-05-01,"Residential Consumption","Virginia","VA",2510 +2006-05-01,"Residential Consumption","Maryland","MD",2508 +2006-05-01,"Residential Consumption","Nevada","NV",1816 +2006-05-01,"Residential Consumption","Kansas","KS",2088 +2006-05-01,"Residential Consumption","Washington","WA",4308 +2006-05-01,"Residential Consumption","California","CA",32929 +2006-05-01,"Residential Consumption","West Virginia","WV",1145 +2006-05-01,"Residential Consumption","Mississippi","MS",411 +2006-05-01,"Residential Consumption","Wisconsin","WI",5083 +2006-05-01,"Residential Consumption","Minnesota","MN",4679 +2006-05-01,"Residential Consumption","Maine","ME",52 +2006-05-01,"Residential Consumption","Oklahoma","OK",1938 +2006-05-01,"Residential Consumption","Missouri","MO",3610 +2006-05-01,"Residential Consumption","Arizona","AZ",1769 +2006-05-01,"Residential Consumption","New York","NY",18971 +2006-05-01,"Residential Consumption","Oregon","OR",2225 +2006-05-01,"Residential Consumption","Ohio","OH",11557 +2006-05-01,"Residential Consumption","North Carolina","NC",1879 +2006-05-01,"Residential Consumption","Michigan","MI",14390 +2006-05-01,"Residential Consumption","Indiana","IN",5205 +2006-05-01,"Residential Consumption","Arkansas","AR",1081 +2006-05-01,"Residential Consumption","Montana","MT",1090 +2006-05-01,"Residential Consumption","Wyoming","WY",703 +2006-05-01,"Residential Consumption","U.S.","U.S.",203512 +2006-05-01,"Residential Consumption","Hawaii","HI",47 +2006-05-01,"Residential Consumption","Idaho","ID",947 +2006-05-01,"Residential Consumption","Alabama","AL",1337 +2006-05-01,"Residential Consumption","Alaska","AK",910 +2006-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2016 +2006-06-01,"Commercial Consumption","Oregon","OR",1243 +2006-06-01,"Commercial Consumption","U.S.","U.S.",134267 +2006-06-01,"Commercial Consumption","Nebraska","NE",1180 +2006-06-01,"Commercial Consumption","Colorado","CO",2015 +2006-06-01,"Commercial Consumption","Utah","UT",1316 +2006-06-01,"Commercial Consumption","New Mexico","NM",1003 +2006-06-01,"Commercial Consumption","Wisconsin","WI",2968 +2006-06-01,"Commercial Consumption","New Jersey","NJ",7558 +2006-06-01,"Commercial Consumption","Montana","MT",581 +2006-06-01,"Commercial Consumption","Kansas","KS",972 +2006-06-01,"Commercial Consumption","Vermont","VT",109 +2006-06-01,"Commercial Consumption","Iowa","IA",1675 +2006-06-01,"Commercial Consumption","Hawaii","HI",154 +2006-06-01,"Commercial Consumption","California","CA",16958 +2006-06-01,"Commercial Consumption","Mississippi","MS",946 +2006-06-01,"Commercial Consumption","West Virginia","WV",1171 +2006-06-01,"Commercial Consumption","Washington","WA",2493 +2006-06-01,"Commercial Consumption","South Carolina","SC",1174 +2006-06-01,"Commercial Consumption","Maryland","MD",3084 +2006-06-01,"Commercial Consumption","Missouri","MO",2213 +2006-06-01,"Commercial Consumption","Ohio","OH",4677 +2006-06-01,"Commercial Consumption","Alabama","AL",1296 +2006-06-01,"Commercial Consumption","Arizona","AZ",2021 +2006-06-01,"Commercial Consumption","District of Columbia","DC",812 +2006-06-01,"Commercial Consumption","North Dakota","ND",279 +2006-06-01,"Commercial Consumption","Minnesota","MN",3637 +2006-06-01,"Commercial Consumption","Maine","ME",164 +2006-06-01,"Commercial Consumption","Kentucky","KY",1092 +2006-06-01,"Commercial Consumption","Rhode Island","RI",392 +2006-06-01,"Commercial Consumption","Arkansas","AR",1583 +2006-06-01,"Commercial Consumption","Delaware","DE",358 +2006-06-01,"Commercial Consumption","Wyoming","WY",369 +2006-06-01,"Commercial Consumption","Massachusetts","MA",2514 +2006-06-01,"Commercial Consumption","South Dakota","SD",284 +2006-06-01,"Commercial Consumption","Texas","TX",9499 +2006-06-01,"Commercial Consumption","Idaho","ID",480 +2006-06-01,"Commercial Consumption","Indiana","IN",2182 +2006-06-01,"Commercial Consumption","Oklahoma","OK",1421 +2006-06-01,"Commercial Consumption","Virginia","VA",2781 +2006-06-01,"Commercial Consumption","New Hampshire","NH",361 +2006-06-01,"Commercial Consumption","Florida","FL",3810 +2006-06-01,"Commercial Consumption","Connecticut","CT",1463 +2006-06-01,"Commercial Consumption","Nevada","NV",1683 +2006-06-01,"Commercial Consumption","Michigan","MI",5495 +2006-06-01,"Commercial Consumption","Illinois","IL",8929 +2006-06-01,"Commercial Consumption","North Carolina","NC",2232 +2006-06-01,"Commercial Consumption","Pennsylvania","PA",4950 +2006-06-01,"Commercial Consumption","Georgia","GA",2056 +2006-06-01,"Commercial Consumption","Alaska","AK",748 +2006-06-01,"Commercial Consumption","New York","NY",13993 +2006-06-01,"Commercial Consumption","Tennessee","TN",2448 +2006-06-01,"Commercial Consumption","Louisiana","LA",1442 +2006-06-01,"Delivered to Consumers","U.S.","U.S.",1415134 +2006-06-01,"Delivered to Consumers","New Mexico","NM",9086 +2006-06-01,"Delivered to Consumers","Hawaii","HI",235 +2006-06-01,"Delivered to Consumers","Tennessee","TN",11446 +2006-06-01,"Delivered to Consumers","Iowa","IA",12588 +2006-06-01,"Delivered to Consumers","Wisconsin","WI",17607 +2006-06-01,"Delivered to Consumers","Nebraska","NE",7500 +2006-06-01,"Delivered to Consumers","Mississippi","MS",28140 +2006-06-01,"Delivered to Consumers","South Carolina","SC",13578 +2006-06-01,"Delivered to Consumers","New Jersey","NJ",32020 +2006-06-01,"Delivered to Consumers","Georgia","GA",30790 +2006-06-01,"Delivered to Consumers","Maryland","MD",9251 +2006-06-01,"Delivered to Consumers","Arkansas","AR",19198 +2006-06-01,"Delivered to Consumers","Virginia","VA",18076 +2006-06-01,"Delivered to Consumers","Pennsylvania","PA",36803 +2006-06-01,"Delivered to Consumers","Nevada","NV",20713 +2006-06-01,"Delivered to Consumers","Washington","WA",12401 +2006-06-01,"Delivered to Consumers","Indiana","IN",26873 +2006-06-01,"Delivered to Consumers","Wyoming","WY",4109 +2006-06-01,"Delivered to Consumers","West Virginia","WV",4220 +2006-06-01,"Delivered to Consumers","Missouri","MO",13187 +2006-06-01,"Delivered to Consumers","Massachusetts","MA",25998 +2006-06-01,"Delivered to Consumers","California","CA",167537 +2006-06-01,"Delivered to Consumers","Utah","UT",8516 +2006-06-01,"Delivered to Consumers","Illinois","IL",41255 +2006-06-01,"Delivered to Consumers","Connecticut","CT",11858 +2006-06-01,"Delivered to Consumers","Alabama","AL",33454 +2006-06-01,"Delivered to Consumers","Colorado","CO",20115 +2006-06-01,"Delivered to Consumers","Texas","TX",280602 +2006-06-01,"Delivered to Consumers","Minnesota","MN",16382 +2006-06-01,"Delivered to Consumers","District of Columbia","DC",1092 +2006-06-01,"Delivered to Consumers","Rhode Island","RI",5619 +2006-06-01,"Delivered to Consumers","Montana","MT",2786 +2006-06-01,"Delivered to Consumers","Kansas","KS",14289 +2006-06-01,"Delivered to Consumers","Delaware","DE",3204 +2006-06-01,"Delivered to Consumers","New York","NY",71803 +2006-06-01,"Delivered to Consumers","Oregon","OR",10669 +2006-06-01,"Delivered to Consumers","Louisiana","LA",89170 +2006-06-01,"Delivered to Consumers","Arizona","AZ",30548 +2006-06-01,"Delivered to Consumers","New Hampshire","NH",2608 +2006-06-01,"Delivered to Consumers","Vermont","VT",415 +2006-06-01,"Delivered to Consumers","South Dakota","SD",1716 +2006-06-01,"Delivered to Consumers","Alaska","AK",8945 +2006-06-01,"Delivered to Consumers","Oklahoma","OK",44512 +2006-06-01,"Delivered to Consumers","Kentucky","KY",12108 +2006-06-01,"Delivered to Consumers","Idaho","ID",3562 +2006-06-01,"Delivered to Consumers","Ohio","OH",33443 +2006-06-01,"Delivered to Consumers","Michigan","MI",35824 +2006-06-01,"Delivered to Consumers","North Carolina","NC",13120 +2006-06-01,"Delivered to Consumers","Maine","ME",4996 +2006-06-01,"Delivered to Consumers","North Dakota","ND",1945 +2006-06-01,"Delivered to Consumers","Florida","FL",87268 +2006-06-01,"Electric Power Consumption","Illinois","IL",4022 +2006-06-01,"Electric Power Consumption","Pennsylvania","PA",11967 +2006-06-01,"Electric Power Consumption","Kentucky","KY",1504 +2006-06-01,"Electric Power Consumption","North Dakota","ND",0 +2006-06-01,"Electric Power Consumption","California","CA",66829 +2006-06-01,"Electric Power Consumption","Alaska","AK",3641 +2006-06-01,"Electric Power Consumption","South Carolina","SC",5577 +2006-06-01,"Electric Power Consumption","Hawaii","HI",NA +2006-06-01,"Electric Power Consumption","Ohio","OH",1904 +2006-06-01,"Electric Power Consumption","Indiana","IN",2619 +2006-06-01,"Electric Power Consumption","Virginia","VA",7879 +2006-06-01,"Electric Power Consumption","New Mexico","NM",5678 +2006-06-01,"Electric Power Consumption","New York","NY",40392 +2006-06-01,"Electric Power Consumption","Minnesota","MN",1912 +2006-06-01,"Electric Power Consumption","Massachusetts","MA",16900 +2006-06-01,"Electric Power Consumption","Nevada","NV",16470 +2006-06-01,"Electric Power Consumption","Wyoming","WY",79 +2006-06-01,"Electric Power Consumption","Iowa","IA",1780 +2006-06-01,"Electric Power Consumption","U.S.","U.S.",629660 +2006-06-01,"Electric Power Consumption","Missouri","MO",3664 +2006-06-01,"Electric Power Consumption","Idaho","ID",445 +2006-06-01,"Electric Power Consumption","Wisconsin","WI",3444 +2006-06-01,"Electric Power Consumption","Vermont","VT",3 +2006-06-01,"Electric Power Consumption","Rhode Island","RI",3934 +2006-06-01,"Electric Power Consumption","West Virginia","WV",252 +2006-06-01,"Electric Power Consumption","South Dakota","SD",454 +2006-06-01,"Electric Power Consumption","Delaware","DE",1286 +2006-06-01,"Electric Power Consumption","Connecticut","CT",7470 +2006-06-01,"Electric Power Consumption","Arizona","AZ",25899 +2006-06-01,"Electric Power Consumption","Georgia","GA",11768 +2006-06-01,"Electric Power Consumption","Florida","FL",76547 +2006-06-01,"Electric Power Consumption","Louisiana","LA",19846 +2006-06-01,"Electric Power Consumption","Arkansas","AR",9918 +2006-06-01,"Electric Power Consumption","Oregon","OR",2700 +2006-06-01,"Electric Power Consumption","Kansas","KS",2491 +2006-06-01,"Electric Power Consumption","Nebraska","NE",742 +2006-06-01,"Electric Power Consumption","North Carolina","NC",2788 +2006-06-01,"Electric Power Consumption","Mississippi","MS",18748 +2006-06-01,"Electric Power Consumption","Maryland","MD",2296 +2006-06-01,"Electric Power Consumption","Washington","WA",1956 +2006-06-01,"Electric Power Consumption","Oklahoma","OK",28692 +2006-06-01,"Electric Power Consumption","Michigan","MI",8207 +2006-06-01,"Electric Power Consumption","Tennessee","TN",629 +2006-06-01,"Electric Power Consumption","New Hampshire","NH",1614 +2006-06-01,"Electric Power Consumption","New Jersey","NJ",13402 +2006-06-01,"Electric Power Consumption","Colorado","CO",8172 +2006-06-01,"Electric Power Consumption","Texas","TX",157909 +2006-06-01,"Electric Power Consumption","Utah","UT",2619 +2006-06-01,"Electric Power Consumption","Maine","ME",3478 +2006-06-01,"Electric Power Consumption","Montana","MT",68 +2006-06-01,"Electric Power Consumption","Alabama","AL",19064 +2006-06-01,"Industrial Consumption","Montana","MT",1524 +2006-06-01,"Industrial Consumption","New Mexico","NM",1462 +2006-06-01,"Industrial Consumption","Arizona","AZ",1284 +2006-06-01,"Industrial Consumption","Kentucky","KY",8377 +2006-06-01,"Industrial Consumption","Hawaii","HI",37 +2006-06-01,"Industrial Consumption","South Dakota","SD",704 +2006-06-01,"Industrial Consumption","Utah","UT",2409 +2006-06-01,"Industrial Consumption","Nevada","NV",1045 +2006-06-01,"Industrial Consumption","Mississippi","MS",7869 +2006-06-01,"Industrial Consumption","Arkansas","AR",6819 +2006-06-01,"Industrial Consumption","South Carolina","SC",6279 +2006-06-01,"Industrial Consumption","Wisconsin","WI",7985 +2006-06-01,"Industrial Consumption","Connecticut","CT",1553 +2006-06-01,"Industrial Consumption","Oklahoma","OK",12862 +2006-06-01,"Industrial Consumption","U.S.","U.S.",508098 +2006-06-01,"Industrial Consumption","California","CA",57333 +2006-06-01,"Industrial Consumption","Virginia","VA",5879 +2006-06-01,"Industrial Consumption","New Hampshire","NH",374 +2006-06-01,"Industrial Consumption","Michigan","MI",13233 +2006-06-01,"Industrial Consumption","Maryland","MD",1899 +2006-06-01,"Industrial Consumption","Maine","ME",1337 +2006-06-01,"Industrial Consumption","Vermont","VT",190 +2006-06-01,"Industrial Consumption","Indiana","IN",19018 +2006-06-01,"Industrial Consumption","Washington","WA",5305 +2006-06-01,"Industrial Consumption","Texas","TX",106883 +2006-06-01,"Industrial Consumption","Nebraska","NE",4541 +2006-06-01,"Industrial Consumption","New Jersey","NJ",5040 +2006-06-01,"Industrial Consumption","Iowa","IA",7554 +2006-06-01,"Industrial Consumption","Florida","FL",6044 +2006-06-01,"Industrial Consumption","North Carolina","NC",6681 +2006-06-01,"Industrial Consumption","Georgia","GA",13305 +2006-06-01,"Industrial Consumption","Alaska","AK",3831 +2006-06-01,"Industrial Consumption","North Dakota","ND",1455 +2006-06-01,"Industrial Consumption","Massachusetts","MA",2599 +2006-06-01,"Industrial Consumption","Missouri","MO",4659 +2006-06-01,"Industrial Consumption","Colorado","CO",7200 +2006-06-01,"Industrial Consumption","Ohio","OH",19921 +2006-06-01,"Industrial Consumption","Oregon","OR",5323 +2006-06-01,"Industrial Consumption","New York","NY",5078 +2006-06-01,"Industrial Consumption","Tennessee","TN",6884 +2006-06-01,"Industrial Consumption","Delaware","DE",1328 +2006-06-01,"Industrial Consumption","District of Columbia","DC",0 +2006-06-01,"Industrial Consumption","Louisiana","LA",66491 +2006-06-01,"Industrial Consumption","Kansas","KS",9281 +2006-06-01,"Industrial Consumption","Pennsylvania","PA",14215 +2006-06-01,"Industrial Consumption","Alabama","AL",11946 +2006-06-01,"Industrial Consumption","Minnesota","MN",7623 +2006-06-01,"Industrial Consumption","West Virginia","WV",2178 +2006-06-01,"Industrial Consumption","Wyoming","WY",3298 +2006-06-01,"Industrial Consumption","Idaho","ID",1977 +2006-06-01,"Industrial Consumption","Illinois","IL",17451 +2006-06-01,"Industrial Consumption","Rhode Island","RI",536 +2006-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94355 +2006-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",41391 +2006-06-01,"Residential Consumption","Mississippi","MS",577 +2006-06-01,"Residential Consumption","Tennessee","TN",1485 +2006-06-01,"Residential Consumption","Nebraska","NE",1037 +2006-06-01,"Residential Consumption","District of Columbia","DC",280 +2006-06-01,"Residential Consumption","Indiana","IN",3054 +2006-06-01,"Residential Consumption","Florida","FL",867 +2006-06-01,"Residential Consumption","Colorado","CO",2727 +2006-06-01,"Residential Consumption","Arizona","AZ",1344 +2006-06-01,"Residential Consumption","Alabama","AL",1147 +2006-06-01,"Residential Consumption","Rhode Island","RI",758 +2006-06-01,"Residential Consumption","Michigan","MI",8889 +2006-06-01,"Residential Consumption","Maryland","MD",1972 +2006-06-01,"Residential Consumption","Pennsylvania","PA",5671 +2006-06-01,"Residential Consumption","New Mexico","NM",943 +2006-06-01,"Residential Consumption","West Virginia","WV",618 +2006-06-01,"Residential Consumption","U.S.","U.S.",141157 +2006-06-01,"Residential Consumption","Texas","TX",6310 +2006-06-01,"Residential Consumption","Iowa","IA",1578 +2006-06-01,"Residential Consumption","Hawaii","HI",44 +2006-06-01,"Residential Consumption","Nevada","NV",1515 +2006-06-01,"Residential Consumption","Minnesota","MN",3211 +2006-06-01,"Residential Consumption","Idaho","ID",660 +2006-06-01,"Residential Consumption","Missouri","MO",2651 +2006-06-01,"Residential Consumption","Alaska","AK",725 +2006-06-01,"Residential Consumption","Wyoming","WY",363 +2006-06-01,"Residential Consumption","Illinois","IL",10853 +2006-06-01,"Residential Consumption","Ohio","OH",6942 +2006-06-01,"Residential Consumption","Georgia","GA",3661 +2006-06-01,"Residential Consumption","Kentucky","KY",1133 +2006-06-01,"Residential Consumption","Kansas","KS",1545 +2006-06-01,"Residential Consumption","Wisconsin","WI",3209 +2006-06-01,"Residential Consumption","South Dakota","SD",275 +2006-06-01,"Residential Consumption","North Dakota","ND",211 +2006-06-01,"Residential Consumption","Arkansas","AR",879 +2006-06-01,"Residential Consumption","New Jersey","NJ",6020 +2006-06-01,"Residential Consumption","New Hampshire","NH",259 +2006-06-01,"Residential Consumption","New York","NY",12339 +2006-06-01,"Residential Consumption","South Carolina","SC",549 +2006-06-01,"Residential Consumption","Oregon","OR",1403 +2006-06-01,"Residential Consumption","Connecticut","CT",1372 +2006-06-01,"Residential Consumption","Utah","UT",2172 +2006-06-01,"Residential Consumption","Washington","WA",2647 +2006-06-01,"Residential Consumption","Oklahoma","OK",1536 +2006-06-01,"Residential Consumption","Delaware","DE",232 +2006-06-01,"Residential Consumption","North Carolina","NC",1418 +2006-06-01,"Residential Consumption","Louisiana","LA",1392 +2006-06-01,"Residential Consumption","Vermont","VT",113 +2006-06-01,"Residential Consumption","Maine","ME",18 +2006-06-01,"Residential Consumption","Massachusetts","MA",3985 +2006-06-01,"Residential Consumption","Virginia","VA",1537 +2006-06-01,"Residential Consumption","Montana","MT",613 +2006-06-01,"Residential Consumption","California","CA",26417 +2006-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",1951 +2006-07-01,"Commercial Consumption","South Carolina","SC",1106 +2006-07-01,"Commercial Consumption","Maryland","MD",2479 +2006-07-01,"Commercial Consumption","Iowa","IA",1484 +2006-07-01,"Commercial Consumption","Nevada","NV",1604 +2006-07-01,"Commercial Consumption","Indiana","IN",2236 +2006-07-01,"Commercial Consumption","Minnesota","MN",3018 +2006-07-01,"Commercial Consumption","New Mexico","NM",864 +2006-07-01,"Commercial Consumption","Pennsylvania","PA",4262 +2006-07-01,"Commercial Consumption","Montana","MT",469 +2006-07-01,"Commercial Consumption","U.S.","U.S.",121913 +2006-07-01,"Commercial Consumption","Texas","TX",8294 +2006-07-01,"Commercial Consumption","Alabama","AL",1234 +2006-07-01,"Commercial Consumption","Arizona","AZ",1844 +2006-07-01,"Commercial Consumption","New Hampshire","NH",276 +2006-07-01,"Commercial Consumption","California","CA",15204 +2006-07-01,"Commercial Consumption","Illinois","IL",7232 +2006-07-01,"Commercial Consumption","District of Columbia","DC",889 +2006-07-01,"Commercial Consumption","Oklahoma","OK",1426 +2006-07-01,"Commercial Consumption","Massachusetts","MA",2104 +2006-07-01,"Commercial Consumption","South Dakota","SD",301 +2006-07-01,"Commercial Consumption","Hawaii","HI",152 +2006-07-01,"Commercial Consumption","New York","NY",13473 +2006-07-01,"Commercial Consumption","Michigan","MI",4888 +2006-07-01,"Commercial Consumption","Wyoming","WY",294 +2006-07-01,"Commercial Consumption","North Dakota","ND",264 +2006-07-01,"Commercial Consumption","North Carolina","NC",2138 +2006-07-01,"Commercial Consumption","Utah","UT",944 +2006-07-01,"Commercial Consumption","Oregon","OR",1018 +2006-07-01,"Commercial Consumption","New Jersey","NJ",7610 +2006-07-01,"Commercial Consumption","Kansas","KS",1038 +2006-07-01,"Commercial Consumption","Florida","FL",3836 +2006-07-01,"Commercial Consumption","Alaska","AK",616 +2006-07-01,"Commercial Consumption","Connecticut","CT",1402 +2006-07-01,"Commercial Consumption","Delaware","DE",321 +2006-07-01,"Commercial Consumption","Tennessee","TN",2162 +2006-07-01,"Commercial Consumption","Louisiana","LA",1508 +2006-07-01,"Commercial Consumption","Maine","ME",194 +2006-07-01,"Commercial Consumption","Arkansas","AR",1441 +2006-07-01,"Commercial Consumption","Mississippi","MS",946 +2006-07-01,"Commercial Consumption","West Virginia","WV",927 +2006-07-01,"Commercial Consumption","Washington","WA",2006 +2006-07-01,"Commercial Consumption","Missouri","MO",1888 +2006-07-01,"Commercial Consumption","Wisconsin","WI",2856 +2006-07-01,"Commercial Consumption","Ohio","OH",4223 +2006-07-01,"Commercial Consumption","Colorado","CO",1809 +2006-07-01,"Commercial Consumption","Virginia","VA",2763 +2006-07-01,"Commercial Consumption","Kentucky","KY",1055 +2006-07-01,"Commercial Consumption","Georgia","GA",1995 +2006-07-01,"Commercial Consumption","Vermont","VT",66 +2006-07-01,"Commercial Consumption","Rhode Island","RI",269 +2006-07-01,"Commercial Consumption","Idaho","ID",402 +2006-07-01,"Commercial Consumption","Nebraska","NE",1083 +2006-07-01,"Delivered to Consumers","Hawaii","HI",229 +2006-07-01,"Delivered to Consumers","Michigan","MI",43332 +2006-07-01,"Delivered to Consumers","Kentucky","KY",12861 +2006-07-01,"Delivered to Consumers","Connecticut","CT",13076 +2006-07-01,"Delivered to Consumers","North Carolina","NC",17476 +2006-07-01,"Delivered to Consumers","Maryland","MD",11438 +2006-07-01,"Delivered to Consumers","Kansas","KS",18023 +2006-07-01,"Delivered to Consumers","Tennessee","TN",12523 +2006-07-01,"Delivered to Consumers","Nebraska","NE",9685 +2006-07-01,"Delivered to Consumers","Massachusetts","MA",29288 +2006-07-01,"Delivered to Consumers","Washington","WA",15757 +2006-07-01,"Delivered to Consumers","Minnesota","MN",18418 +2006-07-01,"Delivered to Consumers","Indiana","IN",29579 +2006-07-01,"Delivered to Consumers","Rhode Island","RI",6982 +2006-07-01,"Delivered to Consumers","Alabama","AL",39303 +2006-07-01,"Delivered to Consumers","District of Columbia","DC",1184 +2006-07-01,"Delivered to Consumers","Utah","UT",8734 +2006-07-01,"Delivered to Consumers","New Mexico","NM",10501 +2006-07-01,"Delivered to Consumers","Delaware","DE",3812 +2006-07-01,"Delivered to Consumers","Iowa","IA",13244 +2006-07-01,"Delivered to Consumers","Wisconsin","WI",20221 +2006-07-01,"Delivered to Consumers","Virginia","VA",26876 +2006-07-01,"Delivered to Consumers","North Dakota","ND",1132 +2006-07-01,"Delivered to Consumers","Wyoming","WY",4108 +2006-07-01,"Delivered to Consumers","Vermont","VT",318 +2006-07-01,"Delivered to Consumers","Montana","MT",2643 +2006-07-01,"Delivered to Consumers","Alaska","AK",8527 +2006-07-01,"Delivered to Consumers","California","CA",203041 +2006-07-01,"Delivered to Consumers","Texas","TX",297878 +2006-07-01,"Delivered to Consumers","Arizona","AZ",34718 +2006-07-01,"Delivered to Consumers","West Virginia","WV",4982 +2006-07-01,"Delivered to Consumers","New York","NY",85597 +2006-07-01,"Delivered to Consumers","Oklahoma","OK",51955 +2006-07-01,"Delivered to Consumers","South Carolina","SC",18401 +2006-07-01,"Delivered to Consumers","New Jersey","NJ",38801 +2006-07-01,"Delivered to Consumers","New Hampshire","NH",3895 +2006-07-01,"Delivered to Consumers","Florida","FL",88949 +2006-07-01,"Delivered to Consumers","Ohio","OH",36271 +2006-07-01,"Delivered to Consumers","Pennsylvania","PA",44307 +2006-07-01,"Delivered to Consumers","Mississippi","MS",32124 +2006-07-01,"Delivered to Consumers","Colorado","CO",23277 +2006-07-01,"Delivered to Consumers","Nevada","NV",23453 +2006-07-01,"Delivered to Consumers","Louisiana","LA",97472 +2006-07-01,"Delivered to Consumers","U.S.","U.S.",1615241 +2006-07-01,"Delivered to Consumers","Illinois","IL",47256 +2006-07-01,"Delivered to Consumers","South Dakota","SD",2525 +2006-07-01,"Delivered to Consumers","Idaho","ID",3628 +2006-07-01,"Delivered to Consumers","Arkansas","AR",19107 +2006-07-01,"Delivered to Consumers","Missouri","MO",15918 +2006-07-01,"Delivered to Consumers","Oregon","OR",16913 +2006-07-01,"Delivered to Consumers","Maine","ME",6505 +2006-07-01,"Delivered to Consumers","Georgia","GA",36980 +2006-07-01,"Electric Power Consumption","Illinois","IL",12012 +2006-07-01,"Electric Power Consumption","Massachusetts","MA",22422 +2006-07-01,"Electric Power Consumption","Nevada","NV",19581 +2006-07-01,"Electric Power Consumption","Nebraska","NE",2463 +2006-07-01,"Electric Power Consumption","Ohio","OH",6113 +2006-07-01,"Electric Power Consumption","New Hampshire","NH",3077 +2006-07-01,"Electric Power Consumption","North Dakota","ND",0 +2006-07-01,"Electric Power Consumption","Montana","MT",114 +2006-07-01,"Electric Power Consumption","Delaware","DE",2111 +2006-07-01,"Electric Power Consumption","Oregon","OR",9740 +2006-07-01,"Electric Power Consumption","Kansas","KS",5351 +2006-07-01,"Electric Power Consumption","West Virginia","WV",920 +2006-07-01,"Electric Power Consumption","California","CA",107131 +2006-07-01,"Electric Power Consumption","Idaho","ID",1244 +2006-07-01,"Electric Power Consumption","Colorado","CO",9905 +2006-07-01,"Electric Power Consumption","Michigan","MI",18626 +2006-07-01,"Electric Power Consumption","Tennessee","TN",2341 +2006-07-01,"Electric Power Consumption","Kentucky","KY",3274 +2006-07-01,"Electric Power Consumption","Maryland","MD",5490 +2006-07-01,"Electric Power Consumption","Connecticut","CT",9048 +2006-07-01,"Electric Power Consumption","Alabama","AL",25244 +2006-07-01,"Electric Power Consumption","New Jersey","NJ",20728 +2006-07-01,"Electric Power Consumption","New York","NY",57219 +2006-07-01,"Electric Power Consumption","South Dakota","SD",1244 +2006-07-01,"Electric Power Consumption","Georgia","GA",18747 +2006-07-01,"Electric Power Consumption","Alaska","AK",3800 +2006-07-01,"Electric Power Consumption","Washington","WA",6853 +2006-07-01,"Electric Power Consumption","New Mexico","NM",7310 +2006-07-01,"Electric Power Consumption","Arkansas","AR",10440 +2006-07-01,"Electric Power Consumption","Utah","UT",4103 +2006-07-01,"Electric Power Consumption","Mississippi","MS",22703 +2006-07-01,"Electric Power Consumption","Florida","FL",78765 +2006-07-01,"Electric Power Consumption","South Carolina","SC",10531 +2006-07-01,"Electric Power Consumption","Texas","TX",175090 +2006-07-01,"Electric Power Consumption","Oklahoma","OK",35832 +2006-07-01,"Electric Power Consumption","Pennsylvania","PA",21984 +2006-07-01,"Electric Power Consumption","Wyoming","WY",119 +2006-07-01,"Electric Power Consumption","North Carolina","NC",7728 +2006-07-01,"Electric Power Consumption","Virginia","VA",16761 +2006-07-01,"Electric Power Consumption","Iowa","IA",3166 +2006-07-01,"Electric Power Consumption","U.S.","U.S.",863531 +2006-07-01,"Electric Power Consumption","Missouri","MO",7662 +2006-07-01,"Electric Power Consumption","Maine","ME",5218 +2006-07-01,"Electric Power Consumption","Hawaii","HI",NA +2006-07-01,"Electric Power Consumption","Indiana","IN",6100 +2006-07-01,"Electric Power Consumption","Arizona","AZ",30470 +2006-07-01,"Electric Power Consumption","Louisiana","LA",25890 +2006-07-01,"Electric Power Consumption","Rhode Island","RI",5664 +2006-07-01,"Electric Power Consumption","Minnesota","MN",5845 +2006-07-01,"Electric Power Consumption","Wisconsin","WI",7346 +2006-07-01,"Electric Power Consumption","Vermont","VT",3 +2006-07-01,"Industrial Consumption","Ohio","OH",20214 +2006-07-01,"Industrial Consumption","Oregon","OR",5180 +2006-07-01,"Industrial Consumption","California","CA",59573 +2006-07-01,"Industrial Consumption","Nebraska","NE",5326 +2006-07-01,"Industrial Consumption","Virginia","VA",5758 +2006-07-01,"Industrial Consumption","Wyoming","WY",3450 +2006-07-01,"Industrial Consumption","Connecticut","CT",1690 +2006-07-01,"Industrial Consumption","Michigan","MI",13156 +2006-07-01,"Industrial Consumption","North Carolina","NC",6435 +2006-07-01,"Industrial Consumption","Alaska","AK",3537 +2006-07-01,"Industrial Consumption","Mississippi","MS",7895 +2006-07-01,"Industrial Consumption","South Carolina","SC",6273 +2006-07-01,"Industrial Consumption","Minnesota","MN",6931 +2006-07-01,"Industrial Consumption","Missouri","MO",4611 +2006-07-01,"Industrial Consumption","Louisiana","LA",68822 +2006-07-01,"Industrial Consumption","Arizona","AZ",1269 +2006-07-01,"Industrial Consumption","Kentucky","KY",7610 +2006-07-01,"Industrial Consumption","District of Columbia","DC",0 +2006-07-01,"Industrial Consumption","Maryland","MD",1813 +2006-07-01,"Industrial Consumption","Vermont","VT",179 +2006-07-01,"Industrial Consumption","New Jersey","NJ",5078 +2006-07-01,"Industrial Consumption","Illinois","IL",17952 +2006-07-01,"Industrial Consumption","Delaware","DE",1187 +2006-07-01,"Industrial Consumption","Montana","MT",1635 +2006-07-01,"Industrial Consumption","Colorado","CO",8716 +2006-07-01,"Industrial Consumption","New Mexico","NM",1496 +2006-07-01,"Industrial Consumption","Kansas","KS",10352 +2006-07-01,"Industrial Consumption","Utah","UT",2164 +2006-07-01,"Industrial Consumption","Alabama","AL",11839 +2006-07-01,"Industrial Consumption","Idaho","ID",1511 +2006-07-01,"Industrial Consumption","Iowa","IA",7006 +2006-07-01,"Industrial Consumption","Indiana","IN",18789 +2006-07-01,"Industrial Consumption","Georgia","GA",12750 +2006-07-01,"Industrial Consumption","Oklahoma","OK",13302 +2006-07-01,"Industrial Consumption","South Dakota","SD",706 +2006-07-01,"Industrial Consumption","Arkansas","AR",6503 +2006-07-01,"Industrial Consumption","West Virginia","WV",2781 +2006-07-01,"Industrial Consumption","New Hampshire","NH",367 +2006-07-01,"Industrial Consumption","Florida","FL",5554 +2006-07-01,"Industrial Consumption","Massachusetts","MA",2050 +2006-07-01,"Industrial Consumption","Washington","WA",5010 +2006-07-01,"Industrial Consumption","U.S.","U.S.",512194 +2006-07-01,"Industrial Consumption","Maine","ME",1062 +2006-07-01,"Industrial Consumption","Rhode Island","RI",559 +2006-07-01,"Industrial Consumption","North Dakota","ND",689 +2006-07-01,"Industrial Consumption","Hawaii","HI",36 +2006-07-01,"Industrial Consumption","Pennsylvania","PA",13782 +2006-07-01,"Industrial Consumption","New York","NY",5388 +2006-07-01,"Industrial Consumption","Nevada","NV",1031 +2006-07-01,"Industrial Consumption","Texas","TX",108921 +2006-07-01,"Industrial Consumption","Wisconsin","WI",7401 +2006-07-01,"Industrial Consumption","Tennessee","TN",6853 +2006-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96237 +2006-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",47255 +2006-07-01,"Residential Consumption","Rhode Island","RI",491 +2006-07-01,"Residential Consumption","Tennessee","TN",1167 +2006-07-01,"Residential Consumption","Virginia","VA",1594 +2006-07-01,"Residential Consumption","Maryland","MD",1654 +2006-07-01,"Residential Consumption","Georgia","GA",3488 +2006-07-01,"Residential Consumption","District of Columbia","DC",294 +2006-07-01,"Residential Consumption","Wyoming","WY",245 +2006-07-01,"Residential Consumption","Mississippi","MS",579 +2006-07-01,"Residential Consumption","Vermont","VT",70 +2006-07-01,"Residential Consumption","Nevada","NV",1237 +2006-07-01,"Residential Consumption","North Dakota","ND",178 +2006-07-01,"Residential Consumption","Montana","MT",425 +2006-07-01,"Residential Consumption","Missouri","MO",1757 +2006-07-01,"Residential Consumption","U.S.","U.S.",115586 +2006-07-01,"Residential Consumption","North Carolina","NC",1175 +2006-07-01,"Residential Consumption","Utah","UT",1523 +2006-07-01,"Residential Consumption","New Mexico","NM",831 +2006-07-01,"Residential Consumption","Indiana","IN",2454 +2006-07-01,"Residential Consumption","Idaho","ID",472 +2006-07-01,"Residential Consumption","Kentucky","KY",921 +2006-07-01,"Residential Consumption","Arizona","AZ",1135 +2006-07-01,"Residential Consumption","Iowa","IA",1587 +2006-07-01,"Residential Consumption","Connecticut","CT",935 +2006-07-01,"Residential Consumption","Minnesota","MN",2625 +2006-07-01,"Residential Consumption","Delaware","DE",192 +2006-07-01,"Residential Consumption","California","CA",21133 +2006-07-01,"Residential Consumption","South Carolina","SC",490 +2006-07-01,"Residential Consumption","Ohio","OH",5722 +2006-07-01,"Residential Consumption","Michigan","MI",6662 +2006-07-01,"Residential Consumption","Pennsylvania","PA",4279 +2006-07-01,"Residential Consumption","Texas","TX",5573 +2006-07-01,"Residential Consumption","Maine","ME",30 +2006-07-01,"Residential Consumption","Massachusetts","MA",2713 +2006-07-01,"Residential Consumption","New Hampshire","NH",174 +2006-07-01,"Residential Consumption","Alabama","AL",986 +2006-07-01,"Residential Consumption","West Virginia","WV",355 +2006-07-01,"Residential Consumption","Louisiana","LA",1252 +2006-07-01,"Residential Consumption","Hawaii","HI",42 +2006-07-01,"Residential Consumption","Wisconsin","WI",2617 +2006-07-01,"Residential Consumption","Nebraska","NE",814 +2006-07-01,"Residential Consumption","South Dakota","SD",273 +2006-07-01,"Residential Consumption","New Jersey","NJ",5385 +2006-07-01,"Residential Consumption","Oklahoma","OK",1395 +2006-07-01,"Residential Consumption","Illinois","IL",10060 +2006-07-01,"Residential Consumption","Oregon","OR",975 +2006-07-01,"Residential Consumption","Florida","FL",794 +2006-07-01,"Residential Consumption","Arkansas","AR",724 +2006-07-01,"Residential Consumption","Colorado","CO",2847 +2006-07-01,"Residential Consumption","Kansas","KS",1283 +2006-07-01,"Residential Consumption","Washington","WA",1887 +2006-07-01,"Residential Consumption","Alaska","AK",574 +2006-07-01,"Residential Consumption","New York","NY",9517 +2006-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2016 +2006-08-01,"Commercial Consumption","West Virginia","WV",1035 +2006-08-01,"Commercial Consumption","Maryland","MD",2784 +2006-08-01,"Commercial Consumption","Florida","FL",3555 +2006-08-01,"Commercial Consumption","Alaska","AK",828 +2006-08-01,"Commercial Consumption","Alabama","AL",1133 +2006-08-01,"Commercial Consumption","Mississippi","MS",1024 +2006-08-01,"Commercial Consumption","Arizona","AZ",1773 +2006-08-01,"Commercial Consumption","Virginia","VA",2895 +2006-08-01,"Commercial Consumption","U.S.","U.S.",126396 +2006-08-01,"Commercial Consumption","Rhode Island","RI",234 +2006-08-01,"Commercial Consumption","California","CA",17944 +2006-08-01,"Commercial Consumption","Nevada","NV",1509 +2006-08-01,"Commercial Consumption","Utah","UT",911 +2006-08-01,"Commercial Consumption","Texas","TX",8845 +2006-08-01,"Commercial Consumption","Idaho","ID",407 +2006-08-01,"Commercial Consumption","Hawaii","HI",145 +2006-08-01,"Commercial Consumption","Nebraska","NE",1095 +2006-08-01,"Commercial Consumption","Washington","WA",1960 +2006-08-01,"Commercial Consumption","North Dakota","ND",241 +2006-08-01,"Commercial Consumption","Minnesota","MN",3510 +2006-08-01,"Commercial Consumption","Pennsylvania","PA",4289 +2006-08-01,"Commercial Consumption","South Dakota","SD",273 +2006-08-01,"Commercial Consumption","Michigan","MI",4544 +2006-08-01,"Commercial Consumption","Illinois","IL",7757 +2006-08-01,"Commercial Consumption","Wyoming","WY",241 +2006-08-01,"Commercial Consumption","South Carolina","SC",1063 +2006-08-01,"Commercial Consumption","North Carolina","NC",2008 +2006-08-01,"Commercial Consumption","Oregon","OR",906 +2006-08-01,"Commercial Consumption","New Jersey","NJ",7771 +2006-08-01,"Commercial Consumption","Maine","ME",201 +2006-08-01,"Commercial Consumption","Ohio","OH",4316 +2006-08-01,"Commercial Consumption","Delaware","DE",323 +2006-08-01,"Commercial Consumption","Tennessee","TN",2184 +2006-08-01,"Commercial Consumption","District of Columbia","DC",837 +2006-08-01,"Commercial Consumption","Wisconsin","WI",2945 +2006-08-01,"Commercial Consumption","New Hampshire","NH",290 +2006-08-01,"Commercial Consumption","New York","NY",14311 +2006-08-01,"Commercial Consumption","Colorado","CO",1882 +2006-08-01,"Commercial Consumption","New Mexico","NM",860 +2006-08-01,"Commercial Consumption","Oklahoma","OK",1344 +2006-08-01,"Commercial Consumption","Massachusetts","MA",1908 +2006-08-01,"Commercial Consumption","Montana","MT",491 +2006-08-01,"Commercial Consumption","Georgia","GA",1943 +2006-08-01,"Commercial Consumption","Vermont","VT",71 +2006-08-01,"Commercial Consumption","Iowa","IA",1319 +2006-08-01,"Commercial Consumption","Connecticut","CT",1360 +2006-08-01,"Commercial Consumption","Arkansas","AR",1583 +2006-08-01,"Commercial Consumption","Louisiana","LA",1456 +2006-08-01,"Commercial Consumption","Missouri","MO",1873 +2006-08-01,"Commercial Consumption","Kentucky","KY",1078 +2006-08-01,"Commercial Consumption","Kansas","KS",953 +2006-08-01,"Commercial Consumption","Indiana","IN",2192 +2006-08-01,"Delivered to Consumers","Indiana","IN",29996 +2006-08-01,"Delivered to Consumers","Maryland","MD",11236 +2006-08-01,"Delivered to Consumers","Tennessee","TN",12441 +2006-08-01,"Delivered to Consumers","Colorado","CO",22817 +2006-08-01,"Delivered to Consumers","Maine","ME",5264 +2006-08-01,"Delivered to Consumers","Louisiana","LA",103508 +2006-08-01,"Delivered to Consumers","Florida","FL",86772 +2006-08-01,"Delivered to Consumers","Utah","UT",8180 +2006-08-01,"Delivered to Consumers","Delaware","DE",3447 +2006-08-01,"Delivered to Consumers","West Virginia","WV",4899 +2006-08-01,"Delivered to Consumers","South Dakota","SD",1955 +2006-08-01,"Delivered to Consumers","Idaho","ID",3580 +2006-08-01,"Delivered to Consumers","Ohio","OH",36307 +2006-08-01,"Delivered to Consumers","Iowa","IA",11886 +2006-08-01,"Delivered to Consumers","Arkansas","AR",19963 +2006-08-01,"Delivered to Consumers","Alabama","AL",40520 +2006-08-01,"Delivered to Consumers","Missouri","MO",16350 +2006-08-01,"Delivered to Consumers","New Jersey","NJ",36943 +2006-08-01,"Delivered to Consumers","Washington","WA",18487 +2006-08-01,"Delivered to Consumers","Minnesota","MN",17970 +2006-08-01,"Delivered to Consumers","New Mexico","NM",10013 +2006-08-01,"Delivered to Consumers","Vermont","VT",318 +2006-08-01,"Delivered to Consumers","New York","NY",79345 +2006-08-01,"Delivered to Consumers","Kansas","KS",17171 +2006-08-01,"Delivered to Consumers","Wisconsin","WI",19919 +2006-08-01,"Delivered to Consumers","Texas","TX",316009 +2006-08-01,"Delivered to Consumers","South Carolina","SC",19755 +2006-08-01,"Delivered to Consumers","Nevada","NV",23014 +2006-08-01,"Delivered to Consumers","Montana","MT",2675 +2006-08-01,"Delivered to Consumers","Michigan","MI",39459 +2006-08-01,"Delivered to Consumers","Connecticut","CT",11527 +2006-08-01,"Delivered to Consumers","Mississippi","MS",36209 +2006-08-01,"Delivered to Consumers","California","CA",184106 +2006-08-01,"Delivered to Consumers","Georgia","GA",38808 +2006-08-01,"Delivered to Consumers","New Hampshire","NH",5107 +2006-08-01,"Delivered to Consumers","North Dakota","ND",971 +2006-08-01,"Delivered to Consumers","U.S.","U.S.",1607830 +2006-08-01,"Delivered to Consumers","Oklahoma","OK",56344 +2006-08-01,"Delivered to Consumers","Pennsylvania","PA",41471 +2006-08-01,"Delivered to Consumers","North Carolina","NC",19153 +2006-08-01,"Delivered to Consumers","District of Columbia","DC",1096 +2006-08-01,"Delivered to Consumers","Wyoming","WY",4063 +2006-08-01,"Delivered to Consumers","Alaska","AK",8783 +2006-08-01,"Delivered to Consumers","Oregon","OR",16894 +2006-08-01,"Delivered to Consumers","Arizona","AZ",36448 +2006-08-01,"Delivered to Consumers","Illinois","IL",43727 +2006-08-01,"Delivered to Consumers","Hawaii","HI",222 +2006-08-01,"Delivered to Consumers","Rhode Island","RI",5512 +2006-08-01,"Delivered to Consumers","Kentucky","KY",13777 +2006-08-01,"Delivered to Consumers","Virginia","VA",27756 +2006-08-01,"Delivered to Consumers","Nebraska","NE",9019 +2006-08-01,"Delivered to Consumers","Massachusetts","MA",24626 +2006-08-01,"Electric Power Consumption","New Jersey","NJ",19700 +2006-08-01,"Electric Power Consumption","West Virginia","WV",757 +2006-08-01,"Electric Power Consumption","Wisconsin","WI",6488 +2006-08-01,"Electric Power Consumption","Wyoming","WY",101 +2006-08-01,"Electric Power Consumption","North Carolina","NC",9210 +2006-08-01,"Electric Power Consumption","Maine","ME",3965 +2006-08-01,"Electric Power Consumption","Indiana","IN",4873 +2006-08-01,"Electric Power Consumption","Georgia","GA",19963 +2006-08-01,"Electric Power Consumption","Florida","FL",77294 +2006-08-01,"Electric Power Consumption","Louisiana","LA",28542 +2006-08-01,"Electric Power Consumption","South Carolina","SC",11785 +2006-08-01,"Electric Power Consumption","Oklahoma","OK",39208 +2006-08-01,"Electric Power Consumption","Pennsylvania","PA",18355 +2006-08-01,"Electric Power Consumption","South Dakota","SD",759 +2006-08-01,"Electric Power Consumption","Mississippi","MS",25830 +2006-08-01,"Electric Power Consumption","Virginia","VA",16098 +2006-08-01,"Electric Power Consumption","Texas","TX",193006 +2006-08-01,"Electric Power Consumption","Minnesota","MN",3518 +2006-08-01,"Electric Power Consumption","Nevada","NV",19340 +2006-08-01,"Electric Power Consumption","Tennessee","TN",1839 +2006-08-01,"Electric Power Consumption","Maryland","MD",4856 +2006-08-01,"Electric Power Consumption","Colorado","CO",9958 +2006-08-01,"Electric Power Consumption","New York","NY",51234 +2006-08-01,"Electric Power Consumption","Illinois","IL",10068 +2006-08-01,"Electric Power Consumption","Massachusetts","MA",18502 +2006-08-01,"Electric Power Consumption","Vermont","VT",2 +2006-08-01,"Electric Power Consumption","Washington","WA",9570 +2006-08-01,"Electric Power Consumption","Nebraska","NE",1465 +2006-08-01,"Electric Power Consumption","Missouri","MO",7716 +2006-08-01,"Electric Power Consumption","Hawaii","HI",NA +2006-08-01,"Electric Power Consumption","Ohio","OH",5191 +2006-08-01,"Electric Power Consumption","Arizona","AZ",32300 +2006-08-01,"Electric Power Consumption","New Mexico","NM",6733 +2006-08-01,"Electric Power Consumption","Rhode Island","RI",4426 +2006-08-01,"Electric Power Consumption","Utah","UT",3659 +2006-08-01,"Electric Power Consumption","Kansas","KS",4859 +2006-08-01,"Electric Power Consumption","Iowa","IA",2467 +2006-08-01,"Electric Power Consumption","Montana","MT",101 +2006-08-01,"Electric Power Consumption","Alabama","AL",26196 +2006-08-01,"Electric Power Consumption","Idaho","ID",1239 +2006-08-01,"Electric Power Consumption","Arkansas","AR",10944 +2006-08-01,"Electric Power Consumption","Oregon","OR",9646 +2006-08-01,"Electric Power Consumption","Michigan","MI",15553 +2006-08-01,"Electric Power Consumption","Kentucky","KY",3669 +2006-08-01,"Electric Power Consumption","New Hampshire","NH",4265 +2006-08-01,"Electric Power Consumption","North Dakota","ND",0 +2006-08-01,"Electric Power Consumption","U.S.","U.S.",840197 +2006-08-01,"Electric Power Consumption","Delaware","DE",1535 +2006-08-01,"Electric Power Consumption","Connecticut","CT",7397 +2006-08-01,"Electric Power Consumption","California","CA",82273 +2006-08-01,"Electric Power Consumption","Alaska","AK",3741 +2006-08-01,"Industrial Consumption","Oklahoma","OK",14628 +2006-08-01,"Industrial Consumption","Arizona","AZ",1295 +2006-08-01,"Industrial Consumption","Mississippi","MS",8784 +2006-08-01,"Industrial Consumption","Arkansas","AR",6794 +2006-08-01,"Industrial Consumption","Virginia","VA",7264 +2006-08-01,"Industrial Consumption","New Jersey","NJ",4906 +2006-08-01,"Industrial Consumption","Michigan","MI",13105 +2006-08-01,"Industrial Consumption","North Carolina","NC",6954 +2006-08-01,"Industrial Consumption","Maryland","MD",1978 +2006-08-01,"Industrial Consumption","Missouri","MO",4994 +2006-08-01,"Industrial Consumption","Nevada","NV",1018 +2006-08-01,"Industrial Consumption","Wyoming","WY",3492 +2006-08-01,"Industrial Consumption","Minnesota","MN",8396 +2006-08-01,"Industrial Consumption","Connecticut","CT",1791 +2006-08-01,"Industrial Consumption","Indiana","IN",20320 +2006-08-01,"Industrial Consumption","Georgia","GA",13475 +2006-08-01,"Industrial Consumption","Colorado","CO",8265 +2006-08-01,"Industrial Consumption","South Dakota","SD",710 +2006-08-01,"Industrial Consumption","Kansas","KS",10210 +2006-08-01,"Industrial Consumption","U.S.","U.S.",530783 +2006-08-01,"Industrial Consumption","Pennsylvania","PA",14679 +2006-08-01,"Industrial Consumption","North Dakota","ND",560 +2006-08-01,"Industrial Consumption","Washington","WA",5236 +2006-08-01,"Industrial Consumption","Oregon","OR",5474 +2006-08-01,"Industrial Consumption","Alabama","AL",12284 +2006-08-01,"Industrial Consumption","Kentucky","KY",8083 +2006-08-01,"Industrial Consumption","District of Columbia","DC",0 +2006-08-01,"Industrial Consumption","Massachusetts","MA",1868 +2006-08-01,"Industrial Consumption","West Virginia","WV",2742 +2006-08-01,"Industrial Consumption","Vermont","VT",183 +2006-08-01,"Industrial Consumption","Idaho","ID",1531 +2006-08-01,"Industrial Consumption","Florida","FL",5192 +2006-08-01,"Industrial Consumption","Utah","UT",2186 +2006-08-01,"Industrial Consumption","New York","NY",5489 +2006-08-01,"Industrial Consumption","California","CA",62997 +2006-08-01,"Industrial Consumption","Tennessee","TN",7350 +2006-08-01,"Industrial Consumption","Delaware","DE",1412 +2006-08-01,"Industrial Consumption","Montana","MT",1687 +2006-08-01,"Industrial Consumption","Louisiana","LA",72286 +2006-08-01,"Industrial Consumption","New Mexico","NM",1600 +2006-08-01,"Industrial Consumption","Maine","ME",1071 +2006-08-01,"Industrial Consumption","Texas","TX",108776 +2006-08-01,"Industrial Consumption","Nebraska","NE",5689 +2006-08-01,"Industrial Consumption","Wisconsin","WI",8028 +2006-08-01,"Industrial Consumption","New Hampshire","NH",399 +2006-08-01,"Industrial Consumption","Iowa","IA",6823 +2006-08-01,"Industrial Consumption","Alaska","AK",3517 +2006-08-01,"Industrial Consumption","Hawaii","HI",38 +2006-08-01,"Industrial Consumption","Ohio","OH",21459 +2006-08-01,"Industrial Consumption","South Carolina","SC",6485 +2006-08-01,"Industrial Consumption","Illinois","IL",16834 +2006-08-01,"Industrial Consumption","Rhode Island","RI",449 +2006-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96815 +2006-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",47038 +2006-08-01,"Residential Consumption","Oregon","OR",868 +2006-08-01,"Residential Consumption","Pennsylvania","PA",4148 +2006-08-01,"Residential Consumption","Massachusetts","MA",2348 +2006-08-01,"Residential Consumption","Texas","TX",5382 +2006-08-01,"Residential Consumption","Wisconsin","WI",2457 +2006-08-01,"Residential Consumption","Virginia","VA",1499 +2006-08-01,"Residential Consumption","Utah","UT",1425 +2006-08-01,"Residential Consumption","Nevada","NV",1147 +2006-08-01,"Residential Consumption","Minnesota","MN",2546 +2006-08-01,"Residential Consumption","Oklahoma","OK",1164 +2006-08-01,"Residential Consumption","Arizona","AZ",1081 +2006-08-01,"Residential Consumption","Rhode Island","RI",404 +2006-08-01,"Residential Consumption","Mississippi","MS",572 +2006-08-01,"Residential Consumption","Iowa","IA",1277 +2006-08-01,"Residential Consumption","Hawaii","HI",39 +2006-08-01,"Residential Consumption","Michigan","MI",6257 +2006-08-01,"Residential Consumption","South Dakota","SD",213 +2006-08-01,"Residential Consumption","Indiana","IN",2611 +2006-08-01,"Residential Consumption","Idaho","ID",403 +2006-08-01,"Residential Consumption","Missouri","MO",1768 +2006-08-01,"Residential Consumption","Alabama","AL",908 +2006-08-01,"Residential Consumption","Wyoming","WY",228 +2006-08-01,"Residential Consumption","New York","NY",8311 +2006-08-01,"Residential Consumption","Maine","ME",27 +2006-08-01,"Residential Consumption","Montana","MT",396 +2006-08-01,"Residential Consumption","Alaska","AK",698 +2006-08-01,"Residential Consumption","Connecticut","CT",979 +2006-08-01,"Residential Consumption","Tennessee","TN",1068 +2006-08-01,"Residential Consumption","District of Columbia","DC",259 +2006-08-01,"Residential Consumption","New Jersey","NJ",4566 +2006-08-01,"Residential Consumption","Washington","WA",1721 +2006-08-01,"Residential Consumption","Delaware","DE",176 +2006-08-01,"Residential Consumption","South Carolina","SC",422 +2006-08-01,"Residential Consumption","Vermont","VT",62 +2006-08-01,"Residential Consumption","Maryland","MD",1617 +2006-08-01,"Residential Consumption","North Dakota","ND",170 +2006-08-01,"Residential Consumption","Colorado","CO",2712 +2006-08-01,"Residential Consumption","West Virginia","WV",365 +2006-08-01,"Residential Consumption","Illinois","IL",9068 +2006-08-01,"Residential Consumption","North Carolina","NC",980 +2006-08-01,"Residential Consumption","Louisiana","LA",1224 +2006-08-01,"Residential Consumption","California","CA",20893 +2006-08-01,"Residential Consumption","Ohio","OH",5341 +2006-08-01,"Residential Consumption","Nebraska","NE",769 +2006-08-01,"Residential Consumption","Georgia","GA",3428 +2006-08-01,"Residential Consumption","New Mexico","NM",820 +2006-08-01,"Residential Consumption","Florida","FL",731 +2006-08-01,"Residential Consumption","Arkansas","AR",642 +2006-08-01,"Residential Consumption","New Hampshire","NH",152 +2006-08-01,"Residential Consumption","Kentucky","KY",947 +2006-08-01,"Residential Consumption","Kansas","KS",1149 +2006-08-01,"Residential Consumption","U.S.","U.S.",108439 +2006-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2016 +2006-09-01,"Commercial Consumption","West Virginia","WV",1083 +2006-09-01,"Commercial Consumption","Colorado","CO",2647 +2006-09-01,"Commercial Consumption","South Dakota","SD",371 +2006-09-01,"Commercial Consumption","Nevada","NV",1660 +2006-09-01,"Commercial Consumption","Michigan","MI",5682 +2006-09-01,"Commercial Consumption","New Mexico","NM",898 +2006-09-01,"Commercial Consumption","Hawaii","HI",149 +2006-09-01,"Commercial Consumption","New York","NY",13414 +2006-09-01,"Commercial Consumption","Wyoming","WY",304 +2006-09-01,"Commercial Consumption","South Carolina","SC",1234 +2006-09-01,"Commercial Consumption","North Carolina","NC",2285 +2006-09-01,"Commercial Consumption","Oklahoma","OK",1506 +2006-09-01,"Commercial Consumption","Montana","MT",494 +2006-09-01,"Commercial Consumption","Maryland","MD",3434 +2006-09-01,"Commercial Consumption","Mississippi","MS",1027 +2006-09-01,"Commercial Consumption","Illinois","IL",8063 +2006-09-01,"Commercial Consumption","Oregon","OR",1071 +2006-09-01,"Commercial Consumption","Pennsylvania","PA",4767 +2006-09-01,"Commercial Consumption","Massachusetts","MA",1904 +2006-09-01,"Commercial Consumption","Kansas","KS",910 +2006-09-01,"Commercial Consumption","Georgia","GA",2050 +2006-09-01,"Commercial Consumption","Idaho","ID",503 +2006-09-01,"Commercial Consumption","Louisiana","LA",1440 +2006-09-01,"Commercial Consumption","Washington","WA",2209 +2006-09-01,"Commercial Consumption","U.S.","U.S.",133020 +2006-09-01,"Commercial Consumption","Texas","TX",8492 +2006-09-01,"Commercial Consumption","Rhode Island","RI",298 +2006-09-01,"Commercial Consumption","Iowa","IA",1649 +2006-09-01,"Commercial Consumption","California","CA",16993 +2006-09-01,"Commercial Consumption","Nebraska","NE",1102 +2006-09-01,"Commercial Consumption","Indiana","IN",2827 +2006-09-01,"Commercial Consumption","North Dakota","ND",340 +2006-09-01,"Commercial Consumption","Minnesota","MN",2801 +2006-09-01,"Commercial Consumption","Virginia","VA",3268 +2006-09-01,"Commercial Consumption","Missouri","MO",2073 +2006-09-01,"Commercial Consumption","New Jersey","NJ",8997 +2006-09-01,"Commercial Consumption","Maine","ME",278 +2006-09-01,"Commercial Consumption","Arkansas","AR",1549 +2006-09-01,"Commercial Consumption","Alabama","AL",1133 +2006-09-01,"Commercial Consumption","Delaware","DE",327 +2006-09-01,"Commercial Consumption","District of Columbia","DC",928 +2006-09-01,"Commercial Consumption","Utah","UT",1049 +2006-09-01,"Commercial Consumption","Florida","FL",3612 +2006-09-01,"Commercial Consumption","Vermont","VT",83 +2006-09-01,"Commercial Consumption","Alaska","AK",924 +2006-09-01,"Commercial Consumption","Tennessee","TN",2311 +2006-09-01,"Commercial Consumption","Wisconsin","WI",3244 +2006-09-01,"Commercial Consumption","New Hampshire","NH",332 +2006-09-01,"Commercial Consumption","Kentucky","KY",1239 +2006-09-01,"Commercial Consumption","Ohio","OH",4820 +2006-09-01,"Commercial Consumption","Connecticut","CT",1388 +2006-09-01,"Commercial Consumption","Arizona","AZ",1860 +2006-09-01,"Delivered to Consumers","Utah","UT",8599 +2006-09-01,"Delivered to Consumers","Delaware","DE",2516 +2006-09-01,"Delivered to Consumers","Wyoming","WY",3935 +2006-09-01,"Delivered to Consumers","Vermont","VT",347 +2006-09-01,"Delivered to Consumers","Michigan","MI",31740 +2006-09-01,"Delivered to Consumers","Wisconsin","WI",18038 +2006-09-01,"Delivered to Consumers","Pennsylvania","PA",31545 +2006-09-01,"Delivered to Consumers","Texas","TX",247693 +2006-09-01,"Delivered to Consumers","South Carolina","SC",10930 +2006-09-01,"Delivered to Consumers","Nevada","NV",20275 +2006-09-01,"Delivered to Consumers","New Jersey","NJ",30076 +2006-09-01,"Delivered to Consumers","Florida","FL",83397 +2006-09-01,"Delivered to Consumers","U.S.","U.S.",1328565 +2006-09-01,"Delivered to Consumers","Idaho","ID",4158 +2006-09-01,"Delivered to Consumers","Kentucky","KY",11131 +2006-09-01,"Delivered to Consumers","Nebraska","NE",6665 +2006-09-01,"Delivered to Consumers","Oregon","OR",17231 +2006-09-01,"Delivered to Consumers","Rhode Island","RI",5724 +2006-09-01,"Delivered to Consumers","Oklahoma","OK",37425 +2006-09-01,"Delivered to Consumers","Tennessee","TN",10859 +2006-09-01,"Delivered to Consumers","North Dakota","ND",1770 +2006-09-01,"Delivered to Consumers","West Virginia","WV",4122 +2006-09-01,"Delivered to Consumers","South Dakota","SD",1584 +2006-09-01,"Delivered to Consumers","Kansas","KS",12559 +2006-09-01,"Delivered to Consumers","Alabama","AL",25388 +2006-09-01,"Delivered to Consumers","Massachusetts","MA",21947 +2006-09-01,"Delivered to Consumers","Maine","ME",5580 +2006-09-01,"Delivered to Consumers","Georgia","GA",25412 +2006-09-01,"Delivered to Consumers","Arizona","AZ",30678 +2006-09-01,"Delivered to Consumers","New Hampshire","NH",5407 +2006-09-01,"Delivered to Consumers","Maryland","MD",8042 +2006-09-01,"Delivered to Consumers","Missouri","MO",10245 +2006-09-01,"Delivered to Consumers","Minnesota","MN",16211 +2006-09-01,"Delivered to Consumers","Alaska","AK",8063 +2006-09-01,"Delivered to Consumers","Ohio","OH",35048 +2006-09-01,"Delivered to Consumers","North Carolina","NC",11452 +2006-09-01,"Delivered to Consumers","Louisiana","LA",88124 +2006-09-01,"Delivered to Consumers","Washington","WA",19953 +2006-09-01,"Delivered to Consumers","New Mexico","NM",7746 +2006-09-01,"Delivered to Consumers","Montana","MT",3197 +2006-09-01,"Delivered to Consumers","Hawaii","HI",233 +2006-09-01,"Delivered to Consumers","Iowa","IA",12277 +2006-09-01,"Delivered to Consumers","Connecticut","CT",10196 +2006-09-01,"Delivered to Consumers","Virginia","VA",13251 +2006-09-01,"Delivered to Consumers","Mississippi","MS",22869 +2006-09-01,"Delivered to Consumers","California","CA",177931 +2006-09-01,"Delivered to Consumers","Indiana","IN",27630 +2006-09-01,"Delivered to Consumers","Illinois","IL",36875 +2006-09-01,"Delivered to Consumers","New York","NY",63354 +2006-09-01,"Delivered to Consumers","Arkansas","AR",16976 +2006-09-01,"Delivered to Consumers","Colorado","CO",18928 +2006-09-01,"Delivered to Consumers","District of Columbia","DC",1287 +2006-09-01,"Electric Power Consumption","Oklahoma","OK",19906 +2006-09-01,"Electric Power Consumption","Illinois","IL",1637 +2006-09-01,"Electric Power Consumption","Michigan","MI",5950 +2006-09-01,"Electric Power Consumption","Vermont","VT",4 +2006-09-01,"Electric Power Consumption","Connecticut","CT",6099 +2006-09-01,"Electric Power Consumption","Florida","FL",73892 +2006-09-01,"Electric Power Consumption","New York","NY",35235 +2006-09-01,"Electric Power Consumption","Minnesota","MN",1213 +2006-09-01,"Electric Power Consumption","Kansas","KS",1107 +2006-09-01,"Electric Power Consumption","Wisconsin","WI",3167 +2006-09-01,"Electric Power Consumption","Pennsylvania","PA",7400 +2006-09-01,"Electric Power Consumption","Nebraska","NE",314 +2006-09-01,"Electric Power Consumption","Mississippi","MS",12444 +2006-09-01,"Electric Power Consumption","Indiana","IN",1454 +2006-09-01,"Electric Power Consumption","California","CA",74886 +2006-09-01,"Electric Power Consumption","South Carolina","SC",3011 +2006-09-01,"Electric Power Consumption","Iowa","IA",1181 +2006-09-01,"Electric Power Consumption","Missouri","MO",1435 +2006-09-01,"Electric Power Consumption","Maine","ME",3424 +2006-09-01,"Electric Power Consumption","Hawaii","HI",NA +2006-09-01,"Electric Power Consumption","Ohio","OH",1347 +2006-09-01,"Electric Power Consumption","Delaware","DE",718 +2006-09-01,"Electric Power Consumption","Washington","WA",9799 +2006-09-01,"Electric Power Consumption","New Mexico","NM",4592 +2006-09-01,"Electric Power Consumption","Massachusetts","MA",15139 +2006-09-01,"Electric Power Consumption","West Virginia","WV",156 +2006-09-01,"Electric Power Consumption","Tennessee","TN",164 +2006-09-01,"Electric Power Consumption","Idaho","ID",1267 +2006-09-01,"Electric Power Consumption","Texas","TX",128393 +2006-09-01,"Electric Power Consumption","Rhode Island","RI",4347 +2006-09-01,"Electric Power Consumption","Oregon","OR",9542 +2006-09-01,"Electric Power Consumption","Montana","MT",59 +2006-09-01,"Electric Power Consumption","Louisiana","LA",17050 +2006-09-01,"Electric Power Consumption","Arkansas","AR",7912 +2006-09-01,"Electric Power Consumption","Utah","UT",3536 +2006-09-01,"Electric Power Consumption","Nevada","NV",16314 +2006-09-01,"Electric Power Consumption","Wyoming","WY",77 +2006-09-01,"Electric Power Consumption","South Dakota","SD",152 +2006-09-01,"Electric Power Consumption","New Hampshire","NH",4450 +2006-09-01,"Electric Power Consumption","Alabama","AL",11340 +2006-09-01,"Electric Power Consumption","Virginia","VA",2052 +2006-09-01,"Electric Power Consumption","U.S.","U.S.",548321 +2006-09-01,"Electric Power Consumption","North Carolina","NC",1201 +2006-09-01,"Electric Power Consumption","Georgia","GA",7802 +2006-09-01,"Electric Power Consumption","Alaska","AK",3237 +2006-09-01,"Electric Power Consumption","New Jersey","NJ",10851 +2006-09-01,"Electric Power Consumption","Colorado","CO",5408 +2006-09-01,"Electric Power Consumption","Kentucky","KY",273 +2006-09-01,"Electric Power Consumption","North Dakota","ND",0 +2006-09-01,"Electric Power Consumption","Maryland","MD",1114 +2006-09-01,"Electric Power Consumption","Arizona","AZ",26270 +2006-09-01,"Industrial Consumption","Maryland","MD",1374 +2006-09-01,"Industrial Consumption","Massachusetts","MA",2134 +2006-09-01,"Industrial Consumption","Mississippi","MS",8780 +2006-09-01,"Industrial Consumption","Maine","ME",1848 +2006-09-01,"Industrial Consumption","Arkansas","AR",6764 +2006-09-01,"Industrial Consumption","Wyoming","WY",3247 +2006-09-01,"Industrial Consumption","New Jersey","NJ",4606 +2006-09-01,"Industrial Consumption","Iowa","IA",7939 +2006-09-01,"Industrial Consumption","Washington","WA",5809 +2006-09-01,"Industrial Consumption","New York","NY",5352 +2006-09-01,"Industrial Consumption","Texas","TX",105473 +2006-09-01,"Industrial Consumption","Alaska","AK",2956 +2006-09-01,"Industrial Consumption","Oklahoma","OK",14747 +2006-09-01,"Industrial Consumption","Missouri","MO",4640 +2006-09-01,"Industrial Consumption","Louisiana","LA",68393 +2006-09-01,"Industrial Consumption","Ohio","OH",22886 +2006-09-01,"Industrial Consumption","Arizona","AZ",1343 +2006-09-01,"Industrial Consumption","South Carolina","SC",6144 +2006-09-01,"Industrial Consumption","Tennessee","TN",7256 +2006-09-01,"Industrial Consumption","New Hampshire","NH",453 +2006-09-01,"Industrial Consumption","Pennsylvania","PA",14607 +2006-09-01,"Industrial Consumption","Oregon","OR",5563 +2006-09-01,"Industrial Consumption","Nevada","NV",1014 +2006-09-01,"Industrial Consumption","Wisconsin","WI",8195 +2006-09-01,"Industrial Consumption","Florida","FL",5145 +2006-09-01,"Industrial Consumption","Connecticut","CT",1654 +2006-09-01,"Industrial Consumption","Illinois","IL",17437 +2006-09-01,"Industrial Consumption","North Carolina","NC",6813 +2006-09-01,"Industrial Consumption","Montana","MT",2088 +2006-09-01,"Industrial Consumption","South Dakota","SD",748 +2006-09-01,"Industrial Consumption","Kansas","KS",9278 +2006-09-01,"Industrial Consumption","Nebraska","NE",4415 +2006-09-01,"Industrial Consumption","Vermont","VT",182 +2006-09-01,"Industrial Consumption","Kentucky","KY",8551 +2006-09-01,"Industrial Consumption","Delaware","DE",1288 +2006-09-01,"Industrial Consumption","New Mexico","NM",1369 +2006-09-01,"Industrial Consumption","Utah","UT",2306 +2006-09-01,"Industrial Consumption","Alabama","AL",12002 +2006-09-01,"Industrial Consumption","Minnesota","MN",8661 +2006-09-01,"Industrial Consumption","Rhode Island","RI",606 +2006-09-01,"Industrial Consumption","Georgia","GA",11867 +2006-09-01,"Industrial Consumption","Hawaii","HI",45 +2006-09-01,"Industrial Consumption","U.S.","U.S.",520351 +2006-09-01,"Industrial Consumption","Virginia","VA",6022 +2006-09-01,"Industrial Consumption","West Virginia","WV",2383 +2006-09-01,"Industrial Consumption","Indiana","IN",20116 +2006-09-01,"Industrial Consumption","District of Columbia","DC",0 +2006-09-01,"Industrial Consumption","North Dakota","ND",1148 +2006-09-01,"Industrial Consumption","Colorado","CO",6614 +2006-09-01,"Industrial Consumption","California","CA",64032 +2006-09-01,"Industrial Consumption","Idaho","ID",1794 +2006-09-01,"Industrial Consumption","Michigan","MI",12264 +2006-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",94660 +2006-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",38844 +2006-09-01,"Residential Consumption","Oregon","OR",1055 +2006-09-01,"Residential Consumption","Tennessee","TN",1128 +2006-09-01,"Residential Consumption","Utah","UT",1708 +2006-09-01,"Residential Consumption","Nevada","NV",1287 +2006-09-01,"Residential Consumption","Indiana","IN",3232 +2006-09-01,"Residential Consumption","Arkansas","AR",751 +2006-09-01,"Residential Consumption","Colorado","CO",4258 +2006-09-01,"Residential Consumption","Washington","WA",2136 +2006-09-01,"Residential Consumption","Illinois","IL",9738 +2006-09-01,"Residential Consumption","South Carolina","SC",541 +2006-09-01,"Residential Consumption","Vermont","VT",78 +2006-09-01,"Residential Consumption","Virginia","VA",1909 +2006-09-01,"Residential Consumption","North Dakota","ND",282 +2006-09-01,"Residential Consumption","Massachusetts","MA",2770 +2006-09-01,"Residential Consumption","Missouri","MO",2098 +2006-09-01,"Residential Consumption","Texas","TX",5334 +2006-09-01,"Residential Consumption","Mississippi","MS",619 +2006-09-01,"Residential Consumption","Nebraska","NE",834 +2006-09-01,"Residential Consumption","South Dakota","SD",314 +2006-09-01,"Residential Consumption","Maine","ME",30 +2006-09-01,"Residential Consumption","Florida","FL",747 +2006-09-01,"Residential Consumption","U.S.","U.S.",124922 +2006-09-01,"Residential Consumption","Iowa","IA",1508 +2006-09-01,"Residential Consumption","Connecticut","CT",1055 +2006-09-01,"Residential Consumption","Montana","MT",557 +2006-09-01,"Residential Consumption","Kentucky","KY",1069 +2006-09-01,"Residential Consumption","Delaware","DE",182 +2006-09-01,"Residential Consumption","Alaska","AK",946 +2006-09-01,"Residential Consumption","Ohio","OH",5995 +2006-09-01,"Residential Consumption","Hawaii","HI",39 +2006-09-01,"Residential Consumption","Wisconsin","WI",3431 +2006-09-01,"Residential Consumption","Maryland","MD",2121 +2006-09-01,"Residential Consumption","Pennsylvania","PA",4770 +2006-09-01,"Residential Consumption","Wyoming","WY",308 +2006-09-01,"Residential Consumption","Rhode Island","RI",473 +2006-09-01,"Residential Consumption","Michigan","MI",7843 +2006-09-01,"Residential Consumption","Minnesota","MN",3536 +2006-09-01,"Residential Consumption","New Jersey","NJ",5621 +2006-09-01,"Residential Consumption","Louisiana","LA",1241 +2006-09-01,"Residential Consumption","New Mexico","NM",887 +2006-09-01,"Residential Consumption","Idaho","ID",595 +2006-09-01,"Residential Consumption","New Hampshire","NH",173 +2006-09-01,"Residential Consumption","Kansas","KS",1264 +2006-09-01,"Residential Consumption","Oklahoma","OK",1266 +2006-09-01,"Residential Consumption","California","CA",22020 +2006-09-01,"Residential Consumption","Arizona","AZ",1204 +2006-09-01,"Residential Consumption","North Carolina","NC",1153 +2006-09-01,"Residential Consumption","Georgia","GA",3693 +2006-09-01,"Residential Consumption","District of Columbia","DC",359 +2006-09-01,"Residential Consumption","Alabama","AL",913 +2006-09-01,"Residential Consumption","West Virginia","WV",500 +2006-09-01,"Residential Consumption","New York","NY",9353 +2006-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",1951 +2006-10-01,"Commercial Consumption","Wyoming","WY",584 +2006-10-01,"Commercial Consumption","West Virginia","WV",1633 +2006-10-01,"Commercial Consumption","North Carolina","NC",3093 +2006-10-01,"Commercial Consumption","Minnesota","MN",6584 +2006-10-01,"Commercial Consumption","South Dakota","SD",730 +2006-10-01,"Commercial Consumption","Montana","MT",844 +2006-10-01,"Commercial Consumption","Kansas","KS",1266 +2006-10-01,"Commercial Consumption","Vermont","VT",124 +2006-10-01,"Commercial Consumption","Alabama","AL",1351 +2006-10-01,"Commercial Consumption","Tennessee","TN",2815 +2006-10-01,"Commercial Consumption","Louisiana","LA",1557 +2006-10-01,"Commercial Consumption","North Dakota","ND",779 +2006-10-01,"Commercial Consumption","U.S.","U.S.",187618 +2006-10-01,"Commercial Consumption","Texas","TX",9438 +2006-10-01,"Commercial Consumption","Idaho","ID",722 +2006-10-01,"Commercial Consumption","Oregon","OR",1454 +2006-10-01,"Commercial Consumption","Missouri","MO",3070 +2006-10-01,"Commercial Consumption","Wisconsin","WI",6897 +2006-10-01,"Commercial Consumption","Maine","ME",344 +2006-10-01,"Commercial Consumption","Alaska","AK",1263 +2006-10-01,"Commercial Consumption","Mississippi","MS",1300 +2006-10-01,"Commercial Consumption","Nevada","NV",1983 +2006-10-01,"Commercial Consumption","Washington","WA",3197 +2006-10-01,"Commercial Consumption","New Jersey","NJ",10006 +2006-10-01,"Commercial Consumption","Florida","FL",3633 +2006-10-01,"Commercial Consumption","Indiana","IN",5983 +2006-10-01,"Commercial Consumption","Pennsylvania","PA",8145 +2006-10-01,"Commercial Consumption","New Hampshire","NH",448 +2006-10-01,"Commercial Consumption","Kentucky","KY",2415 +2006-10-01,"Commercial Consumption","Hawaii","HI",144 +2006-10-01,"Commercial Consumption","Connecticut","CT",2017 +2006-10-01,"Commercial Consumption","California","CA",18536 +2006-10-01,"Commercial Consumption","South Carolina","SC",1518 +2006-10-01,"Commercial Consumption","Utah","UT",1570 +2006-10-01,"Commercial Consumption","Oklahoma","OK",1792 +2006-10-01,"Commercial Consumption","Rhode Island","RI",381 +2006-10-01,"Commercial Consumption","Arkansas","AR",2010 +2006-10-01,"Commercial Consumption","New York","NY",15998 +2006-10-01,"Commercial Consumption","Nebraska","NE",1630 +2006-10-01,"Commercial Consumption","Arizona","AZ",2130 +2006-10-01,"Commercial Consumption","Illinois","IL",14140 +2006-10-01,"Commercial Consumption","Colorado","CO",4056 +2006-10-01,"Commercial Consumption","New Mexico","NM",1126 +2006-10-01,"Commercial Consumption","Georgia","GA",3305 +2006-10-01,"Commercial Consumption","Iowa","IA",3045 +2006-10-01,"Commercial Consumption","Delaware","DE",577 +2006-10-01,"Commercial Consumption","District of Columbia","DC",1232 +2006-10-01,"Commercial Consumption","Virginia","VA",4766 +2006-10-01,"Commercial Consumption","Massachusetts","MA",2792 +2006-10-01,"Commercial Consumption","Maryland","MD",4622 +2006-10-01,"Commercial Consumption","Ohio","OH",9517 +2006-10-01,"Commercial Consumption","Michigan","MI",9055 +2006-10-01,"Delivered to Consumers","Oklahoma","OK",35388 +2006-10-01,"Delivered to Consumers","Michigan","MI",50167 +2006-10-01,"Delivered to Consumers","Arkansas","AR",17107 +2006-10-01,"Delivered to Consumers","North Carolina","NC",14070 +2006-10-01,"Delivered to Consumers","Washington","WA",22942 +2006-10-01,"Delivered to Consumers","New York","NY",74825 +2006-10-01,"Delivered to Consumers","Hawaii","HI",223 +2006-10-01,"Delivered to Consumers","Alaska","AK",8764 +2006-10-01,"Delivered to Consumers","Ohio","OH",54845 +2006-10-01,"Delivered to Consumers","Kentucky","KY",14865 +2006-10-01,"Delivered to Consumers","Wisconsin","WI",31566 +2006-10-01,"Delivered to Consumers","California","CA",176728 +2006-10-01,"Delivered to Consumers","New Jersey","NJ",33548 +2006-10-01,"Delivered to Consumers","Maine","ME",6835 +2006-10-01,"Delivered to Consumers","Louisiana","LA",89721 +2006-10-01,"Delivered to Consumers","Arizona","AZ",32378 +2006-10-01,"Delivered to Consumers","Montana","MT",4545 +2006-10-01,"Delivered to Consumers","Connecticut","CT",12435 +2006-10-01,"Delivered to Consumers","Virginia","VA",16950 +2006-10-01,"Delivered to Consumers","Mississippi","MS",22075 +2006-10-01,"Delivered to Consumers","Georgia","GA",31321 +2006-10-01,"Delivered to Consumers","Florida","FL",76817 +2006-10-01,"Delivered to Consumers","District of Columbia","DC",2031 +2006-10-01,"Delivered to Consumers","South Dakota","SD",2584 +2006-10-01,"Delivered to Consumers","Maryland","MD",11895 +2006-10-01,"Delivered to Consumers","Nebraska","NE",7092 +2006-10-01,"Delivered to Consumers","Texas","TX",236029 +2006-10-01,"Delivered to Consumers","South Carolina","SC",12902 +2006-10-01,"Delivered to Consumers","U.S.","U.S.",1501925 +2006-10-01,"Delivered to Consumers","Wyoming","WY",5157 +2006-10-01,"Delivered to Consumers","Illinois","IL",59300 +2006-10-01,"Delivered to Consumers","Utah","UT",9422 +2006-10-01,"Delivered to Consumers","Rhode Island","RI",6845 +2006-10-01,"Delivered to Consumers","Pennsylvania","PA",40867 +2006-10-01,"Delivered to Consumers","Colorado","CO",30373 +2006-10-01,"Delivered to Consumers","Oregon","OR",19209 +2006-10-01,"Delivered to Consumers","New Hampshire","NH",5917 +2006-10-01,"Delivered to Consumers","Indiana","IN",39210 +2006-10-01,"Delivered to Consumers","Delaware","DE",2972 +2006-10-01,"Delivered to Consumers","West Virginia","WV",5877 +2006-10-01,"Delivered to Consumers","Kansas","KS",13555 +2006-10-01,"Delivered to Consumers","Iowa","IA",18360 +2006-10-01,"Delivered to Consumers","Alabama","AL",26082 +2006-10-01,"Delivered to Consumers","North Dakota","ND",3340 +2006-10-01,"Delivered to Consumers","Minnesota","MN",28371 +2006-10-01,"Delivered to Consumers","New Mexico","NM",8783 +2006-10-01,"Delivered to Consumers","Vermont","VT",481 +2006-10-01,"Delivered to Consumers","Idaho","ID",5229 +2006-10-01,"Delivered to Consumers","Tennessee","TN",12178 +2006-10-01,"Delivered to Consumers","Missouri","MO",13848 +2006-10-01,"Delivered to Consumers","Massachusetts","MA",25785 +2006-10-01,"Delivered to Consumers","Nevada","NV",18099 +2006-10-01,"Electric Power Consumption","Colorado","CO",8390 +2006-10-01,"Electric Power Consumption","Texas","TX",114964 +2006-10-01,"Electric Power Consumption","Kansas","KS",1554 +2006-10-01,"Electric Power Consumption","U.S.","U.S.",527532 +2006-10-01,"Electric Power Consumption","Arizona","AZ",27279 +2006-10-01,"Electric Power Consumption","Minnesota","MN",3451 +2006-10-01,"Electric Power Consumption","Mississippi","MS",11142 +2006-10-01,"Electric Power Consumption","Hawaii","HI",NA +2006-10-01,"Electric Power Consumption","Ohio","OH",2246 +2006-10-01,"Electric Power Consumption","Connecticut","CT",6758 +2006-10-01,"Electric Power Consumption","Alaska","AK",3616 +2006-10-01,"Electric Power Consumption","New York","NY",33766 +2006-10-01,"Electric Power Consumption","Rhode Island","RI",5415 +2006-10-01,"Electric Power Consumption","Vermont","VT",2 +2006-10-01,"Electric Power Consumption","Montana","MT",68 +2006-10-01,"Electric Power Consumption","Maryland","MD",1074 +2006-10-01,"Electric Power Consumption","California","CA",66357 +2006-10-01,"Electric Power Consumption","Alabama","AL",10610 +2006-10-01,"Electric Power Consumption","New Jersey","NJ",9098 +2006-10-01,"Electric Power Consumption","South Carolina","SC",3616 +2006-10-01,"Electric Power Consumption","Nevada","NV",13047 +2006-10-01,"Electric Power Consumption","Nebraska","NE",564 +2006-10-01,"Electric Power Consumption","Kentucky","KY",179 +2006-10-01,"Electric Power Consumption","Utah","UT",2900 +2006-10-01,"Electric Power Consumption","Iowa","IA",2639 +2006-10-01,"Electric Power Consumption","Tennessee","TN",99 +2006-10-01,"Electric Power Consumption","Maine","ME",4769 +2006-10-01,"Electric Power Consumption","Florida","FL",66927 +2006-10-01,"Electric Power Consumption","Washington","WA",10060 +2006-10-01,"Electric Power Consumption","Idaho","ID",1360 +2006-10-01,"Electric Power Consumption","Arkansas","AR",6430 +2006-10-01,"Electric Power Consumption","Oklahoma","OK",20880 +2006-10-01,"Electric Power Consumption","West Virginia","WV",301 +2006-10-01,"Electric Power Consumption","Wisconsin","WI",4818 +2006-10-01,"Electric Power Consumption","South Dakota","SD",133 +2006-10-01,"Electric Power Consumption","Missouri","MO",1838 +2006-10-01,"Electric Power Consumption","New Hampshire","NH",4758 +2006-10-01,"Electric Power Consumption","Indiana","IN",1584 +2006-10-01,"Electric Power Consumption","Delaware","DE",527 +2006-10-01,"Electric Power Consumption","Georgia","GA",6850 +2006-10-01,"Electric Power Consumption","Louisiana","LA",16430 +2006-10-01,"Electric Power Consumption","Oregon","OR",10105 +2006-10-01,"Electric Power Consumption","Massachusetts","MA",16173 +2006-10-01,"Electric Power Consumption","Pennsylvania","PA",5763 +2006-10-01,"Electric Power Consumption","Virginia","VA",2631 +2006-10-01,"Electric Power Consumption","New Mexico","NM",5100 +2006-10-01,"Electric Power Consumption","Illinois","IL",2160 +2006-10-01,"Electric Power Consumption","Michigan","MI",8099 +2006-10-01,"Electric Power Consumption","Wyoming","WY",76 +2006-10-01,"Electric Power Consumption","North Carolina","NC",924 +2006-10-01,"Electric Power Consumption","North Dakota","ND",0 +2006-10-01,"Industrial Consumption","Oklahoma","OK",11136 +2006-10-01,"Industrial Consumption","Louisiana","LA",70332 +2006-10-01,"Industrial Consumption","New Mexico","NM",1340 +2006-10-01,"Industrial Consumption","Kansas","KS",8677 +2006-10-01,"Industrial Consumption","U.S.","U.S.",544311 +2006-10-01,"Industrial Consumption","Alabama","AL",12898 +2006-10-01,"Industrial Consumption","Texas","TX",105198 +2006-10-01,"Industrial Consumption","Vermont","VT",233 +2006-10-01,"Industrial Consumption","New Jersey","NJ",5107 +2006-10-01,"Industrial Consumption","Idaho","ID",2095 +2006-10-01,"Industrial Consumption","Michigan","MI",13366 +2006-10-01,"Industrial Consumption","Delaware","DE",1505 +2006-10-01,"Industrial Consumption","South Dakota","SD",906 +2006-10-01,"Industrial Consumption","New York","NY",6436 +2006-10-01,"Industrial Consumption","California","CA",63729 +2006-10-01,"Industrial Consumption","Alaska","AK",2290 +2006-10-01,"Industrial Consumption","Virginia","VA",5100 +2006-10-01,"Industrial Consumption","Wisconsin","WI",10335 +2006-10-01,"Industrial Consumption","Minnesota","MN",9540 +2006-10-01,"Industrial Consumption","Connecticut","CT",1917 +2006-10-01,"Industrial Consumption","Georgia","GA",14191 +2006-10-01,"Industrial Consumption","District of Columbia","DC",0 +2006-10-01,"Industrial Consumption","Colorado","CO",9349 +2006-10-01,"Industrial Consumption","Arkansas","AR",7543 +2006-10-01,"Industrial Consumption","Wyoming","WY",3802 +2006-10-01,"Industrial Consumption","Iowa","IA",8823 +2006-10-01,"Industrial Consumption","Rhode Island","RI",461 +2006-10-01,"Industrial Consumption","Maryland","MD",1884 +2006-10-01,"Industrial Consumption","Missouri","MO",5271 +2006-10-01,"Industrial Consumption","Washington","WA",5805 +2006-10-01,"Industrial Consumption","Utah","UT",2129 +2006-10-01,"Industrial Consumption","Oregon","OR",5938 +2006-10-01,"Industrial Consumption","Mississippi","MS",8867 +2006-10-01,"Industrial Consumption","New Hampshire","NH",430 +2006-10-01,"Industrial Consumption","Florida","FL",5469 +2006-10-01,"Industrial Consumption","North Dakota","ND",1760 +2006-10-01,"Industrial Consumption","Montana","MT",2441 +2006-10-01,"Industrial Consumption","Hawaii","HI",40 +2006-10-01,"Industrial Consumption","Ohio","OH",25535 +2006-10-01,"Industrial Consumption","Arizona","AZ",1426 +2006-10-01,"Industrial Consumption","South Carolina","SC",6810 +2006-10-01,"Industrial Consumption","Nebraska","NE",3465 +2006-10-01,"Industrial Consumption","Pennsylvania","PA",16060 +2006-10-01,"Industrial Consumption","Maine","ME",1662 +2006-10-01,"Industrial Consumption","West Virginia","WV",2784 +2006-10-01,"Industrial Consumption","Kentucky","KY",9298 +2006-10-01,"Industrial Consumption","Illinois","IL",19133 +2006-10-01,"Industrial Consumption","Massachusetts","MA",2718 +2006-10-01,"Industrial Consumption","Nevada","NV",1191 +2006-10-01,"Industrial Consumption","Tennessee","TN",7489 +2006-10-01,"Industrial Consumption","Indiana","IN",22745 +2006-10-01,"Industrial Consumption","North Carolina","NC",7653 +2006-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98383 +2006-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",43924 +2006-10-01,"Residential Consumption","North Carolina","NC",2399 +2006-10-01,"Residential Consumption","Iowa","IA",3853 +2006-10-01,"Residential Consumption","California","CA",28106 +2006-10-01,"Residential Consumption","Alaska","AK",1594 +2006-10-01,"Residential Consumption","Illinois","IL",23866 +2006-10-01,"Residential Consumption","Texas","TX",6430 +2006-10-01,"Residential Consumption","Louisiana","LA",1402 +2006-10-01,"Residential Consumption","Connecticut","CT",1743 +2006-10-01,"Residential Consumption","Montana","MT",1191 +2006-10-01,"Residential Consumption","Delaware","DE",363 +2006-10-01,"Residential Consumption","West Virginia","WV",1159 +2006-10-01,"Residential Consumption","New York","NY",18626 +2006-10-01,"Residential Consumption","Nevada","NV",1878 +2006-10-01,"Residential Consumption","Wyoming","WY",695 +2006-10-01,"Residential Consumption","Rhode Island","RI",589 +2006-10-01,"Residential Consumption","Michigan","MI",19647 +2006-10-01,"Residential Consumption","Maryland","MD",4315 +2006-10-01,"Residential Consumption","Minnesota","MN",8795 +2006-10-01,"Residential Consumption","North Dakota","ND",800 +2006-10-01,"Residential Consumption","Kansas","KS",2058 +2006-10-01,"Residential Consumption","Tennessee","TN",1775 +2006-10-01,"Residential Consumption","Virginia","VA",4454 +2006-10-01,"Residential Consumption","South Dakota","SD",815 +2006-10-01,"Residential Consumption","Maine","ME",60 +2006-10-01,"Residential Consumption","Arkansas","AR",1123 +2006-10-01,"Residential Consumption","New Jersey","NJ",9337 +2006-10-01,"Residential Consumption","Washington","WA",3880 +2006-10-01,"Residential Consumption","Alabama","AL",1223 +2006-10-01,"Residential Consumption","U.S.","U.S.",240448 +2006-10-01,"Residential Consumption","Hawaii","HI",39 +2006-10-01,"Residential Consumption","Nebraska","NE",1433 +2006-10-01,"Residential Consumption","Georgia","GA",6975 +2006-10-01,"Residential Consumption","Arizona","AZ",1544 +2006-10-01,"Residential Consumption","Oregon","OR",1712 +2006-10-01,"Residential Consumption","Wisconsin","WI",9516 +2006-10-01,"Residential Consumption","Vermont","VT",122 +2006-10-01,"Residential Consumption","Utah","UT",2823 +2006-10-01,"Residential Consumption","District of Columbia","DC",799 +2006-10-01,"Residential Consumption","New Mexico","NM",1217 +2006-10-01,"Residential Consumption","Indiana","IN",8899 +2006-10-01,"Residential Consumption","Massachusetts","MA",4103 +2006-10-01,"Residential Consumption","Idaho","ID",1052 +2006-10-01,"Residential Consumption","Missouri","MO",3669 +2006-10-01,"Residential Consumption","South Carolina","SC",958 +2006-10-01,"Residential Consumption","Ohio","OH",17546 +2006-10-01,"Residential Consumption","Mississippi","MS",764 +2006-10-01,"Residential Consumption","Pennsylvania","PA",10899 +2006-10-01,"Residential Consumption","Florida","FL",789 +2006-10-01,"Residential Consumption","New Hampshire","NH",281 +2006-10-01,"Residential Consumption","Kentucky","KY",2974 +2006-10-01,"Residential Consumption","Colorado","CO",8577 +2006-10-01,"Residential Consumption","Oklahoma","OK",1579 +2006-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2016 +2006-11-01,"Commercial Consumption","Minnesota","MN",8732 +2006-11-01,"Commercial Consumption","Oregon","OR",2488 +2006-11-01,"Commercial Consumption","Wisconsin","WI",9122 +2006-11-01,"Commercial Consumption","Kentucky","KY",3142 +2006-11-01,"Commercial Consumption","U.S.","U.S.",256210 +2006-11-01,"Commercial Consumption","Idaho","ID",1418 +2006-11-01,"Commercial Consumption","Nebraska","NE",2159 +2006-11-01,"Commercial Consumption","Utah","UT",2787 +2006-11-01,"Commercial Consumption","New Mexico","NM",1819 +2006-11-01,"Commercial Consumption","South Dakota","SD",995 +2006-11-01,"Commercial Consumption","Ohio","OH",13864 +2006-11-01,"Commercial Consumption","Alaska","AK",2580 +2006-11-01,"Commercial Consumption","Indiana","IN",7969 +2006-11-01,"Commercial Consumption","District of Columbia","DC",1609 +2006-11-01,"Commercial Consumption","Wyoming","WY",910 +2006-11-01,"Commercial Consumption","South Carolina","SC",1785 +2006-11-01,"Commercial Consumption","Texas","TX",11769 +2006-11-01,"Commercial Consumption","Arkansas","AR",2646 +2006-11-01,"Commercial Consumption","Mississippi","MS",1895 +2006-11-01,"Commercial Consumption","Illinois","IL",19817 +2006-11-01,"Commercial Consumption","Colorado","CO",6672 +2006-11-01,"Commercial Consumption","Maine","ME",444 +2006-11-01,"Commercial Consumption","Kansas","KS",2420 +2006-11-01,"Commercial Consumption","Florida","FL",4008 +2006-11-01,"Commercial Consumption","New York","NY",21187 +2006-11-01,"Commercial Consumption","Michigan","MI",14540 +2006-11-01,"Commercial Consumption","North Carolina","NC",3884 +2006-11-01,"Commercial Consumption","New Hampshire","NH",580 +2006-11-01,"Commercial Consumption","Georgia","GA",5418 +2006-11-01,"Commercial Consumption","Iowa","IA",4571 +2006-11-01,"Commercial Consumption","West Virginia","WV",2120 +2006-11-01,"Commercial Consumption","Oklahoma","OK",3060 +2006-11-01,"Commercial Consumption","Virginia","VA",6070 +2006-11-01,"Commercial Consumption","Vermont","VT",190 +2006-11-01,"Commercial Consumption","Delaware","DE",789 +2006-11-01,"Commercial Consumption","Tennessee","TN",4521 +2006-11-01,"Commercial Consumption","Washington","WA",4926 +2006-11-01,"Commercial Consumption","Missouri","MO",5217 +2006-11-01,"Commercial Consumption","New Jersey","NJ",11578 +2006-11-01,"Commercial Consumption","Montana","MT",1395 +2006-11-01,"Commercial Consumption","Maryland","MD",5868 +2006-11-01,"Commercial Consumption","Rhode Island","RI",734 +2006-11-01,"Commercial Consumption","Connecticut","CT",2608 +2006-11-01,"Commercial Consumption","California","CA",20041 +2006-11-01,"Commercial Consumption","Alabama","AL",2009 +2006-11-01,"Commercial Consumption","North Dakota","ND",1124 +2006-11-01,"Commercial Consumption","Pennsylvania","PA",11646 +2006-11-01,"Commercial Consumption","Massachusetts","MA",3911 +2006-11-01,"Commercial Consumption","Hawaii","HI",147 +2006-11-01,"Commercial Consumption","Arizona","AZ",2686 +2006-11-01,"Commercial Consumption","Nevada","NV",2234 +2006-11-01,"Commercial Consumption","Louisiana","LA",2105 +2006-11-01,"Delivered to Consumers","Maryland","MD",16300 +2006-11-01,"Delivered to Consumers","Missouri","MO",21841 +2006-11-01,"Delivered to Consumers","Colorado","CO",38546 +2006-11-01,"Delivered to Consumers","Texas","TX",214986 +2006-11-01,"Delivered to Consumers","Louisiana","LA",89141 +2006-11-01,"Delivered to Consumers","Vermont","VT",658 +2006-11-01,"Delivered to Consumers","Rhode Island","RI",5472 +2006-11-01,"Delivered to Consumers","Virginia","VA",21597 +2006-11-01,"Delivered to Consumers","Washington","WA",24231 +2006-11-01,"Delivered to Consumers","District of Columbia","DC",2784 +2006-11-01,"Delivered to Consumers","Alaska","AK",10543 +2006-11-01,"Delivered to Consumers","Michigan","MI",70643 +2006-11-01,"Delivered to Consumers","Kentucky","KY",17982 +2006-11-01,"Delivered to Consumers","Iowa","IA",22732 +2006-11-01,"Delivered to Consumers","Arkansas","AR",15346 +2006-11-01,"Delivered to Consumers","Nevada","NV",16784 +2006-11-01,"Delivered to Consumers","Georgia","GA",35677 +2006-11-01,"Delivered to Consumers","New Mexico","NM",10361 +2006-11-01,"Delivered to Consumers","Indiana","IN",47253 +2006-11-01,"Delivered to Consumers","Illinois","IL",83859 +2006-11-01,"Delivered to Consumers","Kansas","KS",17451 +2006-11-01,"Delivered to Consumers","Alabama","AL",25185 +2006-11-01,"Delivered to Consumers","West Virginia","WV",7860 +2006-11-01,"Delivered to Consumers","Hawaii","HI",223 +2006-11-01,"Delivered to Consumers","Oklahoma","OK",34881 +2006-11-01,"Delivered to Consumers","Tennessee","TN",18468 +2006-11-01,"Delivered to Consumers","Pennsylvania","PA",49703 +2006-11-01,"Delivered to Consumers","Nebraska","NE",10375 +2006-11-01,"Delivered to Consumers","California","CA",179219 +2006-11-01,"Delivered to Consumers","New Jersey","NJ",41819 +2006-11-01,"Delivered to Consumers","Utah","UT",13464 +2006-11-01,"Delivered to Consumers","Wyoming","WY",5893 +2006-11-01,"Delivered to Consumers","Montana","MT",6560 +2006-11-01,"Delivered to Consumers","Maine","ME",5939 +2006-11-01,"Delivered to Consumers","New Hampshire","NH",3850 +2006-11-01,"Delivered to Consumers","North Dakota","ND",3833 +2006-11-01,"Delivered to Consumers","U.S.","U.S.",1622364 +2006-11-01,"Delivered to Consumers","Idaho","ID",6622 +2006-11-01,"Delivered to Consumers","Ohio","OH",69951 +2006-11-01,"Delivered to Consumers","Connecticut","CT",13047 +2006-11-01,"Delivered to Consumers","North Carolina","NC",18457 +2006-11-01,"Delivered to Consumers","Massachusetts","MA",25506 +2006-11-01,"Delivered to Consumers","Arizona","AZ",24493 +2006-11-01,"Delivered to Consumers","Minnesota","MN",34462 +2006-11-01,"Delivered to Consumers","Delaware","DE",3454 +2006-11-01,"Delivered to Consumers","South Dakota","SD",3428 +2006-11-01,"Delivered to Consumers","New York","NY",81800 +2006-11-01,"Delivered to Consumers","Wisconsin","WI",36227 +2006-11-01,"Delivered to Consumers","Mississippi","MS",19295 +2006-11-01,"Delivered to Consumers","South Carolina","SC",14061 +2006-11-01,"Delivered to Consumers","Oregon","OR",19557 +2006-11-01,"Delivered to Consumers","Florida","FL",58594 +2006-11-01,"Electric Power Consumption","Virginia","VA",2252 +2006-11-01,"Electric Power Consumption","Arkansas","AR",2352 +2006-11-01,"Electric Power Consumption","Utah","UT",3094 +2006-11-01,"Electric Power Consumption","Kansas","KS",818 +2006-11-01,"Electric Power Consumption","Nevada","NV",10709 +2006-11-01,"Electric Power Consumption","Wyoming","WY",61 +2006-11-01,"Electric Power Consumption","Vermont","VT",4 +2006-11-01,"Electric Power Consumption","California","CA",60771 +2006-11-01,"Electric Power Consumption","Oregon","OR",7221 +2006-11-01,"Electric Power Consumption","U.S.","U.S.",396586 +2006-11-01,"Electric Power Consumption","Georgia","GA",3690 +2006-11-01,"Electric Power Consumption","Texas","TX",86706 +2006-11-01,"Electric Power Consumption","Rhode Island","RI",2975 +2006-11-01,"Electric Power Consumption","Tennessee","TN",104 +2006-11-01,"Electric Power Consumption","Missouri","MO",1232 +2006-11-01,"Electric Power Consumption","Connecticut","CT",5533 +2006-11-01,"Electric Power Consumption","New Mexico","NM",4644 +2006-11-01,"Electric Power Consumption","Colorado","CO",7379 +2006-11-01,"Electric Power Consumption","West Virginia","WV",348 +2006-11-01,"Electric Power Consumption","North Dakota","ND",0 +2006-11-01,"Electric Power Consumption","Arizona","AZ",17806 +2006-11-01,"Electric Power Consumption","Wisconsin","WI",3796 +2006-11-01,"Electric Power Consumption","Pennsylvania","PA",3145 +2006-11-01,"Electric Power Consumption","Hawaii","HI",NA +2006-11-01,"Electric Power Consumption","Delaware","DE",313 +2006-11-01,"Electric Power Consumption","Florida","FL",47986 +2006-11-01,"Electric Power Consumption","Washington","WA",4698 +2006-11-01,"Electric Power Consumption","Idaho","ID",877 +2006-11-01,"Electric Power Consumption","South Carolina","SC",3683 +2006-11-01,"Electric Power Consumption","Iowa","IA",2393 +2006-11-01,"Electric Power Consumption","Maine","ME",3826 +2006-11-01,"Electric Power Consumption","New Hampshire","NH",2245 +2006-11-01,"Electric Power Consumption","Indiana","IN",1831 +2006-11-01,"Electric Power Consumption","New Jersey","NJ",7902 +2006-11-01,"Electric Power Consumption","Oklahoma","OK",14270 +2006-11-01,"Electric Power Consumption","Minnesota","MN",2423 +2006-11-01,"Electric Power Consumption","Illinois","IL",2028 +2006-11-01,"Electric Power Consumption","Michigan","MI",7856 +2006-11-01,"Electric Power Consumption","Massachusetts","MA",10683 +2006-11-01,"Electric Power Consumption","South Dakota","SD",112 +2006-11-01,"Electric Power Consumption","Nebraska","NE",334 +2006-11-01,"Electric Power Consumption","North Carolina","NC",852 +2006-11-01,"Electric Power Consumption","Kentucky","KY",302 +2006-11-01,"Electric Power Consumption","Ohio","OH",1958 +2006-11-01,"Electric Power Consumption","Maryland","MD",973 +2006-11-01,"Electric Power Consumption","Alabama","AL",7580 +2006-11-01,"Electric Power Consumption","Louisiana","LA",12697 +2006-11-01,"Electric Power Consumption","New York","NY",23831 +2006-11-01,"Electric Power Consumption","Mississippi","MS",6299 +2006-11-01,"Electric Power Consumption","Montana","MT",44 +2006-11-01,"Electric Power Consumption","Alaska","AK",3947 +2006-11-01,"Industrial Consumption","Montana","MT",3073 +2006-11-01,"Industrial Consumption","Massachusetts","MA",3318 +2006-11-01,"Industrial Consumption","Ohio","OH",25568 +2006-11-01,"Industrial Consumption","Oregon","OR",5956 +2006-11-01,"Industrial Consumption","Maine","ME",1586 +2006-11-01,"Industrial Consumption","Illinois","IL",21614 +2006-11-01,"Industrial Consumption","Alaska","AK",818 +2006-11-01,"Industrial Consumption","Louisiana","LA",71207 +2006-11-01,"Industrial Consumption","Maryland","MD",1997 +2006-11-01,"Industrial Consumption","U.S.","U.S.",554208 +2006-11-01,"Industrial Consumption","Nevada","NV",1018 +2006-11-01,"Industrial Consumption","Alabama","AL",12367 +2006-11-01,"Industrial Consumption","South Carolina","SC",5885 +2006-11-01,"Industrial Consumption","New Jersey","NJ",5607 +2006-11-01,"Industrial Consumption","North Dakota","ND",1485 +2006-11-01,"Industrial Consumption","Missouri","MO",5763 +2006-11-01,"Industrial Consumption","Texas","TX",104814 +2006-11-01,"Industrial Consumption","Wisconsin","WI",10729 +2006-11-01,"Industrial Consumption","Idaho","ID",1919 +2006-11-01,"Industrial Consumption","Florida","FL",5542 +2006-11-01,"Industrial Consumption","Connecticut","CT",1679 +2006-11-01,"Industrial Consumption","Kentucky","KY",8731 +2006-11-01,"Industrial Consumption","Oklahoma","OK",13371 +2006-11-01,"Industrial Consumption","Kansas","KS",9024 +2006-11-01,"Industrial Consumption","Arkansas","AR",7504 +2006-11-01,"Industrial Consumption","Tennessee","TN",8158 +2006-11-01,"Industrial Consumption","Michigan","MI",15347 +2006-11-01,"Industrial Consumption","New Mexico","NM",1427 +2006-11-01,"Industrial Consumption","Mississippi","MS",8686 +2006-11-01,"Industrial Consumption","West Virginia","WV",2770 +2006-11-01,"Industrial Consumption","Vermont","VT",238 +2006-11-01,"Industrial Consumption","New Hampshire","NH",531 +2006-11-01,"Industrial Consumption","Minnesota","MN",10239 +2006-11-01,"Industrial Consumption","Iowa","IA",9537 +2006-11-01,"Industrial Consumption","Indiana","IN",23061 +2006-11-01,"Industrial Consumption","District of Columbia","DC",0 +2006-11-01,"Industrial Consumption","South Dakota","SD",1078 +2006-11-01,"Industrial Consumption","Arizona","AZ",1594 +2006-11-01,"Industrial Consumption","Utah","UT",2458 +2006-11-01,"Industrial Consumption","Pennsylvania","PA",16141 +2006-11-01,"Industrial Consumption","Wyoming","WY",3744 +2006-11-01,"Industrial Consumption","North Carolina","NC",7767 +2006-11-01,"Industrial Consumption","Georgia","GA",13821 +2006-11-01,"Industrial Consumption","Hawaii","HI",35 +2006-11-01,"Industrial Consumption","Colorado","CO",10235 +2006-11-01,"Industrial Consumption","Washington","WA",6568 +2006-11-01,"Industrial Consumption","New York","NY",6452 +2006-11-01,"Industrial Consumption","California","CA",60995 +2006-11-01,"Industrial Consumption","Nebraska","NE",4750 +2006-11-01,"Industrial Consumption","Virginia","VA",5815 +2006-11-01,"Industrial Consumption","Delaware","DE",1544 +2006-11-01,"Industrial Consumption","Rhode Island","RI",642 +2006-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",95560 +2006-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",47451 +2006-11-01,"Residential Consumption","Hawaii","HI",40 +2006-11-01,"Residential Consumption","Tennessee","TN",5685 +2006-11-01,"Residential Consumption","Utah","UT",5126 +2006-11-01,"Residential Consumption","Minnesota","MN",13068 +2006-11-01,"Residential Consumption","Georgia","GA",12749 +2006-11-01,"Residential Consumption","Vermont","VT",226 +2006-11-01,"Residential Consumption","Pennsylvania","PA",18771 +2006-11-01,"Residential Consumption","Texas","TX",11696 +2006-11-01,"Residential Consumption","Rhode Island","RI",1121 +2006-11-01,"Residential Consumption","Oregon","OR",3892 +2006-11-01,"Residential Consumption","Iowa","IA",6231 +2006-11-01,"Residential Consumption","Connecticut","CT",3226 +2006-11-01,"Residential Consumption","Nebraska","NE",3132 +2006-11-01,"Residential Consumption","District of Columbia","DC",1175 +2006-11-01,"Residential Consumption","Florida","FL",1058 +2006-11-01,"Residential Consumption","Arkansas","AR",2844 +2006-11-01,"Residential Consumption","Colorado","CO",14259 +2006-11-01,"Residential Consumption","Missouri","MO",9628 +2006-11-01,"Residential Consumption","California","CA",37412 +2006-11-01,"Residential Consumption","Arizona","AZ",2407 +2006-11-01,"Residential Consumption","Alaska","AK",3197 +2006-11-01,"Residential Consumption","New York","NY",30329 +2006-11-01,"Residential Consumption","North Carolina","NC",5954 +2006-11-01,"Residential Consumption","Louisiana","LA",3132 +2006-11-01,"Residential Consumption","Maryland","MD",7461 +2006-11-01,"Residential Consumption","Indiana","IN",14392 +2006-11-01,"Residential Consumption","Massachusetts","MA",7594 +2006-11-01,"Residential Consumption","Ohio","OH",28561 +2006-11-01,"Residential Consumption","Idaho","ID",2408 +2006-11-01,"Residential Consumption","New Hampshire","NH",493 +2006-11-01,"Residential Consumption","Kentucky","KY",5807 +2006-11-01,"Residential Consumption","Oklahoma","OK",4179 +2006-11-01,"Residential Consumption","West Virginia","WV",2623 +2006-11-01,"Residential Consumption","New Mexico","NM",2470 +2006-11-01,"Residential Consumption","Maine","ME",84 +2006-11-01,"Residential Consumption","New Jersey","NJ",16732 +2006-11-01,"Residential Consumption","Washington","WA",8040 +2006-11-01,"Residential Consumption","Alabama","AL",3228 +2006-11-01,"Residential Consumption","Wisconsin","WI",12580 +2006-11-01,"Residential Consumption","Virginia","VA",7460 +2006-11-01,"Residential Consumption","Michigan","MI",32900 +2006-11-01,"Residential Consumption","Nevada","NV",2823 +2006-11-01,"Residential Consumption","North Dakota","ND",1224 +2006-11-01,"Residential Consumption","Montana","MT",2048 +2006-11-01,"Residential Consumption","South Carolina","SC",2708 +2006-11-01,"Residential Consumption","Mississippi","MS",2414 +2006-11-01,"Residential Consumption","South Dakota","SD",1243 +2006-11-01,"Residential Consumption","Kansas","KS",5189 +2006-11-01,"Residential Consumption","Delaware","DE",808 +2006-11-01,"Residential Consumption","Wyoming","WY",1179 +2006-11-01,"Residential Consumption","U.S.","U.S.",413409 +2006-11-01,"Residential Consumption","Illinois","IL",40401 +2006-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",1951 +2006-12-01,"Commercial Consumption","Virginia","VA",7729 +2006-12-01,"Commercial Consumption","Missouri","MO",8076 +2006-12-01,"Commercial Consumption","New Hampshire","NH",954 +2006-12-01,"Commercial Consumption","Ohio","OH",20000 +2006-12-01,"Commercial Consumption","Iowa","IA",5666 +2006-12-01,"Commercial Consumption","Hawaii","HI",151 +2006-12-01,"Commercial Consumption","Delaware","DE",1077 +2006-12-01,"Commercial Consumption","South Carolina","SC",2332 +2006-12-01,"Commercial Consumption","Maine","ME",627 +2006-12-01,"Commercial Consumption","Kentucky","KY",4787 +2006-12-01,"Commercial Consumption","Alabama","AL",3039 +2006-12-01,"Commercial Consumption","Nebraska","NE",3667 +2006-12-01,"Commercial Consumption","Massachusetts","MA",5462 +2006-12-01,"Commercial Consumption","Maryland","MD",7932 +2006-12-01,"Commercial Consumption","Connecticut","CT",3585 +2006-12-01,"Commercial Consumption","Arizona","AZ",3978 +2006-12-01,"Commercial Consumption","Washington","WA",7048 +2006-12-01,"Commercial Consumption","North Dakota","ND",1379 +2006-12-01,"Commercial Consumption","New Mexico","NM",2980 +2006-12-01,"Commercial Consumption","South Dakota","SD",1438 +2006-12-01,"Commercial Consumption","Montana","MT",1904 +2006-12-01,"Commercial Consumption","California","CA",25383 +2006-12-01,"Commercial Consumption","Tennessee","TN",6500 +2006-12-01,"Commercial Consumption","Illinois","IL",24601 +2006-12-01,"Commercial Consumption","Wyoming","WY",1251 +2006-12-01,"Commercial Consumption","Rhode Island","RI",1126 +2006-12-01,"Commercial Consumption","New York","NY",27122 +2006-12-01,"Commercial Consumption","Wisconsin","WI",11735 +2006-12-01,"Commercial Consumption","U.S.","U.S.",346668 +2006-12-01,"Commercial Consumption","Texas","TX",17223 +2006-12-01,"Commercial Consumption","Vermont","VT",268 +2006-12-01,"Commercial Consumption","Mississippi","MS",2434 +2006-12-01,"Commercial Consumption","Nevada","NV",3351 +2006-12-01,"Commercial Consumption","Louisiana","LA",2364 +2006-12-01,"Commercial Consumption","North Carolina","NC",5449 +2006-12-01,"Commercial Consumption","Colorado","CO",8414 +2006-12-01,"Commercial Consumption","Oregon","OR",3870 +2006-12-01,"Commercial Consumption","Oklahoma","OK",5272 +2006-12-01,"Commercial Consumption","Pennsylvania","PA",16047 +2006-12-01,"Commercial Consumption","New Jersey","NJ",15941 +2006-12-01,"Commercial Consumption","Georgia","GA",6855 +2006-12-01,"Commercial Consumption","Florida","FL",4723 +2006-12-01,"Commercial Consumption","Alaska","AK",2353 +2006-12-01,"Commercial Consumption","Michigan","MI",19788 +2006-12-01,"Commercial Consumption","District of Columbia","DC",2098 +2006-12-01,"Commercial Consumption","West Virginia","WV",2646 +2006-12-01,"Commercial Consumption","Minnesota","MN",11435 +2006-12-01,"Commercial Consumption","Utah","UT",4643 +2006-12-01,"Commercial Consumption","Kansas","KS",4120 +2006-12-01,"Commercial Consumption","Idaho","ID",2003 +2006-12-01,"Commercial Consumption","Arkansas","AR",3731 +2006-12-01,"Commercial Consumption","Indiana","IN",10113 +2006-12-01,"Delivered to Consumers","Rhode Island","RI",6230 +2006-12-01,"Delivered to Consumers","Kansas","KS",24135 +2006-12-01,"Delivered to Consumers","Idaho","ID",9056 +2006-12-01,"Delivered to Consumers","Virginia","VA",26903 +2006-12-01,"Delivered to Consumers","Oregon","OR",26011 +2006-12-01,"Delivered to Consumers","Minnesota","MN",41325 +2006-12-01,"Delivered to Consumers","Alabama","AL",29760 +2006-12-01,"Delivered to Consumers","Nebraska","NE",13432 +2006-12-01,"Delivered to Consumers","Florida","FL",56867 +2006-12-01,"Delivered to Consumers","New Mexico","NM",13959 +2006-12-01,"Delivered to Consumers","Indiana","IN",56403 +2006-12-01,"Delivered to Consumers","Oklahoma","OK",46374 +2006-12-01,"Delivered to Consumers","Michigan","MI",85634 +2006-12-01,"Delivered to Consumers","Texas","TX",248960 +2006-12-01,"Delivered to Consumers","New Jersey","NJ",55840 +2006-12-01,"Delivered to Consumers","Arizona","AZ",29027 +2006-12-01,"Delivered to Consumers","Delaware","DE",4379 +2006-12-01,"Delivered to Consumers","Wyoming","WY",6958 +2006-12-01,"Delivered to Consumers","South Dakota","SD",4503 +2006-12-01,"Delivered to Consumers","Tennessee","TN",24772 +2006-12-01,"Delivered to Consumers","Ohio","OH",88329 +2006-12-01,"Delivered to Consumers","Iowa","IA",25747 +2006-12-01,"Delivered to Consumers","Massachusetts","MA",31234 +2006-12-01,"Delivered to Consumers","South Carolina","SC",14246 +2006-12-01,"Delivered to Consumers","New Hampshire","NH",6263 +2006-12-01,"Delivered to Consumers","Vermont","VT",893 +2006-12-01,"Delivered to Consumers","Illinois","IL",105529 +2006-12-01,"Delivered to Consumers","Maryland","MD",21239 +2006-12-01,"Delivered to Consumers","Hawaii","HI",231 +2006-12-01,"Delivered to Consumers","Missouri","MO",30310 +2006-12-01,"Delivered to Consumers","District of Columbia","DC",3908 +2006-12-01,"Delivered to Consumers","Utah","UT",19710 +2006-12-01,"Delivered to Consumers","U.S.","U.S.",1965718 +2006-12-01,"Delivered to Consumers","New York","NY",99716 +2006-12-01,"Delivered to Consumers","Connecticut","CT",15442 +2006-12-01,"Delivered to Consumers","Arkansas","AR",19021 +2006-12-01,"Delivered to Consumers","North Carolina","NC",22889 +2006-12-01,"Delivered to Consumers","California","CA",218721 +2006-12-01,"Delivered to Consumers","Nevada","NV",23869 +2006-12-01,"Delivered to Consumers","Maine","ME",5217 +2006-12-01,"Delivered to Consumers","Georgia","GA",40816 +2006-12-01,"Delivered to Consumers","Washington","WA",31558 +2006-12-01,"Delivered to Consumers","West Virginia","WV",9202 +2006-12-01,"Delivered to Consumers","Alaska","AK",9749 +2006-12-01,"Delivered to Consumers","Pennsylvania","PA",63941 +2006-12-01,"Delivered to Consumers","Mississippi","MS",22482 +2006-12-01,"Delivered to Consumers","Colorado","CO",49332 +2006-12-01,"Delivered to Consumers","Louisiana","LA",94300 +2006-12-01,"Delivered to Consumers","Montana","MT",8194 +2006-12-01,"Delivered to Consumers","Kentucky","KY",22930 +2006-12-01,"Delivered to Consumers","Wisconsin","WI",44483 +2006-12-01,"Delivered to Consumers","North Dakota","ND",3672 +2006-12-01,"Electric Power Consumption","Washington","WA",6032 +2006-12-01,"Electric Power Consumption","Idaho","ID",1329 +2006-12-01,"Electric Power Consumption","Massachusetts","MA",9611 +2006-12-01,"Electric Power Consumption","West Virginia","WV",144 +2006-12-01,"Electric Power Consumption","Pennsylvania","PA",4180 +2006-12-01,"Electric Power Consumption","Hawaii","HI",NA +2006-12-01,"Electric Power Consumption","Montana","MT",44 +2006-12-01,"Electric Power Consumption","Arkansas","AR",2575 +2006-12-01,"Electric Power Consumption","Oklahoma","OK",17684 +2006-12-01,"Electric Power Consumption","Michigan","MI",7060 +2006-12-01,"Electric Power Consumption","Iowa","IA",1544 +2006-12-01,"Electric Power Consumption","Tennessee","TN",416 +2006-12-01,"Electric Power Consumption","Maine","ME",2843 +2006-12-01,"Electric Power Consumption","Mississippi","MS",7992 +2006-12-01,"Electric Power Consumption","Indiana","IN",1554 +2006-12-01,"Electric Power Consumption","Rhode Island","RI",2871 +2006-12-01,"Electric Power Consumption","Utah","UT",3726 +2006-12-01,"Electric Power Consumption","Oregon","OR",9701 +2006-12-01,"Electric Power Consumption","Vermont","VT",5 +2006-12-01,"Electric Power Consumption","Arizona","AZ",17554 +2006-12-01,"Electric Power Consumption","California","CA",64967 +2006-12-01,"Electric Power Consumption","U.S.","U.S.",414365 +2006-12-01,"Electric Power Consumption","Missouri","MO",1106 +2006-12-01,"Electric Power Consumption","Delaware","DE",614 +2006-12-01,"Electric Power Consumption","Georgia","GA",4075 +2006-12-01,"Electric Power Consumption","New Mexico","NM",4440 +2006-12-01,"Electric Power Consumption","Kansas","KS",730 +2006-12-01,"Electric Power Consumption","Nevada","NV",13247 +2006-12-01,"Electric Power Consumption","Maryland","MD",1063 +2006-12-01,"Electric Power Consumption","Alabama","AL",7829 +2006-12-01,"Electric Power Consumption","Wisconsin","WI",2021 +2006-12-01,"Electric Power Consumption","South Dakota","SD",242 +2006-12-01,"Electric Power Consumption","Nebraska","NE",417 +2006-12-01,"Electric Power Consumption","New Hampshire","NH",3985 +2006-12-01,"Electric Power Consumption","Connecticut","CT",5382 +2006-12-01,"Electric Power Consumption","Alaska","AK",4029 +2006-12-01,"Electric Power Consumption","Virginia","VA",2174 +2006-12-01,"Electric Power Consumption","New Jersey","NJ",8461 +2006-12-01,"Electric Power Consumption","South Carolina","SC",1942 +2006-12-01,"Electric Power Consumption","New York","NY",23450 +2006-12-01,"Electric Power Consumption","Illinois","IL",1133 +2006-12-01,"Electric Power Consumption","North Carolina","NC",873 +2006-12-01,"Electric Power Consumption","Louisiana","LA",12813 +2006-12-01,"Electric Power Consumption","Colorado","CO",9178 +2006-12-01,"Electric Power Consumption","Texas","TX",94640 +2006-12-01,"Electric Power Consumption","Minnesota","MN",2568 +2006-12-01,"Electric Power Consumption","Wyoming","WY",71 +2006-12-01,"Electric Power Consumption","Kentucky","KY",447 +2006-12-01,"Electric Power Consumption","Ohio","OH",1081 +2006-12-01,"Electric Power Consumption","North Dakota","ND",0 +2006-12-01,"Electric Power Consumption","Florida","FL",44520 +2006-12-01,"Industrial Consumption","North Dakota","ND",907 +2006-12-01,"Industrial Consumption","Montana","MT",3279 +2006-12-01,"Industrial Consumption","Maryland","MD",1698 +2006-12-01,"Industrial Consumption","Hawaii","HI",37 +2006-12-01,"Industrial Consumption","Missouri","MO",6210 +2006-12-01,"Industrial Consumption","Louisiana","LA",73813 +2006-12-01,"Industrial Consumption","Washington","WA",6434 +2006-12-01,"Industrial Consumption","California","CA",62708 +2006-12-01,"Industrial Consumption","Idaho","ID",2116 +2006-12-01,"Industrial Consumption","Arizona","AZ",1921 +2006-12-01,"Industrial Consumption","Pennsylvania","PA",15728 +2006-12-01,"Industrial Consumption","Alaska","AK",834 +2006-12-01,"Industrial Consumption","Ohio","OH",27894 +2006-12-01,"Industrial Consumption","New York","NY",6992 +2006-12-01,"Industrial Consumption","Nebraska","NE",4252 +2006-12-01,"Industrial Consumption","Virginia","VA",5755 +2006-12-01,"Industrial Consumption","Wyoming","WY",3967 +2006-12-01,"Industrial Consumption","Connecticut","CT",1868 +2006-12-01,"Industrial Consumption","Indiana","IN",24551 +2006-12-01,"Industrial Consumption","Oklahoma","OK",14452 +2006-12-01,"Industrial Consumption","Texas","TX",110706 +2006-12-01,"Industrial Consumption","Mississippi","MS",8520 +2006-12-01,"Industrial Consumption","Wisconsin","WI",11774 +2006-12-01,"Industrial Consumption","New Jersey","NJ",5595 +2006-12-01,"Industrial Consumption","Florida","FL",5907 +2006-12-01,"Industrial Consumption","Michigan","MI",17075 +2006-12-01,"Industrial Consumption","Rhode Island","RI",496 +2006-12-01,"Industrial Consumption","North Carolina","NC",7799 +2006-12-01,"Industrial Consumption","South Dakota","SD",949 +2006-12-01,"Industrial Consumption","Maine","ME",1611 +2006-12-01,"Industrial Consumption","Tennessee","TN",8238 +2006-12-01,"Industrial Consumption","Illinois","IL",23228 +2006-12-01,"Industrial Consumption","Delaware","DE",1371 +2006-12-01,"Industrial Consumption","New Mexico","NM",1683 +2006-12-01,"Industrial Consumption","Kansas","KS",9869 +2006-12-01,"Industrial Consumption","U.S.","U.S.",579073 +2006-12-01,"Industrial Consumption","New Hampshire","NH",544 +2006-12-01,"Industrial Consumption","Minnesota","MN",9972 +2006-12-01,"Industrial Consumption","Iowa","IA",9005 +2006-12-01,"Industrial Consumption","Massachusetts","MA",4431 +2006-12-01,"Industrial Consumption","Colorado","CO",12528 +2006-12-01,"Industrial Consumption","Utah","UT",2511 +2006-12-01,"Industrial Consumption","Oregon","OR",6090 +2006-12-01,"Industrial Consumption","Nevada","NV",1179 +2006-12-01,"Industrial Consumption","Arkansas","AR",7920 +2006-12-01,"Industrial Consumption","Alabama","AL",13086 +2006-12-01,"Industrial Consumption","South Carolina","SC",5774 +2006-12-01,"Industrial Consumption","West Virginia","WV",2814 +2006-12-01,"Industrial Consumption","Vermont","VT",284 +2006-12-01,"Industrial Consumption","Kentucky","KY",9807 +2006-12-01,"Industrial Consumption","Georgia","GA",12893 +2006-12-01,"Industrial Consumption","District of Columbia","DC",0 +2006-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",99566 +2006-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",57501 +2006-12-01,"Residential Consumption","Texas","TX",26392 +2006-12-01,"Residential Consumption","Idaho","ID",3608 +2006-12-01,"Residential Consumption","Arizona","AZ",5575 +2006-12-01,"Residential Consumption","Alabama","AL",5806 +2006-12-01,"Residential Consumption","U.S.","U.S.",623595 +2006-12-01,"Residential Consumption","Minnesota","MN",17350 +2006-12-01,"Residential Consumption","Pennsylvania","PA",27985 +2006-12-01,"Residential Consumption","Arkansas","AR",4795 +2006-12-01,"Residential Consumption","Oregon","OR",6350 +2006-12-01,"Residential Consumption","Wisconsin","WI",18953 +2006-12-01,"Residential Consumption","Florida","FL",1716 +2006-12-01,"Residential Consumption","Montana","MT",2966 +2006-12-01,"Residential Consumption","Kentucky","KY",7889 +2006-12-01,"Residential Consumption","Hawaii","HI",43 +2006-12-01,"Residential Consumption","Tennessee","TN",9618 +2006-12-01,"Residential Consumption","Utah","UT",8829 +2006-12-01,"Residential Consumption","District of Columbia","DC",1810 +2006-12-01,"Residential Consumption","Oklahoma","OK",8967 +2006-12-01,"Residential Consumption","Delaware","DE",1317 +2006-12-01,"Residential Consumption","Connecticut","CT",4607 +2006-12-01,"Residential Consumption","Virginia","VA",11246 +2006-12-01,"Residential Consumption","Nebraska","NE",5097 +2006-12-01,"Residential Consumption","Michigan","MI",41710 +2006-12-01,"Residential Consumption","Nevada","NV",6092 +2006-12-01,"Residential Consumption","Indiana","IN",20185 +2006-12-01,"Residential Consumption","West Virginia","WV",3597 +2006-12-01,"Residential Consumption","New York","NY",42153 +2006-12-01,"Residential Consumption","Ohio","OH",39354 +2006-12-01,"Residential Consumption","Louisiana","LA",5310 +2006-12-01,"Residential Consumption","Iowa","IA",9533 +2006-12-01,"Residential Consumption","North Dakota","ND",1385 +2006-12-01,"Residential Consumption","New Hampshire","NH",780 +2006-12-01,"Residential Consumption","California","CA",65663 +2006-12-01,"Residential Consumption","Wyoming","WY",1669 +2006-12-01,"Residential Consumption","South Carolina","SC",4198 +2006-12-01,"Residential Consumption","Rhode Island","RI",1738 +2006-12-01,"Residential Consumption","Vermont","VT",335 +2006-12-01,"Residential Consumption","Maryland","MD",10546 +2006-12-01,"Residential Consumption","South Dakota","SD",1874 +2006-12-01,"Residential Consumption","New Mexico","NM",4856 +2006-12-01,"Residential Consumption","New Jersey","NJ",25844 +2006-12-01,"Residential Consumption","Kansas","KS",9416 +2006-12-01,"Residential Consumption","Washington","WA",12044 +2006-12-01,"Residential Consumption","North Carolina","NC",8768 +2006-12-01,"Residential Consumption","Mississippi","MS",3536 +2006-12-01,"Residential Consumption","Georgia","GA",16992 +2006-12-01,"Residential Consumption","Maine","ME",137 +2006-12-01,"Residential Consumption","Massachusetts","MA",11729 +2006-12-01,"Residential Consumption","Colorado","CO",19212 +2006-12-01,"Residential Consumption","Missouri","MO",14918 +2006-12-01,"Residential Consumption","Alaska","AK",2533 +2006-12-01,"Residential Consumption","Illinois","IL",56566 +2006-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2016 +2007-01-01,"Commercial Consumption","West Virginia","WV",3030 +2007-01-01,"Commercial Consumption","Missouri","MO",10205 +2007-01-01,"Commercial Consumption","New Jersey","NJ",20832 +2007-01-01,"Commercial Consumption","Montana","MT",2240 +2007-01-01,"Commercial Consumption","New York","NY",33952 +2007-01-01,"Commercial Consumption","Indiana","IN",12657 +2007-01-01,"Commercial Consumption","District of Columbia","DC",2635 +2007-01-01,"Commercial Consumption","North Dakota","ND",1670 +2007-01-01,"Commercial Consumption","New Hampshire","NH",1309 +2007-01-01,"Commercial Consumption","Maine","ME",763 +2007-01-01,"Commercial Consumption","U.S.","U.S.",431711 +2007-01-01,"Commercial Consumption","Idaho","ID",2478 +2007-01-01,"Commercial Consumption","Connecticut","CT",4465 +2007-01-01,"Commercial Consumption","South Carolina","SC",2889 +2007-01-01,"Commercial Consumption","Minnesota","MN",15044 +2007-01-01,"Commercial Consumption","Alaska","AK",2626 +2007-01-01,"Commercial Consumption","Georgia","GA",8304 +2007-01-01,"Commercial Consumption","Vermont","VT",348 +2007-01-01,"Commercial Consumption","California","CA",29681 +2007-01-01,"Commercial Consumption","Nebraska","NE",4296 +2007-01-01,"Commercial Consumption","Arizona","AZ",4679 +2007-01-01,"Commercial Consumption","Tennessee","TN",7768 +2007-01-01,"Commercial Consumption","Nevada","NV",4034 +2007-01-01,"Commercial Consumption","Louisiana","LA",3372 +2007-01-01,"Commercial Consumption","Virginia","VA",9453 +2007-01-01,"Commercial Consumption","Massachusetts","MA",7549 +2007-01-01,"Commercial Consumption","Wisconsin","WI",14082 +2007-01-01,"Commercial Consumption","Texas","TX",23684 +2007-01-01,"Commercial Consumption","Maryland","MD",9108 +2007-01-01,"Commercial Consumption","Rhode Island","RI",1413 +2007-01-01,"Commercial Consumption","Iowa","IA",7239 +2007-01-01,"Commercial Consumption","Hawaii","HI",164 +2007-01-01,"Commercial Consumption","Arkansas","AR",4676 +2007-01-01,"Commercial Consumption","Alabama","AL",3262 +2007-01-01,"Commercial Consumption","Wyoming","WY",1536 +2007-01-01,"Commercial Consumption","Washington","WA",8083 +2007-01-01,"Commercial Consumption","New Mexico","NM",4421 +2007-01-01,"Commercial Consumption","Kansas","KS",5424 +2007-01-01,"Commercial Consumption","Ohio","OH",24817 +2007-01-01,"Commercial Consumption","Illinois","IL",28960 +2007-01-01,"Commercial Consumption","Colorado","CO",12160 +2007-01-01,"Commercial Consumption","Oregon","OR",4793 +2007-01-01,"Commercial Consumption","Pennsylvania","PA",20915 +2007-01-01,"Commercial Consumption","North Carolina","NC",6772 +2007-01-01,"Commercial Consumption","Utah","UT",6273 +2007-01-01,"Commercial Consumption","Oklahoma","OK",7231 +2007-01-01,"Commercial Consumption","South Dakota","SD",1694 +2007-01-01,"Commercial Consumption","Kentucky","KY",5693 +2007-01-01,"Commercial Consumption","Florida","FL",4974 +2007-01-01,"Commercial Consumption","Mississippi","MS",3400 +2007-01-01,"Commercial Consumption","Delaware","DE",1174 +2007-01-01,"Commercial Consumption","Michigan","MI",23485 +2007-01-01,"Delivered to Consumers","Utah","UT",27918 +2007-01-01,"Delivered to Consumers","Tennessee","TN",27984 +2007-01-01,"Delivered to Consumers","Kentucky","KY",26916 +2007-01-01,"Delivered to Consumers","Mississippi","MS",25883 +2007-01-01,"Delivered to Consumers","Wyoming","WY",7982 +2007-01-01,"Delivered to Consumers","Illinois","IL",125762 +2007-01-01,"Delivered to Consumers","Virginia","VA",34027 +2007-01-01,"Delivered to Consumers","Pennsylvania","PA",78283 +2007-01-01,"Delivered to Consumers","North Carolina","NC",26988 +2007-01-01,"Delivered to Consumers","Minnesota","MN",50785 +2007-01-01,"Delivered to Consumers","District of Columbia","DC",4799 +2007-01-01,"Delivered to Consumers","Indiana","IN",66914 +2007-01-01,"Delivered to Consumers","Delaware","DE",4855 +2007-01-01,"Delivered to Consumers","Hawaii","HI",259 +2007-01-01,"Delivered to Consumers","Michigan","MI",100406 +2007-01-01,"Delivered to Consumers","Iowa","IA",35848 +2007-01-01,"Delivered to Consumers","Arkansas","AR",20936 +2007-01-01,"Delivered to Consumers","Wisconsin","WI",53637 +2007-01-01,"Delivered to Consumers","Missouri","MO",36957 +2007-01-01,"Delivered to Consumers","Colorado","CO",62803 +2007-01-01,"Delivered to Consumers","Maine","ME",6180 +2007-01-01,"Delivered to Consumers","Louisiana","LA",100669 +2007-01-01,"Delivered to Consumers","Washington","WA",33243 +2007-01-01,"Delivered to Consumers","U.S.","U.S.",2306943 +2007-01-01,"Delivered to Consumers","West Virginia","WV",11019 +2007-01-01,"Delivered to Consumers","Kansas","KS",29886 +2007-01-01,"Delivered to Consumers","California","CA",235318 +2007-01-01,"Delivered to Consumers","Oregon","OR",28069 +2007-01-01,"Delivered to Consumers","New Hampshire","NH",6645 +2007-01-01,"Delivered to Consumers","New Mexico","NM",17017 +2007-01-01,"Delivered to Consumers","South Dakota","SD",5252 +2007-01-01,"Delivered to Consumers","Alabama","AL",32144 +2007-01-01,"Delivered to Consumers","Texas","TX",294538 +2007-01-01,"Delivered to Consumers","Arizona","AZ",34237 +2007-01-01,"Delivered to Consumers","Vermont","VT",1104 +2007-01-01,"Delivered to Consumers","Rhode Island","RI",7988 +2007-01-01,"Delivered to Consumers","Connecticut","CT",18625 +2007-01-01,"Delivered to Consumers","Georgia","GA",49163 +2007-01-01,"Delivered to Consumers","North Dakota","ND",4649 +2007-01-01,"Delivered to Consumers","Florida","FL",57409 +2007-01-01,"Delivered to Consumers","New York","NY",123033 +2007-01-01,"Delivered to Consumers","Montana","MT",8969 +2007-01-01,"Delivered to Consumers","Maryland","MD",24841 +2007-01-01,"Delivered to Consumers","Ohio","OH",105108 +2007-01-01,"Delivered to Consumers","Massachusetts","MA",39141 +2007-01-01,"Delivered to Consumers","South Carolina","SC",18348 +2007-01-01,"Delivered to Consumers","Alaska","AK",10328 +2007-01-01,"Delivered to Consumers","Oklahoma","OK",55048 +2007-01-01,"Delivered to Consumers","Idaho","ID",10272 +2007-01-01,"Delivered to Consumers","Nebraska","NE",17851 +2007-01-01,"Delivered to Consumers","Nevada","NV",28060 +2007-01-01,"Delivered to Consumers","New Jersey","NJ",70759 +2007-01-01,"Electric Power Consumption","South Carolina","SC",3733 +2007-01-01,"Electric Power Consumption","Massachusetts","MA",10162 +2007-01-01,"Electric Power Consumption","Wisconsin","WI",4175 +2007-01-01,"Electric Power Consumption","Iowa","IA",2694 +2007-01-01,"Electric Power Consumption","Missouri","MO",1666 +2007-01-01,"Electric Power Consumption","Maine","ME",3033 +2007-01-01,"Electric Power Consumption","North Dakota","ND",1 +2007-01-01,"Electric Power Consumption","Indiana","IN",1708 +2007-01-01,"Electric Power Consumption","Virginia","VA",4366 +2007-01-01,"Electric Power Consumption","Rhode Island","RI",3726 +2007-01-01,"Electric Power Consumption","Oregon","OR",8621 +2007-01-01,"Electric Power Consumption","Kansas","KS",809 +2007-01-01,"Electric Power Consumption","Nevada","NV",14741 +2007-01-01,"Electric Power Consumption","New Hampshire","NH",3644 +2007-01-01,"Electric Power Consumption","Georgia","GA",4958 +2007-01-01,"Electric Power Consumption","California","CA",58108 +2007-01-01,"Electric Power Consumption","New York","NY",24166 +2007-01-01,"Electric Power Consumption","Texas","TX",114061 +2007-01-01,"Electric Power Consumption","Florida","FL",44311 +2007-01-01,"Electric Power Consumption","Washington","WA",4414 +2007-01-01,"Electric Power Consumption","U.S.","U.S.",448149 +2007-01-01,"Electric Power Consumption","North Carolina","NC",1193 +2007-01-01,"Electric Power Consumption","Kentucky","KY",399 +2007-01-01,"Electric Power Consumption","Arizona","AZ",18565 +2007-01-01,"Electric Power Consumption","Idaho","ID",904 +2007-01-01,"Electric Power Consumption","Oklahoma","OK",20636 +2007-01-01,"Electric Power Consumption","West Virginia","WV",279 +2007-01-01,"Electric Power Consumption","Pennsylvania","PA",4526 +2007-01-01,"Electric Power Consumption","Ohio","OH",1513 +2007-01-01,"Electric Power Consumption","Maryland","MD",760 +2007-01-01,"Electric Power Consumption","Delaware","DE",606 +2007-01-01,"Electric Power Consumption","Louisiana","LA",14162 +2007-01-01,"Electric Power Consumption","Arkansas","AR",1369 +2007-01-01,"Electric Power Consumption","Minnesota","MN",2268 +2007-01-01,"Electric Power Consumption","Tennessee","TN",292 +2007-01-01,"Electric Power Consumption","South Dakota","SD",142 +2007-01-01,"Electric Power Consumption","Nebraska","NE",1508 +2007-01-01,"Electric Power Consumption","Mississippi","MS",8200 +2007-01-01,"Electric Power Consumption","Connecticut","CT",5951 +2007-01-01,"Electric Power Consumption","Utah","UT",6904 +2007-01-01,"Electric Power Consumption","Illinois","IL",2254 +2007-01-01,"Electric Power Consumption","Michigan","MI",8140 +2007-01-01,"Electric Power Consumption","Montana","MT",73 +2007-01-01,"Electric Power Consumption","Alabama","AL",8257 +2007-01-01,"Electric Power Consumption","New Mexico","NM",4097 +2007-01-01,"Electric Power Consumption","New Jersey","NJ",8411 +2007-01-01,"Electric Power Consumption","Colorado","CO",9596 +2007-01-01,"Electric Power Consumption","Wyoming","WY",214 +2007-01-01,"Electric Power Consumption","Vermont","VT",2 +2007-01-01,"Electric Power Consumption","Hawaii","HI",NA +2007-01-01,"Electric Power Consumption","Alaska","AK",3830 +2007-01-01,"Industrial Consumption","Hawaii","HI",46 +2007-01-01,"Industrial Consumption","Missouri","MO",7197 +2007-01-01,"Industrial Consumption","Colorado","CO",13296 +2007-01-01,"Industrial Consumption","New York","NY",7824 +2007-01-01,"Industrial Consumption","Alabama","AL",14536 +2007-01-01,"Industrial Consumption","North Carolina","NC",8404 +2007-01-01,"Industrial Consumption","Georgia","GA",14589 +2007-01-01,"Industrial Consumption","Oklahoma","OK",15091 +2007-01-01,"Industrial Consumption","Maine","ME",2203 +2007-01-01,"Industrial Consumption","Wyoming","WY",4110 +2007-01-01,"Industrial Consumption","North Dakota","ND",1073 +2007-01-01,"Industrial Consumption","Montana","MT",3233 +2007-01-01,"Industrial Consumption","Louisiana","LA",75277 +2007-01-01,"Industrial Consumption","South Dakota","SD",1146 +2007-01-01,"Industrial Consumption","Arizona","AZ",1983 +2007-01-01,"Industrial Consumption","U.S.","U.S.",621914 +2007-01-01,"Industrial Consumption","South Carolina","SC",6969 +2007-01-01,"Industrial Consumption","Vermont","VT",316 +2007-01-01,"Industrial Consumption","District of Columbia","DC",0 +2007-01-01,"Industrial Consumption","Alaska","AK",1032 +2007-01-01,"Industrial Consumption","Ohio","OH",29455 +2007-01-01,"Industrial Consumption","Nevada","NV",1192 +2007-01-01,"Industrial Consumption","California","CA",61788 +2007-01-01,"Industrial Consumption","New Hampshire","NH",639 +2007-01-01,"Industrial Consumption","Massachusetts","MA",5360 +2007-01-01,"Industrial Consumption","Washington","WA",7136 +2007-01-01,"Industrial Consumption","Utah","UT",2873 +2007-01-01,"Industrial Consumption","Virginia","VA",6375 +2007-01-01,"Industrial Consumption","West Virginia","WV",3469 +2007-01-01,"Industrial Consumption","Minnesota","MN",10586 +2007-01-01,"Industrial Consumption","Iowa","IA",13855 +2007-01-01,"Industrial Consumption","Maryland","MD",1665 +2007-01-01,"Industrial Consumption","New Mexico","NM",1731 +2007-01-01,"Industrial Consumption","Mississippi","MS",9280 +2007-01-01,"Industrial Consumption","Texas","TX",115247 +2007-01-01,"Industrial Consumption","Nebraska","NE",5509 +2007-01-01,"Industrial Consumption","Wisconsin","WI",12681 +2007-01-01,"Industrial Consumption","Tennessee","TN",8909 +2007-01-01,"Industrial Consumption","New Jersey","NJ",6346 +2007-01-01,"Industrial Consumption","Michigan","MI",17007 +2007-01-01,"Industrial Consumption","Kansas","KS",11631 +2007-01-01,"Industrial Consumption","Pennsylvania","PA",17515 +2007-01-01,"Industrial Consumption","Oregon","OR",6770 +2007-01-01,"Industrial Consumption","Arkansas","AR",8738 +2007-01-01,"Industrial Consumption","Florida","FL",6348 +2007-01-01,"Industrial Consumption","Kentucky","KY",11070 +2007-01-01,"Industrial Consumption","Rhode Island","RI",591 +2007-01-01,"Industrial Consumption","Idaho","ID",2532 +2007-01-01,"Industrial Consumption","Connecticut","CT",2134 +2007-01-01,"Industrial Consumption","Indiana","IN",27073 +2007-01-01,"Industrial Consumption","Illinois","IL",26574 +2007-01-01,"Industrial Consumption","Delaware","DE",1514 +2007-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100343 +2007-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",67439 +2007-01-01,"Residential Consumption","Minnesota","MN",22886 +2007-01-01,"Residential Consumption","Arkansas","AR",6153 +2007-01-01,"Residential Consumption","Kansas","KS",12021 +2007-01-01,"Residential Consumption","Oklahoma","OK",12091 +2007-01-01,"Residential Consumption","Arizona","AZ",9010 +2007-01-01,"Residential Consumption","New York","NY",57091 +2007-01-01,"Residential Consumption","Texas","TX",41545 +2007-01-01,"Residential Consumption","Mississippi","MS",5002 +2007-01-01,"Residential Consumption","Utah","UT",11868 +2007-01-01,"Residential Consumption","Nebraska","NE",6539 +2007-01-01,"Residential Consumption","District of Columbia","DC",2164 +2007-01-01,"Residential Consumption","New Jersey","NJ",35171 +2007-01-01,"Residential Consumption","Kentucky","KY",9755 +2007-01-01,"Residential Consumption","Rhode Island","RI",2258 +2007-01-01,"Residential Consumption","Hawaii","HI",49 +2007-01-01,"Residential Consumption","Nevada","NV",8093 +2007-01-01,"Residential Consumption","South Carolina","SC",4757 +2007-01-01,"Residential Consumption","Wisconsin","WI",22699 +2007-01-01,"Residential Consumption","Maryland","MD",13309 +2007-01-01,"Residential Consumption","Maine","ME",181 +2007-01-01,"Residential Consumption","Idaho","ID",4359 +2007-01-01,"Residential Consumption","Missouri","MO",17889 +2007-01-01,"Residential Consumption","Alabama","AL",6088 +2007-01-01,"Residential Consumption","Alaska","AK",2841 +2007-01-01,"Residential Consumption","Oregon","OR",7886 +2007-01-01,"Residential Consumption","Iowa","IA",12059 +2007-01-01,"Residential Consumption","Connecticut","CT",6075 +2007-01-01,"Residential Consumption","Vermont","VT",438 +2007-01-01,"Residential Consumption","Georgia","GA",21312 +2007-01-01,"Residential Consumption","Pennsylvania","PA",35326 +2007-01-01,"Residential Consumption","New Mexico","NM",6769 +2007-01-01,"Residential Consumption","Florida","FL",1776 +2007-01-01,"Residential Consumption","Illinois","IL",67974 +2007-01-01,"Residential Consumption","Tennessee","TN",11015 +2007-01-01,"Residential Consumption","South Dakota","SD",2270 +2007-01-01,"Residential Consumption","Indiana","IN",25476 +2007-01-01,"Residential Consumption","Montana","MT",3422 +2007-01-01,"Residential Consumption","Colorado","CO",27751 +2007-01-01,"Residential Consumption","Washington","WA",13609 +2007-01-01,"Residential Consumption","California","CA",85741 +2007-01-01,"Residential Consumption","U.S.","U.S.",803075 +2007-01-01,"Residential Consumption","Ohio","OH",49323 +2007-01-01,"Residential Consumption","North Carolina","NC",10618 +2007-01-01,"Residential Consumption","Michigan","MI",51772 +2007-01-01,"Residential Consumption","North Dakota","ND",1906 +2007-01-01,"Residential Consumption","New Hampshire","NH",1053 +2007-01-01,"Residential Consumption","Wyoming","WY",2122 +2007-01-01,"Residential Consumption","West Virginia","WV",4242 +2007-01-01,"Residential Consumption","Louisiana","LA",7858 +2007-01-01,"Residential Consumption","Virginia","VA",13833 +2007-01-01,"Residential Consumption","Massachusetts","MA",16069 +2007-01-01,"Residential Consumption","Delaware","DE",1561 +2007-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2094 +2007-02-01,"Commercial Consumption","North Dakota","ND",1713 +2007-02-01,"Commercial Consumption","Oregon","OR",4240 +2007-02-01,"Commercial Consumption","Connecticut","CT",5623 +2007-02-01,"Commercial Consumption","Tennessee","TN",9323 +2007-02-01,"Commercial Consumption","Michigan","MI",29539 +2007-02-01,"Commercial Consumption","District of Columbia","DC",2854 +2007-02-01,"Commercial Consumption","Washington","WA",7071 +2007-02-01,"Commercial Consumption","Minnesota","MN",15299 +2007-02-01,"Commercial Consumption","New Jersey","NJ",26277 +2007-02-01,"Commercial Consumption","U.S.","U.S.",477253 +2007-02-01,"Commercial Consumption","Kansas","KS",6090 +2007-02-01,"Commercial Consumption","Georgia","GA",7934 +2007-02-01,"Commercial Consumption","Ohio","OH",31494 +2007-02-01,"Commercial Consumption","West Virginia","WV",3698 +2007-02-01,"Commercial Consumption","New Mexico","NM",4278 +2007-02-01,"Commercial Consumption","Virginia","VA",10795 +2007-02-01,"Commercial Consumption","Pennsylvania","PA",26077 +2007-02-01,"Commercial Consumption","Wisconsin","WI",15896 +2007-02-01,"Commercial Consumption","Idaho","ID",2166 +2007-02-01,"Commercial Consumption","Hawaii","HI",151 +2007-02-01,"Commercial Consumption","Arkansas","AR",5364 +2007-02-01,"Commercial Consumption","Illinois","IL",34989 +2007-02-01,"Commercial Consumption","Wyoming","WY",1462 +2007-02-01,"Commercial Consumption","Utah","UT",6100 +2007-02-01,"Commercial Consumption","Kentucky","KY",6607 +2007-02-01,"Commercial Consumption","Texas","TX",23453 +2007-02-01,"Commercial Consumption","Oklahoma","OK",7570 +2007-02-01,"Commercial Consumption","Florida","FL",4976 +2007-02-01,"Commercial Consumption","Mississippi","MS",2641 +2007-02-01,"Commercial Consumption","Arizona","AZ",4078 +2007-02-01,"Commercial Consumption","South Carolina","SC",2872 +2007-02-01,"Commercial Consumption","North Carolina","NC",7443 +2007-02-01,"Commercial Consumption","Missouri","MO",10285 +2007-02-01,"Commercial Consumption","New Hampshire","NH",1597 +2007-02-01,"Commercial Consumption","Maine","ME",826 +2007-02-01,"Commercial Consumption","Rhode Island","RI",2006 +2007-02-01,"Commercial Consumption","New York","NY",40031 +2007-02-01,"Commercial Consumption","Nebraska","NE",5078 +2007-02-01,"Commercial Consumption","Indiana","IN",14982 +2007-02-01,"Commercial Consumption","Louisiana","LA",2759 +2007-02-01,"Commercial Consumption","Colorado","CO",9051 +2007-02-01,"Commercial Consumption","Massachusetts","MA",10385 +2007-02-01,"Commercial Consumption","Maryland","MD",11321 +2007-02-01,"Commercial Consumption","Vermont","VT",468 +2007-02-01,"Commercial Consumption","Iowa","IA",8078 +2007-02-01,"Commercial Consumption","Alabama","AL",3982 +2007-02-01,"Commercial Consumption","Delaware","DE",1473 +2007-02-01,"Commercial Consumption","Nevada","NV",3306 +2007-02-01,"Commercial Consumption","South Dakota","SD",1835 +2007-02-01,"Commercial Consumption","Montana","MT",2057 +2007-02-01,"Commercial Consumption","Alaska","AK",2262 +2007-02-01,"Commercial Consumption","California","CA",27397 +2007-02-01,"Delivered to Consumers","Delaware","DE",5154 +2007-02-01,"Delivered to Consumers","New York","NY",141204 +2007-02-01,"Delivered to Consumers","Oklahoma","OK",57329 +2007-02-01,"Delivered to Consumers","Wisconsin","WI",61738 +2007-02-01,"Delivered to Consumers","Nebraska","NE",19390 +2007-02-01,"Delivered to Consumers","Louisiana","LA",93075 +2007-02-01,"Delivered to Consumers","North Dakota","ND",4590 +2007-02-01,"Delivered to Consumers","U.S.","U.S.",2403778 +2007-02-01,"Delivered to Consumers","New Mexico","NM",15966 +2007-02-01,"Delivered to Consumers","Vermont","VT",1375 +2007-02-01,"Delivered to Consumers","Alaska","AK",8873 +2007-02-01,"Delivered to Consumers","Kansas","KS",31709 +2007-02-01,"Delivered to Consumers","Virginia","VA",39663 +2007-02-01,"Delivered to Consumers","North Carolina","NC",29743 +2007-02-01,"Delivered to Consumers","Missouri","MO",43084 +2007-02-01,"Delivered to Consumers","Minnesota","MN",54311 +2007-02-01,"Delivered to Consumers","Florida","FL",56412 +2007-02-01,"Delivered to Consumers","Massachusetts","MA",47516 +2007-02-01,"Delivered to Consumers","California","CA",203363 +2007-02-01,"Delivered to Consumers","Texas","TX",265739 +2007-02-01,"Delivered to Consumers","West Virginia","WV",13092 +2007-02-01,"Delivered to Consumers","Rhode Island","RI",9766 +2007-02-01,"Delivered to Consumers","Kentucky","KY",29946 +2007-02-01,"Delivered to Consumers","Arkansas","AR",22984 +2007-02-01,"Delivered to Consumers","Pennsylvania","PA",95894 +2007-02-01,"Delivered to Consumers","Mississippi","MS",29250 +2007-02-01,"Delivered to Consumers","Georgia","GA",47589 +2007-02-01,"Delivered to Consumers","Indiana","IN",76347 +2007-02-01,"Delivered to Consumers","Tennessee","TN",33128 +2007-02-01,"Delivered to Consumers","Michigan","MI",124441 +2007-02-01,"Delivered to Consumers","Alabama","AL",40374 +2007-02-01,"Delivered to Consumers","New Jersey","NJ",83985 +2007-02-01,"Delivered to Consumers","Utah","UT",22251 +2007-02-01,"Delivered to Consumers","Wyoming","WY",7322 +2007-02-01,"Delivered to Consumers","Colorado","CO",46554 +2007-02-01,"Delivered to Consumers","Oregon","OR",25150 +2007-02-01,"Delivered to Consumers","New Hampshire","NH",5329 +2007-02-01,"Delivered to Consumers","Montana","MT",8295 +2007-02-01,"Delivered to Consumers","Idaho","ID",9241 +2007-02-01,"Delivered to Consumers","Ohio","OH",128279 +2007-02-01,"Delivered to Consumers","Iowa","IA",38728 +2007-02-01,"Delivered to Consumers","Connecticut","CT",20448 +2007-02-01,"Delivered to Consumers","Nevada","NV",22975 +2007-02-01,"Delivered to Consumers","Washington","WA",28254 +2007-02-01,"Delivered to Consumers","District of Columbia","DC",5702 +2007-02-01,"Delivered to Consumers","Illinois","IL",156021 +2007-02-01,"Delivered to Consumers","South Dakota","SD",5707 +2007-02-01,"Delivered to Consumers","Maryland","MD",32498 +2007-02-01,"Delivered to Consumers","Hawaii","HI",226 +2007-02-01,"Delivered to Consumers","South Carolina","SC",19666 +2007-02-01,"Delivered to Consumers","Maine","ME",5355 +2007-02-01,"Delivered to Consumers","Arizona","AZ",26857 +2007-02-01,"Electric Power Consumption","Louisiana","LA",12697 +2007-02-01,"Electric Power Consumption","Wisconsin","WI",6296 +2007-02-01,"Electric Power Consumption","Vermont","VT",0 +2007-02-01,"Electric Power Consumption","Hawaii","HI",NA +2007-02-01,"Electric Power Consumption","Maryland","MD",1193 +2007-02-01,"Electric Power Consumption","Washington","WA",3318 +2007-02-01,"Electric Power Consumption","Rhode Island","RI",4014 +2007-02-01,"Electric Power Consumption","Oklahoma","OK",18599 +2007-02-01,"Electric Power Consumption","Nebraska","NE",847 +2007-02-01,"Electric Power Consumption","Missouri","MO",2453 +2007-02-01,"Electric Power Consumption","Maine","ME",2383 +2007-02-01,"Electric Power Consumption","Kentucky","KY",1322 +2007-02-01,"Electric Power Consumption","Montana","MT",60 +2007-02-01,"Electric Power Consumption","Indiana","IN",2361 +2007-02-01,"Electric Power Consumption","Florida","FL",43715 +2007-02-01,"Electric Power Consumption","New Mexico","NM",3857 +2007-02-01,"Electric Power Consumption","West Virginia","WV",279 +2007-02-01,"Electric Power Consumption","Pennsylvania","PA",4801 +2007-02-01,"Electric Power Consumption","Iowa","IA",3549 +2007-02-01,"Electric Power Consumption","Mississippi","MS",13957 +2007-02-01,"Electric Power Consumption","Connecticut","CT",4813 +2007-02-01,"Electric Power Consumption","Georgia","GA",5954 +2007-02-01,"Electric Power Consumption","California","CA",52341 +2007-02-01,"Electric Power Consumption","Alabama","AL",14805 +2007-02-01,"Electric Power Consumption","Arkansas","AR",2229 +2007-02-01,"Electric Power Consumption","New York","NY",21800 +2007-02-01,"Electric Power Consumption","Texas","TX",94814 +2007-02-01,"Electric Power Consumption","South Dakota","SD",204 +2007-02-01,"Electric Power Consumption","New Hampshire","NH",1727 +2007-02-01,"Electric Power Consumption","North Dakota","ND",0 +2007-02-01,"Electric Power Consumption","Arizona","AZ",13873 +2007-02-01,"Electric Power Consumption","New Jersey","NJ",7169 +2007-02-01,"Electric Power Consumption","Idaho","ID",1111 +2007-02-01,"Electric Power Consumption","Colorado","CO",7655 +2007-02-01,"Electric Power Consumption","Utah","UT",2638 +2007-02-01,"Electric Power Consumption","Oregon","OR",8162 +2007-02-01,"Electric Power Consumption","Michigan","MI",11772 +2007-02-01,"Electric Power Consumption","Nevada","NV",12499 +2007-02-01,"Electric Power Consumption","Delaware","DE",365 +2007-02-01,"Electric Power Consumption","Alaska","AK",3235 +2007-02-01,"Electric Power Consumption","South Carolina","SC",4922 +2007-02-01,"Electric Power Consumption","Kansas","KS",973 +2007-02-01,"Electric Power Consumption","Wyoming","WY",188 +2007-02-01,"Electric Power Consumption","Tennessee","TN",362 +2007-02-01,"Electric Power Consumption","U.S.","U.S.",425485 +2007-02-01,"Electric Power Consumption","North Carolina","NC",1568 +2007-02-01,"Electric Power Consumption","Virginia","VA",5051 +2007-02-01,"Electric Power Consumption","Minnesota","MN",4022 +2007-02-01,"Electric Power Consumption","Illinois","IL",4499 +2007-02-01,"Electric Power Consumption","Massachusetts","MA",9058 +2007-02-01,"Electric Power Consumption","Ohio","OH",1977 +2007-02-01,"Industrial Consumption","Montana","MT",2989 +2007-02-01,"Industrial Consumption","Maryland","MD",1795 +2007-02-01,"Industrial Consumption","Ohio","OH",31868 +2007-02-01,"Industrial Consumption","Arizona","AZ",1763 +2007-02-01,"Industrial Consumption","Oregon","OR",5906 +2007-02-01,"Industrial Consumption","California","CA",61141 +2007-02-01,"Industrial Consumption","Tennessee","TN",8978 +2007-02-01,"Industrial Consumption","Minnesota","MN",10890 +2007-02-01,"Industrial Consumption","Kentucky","KY",11077 +2007-02-01,"Industrial Consumption","Indiana","IN",27693 +2007-02-01,"Industrial Consumption","Georgia","GA",13015 +2007-02-01,"Industrial Consumption","Mississippi","MS",8804 +2007-02-01,"Industrial Consumption","Texas","TX",103609 +2007-02-01,"Industrial Consumption","Virginia","VA",6277 +2007-02-01,"Industrial Consumption","Vermont","VT",318 +2007-02-01,"Industrial Consumption","Florida","FL",5492 +2007-02-01,"Industrial Consumption","Michigan","MI",18275 +2007-02-01,"Industrial Consumption","Missouri","MO",7353 +2007-02-01,"Industrial Consumption","South Dakota","SD",1283 +2007-02-01,"Industrial Consumption","Kansas","KS",10799 +2007-02-01,"Industrial Consumption","South Carolina","SC",6213 +2007-02-01,"Industrial Consumption","New Hampshire","NH",641 +2007-02-01,"Industrial Consumption","North Dakota","ND",1003 +2007-02-01,"Industrial Consumption","Colorado","CO",10830 +2007-02-01,"Industrial Consumption","Wyoming","WY",3662 +2007-02-01,"Industrial Consumption","Illinois","IL",26302 +2007-02-01,"Industrial Consumption","Delaware","DE",1183 +2007-02-01,"Industrial Consumption","North Carolina","NC",7885 +2007-02-01,"Industrial Consumption","District of Columbia","DC",0 +2007-02-01,"Industrial Consumption","Louisiana","LA",71200 +2007-02-01,"Industrial Consumption","New York","NY",7633 +2007-02-01,"Industrial Consumption","Maine","ME",1939 +2007-02-01,"Industrial Consumption","Alabama","AL",13470 +2007-02-01,"Industrial Consumption","West Virginia","WV",3421 +2007-02-01,"Industrial Consumption","Iowa","IA",13120 +2007-02-01,"Industrial Consumption","Massachusetts","MA",6552 +2007-02-01,"Industrial Consumption","Oklahoma","OK",16919 +2007-02-01,"Industrial Consumption","Washington","WA",6303 +2007-02-01,"Industrial Consumption","New Jersey","NJ",5934 +2007-02-01,"Industrial Consumption","Idaho","ID",2105 +2007-02-01,"Industrial Consumption","Utah","UT",2953 +2007-02-01,"Industrial Consumption","Hawaii","HI",29 +2007-02-01,"Industrial Consumption","New Mexico","NM",1555 +2007-02-01,"Industrial Consumption","U.S.","U.S.",599687 +2007-02-01,"Industrial Consumption","Pennsylvania","PA",17929 +2007-02-01,"Industrial Consumption","Nevada","NV",1188 +2007-02-01,"Industrial Consumption","Arkansas","AR",7762 +2007-02-01,"Industrial Consumption","Nebraska","NE",5500 +2007-02-01,"Industrial Consumption","Wisconsin","WI",13638 +2007-02-01,"Industrial Consumption","Connecticut","CT",2150 +2007-02-01,"Industrial Consumption","Rhode Island","RI",514 +2007-02-01,"Industrial Consumption","Alaska","AK",831 +2007-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",91902 +2007-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",70273 +2007-02-01,"Residential Consumption","North Carolina","NC",12847 +2007-02-01,"Residential Consumption","Nebraska","NE",7965 +2007-02-01,"Residential Consumption","Michigan","MI",64856 +2007-02-01,"Residential Consumption","Nevada","NV",5982 +2007-02-01,"Residential Consumption","Maine","ME",207 +2007-02-01,"Residential Consumption","Massachusetts","MA",21522 +2007-02-01,"Residential Consumption","Texas","TX",43863 +2007-02-01,"Residential Consumption","South Carolina","SC",5659 +2007-02-01,"Residential Consumption","Utah","UT",10560 +2007-02-01,"Residential Consumption","Idaho","ID",3859 +2007-02-01,"Residential Consumption","Arkansas","AR",7629 +2007-02-01,"Residential Consumption","Kentucky","KY",10940 +2007-02-01,"Residential Consumption","Colorado","CO",19019 +2007-02-01,"Residential Consumption","California","CA",62484 +2007-02-01,"Residential Consumption","Illinois","IL",90231 +2007-02-01,"Residential Consumption","Hawaii","HI",45 +2007-02-01,"Residential Consumption","Indiana","IN",31311 +2007-02-01,"Residential Consumption","New Jersey","NJ",44605 +2007-02-01,"Residential Consumption","New Hampshire","NH",1365 +2007-02-01,"Residential Consumption","Rhode Island","RI",3232 +2007-02-01,"Residential Consumption","Oregon","OR",6842 +2007-02-01,"Residential Consumption","Ohio","OH",62940 +2007-02-01,"Residential Consumption","Iowa","IA",13981 +2007-02-01,"Residential Consumption","Connecticut","CT",7861 +2007-02-01,"Residential Consumption","Vermont","VT",589 +2007-02-01,"Residential Consumption","Maryland","MD",18189 +2007-02-01,"Residential Consumption","North Dakota","ND",1874 +2007-02-01,"Residential Consumption","Montana","MT",3188 +2007-02-01,"Residential Consumption","U.S.","U.S.",899461 +2007-02-01,"Residential Consumption","Mississippi","MS",3850 +2007-02-01,"Residential Consumption","Tennessee","TN",14465 +2007-02-01,"Residential Consumption","Virginia","VA",17539 +2007-02-01,"Residential Consumption","District of Columbia","DC",2848 +2007-02-01,"Residential Consumption","Washington","WA",11561 +2007-02-01,"Residential Consumption","Missouri","MO",22993 +2007-02-01,"Residential Consumption","Alabama","AL",8118 +2007-02-01,"Residential Consumption","New York","NY",71739 +2007-02-01,"Residential Consumption","Florida","FL",2229 +2007-02-01,"Residential Consumption","Kansas","KS",13846 +2007-02-01,"Residential Consumption","Oklahoma","OK",14241 +2007-02-01,"Residential Consumption","Delaware","DE",2133 +2007-02-01,"Residential Consumption","Arizona","AZ",7144 +2007-02-01,"Residential Consumption","Alaska","AK",2545 +2007-02-01,"Residential Consumption","West Virginia","WV",5694 +2007-02-01,"Residential Consumption","Louisiana","LA",6419 +2007-02-01,"Residential Consumption","Wisconsin","WI",25909 +2007-02-01,"Residential Consumption","Minnesota","MN",24101 +2007-02-01,"Residential Consumption","Georgia","GA",20687 +2007-02-01,"Residential Consumption","Pennsylvania","PA",47087 +2007-02-01,"Residential Consumption","Wyoming","WY",2010 +2007-02-01,"Residential Consumption","South Dakota","SD",2386 +2007-02-01,"Residential Consumption","New Mexico","NM",6276 +2007-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",1891 +2007-03-01,"Commercial Consumption","Colorado","CO",6344 +2007-03-01,"Commercial Consumption","New Jersey","NJ",18033 +2007-03-01,"Commercial Consumption","Montana","MT",1542 +2007-03-01,"Commercial Consumption","Kansas","KS",3689 +2007-03-01,"Commercial Consumption","Mississippi","MS",2072 +2007-03-01,"Commercial Consumption","Michigan","MI",23711 +2007-03-01,"Commercial Consumption","Illinois","IL",25990 +2007-03-01,"Commercial Consumption","Washington","WA",5690 +2007-03-01,"Commercial Consumption","New Hampshire","NH",1505 +2007-03-01,"Commercial Consumption","Florida","FL",5059 +2007-03-01,"Commercial Consumption","Hawaii","HI",150 +2007-03-01,"Commercial Consumption","Connecticut","CT",5125 +2007-03-01,"Commercial Consumption","Indiana","IN",7846 +2007-03-01,"Commercial Consumption","Wyoming","WY",1150 +2007-03-01,"Commercial Consumption","West Virginia","WV",3356 +2007-03-01,"Commercial Consumption","Minnesota","MN",11083 +2007-03-01,"Commercial Consumption","Utah","UT",4248 +2007-03-01,"Commercial Consumption","Oregon","OR",3139 +2007-03-01,"Commercial Consumption","Pennsylvania","PA",20657 +2007-03-01,"Commercial Consumption","Kentucky","KY",3830 +2007-03-01,"Commercial Consumption","Ohio","OH",20042 +2007-03-01,"Commercial Consumption","Nebraska","NE",4202 +2007-03-01,"Commercial Consumption","Arizona","AZ",3377 +2007-03-01,"Commercial Consumption","Nevada","NV",2760 +2007-03-01,"Commercial Consumption","South Carolina","SC",2069 +2007-03-01,"Commercial Consumption","New Mexico","NM",3286 +2007-03-01,"Commercial Consumption","Oklahoma","OK",4334 +2007-03-01,"Commercial Consumption","Virginia","VA",7193 +2007-03-01,"Commercial Consumption","Rhode Island","RI",1872 +2007-03-01,"Commercial Consumption","Delaware","DE",1098 +2007-03-01,"Commercial Consumption","North Dakota","ND",1104 +2007-03-01,"Commercial Consumption","Massachusetts","MA",9097 +2007-03-01,"Commercial Consumption","Wisconsin","WI",10382 +2007-03-01,"Commercial Consumption","U.S.","U.S.",354274 +2007-03-01,"Commercial Consumption","Georgia","GA",4428 +2007-03-01,"Commercial Consumption","Idaho","ID",1473 +2007-03-01,"Commercial Consumption","Arkansas","AR",3613 +2007-03-01,"Commercial Consumption","New York","NY",36681 +2007-03-01,"Commercial Consumption","Maryland","MD",8178 +2007-03-01,"Commercial Consumption","Alabama","AL",2932 +2007-03-01,"Commercial Consumption","District of Columbia","DC",2107 +2007-03-01,"Commercial Consumption","Missouri","MO",7619 +2007-03-01,"Commercial Consumption","Maine","ME",726 +2007-03-01,"Commercial Consumption","Texas","TX",15938 +2007-03-01,"Commercial Consumption","Iowa","IA",5985 +2007-03-01,"Commercial Consumption","California","CA",21122 +2007-03-01,"Commercial Consumption","Tennessee","TN",6579 +2007-03-01,"Commercial Consumption","Louisiana","LA",2507 +2007-03-01,"Commercial Consumption","North Carolina","NC",5270 +2007-03-01,"Commercial Consumption","South Dakota","SD",1124 +2007-03-01,"Commercial Consumption","Vermont","VT",405 +2007-03-01,"Commercial Consumption","Alaska","AK",2553 +2007-03-01,"Delivered to Consumers","Alaska","AK",9552 +2007-03-01,"Delivered to Consumers","Oklahoma","OK",44646 +2007-03-01,"Delivered to Consumers","Kansas","KS",22007 +2007-03-01,"Delivered to Consumers","Iowa","IA",28204 +2007-03-01,"Delivered to Consumers","Colorado","CO",33579 +2007-03-01,"Delivered to Consumers","North Dakota","ND",3427 +2007-03-01,"Delivered to Consumers","Minnesota","MN",38294 +2007-03-01,"Delivered to Consumers","Indiana","IN",49045 +2007-03-01,"Delivered to Consumers","New York","NY",137001 +2007-03-01,"Delivered to Consumers","Montana","MT",6799 +2007-03-01,"Delivered to Consumers","Maryland","MD",20950 +2007-03-01,"Delivered to Consumers","Ohio","OH",87809 +2007-03-01,"Delivered to Consumers","Wisconsin","WI",41274 +2007-03-01,"Delivered to Consumers","North Carolina","NC",21686 +2007-03-01,"Delivered to Consumers","Maine","ME",4869 +2007-03-01,"Delivered to Consumers","Georgia","GA",32236 +2007-03-01,"Delivered to Consumers","Arizona","AZ",17051 +2007-03-01,"Delivered to Consumers","Illinois","IL",118955 +2007-03-01,"Delivered to Consumers","South Dakota","SD",3865 +2007-03-01,"Delivered to Consumers","Idaho","ID",6574 +2007-03-01,"Delivered to Consumers","Virginia","VA",27661 +2007-03-01,"Delivered to Consumers","Texas","TX",258041 +2007-03-01,"Delivered to Consumers","Oregon","OR",17200 +2007-03-01,"Delivered to Consumers","Louisiana","LA",95251 +2007-03-01,"Delivered to Consumers","U.S.","U.S.",1967388 +2007-03-01,"Delivered to Consumers","Vermont","VT",1250 +2007-03-01,"Delivered to Consumers","Connecticut","CT",19841 +2007-03-01,"Delivered to Consumers","Arkansas","AR",17280 +2007-03-01,"Delivered to Consumers","Pennsylvania","PA",81570 +2007-03-01,"Delivered to Consumers","Nebraska","NE",16040 +2007-03-01,"Delivered to Consumers","Massachusetts","MA",46572 +2007-03-01,"Delivered to Consumers","New Jersey","NJ",65491 +2007-03-01,"Delivered to Consumers","Washington","WA",22572 +2007-03-01,"Delivered to Consumers","Wyoming","WY",6900 +2007-03-01,"Delivered to Consumers","Kentucky","KY",20044 +2007-03-01,"Delivered to Consumers","Alabama","AL",29848 +2007-03-01,"Delivered to Consumers","California","CA",180141 +2007-03-01,"Delivered to Consumers","Nevada","NV",20736 +2007-03-01,"Delivered to Consumers","New Mexico","NM",13223 +2007-03-01,"Delivered to Consumers","Hawaii","HI",229 +2007-03-01,"Delivered to Consumers","Tennessee","TN",24595 +2007-03-01,"Delivered to Consumers","South Carolina","SC",12154 +2007-03-01,"Delivered to Consumers","Florida","FL",60397 +2007-03-01,"Delivered to Consumers","Delaware","DE",4783 +2007-03-01,"Delivered to Consumers","West Virginia","WV",11699 +2007-03-01,"Delivered to Consumers","New Hampshire","NH",5157 +2007-03-01,"Delivered to Consumers","District of Columbia","DC",3629 +2007-03-01,"Delivered to Consumers","Utah","UT",16927 +2007-03-01,"Delivered to Consumers","Rhode Island","RI",8374 +2007-03-01,"Delivered to Consumers","Michigan","MI",98314 +2007-03-01,"Delivered to Consumers","Mississippi","MS",22897 +2007-03-01,"Delivered to Consumers","Missouri","MO",28654 +2007-03-01,"Electric Power Consumption","Texas","TX",111158 +2007-03-01,"Electric Power Consumption","Maine","ME",3553 +2007-03-01,"Electric Power Consumption","Mississippi","MS",9507 +2007-03-01,"Electric Power Consumption","Hawaii","HI",NA +2007-03-01,"Electric Power Consumption","New Hampshire","NH",1761 +2007-03-01,"Electric Power Consumption","North Dakota","ND",0 +2007-03-01,"Electric Power Consumption","Virginia","VA",4750 +2007-03-01,"Electric Power Consumption","Arkansas","AR",2131 +2007-03-01,"Electric Power Consumption","Nebraska","NE",476 +2007-03-01,"Electric Power Consumption","Maryland","MD",649 +2007-03-01,"Electric Power Consumption","Indiana","IN",1761 +2007-03-01,"Electric Power Consumption","Colorado","CO",6760 +2007-03-01,"Electric Power Consumption","South Carolina","SC",777 +2007-03-01,"Electric Power Consumption","Oregon","OR",3229 +2007-03-01,"Electric Power Consumption","North Carolina","NC",862 +2007-03-01,"Electric Power Consumption","Kentucky","KY",710 +2007-03-01,"Electric Power Consumption","Montana","MT",49 +2007-03-01,"Electric Power Consumption","Connecticut","CT",5493 +2007-03-01,"Electric Power Consumption","Florida","FL",47535 +2007-03-01,"Electric Power Consumption","Alaska","AK",3539 +2007-03-01,"Electric Power Consumption","New York","NY",31645 +2007-03-01,"Electric Power Consumption","Minnesota","MN",2376 +2007-03-01,"Electric Power Consumption","Vermont","VT",1 +2007-03-01,"Electric Power Consumption","Tennessee","TN",68 +2007-03-01,"Electric Power Consumption","Delaware","DE",817 +2007-03-01,"Electric Power Consumption","California","CA",49608 +2007-03-01,"Electric Power Consumption","Washington","WA",1723 +2007-03-01,"Electric Power Consumption","New Mexico","NM",3629 +2007-03-01,"Electric Power Consumption","Oklahoma","OK",15712 +2007-03-01,"Electric Power Consumption","Massachusetts","MA",12759 +2007-03-01,"Electric Power Consumption","Pennsylvania","PA",8321 +2007-03-01,"Electric Power Consumption","Missouri","MO",781 +2007-03-01,"Electric Power Consumption","Idaho","ID",296 +2007-03-01,"Electric Power Consumption","Rhode Island","RI",2752 +2007-03-01,"Electric Power Consumption","Kansas","KS",826 +2007-03-01,"Electric Power Consumption","West Virginia","WV",191 +2007-03-01,"Electric Power Consumption","Nevada","NV",12654 +2007-03-01,"Electric Power Consumption","South Dakota","SD",104 +2007-03-01,"Electric Power Consumption","Louisiana","LA",15028 +2007-03-01,"Electric Power Consumption","Wisconsin","WI",4533 +2007-03-01,"Electric Power Consumption","Wyoming","WY",192 +2007-03-01,"Electric Power Consumption","Iowa","IA",1450 +2007-03-01,"Electric Power Consumption","Ohio","OH",904 +2007-03-01,"Electric Power Consumption","Georgia","GA",4581 +2007-03-01,"Electric Power Consumption","New Jersey","NJ",10366 +2007-03-01,"Electric Power Consumption","Utah","UT",2608 +2007-03-01,"Electric Power Consumption","Illinois","IL",2812 +2007-03-01,"Electric Power Consumption","Michigan","MI",8380 +2007-03-01,"Electric Power Consumption","U.S.","U.S.",416015 +2007-03-01,"Electric Power Consumption","Arizona","AZ",7509 +2007-03-01,"Electric Power Consumption","Alabama","AL",8691 +2007-03-01,"Industrial Consumption","New Mexico","NM",1506 +2007-03-01,"Industrial Consumption","Wyoming","WY",4029 +2007-03-01,"Industrial Consumption","Iowa","IA",12382 +2007-03-01,"Industrial Consumption","Michigan","MI",18272 +2007-03-01,"Industrial Consumption","Illinois","IL",25666 +2007-03-01,"Industrial Consumption","North Dakota","ND",1094 +2007-03-01,"Industrial Consumption","California","CA",59722 +2007-03-01,"Industrial Consumption","Tennessee","TN",8095 +2007-03-01,"Industrial Consumption","New Jersey","NJ",6116 +2007-03-01,"Industrial Consumption","Indiana","IN",23647 +2007-03-01,"Industrial Consumption","Maryland","MD",1842 +2007-03-01,"Industrial Consumption","Oklahoma","OK",16642 +2007-03-01,"Industrial Consumption","South Dakota","SD",1137 +2007-03-01,"Industrial Consumption","Nevada","NV",1260 +2007-03-01,"Industrial Consumption","Virginia","VA",5839 +2007-03-01,"Industrial Consumption","Wisconsin","WI",11997 +2007-03-01,"Industrial Consumption","Idaho","ID",2195 +2007-03-01,"Industrial Consumption","Florida","FL",5824 +2007-03-01,"Industrial Consumption","North Carolina","NC",7446 +2007-03-01,"Industrial Consumption","Montana","MT",2884 +2007-03-01,"Industrial Consumption","Massachusetts","MA",5909 +2007-03-01,"Industrial Consumption","Maine","ME",428 +2007-03-01,"Industrial Consumption","West Virginia","WV",3254 +2007-03-01,"Industrial Consumption","Hawaii","HI",37 +2007-03-01,"Industrial Consumption","Missouri","MO",6080 +2007-03-01,"Industrial Consumption","Colorado","CO",8124 +2007-03-01,"Industrial Consumption","Utah","UT",2602 +2007-03-01,"Industrial Consumption","Oregon","OR",5999 +2007-03-01,"Industrial Consumption","New York","NY",8142 +2007-03-01,"Industrial Consumption","Arkansas","AR",7311 +2007-03-01,"Industrial Consumption","Texas","TX",105923 +2007-03-01,"Industrial Consumption","Vermont","VT",302 +2007-03-01,"Industrial Consumption","New Hampshire","NH",663 +2007-03-01,"Industrial Consumption","Alaska","AK",752 +2007-03-01,"Industrial Consumption","Louisiana","LA",73191 +2007-03-01,"Industrial Consumption","U.S.","U.S.",578474 +2007-03-01,"Industrial Consumption","Minnesota","MN",9901 +2007-03-01,"Industrial Consumption","Connecticut","CT",2233 +2007-03-01,"Industrial Consumption","Rhode Island","RI",588 +2007-03-01,"Industrial Consumption","Ohio","OH",27921 +2007-03-01,"Industrial Consumption","Arizona","AZ",1660 +2007-03-01,"Industrial Consumption","Pennsylvania","PA",17851 +2007-03-01,"Industrial Consumption","South Carolina","SC",6165 +2007-03-01,"Industrial Consumption","Nebraska","NE",4866 +2007-03-01,"Industrial Consumption","Delaware","DE",1274 +2007-03-01,"Industrial Consumption","District of Columbia","DC",0 +2007-03-01,"Industrial Consumption","Washington","WA",5991 +2007-03-01,"Industrial Consumption","Kansas","KS",9270 +2007-03-01,"Industrial Consumption","Mississippi","MS",8525 +2007-03-01,"Industrial Consumption","Alabama","AL",12857 +2007-03-01,"Industrial Consumption","Kentucky","KY",9590 +2007-03-01,"Industrial Consumption","Georgia","GA",13471 +2007-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103417 +2007-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",57526 +2007-03-01,"Residential Consumption","South Carolina","SC",3143 +2007-03-01,"Residential Consumption","Oregon","OR",4832 +2007-03-01,"Residential Consumption","Indiana","IN",15791 +2007-03-01,"Residential Consumption","Missouri","MO",14175 +2007-03-01,"Residential Consumption","Arizona","AZ",4506 +2007-03-01,"Residential Consumption","West Virginia","WV",4898 +2007-03-01,"Residential Consumption","U.S.","U.S.",616531 +2007-03-01,"Residential Consumption","Connecticut","CT",6991 +2007-03-01,"Residential Consumption","Vermont","VT",541 +2007-03-01,"Residential Consumption","Utah","UT",7470 +2007-03-01,"Residential Consumption","Idaho","ID",2611 +2007-03-01,"Residential Consumption","Wyoming","WY",1530 +2007-03-01,"Residential Consumption","North Carolina","NC",8108 +2007-03-01,"Residential Consumption","Tennessee","TN",9852 +2007-03-01,"Residential Consumption","Nebraska","NE",6496 +2007-03-01,"Residential Consumption","District of Columbia","DC",1522 +2007-03-01,"Residential Consumption","Pennsylvania","PA",34741 +2007-03-01,"Residential Consumption","New Mexico","NM",4802 +2007-03-01,"Residential Consumption","Florida","FL",1979 +2007-03-01,"Residential Consumption","North Dakota","ND",1228 +2007-03-01,"Residential Consumption","Oklahoma","OK",7957 +2007-03-01,"Residential Consumption","Alaska","AK",2709 +2007-03-01,"Residential Consumption","New York","NY",60533 +2007-03-01,"Residential Consumption","Rhode Island","RI",3162 +2007-03-01,"Residential Consumption","Ohio","OH",38942 +2007-03-01,"Residential Consumption","Wisconsin","WI",14363 +2007-03-01,"Residential Consumption","Massachusetts","MA",18808 +2007-03-01,"Residential Consumption","New Jersey","NJ",30977 +2007-03-01,"Residential Consumption","Washington","WA",9168 +2007-03-01,"Residential Consumption","Alabama","AL",5368 +2007-03-01,"Residential Consumption","Texas","TX",25022 +2007-03-01,"Residential Consumption","Iowa","IA",8387 +2007-03-01,"Residential Consumption","Virginia","VA",9879 +2007-03-01,"Residential Consumption","Michigan","MI",47952 +2007-03-01,"Residential Consumption","South Dakota","SD",1499 +2007-03-01,"Residential Consumption","Nevada","NV",4061 +2007-03-01,"Residential Consumption","Minnesota","MN",14935 +2007-03-01,"Residential Consumption","Maine","ME",162 +2007-03-01,"Residential Consumption","Arkansas","AR",4225 +2007-03-01,"Residential Consumption","Mississippi","MS",2793 +2007-03-01,"Residential Consumption","Georgia","GA",9756 +2007-03-01,"Residential Consumption","Kansas","KS",8222 +2007-03-01,"Residential Consumption","Hawaii","HI",42 +2007-03-01,"Residential Consumption","New Hampshire","NH",1227 +2007-03-01,"Residential Consumption","Kentucky","KY",5915 +2007-03-01,"Residential Consumption","Delaware","DE",1594 +2007-03-01,"Residential Consumption","California","CA",49689 +2007-03-01,"Residential Consumption","Louisiana","LA",4525 +2007-03-01,"Residential Consumption","Maryland","MD",10280 +2007-03-01,"Residential Consumption","Montana","MT",2325 +2007-03-01,"Residential Consumption","Colorado","CO",12351 +2007-03-01,"Residential Consumption","Illinois","IL",64487 +2007-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2094 +2007-04-01,"Commercial Consumption","Washington","WA",4530 +2007-04-01,"Commercial Consumption","Maine","ME",499 +2007-04-01,"Commercial Consumption","Kansas","KS",2137 +2007-04-01,"Commercial Consumption","Idaho","ID",1076 +2007-04-01,"Commercial Consumption","Colorado","CO",5079 +2007-04-01,"Commercial Consumption","Oregon","OR",2374 +2007-04-01,"Commercial Consumption","Vermont","VT",294 +2007-04-01,"Commercial Consumption","New York","NY",27104 +2007-04-01,"Commercial Consumption","District of Columbia","DC",1667 +2007-04-01,"Commercial Consumption","South Dakota","SD",841 +2007-04-01,"Commercial Consumption","Montana","MT",1147 +2007-04-01,"Commercial Consumption","Kentucky","KY",2677 +2007-04-01,"Commercial Consumption","Georgia","GA",3796 +2007-04-01,"Commercial Consumption","Hawaii","HI",153 +2007-04-01,"Commercial Consumption","Delaware","DE",718 +2007-04-01,"Commercial Consumption","Arizona","AZ",2561 +2007-04-01,"Commercial Consumption","Wyoming","WY",837 +2007-04-01,"Commercial Consumption","Minnesota","MN",7904 +2007-04-01,"Commercial Consumption","New Mexico","NM",2137 +2007-04-01,"Commercial Consumption","Pennsylvania","PA",14210 +2007-04-01,"Commercial Consumption","Alaska","AK",1486 +2007-04-01,"Commercial Consumption","California","CA",19133 +2007-04-01,"Commercial Consumption","Alabama","AL",1834 +2007-04-01,"Commercial Consumption","Nebraska","NE",2508 +2007-04-01,"Commercial Consumption","Nevada","NV",2200 +2007-04-01,"Commercial Consumption","Louisiana","LA",1969 +2007-04-01,"Commercial Consumption","Virginia","VA",5412 +2007-04-01,"Commercial Consumption","Missouri","MO",4839 +2007-04-01,"Commercial Consumption","Massachusetts","MA",6027 +2007-04-01,"Commercial Consumption","Texas","TX",12199 +2007-04-01,"Commercial Consumption","Ohio","OH",15799 +2007-04-01,"Commercial Consumption","Mississippi","MS",1401 +2007-04-01,"Commercial Consumption","North Dakota","ND",804 +2007-04-01,"Commercial Consumption","Utah","UT",2780 +2007-04-01,"Commercial Consumption","Wisconsin","WI",7381 +2007-04-01,"Commercial Consumption","U.S.","U.S.",259849 +2007-04-01,"Commercial Consumption","Iowa","IA",3826 +2007-04-01,"Commercial Consumption","Arkansas","AR",2409 +2007-04-01,"Commercial Consumption","Illinois","IL",17730 +2007-04-01,"Commercial Consumption","North Carolina","NC",3597 +2007-04-01,"Commercial Consumption","Rhode Island","RI",1239 +2007-04-01,"Commercial Consumption","Connecticut","CT",3635 +2007-04-01,"Commercial Consumption","Michigan","MI",15975 +2007-04-01,"Commercial Consumption","West Virginia","WV",1873 +2007-04-01,"Commercial Consumption","South Carolina","SC",1676 +2007-04-01,"Commercial Consumption","Oklahoma","OK",3129 +2007-04-01,"Commercial Consumption","New Jersey","NJ",14686 +2007-04-01,"Commercial Consumption","New Hampshire","NH",1050 +2007-04-01,"Commercial Consumption","Maryland","MD",6600 +2007-04-01,"Commercial Consumption","Florida","FL",4781 +2007-04-01,"Commercial Consumption","Tennessee","TN",3879 +2007-04-01,"Commercial Consumption","Indiana","IN",6250 +2007-04-01,"Delivered to Consumers","U.S.","U.S.",1662412 +2007-04-01,"Delivered to Consumers","Vermont","VT",915 +2007-04-01,"Delivered to Consumers","Tennessee","TN",16228 +2007-04-01,"Delivered to Consumers","Arkansas","AR",15779 +2007-04-01,"Delivered to Consumers","South Carolina","SC",11405 +2007-04-01,"Delivered to Consumers","Nevada","NV",18036 +2007-04-01,"Delivered to Consumers","Indiana","IN",40498 +2007-04-01,"Delivered to Consumers","Delaware","DE",3486 +2007-04-01,"Delivered to Consumers","New York","NY",102645 +2007-04-01,"Delivered to Consumers","Oklahoma","OK",43762 +2007-04-01,"Delivered to Consumers","North Carolina","NC",17606 +2007-04-01,"Delivered to Consumers","Massachusetts","MA",40133 +2007-04-01,"Delivered to Consumers","North Dakota","ND",3438 +2007-04-01,"Delivered to Consumers","Rhode Island","RI",7190 +2007-04-01,"Delivered to Consumers","Hawaii","HI",232 +2007-04-01,"Delivered to Consumers","Kansas","KS",16753 +2007-04-01,"Delivered to Consumers","Virginia","VA",20576 +2007-04-01,"Delivered to Consumers","Georgia","GA",31955 +2007-04-01,"Delivered to Consumers","Washington","WA",18271 +2007-04-01,"Delivered to Consumers","Utah","UT",13476 +2007-04-01,"Delivered to Consumers","New Mexico","NM",9800 +2007-04-01,"Delivered to Consumers","South Dakota","SD",3918 +2007-04-01,"Delivered to Consumers","Mississippi","MS",22696 +2007-04-01,"Delivered to Consumers","Texas","TX",233339 +2007-04-01,"Delivered to Consumers","Minnesota","MN",30066 +2007-04-01,"Delivered to Consumers","Wyoming","WY",5469 +2007-04-01,"Delivered to Consumers","Iowa","IA",22726 +2007-04-01,"Delivered to Consumers","Nebraska","NE",10333 +2007-04-01,"Delivered to Consumers","Colorado","CO",30243 +2007-04-01,"Delivered to Consumers","California","CA",165385 +2007-04-01,"Delivered to Consumers","Arizona","AZ",20379 +2007-04-01,"Delivered to Consumers","West Virginia","WV",7223 +2007-04-01,"Delivered to Consumers","Maryland","MD",15805 +2007-04-01,"Delivered to Consumers","Ohio","OH",70627 +2007-04-01,"Delivered to Consumers","Michigan","MI",69491 +2007-04-01,"Delivered to Consumers","Kentucky","KY",17410 +2007-04-01,"Delivered to Consumers","Connecticut","CT",16226 +2007-04-01,"Delivered to Consumers","Alabama","AL",30758 +2007-04-01,"Delivered to Consumers","New Jersey","NJ",49411 +2007-04-01,"Delivered to Consumers","Louisiana","LA",91900 +2007-04-01,"Delivered to Consumers","Idaho","ID",5246 +2007-04-01,"Delivered to Consumers","Missouri","MO",20173 +2007-04-01,"Delivered to Consumers","Oregon","OR",15707 +2007-04-01,"Delivered to Consumers","Maine","ME",4768 +2007-04-01,"Delivered to Consumers","New Hampshire","NH",5429 +2007-04-01,"Delivered to Consumers","District of Columbia","DC",2760 +2007-04-01,"Delivered to Consumers","Illinois","IL",82569 +2007-04-01,"Delivered to Consumers","Montana","MT",4728 +2007-04-01,"Delivered to Consumers","Alaska","AK",7332 +2007-04-01,"Delivered to Consumers","Wisconsin","WI",32627 +2007-04-01,"Delivered to Consumers","Pennsylvania","PA",63089 +2007-04-01,"Delivered to Consumers","Florida","FL",70366 +2007-04-01,"Electric Power Consumption","New Mexico","NM",3615 +2007-04-01,"Electric Power Consumption","Colorado","CO",8010 +2007-04-01,"Electric Power Consumption","Texas","TX",108357 +2007-04-01,"Electric Power Consumption","Rhode Island","RI",3177 +2007-04-01,"Electric Power Consumption","Kansas","KS",692 +2007-04-01,"Electric Power Consumption","Nevada","NV",12271 +2007-04-01,"Electric Power Consumption","U.S.","U.S.",453144 +2007-04-01,"Electric Power Consumption","Arizona","AZ",13843 +2007-04-01,"Electric Power Consumption","Florida","FL",57966 +2007-04-01,"Electric Power Consumption","Louisiana","LA",15357 +2007-04-01,"Electric Power Consumption","Arkansas","AR",3953 +2007-04-01,"Electric Power Consumption","Illinois","IL",3062 +2007-04-01,"Electric Power Consumption","Wisconsin","WI",3820 +2007-04-01,"Electric Power Consumption","Kentucky","KY",1529 +2007-04-01,"Electric Power Consumption","North Dakota","ND",0 +2007-04-01,"Electric Power Consumption","Washington","WA",818 +2007-04-01,"Electric Power Consumption","New Jersey","NJ",10311 +2007-04-01,"Electric Power Consumption","Maine","ME",2327 +2007-04-01,"Electric Power Consumption","New Hampshire","NH",2984 +2007-04-01,"Electric Power Consumption","Alabama","AL",13770 +2007-04-01,"Electric Power Consumption","Utah","UT",3349 +2007-04-01,"Electric Power Consumption","West Virginia","WV",233 +2007-04-01,"Electric Power Consumption","South Dakota","SD",190 +2007-04-01,"Electric Power Consumption","Nebraska","NE",279 +2007-04-01,"Electric Power Consumption","Delaware","DE",624 +2007-04-01,"Electric Power Consumption","South Carolina","SC",1903 +2007-04-01,"Electric Power Consumption","Hawaii","HI",NA +2007-04-01,"Electric Power Consumption","Virginia","VA",3748 +2007-04-01,"Electric Power Consumption","Pennsylvania","PA",8736 +2007-04-01,"Electric Power Consumption","Wyoming","WY",178 +2007-04-01,"Electric Power Consumption","Iowa","IA",1928 +2007-04-01,"Electric Power Consumption","North Carolina","NC",2678 +2007-04-01,"Electric Power Consumption","Missouri","MO",1348 +2007-04-01,"Electric Power Consumption","Mississippi","MS",11262 +2007-04-01,"Electric Power Consumption","Ohio","OH",1690 +2007-04-01,"Electric Power Consumption","Montana","MT",58 +2007-04-01,"Electric Power Consumption","California","CA",50513 +2007-04-01,"Electric Power Consumption","Oklahoma","OK",21835 +2007-04-01,"Electric Power Consumption","Oregon","OR",4181 +2007-04-01,"Electric Power Consumption","Minnesota","MN",2697 +2007-04-01,"Electric Power Consumption","Michigan","MI",7741 +2007-04-01,"Electric Power Consumption","Vermont","VT",3 +2007-04-01,"Electric Power Consumption","Indiana","IN",1386 +2007-04-01,"Electric Power Consumption","Georgia","GA",6875 +2007-04-01,"Electric Power Consumption","Idaho","ID",369 +2007-04-01,"Electric Power Consumption","New York","NY",27406 +2007-04-01,"Electric Power Consumption","Massachusetts","MA",16337 +2007-04-01,"Electric Power Consumption","Tennessee","TN",99 +2007-04-01,"Electric Power Consumption","Maryland","MD",681 +2007-04-01,"Electric Power Consumption","Connecticut","CT",5756 +2007-04-01,"Electric Power Consumption","Alaska","AK",3198 +2007-04-01,"Industrial Consumption","Maryland","MD",1529 +2007-04-01,"Industrial Consumption","Pennsylvania","PA",16161 +2007-04-01,"Industrial Consumption","South Carolina","SC",5988 +2007-04-01,"Industrial Consumption","Nebraska","NE",4325 +2007-04-01,"Industrial Consumption","Michigan","MI",13341 +2007-04-01,"Industrial Consumption","Oklahoma","OK",14626 +2007-04-01,"Industrial Consumption","U.S.","U.S.",539684 +2007-04-01,"Industrial Consumption","Arkansas","AR",7022 +2007-04-01,"Industrial Consumption","Alabama","AL",12592 +2007-04-01,"Industrial Consumption","Texas","TX",100116 +2007-04-01,"Industrial Consumption","West Virginia","WV",2811 +2007-04-01,"Industrial Consumption","Wyoming","WY",3363 +2007-04-01,"Industrial Consumption","New Mexico","NM",1448 +2007-04-01,"Industrial Consumption","Kansas","KS",9233 +2007-04-01,"Industrial Consumption","Nevada","NV",1118 +2007-04-01,"Industrial Consumption","Wisconsin","WI",9846 +2007-04-01,"Industrial Consumption","Louisiana","LA",72144 +2007-04-01,"Industrial Consumption","Colorado","CO",6784 +2007-04-01,"Industrial Consumption","Utah","UT",2658 +2007-04-01,"Industrial Consumption","Oregon","OR",5681 +2007-04-01,"Industrial Consumption","Virginia","VA",5237 +2007-04-01,"Industrial Consumption","Florida","FL",6172 +2007-04-01,"Industrial Consumption","Indiana","IN",21150 +2007-04-01,"Industrial Consumption","South Dakota","SD",1851 +2007-04-01,"Industrial Consumption","Arizona","AZ",1613 +2007-04-01,"Industrial Consumption","Tennessee","TN",7965 +2007-04-01,"Industrial Consumption","New Hampshire","NH",616 +2007-04-01,"Industrial Consumption","Minnesota","MN",9114 +2007-04-01,"Industrial Consumption","Iowa","IA",11158 +2007-04-01,"Industrial Consumption","Georgia","GA",12974 +2007-04-01,"Industrial Consumption","District of Columbia","DC",0 +2007-04-01,"Industrial Consumption","North Dakota","ND",1798 +2007-04-01,"Industrial Consumption","Montana","MT",1823 +2007-04-01,"Industrial Consumption","Massachusetts","MA",5027 +2007-04-01,"Industrial Consumption","Hawaii","HI",34 +2007-04-01,"Industrial Consumption","Ohio","OH",24888 +2007-04-01,"Industrial Consumption","California","CA",58301 +2007-04-01,"Industrial Consumption","Vermont","VT",251 +2007-04-01,"Industrial Consumption","North Carolina","NC",6927 +2007-04-01,"Industrial Consumption","Alaska","AK",1113 +2007-04-01,"Industrial Consumption","Washington","WA",6153 +2007-04-01,"Industrial Consumption","New York","NY",6504 +2007-04-01,"Industrial Consumption","Mississippi","MS",8864 +2007-04-01,"Industrial Consumption","Maine","ME",1832 +2007-04-01,"Industrial Consumption","Idaho","ID",1975 +2007-04-01,"Industrial Consumption","Kentucky","KY",9116 +2007-04-01,"Industrial Consumption","Delaware","DE",1227 +2007-04-01,"Industrial Consumption","Missouri","MO",5539 +2007-04-01,"Industrial Consumption","New Jersey","NJ",5392 +2007-04-01,"Industrial Consumption","Connecticut","CT",2010 +2007-04-01,"Industrial Consumption","Illinois","IL",21667 +2007-04-01,"Industrial Consumption","Rhode Island","RI",606 +2007-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",98777 +2007-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",48595 +2007-04-01,"Residential Consumption","North Carolina","NC",4405 +2007-04-01,"Residential Consumption","Louisiana","LA",2429 +2007-04-01,"Residential Consumption","Hawaii","HI",45 +2007-04-01,"Residential Consumption","Utah","UT",4689 +2007-04-01,"Residential Consumption","Idaho","ID",1826 +2007-04-01,"Residential Consumption","Mississippi","MS",1168 +2007-04-01,"Residential Consumption","Connecticut","CT",4825 +2007-04-01,"Residential Consumption","Michigan","MI",32434 +2007-04-01,"Residential Consumption","Minnesota","MN",10351 +2007-04-01,"Residential Consumption","Georgia","GA",8309 +2007-04-01,"Residential Consumption","New Hampshire","NH",779 +2007-04-01,"Residential Consumption","Montana","MT",1700 +2007-04-01,"Residential Consumption","Oregon","OR",3471 +2007-04-01,"Residential Consumption","Iowa","IA",5814 +2007-04-01,"Residential Consumption","Wisconsin","WI",11580 +2007-04-01,"Residential Consumption","Pennsylvania","PA",23982 +2007-04-01,"Residential Consumption","Indiana","IN",11712 +2007-04-01,"Residential Consumption","North Dakota","ND",835 +2007-04-01,"Residential Consumption","Massachusetts","MA",12742 +2007-04-01,"Residential Consumption","Missouri","MO",8447 +2007-04-01,"Residential Consumption","West Virginia","WV",2305 +2007-04-01,"Residential Consumption","Texas","TX",12667 +2007-04-01,"Residential Consumption","South Carolina","SC",1838 +2007-04-01,"Residential Consumption","Maryland","MD",6995 +2007-04-01,"Residential Consumption","Alaska","AK",1536 +2007-04-01,"Residential Consumption","Vermont","VT",367 +2007-04-01,"Residential Consumption","Nebraska","NE",3221 +2007-04-01,"Residential Consumption","New Mexico","NM",2600 +2007-04-01,"Residential Consumption","Colorado","CO",10369 +2007-04-01,"Residential Consumption","Delaware","DE",916 +2007-04-01,"Residential Consumption","California","CA",37437 +2007-04-01,"Residential Consumption","Arizona","AZ",2362 +2007-04-01,"Residential Consumption","Illinois","IL",40110 +2007-04-01,"Residential Consumption","Nevada","NV",2447 +2007-04-01,"Residential Consumption","Kansas","KS",4691 +2007-04-01,"Residential Consumption","New York","NY",41630 +2007-04-01,"Residential Consumption","Rhode Island","RI",2169 +2007-04-01,"Residential Consumption","Ohio","OH",28250 +2007-04-01,"Residential Consumption","Tennessee","TN",4286 +2007-04-01,"Residential Consumption","Virginia","VA",6179 +2007-04-01,"Residential Consumption","District of Columbia","DC",1093 +2007-04-01,"Residential Consumption","Maine","ME",110 +2007-04-01,"Residential Consumption","Arkansas","AR",2395 +2007-04-01,"Residential Consumption","New Jersey","NJ",19022 +2007-04-01,"Residential Consumption","Washington","WA",6770 +2007-04-01,"Residential Consumption","Alabama","AL",2562 +2007-04-01,"Residential Consumption","Wyoming","WY",1091 +2007-04-01,"Residential Consumption","U.S.","U.S.",407708 +2007-04-01,"Residential Consumption","South Dakota","SD",1036 +2007-04-01,"Residential Consumption","Florida","FL",1448 +2007-04-01,"Residential Consumption","Kentucky","KY",4088 +2007-04-01,"Residential Consumption","Oklahoma","OK",4172 +2007-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2026 +2007-05-01,"Commercial Consumption","Wyoming","WY",579 +2007-05-01,"Commercial Consumption","Utah","UT",1976 +2007-05-01,"Commercial Consumption","Mississippi","MS",1381 +2007-05-01,"Commercial Consumption","Delaware","DE",413 +2007-05-01,"Commercial Consumption","Tennessee","TN",2821 +2007-05-01,"Commercial Consumption","Michigan","MI",8707 +2007-05-01,"Commercial Consumption","North Dakota","ND",386 +2007-05-01,"Commercial Consumption","Massachusetts","MA",3278 +2007-05-01,"Commercial Consumption","New Hampshire","NH",580 +2007-05-01,"Commercial Consumption","Maine","ME",302 +2007-05-01,"Commercial Consumption","Florida","FL",4226 +2007-05-01,"Commercial Consumption","Iowa","IA",2186 +2007-05-01,"Commercial Consumption","Nebraska","NE",1558 +2007-05-01,"Commercial Consumption","New Mexico","NM",1629 +2007-05-01,"Commercial Consumption","Oklahoma","OK",1887 +2007-05-01,"Commercial Consumption","Connecticut","CT",2061 +2007-05-01,"Commercial Consumption","Louisiana","LA",1711 +2007-05-01,"Commercial Consumption","Oregon","OR",1786 +2007-05-01,"Commercial Consumption","Virginia","VA",3292 +2007-05-01,"Commercial Consumption","Wisconsin","WI",3518 +2007-05-01,"Commercial Consumption","South Dakota","SD",400 +2007-05-01,"Commercial Consumption","Maryland","MD",3761 +2007-05-01,"Commercial Consumption","Idaho","ID",759 +2007-05-01,"Commercial Consumption","Alabama","AL",1479 +2007-05-01,"Commercial Consumption","West Virginia","WV",1087 +2007-05-01,"Commercial Consumption","Ohio","OH",6513 +2007-05-01,"Commercial Consumption","California","CA",19239 +2007-05-01,"Commercial Consumption","New York","NY",17604 +2007-05-01,"Commercial Consumption","Pennsylvania","PA",7129 +2007-05-01,"Commercial Consumption","New Jersey","NJ",8285 +2007-05-01,"Commercial Consumption","Montana","MT",691 +2007-05-01,"Commercial Consumption","Kentucky","KY",1389 +2007-05-01,"Commercial Consumption","U.S.","U.S.",168349 +2007-05-01,"Commercial Consumption","Kansas","KS",1413 +2007-05-01,"Commercial Consumption","Washington","WA",3498 +2007-05-01,"Commercial Consumption","South Carolina","SC",1398 +2007-05-01,"Commercial Consumption","North Carolina","NC",2602 +2007-05-01,"Commercial Consumption","Minnesota","MN",3763 +2007-05-01,"Commercial Consumption","Colorado","CO",3012 +2007-05-01,"Commercial Consumption","Texas","TX",11057 +2007-05-01,"Commercial Consumption","Arkansas","AR",1909 +2007-05-01,"Commercial Consumption","Indiana","IN",2800 +2007-05-01,"Commercial Consumption","District of Columbia","DC",1017 +2007-05-01,"Commercial Consumption","Missouri","MO",3015 +2007-05-01,"Commercial Consumption","Georgia","GA",2341 +2007-05-01,"Commercial Consumption","Vermont","VT",139 +2007-05-01,"Commercial Consumption","Rhode Island","RI",1101 +2007-05-01,"Commercial Consumption","Hawaii","HI",145 +2007-05-01,"Commercial Consumption","Alaska","AK",1117 +2007-05-01,"Commercial Consumption","Arizona","AZ",2287 +2007-05-01,"Commercial Consumption","Nevada","NV",2021 +2007-05-01,"Commercial Consumption","Illinois","IL",11100 +2007-05-01,"Delivered to Consumers","Florida","FL",76461 +2007-05-01,"Delivered to Consumers","District of Columbia","DC",1444 +2007-05-01,"Delivered to Consumers","Oklahoma","OK",41758 +2007-05-01,"Delivered to Consumers","Kentucky","KY",12573 +2007-05-01,"Delivered to Consumers","New Hampshire","NH",3826 +2007-05-01,"Delivered to Consumers","North Dakota","ND",2634 +2007-05-01,"Delivered to Consumers","West Virginia","WV",4526 +2007-05-01,"Delivered to Consumers","South Dakota","SD",2716 +2007-05-01,"Delivered to Consumers","Tennessee","TN",12933 +2007-05-01,"Delivered to Consumers","North Carolina","NC",13644 +2007-05-01,"Delivered to Consumers","Missouri","MO",15190 +2007-05-01,"Delivered to Consumers","South Carolina","SC",11154 +2007-05-01,"Delivered to Consumers","New Jersey","NJ",31902 +2007-05-01,"Delivered to Consumers","Maine","ME",4222 +2007-05-01,"Delivered to Consumers","Louisiana","LA",94668 +2007-05-01,"Delivered to Consumers","Arizona","AZ",28959 +2007-05-01,"Delivered to Consumers","Indiana","IN",29129 +2007-05-01,"Delivered to Consumers","Vermont","VT",536 +2007-05-01,"Delivered to Consumers","Maryland","MD",8835 +2007-05-01,"Delivered to Consumers","Kansas","KS",13449 +2007-05-01,"Delivered to Consumers","Mississippi","MS",27280 +2007-05-01,"Delivered to Consumers","California","CA",161220 +2007-05-01,"Delivered to Consumers","Nevada","NV",18941 +2007-05-01,"Delivered to Consumers","Georgia","GA",27318 +2007-05-01,"Delivered to Consumers","Minnesota","MN",17212 +2007-05-01,"Delivered to Consumers","Utah","UT",12260 +2007-05-01,"Delivered to Consumers","Illinois","IL",54760 +2007-05-01,"Delivered to Consumers","Alaska","AK",7930 +2007-05-01,"Delivered to Consumers","Ohio","OH",41797 +2007-05-01,"Delivered to Consumers","Connecticut","CT",12558 +2007-05-01,"Delivered to Consumers","Virginia","VA",15014 +2007-05-01,"Delivered to Consumers","Texas","TX",244328 +2007-05-01,"Delivered to Consumers","New Mexico","NM",9252 +2007-05-01,"Delivered to Consumers","Rhode Island","RI",6533 +2007-05-01,"Delivered to Consumers","Hawaii","HI",234 +2007-05-01,"Delivered to Consumers","Alabama","AL",26063 +2007-05-01,"Delivered to Consumers","Pennsylvania","PA",41955 +2007-05-01,"Delivered to Consumers","Massachusetts","MA",26516 +2007-05-01,"Delivered to Consumers","Wyoming","WY",4958 +2007-05-01,"Delivered to Consumers","New York","NY",76067 +2007-05-01,"Delivered to Consumers","Idaho","ID",3970 +2007-05-01,"Delivered to Consumers","Arkansas","AR",16099 +2007-05-01,"Delivered to Consumers","Wisconsin","WI",19348 +2007-05-01,"Delivered to Consumers","Nebraska","NE",9436 +2007-05-01,"Delivered to Consumers","Oregon","OR",12870 +2007-05-01,"Delivered to Consumers","Washington","WA",14867 +2007-05-01,"Delivered to Consumers","U.S.","U.S.",1414428 +2007-05-01,"Delivered to Consumers","Delaware","DE",2804 +2007-05-01,"Delivered to Consumers","Montana","MT",3608 +2007-05-01,"Delivered to Consumers","Michigan","MI",43699 +2007-05-01,"Delivered to Consumers","Iowa","IA",17742 +2007-05-01,"Delivered to Consumers","Colorado","CO",25136 +2007-05-01,"Electric Power Consumption","Washington","WA",1160 +2007-05-01,"Electric Power Consumption","Virginia","VA",3837 +2007-05-01,"Electric Power Consumption","Idaho","ID",232 +2007-05-01,"Electric Power Consumption","Oklahoma","OK",22329 +2007-05-01,"Electric Power Consumption","Illinois","IL",4614 +2007-05-01,"Electric Power Consumption","South Dakota","SD",146 +2007-05-01,"Electric Power Consumption","Mississippi","MS",16057 +2007-05-01,"Electric Power Consumption","Hawaii","HI",NA +2007-05-01,"Electric Power Consumption","Montana","MT",83 +2007-05-01,"Electric Power Consumption","Indiana","IN",2416 +2007-05-01,"Electric Power Consumption","Delaware","DE",762 +2007-05-01,"Electric Power Consumption","Alaska","AK",3099 +2007-05-01,"Electric Power Consumption","New York","NY",32276 +2007-05-01,"Electric Power Consumption","Michigan","MI",8922 +2007-05-01,"Electric Power Consumption","Massachusetts","MA",13852 +2007-05-01,"Electric Power Consumption","Wisconsin","WI",3257 +2007-05-01,"Electric Power Consumption","Wyoming","WY",164 +2007-05-01,"Electric Power Consumption","Vermont","VT",2 +2007-05-01,"Electric Power Consumption","Nebraska","NE",880 +2007-05-01,"Electric Power Consumption","New Hampshire","NH",2409 +2007-05-01,"Electric Power Consumption","South Carolina","SC",2385 +2007-05-01,"Electric Power Consumption","Minnesota","MN",1428 +2007-05-01,"Electric Power Consumption","North Carolina","NC",1745 +2007-05-01,"Electric Power Consumption","North Dakota","ND",0 +2007-05-01,"Electric Power Consumption","Maryland","MD",1024 +2007-05-01,"Electric Power Consumption","Arizona","AZ",23430 +2007-05-01,"Electric Power Consumption","New Mexico","NM",4372 +2007-05-01,"Electric Power Consumption","Utah","UT",4472 +2007-05-01,"Electric Power Consumption","Pennsylvania","PA",10083 +2007-05-01,"Electric Power Consumption","Missouri","MO",3052 +2007-05-01,"Electric Power Consumption","Florida","FL",65441 +2007-05-01,"Electric Power Consumption","West Virginia","WV",184 +2007-05-01,"Electric Power Consumption","U.S.","U.S.",507089 +2007-05-01,"Electric Power Consumption","Connecticut","CT",6656 +2007-05-01,"Electric Power Consumption","Arkansas","AR",5874 +2007-05-01,"Electric Power Consumption","Texas","TX",116795 +2007-05-01,"Electric Power Consumption","Rhode Island","RI",3514 +2007-05-01,"Electric Power Consumption","Oregon","OR",3044 +2007-05-01,"Electric Power Consumption","Iowa","IA",2649 +2007-05-01,"Electric Power Consumption","Maine","ME",1912 +2007-05-01,"Electric Power Consumption","Georgia","GA",8208 +2007-05-01,"Electric Power Consumption","Louisiana","LA",18045 +2007-05-01,"Electric Power Consumption","Kansas","KS",1545 +2007-05-01,"Electric Power Consumption","Tennessee","TN",249 +2007-05-01,"Electric Power Consumption","Kentucky","KY",1221 +2007-05-01,"Electric Power Consumption","Ohio","OH",3052 +2007-05-01,"Electric Power Consumption","New Jersey","NJ",10816 +2007-05-01,"Electric Power Consumption","Colorado","CO",8910 +2007-05-01,"Electric Power Consumption","Nevada","NV",13916 +2007-05-01,"Electric Power Consumption","California","CA",55663 +2007-05-01,"Electric Power Consumption","Alabama","AL",10908 +2007-05-01,"Industrial Consumption","North Dakota","ND",1897 +2007-05-01,"Industrial Consumption","Louisiana","LA",73041 +2007-05-01,"Industrial Consumption","Washington","WA",5526 +2007-05-01,"Industrial Consumption","Ohio","OH",21874 +2007-05-01,"Industrial Consumption","Kansas","KS",7781 +2007-05-01,"Industrial Consumption","Arizona","AZ",1402 +2007-05-01,"Industrial Consumption","Utah","UT",2575 +2007-05-01,"Industrial Consumption","Alabama","AL",11866 +2007-05-01,"Industrial Consumption","Vermont","VT",209 +2007-05-01,"Industrial Consumption","Tennessee","TN",7189 +2007-05-01,"Industrial Consumption","New Jersey","NJ",4765 +2007-05-01,"Industrial Consumption","District of Columbia","DC",0 +2007-05-01,"Industrial Consumption","Maryland","MD",1502 +2007-05-01,"Industrial Consumption","Virginia","VA",5195 +2007-05-01,"Industrial Consumption","West Virginia","WV",2520 +2007-05-01,"Industrial Consumption","Wyoming","WY",3497 +2007-05-01,"Industrial Consumption","Illinois","IL",19541 +2007-05-01,"Industrial Consumption","Hawaii","HI",48 +2007-05-01,"Industrial Consumption","Oklahoma","OK",14857 +2007-05-01,"Industrial Consumption","South Dakota","SD",1769 +2007-05-01,"Industrial Consumption","Wisconsin","WI",8428 +2007-05-01,"Industrial Consumption","New Hampshire","NH",420 +2007-05-01,"Industrial Consumption","Iowa","IA",10435 +2007-05-01,"Industrial Consumption","Florida","FL",5649 +2007-05-01,"Industrial Consumption","Michigan","MI",10374 +2007-05-01,"Industrial Consumption","Rhode Island","RI",628 +2007-05-01,"Industrial Consumption","North Carolina","NC",6857 +2007-05-01,"Industrial Consumption","Oregon","OR",5514 +2007-05-01,"Industrial Consumption","New York","NY",5359 +2007-05-01,"Industrial Consumption","Minnesota","MN",7975 +2007-05-01,"Industrial Consumption","Connecticut","CT",1701 +2007-05-01,"Industrial Consumption","Delaware","DE",1208 +2007-05-01,"Industrial Consumption","South Carolina","SC",6412 +2007-05-01,"Industrial Consumption","Pennsylvania","PA",14739 +2007-05-01,"Industrial Consumption","Maine","ME",1958 +2007-05-01,"Industrial Consumption","Arkansas","AR",6854 +2007-05-01,"Industrial Consumption","Texas","TX",106859 +2007-05-01,"Industrial Consumption","Idaho","ID",1850 +2007-05-01,"Industrial Consumption","Indiana","IN",19716 +2007-05-01,"Industrial Consumption","Georgia","GA",12388 +2007-05-01,"Industrial Consumption","Montana","MT",1763 +2007-05-01,"Industrial Consumption","Massachusetts","MA",2983 +2007-05-01,"Industrial Consumption","Missouri","MO",5022 +2007-05-01,"Industrial Consumption","Colorado","CO",7705 +2007-05-01,"Industrial Consumption","New Mexico","NM",1359 +2007-05-01,"Industrial Consumption","U.S.","U.S.",521172 +2007-05-01,"Industrial Consumption","Nevada","NV",1034 +2007-05-01,"Industrial Consumption","California","CA",54001 +2007-05-01,"Industrial Consumption","Nebraska","NE",5068 +2007-05-01,"Industrial Consumption","Alaska","AK",2681 +2007-05-01,"Industrial Consumption","Mississippi","MS",8786 +2007-05-01,"Industrial Consumption","Kentucky","KY",8390 +2007-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104599 +2007-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",41342 +2007-05-01,"Residential Consumption","North Carolina","NC",2440 +2007-05-01,"Residential Consumption","Hawaii","HI",41 +2007-05-01,"Residential Consumption","Pennsylvania","PA",10004 +2007-05-01,"Residential Consumption","Arkansas","AR",1461 +2007-05-01,"Residential Consumption","Wyoming","WY",718 +2007-05-01,"Residential Consumption","Ohio","OH",10358 +2007-05-01,"Residential Consumption","Nevada","NV",1969 +2007-05-01,"Residential Consumption","District of Columbia","DC",427 +2007-05-01,"Residential Consumption","U.S.","U.S.",215724 +2007-05-01,"Residential Consumption","Michigan","MI",15696 +2007-05-01,"Residential Consumption","Florida","FL",1145 +2007-05-01,"Residential Consumption","North Dakota","ND",350 +2007-05-01,"Residential Consumption","New Jersey","NJ",8036 +2007-05-01,"Residential Consumption","Oklahoma","OK",2684 +2007-05-01,"Residential Consumption","Alaska","AK",1033 +2007-05-01,"Residential Consumption","Texas","TX",9616 +2007-05-01,"Residential Consumption","Utah","UT",3237 +2007-05-01,"Residential Consumption","South Carolina","SC",960 +2007-05-01,"Residential Consumption","Oregon","OR",2525 +2007-05-01,"Residential Consumption","Connecticut","CT",2140 +2007-05-01,"Residential Consumption","Tennessee","TN",2674 +2007-05-01,"Residential Consumption","Virginia","VA",2689 +2007-05-01,"Residential Consumption","New Mexico","NM",1892 +2007-05-01,"Residential Consumption","Maine","ME",51 +2007-05-01,"Residential Consumption","Massachusetts","MA",6402 +2007-05-01,"Residential Consumption","Colorado","CO",5509 +2007-05-01,"Residential Consumption","West Virginia","WV",736 +2007-05-01,"Residential Consumption","New York","NY",20828 +2007-05-01,"Residential Consumption","Illinois","IL",19505 +2007-05-01,"Residential Consumption","Rhode Island","RI",1291 +2007-05-01,"Residential Consumption","Mississippi","MS",1057 +2007-05-01,"Residential Consumption","Louisiana","LA",1870 +2007-05-01,"Residential Consumption","Wisconsin","WI",4145 +2007-05-01,"Residential Consumption","Minnesota","MN",4046 +2007-05-01,"Residential Consumption","Idaho","ID",1130 +2007-05-01,"Residential Consumption","Washington","WA",4683 +2007-05-01,"Residential Consumption","Vermont","VT",187 +2007-05-01,"Residential Consumption","Maryland","MD",2547 +2007-05-01,"Residential Consumption","South Dakota","SD",401 +2007-05-01,"Residential Consumption","Georgia","GA",4380 +2007-05-01,"Residential Consumption","New Hampshire","NH",417 +2007-05-01,"Residential Consumption","Kentucky","KY",1573 +2007-05-01,"Residential Consumption","Missouri","MO",4101 +2007-05-01,"Residential Consumption","California","CA",32317 +2007-05-01,"Residential Consumption","Arizona","AZ",1840 +2007-05-01,"Residential Consumption","Alabama","AL",1811 +2007-05-01,"Residential Consumption","Iowa","IA",2472 +2007-05-01,"Residential Consumption","Nebraska","NE",1930 +2007-05-01,"Residential Consumption","Indiana","IN",4198 +2007-05-01,"Residential Consumption","Montana","MT",1071 +2007-05-01,"Residential Consumption","Kansas","KS",2709 +2007-05-01,"Residential Consumption","Delaware","DE",421 +2007-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2094 +2007-06-01,"Commercial Consumption","Vermont","VT",91 +2007-06-01,"Commercial Consumption","Utah","UT",1368 +2007-06-01,"Commercial Consumption","Pennsylvania","PA",4578 +2007-06-01,"Commercial Consumption","Missouri","MO",2083 +2007-06-01,"Commercial Consumption","Georgia","GA",2088 +2007-06-01,"Commercial Consumption","Arkansas","AR",1623 +2007-06-01,"Commercial Consumption","Alabama","AL",1182 +2007-06-01,"Commercial Consumption","Minnesota","MN",2812 +2007-06-01,"Commercial Consumption","New Mexico","NM",1163 +2007-06-01,"Commercial Consumption","Oklahoma","OK",1604 +2007-06-01,"Commercial Consumption","Massachusetts","MA",2858 +2007-06-01,"Commercial Consumption","Texas","TX",10060 +2007-06-01,"Commercial Consumption","Iowa","IA",1533 +2007-06-01,"Commercial Consumption","Hawaii","HI",157 +2007-06-01,"Commercial Consumption","Oregon","OR",1306 +2007-06-01,"Commercial Consumption","Virginia","VA",3236 +2007-06-01,"Commercial Consumption","Idaho","ID",567 +2007-06-01,"Commercial Consumption","California","CA",17712 +2007-06-01,"Commercial Consumption","Nebraska","NE",1137 +2007-06-01,"Commercial Consumption","Nevada","NV",1679 +2007-06-01,"Commercial Consumption","Indiana","IN",2114 +2007-06-01,"Commercial Consumption","District of Columbia","DC",868 +2007-06-01,"Commercial Consumption","Washington","WA",2647 +2007-06-01,"Commercial Consumption","Wisconsin","WI",2646 +2007-06-01,"Commercial Consumption","Maine","ME",220 +2007-06-01,"Commercial Consumption","Florida","FL",3937 +2007-06-01,"Commercial Consumption","Ohio","OH",4846 +2007-06-01,"Commercial Consumption","Connecticut","CT",1402 +2007-06-01,"Commercial Consumption","Mississippi","MS",1204 +2007-06-01,"Commercial Consumption","Arizona","AZ",2011 +2007-06-01,"Commercial Consumption","Illinois","IL",7553 +2007-06-01,"Commercial Consumption","West Virginia","WV",868 +2007-06-01,"Commercial Consumption","South Carolina","SC",1207 +2007-06-01,"Commercial Consumption","South Dakota","SD",331 +2007-06-01,"Commercial Consumption","New Jersey","NJ",7096 +2007-06-01,"Commercial Consumption","New Hampshire","NH",357 +2007-06-01,"Commercial Consumption","Montana","MT",419 +2007-06-01,"Commercial Consumption","Kentucky","KY",1153 +2007-06-01,"Commercial Consumption","U.S.","U.S.",134769 +2007-06-01,"Commercial Consumption","Alaska","AK",781 +2007-06-01,"Commercial Consumption","Tennessee","TN",2508 +2007-06-01,"Commercial Consumption","Michigan","MI",5399 +2007-06-01,"Commercial Consumption","Wyoming","WY",367 +2007-06-01,"Commercial Consumption","North Dakota","ND",274 +2007-06-01,"Commercial Consumption","North Carolina","NC",2131 +2007-06-01,"Commercial Consumption","Kansas","KS",900 +2007-06-01,"Commercial Consumption","New York","NY",14901 +2007-06-01,"Commercial Consumption","Louisiana","LA",1566 +2007-06-01,"Commercial Consumption","Colorado","CO",2051 +2007-06-01,"Commercial Consumption","Maryland","MD",3324 +2007-06-01,"Commercial Consumption","Rhode Island","RI",467 +2007-06-01,"Commercial Consumption","Delaware","DE",384 +2007-06-01,"Delivered to Consumers","Indiana","IN",27272 +2007-06-01,"Delivered to Consumers","Kansas","KS",14165 +2007-06-01,"Delivered to Consumers","New Hampshire","NH",4223 +2007-06-01,"Delivered to Consumers","Minnesota","MN",15828 +2007-06-01,"Delivered to Consumers","Wyoming","WY",4253 +2007-06-01,"Delivered to Consumers","Illinois","IL",40126 +2007-06-01,"Delivered to Consumers","Maryland","MD",9239 +2007-06-01,"Delivered to Consumers","Alaska","AK",7460 +2007-06-01,"Delivered to Consumers","Missouri","MO",12628 +2007-06-01,"Delivered to Consumers","North Dakota","ND",1807 +2007-06-01,"Delivered to Consumers","Ohio","OH",34877 +2007-06-01,"Delivered to Consumers","Wisconsin","WI",17305 +2007-06-01,"Delivered to Consumers","North Carolina","NC",14343 +2007-06-01,"Delivered to Consumers","Mississippi","MS",26758 +2007-06-01,"Delivered to Consumers","California","CA",170560 +2007-06-01,"Delivered to Consumers","Texas","TX",262865 +2007-06-01,"Delivered to Consumers","Nevada","NV",20292 +2007-06-01,"Delivered to Consumers","Massachusetts","MA",24423 +2007-06-01,"Delivered to Consumers","Colorado","CO",25014 +2007-06-01,"Delivered to Consumers","South Carolina","SC",12705 +2007-06-01,"Delivered to Consumers","Florida","FL",81312 +2007-06-01,"Delivered to Consumers","District of Columbia","DC",1280 +2007-06-01,"Delivered to Consumers","Vermont","VT",382 +2007-06-01,"Delivered to Consumers","Nebraska","NE",7602 +2007-06-01,"Delivered to Consumers","Oregon","OR",15191 +2007-06-01,"Delivered to Consumers","New Jersey","NJ",32534 +2007-06-01,"Delivered to Consumers","West Virginia","WV",3833 +2007-06-01,"Delivered to Consumers","Rhode Island","RI",4869 +2007-06-01,"Delivered to Consumers","Hawaii","HI",244 +2007-06-01,"Delivered to Consumers","Oklahoma","OK",42250 +2007-06-01,"Delivered to Consumers","Michigan","MI",33353 +2007-06-01,"Delivered to Consumers","Connecticut","CT",9968 +2007-06-01,"Delivered to Consumers","Alabama","AL",31129 +2007-06-01,"Delivered to Consumers","Pennsylvania","PA",37217 +2007-06-01,"Delivered to Consumers","Georgia","GA",31415 +2007-06-01,"Delivered to Consumers","Washington","WA",12369 +2007-06-01,"Delivered to Consumers","U.S.","U.S.",1413254 +2007-06-01,"Delivered to Consumers","Delaware","DE",3196 +2007-06-01,"Delivered to Consumers","South Dakota","SD",2923 +2007-06-01,"Delivered to Consumers","New York","NY",71823 +2007-06-01,"Delivered to Consumers","Montana","MT",2761 +2007-06-01,"Delivered to Consumers","Idaho","ID",3688 +2007-06-01,"Delivered to Consumers","Arkansas","AR",17982 +2007-06-01,"Delivered to Consumers","Maine","ME",4680 +2007-06-01,"Delivered to Consumers","Utah","UT",11106 +2007-06-01,"Delivered to Consumers","New Mexico","NM",9380 +2007-06-01,"Delivered to Consumers","Tennessee","TN",10542 +2007-06-01,"Delivered to Consumers","Kentucky","KY",11418 +2007-06-01,"Delivered to Consumers","Iowa","IA",14922 +2007-06-01,"Delivered to Consumers","Virginia","VA",20884 +2007-06-01,"Delivered to Consumers","Louisiana","LA",99373 +2007-06-01,"Delivered to Consumers","Arizona","AZ",35463 +2007-06-01,"Electric Power Consumption","Virginia","VA",7933 +2007-06-01,"Electric Power Consumption","New Mexico","NM",5506 +2007-06-01,"Electric Power Consumption","Idaho","ID",656 +2007-06-01,"Electric Power Consumption","Texas","TX",138403 +2007-06-01,"Electric Power Consumption","North Carolina","NC",4270 +2007-06-01,"Electric Power Consumption","Maine","ME",2651 +2007-06-01,"Electric Power Consumption","Connecticut","CT",5571 +2007-06-01,"Electric Power Consumption","Georgia","GA",13431 +2007-06-01,"Electric Power Consumption","New York","NY",40258 +2007-06-01,"Electric Power Consumption","Oklahoma","OK",24985 +2007-06-01,"Electric Power Consumption","Minnesota","MN",2870 +2007-06-01,"Electric Power Consumption","Iowa","IA",2181 +2007-06-01,"Electric Power Consumption","U.S.","U.S.",628467 +2007-06-01,"Electric Power Consumption","New Hampshire","NH",3259 +2007-06-01,"Electric Power Consumption","Washington","WA",1504 +2007-06-01,"Electric Power Consumption","Colorado","CO",11451 +2007-06-01,"Electric Power Consumption","Arkansas","AR",8942 +2007-06-01,"Electric Power Consumption","Ohio","OH",3115 +2007-06-01,"Electric Power Consumption","Montana","MT",99 +2007-06-01,"Electric Power Consumption","South Carolina","SC",4881 +2007-06-01,"Electric Power Consumption","West Virginia","WV",257 +2007-06-01,"Electric Power Consumption","Wyoming","WY",143 +2007-06-01,"Electric Power Consumption","Tennessee","TN",114 +2007-06-01,"Electric Power Consumption","Hawaii","HI",NA +2007-06-01,"Electric Power Consumption","Maryland","MD",1879 +2007-06-01,"Electric Power Consumption","Indiana","IN",3316 +2007-06-01,"Electric Power Consumption","Florida","FL",71448 +2007-06-01,"Electric Power Consumption","Alabama","AL",17205 +2007-06-01,"Electric Power Consumption","Rhode Island","RI",3376 +2007-06-01,"Electric Power Consumption","Utah","UT",4841 +2007-06-01,"Electric Power Consumption","Oregon","OR",7634 +2007-06-01,"Electric Power Consumption","Illinois","IL",5697 +2007-06-01,"Electric Power Consumption","Massachusetts","MA",15712 +2007-06-01,"Electric Power Consumption","Wisconsin","WI",4600 +2007-06-01,"Electric Power Consumption","Pennsylvania","PA",13836 +2007-06-01,"Electric Power Consumption","Nevada","NV",16109 +2007-06-01,"Electric Power Consumption","South Dakota","SD",493 +2007-06-01,"Electric Power Consumption","Mississippi","MS",17216 +2007-06-01,"Electric Power Consumption","North Dakota","ND",0 +2007-06-01,"Electric Power Consumption","Louisiana","LA",22813 +2007-06-01,"Electric Power Consumption","Nebraska","NE",667 +2007-06-01,"Electric Power Consumption","Missouri","MO",3827 +2007-06-01,"Electric Power Consumption","Alaska","AK",3180 +2007-06-01,"Electric Power Consumption","New Jersey","NJ",15124 +2007-06-01,"Electric Power Consumption","Michigan","MI",11612 +2007-06-01,"Electric Power Consumption","Kansas","KS",2671 +2007-06-01,"Electric Power Consumption","Vermont","VT",3 +2007-06-01,"Electric Power Consumption","Delaware","DE",1342 +2007-06-01,"Electric Power Consumption","California","CA",68902 +2007-06-01,"Electric Power Consumption","Kentucky","KY",1671 +2007-06-01,"Electric Power Consumption","Arizona","AZ",30813 +2007-06-01,"Industrial Consumption","New Mexico","NM",1593 +2007-06-01,"Industrial Consumption","Utah","UT",2645 +2007-06-01,"Industrial Consumption","California","CA",57444 +2007-06-01,"Industrial Consumption","Delaware","DE",1213 +2007-06-01,"Industrial Consumption","Maryland","MD",1923 +2007-06-01,"Industrial Consumption","U.S.","U.S.",510823 +2007-06-01,"Industrial Consumption","Nevada","NV",1012 +2007-06-01,"Industrial Consumption","Maine","ME",1775 +2007-06-01,"Industrial Consumption","South Carolina","SC",6063 +2007-06-01,"Industrial Consumption","Wyoming","WY",3308 +2007-06-01,"Industrial Consumption","New Jersey","NJ",4689 +2007-06-01,"Industrial Consumption","Hawaii","HI",44 +2007-06-01,"Industrial Consumption","Oklahoma","OK",14010 +2007-06-01,"Industrial Consumption","Colorado","CO",8474 +2007-06-01,"Industrial Consumption","Arizona","AZ",1254 +2007-06-01,"Industrial Consumption","Oregon","OR",4799 +2007-06-01,"Industrial Consumption","Arkansas","AR",6537 +2007-06-01,"Industrial Consumption","West Virginia","WV",2352 +2007-06-01,"Industrial Consumption","Tennessee","TN",6621 +2007-06-01,"Industrial Consumption","Illinois","IL",17770 +2007-06-01,"Industrial Consumption","Georgia","GA",12248 +2007-06-01,"Industrial Consumption","Nebraska","NE",4818 +2007-06-01,"Industrial Consumption","Virginia","VA",7701 +2007-06-01,"Industrial Consumption","Iowa","IA",9811 +2007-06-01,"Industrial Consumption","North Dakota","ND",1325 +2007-06-01,"Industrial Consumption","Massachusetts","MA",2292 +2007-06-01,"Industrial Consumption","South Dakota","SD",1819 +2007-06-01,"Industrial Consumption","Kansas","KS",9050 +2007-06-01,"Industrial Consumption","Vermont","VT",187 +2007-06-01,"Industrial Consumption","Florida","FL",4977 +2007-06-01,"Industrial Consumption","Indiana","IN",19141 +2007-06-01,"Industrial Consumption","District of Columbia","DC",0 +2007-06-01,"Industrial Consumption","Missouri","MO",4467 +2007-06-01,"Industrial Consumption","Washington","WA",5294 +2007-06-01,"Industrial Consumption","New Hampshire","NH",388 +2007-06-01,"Industrial Consumption","Michigan","MI",8657 +2007-06-01,"Industrial Consumption","Rhode Island","RI",385 +2007-06-01,"Industrial Consumption","Montana","MT",1559 +2007-06-01,"Industrial Consumption","Louisiana","LA",73558 +2007-06-01,"Industrial Consumption","Pennsylvania","PA",13525 +2007-06-01,"Industrial Consumption","Alabama","AL",11659 +2007-06-01,"Industrial Consumption","Minnesota","MN",7235 +2007-06-01,"Industrial Consumption","Kentucky","KY",7601 +2007-06-01,"Industrial Consumption","Ohio","OH",20202 +2007-06-01,"Industrial Consumption","New York","NY",4803 +2007-06-01,"Industrial Consumption","Mississippi","MS",7929 +2007-06-01,"Industrial Consumption","Texas","TX",106600 +2007-06-01,"Industrial Consumption","Wisconsin","WI",7336 +2007-06-01,"Industrial Consumption","Idaho","ID",1741 +2007-06-01,"Industrial Consumption","Connecticut","CT",1534 +2007-06-01,"Industrial Consumption","North Carolina","NC",6633 +2007-06-01,"Industrial Consumption","Alaska","AK",2819 +2007-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101193 +2007-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",41310 +2007-06-01,"Residential Consumption","Mississippi","MS",409 +2007-06-01,"Residential Consumption","Iowa","IA",1397 +2007-06-01,"Residential Consumption","Maine","ME",33 +2007-06-01,"Residential Consumption","New Jersey","NJ",5625 +2007-06-01,"Residential Consumption","Kansas","KS",1544 +2007-06-01,"Residential Consumption","Arizona","AZ",1385 +2007-06-01,"Residential Consumption","North Carolina","NC",1310 +2007-06-01,"Residential Consumption","Vermont","VT",102 +2007-06-01,"Residential Consumption","Massachusetts","MA",3560 +2007-06-01,"Residential Consumption","Montana","MT",685 +2007-06-01,"Residential Consumption","Colorado","CO",3038 +2007-06-01,"Residential Consumption","South Carolina","SC",554 +2007-06-01,"Residential Consumption","Ohio","OH",6714 +2007-06-01,"Residential Consumption","Utah","UT",2252 +2007-06-01,"Residential Consumption","Nebraska","NE",980 +2007-06-01,"Residential Consumption","Idaho","ID",723 +2007-06-01,"Residential Consumption","Washington","WA",2925 +2007-06-01,"Residential Consumption","Missouri","MO",2251 +2007-06-01,"Residential Consumption","Alabama","AL",1083 +2007-06-01,"Residential Consumption","Rhode Island","RI",641 +2007-06-01,"Residential Consumption","Hawaii","HI",43 +2007-06-01,"Residential Consumption","Connecticut","CT",1462 +2007-06-01,"Residential Consumption","Maryland","MD",2114 +2007-06-01,"Residential Consumption","Virginia","VA",2013 +2007-06-01,"Residential Consumption","District of Columbia","DC",411 +2007-06-01,"Residential Consumption","North Dakota","ND",208 +2007-06-01,"Residential Consumption","Delaware","DE",256 +2007-06-01,"Residential Consumption","Alaska","AK",679 +2007-06-01,"Residential Consumption","Wyoming","WY",434 +2007-06-01,"Residential Consumption","Illinois","IL",9107 +2007-06-01,"Residential Consumption","Oregon","OR",1452 +2007-06-01,"Residential Consumption","Georgia","GA",3648 +2007-06-01,"Residential Consumption","Pennsylvania","PA",5278 +2007-06-01,"Residential Consumption","New Mexico","NM",1118 +2007-06-01,"Residential Consumption","Indiana","IN",2701 +2007-06-01,"Residential Consumption","Florida","FL",950 +2007-06-01,"Residential Consumption","Kentucky","KY",993 +2007-06-01,"Residential Consumption","Oklahoma","OK",1650 +2007-06-01,"Residential Consumption","California","CA",26503 +2007-06-01,"Residential Consumption","New York","NY",11861 +2007-06-01,"Residential Consumption","Texas","TX",7802 +2007-06-01,"Residential Consumption","Louisiana","LA",1436 +2007-06-01,"Residential Consumption","Michigan","MI",7684 +2007-06-01,"Residential Consumption","South Dakota","SD",279 +2007-06-01,"Residential Consumption","Arkansas","AR",879 +2007-06-01,"Residential Consumption","Wisconsin","WI",2723 +2007-06-01,"Residential Consumption","Tennessee","TN",1299 +2007-06-01,"Residential Consumption","Nevada","NV",1491 +2007-06-01,"Residential Consumption","Minnesota","MN",2911 +2007-06-01,"Residential Consumption","New Hampshire","NH",219 +2007-06-01,"Residential Consumption","West Virginia","WV",355 +2007-06-01,"Residential Consumption","U.S.","U.S.",137169 +2007-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2026 +2007-07-01,"Commercial Consumption","New York","NY",13436 +2007-07-01,"Commercial Consumption","Mississippi","MS",1065 +2007-07-01,"Commercial Consumption","Tennessee","TN",2121 +2007-07-01,"Commercial Consumption","Colorado","CO",1754 +2007-07-01,"Commercial Consumption","Oregon","OR",1083 +2007-07-01,"Commercial Consumption","Virginia","VA",2768 +2007-07-01,"Commercial Consumption","Kansas","KS",950 +2007-07-01,"Commercial Consumption","California","CA",16270 +2007-07-01,"Commercial Consumption","Nevada","NV",1527 +2007-07-01,"Commercial Consumption","Wyoming","WY",246 +2007-07-01,"Commercial Consumption","North Carolina","NC",1997 +2007-07-01,"Commercial Consumption","Minnesota","MN",2498 +2007-07-01,"Commercial Consumption","Oklahoma","OK",1487 +2007-07-01,"Commercial Consumption","Massachusetts","MA",1890 +2007-07-01,"Commercial Consumption","Florida","FL",3752 +2007-07-01,"Commercial Consumption","Hawaii","HI",153 +2007-07-01,"Commercial Consumption","Illinois","IL",6860 +2007-07-01,"Commercial Consumption","District of Columbia","DC",858 +2007-07-01,"Commercial Consumption","New Jersey","NJ",7792 +2007-07-01,"Commercial Consumption","Arizona","AZ",1826 +2007-07-01,"Commercial Consumption","West Virginia","WV",881 +2007-07-01,"Commercial Consumption","Missouri","MO",2091 +2007-07-01,"Commercial Consumption","Montana","MT",426 +2007-07-01,"Commercial Consumption","Ohio","OH",4368 +2007-07-01,"Commercial Consumption","Connecticut","CT",1360 +2007-07-01,"Commercial Consumption","Michigan","MI",4766 +2007-07-01,"Commercial Consumption","Louisiana","LA",1429 +2007-07-01,"Commercial Consumption","South Carolina","SC",1183 +2007-07-01,"Commercial Consumption","Pennsylvania","PA",4296 +2007-07-01,"Commercial Consumption","Wisconsin","WI",2523 +2007-07-01,"Commercial Consumption","South Dakota","SD",293 +2007-07-01,"Commercial Consumption","Iowa","IA",1426 +2007-07-01,"Commercial Consumption","Alabama","AL",1116 +2007-07-01,"Commercial Consumption","Nebraska","NE",1066 +2007-07-01,"Commercial Consumption","Washington","WA",2151 +2007-07-01,"Commercial Consumption","North Dakota","ND",268 +2007-07-01,"Commercial Consumption","Maine","ME",230 +2007-07-01,"Commercial Consumption","Texas","TX",8633 +2007-07-01,"Commercial Consumption","Rhode Island","RI",257 +2007-07-01,"Commercial Consumption","Alaska","AK",704 +2007-07-01,"Commercial Consumption","Delaware","DE",307 +2007-07-01,"Commercial Consumption","Indiana","IN",2020 +2007-07-01,"Commercial Consumption","Utah","UT",1029 +2007-07-01,"Commercial Consumption","New Mexico","NM",888 +2007-07-01,"Commercial Consumption","New Hampshire","NH",310 +2007-07-01,"Commercial Consumption","Kentucky","KY",1094 +2007-07-01,"Commercial Consumption","U.S.","U.S.",122408 +2007-07-01,"Commercial Consumption","Maryland","MD",2928 +2007-07-01,"Commercial Consumption","Georgia","GA",2017 +2007-07-01,"Commercial Consumption","Vermont","VT",77 +2007-07-01,"Commercial Consumption","Idaho","ID",464 +2007-07-01,"Commercial Consumption","Arkansas","AR",1476 +2007-07-01,"Delivered to Consumers","Vermont","VT",340 +2007-07-01,"Delivered to Consumers","Alaska","AK",7241 +2007-07-01,"Delivered to Consumers","Connecticut","CT",11663 +2007-07-01,"Delivered to Consumers","Wisconsin","WI",18156 +2007-07-01,"Delivered to Consumers","Mississippi","MS",28509 +2007-07-01,"Delivered to Consumers","New Hampshire","NH",5642 +2007-07-01,"Delivered to Consumers","U.S.","U.S.",1513157 +2007-07-01,"Delivered to Consumers","Maryland","MD",9540 +2007-07-01,"Delivered to Consumers","Ohio","OH",33361 +2007-07-01,"Delivered to Consumers","California","CA",193098 +2007-07-01,"Delivered to Consumers","Oregon","OR",17040 +2007-07-01,"Delivered to Consumers","Nevada","NV",23367 +2007-07-01,"Delivered to Consumers","Minnesota","MN",17397 +2007-07-01,"Delivered to Consumers","Wyoming","WY",3873 +2007-07-01,"Delivered to Consumers","New York","NY",74597 +2007-07-01,"Delivered to Consumers","Idaho","ID",3636 +2007-07-01,"Delivered to Consumers","Nebraska","NE",10286 +2007-07-01,"Delivered to Consumers","Missouri","MO",14303 +2007-07-01,"Delivered to Consumers","Massachusetts","MA",26937 +2007-07-01,"Delivered to Consumers","Washington","WA",15782 +2007-07-01,"Delivered to Consumers","North Dakota","ND",1164 +2007-07-01,"Delivered to Consumers","New Mexico","NM",10231 +2007-07-01,"Delivered to Consumers","Kansas","KS",16842 +2007-07-01,"Delivered to Consumers","Arkansas","AR",17998 +2007-07-01,"Delivered to Consumers","Maine","ME",6405 +2007-07-01,"Delivered to Consumers","Arizona","AZ",43104 +2007-07-01,"Delivered to Consumers","District of Columbia","DC",1122 +2007-07-01,"Delivered to Consumers","West Virginia","WV",4055 +2007-07-01,"Delivered to Consumers","South Dakota","SD",3270 +2007-07-01,"Delivered to Consumers","Rhode Island","RI",7009 +2007-07-01,"Delivered to Consumers","Hawaii","HI",241 +2007-07-01,"Delivered to Consumers","Kentucky","KY",10304 +2007-07-01,"Delivered to Consumers","Alabama","AL",32883 +2007-07-01,"Delivered to Consumers","Virginia","VA",23201 +2007-07-01,"Delivered to Consumers","Pennsylvania","PA",42996 +2007-07-01,"Delivered to Consumers","Georgia","GA",32039 +2007-07-01,"Delivered to Consumers","Utah","UT",9771 +2007-07-01,"Delivered to Consumers","Illinois","IL",39665 +2007-07-01,"Delivered to Consumers","Oklahoma","OK",47969 +2007-07-01,"Delivered to Consumers","Michigan","MI",30415 +2007-07-01,"Delivered to Consumers","Texas","TX",274368 +2007-07-01,"Delivered to Consumers","Delaware","DE",3833 +2007-07-01,"Delivered to Consumers","Tennessee","TN",10388 +2007-07-01,"Delivered to Consumers","Iowa","IA",15363 +2007-07-01,"Delivered to Consumers","New Jersey","NJ",37336 +2007-07-01,"Delivered to Consumers","Florida","FL",93683 +2007-07-01,"Delivered to Consumers","Indiana","IN",28150 +2007-07-01,"Delivered to Consumers","Montana","MT",2580 +2007-07-01,"Delivered to Consumers","North Carolina","NC",14640 +2007-07-01,"Delivered to Consumers","Colorado","CO",28465 +2007-07-01,"Delivered to Consumers","South Carolina","SC",14438 +2007-07-01,"Delivered to Consumers","Louisiana","LA",92367 +2007-07-01,"Electric Power Consumption","New Mexico","NM",6903 +2007-07-01,"Electric Power Consumption","New Jersey","NJ",19760 +2007-07-01,"Electric Power Consumption","Arkansas","AR",9144 +2007-07-01,"Electric Power Consumption","Utah","UT",4728 +2007-07-01,"Electric Power Consumption","Kansas","KS",4397 +2007-07-01,"Electric Power Consumption","Nevada","NV",19672 +2007-07-01,"Electric Power Consumption","Tennessee","TN",398 +2007-07-01,"Electric Power Consumption","North Dakota","ND",0 +2007-07-01,"Electric Power Consumption","Indiana","IN",4183 +2007-07-01,"Electric Power Consumption","Colorado","CO",13038 +2007-07-01,"Electric Power Consumption","South Carolina","SC",6622 +2007-07-01,"Electric Power Consumption","New York","NY",46857 +2007-07-01,"Electric Power Consumption","Michigan","MI",10999 +2007-07-01,"Electric Power Consumption","Nebraska","NE",2503 +2007-07-01,"Electric Power Consumption","Kentucky","KY",1156 +2007-07-01,"Electric Power Consumption","Ohio","OH",3799 +2007-07-01,"Electric Power Consumption","California","CA",94286 +2007-07-01,"Electric Power Consumption","Alabama","AL",19033 +2007-07-01,"Electric Power Consumption","Texas","TX",148330 +2007-07-01,"Electric Power Consumption","Connecticut","CT",7749 +2007-07-01,"Electric Power Consumption","Georgia","GA",14348 +2007-07-01,"Electric Power Consumption","Minnesota","MN",4081 +2007-07-01,"Electric Power Consumption","Iowa","IA",2202 +2007-07-01,"Electric Power Consumption","North Carolina","NC",5005 +2007-07-01,"Electric Power Consumption","Montana","MT",119 +2007-07-01,"Electric Power Consumption","Alaska","AK",3150 +2007-07-01,"Electric Power Consumption","Idaho","ID",970 +2007-07-01,"Electric Power Consumption","Rhode Island","RI",5743 +2007-07-01,"Electric Power Consumption","Oklahoma","OK",31137 +2007-07-01,"Electric Power Consumption","Pennsylvania","PA",20615 +2007-07-01,"Electric Power Consumption","Wyoming","WY",128 +2007-07-01,"Electric Power Consumption","Vermont","VT",4 +2007-07-01,"Electric Power Consumption","U.S.","U.S.",760521 +2007-07-01,"Electric Power Consumption","Maine","ME",4376 +2007-07-01,"Electric Power Consumption","Mississippi","MS",18805 +2007-07-01,"Electric Power Consumption","New Hampshire","NH",4795 +2007-07-01,"Electric Power Consumption","Florida","FL",84294 +2007-07-01,"Electric Power Consumption","Illinois","IL",7224 +2007-07-01,"Electric Power Consumption","Massachusetts","MA",20546 +2007-07-01,"Electric Power Consumption","South Dakota","SD",966 +2007-07-01,"Electric Power Consumption","Missouri","MO",5590 +2007-07-01,"Electric Power Consumption","Maryland","MD",3235 +2007-07-01,"Electric Power Consumption","Oregon","OR",9811 +2007-07-01,"Electric Power Consumption","West Virginia","WV",351 +2007-07-01,"Electric Power Consumption","Wisconsin","WI",5474 +2007-07-01,"Electric Power Consumption","Hawaii","HI",NA +2007-07-01,"Electric Power Consumption","Arizona","AZ",38830 +2007-07-01,"Electric Power Consumption","Washington","WA",6547 +2007-07-01,"Electric Power Consumption","Virginia","VA",13105 +2007-07-01,"Electric Power Consumption","Louisiana","LA",23302 +2007-07-01,"Electric Power Consumption","Delaware","DE",2210 +2007-07-01,"Industrial Consumption","Massachusetts","MA",1813 +2007-07-01,"Industrial Consumption","Louisiana","LA",66335 +2007-07-01,"Industrial Consumption","Utah","UT",2390 +2007-07-01,"Industrial Consumption","Virginia","VA",5761 +2007-07-01,"Industrial Consumption","Tennessee","TN",6714 +2007-07-01,"Industrial Consumption","New Jersey","NJ",4495 +2007-07-01,"Industrial Consumption","Illinois","IL",16719 +2007-07-01,"Industrial Consumption","District of Columbia","DC",0 +2007-07-01,"Industrial Consumption","Alaska","AK",2793 +2007-07-01,"Industrial Consumption","North Dakota","ND",706 +2007-07-01,"Industrial Consumption","Maryland","MD",1638 +2007-07-01,"Industrial Consumption","Missouri","MO",4601 +2007-07-01,"Industrial Consumption","South Dakota","SD",1784 +2007-07-01,"Industrial Consumption","Mississippi","MS",7778 +2007-07-01,"Industrial Consumption","Maine","ME",1763 +2007-07-01,"Industrial Consumption","South Carolina","SC",6115 +2007-07-01,"Industrial Consumption","Connecticut","CT",1562 +2007-07-01,"Industrial Consumption","Hawaii","HI",47 +2007-07-01,"Industrial Consumption","Washington","WA",5056 +2007-07-01,"Industrial Consumption","New York","NY",4836 +2007-07-01,"Industrial Consumption","Wyoming","WY",3249 +2007-07-01,"Industrial Consumption","New Hampshire","NH",371 +2007-07-01,"Industrial Consumption","Michigan","MI",8235 +2007-07-01,"Industrial Consumption","Rhode Island","RI",546 +2007-07-01,"Industrial Consumption","New Mexico","NM",1565 +2007-07-01,"Industrial Consumption","Arizona","AZ",1297 +2007-07-01,"Industrial Consumption","Idaho","ID",1697 +2007-07-01,"Industrial Consumption","Colorado","CO",10890 +2007-07-01,"Industrial Consumption","Kansas","KS",10210 +2007-07-01,"Industrial Consumption","U.S.","U.S.",510518 +2007-07-01,"Industrial Consumption","Pennsylvania","PA",13652 +2007-07-01,"Industrial Consumption","Oregon","OR",5077 +2007-07-01,"Industrial Consumption","California","CA",59539 +2007-07-01,"Industrial Consumption","Arkansas","AR",6644 +2007-07-01,"Industrial Consumption","West Virginia","WV",2461 +2007-07-01,"Industrial Consumption","Vermont","VT",182 +2007-07-01,"Industrial Consumption","Florida","FL",4819 +2007-07-01,"Industrial Consumption","North Carolina","NC",6483 +2007-07-01,"Industrial Consumption","Ohio","OH",19450 +2007-07-01,"Industrial Consumption","Nevada","NV",898 +2007-07-01,"Industrial Consumption","Nebraska","NE",5904 +2007-07-01,"Industrial Consumption","Wisconsin","WI",7533 +2007-07-01,"Industrial Consumption","Minnesota","MN",8161 +2007-07-01,"Industrial Consumption","Iowa","IA",10474 +2007-07-01,"Industrial Consumption","Delaware","DE",1128 +2007-07-01,"Industrial Consumption","Georgia","GA",12099 +2007-07-01,"Industrial Consumption","Montana","MT",1589 +2007-07-01,"Industrial Consumption","Oklahoma","OK",13933 +2007-07-01,"Industrial Consumption","Alabama","AL",11798 +2007-07-01,"Industrial Consumption","Texas","TX",111135 +2007-07-01,"Industrial Consumption","Kentucky","KY",7091 +2007-07-01,"Industrial Consumption","Indiana","IN",19499 +2007-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103426 +2007-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",44231 +2007-07-01,"Residential Consumption","Vermont","VT",77 +2007-07-01,"Residential Consumption","District of Columbia","DC",264 +2007-07-01,"Residential Consumption","Massachusetts","MA",2687 +2007-07-01,"Residential Consumption","Delaware","DE",188 +2007-07-01,"Residential Consumption","West Virginia","WV",363 +2007-07-01,"Residential Consumption","Texas","TX",6270 +2007-07-01,"Residential Consumption","South Carolina","SC",517 +2007-07-01,"Residential Consumption","Michigan","MI",6415 +2007-07-01,"Residential Consumption","Maryland","MD",1739 +2007-07-01,"Residential Consumption","Minnesota","MN",2658 +2007-07-01,"Residential Consumption","Montana","MT",445 +2007-07-01,"Residential Consumption","Oklahoma","OK",1412 +2007-07-01,"Residential Consumption","Arizona","AZ",1152 +2007-07-01,"Residential Consumption","North Dakota","ND",190 +2007-07-01,"Residential Consumption","Kentucky","KY",963 +2007-07-01,"Residential Consumption","Kansas","KS",1285 +2007-07-01,"Residential Consumption","New York","NY",9467 +2007-07-01,"Residential Consumption","Oregon","OR",1070 +2007-07-01,"Residential Consumption","Ohio","OH",5744 +2007-07-01,"Residential Consumption","Louisiana","LA",1300 +2007-07-01,"Residential Consumption","Wisconsin","WI",2626 +2007-07-01,"Residential Consumption","Utah","UT",1624 +2007-07-01,"Residential Consumption","South Dakota","SD",227 +2007-07-01,"Residential Consumption","New Hampshire","NH",167 +2007-07-01,"Residential Consumption","Colorado","CO",2782 +2007-07-01,"Residential Consumption","Washington","WA",2029 +2007-07-01,"Residential Consumption","Alabama","AL",935 +2007-07-01,"Residential Consumption","Wyoming","WY",251 +2007-07-01,"Residential Consumption","North Carolina","NC",1154 +2007-07-01,"Residential Consumption","Mississippi","MS",860 +2007-07-01,"Residential Consumption","Hawaii","HI",41 +2007-07-01,"Residential Consumption","Pennsylvania","PA",4433 +2007-07-01,"Residential Consumption","New Mexico","NM",875 +2007-07-01,"Residential Consumption","Maine","ME",36 +2007-07-01,"Residential Consumption","Indiana","IN",2449 +2007-07-01,"Residential Consumption","Arkansas","AR",734 +2007-07-01,"Residential Consumption","New Jersey","NJ",5288 +2007-07-01,"Residential Consumption","U.S.","U.S.",117616 +2007-07-01,"Residential Consumption","Rhode Island","RI",463 +2007-07-01,"Residential Consumption","Tennessee","TN",1154 +2007-07-01,"Residential Consumption","Nebraska","NE",812 +2007-07-01,"Residential Consumption","Florida","FL",818 +2007-07-01,"Residential Consumption","Idaho","ID",505 +2007-07-01,"Residential Consumption","Illinois","IL",8861 +2007-07-01,"Residential Consumption","Iowa","IA",1261 +2007-07-01,"Residential Consumption","Connecticut","CT",993 +2007-07-01,"Residential Consumption","Virginia","VA",1567 +2007-07-01,"Residential Consumption","Nevada","NV",1270 +2007-07-01,"Residential Consumption","Georgia","GA",3575 +2007-07-01,"Residential Consumption","Missouri","MO",2021 +2007-07-01,"Residential Consumption","California","CA",23004 +2007-07-01,"Residential Consumption","Alaska","AK",594 +2007-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2094 +2007-08-01,"Commercial Consumption","South Carolina","SC",1113 +2007-08-01,"Commercial Consumption","Oklahoma","OK",1471 +2007-08-01,"Commercial Consumption","Texas","TX",9441 +2007-08-01,"Commercial Consumption","Idaho","ID",442 +2007-08-01,"Commercial Consumption","Iowa","IA",1401 +2007-08-01,"Commercial Consumption","Wyoming","WY",267 +2007-08-01,"Commercial Consumption","Colorado","CO",1759 +2007-08-01,"Commercial Consumption","Missouri","MO",1889 +2007-08-01,"Commercial Consumption","New Jersey","NJ",9679 +2007-08-01,"Commercial Consumption","Montana","MT",459 +2007-08-01,"Commercial Consumption","Maryland","MD",2912 +2007-08-01,"Commercial Consumption","Florida","FL",3549 +2007-08-01,"Commercial Consumption","Alabama","AL",1054 +2007-08-01,"Commercial Consumption","Mississippi","MS",1072 +2007-08-01,"Commercial Consumption","Delaware","DE",320 +2007-08-01,"Commercial Consumption","Arizona","AZ",1752 +2007-08-01,"Commercial Consumption","Illinois","IL",7103 +2007-08-01,"Commercial Consumption","Virginia","VA",2604 +2007-08-01,"Commercial Consumption","Maine","ME",215 +2007-08-01,"Commercial Consumption","Kansas","KS",977 +2007-08-01,"Commercial Consumption","Ohio","OH",4315 +2007-08-01,"Commercial Consumption","Alaska","AK",737 +2007-08-01,"Commercial Consumption","Nebraska","NE",1052 +2007-08-01,"Commercial Consumption","Indiana","IN",2329 +2007-08-01,"Commercial Consumption","Minnesota","MN",2604 +2007-08-01,"Commercial Consumption","Utah","UT",937 +2007-08-01,"Commercial Consumption","Kentucky","KY",1050 +2007-08-01,"Commercial Consumption","Vermont","VT",77 +2007-08-01,"Commercial Consumption","Connecticut","CT",1316 +2007-08-01,"Commercial Consumption","Tennessee","TN",2044 +2007-08-01,"Commercial Consumption","Pennsylvania","PA",4465 +2007-08-01,"Commercial Consumption","South Dakota","SD",305 +2007-08-01,"Commercial Consumption","New Hampshire","NH",300 +2007-08-01,"Commercial Consumption","Rhode Island","RI",246 +2007-08-01,"Commercial Consumption","Hawaii","HI",143 +2007-08-01,"Commercial Consumption","California","CA",17262 +2007-08-01,"Commercial Consumption","Michigan","MI",4914 +2007-08-01,"Commercial Consumption","District of Columbia","DC",862 +2007-08-01,"Commercial Consumption","North Dakota","ND",268 +2007-08-01,"Commercial Consumption","Oregon","OR",1003 +2007-08-01,"Commercial Consumption","Massachusetts","MA",2260 +2007-08-01,"Commercial Consumption","New York","NY",14394 +2007-08-01,"Commercial Consumption","Nevada","NV",1497 +2007-08-01,"Commercial Consumption","Louisiana","LA",1449 +2007-08-01,"Commercial Consumption","West Virginia","WV",892 +2007-08-01,"Commercial Consumption","Washington","WA",2048 +2007-08-01,"Commercial Consumption","North Carolina","NC",1965 +2007-08-01,"Commercial Consumption","New Mexico","NM",820 +2007-08-01,"Commercial Consumption","Wisconsin","WI",2702 +2007-08-01,"Commercial Consumption","U.S.","U.S.",127081 +2007-08-01,"Commercial Consumption","Georgia","GA",1878 +2007-08-01,"Commercial Consumption","Arkansas","AR",1470 +2007-08-01,"Delivered to Consumers","New York","NY",83048 +2007-08-01,"Delivered to Consumers","Ohio","OH",40637 +2007-08-01,"Delivered to Consumers","Michigan","MI",38655 +2007-08-01,"Delivered to Consumers","South Carolina","SC",22784 +2007-08-01,"Delivered to Consumers","Florida","FL",97040 +2007-08-01,"Delivered to Consumers","New Mexico","NM",11382 +2007-08-01,"Delivered to Consumers","Illinois","IL",50126 +2007-08-01,"Delivered to Consumers","Montana","MT",2622 +2007-08-01,"Delivered to Consumers","Kansas","KS",20565 +2007-08-01,"Delivered to Consumers","North Dakota","ND",1507 +2007-08-01,"Delivered to Consumers","West Virginia","WV",5266 +2007-08-01,"Delivered to Consumers","Vermont","VT",331 +2007-08-01,"Delivered to Consumers","Maryland","MD",12974 +2007-08-01,"Delivered to Consumers","Hawaii","HI",218 +2007-08-01,"Delivered to Consumers","Alabama","AL",44398 +2007-08-01,"Delivered to Consumers","Virginia","VA",27420 +2007-08-01,"Delivered to Consumers","Mississippi","MS",42635 +2007-08-01,"Delivered to Consumers","Maine","ME",6403 +2007-08-01,"Delivered to Consumers","Georgia","GA",49457 +2007-08-01,"Delivered to Consumers","Minnesota","MN",17832 +2007-08-01,"Delivered to Consumers","Connecticut","CT",12416 +2007-08-01,"Delivered to Consumers","Arkansas","AR",22294 +2007-08-01,"Delivered to Consumers","Wisconsin","WI",21627 +2007-08-01,"Delivered to Consumers","Nebraska","NE",11264 +2007-08-01,"Delivered to Consumers","Indiana","IN",34503 +2007-08-01,"Delivered to Consumers","Delaware","DE",4160 +2007-08-01,"Delivered to Consumers","Oklahoma","OK",58650 +2007-08-01,"Delivered to Consumers","Kentucky","KY",16709 +2007-08-01,"Delivered to Consumers","North Carolina","NC",22849 +2007-08-01,"Delivered to Consumers","Louisiana","LA",104606 +2007-08-01,"Delivered to Consumers","Arizona","AZ",40305 +2007-08-01,"Delivered to Consumers","District of Columbia","DC",1134 +2007-08-01,"Delivered to Consumers","Utah","UT",9790 +2007-08-01,"Delivered to Consumers","Wyoming","WY",3944 +2007-08-01,"Delivered to Consumers","Alaska","AK",7054 +2007-08-01,"Delivered to Consumers","Idaho","ID",4040 +2007-08-01,"Delivered to Consumers","Massachusetts","MA",28310 +2007-08-01,"Delivered to Consumers","Colorado","CO",26787 +2007-08-01,"Delivered to Consumers","Oregon","OR",18957 +2007-08-01,"Delivered to Consumers","New Hampshire","NH",5420 +2007-08-01,"Delivered to Consumers","South Dakota","SD",3154 +2007-08-01,"Delivered to Consumers","Rhode Island","RI",7571 +2007-08-01,"Delivered to Consumers","Iowa","IA",15754 +2007-08-01,"Delivered to Consumers","Pennsylvania","PA",50308 +2007-08-01,"Delivered to Consumers","Missouri","MO",18292 +2007-08-01,"Delivered to Consumers","California","CA",207823 +2007-08-01,"Delivered to Consumers","New Jersey","NJ",41864 +2007-08-01,"Delivered to Consumers","U.S.","U.S.",1741755 +2007-08-01,"Delivered to Consumers","Tennessee","TN",14044 +2007-08-01,"Delivered to Consumers","Texas","TX",311008 +2007-08-01,"Delivered to Consumers","Nevada","NV",22531 +2007-08-01,"Delivered to Consumers","Washington","WA",17194 +2007-08-01,"Electric Power Consumption","Virginia","VA",18521 +2007-08-01,"Electric Power Consumption","New Mexico","NM",7969 +2007-08-01,"Electric Power Consumption","Oklahoma","OK",41933 +2007-08-01,"Electric Power Consumption","Vermont","VT",2 +2007-08-01,"Electric Power Consumption","U.S.","U.S.",969433 +2007-08-01,"Electric Power Consumption","North Carolina","NC",12968 +2007-08-01,"Electric Power Consumption","Mississippi","MS",33558 +2007-08-01,"Electric Power Consumption","Kentucky","KY",6535 +2007-08-01,"Electric Power Consumption","Ohio","OH",10108 +2007-08-01,"Electric Power Consumption","Connecticut","CT",8424 +2007-08-01,"Electric Power Consumption","Alaska","AK",3096 +2007-08-01,"Electric Power Consumption","Washington","WA",7760 +2007-08-01,"Electric Power Consumption","Louisiana","LA",33315 +2007-08-01,"Electric Power Consumption","South Carolina","SC",14881 +2007-08-01,"Electric Power Consumption","Iowa","IA",2574 +2007-08-01,"Electric Power Consumption","Indiana","IN",8519 +2007-08-01,"Electric Power Consumption","Colorado","CO",12164 +2007-08-01,"Electric Power Consumption","Utah","UT",5131 +2007-08-01,"Electric Power Consumption","West Virginia","WV",926 +2007-08-01,"Electric Power Consumption","Pennsylvania","PA",26512 +2007-08-01,"Electric Power Consumption","Nevada","NV",18929 +2007-08-01,"Electric Power Consumption","New Hampshire","NH",4580 +2007-08-01,"Electric Power Consumption","Georgia","GA",31751 +2007-08-01,"Electric Power Consumption","California","CA",105148 +2007-08-01,"Electric Power Consumption","Rhode Island","RI",6326 +2007-08-01,"Electric Power Consumption","Tennessee","TN",4034 +2007-08-01,"Electric Power Consumption","Maryland","MD",6516 +2007-08-01,"Electric Power Consumption","New Jersey","NJ",22278 +2007-08-01,"Electric Power Consumption","Idaho","ID",1466 +2007-08-01,"Electric Power Consumption","Minnesota","MN",4008 +2007-08-01,"Electric Power Consumption","Missouri","MO",9671 +2007-08-01,"Electric Power Consumption","Arizona","AZ",36053 +2007-08-01,"Electric Power Consumption","New York","NY",53252 +2007-08-01,"Electric Power Consumption","Michigan","MI",19216 +2007-08-01,"Electric Power Consumption","Alabama","AL",30741 +2007-08-01,"Electric Power Consumption","Texas","TX",183051 +2007-08-01,"Electric Power Consumption","Massachusetts","MA",21667 +2007-08-01,"Electric Power Consumption","Wyoming","WY",142 +2007-08-01,"Electric Power Consumption","Nebraska","NE",2583 +2007-08-01,"Electric Power Consumption","Maine","ME",4252 +2007-08-01,"Electric Power Consumption","North Dakota","ND",0 +2007-08-01,"Electric Power Consumption","Florida","FL",87749 +2007-08-01,"Electric Power Consumption","Arkansas","AR",13834 +2007-08-01,"Electric Power Consumption","Oregon","OR",11709 +2007-08-01,"Electric Power Consumption","Illinois","IL",16624 +2007-08-01,"Electric Power Consumption","Kansas","KS",7259 +2007-08-01,"Electric Power Consumption","Wisconsin","WI",8247 +2007-08-01,"Electric Power Consumption","South Dakota","SD",832 +2007-08-01,"Electric Power Consumption","Hawaii","HI",NA +2007-08-01,"Electric Power Consumption","Montana","MT",118 +2007-08-01,"Electric Power Consumption","Delaware","DE",2502 +2007-08-01,"Industrial Consumption","Ohio","OH",20910 +2007-08-01,"Industrial Consumption","New York","NY",5330 +2007-08-01,"Industrial Consumption","Mississippi","MS",7402 +2007-08-01,"Industrial Consumption","Nebraska","NE",6830 +2007-08-01,"Industrial Consumption","Indiana","IN",21125 +2007-08-01,"Industrial Consumption","Massachusetts","MA",1981 +2007-08-01,"Industrial Consumption","Kansas","KS",11151 +2007-08-01,"Industrial Consumption","California","CA",63863 +2007-08-01,"Industrial Consumption","Arkansas","AR",6319 +2007-08-01,"Industrial Consumption","Florida","FL",5017 +2007-08-01,"Industrial Consumption","Rhode Island","RI",603 +2007-08-01,"Industrial Consumption","Missouri","MO",4853 +2007-08-01,"Industrial Consumption","Colorado","CO",10258 +2007-08-01,"Industrial Consumption","Washington","WA",5537 +2007-08-01,"Industrial Consumption","Arizona","AZ",1410 +2007-08-01,"Industrial Consumption","Pennsylvania","PA",15270 +2007-08-01,"Industrial Consumption","Maine","ME",1916 +2007-08-01,"Industrial Consumption","South Carolina","SC",6358 +2007-08-01,"Industrial Consumption","Vermont","VT",186 +2007-08-01,"Industrial Consumption","Alaska","AK",2634 +2007-08-01,"Industrial Consumption","Hawaii","HI",37 +2007-08-01,"Industrial Consumption","New Mexico","NM",1752 +2007-08-01,"Industrial Consumption","Utah","UT",2315 +2007-08-01,"Industrial Consumption","Nevada","NV",950 +2007-08-01,"Industrial Consumption","Alabama","AL",11727 +2007-08-01,"Industrial Consumption","Wisconsin","WI",8183 +2007-08-01,"Industrial Consumption","Delaware","DE",1170 +2007-08-01,"Industrial Consumption","Oklahoma","OK",14017 +2007-08-01,"Industrial Consumption","Louisiana","LA",68563 +2007-08-01,"Industrial Consumption","U.S.","U.S.",531132 +2007-08-01,"Industrial Consumption","Tennessee","TN",6881 +2007-08-01,"Industrial Consumption","Iowa","IA",10561 +2007-08-01,"Industrial Consumption","Illinois","IL",17614 +2007-08-01,"Industrial Consumption","Montana","MT",1658 +2007-08-01,"Industrial Consumption","Maryland","MD",1893 +2007-08-01,"Industrial Consumption","West Virginia","WV",3116 +2007-08-01,"Industrial Consumption","New Jersey","NJ",4667 +2007-08-01,"Industrial Consumption","New Hampshire","NH",390 +2007-08-01,"Industrial Consumption","Idaho","ID",1672 +2007-08-01,"Industrial Consumption","Connecticut","CT",1668 +2007-08-01,"Industrial Consumption","Michigan","MI",8246 +2007-08-01,"Industrial Consumption","District of Columbia","DC",0 +2007-08-01,"Industrial Consumption","Oregon","OR",5306 +2007-08-01,"Industrial Consumption","Texas","TX",112658 +2007-08-01,"Industrial Consumption","Virginia","VA",4756 +2007-08-01,"Industrial Consumption","North Carolina","NC",6924 +2007-08-01,"Industrial Consumption","Georgia","GA",12437 +2007-08-01,"Industrial Consumption","North Dakota","ND",1077 +2007-08-01,"Industrial Consumption","South Dakota","SD",1786 +2007-08-01,"Industrial Consumption","Wyoming","WY",3308 +2007-08-01,"Industrial Consumption","Minnesota","MN",8653 +2007-08-01,"Industrial Consumption","Kentucky","KY",8199 +2007-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104005 +2007-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",50914 +2007-08-01,"Residential Consumption","Mississippi","MS",603 +2007-08-01,"Residential Consumption","Louisiana","LA",1280 +2007-08-01,"Residential Consumption","Vermont","VT",66 +2007-08-01,"Residential Consumption","Kentucky","KY",925 +2007-08-01,"Residential Consumption","Kansas","KS",1178 +2007-08-01,"Residential Consumption","U.S.","U.S.",112015 +2007-08-01,"Residential Consumption","South Carolina","SC",432 +2007-08-01,"Residential Consumption","New Mexico","NM",841 +2007-08-01,"Residential Consumption","Maine","ME",19 +2007-08-01,"Residential Consumption","Florida","FL",725 +2007-08-01,"Residential Consumption","Oklahoma","OK",1230 +2007-08-01,"Residential Consumption","Alaska","AK",587 +2007-08-01,"Residential Consumption","Illinois","IL",8785 +2007-08-01,"Residential Consumption","Georgia","GA",3391 +2007-08-01,"Residential Consumption","Pennsylvania","PA",4060 +2007-08-01,"Residential Consumption","West Virginia","WV",331 +2007-08-01,"Residential Consumption","Rhode Island","RI",396 +2007-08-01,"Residential Consumption","Hawaii","HI",38 +2007-08-01,"Residential Consumption","Connecticut","CT",1008 +2007-08-01,"Residential Consumption","South Dakota","SD",231 +2007-08-01,"Residential Consumption","District of Columbia","DC",272 +2007-08-01,"Residential Consumption","New Hampshire","NH",151 +2007-08-01,"Residential Consumption","Montana","MT",387 +2007-08-01,"Residential Consumption","Missouri","MO",1879 +2007-08-01,"Residential Consumption","Texas","TX",5858 +2007-08-01,"Residential Consumption","Oregon","OR",940 +2007-08-01,"Residential Consumption","Wisconsin","WI",2496 +2007-08-01,"Residential Consumption","California","CA",21550 +2007-08-01,"Residential Consumption","Iowa","IA",1217 +2007-08-01,"Residential Consumption","Tennessee","TN",1084 +2007-08-01,"Residential Consumption","Virginia","VA",1540 +2007-08-01,"Residential Consumption","Nebraska","NE",799 +2007-08-01,"Residential Consumption","Indiana","IN",2530 +2007-08-01,"Residential Consumption","Colorado","CO",2608 +2007-08-01,"Residential Consumption","Arizona","AZ",1091 +2007-08-01,"Residential Consumption","Ohio","OH",5305 +2007-08-01,"Residential Consumption","Nevada","NV",1155 +2007-08-01,"Residential Consumption","Arkansas","AR",672 +2007-08-01,"Residential Consumption","New Jersey","NJ",5240 +2007-08-01,"Residential Consumption","New York","NY",10072 +2007-08-01,"Residential Consumption","North Carolina","NC",993 +2007-08-01,"Residential Consumption","Utah","UT",1407 +2007-08-01,"Residential Consumption","Michigan","MI",6279 +2007-08-01,"Residential Consumption","Maryland","MD",1654 +2007-08-01,"Residential Consumption","Minnesota","MN",2568 +2007-08-01,"Residential Consumption","North Dakota","ND",163 +2007-08-01,"Residential Consumption","Massachusetts","MA",2402 +2007-08-01,"Residential Consumption","Idaho","ID",460 +2007-08-01,"Residential Consumption","Washington","WA",1850 +2007-08-01,"Residential Consumption","Delaware","DE",168 +2007-08-01,"Residential Consumption","Alabama","AL",876 +2007-08-01,"Residential Consumption","Wyoming","WY",227 +2007-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2094 +2007-09-01,"Commercial Consumption","North Carolina","NC",2068 +2007-09-01,"Commercial Consumption","New Mexico","NM",860 +2007-09-01,"Commercial Consumption","Virginia","VA",2732 +2007-09-01,"Commercial Consumption","South Dakota","SD",325 +2007-09-01,"Commercial Consumption","Kentucky","KY",1083 +2007-09-01,"Commercial Consumption","Kansas","KS",992 +2007-09-01,"Commercial Consumption","Georgia","GA",1946 +2007-09-01,"Commercial Consumption","Idaho","ID",545 +2007-09-01,"Commercial Consumption","Arizona","AZ",1807 +2007-09-01,"Commercial Consumption","Tennessee","TN",2094 +2007-09-01,"Commercial Consumption","West Virginia","WV",876 +2007-09-01,"Commercial Consumption","Hawaii","HI",150 +2007-09-01,"Commercial Consumption","Alabama","AL",1070 +2007-09-01,"Commercial Consumption","Mississippi","MS",1032 +2007-09-01,"Commercial Consumption","Indiana","IN",2274 +2007-09-01,"Commercial Consumption","District of Columbia","DC",923 +2007-09-01,"Commercial Consumption","New Hampshire","NH",320 +2007-09-01,"Commercial Consumption","Michigan","MI",4941 +2007-09-01,"Commercial Consumption","Louisiana","LA",1403 +2007-09-01,"Commercial Consumption","South Carolina","SC",1153 +2007-09-01,"Commercial Consumption","New Jersey","NJ",8888 +2007-09-01,"Commercial Consumption","Minnesota","MN",2462 +2007-09-01,"Commercial Consumption","Pennsylvania","PA",4583 +2007-09-01,"Commercial Consumption","Missouri","MO",2103 +2007-09-01,"Commercial Consumption","Montana","MT",446 +2007-09-01,"Commercial Consumption","U.S.","U.S.",127320 +2007-09-01,"Commercial Consumption","Texas","TX",8607 +2007-09-01,"Commercial Consumption","Maryland","MD",3372 +2007-09-01,"Commercial Consumption","Vermont","VT",77 +2007-09-01,"Commercial Consumption","Ohio","OH",4404 +2007-09-01,"Commercial Consumption","California","CA",17312 +2007-09-01,"Commercial Consumption","Maine","ME",232 +2007-09-01,"Commercial Consumption","Alaska","AK",922 +2007-09-01,"Commercial Consumption","Arkansas","AR",1589 +2007-09-01,"Commercial Consumption","New York","NY",12833 +2007-09-01,"Commercial Consumption","Nevada","NV",1604 +2007-09-01,"Commercial Consumption","Wyoming","WY",292 +2007-09-01,"Commercial Consumption","Oklahoma","OK",1463 +2007-09-01,"Commercial Consumption","Massachusetts","MA",2225 +2007-09-01,"Commercial Consumption","Wisconsin","WI",2762 +2007-09-01,"Commercial Consumption","Nebraska","NE",1317 +2007-09-01,"Commercial Consumption","Delaware","DE",319 +2007-09-01,"Commercial Consumption","Washington","WA",2273 +2007-09-01,"Commercial Consumption","North Dakota","ND",383 +2007-09-01,"Commercial Consumption","Colorado","CO",2062 +2007-09-01,"Commercial Consumption","Utah","UT",1023 +2007-09-01,"Commercial Consumption","Oregon","OR",1064 +2007-09-01,"Commercial Consumption","Florida","FL",3550 +2007-09-01,"Commercial Consumption","Rhode Island","RI",269 +2007-09-01,"Commercial Consumption","Iowa","IA",1566 +2007-09-01,"Commercial Consumption","Connecticut","CT",1381 +2007-09-01,"Commercial Consumption","Illinois","IL",7340 +2007-09-01,"Delivered to Consumers","Montana","MT",2616 +2007-09-01,"Delivered to Consumers","Kansas","KS",16098 +2007-09-01,"Delivered to Consumers","Kentucky","KY",11848 +2007-09-01,"Delivered to Consumers","Connecticut","CT",10842 +2007-09-01,"Delivered to Consumers","Virginia","VA",20949 +2007-09-01,"Delivered to Consumers","Nebraska","NE",8529 +2007-09-01,"Delivered to Consumers","Delaware","DE",3127 +2007-09-01,"Delivered to Consumers","New York","NY",66970 +2007-09-01,"Delivered to Consumers","California","CA",183842 +2007-09-01,"Delivered to Consumers","Washington","WA",18664 +2007-09-01,"Delivered to Consumers","North Dakota","ND",2419 +2007-09-01,"Delivered to Consumers","Vermont","VT",342 +2007-09-01,"Delivered to Consumers","Maryland","MD",9655 +2007-09-01,"Delivered to Consumers","Tennessee","TN",10952 +2007-09-01,"Delivered to Consumers","Texas","TX",264388 +2007-09-01,"Delivered to Consumers","Oregon","OR",18499 +2007-09-01,"Delivered to Consumers","Georgia","GA",31028 +2007-09-01,"Delivered to Consumers","New Hampshire","NH",5969 +2007-09-01,"Delivered to Consumers","U.S.","U.S.",1446674 +2007-09-01,"Delivered to Consumers","Illinois","IL",38843 +2007-09-01,"Delivered to Consumers","Hawaii","HI",223 +2007-09-01,"Delivered to Consumers","Alaska","AK",8115 +2007-09-01,"Delivered to Consumers","Idaho","ID",4529 +2007-09-01,"Delivered to Consumers","Arkansas","AR",15747 +2007-09-01,"Delivered to Consumers","Alabama","AL",29939 +2007-09-01,"Delivered to Consumers","Wisconsin","WI",17044 +2007-09-01,"Delivered to Consumers","New Jersey","NJ",34665 +2007-09-01,"Delivered to Consumers","Maine","ME",4340 +2007-09-01,"Delivered to Consumers","District of Columbia","DC",1182 +2007-09-01,"Delivered to Consumers","Utah","UT",10976 +2007-09-01,"Delivered to Consumers","Indiana","IN",29267 +2007-09-01,"Delivered to Consumers","Ohio","OH",34554 +2007-09-01,"Delivered to Consumers","Michigan","MI",30211 +2007-09-01,"Delivered to Consumers","Pennsylvania","PA",38092 +2007-09-01,"Delivered to Consumers","South Carolina","SC",13231 +2007-09-01,"Delivered to Consumers","Florida","FL",88865 +2007-09-01,"Delivered to Consumers","Rhode Island","RI",6437 +2007-09-01,"Delivered to Consumers","Mississippi","MS",32845 +2007-09-01,"Delivered to Consumers","Colorado","CO",27444 +2007-09-01,"Delivered to Consumers","New Mexico","NM",9253 +2007-09-01,"Delivered to Consumers","Wyoming","WY",4150 +2007-09-01,"Delivered to Consumers","West Virginia","WV",4713 +2007-09-01,"Delivered to Consumers","Oklahoma","OK",43759 +2007-09-01,"Delivered to Consumers","North Carolina","NC",15744 +2007-09-01,"Delivered to Consumers","Nevada","NV",20095 +2007-09-01,"Delivered to Consumers","Louisiana","LA",87792 +2007-09-01,"Delivered to Consumers","Arizona","AZ",33790 +2007-09-01,"Delivered to Consumers","South Dakota","SD",2669 +2007-09-01,"Delivered to Consumers","Iowa","IA",14595 +2007-09-01,"Delivered to Consumers","Missouri","MO",13207 +2007-09-01,"Delivered to Consumers","Massachusetts","MA",24665 +2007-09-01,"Delivered to Consumers","Minnesota","MN",16930 +2007-09-01,"Electric Power Consumption","New Mexico","NM",6195 +2007-09-01,"Electric Power Consumption","South Carolina","SC",5526 +2007-09-01,"Electric Power Consumption","Oregon","OR",11136 +2007-09-01,"Electric Power Consumption","U.S.","U.S.",683327 +2007-09-01,"Electric Power Consumption","Oklahoma","OK",27375 +2007-09-01,"Electric Power Consumption","North Carolina","NC",5681 +2007-09-01,"Electric Power Consumption","Missouri","MO",3917 +2007-09-01,"Electric Power Consumption","Arkansas","AR",7106 +2007-09-01,"Electric Power Consumption","New York","NY",39549 +2007-09-01,"Electric Power Consumption","Nevada","NV",16143 +2007-09-01,"Electric Power Consumption","Vermont","VT",3 +2007-09-01,"Electric Power Consumption","Tennessee","TN",776 +2007-09-01,"Electric Power Consumption","North Dakota","ND",0 +2007-09-01,"Electric Power Consumption","Montana","MT",102 +2007-09-01,"Electric Power Consumption","Indiana","IN",3620 +2007-09-01,"Electric Power Consumption","Washington","WA",8507 +2007-09-01,"Electric Power Consumption","New Jersey","NJ",15885 +2007-09-01,"Electric Power Consumption","Wyoming","WY",191 +2007-09-01,"Electric Power Consumption","Arizona","AZ",29492 +2007-09-01,"Electric Power Consumption","Virginia","VA",10000 +2007-09-01,"Electric Power Consumption","Colorado","CO",13512 +2007-09-01,"Electric Power Consumption","Rhode Island","RI",5379 +2007-09-01,"Electric Power Consumption","Utah","UT",5973 +2007-09-01,"Electric Power Consumption","Massachusetts","MA",17408 +2007-09-01,"Electric Power Consumption","Kansas","KS",2413 +2007-09-01,"Electric Power Consumption","Pennsylvania","PA",14429 +2007-09-01,"Electric Power Consumption","New Hampshire","NH",5088 +2007-09-01,"Electric Power Consumption","Maryland","MD",3336 +2007-09-01,"Electric Power Consumption","Alabama","AL",16900 +2007-09-01,"Electric Power Consumption","Idaho","ID",1643 +2007-09-01,"Electric Power Consumption","Minnesota","MN",2116 +2007-09-01,"Electric Power Consumption","Michigan","MI",9947 +2007-09-01,"Electric Power Consumption","Wisconsin","WI",3271 +2007-09-01,"Electric Power Consumption","Nebraska","NE",491 +2007-09-01,"Electric Power Consumption","Maine","ME",2232 +2007-09-01,"Electric Power Consumption","Kentucky","KY",2015 +2007-09-01,"Electric Power Consumption","California","CA",78588 +2007-09-01,"Electric Power Consumption","Louisiana","LA",22753 +2007-09-01,"Electric Power Consumption","Illinois","IL",5789 +2007-09-01,"Electric Power Consumption","Mississippi","MS",23269 +2007-09-01,"Electric Power Consumption","Delaware","DE",1533 +2007-09-01,"Electric Power Consumption","Alaska","AK",3508 +2007-09-01,"Electric Power Consumption","Texas","TX",145554 +2007-09-01,"Electric Power Consumption","West Virginia","WV",417 +2007-09-01,"Electric Power Consumption","Iowa","IA",684 +2007-09-01,"Electric Power Consumption","South Dakota","SD",241 +2007-09-01,"Electric Power Consumption","Hawaii","HI",NA +2007-09-01,"Electric Power Consumption","Ohio","OH",3876 +2007-09-01,"Electric Power Consumption","Connecticut","CT",6859 +2007-09-01,"Electric Power Consumption","Georgia","GA",13356 +2007-09-01,"Electric Power Consumption","Florida","FL",79545 +2007-09-01,"Industrial Consumption","Massachusetts","MA",2220 +2007-09-01,"Industrial Consumption","New Mexico","NM",1354 +2007-09-01,"Industrial Consumption","Oregon","OR",5269 +2007-09-01,"Industrial Consumption","Maine","ME",1846 +2007-09-01,"Industrial Consumption","California","CA",66575 +2007-09-01,"Industrial Consumption","Arkansas","AR",6348 +2007-09-01,"Industrial Consumption","South Carolina","SC",6072 +2007-09-01,"Industrial Consumption","Iowa","IA",10988 +2007-09-01,"Industrial Consumption","Indiana","IN",20528 +2007-09-01,"Industrial Consumption","Georgia","GA",12177 +2007-09-01,"Industrial Consumption","Maryland","MD",1307 +2007-09-01,"Industrial Consumption","South Dakota","SD",1847 +2007-09-01,"Industrial Consumption","Ohio","OH",20491 +2007-09-01,"Industrial Consumption","Kansas","KS",11479 +2007-09-01,"Industrial Consumption","Florida","FL",5057 +2007-09-01,"Industrial Consumption","Illinois","IL",17242 +2007-09-01,"Industrial Consumption","U.S.","U.S.",517561 +2007-09-01,"Industrial Consumption","New York","NY",5366 +2007-09-01,"Industrial Consumption","Tennessee","TN",7026 +2007-09-01,"Industrial Consumption","Michigan","MI",8458 +2007-09-01,"Industrial Consumption","District of Columbia","DC",0 +2007-09-01,"Industrial Consumption","Minnesota","MN",9689 +2007-09-01,"Industrial Consumption","Connecticut","CT",1591 +2007-09-01,"Industrial Consumption","Pennsylvania","PA",14390 +2007-09-01,"Industrial Consumption","Alabama","AL",11086 +2007-09-01,"Industrial Consumption","Nebraska","NE",5963 +2007-09-01,"Industrial Consumption","Wyoming","WY",3350 +2007-09-01,"Industrial Consumption","Idaho","ID",1761 +2007-09-01,"Industrial Consumption","Delaware","DE",1091 +2007-09-01,"Industrial Consumption","Montana","MT",1597 +2007-09-01,"Industrial Consumption","Hawaii","HI",33 +2007-09-01,"Industrial Consumption","Texas","TX",104872 +2007-09-01,"Industrial Consumption","Virginia","VA",6578 +2007-09-01,"Industrial Consumption","Vermont","VT",192 +2007-09-01,"Industrial Consumption","Wisconsin","WI",8142 +2007-09-01,"Industrial Consumption","New Jersey","NJ",4404 +2007-09-01,"Industrial Consumption","New Hampshire","NH",388 +2007-09-01,"Industrial Consumption","North Carolina","NC",6941 +2007-09-01,"Industrial Consumption","North Dakota","ND",1778 +2007-09-01,"Industrial Consumption","Colorado","CO",8494 +2007-09-01,"Industrial Consumption","Arizona","AZ",1362 +2007-09-01,"Industrial Consumption","Nevada","NV",1081 +2007-09-01,"Industrial Consumption","Kentucky","KY",7805 +2007-09-01,"Industrial Consumption","Alaska","AK",2795 +2007-09-01,"Industrial Consumption","Oklahoma","OK",13656 +2007-09-01,"Industrial Consumption","Missouri","MO",5052 +2007-09-01,"Industrial Consumption","Louisiana","LA",62401 +2007-09-01,"Industrial Consumption","Washington","WA",5666 +2007-09-01,"Industrial Consumption","Utah","UT",2395 +2007-09-01,"Industrial Consumption","Mississippi","MS",7950 +2007-09-01,"Industrial Consumption","West Virginia","WV",3078 +2007-09-01,"Industrial Consumption","Rhode Island","RI",327 +2007-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101696 +2007-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",42286 +2007-09-01,"Residential Consumption","Minnesota","MN",2663 +2007-09-01,"Residential Consumption","District of Columbia","DC",258 +2007-09-01,"Residential Consumption","Arizona","AZ",1128 +2007-09-01,"Residential Consumption","Texas","TX",5354 +2007-09-01,"Residential Consumption","South Carolina","SC",480 +2007-09-01,"Residential Consumption","Hawaii","HI",39 +2007-09-01,"Residential Consumption","Michigan","MI",6865 +2007-09-01,"Residential Consumption","Maryland","MD",1640 +2007-09-01,"Residential Consumption","Georgia","GA",3549 +2007-09-01,"Residential Consumption","New Jersey","NJ",5487 +2007-09-01,"Residential Consumption","Kansas","KS",1214 +2007-09-01,"Residential Consumption","Delaware","DE",183 +2007-09-01,"Residential Consumption","Alabama","AL",883 +2007-09-01,"Residential Consumption","Wisconsin","WI",2868 +2007-09-01,"Residential Consumption","Virginia","VA",1639 +2007-09-01,"Residential Consumption","Nebraska","NE",758 +2007-09-01,"Residential Consumption","South Dakota","SD",257 +2007-09-01,"Residential Consumption","Florida","FL",713 +2007-09-01,"Residential Consumption","Washington","WA",2218 +2007-09-01,"Residential Consumption","Vermont","VT",71 +2007-09-01,"Residential Consumption","Tennessee","TN",1057 +2007-09-01,"Residential Consumption","Nevada","NV",1267 +2007-09-01,"Residential Consumption","Maine","ME",30 +2007-09-01,"Residential Consumption","Indiana","IN",2844 +2007-09-01,"Residential Consumption","Idaho","ID",580 +2007-09-01,"Residential Consumption","Oklahoma","OK",1265 +2007-09-01,"Residential Consumption","Rhode Island","RI",462 +2007-09-01,"Residential Consumption","Oregon","OR",1030 +2007-09-01,"Residential Consumption","Utah","UT",1584 +2007-09-01,"Residential Consumption","Pennsylvania","PA",4690 +2007-09-01,"Residential Consumption","New Mexico","NM",843 +2007-09-01,"Residential Consumption","New Hampshire","NH",174 +2007-09-01,"Residential Consumption","Alaska","AK",890 +2007-09-01,"Residential Consumption","U.S.","U.S.",116439 +2007-09-01,"Residential Consumption","North Carolina","NC",1053 +2007-09-01,"Residential Consumption","Iowa","IA",1357 +2007-09-01,"Residential Consumption","Connecticut","CT",1011 +2007-09-01,"Residential Consumption","North Dakota","ND",258 +2007-09-01,"Residential Consumption","Massachusetts","MA",2812 +2007-09-01,"Residential Consumption","Montana","MT",471 +2007-09-01,"Residential Consumption","Missouri","MO",2134 +2007-09-01,"Residential Consumption","Louisiana","LA",1236 +2007-09-01,"Residential Consumption","Kentucky","KY",944 +2007-09-01,"Residential Consumption","Colorado","CO",3375 +2007-09-01,"Residential Consumption","California","CA",21367 +2007-09-01,"Residential Consumption","Wyoming","WY",316 +2007-09-01,"Residential Consumption","West Virginia","WV",343 +2007-09-01,"Residential Consumption","New York","NY",9222 +2007-09-01,"Residential Consumption","Illinois","IL",8472 +2007-09-01,"Residential Consumption","Ohio","OH",5783 +2007-09-01,"Residential Consumption","Mississippi","MS",594 +2007-09-01,"Residential Consumption","Arkansas","AR",704 +2007-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2026 +2007-10-01,"Commercial Consumption","Wisconsin","WI",4273 +2007-10-01,"Commercial Consumption","U.S.","U.S.",157691 +2007-10-01,"Commercial Consumption","Vermont","VT",105 +2007-10-01,"Commercial Consumption","Nebraska","NE",1591 +2007-10-01,"Commercial Consumption","Wyoming","WY",512 +2007-10-01,"Commercial Consumption","West Virginia","WV",1239 +2007-10-01,"Commercial Consumption","Oklahoma","OK",1753 +2007-10-01,"Commercial Consumption","Pennsylvania","PA",6041 +2007-10-01,"Commercial Consumption","Rhode Island","RI",310 +2007-10-01,"Commercial Consumption","Arkansas","AR",1778 +2007-10-01,"Commercial Consumption","Arizona","AZ",2109 +2007-10-01,"Commercial Consumption","North Dakota","ND",596 +2007-10-01,"Commercial Consumption","Minnesota","MN",4559 +2007-10-01,"Commercial Consumption","New Mexico","NM",1062 +2007-10-01,"Commercial Consumption","Mississippi","MS",1362 +2007-10-01,"Commercial Consumption","Washington","WA",3361 +2007-10-01,"Commercial Consumption","North Carolina","NC",2352 +2007-10-01,"Commercial Consumption","Utah","UT",1546 +2007-10-01,"Commercial Consumption","Oregon","OR",1655 +2007-10-01,"Commercial Consumption","Massachusetts","MA",2549 +2007-10-01,"Commercial Consumption","New Hampshire","NH",374 +2007-10-01,"Commercial Consumption","Texas","TX",9949 +2007-10-01,"Commercial Consumption","Maryland","MD",3097 +2007-10-01,"Commercial Consumption","Ohio","OH",6103 +2007-10-01,"Commercial Consumption","New York","NY",14554 +2007-10-01,"Commercial Consumption","South Carolina","SC",1322 +2007-10-01,"Commercial Consumption","Colorado","CO",3518 +2007-10-01,"Commercial Consumption","South Dakota","SD",505 +2007-10-01,"Commercial Consumption","Montana","MT",703 +2007-10-01,"Commercial Consumption","Kansas","KS",1125 +2007-10-01,"Commercial Consumption","Connecticut","CT",1623 +2007-10-01,"Commercial Consumption","Tennessee","TN",2403 +2007-10-01,"Commercial Consumption","Nevada","NV",2007 +2007-10-01,"Commercial Consumption","Illinois","IL",9913 +2007-10-01,"Commercial Consumption","Missouri","MO",2224 +2007-10-01,"Commercial Consumption","Kentucky","KY",1640 +2007-10-01,"Commercial Consumption","Georgia","GA",2500 +2007-10-01,"Commercial Consumption","Idaho","ID",764 +2007-10-01,"Commercial Consumption","Hawaii","HI",154 +2007-10-01,"Commercial Consumption","Delaware","DE",420 +2007-10-01,"Commercial Consumption","Michigan","MI",6521 +2007-10-01,"Commercial Consumption","Indiana","IN",3935 +2007-10-01,"Commercial Consumption","New Jersey","NJ",9659 +2007-10-01,"Commercial Consumption","Maine","ME",316 +2007-10-01,"Commercial Consumption","Iowa","IA",2420 +2007-10-01,"Commercial Consumption","Alaska","AK",1391 +2007-10-01,"Commercial Consumption","California","CA",18657 +2007-10-01,"Commercial Consumption","Alabama","AL",1274 +2007-10-01,"Commercial Consumption","Virginia","VA",3620 +2007-10-01,"Commercial Consumption","Florida","FL",3659 +2007-10-01,"Commercial Consumption","Louisiana","LA",1545 +2007-10-01,"Commercial Consumption","District of Columbia","DC",1044 +2007-10-01,"Delivered to Consumers","Kansas","KS",15324 +2007-10-01,"Delivered to Consumers","Virginia","VA",21281 +2007-10-01,"Delivered to Consumers","Pennsylvania","PA",42936 +2007-10-01,"Delivered to Consumers","North Carolina","NC",14159 +2007-10-01,"Delivered to Consumers","California","CA",186625 +2007-10-01,"Delivered to Consumers","Oregon","OR",20671 +2007-10-01,"Delivered to Consumers","New Hampshire","NH",4295 +2007-10-01,"Delivered to Consumers","Florida","FL",89976 +2007-10-01,"Delivered to Consumers","Tennessee","TN",11488 +2007-10-01,"Delivered to Consumers","Michigan","MI",36831 +2007-10-01,"Delivered to Consumers","Massachusetts","MA",24748 +2007-10-01,"Delivered to Consumers","Maine","ME",3731 +2007-10-01,"Delivered to Consumers","Utah","UT",12425 +2007-10-01,"Delivered to Consumers","Illinois","IL",50053 +2007-10-01,"Delivered to Consumers","Rhode Island","RI",6185 +2007-10-01,"Delivered to Consumers","Kentucky","KY",13874 +2007-10-01,"Delivered to Consumers","Iowa","IA",18051 +2007-10-01,"Delivered to Consumers","Alabama","AL",29387 +2007-10-01,"Delivered to Consumers","Wisconsin","WI",22827 +2007-10-01,"Delivered to Consumers","Texas","TX",244064 +2007-10-01,"Delivered to Consumers","North Dakota","ND",3325 +2007-10-01,"Delivered to Consumers","U.S.","U.S.",1479110 +2007-10-01,"Delivered to Consumers","Vermont","VT",423 +2007-10-01,"Delivered to Consumers","Montana","MT",3962 +2007-10-01,"Delivered to Consumers","Connecticut","CT",10922 +2007-10-01,"Delivered to Consumers","Louisiana","LA",91661 +2007-10-01,"Delivered to Consumers","Minnesota","MN",21258 +2007-10-01,"Delivered to Consumers","District of Columbia","DC",1498 +2007-10-01,"Delivered to Consumers","New Mexico","NM",8851 +2007-10-01,"Delivered to Consumers","Indiana","IN",35013 +2007-10-01,"Delivered to Consumers","Delaware","DE",3346 +2007-10-01,"Delivered to Consumers","South Dakota","SD",3142 +2007-10-01,"Delivered to Consumers","Maryland","MD",10242 +2007-10-01,"Delivered to Consumers","Hawaii","HI",244 +2007-10-01,"Delivered to Consumers","Oklahoma","OK",42172 +2007-10-01,"Delivered to Consumers","Mississippi","MS",26528 +2007-10-01,"Delivered to Consumers","Colorado","CO",32786 +2007-10-01,"Delivered to Consumers","Nevada","NV",17304 +2007-10-01,"Delivered to Consumers","Georgia","GA",27420 +2007-10-01,"Delivered to Consumers","Ohio","OH",41730 +2007-10-01,"Delivered to Consumers","Nebraska","NE",7818 +2007-10-01,"Delivered to Consumers","Missouri","MO",12511 +2007-10-01,"Delivered to Consumers","South Carolina","SC",12270 +2007-10-01,"Delivered to Consumers","Wyoming","WY",5003 +2007-10-01,"Delivered to Consumers","West Virginia","WV",5023 +2007-10-01,"Delivered to Consumers","New York","NY",67841 +2007-10-01,"Delivered to Consumers","Alaska","AK",7885 +2007-10-01,"Delivered to Consumers","Idaho","ID",5843 +2007-10-01,"Delivered to Consumers","Arkansas","AR",13225 +2007-10-01,"Delivered to Consumers","New Jersey","NJ",34754 +2007-10-01,"Delivered to Consumers","Arizona","AZ",29544 +2007-10-01,"Delivered to Consumers","Washington","WA",24544 +2007-10-01,"Electric Power Consumption","Virginia","VA",8866 +2007-10-01,"Electric Power Consumption","Arkansas","AR",3448 +2007-10-01,"Electric Power Consumption","South Dakota","SD",262 +2007-10-01,"Electric Power Consumption","Kentucky","KY",1481 +2007-10-01,"Electric Power Consumption","Arizona","AZ",24194 +2007-10-01,"Electric Power Consumption","Idaho","ID",1716 +2007-10-01,"Electric Power Consumption","Iowa","IA",1875 +2007-10-01,"Electric Power Consumption","Florida","FL",80206 +2007-10-01,"Electric Power Consumption","Louisiana","LA",21402 +2007-10-01,"Electric Power Consumption","Colorado","CO",11823 +2007-10-01,"Electric Power Consumption","Texas","TX",121399 +2007-10-01,"Electric Power Consumption","Oklahoma","OK",25441 +2007-10-01,"Electric Power Consumption","Nevada","NV",12213 +2007-10-01,"Electric Power Consumption","North Carolina","NC",2759 +2007-10-01,"Electric Power Consumption","Ohio","OH",3785 +2007-10-01,"Electric Power Consumption","Maryland","MD",2268 +2007-10-01,"Electric Power Consumption","Indiana","IN",4033 +2007-10-01,"Electric Power Consumption","California","CA",75091 +2007-10-01,"Electric Power Consumption","Alaska","AK",3905 +2007-10-01,"Electric Power Consumption","Washington","WA",9084 +2007-10-01,"Electric Power Consumption","South Carolina","SC",3651 +2007-10-01,"Electric Power Consumption","Rhode Island","RI",4792 +2007-10-01,"Electric Power Consumption","Michigan","MI",10287 +2007-10-01,"Electric Power Consumption","Nebraska","NE",314 +2007-10-01,"Electric Power Consumption","Maine","ME",1656 +2007-10-01,"Electric Power Consumption","North Dakota","ND",0 +2007-10-01,"Electric Power Consumption","Connecticut","CT",6305 +2007-10-01,"Electric Power Consumption","New Mexico","NM",5487 +2007-10-01,"Electric Power Consumption","New York","NY",34763 +2007-10-01,"Electric Power Consumption","Oregon","OR",10764 +2007-10-01,"Electric Power Consumption","U.S.","U.S.",604092 +2007-10-01,"Electric Power Consumption","New Jersey","NJ",12425 +2007-10-01,"Electric Power Consumption","Minnesota","MN",2551 +2007-10-01,"Electric Power Consumption","West Virginia","WV",240 +2007-10-01,"Electric Power Consumption","Pennsylvania","PA",15466 +2007-10-01,"Electric Power Consumption","Wyoming","WY",146 +2007-10-01,"Electric Power Consumption","Vermont","VT",2 +2007-10-01,"Electric Power Consumption","Tennessee","TN",606 +2007-10-01,"Electric Power Consumption","Mississippi","MS",15313 +2007-10-01,"Electric Power Consumption","Utah","UT",5737 +2007-10-01,"Electric Power Consumption","Massachusetts","MA",16564 +2007-10-01,"Electric Power Consumption","Wisconsin","WI",4226 +2007-10-01,"Electric Power Consumption","Hawaii","HI",NA +2007-10-01,"Electric Power Consumption","Montana","MT",87 +2007-10-01,"Electric Power Consumption","Illinois","IL",5265 +2007-10-01,"Electric Power Consumption","Kansas","KS",1785 +2007-10-01,"Electric Power Consumption","Missouri","MO",3317 +2007-10-01,"Electric Power Consumption","New Hampshire","NH",3258 +2007-10-01,"Electric Power Consumption","Delaware","DE",1280 +2007-10-01,"Electric Power Consumption","Georgia","GA",8173 +2007-10-01,"Electric Power Consumption","Alabama","AL",14378 +2007-10-01,"Industrial Consumption","Arizona","AZ",1758 +2007-10-01,"Industrial Consumption","Oregon","OR",6038 +2007-10-01,"Industrial Consumption","Florida","FL",5317 +2007-10-01,"Industrial Consumption","Kentucky","KY",9027 +2007-10-01,"Industrial Consumption","Illinois","IL",19408 +2007-10-01,"Industrial Consumption","Rhode Island","RI",605 +2007-10-01,"Industrial Consumption","North Dakota","ND",2154 +2007-10-01,"Industrial Consumption","Washington","WA",7373 +2007-10-01,"Industrial Consumption","Maine","ME",1712 +2007-10-01,"Industrial Consumption","California","CA",64899 +2007-10-01,"Industrial Consumption","West Virginia","WV",2655 +2007-10-01,"Industrial Consumption","Minnesota","MN",8793 +2007-10-01,"Industrial Consumption","Iowa","IA",11623 +2007-10-01,"Industrial Consumption","Indiana","IN",22527 +2007-10-01,"Industrial Consumption","Missouri","MO",4974 +2007-10-01,"Industrial Consumption","South Dakota","SD",1868 +2007-10-01,"Industrial Consumption","Nevada","NV",1204 +2007-10-01,"Industrial Consumption","Wisconsin","WI",9340 +2007-10-01,"Industrial Consumption","Michigan","MI",9442 +2007-10-01,"Industrial Consumption","Georgia","GA",11843 +2007-10-01,"Industrial Consumption","Oklahoma","OK",13655 +2007-10-01,"Industrial Consumption","South Carolina","SC",6718 +2007-10-01,"Industrial Consumption","New Hampshire","NH",457 +2007-10-01,"Industrial Consumption","Idaho","ID",2184 +2007-10-01,"Industrial Consumption","North Carolina","NC",7692 +2007-10-01,"Industrial Consumption","Montana","MT",2125 +2007-10-01,"Industrial Consumption","Ohio","OH",21988 +2007-10-01,"Industrial Consumption","New Mexico","NM",1230 +2007-10-01,"Industrial Consumption","Kansas","KS",10911 +2007-10-01,"Industrial Consumption","U.S.","U.S.",540961 +2007-10-01,"Industrial Consumption","Virginia","VA",6250 +2007-10-01,"Industrial Consumption","Vermont","VT",223 +2007-10-01,"Industrial Consumption","Wyoming","WY",3683 +2007-10-01,"Industrial Consumption","Tennessee","TN",7175 +2007-10-01,"Industrial Consumption","Connecticut","CT",1791 +2007-10-01,"Industrial Consumption","Colorado","CO",10644 +2007-10-01,"Industrial Consumption","Utah","UT",2442 +2007-10-01,"Industrial Consumption","Pennsylvania","PA",14734 +2007-10-01,"Industrial Consumption","Mississippi","MS",8941 +2007-10-01,"Industrial Consumption","District of Columbia","DC",0 +2007-10-01,"Industrial Consumption","Alaska","AK",961 +2007-10-01,"Industrial Consumption","New York","NY",5850 +2007-10-01,"Industrial Consumption","Arkansas","AR",7200 +2007-10-01,"Industrial Consumption","Texas","TX",106187 +2007-10-01,"Industrial Consumption","New Jersey","NJ",4529 +2007-10-01,"Industrial Consumption","Maryland","MD",2178 +2007-10-01,"Industrial Consumption","Massachusetts","MA",2443 +2007-10-01,"Industrial Consumption","Hawaii","HI",50 +2007-10-01,"Industrial Consumption","Louisiana","LA",67182 +2007-10-01,"Industrial Consumption","Alabama","AL",12745 +2007-10-01,"Industrial Consumption","Nebraska","NE",4809 +2007-10-01,"Industrial Consumption","Delaware","DE",1425 +2007-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105256 +2007-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",43236 +2007-10-01,"Residential Consumption","Ohio","OH",9853 +2007-10-01,"Residential Consumption","Louisiana","LA",1533 +2007-10-01,"Residential Consumption","New Mexico","NM",1073 +2007-10-01,"Residential Consumption","Idaho","ID",1179 +2007-10-01,"Residential Consumption","Kansas","KS",1503 +2007-10-01,"Residential Consumption","Arizona","AZ",1483 +2007-10-01,"Residential Consumption","North Carolina","NC",1356 +2007-10-01,"Residential Consumption","Mississippi","MS",912 +2007-10-01,"Residential Consumption","Florida","FL",793 +2007-10-01,"Residential Consumption","New Hampshire","NH",205 +2007-10-01,"Residential Consumption","Rhode Island","RI",477 +2007-10-01,"Residential Consumption","Iowa","IA",2133 +2007-10-01,"Residential Consumption","Wisconsin","WI",4989 +2007-10-01,"Residential Consumption","Utah","UT",2700 +2007-10-01,"Residential Consumption","Maryland","MD",2698 +2007-10-01,"Residential Consumption","Kentucky","KY",1726 +2007-10-01,"Residential Consumption","Colorado","CO",6802 +2007-10-01,"Residential Consumption","Washington","WA",4726 +2007-10-01,"Residential Consumption","Vermont","VT",94 +2007-10-01,"Residential Consumption","Michigan","MI",10581 +2007-10-01,"Residential Consumption","Nevada","NV",1880 +2007-10-01,"Residential Consumption","North Dakota","ND",575 +2007-10-01,"Residential Consumption","California","CA",27978 +2007-10-01,"Residential Consumption","New York","NY",12674 +2007-10-01,"Residential Consumption","Texas","TX",6529 +2007-10-01,"Residential Consumption","Tennessee","TN",1304 +2007-10-01,"Residential Consumption","Georgia","GA",4904 +2007-10-01,"Residential Consumption","District of Columbia","DC",453 +2007-10-01,"Residential Consumption","Pennsylvania","PA",6695 +2007-10-01,"Residential Consumption","Maine","ME",46 +2007-10-01,"Residential Consumption","Indiana","IN",4519 +2007-10-01,"Residential Consumption","Massachusetts","MA",3192 +2007-10-01,"Residential Consumption","Arkansas","AR",798 +2007-10-01,"Residential Consumption","Delaware","DE",221 +2007-10-01,"Residential Consumption","Alabama","AL",990 +2007-10-01,"Residential Consumption","Illinois","IL",15467 +2007-10-01,"Residential Consumption","New Jersey","NJ",8141 +2007-10-01,"Residential Consumption","Wyoming","WY",662 +2007-10-01,"Residential Consumption","Hawaii","HI",39 +2007-10-01,"Residential Consumption","Virginia","VA",2545 +2007-10-01,"Residential Consumption","Nebraska","NE",1104 +2007-10-01,"Residential Consumption","Montana","MT",1046 +2007-10-01,"Residential Consumption","Oklahoma","OK",1322 +2007-10-01,"Residential Consumption","Missouri","MO",1996 +2007-10-01,"Residential Consumption","Alaska","AK",1628 +2007-10-01,"Residential Consumption","South Carolina","SC",579 +2007-10-01,"Residential Consumption","Oregon","OR",2214 +2007-10-01,"Residential Consumption","Connecticut","CT",1203 +2007-10-01,"Residential Consumption","South Dakota","SD",507 +2007-10-01,"Residential Consumption","Minnesota","MN",5355 +2007-10-01,"Residential Consumption","West Virginia","WV",889 +2007-10-01,"Residential Consumption","U.S.","U.S.",174272 +2007-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2094 +2007-11-01,"Commercial Consumption","North Carolina","NC",3902 +2007-11-01,"Commercial Consumption","Utah","UT",2791 +2007-11-01,"Commercial Consumption","New Mexico","NM",1598 +2007-11-01,"Commercial Consumption","Maine","ME",556 +2007-11-01,"Commercial Consumption","Texas","TX",10985 +2007-11-01,"Commercial Consumption","Maryland","MD",7004 +2007-11-01,"Commercial Consumption","Alabama","AL",1737 +2007-11-01,"Commercial Consumption","Arizona","AZ",2541 +2007-11-01,"Commercial Consumption","Michigan","MI",12762 +2007-11-01,"Commercial Consumption","Indiana","IN",6856 +2007-11-01,"Commercial Consumption","South Carolina","SC",1879 +2007-11-01,"Commercial Consumption","Rhode Island","RI",737 +2007-11-01,"Commercial Consumption","New York","NY",23969 +2007-11-01,"Commercial Consumption","Louisiana","LA",1757 +2007-11-01,"Commercial Consumption","Minnesota","MN",9072 +2007-11-01,"Commercial Consumption","Massachusetts","MA",4592 +2007-11-01,"Commercial Consumption","Kansas","KS",2093 +2007-11-01,"Commercial Consumption","Vermont","VT",186 +2007-11-01,"Commercial Consumption","Idaho","ID",1417 +2007-11-01,"Commercial Consumption","Connecticut","CT",2960 +2007-11-01,"Commercial Consumption","Mississippi","MS",1729 +2007-11-01,"Commercial Consumption","Illinois","IL",17612 +2007-11-01,"Commercial Consumption","Washington","WA",5328 +2007-11-01,"Commercial Consumption","Colorado","CO",5940 +2007-11-01,"Commercial Consumption","Oklahoma","OK",2942 +2007-11-01,"Commercial Consumption","Wisconsin","WI",9098 +2007-11-01,"Commercial Consumption","New Hampshire","NH",683 +2007-11-01,"Commercial Consumption","U.S.","U.S.",257247 +2007-11-01,"Commercial Consumption","Florida","FL",3996 +2007-11-01,"Commercial Consumption","California","CA",19706 +2007-11-01,"Commercial Consumption","North Dakota","ND",1128 +2007-11-01,"Commercial Consumption","Missouri","MO",4439 +2007-11-01,"Commercial Consumption","South Dakota","SD",1013 +2007-11-01,"Commercial Consumption","Montana","MT",1170 +2007-11-01,"Commercial Consumption","Alaska","AK",1893 +2007-11-01,"Commercial Consumption","Tennessee","TN",3656 +2007-11-01,"Commercial Consumption","Oregon","OR",2692 +2007-11-01,"Commercial Consumption","Wyoming","WY",875 +2007-11-01,"Commercial Consumption","Virginia","VA",6603 +2007-11-01,"Commercial Consumption","Pennsylvania","PA",13118 +2007-11-01,"Commercial Consumption","New Jersey","NJ",15571 +2007-11-01,"Commercial Consumption","Georgia","GA",5085 +2007-11-01,"Commercial Consumption","Ohio","OH",14458 +2007-11-01,"Commercial Consumption","Iowa","IA",4067 +2007-11-01,"Commercial Consumption","Hawaii","HI",162 +2007-11-01,"Commercial Consumption","Arkansas","AR",2545 +2007-11-01,"Commercial Consumption","Nebraska","NE",2187 +2007-11-01,"Commercial Consumption","Delaware","DE",816 +2007-11-01,"Commercial Consumption","Nevada","NV",2262 +2007-11-01,"Commercial Consumption","District of Columbia","DC",1853 +2007-11-01,"Commercial Consumption","West Virginia","WV",1996 +2007-11-01,"Commercial Consumption","Kentucky","KY",3231 +2007-11-01,"Delivered to Consumers","New Mexico","NM",9494 +2007-11-01,"Delivered to Consumers","West Virginia","WV",7592 +2007-11-01,"Delivered to Consumers","Rhode Island","RI",5880 +2007-11-01,"Delivered to Consumers","Ohio","OH",69858 +2007-11-01,"Delivered to Consumers","New Jersey","NJ",56211 +2007-11-01,"Delivered to Consumers","Maine","ME",4999 +2007-11-01,"Delivered to Consumers","U.S.","U.S.",1681149 +2007-11-01,"Delivered to Consumers","Montana","MT",5563 +2007-11-01,"Delivered to Consumers","Maryland","MD",17911 +2007-11-01,"Delivered to Consumers","Hawaii","HI",256 +2007-11-01,"Delivered to Consumers","Alaska","AK",8389 +2007-11-01,"Delivered to Consumers","Missouri","MO",20137 +2007-11-01,"Delivered to Consumers","Indiana","IN",48878 +2007-11-01,"Delivered to Consumers","Vermont","VT",696 +2007-11-01,"Delivered to Consumers","Alabama","AL",26242 +2007-11-01,"Delivered to Consumers","Nebraska","NE",10704 +2007-11-01,"Delivered to Consumers","Mississippi","MS",18853 +2007-11-01,"Delivered to Consumers","Colorado","CO",39145 +2007-11-01,"Delivered to Consumers","Georgia","GA",33851 +2007-11-01,"Delivered to Consumers","District of Columbia","DC",3275 +2007-11-01,"Delivered to Consumers","South Dakota","SD",4726 +2007-11-01,"Delivered to Consumers","Oklahoma","OK",36392 +2007-11-01,"Delivered to Consumers","Iowa","IA",24001 +2007-11-01,"Delivered to Consumers","Connecticut","CT",13602 +2007-11-01,"Delivered to Consumers","Virginia","VA",24275 +2007-11-01,"Delivered to Consumers","North Carolina","NC",17540 +2007-11-01,"Delivered to Consumers","South Carolina","SC",11398 +2007-11-01,"Delivered to Consumers","Louisiana","LA",83575 +2007-11-01,"Delivered to Consumers","Florida","FL",66512 +2007-11-01,"Delivered to Consumers","Illinois","IL",76194 +2007-11-01,"Delivered to Consumers","Pennsylvania","PA",57228 +2007-11-01,"Delivered to Consumers","Washington","WA",26791 +2007-11-01,"Delivered to Consumers","Utah","UT",15630 +2007-11-01,"Delivered to Consumers","Delaware","DE",3838 +2007-11-01,"Delivered to Consumers","Idaho","ID",7457 +2007-11-01,"Delivered to Consumers","Tennessee","TN",15733 +2007-11-01,"Delivered to Consumers","Kentucky","KY",18696 +2007-11-01,"Delivered to Consumers","California","CA",192161 +2007-11-01,"Delivered to Consumers","Oregon","OR",23789 +2007-11-01,"Delivered to Consumers","Nevada","NV",16144 +2007-11-01,"Delivered to Consumers","North Dakota","ND",4471 +2007-11-01,"Delivered to Consumers","Wyoming","WY",6095 +2007-11-01,"Delivered to Consumers","New York","NY",92753 +2007-11-01,"Delivered to Consumers","Michigan","MI",59171 +2007-11-01,"Delivered to Consumers","Massachusetts","MA",31610 +2007-11-01,"Delivered to Consumers","Texas","TX",221873 +2007-11-01,"Delivered to Consumers","Minnesota","MN",36293 +2007-11-01,"Delivered to Consumers","Kansas","KS",19705 +2007-11-01,"Delivered to Consumers","Arkansas","AR",15235 +2007-11-01,"Delivered to Consumers","Wisconsin","WI",36770 +2007-11-01,"Delivered to Consumers","Arizona","AZ",27001 +2007-11-01,"Delivered to Consumers","New Hampshire","NH",4527 +2007-11-01,"Electric Power Consumption","Virginia","VA",4298 +2007-11-01,"Electric Power Consumption","Pennsylvania","PA",7305 +2007-11-01,"Electric Power Consumption","Nevada","NV",10135 +2007-11-01,"Electric Power Consumption","Nebraska","NE",99 +2007-11-01,"Electric Power Consumption","Maryland","MD",663 +2007-11-01,"Electric Power Consumption","Wyoming","WY",137 +2007-11-01,"Electric Power Consumption","North Carolina","NC",398 +2007-11-01,"Electric Power Consumption","Kentucky","KY",579 +2007-11-01,"Electric Power Consumption","North Dakota","ND",0 +2007-11-01,"Electric Power Consumption","Montana","MT",73 +2007-11-01,"Electric Power Consumption","Arizona","AZ",20661 +2007-11-01,"Electric Power Consumption","Florida","FL",55758 +2007-11-01,"Electric Power Consumption","Idaho","ID",1529 +2007-11-01,"Electric Power Consumption","South Carolina","SC",434 +2007-11-01,"Electric Power Consumption","Utah","UT",5184 +2007-11-01,"Electric Power Consumption","Tennessee","TN",44 +2007-11-01,"Electric Power Consumption","Maine","ME",2229 +2007-11-01,"Electric Power Consumption","Rhode Island","RI",3504 +2007-11-01,"Electric Power Consumption","Illinois","IL",2199 +2007-11-01,"Electric Power Consumption","Massachusetts","MA",15161 +2007-11-01,"Electric Power Consumption","Ohio","OH",1357 +2007-11-01,"Electric Power Consumption","Georgia","GA",4187 +2007-11-01,"Electric Power Consumption","New Jersey","NJ",11368 +2007-11-01,"Electric Power Consumption","Texas","TX",94037 +2007-11-01,"Electric Power Consumption","Iowa","IA",1471 +2007-11-01,"Electric Power Consumption","Mississippi","MS",6355 +2007-11-01,"Electric Power Consumption","New Hampshire","NH",2828 +2007-11-01,"Electric Power Consumption","Arkansas","AR",3063 +2007-11-01,"Electric Power Consumption","Oregon","OR",10857 +2007-11-01,"Electric Power Consumption","Minnesota","MN",2912 +2007-11-01,"Electric Power Consumption","Wisconsin","WI",2499 +2007-11-01,"Electric Power Consumption","Vermont","VT",2 +2007-11-01,"Electric Power Consumption","South Dakota","SD",392 +2007-11-01,"Electric Power Consumption","California","CA",69766 +2007-11-01,"Electric Power Consumption","Alaska","AK",3778 +2007-11-01,"Electric Power Consumption","New Mexico","NM",4549 +2007-11-01,"Electric Power Consumption","Louisiana","LA",11595 +2007-11-01,"Electric Power Consumption","Michigan","MI",7034 +2007-11-01,"Electric Power Consumption","West Virginia","WV",222 +2007-11-01,"Electric Power Consumption","U.S.","U.S.",448180 +2007-11-01,"Electric Power Consumption","Missouri","MO",2658 +2007-11-01,"Electric Power Consumption","Hawaii","HI",NA +2007-11-01,"Electric Power Consumption","Indiana","IN",1625 +2007-11-01,"Electric Power Consumption","Delaware","DE",474 +2007-11-01,"Electric Power Consumption","Connecticut","CT",4892 +2007-11-01,"Electric Power Consumption","Washington","WA",6289 +2007-11-01,"Electric Power Consumption","Colorado","CO",10259 +2007-11-01,"Electric Power Consumption","New York","NY",26803 +2007-11-01,"Electric Power Consumption","Oklahoma","OK",16404 +2007-11-01,"Electric Power Consumption","Kansas","KS",664 +2007-11-01,"Electric Power Consumption","Alabama","AL",9449 +2007-11-01,"Industrial Consumption","Hawaii","HI",51 +2007-11-01,"Industrial Consumption","Missouri","MO",5847 +2007-11-01,"Industrial Consumption","Ohio","OH",25288 +2007-11-01,"Industrial Consumption","Arizona","AZ",1713 +2007-11-01,"Industrial Consumption","Mississippi","MS",9103 +2007-11-01,"Industrial Consumption","Maine","ME",2108 +2007-11-01,"Industrial Consumption","Arkansas","AR",7312 +2007-11-01,"Industrial Consumption","Wyoming","WY",3906 +2007-11-01,"Industrial Consumption","Michigan","MI",11796 +2007-11-01,"Industrial Consumption","Montana","MT",2459 +2007-11-01,"Industrial Consumption","Washington","WA",6833 +2007-11-01,"Industrial Consumption","South Dakota","SD",2099 +2007-11-01,"Industrial Consumption","New Mexico","NM",1371 +2007-11-01,"Industrial Consumption","Nebraska","NE",6067 +2007-11-01,"Industrial Consumption","Connecticut","CT",2074 +2007-11-01,"Industrial Consumption","Kentucky","KY",9766 +2007-11-01,"Industrial Consumption","Indiana","IN",24483 +2007-11-01,"Industrial Consumption","Louisiana","LA",67695 +2007-11-01,"Industrial Consumption","California","CA",65574 +2007-11-01,"Industrial Consumption","South Carolina","SC",6668 +2007-11-01,"Industrial Consumption","Tennessee","TN",8123 +2007-11-01,"Industrial Consumption","North Carolina","NC",8106 +2007-11-01,"Industrial Consumption","Alaska","AK",711 +2007-11-01,"Industrial Consumption","North Dakota","ND",2150 +2007-11-01,"Industrial Consumption","Colorado","CO",9292 +2007-11-01,"Industrial Consumption","U.S.","U.S.",568218 +2007-11-01,"Industrial Consumption","Pennsylvania","PA",16878 +2007-11-01,"Industrial Consumption","Nevada","NV",1110 +2007-11-01,"Industrial Consumption","Vermont","VT",286 +2007-11-01,"Industrial Consumption","Iowa","IA",12527 +2007-11-01,"Industrial Consumption","Florida","FL",5711 +2007-11-01,"Industrial Consumption","Delaware","DE",1750 +2007-11-01,"Industrial Consumption","Virginia","VA",4987 +2007-11-01,"Industrial Consumption","Rhode Island","RI",654 +2007-11-01,"Industrial Consumption","Georgia","GA",12180 +2007-11-01,"Industrial Consumption","Massachusetts","MA",3707 +2007-11-01,"Industrial Consumption","Oklahoma","OK",14013 +2007-11-01,"Industrial Consumption","New York","NY",6956 +2007-11-01,"Industrial Consumption","Wisconsin","WI",10902 +2007-11-01,"Industrial Consumption","New Hampshire","NH",500 +2007-11-01,"Industrial Consumption","Minnesota","MN",10708 +2007-11-01,"Industrial Consumption","Illinois","IL",21335 +2007-11-01,"Industrial Consumption","Maryland","MD",1369 +2007-11-01,"Industrial Consumption","Utah","UT",2791 +2007-11-01,"Industrial Consumption","Oregon","OR",6095 +2007-11-01,"Industrial Consumption","New Jersey","NJ",5651 +2007-11-01,"Industrial Consumption","Kansas","KS",12738 +2007-11-01,"Industrial Consumption","Alabama","AL",12814 +2007-11-01,"Industrial Consumption","Texas","TX",107095 +2007-11-01,"Industrial Consumption","West Virginia","WV",2806 +2007-11-01,"Industrial Consumption","Idaho","ID",2061 +2007-11-01,"Industrial Consumption","District of Columbia","DC",0 +2007-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103977 +2007-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",49140 +2007-11-01,"Residential Consumption","Nebraska","NE",2351 +2007-11-01,"Residential Consumption","Pennsylvania","PA",19927 +2007-11-01,"Residential Consumption","Colorado","CO",13654 +2007-11-01,"Residential Consumption","Iowa","IA",5936 +2007-11-01,"Residential Consumption","Maine","ME",106 +2007-11-01,"Residential Consumption","Florida","FL",1047 +2007-11-01,"Residential Consumption","Delaware","DE",798 +2007-11-01,"Residential Consumption","Wyoming","WY",1176 +2007-11-01,"Residential Consumption","Mississippi","MS",1666 +2007-11-01,"Residential Consumption","Hawaii","HI",43 +2007-11-01,"Residential Consumption","South Dakota","SD",1222 +2007-11-01,"Residential Consumption","Georgia","GA",12399 +2007-11-01,"Residential Consumption","District of Columbia","DC",1422 +2007-11-01,"Residential Consumption","Indiana","IN",15915 +2007-11-01,"Residential Consumption","Arkansas","AR",2315 +2007-11-01,"Residential Consumption","Montana","MT",1861 +2007-11-01,"Residential Consumption","Kansas","KS",4210 +2007-11-01,"Residential Consumption","New York","NY",35026 +2007-11-01,"Residential Consumption","Oregon","OR",4145 +2007-11-01,"Residential Consumption","Connecticut","CT",3676 +2007-11-01,"Residential Consumption","Massachusetts","MA",8150 +2007-11-01,"Residential Consumption","Oklahoma","OK",3034 +2007-11-01,"Residential Consumption","South Carolina","SC",2416 +2007-11-01,"Residential Consumption","Maryland","MD",8875 +2007-11-01,"Residential Consumption","Nevada","NV",2637 +2007-11-01,"Residential Consumption","New Hampshire","NH",517 +2007-11-01,"Residential Consumption","Alabama","AL",2242 +2007-11-01,"Residential Consumption","Rhode Island","RI",986 +2007-11-01,"Residential Consumption","Vermont","VT",223 +2007-11-01,"Residential Consumption","Washington","WA",8341 +2007-11-01,"Residential Consumption","California","CA",37115 +2007-11-01,"Residential Consumption","U.S.","U.S.",405477 +2007-11-01,"Residential Consumption","Illinois","IL",35048 +2007-11-01,"Residential Consumption","Ohio","OH",28755 +2007-11-01,"Residential Consumption","North Carolina","NC",5134 +2007-11-01,"Residential Consumption","Louisiana","LA",2527 +2007-11-01,"Residential Consumption","Virginia","VA",8386 +2007-11-01,"Residential Consumption","Utah","UT",4865 +2007-11-01,"Residential Consumption","Michigan","MI",27578 +2007-11-01,"Residential Consumption","New Mexico","NM",1975 +2007-11-01,"Residential Consumption","North Dakota","ND",1193 +2007-11-01,"Residential Consumption","New Jersey","NJ",23620 +2007-11-01,"Residential Consumption","Missouri","MO",7193 +2007-11-01,"Residential Consumption","Alaska","AK",2008 +2007-11-01,"Residential Consumption","West Virginia","WV",2568 +2007-11-01,"Residential Consumption","Texas","TX",9756 +2007-11-01,"Residential Consumption","Wisconsin","WI",14271 +2007-11-01,"Residential Consumption","Tennessee","TN",3910 +2007-11-01,"Residential Consumption","Minnesota","MN",13600 +2007-11-01,"Residential Consumption","Idaho","ID",2450 +2007-11-01,"Residential Consumption","Kentucky","KY",5120 +2007-11-01,"Residential Consumption","Arizona","AZ",2087 +2007-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2026 +2007-12-01,"Commercial Consumption","Washington","WA",7009 +2007-12-01,"Commercial Consumption","Minnesota","MN",14176 +2007-12-01,"Commercial Consumption","Colorado","CO",10501 +2007-12-01,"Commercial Consumption","Wisconsin","WI",13754 +2007-12-01,"Commercial Consumption","Kansas","KS",4757 +2007-12-01,"Commercial Consumption","Arizona","AZ",3666 +2007-12-01,"Commercial Consumption","South Carolina","SC",2166 +2007-12-01,"Commercial Consumption","Oregon","OR",3871 +2007-12-01,"Commercial Consumption","Texas","TX",17247 +2007-12-01,"Commercial Consumption","Georgia","GA",6273 +2007-12-01,"Commercial Consumption","Vermont","VT",365 +2007-12-01,"Commercial Consumption","Rhode Island","RI",1329 +2007-12-01,"Commercial Consumption","Hawaii","HI",154 +2007-12-01,"Commercial Consumption","Alaska","AK",2284 +2007-12-01,"Commercial Consumption","California","CA",27531 +2007-12-01,"Commercial Consumption","New York","NY",35570 +2007-12-01,"Commercial Consumption","Tennessee","TN",5860 +2007-12-01,"Commercial Consumption","District of Columbia","DC",2607 +2007-12-01,"Commercial Consumption","North Carolina","NC",5335 +2007-12-01,"Commercial Consumption","South Dakota","SD",1671 +2007-12-01,"Commercial Consumption","Mississippi","MS",2416 +2007-12-01,"Commercial Consumption","Indiana","IN",11499 +2007-12-01,"Commercial Consumption","Louisiana","LA",2395 +2007-12-01,"Commercial Consumption","Illinois","IL",28218 +2007-12-01,"Commercial Consumption","Wyoming","WY",1319 +2007-12-01,"Commercial Consumption","Utah","UT",4377 +2007-12-01,"Commercial Consumption","New Mexico","NM",2735 +2007-12-01,"Commercial Consumption","New Jersey","NJ",21979 +2007-12-01,"Commercial Consumption","Michigan","MI",23019 +2007-12-01,"Commercial Consumption","Virginia","VA",8736 +2007-12-01,"Commercial Consumption","Montana","MT",1924 +2007-12-01,"Commercial Consumption","Maine","ME",864 +2007-12-01,"Commercial Consumption","Florida","FL",4640 +2007-12-01,"Commercial Consumption","Nevada","NV",3328 +2007-12-01,"Commercial Consumption","North Dakota","ND",1704 +2007-12-01,"Commercial Consumption","Pennsylvania","PA",19784 +2007-12-01,"Commercial Consumption","Missouri","MO",8432 +2007-12-01,"Commercial Consumption","Kentucky","KY",4938 +2007-12-01,"Commercial Consumption","Ohio","OH",23421 +2007-12-01,"Commercial Consumption","Arkansas","AR",3735 +2007-12-01,"Commercial Consumption","Alabama","AL",2498 +2007-12-01,"Commercial Consumption","Nebraska","NE",4075 +2007-12-01,"Commercial Consumption","Delaware","DE",1185 +2007-12-01,"Commercial Consumption","West Virginia","WV",2838 +2007-12-01,"Commercial Consumption","U.S.","U.S.",394952 +2007-12-01,"Commercial Consumption","Idaho","ID",2123 +2007-12-01,"Commercial Consumption","Connecticut","CT",5011 +2007-12-01,"Commercial Consumption","Oklahoma","OK",5975 +2007-12-01,"Commercial Consumption","Massachusetts","MA",8793 +2007-12-01,"Commercial Consumption","New Hampshire","NH",974 +2007-12-01,"Commercial Consumption","Maryland","MD",9247 +2007-12-01,"Commercial Consumption","Iowa","IA",6642 +2007-12-01,"Delivered to Consumers","Hawaii","HI",244 +2007-12-01,"Delivered to Consumers","Oklahoma","OK",49540 +2007-12-01,"Delivered to Consumers","Oregon","OR",29061 +2007-12-01,"Delivered to Consumers","District of Columbia","DC",4843 +2007-12-01,"Delivered to Consumers","Illinois","IL",120782 +2007-12-01,"Delivered to Consumers","Alaska","AK",9093 +2007-12-01,"Delivered to Consumers","Idaho","ID",9819 +2007-12-01,"Delivered to Consumers","Tennessee","TN",22992 +2007-12-01,"Delivered to Consumers","Ohio","OH",102787 +2007-12-01,"Delivered to Consumers","Alabama","AL",31958 +2007-12-01,"Delivered to Consumers","Pennsylvania","PA",82068 +2007-12-01,"Delivered to Consumers","Washington","WA",32155 +2007-12-01,"Delivered to Consumers","Delaware","DE",5551 +2007-12-01,"Delivered to Consumers","Maryland","MD",25311 +2007-12-01,"Delivered to Consumers","Wisconsin","WI",53091 +2007-12-01,"Delivered to Consumers","Colorado","CO",57263 +2007-12-01,"Delivered to Consumers","Florida","FL",67153 +2007-12-01,"Delivered to Consumers","Utah","UT",20497 +2007-12-01,"Delivered to Consumers","U.S.","U.S.",2225994 +2007-12-01,"Delivered to Consumers","Indiana","IN",63510 +2007-12-01,"Delivered to Consumers","Wyoming","WY",7723 +2007-12-01,"Delivered to Consumers","New York","NY",133841 +2007-12-01,"Delivered to Consumers","Montana","MT",8365 +2007-12-01,"Delivered to Consumers","California","CA",236654 +2007-12-01,"Delivered to Consumers","Nevada","NV",22538 +2007-12-01,"Delivered to Consumers","Louisiana","LA",89348 +2007-12-01,"Delivered to Consumers","Georgia","GA",41413 +2007-12-01,"Delivered to Consumers","Minnesota","MN",52204 +2007-12-01,"Delivered to Consumers","New Mexico","NM",13570 +2007-12-01,"Delivered to Consumers","Kentucky","KY",24799 +2007-12-01,"Delivered to Consumers","Connecticut","CT",18620 +2007-12-01,"Delivered to Consumers","Missouri","MO",34624 +2007-12-01,"Delivered to Consumers","Massachusetts","MA",45696 +2007-12-01,"Delivered to Consumers","New Jersey","NJ",78367 +2007-12-01,"Delivered to Consumers","North Dakota","ND",5683 +2007-12-01,"Delivered to Consumers","Vermont","VT",1158 +2007-12-01,"Delivered to Consumers","Virginia","VA",34762 +2007-12-01,"Delivered to Consumers","Nebraska","NE",15974 +2007-12-01,"Delivered to Consumers","South Dakota","SD",6332 +2007-12-01,"Delivered to Consumers","Rhode Island","RI",9217 +2007-12-01,"Delivered to Consumers","Kansas","KS",29579 +2007-12-01,"Delivered to Consumers","North Carolina","NC",23411 +2007-12-01,"Delivered to Consumers","Maine","ME",6480 +2007-12-01,"Delivered to Consumers","New Hampshire","NH",5641 +2007-12-01,"Delivered to Consumers","West Virginia","WV",10272 +2007-12-01,"Delivered to Consumers","Michigan","MI",97411 +2007-12-01,"Delivered to Consumers","Iowa","IA",35021 +2007-12-01,"Delivered to Consumers","Arkansas","AR",18728 +2007-12-01,"Delivered to Consumers","Mississippi","MS",24351 +2007-12-01,"Delivered to Consumers","Texas","TX",257039 +2007-12-01,"Delivered to Consumers","South Carolina","SC",13530 +2007-12-01,"Delivered to Consumers","Arizona","AZ",33835 +2007-12-01,"Electric Power Consumption","Washington","WA",6170 +2007-12-01,"Electric Power Consumption","Idaho","ID",1612 +2007-12-01,"Electric Power Consumption","Colorado","CO",10612 +2007-12-01,"Electric Power Consumption","Minnesota","MN",3461 +2007-12-01,"Electric Power Consumption","West Virginia","WV",271 +2007-12-01,"Electric Power Consumption","Nevada","NV",12189 +2007-12-01,"Electric Power Consumption","U.S.","U.S.",497505 +2007-12-01,"Electric Power Consumption","Virginia","VA",6098 +2007-12-01,"Electric Power Consumption","Illinois","IL",2529 +2007-12-01,"Electric Power Consumption","Michigan","MI",9591 +2007-12-01,"Electric Power Consumption","Massachusetts","MA",14006 +2007-12-01,"Electric Power Consumption","Pennsylvania","PA",9323 +2007-12-01,"Electric Power Consumption","North Carolina","NC",1027 +2007-12-01,"Electric Power Consumption","Missouri","MO",2787 +2007-12-01,"Electric Power Consumption","Mississippi","MS",9497 +2007-12-01,"Electric Power Consumption","Georgia","GA",5903 +2007-12-01,"Electric Power Consumption","Florida","FL",55002 +2007-12-01,"Electric Power Consumption","Iowa","IA",2683 +2007-12-01,"Electric Power Consumption","Maryland","MD",875 +2007-12-01,"Electric Power Consumption","Connecticut","CT",5158 +2007-12-01,"Electric Power Consumption","New Jersey","NJ",13462 +2007-12-01,"Electric Power Consumption","Texas","TX",97596 +2007-12-01,"Electric Power Consumption","Rhode Island","RI",5093 +2007-12-01,"Electric Power Consumption","Oklahoma","OK",20301 +2007-12-01,"Electric Power Consumption","Oregon","OR",12357 +2007-12-01,"Electric Power Consumption","Wisconsin","WI",3759 +2007-12-01,"Electric Power Consumption","Ohio","OH",2118 +2007-12-01,"Electric Power Consumption","New Hampshire","NH",2680 +2007-12-01,"Electric Power Consumption","South Carolina","SC",994 +2007-12-01,"Electric Power Consumption","New York","NY",29485 +2007-12-01,"Electric Power Consumption","Utah","UT",4873 +2007-12-01,"Electric Power Consumption","Kansas","KS",1524 +2007-12-01,"Electric Power Consumption","South Dakota","SD",265 +2007-12-01,"Electric Power Consumption","Nebraska","NE",260 +2007-12-01,"Electric Power Consumption","Delaware","DE",975 +2007-12-01,"Electric Power Consumption","Alaska","AK",3383 +2007-12-01,"Electric Power Consumption","Louisiana","LA",13950 +2007-12-01,"Electric Power Consumption","Tennessee","TN",248 +2007-12-01,"Electric Power Consumption","Arizona","AZ",22894 +2007-12-01,"Electric Power Consumption","New Mexico","NM",4871 +2007-12-01,"Electric Power Consumption","Wyoming","WY",201 +2007-12-01,"Electric Power Consumption","Vermont","VT",3 +2007-12-01,"Electric Power Consumption","Kentucky","KY",758 +2007-12-01,"Electric Power Consumption","North Dakota","ND",0 +2007-12-01,"Electric Power Consumption","Arkansas","AR",2501 +2007-12-01,"Electric Power Consumption","Maine","ME",3268 +2007-12-01,"Electric Power Consumption","Hawaii","HI",NA +2007-12-01,"Electric Power Consumption","Montana","MT",79 +2007-12-01,"Electric Power Consumption","Indiana","IN",2944 +2007-12-01,"Electric Power Consumption","California","CA",76274 +2007-12-01,"Electric Power Consumption","Alabama","AL",11598 +2007-12-01,"Industrial Consumption","North Dakota","ND",2062 +2007-12-01,"Industrial Consumption","Maryland","MD",1771 +2007-12-01,"Industrial Consumption","Hawaii","HI",45 +2007-12-01,"Industrial Consumption","Texas","TX",116676 +2007-12-01,"Industrial Consumption","Tennessee","TN",8248 +2007-12-01,"Industrial Consumption","Florida","FL",6069 +2007-12-01,"Industrial Consumption","Kentucky","KY",10510 +2007-12-01,"Industrial Consumption","North Carolina","NC",8102 +2007-12-01,"Industrial Consumption","Kansas","KS",12631 +2007-12-01,"Industrial Consumption","New York","NY",8670 +2007-12-01,"Industrial Consumption","Alabama","AL",13336 +2007-12-01,"Industrial Consumption","Vermont","VT",336 +2007-12-01,"Industrial Consumption","Iowa","IA",13957 +2007-12-01,"Industrial Consumption","Utah","UT",2940 +2007-12-01,"Industrial Consumption","Oregon","OR",6361 +2007-12-01,"Industrial Consumption","Mississippi","MS",9125 +2007-12-01,"Industrial Consumption","District of Columbia","DC",0 +2007-12-01,"Industrial Consumption","Nevada","NV",1188 +2007-12-01,"Industrial Consumption","Maine","ME",2161 +2007-12-01,"Industrial Consumption","Wyoming","WY",4364 +2007-12-01,"Industrial Consumption","Michigan","MI",14482 +2007-12-01,"Industrial Consumption","Louisiana","LA",68266 +2007-12-01,"Industrial Consumption","Colorado","CO",12438 +2007-12-01,"Industrial Consumption","South Dakota","SD",2312 +2007-12-01,"Industrial Consumption","New Mexico","NM",1558 +2007-12-01,"Industrial Consumption","Virginia","VA",6780 +2007-12-01,"Industrial Consumption","New Hampshire","NH",865 +2007-12-01,"Industrial Consumption","Massachusetts","MA",6045 +2007-12-01,"Industrial Consumption","Oklahoma","OK",14463 +2007-12-01,"Industrial Consumption","Missouri","MO",6883 +2007-12-01,"Industrial Consumption","Washington","WA",6704 +2007-12-01,"Industrial Consumption","U.S.","U.S.",614573 +2007-12-01,"Industrial Consumption","South Carolina","SC",6546 +2007-12-01,"Industrial Consumption","Minnesota","MN",11800 +2007-12-01,"Industrial Consumption","Connecticut","CT",2347 +2007-12-01,"Industrial Consumption","Pennsylvania","PA",17879 +2007-12-01,"Industrial Consumption","California","CA",65655 +2007-12-01,"Industrial Consumption","Nebraska","NE",5998 +2007-12-01,"Industrial Consumption","West Virginia","WV",3357 +2007-12-01,"Industrial Consumption","Wisconsin","WI",13085 +2007-12-01,"Industrial Consumption","Idaho","ID",2346 +2007-12-01,"Industrial Consumption","Indiana","IN",25969 +2007-12-01,"Industrial Consumption","Illinois","IL",25034 +2007-12-01,"Industrial Consumption","Delaware","DE",1831 +2007-12-01,"Industrial Consumption","Alaska","AK",631 +2007-12-01,"Industrial Consumption","Montana","MT",3243 +2007-12-01,"Industrial Consumption","Ohio","OH",29640 +2007-12-01,"Industrial Consumption","Arizona","AZ",2141 +2007-12-01,"Industrial Consumption","Arkansas","AR",7726 +2007-12-01,"Industrial Consumption","New Jersey","NJ",6088 +2007-12-01,"Industrial Consumption","Rhode Island","RI",660 +2007-12-01,"Industrial Consumption","Georgia","GA",13253 +2007-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",107796 +2007-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",65072 +2007-12-01,"Residential Consumption","Hawaii","HI",45 +2007-12-01,"Residential Consumption","Connecticut","CT",6103 +2007-12-01,"Residential Consumption","Vermont","VT",454 +2007-12-01,"Residential Consumption","Virginia","VA",13149 +2007-12-01,"Residential Consumption","Nebraska","NE",5641 +2007-12-01,"Residential Consumption","New Mexico","NM",4406 +2007-12-01,"Residential Consumption","Maine","ME",186 +2007-12-01,"Residential Consumption","New Hampshire","NH",1122 +2007-12-01,"Residential Consumption","Delaware","DE",1559 +2007-12-01,"Residential Consumption","Rhode Island","RI",2136 +2007-12-01,"Residential Consumption","Indiana","IN",23097 +2007-12-01,"Residential Consumption","Florida","FL",1442 +2007-12-01,"Residential Consumption","North Dakota","ND",1917 +2007-12-01,"Residential Consumption","Colorado","CO",23712 +2007-12-01,"Residential Consumption","Kansas","KS",10667 +2007-12-01,"Residential Consumption","California","CA",67194 +2007-12-01,"Residential Consumption","Alabama","AL",4525 +2007-12-01,"Residential Consumption","South Carolina","SC",3824 +2007-12-01,"Residential Consumption","Oregon","OR",6472 +2007-12-01,"Residential Consumption","North Carolina","NC",8947 +2007-12-01,"Residential Consumption","Minnesota","MN",22768 +2007-12-01,"Residential Consumption","District of Columbia","DC",2236 +2007-12-01,"Residential Consumption","Montana","MT",3119 +2007-12-01,"Residential Consumption","Oklahoma","OK",8801 +2007-12-01,"Residential Consumption","Texas","TX",25520 +2007-12-01,"Residential Consumption","Iowa","IA",11739 +2007-12-01,"Residential Consumption","Wisconsin","WI",22493 +2007-12-01,"Residential Consumption","Tennessee","TN",8636 +2007-12-01,"Residential Consumption","Utah","UT",8308 +2007-12-01,"Residential Consumption","Georgia","GA",15984 +2007-12-01,"Residential Consumption","Massachusetts","MA",16852 +2007-12-01,"Residential Consumption","West Virginia","WV",3806 +2007-12-01,"Residential Consumption","South Dakota","SD",2085 +2007-12-01,"Residential Consumption","Nevada","NV",5834 +2007-12-01,"Residential Consumption","Idaho","ID",3738 +2007-12-01,"Residential Consumption","Kentucky","KY",8593 +2007-12-01,"Residential Consumption","U.S.","U.S.",716871 +2007-12-01,"Residential Consumption","Ohio","OH",47608 +2007-12-01,"Residential Consumption","Louisiana","LA",4736 +2007-12-01,"Residential Consumption","Washington","WA",12273 +2007-12-01,"Residential Consumption","Alaska","AK",2795 +2007-12-01,"Residential Consumption","Wyoming","WY",1839 +2007-12-01,"Residential Consumption","Illinois","IL",65002 +2007-12-01,"Residential Consumption","Mississippi","MS",3313 +2007-12-01,"Residential Consumption","New Jersey","NJ",36838 +2007-12-01,"Residential Consumption","Missouri","MO",16523 +2007-12-01,"Residential Consumption","New York","NY",60115 +2007-12-01,"Residential Consumption","Michigan","MI",50319 +2007-12-01,"Residential Consumption","Maryland","MD",13418 +2007-12-01,"Residential Consumption","Pennsylvania","PA",35083 +2007-12-01,"Residential Consumption","Arkansas","AR",4766 +2007-12-01,"Residential Consumption","Arizona","AZ",5135 +2007-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2094 +2008-01-01,"Commercial Consumption","Texas","TX",23502 +2008-01-01,"Commercial Consumption","Georgia","GA",9278 +2008-01-01,"Commercial Consumption","Iowa","IA",8760 +2008-01-01,"Commercial Consumption","Alaska","AK",2386 +2008-01-01,"Commercial Consumption","District of Columbia","DC",2552 +2008-01-01,"Commercial Consumption","Wyoming","WY",1730 +2008-01-01,"Commercial Consumption","Washington","WA",8032 +2008-01-01,"Commercial Consumption","Oregon","OR",4238 +2008-01-01,"Commercial Consumption","Virginia","VA",10448 +2008-01-01,"Commercial Consumption","Massachusetts","MA",11389 +2008-01-01,"Commercial Consumption","New Jersey","NJ",24390 +2008-01-01,"Commercial Consumption","Montana","MT",2262 +2008-01-01,"Commercial Consumption","Kentucky","KY",6892 +2008-01-01,"Commercial Consumption","Vermont","VT",367 +2008-01-01,"Commercial Consumption","Idaho","ID",2521 +2008-01-01,"Commercial Consumption","California","CA",28250 +2008-01-01,"Commercial Consumption","Alabama","AL",3641 +2008-01-01,"Commercial Consumption","Mississippi","MS",2990 +2008-01-01,"Commercial Consumption","Indiana","IN",15283 +2008-01-01,"Commercial Consumption","Colorado","CO",11265 +2008-01-01,"Commercial Consumption","New Hampshire","NH",1573 +2008-01-01,"Commercial Consumption","Nebraska","NE",5538 +2008-01-01,"Commercial Consumption","Delaware","DE",1348 +2008-01-01,"Commercial Consumption","Louisiana","LA",3059 +2008-01-01,"Commercial Consumption","South Carolina","SC",3198 +2008-01-01,"Commercial Consumption","North Carolina","NC",7577 +2008-01-01,"Commercial Consumption","Pennsylvania","PA",23344 +2008-01-01,"Commercial Consumption","U.S.","U.S.",477148 +2008-01-01,"Commercial Consumption","Tennessee","TN",8301 +2008-01-01,"Commercial Consumption","Minnesota","MN",17112 +2008-01-01,"Commercial Consumption","Utah","UT",6720 +2008-01-01,"Commercial Consumption","Florida","FL",5133 +2008-01-01,"Commercial Consumption","Ohio","OH",27867 +2008-01-01,"Commercial Consumption","Arkansas","AR",5087 +2008-01-01,"Commercial Consumption","Illinois","IL",34218 +2008-01-01,"Commercial Consumption","Wisconsin","WI",16520 +2008-01-01,"Commercial Consumption","Kansas","KS",6392 +2008-01-01,"Commercial Consumption","Connecticut","CT",5439 +2008-01-01,"Commercial Consumption","West Virginia","WV",3484 +2008-01-01,"Commercial Consumption","North Dakota","ND",1850 +2008-01-01,"Commercial Consumption","New Mexico","NM",4299 +2008-01-01,"Commercial Consumption","Oklahoma","OK",7996 +2008-01-01,"Commercial Consumption","Missouri","MO",11071 +2008-01-01,"Commercial Consumption","Maine","ME",841 +2008-01-01,"Commercial Consumption","Nevada","NV",4223 +2008-01-01,"Commercial Consumption","South Dakota","SD",1862 +2008-01-01,"Commercial Consumption","Maryland","MD",10108 +2008-01-01,"Commercial Consumption","Rhode Island","RI",1747 +2008-01-01,"Commercial Consumption","Hawaii","HI",158 +2008-01-01,"Commercial Consumption","New York","NY",39321 +2008-01-01,"Commercial Consumption","Arizona","AZ",4609 +2008-01-01,"Commercial Consumption","Michigan","MI",26978 +2008-01-01,"Delivered to Consumers","Utah","UT",27371 +2008-01-01,"Delivered to Consumers","Wyoming","WY",8446 +2008-01-01,"Delivered to Consumers","New York","NY",139090 +2008-01-01,"Delivered to Consumers","Kansas","KS",33272 +2008-01-01,"Delivered to Consumers","Kentucky","KY",31371 +2008-01-01,"Delivered to Consumers","New Mexico","NM",18306 +2008-01-01,"Delivered to Consumers","Vermont","VT",1202 +2008-01-01,"Delivered to Consumers","Michigan","MI",109742 +2008-01-01,"Delivered to Consumers","U.S.","U.S.",2554281 +2008-01-01,"Delivered to Consumers","Indiana","IN",77386 +2008-01-01,"Delivered to Consumers","Rhode Island","RI",10073 +2008-01-01,"Delivered to Consumers","Connecticut","CT",20542 +2008-01-01,"Delivered to Consumers","Arkansas","AR",26456 +2008-01-01,"Delivered to Consumers","Alabama","AL",42226 +2008-01-01,"Delivered to Consumers","Pennsylvania","PA",91240 +2008-01-01,"Delivered to Consumers","New Jersey","NJ",81016 +2008-01-01,"Delivered to Consumers","Maine","ME",6142 +2008-01-01,"Delivered to Consumers","Georgia","GA",57281 +2008-01-01,"Delivered to Consumers","Arizona","AZ",39542 +2008-01-01,"Delivered to Consumers","Delaware","DE",5197 +2008-01-01,"Delivered to Consumers","Oklahoma","OK",65719 +2008-01-01,"Delivered to Consumers","Ohio","OH",114924 +2008-01-01,"Delivered to Consumers","Wisconsin","WI",61668 +2008-01-01,"Delivered to Consumers","North Carolina","NC",31923 +2008-01-01,"Delivered to Consumers","Mississippi","MS",35330 +2008-01-01,"Delivered to Consumers","Oregon","OR",31447 +2008-01-01,"Delivered to Consumers","Florida","FL",65840 +2008-01-01,"Delivered to Consumers","West Virginia","WV",11840 +2008-01-01,"Delivered to Consumers","Montana","MT",9021 +2008-01-01,"Delivered to Consumers","Tennessee","TN",31833 +2008-01-01,"Delivered to Consumers","Colorado","CO",58610 +2008-01-01,"Delivered to Consumers","California","CA",252256 +2008-01-01,"Delivered to Consumers","Louisiana","LA",103499 +2008-01-01,"Delivered to Consumers","North Dakota","ND",5112 +2008-01-01,"Delivered to Consumers","Minnesota","MN",60070 +2008-01-01,"Delivered to Consumers","Illinois","IL",144934 +2008-01-01,"Delivered to Consumers","South Dakota","SD",7209 +2008-01-01,"Delivered to Consumers","Nebraska","NE",20241 +2008-01-01,"Delivered to Consumers","Massachusetts","MA",47408 +2008-01-01,"Delivered to Consumers","Nevada","NV",27453 +2008-01-01,"Delivered to Consumers","Washington","WA",37581 +2008-01-01,"Delivered to Consumers","Hawaii","HI",245 +2008-01-01,"Delivered to Consumers","Alaska","AK",9898 +2008-01-01,"Delivered to Consumers","Idaho","ID",11163 +2008-01-01,"Delivered to Consumers","Iowa","IA",42753 +2008-01-01,"Delivered to Consumers","Virginia","VA",37572 +2008-01-01,"Delivered to Consumers","Missouri","MO",44648 +2008-01-01,"Delivered to Consumers","South Carolina","SC",20708 +2008-01-01,"Delivered to Consumers","District of Columbia","DC",5010 +2008-01-01,"Delivered to Consumers","Maryland","MD",28394 +2008-01-01,"Delivered to Consumers","Texas","TX",294086 +2008-01-01,"Delivered to Consumers","New Hampshire","NH",7786 +2008-01-01,"Electric Power Consumption","Louisiana","LA",18270 +2008-01-01,"Electric Power Consumption","Arkansas","AR",5793 +2008-01-01,"Electric Power Consumption","Oklahoma","OK",23084 +2008-01-01,"Electric Power Consumption","Oregon","OR",12547 +2008-01-01,"Electric Power Consumption","Iowa","IA",2269 +2008-01-01,"Electric Power Consumption","Vermont","VT",3 +2008-01-01,"Electric Power Consumption","U.S.","U.S.",531460 +2008-01-01,"Electric Power Consumption","Alabama","AL",16783 +2008-01-01,"Electric Power Consumption","Virginia","VA",4936 +2008-01-01,"Electric Power Consumption","New Jersey","NJ",12747 +2008-01-01,"Electric Power Consumption","New York","NY",27409 +2008-01-01,"Electric Power Consumption","Utah","UT",4896 +2008-01-01,"Electric Power Consumption","Illinois","IL",3089 +2008-01-01,"Electric Power Consumption","Wisconsin","WI",4574 +2008-01-01,"Electric Power Consumption","Nevada","NV",13714 +2008-01-01,"Electric Power Consumption","Maine","ME",2795 +2008-01-01,"Electric Power Consumption","Mississippi","MS",18214 +2008-01-01,"Electric Power Consumption","New Hampshire","NH",4382 +2008-01-01,"Electric Power Consumption","Indiana","IN",3468 +2008-01-01,"Electric Power Consumption","Washington","WA",8062 +2008-01-01,"Electric Power Consumption","Colorado","CO",8705 +2008-01-01,"Electric Power Consumption","Rhode Island","RI",4888 +2008-01-01,"Electric Power Consumption","Michigan","MI",9826 +2008-01-01,"Electric Power Consumption","Kansas","KS",1684 +2008-01-01,"Electric Power Consumption","Wyoming","WY",108 +2008-01-01,"Electric Power Consumption","South Dakota","SD",115 +2008-01-01,"Electric Power Consumption","Nebraska","NE",532 +2008-01-01,"Electric Power Consumption","Missouri","MO",4318 +2008-01-01,"Electric Power Consumption","Kentucky","KY",1346 +2008-01-01,"Electric Power Consumption","Ohio","OH",1697 +2008-01-01,"Electric Power Consumption","North Dakota","ND",0 +2008-01-01,"Electric Power Consumption","Arizona","AZ",23966 +2008-01-01,"Electric Power Consumption","Alaska","AK",3943 +2008-01-01,"Electric Power Consumption","Idaho","ID",1661 +2008-01-01,"Electric Power Consumption","Minnesota","MN",1844 +2008-01-01,"Electric Power Consumption","Hawaii","HI",NA +2008-01-01,"Electric Power Consumption","Connecticut","CT",5378 +2008-01-01,"Electric Power Consumption","Montana","MT",65 +2008-01-01,"Electric Power Consumption","New Mexico","NM",5330 +2008-01-01,"Electric Power Consumption","Delaware","DE",452 +2008-01-01,"Electric Power Consumption","Georgia","GA",8644 +2008-01-01,"Electric Power Consumption","Florida","FL",51976 +2008-01-01,"Electric Power Consumption","Texas","TX",106781 +2008-01-01,"Electric Power Consumption","Massachusetts","MA",9557 +2008-01-01,"Electric Power Consumption","North Carolina","NC",2171 +2008-01-01,"Electric Power Consumption","California","CA",75456 +2008-01-01,"Electric Power Consumption","South Carolina","SC",4478 +2008-01-01,"Electric Power Consumption","West Virginia","WV",215 +2008-01-01,"Electric Power Consumption","Pennsylvania","PA",7454 +2008-01-01,"Electric Power Consumption","Tennessee","TN",936 +2008-01-01,"Electric Power Consumption","Maryland","MD",904 +2008-01-01,"Industrial Consumption","Utah","UT",3210 +2008-01-01,"Industrial Consumption","Pennsylvania","PA",20543 +2008-01-01,"Industrial Consumption","Wyoming","WY",4242 +2008-01-01,"Industrial Consumption","Delaware","DE",1548 +2008-01-01,"Industrial Consumption","Montana","MT",3250 +2008-01-01,"Industrial Consumption","Maryland","MD",2096 +2008-01-01,"Industrial Consumption","New Mexico","NM",1682 +2008-01-01,"Industrial Consumption","New York","NY",8280 +2008-01-01,"Industrial Consumption","Mississippi","MS",9228 +2008-01-01,"Industrial Consumption","California","CA",63780 +2008-01-01,"Industrial Consumption","South Carolina","SC",7282 +2008-01-01,"Industrial Consumption","Wisconsin","WI",15181 +2008-01-01,"Industrial Consumption","New Jersey","NJ",5778 +2008-01-01,"Industrial Consumption","Indiana","IN",28360 +2008-01-01,"Industrial Consumption","Oklahoma","OK",20716 +2008-01-01,"Industrial Consumption","Colorado","CO",14079 +2008-01-01,"Industrial Consumption","Nevada","NV",1255 +2008-01-01,"Industrial Consumption","Nebraska","NE",6503 +2008-01-01,"Industrial Consumption","Tennessee","TN",9753 +2008-01-01,"Industrial Consumption","Michigan","MI",16187 +2008-01-01,"Industrial Consumption","Hawaii","HI",40 +2008-01-01,"Industrial Consumption","Alabama","AL",14747 +2008-01-01,"Industrial Consumption","Idaho","ID",2529 +2008-01-01,"Industrial Consumption","District of Columbia","DC",0 +2008-01-01,"Industrial Consumption","North Dakota","ND",1229 +2008-01-01,"Industrial Consumption","Massachusetts","MA",5500 +2008-01-01,"Industrial Consumption","Louisiana","LA",74601 +2008-01-01,"Industrial Consumption","Florida","FL",6570 +2008-01-01,"Industrial Consumption","Kentucky","KY",11588 +2008-01-01,"Industrial Consumption","Washington","WA",8141 +2008-01-01,"Industrial Consumption","Ohio","OH",31536 +2008-01-01,"Industrial Consumption","Connecticut","CT",2578 +2008-01-01,"Industrial Consumption","Illinois","IL",27875 +2008-01-01,"Industrial Consumption","Rhode Island","RI",429 +2008-01-01,"Industrial Consumption","Missouri","MO",7657 +2008-01-01,"Industrial Consumption","South Dakota","SD",2772 +2008-01-01,"Industrial Consumption","U.S.","U.S.",659829 +2008-01-01,"Industrial Consumption","Arkansas","AR",8685 +2008-01-01,"Industrial Consumption","Virginia","VA",6419 +2008-01-01,"Industrial Consumption","New Hampshire","NH",593 +2008-01-01,"Industrial Consumption","Minnesota","MN",15273 +2008-01-01,"Industrial Consumption","Iowa","IA",17498 +2008-01-01,"Industrial Consumption","North Carolina","NC",9226 +2008-01-01,"Industrial Consumption","Alaska","AK",436 +2008-01-01,"Industrial Consumption","Kansas","KS",10655 +2008-01-01,"Industrial Consumption","Arizona","AZ",2223 +2008-01-01,"Industrial Consumption","Oregon","OR",6798 +2008-01-01,"Industrial Consumption","Maine","ME",2327 +2008-01-01,"Industrial Consumption","Texas","TX",121159 +2008-01-01,"Industrial Consumption","West Virginia","WV",3004 +2008-01-01,"Industrial Consumption","Vermont","VT",344 +2008-01-01,"Industrial Consumption","Georgia","GA",14443 +2008-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101995 +2008-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",77313 +2008-01-01,"Residential Consumption","South Dakota","SD",2460 +2008-01-01,"Residential Consumption","Georgia","GA",24915 +2008-01-01,"Residential Consumption","District of Columbia","DC",2458 +2008-01-01,"Residential Consumption","New Hampshire","NH",1238 +2008-01-01,"Residential Consumption","Montana","MT",3443 +2008-01-01,"Residential Consumption","Louisiana","LA",7570 +2008-01-01,"Residential Consumption","Connecticut","CT",7147 +2008-01-01,"Residential Consumption","Wisconsin","WI",25394 +2008-01-01,"Residential Consumption","U.S.","U.S.",883643 +2008-01-01,"Residential Consumption","Oregon","OR",7865 +2008-01-01,"Residential Consumption","Ohio","OH",53823 +2008-01-01,"Residential Consumption","Nebraska","NE",7668 +2008-01-01,"Residential Consumption","Michigan","MI",56751 +2008-01-01,"Residential Consumption","Minnesota","MN",25841 +2008-01-01,"Residential Consumption","North Dakota","ND",2034 +2008-01-01,"Residential Consumption","Kentucky","KY",11545 +2008-01-01,"Residential Consumption","Delaware","DE",1849 +2008-01-01,"Residential Consumption","California","CA",84770 +2008-01-01,"Residential Consumption","Alabama","AL",7055 +2008-01-01,"Residential Consumption","Texas","TX",42644 +2008-01-01,"Residential Consumption","Iowa","IA",14226 +2008-01-01,"Residential Consumption","Tennessee","TN",12843 +2008-01-01,"Residential Consumption","Nevada","NV",8262 +2008-01-01,"Residential Consumption","Indiana","IN",30275 +2008-01-01,"Residential Consumption","Oklahoma","OK",13923 +2008-01-01,"Residential Consumption","Rhode Island","RI",3009 +2008-01-01,"Residential Consumption","Maryland","MD",15286 +2008-01-01,"Residential Consumption","Pennsylvania","PA",39899 +2008-01-01,"Residential Consumption","Massachusetts","MA",20962 +2008-01-01,"Residential Consumption","Colorado","CO",24561 +2008-01-01,"Residential Consumption","Kansas","KS",14542 +2008-01-01,"Residential Consumption","Arizona","AZ",8743 +2008-01-01,"Residential Consumption","Wyoming","WY",2365 +2008-01-01,"Residential Consumption","Virginia","VA",15770 +2008-01-01,"Residential Consumption","Idaho","ID",4452 +2008-01-01,"Residential Consumption","Washington","WA",13347 +2008-01-01,"Residential Consumption","Missouri","MO",21602 +2008-01-01,"Residential Consumption","Alaska","AK",3134 +2008-01-01,"Residential Consumption","West Virginia","WV",5137 +2008-01-01,"Residential Consumption","New York","NY",64081 +2008-01-01,"Residential Consumption","South Carolina","SC",5750 +2008-01-01,"Residential Consumption","Hawaii","HI",47 +2008-01-01,"Residential Consumption","Vermont","VT",487 +2008-01-01,"Residential Consumption","Utah","UT",12546 +2008-01-01,"Residential Consumption","New Mexico","NM",6996 +2008-01-01,"Residential Consumption","Maine","ME",179 +2008-01-01,"Residential Consumption","Florida","FL",2161 +2008-01-01,"Residential Consumption","Arkansas","AR",6890 +2008-01-01,"Residential Consumption","Illinois","IL",79752 +2008-01-01,"Residential Consumption","North Carolina","NC",12948 +2008-01-01,"Residential Consumption","Mississippi","MS",4899 +2008-01-01,"Residential Consumption","New Jersey","NJ",38100 +2008-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2201 +2008-02-01,"Commercial Consumption","Washington","WA",7693 +2008-02-01,"Commercial Consumption","South Carolina","SC",2459 +2008-02-01,"Commercial Consumption","Hawaii","HI",155 +2008-02-01,"Commercial Consumption","Montana","MT",2208 +2008-02-01,"Commercial Consumption","Georgia","GA",6908 +2008-02-01,"Commercial Consumption","Rhode Island","RI",1844 +2008-02-01,"Commercial Consumption","Alaska","AK",2092 +2008-02-01,"Commercial Consumption","Arkansas","AR",5123 +2008-02-01,"Commercial Consumption","Nebraska","NE",5557 +2008-02-01,"Commercial Consumption","Indiana","IN",14876 +2008-02-01,"Commercial Consumption","West Virginia","WV",3672 +2008-02-01,"Commercial Consumption","North Dakota","ND",1729 +2008-02-01,"Commercial Consumption","North Carolina","NC",6186 +2008-02-01,"Commercial Consumption","U.S.","U.S.",458833 +2008-02-01,"Commercial Consumption","Ohio","OH",28366 +2008-02-01,"Commercial Consumption","New York","NY",39418 +2008-02-01,"Commercial Consumption","Delaware","DE",1273 +2008-02-01,"Commercial Consumption","Arizona","AZ",4176 +2008-02-01,"Commercial Consumption","Wyoming","WY",1490 +2008-02-01,"Commercial Consumption","Colorado","CO",9027 +2008-02-01,"Commercial Consumption","Oregon","OR",4581 +2008-02-01,"Commercial Consumption","Virginia","VA",8996 +2008-02-01,"Commercial Consumption","Wisconsin","WI",15377 +2008-02-01,"Commercial Consumption","Connecticut","CT",5408 +2008-02-01,"Commercial Consumption","Alabama","AL",3923 +2008-02-01,"Commercial Consumption","Minnesota","MN",15667 +2008-02-01,"Commercial Consumption","Missouri","MO",11307 +2008-02-01,"Commercial Consumption","Kansas","KS",5759 +2008-02-01,"Commercial Consumption","Vermont","VT",391 +2008-02-01,"Commercial Consumption","Iowa","IA",8498 +2008-02-01,"Commercial Consumption","Tennessee","TN",8332 +2008-02-01,"Commercial Consumption","New Mexico","NM",4389 +2008-02-01,"Commercial Consumption","New Jersey","NJ",22834 +2008-02-01,"Commercial Consumption","New Hampshire","NH",1471 +2008-02-01,"Commercial Consumption","Maine","ME",852 +2008-02-01,"Commercial Consumption","California","CA",29244 +2008-02-01,"Commercial Consumption","Louisiana","LA",2742 +2008-02-01,"Commercial Consumption","Utah","UT",6548 +2008-02-01,"Commercial Consumption","Oklahoma","OK",7313 +2008-02-01,"Commercial Consumption","Massachusetts","MA",11285 +2008-02-01,"Commercial Consumption","Texas","TX",19975 +2008-02-01,"Commercial Consumption","Maryland","MD",9802 +2008-02-01,"Commercial Consumption","Idaho","ID",2491 +2008-02-01,"Commercial Consumption","Nevada","NV",3718 +2008-02-01,"Commercial Consumption","Michigan","MI",28568 +2008-02-01,"Commercial Consumption","Illinois","IL",34484 +2008-02-01,"Commercial Consumption","Pennsylvania","PA",22866 +2008-02-01,"Commercial Consumption","South Dakota","SD",1734 +2008-02-01,"Commercial Consumption","Kentucky","KY",5900 +2008-02-01,"Commercial Consumption","Florida","FL",5017 +2008-02-01,"Commercial Consumption","Mississippi","MS",2733 +2008-02-01,"Commercial Consumption","District of Columbia","DC",2377 +2008-02-01,"Delivered to Consumers","Illinois","IL",149486 +2008-02-01,"Delivered to Consumers","Missouri","MO",43407 +2008-02-01,"Delivered to Consumers","Oregon","OR",29671 +2008-02-01,"Delivered to Consumers","Arizona","AZ",32180 +2008-02-01,"Delivered to Consumers","Minnesota","MN",55997 +2008-02-01,"Delivered to Consumers","Indiana","IN",73487 +2008-02-01,"Delivered to Consumers","Mississippi","MS",26827 +2008-02-01,"Delivered to Consumers","Florida","FL",62468 +2008-02-01,"Delivered to Consumers","New Mexico","NM",17022 +2008-02-01,"Delivered to Consumers","South Dakota","SD",6706 +2008-02-01,"Delivered to Consumers","Rhode Island","RI",9216 +2008-02-01,"Delivered to Consumers","Connecticut","CT",18768 +2008-02-01,"Delivered to Consumers","Pennsylvania","PA",89839 +2008-02-01,"Delivered to Consumers","North Carolina","NC",25613 +2008-02-01,"Delivered to Consumers","South Carolina","SC",14888 +2008-02-01,"Delivered to Consumers","North Dakota","ND",5733 +2008-02-01,"Delivered to Consumers","U.S.","U.S.",2335770 +2008-02-01,"Delivered to Consumers","Alaska","AK",8714 +2008-02-01,"Delivered to Consumers","Kansas","KS",28993 +2008-02-01,"Delivered to Consumers","Kentucky","KY",26407 +2008-02-01,"Delivered to Consumers","Massachusetts","MA",46100 +2008-02-01,"Delivered to Consumers","Colorado","CO",47388 +2008-02-01,"Delivered to Consumers","California","CA",219719 +2008-02-01,"Delivered to Consumers","Utah","UT",26146 +2008-02-01,"Delivered to Consumers","Alabama","AL",34760 +2008-02-01,"Delivered to Consumers","Wisconsin","WI",58488 +2008-02-01,"Delivered to Consumers","Nebraska","NE",20433 +2008-02-01,"Delivered to Consumers","Texas","TX",256910 +2008-02-01,"Delivered to Consumers","Nevada","NV",24386 +2008-02-01,"Delivered to Consumers","New Jersey","NJ",77952 +2008-02-01,"Delivered to Consumers","New Hampshire","NH",7653 +2008-02-01,"Delivered to Consumers","Delaware","DE",5132 +2008-02-01,"Delivered to Consumers","West Virginia","WV",11475 +2008-02-01,"Delivered to Consumers","Vermont","VT",1217 +2008-02-01,"Delivered to Consumers","Montana","MT",8332 +2008-02-01,"Delivered to Consumers","Hawaii","HI",237 +2008-02-01,"Delivered to Consumers","Idaho","ID",10467 +2008-02-01,"Delivered to Consumers","Michigan","MI",109072 +2008-02-01,"Delivered to Consumers","Arkansas","AR",24907 +2008-02-01,"Delivered to Consumers","New York","NY",137094 +2008-02-01,"Delivered to Consumers","Maryland","MD",26094 +2008-02-01,"Delivered to Consumers","Oklahoma","OK",53511 +2008-02-01,"Delivered to Consumers","Tennessee","TN",30713 +2008-02-01,"Delivered to Consumers","Ohio","OH",114958 +2008-02-01,"Delivered to Consumers","Iowa","IA",40871 +2008-02-01,"Delivered to Consumers","Maine","ME",5066 +2008-02-01,"Delivered to Consumers","Washington","WA",35133 +2008-02-01,"Delivered to Consumers","District of Columbia","DC",4524 +2008-02-01,"Delivered to Consumers","Wyoming","WY",7443 +2008-02-01,"Delivered to Consumers","Virginia","VA",32154 +2008-02-01,"Delivered to Consumers","Louisiana","LA",87178 +2008-02-01,"Delivered to Consumers","Georgia","GA",42777 +2008-02-01,"Electric Power Consumption","Wisconsin","WI",4926 +2008-02-01,"Electric Power Consumption","Nevada","NV",12751 +2008-02-01,"Electric Power Consumption","Hawaii","HI",NA +2008-02-01,"Electric Power Consumption","Alabama","AL",10014 +2008-02-01,"Electric Power Consumption","New Jersey","NJ",12463 +2008-02-01,"Electric Power Consumption","Louisiana","LA",12757 +2008-02-01,"Electric Power Consumption","Arkansas","AR",4741 +2008-02-01,"Electric Power Consumption","South Carolina","SC",1160 +2008-02-01,"Electric Power Consumption","Utah","UT",4678 +2008-02-01,"Electric Power Consumption","West Virginia","WV",215 +2008-02-01,"Electric Power Consumption","U.S.","U.S.",438868 +2008-02-01,"Electric Power Consumption","Ohio","OH",1683 +2008-02-01,"Electric Power Consumption","Montana","MT",38 +2008-02-01,"Electric Power Consumption","Maryland","MD",738 +2008-02-01,"Electric Power Consumption","Wyoming","WY",107 +2008-02-01,"Electric Power Consumption","Iowa","IA",1896 +2008-02-01,"Electric Power Consumption","Tennessee","TN",123 +2008-02-01,"Electric Power Consumption","South Dakota","SD",17 +2008-02-01,"Electric Power Consumption","Missouri","MO",2302 +2008-02-01,"Electric Power Consumption","New Hampshire","NH",4457 +2008-02-01,"Electric Power Consumption","Connecticut","CT",4108 +2008-02-01,"Electric Power Consumption","Florida","FL",49334 +2008-02-01,"Electric Power Consumption","California","CA",61884 +2008-02-01,"Electric Power Consumption","Colorado","CO",7200 +2008-02-01,"Electric Power Consumption","Pennsylvania","PA",7280 +2008-02-01,"Electric Power Consumption","Vermont","VT",1 +2008-02-01,"Electric Power Consumption","Delaware","DE",484 +2008-02-01,"Electric Power Consumption","Washington","WA",6681 +2008-02-01,"Electric Power Consumption","Idaho","ID",1364 +2008-02-01,"Electric Power Consumption","New York","NY",25293 +2008-02-01,"Electric Power Consumption","Oklahoma","OK",17723 +2008-02-01,"Electric Power Consumption","Oregon","OR",11694 +2008-02-01,"Electric Power Consumption","Nebraska","NE",171 +2008-02-01,"Electric Power Consumption","North Dakota","ND",0 +2008-02-01,"Electric Power Consumption","Indiana","IN",3422 +2008-02-01,"Electric Power Consumption","Alaska","AK",3523 +2008-02-01,"Electric Power Consumption","Illinois","IL",2368 +2008-02-01,"Electric Power Consumption","Massachusetts","MA",9632 +2008-02-01,"Electric Power Consumption","Mississippi","MS",11146 +2008-02-01,"Electric Power Consumption","Kentucky","KY",942 +2008-02-01,"Electric Power Consumption","Arizona","AZ",18591 +2008-02-01,"Electric Power Consumption","Georgia","GA",4587 +2008-02-01,"Electric Power Consumption","Virginia","VA",4271 +2008-02-01,"Electric Power Consumption","New Mexico","NM",4442 +2008-02-01,"Electric Power Consumption","Texas","TX",90713 +2008-02-01,"Electric Power Consumption","Minnesota","MN",1891 +2008-02-01,"Electric Power Consumption","Michigan","MI",8246 +2008-02-01,"Electric Power Consumption","Maine","ME",1818 +2008-02-01,"Electric Power Consumption","Rhode Island","RI",3652 +2008-02-01,"Electric Power Consumption","Kansas","KS",586 +2008-02-01,"Electric Power Consumption","North Carolina","NC",755 +2008-02-01,"Industrial Consumption","North Dakota","ND",2165 +2008-02-01,"Industrial Consumption","Hawaii","HI",36 +2008-02-01,"Industrial Consumption","Oklahoma","OK",15518 +2008-02-01,"Industrial Consumption","Oregon","OR",6194 +2008-02-01,"Industrial Consumption","Tennessee","TN",8972 +2008-02-01,"Industrial Consumption","New Jersey","NJ",5831 +2008-02-01,"Industrial Consumption","Minnesota","MN",14928 +2008-02-01,"Industrial Consumption","Connecticut","CT",2543 +2008-02-01,"Industrial Consumption","North Carolina","NC",8470 +2008-02-01,"Industrial Consumption","Alaska","AK",348 +2008-02-01,"Industrial Consumption","Washington","WA",7828 +2008-02-01,"Industrial Consumption","Maine","ME",2220 +2008-02-01,"Industrial Consumption","California","CA",59455 +2008-02-01,"Industrial Consumption","Georgia","GA",13838 +2008-02-01,"Industrial Consumption","Massachusetts","MA",5728 +2008-02-01,"Industrial Consumption","New York","NY",8837 +2008-02-01,"Industrial Consumption","Wyoming","WY",3846 +2008-02-01,"Industrial Consumption","Idaho","ID",2281 +2008-02-01,"Industrial Consumption","Louisiana","LA",65951 +2008-02-01,"Industrial Consumption","South Dakota","SD",2620 +2008-02-01,"Industrial Consumption","Ohio","OH",30828 +2008-02-01,"Industrial Consumption","Utah","UT",3242 +2008-02-01,"Industrial Consumption","Alabama","AL",13441 +2008-02-01,"Industrial Consumption","Texas","TX",113773 +2008-02-01,"Industrial Consumption","Nebraska","NE",6659 +2008-02-01,"Industrial Consumption","West Virginia","WV",2810 +2008-02-01,"Industrial Consumption","Vermont","VT",322 +2008-02-01,"Industrial Consumption","Mississippi","MS",9125 +2008-02-01,"Industrial Consumption","Wisconsin","WI",14288 +2008-02-01,"Industrial Consumption","Iowa","IA",16834 +2008-02-01,"Industrial Consumption","Michigan","MI",16228 +2008-02-01,"Industrial Consumption","Illinois","IL",27607 +2008-02-01,"Industrial Consumption","Missouri","MO",7291 +2008-02-01,"Industrial Consumption","New Mexico","NM",1666 +2008-02-01,"Industrial Consumption","Arkansas","AR",8084 +2008-02-01,"Industrial Consumption","South Carolina","SC",6897 +2008-02-01,"Industrial Consumption","Virginia","VA",5918 +2008-02-01,"Industrial Consumption","Florida","FL",6047 +2008-02-01,"Industrial Consumption","Rhode Island","RI",630 +2008-02-01,"Industrial Consumption","District of Columbia","DC",0 +2008-02-01,"Industrial Consumption","Montana","MT",2786 +2008-02-01,"Industrial Consumption","Maryland","MD",1832 +2008-02-01,"Industrial Consumption","Colorado","CO",11230 +2008-02-01,"Industrial Consumption","Kansas","KS",9587 +2008-02-01,"Industrial Consumption","Arizona","AZ",1898 +2008-02-01,"Industrial Consumption","U.S.","U.S.",617738 +2008-02-01,"Industrial Consumption","Nevada","NV",1121 +2008-02-01,"Industrial Consumption","New Hampshire","NH",571 +2008-02-01,"Industrial Consumption","Kentucky","KY",10108 +2008-02-01,"Industrial Consumption","Indiana","IN",27875 +2008-02-01,"Industrial Consumption","Delaware","DE",1592 +2008-02-01,"Industrial Consumption","Pennsylvania","PA",19840 +2008-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96255 +2008-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",70698 +2008-02-01,"Residential Consumption","Michigan","MI",56030 +2008-02-01,"Residential Consumption","Massachusetts","MA",19456 +2008-02-01,"Residential Consumption","Colorado","CO",19931 +2008-02-01,"Residential Consumption","Mississippi","MS",3823 +2008-02-01,"Residential Consumption","Iowa","IA",13643 +2008-02-01,"Residential Consumption","Vermont","VT",503 +2008-02-01,"Residential Consumption","Utah","UT",11678 +2008-02-01,"Residential Consumption","Nebraska","NE",8045 +2008-02-01,"Residential Consumption","Minnesota","MN",23511 +2008-02-01,"Residential Consumption","Oklahoma","OK",12957 +2008-02-01,"Residential Consumption","Alaska","AK",2751 +2008-02-01,"Residential Consumption","North Carolina","NC",10202 +2008-02-01,"Residential Consumption","Maryland","MD",13723 +2008-02-01,"Residential Consumption","Maine","ME",177 +2008-02-01,"Residential Consumption","Florida","FL",2070 +2008-02-01,"Residential Consumption","North Dakota","ND",1839 +2008-02-01,"Residential Consumption","Delaware","DE",1782 +2008-02-01,"Residential Consumption","Arizona","AZ",7515 +2008-02-01,"Residential Consumption","Wisconsin","WI",23898 +2008-02-01,"Residential Consumption","Virginia","VA",12968 +2008-02-01,"Residential Consumption","District of Columbia","DC",2147 +2008-02-01,"Residential Consumption","Indiana","IN",27314 +2008-02-01,"Residential Consumption","New Jersey","NJ",36824 +2008-02-01,"Residential Consumption","New Hampshire","NH",1155 +2008-02-01,"Residential Consumption","Washington","WA",12931 +2008-02-01,"Residential Consumption","Missouri","MO",22507 +2008-02-01,"Residential Consumption","Oregon","OR",7202 +2008-02-01,"Residential Consumption","Ohio","OH",54081 +2008-02-01,"Residential Consumption","Hawaii","HI",46 +2008-02-01,"Residential Consumption","New Mexico","NM",6524 +2008-02-01,"Residential Consumption","Montana","MT",3300 +2008-02-01,"Residential Consumption","California","CA",69136 +2008-02-01,"Residential Consumption","West Virginia","WV",4779 +2008-02-01,"Residential Consumption","Texas","TX",32448 +2008-02-01,"Residential Consumption","Rhode Island","RI",3091 +2008-02-01,"Residential Consumption","Louisiana","LA",5727 +2008-02-01,"Residential Consumption","Tennessee","TN",13285 +2008-02-01,"Residential Consumption","Nevada","NV",6795 +2008-02-01,"Residential Consumption","Georgia","GA",17444 +2008-02-01,"Residential Consumption","Kentucky","KY",9457 +2008-02-01,"Residential Consumption","Wyoming","WY",2000 +2008-02-01,"Residential Consumption","South Carolina","SC",4372 +2008-02-01,"Residential Consumption","Connecticut","CT",6709 +2008-02-01,"Residential Consumption","Pennsylvania","PA",39853 +2008-02-01,"Residential Consumption","Alabama","AL",7381 +2008-02-01,"Residential Consumption","U.S.","U.S.",818272 +2008-02-01,"Residential Consumption","New York","NY",63546 +2008-02-01,"Residential Consumption","Illinois","IL",85028 +2008-02-01,"Residential Consumption","South Dakota","SD",2336 +2008-02-01,"Residential Consumption","Idaho","ID",4331 +2008-02-01,"Residential Consumption","Arkansas","AR",6959 +2008-02-01,"Residential Consumption","Kansas","KS",13061 +2008-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",2059 +2008-03-01,"Commercial Consumption","South Carolina","SC",2163 +2008-03-01,"Commercial Consumption","New Jersey","NJ",18534 +2008-03-01,"Commercial Consumption","Arkansas","AR",3981 +2008-03-01,"Commercial Consumption","Nebraska","NE",4474 +2008-03-01,"Commercial Consumption","Mississippi","MS",2100 +2008-03-01,"Commercial Consumption","Indiana","IN",9611 +2008-03-01,"Commercial Consumption","Louisiana","LA",2526 +2008-03-01,"Commercial Consumption","District of Columbia","DC",1971 +2008-03-01,"Commercial Consumption","North Dakota","ND",1276 +2008-03-01,"Commercial Consumption","North Carolina","NC",4686 +2008-03-01,"Commercial Consumption","Utah","UT",4875 +2008-03-01,"Commercial Consumption","Maine","ME",813 +2008-03-01,"Commercial Consumption","Florida","FL",4895 +2008-03-01,"Commercial Consumption","Rhode Island","RI",1832 +2008-03-01,"Commercial Consumption","Hawaii","HI",147 +2008-03-01,"Commercial Consumption","California","CA",24547 +2008-03-01,"Commercial Consumption","West Virginia","WV",3030 +2008-03-01,"Commercial Consumption","Kentucky","KY",4644 +2008-03-01,"Commercial Consumption","Alaska","AK",1742 +2008-03-01,"Commercial Consumption","New York","NY",35076 +2008-03-01,"Commercial Consumption","Colorado","CO",7803 +2008-03-01,"Commercial Consumption","Oklahoma","OK",5657 +2008-03-01,"Commercial Consumption","Wisconsin","WI",12494 +2008-03-01,"Commercial Consumption","Iowa","IA",7113 +2008-03-01,"Commercial Consumption","Connecticut","CT",5010 +2008-03-01,"Commercial Consumption","Alabama","AL",3105 +2008-03-01,"Commercial Consumption","Oregon","OR",3564 +2008-03-01,"Commercial Consumption","Pennsylvania","PA",19719 +2008-03-01,"Commercial Consumption","Vermont","VT",361 +2008-03-01,"Commercial Consumption","Michigan","MI",25165 +2008-03-01,"Commercial Consumption","Wyoming","WY",1224 +2008-03-01,"Commercial Consumption","Minnesota","MN",13243 +2008-03-01,"Commercial Consumption","Massachusetts","MA",9915 +2008-03-01,"Commercial Consumption","U.S.","U.S.",380467 +2008-03-01,"Commercial Consumption","Kansas","KS",4639 +2008-03-01,"Commercial Consumption","Ohio","OH",23495 +2008-03-01,"Commercial Consumption","Tennessee","TN",7155 +2008-03-01,"Commercial Consumption","Nevada","NV",2942 +2008-03-01,"Commercial Consumption","Washington","WA",6091 +2008-03-01,"Commercial Consumption","New Mexico","NM",3172 +2008-03-01,"Commercial Consumption","Virginia","VA",6906 +2008-03-01,"Commercial Consumption","Missouri","MO",9178 +2008-03-01,"Commercial Consumption","New Hampshire","NH",1364 +2008-03-01,"Commercial Consumption","Montana","MT",1792 +2008-03-01,"Commercial Consumption","Texas","TX",16531 +2008-03-01,"Commercial Consumption","Idaho","ID",1838 +2008-03-01,"Commercial Consumption","Illinois","IL",28749 +2008-03-01,"Commercial Consumption","South Dakota","SD",1384 +2008-03-01,"Commercial Consumption","Maryland","MD",7971 +2008-03-01,"Commercial Consumption","Georgia","GA",5426 +2008-03-01,"Commercial Consumption","Delaware","DE",1052 +2008-03-01,"Commercial Consumption","Arizona","AZ",3489 +2008-03-01,"Delivered to Consumers","South Dakota","SD",5662 +2008-03-01,"Delivered to Consumers","Oklahoma","OK",52460 +2008-03-01,"Delivered to Consumers","Kentucky","KY",23120 +2008-03-01,"Delivered to Consumers","Pennsylvania","PA",82334 +2008-03-01,"Delivered to Consumers","Oregon","OR",26821 +2008-03-01,"Delivered to Consumers","Georgia","GA",34804 +2008-03-01,"Delivered to Consumers","Florida","FL",72413 +2008-03-01,"Delivered to Consumers","District of Columbia","DC",3522 +2008-03-01,"Delivered to Consumers","West Virginia","WV",9930 +2008-03-01,"Delivered to Consumers","New York","NY",130309 +2008-03-01,"Delivered to Consumers","Missouri","MO",36344 +2008-03-01,"Delivered to Consumers","Arizona","AZ",22438 +2008-03-01,"Delivered to Consumers","Washington","WA",29522 +2008-03-01,"Delivered to Consumers","Utah","UT",20495 +2008-03-01,"Delivered to Consumers","Indiana","IN",57916 +2008-03-01,"Delivered to Consumers","Maryland","MD",20551 +2008-03-01,"Delivered to Consumers","Connecticut","CT",16706 +2008-03-01,"Delivered to Consumers","South Carolina","SC",14608 +2008-03-01,"Delivered to Consumers","Nevada","NV",21473 +2008-03-01,"Delivered to Consumers","New Mexico","NM",14363 +2008-03-01,"Delivered to Consumers","Vermont","VT",1137 +2008-03-01,"Delivered to Consumers","Illinois","IL",125866 +2008-03-01,"Delivered to Consumers","Rhode Island","RI",8387 +2008-03-01,"Delivered to Consumers","Montana","MT",7192 +2008-03-01,"Delivered to Consumers","Michigan","MI",102939 +2008-03-01,"Delivered to Consumers","Kansas","KS",25172 +2008-03-01,"Delivered to Consumers","Mississippi","MS",24526 +2008-03-01,"Delivered to Consumers","California","CA",192366 +2008-03-01,"Delivered to Consumers","Delaware","DE",4474 +2008-03-01,"Delivered to Consumers","Wyoming","WY",6660 +2008-03-01,"Delivered to Consumers","Hawaii","HI",235 +2008-03-01,"Delivered to Consumers","Idaho","ID",8471 +2008-03-01,"Delivered to Consumers","Iowa","IA",33999 +2008-03-01,"Delivered to Consumers","Arkansas","AR",19377 +2008-03-01,"Delivered to Consumers","Colorado","CO",43199 +2008-03-01,"Delivered to Consumers","U.S.","U.S.",2109623 +2008-03-01,"Delivered to Consumers","Alaska","AK",8077 +2008-03-01,"Delivered to Consumers","Tennessee","TN",26169 +2008-03-01,"Delivered to Consumers","Ohio","OH",100087 +2008-03-01,"Delivered to Consumers","Wisconsin","WI",48757 +2008-03-01,"Delivered to Consumers","Virginia","VA",22857 +2008-03-01,"Delivered to Consumers","Maine","ME",5389 +2008-03-01,"Delivered to Consumers","New Hampshire","NH",7558 +2008-03-01,"Delivered to Consumers","North Dakota","ND",4681 +2008-03-01,"Delivered to Consumers","Minnesota","MN",49101 +2008-03-01,"Delivered to Consumers","Alabama","AL",30948 +2008-03-01,"Delivered to Consumers","Nebraska","NE",17488 +2008-03-01,"Delivered to Consumers","North Carolina","NC",20960 +2008-03-01,"Delivered to Consumers","Massachusetts","MA",45481 +2008-03-01,"Delivered to Consumers","Texas","TX",260946 +2008-03-01,"Delivered to Consumers","New Jersey","NJ",66150 +2008-03-01,"Delivered to Consumers","Louisiana","LA",92983 +2008-03-01,"Electric Power Consumption","Louisiana","LA",15834 +2008-03-01,"Electric Power Consumption","Arkansas","AR",2674 +2008-03-01,"Electric Power Consumption","Michigan","MI",9426 +2008-03-01,"Electric Power Consumption","Iowa","IA",1522 +2008-03-01,"Electric Power Consumption","Tennessee","TN",128 +2008-03-01,"Electric Power Consumption","Maine","ME",2022 +2008-03-01,"Electric Power Consumption","Montana","MT",26 +2008-03-01,"Electric Power Consumption","Delaware","DE",446 +2008-03-01,"Electric Power Consumption","Connecticut","CT",2868 +2008-03-01,"Electric Power Consumption","Arizona","AZ",12451 +2008-03-01,"Electric Power Consumption","Texas","TX",106719 +2008-03-01,"Electric Power Consumption","Rhode Island","RI",3459 +2008-03-01,"Electric Power Consumption","Mississippi","MS",10727 +2008-03-01,"Electric Power Consumption","Indiana","IN",2486 +2008-03-01,"Electric Power Consumption","Washington","WA",6463 +2008-03-01,"Electric Power Consumption","Colorado","CO",8511 +2008-03-01,"Electric Power Consumption","Oregon","OR",11408 +2008-03-01,"Electric Power Consumption","Kansas","KS",897 +2008-03-01,"Electric Power Consumption","California","CA",58876 +2008-03-01,"Electric Power Consumption","New York","NY",29131 +2008-03-01,"Electric Power Consumption","Massachusetts","MA",10703 +2008-03-01,"Electric Power Consumption","Nevada","NV",12949 +2008-03-01,"Electric Power Consumption","U.S.","U.S.",460763 +2008-03-01,"Electric Power Consumption","Missouri","MO",2878 +2008-03-01,"Electric Power Consumption","Idaho","ID",1344 +2008-03-01,"Electric Power Consumption","Minnesota","MN",2781 +2008-03-01,"Electric Power Consumption","West Virginia","WV",193 +2008-03-01,"Electric Power Consumption","Pennsylvania","PA",9175 +2008-03-01,"Electric Power Consumption","Kentucky","KY",655 +2008-03-01,"Electric Power Consumption","North Dakota","ND",0 +2008-03-01,"Electric Power Consumption","Illinois","IL",1711 +2008-03-01,"Electric Power Consumption","Wisconsin","WI",4595 +2008-03-01,"Electric Power Consumption","Wyoming","WY",95 +2008-03-01,"Electric Power Consumption","Nebraska","NE",428 +2008-03-01,"Electric Power Consumption","Georgia","GA",3348 +2008-03-01,"Electric Power Consumption","Virginia","VA",2044 +2008-03-01,"Electric Power Consumption","New Mexico","NM",4945 +2008-03-01,"Electric Power Consumption","Vermont","VT",0 +2008-03-01,"Electric Power Consumption","North Carolina","NC",1144 +2008-03-01,"Electric Power Consumption","Ohio","OH",1100 +2008-03-01,"Electric Power Consumption","Florida","FL",58976 +2008-03-01,"Electric Power Consumption","Alabama","AL",8904 +2008-03-01,"Electric Power Consumption","Alaska","AK",3707 +2008-03-01,"Electric Power Consumption","New Jersey","NJ",12993 +2008-03-01,"Electric Power Consumption","South Carolina","SC",2415 +2008-03-01,"Electric Power Consumption","Oklahoma","OK",17859 +2008-03-01,"Electric Power Consumption","Utah","UT",4168 +2008-03-01,"Electric Power Consumption","South Dakota","SD",12 +2008-03-01,"Electric Power Consumption","Hawaii","HI",NA +2008-03-01,"Electric Power Consumption","New Hampshire","NH",4634 +2008-03-01,"Electric Power Consumption","Maryland","MD",937 +2008-03-01,"Industrial Consumption","South Dakota","SD",2474 +2008-03-01,"Industrial Consumption","California","CA",57632 +2008-03-01,"Industrial Consumption","Texas","TX",115023 +2008-03-01,"Industrial Consumption","Nebraska","NE",6021 +2008-03-01,"Industrial Consumption","Iowa","IA",14671 +2008-03-01,"Industrial Consumption","Georgia","GA",13292 +2008-03-01,"Industrial Consumption","Montana","MT",2814 +2008-03-01,"Industrial Consumption","Maryland","MD",2063 +2008-03-01,"Industrial Consumption","Oklahoma","OK",18409 +2008-03-01,"Industrial Consumption","Ohio","OH",29783 +2008-03-01,"Industrial Consumption","Oregon","OR",6393 +2008-03-01,"Industrial Consumption","Nevada","NV",1166 +2008-03-01,"Industrial Consumption","Wyoming","WY",3716 +2008-03-01,"Industrial Consumption","New Hampshire","NH",517 +2008-03-01,"Industrial Consumption","Colorado","CO",10988 +2008-03-01,"Industrial Consumption","Kansas","KS",9201 +2008-03-01,"Industrial Consumption","Arkansas","AR",7595 +2008-03-01,"Industrial Consumption","Virginia","VA",4813 +2008-03-01,"Industrial Consumption","Tennessee","TN",8527 +2008-03-01,"Industrial Consumption","Pennsylvania","PA",19232 +2008-03-01,"Industrial Consumption","Minnesota","MN",14282 +2008-03-01,"Industrial Consumption","Idaho","ID",2110 +2008-03-01,"Industrial Consumption","Florida","FL",6789 +2008-03-01,"Industrial Consumption","Connecticut","CT",2447 +2008-03-01,"Industrial Consumption","District of Columbia","DC",0 +2008-03-01,"Industrial Consumption","Alaska","AK",471 +2008-03-01,"Industrial Consumption","North Dakota","ND",2024 +2008-03-01,"Industrial Consumption","Missouri","MO",6573 +2008-03-01,"Industrial Consumption","Maine","ME",2387 +2008-03-01,"Industrial Consumption","West Virginia","WV",2725 +2008-03-01,"Industrial Consumption","Wisconsin","WI",13086 +2008-03-01,"Industrial Consumption","Delaware","DE",1583 +2008-03-01,"Industrial Consumption","Massachusetts","MA",5571 +2008-03-01,"Industrial Consumption","New Mexico","NM",1621 +2008-03-01,"Industrial Consumption","New York","NY",8552 +2008-03-01,"Industrial Consumption","South Carolina","SC",6963 +2008-03-01,"Industrial Consumption","Vermont","VT",311 +2008-03-01,"Industrial Consumption","Louisiana","LA",70246 +2008-03-01,"Industrial Consumption","Arizona","AZ",1772 +2008-03-01,"Industrial Consumption","Utah","UT",2912 +2008-03-01,"Industrial Consumption","Mississippi","MS",8790 +2008-03-01,"Industrial Consumption","New Jersey","NJ",5384 +2008-03-01,"Industrial Consumption","Michigan","MI",16581 +2008-03-01,"Industrial Consumption","Kentucky","KY",10472 +2008-03-01,"Industrial Consumption","Rhode Island","RI",491 +2008-03-01,"Industrial Consumption","North Carolina","NC",8193 +2008-03-01,"Industrial Consumption","Hawaii","HI",45 +2008-03-01,"Industrial Consumption","Washington","WA",7003 +2008-03-01,"Industrial Consumption","U.S.","U.S.",609930 +2008-03-01,"Industrial Consumption","Alabama","AL",13616 +2008-03-01,"Industrial Consumption","Indiana","IN",25951 +2008-03-01,"Industrial Consumption","Illinois","IL",26652 +2008-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104226 +2008-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",63850 +2008-03-01,"Residential Consumption","Pennsylvania","PA",34208 +2008-03-01,"Residential Consumption","Nebraska","NE",6565 +2008-03-01,"Residential Consumption","Michigan","MI",51767 +2008-03-01,"Residential Consumption","Wyoming","WY",1625 +2008-03-01,"Residential Consumption","Illinois","IL",68754 +2008-03-01,"Residential Consumption","Rhode Island","RI",2606 +2008-03-01,"Residential Consumption","North Carolina","NC",6938 +2008-03-01,"Residential Consumption","South Dakota","SD",1791 +2008-03-01,"Residential Consumption","Georgia","GA",12739 +2008-03-01,"Residential Consumption","District of Columbia","DC",1551 +2008-03-01,"Residential Consumption","New Mexico","NM",4624 +2008-03-01,"Residential Consumption","Maine","ME",167 +2008-03-01,"Residential Consumption","Montana","MT",2560 +2008-03-01,"Residential Consumption","Colorado","CO",15898 +2008-03-01,"Residential Consumption","Missouri","MO",17714 +2008-03-01,"Residential Consumption","New York","NY",57550 +2008-03-01,"Residential Consumption","Mississippi","MS",2910 +2008-03-01,"Residential Consumption","Virginia","VA",9093 +2008-03-01,"Residential Consumption","Florida","FL",1753 +2008-03-01,"Residential Consumption","Massachusetts","MA",19292 +2008-03-01,"Residential Consumption","Arizona","AZ",4726 +2008-03-01,"Residential Consumption","Alaska","AK",2158 +2008-03-01,"Residential Consumption","U.S.","U.S.",656262 +2008-03-01,"Residential Consumption","Texas","TX",22673 +2008-03-01,"Residential Consumption","South Carolina","SC",3068 +2008-03-01,"Residential Consumption","Connecticut","CT",6381 +2008-03-01,"Residential Consumption","Vermont","VT",465 +2008-03-01,"Residential Consumption","Nevada","NV",4415 +2008-03-01,"Residential Consumption","California","CA",51311 +2008-03-01,"Residential Consumption","Wisconsin","WI",18582 +2008-03-01,"Residential Consumption","Maryland","MD",9580 +2008-03-01,"Residential Consumption","Idaho","ID",3179 +2008-03-01,"Residential Consumption","New Hampshire","NH",1044 +2008-03-01,"Residential Consumption","Washington","WA",9964 +2008-03-01,"Residential Consumption","Delaware","DE",1393 +2008-03-01,"Residential Consumption","West Virginia","WV",3983 +2008-03-01,"Residential Consumption","Ohio","OH",45708 +2008-03-01,"Residential Consumption","Iowa","IA",10693 +2008-03-01,"Residential Consumption","Tennessee","TN",10359 +2008-03-01,"Residential Consumption","Utah","UT",8540 +2008-03-01,"Residential Consumption","Minnesota","MN",18795 +2008-03-01,"Residential Consumption","North Dakota","ND",1382 +2008-03-01,"Residential Consumption","Arkansas","AR",5127 +2008-03-01,"Residential Consumption","Kentucky","KY",7350 +2008-03-01,"Residential Consumption","Oregon","OR",5457 +2008-03-01,"Residential Consumption","Louisiana","LA",4377 +2008-03-01,"Residential Consumption","Hawaii","HI",44 +2008-03-01,"Residential Consumption","Indiana","IN",19868 +2008-03-01,"Residential Consumption","New Jersey","NJ",29239 +2008-03-01,"Residential Consumption","Kansas","KS",10435 +2008-03-01,"Residential Consumption","Oklahoma","OK",10535 +2008-03-01,"Residential Consumption","Alabama","AL",5324 +2008-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2201 +2008-04-01,"Commercial Consumption","Colorado","CO",5257 +2008-04-01,"Commercial Consumption","New Mexico","NM",2338 +2008-04-01,"Commercial Consumption","Virginia","VA",4803 +2008-04-01,"Commercial Consumption","New Hampshire","NH",731 +2008-04-01,"Commercial Consumption","U.S.","U.S.",255171 +2008-04-01,"Commercial Consumption","New York","NY",24681 +2008-04-01,"Commercial Consumption","Delaware","DE",644 +2008-04-01,"Commercial Consumption","Arizona","AZ",2465 +2008-04-01,"Commercial Consumption","Nebraska","NE",3223 +2008-04-01,"Commercial Consumption","Mississippi","MS",1544 +2008-04-01,"Commercial Consumption","Indiana","IN",5057 +2008-04-01,"Commercial Consumption","Louisiana","LA",1941 +2008-04-01,"Commercial Consumption","West Virginia","WV",1767 +2008-04-01,"Commercial Consumption","Washington","WA",5639 +2008-04-01,"Commercial Consumption","Alabama","AL",2020 +2008-04-01,"Commercial Consumption","Michigan","MI",15998 +2008-04-01,"Commercial Consumption","Wyoming","WY",944 +2008-04-01,"Commercial Consumption","North Dakota","ND",800 +2008-04-01,"Commercial Consumption","Minnesota","MN",8654 +2008-04-01,"Commercial Consumption","Utah","UT",3715 +2008-04-01,"Commercial Consumption","Wisconsin","WI",7128 +2008-04-01,"Commercial Consumption","Kansas","KS",2731 +2008-04-01,"Commercial Consumption","Iowa","IA",4411 +2008-04-01,"Commercial Consumption","Hawaii","HI",150 +2008-04-01,"Commercial Consumption","Connecticut","CT",3356 +2008-04-01,"Commercial Consumption","Arkansas","AR",3086 +2008-04-01,"Commercial Consumption","Illinois","IL",19497 +2008-04-01,"Commercial Consumption","District of Columbia","DC",1398 +2008-04-01,"Commercial Consumption","North Carolina","NC",3120 +2008-04-01,"Commercial Consumption","Georgia","GA",3389 +2008-04-01,"Commercial Consumption","Rhode Island","RI",1100 +2008-04-01,"Commercial Consumption","Tennessee","TN",4274 +2008-04-01,"Commercial Consumption","Nevada","NV",2340 +2008-04-01,"Commercial Consumption","Missouri","MO",5527 +2008-04-01,"Commercial Consumption","Massachusetts","MA",6320 +2008-04-01,"Commercial Consumption","Maine","ME",503 +2008-04-01,"Commercial Consumption","Maryland","MD",5367 +2008-04-01,"Commercial Consumption","Alaska","AK",1380 +2008-04-01,"Commercial Consumption","California","CA",20707 +2008-04-01,"Commercial Consumption","Oklahoma","OK",3236 +2008-04-01,"Commercial Consumption","South Dakota","SD",912 +2008-04-01,"Commercial Consumption","Kentucky","KY",2509 +2008-04-01,"Commercial Consumption","Texas","TX",13258 +2008-04-01,"Commercial Consumption","Florida","FL",4613 +2008-04-01,"Commercial Consumption","Vermont","VT",272 +2008-04-01,"Commercial Consumption","Ohio","OH",12470 +2008-04-01,"Commercial Consumption","South Carolina","SC",1641 +2008-04-01,"Commercial Consumption","Oregon","OR",3269 +2008-04-01,"Commercial Consumption","Pennsylvania","PA",11399 +2008-04-01,"Commercial Consumption","New Jersey","NJ",10680 +2008-04-01,"Commercial Consumption","Montana","MT",1372 +2008-04-01,"Commercial Consumption","Idaho","ID",1533 +2008-04-01,"Delivered to Consumers","Delaware","DE",3574 +2008-04-01,"Delivered to Consumers","West Virginia","WV",6147 +2008-04-01,"Delivered to Consumers","Vermont","VT",865 +2008-04-01,"Delivered to Consumers","Rhode Island","RI",9366 +2008-04-01,"Delivered to Consumers","New York","NY",93146 +2008-04-01,"Delivered to Consumers","Virginia","VA",17596 +2008-04-01,"Delivered to Consumers","Texas","TX",241947 +2008-04-01,"Delivered to Consumers","Indiana","IN",38129 +2008-04-01,"Delivered to Consumers","Oklahoma","OK",45985 +2008-04-01,"Delivered to Consumers","Kansas","KS",19371 +2008-04-01,"Delivered to Consumers","Michigan","MI",66601 +2008-04-01,"Delivered to Consumers","North Carolina","NC",14500 +2008-04-01,"Delivered to Consumers","Colorado","CO",32792 +2008-04-01,"Delivered to Consumers","New Jersey","NJ",42927 +2008-04-01,"Delivered to Consumers","Maine","ME",5928 +2008-04-01,"Delivered to Consumers","Utah","UT",17995 +2008-04-01,"Delivered to Consumers","Idaho","ID",7774 +2008-04-01,"Delivered to Consumers","Ohio","OH",58774 +2008-04-01,"Delivered to Consumers","Nebraska","NE",13024 +2008-04-01,"Delivered to Consumers","Massachusetts","MA",35633 +2008-04-01,"Delivered to Consumers","Louisiana","LA",83987 +2008-04-01,"Delivered to Consumers","Arizona","AZ",27625 +2008-04-01,"Delivered to Consumers","U.S.","U.S.",1672724 +2008-04-01,"Delivered to Consumers","Kentucky","KY",15637 +2008-04-01,"Delivered to Consumers","South Carolina","SC",11815 +2008-04-01,"Delivered to Consumers","Nevada","NV",18925 +2008-04-01,"Delivered to Consumers","North Dakota","ND",3819 +2008-04-01,"Delivered to Consumers","New Mexico","NM",12102 +2008-04-01,"Delivered to Consumers","Maryland","MD",12340 +2008-04-01,"Delivered to Consumers","Hawaii","HI",238 +2008-04-01,"Delivered to Consumers","Connecticut","CT",13409 +2008-04-01,"Delivered to Consumers","Alabama","AL",23259 +2008-04-01,"Delivered to Consumers","Wisconsin","WI",29799 +2008-04-01,"Delivered to Consumers","Pennsylvania","PA",53943 +2008-04-01,"Delivered to Consumers","Missouri","MO",22875 +2008-04-01,"Delivered to Consumers","California","CA",182504 +2008-04-01,"Delivered to Consumers","Oregon","OR",25260 +2008-04-01,"Delivered to Consumers","Washington","WA",29561 +2008-04-01,"Delivered to Consumers","Florida","FL",77114 +2008-04-01,"Delivered to Consumers","South Dakota","SD",4850 +2008-04-01,"Delivered to Consumers","Montana","MT",5772 +2008-04-01,"Delivered to Consumers","Tennessee","TN",18227 +2008-04-01,"Delivered to Consumers","Arkansas","AR",15432 +2008-04-01,"Delivered to Consumers","Minnesota","MN",33255 +2008-04-01,"Delivered to Consumers","Wyoming","WY",5737 +2008-04-01,"Delivered to Consumers","Illinois","IL",87177 +2008-04-01,"Delivered to Consumers","Alaska","AK",6573 +2008-04-01,"Delivered to Consumers","Iowa","IA",23807 +2008-04-01,"Delivered to Consumers","Mississippi","MS",19599 +2008-04-01,"Delivered to Consumers","Georgia","GA",26663 +2008-04-01,"Delivered to Consumers","New Hampshire","NH",5076 +2008-04-01,"Delivered to Consumers","District of Columbia","DC",2139 +2008-04-01,"Electric Power Consumption","Louisiana","LA",13649 +2008-04-01,"Electric Power Consumption","South Carolina","SC",2280 +2008-04-01,"Electric Power Consumption","Rhode Island","RI",5405 +2008-04-01,"Electric Power Consumption","Massachusetts","MA",13339 +2008-04-01,"Electric Power Consumption","Kansas","KS",1644 +2008-04-01,"Electric Power Consumption","Vermont","VT",1 +2008-04-01,"Electric Power Consumption","Connecticut","CT",4311 +2008-04-01,"Electric Power Consumption","Arizona","AZ",20821 +2008-04-01,"Electric Power Consumption","Oregon","OR",10898 +2008-04-01,"Electric Power Consumption","U.S.","U.S.",469607 +2008-04-01,"Electric Power Consumption","South Dakota","SD",13 +2008-04-01,"Electric Power Consumption","Kentucky","KY",275 +2008-04-01,"Electric Power Consumption","North Dakota","ND",0 +2008-04-01,"Electric Power Consumption","Minnesota","MN",975 +2008-04-01,"Electric Power Consumption","Illinois","IL",1394 +2008-04-01,"Electric Power Consumption","Nebraska","NE",129 +2008-04-01,"Electric Power Consumption","Maryland","MD",587 +2008-04-01,"Electric Power Consumption","Indiana","IN",1870 +2008-04-01,"Electric Power Consumption","Delaware","DE",432 +2008-04-01,"Electric Power Consumption","Washington","WA",8527 +2008-04-01,"Electric Power Consumption","Utah","UT",4793 +2008-04-01,"Electric Power Consumption","West Virginia","WV",156 +2008-04-01,"Electric Power Consumption","Virginia","VA",2496 +2008-04-01,"Electric Power Consumption","Idaho","ID",1477 +2008-04-01,"Electric Power Consumption","Michigan","MI",4869 +2008-04-01,"Electric Power Consumption","Wisconsin","WI",2280 +2008-04-01,"Electric Power Consumption","Tennessee","TN",28 +2008-04-01,"Electric Power Consumption","Mississippi","MS",8158 +2008-04-01,"Electric Power Consumption","New Hampshire","NH",3340 +2008-04-01,"Electric Power Consumption","California","CA",68653 +2008-04-01,"Electric Power Consumption","New Jersey","NJ",14320 +2008-04-01,"Electric Power Consumption","Pennsylvania","PA",8174 +2008-04-01,"Electric Power Consumption","Wyoming","WY",93 +2008-04-01,"Electric Power Consumption","North Carolina","NC",181 +2008-04-01,"Electric Power Consumption","Maine","ME",3171 +2008-04-01,"Electric Power Consumption","Hawaii","HI",NA +2008-04-01,"Electric Power Consumption","Alabama","AL",6098 +2008-04-01,"Electric Power Consumption","Alaska","AK",3196 +2008-04-01,"Electric Power Consumption","New Mexico","NM",5299 +2008-04-01,"Electric Power Consumption","Colorado","CO",7666 +2008-04-01,"Electric Power Consumption","Texas","TX",105567 +2008-04-01,"Electric Power Consumption","Oklahoma","OK",19818 +2008-04-01,"Electric Power Consumption","Iowa","IA",556 +2008-04-01,"Electric Power Consumption","Ohio","OH",838 +2008-04-01,"Electric Power Consumption","Montana","MT",43 +2008-04-01,"Electric Power Consumption","Florida","FL",64230 +2008-04-01,"Electric Power Consumption","Arkansas","AR",2250 +2008-04-01,"Electric Power Consumption","New York","NY",27391 +2008-04-01,"Electric Power Consumption","Nevada","NV",12632 +2008-04-01,"Electric Power Consumption","Missouri","MO",1735 +2008-04-01,"Electric Power Consumption","Georgia","GA",3552 +2008-04-01,"Industrial Consumption","Maryland","MD",1597 +2008-04-01,"Industrial Consumption","Wisconsin","WI",10400 +2008-04-01,"Industrial Consumption","Florida","FL",6847 +2008-04-01,"Industrial Consumption","Michigan","MI",13053 +2008-04-01,"Industrial Consumption","Alaska","AK",387 +2008-04-01,"Industrial Consumption","Colorado","CO",9712 +2008-04-01,"Industrial Consumption","Utah","UT",2986 +2008-04-01,"Industrial Consumption","U.S.","U.S.",557357 +2008-04-01,"Industrial Consumption","California","CA",54723 +2008-04-01,"Industrial Consumption","Texas","TX",111726 +2008-04-01,"Industrial Consumption","Tennessee","TN",8469 +2008-04-01,"Industrial Consumption","Idaho","ID",2109 +2008-04-01,"Industrial Consumption","Kentucky","KY",9279 +2008-04-01,"Industrial Consumption","Illinois","IL",23019 +2008-04-01,"Industrial Consumption","North Carolina","NC",7492 +2008-04-01,"Industrial Consumption","Washington","WA",6365 +2008-04-01,"Industrial Consumption","Kansas","KS",8875 +2008-04-01,"Industrial Consumption","Arizona","AZ",1646 +2008-04-01,"Industrial Consumption","Alabama","AL",12280 +2008-04-01,"Industrial Consumption","West Virginia","WV",2457 +2008-04-01,"Industrial Consumption","New Jersey","NJ",4424 +2008-04-01,"Industrial Consumption","Georgia","GA",12764 +2008-04-01,"Industrial Consumption","District of Columbia","DC",0 +2008-04-01,"Industrial Consumption","Pennsylvania","PA",15818 +2008-04-01,"Industrial Consumption","Minnesota","MN",12688 +2008-04-01,"Industrial Consumption","Indiana","IN",21259 +2008-04-01,"Industrial Consumption","Massachusetts","MA",4654 +2008-04-01,"Industrial Consumption","Ohio","OH",24275 +2008-04-01,"Industrial Consumption","New Mexico","NM",1654 +2008-04-01,"Industrial Consumption","Montana","MT",2211 +2008-04-01,"Industrial Consumption","Oregon","OR",5998 +2008-04-01,"Industrial Consumption","Nevada","NV",1179 +2008-04-01,"Industrial Consumption","Arkansas","AR",7228 +2008-04-01,"Industrial Consumption","South Carolina","SC",6339 +2008-04-01,"Industrial Consumption","Virginia","VA",5393 +2008-04-01,"Industrial Consumption","Delaware","DE",1726 +2008-04-01,"Industrial Consumption","Oklahoma","OK",17660 +2008-04-01,"Industrial Consumption","New York","NY",6623 +2008-04-01,"Industrial Consumption","Mississippi","MS",8647 +2008-04-01,"Industrial Consumption","Nebraska","NE",5359 +2008-04-01,"Industrial Consumption","Vermont","VT",227 +2008-04-01,"Industrial Consumption","Wyoming","WY",3446 +2008-04-01,"Industrial Consumption","New Hampshire","NH",450 +2008-04-01,"Industrial Consumption","Rhode Island","RI",895 +2008-04-01,"Industrial Consumption","North Dakota","ND",2198 +2008-04-01,"Industrial Consumption","Hawaii","HI",45 +2008-04-01,"Industrial Consumption","Missouri","MO",5525 +2008-04-01,"Industrial Consumption","Louisiana","LA",65957 +2008-04-01,"Industrial Consumption","South Dakota","SD",2760 +2008-04-01,"Industrial Consumption","Maine","ME",2166 +2008-04-01,"Industrial Consumption","Iowa","IA",12846 +2008-04-01,"Industrial Consumption","Connecticut","CT",1524 +2008-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100538 +2008-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",50623 +2008-04-01,"Residential Consumption","South Carolina","SC",1555 +2008-04-01,"Residential Consumption","Connecticut","CT",4217 +2008-04-01,"Residential Consumption","Vermont","VT",365 +2008-04-01,"Residential Consumption","Tennessee","TN",5456 +2008-04-01,"Residential Consumption","Maryland","MD",4789 +2008-04-01,"Residential Consumption","Nevada","NV",2774 +2008-04-01,"Residential Consumption","Minnesota","MN",10938 +2008-04-01,"Residential Consumption","Montana","MT",2146 +2008-04-01,"Residential Consumption","Kentucky","KY",3575 +2008-04-01,"Residential Consumption","Delaware","DE",770 +2008-04-01,"Residential Consumption","California","CA",38422 +2008-04-01,"Residential Consumption","Texas","TX",11397 +2008-04-01,"Residential Consumption","Hawaii","HI",44 +2008-04-01,"Residential Consumption","Idaho","ID",2656 +2008-04-01,"Residential Consumption","Kansas","KS",6122 +2008-04-01,"Residential Consumption","Alabama","AL",2862 +2008-04-01,"Residential Consumption","Michigan","MI",32680 +2008-04-01,"Residential Consumption","Oklahoma","OK",5270 +2008-04-01,"Residential Consumption","Oregon","OR",5095 +2008-04-01,"Residential Consumption","Ohio","OH",21190 +2008-04-01,"Residential Consumption","Wisconsin","WI",9991 +2008-04-01,"Residential Consumption","Virginia","VA",4904 +2008-04-01,"Residential Consumption","Utah","UT",6501 +2008-04-01,"Residential Consumption","District of Columbia","DC",741 +2008-04-01,"Residential Consumption","Pennsylvania","PA",18553 +2008-04-01,"Residential Consumption","Maine","ME",88 +2008-04-01,"Residential Consumption","Florida","FL",1425 +2008-04-01,"Residential Consumption","Colorado","CO",10157 +2008-04-01,"Residential Consumption","Illinois","IL",43267 +2008-04-01,"Residential Consumption","Nebraska","NE",4314 +2008-04-01,"Residential Consumption","Arkansas","AR",2869 +2008-04-01,"Residential Consumption","Arizona","AZ",2694 +2008-04-01,"Residential Consumption","Alaska","AK",1611 +2008-04-01,"Residential Consumption","Wyoming","WY",1254 +2008-04-01,"Residential Consumption","U.S.","U.S.",388459 +2008-04-01,"Residential Consumption","South Dakota","SD",1166 +2008-04-01,"Residential Consumption","Georgia","GA",6959 +2008-04-01,"Residential Consumption","Massachusetts","MA",11319 +2008-04-01,"Residential Consumption","New York","NY",34451 +2008-04-01,"Residential Consumption","Rhode Island","RI",1965 +2008-04-01,"Residential Consumption","Iowa","IA",5993 +2008-04-01,"Residential Consumption","New Mexico","NM",2810 +2008-04-01,"Residential Consumption","North Dakota","ND",821 +2008-04-01,"Residential Consumption","New Hampshire","NH",556 +2008-04-01,"Residential Consumption","West Virginia","WV",1765 +2008-04-01,"Residential Consumption","North Carolina","NC",3707 +2008-04-01,"Residential Consumption","Mississippi","MS",1251 +2008-04-01,"Residential Consumption","Louisiana","LA",2440 +2008-04-01,"Residential Consumption","Indiana","IN",9943 +2008-04-01,"Residential Consumption","New Jersey","NJ",13502 +2008-04-01,"Residential Consumption","Washington","WA",9030 +2008-04-01,"Residential Consumption","Missouri","MO",10088 +2008-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2130 +2008-05-01,"Commercial Consumption","Washington","WA",4083 +2008-05-01,"Commercial Consumption","North Carolina","NC",2280 +2008-05-01,"Commercial Consumption","Colorado","CO",3488 +2008-05-01,"Commercial Consumption","Georgia","GA",2316 +2008-05-01,"Commercial Consumption","Florida","FL",4152 +2008-05-01,"Commercial Consumption","Alaska","AK",976 +2008-05-01,"Commercial Consumption","Michigan","MI",9151 +2008-05-01,"Commercial Consumption","New Hampshire","NH",471 +2008-05-01,"Commercial Consumption","Rhode Island","RI",562 +2008-05-01,"Commercial Consumption","Idaho","ID",946 +2008-05-01,"Commercial Consumption","California","CA",20871 +2008-05-01,"Commercial Consumption","Alabama","AL",1452 +2008-05-01,"Commercial Consumption","Wyoming","WY",630 +2008-05-01,"Commercial Consumption","Utah","UT",2671 +2008-05-01,"Commercial Consumption","Oregon","OR",2204 +2008-05-01,"Commercial Consumption","Pennsylvania","PA",7033 +2008-05-01,"Commercial Consumption","Missouri","MO",3172 +2008-05-01,"Commercial Consumption","Wisconsin","WI",4122 +2008-05-01,"Commercial Consumption","Montana","MT",949 +2008-05-01,"Commercial Consumption","Kentucky","KY",1497 +2008-05-01,"Commercial Consumption","Iowa","IA",2405 +2008-05-01,"Commercial Consumption","Nevada","NV",2034 +2008-05-01,"Commercial Consumption","Texas","TX",11356 +2008-05-01,"Commercial Consumption","Ohio","OH",7714 +2008-05-01,"Commercial Consumption","Delaware","DE",485 +2008-05-01,"Commercial Consumption","Illinois","IL",11478 +2008-05-01,"Commercial Consumption","Oklahoma","OK",1993 +2008-05-01,"Commercial Consumption","Virginia","VA",3595 +2008-05-01,"Commercial Consumption","New Jersey","NJ",9169 +2008-05-01,"Commercial Consumption","U.S.","U.S.",179744 +2008-05-01,"Commercial Consumption","Maryland","MD",4348 +2008-05-01,"Commercial Consumption","Arkansas","AR",2357 +2008-05-01,"Commercial Consumption","Arizona","AZ",2379 +2008-05-01,"Commercial Consumption","Indiana","IN",3085 +2008-05-01,"Commercial Consumption","West Virginia","WV",1416 +2008-05-01,"Commercial Consumption","Kansas","KS",1539 +2008-05-01,"Commercial Consumption","Hawaii","HI",142 +2008-05-01,"Commercial Consumption","Nebraska","NE",2158 +2008-05-01,"Commercial Consumption","Mississippi","MS",1083 +2008-05-01,"Commercial Consumption","Tennessee","TN",2759 +2008-05-01,"Commercial Consumption","Louisiana","LA",1421 +2008-05-01,"Commercial Consumption","South Carolina","SC",1359 +2008-05-01,"Commercial Consumption","New Mexico","NM",1600 +2008-05-01,"Commercial Consumption","Connecticut","CT",2250 +2008-05-01,"Commercial Consumption","District of Columbia","DC",1046 +2008-05-01,"Commercial Consumption","North Dakota","ND",466 +2008-05-01,"Commercial Consumption","Minnesota","MN",4544 +2008-05-01,"Commercial Consumption","Massachusetts","MA",4065 +2008-05-01,"Commercial Consumption","South Dakota","SD",583 +2008-05-01,"Commercial Consumption","Maine","ME",317 +2008-05-01,"Commercial Consumption","Vermont","VT",134 +2008-05-01,"Commercial Consumption","New York","NY",17434 +2008-05-01,"Delivered to Consumers","West Virginia","WV",4813 +2008-05-01,"Delivered to Consumers","Montana","MT",4442 +2008-05-01,"Delivered to Consumers","Tennessee","TN",12431 +2008-05-01,"Delivered to Consumers","Missouri","MO",14251 +2008-05-01,"Delivered to Consumers","Maine","ME",5679 +2008-05-01,"Delivered to Consumers","Utah","UT",13506 +2008-05-01,"Delivered to Consumers","Indiana","IN",31225 +2008-05-01,"Delivered to Consumers","Illinois","IL",53552 +2008-05-01,"Delivered to Consumers","New York","NY",72196 +2008-05-01,"Delivered to Consumers","Maryland","MD",9832 +2008-05-01,"Delivered to Consumers","Ohio","OH",42614 +2008-05-01,"Delivered to Consumers","Alabama","AL",19734 +2008-05-01,"Delivered to Consumers","Mississippi","MS",22117 +2008-05-01,"Delivered to Consumers","New Jersey","NJ",34010 +2008-05-01,"Delivered to Consumers","Washington","WA",17495 +2008-05-01,"Delivered to Consumers","New Hampshire","NH",4511 +2008-05-01,"Delivered to Consumers","North Dakota","ND",3047 +2008-05-01,"Delivered to Consumers","Minnesota","MN",23626 +2008-05-01,"Delivered to Consumers","U.S.","U.S.",1430242 +2008-05-01,"Delivered to Consumers","New Mexico","NM",10913 +2008-05-01,"Delivered to Consumers","Pennsylvania","PA",35710 +2008-05-01,"Delivered to Consumers","North Carolina","NC",11539 +2008-05-01,"Delivered to Consumers","Georgia","GA",22574 +2008-05-01,"Delivered to Consumers","District of Columbia","DC",1522 +2008-05-01,"Delivered to Consumers","Alaska","AK",5780 +2008-05-01,"Delivered to Consumers","Oklahoma","OK",41278 +2008-05-01,"Delivered to Consumers","Kansas","KS",15013 +2008-05-01,"Delivered to Consumers","Michigan","MI",40748 +2008-05-01,"Delivered to Consumers","Nebraska","NE",9556 +2008-05-01,"Delivered to Consumers","Colorado","CO",23933 +2008-05-01,"Delivered to Consumers","Oregon","OR",16022 +2008-05-01,"Delivered to Consumers","Delaware","DE",2885 +2008-05-01,"Delivered to Consumers","South Dakota","SD",3894 +2008-05-01,"Delivered to Consumers","Rhode Island","RI",6092 +2008-05-01,"Delivered to Consumers","Kentucky","KY",11942 +2008-05-01,"Delivered to Consumers","Iowa","IA",18581 +2008-05-01,"Delivered to Consumers","Arkansas","AR",15429 +2008-05-01,"Delivered to Consumers","Virginia","VA",12653 +2008-05-01,"Delivered to Consumers","California","CA",166188 +2008-05-01,"Delivered to Consumers","Texas","TX",266053 +2008-05-01,"Delivered to Consumers","South Carolina","SC",10386 +2008-05-01,"Delivered to Consumers","Nevada","NV",18584 +2008-05-01,"Delivered to Consumers","Arizona","AZ",24736 +2008-05-01,"Delivered to Consumers","Florida","FL",87640 +2008-05-01,"Delivered to Consumers","Wyoming","WY",5057 +2008-05-01,"Delivered to Consumers","Vermont","VT",512 +2008-05-01,"Delivered to Consumers","Hawaii","HI",225 +2008-05-01,"Delivered to Consumers","Wisconsin","WI",20131 +2008-05-01,"Delivered to Consumers","Massachusetts","MA",23986 +2008-05-01,"Delivered to Consumers","Louisiana","LA",93179 +2008-05-01,"Delivered to Consumers","Idaho","ID",4801 +2008-05-01,"Delivered to Consumers","Connecticut","CT",11416 +2008-05-01,"Electric Power Consumption","Arkansas","AR",4578 +2008-05-01,"Electric Power Consumption","Texas","TX",130779 +2008-05-01,"Electric Power Consumption","Kansas","KS",1637 +2008-05-01,"Electric Power Consumption","Pennsylvania","PA",3982 +2008-05-01,"Electric Power Consumption","Nevada","NV",13571 +2008-05-01,"Electric Power Consumption","Vermont","VT",3 +2008-05-01,"Electric Power Consumption","North Dakota","ND",0 +2008-05-01,"Electric Power Consumption","Maryland","MD",857 +2008-05-01,"Electric Power Consumption","Georgia","GA",3568 +2008-05-01,"Electric Power Consumption","New Mexico","NM",5991 +2008-05-01,"Electric Power Consumption","Louisiana","LA",22473 +2008-05-01,"Electric Power Consumption","Iowa","IA",426 +2008-05-01,"Electric Power Consumption","Tennessee","TN",68 +2008-05-01,"Electric Power Consumption","Missouri","MO",1212 +2008-05-01,"Electric Power Consumption","Montana","MT",46 +2008-05-01,"Electric Power Consumption","Idaho","ID",286 +2008-05-01,"Electric Power Consumption","Rhode Island","RI",3502 +2008-05-01,"Electric Power Consumption","West Virginia","WV",89 +2008-05-01,"Electric Power Consumption","Alabama","AL",5052 +2008-05-01,"Electric Power Consumption","Nebraska","NE",109 +2008-05-01,"Electric Power Consumption","North Carolina","NC",578 +2008-05-01,"Electric Power Consumption","Hawaii","HI",NA +2008-05-01,"Electric Power Consumption","Washington","WA",1457 +2008-05-01,"Electric Power Consumption","Colorado","CO",6786 +2008-05-01,"Electric Power Consumption","South Carolina","SC",2280 +2008-05-01,"Electric Power Consumption","New York","NY",28709 +2008-05-01,"Electric Power Consumption","Utah","UT",3524 +2008-05-01,"Electric Power Consumption","Oregon","OR",5223 +2008-05-01,"Electric Power Consumption","Minnesota","MN",2139 +2008-05-01,"Electric Power Consumption","Massachusetts","MA",10420 +2008-05-01,"Electric Power Consumption","South Dakota","SD",16 +2008-05-01,"Electric Power Consumption","Maine","ME",3215 +2008-05-01,"Electric Power Consumption","New Hampshire","NH",3342 +2008-05-01,"Electric Power Consumption","Florida","FL",76126 +2008-05-01,"Electric Power Consumption","Oklahoma","OK",19487 +2008-05-01,"Electric Power Consumption","Michigan","MI",4157 +2008-05-01,"Electric Power Consumption","Kentucky","KY",262 +2008-05-01,"Electric Power Consumption","Connecticut","CT",5322 +2008-05-01,"Electric Power Consumption","Arizona","AZ",18871 +2008-05-01,"Electric Power Consumption","Alaska","AK",3205 +2008-05-01,"Electric Power Consumption","U.S.","U.S.",475467 +2008-05-01,"Electric Power Consumption","Mississippi","MS",10652 +2008-05-01,"Electric Power Consumption","California","CA",54824 +2008-05-01,"Electric Power Consumption","Virginia","VA",1327 +2008-05-01,"Electric Power Consumption","New Jersey","NJ",11576 +2008-05-01,"Electric Power Consumption","Illinois","IL",1163 +2008-05-01,"Electric Power Consumption","Wisconsin","WI",1487 +2008-05-01,"Electric Power Consumption","Wyoming","WY",90 +2008-05-01,"Electric Power Consumption","Ohio","OH",149 +2008-05-01,"Electric Power Consumption","Indiana","IN",594 +2008-05-01,"Electric Power Consumption","Delaware","DE",259 +2008-05-01,"Industrial Consumption","Colorado","CO",7945 +2008-05-01,"Industrial Consumption","Utah","UT",2857 +2008-05-01,"Industrial Consumption","Pennsylvania","PA",14842 +2008-05-01,"Industrial Consumption","Texas","TX",115979 +2008-05-01,"Industrial Consumption","Florida","FL",6265 +2008-05-01,"Industrial Consumption","Connecticut","CT",1674 +2008-05-01,"Industrial Consumption","Michigan","MI",10763 +2008-05-01,"Industrial Consumption","Georgia","GA",12369 +2008-05-01,"Industrial Consumption","Maryland","MD",1695 +2008-05-01,"Industrial Consumption","Hawaii","HI",41 +2008-05-01,"Industrial Consumption","Ohio","OH",22651 +2008-05-01,"Industrial Consumption","Oregon","OR",5420 +2008-05-01,"Industrial Consumption","New York","NY",5732 +2008-05-01,"Industrial Consumption","Nevada","NV",1022 +2008-05-01,"Industrial Consumption","California","CA",57558 +2008-05-01,"Industrial Consumption","North Carolina","NC",7160 +2008-05-01,"Industrial Consumption","Oklahoma","OK",17114 +2008-05-01,"Industrial Consumption","Missouri","MO",4844 +2008-05-01,"Industrial Consumption","South Dakota","SD",2552 +2008-05-01,"Industrial Consumption","Maine","ME",2098 +2008-05-01,"Industrial Consumption","Arkansas","AR",6911 +2008-05-01,"Industrial Consumption","Wyoming","WY",3526 +2008-05-01,"Industrial Consumption","Illinois","IL",19690 +2008-05-01,"Industrial Consumption","Montana","MT",1876 +2008-05-01,"Industrial Consumption","Arizona","AZ",1602 +2008-05-01,"Industrial Consumption","U.S.","U.S.",542602 +2008-05-01,"Industrial Consumption","Iowa","IA",12441 +2008-05-01,"Industrial Consumption","Kentucky","KY",8505 +2008-05-01,"Industrial Consumption","Indiana","IN",22673 +2008-05-01,"Industrial Consumption","District of Columbia","DC",0 +2008-05-01,"Industrial Consumption","Alabama","AL",11666 +2008-05-01,"Industrial Consumption","New Hampshire","NH",389 +2008-05-01,"Industrial Consumption","Minnesota","MN",10910 +2008-05-01,"Industrial Consumption","Idaho","ID",2003 +2008-05-01,"Industrial Consumption","Mississippi","MS",9464 +2008-05-01,"Industrial Consumption","South Carolina","SC",6038 +2008-05-01,"Industrial Consumption","Nebraska","NE",4947 +2008-05-01,"Industrial Consumption","Wisconsin","WI",9039 +2008-05-01,"Industrial Consumption","Tennessee","TN",7224 +2008-05-01,"Industrial Consumption","Rhode Island","RI",705 +2008-05-01,"Industrial Consumption","North Dakota","ND",2106 +2008-05-01,"Industrial Consumption","Massachusetts","MA",2762 +2008-05-01,"Industrial Consumption","Washington","WA",6015 +2008-05-01,"Industrial Consumption","New Mexico","NM",1589 +2008-05-01,"Industrial Consumption","Kansas","KS",8646 +2008-05-01,"Industrial Consumption","Virginia","VA",5032 +2008-05-01,"Industrial Consumption","Vermont","VT",212 +2008-05-01,"Industrial Consumption","New Jersey","NJ",4191 +2008-05-01,"Industrial Consumption","Delaware","DE",1718 +2008-05-01,"Industrial Consumption","Louisiana","LA",67356 +2008-05-01,"Industrial Consumption","West Virginia","WV",2314 +2008-05-01,"Industrial Consumption","Alaska","AK",470 +2008-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103871 +2008-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",43282 +2008-05-01,"Residential Consumption","North Carolina","NC",1521 +2008-05-01,"Residential Consumption","Wisconsin","WI",5483 +2008-05-01,"Residential Consumption","District of Columbia","DC",476 +2008-05-01,"Residential Consumption","New Mexico","NM",1733 +2008-05-01,"Residential Consumption","Idaho","ID",1566 +2008-05-01,"Residential Consumption","U.S.","U.S.",230229 +2008-05-01,"Residential Consumption","New York","NY",20321 +2008-05-01,"Residential Consumption","Rhode Island","RI",1323 +2008-05-01,"Residential Consumption","Maryland","MD",2932 +2008-05-01,"Residential Consumption","New Jersey","NJ",9073 +2008-05-01,"Residential Consumption","New Hampshire","NH",310 +2008-05-01,"Residential Consumption","Kentucky","KY",1677 +2008-05-01,"Residential Consumption","Colorado","CO",5715 +2008-05-01,"Residential Consumption","Wyoming","WY",811 +2008-05-01,"Residential Consumption","West Virginia","WV",993 +2008-05-01,"Residential Consumption","Illinois","IL",21221 +2008-05-01,"Residential Consumption","Texas","TX",7940 +2008-05-01,"Residential Consumption","South Carolina","SC",709 +2008-05-01,"Residential Consumption","Nebraska","NE",2342 +2008-05-01,"Residential Consumption","Minnesota","MN",6032 +2008-05-01,"Residential Consumption","Maine","ME",49 +2008-05-01,"Residential Consumption","Missouri","MO",5024 +2008-05-01,"Residential Consumption","California","CA",32935 +2008-05-01,"Residential Consumption","Arizona","AZ",1884 +2008-05-01,"Residential Consumption","Alabama","AL",1565 +2008-05-01,"Residential Consumption","Ohio","OH",12099 +2008-05-01,"Residential Consumption","Louisiana","LA",1928 +2008-05-01,"Residential Consumption","South Dakota","SD",743 +2008-05-01,"Residential Consumption","Nevada","NV",1956 +2008-05-01,"Residential Consumption","Florida","FL",1097 +2008-05-01,"Residential Consumption","Alaska","AK",1128 +2008-05-01,"Residential Consumption","Oregon","OR",3176 +2008-05-01,"Residential Consumption","Mississippi","MS",919 +2008-05-01,"Residential Consumption","Hawaii","HI",42 +2008-05-01,"Residential Consumption","Connecticut","CT",2170 +2008-05-01,"Residential Consumption","Virginia","VA",2699 +2008-05-01,"Residential Consumption","Pennsylvania","PA",9853 +2008-05-01,"Residential Consumption","Kansas","KS",3191 +2008-05-01,"Residential Consumption","Vermont","VT",164 +2008-05-01,"Residential Consumption","Michigan","MI",16677 +2008-05-01,"Residential Consumption","Georgia","GA",4321 +2008-05-01,"Residential Consumption","Indiana","IN",4873 +2008-05-01,"Residential Consumption","Iowa","IA",3310 +2008-05-01,"Residential Consumption","Tennessee","TN",2380 +2008-05-01,"Residential Consumption","Utah","UT",4455 +2008-05-01,"Residential Consumption","North Dakota","ND",474 +2008-05-01,"Residential Consumption","Massachusetts","MA",6740 +2008-05-01,"Residential Consumption","Arkansas","AR",1583 +2008-05-01,"Residential Consumption","Montana","MT",1572 +2008-05-01,"Residential Consumption","Washington","WA",5940 +2008-05-01,"Residential Consumption","Oklahoma","OK",2684 +2008-05-01,"Residential Consumption","Delaware","DE",423 +2008-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2201 +2008-06-01,"Commercial Consumption","North Dakota","ND",320 +2008-06-01,"Commercial Consumption","South Dakota","SD",358 +2008-06-01,"Commercial Consumption","Maine","ME",216 +2008-06-01,"Commercial Consumption","Kentucky","KY",1172 +2008-06-01,"Commercial Consumption","Kansas","KS",1015 +2008-06-01,"Commercial Consumption","Rhode Island","RI",452 +2008-06-01,"Commercial Consumption","Alaska","AK",796 +2008-06-01,"Commercial Consumption","Connecticut","CT",1551 +2008-06-01,"Commercial Consumption","Delaware","DE",418 +2008-06-01,"Commercial Consumption","District of Columbia","DC",920 +2008-06-01,"Commercial Consumption","West Virginia","WV",1005 +2008-06-01,"Commercial Consumption","South Carolina","SC",1189 +2008-06-01,"Commercial Consumption","Colorado","CO",2168 +2008-06-01,"Commercial Consumption","Vermont","VT",98 +2008-06-01,"Commercial Consumption","Ohio","OH",4329 +2008-06-01,"Commercial Consumption","Idaho","ID",619 +2008-06-01,"Commercial Consumption","Arkansas","AR",1948 +2008-06-01,"Commercial Consumption","New York","NY",15435 +2008-06-01,"Commercial Consumption","Tennessee","TN",2242 +2008-06-01,"Commercial Consumption","Indiana","IN",2169 +2008-06-01,"Commercial Consumption","Washington","WA",3008 +2008-06-01,"Commercial Consumption","Pennsylvania","PA",4715 +2008-06-01,"Commercial Consumption","Missouri","MO",2166 +2008-06-01,"Commercial Consumption","Iowa","IA",1805 +2008-06-01,"Commercial Consumption","Wyoming","WY",391 +2008-06-01,"Commercial Consumption","Utah","UT",1648 +2008-06-01,"Commercial Consumption","New Jersey","NJ",6082 +2008-06-01,"Commercial Consumption","U.S.","U.S.",133735 +2008-06-01,"Commercial Consumption","Alabama","AL",1180 +2008-06-01,"Commercial Consumption","Nebraska","NE",1444 +2008-06-01,"Commercial Consumption","Louisiana","LA",1421 +2008-06-01,"Commercial Consumption","North Carolina","NC",1998 +2008-06-01,"Commercial Consumption","Minnesota","MN",3046 +2008-06-01,"Commercial Consumption","Oregon","OR",1532 +2008-06-01,"Commercial Consumption","Montana","MT",596 +2008-06-01,"Commercial Consumption","Hawaii","HI",149 +2008-06-01,"Commercial Consumption","Michigan","MI",5770 +2008-06-01,"Commercial Consumption","Virginia","VA",2802 +2008-06-01,"Commercial Consumption","Massachusetts","MA",2754 +2008-06-01,"Commercial Consumption","Florida","FL",3752 +2008-06-01,"Commercial Consumption","California","CA",15833 +2008-06-01,"Commercial Consumption","New Mexico","NM",1139 +2008-06-01,"Commercial Consumption","Wisconsin","WI",2835 +2008-06-01,"Commercial Consumption","Texas","TX",10670 +2008-06-01,"Commercial Consumption","Maryland","MD",3084 +2008-06-01,"Commercial Consumption","Mississippi","MS",1000 +2008-06-01,"Commercial Consumption","Arizona","AZ",2069 +2008-06-01,"Commercial Consumption","Illinois","IL",6909 +2008-06-01,"Commercial Consumption","Oklahoma","OK",1473 +2008-06-01,"Commercial Consumption","New Hampshire","NH",349 +2008-06-01,"Commercial Consumption","Georgia","GA",1916 +2008-06-01,"Commercial Consumption","Nevada","NV",1778 +2008-06-01,"Delivered to Consumers","Oregon","OR",9803 +2008-06-01,"Delivered to Consumers","Nevada","NV",18959 +2008-06-01,"Delivered to Consumers","New Jersey","NJ",35898 +2008-06-01,"Delivered to Consumers","Illinois","IL",41567 +2008-06-01,"Delivered to Consumers","Maryland","MD",9808 +2008-06-01,"Delivered to Consumers","Michigan","MI",34807 +2008-06-01,"Delivered to Consumers","Iowa","IA",16140 +2008-06-01,"Delivered to Consumers","Washington","WA",12939 +2008-06-01,"Delivered to Consumers","U.S.","U.S.",1459015 +2008-06-01,"Delivered to Consumers","South Dakota","SD",3529 +2008-06-01,"Delivered to Consumers","Ohio","OH",35244 +2008-06-01,"Delivered to Consumers","North Carolina","NC",17475 +2008-06-01,"Delivered to Consumers","Mississippi","MS",30835 +2008-06-01,"Delivered to Consumers","Maine","ME",4545 +2008-06-01,"Delivered to Consumers","Georgia","GA",30576 +2008-06-01,"Delivered to Consumers","West Virginia","WV",3890 +2008-06-01,"Delivered to Consumers","Kansas","KS",14589 +2008-06-01,"Delivered to Consumers","Massachusetts","MA",24767 +2008-06-01,"Delivered to Consumers","Arizona","AZ",33135 +2008-06-01,"Delivered to Consumers","North Dakota","ND",2477 +2008-06-01,"Delivered to Consumers","Indiana","IN",30240 +2008-06-01,"Delivered to Consumers","Vermont","VT",384 +2008-06-01,"Delivered to Consumers","New York","NY",77366 +2008-06-01,"Delivered to Consumers","Montana","MT",3389 +2008-06-01,"Delivered to Consumers","Hawaii","HI",233 +2008-06-01,"Delivered to Consumers","Wisconsin","WI",15599 +2008-06-01,"Delivered to Consumers","Colorado","CO",20557 +2008-06-01,"Delivered to Consumers","South Carolina","SC",15783 +2008-06-01,"Delivered to Consumers","Utah","UT",10286 +2008-06-01,"Delivered to Consumers","Wyoming","WY",4098 +2008-06-01,"Delivered to Consumers","Nebraska","NE",9390 +2008-06-01,"Delivered to Consumers","Texas","TX",289696 +2008-06-01,"Delivered to Consumers","District of Columbia","DC",1291 +2008-06-01,"Delivered to Consumers","Rhode Island","RI",6760 +2008-06-01,"Delivered to Consumers","Alaska","AK",5199 +2008-06-01,"Delivered to Consumers","Kentucky","KY",11764 +2008-06-01,"Delivered to Consumers","Connecticut","CT",9069 +2008-06-01,"Delivered to Consumers","Arkansas","AR",18199 +2008-06-01,"Delivered to Consumers","Alabama","AL",32164 +2008-06-01,"Delivered to Consumers","Virginia","VA",23842 +2008-06-01,"Delivered to Consumers","Pennsylvania","PA",40839 +2008-06-01,"Delivered to Consumers","Missouri","MO",12671 +2008-06-01,"Delivered to Consumers","New Hampshire","NH",4124 +2008-06-01,"Delivered to Consumers","New Mexico","NM",10198 +2008-06-01,"Delivered to Consumers","Delaware","DE",3871 +2008-06-01,"Delivered to Consumers","Oklahoma","OK",47721 +2008-06-01,"Delivered to Consumers","Idaho","ID",3497 +2008-06-01,"Delivered to Consumers","Tennessee","TN",11619 +2008-06-01,"Delivered to Consumers","California","CA",159240 +2008-06-01,"Delivered to Consumers","Louisiana","LA",89397 +2008-06-01,"Delivered to Consumers","Minnesota","MN",17058 +2008-06-01,"Delivered to Consumers","Florida","FL",90358 +2008-06-01,"Electric Power Consumption","New Jersey","NJ",20165 +2008-06-01,"Electric Power Consumption","Rhode Island","RI",5135 +2008-06-01,"Electric Power Consumption","Oregon","OR",1311 +2008-06-01,"Electric Power Consumption","Pennsylvania","PA",16213 +2008-06-01,"Electric Power Consumption","Hawaii","HI",NA +2008-06-01,"Electric Power Consumption","New Hampshire","NH",3306 +2008-06-01,"Electric Power Consumption","Georgia","GA",13278 +2008-06-01,"Electric Power Consumption","Louisiana","LA",24396 +2008-06-01,"Electric Power Consumption","Texas","TX",162080 +2008-06-01,"Electric Power Consumption","Oklahoma","OK",29385 +2008-06-01,"Electric Power Consumption","Massachusetts","MA",15016 +2008-06-01,"Electric Power Consumption","West Virginia","WV",213 +2008-06-01,"Electric Power Consumption","Delaware","DE",1922 +2008-06-01,"Electric Power Consumption","Connecticut","CT",4726 +2008-06-01,"Electric Power Consumption","Arizona","AZ",27978 +2008-06-01,"Electric Power Consumption","Alabama","AL",19298 +2008-06-01,"Electric Power Consumption","Virginia","VA",12140 +2008-06-01,"Electric Power Consumption","Wyoming","WY",71 +2008-06-01,"Electric Power Consumption","Kentucky","KY",1865 +2008-06-01,"Electric Power Consumption","Ohio","OH",3605 +2008-06-01,"Electric Power Consumption","California","CA",61085 +2008-06-01,"Electric Power Consumption","New Mexico","NM",6253 +2008-06-01,"Electric Power Consumption","Idaho","ID",33 +2008-06-01,"Electric Power Consumption","Kansas","KS",2773 +2008-06-01,"Electric Power Consumption","Wisconsin","WI",2604 +2008-06-01,"Electric Power Consumption","Vermont","VT",3 +2008-06-01,"Electric Power Consumption","Tennessee","TN",874 +2008-06-01,"Electric Power Consumption","North Carolina","NC",7788 +2008-06-01,"Electric Power Consumption","Missouri","MO",3386 +2008-06-01,"Electric Power Consumption","Mississippi","MS",19952 +2008-06-01,"Electric Power Consumption","Indiana","IN",3743 +2008-06-01,"Electric Power Consumption","Minnesota","MN",1307 +2008-06-01,"Electric Power Consumption","Nevada","NV",14626 +2008-06-01,"Electric Power Consumption","U.S.","U.S.",665436 +2008-06-01,"Electric Power Consumption","North Dakota","ND",0 +2008-06-01,"Electric Power Consumption","Arkansas","AR",8892 +2008-06-01,"Electric Power Consumption","Illinois","IL",4444 +2008-06-01,"Electric Power Consumption","South Dakota","SD",247 +2008-06-01,"Electric Power Consumption","Florida","FL",80011 +2008-06-01,"Electric Power Consumption","New York","NY",44133 +2008-06-01,"Electric Power Consumption","Utah","UT",3455 +2008-06-01,"Electric Power Consumption","Michigan","MI",10278 +2008-06-01,"Electric Power Consumption","Iowa","IA",1473 +2008-06-01,"Electric Power Consumption","Nebraska","NE",657 +2008-06-01,"Electric Power Consumption","Maine","ME",2452 +2008-06-01,"Electric Power Consumption","Montana","MT",48 +2008-06-01,"Electric Power Consumption","Maryland","MD",3100 +2008-06-01,"Electric Power Consumption","Alaska","AK",3048 +2008-06-01,"Electric Power Consumption","Washington","WA",572 +2008-06-01,"Electric Power Consumption","Colorado","CO",7805 +2008-06-01,"Electric Power Consumption","South Carolina","SC",8292 +2008-06-01,"Industrial Consumption","Massachusetts","MA",2502 +2008-06-01,"Industrial Consumption","Missouri","MO",4630 +2008-06-01,"Industrial Consumption","Colorado","CO",7576 +2008-06-01,"Industrial Consumption","Ohio","OH",21116 +2008-06-01,"Industrial Consumption","Pennsylvania","PA",14003 +2008-06-01,"Industrial Consumption","Nevada","NV",935 +2008-06-01,"Industrial Consumption","Mississippi","MS",9220 +2008-06-01,"Industrial Consumption","Texas","TX",110838 +2008-06-01,"Industrial Consumption","Iowa","IA",10976 +2008-06-01,"Industrial Consumption","Florida","FL",5748 +2008-06-01,"Industrial Consumption","North Dakota","ND",1812 +2008-06-01,"Industrial Consumption","Maryland","MD",1637 +2008-06-01,"Industrial Consumption","Louisiana","LA",62199 +2008-06-01,"Industrial Consumption","U.S.","U.S.",513401 +2008-06-01,"Industrial Consumption","New Jersey","NJ",3928 +2008-06-01,"Industrial Consumption","Washington","WA",5570 +2008-06-01,"Industrial Consumption","South Dakota","SD",2571 +2008-06-01,"Industrial Consumption","New Mexico","NM",1697 +2008-06-01,"Industrial Consumption","Utah","UT",2590 +2008-06-01,"Industrial Consumption","Alabama","AL",10641 +2008-06-01,"Industrial Consumption","South Carolina","SC",5855 +2008-06-01,"Industrial Consumption","New Hampshire","NH",301 +2008-06-01,"Industrial Consumption","Michigan","MI",9182 +2008-06-01,"Industrial Consumption","Oregon","OR",4999 +2008-06-01,"Industrial Consumption","Nebraska","NE",6164 +2008-06-01,"Industrial Consumption","Virginia","VA",6948 +2008-06-01,"Industrial Consumption","Wyoming","WY",3169 +2008-06-01,"Industrial Consumption","Connecticut","CT",1266 +2008-06-01,"Industrial Consumption","Kentucky","KY",7802 +2008-06-01,"Industrial Consumption","North Carolina","NC",6569 +2008-06-01,"Industrial Consumption","Georgia","GA",11947 +2008-06-01,"Industrial Consumption","Hawaii","HI",42 +2008-06-01,"Industrial Consumption","Arizona","AZ",1583 +2008-06-01,"Industrial Consumption","Maine","ME",1852 +2008-06-01,"Industrial Consumption","Wisconsin","WI",7624 +2008-06-01,"Industrial Consumption","Indiana","IN",21522 +2008-06-01,"Industrial Consumption","Delaware","DE",1225 +2008-06-01,"Industrial Consumption","District of Columbia","DC",0 +2008-06-01,"Industrial Consumption","Alaska","AK",621 +2008-06-01,"Industrial Consumption","New York","NY",5246 +2008-06-01,"Industrial Consumption","Idaho","ID",1959 +2008-06-01,"Industrial Consumption","Oklahoma","OK",15316 +2008-06-01,"Industrial Consumption","Kansas","KS",9284 +2008-06-01,"Industrial Consumption","Arkansas","AR",6468 +2008-06-01,"Industrial Consumption","West Virginia","WV",2247 +2008-06-01,"Industrial Consumption","Rhode Island","RI",470 +2008-06-01,"Industrial Consumption","Montana","MT",1828 +2008-06-01,"Industrial Consumption","California","CA",57592 +2008-06-01,"Industrial Consumption","Vermont","VT",179 +2008-06-01,"Industrial Consumption","Tennessee","TN",7098 +2008-06-01,"Industrial Consumption","Minnesota","MN",9361 +2008-06-01,"Industrial Consumption","Illinois","IL",17490 +2008-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101738 +2008-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",44156 +2008-06-01,"Residential Consumption","Rhode Island","RI",702 +2008-06-01,"Residential Consumption","Iowa","IA",1886 +2008-06-01,"Residential Consumption","Virginia","VA",1952 +2008-06-01,"Residential Consumption","Utah","UT",2592 +2008-06-01,"Residential Consumption","Florida","FL",846 +2008-06-01,"Residential Consumption","Kansas","KS",1516 +2008-06-01,"Residential Consumption","Alabama","AL",1045 +2008-06-01,"Residential Consumption","New York","NY",12552 +2008-06-01,"Residential Consumption","Mississippi","MS",663 +2008-06-01,"Residential Consumption","Wisconsin","WI",2535 +2008-06-01,"Residential Consumption","Vermont","VT",104 +2008-06-01,"Residential Consumption","Maryland","MD",1987 +2008-06-01,"Residential Consumption","Georgia","GA",3435 +2008-06-01,"Residential Consumption","Maine","ME",25 +2008-06-01,"Residential Consumption","Indiana","IN",2807 +2008-06-01,"Residential Consumption","Montana","MT",917 +2008-06-01,"Residential Consumption","Delaware","DE",306 +2008-06-01,"Residential Consumption","Alaska","AK",733 +2008-06-01,"Residential Consumption","Tennessee","TN",1406 +2008-06-01,"Residential Consumption","Massachusetts","MA",4495 +2008-06-01,"Residential Consumption","Oklahoma","OK",1548 +2008-06-01,"Residential Consumption","Illinois","IL",12724 +2008-06-01,"Residential Consumption","Oregon","OR",1960 +2008-06-01,"Residential Consumption","Pennsylvania","PA",5908 +2008-06-01,"Residential Consumption","New Mexico","NM",1109 +2008-06-01,"Residential Consumption","North Dakota","ND",345 +2008-06-01,"Residential Consumption","Idaho","ID",886 +2008-06-01,"Residential Consumption","Kentucky","KY",925 +2008-06-01,"Residential Consumption","Colorado","CO",3008 +2008-06-01,"Residential Consumption","U.S.","U.S.",144313 +2008-06-01,"Residential Consumption","North Carolina","NC",1121 +2008-06-01,"Residential Consumption","Louisiana","LA",1380 +2008-06-01,"Residential Consumption","Hawaii","HI",41 +2008-06-01,"Residential Consumption","Arkansas","AR",892 +2008-06-01,"Residential Consumption","Texas","TX",6107 +2008-06-01,"Residential Consumption","Ohio","OH",6195 +2008-06-01,"Residential Consumption","Connecticut","CT",1526 +2008-06-01,"Residential Consumption","Nevada","NV",1620 +2008-06-01,"Residential Consumption","Minnesota","MN",3345 +2008-06-01,"Residential Consumption","California","CA",24731 +2008-06-01,"Residential Consumption","South Carolina","SC",447 +2008-06-01,"Residential Consumption","South Dakota","SD",352 +2008-06-01,"Residential Consumption","District of Columbia","DC",371 +2008-06-01,"Residential Consumption","New Jersey","NJ",5723 +2008-06-01,"Residential Consumption","New Hampshire","NH",167 +2008-06-01,"Residential Consumption","Washington","WA",3789 +2008-06-01,"Residential Consumption","Missouri","MO",2488 +2008-06-01,"Residential Consumption","Arizona","AZ",1505 +2008-06-01,"Residential Consumption","Wyoming","WY",467 +2008-06-01,"Residential Consumption","Nebraska","NE",1126 +2008-06-01,"Residential Consumption","Michigan","MI",9577 +2008-06-01,"Residential Consumption","West Virginia","WV",425 +2008-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2130 +2008-07-01,"Commercial Consumption","Oregon","OR",1186 +2008-07-01,"Commercial Consumption","Virginia","VA",2652 +2008-07-01,"Commercial Consumption","Missouri","MO",2022 +2008-07-01,"Commercial Consumption","Wisconsin","WI",2676 +2008-07-01,"Commercial Consumption","New York","NY",13884 +2008-07-01,"Commercial Consumption","Nebraska","NE",1327 +2008-07-01,"Commercial Consumption","Mississippi","MS",960 +2008-07-01,"Commercial Consumption","Kentucky","KY",1041 +2008-07-01,"Commercial Consumption","U.S.","U.S.",127749 +2008-07-01,"Commercial Consumption","Florida","FL",3714 +2008-07-01,"Commercial Consumption","Alaska","AK",617 +2008-07-01,"Commercial Consumption","Alabama","AL",1114 +2008-07-01,"Commercial Consumption","Arizona","AZ",1802 +2008-07-01,"Commercial Consumption","Indiana","IN",2286 +2008-07-01,"Commercial Consumption","South Carolina","SC",1191 +2008-07-01,"Commercial Consumption","Vermont","VT",74 +2008-07-01,"Commercial Consumption","Ohio","OH",4425 +2008-07-01,"Commercial Consumption","California","CA",15841 +2008-07-01,"Commercial Consumption","Arkansas","AR",1859 +2008-07-01,"Commercial Consumption","Tennessee","TN",2087 +2008-07-01,"Commercial Consumption","Michigan","MI",5198 +2008-07-01,"Commercial Consumption","Illinois","IL",7547 +2008-07-01,"Commercial Consumption","North Dakota","ND",286 +2008-07-01,"Commercial Consumption","Colorado","CO",1982 +2008-07-01,"Commercial Consumption","New Mexico","NM",856 +2008-07-01,"Commercial Consumption","Massachusetts","MA",2275 +2008-07-01,"Commercial Consumption","Maine","ME",224 +2008-07-01,"Commercial Consumption","Texas","TX",10511 +2008-07-01,"Commercial Consumption","Georgia","GA",1927 +2008-07-01,"Commercial Consumption","Iowa","IA",1851 +2008-07-01,"Commercial Consumption","West Virginia","WV",1031 +2008-07-01,"Commercial Consumption","North Carolina","NC",1909 +2008-07-01,"Commercial Consumption","Minnesota","MN",2647 +2008-07-01,"Commercial Consumption","South Dakota","SD",307 +2008-07-01,"Commercial Consumption","New Hampshire","NH",331 +2008-07-01,"Commercial Consumption","Connecticut","CT",1568 +2008-07-01,"Commercial Consumption","Delaware","DE",335 +2008-07-01,"Commercial Consumption","Utah","UT",1114 +2008-07-01,"Commercial Consumption","Montana","MT",464 +2008-07-01,"Commercial Consumption","Maryland","MD",2577 +2008-07-01,"Commercial Consumption","Kansas","KS",1029 +2008-07-01,"Commercial Consumption","Rhode Island","RI",456 +2008-07-01,"Commercial Consumption","Idaho","ID",475 +2008-07-01,"Commercial Consumption","Hawaii","HI",151 +2008-07-01,"Commercial Consumption","Wyoming","WY",271 +2008-07-01,"Commercial Consumption","New Jersey","NJ",8246 +2008-07-01,"Commercial Consumption","Nevada","NV",1569 +2008-07-01,"Commercial Consumption","District of Columbia","DC",840 +2008-07-01,"Commercial Consumption","Washington","WA",2372 +2008-07-01,"Commercial Consumption","Oklahoma","OK",1335 +2008-07-01,"Commercial Consumption","Pennsylvania","PA",4027 +2008-07-01,"Commercial Consumption","Louisiana","LA",1279 +2008-07-01,"Delivered to Consumers","Hawaii","HI",238 +2008-07-01,"Delivered to Consumers","Michigan","MI",33456 +2008-07-01,"Delivered to Consumers","Iowa","IA",16565 +2008-07-01,"Delivered to Consumers","Arkansas","AR",18901 +2008-07-01,"Delivered to Consumers","Texas","TX",307787 +2008-07-01,"Delivered to Consumers","New Jersey","NJ",38518 +2008-07-01,"Delivered to Consumers","South Dakota","SD",4142 +2008-07-01,"Delivered to Consumers","Rhode Island","RI",7028 +2008-07-01,"Delivered to Consumers","Oklahoma","OK",52471 +2008-07-01,"Delivered to Consumers","Mississippi","MS",31559 +2008-07-01,"Delivered to Consumers","Massachusetts","MA",28392 +2008-07-01,"Delivered to Consumers","California","CA",176823 +2008-07-01,"Delivered to Consumers","Florida","FL",90655 +2008-07-01,"Delivered to Consumers","Utah","UT",10157 +2008-07-01,"Delivered to Consumers","Vermont","VT",331 +2008-07-01,"Delivered to Consumers","Maryland","MD",10778 +2008-07-01,"Delivered to Consumers","Kentucky","KY",11231 +2008-07-01,"Delivered to Consumers","Pennsylvania","PA",42262 +2008-07-01,"Delivered to Consumers","Washington","WA",13765 +2008-07-01,"Delivered to Consumers","District of Columbia","DC",1095 +2008-07-01,"Delivered to Consumers","New Mexico","NM",9685 +2008-07-01,"Delivered to Consumers","Indiana","IN",30652 +2008-07-01,"Delivered to Consumers","New York","NY",80229 +2008-07-01,"Delivered to Consumers","Alaska","AK",5677 +2008-07-01,"Delivered to Consumers","Alabama","AL",35133 +2008-07-01,"Delivered to Consumers","Colorado","CO",25703 +2008-07-01,"Delivered to Consumers","Nebraska","NE",10050 +2008-07-01,"Delivered to Consumers","North Carolina","NC",15799 +2008-07-01,"Delivered to Consumers","Georgia","GA",31233 +2008-07-01,"Delivered to Consumers","Minnesota","MN",17799 +2008-07-01,"Delivered to Consumers","Illinois","IL",42200 +2008-07-01,"Delivered to Consumers","Tennessee","TN",10621 +2008-07-01,"Delivered to Consumers","Connecticut","CT",11732 +2008-07-01,"Delivered to Consumers","Wisconsin","WI",17839 +2008-07-01,"Delivered to Consumers","Virginia","VA",26531 +2008-07-01,"Delivered to Consumers","South Carolina","SC",12362 +2008-07-01,"Delivered to Consumers","Maine","ME",6177 +2008-07-01,"Delivered to Consumers","New Hampshire","NH",5536 +2008-07-01,"Delivered to Consumers","North Dakota","ND",1366 +2008-07-01,"Delivered to Consumers","U.S.","U.S.",1556011 +2008-07-01,"Delivered to Consumers","West Virginia","WV",3684 +2008-07-01,"Delivered to Consumers","Ohio","OH",34748 +2008-07-01,"Delivered to Consumers","Louisiana","LA",101784 +2008-07-01,"Delivered to Consumers","Delaware","DE",4077 +2008-07-01,"Delivered to Consumers","Wyoming","WY",3749 +2008-07-01,"Delivered to Consumers","Montana","MT",2597 +2008-07-01,"Delivered to Consumers","Kansas","KS",17005 +2008-07-01,"Delivered to Consumers","Idaho","ID",3518 +2008-07-01,"Delivered to Consumers","Missouri","MO",14148 +2008-07-01,"Delivered to Consumers","Oregon","OR",14858 +2008-07-01,"Delivered to Consumers","Nevada","NV",22226 +2008-07-01,"Delivered to Consumers","Arizona","AZ",38939 +2008-07-01,"Electric Power Consumption","Colorado","CO",12070 +2008-07-01,"Electric Power Consumption","Missouri","MO",5632 +2008-07-01,"Electric Power Consumption","Arizona","AZ",34637 +2008-07-01,"Electric Power Consumption","Washington","WA",3859 +2008-07-01,"Electric Power Consumption","Arkansas","AR",10013 +2008-07-01,"Electric Power Consumption","New York","NY",51834 +2008-07-01,"Electric Power Consumption","Oklahoma","OK",33912 +2008-07-01,"Electric Power Consumption","Oregon","OR",7423 +2008-07-01,"Electric Power Consumption","U.S.","U.S.",782039 +2008-07-01,"Electric Power Consumption","Nebraska","NE",1664 +2008-07-01,"Electric Power Consumption","Indiana","IN",5352 +2008-07-01,"Electric Power Consumption","Alabama","AL",22432 +2008-07-01,"Electric Power Consumption","Rhode Island","RI",5684 +2008-07-01,"Electric Power Consumption","Michigan","MI",12490 +2008-07-01,"Electric Power Consumption","Nevada","NV",18414 +2008-07-01,"Electric Power Consumption","Wyoming","WY",95 +2008-07-01,"Electric Power Consumption","Kentucky","KY",1405 +2008-07-01,"Electric Power Consumption","Idaho","ID",638 +2008-07-01,"Electric Power Consumption","Utah","UT",4789 +2008-07-01,"Electric Power Consumption","Kansas","KS",5024 +2008-07-01,"Electric Power Consumption","Maryland","MD",4637 +2008-07-01,"Electric Power Consumption","Florida","FL",80886 +2008-07-01,"Electric Power Consumption","Virginia","VA",15637 +2008-07-01,"Electric Power Consumption","New Jersey","NJ",21538 +2008-07-01,"Electric Power Consumption","Minnesota","MN",3117 +2008-07-01,"Electric Power Consumption","Illinois","IL",7670 +2008-07-01,"Electric Power Consumption","Wisconsin","WI",4786 +2008-07-01,"Electric Power Consumption","Iowa","IA",2134 +2008-07-01,"Electric Power Consumption","Tennessee","TN",774 +2008-07-01,"Electric Power Consumption","South Dakota","SD",1050 +2008-07-01,"Electric Power Consumption","North Carolina","NC",6080 +2008-07-01,"Electric Power Consumption","Maine","ME",4011 +2008-07-01,"Electric Power Consumption","Mississippi","MS",20850 +2008-07-01,"Electric Power Consumption","Ohio","OH",5228 +2008-07-01,"Electric Power Consumption","Montana","MT",27 +2008-07-01,"Electric Power Consumption","Connecticut","CT",7682 +2008-07-01,"Electric Power Consumption","Georgia","GA",13494 +2008-07-01,"Electric Power Consumption","California","CA",79247 +2008-07-01,"Electric Power Consumption","Louisiana","LA",29161 +2008-07-01,"Electric Power Consumption","Massachusetts","MA",20026 +2008-07-01,"Electric Power Consumption","Vermont","VT",3 +2008-07-01,"Electric Power Consumption","North Dakota","ND",0 +2008-07-01,"Electric Power Consumption","Delaware","DE",2307 +2008-07-01,"Electric Power Consumption","South Carolina","SC",4918 +2008-07-01,"Electric Power Consumption","Texas","TX",174218 +2008-07-01,"Electric Power Consumption","West Virginia","WV",101 +2008-07-01,"Electric Power Consumption","Pennsylvania","PA",20259 +2008-07-01,"Electric Power Consumption","Alaska","AK",3702 +2008-07-01,"Electric Power Consumption","New Mexico","NM",6414 +2008-07-01,"Electric Power Consumption","Hawaii","HI",NA +2008-07-01,"Electric Power Consumption","New Hampshire","NH",4716 +2008-07-01,"Industrial Consumption","South Dakota","SD",2558 +2008-07-01,"Industrial Consumption","Texas","TX",117442 +2008-07-01,"Industrial Consumption","Wisconsin","WI",7842 +2008-07-01,"Industrial Consumption","Michigan","MI",8277 +2008-07-01,"Industrial Consumption","Indiana","IN",20502 +2008-07-01,"Industrial Consumption","Illinois","IL",18234 +2008-07-01,"Industrial Consumption","North Carolina","NC",6752 +2008-07-01,"Industrial Consumption","Kansas","KS",9654 +2008-07-01,"Industrial Consumption","Arizona","AZ",1360 +2008-07-01,"Industrial Consumption","Nevada","NV",982 +2008-07-01,"Industrial Consumption","California","CA",59112 +2008-07-01,"Industrial Consumption","South Carolina","SC",5773 +2008-07-01,"Industrial Consumption","District of Columbia","DC",0 +2008-07-01,"Industrial Consumption","Hawaii","HI",46 +2008-07-01,"Industrial Consumption","New Mexico","NM",1539 +2008-07-01,"Industrial Consumption","U.S.","U.S.",525607 +2008-07-01,"Industrial Consumption","Pennsylvania","PA",13570 +2008-07-01,"Industrial Consumption","Maine","ME",1918 +2008-07-01,"Industrial Consumption","Arkansas","AR",6331 +2008-07-01,"Industrial Consumption","Wyoming","WY",3115 +2008-07-01,"Industrial Consumption","Tennessee","TN",6611 +2008-07-01,"Industrial Consumption","Delaware","DE",1259 +2008-07-01,"Industrial Consumption","Massachusetts","MA",2307 +2008-07-01,"Industrial Consumption","New York","NY",5138 +2008-07-01,"Industrial Consumption","Alabama","AL",10675 +2008-07-01,"Industrial Consumption","West Virginia","WV",2187 +2008-07-01,"Industrial Consumption","New Hampshire","NH",333 +2008-07-01,"Industrial Consumption","Rhode Island","RI",420 +2008-07-01,"Industrial Consumption","Oklahoma","OK",15856 +2008-07-01,"Industrial Consumption","Missouri","MO",4440 +2008-07-01,"Industrial Consumption","Nebraska","NE",6233 +2008-07-01,"Industrial Consumption","Minnesota","MN",9363 +2008-07-01,"Industrial Consumption","Iowa","IA",11292 +2008-07-01,"Industrial Consumption","Virginia","VA",6669 +2008-07-01,"Industrial Consumption","Vermont","VT",182 +2008-07-01,"Industrial Consumption","Connecticut","CT",1449 +2008-07-01,"Industrial Consumption","Kentucky","KY",7802 +2008-07-01,"Industrial Consumption","Colorado","CO",8828 +2008-07-01,"Industrial Consumption","Utah","UT",2526 +2008-07-01,"Industrial Consumption","Mississippi","MS",9094 +2008-07-01,"Industrial Consumption","New Jersey","NJ",3493 +2008-07-01,"Industrial Consumption","Georgia","GA",12420 +2008-07-01,"Industrial Consumption","North Dakota","ND",889 +2008-07-01,"Industrial Consumption","Montana","MT",1545 +2008-07-01,"Industrial Consumption","Maryland","MD",1902 +2008-07-01,"Industrial Consumption","Louisiana","LA",70160 +2008-07-01,"Industrial Consumption","Washington","WA",5179 +2008-07-01,"Industrial Consumption","Ohio","OH",19531 +2008-07-01,"Industrial Consumption","Oregon","OR",5045 +2008-07-01,"Industrial Consumption","Idaho","ID",1843 +2008-07-01,"Industrial Consumption","Florida","FL",5274 +2008-07-01,"Industrial Consumption","Alaska","AK",655 +2008-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",107037 +2008-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",47092 +2008-07-01,"Residential Consumption","Oregon","OR",1204 +2008-07-01,"Residential Consumption","Maryland","MD",1662 +2008-07-01,"Residential Consumption","South Dakota","SD",227 +2008-07-01,"Residential Consumption","Georgia","GA",3392 +2008-07-01,"Residential Consumption","Massachusetts","MA",3783 +2008-07-01,"Residential Consumption","Idaho","ID",562 +2008-07-01,"Residential Consumption","Kansas","KS",1298 +2008-07-01,"Residential Consumption","California","CA",22623 +2008-07-01,"Residential Consumption","Pennsylvania","PA",4406 +2008-07-01,"Residential Consumption","Rhode Island","RI",467 +2008-07-01,"Residential Consumption","Connecticut","CT",1032 +2008-07-01,"Residential Consumption","Maine","ME",25 +2008-07-01,"Residential Consumption","Florida","FL",781 +2008-07-01,"Residential Consumption","Arizona","AZ",1139 +2008-07-01,"Residential Consumption","Wyoming","WY",268 +2008-07-01,"Residential Consumption","West Virginia","WV",364 +2008-07-01,"Residential Consumption","U.S.","U.S.",118416 +2008-07-01,"Residential Consumption","Iowa","IA",1288 +2008-07-01,"Residential Consumption","Hawaii","HI",41 +2008-07-01,"Residential Consumption","Vermont","VT",72 +2008-07-01,"Residential Consumption","New Mexico","NM",876 +2008-07-01,"Residential Consumption","New Hampshire","NH",156 +2008-07-01,"Residential Consumption","Kentucky","KY",984 +2008-07-01,"Residential Consumption","Missouri","MO",2054 +2008-07-01,"Residential Consumption","Illinois","IL",8748 +2008-07-01,"Residential Consumption","Texas","TX",5617 +2008-07-01,"Residential Consumption","Wisconsin","WI",2536 +2008-07-01,"Residential Consumption","Nevada","NV",1261 +2008-07-01,"Residential Consumption","Minnesota","MN",2672 +2008-07-01,"Residential Consumption","District of Columbia","DC",255 +2008-07-01,"Residential Consumption","Indiana","IN",2512 +2008-07-01,"Residential Consumption","North Dakota","ND",192 +2008-07-01,"Residential Consumption","Arkansas","AR",698 +2008-07-01,"Residential Consumption","New York","NY",9373 +2008-07-01,"Residential Consumption","North Carolina","NC",1058 +2008-07-01,"Residential Consumption","Mississippi","MS",655 +2008-07-01,"Residential Consumption","Louisiana","LA",1184 +2008-07-01,"Residential Consumption","Tennessee","TN",1149 +2008-07-01,"Residential Consumption","Utah","UT",1728 +2008-07-01,"Residential Consumption","Michigan","MI",7490 +2008-07-01,"Residential Consumption","Colorado","CO",2824 +2008-07-01,"Residential Consumption","Delaware","DE",176 +2008-07-01,"Residential Consumption","South Carolina","SC",479 +2008-07-01,"Residential Consumption","Oklahoma","OK",1369 +2008-07-01,"Residential Consumption","Alabama","AL",911 +2008-07-01,"Residential Consumption","Alaska","AK",702 +2008-07-01,"Residential Consumption","Ohio","OH",5564 +2008-07-01,"Residential Consumption","Virginia","VA",1573 +2008-07-01,"Residential Consumption","Nebraska","NE",826 +2008-07-01,"Residential Consumption","New Jersey","NJ",5242 +2008-07-01,"Residential Consumption","Montana","MT",561 +2008-07-01,"Residential Consumption","Washington","WA",2357 +2008-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2201 +2008-08-01,"Commercial Consumption","Montana","MT",391 +2008-08-01,"Commercial Consumption","Texas","TX",10066 +2008-08-01,"Commercial Consumption","Alaska","AK",591 +2008-08-01,"Commercial Consumption","North Dakota","ND",206 +2008-08-01,"Commercial Consumption","Minnesota","MN",2198 +2008-08-01,"Commercial Consumption","New Mexico","NM",832 +2008-08-01,"Commercial Consumption","Missouri","MO",1918 +2008-08-01,"Commercial Consumption","Massachusetts","MA",2330 +2008-08-01,"Commercial Consumption","Kentucky","KY",1039 +2008-08-01,"Commercial Consumption","Florida","FL",3407 +2008-08-01,"Commercial Consumption","Mississippi","MS",994 +2008-08-01,"Commercial Consumption","Louisiana","LA",1284 +2008-08-01,"Commercial Consumption","District of Columbia","DC",862 +2008-08-01,"Commercial Consumption","Utah","UT",1032 +2008-08-01,"Commercial Consumption","New Hampshire","NH",333 +2008-08-01,"Commercial Consumption","Maine","ME",212 +2008-08-01,"Commercial Consumption","Alabama","AL",1109 +2008-08-01,"Commercial Consumption","Delaware","DE",337 +2008-08-01,"Commercial Consumption","Oklahoma","OK",1360 +2008-08-01,"Commercial Consumption","Wisconsin","WI",2642 +2008-08-01,"Commercial Consumption","U.S.","U.S.",126688 +2008-08-01,"Commercial Consumption","Georgia","GA",1969 +2008-08-01,"Commercial Consumption","Ohio","OH",4240 +2008-08-01,"Commercial Consumption","Arkansas","AR",1820 +2008-08-01,"Commercial Consumption","Oregon","OR",1084 +2008-08-01,"Commercial Consumption","South Dakota","SD",296 +2008-08-01,"Commercial Consumption","Connecticut","CT",1409 +2008-08-01,"Commercial Consumption","California","CA",17203 +2008-08-01,"Commercial Consumption","Nevada","NV",1529 +2008-08-01,"Commercial Consumption","Wyoming","WY",258 +2008-08-01,"Commercial Consumption","Washington","WA",2163 +2008-08-01,"Commercial Consumption","South Carolina","SC",1205 +2008-08-01,"Commercial Consumption","Vermont","VT",72 +2008-08-01,"Commercial Consumption","Iowa","IA",1835 +2008-08-01,"Commercial Consumption","Arizona","AZ",1701 +2008-08-01,"Commercial Consumption","Michigan","MI",4650 +2008-08-01,"Commercial Consumption","Indiana","IN",2321 +2008-08-01,"Commercial Consumption","West Virginia","WV",1115 +2008-08-01,"Commercial Consumption","North Carolina","NC",2010 +2008-08-01,"Commercial Consumption","Virginia","VA",2665 +2008-08-01,"Commercial Consumption","New Jersey","NJ",8425 +2008-08-01,"Commercial Consumption","Kansas","KS",1000 +2008-08-01,"Commercial Consumption","Rhode Island","RI",393 +2008-08-01,"Commercial Consumption","Idaho","ID",481 +2008-08-01,"Commercial Consumption","Nebraska","NE",1248 +2008-08-01,"Commercial Consumption","Tennessee","TN",1925 +2008-08-01,"Commercial Consumption","Colorado","CO",2212 +2008-08-01,"Commercial Consumption","Pennsylvania","PA",4208 +2008-08-01,"Commercial Consumption","Maryland","MD",3109 +2008-08-01,"Commercial Consumption","Hawaii","HI",140 +2008-08-01,"Commercial Consumption","New York","NY",14186 +2008-08-01,"Commercial Consumption","Illinois","IL",6674 +2008-08-01,"Delivered to Consumers","Illinois","IL",37929 +2008-08-01,"Delivered to Consumers","Montana","MT",2438 +2008-08-01,"Delivered to Consumers","Idaho","ID",4056 +2008-08-01,"Delivered to Consumers","Ohio","OH",33269 +2008-08-01,"Delivered to Consumers","Missouri","MO",13267 +2008-08-01,"Delivered to Consumers","Colorado","CO",24440 +2008-08-01,"Delivered to Consumers","California","CA",193075 +2008-08-01,"Delivered to Consumers","Georgia","GA",31449 +2008-08-01,"Delivered to Consumers","District of Columbia","DC",1126 +2008-08-01,"Delivered to Consumers","U.S.","U.S.",1531863 +2008-08-01,"Delivered to Consumers","Vermont","VT",333 +2008-08-01,"Delivered to Consumers","Maryland","MD",7669 +2008-08-01,"Delivered to Consumers","Nebraska","NE",10893 +2008-08-01,"Delivered to Consumers","Texas","TX",303775 +2008-08-01,"Delivered to Consumers","Utah","UT",10919 +2008-08-01,"Delivered to Consumers","Indiana","IN",29873 +2008-08-01,"Delivered to Consumers","Iowa","IA",16382 +2008-08-01,"Delivered to Consumers","Maine","ME",5002 +2008-08-01,"Delivered to Consumers","Delaware","DE",3567 +2008-08-01,"Delivered to Consumers","South Dakota","SD",4148 +2008-08-01,"Delivered to Consumers","Hawaii","HI",211 +2008-08-01,"Delivered to Consumers","Alaska","AK",5570 +2008-08-01,"Delivered to Consumers","Tennessee","TN",10138 +2008-08-01,"Delivered to Consumers","Pennsylvania","PA",39787 +2008-08-01,"Delivered to Consumers","New Jersey","NJ",33176 +2008-08-01,"Delivered to Consumers","Arizona","AZ",39922 +2008-08-01,"Delivered to Consumers","New Mexico","NM",9713 +2008-08-01,"Delivered to Consumers","West Virginia","WV",3970 +2008-08-01,"Delivered to Consumers","Rhode Island","RI",6288 +2008-08-01,"Delivered to Consumers","Kentucky","KY",11210 +2008-08-01,"Delivered to Consumers","Arkansas","AR",17313 +2008-08-01,"Delivered to Consumers","North Carolina","NC",16088 +2008-08-01,"Delivered to Consumers","Massachusetts","MA",22683 +2008-08-01,"Delivered to Consumers","Oregon","OR",19043 +2008-08-01,"Delivered to Consumers","Washington","WA",20653 +2008-08-01,"Delivered to Consumers","Wyoming","WY",3805 +2008-08-01,"Delivered to Consumers","New York","NY",69371 +2008-08-01,"Delivered to Consumers","Oklahoma","OK",52747 +2008-08-01,"Delivered to Consumers","Virginia","VA",20705 +2008-08-01,"Delivered to Consumers","North Dakota","ND",1853 +2008-08-01,"Delivered to Consumers","Minnesota","MN",17461 +2008-08-01,"Delivered to Consumers","Michigan","MI",30303 +2008-08-01,"Delivered to Consumers","Connecticut","CT",9545 +2008-08-01,"Delivered to Consumers","Mississippi","MS",28414 +2008-08-01,"Delivered to Consumers","Nevada","NV",24521 +2008-08-01,"Delivered to Consumers","Louisiana","LA",95450 +2008-08-01,"Delivered to Consumers","New Hampshire","NH",4876 +2008-08-01,"Delivered to Consumers","Kansas","KS",17936 +2008-08-01,"Delivered to Consumers","Alabama","AL",35196 +2008-08-01,"Delivered to Consumers","Wisconsin","WI",17219 +2008-08-01,"Delivered to Consumers","South Carolina","SC",13129 +2008-08-01,"Delivered to Consumers","Florida","FL",97760 +2008-08-01,"Electric Power Consumption","Washington","WA",11352 +2008-08-01,"Electric Power Consumption","Wyoming","WY",74 +2008-08-01,"Electric Power Consumption","Nebraska","NE",1537 +2008-08-01,"Electric Power Consumption","Arizona","AZ",35815 +2008-08-01,"Electric Power Consumption","Alabama","AL",22280 +2008-08-01,"Electric Power Consumption","Alaska","AK",3741 +2008-08-01,"Electric Power Consumption","South Carolina","SC",5684 +2008-08-01,"Electric Power Consumption","New York","NY",40875 +2008-08-01,"Electric Power Consumption","Minnesota","MN",2453 +2008-08-01,"Electric Power Consumption","Michigan","MI",11249 +2008-08-01,"Electric Power Consumption","Kansas","KS",4269 +2008-08-01,"Electric Power Consumption","Iowa","IA",1889 +2008-08-01,"Electric Power Consumption","U.S.","U.S.",762946 +2008-08-01,"Electric Power Consumption","Ohio","OH",4037 +2008-08-01,"Electric Power Consumption","Texas","TX",170713 +2008-08-01,"Electric Power Consumption","Utah","UT",5961 +2008-08-01,"Electric Power Consumption","Oregon","OR",11630 +2008-08-01,"Electric Power Consumption","Pennsylvania","PA",17786 +2008-08-01,"Electric Power Consumption","South Dakota","SD",846 +2008-08-01,"Electric Power Consumption","Montana","MT",33 +2008-08-01,"Electric Power Consumption","Georgia","GA",13761 +2008-08-01,"Electric Power Consumption","Florida","FL",88205 +2008-08-01,"Electric Power Consumption","Virginia","VA",11552 +2008-08-01,"Electric Power Consumption","Colorado","CO",10855 +2008-08-01,"Electric Power Consumption","West Virginia","WV",175 +2008-08-01,"Electric Power Consumption","Hawaii","HI",NA +2008-08-01,"Electric Power Consumption","North Dakota","ND",0 +2008-08-01,"Electric Power Consumption","Delaware","DE",1643 +2008-08-01,"Electric Power Consumption","California","CA",93649 +2008-08-01,"Electric Power Consumption","Wisconsin","WI",4210 +2008-08-01,"Electric Power Consumption","Nevada","NV",20879 +2008-08-01,"Electric Power Consumption","North Carolina","NC",6242 +2008-08-01,"Electric Power Consumption","Kentucky","KY",1405 +2008-08-01,"Electric Power Consumption","New Hampshire","NH",4144 +2008-08-01,"Electric Power Consumption","Maryland","MD",1488 +2008-08-01,"Electric Power Consumption","Indiana","IN",4162 +2008-08-01,"Electric Power Consumption","Louisiana","LA",25648 +2008-08-01,"Electric Power Consumption","Rhode Island","RI",4745 +2008-08-01,"Electric Power Consumption","Oklahoma","OK",34449 +2008-08-01,"Electric Power Consumption","Illinois","IL",4509 +2008-08-01,"Electric Power Consumption","New Jersey","NJ",16076 +2008-08-01,"Electric Power Consumption","Tennessee","TN",423 +2008-08-01,"Electric Power Consumption","Missouri","MO",5022 +2008-08-01,"Electric Power Consumption","Maine","ME",2845 +2008-08-01,"Electric Power Consumption","New Mexico","NM",6504 +2008-08-01,"Electric Power Consumption","Idaho","ID",1359 +2008-08-01,"Electric Power Consumption","Arkansas","AR",8444 +2008-08-01,"Electric Power Consumption","Massachusetts","MA",14346 +2008-08-01,"Electric Power Consumption","Vermont","VT",5 +2008-08-01,"Electric Power Consumption","Mississippi","MS",18381 +2008-08-01,"Electric Power Consumption","Connecticut","CT",5594 +2008-08-01,"Industrial Consumption","Kansas","KS",11504 +2008-08-01,"Industrial Consumption","Pennsylvania","PA",13675 +2008-08-01,"Industrial Consumption","New York","NY",5324 +2008-08-01,"Industrial Consumption","South Carolina","SC",5769 +2008-08-01,"Industrial Consumption","Wisconsin","WI",7765 +2008-08-01,"Industrial Consumption","Idaho","ID",1718 +2008-08-01,"Industrial Consumption","Iowa","IA",11391 +2008-08-01,"Industrial Consumption","Indiana","IN",20948 +2008-08-01,"Industrial Consumption","Oregon","OR",5364 +2008-08-01,"Industrial Consumption","Minnesota","MN",10376 +2008-08-01,"Industrial Consumption","District of Columbia","DC",0 +2008-08-01,"Industrial Consumption","North Dakota","ND",1479 +2008-08-01,"Industrial Consumption","Hawaii","HI",34 +2008-08-01,"Industrial Consumption","Mississippi","MS",8462 +2008-08-01,"Industrial Consumption","Rhode Island","RI",704 +2008-08-01,"Industrial Consumption","Montana","MT",1614 +2008-08-01,"Industrial Consumption","Oklahoma","OK",15784 +2008-08-01,"Industrial Consumption","Louisiana","LA",67295 +2008-08-01,"Industrial Consumption","New Mexico","NM",1574 +2008-08-01,"Industrial Consumption","Arizona","AZ",1352 +2008-08-01,"Industrial Consumption","Nevada","NV",971 +2008-08-01,"Industrial Consumption","West Virginia","WV",2312 +2008-08-01,"Industrial Consumption","Tennessee","TN",6714 +2008-08-01,"Industrial Consumption","Georgia","GA",12288 +2008-08-01,"Industrial Consumption","Massachusetts","MA",2382 +2008-08-01,"Industrial Consumption","Alabama","AL",10948 +2008-08-01,"Industrial Consumption","Texas","TX",117641 +2008-08-01,"Industrial Consumption","Virginia","VA",4996 +2008-08-01,"Industrial Consumption","Maryland","MD",1392 +2008-08-01,"Industrial Consumption","Colorado","CO",8071 +2008-08-01,"Industrial Consumption","Washington","WA",5167 +2008-08-01,"Industrial Consumption","Ohio","OH",19839 +2008-08-01,"Industrial Consumption","U.S.","U.S.",528741 +2008-08-01,"Industrial Consumption","Nebraska","NE",7278 +2008-08-01,"Industrial Consumption","Vermont","VT",191 +2008-08-01,"Industrial Consumption","New Jersey","NJ",3619 +2008-08-01,"Industrial Consumption","Connecticut","CT",1439 +2008-08-01,"Industrial Consumption","Utah","UT",2404 +2008-08-01,"Industrial Consumption","Maine","ME",1916 +2008-08-01,"Industrial Consumption","Arkansas","AR",6366 +2008-08-01,"Industrial Consumption","New Hampshire","NH",287 +2008-08-01,"Industrial Consumption","Florida","FL",5424 +2008-08-01,"Industrial Consumption","Michigan","MI",8039 +2008-08-01,"Industrial Consumption","Illinois","IL",18211 +2008-08-01,"Industrial Consumption","Alaska","AK",537 +2008-08-01,"Industrial Consumption","Missouri","MO",4644 +2008-08-01,"Industrial Consumption","South Dakota","SD",2769 +2008-08-01,"Industrial Consumption","California","CA",61388 +2008-08-01,"Industrial Consumption","Wyoming","WY",3219 +2008-08-01,"Industrial Consumption","Kentucky","KY",7932 +2008-08-01,"Industrial Consumption","Delaware","DE",1411 +2008-08-01,"Industrial Consumption","North Carolina","NC",6815 +2008-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105516 +2008-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",46361 +2008-08-01,"Residential Consumption","Virginia","VA",1492 +2008-08-01,"Residential Consumption","Maine","ME",29 +2008-08-01,"Residential Consumption","Massachusetts","MA",3624 +2008-08-01,"Residential Consumption","Delaware","DE",176 +2008-08-01,"Residential Consumption","Alabama","AL",859 +2008-08-01,"Residential Consumption","Alaska","AK",700 +2008-08-01,"Residential Consumption","Texas","TX",5355 +2008-08-01,"Residential Consumption","Arkansas","AR",682 +2008-08-01,"Residential Consumption","New Hampshire","NH",111 +2008-08-01,"Residential Consumption","Illinois","IL",8535 +2008-08-01,"Residential Consumption","Oregon","OR",965 +2008-08-01,"Residential Consumption","Louisiana","LA",1222 +2008-08-01,"Residential Consumption","Connecticut","CT",1103 +2008-08-01,"Residential Consumption","Vermont","VT",65 +2008-08-01,"Residential Consumption","Nevada","NV",1142 +2008-08-01,"Residential Consumption","Minnesota","MN",2434 +2008-08-01,"Residential Consumption","Kentucky","KY",834 +2008-08-01,"Residential Consumption","Kansas","KS",1164 +2008-08-01,"Residential Consumption","Arizona","AZ",1055 +2008-08-01,"Residential Consumption","New York","NY",8987 +2008-08-01,"Residential Consumption","Tennessee","TN",1077 +2008-08-01,"Residential Consumption","New Mexico","NM",803 +2008-08-01,"Residential Consumption","North Dakota","ND",169 +2008-08-01,"Residential Consumption","North Carolina","NC",1022 +2008-08-01,"Residential Consumption","Mississippi","MS",577 +2008-08-01,"Residential Consumption","Iowa","IA",1268 +2008-08-01,"Residential Consumption","Hawaii","HI",37 +2008-08-01,"Residential Consumption","Wisconsin","WI",2602 +2008-08-01,"Residential Consumption","Michigan","MI",6365 +2008-08-01,"Residential Consumption","South Dakota","SD",238 +2008-08-01,"Residential Consumption","Georgia","GA",3431 +2008-08-01,"Residential Consumption","Colorado","CO",3302 +2008-08-01,"Residential Consumption","Oklahoma","OK",1154 +2008-08-01,"Residential Consumption","West Virginia","WV",369 +2008-08-01,"Residential Consumption","Ohio","OH",5153 +2008-08-01,"Residential Consumption","Nebraska","NE",830 +2008-08-01,"Residential Consumption","Pennsylvania","PA",4118 +2008-08-01,"Residential Consumption","Florida","FL",723 +2008-08-01,"Residential Consumption","Missouri","MO",1682 +2008-08-01,"Residential Consumption","District of Columbia","DC",264 +2008-08-01,"Residential Consumption","Idaho","ID",498 +2008-08-01,"Residential Consumption","Washington","WA",1970 +2008-08-01,"Residential Consumption","Wyoming","WY",253 +2008-08-01,"Residential Consumption","U.S.","U.S.",111287 +2008-08-01,"Residential Consumption","South Carolina","SC",471 +2008-08-01,"Residential Consumption","Rhode Island","RI",445 +2008-08-01,"Residential Consumption","Utah","UT",1521 +2008-08-01,"Residential Consumption","Maryland","MD",1679 +2008-08-01,"Residential Consumption","Indiana","IN",2442 +2008-08-01,"Residential Consumption","New Jersey","NJ",5057 +2008-08-01,"Residential Consumption","Montana","MT",399 +2008-08-01,"Residential Consumption","California","CA",20836 +2008-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2201 +2008-09-01,"Commercial Consumption","Oregon","OR",1144 +2008-09-01,"Commercial Consumption","Missouri","MO",2068 +2008-09-01,"Commercial Consumption","South Dakota","SD",288 +2008-09-01,"Commercial Consumption","New Jersey","NJ",7661 +2008-09-01,"Commercial Consumption","U.S.","U.S.",129153 +2008-09-01,"Commercial Consumption","Vermont","VT",81 +2008-09-01,"Commercial Consumption","Nebraska","NE",1289 +2008-09-01,"Commercial Consumption","Indiana","IN",2252 +2008-09-01,"Commercial Consumption","Utah","UT",1095 +2008-09-01,"Commercial Consumption","Texas","TX",9123 +2008-09-01,"Commercial Consumption","Florida","FL",3574 +2008-09-01,"Commercial Consumption","Alabama","AL",1166 +2008-09-01,"Commercial Consumption","Nevada","NV",1627 +2008-09-01,"Commercial Consumption","Mississippi","MS",1053 +2008-09-01,"Commercial Consumption","Delaware","DE",337 +2008-09-01,"Commercial Consumption","Arizona","AZ",1790 +2008-09-01,"Commercial Consumption","Illinois","IL",7247 +2008-09-01,"Commercial Consumption","District of Columbia","DC",906 +2008-09-01,"Commercial Consumption","Wyoming","WY",337 +2008-09-01,"Commercial Consumption","North Dakota","ND",314 +2008-09-01,"Commercial Consumption","Wisconsin","WI",2924 +2008-09-01,"Commercial Consumption","New Hampshire","NH",369 +2008-09-01,"Commercial Consumption","Rhode Island","RI",303 +2008-09-01,"Commercial Consumption","Ohio","OH",4351 +2008-09-01,"Commercial Consumption","Iowa","IA",1957 +2008-09-01,"Commercial Consumption","West Virginia","WV",1140 +2008-09-01,"Commercial Consumption","Washington","WA",2233 +2008-09-01,"Commercial Consumption","Virginia","VA",3026 +2008-09-01,"Commercial Consumption","Massachusetts","MA",2211 +2008-09-01,"Commercial Consumption","Idaho","ID",525 +2008-09-01,"Commercial Consumption","California","CA",17084 +2008-09-01,"Commercial Consumption","North Carolina","NC",2707 +2008-09-01,"Commercial Consumption","New Mexico","NM",858 +2008-09-01,"Commercial Consumption","Pennsylvania","PA",4491 +2008-09-01,"Commercial Consumption","Maryland","MD",3009 +2008-09-01,"Commercial Consumption","Hawaii","HI",146 +2008-09-01,"Commercial Consumption","Alaska","AK",831 +2008-09-01,"Commercial Consumption","Arkansas","AR",1874 +2008-09-01,"Commercial Consumption","South Carolina","SC",1267 +2008-09-01,"Commercial Consumption","Minnesota","MN",2612 +2008-09-01,"Commercial Consumption","Montana","MT",511 +2008-09-01,"Commercial Consumption","Kentucky","KY",1121 +2008-09-01,"Commercial Consumption","Kansas","KS",933 +2008-09-01,"Commercial Consumption","Georgia","GA",1987 +2008-09-01,"Commercial Consumption","Connecticut","CT",1554 +2008-09-01,"Commercial Consumption","New York","NY",13531 +2008-09-01,"Commercial Consumption","Michigan","MI",4988 +2008-09-01,"Commercial Consumption","Colorado","CO",2082 +2008-09-01,"Commercial Consumption","Oklahoma","OK",1405 +2008-09-01,"Commercial Consumption","Maine","ME",253 +2008-09-01,"Commercial Consumption","Tennessee","TN",2112 +2008-09-01,"Commercial Consumption","Louisiana","LA",1406 +2008-09-01,"Delivered to Consumers","Wyoming","WY",3520 +2008-09-01,"Delivered to Consumers","South Dakota","SD",3546 +2008-09-01,"Delivered to Consumers","New York","NY",65871 +2008-09-01,"Delivered to Consumers","Alaska","AK",6157 +2008-09-01,"Delivered to Consumers","Kansas","KS",13007 +2008-09-01,"Delivered to Consumers","Wisconsin","WI",16667 +2008-09-01,"Delivered to Consumers","South Carolina","SC",11276 +2008-09-01,"Delivered to Consumers","Oregon","OR",18646 +2008-09-01,"Delivered to Consumers","Minnesota","MN",16900 +2008-09-01,"Delivered to Consumers","District of Columbia","DC",1190 +2008-09-01,"Delivered to Consumers","New Mexico","NM",8652 +2008-09-01,"Delivered to Consumers","Montana","MT",2931 +2008-09-01,"Delivered to Consumers","Idaho","ID",4375 +2008-09-01,"Delivered to Consumers","Ohio","OH",30597 +2008-09-01,"Delivered to Consumers","Michigan","MI",26459 +2008-09-01,"Delivered to Consumers","Iowa","IA",15563 +2008-09-01,"Delivered to Consumers","New Hampshire","NH",5352 +2008-09-01,"Delivered to Consumers","Illinois","IL",35830 +2008-09-01,"Delivered to Consumers","Oklahoma","OK",42110 +2008-09-01,"Delivered to Consumers","Virginia","VA",16972 +2008-09-01,"Delivered to Consumers","Colorado","CO",22557 +2008-09-01,"Delivered to Consumers","Arizona","AZ",34978 +2008-09-01,"Delivered to Consumers","Indiana","IN",26242 +2008-09-01,"Delivered to Consumers","Delaware","DE",3009 +2008-09-01,"Delivered to Consumers","Nebraska","NE",8126 +2008-09-01,"Delivered to Consumers","Washington","WA",21027 +2008-09-01,"Delivered to Consumers","Tennessee","TN",11040 +2008-09-01,"Delivered to Consumers","Connecticut","CT",8662 +2008-09-01,"Delivered to Consumers","Massachusetts","MA",21637 +2008-09-01,"Delivered to Consumers","Nevada","NV",20966 +2008-09-01,"Delivered to Consumers","Maine","ME",5965 +2008-09-01,"Delivered to Consumers","Florida","FL",87018 +2008-09-01,"Delivered to Consumers","Utah","UT",10422 +2008-09-01,"Delivered to Consumers","U.S.","U.S.",1329726 +2008-09-01,"Delivered to Consumers","Hawaii","HI",211 +2008-09-01,"Delivered to Consumers","Kentucky","KY",10321 +2008-09-01,"Delivered to Consumers","Alabama","AL",26456 +2008-09-01,"Delivered to Consumers","North Carolina","NC",14403 +2008-09-01,"Delivered to Consumers","Louisiana","LA",77869 +2008-09-01,"Delivered to Consumers","North Dakota","ND",2084 +2008-09-01,"Delivered to Consumers","West Virginia","WV",3937 +2008-09-01,"Delivered to Consumers","Vermont","VT",361 +2008-09-01,"Delivered to Consumers","Rhode Island","RI",5544 +2008-09-01,"Delivered to Consumers","Arkansas","AR",12896 +2008-09-01,"Delivered to Consumers","Mississippi","MS",23792 +2008-09-01,"Delivered to Consumers","Texas","TX",218029 +2008-09-01,"Delivered to Consumers","New Jersey","NJ",33124 +2008-09-01,"Delivered to Consumers","Maryland","MD",8974 +2008-09-01,"Delivered to Consumers","Pennsylvania","PA",38916 +2008-09-01,"Delivered to Consumers","Missouri","MO",11048 +2008-09-01,"Delivered to Consumers","California","CA",184155 +2008-09-01,"Delivered to Consumers","Georgia","GA",28207 +2008-09-01,"Electric Power Consumption","Louisiana","LA",23146 +2008-09-01,"Electric Power Consumption","Kansas","KS",1741 +2008-09-01,"Electric Power Consumption","Nebraska","NE",288 +2008-09-01,"Electric Power Consumption","Mississippi","MS",14002 +2008-09-01,"Electric Power Consumption","Delaware","DE",1423 +2008-09-01,"Electric Power Consumption","Connecticut","CT",4549 +2008-09-01,"Electric Power Consumption","Georgia","GA",10605 +2008-09-01,"Electric Power Consumption","Florida","FL",77882 +2008-09-01,"Electric Power Consumption","Alaska","AK",3716 +2008-09-01,"Electric Power Consumption","New Mexico","NM",5454 +2008-09-01,"Electric Power Consumption","Rhode Island","RI",4365 +2008-09-01,"Electric Power Consumption","Utah","UT",5334 +2008-09-01,"Electric Power Consumption","Nevada","NV",17118 +2008-09-01,"Electric Power Consumption","Tennessee","TN",568 +2008-09-01,"Electric Power Consumption","South Dakota","SD",134 +2008-09-01,"Electric Power Consumption","Missouri","MO",2538 +2008-09-01,"Electric Power Consumption","Kentucky","KY",682 +2008-09-01,"Electric Power Consumption","North Dakota","ND",0 +2008-09-01,"Electric Power Consumption","Virginia","VA",9011 +2008-09-01,"Electric Power Consumption","New Jersey","NJ",16830 +2008-09-01,"Electric Power Consumption","New York","NY",36839 +2008-09-01,"Electric Power Consumption","Wisconsin","WI",2617 +2008-09-01,"Electric Power Consumption","Wyoming","WY",75 +2008-09-01,"Electric Power Consumption","Iowa","IA",672 +2008-09-01,"Electric Power Consumption","Hawaii","HI",NA +2008-09-01,"Electric Power Consumption","Indiana","IN",2645 +2008-09-01,"Electric Power Consumption","Idaho","ID",1224 +2008-09-01,"Electric Power Consumption","Illinois","IL",2658 +2008-09-01,"Electric Power Consumption","Vermont","VT",4 +2008-09-01,"Electric Power Consumption","U.S.","U.S.",602565 +2008-09-01,"Electric Power Consumption","Montana","MT",69 +2008-09-01,"Electric Power Consumption","Alabama","AL",13647 +2008-09-01,"Electric Power Consumption","Texas","TX",112689 +2008-09-01,"Electric Power Consumption","Michigan","MI",6482 +2008-09-01,"Electric Power Consumption","Pennsylvania","PA",16533 +2008-09-01,"Electric Power Consumption","Maine","ME",3617 +2008-09-01,"Electric Power Consumption","Washington","WA",10866 +2008-09-01,"Electric Power Consumption","Arkansas","AR",3560 +2008-09-01,"Electric Power Consumption","West Virginia","WV",162 +2008-09-01,"Electric Power Consumption","North Carolina","NC",3568 +2008-09-01,"Electric Power Consumption","Ohio","OH",1892 +2008-09-01,"Electric Power Consumption","New Hampshire","NH",4443 +2008-09-01,"Electric Power Consumption","Arizona","AZ",30603 +2008-09-01,"Electric Power Consumption","California","CA",83545 +2008-09-01,"Electric Power Consumption","Colorado","CO",9088 +2008-09-01,"Electric Power Consumption","South Carolina","SC",4048 +2008-09-01,"Electric Power Consumption","Oregon","OR",11046 +2008-09-01,"Electric Power Consumption","Massachusetts","MA",13264 +2008-09-01,"Electric Power Consumption","Maryland","MD",2491 +2008-09-01,"Electric Power Consumption","Oklahoma","OK",23372 +2008-09-01,"Electric Power Consumption","Minnesota","MN",1459 +2008-09-01,"Industrial Consumption","Hawaii","HI",27 +2008-09-01,"Industrial Consumption","Washington","WA",5696 +2008-09-01,"Industrial Consumption","Ohio","OH",18810 +2008-09-01,"Industrial Consumption","Kansas","KS",8985 +2008-09-01,"Industrial Consumption","Virginia","VA",3282 +2008-09-01,"Industrial Consumption","New Hampshire","NH",379 +2008-09-01,"Industrial Consumption","Oklahoma","OK",16056 +2008-09-01,"Industrial Consumption","Louisiana","LA",51988 +2008-09-01,"Industrial Consumption","New Mexico","NM",1476 +2008-09-01,"Industrial Consumption","Nevada","NV",995 +2008-09-01,"Industrial Consumption","Texas","TX",90657 +2008-09-01,"Industrial Consumption","Idaho","ID",2031 +2008-09-01,"Industrial Consumption","North Carolina","NC",6739 +2008-09-01,"Industrial Consumption","Georgia","GA",12137 +2008-09-01,"Industrial Consumption","District of Columbia","DC",0 +2008-09-01,"Industrial Consumption","North Dakota","ND",1530 +2008-09-01,"Industrial Consumption","Massachusetts","MA",2235 +2008-09-01,"Industrial Consumption","Colorado","CO",7807 +2008-09-01,"Industrial Consumption","Pennsylvania","PA",13402 +2008-09-01,"Industrial Consumption","New York","NY",5408 +2008-09-01,"Industrial Consumption","Mississippi","MS",8123 +2008-09-01,"Industrial Consumption","California","CA",62677 +2008-09-01,"Industrial Consumption","Arkansas","AR",6711 +2008-09-01,"Industrial Consumption","West Virginia","WV",2196 +2008-09-01,"Industrial Consumption","Indiana","IN",18652 +2008-09-01,"Industrial Consumption","South Dakota","SD",2867 +2008-09-01,"Industrial Consumption","Wyoming","WY",2732 +2008-09-01,"Industrial Consumption","Wisconsin","WI",8388 +2008-09-01,"Industrial Consumption","Tennessee","TN",7174 +2008-09-01,"Industrial Consumption","New Jersey","NJ",3548 +2008-09-01,"Industrial Consumption","Florida","FL",4821 +2008-09-01,"Industrial Consumption","Michigan","MI",8593 +2008-09-01,"Industrial Consumption","Montana","MT",1754 +2008-09-01,"Industrial Consumption","Maryland","MD",1765 +2008-09-01,"Industrial Consumption","Utah","UT",2397 +2008-09-01,"Industrial Consumption","Vermont","VT",201 +2008-09-01,"Industrial Consumption","Connecticut","CT",1477 +2008-09-01,"Industrial Consumption","Rhode Island","RI",473 +2008-09-01,"Industrial Consumption","Iowa","IA",11641 +2008-09-01,"Industrial Consumption","Alaska","AK",578 +2008-09-01,"Industrial Consumption","Missouri","MO",4513 +2008-09-01,"Industrial Consumption","U.S.","U.S.",477778 +2008-09-01,"Industrial Consumption","Oregon","OR",5400 +2008-09-01,"Industrial Consumption","Maine","ME",2061 +2008-09-01,"Industrial Consumption","Alabama","AL",10749 +2008-09-01,"Industrial Consumption","Minnesota","MN",9975 +2008-09-01,"Industrial Consumption","Arizona","AZ",1441 +2008-09-01,"Industrial Consumption","South Carolina","SC",5430 +2008-09-01,"Industrial Consumption","Nebraska","NE",5661 +2008-09-01,"Industrial Consumption","Kentucky","KY",7709 +2008-09-01,"Industrial Consumption","Illinois","IL",17345 +2008-09-01,"Industrial Consumption","Delaware","DE",1084 +2008-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",90069 +2008-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",40239 +2008-09-01,"Residential Consumption","Rhode Island","RI",402 +2008-09-01,"Residential Consumption","Iowa","IA",1293 +2008-09-01,"Residential Consumption","Virginia","VA",1653 +2008-09-01,"Residential Consumption","Utah","UT",1595 +2008-09-01,"Residential Consumption","Nebraska","NE",888 +2008-09-01,"Residential Consumption","Maryland","MD",1709 +2008-09-01,"Residential Consumption","New Jersey","NJ",5086 +2008-09-01,"Residential Consumption","California","CA",20849 +2008-09-01,"Residential Consumption","U.S.","U.S.",118100 +2008-09-01,"Residential Consumption","Mississippi","MS",614 +2008-09-01,"Residential Consumption","Nevada","NV",1226 +2008-09-01,"Residential Consumption","Missouri","MO",1930 +2008-09-01,"Residential Consumption","New York","NY",10092 +2008-09-01,"Residential Consumption","Hawaii","HI",37 +2008-09-01,"Residential Consumption","Wisconsin","WI",2738 +2008-09-01,"Residential Consumption","Vermont","VT",75 +2008-09-01,"Residential Consumption","Tennessee","TN",1185 +2008-09-01,"Residential Consumption","Minnesota","MN",2855 +2008-09-01,"Residential Consumption","District of Columbia","DC",284 +2008-09-01,"Residential Consumption","Indiana","IN",2692 +2008-09-01,"Residential Consumption","Kentucky","KY",809 +2008-09-01,"Residential Consumption","Alabama","AL",893 +2008-09-01,"Residential Consumption","Oregon","OR",1056 +2008-09-01,"Residential Consumption","Connecticut","CT",1081 +2008-09-01,"Residential Consumption","South Dakota","SD",257 +2008-09-01,"Residential Consumption","Kansas","KS",1348 +2008-09-01,"Residential Consumption","Oklahoma","OK",1276 +2008-09-01,"Residential Consumption","Ohio","OH",5545 +2008-09-01,"Residential Consumption","New Mexico","NM",863 +2008-09-01,"Residential Consumption","Massachusetts","MA",3928 +2008-09-01,"Residential Consumption","Idaho","ID",595 +2008-09-01,"Residential Consumption","New Hampshire","NH",161 +2008-09-01,"Residential Consumption","Montana","MT",597 +2008-09-01,"Residential Consumption","Maine","ME",33 +2008-09-01,"Residential Consumption","Florida","FL",742 +2008-09-01,"Residential Consumption","Arkansas","AR",751 +2008-09-01,"Residential Consumption","Colorado","CO",3580 +2008-09-01,"Residential Consumption","Illinois","IL",8579 +2008-09-01,"Residential Consumption","Texas","TX",5559 +2008-09-01,"Residential Consumption","Louisiana","LA",1328 +2008-09-01,"Residential Consumption","Michigan","MI",6396 +2008-09-01,"Residential Consumption","Pennsylvania","PA",4489 +2008-09-01,"Residential Consumption","Washington","WA",2232 +2008-09-01,"Residential Consumption","Delaware","DE",165 +2008-09-01,"Residential Consumption","Alaska","AK",1032 +2008-09-01,"Residential Consumption","South Carolina","SC",531 +2008-09-01,"Residential Consumption","North Carolina","NC",1388 +2008-09-01,"Residential Consumption","Georgia","GA",3477 +2008-09-01,"Residential Consumption","North Dakota","ND",240 +2008-09-01,"Residential Consumption","Arizona","AZ",1145 +2008-09-01,"Residential Consumption","Wyoming","WY",377 +2008-09-01,"Residential Consumption","West Virginia","WV",440 +2008-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2130 +2008-10-01,"Commercial Consumption","New Mexico","NM",1061 +2008-10-01,"Commercial Consumption","New Jersey","NJ",12575 +2008-10-01,"Commercial Consumption","Ohio","OH",8220 +2008-10-01,"Commercial Consumption","Alaska","AK",1617 +2008-10-01,"Commercial Consumption","Indiana","IN",5096 +2008-10-01,"Commercial Consumption","Utah","UT",1440 +2008-10-01,"Commercial Consumption","Virginia","VA",4635 +2008-10-01,"Commercial Consumption","Pennsylvania","PA",7879 +2008-10-01,"Commercial Consumption","Massachusetts","MA",3493 +2008-10-01,"Commercial Consumption","Texas","TX",10434 +2008-10-01,"Commercial Consumption","Michigan","MI",7675 +2008-10-01,"Commercial Consumption","Oklahoma","OK",1508 +2008-10-01,"Commercial Consumption","Wisconsin","WI",5215 +2008-10-01,"Commercial Consumption","U.S.","U.S.",185477 +2008-10-01,"Commercial Consumption","Idaho","ID",1014 +2008-10-01,"Commercial Consumption","Washington","WA",3261 +2008-10-01,"Commercial Consumption","South Carolina","SC",1958 +2008-10-01,"Commercial Consumption","North Dakota","ND",631 +2008-10-01,"Commercial Consumption","Colorado","CO",3808 +2008-10-01,"Commercial Consumption","Kentucky","KY",1749 +2008-10-01,"Commercial Consumption","Iowa","IA",3191 +2008-10-01,"Commercial Consumption","California","CA",18682 +2008-10-01,"Commercial Consumption","Nevada","NV",1937 +2008-10-01,"Commercial Consumption","Illinois","IL",12062 +2008-10-01,"Commercial Consumption","West Virginia","WV",1725 +2008-10-01,"Commercial Consumption","Oregon","OR",1607 +2008-10-01,"Commercial Consumption","South Dakota","SD",612 +2008-10-01,"Commercial Consumption","Maine","ME",362 +2008-10-01,"Commercial Consumption","Georgia","GA",3239 +2008-10-01,"Commercial Consumption","Florida","FL",3568 +2008-10-01,"Commercial Consumption","Connecticut","CT",2113 +2008-10-01,"Commercial Consumption","Arizona","AZ",2026 +2008-10-01,"Commercial Consumption","Louisiana","LA",1649 +2008-10-01,"Commercial Consumption","Kansas","KS",1195 +2008-10-01,"Commercial Consumption","Vermont","VT",115 +2008-10-01,"Commercial Consumption","Rhode Island","RI",367 +2008-10-01,"Commercial Consumption","Hawaii","HI",142 +2008-10-01,"Commercial Consumption","Delaware","DE",481 +2008-10-01,"Commercial Consumption","Tennessee","TN",2785 +2008-10-01,"Commercial Consumption","Wyoming","WY",610 +2008-10-01,"Commercial Consumption","Maryland","MD",5127 +2008-10-01,"Commercial Consumption","Arkansas","AR",2271 +2008-10-01,"Commercial Consumption","Alabama","AL",1304 +2008-10-01,"Commercial Consumption","New York","NY",17140 +2008-10-01,"Commercial Consumption","District of Columbia","DC",1225 +2008-10-01,"Commercial Consumption","North Carolina","NC",4602 +2008-10-01,"Commercial Consumption","Minnesota","MN",4807 +2008-10-01,"Commercial Consumption","Missouri","MO",2614 +2008-10-01,"Commercial Consumption","New Hampshire","NH",709 +2008-10-01,"Commercial Consumption","Montana","MT",792 +2008-10-01,"Commercial Consumption","Nebraska","NE",1846 +2008-10-01,"Commercial Consumption","Mississippi","MS",1307 +2008-10-01,"Delivered to Consumers","Idaho","ID",6014 +2008-10-01,"Delivered to Consumers","Florida","FL",78114 +2008-10-01,"Delivered to Consumers","Utah","UT",11249 +2008-10-01,"Delivered to Consumers","South Dakota","SD",3750 +2008-10-01,"Delivered to Consumers","Oklahoma","OK",41929 +2008-10-01,"Delivered to Consumers","Alabama","AL",26998 +2008-10-01,"Delivered to Consumers","Massachusetts","MA",26229 +2008-10-01,"Delivered to Consumers","South Carolina","SC",12419 +2008-10-01,"Delivered to Consumers","District of Columbia","DC",2022 +2008-10-01,"Delivered to Consumers","Delaware","DE",2937 +2008-10-01,"Delivered to Consumers","Kansas","KS",13264 +2008-10-01,"Delivered to Consumers","Kentucky","KY",12133 +2008-10-01,"Delivered to Consumers","Colorado","CO",32281 +2008-10-01,"Delivered to Consumers","Oregon","OR",20645 +2008-10-01,"Delivered to Consumers","New Hampshire","NH",5548 +2008-10-01,"Delivered to Consumers","Vermont","VT",480 +2008-10-01,"Delivered to Consumers","Rhode Island","RI",6433 +2008-10-01,"Delivered to Consumers","New York","NY",75141 +2008-10-01,"Delivered to Consumers","Connecticut","CT",12106 +2008-10-01,"Delivered to Consumers","North Carolina","NC",18408 +2008-10-01,"Delivered to Consumers","California","CA",187051 +2008-10-01,"Delivered to Consumers","Nevada","NV",19767 +2008-10-01,"Delivered to Consumers","Louisiana","LA",91028 +2008-10-01,"Delivered to Consumers","Georgia","GA",30900 +2008-10-01,"Delivered to Consumers","Indiana","IN",33987 +2008-10-01,"Delivered to Consumers","Wisconsin","WI",26065 +2008-10-01,"Delivered to Consumers","Pennsylvania","PA",46133 +2008-10-01,"Delivered to Consumers","West Virginia","WV",5605 +2008-10-01,"Delivered to Consumers","Montana","MT",4247 +2008-10-01,"Delivered to Consumers","Hawaii","HI",206 +2008-10-01,"Delivered to Consumers","Alaska","AK",7754 +2008-10-01,"Delivered to Consumers","Michigan","MI",36435 +2008-10-01,"Delivered to Consumers","Virginia","VA",18107 +2008-10-01,"Delivered to Consumers","Mississippi","MS",24303 +2008-10-01,"Delivered to Consumers","Texas","TX",230200 +2008-10-01,"Delivered to Consumers","Washington","WA",19531 +2008-10-01,"Delivered to Consumers","Minnesota","MN",22563 +2008-10-01,"Delivered to Consumers","Wyoming","WY",4922 +2008-10-01,"Delivered to Consumers","Illinois","IL",52062 +2008-10-01,"Delivered to Consumers","Tennessee","TN",11395 +2008-10-01,"Delivered to Consumers","Ohio","OH",41779 +2008-10-01,"Delivered to Consumers","Nebraska","NE",10847 +2008-10-01,"Delivered to Consumers","U.S.","U.S.",1488645 +2008-10-01,"Delivered to Consumers","New Mexico","NM",10112 +2008-10-01,"Delivered to Consumers","Maryland","MD",12394 +2008-10-01,"Delivered to Consumers","Iowa","IA",20496 +2008-10-01,"Delivered to Consumers","Arkansas","AR",15860 +2008-10-01,"Delivered to Consumers","Missouri","MO",15442 +2008-10-01,"Delivered to Consumers","New Jersey","NJ",39578 +2008-10-01,"Delivered to Consumers","Maine","ME",5812 +2008-10-01,"Delivered to Consumers","Arizona","AZ",29837 +2008-10-01,"Delivered to Consumers","North Dakota","ND",3928 +2008-10-01,"Electric Power Consumption","Louisiana","LA",19887 +2008-10-01,"Electric Power Consumption","Texas","TX",105092 +2008-10-01,"Electric Power Consumption","Rhode Island","RI",4804 +2008-10-01,"Electric Power Consumption","Utah","UT",4868 +2008-10-01,"Electric Power Consumption","Oregon","OR",11390 +2008-10-01,"Electric Power Consumption","Missouri","MO",5371 +2008-10-01,"Electric Power Consumption","California","CA",77850 +2008-10-01,"Electric Power Consumption","Illinois","IL",1404 +2008-10-01,"Electric Power Consumption","Massachusetts","MA",13131 +2008-10-01,"Electric Power Consumption","Wisconsin","WI",4314 +2008-10-01,"Electric Power Consumption","North Carolina","NC",3040 +2008-10-01,"Electric Power Consumption","Indiana","IN",1874 +2008-10-01,"Electric Power Consumption","Connecticut","CT",6454 +2008-10-01,"Electric Power Consumption","Georgia","GA",8566 +2008-10-01,"Electric Power Consumption","New Jersey","NJ",10353 +2008-10-01,"Electric Power Consumption","Michigan","MI",4553 +2008-10-01,"Electric Power Consumption","Kansas","KS",1770 +2008-10-01,"Electric Power Consumption","Iowa","IA",1195 +2008-10-01,"Electric Power Consumption","Tennessee","TN",57 +2008-10-01,"Electric Power Consumption","Nebraska","NE",371 +2008-10-01,"Electric Power Consumption","New Hampshire","NH",4012 +2008-10-01,"Electric Power Consumption","Alaska","AK",3725 +2008-10-01,"Electric Power Consumption","Colorado","CO",10029 +2008-10-01,"Electric Power Consumption","Maine","ME",3379 +2008-10-01,"Electric Power Consumption","Nevada","NV",15060 +2008-10-01,"Electric Power Consumption","Wyoming","WY",94 +2008-10-01,"Electric Power Consumption","South Dakota","SD",8 +2008-10-01,"Electric Power Consumption","Mississippi","MS",13968 +2008-10-01,"Electric Power Consumption","Ohio","OH",293 +2008-10-01,"Electric Power Consumption","North Dakota","ND",0 +2008-10-01,"Electric Power Consumption","Arizona","AZ",24779 +2008-10-01,"Electric Power Consumption","Florida","FL",68752 +2008-10-01,"Electric Power Consumption","Alabama","AL",13777 +2008-10-01,"Electric Power Consumption","Virginia","VA",4990 +2008-10-01,"Electric Power Consumption","Idaho","ID",990 +2008-10-01,"Electric Power Consumption","Arkansas","AR",5770 +2008-10-01,"Electric Power Consumption","New York","NY",33147 +2008-10-01,"Electric Power Consumption","Minnesota","MN",1072 +2008-10-01,"Electric Power Consumption","Pennsylvania","PA",14253 +2008-10-01,"Electric Power Consumption","Vermont","VT",5 +2008-10-01,"Electric Power Consumption","Washington","WA",5874 +2008-10-01,"Electric Power Consumption","Oklahoma","OK",22920 +2008-10-01,"Electric Power Consumption","Hawaii","HI",NA +2008-10-01,"Electric Power Consumption","New Mexico","NM",6507 +2008-10-01,"Electric Power Consumption","South Carolina","SC",3887 +2008-10-01,"Electric Power Consumption","West Virginia","WV",62 +2008-10-01,"Electric Power Consumption","U.S.","U.S.",545244 +2008-10-01,"Electric Power Consumption","Kentucky","KY",77 +2008-10-01,"Electric Power Consumption","Montana","MT",35 +2008-10-01,"Electric Power Consumption","Maryland","MD",1053 +2008-10-01,"Electric Power Consumption","Delaware","DE",383 +2008-10-01,"Industrial Consumption","Maryland","MD",1751 +2008-10-01,"Industrial Consumption","Washington","WA",6187 +2008-10-01,"Industrial Consumption","Ohio","OH",18974 +2008-10-01,"Industrial Consumption","Wisconsin","WI",9729 +2008-10-01,"Industrial Consumption","Montana","MT",2309 +2008-10-01,"Industrial Consumption","West Virginia","WV",2300 +2008-10-01,"Industrial Consumption","Vermont","VT",241 +2008-10-01,"Industrial Consumption","Massachusetts","MA",2805 +2008-10-01,"Industrial Consumption","South Dakota","SD",2545 +2008-10-01,"Industrial Consumption","Arizona","AZ",1598 +2008-10-01,"Industrial Consumption","U.S.","U.S.",537665 +2008-10-01,"Industrial Consumption","South Carolina","SC",5517 +2008-10-01,"Industrial Consumption","Tennessee","TN",6875 +2008-10-01,"Industrial Consumption","New Jersey","NJ",4402 +2008-10-01,"Industrial Consumption","Georgia","GA",12276 +2008-10-01,"Industrial Consumption","Alaska","AK",494 +2008-10-01,"Industrial Consumption","North Dakota","ND",2675 +2008-10-01,"Industrial Consumption","Nevada","NV",1087 +2008-10-01,"Industrial Consumption","Mississippi","MS",8210 +2008-10-01,"Industrial Consumption","Wyoming","WY",3480 +2008-10-01,"Industrial Consumption","New Hampshire","NH",432 +2008-10-01,"Industrial Consumption","Florida","FL",4999 +2008-10-01,"Industrial Consumption","Oklahoma","OK",16008 +2008-10-01,"Industrial Consumption","Louisiana","LA",67847 +2008-10-01,"Industrial Consumption","New Mexico","NM",1460 +2008-10-01,"Industrial Consumption","New York","NY",6064 +2008-10-01,"Industrial Consumption","Virginia","VA",4186 +2008-10-01,"Industrial Consumption","Connecticut","CT",1929 +2008-10-01,"Industrial Consumption","Delaware","DE",1796 +2008-10-01,"Industrial Consumption","District of Columbia","DC",0 +2008-10-01,"Industrial Consumption","Colorado","CO",10463 +2008-10-01,"Industrial Consumption","Kansas","KS",8512 +2008-10-01,"Industrial Consumption","Pennsylvania","PA",14020 +2008-10-01,"Industrial Consumption","Maine","ME",2010 +2008-10-01,"Industrial Consumption","Arkansas","AR",6869 +2008-10-01,"Industrial Consumption","Michigan","MI",9779 +2008-10-01,"Industrial Consumption","Kentucky","KY",8009 +2008-10-01,"Industrial Consumption","Illinois","IL",20732 +2008-10-01,"Industrial Consumption","North Carolina","NC",7470 +2008-10-01,"Industrial Consumption","Hawaii","HI",26 +2008-10-01,"Industrial Consumption","Missouri","MO",4878 +2008-10-01,"Industrial Consumption","Utah","UT",2535 +2008-10-01,"Industrial Consumption","Oregon","OR",5823 +2008-10-01,"Industrial Consumption","California","CA",65357 +2008-10-01,"Industrial Consumption","Alabama","AL",10874 +2008-10-01,"Industrial Consumption","Texas","TX",107225 +2008-10-01,"Industrial Consumption","Nebraska","NE",7457 +2008-10-01,"Industrial Consumption","Minnesota","MN",10685 +2008-10-01,"Industrial Consumption","Idaho","ID",2339 +2008-10-01,"Industrial Consumption","Iowa","IA",13332 +2008-10-01,"Industrial Consumption","Indiana","IN",20345 +2008-10-01,"Industrial Consumption","Rhode Island","RI",749 +2008-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101348 +2008-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",45052 +2008-10-01,"Residential Consumption","Oregon","OR",1825 +2008-10-01,"Residential Consumption","North Carolina","NC",3296 +2008-10-01,"Residential Consumption","Mississippi","MS",818 +2008-10-01,"Residential Consumption","Iowa","IA",2779 +2008-10-01,"Residential Consumption","Utah","UT",2405 +2008-10-01,"Residential Consumption","South Dakota","SD",586 +2008-10-01,"Residential Consumption","Massachusetts","MA",6799 +2008-10-01,"Residential Consumption","New Jersey","NJ",12249 +2008-10-01,"Residential Consumption","Missouri","MO",2577 +2008-10-01,"Residential Consumption","Alabama","AL",1044 +2008-10-01,"Residential Consumption","Connecticut","CT",1610 +2008-10-01,"Residential Consumption","Wisconsin","WI",6807 +2008-10-01,"Residential Consumption","Nevada","NV",1683 +2008-10-01,"Residential Consumption","New Mexico","NM",1084 +2008-10-01,"Residential Consumption","Florida","FL",795 +2008-10-01,"Residential Consumption","Delaware","DE",278 +2008-10-01,"Residential Consumption","New York","NY",18790 +2008-10-01,"Residential Consumption","Tennessee","TN",1678 +2008-10-01,"Residential Consumption","Minnesota","MN",5998 +2008-10-01,"Residential Consumption","Pennsylvania","PA",9980 +2008-10-01,"Residential Consumption","Maine","ME",61 +2008-10-01,"Residential Consumption","North Dakota","ND",623 +2008-10-01,"Residential Consumption","New Hampshire","NH",395 +2008-10-01,"Residential Consumption","Illinois","IL",17864 +2008-10-01,"Residential Consumption","Ohio","OH",14292 +2008-10-01,"Residential Consumption","Vermont","VT",119 +2008-10-01,"Residential Consumption","Nebraska","NE",1173 +2008-10-01,"Residential Consumption","Georgia","GA",6819 +2008-10-01,"Residential Consumption","Washington","WA",4209 +2008-10-01,"Residential Consumption","West Virginia","WV",1519 +2008-10-01,"Residential Consumption","South Carolina","SC",1057 +2008-10-01,"Residential Consumption","Hawaii","HI",38 +2008-10-01,"Residential Consumption","Virginia","VA",4295 +2008-10-01,"Residential Consumption","Kansas","KS",1786 +2008-10-01,"Residential Consumption","Oklahoma","OK",1493 +2008-10-01,"Residential Consumption","U.S.","U.S.",218058 +2008-10-01,"Residential Consumption","Texas","TX",7449 +2008-10-01,"Residential Consumption","Maryland","MD",4464 +2008-10-01,"Residential Consumption","Idaho","ID",1671 +2008-10-01,"Residential Consumption","Arkansas","AR",950 +2008-10-01,"Residential Consumption","Kentucky","KY",2298 +2008-10-01,"Residential Consumption","Colorado","CO",7982 +2008-10-01,"Residential Consumption","Arizona","AZ",1435 +2008-10-01,"Residential Consumption","Alaska","AK",1918 +2008-10-01,"Residential Consumption","Rhode Island","RI",513 +2008-10-01,"Residential Consumption","Louisiana","LA",1646 +2008-10-01,"Residential Consumption","Michigan","MI",14428 +2008-10-01,"Residential Consumption","District of Columbia","DC",797 +2008-10-01,"Residential Consumption","Indiana","IN",6672 +2008-10-01,"Residential Consumption","Montana","MT",1112 +2008-10-01,"Residential Consumption","California","CA",25162 +2008-10-01,"Residential Consumption","Wyoming","WY",738 +2008-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2201 +2008-11-01,"Commercial Consumption","West Virginia","WV",2575 +2008-11-01,"Commercial Consumption","Oklahoma","OK",2413 +2008-11-01,"Commercial Consumption","U.S.","U.S.",275603 +2008-11-01,"Commercial Consumption","Idaho","ID",1458 +2008-11-01,"Commercial Consumption","Arkansas","AR",2843 +2008-11-01,"Commercial Consumption","South Carolina","SC",2255 +2008-11-01,"Commercial Consumption","Kentucky","KY",3789 +2008-11-01,"Commercial Consumption","Georgia","GA",5954 +2008-11-01,"Commercial Consumption","Alaska","AK",1792 +2008-11-01,"Commercial Consumption","Alabama","AL",1951 +2008-11-01,"Commercial Consumption","District of Columbia","DC",1821 +2008-11-01,"Commercial Consumption","Wyoming","WY",908 +2008-11-01,"Commercial Consumption","South Dakota","SD",1141 +2008-11-01,"Commercial Consumption","New Jersey","NJ",16948 +2008-11-01,"Commercial Consumption","New York","NY",25162 +2008-11-01,"Commercial Consumption","Nevada","NV",2221 +2008-11-01,"Commercial Consumption","Colorado","CO",6295 +2008-11-01,"Commercial Consumption","Pennsylvania","PA",13470 +2008-11-01,"Commercial Consumption","Wisconsin","WI",9443 +2008-11-01,"Commercial Consumption","Rhode Island","RI",750 +2008-11-01,"Commercial Consumption","Connecticut","CT",3254 +2008-11-01,"Commercial Consumption","Nebraska","NE",2528 +2008-11-01,"Commercial Consumption","Louisiana","LA",1768 +2008-11-01,"Commercial Consumption","North Carolina","NC",5251 +2008-11-01,"Commercial Consumption","Montana","MT",1031 +2008-11-01,"Commercial Consumption","Maine","ME",597 +2008-11-01,"Commercial Consumption","Maryland","MD",6848 +2008-11-01,"Commercial Consumption","Vermont","VT",193 +2008-11-01,"Commercial Consumption","Mississippi","MS",1662 +2008-11-01,"Commercial Consumption","Tennessee","TN",4576 +2008-11-01,"Commercial Consumption","Illinois","IL",19638 +2008-11-01,"Commercial Consumption","Utah","UT",2655 +2008-11-01,"Commercial Consumption","New Mexico","NM",1882 +2008-11-01,"Commercial Consumption","Massachusetts","MA",6267 +2008-11-01,"Commercial Consumption","Kansas","KS",2307 +2008-11-01,"Commercial Consumption","Ohio","OH",15650 +2008-11-01,"Commercial Consumption","Iowa","IA",5726 +2008-11-01,"Commercial Consumption","California","CA",17894 +2008-11-01,"Commercial Consumption","North Dakota","ND",1218 +2008-11-01,"Commercial Consumption","Minnesota","MN",9016 +2008-11-01,"Commercial Consumption","Oregon","OR",2259 +2008-11-01,"Commercial Consumption","Texas","TX",12193 +2008-11-01,"Commercial Consumption","Delaware","DE",891 +2008-11-01,"Commercial Consumption","Indiana","IN",8963 +2008-11-01,"Commercial Consumption","Washington","WA",4298 +2008-11-01,"Commercial Consumption","Virginia","VA",7375 +2008-11-01,"Commercial Consumption","Missouri","MO",4764 +2008-11-01,"Commercial Consumption","New Hampshire","NH",1019 +2008-11-01,"Commercial Consumption","Florida","FL",4209 +2008-11-01,"Commercial Consumption","Hawaii","HI",141 +2008-11-01,"Commercial Consumption","Arizona","AZ",2541 +2008-11-01,"Commercial Consumption","Michigan","MI",13803 +2008-11-01,"Delivered to Consumers","Michigan","MI",59847 +2008-11-01,"Delivered to Consumers","Iowa","IA",28090 +2008-11-01,"Delivered to Consumers","Nebraska","NE",13250 +2008-11-01,"Delivered to Consumers","U.S.","U.S.",1714971 +2008-11-01,"Delivered to Consumers","Delaware","DE",4178 +2008-11-01,"Delivered to Consumers","Vermont","VT",702 +2008-11-01,"Delivered to Consumers","Montana","MT",5311 +2008-11-01,"Delivered to Consumers","Virginia","VA",24995 +2008-11-01,"Delivered to Consumers","Oregon","OR",21364 +2008-11-01,"Delivered to Consumers","Nevada","NV",19038 +2008-11-01,"Delivered to Consumers","New Jersey","NJ",57828 +2008-11-01,"Delivered to Consumers","Georgia","GA",40166 +2008-11-01,"Delivered to Consumers","Arizona","AZ",23194 +2008-11-01,"Delivered to Consumers","Utah","UT",14386 +2008-11-01,"Delivered to Consumers","Indiana","IN",47500 +2008-11-01,"Delivered to Consumers","Maryland","MD",20316 +2008-11-01,"Delivered to Consumers","Idaho","ID",6853 +2008-11-01,"Delivered to Consumers","Kentucky","KY",18142 +2008-11-01,"Delivered to Consumers","North Carolina","NC",25102 +2008-11-01,"Delivered to Consumers","New Hampshire","NH",6443 +2008-11-01,"Delivered to Consumers","New Mexico","NM",10571 +2008-11-01,"Delivered to Consumers","Hawaii","HI",204 +2008-11-01,"Delivered to Consumers","Wisconsin","WI",37029 +2008-11-01,"Delivered to Consumers","California","CA",179314 +2008-11-01,"Delivered to Consumers","Minnesota","MN",36467 +2008-11-01,"Delivered to Consumers","Wyoming","WY",5595 +2008-11-01,"Delivered to Consumers","Alaska","AK",8799 +2008-11-01,"Delivered to Consumers","Alabama","AL",32034 +2008-11-01,"Delivered to Consumers","Mississippi","MS",23707 +2008-11-01,"Delivered to Consumers","Missouri","MO",22744 +2008-11-01,"Delivered to Consumers","South Dakota","SD",5286 +2008-11-01,"Delivered to Consumers","Colorado","CO",38528 +2008-11-01,"Delivered to Consumers","Texas","TX",212172 +2008-11-01,"Delivered to Consumers","Maine","ME",6785 +2008-11-01,"Delivered to Consumers","Louisiana","LA",89145 +2008-11-01,"Delivered to Consumers","Florida","FL",62402 +2008-11-01,"Delivered to Consumers","Illinois","IL",78310 +2008-11-01,"Delivered to Consumers","New York","NY",96486 +2008-11-01,"Delivered to Consumers","Massachusetts","MA",36922 +2008-11-01,"Delivered to Consumers","South Carolina","SC",15056 +2008-11-01,"Delivered to Consumers","Washington","WA",21589 +2008-11-01,"Delivered to Consumers","North Dakota","ND",4387 +2008-11-01,"Delivered to Consumers","West Virginia","WV",8633 +2008-11-01,"Delivered to Consumers","Rhode Island","RI",5614 +2008-11-01,"Delivered to Consumers","Oklahoma","OK",42044 +2008-11-01,"Delivered to Consumers","Kansas","KS",17976 +2008-11-01,"Delivered to Consumers","Tennessee","TN",17768 +2008-11-01,"Delivered to Consumers","Ohio","OH",69056 +2008-11-01,"Delivered to Consumers","Connecticut","CT",13148 +2008-11-01,"Delivered to Consumers","Arkansas","AR",15568 +2008-11-01,"Delivered to Consumers","Pennsylvania","PA",59315 +2008-11-01,"Delivered to Consumers","District of Columbia","DC",3480 +2008-11-01,"Electric Power Consumption","Idaho","ID",811 +2008-11-01,"Electric Power Consumption","New York","NY",28179 +2008-11-01,"Electric Power Consumption","West Virginia","WV",141 +2008-11-01,"Electric Power Consumption","Iowa","IA",1411 +2008-11-01,"Electric Power Consumption","Vermont","VT",6 +2008-11-01,"Electric Power Consumption","Tennessee","TN",223 +2008-11-01,"Electric Power Consumption","Arizona","AZ",16681 +2008-11-01,"Electric Power Consumption","Florida","FL",52536 +2008-11-01,"Electric Power Consumption","New Jersey","NJ",11780 +2008-11-01,"Electric Power Consumption","Illinois","IL",1374 +2008-11-01,"Electric Power Consumption","Michigan","MI",4986 +2008-11-01,"Electric Power Consumption","Massachusetts","MA",13675 +2008-11-01,"Electric Power Consumption","Pennsylvania","PA",9532 +2008-11-01,"Electric Power Consumption","Maine","ME",3912 +2008-11-01,"Electric Power Consumption","New Hampshire","NH",4235 +2008-11-01,"Electric Power Consumption","Virginia","VA",3573 +2008-11-01,"Electric Power Consumption","Colorado","CO",8453 +2008-11-01,"Electric Power Consumption","South Carolina","SC",3707 +2008-11-01,"Electric Power Consumption","Kansas","KS",2163 +2008-11-01,"Electric Power Consumption","Washington","WA",4655 +2008-11-01,"Electric Power Consumption","Oklahoma","OK",17923 +2008-11-01,"Electric Power Consumption","Utah","UT",4347 +2008-11-01,"Electric Power Consumption","Wisconsin","WI",1903 +2008-11-01,"Electric Power Consumption","Missouri","MO",4650 +2008-11-01,"Electric Power Consumption","Connecticut","CT",4108 +2008-11-01,"Electric Power Consumption","Louisiana","LA",14897 +2008-11-01,"Electric Power Consumption","Arkansas","AR",3659 +2008-11-01,"Electric Power Consumption","Minnesota","MN",1808 +2008-11-01,"Electric Power Consumption","Kentucky","KY",219 +2008-11-01,"Electric Power Consumption","Montana","MT",30 +2008-11-01,"Electric Power Consumption","Georgia","GA",7918 +2008-11-01,"Electric Power Consumption","California","CA",68314 +2008-11-01,"Electric Power Consumption","U.S.","U.S.",457591 +2008-11-01,"Electric Power Consumption","South Dakota","SD",56 +2008-11-01,"Electric Power Consumption","Nebraska","NE",670 +2008-11-01,"Electric Power Consumption","North Carolina","NC",2877 +2008-11-01,"Electric Power Consumption","Delaware","DE",696 +2008-11-01,"Electric Power Consumption","Alabama","AL",15854 +2008-11-01,"Electric Power Consumption","Alaska","AK",3875 +2008-11-01,"Electric Power Consumption","Nevada","NV",13320 +2008-11-01,"Electric Power Consumption","Maryland","MD",2305 +2008-11-01,"Electric Power Consumption","Indiana","IN",2106 +2008-11-01,"Electric Power Consumption","New Mexico","NM",5039 +2008-11-01,"Electric Power Consumption","Texas","TX",82654 +2008-11-01,"Electric Power Consumption","Rhode Island","RI",3337 +2008-11-01,"Electric Power Consumption","Oregon","OR",10298 +2008-11-01,"Electric Power Consumption","Wyoming","WY",86 +2008-11-01,"Electric Power Consumption","Mississippi","MS",11427 +2008-11-01,"Electric Power Consumption","Hawaii","HI",NA +2008-11-01,"Electric Power Consumption","Ohio","OH",1182 +2008-11-01,"Electric Power Consumption","North Dakota","ND",0 +2008-11-01,"Industrial Consumption","Missouri","MO",5391 +2008-11-01,"Industrial Consumption","South Dakota","SD",2844 +2008-11-01,"Industrial Consumption","Ohio","OH",21369 +2008-11-01,"Industrial Consumption","New York","NY",7072 +2008-11-01,"Industrial Consumption","Nevada","NV",1006 +2008-11-01,"Industrial Consumption","Maine","ME",2169 +2008-11-01,"Industrial Consumption","Iowa","IA",14831 +2008-11-01,"Industrial Consumption","Florida","FL",4445 +2008-11-01,"Industrial Consumption","Kansas","KS",8878 +2008-11-01,"Industrial Consumption","Texas","TX",103814 +2008-11-01,"Industrial Consumption","Wisconsin","WI",11203 +2008-11-01,"Industrial Consumption","Connecticut","CT",2087 +2008-11-01,"Industrial Consumption","Kentucky","KY",8157 +2008-11-01,"Industrial Consumption","Rhode Island","RI",480 +2008-11-01,"Industrial Consumption","Montana","MT",2395 +2008-11-01,"Industrial Consumption","Arizona","AZ",1770 +2008-11-01,"Industrial Consumption","U.S.","U.S.",546277 +2008-11-01,"Industrial Consumption","Mississippi","MS",8417 +2008-11-01,"Industrial Consumption","California","CA",61486 +2008-11-01,"Industrial Consumption","Indiana","IN",20410 +2008-11-01,"Industrial Consumption","Illinois","IL",21437 +2008-11-01,"Industrial Consumption","Georgia","GA",11865 +2008-11-01,"Industrial Consumption","Massachusetts","MA",3658 +2008-11-01,"Industrial Consumption","Louisiana","LA",69601 +2008-11-01,"Industrial Consumption","Washington","WA",5550 +2008-11-01,"Industrial Consumption","Utah","UT",2738 +2008-11-01,"Industrial Consumption","Vermont","VT",271 +2008-11-01,"Industrial Consumption","Michigan","MI",11017 +2008-11-01,"Industrial Consumption","District of Columbia","DC",0 +2008-11-01,"Industrial Consumption","New Mexico","NM",1432 +2008-11-01,"Industrial Consumption","Alabama","AL",11623 +2008-11-01,"Industrial Consumption","Virginia","VA",4363 +2008-11-01,"Industrial Consumption","New Hampshire","NH",502 +2008-11-01,"Industrial Consumption","North Dakota","ND",1965 +2008-11-01,"Industrial Consumption","Arkansas","AR",6597 +2008-11-01,"Industrial Consumption","Idaho","ID",1918 +2008-11-01,"Industrial Consumption","North Carolina","NC",7450 +2008-11-01,"Industrial Consumption","Hawaii","HI",23 +2008-11-01,"Industrial Consumption","Oklahoma","OK",17882 +2008-11-01,"Industrial Consumption","Colorado","CO",10733 +2008-11-01,"Industrial Consumption","West Virginia","WV",2731 +2008-11-01,"Industrial Consumption","Wyoming","WY",3394 +2008-11-01,"Industrial Consumption","Tennessee","TN",6939 +2008-11-01,"Industrial Consumption","Alaska","AK",551 +2008-11-01,"Industrial Consumption","Maryland","MD",1539 +2008-11-01,"Industrial Consumption","Pennsylvania","PA",15098 +2008-11-01,"Industrial Consumption","Oregon","OR",5534 +2008-11-01,"Industrial Consumption","South Carolina","SC",5263 +2008-11-01,"Industrial Consumption","Nebraska","NE",7426 +2008-11-01,"Industrial Consumption","New Jersey","NJ",4545 +2008-11-01,"Industrial Consumption","Minnesota","MN",12702 +2008-11-01,"Industrial Consumption","Delaware","DE",1708 +2008-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",101561 +2008-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",51903 +2008-11-01,"Residential Consumption","Ohio","OH",30856 +2008-11-01,"Residential Consumption","Wisconsin","WI",14480 +2008-11-01,"Residential Consumption","North Dakota","ND",1203 +2008-11-01,"Residential Consumption","New Jersey","NJ",24556 +2008-11-01,"Residential Consumption","Montana","MT",1855 +2008-11-01,"Residential Consumption","Delaware","DE",882 +2008-11-01,"Residential Consumption","Connecticut","CT",3699 +2008-11-01,"Residential Consumption","Tennessee","TN",6030 +2008-11-01,"Residential Consumption","Virginia","VA",9684 +2008-11-01,"Residential Consumption","New Hampshire","NH",688 +2008-11-01,"Residential Consumption","Arizona","AZ",2202 +2008-11-01,"Residential Consumption","South Carolina","SC",3831 +2008-11-01,"Residential Consumption","Oregon","OR",3274 +2008-11-01,"Residential Consumption","Mississippi","MS",2201 +2008-11-01,"Residential Consumption","District of Columbia","DC",1660 +2008-11-01,"Residential Consumption","Florida","FL",1212 +2008-11-01,"Residential Consumption","Colorado","CO",13048 +2008-11-01,"Residential Consumption","Oklahoma","OK",3826 +2008-11-01,"Residential Consumption","California","CA",31620 +2008-11-01,"Residential Consumption","New York","NY",36074 +2008-11-01,"Residential Consumption","Texas","TX",13512 +2008-11-01,"Residential Consumption","Louisiana","LA",2880 +2008-11-01,"Residential Consumption","Hawaii","HI",40 +2008-11-01,"Residential Consumption","Minnesota","MN",12941 +2008-11-01,"Residential Consumption","Maine","ME",108 +2008-11-01,"Residential Consumption","Indiana","IN",16021 +2008-11-01,"Residential Consumption","Kentucky","KY",5977 +2008-11-01,"Residential Consumption","Kansas","KS",4627 +2008-11-01,"Residential Consumption","Missouri","MO",7939 +2008-11-01,"Residential Consumption","Alabama","AL",2606 +2008-11-01,"Residential Consumption","Rhode Island","RI",1048 +2008-11-01,"Residential Consumption","Iowa","IA",6122 +2008-11-01,"Residential Consumption","Utah","UT",4645 +2008-11-01,"Residential Consumption","Nebraska","NE",2626 +2008-11-01,"Residential Consumption","Michigan","MI",30041 +2008-11-01,"Residential Consumption","Nevada","NV",2491 +2008-11-01,"Residential Consumption","New Mexico","NM",2219 +2008-11-01,"Residential Consumption","Idaho","ID",2665 +2008-11-01,"Residential Consumption","Washington","WA",7086 +2008-11-01,"Residential Consumption","West Virginia","WV",3186 +2008-11-01,"Residential Consumption","North Carolina","NC",9524 +2008-11-01,"Residential Consumption","Maryland","MD",9623 +2008-11-01,"Residential Consumption","South Dakota","SD",1245 +2008-11-01,"Residential Consumption","Georgia","GA",14429 +2008-11-01,"Residential Consumption","Pennsylvania","PA",21215 +2008-11-01,"Residential Consumption","Massachusetts","MA",13322 +2008-11-01,"Residential Consumption","Wyoming","WY",1207 +2008-11-01,"Residential Consumption","Vermont","VT",233 +2008-11-01,"Residential Consumption","Arkansas","AR",2469 +2008-11-01,"Residential Consumption","Alaska","AK",2581 +2008-11-01,"Residential Consumption","U.S.","U.S.",433370 +2008-11-01,"Residential Consumption","Illinois","IL",35861 +2008-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2130 +2008-12-01,"Commercial Consumption","Wisconsin","WI",15761 +2008-12-01,"Commercial Consumption","Vermont","VT",337 +2008-12-01,"Commercial Consumption","North Carolina","NC",6241 +2008-12-01,"Commercial Consumption","Virginia","VA",9103 +2008-12-01,"Commercial Consumption","Missouri","MO",9185 +2008-12-01,"Commercial Consumption","New Hampshire","NH",1325 +2008-12-01,"Commercial Consumption","Georgia","GA",7210 +2008-12-01,"Commercial Consumption","Florida","FL",4867 +2008-12-01,"Commercial Consumption","Ohio","OH",25944 +2008-12-01,"Commercial Consumption","Arizona","AZ",3470 +2008-12-01,"Commercial Consumption","Michigan","MI",24164 +2008-12-01,"Commercial Consumption","Louisiana","LA",2375 +2008-12-01,"Commercial Consumption","Washington","WA",7332 +2008-12-01,"Commercial Consumption","Oregon","OR",3777 +2008-12-01,"Commercial Consumption","Kentucky","KY",5817 +2008-12-01,"Commercial Consumption","Rhode Island","RI",1037 +2008-12-01,"Commercial Consumption","Idaho","ID",2434 +2008-12-01,"Commercial Consumption","Colorado","CO",10419 +2008-12-01,"Commercial Consumption","Oklahoma","OK",5083 +2008-12-01,"Commercial Consumption","Maine","ME",688 +2008-12-01,"Commercial Consumption","Texas","TX",19510 +2008-12-01,"Commercial Consumption","Maryland","MD",9061 +2008-12-01,"Commercial Consumption","Alaska","AK",2205 +2008-12-01,"Commercial Consumption","Arkansas","AR",4675 +2008-12-01,"Commercial Consumption","New York","NY",34881 +2008-12-01,"Commercial Consumption","Illinois","IL",33878 +2008-12-01,"Commercial Consumption","District of Columbia","DC",2493 +2008-12-01,"Commercial Consumption","Wyoming","WY",1386 +2008-12-01,"Commercial Consumption","Nevada","NV",3001 +2008-12-01,"Commercial Consumption","West Virginia","WV",3341 +2008-12-01,"Commercial Consumption","North Dakota","ND",2005 +2008-12-01,"Commercial Consumption","Minnesota","MN",15979 +2008-12-01,"Commercial Consumption","Utah","UT",4098 +2008-12-01,"Commercial Consumption","Pennsylvania","PA",21452 +2008-12-01,"Commercial Consumption","Massachusetts","MA",9999 +2008-12-01,"Commercial Consumption","South Dakota","SD",1885 +2008-12-01,"Commercial Consumption","U.S.","U.S.",422761 +2008-12-01,"Commercial Consumption","Hawaii","HI",147 +2008-12-01,"Commercial Consumption","Connecticut","CT",4754 +2008-12-01,"Commercial Consumption","Delaware","DE",1266 +2008-12-01,"Commercial Consumption","Tennessee","TN",7546 +2008-12-01,"Commercial Consumption","Indiana","IN",13859 +2008-12-01,"Commercial Consumption","South Carolina","SC",2398 +2008-12-01,"Commercial Consumption","Montana","MT",1971 +2008-12-01,"Commercial Consumption","Iowa","IA",8548 +2008-12-01,"Commercial Consumption","Nebraska","NE",4180 +2008-12-01,"Commercial Consumption","New Mexico","NM",2756 +2008-12-01,"Commercial Consumption","New Jersey","NJ",23030 +2008-12-01,"Commercial Consumption","Kansas","KS",4992 +2008-12-01,"Commercial Consumption","California","CA",24889 +2008-12-01,"Commercial Consumption","Alabama","AL",3253 +2008-12-01,"Commercial Consumption","Mississippi","MS",2756 +2008-12-01,"Delivered to Consumers","South Dakota","SD",7304 +2008-12-01,"Delivered to Consumers","Michigan","MI",98089 +2008-12-01,"Delivered to Consumers","Wisconsin","WI",57404 +2008-12-01,"Delivered to Consumers","Mississippi","MS",25201 +2008-12-01,"Delivered to Consumers","South Carolina","SC",15033 +2008-12-01,"Delivered to Consumers","Louisiana","LA",83836 +2008-12-01,"Delivered to Consumers","District of Columbia","DC",4714 +2008-12-01,"Delivered to Consumers","New Mexico","NM",14986 +2008-12-01,"Delivered to Consumers","Delaware","DE",5239 +2008-12-01,"Delivered to Consumers","Colorado","CO",55923 +2008-12-01,"Delivered to Consumers","Utah","UT",19141 +2008-12-01,"Delivered to Consumers","Vermont","VT",1084 +2008-12-01,"Delivered to Consumers","Ohio","OH",103876 +2008-12-01,"Delivered to Consumers","Arkansas","AR",21632 +2008-12-01,"Delivered to Consumers","Georgia","GA",41352 +2008-12-01,"Delivered to Consumers","Maryland","MD",25502 +2008-12-01,"Delivered to Consumers","Tennessee","TN",27568 +2008-12-01,"Delivered to Consumers","Kentucky","KY",24552 +2008-12-01,"Delivered to Consumers","Nebraska","NE",17360 +2008-12-01,"Delivered to Consumers","California","CA",226118 +2008-12-01,"Delivered to Consumers","North Dakota","ND",5369 +2008-12-01,"Delivered to Consumers","Florida","FL",60253 +2008-12-01,"Delivered to Consumers","U.S.","U.S.",2226478 +2008-12-01,"Delivered to Consumers","Wyoming","WY",7419 +2008-12-01,"Delivered to Consumers","West Virginia","WV",10559 +2008-12-01,"Delivered to Consumers","Oregon","OR",27338 +2008-12-01,"Delivered to Consumers","New Hampshire","NH",6692 +2008-12-01,"Delivered to Consumers","Minnesota","MN",57455 +2008-12-01,"Delivered to Consumers","Rhode Island","RI",7492 +2008-12-01,"Delivered to Consumers","Alaska","AK",9453 +2008-12-01,"Delivered to Consumers","Idaho","ID",10599 +2008-12-01,"Delivered to Consumers","Connecticut","CT",17393 +2008-12-01,"Delivered to Consumers","Arizona","AZ",28443 +2008-12-01,"Delivered to Consumers","Indiana","IN",67443 +2008-12-01,"Delivered to Consumers","Illinois","IL",137991 +2008-12-01,"Delivered to Consumers","New York","NY",127399 +2008-12-01,"Delivered to Consumers","Kansas","KS",28571 +2008-12-01,"Delivered to Consumers","Iowa","IA",38424 +2008-12-01,"Delivered to Consumers","Alabama","AL",30757 +2008-12-01,"Delivered to Consumers","Virginia","VA",32372 +2008-12-01,"Delivered to Consumers","Texas","TX",244771 +2008-12-01,"Delivered to Consumers","New Jersey","NJ",72663 +2008-12-01,"Delivered to Consumers","Maine","ME",6712 +2008-12-01,"Delivered to Consumers","Montana","MT",8565 +2008-12-01,"Delivered to Consumers","Hawaii","HI",216 +2008-12-01,"Delivered to Consumers","Oklahoma","OK",52793 +2008-12-01,"Delivered to Consumers","Pennsylvania","PA",84676 +2008-12-01,"Delivered to Consumers","North Carolina","NC",25949 +2008-12-01,"Delivered to Consumers","Missouri","MO",37939 +2008-12-01,"Delivered to Consumers","Massachusetts","MA",45568 +2008-12-01,"Delivered to Consumers","Nevada","NV",24842 +2008-12-01,"Delivered to Consumers","Washington","WA",32246 +2008-12-01,"Electric Power Consumption","Minnesota","MN",4054 +2008-12-01,"Electric Power Consumption","West Virginia","WV",167 +2008-12-01,"Electric Power Consumption","Vermont","VT",5 +2008-12-01,"Electric Power Consumption","North Carolina","NC",1540 +2008-12-01,"Electric Power Consumption","Montana","MT",54 +2008-12-01,"Electric Power Consumption","Georgia","GA",4995 +2008-12-01,"Electric Power Consumption","California","CA",74486 +2008-12-01,"Electric Power Consumption","Washington","WA",6212 +2008-12-01,"Electric Power Consumption","Texas","TX",92039 +2008-12-01,"Electric Power Consumption","Nevada","NV",15634 +2008-12-01,"Electric Power Consumption","Iowa","IA",2203 +2008-12-01,"Electric Power Consumption","Tennessee","TN",209 +2008-12-01,"Electric Power Consumption","Nebraska","NE",675 +2008-12-01,"Electric Power Consumption","Virginia","VA",5006 +2008-12-01,"Electric Power Consumption","New Jersey","NJ",9013 +2008-12-01,"Electric Power Consumption","Colorado","CO",9288 +2008-12-01,"Electric Power Consumption","Michigan","MI",6891 +2008-12-01,"Electric Power Consumption","Wisconsin","WI",2840 +2008-12-01,"Electric Power Consumption","Hawaii","HI",NA +2008-12-01,"Electric Power Consumption","North Dakota","ND",0 +2008-12-01,"Electric Power Consumption","Connecticut","CT",4253 +2008-12-01,"Electric Power Consumption","Louisiana","LA",16425 +2008-12-01,"Electric Power Consumption","Illinois","IL",2802 +2008-12-01,"Electric Power Consumption","Kansas","KS",2453 +2008-12-01,"Electric Power Consumption","South Dakota","SD",118 +2008-12-01,"Electric Power Consumption","Alaska","AK",3817 +2008-12-01,"Electric Power Consumption","New Mexico","NM",6564 +2008-12-01,"Electric Power Consumption","Idaho","ID",1344 +2008-12-01,"Electric Power Consumption","Arkansas","AR",3815 +2008-12-01,"Electric Power Consumption","Oklahoma","OK",23009 +2008-12-01,"Electric Power Consumption","Oregon","OR",11769 +2008-12-01,"Electric Power Consumption","Missouri","MO",3965 +2008-12-01,"Electric Power Consumption","Maine","ME",3358 +2008-12-01,"Electric Power Consumption","Indiana","IN",2589 +2008-12-01,"Electric Power Consumption","Arizona","AZ",18623 +2008-12-01,"Electric Power Consumption","New York","NY",26446 +2008-12-01,"Electric Power Consumption","U.S.","U.S.",476394 +2008-12-01,"Electric Power Consumption","Rhode Island","RI",4006 +2008-12-01,"Electric Power Consumption","Ohio","OH",1789 +2008-12-01,"Electric Power Consumption","New Hampshire","NH",3676 +2008-12-01,"Electric Power Consumption","South Carolina","SC",3006 +2008-12-01,"Electric Power Consumption","Utah","UT",4561 +2008-12-01,"Electric Power Consumption","Massachusetts","MA",11876 +2008-12-01,"Electric Power Consumption","Pennsylvania","PA",10371 +2008-12-01,"Electric Power Consumption","Wyoming","WY",100 +2008-12-01,"Electric Power Consumption","Mississippi","MS",9868 +2008-12-01,"Electric Power Consumption","Kentucky","KY",451 +2008-12-01,"Electric Power Consumption","Maryland","MD",813 +2008-12-01,"Electric Power Consumption","Delaware","DE",733 +2008-12-01,"Electric Power Consumption","Florida","FL",48352 +2008-12-01,"Electric Power Consumption","Alabama","AL",10127 +2008-12-01,"Industrial Consumption","Vermont","VT",321 +2008-12-01,"Industrial Consumption","New Jersey","NJ",4839 +2008-12-01,"Industrial Consumption","North Carolina","NC",6981 +2008-12-01,"Industrial Consumption","Massachusetts","MA",4597 +2008-12-01,"Industrial Consumption","Oklahoma","OK",14509 +2008-12-01,"Industrial Consumption","Colorado","CO",12275 +2008-12-01,"Industrial Consumption","Ohio","OH",24123 +2008-12-01,"Industrial Consumption","New Mexico","NM",1311 +2008-12-01,"Industrial Consumption","Kansas","KS",9882 +2008-12-01,"Industrial Consumption","U.S.","U.S.",553255 +2008-12-01,"Industrial Consumption","Mississippi","MS",8062 +2008-12-01,"Industrial Consumption","District of Columbia","DC",0 +2008-12-01,"Industrial Consumption","Arizona","AZ",1938 +2008-12-01,"Industrial Consumption","New York","NY",7691 +2008-12-01,"Industrial Consumption","California","CA",59834 +2008-12-01,"Industrial Consumption","Arkansas","AR",7294 +2008-12-01,"Industrial Consumption","Wyoming","WY",4005 +2008-12-01,"Industrial Consumption","New Hampshire","NH",618 +2008-12-01,"Industrial Consumption","Florida","FL",5045 +2008-12-01,"Industrial Consumption","Indiana","IN",23714 +2008-12-01,"Industrial Consumption","Georgia","GA",11134 +2008-12-01,"Industrial Consumption","Hawaii","HI",27 +2008-12-01,"Industrial Consumption","Missouri","MO",6370 +2008-12-01,"Industrial Consumption","Nebraska","NE",6550 +2008-12-01,"Industrial Consumption","West Virginia","WV",2494 +2008-12-01,"Industrial Consumption","Minnesota","MN",13293 +2008-12-01,"Industrial Consumption","Idaho","ID",2351 +2008-12-01,"Industrial Consumption","Connecticut","CT",2126 +2008-12-01,"Industrial Consumption","Alaska","AK",439 +2008-12-01,"Industrial Consumption","Maryland","MD",1883 +2008-12-01,"Industrial Consumption","South Dakota","SD",3135 +2008-12-01,"Industrial Consumption","Nevada","NV",1169 +2008-12-01,"Industrial Consumption","Virginia","VA",4622 +2008-12-01,"Industrial Consumption","Iowa","IA",14724 +2008-12-01,"Industrial Consumption","Kentucky","KY",8691 +2008-12-01,"Industrial Consumption","Utah","UT",2713 +2008-12-01,"Industrial Consumption","Alabama","AL",11129 +2008-12-01,"Industrial Consumption","Texas","TX",101174 +2008-12-01,"Industrial Consumption","Wisconsin","WI",13273 +2008-12-01,"Industrial Consumption","Tennessee","TN",7478 +2008-12-01,"Industrial Consumption","Michigan","MI",13483 +2008-12-01,"Industrial Consumption","Delaware","DE",1565 +2008-12-01,"Industrial Consumption","Louisiana","LA",59494 +2008-12-01,"Industrial Consumption","Oregon","OR",5817 +2008-12-01,"Industrial Consumption","South Carolina","SC",4800 +2008-12-01,"Industrial Consumption","Illinois","IL",25716 +2008-12-01,"Industrial Consumption","North Dakota","ND",1185 +2008-12-01,"Industrial Consumption","Montana","MT",3418 +2008-12-01,"Industrial Consumption","Washington","WA",7049 +2008-12-01,"Industrial Consumption","Pennsylvania","PA",16082 +2008-12-01,"Industrial Consumption","Maine","ME",2505 +2008-12-01,"Industrial Consumption","Rhode Island","RI",328 +2008-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105549 +2008-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",67386 +2008-12-01,"Residential Consumption","South Dakota","SD",2166 +2008-12-01,"Residential Consumption","Nevada","NV",5038 +2008-12-01,"Residential Consumption","Minnesota","MN",24129 +2008-12-01,"Residential Consumption","New Mexico","NM",4355 +2008-12-01,"Residential Consumption","Arkansas","AR",5848 +2008-12-01,"Residential Consumption","Colorado","CO",23941 +2008-12-01,"Residential Consumption","Missouri","MO",18419 +2008-12-01,"Residential Consumption","Alabama","AL",6249 +2008-12-01,"Residential Consumption","Alaska","AK",2992 +2008-12-01,"Residential Consumption","Illinois","IL",75594 +2008-12-01,"Residential Consumption","North Carolina","NC",11186 +2008-12-01,"Residential Consumption","Nebraska","NE",5955 +2008-12-01,"Residential Consumption","West Virginia","WV",4557 +2008-12-01,"Residential Consumption","Mississippi","MS",4514 +2008-12-01,"Residential Consumption","Louisiana","LA",5542 +2008-12-01,"Residential Consumption","North Dakota","ND",2180 +2008-12-01,"Residential Consumption","Texas","TX",32048 +2008-12-01,"Residential Consumption","Michigan","MI",53551 +2008-12-01,"Residential Consumption","New Hampshire","NH",1073 +2008-12-01,"Residential Consumption","New York","NY",58380 +2008-12-01,"Residential Consumption","South Carolina","SC",4829 +2008-12-01,"Residential Consumption","Iowa","IA",12948 +2008-12-01,"Residential Consumption","Hawaii","HI",43 +2008-12-01,"Residential Consumption","Connecticut","CT",6259 +2008-12-01,"Residential Consumption","Tennessee","TN",12335 +2008-12-01,"Residential Consumption","Virginia","VA",13642 +2008-12-01,"Residential Consumption","District of Columbia","DC",2220 +2008-12-01,"Residential Consumption","Maine","ME",160 +2008-12-01,"Residential Consumption","Massachusetts","MA",19096 +2008-12-01,"Residential Consumption","New Jersey","NJ",35780 +2008-12-01,"Residential Consumption","U.S.","U.S.",771868 +2008-12-01,"Residential Consumption","Georgia","GA",18014 +2008-12-01,"Residential Consumption","Pennsylvania","PA",36772 +2008-12-01,"Residential Consumption","Idaho","ID",4471 +2008-12-01,"Residential Consumption","Montana","MT",3123 +2008-12-01,"Residential Consumption","Kentucky","KY",9594 +2008-12-01,"Residential Consumption","Oklahoma","OK",10192 +2008-12-01,"Residential Consumption","Delaware","DE",1675 +2008-12-01,"Residential Consumption","Arizona","AZ",4411 +2008-12-01,"Residential Consumption","Rhode Island","RI",2121 +2008-12-01,"Residential Consumption","Oregon","OR",5974 +2008-12-01,"Residential Consumption","Wisconsin","WI",25530 +2008-12-01,"Residential Consumption","Utah","UT",7768 +2008-12-01,"Residential Consumption","Washington","WA",11653 +2008-12-01,"Residential Consumption","Wyoming","WY",1929 +2008-12-01,"Residential Consumption","Ohio","OH",52021 +2008-12-01,"Residential Consumption","Vermont","VT",421 +2008-12-01,"Residential Consumption","Maryland","MD",13746 +2008-12-01,"Residential Consumption","Indiana","IN",27281 +2008-12-01,"Residential Consumption","Florida","FL",1989 +2008-12-01,"Residential Consumption","Kansas","KS",11244 +2008-12-01,"Residential Consumption","California","CA",66909 +2008-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2201 +2009-01-01,"Commercial Consumption","South Carolina","SC",3239 +2009-01-01,"Commercial Consumption","North Dakota","ND",2025 +2009-01-01,"Commercial Consumption","Maryland","MD",12106 +2009-01-01,"Commercial Consumption","Nevada","NV",3980 +2009-01-01,"Commercial Consumption","Massachusetts","MA",12948 +2009-01-01,"Commercial Consumption","Kansas","KS",6627 +2009-01-01,"Commercial Consumption","Georgia","GA",9066 +2009-01-01,"Commercial Consumption","Rhode Island","RI",1890 +2009-01-01,"Commercial Consumption","Idaho","ID",2567 +2009-01-01,"Commercial Consumption","Mississippi","MS",3002 +2009-01-01,"Commercial Consumption","Illinois","IL",37962 +2009-01-01,"Commercial Consumption","New Hampshire","NH",1685 +2009-01-01,"Commercial Consumption","Kentucky","KY",7524 +2009-01-01,"Commercial Consumption","Texas","TX",22462 +2009-01-01,"Commercial Consumption","Nebraska","NE",5683 +2009-01-01,"Commercial Consumption","District of Columbia","DC",2977 +2009-01-01,"Commercial Consumption","Pennsylvania","PA",26997 +2009-01-01,"Commercial Consumption","Missouri","MO",11890 +2009-01-01,"Commercial Consumption","Wisconsin","WI",18228 +2009-01-01,"Commercial Consumption","California","CA",27043 +2009-01-01,"Commercial Consumption","Tennessee","TN",9139 +2009-01-01,"Commercial Consumption","West Virginia","WV",4002 +2009-01-01,"Commercial Consumption","North Carolina","NC",8960 +2009-01-01,"Commercial Consumption","Oklahoma","OK",7939 +2009-01-01,"Commercial Consumption","New Jersey","NJ",28831 +2009-01-01,"Commercial Consumption","Maine","ME",904 +2009-01-01,"Commercial Consumption","Alaska","AK",2323 +2009-01-01,"Commercial Consumption","Connecticut","CT",6375 +2009-01-01,"Commercial Consumption","Louisiana","LA",3134 +2009-01-01,"Commercial Consumption","Wyoming","WY",1589 +2009-01-01,"Commercial Consumption","New Mexico","NM",3991 +2009-01-01,"Commercial Consumption","Montana","MT",3724 +2009-01-01,"Commercial Consumption","Hawaii","HI",154 +2009-01-01,"Commercial Consumption","New York","NY",43676 +2009-01-01,"Commercial Consumption","Arizona","AZ",4082 +2009-01-01,"Commercial Consumption","Indiana","IN",16629 +2009-01-01,"Commercial Consumption","Colorado","CO",9609 +2009-01-01,"Commercial Consumption","Utah","UT",6554 +2009-01-01,"Commercial Consumption","Oregon","OR",4850 +2009-01-01,"Commercial Consumption","Florida","FL",5005 +2009-01-01,"Commercial Consumption","Vermont","VT",449 +2009-01-01,"Commercial Consumption","Washington","WA",8432 +2009-01-01,"Commercial Consumption","Minnesota","MN",18479 +2009-01-01,"Commercial Consumption","Virginia","VA",11487 +2009-01-01,"Commercial Consumption","South Dakota","SD",1849 +2009-01-01,"Commercial Consumption","U.S.","U.S.",517891 +2009-01-01,"Commercial Consumption","Ohio","OH",33019 +2009-01-01,"Commercial Consumption","Iowa","IA",10000 +2009-01-01,"Commercial Consumption","Arkansas","AR",5612 +2009-01-01,"Commercial Consumption","Alabama","AL",3515 +2009-01-01,"Commercial Consumption","Delaware","DE",1935 +2009-01-01,"Commercial Consumption","Michigan","MI",31741 +2009-01-01,"Delivered to Consumers","Indiana","IN",80503 +2009-01-01,"Delivered to Consumers","Wyoming","WY",7385 +2009-01-01,"Delivered to Consumers","New York","NY",155189 +2009-01-01,"Delivered to Consumers","Hawaii","HI",229 +2009-01-01,"Delivered to Consumers","North Carolina","NC",33360 +2009-01-01,"Delivered to Consumers","Oregon","OR",27741 +2009-01-01,"Delivered to Consumers","Washington","WA",32461 +2009-01-01,"Delivered to Consumers","North Dakota","ND",5437 +2009-01-01,"Delivered to Consumers","West Virginia","WV",12405 +2009-01-01,"Delivered to Consumers","South Dakota","SD",7741 +2009-01-01,"Delivered to Consumers","Maryland","MD",34135 +2009-01-01,"Delivered to Consumers","Oklahoma","OK",58085 +2009-01-01,"Delivered to Consumers","Tennessee","TN",31563 +2009-01-01,"Delivered to Consumers","Kentucky","KY",30552 +2009-01-01,"Delivered to Consumers","Alabama","AL",38182 +2009-01-01,"Delivered to Consumers","Nebraska","NE",21070 +2009-01-01,"Delivered to Consumers","California","CA",219330 +2009-01-01,"Delivered to Consumers","New Jersey","NJ",95602 +2009-01-01,"Delivered to Consumers","Minnesota","MN",64062 +2009-01-01,"Delivered to Consumers","Florida","FL",68323 +2009-01-01,"Delivered to Consumers","U.S.","U.S.",2538368 +2009-01-01,"Delivered to Consumers","Alaska","AK",9652 +2009-01-01,"Delivered to Consumers","Ohio","OH",128110 +2009-01-01,"Delivered to Consumers","Pennsylvania","PA",103394 +2009-01-01,"Delivered to Consumers","Colorado","CO",50474 +2009-01-01,"Delivered to Consumers","Texas","TX",257541 +2009-01-01,"Delivered to Consumers","Maine","ME",6252 +2009-01-01,"Delivered to Consumers","Delaware","DE",6233 +2009-01-01,"Delivered to Consumers","Vermont","VT",1407 +2009-01-01,"Delivered to Consumers","Rhode Island","RI",10057 +2009-01-01,"Delivered to Consumers","Montana","MT",9401 +2009-01-01,"Delivered to Consumers","Idaho","ID",10045 +2009-01-01,"Delivered to Consumers","Michigan","MI",123880 +2009-01-01,"Delivered to Consumers","Louisiana","LA",88393 +2009-01-01,"Delivered to Consumers","Georgia","GA",53365 +2009-01-01,"Delivered to Consumers","District of Columbia","DC",5975 +2009-01-01,"Delivered to Consumers","Missouri","MO",46361 +2009-01-01,"Delivered to Consumers","Kansas","KS",34461 +2009-01-01,"Delivered to Consumers","Iowa","IA",44565 +2009-01-01,"Delivered to Consumers","Arizona","AZ",26111 +2009-01-01,"Delivered to Consumers","Utah","UT",26699 +2009-01-01,"Delivered to Consumers","Wisconsin","WI",66114 +2009-01-01,"Delivered to Consumers","Virginia","VA",43163 +2009-01-01,"Delivered to Consumers","Mississippi","MS",29147 +2009-01-01,"Delivered to Consumers","South Carolina","SC",17546 +2009-01-01,"Delivered to Consumers","Nevada","NV",27429 +2009-01-01,"Delivered to Consumers","New Hampshire","NH",8383 +2009-01-01,"Delivered to Consumers","New Mexico","NM",17216 +2009-01-01,"Delivered to Consumers","Illinois","IL",159394 +2009-01-01,"Delivered to Consumers","Connecticut","CT",22338 +2009-01-01,"Delivered to Consumers","Arkansas","AR",25722 +2009-01-01,"Delivered to Consumers","Massachusetts","MA",53869 +2009-01-01,"Electric Power Consumption","Idaho","ID",919 +2009-01-01,"Electric Power Consumption","Utah","UT",4882 +2009-01-01,"Electric Power Consumption","Michigan","MI",9043 +2009-01-01,"Electric Power Consumption","Vermont","VT",4 +2009-01-01,"Electric Power Consumption","New Jersey","NJ",12363 +2009-01-01,"Electric Power Consumption","Texas","TX",91605 +2009-01-01,"Electric Power Consumption","Pennsylvania","PA",10419 +2009-01-01,"Electric Power Consumption","Iowa","IA",1412 +2009-01-01,"Electric Power Consumption","South Dakota","SD",27 +2009-01-01,"Electric Power Consumption","Maine","ME",2888 +2009-01-01,"Electric Power Consumption","West Virginia","WV",108 +2009-01-01,"Electric Power Consumption","Nevada","NV",14917 +2009-01-01,"Electric Power Consumption","Missouri","MO",3820 +2009-01-01,"Electric Power Consumption","Illinois","IL",3947 +2009-01-01,"Electric Power Consumption","Massachusetts","MA",10781 +2009-01-01,"Electric Power Consumption","Kansas","KS",1968 +2009-01-01,"Electric Power Consumption","Wyoming","WY",117 +2009-01-01,"Electric Power Consumption","Nebraska","NE",188 +2009-01-01,"Electric Power Consumption","Maryland","MD",1546 +2009-01-01,"Electric Power Consumption","Indiana","IN",4517 +2009-01-01,"Electric Power Consumption","Connecticut","CT",4789 +2009-01-01,"Electric Power Consumption","Georgia","GA",9288 +2009-01-01,"Electric Power Consumption","Alaska","AK",3599 +2009-01-01,"Electric Power Consumption","Arkansas","AR",5211 +2009-01-01,"Electric Power Consumption","Minnesota","MN",2545 +2009-01-01,"Electric Power Consumption","Wisconsin","WI",4449 +2009-01-01,"Electric Power Consumption","Tennessee","TN",256 +2009-01-01,"Electric Power Consumption","U.S.","U.S.",487426 +2009-01-01,"Electric Power Consumption","Ohio","OH",2843 +2009-01-01,"Electric Power Consumption","Delaware","DE",720 +2009-01-01,"Electric Power Consumption","California","CA",66135 +2009-01-01,"Electric Power Consumption","Washington","WA",2925 +2009-01-01,"Electric Power Consumption","Louisiana","LA",15197 +2009-01-01,"Electric Power Consumption","Colorado","CO",9178 +2009-01-01,"Electric Power Consumption","Rhode Island","RI",4419 +2009-01-01,"Electric Power Consumption","Oklahoma","OK",22373 +2009-01-01,"Electric Power Consumption","Kentucky","KY",1064 +2009-01-01,"Electric Power Consumption","New Hampshire","NH",4688 +2009-01-01,"Electric Power Consumption","North Dakota","ND",0 +2009-01-01,"Electric Power Consumption","Alabama","AL",16029 +2009-01-01,"Electric Power Consumption","Virginia","VA",7751 +2009-01-01,"Electric Power Consumption","New Mexico","NM",5846 +2009-01-01,"Electric Power Consumption","South Carolina","SC",3159 +2009-01-01,"Electric Power Consumption","Oregon","OR",9263 +2009-01-01,"Electric Power Consumption","North Carolina","NC",1798 +2009-01-01,"Electric Power Consumption","Hawaii","HI",NA +2009-01-01,"Electric Power Consumption","Montana","MT",59 +2009-01-01,"Electric Power Consumption","Florida","FL",55650 +2009-01-01,"Electric Power Consumption","New York","NY",25678 +2009-01-01,"Electric Power Consumption","Mississippi","MS",13928 +2009-01-01,"Electric Power Consumption","Arizona","AZ",13115 +2009-01-01,"Industrial Consumption","Arizona","AZ",1780 +2009-01-01,"Industrial Consumption","Tennessee","TN",7747 +2009-01-01,"Industrial Consumption","Connecticut","CT",2730 +2009-01-01,"Industrial Consumption","Maryland","MD",2113 +2009-01-01,"Industrial Consumption","Texas","TX",105049 +2009-01-01,"Industrial Consumption","Wyoming","WY",3639 +2009-01-01,"Industrial Consumption","New Hampshire","NH",570 +2009-01-01,"Industrial Consumption","Michigan","MI",15949 +2009-01-01,"Industrial Consumption","North Carolina","NC",7722 +2009-01-01,"Industrial Consumption","Georgia","GA",12158 +2009-01-01,"Industrial Consumption","Louisiana","LA",63076 +2009-01-01,"Industrial Consumption","New York","NY",8687 +2009-01-01,"Industrial Consumption","Arkansas","AR",7644 +2009-01-01,"Industrial Consumption","Nebraska","NE",7272 +2009-01-01,"Industrial Consumption","Indiana","IN",27022 +2009-01-01,"Industrial Consumption","North Dakota","ND",1209 +2009-01-01,"Industrial Consumption","Hawaii","HI",25 +2009-01-01,"Industrial Consumption","Colorado","CO",11742 +2009-01-01,"Industrial Consumption","South Dakota","SD",3219 +2009-01-01,"Industrial Consumption","Maine","ME",2218 +2009-01-01,"Industrial Consumption","California","CA",58533 +2009-01-01,"Industrial Consumption","Iowa","IA",17385 +2009-01-01,"Industrial Consumption","Ohio","OH",27791 +2009-01-01,"Industrial Consumption","Nevada","NV",1074 +2009-01-01,"Industrial Consumption","Mississippi","MS",7618 +2009-01-01,"Industrial Consumption","Wisconsin","WI",14969 +2009-01-01,"Industrial Consumption","Minnesota","MN",13926 +2009-01-01,"Industrial Consumption","Kentucky","KY",9811 +2009-01-01,"Industrial Consumption","Illinois","IL",26367 +2009-01-01,"Industrial Consumption","District of Columbia","DC",0 +2009-01-01,"Industrial Consumption","Alaska","AK",555 +2009-01-01,"Industrial Consumption","Oklahoma","OK",13876 +2009-01-01,"Industrial Consumption","Missouri","MO",7057 +2009-01-01,"Industrial Consumption","Washington","WA",6649 +2009-01-01,"Industrial Consumption","Alabama","AL",11762 +2009-01-01,"Industrial Consumption","Idaho","ID",2332 +2009-01-01,"Industrial Consumption","Florida","FL",5577 +2009-01-01,"Industrial Consumption","U.S.","U.S.",582995 +2009-01-01,"Industrial Consumption","Pennsylvania","PA",18350 +2009-01-01,"Industrial Consumption","South Carolina","SC",5361 +2009-01-01,"Industrial Consumption","Virginia","VA",5039 +2009-01-01,"Industrial Consumption","Rhode Island","RI",651 +2009-01-01,"Industrial Consumption","Montana","MT",1976 +2009-01-01,"Industrial Consumption","Massachusetts","MA",4933 +2009-01-01,"Industrial Consumption","New Mexico","NM",1364 +2009-01-01,"Industrial Consumption","Kansas","KS",9945 +2009-01-01,"Industrial Consumption","Utah","UT",3033 +2009-01-01,"Industrial Consumption","Oregon","OR",5699 +2009-01-01,"Industrial Consumption","West Virginia","WV",2587 +2009-01-01,"Industrial Consumption","Vermont","VT",350 +2009-01-01,"Industrial Consumption","New Jersey","NJ",5513 +2009-01-01,"Industrial Consumption","Delaware","DE",1341 +2009-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",110186 +2009-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",81144 +2009-01-01,"Residential Consumption","Maine","ME",242 +2009-01-01,"Residential Consumption","North Dakota","ND",2203 +2009-01-01,"Residential Consumption","Massachusetts","MA",25207 +2009-01-01,"Residential Consumption","Oklahoma","OK",13897 +2009-01-01,"Residential Consumption","Alaska","AK",3175 +2009-01-01,"Residential Consumption","Hawaii","HI",49 +2009-01-01,"Residential Consumption","Connecticut","CT",8443 +2009-01-01,"Residential Consumption","Tennessee","TN",14421 +2009-01-01,"Residential Consumption","Maryland","MD",18371 +2009-01-01,"Residential Consumption","Arkansas","AR",7256 +2009-01-01,"Residential Consumption","Missouri","MO",23594 +2009-01-01,"Residential Consumption","West Virginia","WV",5706 +2009-01-01,"Residential Consumption","New York","NY",77147 +2009-01-01,"Residential Consumption","Ohio","OH",64457 +2009-01-01,"Residential Consumption","Utah","UT",12231 +2009-01-01,"Residential Consumption","Michigan","MI",67147 +2009-01-01,"Residential Consumption","Delaware","DE",2236 +2009-01-01,"Residential Consumption","Arizona","AZ",7133 +2009-01-01,"Residential Consumption","South Carolina","SC",5788 +2009-01-01,"Residential Consumption","Iowa","IA",15768 +2009-01-01,"Residential Consumption","Vermont","VT",604 +2009-01-01,"Residential Consumption","South Dakota","SD",2645 +2009-01-01,"Residential Consumption","Nevada","NV",7457 +2009-01-01,"Residential Consumption","Georgia","GA",22854 +2009-01-01,"Residential Consumption","District of Columbia","DC",2998 +2009-01-01,"Residential Consumption","Florida","FL",2091 +2009-01-01,"Residential Consumption","Kansas","KS",15920 +2009-01-01,"Residential Consumption","Mississippi","MS",4599 +2009-01-01,"Residential Consumption","Louisiana","LA",6986 +2009-01-01,"Residential Consumption","Montana","MT",3643 +2009-01-01,"Residential Consumption","California","CA",67619 +2009-01-01,"Residential Consumption","Alabama","AL",6875 +2009-01-01,"Residential Consumption","U.S.","U.S.",947740 +2009-01-01,"Residential Consumption","Oregon","OR",7928 +2009-01-01,"Residential Consumption","North Carolina","NC",14881 +2009-01-01,"Residential Consumption","Wisconsin","WI",28469 +2009-01-01,"Residential Consumption","Minnesota","MN",29111 +2009-01-01,"Residential Consumption","Pennsylvania","PA",47628 +2009-01-01,"Residential Consumption","Indiana","IN",32336 +2009-01-01,"Residential Consumption","New Hampshire","NH",1440 +2009-01-01,"Residential Consumption","Texas","TX",38425 +2009-01-01,"Residential Consumption","Rhode Island","RI",3096 +2009-01-01,"Residential Consumption","Virginia","VA",18886 +2009-01-01,"Residential Consumption","Nebraska","NE",7927 +2009-01-01,"Residential Consumption","New Mexico","NM",6015 +2009-01-01,"Residential Consumption","Washington","WA",14455 +2009-01-01,"Residential Consumption","Wyoming","WY",2040 +2009-01-01,"Residential Consumption","Illinois","IL",91118 +2009-01-01,"Residential Consumption","Idaho","ID",4227 +2009-01-01,"Residential Consumption","New Jersey","NJ",48896 +2009-01-01,"Residential Consumption","Kentucky","KY",12153 +2009-01-01,"Residential Consumption","Colorado","CO",19946 +2009-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2315 +2009-02-01,"Commercial Consumption","Minnesota","MN",14610 +2009-02-01,"Commercial Consumption","Rhode Island","RI",1921 +2009-02-01,"Commercial Consumption","Idaho","ID",1926 +2009-02-01,"Commercial Consumption","Delaware","DE",1455 +2009-02-01,"Commercial Consumption","Indiana","IN",11071 +2009-02-01,"Commercial Consumption","Virginia","VA",8863 +2009-02-01,"Commercial Consumption","Maryland","MD",9204 +2009-02-01,"Commercial Consumption","Kansas","KS",4982 +2009-02-01,"Commercial Consumption","Vermont","VT",428 +2009-02-01,"Commercial Consumption","Ohio","OH",25298 +2009-02-01,"Commercial Consumption","Nevada","NV",3230 +2009-02-01,"Commercial Consumption","Pennsylvania","PA",22753 +2009-02-01,"Commercial Consumption","Wisconsin","WI",12952 +2009-02-01,"Commercial Consumption","Kentucky","KY",5197 +2009-02-01,"Commercial Consumption","Texas","TX",18414 +2009-02-01,"Commercial Consumption","Alabama","AL",3738 +2009-02-01,"Commercial Consumption","Michigan","MI",25241 +2009-02-01,"Commercial Consumption","Washington","WA",7362 +2009-02-01,"Commercial Consumption","Massachusetts","MA",12350 +2009-02-01,"Commercial Consumption","Hawaii","HI",144 +2009-02-01,"Commercial Consumption","Alaska","AK",2054 +2009-02-01,"Commercial Consumption","South Carolina","SC",2626 +2009-02-01,"Commercial Consumption","North Carolina","NC",6565 +2009-02-01,"Commercial Consumption","Oklahoma","OK",7192 +2009-02-01,"Commercial Consumption","New Hampshire","NH",1382 +2009-02-01,"Commercial Consumption","Maine","ME",800 +2009-02-01,"Commercial Consumption","New York","NY",38205 +2009-02-01,"Commercial Consumption","Colorado","CO",7623 +2009-02-01,"Commercial Consumption","Utah","UT",5396 +2009-02-01,"Commercial Consumption","New Mexico","NM",3381 +2009-02-01,"Commercial Consumption","New Jersey","NJ",22774 +2009-02-01,"Commercial Consumption","Iowa","IA",7937 +2009-02-01,"Commercial Consumption","Nebraska","NE",4868 +2009-02-01,"Commercial Consumption","Mississippi","MS",2497 +2009-02-01,"Commercial Consumption","Tennessee","TN",7710 +2009-02-01,"Commercial Consumption","Louisiana","LA",2645 +2009-02-01,"Commercial Consumption","Wyoming","WY",1416 +2009-02-01,"Commercial Consumption","West Virginia","WV",3354 +2009-02-01,"Commercial Consumption","Oregon","OR",4099 +2009-02-01,"Commercial Consumption","Missouri","MO",10027 +2009-02-01,"Commercial Consumption","U.S.","U.S.",426622 +2009-02-01,"Commercial Consumption","Connecticut","CT",5833 +2009-02-01,"Commercial Consumption","Illinois","IL",32189 +2009-02-01,"Commercial Consumption","District of Columbia","DC",2243 +2009-02-01,"Commercial Consumption","North Dakota","ND",1569 +2009-02-01,"Commercial Consumption","South Dakota","SD",1524 +2009-02-01,"Commercial Consumption","Montana","MT",3084 +2009-02-01,"Commercial Consumption","Georgia","GA",7203 +2009-02-01,"Commercial Consumption","Florida","FL",5275 +2009-02-01,"Commercial Consumption","California","CA",25548 +2009-02-01,"Commercial Consumption","Arkansas","AR",4895 +2009-02-01,"Commercial Consumption","Arizona","AZ",3568 +2009-02-01,"Delivered to Consumers","Utah","UT",22373 +2009-02-01,"Delivered to Consumers","New Mexico","NM",14108 +2009-02-01,"Delivered to Consumers","Indiana","IN",62657 +2009-02-01,"Delivered to Consumers","Alaska","AK",8020 +2009-02-01,"Delivered to Consumers","Michigan","MI",99718 +2009-02-01,"Delivered to Consumers","Kentucky","KY",22499 +2009-02-01,"Delivered to Consumers","Pennsylvania","PA",93510 +2009-02-01,"Delivered to Consumers","North Carolina","NC",26215 +2009-02-01,"Delivered to Consumers","California","CA",206088 +2009-02-01,"Delivered to Consumers","New Jersey","NJ",71552 +2009-02-01,"Delivered to Consumers","Washington","WA",33791 +2009-02-01,"Delivered to Consumers","Tennessee","TN",28104 +2009-02-01,"Delivered to Consumers","Virginia","VA",32206 +2009-02-01,"Delivered to Consumers","Nevada","NV",24045 +2009-02-01,"Delivered to Consumers","Maryland","MD",25332 +2009-02-01,"Delivered to Consumers","Oklahoma","OK",53514 +2009-02-01,"Delivered to Consumers","Kansas","KS",26826 +2009-02-01,"Delivered to Consumers","Alabama","AL",40575 +2009-02-01,"Delivered to Consumers","Georgia","GA",47708 +2009-02-01,"Delivered to Consumers","U.S.","U.S.",2162215 +2009-02-01,"Delivered to Consumers","Rhode Island","RI",10178 +2009-02-01,"Delivered to Consumers","Massachusetts","MA",46564 +2009-02-01,"Delivered to Consumers","Maine","ME",5207 +2009-02-01,"Delivered to Consumers","Louisiana","LA",73595 +2009-02-01,"Delivered to Consumers","Florida","FL",66370 +2009-02-01,"Delivered to Consumers","Wyoming","WY",6193 +2009-02-01,"Delivered to Consumers","West Virginia","WV",10441 +2009-02-01,"Delivered to Consumers","Vermont","VT",1307 +2009-02-01,"Delivered to Consumers","Illinois","IL",132967 +2009-02-01,"Delivered to Consumers","Idaho","ID",8452 +2009-02-01,"Delivered to Consumers","Connecticut","CT",21250 +2009-02-01,"Delivered to Consumers","Nebraska","NE",18780 +2009-02-01,"Delivered to Consumers","Oregon","OR",26410 +2009-02-01,"Delivered to Consumers","New Hampshire","NH",7107 +2009-02-01,"Delivered to Consumers","South Dakota","SD",6517 +2009-02-01,"Delivered to Consumers","New York","NY",136711 +2009-02-01,"Delivered to Consumers","Hawaii","HI",216 +2009-02-01,"Delivered to Consumers","Ohio","OH",100288 +2009-02-01,"Delivered to Consumers","Mississippi","MS",24908 +2009-02-01,"Delivered to Consumers","Texas","TX",215156 +2009-02-01,"Delivered to Consumers","South Carolina","SC",15610 +2009-02-01,"Delivered to Consumers","Minnesota","MN",48716 +2009-02-01,"Delivered to Consumers","District of Columbia","DC",4247 +2009-02-01,"Delivered to Consumers","Delaware","DE",5046 +2009-02-01,"Delivered to Consumers","Montana","MT",8015 +2009-02-01,"Delivered to Consumers","Iowa","IA",35347 +2009-02-01,"Delivered to Consumers","Arkansas","AR",24585 +2009-02-01,"Delivered to Consumers","Wisconsin","WI",48786 +2009-02-01,"Delivered to Consumers","Missouri","MO",39322 +2009-02-01,"Delivered to Consumers","Colorado","CO",44029 +2009-02-01,"Delivered to Consumers","Arizona","AZ",24516 +2009-02-01,"Delivered to Consumers","North Dakota","ND",4446 +2009-02-01,"Electric Power Consumption","Oklahoma","OK",20454 +2009-02-01,"Electric Power Consumption","Vermont","VT",5 +2009-02-01,"Electric Power Consumption","Nebraska","NE",65 +2009-02-01,"Electric Power Consumption","North Carolina","NC",1912 +2009-02-01,"Electric Power Consumption","New Hampshire","NH",4091 +2009-02-01,"Electric Power Consumption","New Mexico","NM",5067 +2009-02-01,"Electric Power Consumption","New Jersey","NJ",10637 +2009-02-01,"Electric Power Consumption","Colorado","CO",9619 +2009-02-01,"Electric Power Consumption","Michigan","MI",6913 +2009-02-01,"Electric Power Consumption","Pennsylvania","PA",13431 +2009-02-01,"Electric Power Consumption","Maine","ME",2604 +2009-02-01,"Electric Power Consumption","Kentucky","KY",787 +2009-02-01,"Electric Power Consumption","Maryland","MD",1002 +2009-02-01,"Electric Power Consumption","Indiana","IN",3958 +2009-02-01,"Electric Power Consumption","Alaska","AK",2981 +2009-02-01,"Electric Power Consumption","Louisiana","LA",12175 +2009-02-01,"Electric Power Consumption","Massachusetts","MA",9261 +2009-02-01,"Electric Power Consumption","Nevada","NV",14142 +2009-02-01,"Electric Power Consumption","Tennessee","TN",352 +2009-02-01,"Electric Power Consumption","Missouri","MO",3237 +2009-02-01,"Electric Power Consumption","Mississippi","MS",12439 +2009-02-01,"Electric Power Consumption","Montana","MT",60 +2009-02-01,"Electric Power Consumption","Wyoming","WY",96 +2009-02-01,"Electric Power Consumption","Georgia","GA",10931 +2009-02-01,"Electric Power Consumption","California","CA",59822 +2009-02-01,"Electric Power Consumption","Washington","WA",7771 +2009-02-01,"Electric Power Consumption","Arkansas","AR",6752 +2009-02-01,"Electric Power Consumption","Texas","TX",75267 +2009-02-01,"Electric Power Consumption","Delaware","DE",257 +2009-02-01,"Electric Power Consumption","Arizona","AZ",13961 +2009-02-01,"Electric Power Consumption","Virginia","VA",5980 +2009-02-01,"Electric Power Consumption","Oregon","OR",10599 +2009-02-01,"Electric Power Consumption","Minnesota","MN",1580 +2009-02-01,"Electric Power Consumption","Alabama","AL",18184 +2009-02-01,"Electric Power Consumption","Rhode Island","RI",4166 +2009-02-01,"Electric Power Consumption","Illinois","IL",2235 +2009-02-01,"Electric Power Consumption","Kansas","KS",1412 +2009-02-01,"Electric Power Consumption","West Virginia","WV",144 +2009-02-01,"Electric Power Consumption","Wisconsin","WI",3472 +2009-02-01,"Electric Power Consumption","South Dakota","SD",7 +2009-02-01,"Electric Power Consumption","Ohio","OH",2210 +2009-02-01,"Electric Power Consumption","North Dakota","ND",0 +2009-02-01,"Electric Power Consumption","Connecticut","CT",5283 +2009-02-01,"Electric Power Consumption","Idaho","ID",1098 +2009-02-01,"Electric Power Consumption","South Carolina","SC",2726 +2009-02-01,"Electric Power Consumption","New York","NY",25850 +2009-02-01,"Electric Power Consumption","Utah","UT",4617 +2009-02-01,"Electric Power Consumption","Iowa","IA",736 +2009-02-01,"Electric Power Consumption","U.S.","U.S.",453472 +2009-02-01,"Electric Power Consumption","Hawaii","HI",NA +2009-02-01,"Electric Power Consumption","Florida","FL",53123 +2009-02-01,"Industrial Consumption","Massachusetts","MA",4754 +2009-02-01,"Industrial Consumption","Missouri","MO",6313 +2009-02-01,"Industrial Consumption","Oregon","OR",5010 +2009-02-01,"Industrial Consumption","Minnesota","MN",12320 +2009-02-01,"Industrial Consumption","Illinois","IL",24038 +2009-02-01,"Industrial Consumption","Rhode Island","RI",651 +2009-02-01,"Industrial Consumption","Montana","MT",1828 +2009-02-01,"Industrial Consumption","Pennsylvania","PA",16643 +2009-02-01,"Industrial Consumption","New York","NY",7591 +2009-02-01,"Industrial Consumption","Arkansas","AR",6754 +2009-02-01,"Industrial Consumption","Texas","TX",93560 +2009-02-01,"Industrial Consumption","North Dakota","ND",1084 +2009-02-01,"Industrial Consumption","Kansas","KS",8608 +2009-02-01,"Industrial Consumption","Utah","UT",2898 +2009-02-01,"Industrial Consumption","Maine","ME",1573 +2009-02-01,"Industrial Consumption","Virginia","VA",3841 +2009-02-01,"Industrial Consumption","Idaho","ID",2059 +2009-02-01,"Industrial Consumption","Florida","FL",5361 +2009-02-01,"Industrial Consumption","Delaware","DE",1542 +2009-02-01,"Industrial Consumption","Georgia","GA",11474 +2009-02-01,"Industrial Consumption","District of Columbia","DC",0 +2009-02-01,"Industrial Consumption","Washington","WA",6384 +2009-02-01,"Industrial Consumption","Alabama","AL",11380 +2009-02-01,"Industrial Consumption","Indiana","IN",23957 +2009-02-01,"Industrial Consumption","North Carolina","NC",7121 +2009-02-01,"Industrial Consumption","New Mexico","NM",1214 +2009-02-01,"Industrial Consumption","Vermont","VT",298 +2009-02-01,"Industrial Consumption","New Jersey","NJ",4353 +2009-02-01,"Industrial Consumption","New Hampshire","NH",478 +2009-02-01,"Industrial Consumption","Iowa","IA",15137 +2009-02-01,"Industrial Consumption","Kentucky","KY",8289 +2009-02-01,"Industrial Consumption","Maryland","MD",2136 +2009-02-01,"Industrial Consumption","Colorado","CO",10718 +2009-02-01,"Industrial Consumption","California","CA",57146 +2009-02-01,"Industrial Consumption","Louisiana","LA",53215 +2009-02-01,"Industrial Consumption","Ohio","OH",23579 +2009-02-01,"Industrial Consumption","Arizona","AZ",1636 +2009-02-01,"Industrial Consumption","U.S.","U.S.",523688 +2009-02-01,"Industrial Consumption","Mississippi","MS",6144 +2009-02-01,"Industrial Consumption","South Carolina","SC",5297 +2009-02-01,"Industrial Consumption","Nebraska","NE",6763 +2009-02-01,"Industrial Consumption","Wyoming","WY",2927 +2009-02-01,"Industrial Consumption","Tennessee","TN",7207 +2009-02-01,"Industrial Consumption","Connecticut","CT",2444 +2009-02-01,"Industrial Consumption","Michigan","MI",14140 +2009-02-01,"Industrial Consumption","Alaska","AK",471 +2009-02-01,"Industrial Consumption","Hawaii","HI",28 +2009-02-01,"Industrial Consumption","Oklahoma","OK",14673 +2009-02-01,"Industrial Consumption","South Dakota","SD",3004 +2009-02-01,"Industrial Consumption","Nevada","NV",1019 +2009-02-01,"Industrial Consumption","West Virginia","WV",2271 +2009-02-01,"Industrial Consumption","Wisconsin","WI",12358 +2009-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",100434 +2009-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",69119 +2009-02-01,"Residential Consumption","Connecticut","CT",7689 +2009-02-01,"Residential Consumption","Georgia","GA",18100 +2009-02-01,"Residential Consumption","Maine","ME",229 +2009-02-01,"Residential Consumption","Oklahoma","OK",11195 +2009-02-01,"Residential Consumption","North Carolina","NC",10616 +2009-02-01,"Residential Consumption","Vermont","VT",575 +2009-02-01,"Residential Consumption","Tennessee","TN",12835 +2009-02-01,"Residential Consumption","Virginia","VA",13522 +2009-02-01,"Residential Consumption","Michigan","MI",53424 +2009-02-01,"Residential Consumption","Minnesota","MN",20206 +2009-02-01,"Residential Consumption","New Mexico","NM",4445 +2009-02-01,"Residential Consumption","Arkansas","AR",6183 +2009-02-01,"Residential Consumption","Colorado","CO",16068 +2009-02-01,"Residential Consumption","West Virginia","WV",4672 +2009-02-01,"Residential Consumption","Rhode Island","RI",3440 +2009-02-01,"Residential Consumption","South Dakota","SD",1983 +2009-02-01,"Residential Consumption","New Jersey","NJ",33787 +2009-02-01,"Residential Consumption","California","CA",63571 +2009-02-01,"Residential Consumption","U.S.","U.S.",756341 +2009-02-01,"Residential Consumption","South Carolina","SC",4961 +2009-02-01,"Residential Consumption","Oregon","OR",6702 +2009-02-01,"Residential Consumption","Mississippi","MS",3827 +2009-02-01,"Residential Consumption","Nevada","NV",5654 +2009-02-01,"Residential Consumption","Delaware","DE",1792 +2009-02-01,"Residential Consumption","Arizona","AZ",5352 +2009-02-01,"Residential Consumption","Alaska","AK",2514 +2009-02-01,"Residential Consumption","Iowa","IA",11538 +2009-02-01,"Residential Consumption","Nebraska","NE",7084 +2009-02-01,"Residential Consumption","Pennsylvania","PA",40683 +2009-02-01,"Residential Consumption","Florida","FL",2611 +2009-02-01,"Residential Consumption","Kansas","KS",11824 +2009-02-01,"Residential Consumption","Texas","TX",27914 +2009-02-01,"Residential Consumption","Utah","UT",9463 +2009-02-01,"Residential Consumption","District of Columbia","DC",2005 +2009-02-01,"Residential Consumption","Indiana","IN",23672 +2009-02-01,"Residential Consumption","Massachusetts","MA",20199 +2009-02-01,"Residential Consumption","Idaho","ID",3369 +2009-02-01,"Residential Consumption","Montana","MT",3043 +2009-02-01,"Residential Consumption","Alabama","AL",7273 +2009-02-01,"Residential Consumption","Wyoming","WY",1754 +2009-02-01,"Residential Consumption","Illinois","IL",74506 +2009-02-01,"Residential Consumption","Ohio","OH",49201 +2009-02-01,"Residential Consumption","Hawaii","HI",44 +2009-02-01,"Residential Consumption","Maryland","MD",12990 +2009-02-01,"Residential Consumption","North Dakota","ND",1793 +2009-02-01,"Residential Consumption","Kentucky","KY",8225 +2009-02-01,"Residential Consumption","Washington","WA",12274 +2009-02-01,"Residential Consumption","Missouri","MO",19746 +2009-02-01,"Residential Consumption","New York","NY",65066 +2009-02-01,"Residential Consumption","Louisiana","LA",5560 +2009-02-01,"Residential Consumption","Wisconsin","WI",20004 +2009-02-01,"Residential Consumption","New Hampshire","NH",1156 +2009-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",2091 +2009-03-01,"Commercial Consumption","Minnesota","MN",12620 +2009-03-01,"Commercial Consumption","Colorado","CO",5708 +2009-03-01,"Commercial Consumption","Idaho","ID",1797 +2009-03-01,"Commercial Consumption","Iowa","IA",6040 +2009-03-01,"Commercial Consumption","Hawaii","HI",148 +2009-03-01,"Commercial Consumption","Connecticut","CT",5083 +2009-03-01,"Commercial Consumption","Alabama","AL",2834 +2009-03-01,"Commercial Consumption","Delaware","DE",1290 +2009-03-01,"Commercial Consumption","North Carolina","NC",5670 +2009-03-01,"Commercial Consumption","Massachusetts","MA",9112 +2009-03-01,"Commercial Consumption","Arkansas","AR",3923 +2009-03-01,"Commercial Consumption","Tennessee","TN",6073 +2009-03-01,"Commercial Consumption","Louisiana","LA",2349 +2009-03-01,"Commercial Consumption","Illinois","IL",26653 +2009-03-01,"Commercial Consumption","District of Columbia","DC",2138 +2009-03-01,"Commercial Consumption","Wyoming","WY",1185 +2009-03-01,"Commercial Consumption","Pennsylvania","PA",18510 +2009-03-01,"Commercial Consumption","New Hampshire","NH",1222 +2009-03-01,"Commercial Consumption","Florida","FL",4804 +2009-03-01,"Commercial Consumption","Vermont","VT",341 +2009-03-01,"Commercial Consumption","Alaska","AK",1978 +2009-03-01,"Commercial Consumption","Nebraska","NE",3860 +2009-03-01,"Commercial Consumption","Mississippi","MS",1982 +2009-03-01,"Commercial Consumption","Arizona","AZ",3126 +2009-03-01,"Commercial Consumption","North Dakota","ND",1467 +2009-03-01,"Commercial Consumption","Virginia","VA",7841 +2009-03-01,"Commercial Consumption","Montana","MT",3002 +2009-03-01,"Commercial Consumption","Kentucky","KY",3659 +2009-03-01,"Commercial Consumption","Indiana","IN",7933 +2009-03-01,"Commercial Consumption","South Carolina","SC",2174 +2009-03-01,"Commercial Consumption","New Mexico","NM",3012 +2009-03-01,"Commercial Consumption","Wisconsin","WI",11117 +2009-03-01,"Commercial Consumption","Kansas","KS",3727 +2009-03-01,"Commercial Consumption","Rhode Island","RI",1608 +2009-03-01,"Commercial Consumption","West Virginia","WV",2524 +2009-03-01,"Commercial Consumption","U.S.","U.S.",358253 +2009-03-01,"Commercial Consumption","Texas","TX",16076 +2009-03-01,"Commercial Consumption","Georgia","GA",5467 +2009-03-01,"Commercial Consumption","California","CA",23555 +2009-03-01,"Commercial Consumption","Washington","WA",6843 +2009-03-01,"Commercial Consumption","Utah","UT",4450 +2009-03-01,"Commercial Consumption","Oregon","OR",3774 +2009-03-01,"Commercial Consumption","Oklahoma","OK",4770 +2009-03-01,"Commercial Consumption","Missouri","MO",7208 +2009-03-01,"Commercial Consumption","South Dakota","SD",1419 +2009-03-01,"Commercial Consumption","Michigan","MI",21465 +2009-03-01,"Commercial Consumption","New Jersey","NJ",20061 +2009-03-01,"Commercial Consumption","Maine","ME",754 +2009-03-01,"Commercial Consumption","Maryland","MD",8354 +2009-03-01,"Commercial Consumption","Ohio","OH",20017 +2009-03-01,"Commercial Consumption","New York","NY",34522 +2009-03-01,"Commercial Consumption","Nevada","NV",3007 +2009-03-01,"Delivered to Consumers","Montana","MT",7703 +2009-03-01,"Delivered to Consumers","Kentucky","KY",18099 +2009-03-01,"Delivered to Consumers","North Carolina","NC",24096 +2009-03-01,"Delivered to Consumers","Mississippi","MS",25040 +2009-03-01,"Delivered to Consumers","Maine","ME",5974 +2009-03-01,"Delivered to Consumers","Vermont","VT",1076 +2009-03-01,"Delivered to Consumers","Iowa","IA",30286 +2009-03-01,"Delivered to Consumers","Alabama","AL",36317 +2009-03-01,"Delivered to Consumers","Virginia","VA",31322 +2009-03-01,"Delivered to Consumers","Texas","TX",235391 +2009-03-01,"Delivered to Consumers","Oregon","OR",25659 +2009-03-01,"Delivered to Consumers","Arizona","AZ",22012 +2009-03-01,"Delivered to Consumers","Washington","WA",30907 +2009-03-01,"Delivered to Consumers","Alaska","AK",8265 +2009-03-01,"Delivered to Consumers","Massachusetts","MA",41447 +2009-03-01,"Delivered to Consumers","Minnesota","MN",43629 +2009-03-01,"Delivered to Consumers","Kansas","KS",23738 +2009-03-01,"Delivered to Consumers","Louisiana","LA",82386 +2009-03-01,"Delivered to Consumers","Florida","FL",74153 +2009-03-01,"Delivered to Consumers","U.S.","U.S.",1996245 +2009-03-01,"Delivered to Consumers","Illinois","IL",112576 +2009-03-01,"Delivered to Consumers","Maryland","MD",22416 +2009-03-01,"Delivered to Consumers","Hawaii","HI",223 +2009-03-01,"Delivered to Consumers","Ohio","OH",79761 +2009-03-01,"Delivered to Consumers","Nevada","NV",23552 +2009-03-01,"Delivered to Consumers","North Dakota","ND",4270 +2009-03-01,"Delivered to Consumers","New York","NY",128423 +2009-03-01,"Delivered to Consumers","Tennessee","TN",22409 +2009-03-01,"Delivered to Consumers","Wisconsin","WI",42277 +2009-03-01,"Delivered to Consumers","Pennsylvania","PA",83110 +2009-03-01,"Delivered to Consumers","California","CA",190858 +2009-03-01,"Delivered to Consumers","Wyoming","WY",6026 +2009-03-01,"Delivered to Consumers","West Virginia","WV",8061 +2009-03-01,"Delivered to Consumers","South Dakota","SD",6027 +2009-03-01,"Delivered to Consumers","Idaho","ID",7819 +2009-03-01,"Delivered to Consumers","Connecticut","CT",19891 +2009-03-01,"Delivered to Consumers","Missouri","MO",28685 +2009-03-01,"Delivered to Consumers","Colorado","CO",39678 +2009-03-01,"Delivered to Consumers","New Jersey","NJ",64810 +2009-03-01,"Delivered to Consumers","Georgia","GA",40809 +2009-03-01,"Delivered to Consumers","New Hampshire","NH",4408 +2009-03-01,"Delivered to Consumers","District of Columbia","DC",3799 +2009-03-01,"Delivered to Consumers","Utah","UT",19132 +2009-03-01,"Delivered to Consumers","New Mexico","NM",14451 +2009-03-01,"Delivered to Consumers","Indiana","IN",46963 +2009-03-01,"Delivered to Consumers","Delaware","DE",4826 +2009-03-01,"Delivered to Consumers","Rhode Island","RI",9675 +2009-03-01,"Delivered to Consumers","Oklahoma","OK",49717 +2009-03-01,"Delivered to Consumers","Michigan","MI",86941 +2009-03-01,"Delivered to Consumers","Arkansas","AR",21891 +2009-03-01,"Delivered to Consumers","Nebraska","NE",16668 +2009-03-01,"Delivered to Consumers","South Carolina","SC",16277 +2009-03-01,"Electric Power Consumption","Virginia","VA",7226 +2009-03-01,"Electric Power Consumption","Oregon","OR",10584 +2009-03-01,"Electric Power Consumption","Pennsylvania","PA",18228 +2009-03-01,"Electric Power Consumption","Wyoming","WY",112 +2009-03-01,"Electric Power Consumption","U.S.","U.S.",499678 +2009-03-01,"Electric Power Consumption","Texas","TX",98724 +2009-03-01,"Electric Power Consumption","West Virginia","WV",81 +2009-03-01,"Electric Power Consumption","Vermont","VT",6 +2009-03-01,"Electric Power Consumption","Maine","ME",2831 +2009-03-01,"Electric Power Consumption","Kentucky","KY",452 +2009-03-01,"Electric Power Consumption","Maryland","MD",1386 +2009-03-01,"Electric Power Consumption","California","CA",55355 +2009-03-01,"Electric Power Consumption","Minnesota","MN",1395 +2009-03-01,"Electric Power Consumption","Illinois","IL",2655 +2009-03-01,"Electric Power Consumption","Massachusetts","MA",10857 +2009-03-01,"Electric Power Consumption","Nevada","NV",14916 +2009-03-01,"Electric Power Consumption","Iowa","IA",941 +2009-03-01,"Electric Power Consumption","Alabama","AL",17513 +2009-03-01,"Electric Power Consumption","Alaska","AK",3234 +2009-03-01,"Electric Power Consumption","Idaho","ID",613 +2009-03-01,"Electric Power Consumption","Oklahoma","OK",23200 +2009-03-01,"Electric Power Consumption","Tennessee","TN",291 +2009-03-01,"Electric Power Consumption","North Carolina","NC",2674 +2009-03-01,"Electric Power Consumption","Mississippi","MS",12960 +2009-03-01,"Electric Power Consumption","North Dakota","ND",1 +2009-03-01,"Electric Power Consumption","Florida","FL",61875 +2009-03-01,"Electric Power Consumption","Rhode Island","RI",4659 +2009-03-01,"Electric Power Consumption","Utah","UT",4361 +2009-03-01,"Electric Power Consumption","Wisconsin","WI",3355 +2009-03-01,"Electric Power Consumption","South Dakota","SD",29 +2009-03-01,"Electric Power Consumption","Nebraska","NE",154 +2009-03-01,"Electric Power Consumption","Delaware","DE",565 +2009-03-01,"Electric Power Consumption","Georgia","GA",10319 +2009-03-01,"Electric Power Consumption","Louisiana","LA",13457 +2009-03-01,"Electric Power Consumption","South Carolina","SC",5174 +2009-03-01,"Electric Power Consumption","New York","NY",30183 +2009-03-01,"Electric Power Consumption","Kansas","KS",2195 +2009-03-01,"Electric Power Consumption","Arizona","AZ",13533 +2009-03-01,"Electric Power Consumption","New Mexico","NM",6351 +2009-03-01,"Electric Power Consumption","Colorado","CO",10947 +2009-03-01,"Electric Power Consumption","Michigan","MI",7354 +2009-03-01,"Electric Power Consumption","New Hampshire","NH",1709 +2009-03-01,"Electric Power Consumption","Montana","MT",41 +2009-03-01,"Electric Power Consumption","Connecticut","CT",6042 +2009-03-01,"Electric Power Consumption","Washington","WA",6614 +2009-03-01,"Electric Power Consumption","New Jersey","NJ",9475 +2009-03-01,"Electric Power Consumption","Arkansas","AR",6750 +2009-03-01,"Electric Power Consumption","Missouri","MO",1937 +2009-03-01,"Electric Power Consumption","Hawaii","HI",NA +2009-03-01,"Electric Power Consumption","Ohio","OH",2801 +2009-03-01,"Electric Power Consumption","Indiana","IN",3562 +2009-03-01,"Industrial Consumption","Missouri","MO",5804 +2009-03-01,"Industrial Consumption","Washington","WA",6255 +2009-03-01,"Industrial Consumption","South Dakota","SD",2812 +2009-03-01,"Industrial Consumption","Kansas","KS",9026 +2009-03-01,"Industrial Consumption","Mississippi","MS",7299 +2009-03-01,"Industrial Consumption","California","CA",58337 +2009-03-01,"Industrial Consumption","Nebraska","NE",6677 +2009-03-01,"Industrial Consumption","Minnesota","MN",12736 +2009-03-01,"Industrial Consumption","Connecticut","CT",2335 +2009-03-01,"Industrial Consumption","Georgia","GA",12398 +2009-03-01,"Industrial Consumption","Montana","MT",1899 +2009-03-01,"Industrial Consumption","Hawaii","HI",29 +2009-03-01,"Industrial Consumption","Pennsylvania","PA",15477 +2009-03-01,"Industrial Consumption","Tennessee","TN",6992 +2009-03-01,"Industrial Consumption","North Carolina","NC",7493 +2009-03-01,"Industrial Consumption","North Dakota","ND",1247 +2009-03-01,"Industrial Consumption","Oklahoma","OK",14146 +2009-03-01,"Industrial Consumption","Ohio","OH",21677 +2009-03-01,"Industrial Consumption","New Hampshire","NH",482 +2009-03-01,"Industrial Consumption","Florida","FL",5449 +2009-03-01,"Industrial Consumption","Indiana","IN",21057 +2009-03-01,"Industrial Consumption","Delaware","DE",1505 +2009-03-01,"Industrial Consumption","Rhode Island","RI",708 +2009-03-01,"Industrial Consumption","New York","NY",7357 +2009-03-01,"Industrial Consumption","Vermont","VT",268 +2009-03-01,"Industrial Consumption","Michigan","MI",12750 +2009-03-01,"Industrial Consumption","Alaska","AK",599 +2009-03-01,"Industrial Consumption","Louisiana","LA",62511 +2009-03-01,"Industrial Consumption","New Mexico","NM",964 +2009-03-01,"Industrial Consumption","Utah","UT",2496 +2009-03-01,"Industrial Consumption","Oregon","OR",5205 +2009-03-01,"Industrial Consumption","Maine","ME",2198 +2009-03-01,"Industrial Consumption","Alabama","AL",10834 +2009-03-01,"Industrial Consumption","Virginia","VA",5189 +2009-03-01,"Industrial Consumption","Wisconsin","WI",11151 +2009-03-01,"Industrial Consumption","Idaho","ID",2334 +2009-03-01,"Industrial Consumption","Arkansas","AR",6810 +2009-03-01,"Industrial Consumption","Texas","TX",100624 +2009-03-01,"Industrial Consumption","Kentucky","KY",8440 +2009-03-01,"Industrial Consumption","District of Columbia","DC",0 +2009-03-01,"Industrial Consumption","Massachusetts","MA",3848 +2009-03-01,"Industrial Consumption","U.S.","U.S.",535671 +2009-03-01,"Industrial Consumption","New Jersey","NJ",4826 +2009-03-01,"Industrial Consumption","Iowa","IA",14383 +2009-03-01,"Industrial Consumption","Illinois","IL",23736 +2009-03-01,"Industrial Consumption","Maryland","MD",2109 +2009-03-01,"Industrial Consumption","Colorado","CO",11526 +2009-03-01,"Industrial Consumption","Arizona","AZ",1631 +2009-03-01,"Industrial Consumption","Nevada","NV",1034 +2009-03-01,"Industrial Consumption","South Carolina","SC",5666 +2009-03-01,"Industrial Consumption","West Virginia","WV",2119 +2009-03-01,"Industrial Consumption","Wyoming","WY",3224 +2009-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",110456 +2009-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",63814 +2009-03-01,"Residential Consumption","Rhode Island","RI",2700 +2009-03-01,"Residential Consumption","Hawaii","HI",46 +2009-03-01,"Residential Consumption","Tennessee","TN",9054 +2009-03-01,"Residential Consumption","South Dakota","SD",1766 +2009-03-01,"Residential Consumption","Georgia","GA",12625 +2009-03-01,"Residential Consumption","District of Columbia","DC",1662 +2009-03-01,"Residential Consumption","Indiana","IN",14411 +2009-03-01,"Residential Consumption","Colorado","CO",11497 +2009-03-01,"Residential Consumption","California","CA",53611 +2009-03-01,"Residential Consumption","U.S.","U.S.",600328 +2009-03-01,"Residential Consumption","Ohio","OH",35265 +2009-03-01,"Residential Consumption","North Carolina","NC",8259 +2009-03-01,"Residential Consumption","Louisiana","LA",4069 +2009-03-01,"Residential Consumption","Wisconsin","WI",16655 +2009-03-01,"Residential Consumption","Nebraska","NE",5978 +2009-03-01,"Residential Consumption","Minnesota","MN",16878 +2009-03-01,"Residential Consumption","Arkansas","AR",4408 +2009-03-01,"Residential Consumption","Alaska","AK",2454 +2009-03-01,"Residential Consumption","Illinois","IL",59533 +2009-03-01,"Residential Consumption","Oregon","OR",6096 +2009-03-01,"Residential Consumption","Virginia","VA",11066 +2009-03-01,"Residential Consumption","Utah","UT",7825 +2009-03-01,"Residential Consumption","Alabama","AL",5135 +2009-03-01,"Residential Consumption","West Virginia","WV",3336 +2009-03-01,"Residential Consumption","New Mexico","NM",4123 +2009-03-01,"Residential Consumption","Florida","FL",2025 +2009-03-01,"Residential Consumption","Washington","WA",11195 +2009-03-01,"Residential Consumption","Arizona","AZ",3721 +2009-03-01,"Residential Consumption","Texas","TX",19967 +2009-03-01,"Residential Consumption","South Carolina","SC",3263 +2009-03-01,"Residential Consumption","Michigan","MI",45372 +2009-03-01,"Residential Consumption","Nevada","NV",4596 +2009-03-01,"Residential Consumption","New Jersey","NJ",30448 +2009-03-01,"Residential Consumption","Oklahoma","OK",7601 +2009-03-01,"Residential Consumption","Delaware","DE",1466 +2009-03-01,"Residential Consumption","New York","NY",56360 +2009-03-01,"Residential Consumption","Maryland","MD",10567 +2009-03-01,"Residential Consumption","Maine","ME",191 +2009-03-01,"Residential Consumption","Massachusetts","MA",17631 +2009-03-01,"Residential Consumption","Montana","MT",2762 +2009-03-01,"Residential Consumption","Kansas","KS",8790 +2009-03-01,"Residential Consumption","Mississippi","MS",2798 +2009-03-01,"Residential Consumption","Vermont","VT",461 +2009-03-01,"Residential Consumption","Kentucky","KY",5548 +2009-03-01,"Residential Consumption","Missouri","MO",13736 +2009-03-01,"Residential Consumption","Iowa","IA",8921 +2009-03-01,"Residential Consumption","Connecticut","CT",6431 +2009-03-01,"Residential Consumption","Pennsylvania","PA",30896 +2009-03-01,"Residential Consumption","North Dakota","ND",1555 +2009-03-01,"Residential Consumption","Idaho","ID",3074 +2009-03-01,"Residential Consumption","New Hampshire","NH",995 +2009-03-01,"Residential Consumption","Wyoming","WY",1504 +2009-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2315 +2009-04-01,"Commercial Consumption","Washington","WA",5087 +2009-04-01,"Commercial Consumption","South Dakota","SD",919 +2009-04-01,"Commercial Consumption","Vermont","VT",236 +2009-04-01,"Commercial Consumption","Rhode Island","RI",1119 +2009-04-01,"Commercial Consumption","New Mexico","NM",2446 +2009-04-01,"Commercial Consumption","Oklahoma","OK",3940 +2009-04-01,"Commercial Consumption","Missouri","MO",5038 +2009-04-01,"Commercial Consumption","Massachusetts","MA",6148 +2009-04-01,"Commercial Consumption","Hawaii","HI",153 +2009-04-01,"Commercial Consumption","California","CA",20450 +2009-04-01,"Commercial Consumption","Arkansas","AR",3039 +2009-04-01,"Commercial Consumption","Mississippi","MS",1281 +2009-04-01,"Commercial Consumption","Tennessee","TN",3763 +2009-04-01,"Commercial Consumption","Louisiana","LA",1861 +2009-04-01,"Commercial Consumption","North Carolina","NC",3161 +2009-04-01,"Commercial Consumption","Oregon","OR",2754 +2009-04-01,"Commercial Consumption","Montana","MT",1931 +2009-04-01,"Commercial Consumption","Florida","FL",4418 +2009-04-01,"Commercial Consumption","Idaho","ID",1116 +2009-04-01,"Commercial Consumption","Alaska","AK",1381 +2009-04-01,"Commercial Consumption","Indiana","IN",5181 +2009-04-01,"Commercial Consumption","Pennsylvania","PA",11624 +2009-04-01,"Commercial Consumption","Wisconsin","WI",6928 +2009-04-01,"Commercial Consumption","New Jersey","NJ",12767 +2009-04-01,"Commercial Consumption","Maine","ME",427 +2009-04-01,"Commercial Consumption","U.S.","U.S.",249120 +2009-04-01,"Commercial Consumption","Georgia","GA",3604 +2009-04-01,"Commercial Consumption","Iowa","IA",4055 +2009-04-01,"Commercial Consumption","Alabama","AL",1927 +2009-04-01,"Commercial Consumption","Delaware","DE",813 +2009-04-01,"Commercial Consumption","Arizona","AZ",2724 +2009-04-01,"Commercial Consumption","Michigan","MI",14791 +2009-04-01,"Commercial Consumption","North Dakota","ND",820 +2009-04-01,"Commercial Consumption","Colorado","CO",5479 +2009-04-01,"Commercial Consumption","New Hampshire","NH",719 +2009-04-01,"Commercial Consumption","Maryland","MD",5421 +2009-04-01,"Commercial Consumption","Nebraska","NE",2906 +2009-04-01,"Commercial Consumption","Nevada","NV",2503 +2009-04-01,"Commercial Consumption","Minnesota","MN",6736 +2009-04-01,"Commercial Consumption","Illinois","IL",17833 +2009-04-01,"Commercial Consumption","District of Columbia","DC",1428 +2009-04-01,"Commercial Consumption","West Virginia","WV",1760 +2009-04-01,"Commercial Consumption","Kentucky","KY",2129 +2009-04-01,"Commercial Consumption","Kansas","KS",2778 +2009-04-01,"Commercial Consumption","Connecticut","CT",3463 +2009-04-01,"Commercial Consumption","Wyoming","WY",1140 +2009-04-01,"Commercial Consumption","South Carolina","SC",1600 +2009-04-01,"Commercial Consumption","Utah","UT",3795 +2009-04-01,"Commercial Consumption","Virginia","VA",4618 +2009-04-01,"Commercial Consumption","Texas","TX",13539 +2009-04-01,"Commercial Consumption","Ohio","OH",12268 +2009-04-01,"Commercial Consumption","New York","NY",23100 +2009-04-01,"Delivered to Consumers","Utah","UT",16680 +2009-04-01,"Delivered to Consumers","Montana","MT",5419 +2009-04-01,"Delivered to Consumers","Alabama","AL",31282 +2009-04-01,"Delivered to Consumers","California","CA",166489 +2009-04-01,"Delivered to Consumers","Oregon","OR",16364 +2009-04-01,"Delivered to Consumers","New Jersey","NJ",43447 +2009-04-01,"Delivered to Consumers","Maine","ME",4913 +2009-04-01,"Delivered to Consumers","Louisiana","LA",80043 +2009-04-01,"Delivered to Consumers","New Hampshire","NH",4649 +2009-04-01,"Delivered to Consumers","District of Columbia","DC",2225 +2009-04-01,"Delivered to Consumers","U.S.","U.S.",1585512 +2009-04-01,"Delivered to Consumers","Wyoming","WY",5396 +2009-04-01,"Delivered to Consumers","Hawaii","HI",236 +2009-04-01,"Delivered to Consumers","Kansas","KS",19367 +2009-04-01,"Delivered to Consumers","Kentucky","KY",13105 +2009-04-01,"Delivered to Consumers","Connecticut","CT",13878 +2009-04-01,"Delivered to Consumers","Mississippi","MS",22354 +2009-04-01,"Delivered to Consumers","Texas","TX",208076 +2009-04-01,"Delivered to Consumers","Illinois","IL",80429 +2009-04-01,"Delivered to Consumers","Idaho","ID",5349 +2009-04-01,"Delivered to Consumers","Ohio","OH",55765 +2009-04-01,"Delivered to Consumers","North Carolina","NC",14130 +2009-04-01,"Delivered to Consumers","Massachusetts","MA",30642 +2009-04-01,"Delivered to Consumers","Georgia","GA",32388 +2009-04-01,"Delivered to Consumers","New Mexico","NM",11835 +2009-04-01,"Delivered to Consumers","West Virginia","WV",5599 +2009-04-01,"Delivered to Consumers","Vermont","VT",794 +2009-04-01,"Delivered to Consumers","South Dakota","SD",4913 +2009-04-01,"Delivered to Consumers","Iowa","IA",23799 +2009-04-01,"Delivered to Consumers","Wisconsin","WI",30979 +2009-04-01,"Delivered to Consumers","Missouri","MO",20551 +2009-04-01,"Delivered to Consumers","Nevada","NV",18684 +2009-04-01,"Delivered to Consumers","Minnesota","MN",27945 +2009-04-01,"Delivered to Consumers","Indiana","IN",32918 +2009-04-01,"Delivered to Consumers","Oklahoma","OK",43705 +2009-04-01,"Delivered to Consumers","Colorado","CO",37397 +2009-04-01,"Delivered to Consumers","Arizona","AZ",22186 +2009-04-01,"Delivered to Consumers","Rhode Island","RI",7190 +2009-04-01,"Delivered to Consumers","New York","NY",95282 +2009-04-01,"Delivered to Consumers","Maryland","MD",13239 +2009-04-01,"Delivered to Consumers","Michigan","MI",60568 +2009-04-01,"Delivered to Consumers","Virginia","VA",19487 +2009-04-01,"Delivered to Consumers","Alaska","AK",6324 +2009-04-01,"Delivered to Consumers","Arkansas","AR",17793 +2009-04-01,"Delivered to Consumers","Pennsylvania","PA",62276 +2009-04-01,"Delivered to Consumers","Washington","WA",20922 +2009-04-01,"Delivered to Consumers","North Dakota","ND",2667 +2009-04-01,"Delivered to Consumers","Delaware","DE",3082 +2009-04-01,"Delivered to Consumers","Tennessee","TN",15148 +2009-04-01,"Delivered to Consumers","Nebraska","NE",13447 +2009-04-01,"Delivered to Consumers","South Carolina","SC",12532 +2009-04-01,"Delivered to Consumers","Florida","FL",79386 +2009-04-01,"Electric Power Consumption","Michigan","MI",4676 +2009-04-01,"Electric Power Consumption","California","CA",49661 +2009-04-01,"Electric Power Consumption","Alabama","AL",16260 +2009-04-01,"Electric Power Consumption","New Jersey","NJ",11163 +2009-04-01,"Electric Power Consumption","South Carolina","SC",4234 +2009-04-01,"Electric Power Consumption","Texas","TX",85807 +2009-04-01,"Electric Power Consumption","Minnesota","MN",1423 +2009-04-01,"Electric Power Consumption","West Virginia","WV",97 +2009-04-01,"Electric Power Consumption","U.S.","U.S.",451395 +2009-04-01,"Electric Power Consumption","Indiana","IN",850 +2009-04-01,"Electric Power Consumption","Alaska","AK",2884 +2009-04-01,"Electric Power Consumption","Washington","WA",2077 +2009-04-01,"Electric Power Consumption","Idaho","ID",271 +2009-04-01,"Electric Power Consumption","Oklahoma","OK",18326 +2009-04-01,"Electric Power Consumption","Pennsylvania","PA",17654 +2009-04-01,"Electric Power Consumption","Wyoming","WY",123 +2009-04-01,"Electric Power Consumption","Oregon","OR",4698 +2009-04-01,"Electric Power Consumption","South Dakota","SD",24 +2009-04-01,"Electric Power Consumption","Maine","ME",2225 +2009-04-01,"Electric Power Consumption","Ohio","OH",2621 +2009-04-01,"Electric Power Consumption","Maryland","MD",757 +2009-04-01,"Electric Power Consumption","Virginia","VA",5284 +2009-04-01,"Electric Power Consumption","Massachusetts","MA",10854 +2009-04-01,"Electric Power Consumption","Tennessee","TN",109 +2009-04-01,"Electric Power Consumption","North Carolina","NC",1314 +2009-04-01,"Electric Power Consumption","Connecticut","CT",4560 +2009-04-01,"Electric Power Consumption","Georgia","GA",10260 +2009-04-01,"Electric Power Consumption","New York","NY",29187 +2009-04-01,"Electric Power Consumption","Rhode Island","RI",3281 +2009-04-01,"Electric Power Consumption","Illinois","IL",2612 +2009-04-01,"Electric Power Consumption","Wisconsin","WI",4016 +2009-04-01,"Electric Power Consumption","Iowa","IA",603 +2009-04-01,"Electric Power Consumption","North Dakota","ND",0 +2009-04-01,"Electric Power Consumption","Florida","FL",68225 +2009-04-01,"Electric Power Consumption","New Mexico","NM",4846 +2009-04-01,"Electric Power Consumption","Colorado","CO",10386 +2009-04-01,"Electric Power Consumption","Arkansas","AR",5398 +2009-04-01,"Electric Power Consumption","Kansas","KS",1758 +2009-04-01,"Electric Power Consumption","Nevada","NV",12228 +2009-04-01,"Electric Power Consumption","Vermont","VT",3 +2009-04-01,"Electric Power Consumption","Mississippi","MS",12098 +2009-04-01,"Electric Power Consumption","Hawaii","HI",NA +2009-04-01,"Electric Power Consumption","New Hampshire","NH",2913 +2009-04-01,"Electric Power Consumption","Montana","MT",29 +2009-04-01,"Electric Power Consumption","Delaware","DE",133 +2009-04-01,"Electric Power Consumption","Arizona","AZ",15353 +2009-04-01,"Electric Power Consumption","Louisiana","LA",14819 +2009-04-01,"Electric Power Consumption","Utah","UT",3529 +2009-04-01,"Electric Power Consumption","Nebraska","NE",191 +2009-04-01,"Electric Power Consumption","Missouri","MO",1121 +2009-04-01,"Electric Power Consumption","Kentucky","KY",458 +2009-04-01,"Industrial Consumption","Ohio","OH",17992 +2009-04-01,"Industrial Consumption","Texas","TX",95417 +2009-04-01,"Industrial Consumption","Iowa","IA",13659 +2009-04-01,"Industrial Consumption","Michigan","MI",11152 +2009-04-01,"Industrial Consumption","Massachusetts","MA",3325 +2009-04-01,"Industrial Consumption","Utah","UT",2591 +2009-04-01,"Industrial Consumption","Pennsylvania","PA",13817 +2009-04-01,"Industrial Consumption","New York","NY",5811 +2009-04-01,"Industrial Consumption","New Jersey","NJ",4313 +2009-04-01,"Industrial Consumption","Minnesota","MN",10165 +2009-04-01,"Industrial Consumption","Alaska","AK",470 +2009-04-01,"Industrial Consumption","North Dakota","ND",972 +2009-04-01,"Industrial Consumption","Alabama","AL",10486 +2009-04-01,"Industrial Consumption","Indiana","IN",17271 +2009-04-01,"Industrial Consumption","Colorado","CO",9837 +2009-04-01,"Industrial Consumption","Arkansas","AR",6275 +2009-04-01,"Industrial Consumption","South Carolina","SC",5148 +2009-04-01,"Industrial Consumption","Vermont","VT",230 +2009-04-01,"Industrial Consumption","Tennessee","TN",6489 +2009-04-01,"Industrial Consumption","Connecticut","CT",1911 +2009-04-01,"Industrial Consumption","Oregon","OR",4584 +2009-04-01,"Industrial Consumption","Maine","ME",2134 +2009-04-01,"Industrial Consumption","Wisconsin","WI",9344 +2009-04-01,"Industrial Consumption","Rhode Island","RI",721 +2009-04-01,"Industrial Consumption","North Carolina","NC",6412 +2009-04-01,"Industrial Consumption","Montana","MT",1452 +2009-04-01,"Industrial Consumption","Hawaii","HI",36 +2009-04-01,"Industrial Consumption","Oklahoma","OK",15669 +2009-04-01,"Industrial Consumption","Louisiana","LA",60914 +2009-04-01,"Industrial Consumption","South Dakota","SD",2816 +2009-04-01,"Industrial Consumption","New Mexico","NM",1316 +2009-04-01,"Industrial Consumption","Florida","FL",5405 +2009-04-01,"Industrial Consumption","Kentucky","KY",7240 +2009-04-01,"Industrial Consumption","Georgia","GA",11118 +2009-04-01,"Industrial Consumption","Maryland","MD",1984 +2009-04-01,"Industrial Consumption","Missouri","MO",5142 +2009-04-01,"Industrial Consumption","Kansas","KS",8362 +2009-04-01,"Industrial Consumption","Arizona","AZ",1489 +2009-04-01,"Industrial Consumption","California","CA",55472 +2009-04-01,"Industrial Consumption","Nebraska","NE",6264 +2009-04-01,"Industrial Consumption","West Virginia","WV",1805 +2009-04-01,"Industrial Consumption","Wyoming","WY",2751 +2009-04-01,"Industrial Consumption","Idaho","ID",2188 +2009-04-01,"Industrial Consumption","Illinois","IL",19636 +2009-04-01,"Industrial Consumption","District of Columbia","DC",0 +2009-04-01,"Industrial Consumption","Washington","WA",5739 +2009-04-01,"Industrial Consumption","U.S.","U.S.",492412 +2009-04-01,"Industrial Consumption","Nevada","NV",979 +2009-04-01,"Industrial Consumption","Mississippi","MS",7768 +2009-04-01,"Industrial Consumption","Virginia","VA",4575 +2009-04-01,"Industrial Consumption","New Hampshire","NH",436 +2009-04-01,"Industrial Consumption","Delaware","DE",1330 +2009-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105047 +2009-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",50684 +2009-04-01,"Residential Consumption","Texas","TX",13313 +2009-04-01,"Residential Consumption","Louisiana","LA",2450 +2009-04-01,"Residential Consumption","Hawaii","HI",47 +2009-04-01,"Residential Consumption","Utah","UT",6765 +2009-04-01,"Residential Consumption","Michigan","MI",29950 +2009-04-01,"Residential Consumption","District of Columbia","DC",797 +2009-04-01,"Residential Consumption","New Jersey","NJ",15204 +2009-04-01,"Residential Consumption","Alabama","AL",2609 +2009-04-01,"Residential Consumption","Alaska","AK",1589 +2009-04-01,"Residential Consumption","Wyoming","WY",1381 +2009-04-01,"Residential Consumption","South Carolina","SC",1550 +2009-04-01,"Residential Consumption","Ohio","OH",22885 +2009-04-01,"Residential Consumption","Tennessee","TN",4787 +2009-04-01,"Residential Consumption","Maine","ME",127 +2009-04-01,"Residential Consumption","Florida","FL",1338 +2009-04-01,"Residential Consumption","North Dakota","ND",874 +2009-04-01,"Residential Consumption","Kentucky","KY",3277 +2009-04-01,"Residential Consumption","Colorado","CO",11695 +2009-04-01,"Residential Consumption","Kansas","KS",6468 +2009-04-01,"Residential Consumption","U.S.","U.S.",390344 +2009-04-01,"Residential Consumption","Rhode Island","RI",2068 +2009-04-01,"Residential Consumption","North Carolina","NC",3243 +2009-04-01,"Residential Consumption","Iowa","IA",5482 +2009-04-01,"Residential Consumption","Nevada","NV",2974 +2009-04-01,"Residential Consumption","Montana","MT",2007 +2009-04-01,"Residential Consumption","Oklahoma","OK",5770 +2009-04-01,"Residential Consumption","Maryland","MD",5078 +2009-04-01,"Residential Consumption","Pennsylvania","PA",19180 +2009-04-01,"Residential Consumption","Indiana","IN",9616 +2009-04-01,"Residential Consumption","Idaho","ID",1774 +2009-04-01,"Residential Consumption","Missouri","MO",9250 +2009-04-01,"Residential Consumption","Illinois","IL",40348 +2009-04-01,"Residential Consumption","Wisconsin","WI",10691 +2009-04-01,"Residential Consumption","Nebraska","NE",4086 +2009-04-01,"Residential Consumption","Minnesota","MN",9622 +2009-04-01,"Residential Consumption","Massachusetts","MA",10316 +2009-04-01,"Residential Consumption","Arkansas","AR",3082 +2009-04-01,"Residential Consumption","Delaware","DE",806 +2009-04-01,"Residential Consumption","Arizona","AZ",2621 +2009-04-01,"Residential Consumption","Virginia","VA",5009 +2009-04-01,"Residential Consumption","Georgia","GA",7406 +2009-04-01,"Residential Consumption","New Hampshire","NH",581 +2009-04-01,"Residential Consumption","Washington","WA",8018 +2009-04-01,"Residential Consumption","West Virginia","WV",1937 +2009-04-01,"Residential Consumption","Mississippi","MS",1207 +2009-04-01,"Residential Consumption","Vermont","VT",326 +2009-04-01,"Residential Consumption","New Mexico","NM",3227 +2009-04-01,"Residential Consumption","California","CA",40905 +2009-04-01,"Residential Consumption","New York","NY",37184 +2009-04-01,"Residential Consumption","Oregon","OR",4327 +2009-04-01,"Residential Consumption","Connecticut","CT",3943 +2009-04-01,"Residential Consumption","South Dakota","SD",1154 +2009-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2241 +2009-05-01,"Commercial Consumption","Wyoming","WY",702 +2009-05-01,"Commercial Consumption","Washington","WA",3639 +2009-05-01,"Commercial Consumption","Wisconsin","WI",3653 +2009-05-01,"Commercial Consumption","Maine","ME",273 +2009-05-01,"Commercial Consumption","U.S.","U.S.",166233 +2009-05-01,"Commercial Consumption","Texas","TX",10694 +2009-05-01,"Commercial Consumption","Tennessee","TN",2587 +2009-05-01,"Commercial Consumption","Minnesota","MN",4400 +2009-05-01,"Commercial Consumption","Oklahoma","OK",2451 +2009-05-01,"Commercial Consumption","New Jersey","NJ",9617 +2009-05-01,"Commercial Consumption","Montana","MT",1272 +2009-05-01,"Commercial Consumption","Mississippi","MS",1125 +2009-05-01,"Commercial Consumption","Virginia","VA",3250 +2009-05-01,"Commercial Consumption","Kansas","KS",1400 +2009-05-01,"Commercial Consumption","Georgia","GA",2420 +2009-05-01,"Commercial Consumption","Florida","FL",4124 +2009-05-01,"Commercial Consumption","Vermont","VT",131 +2009-05-01,"Commercial Consumption","Ohio","OH",6084 +2009-05-01,"Commercial Consumption","Nebraska","NE",1615 +2009-05-01,"Commercial Consumption","Nevada","NV",1951 +2009-05-01,"Commercial Consumption","Indiana","IN",2834 +2009-05-01,"Commercial Consumption","Louisiana","LA",1685 +2009-05-01,"Commercial Consumption","Illinois","IL",9629 +2009-05-01,"Commercial Consumption","South Dakota","SD",513 +2009-05-01,"Commercial Consumption","Kentucky","KY",1679 +2009-05-01,"Commercial Consumption","New York","NY",15922 +2009-05-01,"Commercial Consumption","Michigan","MI",8513 +2009-05-01,"Commercial Consumption","North Dakota","ND",438 +2009-05-01,"Commercial Consumption","New Hampshire","NH",391 +2009-05-01,"Commercial Consumption","Rhode Island","RI",565 +2009-05-01,"Commercial Consumption","Arizona","AZ",2222 +2009-05-01,"Commercial Consumption","West Virginia","WV",1232 +2009-05-01,"Commercial Consumption","North Carolina","NC",2464 +2009-05-01,"Commercial Consumption","New Mexico","NM",1859 +2009-05-01,"Commercial Consumption","Pennsylvania","PA",6500 +2009-05-01,"Commercial Consumption","Massachusetts","MA",3731 +2009-05-01,"Commercial Consumption","Maryland","MD",3018 +2009-05-01,"Commercial Consumption","Iowa","IA",2531 +2009-05-01,"Commercial Consumption","Hawaii","HI",146 +2009-05-01,"Commercial Consumption","Alaska","AK",911 +2009-05-01,"Commercial Consumption","California","CA",18677 +2009-05-01,"Commercial Consumption","Alabama","AL",1489 +2009-05-01,"Commercial Consumption","Delaware","DE",566 +2009-05-01,"Commercial Consumption","Colorado","CO",3162 +2009-05-01,"Commercial Consumption","Utah","UT",2352 +2009-05-01,"Commercial Consumption","Idaho","ID",662 +2009-05-01,"Commercial Consumption","South Carolina","SC",1353 +2009-05-01,"Commercial Consumption","Oregon","OR",1827 +2009-05-01,"Commercial Consumption","Missouri","MO",2894 +2009-05-01,"Commercial Consumption","Connecticut","CT",1992 +2009-05-01,"Commercial Consumption","Arkansas","AR",2069 +2009-05-01,"Commercial Consumption","District of Columbia","DC",1018 +2009-05-01,"Delivered to Consumers","Indiana","IN",26031 +2009-05-01,"Delivered to Consumers","Delaware","DE",2927 +2009-05-01,"Delivered to Consumers","South Dakota","SD",3716 +2009-05-01,"Delivered to Consumers","Hawaii","HI",216 +2009-05-01,"Delivered to Consumers","Oklahoma","OK",41393 +2009-05-01,"Delivered to Consumers","Iowa","IA",18262 +2009-05-01,"Delivered to Consumers","Connecticut","CT",10476 +2009-05-01,"Delivered to Consumers","Pennsylvania","PA",44218 +2009-05-01,"Delivered to Consumers","Nevada","NV",22306 +2009-05-01,"Delivered to Consumers","Florida","FL",93665 +2009-05-01,"Delivered to Consumers","Rhode Island","RI",5817 +2009-05-01,"Delivered to Consumers","Maryland","MD",7959 +2009-05-01,"Delivered to Consumers","Nebraska","NE",9488 +2009-05-01,"Delivered to Consumers","Mississippi","MS",23563 +2009-05-01,"Delivered to Consumers","Missouri","MO",12145 +2009-05-01,"Delivered to Consumers","California","CA",152603 +2009-05-01,"Delivered to Consumers","Georgia","GA",28948 +2009-05-01,"Delivered to Consumers","New Mexico","NM",10111 +2009-05-01,"Delivered to Consumers","Vermont","VT",507 +2009-05-01,"Delivered to Consumers","Idaho","ID",3985 +2009-05-01,"Delivered to Consumers","Arkansas","AR",13764 +2009-05-01,"Delivered to Consumers","Texas","TX",232073 +2009-05-01,"Delivered to Consumers","Wyoming","WY",4491 +2009-05-01,"Delivered to Consumers","New York","NY",68148 +2009-05-01,"Delivered to Consumers","Kentucky","KY",9320 +2009-05-01,"Delivered to Consumers","Alabama","AL",29654 +2009-05-01,"Delivered to Consumers","Arizona","AZ",29926 +2009-05-01,"Delivered to Consumers","U.S.","U.S.",1353150 +2009-05-01,"Delivered to Consumers","Illinois","IL",47369 +2009-05-01,"Delivered to Consumers","Montana","MT",4198 +2009-05-01,"Delivered to Consumers","Michigan","MI",36140 +2009-05-01,"Delivered to Consumers","Oregon","OR",10388 +2009-05-01,"Delivered to Consumers","Utah","UT",12319 +2009-05-01,"Delivered to Consumers","West Virginia","WV",3822 +2009-05-01,"Delivered to Consumers","Alaska","AK",5309 +2009-05-01,"Delivered to Consumers","Tennessee","TN",11118 +2009-05-01,"Delivered to Consumers","Wisconsin","WI",18312 +2009-05-01,"Delivered to Consumers","Virginia","VA",14535 +2009-05-01,"Delivered to Consumers","Colorado","CO",25093 +2009-05-01,"Delivered to Consumers","South Carolina","SC",12739 +2009-05-01,"Delivered to Consumers","New Jersey","NJ",33689 +2009-05-01,"Delivered to Consumers","Louisiana","LA",84202 +2009-05-01,"Delivered to Consumers","Kansas","KS",13897 +2009-05-01,"Delivered to Consumers","Ohio","OH",33431 +2009-05-01,"Delivered to Consumers","North Carolina","NC",11754 +2009-05-01,"Delivered to Consumers","Massachusetts","MA",20236 +2009-05-01,"Delivered to Consumers","Maine","ME",4214 +2009-05-01,"Delivered to Consumers","New Hampshire","NH",4326 +2009-05-01,"Delivered to Consumers","Washington","WA",15567 +2009-05-01,"Delivered to Consumers","North Dakota","ND",2598 +2009-05-01,"Delivered to Consumers","Minnesota","MN",18403 +2009-05-01,"Delivered to Consumers","District of Columbia","DC",1463 +2009-05-01,"Electric Power Consumption","Iowa","IA",487 +2009-05-01,"Electric Power Consumption","U.S.","U.S.",515476 +2009-05-01,"Electric Power Consumption","Maryland","MD",548 +2009-05-01,"Electric Power Consumption","Texas","TX",116841 +2009-05-01,"Electric Power Consumption","North Carolina","NC",1761 +2009-05-01,"Electric Power Consumption","Indiana","IN",2254 +2009-05-01,"Electric Power Consumption","California","CA",51598 +2009-05-01,"Electric Power Consumption","Colorado","CO",8334 +2009-05-01,"Electric Power Consumption","Wisconsin","WI",2247 +2009-05-01,"Electric Power Consumption","Nevada","NV",17647 +2009-05-01,"Electric Power Consumption","New Hampshire","NH",3304 +2009-05-01,"Electric Power Consumption","Montana","MT",11 +2009-05-01,"Electric Power Consumption","Oregon","OR",1536 +2009-05-01,"Electric Power Consumption","Kansas","KS",1842 +2009-05-01,"Electric Power Consumption","West Virginia","WV",76 +2009-05-01,"Electric Power Consumption","Pennsylvania","PA",16339 +2009-05-01,"Electric Power Consumption","Missouri","MO",726 +2009-05-01,"Electric Power Consumption","Ohio","OH",2619 +2009-05-01,"Electric Power Consumption","Alaska","AK",2983 +2009-05-01,"Electric Power Consumption","Idaho","ID",412 +2009-05-01,"Electric Power Consumption","Arkansas","AR",4515 +2009-05-01,"Electric Power Consumption","Oklahoma","OK",21584 +2009-05-01,"Electric Power Consumption","Michigan","MI",4297 +2009-05-01,"Electric Power Consumption","Wyoming","WY",102 +2009-05-01,"Electric Power Consumption","Mississippi","MS",13417 +2009-05-01,"Electric Power Consumption","Hawaii","HI",NA +2009-05-01,"Electric Power Consumption","Georgia","GA",10666 +2009-05-01,"Electric Power Consumption","Florida","FL",83334 +2009-05-01,"Electric Power Consumption","New Mexico","NM",5206 +2009-05-01,"Electric Power Consumption","Louisiana","LA",19249 +2009-05-01,"Electric Power Consumption","Rhode Island","RI",3655 +2009-05-01,"Electric Power Consumption","Utah","UT",3830 +2009-05-01,"Electric Power Consumption","Kentucky","KY",173 +2009-05-01,"Electric Power Consumption","North Dakota","ND",0 +2009-05-01,"Electric Power Consumption","Connecticut","CT",4788 +2009-05-01,"Electric Power Consumption","Washington","WA",1509 +2009-05-01,"Electric Power Consumption","Virginia","VA",4461 +2009-05-01,"Electric Power Consumption","South Carolina","SC",5507 +2009-05-01,"Electric Power Consumption","New York","NY",28571 +2009-05-01,"Electric Power Consumption","Illinois","IL",2323 +2009-05-01,"Electric Power Consumption","Vermont","VT",6 +2009-05-01,"Electric Power Consumption","Tennessee","TN",125 +2009-05-01,"Electric Power Consumption","South Dakota","SD",49 +2009-05-01,"Electric Power Consumption","Delaware","DE",362 +2009-05-01,"Electric Power Consumption","Arizona","AZ",24652 +2009-05-01,"Electric Power Consumption","New Jersey","NJ",13246 +2009-05-01,"Electric Power Consumption","Minnesota","MN",1213 +2009-05-01,"Electric Power Consumption","Massachusetts","MA",8459 +2009-05-01,"Electric Power Consumption","Nebraska","NE",161 +2009-05-01,"Electric Power Consumption","Maine","ME",2128 +2009-05-01,"Electric Power Consumption","Alabama","AL",16319 +2009-05-01,"Industrial Consumption","Colorado","CO",7988 +2009-05-01,"Industrial Consumption","New York","NY",5007 +2009-05-01,"Industrial Consumption","Arkansas","AR",5895 +2009-05-01,"Industrial Consumption","Texas","TX",97019 +2009-05-01,"Industrial Consumption","New Hampshire","NH",334 +2009-05-01,"Industrial Consumption","Rhode Island","RI",540 +2009-05-01,"Industrial Consumption","District of Columbia","DC",0 +2009-05-01,"Industrial Consumption","U.S.","U.S.",467679 +2009-05-01,"Industrial Consumption","Oregon","OR",4431 +2009-05-01,"Industrial Consumption","Nevada","NV",846 +2009-05-01,"Industrial Consumption","Minnesota","MN",8171 +2009-05-01,"Industrial Consumption","Indiana","IN",16580 +2009-05-01,"Industrial Consumption","Utah","UT",2314 +2009-05-01,"Industrial Consumption","Alabama","AL",10290 +2009-05-01,"Industrial Consumption","Connecticut","CT",1725 +2009-05-01,"Industrial Consumption","Delaware","DE",1628 +2009-05-01,"Industrial Consumption","North Dakota","ND",1717 +2009-05-01,"Industrial Consumption","Massachusetts","MA",2628 +2009-05-01,"Industrial Consumption","Hawaii","HI",27 +2009-05-01,"Industrial Consumption","Louisiana","LA",61583 +2009-05-01,"Industrial Consumption","Wyoming","WY",2833 +2009-05-01,"Industrial Consumption","Idaho","ID",1902 +2009-05-01,"Industrial Consumption","Iowa","IA",12439 +2009-05-01,"Industrial Consumption","Michigan","MI",7932 +2009-05-01,"Industrial Consumption","North Carolina","NC",6215 +2009-05-01,"Industrial Consumption","Alaska","AK",523 +2009-05-01,"Industrial Consumption","Maryland","MD",1750 +2009-05-01,"Industrial Consumption","Oklahoma","OK",14628 +2009-05-01,"Industrial Consumption","South Dakota","SD",2546 +2009-05-01,"Industrial Consumption","Kansas","KS",7742 +2009-05-01,"Industrial Consumption","Mississippi","MS",8079 +2009-05-01,"Industrial Consumption","Maine","ME",1747 +2009-05-01,"Industrial Consumption","Vermont","VT",206 +2009-05-01,"Industrial Consumption","Wisconsin","WI",7664 +2009-05-01,"Industrial Consumption","Georgia","GA",11562 +2009-05-01,"Industrial Consumption","Missouri","MO",4480 +2009-05-01,"Industrial Consumption","California","CA",53691 +2009-05-01,"Industrial Consumption","South Carolina","SC",5177 +2009-05-01,"Industrial Consumption","Nebraska","NE",5823 +2009-05-01,"Industrial Consumption","West Virginia","WV",1759 +2009-05-01,"Industrial Consumption","Tennessee","TN",6197 +2009-05-01,"Industrial Consumption","Kentucky","KY",5965 +2009-05-01,"Industrial Consumption","Illinois","IL",17588 +2009-05-01,"Industrial Consumption","Montana","MT",1623 +2009-05-01,"Industrial Consumption","Arizona","AZ",1317 +2009-05-01,"Industrial Consumption","Virginia","VA",4274 +2009-05-01,"Industrial Consumption","New Jersey","NJ",3383 +2009-05-01,"Industrial Consumption","Washington","WA",5523 +2009-05-01,"Industrial Consumption","Ohio","OH",15299 +2009-05-01,"Industrial Consumption","New Mexico","NM",1297 +2009-05-01,"Industrial Consumption","Pennsylvania","PA",12649 +2009-05-01,"Industrial Consumption","Florida","FL",5146 +2009-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",108587 +2009-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",43256 +2009-05-01,"Residential Consumption","North Carolina","NC",1315 +2009-05-01,"Residential Consumption","Wisconsin","WI",4747 +2009-05-01,"Residential Consumption","Georgia","GA",4299 +2009-05-01,"Residential Consumption","Maine","ME",66 +2009-05-01,"Residential Consumption","Washington","WA",4895 +2009-05-01,"Residential Consumption","Delaware","DE",370 +2009-05-01,"Residential Consumption","Wyoming","WY",854 +2009-05-01,"Residential Consumption","Rhode Island","RI",1058 +2009-05-01,"Residential Consumption","Ohio","OH",9429 +2009-05-01,"Residential Consumption","Virginia","VA",2550 +2009-05-01,"Residential Consumption","Pennsylvania","PA",8731 +2009-05-01,"Residential Consumption","Indiana","IN",4364 +2009-05-01,"Residential Consumption","Idaho","ID",1008 +2009-05-01,"Residential Consumption","California","CA",28637 +2009-05-01,"Residential Consumption","New York","NY",18648 +2009-05-01,"Residential Consumption","Illinois","IL",17829 +2009-05-01,"Residential Consumption","Nebraska","NE",1889 +2009-05-01,"Residential Consumption","Minnesota","MN",4619 +2009-05-01,"Residential Consumption","New Mexico","NM",1749 +2009-05-01,"Residential Consumption","New Hampshire","NH",297 +2009-05-01,"Residential Consumption","Colorado","CO",5609 +2009-05-01,"Residential Consumption","Arizona","AZ",1734 +2009-05-01,"Residential Consumption","Alabama","AL",1556 +2009-05-01,"Residential Consumption","Connecticut","CT",1971 +2009-05-01,"Residential Consumption","North Dakota","ND",443 +2009-05-01,"Residential Consumption","Kentucky","KY",1503 +2009-05-01,"Residential Consumption","Alaska","AK",892 +2009-05-01,"Residential Consumption","Texas","TX",7519 +2009-05-01,"Residential Consumption","South Carolina","SC",702 +2009-05-01,"Residential Consumption","Mississippi","MS",942 +2009-05-01,"Residential Consumption","Louisiana","LA",1685 +2009-05-01,"Residential Consumption","Hawaii","HI",43 +2009-05-01,"Residential Consumption","Vermont","VT",164 +2009-05-01,"Residential Consumption","Utah","UT",3822 +2009-05-01,"Residential Consumption","Florida","FL",1061 +2009-05-01,"Residential Consumption","Montana","MT",1292 +2009-05-01,"Residential Consumption","Oklahoma","OK",2729 +2009-05-01,"Residential Consumption","U.S.","U.S.",201447 +2009-05-01,"Residential Consumption","Iowa","IA",2806 +2009-05-01,"Residential Consumption","Michigan","MI",15398 +2009-05-01,"Residential Consumption","District of Columbia","DC",446 +2009-05-01,"Residential Consumption","Massachusetts","MA",5418 +2009-05-01,"Residential Consumption","Arkansas","AR",1285 +2009-05-01,"Residential Consumption","Tennessee","TN",2210 +2009-05-01,"Residential Consumption","Maryland","MD",2644 +2009-05-01,"Residential Consumption","Kansas","KS",2913 +2009-05-01,"Residential Consumption","Oregon","OR",2595 +2009-05-01,"Residential Consumption","South Dakota","SD",608 +2009-05-01,"Residential Consumption","Nevada","NV",1862 +2009-05-01,"Residential Consumption","New Jersey","NJ",7442 +2009-05-01,"Residential Consumption","Missouri","MO",4044 +2009-05-01,"Residential Consumption","West Virginia","WV",755 +2009-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2315 +2009-06-01,"Commercial Consumption","Wyoming","WY",396 +2009-06-01,"Commercial Consumption","South Carolina","SC",1131 +2009-06-01,"Commercial Consumption","Utah","UT",1466 +2009-06-01,"Commercial Consumption","New Hampshire","NH",477 +2009-06-01,"Commercial Consumption","Kentucky","KY",928 +2009-06-01,"Commercial Consumption","Texas","TX",10346 +2009-06-01,"Commercial Consumption","Vermont","VT",98 +2009-06-01,"Commercial Consumption","Michigan","MI",5333 +2009-06-01,"Commercial Consumption","North Carolina","NC",1853 +2009-06-01,"Commercial Consumption","Minnesota","MN",3018 +2009-06-01,"Commercial Consumption","New Jersey","NJ",8062 +2009-06-01,"Commercial Consumption","Rhode Island","RI",449 +2009-06-01,"Commercial Consumption","Connecticut","CT",1714 +2009-06-01,"Commercial Consumption","Nebraska","NE",1086 +2009-06-01,"Commercial Consumption","Illinois","IL",7756 +2009-06-01,"Commercial Consumption","Pennsylvania","PA",4713 +2009-06-01,"Commercial Consumption","Alabama","AL",1213 +2009-06-01,"Commercial Consumption","Indiana","IN",2374 +2009-06-01,"Commercial Consumption","West Virginia","WV",970 +2009-06-01,"Commercial Consumption","Missouri","MO",2201 +2009-06-01,"Commercial Consumption","Massachusetts","MA",2213 +2009-06-01,"Commercial Consumption","Ohio","OH",4607 +2009-06-01,"Commercial Consumption","Arizona","AZ",2028 +2009-06-01,"Commercial Consumption","District of Columbia","DC",878 +2009-06-01,"Commercial Consumption","Wisconsin","WI",2761 +2009-06-01,"Commercial Consumption","Florida","FL",3742 +2009-06-01,"Commercial Consumption","Iowa","IA",2113 +2009-06-01,"Commercial Consumption","Hawaii","HI",151 +2009-06-01,"Commercial Consumption","Alaska","AK",662 +2009-06-01,"Commercial Consumption","Arkansas","AR",1899 +2009-06-01,"Commercial Consumption","New York","NY",13691 +2009-06-01,"Commercial Consumption","Delaware","DE",521 +2009-06-01,"Commercial Consumption","Washington","WA",2567 +2009-06-01,"Commercial Consumption","North Dakota","ND",305 +2009-06-01,"Commercial Consumption","Colorado","CO",2248 +2009-06-01,"Commercial Consumption","Oregon","OR",1207 +2009-06-01,"Commercial Consumption","South Dakota","SD",368 +2009-06-01,"Commercial Consumption","Montana","MT",802 +2009-06-01,"Commercial Consumption","Idaho","ID",508 +2009-06-01,"Commercial Consumption","Mississippi","MS",991 +2009-06-01,"Commercial Consumption","Nevada","NV",1747 +2009-06-01,"Commercial Consumption","Louisiana","LA",1492 +2009-06-01,"Commercial Consumption","Oklahoma","OK",1805 +2009-06-01,"Commercial Consumption","Virginia","VA",2680 +2009-06-01,"Commercial Consumption","Maine","ME",223 +2009-06-01,"Commercial Consumption","Maryland","MD",3022 +2009-06-01,"Commercial Consumption","California","CA",16334 +2009-06-01,"Commercial Consumption","Tennessee","TN",2120 +2009-06-01,"Commercial Consumption","New Mexico","NM",1056 +2009-06-01,"Commercial Consumption","U.S.","U.S.",133503 +2009-06-01,"Commercial Consumption","Kansas","KS",965 +2009-06-01,"Commercial Consumption","Georgia","GA",2215 +2009-06-01,"Delivered to Consumers","South Dakota","SD",3777 +2009-06-01,"Delivered to Consumers","Montana","MT",3215 +2009-06-01,"Delivered to Consumers","Idaho","ID",2857 +2009-06-01,"Delivered to Consumers","Iowa","IA",16195 +2009-06-01,"Delivered to Consumers","Missouri","MO",13144 +2009-06-01,"Delivered to Consumers","Oregon","OR",9059 +2009-06-01,"Delivered to Consumers","North Dakota","ND",1423 +2009-06-01,"Delivered to Consumers","Minnesota","MN",16792 +2009-06-01,"Delivered to Consumers","New Mexico","NM",9727 +2009-06-01,"Delivered to Consumers","Delaware","DE",2594 +2009-06-01,"Delivered to Consumers","Illinois","IL",40772 +2009-06-01,"Delivered to Consumers","Oklahoma","OK",48694 +2009-06-01,"Delivered to Consumers","Kentucky","KY",9225 +2009-06-01,"Delivered to Consumers","Maine","ME",5594 +2009-06-01,"Delivered to Consumers","Utah","UT",9182 +2009-06-01,"Delivered to Consumers","New York","NY",61211 +2009-06-01,"Delivered to Consumers","Kansas","KS",15254 +2009-06-01,"Delivered to Consumers","Ohio","OH",28267 +2009-06-01,"Delivered to Consumers","Connecticut","CT",9665 +2009-06-01,"Delivered to Consumers","Mississippi","MS",31632 +2009-06-01,"Delivered to Consumers","Washington","WA",12035 +2009-06-01,"Delivered to Consumers","Florida","FL",99987 +2009-06-01,"Delivered to Consumers","West Virginia","WV",3155 +2009-06-01,"Delivered to Consumers","Vermont","VT",409 +2009-06-01,"Delivered to Consumers","Tennessee","TN",10503 +2009-06-01,"Delivered to Consumers","Wisconsin","WI",17136 +2009-06-01,"Delivered to Consumers","California","CA",145416 +2009-06-01,"Delivered to Consumers","Hawaii","HI",222 +2009-06-01,"Delivered to Consumers","Pennsylvania","PA",40566 +2009-06-01,"Delivered to Consumers","Massachusetts","MA",18616 +2009-06-01,"Delivered to Consumers","Colorado","CO",21750 +2009-06-01,"Delivered to Consumers","Texas","TX",274564 +2009-06-01,"Delivered to Consumers","Louisiana","LA",88743 +2009-06-01,"Delivered to Consumers","Georgia","GA",34499 +2009-06-01,"Delivered to Consumers","New Hampshire","NH",3012 +2009-06-01,"Delivered to Consumers","U.S.","U.S.",1378772 +2009-06-01,"Delivered to Consumers","Maryland","MD",8115 +2009-06-01,"Delivered to Consumers","Michigan","MI",28010 +2009-06-01,"Delivered to Consumers","Arkansas","AR",21393 +2009-06-01,"Delivered to Consumers","Alabama","AL",38019 +2009-06-01,"Delivered to Consumers","North Carolina","NC",13141 +2009-06-01,"Delivered to Consumers","Arizona","AZ",25695 +2009-06-01,"Delivered to Consumers","Wyoming","WY",3839 +2009-06-01,"Delivered to Consumers","Rhode Island","RI",6299 +2009-06-01,"Delivered to Consumers","Alaska","AK",4917 +2009-06-01,"Delivered to Consumers","Nebraska","NE",8454 +2009-06-01,"Delivered to Consumers","South Carolina","SC",14378 +2009-06-01,"Delivered to Consumers","New Jersey","NJ",31720 +2009-06-01,"Delivered to Consumers","District of Columbia","DC",1175 +2009-06-01,"Delivered to Consumers","Indiana","IN",24864 +2009-06-01,"Delivered to Consumers","Virginia","VA",17216 +2009-06-01,"Delivered to Consumers","Nevada","NV",20407 +2009-06-01,"Electric Power Consumption","Virginia","VA",7930 +2009-06-01,"Electric Power Consumption","Oregon","OR",2235 +2009-06-01,"Electric Power Consumption","Illinois","IL",5385 +2009-06-01,"Electric Power Consumption","North Carolina","NC",4481 +2009-06-01,"Electric Power Consumption","Massachusetts","MA",10183 +2009-06-01,"Electric Power Consumption","Kansas","KS",4655 +2009-06-01,"Electric Power Consumption","Pennsylvania","PA",18146 +2009-06-01,"Electric Power Consumption","Nevada","NV",16294 +2009-06-01,"Electric Power Consumption","Hawaii","HI",NA +2009-06-01,"Electric Power Consumption","North Dakota","ND",0 +2009-06-01,"Electric Power Consumption","California","CA",46107 +2009-06-01,"Electric Power Consumption","Rhode Island","RI",4531 +2009-06-01,"Electric Power Consumption","Michigan","MI",7312 +2009-06-01,"Electric Power Consumption","Missouri","MO",4401 +2009-06-01,"Electric Power Consumption","Arizona","AZ",21104 +2009-06-01,"Electric Power Consumption","New Mexico","NM",6334 +2009-06-01,"Electric Power Consumption","Idaho","ID",106 +2009-06-01,"Electric Power Consumption","Arkansas","AR",12852 +2009-06-01,"Electric Power Consumption","Utah","UT",3448 +2009-06-01,"Electric Power Consumption","Minnesota","MN",2660 +2009-06-01,"Electric Power Consumption","West Virginia","WV",71 +2009-06-01,"Electric Power Consumption","Iowa","IA",968 +2009-06-01,"Electric Power Consumption","Maine","ME",3162 +2009-06-01,"Electric Power Consumption","Delaware","DE",663 +2009-06-01,"Electric Power Consumption","Connecticut","CT",4755 +2009-06-01,"Electric Power Consumption","Georgia","GA",17883 +2009-06-01,"Electric Power Consumption","Washington","WA",1403 +2009-06-01,"Electric Power Consumption","New York","NY",30721 +2009-06-01,"Electric Power Consumption","Oklahoma","OK",31858 +2009-06-01,"Electric Power Consumption","Wyoming","WY",77 +2009-06-01,"Electric Power Consumption","Vermont","VT",6 +2009-06-01,"Electric Power Consumption","U.S.","U.S.",642797 +2009-06-01,"Electric Power Consumption","South Dakota","SD",337 +2009-06-01,"Electric Power Consumption","Montana","MT",77 +2009-06-01,"Electric Power Consumption","Alaska","AK",2995 +2009-06-01,"Electric Power Consumption","South Carolina","SC",7696 +2009-06-01,"Electric Power Consumption","Wisconsin","WI",3979 +2009-06-01,"Electric Power Consumption","Tennessee","TN",969 +2009-06-01,"Electric Power Consumption","New Jersey","NJ",13832 +2009-06-01,"Electric Power Consumption","Mississippi","MS",21971 +2009-06-01,"Electric Power Consumption","Kentucky","KY",820 +2009-06-01,"Electric Power Consumption","Maryland","MD",1450 +2009-06-01,"Electric Power Consumption","Indiana","IN",3011 +2009-06-01,"Electric Power Consumption","Florida","FL",90163 +2009-06-01,"Electric Power Consumption","Louisiana","LA",24012 +2009-06-01,"Electric Power Consumption","Colorado","CO",8858 +2009-06-01,"Electric Power Consumption","Texas","TX",160890 +2009-06-01,"Electric Power Consumption","Nebraska","NE",479 +2009-06-01,"Electric Power Consumption","Ohio","OH",3120 +2009-06-01,"Electric Power Consumption","New Hampshire","NH",1949 +2009-06-01,"Electric Power Consumption","Alabama","AL",26458 +2009-06-01,"Industrial Consumption","Arizona","AZ",1207 +2009-06-01,"Industrial Consumption","Michigan","MI",6552 +2009-06-01,"Industrial Consumption","Kentucky","KY",6515 +2009-06-01,"Industrial Consumption","Indiana","IN",16550 +2009-06-01,"Industrial Consumption","Alaska","AK",597 +2009-06-01,"Industrial Consumption","North Dakota","ND",843 +2009-06-01,"Industrial Consumption","Montana","MT",1648 +2009-06-01,"Industrial Consumption","Colorado","CO",7284 +2009-06-01,"Industrial Consumption","Utah","UT",2130 +2009-06-01,"Industrial Consumption","Wisconsin","WI",7244 +2009-06-01,"Industrial Consumption","Georgia","GA",11061 +2009-06-01,"Industrial Consumption","Pennsylvania","PA",12388 +2009-06-01,"Industrial Consumption","Texas","TX",96543 +2009-06-01,"Industrial Consumption","District of Columbia","DC",0 +2009-06-01,"Industrial Consumption","Oklahoma","OK",13374 +2009-06-01,"Industrial Consumption","Kansas","KS",8032 +2009-06-01,"Industrial Consumption","Vermont","VT",190 +2009-06-01,"Industrial Consumption","Connecticut","CT",1754 +2009-06-01,"Industrial Consumption","Illinois","IL",15351 +2009-06-01,"Industrial Consumption","Massachusetts","MA",2166 +2009-06-01,"Industrial Consumption","Missouri","MO",4272 +2009-06-01,"Industrial Consumption","South Dakota","SD",2694 +2009-06-01,"Industrial Consumption","Oregon","OR",4267 +2009-06-01,"Industrial Consumption","Tennessee","TN",6142 +2009-06-01,"Industrial Consumption","Washington","WA",5458 +2009-06-01,"Industrial Consumption","Ohio","OH",14453 +2009-06-01,"Industrial Consumption","Mississippi","MS",8018 +2009-06-01,"Industrial Consumption","South Carolina","SC",5086 +2009-06-01,"Industrial Consumption","Nebraska","NE",5862 +2009-06-01,"Industrial Consumption","West Virginia","WV",1775 +2009-06-01,"Industrial Consumption","North Carolina","NC",6053 +2009-06-01,"Industrial Consumption","Maryland","MD",1830 +2009-06-01,"Industrial Consumption","Hawaii","HI",28 +2009-06-01,"Industrial Consumption","Louisiana","LA",61817 +2009-06-01,"Industrial Consumption","U.S.","U.S.",459110 +2009-06-01,"Industrial Consumption","New York","NY",4564 +2009-06-01,"Industrial Consumption","Nevada","NV",891 +2009-06-01,"Industrial Consumption","California","CA",56337 +2009-06-01,"Industrial Consumption","New Hampshire","NH",314 +2009-06-01,"Industrial Consumption","Iowa","IA",11547 +2009-06-01,"Industrial Consumption","Delaware","DE",1168 +2009-06-01,"Industrial Consumption","New Mexico","NM",1312 +2009-06-01,"Industrial Consumption","Maine","ME",2162 +2009-06-01,"Industrial Consumption","Arkansas","AR",5754 +2009-06-01,"Industrial Consumption","Alabama","AL",9320 +2009-06-01,"Industrial Consumption","Virginia","VA",4928 +2009-06-01,"Industrial Consumption","Wyoming","WY",2930 +2009-06-01,"Industrial Consumption","New Jersey","NJ",3403 +2009-06-01,"Industrial Consumption","Minnesota","MN",7627 +2009-06-01,"Industrial Consumption","Idaho","ID",1710 +2009-06-01,"Industrial Consumption","Florida","FL",5233 +2009-06-01,"Industrial Consumption","Rhode Island","RI",725 +2009-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105563 +2009-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",44075 +2009-06-01,"Residential Consumption","Massachusetts","MA",4054 +2009-06-01,"Residential Consumption","New Hampshire","NH",272 +2009-06-01,"Residential Consumption","Missouri","MO",2270 +2009-06-01,"Residential Consumption","Texas","TX",6785 +2009-06-01,"Residential Consumption","Louisiana","LA",1421 +2009-06-01,"Residential Consumption","Connecticut","CT",1443 +2009-06-01,"Residential Consumption","Vermont","VT",114 +2009-06-01,"Residential Consumption","District of Columbia","DC",297 +2009-06-01,"Residential Consumption","Maine","ME",47 +2009-06-01,"Residential Consumption","North Dakota","ND",275 +2009-06-01,"Residential Consumption","Oklahoma","OK",1656 +2009-06-01,"Residential Consumption","Rhode Island","RI",594 +2009-06-01,"Residential Consumption","Ohio","OH",6087 +2009-06-01,"Residential Consumption","North Carolina","NC",754 +2009-06-01,"Residential Consumption","Hawaii","HI",43 +2009-06-01,"Residential Consumption","Wisconsin","WI",3152 +2009-06-01,"Residential Consumption","Virginia","VA",1677 +2009-06-01,"Residential Consumption","Washington","WA",2608 +2009-06-01,"Residential Consumption","Delaware","DE",242 +2009-06-01,"Residential Consumption","South Carolina","SC",465 +2009-06-01,"Residential Consumption","Oregon","OR",1350 +2009-06-01,"Residential Consumption","Georgia","GA",3339 +2009-06-01,"Residential Consumption","Florida","FL",850 +2009-06-01,"Residential Consumption","Wyoming","WY",436 +2009-06-01,"Residential Consumption","Nebraska","NE",1027 +2009-06-01,"Residential Consumption","Nevada","NV",1475 +2009-06-01,"Residential Consumption","New Mexico","NM",1025 +2009-06-01,"Residential Consumption","Kansas","KS",1602 +2009-06-01,"Residential Consumption","California","CA",26638 +2009-06-01,"Residential Consumption","Arizona","AZ",1356 +2009-06-01,"Residential Consumption","Alabama","AL",1027 +2009-06-01,"Residential Consumption","West Virginia","WV",340 +2009-06-01,"Residential Consumption","U.S.","U.S.",141121 +2009-06-01,"Residential Consumption","New York","NY",12235 +2009-06-01,"Residential Consumption","Illinois","IL",12280 +2009-06-01,"Residential Consumption","Iowa","IA",1567 +2009-06-01,"Residential Consumption","Utah","UT",2138 +2009-06-01,"Residential Consumption","Michigan","MI",8813 +2009-06-01,"Residential Consumption","Maryland","MD",1814 +2009-06-01,"Residential Consumption","Arkansas","AR",888 +2009-06-01,"Residential Consumption","Colorado","CO",3359 +2009-06-01,"Residential Consumption","Tennessee","TN",1271 +2009-06-01,"Residential Consumption","South Dakota","SD",379 +2009-06-01,"Residential Consumption","Pennsylvania","PA",5320 +2009-06-01,"Residential Consumption","Indiana","IN",2929 +2009-06-01,"Residential Consumption","Idaho","ID",532 +2009-06-01,"Residential Consumption","Alaska","AK",663 +2009-06-01,"Residential Consumption","Mississippi","MS",652 +2009-06-01,"Residential Consumption","Minnesota","MN",3488 +2009-06-01,"Residential Consumption","New Jersey","NJ",6423 +2009-06-01,"Residential Consumption","Montana","MT",688 +2009-06-01,"Residential Consumption","Kentucky","KY",962 +2009-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2241 +2009-07-01,"Commercial Consumption","Wyoming","WY",316 +2009-07-01,"Commercial Consumption","Virginia","VA",2697 +2009-07-01,"Commercial Consumption","U.S.","U.S.",128095 +2009-07-01,"Commercial Consumption","Texas","TX",9628 +2009-07-01,"Commercial Consumption","Vermont","VT",76 +2009-07-01,"Commercial Consumption","Alaska","AK",573 +2009-07-01,"Commercial Consumption","Connecticut","CT",1560 +2009-07-01,"Commercial Consumption","Colorado","CO",1831 +2009-07-01,"Commercial Consumption","Florida","FL",3570 +2009-07-01,"Commercial Consumption","North Carolina","NC",1983 +2009-07-01,"Commercial Consumption","New Jersey","NJ",8926 +2009-07-01,"Commercial Consumption","Ohio","OH",4351 +2009-07-01,"Commercial Consumption","Nebraska","NE",1196 +2009-07-01,"Commercial Consumption","Oklahoma","OK",1410 +2009-07-01,"Commercial Consumption","Pennsylvania","PA",4364 +2009-07-01,"Commercial Consumption","Massachusetts","MA",2198 +2009-07-01,"Commercial Consumption","Kansas","KS",1003 +2009-07-01,"Commercial Consumption","Georgia","GA",2079 +2009-07-01,"Commercial Consumption","Rhode Island","RI",339 +2009-07-01,"Commercial Consumption","Idaho","ID",477 +2009-07-01,"Commercial Consumption","Tennessee","TN",2252 +2009-07-01,"Commercial Consumption","West Virginia","WV",971 +2009-07-01,"Commercial Consumption","North Dakota","ND",265 +2009-07-01,"Commercial Consumption","Minnesota","MN",2322 +2009-07-01,"Commercial Consumption","Utah","UT",1213 +2009-07-01,"Commercial Consumption","Maine","ME",197 +2009-07-01,"Commercial Consumption","Maryland","MD",2993 +2009-07-01,"Commercial Consumption","California","CA",16067 +2009-07-01,"Commercial Consumption","New York","NY",13438 +2009-07-01,"Commercial Consumption","Mississippi","MS",896 +2009-07-01,"Commercial Consumption","Louisiana","LA",1428 +2009-07-01,"Commercial Consumption","Washington","WA",2058 +2009-07-01,"Commercial Consumption","New Mexico","NM",920 +2009-07-01,"Commercial Consumption","Oregon","OR",1042 +2009-07-01,"Commercial Consumption","Missouri","MO",1901 +2009-07-01,"Commercial Consumption","Wisconsin","WI",2770 +2009-07-01,"Commercial Consumption","Montana","MT",796 +2009-07-01,"Commercial Consumption","Arkansas","AR",1755 +2009-07-01,"Commercial Consumption","Indiana","IN",2099 +2009-07-01,"Commercial Consumption","District of Columbia","DC",840 +2009-07-01,"Commercial Consumption","South Carolina","SC",1157 +2009-07-01,"Commercial Consumption","Kentucky","KY",1236 +2009-07-01,"Commercial Consumption","Iowa","IA",1895 +2009-07-01,"Commercial Consumption","Hawaii","HI",142 +2009-07-01,"Commercial Consumption","Nevada","NV",1651 +2009-07-01,"Commercial Consumption","Illinois","IL",8353 +2009-07-01,"Commercial Consumption","South Dakota","SD",318 +2009-07-01,"Commercial Consumption","New Hampshire","NH",269 +2009-07-01,"Commercial Consumption","Alabama","AL",1122 +2009-07-01,"Commercial Consumption","Delaware","DE",528 +2009-07-01,"Commercial Consumption","Arizona","AZ",1872 +2009-07-01,"Commercial Consumption","Michigan","MI",4749 +2009-07-01,"Delivered to Consumers","Utah","UT",10508 +2009-07-01,"Delivered to Consumers","U.S.","U.S.",1503321 +2009-07-01,"Delivered to Consumers","Delaware","DE",2958 +2009-07-01,"Delivered to Consumers","Mississippi","MS",27348 +2009-07-01,"Delivered to Consumers","Louisiana","LA",92299 +2009-07-01,"Delivered to Consumers","Arizona","AZ",43248 +2009-07-01,"Delivered to Consumers","Washington","WA",21308 +2009-07-01,"Delivered to Consumers","Oklahoma","OK",51273 +2009-07-01,"Delivered to Consumers","Ohio","OH",27989 +2009-07-01,"Delivered to Consumers","Alabama","AL",37278 +2009-07-01,"Delivered to Consumers","Wisconsin","WI",14880 +2009-07-01,"Delivered to Consumers","Florida","FL",105117 +2009-07-01,"Delivered to Consumers","South Dakota","SD",3405 +2009-07-01,"Delivered to Consumers","Idaho","ID",4022 +2009-07-01,"Delivered to Consumers","Iowa","IA",16111 +2009-07-01,"Delivered to Consumers","Nebraska","NE",9725 +2009-07-01,"Delivered to Consumers","North Carolina","NC",14301 +2009-07-01,"Delivered to Consumers","Massachusetts","MA",22791 +2009-07-01,"Delivered to Consumers","Nevada","NV",25176 +2009-07-01,"Delivered to Consumers","North Dakota","ND",1209 +2009-07-01,"Delivered to Consumers","District of Columbia","DC",1109 +2009-07-01,"Delivered to Consumers","West Virginia","WV",3218 +2009-07-01,"Delivered to Consumers","Illinois","IL",35663 +2009-07-01,"Delivered to Consumers","Connecticut","CT",12191 +2009-07-01,"Delivered to Consumers","California","CA",186280 +2009-07-01,"Delivered to Consumers","New Mexico","NM",10960 +2009-07-01,"Delivered to Consumers","Wyoming","WY",3500 +2009-07-01,"Delivered to Consumers","Tennessee","TN",9922 +2009-07-01,"Delivered to Consumers","Michigan","MI",23502 +2009-07-01,"Delivered to Consumers","Arkansas","AR",21119 +2009-07-01,"Delivered to Consumers","Missouri","MO",12199 +2009-07-01,"Delivered to Consumers","Oregon","OR",17567 +2009-07-01,"Delivered to Consumers","New Jersey","NJ",34562 +2009-07-01,"Delivered to Consumers","Montana","MT",2824 +2009-07-01,"Delivered to Consumers","Maryland","MD",8603 +2009-07-01,"Delivered to Consumers","Alaska","AK",4723 +2009-07-01,"Delivered to Consumers","Kansas","KS",16886 +2009-07-01,"Delivered to Consumers","Kentucky","KY",9738 +2009-07-01,"Delivered to Consumers","Georgia","GA",33996 +2009-07-01,"Delivered to Consumers","New Hampshire","NH",3768 +2009-07-01,"Delivered to Consumers","Minnesota","MN",14854 +2009-07-01,"Delivered to Consumers","Vermont","VT",348 +2009-07-01,"Delivered to Consumers","Rhode Island","RI",7057 +2009-07-01,"Delivered to Consumers","New York","NY",65798 +2009-07-01,"Delivered to Consumers","Pennsylvania","PA",43982 +2009-07-01,"Delivered to Consumers","Colorado","CO",24476 +2009-07-01,"Delivered to Consumers","Indiana","IN",24648 +2009-07-01,"Delivered to Consumers","Hawaii","HI",212 +2009-07-01,"Delivered to Consumers","Virginia","VA",21115 +2009-07-01,"Delivered to Consumers","Texas","TX",294297 +2009-07-01,"Delivered to Consumers","South Carolina","SC",15330 +2009-07-01,"Delivered to Consumers","Maine","ME",5609 +2009-07-01,"Electric Power Consumption","New Jersey","NJ",16978 +2009-07-01,"Electric Power Consumption","Rhode Island","RI",5601 +2009-07-01,"Electric Power Consumption","Oregon","OR",11065 +2009-07-01,"Electric Power Consumption","South Dakota","SD",1 +2009-07-01,"Electric Power Consumption","Ohio","OH",2931 +2009-07-01,"Electric Power Consumption","Illinois","IL",2835 +2009-07-01,"Electric Power Consumption","Tennessee","TN",276 +2009-07-01,"Electric Power Consumption","North Dakota","ND",0 +2009-07-01,"Electric Power Consumption","California","CA",87393 +2009-07-01,"Electric Power Consumption","Arkansas","AR",13003 +2009-07-01,"Electric Power Consumption","Texas","TX",176648 +2009-07-01,"Electric Power Consumption","Oklahoma","OK",34637 +2009-07-01,"Electric Power Consumption","Utah","UT",5153 +2009-07-01,"Electric Power Consumption","Kansas","KS",5158 +2009-07-01,"Electric Power Consumption","West Virginia","WV",34 +2009-07-01,"Electric Power Consumption","Nevada","NV",21375 +2009-07-01,"Electric Power Consumption","Missouri","MO",4126 +2009-07-01,"Electric Power Consumption","South Carolina","SC",8679 +2009-07-01,"Electric Power Consumption","New York","NY",38456 +2009-07-01,"Electric Power Consumption","Hawaii","HI",NA +2009-07-01,"Electric Power Consumption","Maryland","MD",2232 +2009-07-01,"Electric Power Consumption","Arizona","AZ",38981 +2009-07-01,"Electric Power Consumption","Georgia","GA",17170 +2009-07-01,"Electric Power Consumption","Louisiana","LA",26579 +2009-07-01,"Electric Power Consumption","Wisconsin","WI",2023 +2009-07-01,"Electric Power Consumption","Pennsylvania","PA",22675 +2009-07-01,"Electric Power Consumption","Alabama","AL",25545 +2009-07-01,"Electric Power Consumption","Alaska","AK",2980 +2009-07-01,"Electric Power Consumption","Washington","WA",12467 +2009-07-01,"Electric Power Consumption","Idaho","ID",1329 +2009-07-01,"Electric Power Consumption","Minnesota","MN",1201 +2009-07-01,"Electric Power Consumption","Massachusetts","MA",14374 +2009-07-01,"Electric Power Consumption","Vermont","VT",7 +2009-07-01,"Electric Power Consumption","Mississippi","MS",17882 +2009-07-01,"Electric Power Consumption","Kentucky","KY",502 +2009-07-01,"Electric Power Consumption","Delaware","DE",1173 +2009-07-01,"Electric Power Consumption","New Mexico","NM",7938 +2009-07-01,"Electric Power Consumption","Colorado","CO",11543 +2009-07-01,"Electric Power Consumption","Wyoming","WY",41 +2009-07-01,"Electric Power Consumption","Maine","ME",3385 +2009-07-01,"Electric Power Consumption","Montana","MT",58 +2009-07-01,"Electric Power Consumption","Connecticut","CT",7714 +2009-07-01,"Electric Power Consumption","Florida","FL",95459 +2009-07-01,"Electric Power Consumption","Virginia","VA",11549 +2009-07-01,"Electric Power Consumption","Michigan","MI",5289 +2009-07-01,"Electric Power Consumption","Iowa","IA",1310 +2009-07-01,"Electric Power Consumption","U.S.","U.S.",778017 +2009-07-01,"Electric Power Consumption","Nebraska","NE",648 +2009-07-01,"Electric Power Consumption","North Carolina","NC",5303 +2009-07-01,"Electric Power Consumption","New Hampshire","NH",2943 +2009-07-01,"Electric Power Consumption","Indiana","IN",3367 +2009-07-01,"Industrial Consumption","Kansas","KS",9374 +2009-07-01,"Industrial Consumption","New York","NY",4239 +2009-07-01,"Industrial Consumption","Alabama","AL",9735 +2009-07-01,"Industrial Consumption","Virginia","VA",5238 +2009-07-01,"Industrial Consumption","Tennessee","TN",6211 +2009-07-01,"Industrial Consumption","Minnesota","MN",8587 +2009-07-01,"Industrial Consumption","Hawaii","HI",30 +2009-07-01,"Industrial Consumption","Ohio","OH",15165 +2009-07-01,"Industrial Consumption","New Mexico","NM",1216 +2009-07-01,"Industrial Consumption","Vermont","VT",185 +2009-07-01,"Industrial Consumption","New Hampshire","NH",326 +2009-07-01,"Industrial Consumption","Indiana","IN",16615 +2009-07-01,"Industrial Consumption","Massachusetts","MA",2238 +2009-07-01,"Industrial Consumption","Colorado","CO",8238 +2009-07-01,"Industrial Consumption","Arkansas","AR",5675 +2009-07-01,"Industrial Consumption","Nebraska","NE",7049 +2009-07-01,"Industrial Consumption","Wyoming","WY",2834 +2009-07-01,"Industrial Consumption","North Dakota","ND",755 +2009-07-01,"Industrial Consumption","Montana","MT",1481 +2009-07-01,"Industrial Consumption","Washington","WA",4849 +2009-07-01,"Industrial Consumption","Arizona","AZ",1245 +2009-07-01,"Industrial Consumption","Utah","UT",2250 +2009-07-01,"Industrial Consumption","Michigan","MI",7069 +2009-07-01,"Industrial Consumption","North Carolina","NC",6052 +2009-07-01,"Industrial Consumption","Georgia","GA",11417 +2009-07-01,"Industrial Consumption","District of Columbia","DC",0 +2009-07-01,"Industrial Consumption","Maryland","MD",1693 +2009-07-01,"Industrial Consumption","Louisiana","LA",63047 +2009-07-01,"Industrial Consumption","South Dakota","SD",2806 +2009-07-01,"Industrial Consumption","Pennsylvania","PA",12364 +2009-07-01,"Industrial Consumption","Nevada","NV",878 +2009-07-01,"Industrial Consumption","Mississippi","MS",7945 +2009-07-01,"Industrial Consumption","Maine","ME",1990 +2009-07-01,"Industrial Consumption","New Jersey","NJ",3356 +2009-07-01,"Industrial Consumption","Florida","FL",5342 +2009-07-01,"Industrial Consumption","Connecticut","CT",1761 +2009-07-01,"Industrial Consumption","Kentucky","KY",6942 +2009-07-01,"Industrial Consumption","Alaska","AK",617 +2009-07-01,"Industrial Consumption","Oklahoma","OK",13955 +2009-07-01,"Industrial Consumption","Oregon","OR",4437 +2009-07-01,"Industrial Consumption","Texas","TX",102258 +2009-07-01,"Industrial Consumption","West Virginia","WV",1843 +2009-07-01,"Industrial Consumption","Wisconsin","WI",7331 +2009-07-01,"Industrial Consumption","Iowa","IA",11578 +2009-07-01,"Industrial Consumption","Rhode Island","RI",580 +2009-07-01,"Industrial Consumption","U.S.","U.S.",476270 +2009-07-01,"Industrial Consumption","California","CA",59956 +2009-07-01,"Industrial Consumption","South Carolina","SC",5037 +2009-07-01,"Industrial Consumption","Idaho","ID",1688 +2009-07-01,"Industrial Consumption","Illinois","IL",15481 +2009-07-01,"Industrial Consumption","Delaware","DE",1067 +2009-07-01,"Industrial Consumption","Missouri","MO",4243 +2009-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",107672 +2009-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",48056 +2009-07-01,"Residential Consumption","Texas","TX",5762 +2009-07-01,"Residential Consumption","Ohio","OH",5543 +2009-07-01,"Residential Consumption","Mississippi","MS",625 +2009-07-01,"Residential Consumption","Michigan","MI",6395 +2009-07-01,"Residential Consumption","Minnesota","MN",2744 +2009-07-01,"Residential Consumption","Pennsylvania","PA",4579 +2009-07-01,"Residential Consumption","Maine","ME",36 +2009-07-01,"Residential Consumption","Massachusetts","MA",3981 +2009-07-01,"Residential Consumption","Idaho","ID",527 +2009-07-01,"Residential Consumption","Arkansas","AR",686 +2009-07-01,"Residential Consumption","Kentucky","KY",1058 +2009-07-01,"Residential Consumption","Alaska","AK",553 +2009-07-01,"Residential Consumption","Louisiana","LA",1245 +2009-07-01,"Residential Consumption","Nebraska","NE",832 +2009-07-01,"Residential Consumption","New Mexico","NM",887 +2009-07-01,"Residential Consumption","Montana","MT",490 +2009-07-01,"Residential Consumption","Colorado","CO",2865 +2009-07-01,"Residential Consumption","Oklahoma","OK",1271 +2009-07-01,"Residential Consumption","North Carolina","NC",962 +2009-07-01,"Residential Consumption","Vermont","VT",80 +2009-07-01,"Residential Consumption","Tennessee","TN",1183 +2009-07-01,"Residential Consumption","Virginia","VA",1631 +2009-07-01,"Residential Consumption","Indiana","IN",2567 +2009-07-01,"Residential Consumption","North Dakota","ND",189 +2009-07-01,"Residential Consumption","Kansas","KS",1351 +2009-07-01,"Residential Consumption","Delaware","DE",190 +2009-07-01,"Residential Consumption","Connecticut","CT",1155 +2009-07-01,"Residential Consumption","Wisconsin","WI",2756 +2009-07-01,"Residential Consumption","Utah","UT",1892 +2009-07-01,"Residential Consumption","Nevada","NV",1272 +2009-07-01,"Residential Consumption","New Jersey","NJ",5302 +2009-07-01,"Residential Consumption","New Hampshire","NH",229 +2009-07-01,"Residential Consumption","Arizona","AZ",1151 +2009-07-01,"Residential Consumption","New York","NY",9666 +2009-07-01,"Residential Consumption","Illinois","IL",8994 +2009-07-01,"Residential Consumption","Hawaii","HI",41 +2009-07-01,"Residential Consumption","Maryland","MD",1685 +2009-07-01,"Residential Consumption","Georgia","GA",3330 +2009-07-01,"Residential Consumption","Florida","FL",746 +2009-07-01,"Residential Consumption","West Virginia","WV",370 +2009-07-01,"Residential Consumption","South Carolina","SC",456 +2009-07-01,"Residential Consumption","Rhode Island","RI",536 +2009-07-01,"Residential Consumption","District of Columbia","DC",269 +2009-07-01,"Residential Consumption","Missouri","MO",1930 +2009-07-01,"Residential Consumption","California","CA",22862 +2009-07-01,"Residential Consumption","Alabama","AL",875 +2009-07-01,"Residential Consumption","U.S.","U.S.",118624 +2009-07-01,"Residential Consumption","Oregon","OR",1023 +2009-07-01,"Residential Consumption","Iowa","IA",1328 +2009-07-01,"Residential Consumption","South Dakota","SD",280 +2009-07-01,"Residential Consumption","Washington","WA",1934 +2009-07-01,"Residential Consumption","Wyoming","WY",310 +2009-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2315 +2009-08-01,"Commercial Consumption","Minnesota","MN",2516 +2009-08-01,"Commercial Consumption","New Mexico","NM",838 +2009-08-01,"Commercial Consumption","New Jersey","NJ",9970 +2009-08-01,"Commercial Consumption","Kentucky","KY",1184 +2009-08-01,"Commercial Consumption","Hawaii","HI",140 +2009-08-01,"Commercial Consumption","Tennessee","TN",1967 +2009-08-01,"Commercial Consumption","Nevada","NV",1621 +2009-08-01,"Commercial Consumption","Virginia","VA",2622 +2009-08-01,"Commercial Consumption","New Hampshire","NH",344 +2009-08-01,"Commercial Consumption","Montana","MT",666 +2009-08-01,"Commercial Consumption","Texas","TX",9684 +2009-08-01,"Commercial Consumption","Georgia","GA",2098 +2009-08-01,"Commercial Consumption","Ohio","OH",4338 +2009-08-01,"Commercial Consumption","Idaho","ID",496 +2009-08-01,"Commercial Consumption","California","CA",17021 +2009-08-01,"Commercial Consumption","New York","NY",13504 +2009-08-01,"Commercial Consumption","Mississippi","MS",948 +2009-08-01,"Commercial Consumption","Utah","UT",1024 +2009-08-01,"Commercial Consumption","Rhode Island","RI",396 +2009-08-01,"Commercial Consumption","Louisiana","LA",1429 +2009-08-01,"Commercial Consumption","Wyoming","WY",271 +2009-08-01,"Commercial Consumption","Washington","WA",1951 +2009-08-01,"Commercial Consumption","Vermont","VT",73 +2009-08-01,"Commercial Consumption","Alaska","AK",647 +2009-08-01,"Commercial Consumption","Oklahoma","OK",1407 +2009-08-01,"Commercial Consumption","Missouri","MO",1920 +2009-08-01,"Commercial Consumption","Maine","ME",181 +2009-08-01,"Commercial Consumption","Maryland","MD",3283 +2009-08-01,"Commercial Consumption","Kansas","KS",1060 +2009-08-01,"Commercial Consumption","Delaware","DE",519 +2009-08-01,"Commercial Consumption","Indiana","IN",2238 +2009-08-01,"Commercial Consumption","North Dakota","ND",267 +2009-08-01,"Commercial Consumption","Colorado","CO",1849 +2009-08-01,"Commercial Consumption","Massachusetts","MA",2055 +2009-08-01,"Commercial Consumption","Florida","FL",3556 +2009-08-01,"Commercial Consumption","Iowa","IA",1783 +2009-08-01,"Commercial Consumption","Arkansas","AR",1766 +2009-08-01,"Commercial Consumption","Alabama","AL",1122 +2009-08-01,"Commercial Consumption","South Carolina","SC",1101 +2009-08-01,"Commercial Consumption","Wisconsin","WI",2652 +2009-08-01,"Commercial Consumption","South Dakota","SD",303 +2009-08-01,"Commercial Consumption","U.S.","U.S.",128831 +2009-08-01,"Commercial Consumption","Nebraska","NE",1171 +2009-08-01,"Commercial Consumption","Arizona","AZ",1822 +2009-08-01,"Commercial Consumption","Illinois","IL",7817 +2009-08-01,"Commercial Consumption","District of Columbia","DC",776 +2009-08-01,"Commercial Consumption","West Virginia","WV",1033 +2009-08-01,"Commercial Consumption","North Carolina","NC",2064 +2009-08-01,"Commercial Consumption","Oregon","OR",955 +2009-08-01,"Commercial Consumption","Pennsylvania","PA",4127 +2009-08-01,"Commercial Consumption","Connecticut","CT",1613 +2009-08-01,"Commercial Consumption","Michigan","MI",4642 +2009-08-01,"Delivered to Consumers","New Mexico","NM",10484 +2009-08-01,"Delivered to Consumers","Rhode Island","RI",7944 +2009-08-01,"Delivered to Consumers","North Carolina","NC",17248 +2009-08-01,"Delivered to Consumers","South Carolina","SC",16769 +2009-08-01,"Delivered to Consumers","Minnesota","MN",16139 +2009-08-01,"Delivered to Consumers","New York","NY",75578 +2009-08-01,"Delivered to Consumers","Ohio","OH",31590 +2009-08-01,"Delivered to Consumers","Missouri","MO",12779 +2009-08-01,"Delivered to Consumers","Massachusetts","MA",27143 +2009-08-01,"Delivered to Consumers","Washington","WA",24156 +2009-08-01,"Delivered to Consumers","Montana","MT",2578 +2009-08-01,"Delivered to Consumers","Kansas","KS",18660 +2009-08-01,"Delivered to Consumers","Tennessee","TN",10496 +2009-08-01,"Delivered to Consumers","Oregon","OR",19379 +2009-08-01,"Delivered to Consumers","Georgia","GA",32876 +2009-08-01,"Delivered to Consumers","Indiana","IN",27394 +2009-08-01,"Delivered to Consumers","Maryland","MD",11500 +2009-08-01,"Delivered to Consumers","Hawaii","HI",208 +2009-08-01,"Delivered to Consumers","Kentucky","KY",10909 +2009-08-01,"Delivered to Consumers","Nebraska","NE",10296 +2009-08-01,"Delivered to Consumers","Mississippi","MS",30094 +2009-08-01,"Delivered to Consumers","Colorado","CO",24078 +2009-08-01,"Delivered to Consumers","New Jersey","NJ",38186 +2009-08-01,"Delivered to Consumers","Louisiana","LA",93483 +2009-08-01,"Delivered to Consumers","South Dakota","SD",3875 +2009-08-01,"Delivered to Consumers","Pennsylvania","PA",48451 +2009-08-01,"Delivered to Consumers","Nevada","NV",24297 +2009-08-01,"Delivered to Consumers","Maine","ME",6078 +2009-08-01,"Delivered to Consumers","District of Columbia","DC",1040 +2009-08-01,"Delivered to Consumers","Utah","UT",9434 +2009-08-01,"Delivered to Consumers","Delaware","DE",3506 +2009-08-01,"Delivered to Consumers","Wyoming","WY",3525 +2009-08-01,"Delivered to Consumers","Illinois","IL",37150 +2009-08-01,"Delivered to Consumers","Connecticut","CT",13011 +2009-08-01,"Delivered to Consumers","Virginia","VA",26186 +2009-08-01,"Delivered to Consumers","California","CA",192111 +2009-08-01,"Delivered to Consumers","New Hampshire","NH",3960 +2009-08-01,"Delivered to Consumers","U.S.","U.S.",1578354 +2009-08-01,"Delivered to Consumers","West Virginia","WV",3432 +2009-08-01,"Delivered to Consumers","Oklahoma","OK",52428 +2009-08-01,"Delivered to Consumers","Wisconsin","WI",16740 +2009-08-01,"Delivered to Consumers","Arizona","AZ",40723 +2009-08-01,"Delivered to Consumers","Florida","FL",107054 +2009-08-01,"Delivered to Consumers","Vermont","VT",321 +2009-08-01,"Delivered to Consumers","Alaska","AK",4457 +2009-08-01,"Delivered to Consumers","Idaho","ID",4781 +2009-08-01,"Delivered to Consumers","Michigan","MI",30274 +2009-08-01,"Delivered to Consumers","Iowa","IA",16749 +2009-08-01,"Delivered to Consumers","Arkansas","AR",20236 +2009-08-01,"Delivered to Consumers","Alabama","AL",38771 +2009-08-01,"Delivered to Consumers","Texas","TX",296292 +2009-08-01,"Delivered to Consumers","North Dakota","ND",1187 +2009-08-01,"Electric Power Consumption","Virginia","VA",16675 +2009-08-01,"Electric Power Consumption","Illinois","IL",5305 +2009-08-01,"Electric Power Consumption","Nevada","NV",20704 +2009-08-01,"Electric Power Consumption","Missouri","MO",4585 +2009-08-01,"Electric Power Consumption","North Dakota","ND",0 +2009-08-01,"Electric Power Consumption","South Carolina","SC",9942 +2009-08-01,"Electric Power Consumption","Oregon","OR",13027 +2009-08-01,"Electric Power Consumption","North Carolina","NC",7937 +2009-08-01,"Electric Power Consumption","Maine","ME",3596 +2009-08-01,"Electric Power Consumption","Delaware","DE",1790 +2009-08-01,"Electric Power Consumption","Alabama","AL",26091 +2009-08-01,"Electric Power Consumption","Washington","WA",15186 +2009-08-01,"Electric Power Consumption","New Jersey","NJ",20121 +2009-08-01,"Electric Power Consumption","Idaho","ID",2132 +2009-08-01,"Electric Power Consumption","New York","NY",47597 +2009-08-01,"Electric Power Consumption","Oklahoma","OK",34772 +2009-08-01,"Electric Power Consumption","Massachusetts","MA",19585 +2009-08-01,"Electric Power Consumption","Montana","MT",43 +2009-08-01,"Electric Power Consumption","Indiana","IN",4725 +2009-08-01,"Electric Power Consumption","Rhode Island","RI",6503 +2009-08-01,"Electric Power Consumption","Utah","UT",4672 +2009-08-01,"Electric Power Consumption","Pennsylvania","PA",27006 +2009-08-01,"Electric Power Consumption","South Dakota","SD",175 +2009-08-01,"Electric Power Consumption","Ohio","OH",6085 +2009-08-01,"Electric Power Consumption","Maryland","MD",4677 +2009-08-01,"Electric Power Consumption","Texas","TX",177512 +2009-08-01,"Electric Power Consumption","Mississippi","MS",19925 +2009-08-01,"Electric Power Consumption","Kentucky","KY",1380 +2009-08-01,"Electric Power Consumption","New Hampshire","NH",3232 +2009-08-01,"Electric Power Consumption","Georgia","GA",16067 +2009-08-01,"Electric Power Consumption","Arkansas","AR",12008 +2009-08-01,"Electric Power Consumption","Minnesota","MN",2428 +2009-08-01,"Electric Power Consumption","West Virginia","WV",99 +2009-08-01,"Electric Power Consumption","Wisconsin","WI",4220 +2009-08-01,"Electric Power Consumption","Vermont","VT",6 +2009-08-01,"Electric Power Consumption","U.S.","U.S.",840317 +2009-08-01,"Electric Power Consumption","Connecticut","CT",8600 +2009-08-01,"Electric Power Consumption","California","CA",89115 +2009-08-01,"Electric Power Consumption","Alaska","AK",2708 +2009-08-01,"Electric Power Consumption","New Mexico","NM",7521 +2009-08-01,"Electric Power Consumption","Colorado","CO",11323 +2009-08-01,"Electric Power Consumption","Michigan","MI",11537 +2009-08-01,"Electric Power Consumption","Kansas","KS",5707 +2009-08-01,"Electric Power Consumption","Tennessee","TN",479 +2009-08-01,"Electric Power Consumption","Hawaii","HI",NA +2009-08-01,"Electric Power Consumption","Arizona","AZ",36613 +2009-08-01,"Electric Power Consumption","Florida","FL",97461 +2009-08-01,"Electric Power Consumption","Louisiana","LA",27292 +2009-08-01,"Electric Power Consumption","Wyoming","WY",56 +2009-08-01,"Electric Power Consumption","Iowa","IA",1431 +2009-08-01,"Electric Power Consumption","Nebraska","NE",666 +2009-08-01,"Industrial Consumption","Oklahoma","OK",15073 +2009-08-01,"Industrial Consumption","Missouri","MO",4390 +2009-08-01,"Industrial Consumption","Louisiana","LA",63503 +2009-08-01,"Industrial Consumption","South Dakota","SD",3156 +2009-08-01,"Industrial Consumption","Ohio","OH",15802 +2009-08-01,"Industrial Consumption","Utah","UT",2179 +2009-08-01,"Industrial Consumption","U.S.","U.S.",495412 +2009-08-01,"Industrial Consumption","Pennsylvania","PA",13232 +2009-08-01,"Industrial Consumption","Maine","ME",2275 +2009-08-01,"Industrial Consumption","California","CA",65478 +2009-08-01,"Industrial Consumption","Arkansas","AR",5770 +2009-08-01,"Industrial Consumption","West Virginia","WV",1952 +2009-08-01,"Industrial Consumption","Vermont","VT",172 +2009-08-01,"Industrial Consumption","Wisconsin","WI",7303 +2009-08-01,"Industrial Consumption","Minnesota","MN",8526 +2009-08-01,"Industrial Consumption","Michigan","MI",7747 +2009-08-01,"Industrial Consumption","North Carolina","NC",6300 +2009-08-01,"Industrial Consumption","Alaska","AK",465 +2009-08-01,"Industrial Consumption","Colorado","CO",8037 +2009-08-01,"Industrial Consumption","Washington","WA",5302 +2009-08-01,"Industrial Consumption","Kansas","KS",10625 +2009-08-01,"Industrial Consumption","Nevada","NV",825 +2009-08-01,"Industrial Consumption","Nebraska","NE",7661 +2009-08-01,"Industrial Consumption","New Hampshire","NH",252 +2009-08-01,"Industrial Consumption","Idaho","ID",1638 +2009-08-01,"Industrial Consumption","North Dakota","ND",753 +2009-08-01,"Industrial Consumption","Hawaii","HI",30 +2009-08-01,"Industrial Consumption","Alabama","AL",10734 +2009-08-01,"Industrial Consumption","Illinois","IL",15696 +2009-08-01,"Industrial Consumption","Arizona","AZ",1250 +2009-08-01,"Industrial Consumption","Oregon","OR",4513 +2009-08-01,"Industrial Consumption","Virginia","VA",5355 +2009-08-01,"Industrial Consumption","New Jersey","NJ",2946 +2009-08-01,"Industrial Consumption","Florida","FL",5327 +2009-08-01,"Industrial Consumption","Montana","MT",1469 +2009-08-01,"Industrial Consumption","Maryland","MD",1894 +2009-08-01,"Industrial Consumption","Massachusetts","MA",2088 +2009-08-01,"Industrial Consumption","Mississippi","MS",8602 +2009-08-01,"Industrial Consumption","Texas","TX",103712 +2009-08-01,"Industrial Consumption","South Carolina","SC",5285 +2009-08-01,"Industrial Consumption","Kentucky","KY",7362 +2009-08-01,"Industrial Consumption","Georgia","GA",11252 +2009-08-01,"Industrial Consumption","New York","NY",4794 +2009-08-01,"Industrial Consumption","Tennessee","TN",6969 +2009-08-01,"Industrial Consumption","Connecticut","CT",1718 +2009-08-01,"Industrial Consumption","Delaware","DE",1021 +2009-08-01,"Industrial Consumption","New Mexico","NM",1295 +2009-08-01,"Industrial Consumption","Wyoming","WY",2949 +2009-08-01,"Industrial Consumption","Iowa","IA",12259 +2009-08-01,"Industrial Consumption","Indiana","IN",17885 +2009-08-01,"Industrial Consumption","Rhode Island","RI",590 +2009-08-01,"Industrial Consumption","District of Columbia","DC",0 +2009-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",108525 +2009-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",50455 +2009-08-01,"Residential Consumption","Rhode Island","RI",455 +2009-08-01,"Residential Consumption","North Carolina","NC",947 +2009-08-01,"Residential Consumption","Wisconsin","WI",2566 +2009-08-01,"Residential Consumption","North Dakota","ND",167 +2009-08-01,"Residential Consumption","Montana","MT",400 +2009-08-01,"Residential Consumption","Oklahoma","OK",1175 +2009-08-01,"Residential Consumption","U.S.","U.S.",111479 +2009-08-01,"Residential Consumption","Texas","TX",5384 +2009-08-01,"Residential Consumption","Mississippi","MS",619 +2009-08-01,"Residential Consumption","Nebraska","NE",798 +2009-08-01,"Residential Consumption","South Dakota","SD",241 +2009-08-01,"Residential Consumption","Georgia","GA",3459 +2009-08-01,"Residential Consumption","New Mexico","NM",830 +2009-08-01,"Residential Consumption","Kentucky","KY",982 +2009-08-01,"Residential Consumption","Arizona","AZ",1038 +2009-08-01,"Residential Consumption","Alaska","AK",636 +2009-08-01,"Residential Consumption","South Carolina","SC",441 +2009-08-01,"Residential Consumption","Oregon","OR",885 +2009-08-01,"Residential Consumption","Louisiana","LA",1259 +2009-08-01,"Residential Consumption","Connecticut","CT",1080 +2009-08-01,"Residential Consumption","Maine","ME",26 +2009-08-01,"Residential Consumption","Indiana","IN",2546 +2009-08-01,"Residential Consumption","Colorado","CO",2869 +2009-08-01,"Residential Consumption","California","CA",20497 +2009-08-01,"Residential Consumption","West Virginia","WV",348 +2009-08-01,"Residential Consumption","Illinois","IL",8333 +2009-08-01,"Residential Consumption","Vermont","VT",70 +2009-08-01,"Residential Consumption","Tennessee","TN",1082 +2009-08-01,"Residential Consumption","Nevada","NV",1147 +2009-08-01,"Residential Consumption","Florida","FL",709 +2009-08-01,"Residential Consumption","Arkansas","AR",692 +2009-08-01,"Residential Consumption","Delaware","DE",175 +2009-08-01,"Residential Consumption","Wyoming","WY",248 +2009-08-01,"Residential Consumption","Hawaii","HI",38 +2009-08-01,"Residential Consumption","Michigan","MI",6348 +2009-08-01,"Residential Consumption","Maryland","MD",1647 +2009-08-01,"Residential Consumption","Idaho","ID",515 +2009-08-01,"Residential Consumption","Virginia","VA",1534 +2009-08-01,"Residential Consumption","Ohio","OH",5365 +2009-08-01,"Residential Consumption","Utah","UT",1558 +2009-08-01,"Residential Consumption","Pennsylvania","PA",4087 +2009-08-01,"Residential Consumption","New Hampshire","NH",132 +2009-08-01,"Residential Consumption","Missouri","MO",1884 +2009-08-01,"Residential Consumption","Alabama","AL",824 +2009-08-01,"Residential Consumption","New York","NY",9683 +2009-08-01,"Residential Consumption","Iowa","IA",1275 +2009-08-01,"Residential Consumption","Minnesota","MN",2670 +2009-08-01,"Residential Consumption","District of Columbia","DC",264 +2009-08-01,"Residential Consumption","Massachusetts","MA",3415 +2009-08-01,"Residential Consumption","New Jersey","NJ",5149 +2009-08-01,"Residential Consumption","Kansas","KS",1268 +2009-08-01,"Residential Consumption","Washington","WA",1717 +2009-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2315 +2009-09-01,"Commercial Consumption","North Carolina","NC",2450 +2009-09-01,"Commercial Consumption","New Jersey","NJ",9486 +2009-09-01,"Commercial Consumption","Vermont","VT",77 +2009-09-01,"Commercial Consumption","Arizona","AZ",1882 +2009-09-01,"Commercial Consumption","Illinois","IL",8181 +2009-09-01,"Commercial Consumption","South Carolina","SC",1153 +2009-09-01,"Commercial Consumption","Minnesota","MN",2637 +2009-09-01,"Commercial Consumption","Oregon","OR",1033 +2009-09-01,"Commercial Consumption","Wisconsin","WI",2867 +2009-09-01,"Commercial Consumption","South Dakota","SD",339 +2009-09-01,"Commercial Consumption","Texas","TX",9317 +2009-09-01,"Commercial Consumption","Kansas","KS",952 +2009-09-01,"Commercial Consumption","Idaho","ID",532 +2009-09-01,"Commercial Consumption","Tennessee","TN",2243 +2009-09-01,"Commercial Consumption","Nevada","NV",1624 +2009-09-01,"Commercial Consumption","Indiana","IN",2463 +2009-09-01,"Commercial Consumption","Wyoming","WY",288 +2009-09-01,"Commercial Consumption","New Mexico","NM",877 +2009-09-01,"Commercial Consumption","Oklahoma","OK",1482 +2009-09-01,"Commercial Consumption","Massachusetts","MA",2238 +2009-09-01,"Commercial Consumption","U.S.","U.S.",131405 +2009-09-01,"Commercial Consumption","Georgia","GA",2255 +2009-09-01,"Commercial Consumption","Florida","FL",3514 +2009-09-01,"Commercial Consumption","New York","NY",12376 +2009-09-01,"Commercial Consumption","Mississippi","MS",986 +2009-09-01,"Commercial Consumption","West Virginia","WV",1070 +2009-09-01,"Commercial Consumption","Montana","MT",677 +2009-09-01,"Commercial Consumption","Alaska","AK",875 +2009-09-01,"Commercial Consumption","Connecticut","CT",1588 +2009-09-01,"Commercial Consumption","California","CA",16800 +2009-09-01,"Commercial Consumption","Arkansas","AR",1877 +2009-09-01,"Commercial Consumption","North Dakota","ND",266 +2009-09-01,"Commercial Consumption","District of Columbia","DC",820 +2009-09-01,"Commercial Consumption","Washington","WA",2120 +2009-09-01,"Commercial Consumption","Utah","UT",1090 +2009-09-01,"Commercial Consumption","Kentucky","KY",1114 +2009-09-01,"Commercial Consumption","Maryland","MD",3042 +2009-09-01,"Commercial Consumption","Ohio","OH",4811 +2009-09-01,"Commercial Consumption","Alabama","AL",1190 +2009-09-01,"Commercial Consumption","Nebraska","NE",1105 +2009-09-01,"Commercial Consumption","Colorado","CO",2098 +2009-09-01,"Commercial Consumption","Pennsylvania","PA",4676 +2009-09-01,"Commercial Consumption","Missouri","MO",2321 +2009-09-01,"Commercial Consumption","New Hampshire","NH",404 +2009-09-01,"Commercial Consumption","Maine","ME",212 +2009-09-01,"Commercial Consumption","Iowa","IA",1793 +2009-09-01,"Commercial Consumption","Hawaii","HI",144 +2009-09-01,"Commercial Consumption","Delaware","DE",571 +2009-09-01,"Commercial Consumption","Louisiana","LA",1388 +2009-09-01,"Commercial Consumption","Virginia","VA",2807 +2009-09-01,"Commercial Consumption","Rhode Island","RI",211 +2009-09-01,"Commercial Consumption","Michigan","MI",5084 +2009-09-01,"Delivered to Consumers","New Mexico","NM",8903 +2009-09-01,"Delivered to Consumers","Indiana","IN",27205 +2009-09-01,"Delivered to Consumers","South Dakota","SD",3692 +2009-09-01,"Delivered to Consumers","Connecticut","CT",10189 +2009-09-01,"Delivered to Consumers","Mississippi","MS",30905 +2009-09-01,"Delivered to Consumers","South Carolina","SC",16780 +2009-09-01,"Delivered to Consumers","District of Columbia","DC",1064 +2009-09-01,"Delivered to Consumers","Illinois","IL",36445 +2009-09-01,"Delivered to Consumers","Rhode Island","RI",6114 +2009-09-01,"Delivered to Consumers","New York","NY",57719 +2009-09-01,"Delivered to Consumers","Pennsylvania","PA",43122 +2009-09-01,"Delivered to Consumers","Wyoming","WY",3568 +2009-09-01,"Delivered to Consumers","Alaska","AK",5369 +2009-09-01,"Delivered to Consumers","Idaho","ID",4752 +2009-09-01,"Delivered to Consumers","Kentucky","KY",10373 +2009-09-01,"Delivered to Consumers","Nebraska","NE",8078 +2009-09-01,"Delivered to Consumers","North Carolina","NC",17018 +2009-09-01,"Delivered to Consumers","Massachusetts","MA",23998 +2009-09-01,"Delivered to Consumers","Colorado","CO",21589 +2009-09-01,"Delivered to Consumers","Nevada","NV",21935 +2009-09-01,"Delivered to Consumers","Arizona","AZ",34242 +2009-09-01,"Delivered to Consumers","Utah","UT",9954 +2009-09-01,"Delivered to Consumers","Montana","MT",2717 +2009-09-01,"Delivered to Consumers","Hawaii","HI",213 +2009-09-01,"Delivered to Consumers","Tennessee","TN",10455 +2009-09-01,"Delivered to Consumers","North Dakota","ND",1855 +2009-09-01,"Delivered to Consumers","Arkansas","AR",15069 +2009-09-01,"Delivered to Consumers","Alabama","AL",33106 +2009-09-01,"Delivered to Consumers","Virginia","VA",21346 +2009-09-01,"Delivered to Consumers","Oregon","OR",19836 +2009-09-01,"Delivered to Consumers","Minnesota","MN",17738 +2009-09-01,"Delivered to Consumers","U.S.","U.S.",1427135 +2009-09-01,"Delivered to Consumers","Delaware","DE",3658 +2009-09-01,"Delivered to Consumers","West Virginia","WV",3447 +2009-09-01,"Delivered to Consumers","Ohio","OH",33693 +2009-09-01,"Delivered to Consumers","Iowa","IA",15604 +2009-09-01,"Delivered to Consumers","New Jersey","NJ",34157 +2009-09-01,"Delivered to Consumers","Maine","ME",5318 +2009-09-01,"Delivered to Consumers","Louisiana","LA",86783 +2009-09-01,"Delivered to Consumers","Georgia","GA",29455 +2009-09-01,"Delivered to Consumers","New Hampshire","NH",3250 +2009-09-01,"Delivered to Consumers","Vermont","VT",337 +2009-09-01,"Delivered to Consumers","Maryland","MD",8049 +2009-09-01,"Delivered to Consumers","Kansas","KS",12980 +2009-09-01,"Delivered to Consumers","Michigan","MI",29228 +2009-09-01,"Delivered to Consumers","Missouri","MO",10268 +2009-09-01,"Delivered to Consumers","Texas","TX",238040 +2009-09-01,"Delivered to Consumers","Oklahoma","OK",43134 +2009-09-01,"Delivered to Consumers","Wisconsin","WI",18071 +2009-09-01,"Delivered to Consumers","California","CA",196549 +2009-09-01,"Delivered to Consumers","Washington","WA",24013 +2009-09-01,"Delivered to Consumers","Florida","FL",103511 +2009-09-01,"Electric Power Consumption","Washington","WA",13747 +2009-09-01,"Electric Power Consumption","Virginia","VA",12104 +2009-09-01,"Electric Power Consumption","South Carolina","SC",9798 +2009-09-01,"Electric Power Consumption","Michigan","MI",8834 +2009-09-01,"Electric Power Consumption","West Virginia","WV",98 +2009-09-01,"Electric Power Consumption","Georgia","GA",12641 +2009-09-01,"Electric Power Consumption","Vermont","VT",3 +2009-09-01,"Electric Power Consumption","Hawaii","HI",NA +2009-09-01,"Electric Power Consumption","Arizona","AZ",29935 +2009-09-01,"Electric Power Consumption","Alabama","AL",20072 +2009-09-01,"Electric Power Consumption","New Jersey","NJ",16201 +2009-09-01,"Electric Power Consumption","Idaho","ID",1654 +2009-09-01,"Electric Power Consumption","Illinois","IL",3096 +2009-09-01,"Electric Power Consumption","U.S.","U.S.",690011 +2009-09-01,"Electric Power Consumption","Mississippi","MS",20392 +2009-09-01,"Electric Power Consumption","New Hampshire","NH",2391 +2009-09-01,"Electric Power Consumption","Florida","FL",93798 +2009-09-01,"Electric Power Consumption","Kansas","KS",1773 +2009-09-01,"Electric Power Consumption","North Carolina","NC",7103 +2009-09-01,"Electric Power Consumption","Kentucky","KY",982 +2009-09-01,"Electric Power Consumption","Ohio","OH",6573 +2009-09-01,"Electric Power Consumption","North Dakota","ND",0 +2009-09-01,"Electric Power Consumption","Montana","MT",102 +2009-09-01,"Electric Power Consumption","Connecticut","CT",5934 +2009-09-01,"Electric Power Consumption","New Mexico","NM",5810 +2009-09-01,"Electric Power Consumption","Oklahoma","OK",25221 +2009-09-01,"Electric Power Consumption","Utah","UT",4911 +2009-09-01,"Electric Power Consumption","Massachusetts","MA",14535 +2009-09-01,"Electric Power Consumption","Wisconsin","WI",3823 +2009-09-01,"Electric Power Consumption","Iowa","IA",718 +2009-09-01,"Electric Power Consumption","Tennessee","TN",182 +2009-09-01,"Electric Power Consumption","South Dakota","SD",69 +2009-09-01,"Electric Power Consumption","Indiana","IN",3258 +2009-09-01,"Electric Power Consumption","California","CA",96366 +2009-09-01,"Electric Power Consumption","Louisiana","LA",22057 +2009-09-01,"Electric Power Consumption","New York","NY",30599 +2009-09-01,"Electric Power Consumption","Pennsylvania","PA",21129 +2009-09-01,"Electric Power Consumption","Nebraska","NE",186 +2009-09-01,"Electric Power Consumption","Missouri","MO",1626 +2009-09-01,"Electric Power Consumption","Maine","ME",2996 +2009-09-01,"Electric Power Consumption","Texas","TX",126914 +2009-09-01,"Electric Power Consumption","Oregon","OR",13473 +2009-09-01,"Electric Power Consumption","Nevada","NV",18232 +2009-09-01,"Electric Power Consumption","Wyoming","WY",55 +2009-09-01,"Electric Power Consumption","Maryland","MD",1794 +2009-09-01,"Electric Power Consumption","Alaska","AK",2972 +2009-09-01,"Electric Power Consumption","Colorado","CO",9253 +2009-09-01,"Electric Power Consumption","Arkansas","AR",6626 +2009-09-01,"Electric Power Consumption","Rhode Island","RI",5007 +2009-09-01,"Electric Power Consumption","Minnesota","MN",3138 +2009-09-01,"Electric Power Consumption","Delaware","DE",1830 +2009-09-01,"Industrial Consumption","Maryland","MD",1512 +2009-09-01,"Industrial Consumption","Louisiana","LA",62101 +2009-09-01,"Industrial Consumption","Washington","WA",6141 +2009-09-01,"Industrial Consumption","U.S.","U.S.",483796 +2009-09-01,"Industrial Consumption","Pennsylvania","PA",12603 +2009-09-01,"Industrial Consumption","Wisconsin","WI",8408 +2009-09-01,"Industrial Consumption","Iowa","IA",11805 +2009-09-01,"Industrial Consumption","Kansas","KS",8910 +2009-09-01,"Industrial Consumption","Utah","UT",2325 +2009-09-01,"Industrial Consumption","Nevada","NV",867 +2009-09-01,"Industrial Consumption","Virginia","VA",4806 +2009-09-01,"Industrial Consumption","Kentucky","KY",7260 +2009-09-01,"Industrial Consumption","Illinois","IL",16064 +2009-09-01,"Industrial Consumption","Missouri","MO",4322 +2009-09-01,"Industrial Consumption","California","CA",62922 +2009-09-01,"Industrial Consumption","Minnesota","MN",9150 +2009-09-01,"Industrial Consumption","Idaho","ID",1992 +2009-09-01,"Industrial Consumption","Florida","FL",5493 +2009-09-01,"Industrial Consumption","Connecticut","CT",1685 +2009-09-01,"Industrial Consumption","Michigan","MI",8592 +2009-09-01,"Industrial Consumption","District of Columbia","DC",0 +2009-09-01,"Industrial Consumption","Oklahoma","OK",15181 +2009-09-01,"Industrial Consumption","Colorado","CO",6461 +2009-09-01,"Industrial Consumption","Oregon","OR",4354 +2009-09-01,"Industrial Consumption","Maine","ME",2081 +2009-09-01,"Industrial Consumption","Texas","TX",96351 +2009-09-01,"Industrial Consumption","West Virginia","WV",1776 +2009-09-01,"Industrial Consumption","Tennessee","TN",6828 +2009-09-01,"Industrial Consumption","New Jersey","NJ",3256 +2009-09-01,"Industrial Consumption","Indiana","IN",18365 +2009-09-01,"Industrial Consumption","Montana","MT",1480 +2009-09-01,"Industrial Consumption","Ohio","OH",16169 +2009-09-01,"Industrial Consumption","New York","NY",4464 +2009-09-01,"Industrial Consumption","Alabama","AL",10991 +2009-09-01,"Industrial Consumption","Rhode Island","RI",492 +2009-09-01,"Industrial Consumption","Arizona","AZ",1307 +2009-09-01,"Industrial Consumption","South Carolina","SC",5350 +2009-09-01,"Industrial Consumption","Nebraska","NE",5972 +2009-09-01,"Industrial Consumption","Vermont","VT",183 +2009-09-01,"Industrial Consumption","Wyoming","WY",2941 +2009-09-01,"Industrial Consumption","North Carolina","NC",6337 +2009-09-01,"Industrial Consumption","Alaska","AK",589 +2009-09-01,"Industrial Consumption","North Dakota","ND",1387 +2009-09-01,"Industrial Consumption","Massachusetts","MA",2884 +2009-09-01,"Industrial Consumption","South Dakota","SD",3029 +2009-09-01,"Industrial Consumption","Georgia","GA",11066 +2009-09-01,"Industrial Consumption","Hawaii","HI",29 +2009-09-01,"Industrial Consumption","New Mexico","NM",1355 +2009-09-01,"Industrial Consumption","Mississippi","MS",8937 +2009-09-01,"Industrial Consumption","Arkansas","AR",5866 +2009-09-01,"Industrial Consumption","New Hampshire","NH",286 +2009-09-01,"Industrial Consumption","Delaware","DE",1072 +2009-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102145 +2009-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",45621 +2009-09-01,"Residential Consumption","Ohio","OH",6140 +2009-09-01,"Residential Consumption","North Carolina","NC",1128 +2009-09-01,"Residential Consumption","Connecticut","CT",983 +2009-09-01,"Residential Consumption","Idaho","ID",573 +2009-09-01,"Residential Consumption","West Virginia","WV",503 +2009-09-01,"Residential Consumption","U.S.","U.S.",119681 +2009-09-01,"Residential Consumption","South Carolina","SC",479 +2009-09-01,"Residential Consumption","Oregon","OR",976 +2009-09-01,"Residential Consumption","Utah","UT",1627 +2009-09-01,"Residential Consumption","Nevada","NV",1213 +2009-09-01,"Residential Consumption","Kentucky","KY",1016 +2009-09-01,"Residential Consumption","Georgia","GA",3493 +2009-09-01,"Residential Consumption","District of Columbia","DC",244 +2009-09-01,"Residential Consumption","Pennsylvania","PA",4714 +2009-09-01,"Residential Consumption","New Mexico","NM",861 +2009-09-01,"Residential Consumption","Maine","ME",29 +2009-09-01,"Residential Consumption","Colorado","CO",3776 +2009-09-01,"Residential Consumption","Oklahoma","OK",1250 +2009-09-01,"Residential Consumption","Delaware","DE",186 +2009-09-01,"Residential Consumption","Louisiana","LA",1238 +2009-09-01,"Residential Consumption","Hawaii","HI",39 +2009-09-01,"Residential Consumption","South Dakota","SD",255 +2009-09-01,"Residential Consumption","North Dakota","ND",202 +2009-09-01,"Residential Consumption","Massachusetts","MA",4340 +2009-09-01,"Residential Consumption","Kansas","KS",1344 +2009-09-01,"Residential Consumption","Washington","WA",2006 +2009-09-01,"Residential Consumption","Wyoming","WY",284 +2009-09-01,"Residential Consumption","Illinois","IL",9105 +2009-09-01,"Residential Consumption","Iowa","IA",1288 +2009-09-01,"Residential Consumption","Vermont","VT",74 +2009-09-01,"Residential Consumption","Maryland","MD",1701 +2009-09-01,"Residential Consumption","Florida","FL",706 +2009-09-01,"Residential Consumption","Arkansas","AR",700 +2009-09-01,"Residential Consumption","Texas","TX",5457 +2009-09-01,"Residential Consumption","Mississippi","MS",590 +2009-09-01,"Residential Consumption","Wisconsin","WI",2973 +2009-09-01,"Residential Consumption","Tennessee","TN",1202 +2009-09-01,"Residential Consumption","New Jersey","NJ",5214 +2009-09-01,"Residential Consumption","Missouri","MO",2000 +2009-09-01,"Residential Consumption","Rhode Island","RI",404 +2009-09-01,"Residential Consumption","Virginia","VA",1628 +2009-09-01,"Residential Consumption","Michigan","MI",6718 +2009-09-01,"Residential Consumption","New Hampshire","NH",170 +2009-09-01,"Residential Consumption","Montana","MT",457 +2009-09-01,"Residential Consumption","California","CA",20461 +2009-09-01,"Residential Consumption","Alaska","AK",933 +2009-09-01,"Residential Consumption","Nebraska","NE",815 +2009-09-01,"Residential Consumption","Minnesota","MN",2813 +2009-09-01,"Residential Consumption","Indiana","IN",3120 +2009-09-01,"Residential Consumption","Arizona","AZ",1119 +2009-09-01,"Residential Consumption","Alabama","AL",853 +2009-09-01,"Residential Consumption","New York","NY",10280 +2009-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2241 +2009-10-01,"Commercial Consumption","Pennsylvania","PA",8399 +2009-10-01,"Commercial Consumption","U.S.","U.S.",198631 +2009-10-01,"Commercial Consumption","New York","NY",17137 +2009-10-01,"Commercial Consumption","Nebraska","NE",1752 +2009-10-01,"Commercial Consumption","Arizona","AZ",2212 +2009-10-01,"Commercial Consumption","Colorado","CO",4834 +2009-10-01,"Commercial Consumption","Virginia","VA",4483 +2009-10-01,"Commercial Consumption","Missouri","MO",3170 +2009-10-01,"Commercial Consumption","Texas","TX",11751 +2009-10-01,"Commercial Consumption","Maryland","MD",4118 +2009-10-01,"Commercial Consumption","Georgia","GA",3393 +2009-10-01,"Commercial Consumption","Delaware","DE",826 +2009-10-01,"Commercial Consumption","Michigan","MI",8241 +2009-10-01,"Commercial Consumption","West Virginia","WV",1687 +2009-10-01,"Commercial Consumption","Washington","WA",3222 +2009-10-01,"Commercial Consumption","South Carolina","SC",1684 +2009-10-01,"Commercial Consumption","Iowa","IA",3810 +2009-10-01,"Commercial Consumption","Arkansas","AR",2457 +2009-10-01,"Commercial Consumption","District of Columbia","DC",1295 +2009-10-01,"Commercial Consumption","Kentucky","KY",2224 +2009-10-01,"Commercial Consumption","Idaho","ID",1092 +2009-10-01,"Commercial Consumption","North Dakota","ND",807 +2009-10-01,"Commercial Consumption","Utah","UT",1619 +2009-10-01,"Commercial Consumption","Oregon","OR",1497 +2009-10-01,"Commercial Consumption","Oklahoma","OK",1722 +2009-10-01,"Commercial Consumption","Maine","ME",366 +2009-10-01,"Commercial Consumption","Kansas","KS",1573 +2009-10-01,"Commercial Consumption","Rhode Island","RI",439 +2009-10-01,"Commercial Consumption","Hawaii","HI",138 +2009-10-01,"Commercial Consumption","Mississippi","MS",1516 +2009-10-01,"Commercial Consumption","Louisiana","LA",1691 +2009-10-01,"Commercial Consumption","Illinois","IL",14584 +2009-10-01,"Commercial Consumption","New Mexico","NM",1111 +2009-10-01,"Commercial Consumption","Massachusetts","MA",3776 +2009-10-01,"Commercial Consumption","New Jersey","NJ",12390 +2009-10-01,"Commercial Consumption","Montana","MT",1688 +2009-10-01,"Commercial Consumption","Connecticut","CT",2283 +2009-10-01,"Commercial Consumption","California","CA",18911 +2009-10-01,"Commercial Consumption","Alabama","AL",1359 +2009-10-01,"Commercial Consumption","North Carolina","NC",3598 +2009-10-01,"Commercial Consumption","Minnesota","MN",6519 +2009-10-01,"Commercial Consumption","Wisconsin","WI",5951 +2009-10-01,"Commercial Consumption","South Dakota","SD",860 +2009-10-01,"Commercial Consumption","Florida","FL",3603 +2009-10-01,"Commercial Consumption","Tennessee","TN",3082 +2009-10-01,"Commercial Consumption","Nevada","NV",2059 +2009-10-01,"Commercial Consumption","Wyoming","WY",664 +2009-10-01,"Commercial Consumption","New Hampshire","NH",705 +2009-10-01,"Commercial Consumption","Vermont","VT",125 +2009-10-01,"Commercial Consumption","Ohio","OH",9111 +2009-10-01,"Commercial Consumption","Alaska","AK",1179 +2009-10-01,"Commercial Consumption","Indiana","IN",5920 +2009-10-01,"Delivered to Consumers","Vermont","VT",508 +2009-10-01,"Delivered to Consumers","Rhode Island","RI",5399 +2009-10-01,"Delivered to Consumers","Idaho","ID",6420 +2009-10-01,"Delivered to Consumers","Michigan","MI",43434 +2009-10-01,"Delivered to Consumers","South Carolina","SC",16118 +2009-10-01,"Delivered to Consumers","Arizona","AZ",28949 +2009-10-01,"Delivered to Consumers","North Dakota","ND",3603 +2009-10-01,"Delivered to Consumers","Montana","MT",4908 +2009-10-01,"Delivered to Consumers","Oklahoma","OK",33410 +2009-10-01,"Delivered to Consumers","Iowa","IA",21636 +2009-10-01,"Delivered to Consumers","Massachusetts","MA",29583 +2009-10-01,"Delivered to Consumers","Georgia","GA",29641 +2009-10-01,"Delivered to Consumers","New Hampshire","NH",4129 +2009-10-01,"Delivered to Consumers","U.S.","U.S.",1510867 +2009-10-01,"Delivered to Consumers","Delaware","DE",5106 +2009-10-01,"Delivered to Consumers","West Virginia","WV",5556 +2009-10-01,"Delivered to Consumers","Kansas","KS",14172 +2009-10-01,"Delivered to Consumers","Nebraska","NE",10180 +2009-10-01,"Delivered to Consumers","Colorado","CO",31800 +2009-10-01,"Delivered to Consumers","New Jersey","NJ",42914 +2009-10-01,"Delivered to Consumers","District of Columbia","DC",1998 +2009-10-01,"Delivered to Consumers","Wyoming","WY",5046 +2009-10-01,"Delivered to Consumers","Alaska","AK",6436 +2009-10-01,"Delivered to Consumers","Ohio","OH",47590 +2009-10-01,"Delivered to Consumers","Alabama","AL",27646 +2009-10-01,"Delivered to Consumers","Missouri","MO",13672 +2009-10-01,"Delivered to Consumers","Maine","ME",6573 +2009-10-01,"Delivered to Consumers","Pennsylvania","PA",49539 +2009-10-01,"Delivered to Consumers","California","CA",178653 +2009-10-01,"Delivered to Consumers","Washington","WA",25070 +2009-10-01,"Delivered to Consumers","Minnesota","MN",28471 +2009-10-01,"Delivered to Consumers","Utah","UT",9182 +2009-10-01,"Delivered to Consumers","Indiana","IN",37690 +2009-10-01,"Delivered to Consumers","Illinois","IL",56477 +2009-10-01,"Delivered to Consumers","South Dakota","SD",4949 +2009-10-01,"Delivered to Consumers","New York","NY",70093 +2009-10-01,"Delivered to Consumers","Hawaii","HI",200 +2009-10-01,"Delivered to Consumers","Connecticut","CT",13094 +2009-10-01,"Delivered to Consumers","Virginia","VA",17041 +2009-10-01,"Delivered to Consumers","North Carolina","NC",14783 +2009-10-01,"Delivered to Consumers","Texas","TX",220295 +2009-10-01,"Delivered to Consumers","Nevada","NV",17654 +2009-10-01,"Delivered to Consumers","Louisiana","LA",89902 +2009-10-01,"Delivered to Consumers","New Mexico","NM",8376 +2009-10-01,"Delivered to Consumers","Maryland","MD",11443 +2009-10-01,"Delivered to Consumers","Tennessee","TN",12553 +2009-10-01,"Delivered to Consumers","Kentucky","KY",13346 +2009-10-01,"Delivered to Consumers","Arkansas","AR",14550 +2009-10-01,"Delivered to Consumers","Wisconsin","WI",27433 +2009-10-01,"Delivered to Consumers","Mississippi","MS",23913 +2009-10-01,"Delivered to Consumers","Oregon","OR",19883 +2009-10-01,"Delivered to Consumers","Florida","FL",97534 +2009-10-01,"Electric Power Consumption","Rhode Island","RI",3688 +2009-10-01,"Electric Power Consumption","Minnesota","MN",2031 +2009-10-01,"Electric Power Consumption","West Virginia","WV",100 +2009-10-01,"Electric Power Consumption","Tennessee","TN",65 +2009-10-01,"Electric Power Consumption","U.S.","U.S.",537013 +2009-10-01,"Electric Power Consumption","Hawaii","HI",NA +2009-10-01,"Electric Power Consumption","Washington","WA",11396 +2009-10-01,"Electric Power Consumption","Arkansas","AR",4256 +2009-10-01,"Electric Power Consumption","Oklahoma","OK",14919 +2009-10-01,"Electric Power Consumption","Oregon","OR",11712 +2009-10-01,"Electric Power Consumption","Kansas","KS",1871 +2009-10-01,"Electric Power Consumption","South Dakota","SD",67 +2009-10-01,"Electric Power Consumption","North Dakota","ND",0 +2009-10-01,"Electric Power Consumption","Florida","FL",87912 +2009-10-01,"Electric Power Consumption","Texas","TX",100313 +2009-10-01,"Electric Power Consumption","Wisconsin","WI",2877 +2009-10-01,"Electric Power Consumption","Nebraska","NE",117 +2009-10-01,"Electric Power Consumption","North Carolina","NC",1259 +2009-10-01,"Electric Power Consumption","Maryland","MD",968 +2009-10-01,"Electric Power Consumption","Connecticut","CT",6754 +2009-10-01,"Electric Power Consumption","New Jersey","NJ",14697 +2009-10-01,"Electric Power Consumption","Louisiana","LA",18663 +2009-10-01,"Electric Power Consumption","Illinois","IL",1066 +2009-10-01,"Electric Power Consumption","Vermont","VT",6 +2009-10-01,"Electric Power Consumption","Missouri","MO",1203 +2009-10-01,"Electric Power Consumption","Montana","MT",69 +2009-10-01,"Electric Power Consumption","Alabama","AL",13515 +2009-10-01,"Electric Power Consumption","Alaska","AK",3223 +2009-10-01,"Electric Power Consumption","Virginia","VA",4686 +2009-10-01,"Electric Power Consumption","New Mexico","NM",4759 +2009-10-01,"Electric Power Consumption","South Carolina","SC",7793 +2009-10-01,"Electric Power Consumption","Wyoming","WY",104 +2009-10-01,"Electric Power Consumption","Maine","ME",3827 +2009-10-01,"Electric Power Consumption","Delaware","DE",1669 +2009-10-01,"Electric Power Consumption","Colorado","CO",6912 +2009-10-01,"Electric Power Consumption","New York","NY",26759 +2009-10-01,"Electric Power Consumption","Michigan","MI",8049 +2009-10-01,"Electric Power Consumption","Pennsylvania","PA",15828 +2009-10-01,"Electric Power Consumption","Nevada","NV",12928 +2009-10-01,"Electric Power Consumption","Ohio","OH",2363 +2009-10-01,"Electric Power Consumption","New Hampshire","NH",2715 +2009-10-01,"Electric Power Consumption","Arizona","AZ",23706 +2009-10-01,"Electric Power Consumption","Idaho","ID",1407 +2009-10-01,"Electric Power Consumption","Massachusetts","MA",15139 +2009-10-01,"Electric Power Consumption","Iowa","IA",349 +2009-10-01,"Electric Power Consumption","Mississippi","MS",11524 +2009-10-01,"Electric Power Consumption","Kentucky","KY",334 +2009-10-01,"Electric Power Consumption","Indiana","IN",2047 +2009-10-01,"Electric Power Consumption","Utah","UT",2319 +2009-10-01,"Electric Power Consumption","Georgia","GA",7799 +2009-10-01,"Electric Power Consumption","California","CA",71255 +2009-10-01,"Industrial Consumption","Montana","MT",1800 +2009-10-01,"Industrial Consumption","Missouri","MO",4983 +2009-10-01,"Industrial Consumption","Ohio","OH",18918 +2009-10-01,"Industrial Consumption","West Virginia","WV",2132 +2009-10-01,"Industrial Consumption","Idaho","ID",2102 +2009-10-01,"Industrial Consumption","Florida","FL",5313 +2009-10-01,"Industrial Consumption","Virginia","VA",3819 +2009-10-01,"Industrial Consumption","Georgia","GA",12105 +2009-10-01,"Industrial Consumption","Kansas","KS",7870 +2009-10-01,"Industrial Consumption","Arkansas","AR",6758 +2009-10-01,"Industrial Consumption","Texas","TX",99422 +2009-10-01,"Industrial Consumption","Wisconsin","WI",9884 +2009-10-01,"Industrial Consumption","Tennessee","TN",7221 +2009-10-01,"Industrial Consumption","New Jersey","NJ",3684 +2009-10-01,"Industrial Consumption","Connecticut","CT",2008 +2009-10-01,"Industrial Consumption","Indiana","IN",21473 +2009-10-01,"Industrial Consumption","Maryland","MD",2266 +2009-10-01,"Industrial Consumption","South Dakota","SD",3056 +2009-10-01,"Industrial Consumption","Utah","UT",2348 +2009-10-01,"Industrial Consumption","Kentucky","KY",8000 +2009-10-01,"Industrial Consumption","District of Columbia","DC",0 +2009-10-01,"Industrial Consumption","Hawaii","HI",26 +2009-10-01,"Industrial Consumption","New Mexico","NM",1296 +2009-10-01,"Industrial Consumption","Mississippi","MS",9505 +2009-10-01,"Industrial Consumption","Maine","ME",2330 +2009-10-01,"Industrial Consumption","Wyoming","WY",3481 +2009-10-01,"Industrial Consumption","Alaska","AK",617 +2009-10-01,"Industrial Consumption","Massachusetts","MA",2804 +2009-10-01,"Industrial Consumption","Colorado","CO",8861 +2009-10-01,"Industrial Consumption","U.S.","U.S.",521880 +2009-10-01,"Industrial Consumption","Pennsylvania","PA",14130 +2009-10-01,"Industrial Consumption","Oregon","OR",4825 +2009-10-01,"Industrial Consumption","South Carolina","SC",5609 +2009-10-01,"Industrial Consumption","Nebraska","NE",6717 +2009-10-01,"Industrial Consumption","Illinois","IL",17837 +2009-10-01,"Industrial Consumption","North Carolina","NC",7166 +2009-10-01,"Industrial Consumption","North Dakota","ND",1972 +2009-10-01,"Industrial Consumption","Washington","WA",6101 +2009-10-01,"Industrial Consumption","New York","NY",5785 +2009-10-01,"Industrial Consumption","Michigan","MI",10725 +2009-10-01,"Industrial Consumption","Oklahoma","OK",14620 +2009-10-01,"Industrial Consumption","Louisiana","LA",67847 +2009-10-01,"Industrial Consumption","Arizona","AZ",1560 +2009-10-01,"Industrial Consumption","Nevada","NV",960 +2009-10-01,"Industrial Consumption","California","CA",62155 +2009-10-01,"Industrial Consumption","Alabama","AL",11590 +2009-10-01,"Industrial Consumption","Vermont","VT",238 +2009-10-01,"Industrial Consumption","New Hampshire","NH",336 +2009-10-01,"Industrial Consumption","Minnesota","MN",10980 +2009-10-01,"Industrial Consumption","Iowa","IA",13732 +2009-10-01,"Industrial Consumption","Delaware","DE",2242 +2009-10-01,"Industrial Consumption","Rhode Island","RI",669 +2009-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",106913 +2009-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",48298 +2009-10-01,"Residential Consumption","Rhode Island","RI",604 +2009-10-01,"Residential Consumption","District of Columbia","DC",703 +2009-10-01,"Residential Consumption","Florida","FL",706 +2009-10-01,"Residential Consumption","Massachusetts","MA",7864 +2009-10-01,"Residential Consumption","Kansas","KS",2857 +2009-10-01,"Residential Consumption","Delaware","DE",370 +2009-10-01,"Residential Consumption","Alabama","AL",1182 +2009-10-01,"Residential Consumption","Iowa","IA",3746 +2009-10-01,"Residential Consumption","Montana","MT",1351 +2009-10-01,"Residential Consumption","Kentucky","KY",2787 +2009-10-01,"Residential Consumption","Washington","WA",4351 +2009-10-01,"Residential Consumption","Arizona","AZ",1471 +2009-10-01,"Residential Consumption","Louisiana","LA",1701 +2009-10-01,"Residential Consumption","Vermont","VT",140 +2009-10-01,"Residential Consumption","New Jersey","NJ",12144 +2009-10-01,"Residential Consumption","Alaska","AK",1417 +2009-10-01,"Residential Consumption","New York","NY",20411 +2009-10-01,"Residential Consumption","Hawaii","HI",37 +2009-10-01,"Residential Consumption","New Mexico","NM",1211 +2009-10-01,"Residential Consumption","Missouri","MO",4317 +2009-10-01,"Residential Consumption","West Virginia","WV",1636 +2009-10-01,"Residential Consumption","North Carolina","NC",2760 +2009-10-01,"Residential Consumption","Wisconsin","WI",8721 +2009-10-01,"Residential Consumption","Nebraska","NE",1594 +2009-10-01,"Residential Consumption","Maine","ME",51 +2009-10-01,"Residential Consumption","Indiana","IN",8250 +2009-10-01,"Residential Consumption","New Hampshire","NH",373 +2009-10-01,"Residential Consumption","Wyoming","WY",797 +2009-10-01,"Residential Consumption","Ohio","OH",17198 +2009-10-01,"Residential Consumption","Tennessee","TN",2185 +2009-10-01,"Residential Consumption","Utah","UT",2896 +2009-10-01,"Residential Consumption","Michigan","MI",16419 +2009-10-01,"Residential Consumption","South Dakota","SD",965 +2009-10-01,"Residential Consumption","Nevada","NV",1708 +2009-10-01,"Residential Consumption","Illinois","IL",22990 +2009-10-01,"Residential Consumption","Texas","TX",8809 +2009-10-01,"Residential Consumption","Mississippi","MS",1369 +2009-10-01,"Residential Consumption","Maryland","MD",4091 +2009-10-01,"Residential Consumption","Minnesota","MN",8941 +2009-10-01,"Residential Consumption","Georgia","GA",6345 +2009-10-01,"Residential Consumption","Pennsylvania","PA",11181 +2009-10-01,"Residential Consumption","Idaho","ID",1820 +2009-10-01,"Residential Consumption","Oklahoma","OK",2149 +2009-10-01,"Residential Consumption","South Carolina","SC",1032 +2009-10-01,"Residential Consumption","Oregon","OR",1849 +2009-10-01,"Residential Consumption","Connecticut","CT",2049 +2009-10-01,"Residential Consumption","Virginia","VA",4052 +2009-10-01,"Residential Consumption","North Dakota","ND",824 +2009-10-01,"Residential Consumption","Arkansas","AR",1080 +2009-10-01,"Residential Consumption","Colorado","CO",11191 +2009-10-01,"Residential Consumption","California","CA",26332 +2009-10-01,"Residential Consumption","U.S.","U.S.",251028 +2009-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2315 +2009-11-01,"Commercial Consumption","North Dakota","ND",942 +2009-11-01,"Commercial Consumption","Missouri","MO",4459 +2009-11-01,"Commercial Consumption","Wisconsin","WI",7391 +2009-11-01,"Commercial Consumption","U.S.","U.S.",251343 +2009-11-01,"Commercial Consumption","Rhode Island","RI",762 +2009-11-01,"Commercial Consumption","Iowa","IA",5593 +2009-11-01,"Commercial Consumption","District of Columbia","DC",1650 +2009-11-01,"Commercial Consumption","Pennsylvania","PA",10873 +2009-11-01,"Commercial Consumption","Texas","TX",12649 +2009-11-01,"Commercial Consumption","Georgia","GA",4804 +2009-11-01,"Commercial Consumption","California","CA",20687 +2009-11-01,"Commercial Consumption","Arkansas","AR",2816 +2009-11-01,"Commercial Consumption","Alabama","AL",1828 +2009-11-01,"Commercial Consumption","Louisiana","LA",1853 +2009-11-01,"Commercial Consumption","Illinois","IL",18108 +2009-11-01,"Commercial Consumption","Wyoming","WY",970 +2009-11-01,"Commercial Consumption","North Carolina","NC",4375 +2009-11-01,"Commercial Consumption","Utah","UT",2759 +2009-11-01,"Commercial Consumption","Maine","ME",483 +2009-11-01,"Commercial Consumption","Florida","FL",3938 +2009-11-01,"Commercial Consumption","Hawaii","HI",138 +2009-11-01,"Commercial Consumption","Alaska","AK",1832 +2009-11-01,"Commercial Consumption","Michigan","MI",11970 +2009-11-01,"Commercial Consumption","Kentucky","KY",3052 +2009-11-01,"Commercial Consumption","Idaho","ID",1729 +2009-11-01,"Commercial Consumption","Nebraska","NE",2617 +2009-11-01,"Commercial Consumption","West Virginia","WV",2123 +2009-11-01,"Commercial Consumption","Washington","WA",4821 +2009-11-01,"Commercial Consumption","New Mexico","NM",2000 +2009-11-01,"Commercial Consumption","South Dakota","SD",1113 +2009-11-01,"Commercial Consumption","New Hampshire","NH",850 +2009-11-01,"Commercial Consumption","New York","NY",22003 +2009-11-01,"Commercial Consumption","South Carolina","SC",1826 +2009-11-01,"Commercial Consumption","Minnesota","MN",7773 +2009-11-01,"Commercial Consumption","Oklahoma","OK",2649 +2009-11-01,"Commercial Consumption","Virginia","VA",6159 +2009-11-01,"Commercial Consumption","Massachusetts","MA",5319 +2009-11-01,"Commercial Consumption","Maryland","MD",5185 +2009-11-01,"Commercial Consumption","Connecticut","CT",3094 +2009-11-01,"Commercial Consumption","Mississippi","MS",1256 +2009-11-01,"Commercial Consumption","Delaware","DE",991 +2009-11-01,"Commercial Consumption","Arizona","AZ",2778 +2009-11-01,"Commercial Consumption","Indiana","IN",6612 +2009-11-01,"Commercial Consumption","Colorado","CO",6479 +2009-11-01,"Commercial Consumption","New Jersey","NJ",14237 +2009-11-01,"Commercial Consumption","Montana","MT",2068 +2009-11-01,"Commercial Consumption","Kansas","KS",2424 +2009-11-01,"Commercial Consumption","Tennessee","TN",3743 +2009-11-01,"Commercial Consumption","Oregon","OR",2493 +2009-11-01,"Commercial Consumption","Vermont","VT",190 +2009-11-01,"Commercial Consumption","Ohio","OH",12400 +2009-11-01,"Commercial Consumption","Nevada","NV",2480 +2009-11-01,"Delivered to Consumers","South Dakota","SD",5725 +2009-11-01,"Delivered to Consumers","Massachusetts","MA",32022 +2009-11-01,"Delivered to Consumers","Oregon","OR",22512 +2009-11-01,"Delivered to Consumers","North Dakota","ND",3792 +2009-11-01,"Delivered to Consumers","Montana","MT",5988 +2009-11-01,"Delivered to Consumers","Alaska","AK",8304 +2009-11-01,"Delivered to Consumers","Arkansas","AR",13705 +2009-11-01,"Delivered to Consumers","Virginia","VA",22356 +2009-11-01,"Delivered to Consumers","Nebraska","NE",12479 +2009-11-01,"Delivered to Consumers","North Carolina","NC",20251 +2009-11-01,"Delivered to Consumers","Missouri","MO",17865 +2009-11-01,"Delivered to Consumers","Maine","ME",6490 +2009-11-01,"Delivered to Consumers","Vermont","VT",684 +2009-11-01,"Delivered to Consumers","New York","NY",85796 +2009-11-01,"Delivered to Consumers","Oklahoma","OK",37221 +2009-11-01,"Delivered to Consumers","Connecticut","CT",13680 +2009-11-01,"Delivered to Consumers","U.S.","U.S.",1619852 +2009-11-01,"Delivered to Consumers","Delaware","DE",4038 +2009-11-01,"Delivered to Consumers","Ohio","OH",58650 +2009-11-01,"Delivered to Consumers","Nevada","NV",20301 +2009-11-01,"Delivered to Consumers","Washington","WA",25521 +2009-11-01,"Delivered to Consumers","Illinois","IL",70083 +2009-11-01,"Delivered to Consumers","New Jersey","NJ",48986 +2009-11-01,"Delivered to Consumers","New Hampshire","NH",5011 +2009-11-01,"Delivered to Consumers","Florida","FL",77426 +2009-11-01,"Delivered to Consumers","West Virginia","WV",6471 +2009-11-01,"Delivered to Consumers","Rhode Island","RI",7119 +2009-11-01,"Delivered to Consumers","Maryland","MD",15346 +2009-11-01,"Delivered to Consumers","Hawaii","HI",203 +2009-11-01,"Delivered to Consumers","Tennessee","TN",15752 +2009-11-01,"Delivered to Consumers","Michigan","MI",54444 +2009-11-01,"Delivered to Consumers","Wisconsin","WI",31401 +2009-11-01,"Delivered to Consumers","Pennsylvania","PA",59251 +2009-11-01,"Delivered to Consumers","Mississippi","MS",23896 +2009-11-01,"Delivered to Consumers","South Carolina","SC",15796 +2009-11-01,"Delivered to Consumers","Arizona","AZ",22747 +2009-11-01,"Delivered to Consumers","Minnesota","MN",32332 +2009-11-01,"Delivered to Consumers","Indiana","IN",41578 +2009-11-01,"Delivered to Consumers","Kansas","KS",17770 +2009-11-01,"Delivered to Consumers","Kentucky","KY",15756 +2009-11-01,"Delivered to Consumers","Iowa","IA",25748 +2009-11-01,"Delivered to Consumers","Alabama","AL",29957 +2009-11-01,"Delivered to Consumers","Texas","TX",202412 +2009-11-01,"Delivered to Consumers","Utah","UT",13215 +2009-11-01,"Delivered to Consumers","New Mexico","NM",10960 +2009-11-01,"Delivered to Consumers","Wyoming","WY",5806 +2009-11-01,"Delivered to Consumers","Idaho","ID",7878 +2009-11-01,"Delivered to Consumers","Colorado","CO",37832 +2009-11-01,"Delivered to Consumers","California","CA",179068 +2009-11-01,"Delivered to Consumers","Louisiana","LA",86480 +2009-11-01,"Delivered to Consumers","Georgia","GA",36652 +2009-11-01,"Delivered to Consumers","District of Columbia","DC",2861 +2009-11-01,"Electric Power Consumption","New Jersey","NJ",12692 +2009-11-01,"Electric Power Consumption","Idaho","ID",944 +2009-11-01,"Electric Power Consumption","South Carolina","SC",5890 +2009-11-01,"Electric Power Consumption","West Virginia","WV",113 +2009-11-01,"Electric Power Consumption","Iowa","IA",336 +2009-11-01,"Electric Power Consumption","U.S.","U.S.",457085 +2009-11-01,"Electric Power Consumption","Hawaii","HI",NA +2009-11-01,"Electric Power Consumption","North Dakota","ND",0 +2009-11-01,"Electric Power Consumption","Oklahoma","OK",14675 +2009-11-01,"Electric Power Consumption","North Carolina","NC",2241 +2009-11-01,"Electric Power Consumption","Ohio","OH",2449 +2009-11-01,"Electric Power Consumption","Delaware","DE",616 +2009-11-01,"Electric Power Consumption","Connecticut","CT",5373 +2009-11-01,"Electric Power Consumption","California","CA",63515 +2009-11-01,"Electric Power Consumption","Massachusetts","MA",12844 +2009-11-01,"Electric Power Consumption","Kansas","KS",1636 +2009-11-01,"Electric Power Consumption","Wisconsin","WI",2824 +2009-11-01,"Electric Power Consumption","Arizona","AZ",15914 +2009-11-01,"Electric Power Consumption","Alabama","AL",14408 +2009-11-01,"Electric Power Consumption","Colorado","CO",7393 +2009-11-01,"Electric Power Consumption","Rhode Island","RI",4607 +2009-11-01,"Electric Power Consumption","Pennsylvania","PA",17045 +2009-11-01,"Electric Power Consumption","Vermont","VT",7 +2009-11-01,"Electric Power Consumption","Mississippi","MS",11527 +2009-11-01,"Electric Power Consumption","Kentucky","KY",473 +2009-11-01,"Electric Power Consumption","Washington","WA",6686 +2009-11-01,"Electric Power Consumption","Arkansas","AR",2007 +2009-11-01,"Electric Power Consumption","Michigan","MI",5304 +2009-11-01,"Electric Power Consumption","Nevada","NV",13962 +2009-11-01,"Electric Power Consumption","South Dakota","SD",117 +2009-11-01,"Electric Power Consumption","Nebraska","NE",67 +2009-11-01,"Electric Power Consumption","Indiana","IN",1865 +2009-11-01,"Electric Power Consumption","Florida","FL",67151 +2009-11-01,"Electric Power Consumption","Alaska","AK",3497 +2009-11-01,"Electric Power Consumption","Virginia","VA",4314 +2009-11-01,"Electric Power Consumption","New York","NY",27336 +2009-11-01,"Electric Power Consumption","Illinois","IL",827 +2009-11-01,"Electric Power Consumption","Wyoming","WY",89 +2009-11-01,"Electric Power Consumption","Tennessee","TN",76 +2009-11-01,"Electric Power Consumption","New Mexico","NM",4858 +2009-11-01,"Electric Power Consumption","Texas","TX",75108 +2009-11-01,"Electric Power Consumption","Oregon","OR",11012 +2009-11-01,"Electric Power Consumption","Missouri","MO",814 +2009-11-01,"Electric Power Consumption","Maine","ME",3405 +2009-11-01,"Electric Power Consumption","New Hampshire","NH",3241 +2009-11-01,"Electric Power Consumption","Montana","MT",51 +2009-11-01,"Electric Power Consumption","Georgia","GA",9485 +2009-11-01,"Electric Power Consumption","Louisiana","LA",13357 +2009-11-01,"Electric Power Consumption","Utah","UT",3008 +2009-11-01,"Electric Power Consumption","Minnesota","MN",1337 +2009-11-01,"Electric Power Consumption","Maryland","MD",590 +2009-11-01,"Industrial Consumption","Massachusetts","MA",3267 +2009-11-01,"Industrial Consumption","Oklahoma","OK",15973 +2009-11-01,"Industrial Consumption","Washington","WA",6221 +2009-11-01,"Industrial Consumption","Nevada","NV",960 +2009-11-01,"Industrial Consumption","South Carolina","SC",5624 +2009-11-01,"Industrial Consumption","Vermont","VT",244 +2009-11-01,"Industrial Consumption","Minnesota","MN",12632 +2009-11-01,"Industrial Consumption","Idaho","ID",1991 +2009-11-01,"Industrial Consumption","North Carolina","NC",7215 +2009-11-01,"Industrial Consumption","Alaska","AK",547 +2009-11-01,"Industrial Consumption","Montana","MT",1812 +2009-11-01,"Industrial Consumption","Kansas","KS",8444 +2009-11-01,"Industrial Consumption","Arizona","AZ",1568 +2009-11-01,"Industrial Consumption","Arkansas","AR",6791 +2009-11-01,"Industrial Consumption","Texas","TX",101519 +2009-11-01,"Industrial Consumption","Nebraska","NE",6987 +2009-11-01,"Industrial Consumption","Tennessee","TN",7071 +2009-11-01,"Industrial Consumption","Iowa","IA",14619 +2009-11-01,"Industrial Consumption","Florida","FL",5383 +2009-11-01,"Industrial Consumption","Illinois","IL",19629 +2009-11-01,"Industrial Consumption","Georgia","GA",11581 +2009-11-01,"Industrial Consumption","Missouri","MO",5345 +2009-11-01,"Industrial Consumption","West Virginia","WV",2107 +2009-11-01,"Industrial Consumption","Wisconsin","WI",10592 +2009-11-01,"Industrial Consumption","Maine","ME",2502 +2009-11-01,"Industrial Consumption","Utah","UT",2645 +2009-11-01,"Industrial Consumption","Pennsylvania","PA",14378 +2009-11-01,"Industrial Consumption","Mississippi","MS",9424 +2009-11-01,"Industrial Consumption","Virginia","VA",4698 +2009-11-01,"Industrial Consumption","New Hampshire","NH",364 +2009-11-01,"Industrial Consumption","Kentucky","KY",7911 +2009-11-01,"Industrial Consumption","District of Columbia","DC",0 +2009-11-01,"Industrial Consumption","North Dakota","ND",1859 +2009-11-01,"Industrial Consumption","South Dakota","SD",3397 +2009-11-01,"Industrial Consumption","Ohio","OH",20633 +2009-11-01,"Industrial Consumption","Oregon","OR",4922 +2009-11-01,"Industrial Consumption","New York","NY",5838 +2009-11-01,"Industrial Consumption","California","CA",57854 +2009-11-01,"Industrial Consumption","New Jersey","NJ",4102 +2009-11-01,"Industrial Consumption","Indiana","IN",21535 +2009-11-01,"Industrial Consumption","Hawaii","HI",28 +2009-11-01,"Industrial Consumption","New Mexico","NM",1488 +2009-11-01,"Industrial Consumption","Wyoming","WY",3513 +2009-11-01,"Industrial Consumption","Michigan","MI",11765 +2009-11-01,"Industrial Consumption","Maryland","MD",2356 +2009-11-01,"Industrial Consumption","Louisiana","LA",68604 +2009-11-01,"Industrial Consumption","Colorado","CO",9086 +2009-11-01,"Industrial Consumption","U.S.","U.S.",532696 +2009-11-01,"Industrial Consumption","Alabama","AL",11282 +2009-11-01,"Industrial Consumption","Connecticut","CT",2025 +2009-11-01,"Industrial Consumption","Delaware","DE",1729 +2009-11-01,"Industrial Consumption","Rhode Island","RI",635 +2009-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",103532 +2009-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",51782 +2009-11-01,"Residential Consumption","Texas","TX",13137 +2009-11-01,"Residential Consumption","Connecticut","CT",3187 +2009-11-01,"Residential Consumption","Tennessee","TN",4862 +2009-11-01,"Residential Consumption","Michigan","MI",25405 +2009-11-01,"Residential Consumption","Minnesota","MN",10590 +2009-11-01,"Residential Consumption","Maine","ME",100 +2009-11-01,"Residential Consumption","Massachusetts","MA",10592 +2009-11-01,"Residential Consumption","Idaho","ID",3214 +2009-11-01,"Residential Consumption","Colorado","CO",14873 +2009-11-01,"Residential Consumption","Oklahoma","OK",3924 +2009-11-01,"Residential Consumption","Wyoming","WY",1235 +2009-11-01,"Residential Consumption","North Carolina","NC",6420 +2009-11-01,"Residential Consumption","Mississippi","MS",1687 +2009-11-01,"Residential Consumption","Iowa","IA",5200 +2009-11-01,"Residential Consumption","Vermont","VT",243 +2009-11-01,"Residential Consumption","Utah","UT",4803 +2009-11-01,"Residential Consumption","Georgia","GA",10781 +2009-11-01,"Residential Consumption","District of Columbia","DC",1211 +2009-11-01,"Residential Consumption","Indiana","IN",11566 +2009-11-01,"Residential Consumption","U.S.","U.S.",376488 +2009-11-01,"Residential Consumption","Illinois","IL",31518 +2009-11-01,"Residential Consumption","Rhode Island","RI",1114 +2009-11-01,"Residential Consumption","Oregon","OR",4086 +2009-11-01,"Residential Consumption","Hawaii","HI",37 +2009-11-01,"Residential Consumption","Florida","FL",953 +2009-11-01,"Residential Consumption","Montana","MT",2057 +2009-11-01,"Residential Consumption","Washington","WA",7793 +2009-11-01,"Residential Consumption","West Virginia","WV",2128 +2009-11-01,"Residential Consumption","Ohio","OH",23169 +2009-11-01,"Residential Consumption","Nebraska","NE",2809 +2009-11-01,"Residential Consumption","Maryland","MD",7215 +2009-11-01,"Residential Consumption","North Dakota","ND",991 +2009-11-01,"Residential Consumption","New Hampshire","NH",555 +2009-11-01,"Residential Consumption","Delaware","DE",702 +2009-11-01,"Residential Consumption","Arizona","AZ",2487 +2009-11-01,"Residential Consumption","South Carolina","SC",2457 +2009-11-01,"Residential Consumption","Virginia","VA",7184 +2009-11-01,"Residential Consumption","South Dakota","SD",1098 +2009-11-01,"Residential Consumption","Nevada","NV",2898 +2009-11-01,"Residential Consumption","Kansas","KS",5265 +2009-11-01,"Residential Consumption","Alabama","AL",2438 +2009-11-01,"Residential Consumption","New Mexico","NM",2614 +2009-11-01,"Residential Consumption","Wisconsin","WI",10593 +2009-11-01,"Residential Consumption","Arkansas","AR",2091 +2009-11-01,"Residential Consumption","Kentucky","KY",4320 +2009-11-01,"Residential Consumption","Missouri","MO",7247 +2009-11-01,"Residential Consumption","New York","NY",30620 +2009-11-01,"Residential Consumption","Louisiana","LA",2666 +2009-11-01,"Residential Consumption","Pennsylvania","PA",16955 +2009-11-01,"Residential Consumption","New Jersey","NJ",17955 +2009-11-01,"Residential Consumption","California","CA",37012 +2009-11-01,"Residential Consumption","Alaska","AK",2428 +2009-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2241 +2009-12-01,"Commercial Consumption","North Carolina","NC",8161 +2009-12-01,"Commercial Consumption","Minnesota","MN",14589 +2009-12-01,"Commercial Consumption","Oklahoma","OK",4654 +2009-12-01,"Commercial Consumption","Massachusetts","MA",9458 +2009-12-01,"Commercial Consumption","Kansas","KS",5020 +2009-12-01,"Commercial Consumption","Florida","FL",4821 +2009-12-01,"Commercial Consumption","Alaska","AK",2206 +2009-12-01,"Commercial Consumption","Connecticut","CT",5133 +2009-12-01,"Commercial Consumption","Alabama","AL",2955 +2009-12-01,"Commercial Consumption","Mississippi","MS",2613 +2009-12-01,"Commercial Consumption","Louisiana","LA",2717 +2009-12-01,"Commercial Consumption","Pennsylvania","PA",20556 +2009-12-01,"Commercial Consumption","New Hampshire","NH",1485 +2009-12-01,"Commercial Consumption","Hawaii","HI",154 +2009-12-01,"Commercial Consumption","Arizona","AZ",3879 +2009-12-01,"Commercial Consumption","Nevada","NV",3679 +2009-12-01,"Commercial Consumption","North Dakota","ND",1816 +2009-12-01,"Commercial Consumption","Utah","UT",5306 +2009-12-01,"Commercial Consumption","Maine","ME",721 +2009-12-01,"Commercial Consumption","U.S.","U.S.",428665 +2009-12-01,"Commercial Consumption","Ohio","OH",24309 +2009-12-01,"Commercial Consumption","Tennessee","TN",7202 +2009-12-01,"Commercial Consumption","West Virginia","WV",3034 +2009-12-01,"Commercial Consumption","Washington","WA",7596 +2009-12-01,"Commercial Consumption","South Carolina","SC",2909 +2009-12-01,"Commercial Consumption","Oregon","OR",4211 +2009-12-01,"Commercial Consumption","Kentucky","KY",5512 +2009-12-01,"Commercial Consumption","Vermont","VT",259 +2009-12-01,"Commercial Consumption","Rhode Island","RI",1026 +2009-12-01,"Commercial Consumption","Idaho","ID",2836 +2009-12-01,"Commercial Consumption","Delaware","DE",1670 +2009-12-01,"Commercial Consumption","Indiana","IN",13409 +2009-12-01,"Commercial Consumption","Wyoming","WY",1434 +2009-12-01,"Commercial Consumption","Missouri","MO",8405 +2009-12-01,"Commercial Consumption","Montana","MT",3866 +2009-12-01,"Commercial Consumption","New York","NY",33188 +2009-12-01,"Commercial Consumption","Nebraska","NE",3932 +2009-12-01,"Commercial Consumption","Colorado","CO",11519 +2009-12-01,"Commercial Consumption","New Mexico","NM",3211 +2009-12-01,"Commercial Consumption","South Dakota","SD",2037 +2009-12-01,"Commercial Consumption","New Jersey","NJ",23283 +2009-12-01,"Commercial Consumption","Maryland","MD",9373 +2009-12-01,"Commercial Consumption","Georgia","GA",9023 +2009-12-01,"Commercial Consumption","Illinois","IL",33705 +2009-12-01,"Commercial Consumption","Michigan","MI",21913 +2009-12-01,"Commercial Consumption","Virginia","VA",10202 +2009-12-01,"Commercial Consumption","Wisconsin","WI",14189 +2009-12-01,"Commercial Consumption","Texas","TX",22752 +2009-12-01,"Commercial Consumption","Iowa","IA",9148 +2009-12-01,"Commercial Consumption","California","CA",26680 +2009-12-01,"Commercial Consumption","Arkansas","AR",4267 +2009-12-01,"Commercial Consumption","District of Columbia","DC",2642 +2009-12-01,"Delivered to Consumers","Alaska","AK",9537 +2009-12-01,"Delivered to Consumers","Tennessee","TN",26950 +2009-12-01,"Delivered to Consumers","Massachusetts","MA",47079 +2009-12-01,"Delivered to Consumers","Colorado","CO",62055 +2009-12-01,"Delivered to Consumers","New Mexico","NM",15758 +2009-12-01,"Delivered to Consumers","West Virginia","WV",9867 +2009-12-01,"Delivered to Consumers","Maryland","MD",27643 +2009-12-01,"Delivered to Consumers","Connecticut","CT",19513 +2009-12-01,"Delivered to Consumers","Oregon","OR",25789 +2009-12-01,"Delivered to Consumers","North Dakota","ND",5699 +2009-12-01,"Delivered to Consumers","Utah","UT",23360 +2009-12-01,"Delivered to Consumers","Kentucky","KY",26099 +2009-12-01,"Delivered to Consumers","Wisconsin","WI",53223 +2009-12-01,"Delivered to Consumers","Delaware","DE",6151 +2009-12-01,"Delivered to Consumers","South Dakota","SD",8039 +2009-12-01,"Delivered to Consumers","Oklahoma","OK",53351 +2009-12-01,"Delivered to Consumers","Michigan","MI",86964 +2009-12-01,"Delivered to Consumers","Iowa","IA",37038 +2009-12-01,"Delivered to Consumers","Arkansas","AR",20650 +2009-12-01,"Delivered to Consumers","Virginia","VA",38154 +2009-12-01,"Delivered to Consumers","District of Columbia","DC",5212 +2009-12-01,"Delivered to Consumers","U.S.","U.S.",2310875 +2009-12-01,"Delivered to Consumers","Illinois","IL",121766 +2009-12-01,"Delivered to Consumers","New York","NY",126202 +2009-12-01,"Delivered to Consumers","Pennsylvania","PA",84252 +2009-12-01,"Delivered to Consumers","North Carolina","NC",32818 +2009-12-01,"Delivered to Consumers","Texas","TX",271224 +2009-12-01,"Delivered to Consumers","South Carolina","SC",18195 +2009-12-01,"Delivered to Consumers","Nevada","NV",25993 +2009-12-01,"Delivered to Consumers","New Jersey","NJ",79348 +2009-12-01,"Delivered to Consumers","Louisiana","LA",97831 +2009-12-01,"Delivered to Consumers","Arizona","AZ",26424 +2009-12-01,"Delivered to Consumers","New Hampshire","NH",7902 +2009-12-01,"Delivered to Consumers","Wyoming","WY",6986 +2009-12-01,"Delivered to Consumers","Vermont","VT",922 +2009-12-01,"Delivered to Consumers","Kansas","KS",29181 +2009-12-01,"Delivered to Consumers","Ohio","OH",98205 +2009-12-01,"Delivered to Consumers","Alabama","AL",37811 +2009-12-01,"Delivered to Consumers","Mississippi","MS",32325 +2009-12-01,"Delivered to Consumers","Missouri","MO",33979 +2009-12-01,"Delivered to Consumers","Georgia","GA",54673 +2009-12-01,"Delivered to Consumers","Washington","WA",36670 +2009-12-01,"Delivered to Consumers","Minnesota","MN",52481 +2009-12-01,"Delivered to Consumers","Florida","FL",72233 +2009-12-01,"Delivered to Consumers","Hawaii","HI",227 +2009-12-01,"Delivered to Consumers","Idaho","ID",11742 +2009-12-01,"Delivered to Consumers","Nebraska","NE",17472 +2009-12-01,"Delivered to Consumers","Indiana","IN",67604 +2009-12-01,"Delivered to Consumers","Rhode Island","RI",8908 +2009-12-01,"Delivered to Consumers","Montana","MT",9646 +2009-12-01,"Delivered to Consumers","California","CA",230133 +2009-12-01,"Delivered to Consumers","Maine","ME",7276 +2009-12-01,"Electric Power Consumption","Louisiana","LA",15630 +2009-12-01,"Electric Power Consumption","Texas","TX",101793 +2009-12-01,"Electric Power Consumption","Rhode Island","RI",5260 +2009-12-01,"Electric Power Consumption","Alabama","AL",16619 +2009-12-01,"Electric Power Consumption","Washington","WA",9528 +2009-12-01,"Electric Power Consumption","New Jersey","NJ",12682 +2009-12-01,"Electric Power Consumption","Massachusetts","MA",13288 +2009-12-01,"Electric Power Consumption","Pennsylvania","PA",12643 +2009-12-01,"Electric Power Consumption","Vermont","VT",4 +2009-12-01,"Electric Power Consumption","North Carolina","NC",2133 +2009-12-01,"Electric Power Consumption","Kentucky","KY",974 +2009-12-01,"Electric Power Consumption","Hawaii","HI",NA +2009-12-01,"Electric Power Consumption","Montana","MT",55 +2009-12-01,"Electric Power Consumption","Maryland","MD",1090 +2009-12-01,"Electric Power Consumption","Indiana","IN",3163 +2009-12-01,"Electric Power Consumption","Arizona","AZ",15039 +2009-12-01,"Electric Power Consumption","Illinois","IL",929 +2009-12-01,"Electric Power Consumption","Kansas","KS",2066 +2009-12-01,"Electric Power Consumption","West Virginia","WV",86 +2009-12-01,"Electric Power Consumption","Tennessee","TN",490 +2009-12-01,"Electric Power Consumption","Georgia","GA",9960 +2009-12-01,"Electric Power Consumption","Utah","UT",5254 +2009-12-01,"Electric Power Consumption","South Dakota","SD",17 +2009-12-01,"Electric Power Consumption","Florida","FL",59522 +2009-12-01,"Electric Power Consumption","Idaho","ID",1689 +2009-12-01,"Electric Power Consumption","South Carolina","SC",3704 +2009-12-01,"Electric Power Consumption","New York","NY",27415 +2009-12-01,"Electric Power Consumption","Oklahoma","OK",22670 +2009-12-01,"Electric Power Consumption","Oregon","OR",9503 +2009-12-01,"Electric Power Consumption","Minnesota","MN",2714 +2009-12-01,"Electric Power Consumption","Michigan","MI",5197 +2009-12-01,"Electric Power Consumption","Nevada","NV",14702 +2009-12-01,"Electric Power Consumption","Iowa","IA",728 +2009-12-01,"Electric Power Consumption","Wisconsin","WI",3722 +2009-12-01,"Electric Power Consumption","U.S.","U.S.",519846 +2009-12-01,"Electric Power Consumption","Nebraska","NE",410 +2009-12-01,"Electric Power Consumption","Missouri","MO",2211 +2009-12-01,"Electric Power Consumption","Ohio","OH",1052 +2009-12-01,"Electric Power Consumption","Delaware","DE",1212 +2009-12-01,"Electric Power Consumption","Alaska","AK",4022 +2009-12-01,"Electric Power Consumption","New Mexico","NM",5566 +2009-12-01,"Electric Power Consumption","Wyoming","WY",107 +2009-12-01,"Electric Power Consumption","Maine","ME",3697 +2009-12-01,"Electric Power Consumption","New Hampshire","NH",4895 +2009-12-01,"Electric Power Consumption","North Dakota","ND",0 +2009-12-01,"Electric Power Consumption","Connecticut","CT",6272 +2009-12-01,"Electric Power Consumption","Virginia","VA",6868 +2009-12-01,"Electric Power Consumption","Colorado","CO",11488 +2009-12-01,"Electric Power Consumption","Arkansas","AR",3889 +2009-12-01,"Electric Power Consumption","Mississippi","MS",15282 +2009-12-01,"Electric Power Consumption","California","CA",72606 +2009-12-01,"Industrial Consumption","Oklahoma","OK",16351 +2009-12-01,"Industrial Consumption","Arizona","AZ",1957 +2009-12-01,"Industrial Consumption","Nevada","NV",1127 +2009-12-01,"Industrial Consumption","West Virginia","WV",2305 +2009-12-01,"Industrial Consumption","Minnesota","MN",13542 +2009-12-01,"Industrial Consumption","Idaho","ID",2320 +2009-12-01,"Industrial Consumption","Iowa","IA",15969 +2009-12-01,"Industrial Consumption","Montana","MT",2147 +2009-12-01,"Industrial Consumption","Kansas","KS",10631 +2009-12-01,"Industrial Consumption","Utah","UT",2637 +2009-12-01,"Industrial Consumption","California","CA",58272 +2009-12-01,"Industrial Consumption","South Carolina","SC",6017 +2009-12-01,"Industrial Consumption","Nebraska","NE",7826 +2009-12-01,"Industrial Consumption","Connecticut","CT",2488 +2009-12-01,"Industrial Consumption","Georgia","GA",13134 +2009-12-01,"Industrial Consumption","Massachusetts","MA",4466 +2009-12-01,"Industrial Consumption","Colorado","CO",13803 +2009-12-01,"Industrial Consumption","Maryland","MD",2283 +2009-12-01,"Industrial Consumption","Ohio","OH",25152 +2009-12-01,"Industrial Consumption","Wyoming","WY",3631 +2009-12-01,"Industrial Consumption","Wisconsin","WI",13463 +2009-12-01,"Industrial Consumption","Tennessee","TN",8239 +2009-12-01,"Industrial Consumption","New Jersey","NJ",5330 +2009-12-01,"Industrial Consumption","Florida","FL",6472 +2009-12-01,"Industrial Consumption","Louisiana","LA",73250 +2009-12-01,"Industrial Consumption","South Dakota","SD",3764 +2009-12-01,"Industrial Consumption","Pennsylvania","PA",17292 +2009-12-01,"Industrial Consumption","Maine","ME",2716 +2009-12-01,"Industrial Consumption","Vermont","VT",326 +2009-12-01,"Industrial Consumption","Alaska","AK",585 +2009-12-01,"Industrial Consumption","Missouri","MO",7080 +2009-12-01,"Industrial Consumption","Oregon","OR",5072 +2009-12-01,"Industrial Consumption","New York","NY",8031 +2009-12-01,"Industrial Consumption","New Hampshire","NH",509 +2009-12-01,"Industrial Consumption","Kentucky","KY",9624 +2009-12-01,"Industrial Consumption","Illinois","IL",23621 +2009-12-01,"Industrial Consumption","Delaware","DE",1756 +2009-12-01,"Industrial Consumption","North Dakota","ND",1881 +2009-12-01,"Industrial Consumption","Hawaii","HI",28 +2009-12-01,"Industrial Consumption","Washington","WA",6649 +2009-12-01,"Industrial Consumption","U.S.","U.S.",595763 +2009-12-01,"Industrial Consumption","Alabama","AL",12824 +2009-12-01,"Industrial Consumption","Texas","TX",106998 +2009-12-01,"Industrial Consumption","New Mexico","NM",1563 +2009-12-01,"Industrial Consumption","Mississippi","MS",9913 +2009-12-01,"Industrial Consumption","Arkansas","AR",7594 +2009-12-01,"Industrial Consumption","Virginia","VA",5381 +2009-12-01,"Industrial Consumption","Michigan","MI",14132 +2009-12-01,"Industrial Consumption","Indiana","IN",26666 +2009-12-01,"Industrial Consumption","Rhode Island","RI",778 +2009-12-01,"Industrial Consumption","North Carolina","NC",8166 +2009-12-01,"Industrial Consumption","District of Columbia","DC",0 +2009-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",106179 +2009-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",73871 +2009-12-01,"Residential Consumption","South Carolina","SC",5565 +2009-12-01,"Residential Consumption","Mississippi","MS",4517 +2009-12-01,"Residential Consumption","Nevada","NV",6484 +2009-12-01,"Residential Consumption","Indiana","IN",24366 +2009-12-01,"Residential Consumption","Arkansas","AR",4901 +2009-12-01,"Residential Consumption","Oklahoma","OK",9675 +2009-12-01,"Residential Consumption","Delaware","DE",1513 +2009-12-01,"Residential Consumption","Vermont","VT",333 +2009-12-01,"Residential Consumption","Maryland","MD",14896 +2009-12-01,"Residential Consumption","Minnesota","MN",21636 +2009-12-01,"Residential Consumption","Idaho","ID",4897 +2009-12-01,"Residential Consumption","Montana","MT",3578 +2009-12-01,"Residential Consumption","U.S.","U.S.",764286 +2009-12-01,"Residential Consumption","Texas","TX",39681 +2009-12-01,"Residential Consumption","Rhode Island","RI",1844 +2009-12-01,"Residential Consumption","Hawaii","HI",44 +2009-12-01,"Residential Consumption","Georgia","GA",22557 +2009-12-01,"Residential Consumption","New Jersey","NJ",38053 +2009-12-01,"Residential Consumption","New Hampshire","NH",1013 +2009-12-01,"Residential Consumption","Louisiana","LA",6234 +2009-12-01,"Residential Consumption","Tennessee","TN",11018 +2009-12-01,"Residential Consumption","Virginia","VA",15704 +2009-12-01,"Residential Consumption","District of Columbia","DC",2570 +2009-12-01,"Residential Consumption","Kansas","KS",11464 +2009-12-01,"Residential Consumption","Missouri","MO",16283 +2009-12-01,"Residential Consumption","California","CA",72575 +2009-12-01,"Residential Consumption","Wyoming","WY",1813 +2009-12-01,"Residential Consumption","Ohio","OH",47692 +2009-12-01,"Residential Consumption","Iowa","IA",11193 +2009-12-01,"Residential Consumption","Connecticut","CT",5620 +2009-12-01,"Residential Consumption","Nebraska","NE",5304 +2009-12-01,"Residential Consumption","Washington","WA",12897 +2009-12-01,"Residential Consumption","Alabama","AL",5413 +2009-12-01,"Residential Consumption","New York","NY",57567 +2009-12-01,"Residential Consumption","Illinois","IL",63511 +2009-12-01,"Residential Consumption","Oregon","OR",7002 +2009-12-01,"Residential Consumption","Michigan","MI",45722 +2009-12-01,"Residential Consumption","South Dakota","SD",2221 +2009-12-01,"Residential Consumption","New Mexico","NM",5418 +2009-12-01,"Residential Consumption","North Dakota","ND",2002 +2009-12-01,"Residential Consumption","Florida","FL",1417 +2009-12-01,"Residential Consumption","Massachusetts","MA",19866 +2009-12-01,"Residential Consumption","Alaska","AK",2725 +2009-12-01,"Residential Consumption","West Virginia","WV",4442 +2009-12-01,"Residential Consumption","North Carolina","NC",14358 +2009-12-01,"Residential Consumption","Wisconsin","WI",21850 +2009-12-01,"Residential Consumption","Utah","UT",10163 +2009-12-01,"Residential Consumption","Pennsylvania","PA",33761 +2009-12-01,"Residential Consumption","Maine","ME",142 +2009-12-01,"Residential Consumption","Kentucky","KY",9989 +2009-12-01,"Residential Consumption","Colorado","CO",25244 +2009-12-01,"Residential Consumption","Arizona","AZ",5549 +2009-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2315 +2010-01-01,"Commercial Consumption","North Carolina","NC",9701 +2010-01-01,"Commercial Consumption","Pennsylvania","PA",23831 +2010-01-01,"Commercial Consumption","Massachusetts","MA",12429 +2010-01-01,"Commercial Consumption","Hawaii","HI",164 +2010-01-01,"Commercial Consumption","Arkansas","AR",6374 +2010-01-01,"Commercial Consumption","Colorado","CO",9656 +2010-01-01,"Commercial Consumption","Wisconsin","WI",15287 +2010-01-01,"Commercial Consumption","South Dakota","SD",2062 +2010-01-01,"Commercial Consumption","New Hampshire","NH",1492 +2010-01-01,"Commercial Consumption","Maryland","MD",11003 +2010-01-01,"Commercial Consumption","Kansas","KS",6723 +2010-01-01,"Commercial Consumption","New Mexico","NM",4287 +2010-01-01,"Commercial Consumption","Oklahoma","OK",8353 +2010-01-01,"Commercial Consumption","New Jersey","NJ",28643 +2010-01-01,"Commercial Consumption","New York","NY",41229 +2010-01-01,"Commercial Consumption","Nebraska","NE",5617 +2010-01-01,"Commercial Consumption","Michigan","MI",26263 +2010-01-01,"Commercial Consumption","Kentucky","KY",7158 +2010-01-01,"Commercial Consumption","Texas","TX",27237 +2010-01-01,"Commercial Consumption","Washington","WA",6721 +2010-01-01,"Commercial Consumption","North Dakota","ND",1812 +2010-01-01,"Commercial Consumption","Missouri","MO",11740 +2010-01-01,"Commercial Consumption","Montana","MT",3182 +2010-01-01,"Commercial Consumption","Maine","ME",878 +2010-01-01,"Commercial Consumption","Rhode Island","RI",1900 +2010-01-01,"Commercial Consumption","Alabama","AL",4277 +2010-01-01,"Commercial Consumption","Arizona","AZ",4083 +2010-01-01,"Commercial Consumption","Ohio","OH",27713 +2010-01-01,"Commercial Consumption","Mississippi","MS",3394 +2010-01-01,"Commercial Consumption","West Virginia","WV",3736 +2010-01-01,"Commercial Consumption","Oregon","OR",4014 +2010-01-01,"Commercial Consumption","Virginia","VA",11338 +2010-01-01,"Commercial Consumption","U.S.","U.S.",499107 +2010-01-01,"Commercial Consumption","Florida","FL",5527 +2010-01-01,"Commercial Consumption","Idaho","ID",2291 +2010-01-01,"Commercial Consumption","Iowa","IA",9873 +2010-01-01,"Commercial Consumption","Connecticut","CT",6746 +2010-01-01,"Commercial Consumption","California","CA",27422 +2010-01-01,"Commercial Consumption","Delaware","DE",1731 +2010-01-01,"Commercial Consumption","Tennessee","TN",9815 +2010-01-01,"Commercial Consumption","Nevada","NV",4002 +2010-01-01,"Commercial Consumption","Louisiana","LA",3598 +2010-01-01,"Commercial Consumption","Illinois","IL",35072 +2010-01-01,"Commercial Consumption","District of Columbia","DC",2810 +2010-01-01,"Commercial Consumption","Wyoming","WY",1791 +2010-01-01,"Commercial Consumption","South Carolina","SC",3527 +2010-01-01,"Commercial Consumption","Minnesota","MN",17216 +2010-01-01,"Commercial Consumption","Utah","UT",6629 +2010-01-01,"Commercial Consumption","Georgia","GA",11163 +2010-01-01,"Commercial Consumption","Vermont","VT",389 +2010-01-01,"Commercial Consumption","Alaska","AK",2197 +2010-01-01,"Commercial Consumption","Indiana","IN",15009 +2010-01-01,"Delivered to Consumers","Utah","UT",26221 +2010-01-01,"Delivered to Consumers","U.S.","U.S.",2624217 +2010-01-01,"Delivered to Consumers","Illinois","IL",152282 +2010-01-01,"Delivered to Consumers","Idaho","ID",9471 +2010-01-01,"Delivered to Consumers","Nebraska","NE",21446 +2010-01-01,"Delivered to Consumers","New Hampshire","NH",6463 +2010-01-01,"Delivered to Consumers","Florida","FL",84227 +2010-01-01,"Delivered to Consumers","Wyoming","WY",8249 +2010-01-01,"Delivered to Consumers","Ohio","OH",115235 +2010-01-01,"Delivered to Consumers","Alabama","AL",48131 +2010-01-01,"Delivered to Consumers","District of Columbia","DC",5705 +2010-01-01,"Delivered to Consumers","Montana","MT",8488 +2010-01-01,"Delivered to Consumers","Virginia","VA",44329 +2010-01-01,"Delivered to Consumers","North Carolina","NC",39947 +2010-01-01,"Delivered to Consumers","North Dakota","ND",5366 +2010-01-01,"Delivered to Consumers","Rhode Island","RI",10715 +2010-01-01,"Delivered to Consumers","Michigan","MI",108463 +2010-01-01,"Delivered to Consumers","Kentucky","KY",31801 +2010-01-01,"Delivered to Consumers","Wisconsin","WI",60332 +2010-01-01,"Delivered to Consumers","Mississippi","MS",39092 +2010-01-01,"Delivered to Consumers","South Carolina","SC",21530 +2010-01-01,"Delivered to Consumers","Nevada","NV",26743 +2010-01-01,"Delivered to Consumers","New Jersey","NJ",91877 +2010-01-01,"Delivered to Consumers","Georgia","GA",65896 +2010-01-01,"Delivered to Consumers","Minnesota","MN",61567 +2010-01-01,"Delivered to Consumers","Delaware","DE",6138 +2010-01-01,"Delivered to Consumers","West Virginia","WV",11802 +2010-01-01,"Delivered to Consumers","Maryland","MD",31913 +2010-01-01,"Delivered to Consumers","Washington","WA",27562 +2010-01-01,"Delivered to Consumers","Vermont","VT",1270 +2010-01-01,"Delivered to Consumers","Hawaii","HI",242 +2010-01-01,"Delivered to Consumers","Alaska","AK",9261 +2010-01-01,"Delivered to Consumers","Arkansas","AR",30503 +2010-01-01,"Delivered to Consumers","Missouri","MO",46678 +2010-01-01,"Delivered to Consumers","California","CA",224248 +2010-01-01,"Delivered to Consumers","Texas","TX",309100 +2010-01-01,"Delivered to Consumers","Louisiana","LA",106740 +2010-01-01,"Delivered to Consumers","South Dakota","SD",8277 +2010-01-01,"Delivered to Consumers","Oklahoma","OK",65798 +2010-01-01,"Delivered to Consumers","Tennessee","TN",36615 +2010-01-01,"Delivered to Consumers","Connecticut","CT",25104 +2010-01-01,"Delivered to Consumers","Colorado","CO",54904 +2010-01-01,"Delivered to Consumers","New Mexico","NM",18499 +2010-01-01,"Delivered to Consumers","Indiana","IN",78386 +2010-01-01,"Delivered to Consumers","New York","NY",148693 +2010-01-01,"Delivered to Consumers","Kansas","KS",35696 +2010-01-01,"Delivered to Consumers","Iowa","IA",42120 +2010-01-01,"Delivered to Consumers","Pennsylvania","PA",100503 +2010-01-01,"Delivered to Consumers","Massachusetts","MA",53898 +2010-01-01,"Delivered to Consumers","Oregon","OR",26794 +2010-01-01,"Delivered to Consumers","Maine","ME",7131 +2010-01-01,"Delivered to Consumers","Arizona","AZ",22766 +2010-01-01,"Electric Power Consumption","Washington","WA",3529 +2010-01-01,"Electric Power Consumption","New Jersey","NJ",14530 +2010-01-01,"Electric Power Consumption","Colorado","CO",8678 +2010-01-01,"Electric Power Consumption","Texas","TX",108561 +2010-01-01,"Electric Power Consumption","Oregon","OR",11061 +2010-01-01,"Electric Power Consumption","Massachusetts","MA",12740 +2010-01-01,"Electric Power Consumption","Wyoming","WY",92 +2010-01-01,"Electric Power Consumption","Tennessee","TN",1385 +2010-01-01,"Electric Power Consumption","Nebraska","NE",163 +2010-01-01,"Electric Power Consumption","Kentucky","KY",2109 +2010-01-01,"Electric Power Consumption","New Hampshire","NH",3020 +2010-01-01,"Electric Power Consumption","Mississippi","MS",18894 +2010-01-01,"Electric Power Consumption","Arizona","AZ",9053 +2010-01-01,"Electric Power Consumption","Idaho","ID",976 +2010-01-01,"Electric Power Consumption","Rhode Island","RI",4706 +2010-01-01,"Electric Power Consumption","Minnesota","MN",2785 +2010-01-01,"Electric Power Consumption","Vermont","VT",4 +2010-01-01,"Electric Power Consumption","Missouri","MO",3709 +2010-01-01,"Electric Power Consumption","Ohio","OH",2020 +2010-01-01,"Electric Power Consumption","North Dakota","ND",0 +2010-01-01,"Electric Power Consumption","Delaware","DE",921 +2010-01-01,"Electric Power Consumption","Utah","UT",4655 +2010-01-01,"Electric Power Consumption","Maryland","MD",775 +2010-01-01,"Electric Power Consumption","Alaska","AK",3774 +2010-01-01,"Electric Power Consumption","South Dakota","SD",1 +2010-01-01,"Electric Power Consumption","Connecticut","CT",6840 +2010-01-01,"Electric Power Consumption","California","CA",66583 +2010-01-01,"Electric Power Consumption","New Mexico","NM",6028 +2010-01-01,"Electric Power Consumption","Louisiana","LA",19144 +2010-01-01,"Electric Power Consumption","New York","NY",27311 +2010-01-01,"Electric Power Consumption","Illinois","IL",2363 +2010-01-01,"Electric Power Consumption","West Virginia","WV",83 +2010-01-01,"Electric Power Consumption","Wisconsin","WI",5112 +2010-01-01,"Electric Power Consumption","Maine","ME",3244 +2010-01-01,"Electric Power Consumption","Indiana","IN",4068 +2010-01-01,"Electric Power Consumption","Arkansas","AR",7438 +2010-01-01,"Electric Power Consumption","South Carolina","SC",4465 +2010-01-01,"Electric Power Consumption","Oklahoma","OK",24193 +2010-01-01,"Electric Power Consumption","Kansas","KS",2351 +2010-01-01,"Electric Power Consumption","Pennsylvania","PA",11208 +2010-01-01,"Electric Power Consumption","Nevada","NV",14216 +2010-01-01,"Electric Power Consumption","North Carolina","NC",4595 +2010-01-01,"Electric Power Consumption","Hawaii","HI",NA +2010-01-01,"Electric Power Consumption","Montana","MT",1 +2010-01-01,"Electric Power Consumption","Georgia","GA",12077 +2010-01-01,"Electric Power Consumption","Florida","FL",68150 +2010-01-01,"Electric Power Consumption","Alabama","AL",20779 +2010-01-01,"Electric Power Consumption","Virginia","VA",8462 +2010-01-01,"Electric Power Consumption","Michigan","MI",8086 +2010-01-01,"Electric Power Consumption","Iowa","IA",873 +2010-01-01,"Electric Power Consumption","U.S.","U.S.",545811 +2010-01-01,"Industrial Consumption","Colorado","CO",13828 +2010-01-01,"Industrial Consumption","California","CA",58425 +2010-01-01,"Industrial Consumption","West Virginia","WV",2434 +2010-01-01,"Industrial Consumption","New Hampshire","NH",643 +2010-01-01,"Industrial Consumption","Florida","FL",7428 +2010-01-01,"Industrial Consumption","Alaska","AK",559 +2010-01-01,"Industrial Consumption","Massachusetts","MA",5526 +2010-01-01,"Industrial Consumption","Washington","WA",6257 +2010-01-01,"Industrial Consumption","Pennsylvania","PA",21745 +2010-01-01,"Industrial Consumption","Nebraska","NE",7791 +2010-01-01,"Industrial Consumption","Idaho","ID",2409 +2010-01-01,"Industrial Consumption","Illinois","IL",31740 +2010-01-01,"Industrial Consumption","New York","NY",8617 +2010-01-01,"Industrial Consumption","Alabama","AL",13864 +2010-01-01,"Industrial Consumption","Texas","TX",123242 +2010-01-01,"Industrial Consumption","Wyoming","WY",4025 +2010-01-01,"Industrial Consumption","Wisconsin","WI",14420 +2010-01-01,"Industrial Consumption","Tennessee","TN",8718 +2010-01-01,"Industrial Consumption","Iowa","IA",16085 +2010-01-01,"Industrial Consumption","Arizona","AZ",2015 +2010-01-01,"Industrial Consumption","U.S.","U.S.",644259 +2010-01-01,"Industrial Consumption","Mississippi","MS",10821 +2010-01-01,"Industrial Consumption","Arkansas","AR",8417 +2010-01-01,"Industrial Consumption","Virginia","VA",5586 +2010-01-01,"Industrial Consumption","Connecticut","CT",2810 +2010-01-01,"Industrial Consumption","Michigan","MI",16295 +2010-01-01,"Industrial Consumption","Kentucky","KY",10616 +2010-01-01,"Industrial Consumption","North Dakota","ND",1526 +2010-01-01,"Industrial Consumption","Utah","UT",2985 +2010-01-01,"Industrial Consumption","Oregon","OR",5050 +2010-01-01,"Industrial Consumption","Vermont","VT",338 +2010-01-01,"Industrial Consumption","New Jersey","NJ",5155 +2010-01-01,"Industrial Consumption","Indiana","IN",28429 +2010-01-01,"Industrial Consumption","Missouri","MO",7123 +2010-01-01,"Industrial Consumption","New Mexico","NM",1458 +2010-01-01,"Industrial Consumption","Nevada","NV",982 +2010-01-01,"Industrial Consumption","Delaware","DE",1289 +2010-01-01,"Industrial Consumption","Rhode Island","RI",964 +2010-01-01,"Industrial Consumption","Georgia","GA",13043 +2010-01-01,"Industrial Consumption","District of Columbia","DC",0 +2010-01-01,"Industrial Consumption","Montana","MT",1796 +2010-01-01,"Industrial Consumption","Maryland","MD",2742 +2010-01-01,"Industrial Consumption","Hawaii","HI",26 +2010-01-01,"Industrial Consumption","Oklahoma","OK",16998 +2010-01-01,"Industrial Consumption","Louisiana","LA",74369 +2010-01-01,"Industrial Consumption","South Dakota","SD",3602 +2010-01-01,"Industrial Consumption","Maine","ME",2790 +2010-01-01,"Industrial Consumption","South Carolina","SC",6010 +2010-01-01,"Industrial Consumption","North Carolina","NC",8409 +2010-01-01,"Industrial Consumption","Ohio","OH",28220 +2010-01-01,"Industrial Consumption","Kansas","KS",10895 +2010-01-01,"Industrial Consumption","Minnesota","MN",15745 +2010-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",105622 +2010-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",79950 +2010-01-01,"Residential Consumption","Louisiana","LA",9629 +2010-01-01,"Residential Consumption","Wisconsin","WI",25508 +2010-01-01,"Residential Consumption","Michigan","MI",57797 +2010-01-01,"Residential Consumption","Maine","ME",219 +2010-01-01,"Residential Consumption","Massachusetts","MA",23141 +2010-01-01,"Residential Consumption","New York","NY",71232 +2010-01-01,"Residential Consumption","South Carolina","SC",7528 +2010-01-01,"Residential Consumption","Oregon","OR",6654 +2010-01-01,"Residential Consumption","Ohio","OH",57270 +2010-01-01,"Residential Consumption","North Carolina","NC",17239 +2010-01-01,"Residential Consumption","Mississippi","MS",5983 +2010-01-01,"Residential Consumption","Hawaii","HI",52 +2010-01-01,"Residential Consumption","Virginia","VA",18930 +2010-01-01,"Residential Consumption","South Dakota","SD",2612 +2010-01-01,"Residential Consumption","Nevada","NV",7471 +2010-01-01,"Residential Consumption","District of Columbia","DC",2821 +2010-01-01,"Residential Consumption","New Mexico","NM",6702 +2010-01-01,"Residential Consumption","New Hampshire","NH",1305 +2010-01-01,"Residential Consumption","Missouri","MO",24105 +2010-01-01,"Residential Consumption","Iowa","IA",15288 +2010-01-01,"Residential Consumption","Arizona","AZ",7444 +2010-01-01,"Residential Consumption","Illinois","IL",83080 +2010-01-01,"Residential Consumption","Utah","UT",11934 +2010-01-01,"Residential Consumption","Indiana","IN",30877 +2010-01-01,"Residential Consumption","Idaho","ID",3788 +2010-01-01,"Residential Consumption","Colorado","CO",22720 +2010-01-01,"Residential Consumption","Alabama","AL",9203 +2010-01-01,"Residential Consumption","Texas","TX",49862 +2010-01-01,"Residential Consumption","Nebraska","NE",7872 +2010-01-01,"Residential Consumption","Oklahoma","OK",16232 +2010-01-01,"Residential Consumption","Delaware","DE",2197 +2010-01-01,"Residential Consumption","West Virginia","WV",5549 +2010-01-01,"Residential Consumption","U.S.","U.S.",932605 +2010-01-01,"Residential Consumption","Connecticut","CT",8705 +2010-01-01,"Residential Consumption","New Jersey","NJ",43536 +2010-01-01,"Residential Consumption","Vermont","VT",538 +2010-01-01,"Residential Consumption","Pennsylvania","PA",43694 +2010-01-01,"Residential Consumption","Arkansas","AR",8272 +2010-01-01,"Residential Consumption","Montana","MT",3510 +2010-01-01,"Residential Consumption","Kentucky","KY",11917 +2010-01-01,"Residential Consumption","Kansas","KS",15726 +2010-01-01,"Residential Consumption","California","CA",70666 +2010-01-01,"Residential Consumption","Wyoming","WY",2340 +2010-01-01,"Residential Consumption","Rhode Island","RI",3138 +2010-01-01,"Residential Consumption","Tennessee","TN",16697 +2010-01-01,"Residential Consumption","Maryland","MD",17375 +2010-01-01,"Residential Consumption","Minnesota","MN",25820 +2010-01-01,"Residential Consumption","Georgia","GA",29535 +2010-01-01,"Residential Consumption","Florida","FL",3117 +2010-01-01,"Residential Consumption","North Dakota","ND",2027 +2010-01-01,"Residential Consumption","Washington","WA",11018 +2010-01-01,"Residential Consumption","Alaska","AK",2730 +2010-01-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-01-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-01-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-01-01,"Vehicle Fuel Consumption","Washington","WA",37 +2010-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-01-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2010-01-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-01-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2010-01-01,"Vehicle Fuel Consumption","Illinois","IL",25 +2010-01-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-01-01,"Vehicle Fuel Consumption","Arizona","AZ",171 +2010-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-01-01,"Vehicle Fuel Consumption","Michigan","MI",22 +2010-01-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-01-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-01-01,"Vehicle Fuel Consumption","Nevada","NV",71 +2010-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2434 +2010-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-01-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-01-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2010-01-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2010-01-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-01-01,"Vehicle Fuel Consumption","Texas","TX",198 +2010-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",13 +2010-01-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-01-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-01-01,"Vehicle Fuel Consumption","California","CA",1153 +2010-01-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-01-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-01-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2010-01-01,"Vehicle Fuel Consumption","New York","NY",305 +2010-01-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2010-01-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-01-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-01-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-01-01,"Vehicle Fuel Consumption","Georgia","GA",78 +2010-01-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-01-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-01-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-01-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2010-01-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-02-01,"Commercial Consumption","South Carolina","SC",3359 +2010-02-01,"Commercial Consumption","Kentucky","KY",6672 +2010-02-01,"Commercial Consumption","Rhode Island","RI",1603 +2010-02-01,"Commercial Consumption","Alabama","AL",3856 +2010-02-01,"Commercial Consumption","Georgia","GA",9701 +2010-02-01,"Commercial Consumption","Ohio","OH",27819 +2010-02-01,"Commercial Consumption","Nebraska","NE",4829 +2010-02-01,"Commercial Consumption","Missouri","MO",10106 +2010-02-01,"Commercial Consumption","New Hampshire","NH",1225 +2010-02-01,"Commercial Consumption","Maine","ME",737 +2010-02-01,"Commercial Consumption","Connecticut","CT",5928 +2010-02-01,"Commercial Consumption","Pennsylvania","PA",22230 +2010-02-01,"Commercial Consumption","Montana","MT",2702 +2010-02-01,"Commercial Consumption","Texas","TX",24204 +2010-02-01,"Commercial Consumption","Florida","FL",5451 +2010-02-01,"Commercial Consumption","Vermont","VT",356 +2010-02-01,"Commercial Consumption","Idaho","ID",1728 +2010-02-01,"Commercial Consumption","Mississippi","MS",3334 +2010-02-01,"Commercial Consumption","Delaware","DE",1648 +2010-02-01,"Commercial Consumption","Tennessee","TN",9200 +2010-02-01,"Commercial Consumption","Nevada","NV",3256 +2010-02-01,"Commercial Consumption","Indiana","IN",12920 +2010-02-01,"Commercial Consumption","District of Columbia","DC",2727 +2010-02-01,"Commercial Consumption","North Carolina","NC",8911 +2010-02-01,"Commercial Consumption","Oregon","OR",2964 +2010-02-01,"Commercial Consumption","Massachusetts","MA",11571 +2010-02-01,"Commercial Consumption","California","CA",26257 +2010-02-01,"Commercial Consumption","Arkansas","AR",5905 +2010-02-01,"Commercial Consumption","Wyoming","WY",1438 +2010-02-01,"Commercial Consumption","Oklahoma","OK",7752 +2010-02-01,"Commercial Consumption","South Dakota","SD",1614 +2010-02-01,"Commercial Consumption","Kansas","KS",5394 +2010-02-01,"Commercial Consumption","New York","NY",37805 +2010-02-01,"Commercial Consumption","Washington","WA",5542 +2010-02-01,"Commercial Consumption","Colorado","CO",8736 +2010-02-01,"Commercial Consumption","Utah","UT",4852 +2010-02-01,"Commercial Consumption","New Mexico","NM",4083 +2010-02-01,"Commercial Consumption","Wisconsin","WI",11951 +2010-02-01,"Commercial Consumption","New Jersey","NJ",22732 +2010-02-01,"Commercial Consumption","Alaska","AK",1639 +2010-02-01,"Commercial Consumption","Illinois","IL",28323 +2010-02-01,"Commercial Consumption","West Virginia","WV",3531 +2010-02-01,"Commercial Consumption","North Dakota","ND",1563 +2010-02-01,"Commercial Consumption","Minnesota","MN",13730 +2010-02-01,"Commercial Consumption","Virginia","VA",10602 +2010-02-01,"Commercial Consumption","U.S.","U.S.",440859 +2010-02-01,"Commercial Consumption","Maryland","MD",9569 +2010-02-01,"Commercial Consumption","Iowa","IA",7968 +2010-02-01,"Commercial Consumption","Hawaii","HI",143 +2010-02-01,"Commercial Consumption","Arizona","AZ",3632 +2010-02-01,"Commercial Consumption","Michigan","MI",23573 +2010-02-01,"Commercial Consumption","Louisiana","LA",3495 +2010-02-01,"Delivered to Consumers","West Virginia","WV",10809 +2010-02-01,"Delivered to Consumers","Arizona","AZ",21073 +2010-02-01,"Delivered to Consumers","New Hampshire","NH",4922 +2010-02-01,"Delivered to Consumers","Minnesota","MN",50178 +2010-02-01,"Delivered to Consumers","Florida","FL",77168 +2010-02-01,"Delivered to Consumers","Montana","MT",7261 +2010-02-01,"Delivered to Consumers","Hawaii","HI",213 +2010-02-01,"Delivered to Consumers","Alaska","AK",7395 +2010-02-01,"Delivered to Consumers","Michigan","MI",93556 +2010-02-01,"Delivered to Consumers","Alabama","AL",41794 +2010-02-01,"Delivered to Consumers","Missouri","MO",40078 +2010-02-01,"Delivered to Consumers","Massachusetts","MA",46881 +2010-02-01,"Delivered to Consumers","Oregon","OR",22751 +2010-02-01,"Delivered to Consumers","New Jersey","NJ",77620 +2010-02-01,"Delivered to Consumers","Georgia","GA",58795 +2010-02-01,"Delivered to Consumers","U.S.","U.S.",2312746 +2010-02-01,"Delivered to Consumers","Indiana","IN",66864 +2010-02-01,"Delivered to Consumers","Wyoming","WY",6954 +2010-02-01,"Delivered to Consumers","Illinois","IL",126351 +2010-02-01,"Delivered to Consumers","Tennessee","TN",32912 +2010-02-01,"Delivered to Consumers","Ohio","OH",107871 +2010-02-01,"Delivered to Consumers","Mississippi","MS",35972 +2010-02-01,"Delivered to Consumers","Colorado","CO",48559 +2010-02-01,"Delivered to Consumers","Idaho","ID",8054 +2010-02-01,"Delivered to Consumers","Kentucky","KY",27772 +2010-02-01,"Delivered to Consumers","Texas","TX",284654 +2010-02-01,"Delivered to Consumers","Washington","WA",25029 +2010-02-01,"Delivered to Consumers","Utah","UT",20226 +2010-02-01,"Delivered to Consumers","Kansas","KS",28647 +2010-02-01,"Delivered to Consumers","Iowa","IA",35470 +2010-02-01,"Delivered to Consumers","Virginia","VA",41811 +2010-02-01,"Delivered to Consumers","Pennsylvania","PA",92276 +2010-02-01,"Delivered to Consumers","South Dakota","SD",7538 +2010-02-01,"Delivered to Consumers","Rhode Island","RI",8947 +2010-02-01,"Delivered to Consumers","Maryland","MD",27395 +2010-02-01,"Delivered to Consumers","Oklahoma","OK",57213 +2010-02-01,"Delivered to Consumers","Connecticut","CT",21381 +2010-02-01,"Delivered to Consumers","California","CA",201908 +2010-02-01,"Delivered to Consumers","Nevada","NV",23184 +2010-02-01,"Delivered to Consumers","District of Columbia","DC",5302 +2010-02-01,"Delivered to Consumers","New Mexico","NM",17438 +2010-02-01,"Delivered to Consumers","Delaware","DE",5312 +2010-02-01,"Delivered to Consumers","Vermont","VT",1126 +2010-02-01,"Delivered to Consumers","New York","NY",135979 +2010-02-01,"Delivered to Consumers","North Carolina","NC",35317 +2010-02-01,"Delivered to Consumers","Maine","ME",5938 +2010-02-01,"Delivered to Consumers","Louisiana","LA",91124 +2010-02-01,"Delivered to Consumers","North Dakota","ND",4909 +2010-02-01,"Delivered to Consumers","Arkansas","AR",26383 +2010-02-01,"Delivered to Consumers","Wisconsin","WI",48051 +2010-02-01,"Delivered to Consumers","Nebraska","NE",19268 +2010-02-01,"Delivered to Consumers","South Carolina","SC",19118 +2010-02-01,"Electric Power Consumption","Washington","WA",4793 +2010-02-01,"Electric Power Consumption","New Mexico","NM",5575 +2010-02-01,"Electric Power Consumption","Rhode Island","RI",3765 +2010-02-01,"Electric Power Consumption","Minnesota","MN",1984 +2010-02-01,"Electric Power Consumption","Arizona","AZ",9482 +2010-02-01,"Electric Power Consumption","Illinois","IL",1560 +2010-02-01,"Electric Power Consumption","Virginia","VA",9062 +2010-02-01,"Electric Power Consumption","West Virginia","WV",53 +2010-02-01,"Electric Power Consumption","Tennessee","TN",154 +2010-02-01,"Electric Power Consumption","Maine","ME",2511 +2010-02-01,"Electric Power Consumption","North Dakota","ND",0 +2010-02-01,"Electric Power Consumption","South Carolina","SC",3717 +2010-02-01,"Electric Power Consumption","New York","NY",25493 +2010-02-01,"Electric Power Consumption","Oklahoma","OK",19240 +2010-02-01,"Electric Power Consumption","Utah","UT",4015 +2010-02-01,"Electric Power Consumption","Michigan","MI",5005 +2010-02-01,"Electric Power Consumption","Pennsylvania","PA",10777 +2010-02-01,"Electric Power Consumption","North Carolina","NC",3096 +2010-02-01,"Electric Power Consumption","Kentucky","KY",436 +2010-02-01,"Electric Power Consumption","Montana","MT",0 +2010-02-01,"Electric Power Consumption","Delaware","DE",750 +2010-02-01,"Electric Power Consumption","Louisiana","LA",11933 +2010-02-01,"Electric Power Consumption","Colorado","CO",7819 +2010-02-01,"Electric Power Consumption","Texas","TX",99935 +2010-02-01,"Electric Power Consumption","Kansas","KS",977 +2010-02-01,"Electric Power Consumption","South Dakota","SD",1 +2010-02-01,"Electric Power Consumption","Mississippi","MS",17303 +2010-02-01,"Electric Power Consumption","Florida","FL",62631 +2010-02-01,"Electric Power Consumption","Alaska","AK",3210 +2010-02-01,"Electric Power Consumption","New Jersey","NJ",12593 +2010-02-01,"Electric Power Consumption","Oregon","OR",10336 +2010-02-01,"Electric Power Consumption","Nevada","NV",13053 +2010-02-01,"Electric Power Consumption","Nebraska","NE",104 +2010-02-01,"Electric Power Consumption","New Hampshire","NH",2091 +2010-02-01,"Electric Power Consumption","Maryland","MD",581 +2010-02-01,"Electric Power Consumption","Wisconsin","WI",4269 +2010-02-01,"Electric Power Consumption","Iowa","IA",623 +2010-02-01,"Electric Power Consumption","Vermont","VT",5 +2010-02-01,"Electric Power Consumption","U.S.","U.S.",479615 +2010-02-01,"Electric Power Consumption","Missouri","MO",2785 +2010-02-01,"Electric Power Consumption","Hawaii","HI",NA +2010-02-01,"Electric Power Consumption","Idaho","ID",1352 +2010-02-01,"Electric Power Consumption","Arkansas","AR",5152 +2010-02-01,"Electric Power Consumption","Massachusetts","MA",10732 +2010-02-01,"Electric Power Consumption","Wyoming","WY",60 +2010-02-01,"Electric Power Consumption","Ohio","OH",1234 +2010-02-01,"Electric Power Consumption","Indiana","IN",3514 +2010-02-01,"Electric Power Consumption","Connecticut","CT",5366 +2010-02-01,"Electric Power Consumption","Georgia","GA",11638 +2010-02-01,"Electric Power Consumption","California","CA",60737 +2010-02-01,"Electric Power Consumption","Alabama","AL",18112 +2010-02-01,"Industrial Consumption","Montana","MT",1575 +2010-02-01,"Industrial Consumption","U.S.","U.S.",595295 +2010-02-01,"Industrial Consumption","Maine","ME",2504 +2010-02-01,"Industrial Consumption","Alabama","AL",12056 +2010-02-01,"Industrial Consumption","Nebraska","NE",7484 +2010-02-01,"Industrial Consumption","New Jersey","NJ",4831 +2010-02-01,"Industrial Consumption","Hawaii","HI",26 +2010-02-01,"Industrial Consumption","Pennsylvania","PA",19824 +2010-02-01,"Industrial Consumption","Virginia","VA",5156 +2010-02-01,"Industrial Consumption","Iowa","IA",14956 +2010-02-01,"Industrial Consumption","Illinois","IL",27891 +2010-02-01,"Industrial Consumption","Rhode Island","RI",747 +2010-02-01,"Industrial Consumption","Maryland","MD",2465 +2010-02-01,"Industrial Consumption","Washington","WA",5974 +2010-02-01,"Industrial Consumption","Ohio","OH",26853 +2010-02-01,"Industrial Consumption","Nevada","NV",884 +2010-02-01,"Industrial Consumption","Mississippi","MS",9908 +2010-02-01,"Industrial Consumption","New Hampshire","NH",570 +2010-02-01,"Industrial Consumption","Minnesota","MN",14733 +2010-02-01,"Industrial Consumption","Idaho","ID",2005 +2010-02-01,"Industrial Consumption","North Carolina","NC",8600 +2010-02-01,"Industrial Consumption","North Dakota","ND",1629 +2010-02-01,"Industrial Consumption","Massachusetts","MA",5841 +2010-02-01,"Industrial Consumption","Colorado","CO",11352 +2010-02-01,"Industrial Consumption","Utah","UT",3022 +2010-02-01,"Industrial Consumption","South Carolina","SC",5924 +2010-02-01,"Industrial Consumption","Kentucky","KY",9665 +2010-02-01,"Industrial Consumption","New Mexico","NM",1460 +2010-02-01,"Industrial Consumption","Arizona","AZ",1788 +2010-02-01,"Industrial Consumption","Wisconsin","WI",12350 +2010-02-01,"Industrial Consumption","Connecticut","CT",2581 +2010-02-01,"Industrial Consumption","Georgia","GA",12419 +2010-02-01,"Industrial Consumption","District of Columbia","DC",0 +2010-02-01,"Industrial Consumption","Missouri","MO",6992 +2010-02-01,"Industrial Consumption","Louisiana","LA",67545 +2010-02-01,"Industrial Consumption","South Dakota","SD",3804 +2010-02-01,"Industrial Consumption","Arkansas","AR",7998 +2010-02-01,"Industrial Consumption","Michigan","MI",15682 +2010-02-01,"Industrial Consumption","New York","NY",7761 +2010-02-01,"Industrial Consumption","California","CA",55257 +2010-02-01,"Industrial Consumption","Texas","TX",113046 +2010-02-01,"Industrial Consumption","Vermont","VT",271 +2010-02-01,"Industrial Consumption","Tennessee","TN",8856 +2010-02-01,"Industrial Consumption","Florida","FL",6493 +2010-02-01,"Industrial Consumption","Delaware","DE",972 +2010-02-01,"Industrial Consumption","Alaska","AK",491 +2010-02-01,"Industrial Consumption","Oklahoma","OK",16869 +2010-02-01,"Industrial Consumption","Kansas","KS",9831 +2010-02-01,"Industrial Consumption","Oregon","OR",4545 +2010-02-01,"Industrial Consumption","West Virginia","WV",2222 +2010-02-01,"Industrial Consumption","Wyoming","WY",3701 +2010-02-01,"Industrial Consumption","Indiana","IN",25885 +2010-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",97743 +2010-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",70460 +2010-02-01,"Residential Consumption","Utah","UT",8322 +2010-02-01,"Residential Consumption","District of Columbia","DC",2507 +2010-02-01,"Residential Consumption","Maine","ME",186 +2010-02-01,"Residential Consumption","Massachusetts","MA",18681 +2010-02-01,"Residential Consumption","Oklahoma","OK",13334 +2010-02-01,"Residential Consumption","Ohio","OH",51953 +2010-02-01,"Residential Consumption","Louisiana","LA",8150 +2010-02-01,"Residential Consumption","Minnesota","MN",19730 +2010-02-01,"Residential Consumption","Iowa","IA",11923 +2010-02-01,"Residential Consumption","Nevada","NV",5926 +2010-02-01,"Residential Consumption","Georgia","GA",24967 +2010-02-01,"Residential Consumption","Indiana","IN",24542 +2010-02-01,"Residential Consumption","West Virginia","WV",5003 +2010-02-01,"Residential Consumption","Oregon","OR",4893 +2010-02-01,"Residential Consumption","Nebraska","NE",6848 +2010-02-01,"Residential Consumption","South Dakota","SD",2119 +2010-02-01,"Residential Consumption","New Mexico","NM",6297 +2010-02-01,"Residential Consumption","Florida","FL",2590 +2010-02-01,"Residential Consumption","New Hampshire","NH",1033 +2010-02-01,"Residential Consumption","Montana","MT",2984 +2010-02-01,"Residential Consumption","California","CA",58616 +2010-02-01,"Residential Consumption","Alabama","AL",7762 +2010-02-01,"Residential Consumption","Alaska","AK",2054 +2010-02-01,"Residential Consumption","New York","NY",64645 +2010-02-01,"Residential Consumption","North Carolina","NC",14708 +2010-02-01,"Residential Consumption","Hawaii","HI",43 +2010-02-01,"Residential Consumption","Wisconsin","WI",19477 +2010-02-01,"Residential Consumption","Maryland","MD",14765 +2010-02-01,"Residential Consumption","North Dakota","ND",1718 +2010-02-01,"Residential Consumption","Washington","WA",8686 +2010-02-01,"Residential Consumption","Arizona","AZ",6015 +2010-02-01,"Residential Consumption","Texas","TX",47290 +2010-02-01,"Residential Consumption","Rhode Island","RI",2824 +2010-02-01,"Residential Consumption","Virginia","VA",16981 +2010-02-01,"Residential Consumption","Kansas","KS",12445 +2010-02-01,"Residential Consumption","Wyoming","WY",1754 +2010-02-01,"Residential Consumption","South Carolina","SC",6116 +2010-02-01,"Residential Consumption","Mississippi","MS",5426 +2010-02-01,"Residential Consumption","Connecticut","CT",7502 +2010-02-01,"Residential Consumption","Vermont","VT",494 +2010-02-01,"Residential Consumption","Tennessee","TN",14701 +2010-02-01,"Residential Consumption","Idaho","ID",2965 +2010-02-01,"Residential Consumption","New Jersey","NJ",37453 +2010-02-01,"Residential Consumption","Missouri","MO",20194 +2010-02-01,"Residential Consumption","Delaware","DE",1942 +2010-02-01,"Residential Consumption","U.S.","U.S.",794779 +2010-02-01,"Residential Consumption","Illinois","IL",68555 +2010-02-01,"Residential Consumption","Michigan","MI",49276 +2010-02-01,"Residential Consumption","Pennsylvania","PA",39423 +2010-02-01,"Residential Consumption","Arkansas","AR",7327 +2010-02-01,"Residential Consumption","Kentucky","KY",10999 +2010-02-01,"Residential Consumption","Colorado","CO",20633 +2010-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-02-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-02-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-02-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",19 +2010-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2010-02-01,"Vehicle Fuel Consumption","Arizona","AZ",155 +2010-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-02-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-02-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-02-01,"Vehicle Fuel Consumption","Washington","WA",33 +2010-02-01,"Vehicle Fuel Consumption","Virginia","VA",11 +2010-02-01,"Vehicle Fuel Consumption","New York","NY",275 +2010-02-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-02-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2010-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",56 +2010-02-01,"Vehicle Fuel Consumption","California","CA",1041 +2010-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-02-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-02-01,"Vehicle Fuel Consumption","Texas","TX",179 +2010-02-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-02-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2010-02-01,"Vehicle Fuel Consumption","Georgia","GA",70 +2010-02-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",4 +2010-02-01,"Vehicle Fuel Consumption","Maryland","MD",16 +2010-02-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-02-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-02-01,"Vehicle Fuel Consumption","New Mexico","NM",23 +2010-02-01,"Vehicle Fuel Consumption","Ohio","OH",11 +2010-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-02-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-02-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2010-02-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-02-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2010-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",2199 +2010-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",23 +2010-02-01,"Vehicle Fuel Consumption","Nevada","NV",64 +2010-02-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-02-01,"Vehicle Fuel Consumption","Nebraska","NE",2 +2010-02-01,"Vehicle Fuel Consumption","Michigan","MI",20 +2010-02-01,"Vehicle Fuel Consumption","Utah","UT",16 +2010-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",11 +2010-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-02-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-02-01,"Vehicle Fuel Consumption","Colorado","CO",19 +2010-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-02-01,"Vehicle Fuel Consumption","Illinois","IL",23 +2010-03-01,"Commercial Consumption","Virginia","VA",6842 +2010-03-01,"Commercial Consumption","Pennsylvania","PA",16472 +2010-03-01,"Commercial Consumption","Vermont","VT",259 +2010-03-01,"Commercial Consumption","Ohio","OH",17933 +2010-03-01,"Commercial Consumption","Idaho","ID",1580 +2010-03-01,"Commercial Consumption","Nebraska","NE",4420 +2010-03-01,"Commercial Consumption","South Dakota","SD",1257 +2010-03-01,"Commercial Consumption","New Hampshire","NH",958 +2010-03-01,"Commercial Consumption","Maryland","MD",7048 +2010-03-01,"Commercial Consumption","Kansas","KS",4152 +2010-03-01,"Commercial Consumption","Georgia","GA",6734 +2010-03-01,"Commercial Consumption","Arkansas","AR",5137 +2010-03-01,"Commercial Consumption","New York","NY",29741 +2010-03-01,"Commercial Consumption","Tennessee","TN",7252 +2010-03-01,"Commercial Consumption","Louisiana","LA",2939 +2010-03-01,"Commercial Consumption","West Virginia","WV",2759 +2010-03-01,"Commercial Consumption","Wisconsin","WI",8570 +2010-03-01,"Commercial Consumption","Rhode Island","RI",1209 +2010-03-01,"Commercial Consumption","Hawaii","HI",146 +2010-03-01,"Commercial Consumption","California","CA",21064 +2010-03-01,"Commercial Consumption","Mississippi","MS",2767 +2010-03-01,"Commercial Consumption","Arizona","AZ",3361 +2010-03-01,"Commercial Consumption","District of Columbia","DC",1842 +2010-03-01,"Commercial Consumption","South Carolina","SC",2287 +2010-03-01,"Commercial Consumption","North Carolina","NC",5153 +2010-03-01,"Commercial Consumption","Colorado","CO",6772 +2010-03-01,"Commercial Consumption","Utah","UT",4354 +2010-03-01,"Commercial Consumption","Missouri","MO",7456 +2010-03-01,"Commercial Consumption","Maine","ME",606 +2010-03-01,"Commercial Consumption","Kentucky","KY",4050 +2010-03-01,"Commercial Consumption","Texas","TX",21878 +2010-03-01,"Commercial Consumption","Nevada","NV",3053 +2010-03-01,"Commercial Consumption","Michigan","MI",17769 +2010-03-01,"Commercial Consumption","Wyoming","WY",1271 +2010-03-01,"Commercial Consumption","Massachusetts","MA",7820 +2010-03-01,"Commercial Consumption","U.S.","U.S.",337183 +2010-03-01,"Commercial Consumption","Florida","FL",5331 +2010-03-01,"Commercial Consumption","Iowa","IA",5752 +2010-03-01,"Commercial Consumption","Delaware","DE",1124 +2010-03-01,"Commercial Consumption","Washington","WA",4827 +2010-03-01,"Commercial Consumption","North Dakota","ND",1144 +2010-03-01,"Commercial Consumption","Indiana","IN",7546 +2010-03-01,"Commercial Consumption","New Mexico","NM",3309 +2010-03-01,"Commercial Consumption","Oregon","OR",2738 +2010-03-01,"Commercial Consumption","Oklahoma","OK",6443 +2010-03-01,"Commercial Consumption","Illinois","IL",23327 +2010-03-01,"Commercial Consumption","Minnesota","MN",9504 +2010-03-01,"Commercial Consumption","New Jersey","NJ",17462 +2010-03-01,"Commercial Consumption","Montana","MT",2072 +2010-03-01,"Commercial Consumption","Alaska","AK",1791 +2010-03-01,"Commercial Consumption","Connecticut","CT",4518 +2010-03-01,"Commercial Consumption","Alabama","AL",3386 +2010-03-01,"Delivered to Consumers","New York","NY",111075 +2010-03-01,"Delivered to Consumers","Alaska","AK",7943 +2010-03-01,"Delivered to Consumers","Iowa","IA",29344 +2010-03-01,"Delivered to Consumers","Alabama","AL",38762 +2010-03-01,"Delivered to Consumers","Mississippi","MS",31218 +2010-03-01,"Delivered to Consumers","California","CA",196564 +2010-03-01,"Delivered to Consumers","New Hampshire","NH",3784 +2010-03-01,"Delivered to Consumers","West Virginia","WV",7936 +2010-03-01,"Delivered to Consumers","South Dakota","SD",6394 +2010-03-01,"Delivered to Consumers","Tennessee","TN",27048 +2010-03-01,"Delivered to Consumers","Massachusetts","MA",37531 +2010-03-01,"Delivered to Consumers","Colorado","CO",41288 +2010-03-01,"Delivered to Consumers","Utah","UT",18894 +2010-03-01,"Delivered to Consumers","Delaware","DE",4213 +2010-03-01,"Delivered to Consumers","Rhode Island","RI",7652 +2010-03-01,"Delivered to Consumers","Ohio","OH",77785 +2010-03-01,"Delivered to Consumers","Arkansas","AR",22875 +2010-03-01,"Delivered to Consumers","South Carolina","SC",15781 +2010-03-01,"Delivered to Consumers","Nevada","NV",22916 +2010-03-01,"Delivered to Consumers","Georgia","GA",44827 +2010-03-01,"Delivered to Consumers","Arizona","AZ",24108 +2010-03-01,"Delivered to Consumers","Oklahoma","OK",49185 +2010-03-01,"Delivered to Consumers","Nebraska","NE",18109 +2010-03-01,"Delivered to Consumers","Florida","FL",82297 +2010-03-01,"Delivered to Consumers","New Mexico","NM",15343 +2010-03-01,"Delivered to Consumers","Indiana","IN",49998 +2010-03-01,"Delivered to Consumers","Illinois","IL",103714 +2010-03-01,"Delivered to Consumers","Idaho","ID",7929 +2010-03-01,"Delivered to Consumers","Kentucky","KY",19615 +2010-03-01,"Delivered to Consumers","Wisconsin","WI",35855 +2010-03-01,"Delivered to Consumers","North Carolina","NC",23668 +2010-03-01,"Delivered to Consumers","Maine","ME",5295 +2010-03-01,"Delivered to Consumers","Louisiana","LA",98935 +2010-03-01,"Delivered to Consumers","Washington","WA",27612 +2010-03-01,"Delivered to Consumers","North Dakota","ND",4043 +2010-03-01,"Delivered to Consumers","Hawaii","HI",218 +2010-03-01,"Delivered to Consumers","Virginia","VA",25112 +2010-03-01,"Delivered to Consumers","Oregon","OR",23026 +2010-03-01,"Delivered to Consumers","Minnesota","MN",37257 +2010-03-01,"Delivered to Consumers","District of Columbia","DC",3267 +2010-03-01,"Delivered to Consumers","Vermont","VT",897 +2010-03-01,"Delivered to Consumers","Montana","MT",5950 +2010-03-01,"Delivered to Consumers","Maryland","MD",18842 +2010-03-01,"Delivered to Consumers","Kansas","KS",24075 +2010-03-01,"Delivered to Consumers","Connecticut","CT",16467 +2010-03-01,"Delivered to Consumers","Pennsylvania","PA",77619 +2010-03-01,"Delivered to Consumers","Missouri","MO",29474 +2010-03-01,"Delivered to Consumers","U.S.","U.S.",1974222 +2010-03-01,"Delivered to Consumers","Wyoming","WY",6427 +2010-03-01,"Delivered to Consumers","Michigan","MI",73820 +2010-03-01,"Delivered to Consumers","Texas","TX",256046 +2010-03-01,"Delivered to Consumers","New Jersey","NJ",56188 +2010-03-01,"Electric Power Consumption","Colorado","CO",8090 +2010-03-01,"Electric Power Consumption","Michigan","MI",4846 +2010-03-01,"Electric Power Consumption","Massachusetts","MA",11152 +2010-03-01,"Electric Power Consumption","Wisconsin","WI",3008 +2010-03-01,"Electric Power Consumption","Pennsylvania","PA",15250 +2010-03-01,"Electric Power Consumption","Montana","MT",3 +2010-03-01,"Electric Power Consumption","Louisiana","LA",13837 +2010-03-01,"Electric Power Consumption","North Carolina","NC",2555 +2010-03-01,"Electric Power Consumption","North Dakota","ND",0 +2010-03-01,"Electric Power Consumption","Florida","FL",67054 +2010-03-01,"Electric Power Consumption","New Mexico","NM",5634 +2010-03-01,"Electric Power Consumption","Arkansas","AR",3682 +2010-03-01,"Electric Power Consumption","New York","NY",26200 +2010-03-01,"Electric Power Consumption","Vermont","VT",6 +2010-03-01,"Electric Power Consumption","Maine","ME",1825 +2010-03-01,"Electric Power Consumption","Mississippi","MS",14904 +2010-03-01,"Electric Power Consumption","Arizona","AZ",13644 +2010-03-01,"Electric Power Consumption","California","CA",65509 +2010-03-01,"Electric Power Consumption","New Jersey","NJ",11080 +2010-03-01,"Electric Power Consumption","South Carolina","SC",3087 +2010-03-01,"Electric Power Consumption","Oklahoma","OK",15249 +2010-03-01,"Electric Power Consumption","Oregon","OR",11107 +2010-03-01,"Electric Power Consumption","South Dakota","SD",1 +2010-03-01,"Electric Power Consumption","Missouri","MO",1194 +2010-03-01,"Electric Power Consumption","Maryland","MD",618 +2010-03-01,"Electric Power Consumption","Alaska","AK",3459 +2010-03-01,"Electric Power Consumption","Illinois","IL",1180 +2010-03-01,"Electric Power Consumption","Kansas","KS",1134 +2010-03-01,"Electric Power Consumption","Nevada","NV",14025 +2010-03-01,"Electric Power Consumption","Kentucky","KY",276 +2010-03-01,"Electric Power Consumption","Hawaii","HI",NA +2010-03-01,"Electric Power Consumption","Ohio","OH",1047 +2010-03-01,"Electric Power Consumption","New Hampshire","NH",1534 +2010-03-01,"Electric Power Consumption","Georgia","GA",8032 +2010-03-01,"Electric Power Consumption","Washington","WA",8693 +2010-03-01,"Electric Power Consumption","Idaho","ID",1454 +2010-03-01,"Electric Power Consumption","Texas","TX",78244 +2010-03-01,"Electric Power Consumption","Wyoming","WY",42 +2010-03-01,"Electric Power Consumption","Tennessee","TN",53 +2010-03-01,"Electric Power Consumption","Indiana","IN",3299 +2010-03-01,"Electric Power Consumption","Connecticut","CT",4381 +2010-03-01,"Electric Power Consumption","Alabama","AL",16230 +2010-03-01,"Electric Power Consumption","Rhode Island","RI",3802 +2010-03-01,"Electric Power Consumption","Minnesota","MN",1090 +2010-03-01,"Electric Power Consumption","West Virginia","WV",23 +2010-03-01,"Electric Power Consumption","Iowa","IA",268 +2010-03-01,"Electric Power Consumption","Virginia","VA",3866 +2010-03-01,"Electric Power Consumption","Utah","UT",4195 +2010-03-01,"Electric Power Consumption","U.S.","U.S.",456864 +2010-03-01,"Electric Power Consumption","Nebraska","NE",128 +2010-03-01,"Electric Power Consumption","Delaware","DE",874 +2010-03-01,"Industrial Consumption","Massachusetts","MA",3972 +2010-03-01,"Industrial Consumption","Arizona","AZ",1769 +2010-03-01,"Industrial Consumption","Pennsylvania","PA",18134 +2010-03-01,"Industrial Consumption","Maine","ME",2720 +2010-03-01,"Industrial Consumption","New Jersey","NJ",4658 +2010-03-01,"Industrial Consumption","Idaho","ID",2258 +2010-03-01,"Industrial Consumption","Hawaii","HI",28 +2010-03-01,"Industrial Consumption","Colorado","CO",10879 +2010-03-01,"Industrial Consumption","Kansas","KS",9125 +2010-03-01,"Industrial Consumption","Mississippi","MS",9398 +2010-03-01,"Industrial Consumption","Alabama","AL",12525 +2010-03-01,"Industrial Consumption","Virginia","VA",5253 +2010-03-01,"Industrial Consumption","Indiana","IN",24557 +2010-03-01,"Industrial Consumption","Alaska","AK",570 +2010-03-01,"Industrial Consumption","Missouri","MO",6457 +2010-03-01,"Industrial Consumption","South Dakota","SD",3637 +2010-03-01,"Industrial Consumption","Utah","UT",2692 +2010-03-01,"Industrial Consumption","U.S.","U.S.",598498 +2010-03-01,"Industrial Consumption","Oregon","OR",4933 +2010-03-01,"Industrial Consumption","Vermont","VT",275 +2010-03-01,"Industrial Consumption","Kentucky","KY",9011 +2010-03-01,"Industrial Consumption","Delaware","DE",906 +2010-03-01,"Industrial Consumption","Georgia","GA",13679 +2010-03-01,"Industrial Consumption","District of Columbia","DC",0 +2010-03-01,"Industrial Consumption","Nevada","NV",1027 +2010-03-01,"Industrial Consumption","California","CA",56815 +2010-03-01,"Industrial Consumption","Arkansas","AR",7789 +2010-03-01,"Industrial Consumption","North Carolina","NC",8362 +2010-03-01,"Industrial Consumption","New Mexico","NM",1342 +2010-03-01,"Industrial Consumption","New York","NY",7126 +2010-03-01,"Industrial Consumption","Wyoming","WY",3616 +2010-03-01,"Industrial Consumption","Minnesota","MN",13895 +2010-03-01,"Industrial Consumption","Maryland","MD",2264 +2010-03-01,"Industrial Consumption","Washington","WA",6107 +2010-03-01,"Industrial Consumption","Texas","TX",121033 +2010-03-01,"Industrial Consumption","South Carolina","SC",6468 +2010-03-01,"Industrial Consumption","Nebraska","NE",7166 +2010-03-01,"Industrial Consumption","New Hampshire","NH",509 +2010-03-01,"Industrial Consumption","Iowa","IA",15036 +2010-03-01,"Industrial Consumption","Florida","FL",7127 +2010-03-01,"Industrial Consumption","Connecticut","CT",2188 +2010-03-01,"Industrial Consumption","Illinois","IL",25790 +2010-03-01,"Industrial Consumption","Louisiana","LA",75193 +2010-03-01,"Industrial Consumption","Wisconsin","WI",11079 +2010-03-01,"Industrial Consumption","Tennessee","TN",8613 +2010-03-01,"Industrial Consumption","Michigan","MI",14580 +2010-03-01,"Industrial Consumption","North Dakota","ND",1714 +2010-03-01,"Industrial Consumption","Montana","MT",1630 +2010-03-01,"Industrial Consumption","Oklahoma","OK",16916 +2010-03-01,"Industrial Consumption","Ohio","OH",24759 +2010-03-01,"Industrial Consumption","West Virginia","WV",2183 +2010-03-01,"Industrial Consumption","Rhode Island","RI",735 +2010-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",108557 +2010-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",60147 +2010-03-01,"Residential Consumption","South Carolina","SC",3939 +2010-03-01,"Residential Consumption","Tennessee","TN",11128 +2010-03-01,"Residential Consumption","New Jersey","NJ",22975 +2010-03-01,"Residential Consumption","Alaska","AK",2121 +2010-03-01,"Residential Consumption","Vermont","VT",357 +2010-03-01,"Residential Consumption","Virginia","VA",9139 +2010-03-01,"Residential Consumption","Michigan","MI",36603 +2010-03-01,"Residential Consumption","Nevada","NV",4741 +2010-03-01,"Residential Consumption","Georgia","GA",16304 +2010-03-01,"Residential Consumption","New Mexico","NM",5032 +2010-03-01,"Residential Consumption","Maine","ME",144 +2010-03-01,"Residential Consumption","Kentucky","KY",6278 +2010-03-01,"Residential Consumption","West Virginia","WV",2971 +2010-03-01,"Residential Consumption","Texas","TX",34693 +2010-03-01,"Residential Consumption","North Carolina","NC",7595 +2010-03-01,"Residential Consumption","Louisiana","LA",6965 +2010-03-01,"Residential Consumption","Connecticut","CT",5377 +2010-03-01,"Residential Consumption","Florida","FL",2781 +2010-03-01,"Residential Consumption","Arkansas","AR",6266 +2010-03-01,"Residential Consumption","Montana","MT",2246 +2010-03-01,"Residential Consumption","Delaware","DE",1309 +2010-03-01,"Residential Consumption","Arizona","AZ",5164 +2010-03-01,"Residential Consumption","Alabama","AL",6612 +2010-03-01,"Residential Consumption","Oregon","OR",4232 +2010-03-01,"Residential Consumption","Ohio","OH",34033 +2010-03-01,"Residential Consumption","Minnesota","MN",12767 +2010-03-01,"Residential Consumption","District of Columbia","DC",1350 +2010-03-01,"Residential Consumption","North Dakota","ND",1185 +2010-03-01,"Residential Consumption","California","CA",52024 +2010-03-01,"Residential Consumption","Nebraska","NE",6392 +2010-03-01,"Residential Consumption","Maryland","MD",8894 +2010-03-01,"Residential Consumption","South Dakota","SD",1499 +2010-03-01,"Residential Consumption","Wyoming","WY",1497 +2010-03-01,"Residential Consumption","U.S.","U.S.",579243 +2010-03-01,"Residential Consumption","Iowa","IA",8288 +2010-03-01,"Residential Consumption","Hawaii","HI",44 +2010-03-01,"Residential Consumption","Pennsylvania","PA",27737 +2010-03-01,"Residential Consumption","Indiana","IN",14592 +2010-03-01,"Residential Consumption","Massachusetts","MA",14525 +2010-03-01,"Residential Consumption","Rhode Island","RI",1899 +2010-03-01,"Residential Consumption","Mississippi","MS",4148 +2010-03-01,"Residential Consumption","Wisconsin","WI",13193 +2010-03-01,"Residential Consumption","Idaho","ID",2632 +2010-03-01,"Residential Consumption","Kansas","KS",9663 +2010-03-01,"Residential Consumption","Washington","WA",7948 +2010-03-01,"Residential Consumption","Oklahoma","OK",10556 +2010-03-01,"Residential Consumption","Missouri","MO",14367 +2010-03-01,"Residential Consumption","New York","NY",47703 +2010-03-01,"Residential Consumption","Illinois","IL",53392 +2010-03-01,"Residential Consumption","Utah","UT",7636 +2010-03-01,"Residential Consumption","New Hampshire","NH",780 +2010-03-01,"Residential Consumption","Colorado","CO",15526 +2010-03-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-03-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2010-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-03-01,"Vehicle Fuel Consumption","Texas","TX",198 +2010-03-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-03-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-03-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2010-03-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2010-03-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-03-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-03-01,"Vehicle Fuel Consumption","Washington","WA",37 +2010-03-01,"Vehicle Fuel Consumption","Arizona","AZ",171 +2010-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2434 +2010-03-01,"Vehicle Fuel Consumption","Nevada","NV",71 +2010-03-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-03-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-03-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-03-01,"Vehicle Fuel Consumption","Georgia","GA",78 +2010-03-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-03-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-03-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-03-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2010-03-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-03-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-03-01,"Vehicle Fuel Consumption","Illinois","IL",25 +2010-03-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-03-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-03-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-03-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-03-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2010-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",13 +2010-03-01,"Vehicle Fuel Consumption","Michigan","MI",22 +2010-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-03-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-03-01,"Vehicle Fuel Consumption","New York","NY",305 +2010-03-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-03-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2010-03-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-03-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2010-03-01,"Vehicle Fuel Consumption","California","CA",1153 +2010-04-01,"Commercial Consumption","Minnesota","MN",5432 +2010-04-01,"Commercial Consumption","Utah","UT",3740 +2010-04-01,"Commercial Consumption","Pennsylvania","PA",8827 +2010-04-01,"Commercial Consumption","Missouri","MO",3676 +2010-04-01,"Commercial Consumption","Wisconsin","WI",4904 +2010-04-01,"Commercial Consumption","Montana","MT",1526 +2010-04-01,"Commercial Consumption","Maine","ME",450 +2010-04-01,"Commercial Consumption","Nevada","NV",2664 +2010-04-01,"Commercial Consumption","Michigan","MI",12856 +2010-04-01,"Commercial Consumption","North Carolina","NC",2691 +2010-04-01,"Commercial Consumption","U.S.","U.S.",215375 +2010-04-01,"Commercial Consumption","Vermont","VT",190 +2010-04-01,"Commercial Consumption","Rhode Island","RI",666 +2010-04-01,"Commercial Consumption","Ohio","OH",9785 +2010-04-01,"Commercial Consumption","Arkansas","AR",3049 +2010-04-01,"Commercial Consumption","District of Columbia","DC",1119 +2010-04-01,"Commercial Consumption","West Virginia","WV",1596 +2010-04-01,"Commercial Consumption","New Mexico","NM",2548 +2010-04-01,"Commercial Consumption","New Hampshire","NH",596 +2010-04-01,"Commercial Consumption","Hawaii","HI",164 +2010-04-01,"Commercial Consumption","Delaware","DE",724 +2010-04-01,"Commercial Consumption","Washington","WA",4430 +2010-04-01,"Commercial Consumption","Virginia","VA",4040 +2010-04-01,"Commercial Consumption","Massachusetts","MA",5121 +2010-04-01,"Commercial Consumption","South Dakota","SD",660 +2010-04-01,"Commercial Consumption","New Jersey","NJ",12020 +2010-04-01,"Commercial Consumption","Florida","FL",4895 +2010-04-01,"Commercial Consumption","Idaho","ID",1222 +2010-04-01,"Commercial Consumption","California","CA",21182 +2010-04-01,"Commercial Consumption","Illinois","IL",11881 +2010-04-01,"Commercial Consumption","South Carolina","SC",1456 +2010-04-01,"Commercial Consumption","Kentucky","KY",1595 +2010-04-01,"Commercial Consumption","Georgia","GA",2982 +2010-04-01,"Commercial Consumption","Iowa","IA",2857 +2010-04-01,"Commercial Consumption","Alaska","AK",1321 +2010-04-01,"Commercial Consumption","Alabama","AL",2027 +2010-04-01,"Commercial Consumption","New York","NY",19732 +2010-04-01,"Commercial Consumption","Tennessee","TN",3553 +2010-04-01,"Commercial Consumption","Oregon","OR",2474 +2010-04-01,"Commercial Consumption","Oklahoma","OK",3782 +2010-04-01,"Commercial Consumption","Texas","TX",14177 +2010-04-01,"Commercial Consumption","Kansas","KS",1964 +2010-04-01,"Commercial Consumption","Nebraska","NE",2480 +2010-04-01,"Commercial Consumption","Louisiana","LA",2059 +2010-04-01,"Commercial Consumption","Wyoming","WY",1006 +2010-04-01,"Commercial Consumption","North Dakota","ND",563 +2010-04-01,"Commercial Consumption","Colorado","CO",4653 +2010-04-01,"Commercial Consumption","Maryland","MD",4025 +2010-04-01,"Commercial Consumption","Connecticut","CT",2592 +2010-04-01,"Commercial Consumption","Mississippi","MS",1374 +2010-04-01,"Commercial Consumption","Arizona","AZ",2754 +2010-04-01,"Commercial Consumption","Indiana","IN",3296 +2010-04-01,"Delivered to Consumers","Indiana","IN",33745 +2010-04-01,"Delivered to Consumers","Delaware","DE",3006 +2010-04-01,"Delivered to Consumers","Wyoming","WY",5598 +2010-04-01,"Delivered to Consumers","Rhode Island","RI",6243 +2010-04-01,"Delivered to Consumers","Arkansas","AR",15864 +2010-04-01,"Delivered to Consumers","North Carolina","NC",14667 +2010-04-01,"Delivered to Consumers","Arizona","AZ",22800 +2010-04-01,"Delivered to Consumers","District of Columbia","DC",1733 +2010-04-01,"Delivered to Consumers","New Mexico","NM",12395 +2010-04-01,"Delivered to Consumers","Montana","MT",4827 +2010-04-01,"Delivered to Consumers","Maryland","MD",11027 +2010-04-01,"Delivered to Consumers","Tennessee","TN",14937 +2010-04-01,"Delivered to Consumers","Connecticut","CT",11655 +2010-04-01,"Delivered to Consumers","Alabama","AL",30377 +2010-04-01,"Delivered to Consumers","Virginia","VA",15205 +2010-04-01,"Delivered to Consumers","Missouri","MO",14611 +2010-04-01,"Delivered to Consumers","Massachusetts","MA",29586 +2010-04-01,"Delivered to Consumers","Oregon","OR",20642 +2010-04-01,"Delivered to Consumers","West Virginia","WV",5141 +2010-04-01,"Delivered to Consumers","Alaska","AK",6889 +2010-04-01,"Delivered to Consumers","Kansas","KS",15534 +2010-04-01,"Delivered to Consumers","Ohio","OH",49920 +2010-04-01,"Delivered to Consumers","Kentucky","KY",11362 +2010-04-01,"Delivered to Consumers","Iowa","IA",19989 +2010-04-01,"Delivered to Consumers","Mississippi","MS",25272 +2010-04-01,"Delivered to Consumers","Minnesota","MN",23887 +2010-04-01,"Delivered to Consumers","South Dakota","SD",4930 +2010-04-01,"Delivered to Consumers","Georgia","GA",28789 +2010-04-01,"Delivered to Consumers","Utah","UT",16855 +2010-04-01,"Delivered to Consumers","Vermont","VT",685 +2010-04-01,"Delivered to Consumers","Illinois","IL",61511 +2010-04-01,"Delivered to Consumers","New York","NY",80295 +2010-04-01,"Delivered to Consumers","Hawaii","HI",240 +2010-04-01,"Delivered to Consumers","Oklahoma","OK",42250 +2010-04-01,"Delivered to Consumers","Nebraska","NE",12728 +2010-04-01,"Delivered to Consumers","Texas","TX",234470 +2010-04-01,"Delivered to Consumers","New Jersey","NJ",40057 +2010-04-01,"Delivered to Consumers","Washington","WA",25969 +2010-04-01,"Delivered to Consumers","North Dakota","ND",2735 +2010-04-01,"Delivered to Consumers","Colorado","CO",30445 +2010-04-01,"Delivered to Consumers","California","CA",177738 +2010-04-01,"Delivered to Consumers","Maine","ME",4648 +2010-04-01,"Delivered to Consumers","New Hampshire","NH",2177 +2010-04-01,"Delivered to Consumers","U.S.","U.S.",1540128 +2010-04-01,"Delivered to Consumers","Idaho","ID",6521 +2010-04-01,"Delivered to Consumers","Michigan","MI",55007 +2010-04-01,"Delivered to Consumers","Wisconsin","WI",22543 +2010-04-01,"Delivered to Consumers","Pennsylvania","PA",54387 +2010-04-01,"Delivered to Consumers","South Carolina","SC",12557 +2010-04-01,"Delivered to Consumers","Nevada","NV",20434 +2010-04-01,"Delivered to Consumers","Louisiana","LA",91359 +2010-04-01,"Delivered to Consumers","Florida","FL",83887 +2010-04-01,"Electric Power Consumption","Idaho","ID",1252 +2010-04-01,"Electric Power Consumption","South Carolina","SC",4040 +2010-04-01,"Electric Power Consumption","Mississippi","MS",13440 +2010-04-01,"Electric Power Consumption","Delaware","DE",1133 +2010-04-01,"Electric Power Consumption","Arizona","AZ",15326 +2010-04-01,"Electric Power Consumption","California","CA",54721 +2010-04-01,"Electric Power Consumption","Alabama","AL",13842 +2010-04-01,"Electric Power Consumption","New Mexico","NM",4895 +2010-04-01,"Electric Power Consumption","Louisiana","LA",17191 +2010-04-01,"Electric Power Consumption","Rhode Island","RI",4089 +2010-04-01,"Electric Power Consumption","Minnesota","MN",1412 +2010-04-01,"Electric Power Consumption","Tennessee","TN",119 +2010-04-01,"Electric Power Consumption","Montana","MT",8 +2010-04-01,"Electric Power Consumption","Connecticut","CT",4079 +2010-04-01,"Electric Power Consumption","Utah","UT",3681 +2010-04-01,"Electric Power Consumption","Iowa","IA",331 +2010-04-01,"Electric Power Consumption","North Carolina","NC",3098 +2010-04-01,"Electric Power Consumption","North Dakota","ND",0 +2010-04-01,"Electric Power Consumption","New Jersey","NJ",13172 +2010-04-01,"Electric Power Consumption","Colorado","CO",6928 +2010-04-01,"Electric Power Consumption","Wyoming","WY",30 +2010-04-01,"Electric Power Consumption","Nebraska","NE",90 +2010-04-01,"Electric Power Consumption","Missouri","MO",416 +2010-04-01,"Electric Power Consumption","Maine","ME",1767 +2010-04-01,"Electric Power Consumption","Hawaii","HI",NA +2010-04-01,"Electric Power Consumption","Ohio","OH",2345 +2010-04-01,"Electric Power Consumption","Maryland","MD",1233 +2010-04-01,"Electric Power Consumption","Indiana","IN",2097 +2010-04-01,"Electric Power Consumption","Florida","FL",70615 +2010-04-01,"Electric Power Consumption","Washington","WA",8889 +2010-04-01,"Electric Power Consumption","Virginia","VA",4051 +2010-04-01,"Electric Power Consumption","Oklahoma","OK",16683 +2010-04-01,"Electric Power Consumption","Oregon","OR",9553 +2010-04-01,"Electric Power Consumption","Michigan","MI",5517 +2010-04-01,"Electric Power Consumption","Kansas","KS",1227 +2010-04-01,"Electric Power Consumption","West Virginia","WV",53 +2010-04-01,"Electric Power Consumption","Vermont","VT",3 +2010-04-01,"Electric Power Consumption","New York","NY",28073 +2010-04-01,"Electric Power Consumption","Wisconsin","WI",1560 +2010-04-01,"Electric Power Consumption","Alaska","AK",3583 +2010-04-01,"Electric Power Consumption","Texas","TX",94977 +2010-04-01,"Electric Power Consumption","Illinois","IL",1163 +2010-04-01,"Electric Power Consumption","Massachusetts","MA",12507 +2010-04-01,"Electric Power Consumption","Pennsylvania","PA",16335 +2010-04-01,"Electric Power Consumption","Kentucky","KY",379 +2010-04-01,"Electric Power Consumption","Arkansas","AR",3120 +2010-04-01,"Electric Power Consumption","Nevada","NV",13468 +2010-04-01,"Electric Power Consumption","U.S.","U.S.",471481 +2010-04-01,"Electric Power Consumption","South Dakota","SD",14 +2010-04-01,"Electric Power Consumption","New Hampshire","NH",692 +2010-04-01,"Electric Power Consumption","Georgia","GA",8284 +2010-04-01,"Industrial Consumption","Maryland","MD",1991 +2010-04-01,"Industrial Consumption","Ohio","OH",22422 +2010-04-01,"Industrial Consumption","California","CA",56011 +2010-04-01,"Industrial Consumption","Connecticut","CT",1849 +2010-04-01,"Industrial Consumption","Michigan","MI",12064 +2010-04-01,"Industrial Consumption","Nevada","NV",978 +2010-04-01,"Industrial Consumption","Mississippi","MS",9104 +2010-04-01,"Industrial Consumption","Maine","ME",2324 +2010-04-01,"Industrial Consumption","Georgia","GA",11873 +2010-04-01,"Industrial Consumption","Alaska","AK",409 +2010-04-01,"Industrial Consumption","North Dakota","ND",1609 +2010-04-01,"Industrial Consumption","Montana","MT",1539 +2010-04-01,"Industrial Consumption","Missouri","MO",4906 +2010-04-01,"Industrial Consumption","New York","NY",5288 +2010-04-01,"Industrial Consumption","New Jersey","NJ",3836 +2010-04-01,"Industrial Consumption","Massachusetts","MA",3246 +2010-04-01,"Industrial Consumption","Louisiana","LA",69359 +2010-04-01,"Industrial Consumption","Kansas","KS",8033 +2010-04-01,"Industrial Consumption","Vermont","VT",222 +2010-04-01,"Industrial Consumption","Tennessee","TN",7241 +2010-04-01,"Industrial Consumption","Illinois","IL",21738 +2010-04-01,"Industrial Consumption","District of Columbia","DC",0 +2010-04-01,"Industrial Consumption","Hawaii","HI",26 +2010-04-01,"Industrial Consumption","Washington","WA",5746 +2010-04-01,"Industrial Consumption","New Mexico","NM",1528 +2010-04-01,"Industrial Consumption","U.S.","U.S.",537745 +2010-04-01,"Industrial Consumption","Pennsylvania","PA",16012 +2010-04-01,"Industrial Consumption","Arkansas","AR",6944 +2010-04-01,"Industrial Consumption","Alabama","AL",11512 +2010-04-01,"Industrial Consumption","Virginia","VA",3588 +2010-04-01,"Industrial Consumption","Oklahoma","OK",16640 +2010-04-01,"Industrial Consumption","Nebraska","NE",7000 +2010-04-01,"Industrial Consumption","Wyoming","WY",3381 +2010-04-01,"Industrial Consumption","Wisconsin","WI",8890 +2010-04-01,"Industrial Consumption","Colorado","CO",8020 +2010-04-01,"Industrial Consumption","South Dakota","SD",3435 +2010-04-01,"Industrial Consumption","Arizona","AZ",1520 +2010-04-01,"Industrial Consumption","Oregon","OR",4654 +2010-04-01,"Industrial Consumption","Texas","TX",110756 +2010-04-01,"Industrial Consumption","South Carolina","SC",5911 +2010-04-01,"Industrial Consumption","New Hampshire","NH",424 +2010-04-01,"Industrial Consumption","Minnesota","MN",11057 +2010-04-01,"Industrial Consumption","Iowa","IA",13286 +2010-04-01,"Industrial Consumption","Florida","FL",6654 +2010-04-01,"Industrial Consumption","Kentucky","KY",7540 +2010-04-01,"Industrial Consumption","Indiana","IN",22204 +2010-04-01,"Industrial Consumption","Delaware","DE",564 +2010-04-01,"Industrial Consumption","Utah","UT",2857 +2010-04-01,"Industrial Consumption","West Virginia","WV",1995 +2010-04-01,"Industrial Consumption","Idaho","ID",1993 +2010-04-01,"Industrial Consumption","Rhode Island","RI",624 +2010-04-01,"Industrial Consumption","North Carolina","NC",6938 +2010-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",104763 +2010-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",46922 +2010-04-01,"Residential Consumption","Virginia","VA",3514 +2010-04-01,"Residential Consumption","Pennsylvania","PA",13190 +2010-04-01,"Residential Consumption","Florida","FL",1719 +2010-04-01,"Residential Consumption","California","CA",44708 +2010-04-01,"Residential Consumption","Vermont","VT",270 +2010-04-01,"Residential Consumption","South Dakota","SD",821 +2010-04-01,"Residential Consumption","Maine","ME",107 +2010-04-01,"Residential Consumption","New Jersey","NJ",11017 +2010-04-01,"Residential Consumption","Montana","MT",1754 +2010-04-01,"Residential Consumption","Kentucky","KY",1848 +2010-04-01,"Residential Consumption","Oklahoma","OK",5125 +2010-04-01,"Residential Consumption","New York","NY",26907 +2010-04-01,"Residential Consumption","Oregon","OR",3946 +2010-04-01,"Residential Consumption","Louisiana","LA",2748 +2010-04-01,"Residential Consumption","Tennessee","TN",4022 +2010-04-01,"Residential Consumption","Maryland","MD",3761 +2010-04-01,"Residential Consumption","Minnesota","MN",5984 +2010-04-01,"Residential Consumption","Arkansas","AR",2749 +2010-04-01,"Residential Consumption","Colorado","CO",10823 +2010-04-01,"Residential Consumption","Rhode Island","RI",857 +2010-04-01,"Residential Consumption","North Carolina","NC",1937 +2010-04-01,"Residential Consumption","Iowa","IA",3516 +2010-04-01,"Residential Consumption","Wisconsin","WI",7185 +2010-04-01,"Residential Consumption","Utah","UT",6560 +2010-04-01,"Residential Consumption","Massachusetts","MA",8651 +2010-04-01,"Residential Consumption","Idaho","ID",2048 +2010-04-01,"Residential Consumption","Delaware","DE",585 +2010-04-01,"Residential Consumption","West Virginia","WV",1496 +2010-04-01,"Residential Consumption","Connecticut","CT",3131 +2010-04-01,"Residential Consumption","Michigan","MI",24548 +2010-04-01,"Residential Consumption","Nevada","NV",3255 +2010-04-01,"Residential Consumption","District of Columbia","DC",542 +2010-04-01,"Residential Consumption","New Mexico","NM",3400 +2010-04-01,"Residential Consumption","Ohio","OH",15356 +2010-04-01,"Residential Consumption","Indiana","IN",6144 +2010-04-01,"Residential Consumption","North Dakota","ND",564 +2010-04-01,"Residential Consumption","New Hampshire","NH",464 +2010-04-01,"Residential Consumption","Kansas","KS",4310 +2010-04-01,"Residential Consumption","Alaska","AK",1574 +2010-04-01,"Residential Consumption","Texas","TX",14367 +2010-04-01,"Residential Consumption","Hawaii","HI",50 +2010-04-01,"Residential Consumption","Nebraska","NE",3157 +2010-04-01,"Residential Consumption","Georgia","GA",5575 +2010-04-01,"Residential Consumption","Missouri","MO",5613 +2010-04-01,"Residential Consumption","Alabama","AL",2987 +2010-04-01,"Residential Consumption","South Carolina","SC",1149 +2010-04-01,"Residential Consumption","Mississippi","MS",1353 +2010-04-01,"Residential Consumption","Washington","WA",6868 +2010-04-01,"Residential Consumption","Arizona","AZ",3034 +2010-04-01,"Residential Consumption","Wyoming","WY",1180 +2010-04-01,"Residential Consumption","U.S.","U.S.",313171 +2010-04-01,"Residential Consumption","Illinois","IL",26705 +2010-04-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-04-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-04-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-04-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-04-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-04-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-04-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",12 +2010-04-01,"Vehicle Fuel Consumption","Oregon","OR",15 +2010-04-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-04-01,"Vehicle Fuel Consumption","Colorado","CO",20 +2010-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-04-01,"Vehicle Fuel Consumption","California","CA",1116 +2010-04-01,"Vehicle Fuel Consumption","Washington","WA",36 +2010-04-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-04-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-04-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2010-04-01,"Vehicle Fuel Consumption","Nebraska","NE",2 +2010-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2010-04-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-04-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-04-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-04-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",20 +2010-04-01,"Vehicle Fuel Consumption","Georgia","GA",75 +2010-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-04-01,"Vehicle Fuel Consumption","New York","NY",295 +2010-04-01,"Vehicle Fuel Consumption","Nevada","NV",69 +2010-04-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",60 +2010-04-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2356 +2010-04-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2010-04-01,"Vehicle Fuel Consumption","Texas","TX",192 +2010-04-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-04-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-04-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-04-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-04-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-04-01,"Vehicle Fuel Consumption","Michigan","MI",21 +2010-04-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-04-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-04-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2010-05-01,"Commercial Consumption","South Dakota","SD",537 +2010-05-01,"Commercial Consumption","U.S.","U.S.",161154 +2010-05-01,"Commercial Consumption","Nevada","NV",2128 +2010-05-01,"Commercial Consumption","District of Columbia","DC",877 +2010-05-01,"Commercial Consumption","Utah","UT",2480 +2010-05-01,"Commercial Consumption","New Mexico","NM",1524 +2010-05-01,"Commercial Consumption","Massachusetts","MA",3510 +2010-05-01,"Commercial Consumption","New Hampshire","NH",387 +2010-05-01,"Commercial Consumption","Kentucky","KY",1207 +2010-05-01,"Commercial Consumption","Kansas","KS",1091 +2010-05-01,"Commercial Consumption","Hawaii","HI",140 +2010-05-01,"Commercial Consumption","Alaska","AK",821 +2010-05-01,"Commercial Consumption","Connecticut","CT",2257 +2010-05-01,"Commercial Consumption","Oregon","OR",1913 +2010-05-01,"Commercial Consumption","Montana","MT",1220 +2010-05-01,"Commercial Consumption","Rhode Island","RI",435 +2010-05-01,"Commercial Consumption","New York","NY",16808 +2010-05-01,"Commercial Consumption","Delaware","DE",608 +2010-05-01,"Commercial Consumption","North Dakota","ND",465 +2010-05-01,"Commercial Consumption","Minnesota","MN",4261 +2010-05-01,"Commercial Consumption","Missouri","MO",2389 +2010-05-01,"Commercial Consumption","Ohio","OH",5698 +2010-05-01,"Commercial Consumption","California","CA",19105 +2010-05-01,"Commercial Consumption","Michigan","MI",7086 +2010-05-01,"Commercial Consumption","Illinois","IL",8445 +2010-05-01,"Commercial Consumption","West Virginia","WV",1515 +2010-05-01,"Commercial Consumption","Washington","WA",3544 +2010-05-01,"Commercial Consumption","North Carolina","NC",2389 +2010-05-01,"Commercial Consumption","Colorado","CO",3175 +2010-05-01,"Commercial Consumption","Pennsylvania","PA",5773 +2010-05-01,"Commercial Consumption","New Jersey","NJ",9749 +2010-05-01,"Commercial Consumption","Maine","ME",311 +2010-05-01,"Commercial Consumption","Maryland","MD",3208 +2010-05-01,"Commercial Consumption","Arizona","AZ",2326 +2010-05-01,"Commercial Consumption","Louisiana","LA",1624 +2010-05-01,"Commercial Consumption","Oklahoma","OK",1922 +2010-05-01,"Commercial Consumption","Virginia","VA",2875 +2010-05-01,"Commercial Consumption","Wisconsin","WI",3634 +2010-05-01,"Commercial Consumption","Iowa","IA",2099 +2010-05-01,"Commercial Consumption","Alabama","AL",1237 +2010-05-01,"Commercial Consumption","Nebraska","NE",1429 +2010-05-01,"Commercial Consumption","Wyoming","WY",765 +2010-05-01,"Commercial Consumption","Texas","TX",11358 +2010-05-01,"Commercial Consumption","Georgia","GA",2428 +2010-05-01,"Commercial Consumption","South Carolina","SC",1264 +2010-05-01,"Commercial Consumption","Florida","FL",3948 +2010-05-01,"Commercial Consumption","Vermont","VT",121 +2010-05-01,"Commercial Consumption","Idaho","ID",901 +2010-05-01,"Commercial Consumption","Arkansas","AR",2089 +2010-05-01,"Commercial Consumption","Mississippi","MS",1032 +2010-05-01,"Commercial Consumption","Tennessee","TN",2245 +2010-05-01,"Commercial Consumption","Indiana","IN",2800 +2010-05-01,"Delivered to Consumers","Wyoming","WY",5266 +2010-05-01,"Delivered to Consumers","Kentucky","KY",11218 +2010-05-01,"Delivered to Consumers","California","CA",151001 +2010-05-01,"Delivered to Consumers","Michigan","MI",40209 +2010-05-01,"Delivered to Consumers","Virginia","VA",18735 +2010-05-01,"Delivered to Consumers","North Dakota","ND",3355 +2010-05-01,"Delivered to Consumers","New Mexico","NM",9207 +2010-05-01,"Delivered to Consumers","Illinois","IL",48002 +2010-05-01,"Delivered to Consumers","Montana","MT",3960 +2010-05-01,"Delivered to Consumers","North Carolina","NC",16336 +2010-05-01,"Delivered to Consumers","Mississippi","MS",30629 +2010-05-01,"Delivered to Consumers","Massachusetts","MA",28325 +2010-05-01,"Delivered to Consumers","South Carolina","SC",15677 +2010-05-01,"Delivered to Consumers","Oregon","OR",13041 +2010-05-01,"Delivered to Consumers","New Hampshire","NH",2969 +2010-05-01,"Delivered to Consumers","U.S.","U.S.",1465089 +2010-05-01,"Delivered to Consumers","Indiana","IN",33295 +2010-05-01,"Delivered to Consumers","Iowa","IA",18557 +2010-05-01,"Delivered to Consumers","Colorado","CO",23776 +2010-05-01,"Delivered to Consumers","Maine","ME",5768 +2010-05-01,"Delivered to Consumers","Georgia","GA",29136 +2010-05-01,"Delivered to Consumers","Delaware","DE",3555 +2010-05-01,"Delivered to Consumers","Maryland","MD",9569 +2010-05-01,"Delivered to Consumers","Oklahoma","OK",41507 +2010-05-01,"Delivered to Consumers","Alabama","AL",34483 +2010-05-01,"Delivered to Consumers","Missouri","MO",12130 +2010-05-01,"Delivered to Consumers","Minnesota","MN",24036 +2010-05-01,"Delivered to Consumers","District of Columbia","DC",1275 +2010-05-01,"Delivered to Consumers","Alaska","AK",5620 +2010-05-01,"Delivered to Consumers","Kansas","KS",12711 +2010-05-01,"Delivered to Consumers","Washington","WA",16623 +2010-05-01,"Delivered to Consumers","West Virginia","WV",4407 +2010-05-01,"Delivered to Consumers","South Dakota","SD",4140 +2010-05-01,"Delivered to Consumers","New York","NY",71550 +2010-05-01,"Delivered to Consumers","Hawaii","HI",205 +2010-05-01,"Delivered to Consumers","Tennessee","TN",11682 +2010-05-01,"Delivered to Consumers","Arkansas","AR",16658 +2010-05-01,"Delivered to Consumers","Wisconsin","WI",19420 +2010-05-01,"Delivered to Consumers","Pennsylvania","PA",44971 +2010-05-01,"Delivered to Consumers","New Jersey","NJ",37226 +2010-05-01,"Delivered to Consumers","Arizona","AZ",18249 +2010-05-01,"Delivered to Consumers","Florida","FL",105947 +2010-05-01,"Delivered to Consumers","Utah","UT",12536 +2010-05-01,"Delivered to Consumers","Vermont","VT",488 +2010-05-01,"Delivered to Consumers","Rhode Island","RI",5810 +2010-05-01,"Delivered to Consumers","Idaho","ID",4434 +2010-05-01,"Delivered to Consumers","Ohio","OH",39877 +2010-05-01,"Delivered to Consumers","Connecticut","CT",12416 +2010-05-01,"Delivered to Consumers","Nebraska","NE",9758 +2010-05-01,"Delivered to Consumers","Texas","TX",256015 +2010-05-01,"Delivered to Consumers","Nevada","NV",19675 +2010-05-01,"Delivered to Consumers","Louisiana","LA",99652 +2010-05-01,"Electric Power Consumption","Louisiana","LA",23621 +2010-05-01,"Electric Power Consumption","Idaho","ID",196 +2010-05-01,"Electric Power Consumption","Michigan","MI",9736 +2010-05-01,"Electric Power Consumption","Nebraska","NE",165 +2010-05-01,"Electric Power Consumption","Delaware","DE",2114 +2010-05-01,"Electric Power Consumption","Connecticut","CT",6385 +2010-05-01,"Electric Power Consumption","Georgia","GA",11679 +2010-05-01,"Electric Power Consumption","South Carolina","SC",7860 +2010-05-01,"Electric Power Consumption","Oklahoma","OK",21659 +2010-05-01,"Electric Power Consumption","South Dakota","SD",3 +2010-05-01,"Electric Power Consumption","Rhode Island","RI",4146 +2010-05-01,"Electric Power Consumption","Minnesota","MN",3960 +2010-05-01,"Electric Power Consumption","Vermont","VT",4 +2010-05-01,"Electric Power Consumption","Tennessee","TN",948 +2010-05-01,"Electric Power Consumption","Mississippi","MS",19090 +2010-05-01,"Electric Power Consumption","North Dakota","ND",0 +2010-05-01,"Electric Power Consumption","Maryland","MD",1942 +2010-05-01,"Electric Power Consumption","New Jersey","NJ",15679 +2010-05-01,"Electric Power Consumption","Iowa","IA",604 +2010-05-01,"Electric Power Consumption","U.S.","U.S.",559665 +2010-05-01,"Electric Power Consumption","Kentucky","KY",1411 +2010-05-01,"Electric Power Consumption","New Hampshire","NH",1894 +2010-05-01,"Electric Power Consumption","Montana","MT",24 +2010-05-01,"Electric Power Consumption","Arkansas","AR",7170 +2010-05-01,"Electric Power Consumption","New York","NY",31856 +2010-05-01,"Electric Power Consumption","Utah","UT",3292 +2010-05-01,"Electric Power Consumption","Massachusetts","MA",16778 +2010-05-01,"Electric Power Consumption","Kansas","KS",1422 +2010-05-01,"Electric Power Consumption","Florida","FL",94081 +2010-05-01,"Electric Power Consumption","Washington","WA",1919 +2010-05-01,"Electric Power Consumption","Texas","TX",118372 +2010-05-01,"Electric Power Consumption","Illinois","IL",3042 +2010-05-01,"Electric Power Consumption","Pennsylvania","PA",15731 +2010-05-01,"Electric Power Consumption","Maine","ME",3224 +2010-05-01,"Electric Power Consumption","Hawaii","HI",NA +2010-05-01,"Electric Power Consumption","Ohio","OH",3725 +2010-05-01,"Electric Power Consumption","Indiana","IN",3576 +2010-05-01,"Electric Power Consumption","Alabama","AL",20433 +2010-05-01,"Electric Power Consumption","Virginia","VA",8162 +2010-05-01,"Electric Power Consumption","New Mexico","NM",4536 +2010-05-01,"Electric Power Consumption","Colorado","CO",5821 +2010-05-01,"Electric Power Consumption","West Virginia","WV",72 +2010-05-01,"Electric Power Consumption","Wisconsin","WI",2726 +2010-05-01,"Electric Power Consumption","North Carolina","NC",5787 +2010-05-01,"Electric Power Consumption","Arizona","AZ",12327 +2010-05-01,"Electric Power Consumption","California","CA",39236 +2010-05-01,"Electric Power Consumption","Alaska","AK",3467 +2010-05-01,"Electric Power Consumption","Oregon","OR",3601 +2010-05-01,"Electric Power Consumption","Nevada","NV",14274 +2010-05-01,"Electric Power Consumption","Wyoming","WY",36 +2010-05-01,"Electric Power Consumption","Missouri","MO",1877 +2010-05-01,"Industrial Consumption","Montana","MT",1380 +2010-05-01,"Industrial Consumption","Hawaii","HI",23 +2010-05-01,"Industrial Consumption","Mississippi","MS",9849 +2010-05-01,"Industrial Consumption","Idaho","ID",1930 +2010-05-01,"Industrial Consumption","South Dakota","SD",2971 +2010-05-01,"Industrial Consumption","Arizona","AZ",1454 +2010-05-01,"Industrial Consumption","Pennsylvania","PA",15166 +2010-05-01,"Industrial Consumption","Oregon","OR",4710 +2010-05-01,"Industrial Consumption","Vermont","VT",207 +2010-05-01,"Industrial Consumption","New Jersey","NJ",3691 +2010-05-01,"Industrial Consumption","New Hampshire","NH",386 +2010-05-01,"Industrial Consumption","Alaska","AK",385 +2010-05-01,"Industrial Consumption","North Dakota","ND",2443 +2010-05-01,"Industrial Consumption","Washington","WA",6149 +2010-05-01,"Industrial Consumption","Utah","UT",2628 +2010-05-01,"Industrial Consumption","Texas","TX",118553 +2010-05-01,"Industrial Consumption","Illinois","IL",21263 +2010-05-01,"Industrial Consumption","Ohio","OH",20900 +2010-05-01,"Industrial Consumption","Tennessee","TN",7020 +2010-05-01,"Industrial Consumption","North Carolina","NC",6905 +2010-05-01,"Industrial Consumption","Oklahoma","OK",15694 +2010-05-01,"Industrial Consumption","Missouri","MO",4836 +2010-05-01,"Industrial Consumption","Maine","ME",2171 +2010-05-01,"Industrial Consumption","Alabama","AL",11662 +2010-05-01,"Industrial Consumption","Iowa","IA",13247 +2010-05-01,"Industrial Consumption","Indiana","IN",22519 +2010-05-01,"Industrial Consumption","Delaware","DE",484 +2010-05-01,"Industrial Consumption","Rhode Island","RI",588 +2010-05-01,"Industrial Consumption","Maryland","MD",1909 +2010-05-01,"Industrial Consumption","South Carolina","SC",6020 +2010-05-01,"Industrial Consumption","Virginia","VA",5556 +2010-05-01,"Industrial Consumption","Wisconsin","WI",8194 +2010-05-01,"Industrial Consumption","Michigan","MI",9863 +2010-05-01,"Industrial Consumption","Colorado","CO",7798 +2010-05-01,"Industrial Consumption","New Mexico","NM",1303 +2010-05-01,"Industrial Consumption","Nevada","NV",916 +2010-05-01,"Industrial Consumption","California","CA",58425 +2010-05-01,"Industrial Consumption","Arkansas","AR",6364 +2010-05-01,"Industrial Consumption","Nebraska","NE",6678 +2010-05-01,"Industrial Consumption","Wyoming","WY",3555 +2010-05-01,"Industrial Consumption","Minnesota","MN",10874 +2010-05-01,"Industrial Consumption","Florida","FL",6782 +2010-05-01,"Industrial Consumption","Kentucky","KY",7558 +2010-05-01,"Industrial Consumption","Georgia","GA",10911 +2010-05-01,"Industrial Consumption","Massachusetts","MA",2454 +2010-05-01,"Industrial Consumption","Louisiana","LA",72944 +2010-05-01,"Industrial Consumption","Kansas","KS",8215 +2010-05-01,"Industrial Consumption","U.S.","U.S.",544323 +2010-05-01,"Industrial Consumption","New York","NY",5018 +2010-05-01,"Industrial Consumption","West Virginia","WV",2013 +2010-05-01,"Industrial Consumption","Connecticut","CT",1758 +2010-05-01,"Industrial Consumption","District of Columbia","DC",0 +2010-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",107550 +2010-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",44635 +2010-05-01,"Residential Consumption","Iowa","IA",2607 +2010-05-01,"Residential Consumption","Vermont","VT",155 +2010-05-01,"Residential Consumption","Utah","UT",4119 +2010-05-01,"Residential Consumption","Nebraska","NE",1483 +2010-05-01,"Residential Consumption","Massachusetts","MA",5520 +2010-05-01,"Residential Consumption","California","CA",33082 +2010-05-01,"Residential Consumption","Illinois","IL",15227 +2010-05-01,"Residential Consumption","Texas","TX",7534 +2010-05-01,"Residential Consumption","Indiana","IN",4395 +2010-05-01,"Residential Consumption","Delaware","DE",348 +2010-05-01,"Residential Consumption","Arizona","AZ",1972 +2010-05-01,"Residential Consumption","West Virginia","WV",807 +2010-05-01,"Residential Consumption","Hawaii","HI",42 +2010-05-01,"Residential Consumption","Maryland","MD",2493 +2010-05-01,"Residential Consumption","North Dakota","ND",447 +2010-05-01,"Residential Consumption","Idaho","ID",1401 +2010-05-01,"Residential Consumption","Oklahoma","OK",2211 +2010-05-01,"Residential Consumption","South Carolina","SC",533 +2010-05-01,"Residential Consumption","Mississippi","MS",657 +2010-05-01,"Residential Consumption","Tennessee","TN",1468 +2010-05-01,"Residential Consumption","Virginia","VA",2130 +2010-05-01,"Residential Consumption","Nevada","NV",2286 +2010-05-01,"Residential Consumption","Arkansas","AR",1033 +2010-05-01,"Residential Consumption","New Jersey","NJ",8093 +2010-05-01,"Residential Consumption","Montana","MT",1336 +2010-05-01,"Residential Consumption","Colorado","CO",6962 +2010-05-01,"Residential Consumption","Alabama","AL",1143 +2010-05-01,"Residential Consumption","Alaska","AK",946 +2010-05-01,"Residential Consumption","New York","NY",17563 +2010-05-01,"Residential Consumption","Ohio","OH",9542 +2010-05-01,"Residential Consumption","North Carolina","NC",1252 +2010-05-01,"Residential Consumption","Pennsylvania","PA",8276 +2010-05-01,"Residential Consumption","Kansas","KS",1983 +2010-05-01,"Residential Consumption","Rhode Island","RI",633 +2010-05-01,"Residential Consumption","Oregon","OR",2801 +2010-05-01,"Residential Consumption","New Mexico","NM",1818 +2010-05-01,"Residential Consumption","Florida","FL",1131 +2010-05-01,"Residential Consumption","South Dakota","SD",628 +2010-05-01,"Residential Consumption","District of Columbia","DC",323 +2010-05-01,"Residential Consumption","Kentucky","KY",1042 +2010-05-01,"Residential Consumption","Washington","WA",4974 +2010-05-01,"Residential Consumption","Missouri","MO",3027 +2010-05-01,"Residential Consumption","Wyoming","WY",908 +2010-05-01,"Residential Consumption","U.S.","U.S.",197513 +2010-05-01,"Residential Consumption","Louisiana","LA",1463 +2010-05-01,"Residential Consumption","Connecticut","CT",2013 +2010-05-01,"Residential Consumption","Wisconsin","WI",4861 +2010-05-01,"Residential Consumption","Michigan","MI",13503 +2010-05-01,"Residential Consumption","Minnesota","MN",4939 +2010-05-01,"Residential Consumption","Georgia","GA",4039 +2010-05-01,"Residential Consumption","Maine","ME",62 +2010-05-01,"Residential Consumption","New Hampshire","NH",299 +2010-05-01,"Vehicle Fuel Consumption","Washington","WA",37 +2010-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2010-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2010-05-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-05-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-05-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-05-01,"Vehicle Fuel Consumption","Nevada","NV",71 +2010-05-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-05-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-05-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-05-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2010-05-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-05-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-05-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-05-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-05-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-05-01,"Vehicle Fuel Consumption","California","CA",1153 +2010-05-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-05-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2010-05-01,"Vehicle Fuel Consumption","Michigan","MI",22 +2010-05-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-05-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-05-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-05-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",13 +2010-05-01,"Vehicle Fuel Consumption","Illinois","IL",25 +2010-05-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-05-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-05-01,"Vehicle Fuel Consumption","Arizona","AZ",171 +2010-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2010-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2434 +2010-05-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-05-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-05-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-05-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2010-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-05-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2010-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-05-01,"Vehicle Fuel Consumption","New York","NY",305 +2010-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-05-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-05-01,"Vehicle Fuel Consumption","Texas","TX",198 +2010-05-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-05-01,"Vehicle Fuel Consumption","Georgia","GA",78 +2010-06-01,"Commercial Consumption","Montana","MT",764 +2010-06-01,"Commercial Consumption","Iowa","IA",1899 +2010-06-01,"Commercial Consumption","Connecticut","CT",1682 +2010-06-01,"Commercial Consumption","Arkansas","AR",1954 +2010-06-01,"Commercial Consumption","Mississippi","MS",990 +2010-06-01,"Commercial Consumption","Indiana","IN",2109 +2010-06-01,"Commercial Consumption","Illinois","IL",6570 +2010-06-01,"Commercial Consumption","Wyoming","WY",487 +2010-06-01,"Commercial Consumption","Washington","WA",2862 +2010-06-01,"Commercial Consumption","Utah","UT",1797 +2010-06-01,"Commercial Consumption","Oregon","OR",1476 +2010-06-01,"Commercial Consumption","Massachusetts","MA",2359 +2010-06-01,"Commercial Consumption","Wisconsin","WI",2836 +2010-06-01,"Commercial Consumption","Kentucky","KY",1002 +2010-06-01,"Commercial Consumption","Kansas","KS",953 +2010-06-01,"Commercial Consumption","Idaho","ID",638 +2010-06-01,"Commercial Consumption","District of Columbia","DC",767 +2010-06-01,"Commercial Consumption","North Dakota","ND",273 +2010-06-01,"Commercial Consumption","Oklahoma","OK",1526 +2010-06-01,"Commercial Consumption","South Dakota","SD",328 +2010-06-01,"Commercial Consumption","U.S.","U.S.",129712 +2010-06-01,"Commercial Consumption","Nebraska","NE",1143 +2010-06-01,"Commercial Consumption","Arizona","AZ",1993 +2010-06-01,"Commercial Consumption","South Carolina","SC",1138 +2010-06-01,"Commercial Consumption","North Carolina","NC",1977 +2010-06-01,"Commercial Consumption","Colorado","CO",1633 +2010-06-01,"Commercial Consumption","New Mexico","NM",1112 +2010-06-01,"Commercial Consumption","California","CA",16061 +2010-06-01,"Commercial Consumption","Minnesota","MN",2810 +2010-06-01,"Commercial Consumption","Missouri","MO",1763 +2010-06-01,"Commercial Consumption","New Hampshire","NH",295 +2010-06-01,"Commercial Consumption","Texas","TX",10980 +2010-06-01,"Commercial Consumption","Delaware","DE",541 +2010-06-01,"Commercial Consumption","West Virginia","WV",948 +2010-06-01,"Commercial Consumption","New Jersey","NJ",8042 +2010-06-01,"Commercial Consumption","Rhode Island","RI",274 +2010-06-01,"Commercial Consumption","Virginia","VA",2661 +2010-06-01,"Commercial Consumption","Pennsylvania","PA",4454 +2010-06-01,"Commercial Consumption","Maine","ME",228 +2010-06-01,"Commercial Consumption","Maryland","MD",2596 +2010-06-01,"Commercial Consumption","Georgia","GA",2126 +2010-06-01,"Commercial Consumption","Ohio","OH",4596 +2010-06-01,"Commercial Consumption","Alaska","AK",636 +2010-06-01,"Commercial Consumption","Alabama","AL",1104 +2010-06-01,"Commercial Consumption","Tennessee","TN",2041 +2010-06-01,"Commercial Consumption","Nevada","NV",1860 +2010-06-01,"Commercial Consumption","Louisiana","LA",1498 +2010-06-01,"Commercial Consumption","Florida","FL",3605 +2010-06-01,"Commercial Consumption","Vermont","VT",86 +2010-06-01,"Commercial Consumption","Hawaii","HI",150 +2010-06-01,"Commercial Consumption","New York","NY",12885 +2010-06-01,"Commercial Consumption","Michigan","MI",5205 +2010-06-01,"Delivered to Consumers","Vermont","VT",376 +2010-06-01,"Delivered to Consumers","Montana","MT",2953 +2010-06-01,"Delivered to Consumers","Maryland","MD",11442 +2010-06-01,"Delivered to Consumers","Idaho","ID",3252 +2010-06-01,"Delivered to Consumers","Virginia","VA",27549 +2010-06-01,"Delivered to Consumers","Nebraska","NE",8950 +2010-06-01,"Delivered to Consumers","North Carolina","NC",20764 +2010-06-01,"Delivered to Consumers","Missouri","MO",13972 +2010-06-01,"Delivered to Consumers","District of Columbia","DC",1102 +2010-06-01,"Delivered to Consumers","Utah","UT",10218 +2010-06-01,"Delivered to Consumers","Indiana","IN",31825 +2010-06-01,"Delivered to Consumers","Pennsylvania","PA",48685 +2010-06-01,"Delivered to Consumers","Maine","ME",6479 +2010-06-01,"Delivered to Consumers","New Mexico","NM",10260 +2010-06-01,"Delivered to Consumers","South Dakota","SD",3962 +2010-06-01,"Delivered to Consumers","Hawaii","HI",220 +2010-06-01,"Delivered to Consumers","Ohio","OH",35792 +2010-06-01,"Delivered to Consumers","Michigan","MI",35215 +2010-06-01,"Delivered to Consumers","Connecticut","CT",12385 +2010-06-01,"Delivered to Consumers","California","CA",136709 +2010-06-01,"Delivered to Consumers","New Hampshire","NH",4156 +2010-06-01,"Delivered to Consumers","Minnesota","MN",20310 +2010-06-01,"Delivered to Consumers","Wyoming","WY",4168 +2010-06-01,"Delivered to Consumers","Iowa","IA",17079 +2010-06-01,"Delivered to Consumers","Mississippi","MS",35433 +2010-06-01,"Delivered to Consumers","Colorado","CO",21818 +2010-06-01,"Delivered to Consumers","Texas","TX",276401 +2010-06-01,"Delivered to Consumers","Louisiana","LA",104692 +2010-06-01,"Delivered to Consumers","Georgia","GA",37413 +2010-06-01,"Delivered to Consumers","Arizona","AZ",25949 +2010-06-01,"Delivered to Consumers","Washington","WA",12518 +2010-06-01,"Delivered to Consumers","U.S.","U.S.",1500962 +2010-06-01,"Delivered to Consumers","Delaware","DE",4363 +2010-06-01,"Delivered to Consumers","Rhode Island","RI",6873 +2010-06-01,"Delivered to Consumers","New York","NY",70004 +2010-06-01,"Delivered to Consumers","Wisconsin","WI",17786 +2010-06-01,"Delivered to Consumers","Massachusetts","MA",26532 +2010-06-01,"Delivered to Consumers","South Carolina","SC",17475 +2010-06-01,"Delivered to Consumers","West Virginia","WV",3486 +2010-06-01,"Delivered to Consumers","Illinois","IL",39505 +2010-06-01,"Delivered to Consumers","Oregon","OR",8528 +2010-06-01,"Delivered to Consumers","North Dakota","ND",2486 +2010-06-01,"Delivered to Consumers","Florida","FL",109301 +2010-06-01,"Delivered to Consumers","Oklahoma","OK",49983 +2010-06-01,"Delivered to Consumers","Arkansas","AR",21404 +2010-06-01,"Delivered to Consumers","Alaska","AK",4436 +2010-06-01,"Delivered to Consumers","Kansas","KS",14161 +2010-06-01,"Delivered to Consumers","Tennessee","TN",12260 +2010-06-01,"Delivered to Consumers","Kentucky","KY",11723 +2010-06-01,"Delivered to Consumers","Alabama","AL",41988 +2010-06-01,"Delivered to Consumers","Nevada","NV",19668 +2010-06-01,"Delivered to Consumers","New Jersey","NJ",36955 +2010-06-01,"Electric Power Consumption","Utah","UT",3242 +2010-06-01,"Electric Power Consumption","Oregon","OR",621 +2010-06-01,"Electric Power Consumption","Massachusetts","MA",17839 +2010-06-01,"Electric Power Consumption","Wisconsin","WI",3968 +2010-06-01,"Electric Power Consumption","Pennsylvania","PA",24215 +2010-06-01,"Electric Power Consumption","Vermont","VT",5 +2010-06-01,"Electric Power Consumption","U.S.","U.S.",705665 +2010-06-01,"Electric Power Consumption","Kentucky","KY",2396 +2010-06-01,"Electric Power Consumption","Hawaii","HI",NA +2010-06-01,"Electric Power Consumption","New Hampshire","NH",3268 +2010-06-01,"Electric Power Consumption","Louisiana","LA",29669 +2010-06-01,"Electric Power Consumption","Idaho","ID",21 +2010-06-01,"Electric Power Consumption","Nevada","NV",15230 +2010-06-01,"Electric Power Consumption","Iowa","IA",1316 +2010-06-01,"Electric Power Consumption","Indiana","IN",5682 +2010-06-01,"Electric Power Consumption","Connecticut","CT",7849 +2010-06-01,"Electric Power Consumption","Alabama","AL",28533 +2010-06-01,"Electric Power Consumption","South Carolina","SC",9932 +2010-06-01,"Electric Power Consumption","Texas","TX",140968 +2010-06-01,"Electric Power Consumption","Minnesota","MN",2913 +2010-06-01,"Electric Power Consumption","West Virginia","WV",97 +2010-06-01,"Electric Power Consumption","Missouri","MO",5375 +2010-06-01,"Electric Power Consumption","Montana","MT",73 +2010-06-01,"Electric Power Consumption","Georgia","GA",20307 +2010-06-01,"Electric Power Consumption","Alaska","AK",2721 +2010-06-01,"Electric Power Consumption","New Mexico","NM",6750 +2010-06-01,"Electric Power Consumption","Oklahoma","OK",32709 +2010-06-01,"Electric Power Consumption","Wyoming","WY",45 +2010-06-01,"Electric Power Consumption","Tennessee","TN",2209 +2010-06-01,"Electric Power Consumption","Maine","ME",4001 +2010-06-01,"Electric Power Consumption","Mississippi","MS",24203 +2010-06-01,"Electric Power Consumption","Delaware","DE",3163 +2010-06-01,"Electric Power Consumption","Florida","FL",98855 +2010-06-01,"Electric Power Consumption","New Jersey","NJ",20144 +2010-06-01,"Electric Power Consumption","Michigan","MI",13077 +2010-06-01,"Electric Power Consumption","Nebraska","NE",544 +2010-06-01,"Electric Power Consumption","Colorado","CO",8681 +2010-06-01,"Electric Power Consumption","South Dakota","SD",176 +2010-06-01,"Electric Power Consumption","Ohio","OH",5438 +2010-06-01,"Electric Power Consumption","California","CA",37085 +2010-06-01,"Electric Power Consumption","Virginia","VA",16095 +2010-06-01,"Electric Power Consumption","North Dakota","ND",0 +2010-06-01,"Electric Power Consumption","Maryland","MD",4795 +2010-06-01,"Electric Power Consumption","Washington","WA",661 +2010-06-01,"Electric Power Consumption","Arkansas","AR",12631 +2010-06-01,"Electric Power Consumption","New York","NY",41211 +2010-06-01,"Electric Power Consumption","Rhode Island","RI",5607 +2010-06-01,"Electric Power Consumption","Illinois","IL",5663 +2010-06-01,"Electric Power Consumption","Kansas","KS",3686 +2010-06-01,"Electric Power Consumption","North Carolina","NC",10952 +2010-06-01,"Electric Power Consumption","Arizona","AZ",21045 +2010-06-01,"Industrial Consumption","Colorado","CO",8331 +2010-06-01,"Industrial Consumption","Kansas","KS",8005 +2010-06-01,"Industrial Consumption","Oregon","OR",4478 +2010-06-01,"Industrial Consumption","Mississippi","MS",9601 +2010-06-01,"Industrial Consumption","Arkansas","AR",6042 +2010-06-01,"Industrial Consumption","Wyoming","WY",3141 +2010-06-01,"Industrial Consumption","Tennessee","TN",6804 +2010-06-01,"Industrial Consumption","North Dakota","ND",1995 +2010-06-01,"Industrial Consumption","Missouri","MO",4572 +2010-06-01,"Industrial Consumption","South Dakota","SD",3198 +2010-06-01,"Industrial Consumption","Ohio","OH",19941 +2010-06-01,"Industrial Consumption","California","CA",55626 +2010-06-01,"Industrial Consumption","New Hampshire","NH",391 +2010-06-01,"Industrial Consumption","Georgia","GA",11589 +2010-06-01,"Industrial Consumption","Montana","MT",1302 +2010-06-01,"Industrial Consumption","Hawaii","HI",28 +2010-06-01,"Industrial Consumption","Oklahoma","OK",14242 +2010-06-01,"Industrial Consumption","Louisiana","LA",72193 +2010-06-01,"Industrial Consumption","Arizona","AZ",1328 +2010-06-01,"Industrial Consumption","South Carolina","SC",5917 +2010-06-01,"Industrial Consumption","Minnesota","MN",11527 +2010-06-01,"Industrial Consumption","Kentucky","KY",7428 +2010-06-01,"Industrial Consumption","Washington","WA",5572 +2010-06-01,"Industrial Consumption","Pennsylvania","PA",15189 +2010-06-01,"Industrial Consumption","Maine","ME",2214 +2010-06-01,"Industrial Consumption","Alabama","AL",11501 +2010-06-01,"Industrial Consumption","West Virginia","WV",2042 +2010-06-01,"Industrial Consumption","New Jersey","NJ",3495 +2010-06-01,"Industrial Consumption","Iowa","IA",12453 +2010-06-01,"Industrial Consumption","Connecticut","CT",1666 +2010-06-01,"Industrial Consumption","Delaware","DE",431 +2010-06-01,"Industrial Consumption","Alaska","AK",412 +2010-06-01,"Industrial Consumption","Maryland","MD",2269 +2010-06-01,"Industrial Consumption","New Mexico","NM",1291 +2010-06-01,"Industrial Consumption","New York","NY",4890 +2010-06-01,"Industrial Consumption","Texas","TX",118150 +2010-06-01,"Industrial Consumption","Wisconsin","WI",7775 +2010-06-01,"Industrial Consumption","Florida","FL",6067 +2010-06-01,"Industrial Consumption","Illinois","IL",17442 +2010-06-01,"Industrial Consumption","Idaho","ID",1769 +2010-06-01,"Industrial Consumption","Indiana","IN",21371 +2010-06-01,"Industrial Consumption","U.S.","U.S.",529191 +2010-06-01,"Industrial Consumption","Virginia","VA",7012 +2010-06-01,"Industrial Consumption","North Carolina","NC",6890 +2010-06-01,"Industrial Consumption","Massachusetts","MA",2300 +2010-06-01,"Industrial Consumption","Utah","UT",2493 +2010-06-01,"Industrial Consumption","Nevada","NV",818 +2010-06-01,"Industrial Consumption","Nebraska","NE",6220 +2010-06-01,"Industrial Consumption","Vermont","VT",190 +2010-06-01,"Industrial Consumption","Michigan","MI",9023 +2010-06-01,"Industrial Consumption","Rhode Island","RI",568 +2010-06-01,"Industrial Consumption","District of Columbia","DC",0 +2010-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",102824 +2010-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",45728 +2010-06-01,"Residential Consumption","South Carolina","SC",487 +2010-06-01,"Residential Consumption","Ohio","OH",5805 +2010-06-01,"Residential Consumption","Mississippi","MS",639 +2010-06-01,"Residential Consumption","South Dakota","SD",260 +2010-06-01,"Residential Consumption","Illinois","IL",9805 +2010-06-01,"Residential Consumption","Rhode Island","RI",417 +2010-06-01,"Residential Consumption","Vermont","VT",95 +2010-06-01,"Residential Consumption","Virginia","VA",1769 +2010-06-01,"Residential Consumption","New Mexico","NM",1081 +2010-06-01,"Residential Consumption","North Dakota","ND",217 +2010-06-01,"Residential Consumption","Montana","MT",814 +2010-06-01,"Residential Consumption","Michigan","MI",7890 +2010-06-01,"Residential Consumption","Maine","ME",35 +2010-06-01,"Residential Consumption","Indiana","IN",2659 +2010-06-01,"Residential Consumption","New Hampshire","NH",199 +2010-06-01,"Residential Consumption","Washington","WA",3388 +2010-06-01,"Residential Consumption","Missouri","MO",2261 +2010-06-01,"Residential Consumption","California","CA",26822 +2010-06-01,"Residential Consumption","Alabama","AL",842 +2010-06-01,"Residential Consumption","Alaska","AK",667 +2010-06-01,"Residential Consumption","U.S.","U.S.",134038 +2010-06-01,"Residential Consumption","Oregon","OR",1937 +2010-06-01,"Residential Consumption","Maryland","MD",1766 +2010-06-01,"Residential Consumption","Georgia","GA",3316 +2010-06-01,"Residential Consumption","District of Columbia","DC",262 +2010-06-01,"Residential Consumption","Pennsylvania","PA",4803 +2010-06-01,"Residential Consumption","Florida","FL",769 +2010-06-01,"Residential Consumption","Kentucky","KY",896 +2010-06-01,"Residential Consumption","Kansas","KS",1516 +2010-06-01,"Residential Consumption","Oklahoma","OK",1486 +2010-06-01,"Residential Consumption","Arizona","AZ",1418 +2010-06-01,"Residential Consumption","Minnesota","MN",3059 +2010-06-01,"Residential Consumption","Arkansas","AR",775 +2010-06-01,"Residential Consumption","Colorado","CO",3152 +2010-06-01,"Residential Consumption","Wyoming","WY",494 +2010-06-01,"Residential Consumption","New York","NY",10723 +2010-06-01,"Residential Consumption","Texas","TX",6112 +2010-06-01,"Residential Consumption","Louisiana","LA",1330 +2010-06-01,"Residential Consumption","Utah","UT",2670 +2010-06-01,"Residential Consumption","Nevada","NV",1690 +2010-06-01,"Residential Consumption","Massachusetts","MA",3974 +2010-06-01,"Residential Consumption","Iowa","IA",1411 +2010-06-01,"Residential Consumption","Connecticut","CT",1185 +2010-06-01,"Residential Consumption","Wisconsin","WI",3203 +2010-06-01,"Residential Consumption","Idaho","ID",819 +2010-06-01,"Residential Consumption","North Carolina","NC",942 +2010-06-01,"Residential Consumption","Hawaii","HI",42 +2010-06-01,"Residential Consumption","Tennessee","TN",1206 +2010-06-01,"Residential Consumption","Nebraska","NE",1041 +2010-06-01,"Residential Consumption","New Jersey","NJ",5262 +2010-06-01,"Residential Consumption","Delaware","DE",228 +2010-06-01,"Residential Consumption","West Virginia","WV",399 +2010-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-06-01,"Vehicle Fuel Consumption","Texas","TX",192 +2010-06-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-06-01,"Vehicle Fuel Consumption","Michigan","MI",21 +2010-06-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-06-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-06-01,"Vehicle Fuel Consumption","New York","NY",295 +2010-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",20 +2010-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-06-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-06-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2010-06-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-06-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",60 +2010-06-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2356 +2010-06-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-06-01,"Vehicle Fuel Consumption","Colorado","CO",20 +2010-06-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-06-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-06-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-06-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-06-01,"Vehicle Fuel Consumption","Nevada","NV",69 +2010-06-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",12 +2010-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-06-01,"Vehicle Fuel Consumption","Oregon","OR",15 +2010-06-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-06-01,"Vehicle Fuel Consumption","Georgia","GA",75 +2010-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-06-01,"Vehicle Fuel Consumption","California","CA",1116 +2010-06-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2010-06-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2010-06-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-06-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-06-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-06-01,"Vehicle Fuel Consumption","Washington","WA",36 +2010-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-06-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-06-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-06-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-06-01,"Vehicle Fuel Consumption","Nebraska","NE",2 +2010-06-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-06-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-06-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2010-07-01,"Commercial Consumption","North Carolina","NC",1926 +2010-07-01,"Commercial Consumption","Minnesota","MN",2354 +2010-07-01,"Commercial Consumption","Maine","ME",215 +2010-07-01,"Commercial Consumption","Georgia","GA",2110 +2010-07-01,"Commercial Consumption","Idaho","ID",485 +2010-07-01,"Commercial Consumption","Nebraska","NE",1084 +2010-07-01,"Commercial Consumption","Louisiana","LA",1400 +2010-07-01,"Commercial Consumption","Washington","WA",2166 +2010-07-01,"Commercial Consumption","Oklahoma","OK",1424 +2010-07-01,"Commercial Consumption","Pennsylvania","PA",3999 +2010-07-01,"Commercial Consumption","Wisconsin","WI",2389 +2010-07-01,"Commercial Consumption","Kentucky","KY",1008 +2010-07-01,"Commercial Consumption","U.S.","U.S.",120183 +2010-07-01,"Commercial Consumption","Texas","TX",10241 +2010-07-01,"Commercial Consumption","California","CA",14990 +2010-07-01,"Commercial Consumption","Delaware","DE",597 +2010-07-01,"Commercial Consumption","Illinois","IL",6196 +2010-07-01,"Commercial Consumption","North Dakota","ND",245 +2010-07-01,"Commercial Consumption","Utah","UT",1137 +2010-07-01,"Commercial Consumption","Massachusetts","MA",2035 +2010-07-01,"Commercial Consumption","Kansas","KS",978 +2010-07-01,"Commercial Consumption","Tennessee","TN",1878 +2010-07-01,"Commercial Consumption","Indiana","IN",2043 +2010-07-01,"Commercial Consumption","South Carolina","SC",1195 +2010-07-01,"Commercial Consumption","New Jersey","NJ",7696 +2010-07-01,"Commercial Consumption","Florida","FL",3492 +2010-07-01,"Commercial Consumption","Rhode Island","RI",219 +2010-07-01,"Commercial Consumption","Alaska","AK",615 +2010-07-01,"Commercial Consumption","New York","NY",13292 +2010-07-01,"Commercial Consumption","Nevada","NV",1613 +2010-07-01,"Commercial Consumption","Michigan","MI",4571 +2010-07-01,"Commercial Consumption","Oregon","OR",1069 +2010-07-01,"Commercial Consumption","Virginia","VA",2757 +2010-07-01,"Commercial Consumption","Montana","MT",645 +2010-07-01,"Commercial Consumption","Vermont","VT",68 +2010-07-01,"Commercial Consumption","Hawaii","HI",156 +2010-07-01,"Commercial Consumption","Mississippi","MS",940 +2010-07-01,"Commercial Consumption","South Dakota","SD",309 +2010-07-01,"Commercial Consumption","New Hampshire","NH",243 +2010-07-01,"Commercial Consumption","Maryland","MD",1982 +2010-07-01,"Commercial Consumption","Iowa","IA",1772 +2010-07-01,"Commercial Consumption","Connecticut","CT",1723 +2010-07-01,"Commercial Consumption","Arizona","AZ",1807 +2010-07-01,"Commercial Consumption","District of Columbia","DC",754 +2010-07-01,"Commercial Consumption","Wyoming","WY",325 +2010-07-01,"Commercial Consumption","West Virginia","WV",1045 +2010-07-01,"Commercial Consumption","Colorado","CO",1566 +2010-07-01,"Commercial Consumption","New Mexico","NM",807 +2010-07-01,"Commercial Consumption","Missouri","MO",1682 +2010-07-01,"Commercial Consumption","Ohio","OH",4072 +2010-07-01,"Commercial Consumption","Arkansas","AR",1863 +2010-07-01,"Commercial Consumption","Alabama","AL",1006 +2010-07-01,"Delivered to Consumers","South Dakota","SD",4192 +2010-07-01,"Delivered to Consumers","Maryland","MD",14557 +2010-07-01,"Delivered to Consumers","Alaska","AK",4766 +2010-07-01,"Delivered to Consumers","Arkansas","AR",23271 +2010-07-01,"Delivered to Consumers","Wisconsin","WI",19767 +2010-07-01,"Delivered to Consumers","North Carolina","NC",21588 +2010-07-01,"Delivered to Consumers","Missouri","MO",15741 +2010-07-01,"Delivered to Consumers","South Carolina","SC",18669 +2010-07-01,"Delivered to Consumers","Hawaii","HI",234 +2010-07-01,"Delivered to Consumers","Virginia","VA",32467 +2010-07-01,"Delivered to Consumers","Texas","TX",289856 +2010-07-01,"Delivered to Consumers","Georgia","GA",42833 +2010-07-01,"Delivered to Consumers","North Dakota","ND",1888 +2010-07-01,"Delivered to Consumers","Minnesota","MN",22691 +2010-07-01,"Delivered to Consumers","U.S.","U.S.",1668244 +2010-07-01,"Delivered to Consumers","Vermont","VT",344 +2010-07-01,"Delivered to Consumers","Arizona","AZ",36376 +2010-07-01,"Delivered to Consumers","New Hampshire","NH",5299 +2010-07-01,"Delivered to Consumers","Illinois","IL",45283 +2010-07-01,"Delivered to Consumers","Rhode Island","RI",7001 +2010-07-01,"Delivered to Consumers","Oklahoma","OK",54022 +2010-07-01,"Delivered to Consumers","Idaho","ID",3563 +2010-07-01,"Delivered to Consumers","Tennessee","TN",14350 +2010-07-01,"Delivered to Consumers","Alabama","AL",44999 +2010-07-01,"Delivered to Consumers","Pennsylvania","PA",55378 +2010-07-01,"Delivered to Consumers","Mississippi","MS",39155 +2010-07-01,"Delivered to Consumers","Massachusetts","MA",32005 +2010-07-01,"Delivered to Consumers","Nevada","NV",25384 +2010-07-01,"Delivered to Consumers","New Jersey","NJ",42902 +2010-07-01,"Delivered to Consumers","Maine","ME",7216 +2010-07-01,"Delivered to Consumers","Louisiana","LA",107415 +2010-07-01,"Delivered to Consumers","West Virginia","WV",3898 +2010-07-01,"Delivered to Consumers","Kansas","KS",17150 +2010-07-01,"Delivered to Consumers","Nebraska","NE",9434 +2010-07-01,"Delivered to Consumers","District of Columbia","DC",1068 +2010-07-01,"Delivered to Consumers","New Mexico","NM",10848 +2010-07-01,"Delivered to Consumers","Ohio","OH",39163 +2010-07-01,"Delivered to Consumers","California","CA",162212 +2010-07-01,"Delivered to Consumers","Oregon","OR",14662 +2010-07-01,"Delivered to Consumers","Florida","FL",110010 +2010-07-01,"Delivered to Consumers","Indiana","IN",34420 +2010-07-01,"Delivered to Consumers","Delaware","DE",5861 +2010-07-01,"Delivered to Consumers","New York","NY",84749 +2010-07-01,"Delivered to Consumers","Montana","MT",2364 +2010-07-01,"Delivered to Consumers","Michigan","MI",38319 +2010-07-01,"Delivered to Consumers","Iowa","IA",19054 +2010-07-01,"Delivered to Consumers","Connecticut","CT",14836 +2010-07-01,"Delivered to Consumers","Colorado","CO",23405 +2010-07-01,"Delivered to Consumers","Washington","WA",17042 +2010-07-01,"Delivered to Consumers","Utah","UT",10126 +2010-07-01,"Delivered to Consumers","Wyoming","WY",3615 +2010-07-01,"Delivered to Consumers","Kentucky","KY",12797 +2010-07-01,"Electric Power Consumption","Washington","WA",7516 +2010-07-01,"Electric Power Consumption","South Carolina","SC",11253 +2010-07-01,"Electric Power Consumption","New York","NY",57123 +2010-07-01,"Electric Power Consumption","Illinois","IL",11666 +2010-07-01,"Electric Power Consumption","Kansas","KS",5553 +2010-07-01,"Electric Power Consumption","Nebraska","NE",902 +2010-07-01,"Electric Power Consumption","Maryland","MD",8565 +2010-07-01,"Electric Power Consumption","Minnesota","MN",6626 +2010-07-01,"Electric Power Consumption","West Virginia","WV",287 +2010-07-01,"Electric Power Consumption","Pennsylvania","PA",34048 +2010-07-01,"Electric Power Consumption","New Hampshire","NH",4510 +2010-07-01,"Electric Power Consumption","North Dakota","ND",0 +2010-07-01,"Electric Power Consumption","New Jersey","NJ",27075 +2010-07-01,"Electric Power Consumption","Kentucky","KY",3560 +2010-07-01,"Electric Power Consumption","Connecticut","CT",10500 +2010-07-01,"Electric Power Consumption","California","CA",64051 +2010-07-01,"Electric Power Consumption","Alabama","AL",32168 +2010-07-01,"Electric Power Consumption","Alaska","AK",2982 +2010-07-01,"Electric Power Consumption","North Carolina","NC",12003 +2010-07-01,"Electric Power Consumption","Mississippi","MS",28351 +2010-07-01,"Electric Power Consumption","Indiana","IN",9089 +2010-07-01,"Electric Power Consumption","Florida","FL",99787 +2010-07-01,"Electric Power Consumption","Colorado","CO",10452 +2010-07-01,"Electric Power Consumption","Oregon","OR",8245 +2010-07-01,"Electric Power Consumption","Maine","ME",4930 +2010-07-01,"Electric Power Consumption","Idaho","ID",784 +2010-07-01,"Electric Power Consumption","Texas","TX",150260 +2010-07-01,"Electric Power Consumption","Massachusetts","MA",24214 +2010-07-01,"Electric Power Consumption","Wisconsin","WI",7152 +2010-07-01,"Electric Power Consumption","Nevada","NV",21674 +2010-07-01,"Electric Power Consumption","Iowa","IA",3367 +2010-07-01,"Electric Power Consumption","South Dakota","SD",449 +2010-07-01,"Electric Power Consumption","Missouri","MO",7821 +2010-07-01,"Electric Power Consumption","Montana","MT",25 +2010-07-01,"Electric Power Consumption","Delaware","DE",4614 +2010-07-01,"Electric Power Consumption","Virginia","VA",21682 +2010-07-01,"Electric Power Consumption","New Mexico","NM",7792 +2010-07-01,"Electric Power Consumption","Louisiana","LA",33478 +2010-07-01,"Electric Power Consumption","Arkansas","AR",14801 +2010-07-01,"Electric Power Consumption","Rhode Island","RI",5900 +2010-07-01,"Electric Power Consumption","Oklahoma","OK",36597 +2010-07-01,"Electric Power Consumption","Wyoming","WY",31 +2010-07-01,"Electric Power Consumption","Tennessee","TN",4553 +2010-07-01,"Electric Power Consumption","Hawaii","HI",NA +2010-07-01,"Electric Power Consumption","Ohio","OH",9546 +2010-07-01,"Electric Power Consumption","Arizona","AZ",31990 +2010-07-01,"Electric Power Consumption","Georgia","GA",25582 +2010-07-01,"Electric Power Consumption","Utah","UT",4775 +2010-07-01,"Electric Power Consumption","Michigan","MI",18851 +2010-07-01,"Electric Power Consumption","Vermont","VT",5 +2010-07-01,"Electric Power Consumption","U.S.","U.S.",897182 +2010-07-01,"Industrial Consumption","Montana","MT",1228 +2010-07-01,"Industrial Consumption","Maryland","MD",2344 +2010-07-01,"Industrial Consumption","Massachusetts","MA",2355 +2010-07-01,"Industrial Consumption","Vermont","VT",198 +2010-07-01,"Industrial Consumption","Hawaii","HI",35 +2010-07-01,"Industrial Consumption","Oklahoma","OK",14784 +2010-07-01,"Industrial Consumption","Kansas","KS",9468 +2010-07-01,"Industrial Consumption","U.S.","U.S.",537138 +2010-07-01,"Industrial Consumption","South Carolina","SC",5739 +2010-07-01,"Industrial Consumption","Wyoming","WY",2971 +2010-07-01,"Industrial Consumption","Minnesota","MN",11342 +2010-07-01,"Industrial Consumption","Illinois","IL",19592 +2010-07-01,"Industrial Consumption","Washington","WA",5143 +2010-07-01,"Industrial Consumption","South Dakota","SD",3224 +2010-07-01,"Industrial Consumption","Arizona","AZ",1288 +2010-07-01,"Industrial Consumption","Alabama","AL",11083 +2010-07-01,"Industrial Consumption","Florida","FL",6026 +2010-07-01,"Industrial Consumption","Delaware","DE",455 +2010-07-01,"Industrial Consumption","North Carolina","NC",6773 +2010-07-01,"Industrial Consumption","Alaska","AK",538 +2010-07-01,"Industrial Consumption","Virginia","VA",6426 +2010-07-01,"Industrial Consumption","Iowa","IA",12716 +2010-07-01,"Industrial Consumption","Connecticut","CT",1623 +2010-07-01,"Industrial Consumption","Kentucky","KY",7385 +2010-07-01,"Industrial Consumption","North Dakota","ND",1470 +2010-07-01,"Industrial Consumption","Ohio","OH",20314 +2010-07-01,"Industrial Consumption","Oregon","OR",4188 +2010-07-01,"Industrial Consumption","New York","NY",5262 +2010-07-01,"Industrial Consumption","New Hampshire","NH",384 +2010-07-01,"Industrial Consumption","Indiana","IN",20872 +2010-07-01,"Industrial Consumption","Georgia","GA",11841 +2010-07-01,"Industrial Consumption","Louisiana","LA",71323 +2010-07-01,"Industrial Consumption","New Mexico","NM",1387 +2010-07-01,"Industrial Consumption","Utah","UT",2447 +2010-07-01,"Industrial Consumption","West Virginia","WV",2216 +2010-07-01,"Industrial Consumption","Idaho","ID",1849 +2010-07-01,"Industrial Consumption","Michigan","MI",8946 +2010-07-01,"Industrial Consumption","Rhode Island","RI",544 +2010-07-01,"Industrial Consumption","District of Columbia","DC",0 +2010-07-01,"Industrial Consumption","Colorado","CO",8523 +2010-07-01,"Industrial Consumption","Pennsylvania","PA",13329 +2010-07-01,"Industrial Consumption","Maine","ME",2044 +2010-07-01,"Industrial Consumption","California","CA",58568 +2010-07-01,"Industrial Consumption","Nebraska","NE",6704 +2010-07-01,"Industrial Consumption","Missouri","MO",4599 +2010-07-01,"Industrial Consumption","Nevada","NV",778 +2010-07-01,"Industrial Consumption","Mississippi","MS",9280 +2010-07-01,"Industrial Consumption","Arkansas","AR",5968 +2010-07-01,"Industrial Consumption","Texas","TX",123284 +2010-07-01,"Industrial Consumption","Wisconsin","WI",7792 +2010-07-01,"Industrial Consumption","Tennessee","TN",6882 +2010-07-01,"Industrial Consumption","New Jersey","NJ",3609 +2010-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",106759 +2010-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",50825 +2010-07-01,"Residential Consumption","Nebraska","NE",741 +2010-07-01,"Residential Consumption","North Dakota","ND",172 +2010-07-01,"Residential Consumption","Oklahoma","OK",1197 +2010-07-01,"Residential Consumption","Missouri","MO",1638 +2010-07-01,"Residential Consumption","West Virginia","WV",350 +2010-07-01,"Residential Consumption","Iowa","IA",1199 +2010-07-01,"Residential Consumption","Maryland","MD",1649 +2010-07-01,"Residential Consumption","New Mexico","NM",837 +2010-07-01,"Residential Consumption","Maine","ME",27 +2010-07-01,"Residential Consumption","Indiana","IN",2412 +2010-07-01,"Residential Consumption","Florida","FL",699 +2010-07-01,"Residential Consumption","Montana","MT",466 +2010-07-01,"Residential Consumption","Colorado","CO",2842 +2010-07-01,"Residential Consumption","California","CA",23450 +2010-07-01,"Residential Consumption","Wisconsin","WI",2429 +2010-07-01,"Residential Consumption","Vermont","VT",73 +2010-07-01,"Residential Consumption","Michigan","MI",5929 +2010-07-01,"Residential Consumption","Nevada","NV",1248 +2010-07-01,"Residential Consumption","U.S.","U.S.",111307 +2010-07-01,"Residential Consumption","Illinois","IL",7803 +2010-07-01,"Residential Consumption","Rhode Island","RI",332 +2010-07-01,"Residential Consumption","Connecticut","CT",987 +2010-07-01,"Residential Consumption","South Dakota","SD",210 +2010-07-01,"Residential Consumption","Minnesota","MN",2369 +2010-07-01,"Residential Consumption","Kentucky","KY",845 +2010-07-01,"Residential Consumption","New York","NY",8767 +2010-07-01,"Residential Consumption","Texas","TX",5872 +2010-07-01,"Residential Consumption","Oregon","OR",1144 +2010-07-01,"Residential Consumption","Kansas","KS",1150 +2010-07-01,"Residential Consumption","South Carolina","SC",481 +2010-07-01,"Residential Consumption","North Carolina","NC",883 +2010-07-01,"Residential Consumption","Mississippi","MS",584 +2010-07-01,"Residential Consumption","Louisiana","LA",1213 +2010-07-01,"Residential Consumption","Virginia","VA",1591 +2010-07-01,"Residential Consumption","Utah","UT",1749 +2010-07-01,"Residential Consumption","District of Columbia","DC",239 +2010-07-01,"Residential Consumption","Pennsylvania","PA",3977 +2010-07-01,"Residential Consumption","Idaho","ID",439 +2010-07-01,"Residential Consumption","Arkansas","AR",638 +2010-07-01,"Residential Consumption","New Jersey","NJ",4510 +2010-07-01,"Residential Consumption","New Hampshire","NH",159 +2010-07-01,"Residential Consumption","Alaska","AK",630 +2010-07-01,"Residential Consumption","Wyoming","WY",288 +2010-07-01,"Residential Consumption","Ohio","OH",5218 +2010-07-01,"Residential Consumption","Georgia","GA",3221 +2010-07-01,"Residential Consumption","Delaware","DE",195 +2010-07-01,"Residential Consumption","Arizona","AZ",1121 +2010-07-01,"Residential Consumption","Hawaii","HI",43 +2010-07-01,"Residential Consumption","Tennessee","TN",1036 +2010-07-01,"Residential Consumption","Massachusetts","MA",3339 +2010-07-01,"Residential Consumption","Washington","WA",2180 +2010-07-01,"Residential Consumption","Alabama","AL",733 +2010-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-07-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2010-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2010-07-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-07-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2010-07-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-07-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-07-01,"Vehicle Fuel Consumption","Illinois","IL",25 +2010-07-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-07-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-07-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-07-01,"Vehicle Fuel Consumption","Washington","WA",37 +2010-07-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2010-07-01,"Vehicle Fuel Consumption","Texas","TX",198 +2010-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",13 +2010-07-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-07-01,"Vehicle Fuel Consumption","Michigan","MI",22 +2010-07-01,"Vehicle Fuel Consumption","Georgia","GA",78 +2010-07-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-07-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-07-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-07-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-07-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-07-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-07-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2010-07-01,"Vehicle Fuel Consumption","Arizona","AZ",171 +2010-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-07-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-07-01,"Vehicle Fuel Consumption","California","CA",1153 +2010-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-07-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-07-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-07-01,"Vehicle Fuel Consumption","Nevada","NV",71 +2010-07-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-07-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-07-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-07-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-07-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2010-07-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2010-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-07-01,"Vehicle Fuel Consumption","New York","NY",305 +2010-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-07-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2434 +2010-08-01,"Commercial Consumption","Missouri","MO",1793 +2010-08-01,"Commercial Consumption","Massachusetts","MA",2815 +2010-08-01,"Commercial Consumption","New Jersey","NJ",10341 +2010-08-01,"Commercial Consumption","Texas","TX",10150 +2010-08-01,"Commercial Consumption","Georgia","GA",2104 +2010-08-01,"Commercial Consumption","Vermont","VT",71 +2010-08-01,"Commercial Consumption","Rhode Island","RI",291 +2010-08-01,"Commercial Consumption","Connecticut","CT",1947 +2010-08-01,"Commercial Consumption","Nebraska","NE",831 +2010-08-01,"Commercial Consumption","Utah","UT",1012 +2010-08-01,"Commercial Consumption","New Hampshire","NH",266 +2010-08-01,"Commercial Consumption","Iowa","IA",1698 +2010-08-01,"Commercial Consumption","District of Columbia","DC",759 +2010-08-01,"Commercial Consumption","Kentucky","KY",1064 +2010-08-01,"Commercial Consumption","New York","NY",14581 +2010-08-01,"Commercial Consumption","Delaware","DE",641 +2010-08-01,"Commercial Consumption","Illinois","IL",6448 +2010-08-01,"Commercial Consumption","North Dakota","ND",287 +2010-08-01,"Commercial Consumption","Wisconsin","WI",2385 +2010-08-01,"Commercial Consumption","South Dakota","SD",283 +2010-08-01,"Commercial Consumption","U.S.","U.S.",126673 +2010-08-01,"Commercial Consumption","Florida","FL",3479 +2010-08-01,"Commercial Consumption","Michigan","MI",4486 +2010-08-01,"Commercial Consumption","West Virginia","WV",1111 +2010-08-01,"Commercial Consumption","North Carolina","NC",2092 +2010-08-01,"Commercial Consumption","Minnesota","MN",2599 +2010-08-01,"Commercial Consumption","New Mexico","NM",779 +2010-08-01,"Commercial Consumption","Arkansas","AR",1962 +2010-08-01,"Commercial Consumption","Alabama","AL",1038 +2010-08-01,"Commercial Consumption","Nevada","NV",1585 +2010-08-01,"Commercial Consumption","Indiana","IN",2032 +2010-08-01,"Commercial Consumption","Virginia","VA",2489 +2010-08-01,"Commercial Consumption","Montana","MT",637 +2010-08-01,"Commercial Consumption","Ohio","OH",4390 +2010-08-01,"Commercial Consumption","Alaska","AK",685 +2010-08-01,"Commercial Consumption","Arizona","AZ",1672 +2010-08-01,"Commercial Consumption","Tennessee","TN",1725 +2010-08-01,"Commercial Consumption","Louisiana","LA",1433 +2010-08-01,"Commercial Consumption","Wyoming","WY",290 +2010-08-01,"Commercial Consumption","Washington","WA",2124 +2010-08-01,"Commercial Consumption","South Carolina","SC",1212 +2010-08-01,"Commercial Consumption","Colorado","CO",1765 +2010-08-01,"Commercial Consumption","Pennsylvania","PA",4368 +2010-08-01,"Commercial Consumption","Maine","ME",218 +2010-08-01,"Commercial Consumption","Kansas","KS",956 +2010-08-01,"Commercial Consumption","Hawaii","HI",150 +2010-08-01,"Commercial Consumption","California","CA",14858 +2010-08-01,"Commercial Consumption","Oregon","OR",961 +2010-08-01,"Commercial Consumption","Oklahoma","OK",1316 +2010-08-01,"Commercial Consumption","Maryland","MD",3088 +2010-08-01,"Commercial Consumption","Idaho","ID",457 +2010-08-01,"Commercial Consumption","Mississippi","MS",950 +2010-08-01,"Delivered to Consumers","Indiana","IN",35059 +2010-08-01,"Delivered to Consumers","Rhode Island","RI",7886 +2010-08-01,"Delivered to Consumers","Missouri","MO",16625 +2010-08-01,"Delivered to Consumers","Massachusetts","MA",31238 +2010-08-01,"Delivered to Consumers","Arizona","AZ",37833 +2010-08-01,"Delivered to Consumers","Washington","WA",22487 +2010-08-01,"Delivered to Consumers","North Dakota","ND",2454 +2010-08-01,"Delivered to Consumers","Minnesota","MN",24698 +2010-08-01,"Delivered to Consumers","New Mexico","NM",11123 +2010-08-01,"Delivered to Consumers","South Dakota","SD",4529 +2010-08-01,"Delivered to Consumers","Hawaii","HI",225 +2010-08-01,"Delivered to Consumers","Alaska","AK",5278 +2010-08-01,"Delivered to Consumers","Tennessee","TN",13862 +2010-08-01,"Delivered to Consumers","Ohio","OH",39225 +2010-08-01,"Delivered to Consumers","New Jersey","NJ",40760 +2010-08-01,"Delivered to Consumers","Louisiana","LA",111585 +2010-08-01,"Delivered to Consumers","West Virginia","WV",4182 +2010-08-01,"Delivered to Consumers","Kentucky","KY",13651 +2010-08-01,"Delivered to Consumers","Connecticut","CT",13482 +2010-08-01,"Delivered to Consumers","Arkansas","AR",25745 +2010-08-01,"Delivered to Consumers","Nebraska","NE",10323 +2010-08-01,"Delivered to Consumers","Illinois","IL",46405 +2010-08-01,"Delivered to Consumers","Iowa","IA",18316 +2010-08-01,"Delivered to Consumers","Nevada","NV",21739 +2010-08-01,"Delivered to Consumers","Utah","UT",9782 +2010-08-01,"Delivered to Consumers","Delaware","DE",4824 +2010-08-01,"Delivered to Consumers","Wyoming","WY",3337 +2010-08-01,"Delivered to Consumers","Montana","MT",2265 +2010-08-01,"Delivered to Consumers","Colorado","CO",22245 +2010-08-01,"Delivered to Consumers","Texas","TX",316480 +2010-08-01,"Delivered to Consumers","Georgia","GA",44765 +2010-08-01,"Delivered to Consumers","New Hampshire","NH",5445 +2010-08-01,"Delivered to Consumers","New York","NY",79660 +2010-08-01,"Delivered to Consumers","Idaho","ID",4355 +2010-08-01,"Delivered to Consumers","Alabama","AL",48442 +2010-08-01,"Delivered to Consumers","Wisconsin","WI",20798 +2010-08-01,"Delivered to Consumers","Pennsylvania","PA",51433 +2010-08-01,"Delivered to Consumers","Maine","ME",7070 +2010-08-01,"Delivered to Consumers","Florida","FL",110242 +2010-08-01,"Delivered to Consumers","Oklahoma","OK",57888 +2010-08-01,"Delivered to Consumers","Kansas","KS",18316 +2010-08-01,"Delivered to Consumers","Michigan","MI",37119 +2010-08-01,"Delivered to Consumers","Virginia","VA",28314 +2010-08-01,"Delivered to Consumers","South Carolina","SC",19130 +2010-08-01,"Delivered to Consumers","Oregon","OR",18188 +2010-08-01,"Delivered to Consumers","District of Columbia","DC",1059 +2010-08-01,"Delivered to Consumers","U.S.","U.S.",1718550 +2010-08-01,"Delivered to Consumers","Vermont","VT",335 +2010-08-01,"Delivered to Consumers","Maryland","MD",11415 +2010-08-01,"Delivered to Consumers","North Carolina","NC",20403 +2010-08-01,"Delivered to Consumers","Mississippi","MS",41393 +2010-08-01,"Delivered to Consumers","California","CA",175137 +2010-08-01,"Electric Power Consumption","Tennessee","TN",3829 +2010-08-01,"Electric Power Consumption","Nebraska","NE",1436 +2010-08-01,"Electric Power Consumption","Missouri","MO",8418 +2010-08-01,"Electric Power Consumption","Hawaii","HI",NA +2010-08-01,"Electric Power Consumption","Arizona","AZ",33649 +2010-08-01,"Electric Power Consumption","Oklahoma","OK",40946 +2010-08-01,"Electric Power Consumption","Wisconsin","WI",7624 +2010-08-01,"Electric Power Consumption","South Dakota","SD",765 +2010-08-01,"Electric Power Consumption","Maryland","MD",5565 +2010-08-01,"Electric Power Consumption","Delaware","DE",3574 +2010-08-01,"Electric Power Consumption","Connecticut","CT",8895 +2010-08-01,"Electric Power Consumption","California","CA",76275 +2010-08-01,"Electric Power Consumption","Louisiana","LA",39507 +2010-08-01,"Electric Power Consumption","Arkansas","AR",17112 +2010-08-01,"Electric Power Consumption","North Dakota","ND",0 +2010-08-01,"Electric Power Consumption","Indiana","IN",8741 +2010-08-01,"Electric Power Consumption","Florida","FL",99861 +2010-08-01,"Electric Power Consumption","Washington","WA",13427 +2010-08-01,"Electric Power Consumption","South Carolina","SC",11420 +2010-08-01,"Electric Power Consumption","Kansas","KS",6136 +2010-08-01,"Electric Power Consumption","Nevada","NV",18189 +2010-08-01,"Electric Power Consumption","Wyoming","WY",37 +2010-08-01,"Electric Power Consumption","Vermont","VT",2 +2010-08-01,"Electric Power Consumption","New Mexico","NM",8068 +2010-08-01,"Electric Power Consumption","Colorado","CO",9298 +2010-08-01,"Electric Power Consumption","New York","NY",51302 +2010-08-01,"Electric Power Consumption","Michigan","MI",18151 +2010-08-01,"Electric Power Consumption","Kentucky","KY",3949 +2010-08-01,"Electric Power Consumption","Alaska","AK",3312 +2010-08-01,"Electric Power Consumption","New Jersey","NJ",22183 +2010-08-01,"Electric Power Consumption","Rhode Island","RI",6563 +2010-08-01,"Electric Power Consumption","Utah","UT",4853 +2010-08-01,"Electric Power Consumption","Massachusetts","MA",21399 +2010-08-01,"Electric Power Consumption","West Virginia","WV",360 +2010-08-01,"Electric Power Consumption","Pennsylvania","PA",28780 +2010-08-01,"Electric Power Consumption","Iowa","IA",3093 +2010-08-01,"Electric Power Consumption","Maine","ME",4817 +2010-08-01,"Electric Power Consumption","New Hampshire","NH",4601 +2010-08-01,"Electric Power Consumption","Virginia","VA",18204 +2010-08-01,"Electric Power Consumption","Idaho","ID",1588 +2010-08-01,"Electric Power Consumption","Texas","TX",180946 +2010-08-01,"Electric Power Consumption","Oregon","OR",12010 +2010-08-01,"Electric Power Consumption","Minnesota","MN",7186 +2010-08-01,"Electric Power Consumption","Illinois","IL",12470 +2010-08-01,"Electric Power Consumption","U.S.","U.S.",943002 +2010-08-01,"Electric Power Consumption","Ohio","OH",10740 +2010-08-01,"Electric Power Consumption","Montana","MT",7 +2010-08-01,"Electric Power Consumption","Georgia","GA",27114 +2010-08-01,"Electric Power Consumption","North Carolina","NC",10299 +2010-08-01,"Electric Power Consumption","Mississippi","MS",31018 +2010-08-01,"Electric Power Consumption","Alabama","AL",35283 +2010-08-01,"Industrial Consumption","Montana","MT",1255 +2010-08-01,"Industrial Consumption","Maryland","MD",1382 +2010-08-01,"Industrial Consumption","Oklahoma","OK",14544 +2010-08-01,"Industrial Consumption","Utah","UT",2432 +2010-08-01,"Industrial Consumption","Nebraska","NE",7347 +2010-08-01,"Industrial Consumption","Connecticut","CT",1632 +2010-08-01,"Industrial Consumption","Kentucky","KY",7797 +2010-08-01,"Industrial Consumption","Indiana","IN",21787 +2010-08-01,"Industrial Consumption","Rhode Island","RI",556 +2010-08-01,"Industrial Consumption","Missouri","MO",4792 +2010-08-01,"Industrial Consumption","Louisiana","LA",69492 +2010-08-01,"Industrial Consumption","New York","NY",5236 +2010-08-01,"Industrial Consumption","Virginia","VA",6335 +2010-08-01,"Industrial Consumption","New Hampshire","NH",396 +2010-08-01,"Industrial Consumption","South Dakota","SD",3286 +2010-08-01,"Industrial Consumption","U.S.","U.S.",539366 +2010-08-01,"Industrial Consumption","California","CA",60767 +2010-08-01,"Industrial Consumption","Alabama","AL",11404 +2010-08-01,"Industrial Consumption","Tennessee","TN",7350 +2010-08-01,"Industrial Consumption","Florida","FL",6228 +2010-08-01,"Industrial Consumption","New Mexico","NM",1434 +2010-08-01,"Industrial Consumption","Minnesota","MN",12425 +2010-08-01,"Industrial Consumption","Iowa","IA",12418 +2010-08-01,"Industrial Consumption","Kansas","KS",10215 +2010-08-01,"Industrial Consumption","Nevada","NV",793 +2010-08-01,"Industrial Consumption","South Carolina","SC",6074 +2010-08-01,"Industrial Consumption","West Virginia","WV",2324 +2010-08-01,"Industrial Consumption","Michigan","MI",9104 +2010-08-01,"Industrial Consumption","Alaska","AK",671 +2010-08-01,"Industrial Consumption","North Dakota","ND",1967 +2010-08-01,"Industrial Consumption","Colorado","CO",8080 +2010-08-01,"Industrial Consumption","Arizona","AZ",1309 +2010-08-01,"Industrial Consumption","Pennsylvania","PA",14271 +2010-08-01,"Industrial Consumption","Oregon","OR",4267 +2010-08-01,"Industrial Consumption","Arkansas","AR",6046 +2010-08-01,"Industrial Consumption","New Jersey","NJ",3432 +2010-08-01,"Industrial Consumption","North Carolina","NC",7105 +2010-08-01,"Industrial Consumption","Massachusetts","MA",2621 +2010-08-01,"Industrial Consumption","Washington","WA",4972 +2010-08-01,"Industrial Consumption","Vermont","VT",198 +2010-08-01,"Industrial Consumption","Idaho","ID",1885 +2010-08-01,"Industrial Consumption","Hawaii","HI",33 +2010-08-01,"Industrial Consumption","Ohio","OH",19295 +2010-08-01,"Industrial Consumption","Mississippi","MS",8882 +2010-08-01,"Industrial Consumption","Maine","ME",2007 +2010-08-01,"Industrial Consumption","Texas","TX",119976 +2010-08-01,"Industrial Consumption","Wyoming","WY",2780 +2010-08-01,"Industrial Consumption","Wisconsin","WI",8311 +2010-08-01,"Industrial Consumption","Illinois","IL",19836 +2010-08-01,"Industrial Consumption","Delaware","DE",418 +2010-08-01,"Industrial Consumption","Georgia","GA",12197 +2010-08-01,"Industrial Consumption","District of Columbia","DC",0 +2010-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",108019 +2010-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",52357 +2010-08-01,"Residential Consumption","Virginia","VA",1274 +2010-08-01,"Residential Consumption","Kansas","KS",1009 +2010-08-01,"Residential Consumption","Ohio","OH",4788 +2010-08-01,"Residential Consumption","Vermont","VT",64 +2010-08-01,"Residential Consumption","Tennessee","TN",956 +2010-08-01,"Residential Consumption","Idaho","ID",420 +2010-08-01,"Residential Consumption","Mississippi","MS",542 +2010-08-01,"Residential Consumption","Louisiana","LA",1152 +2010-08-01,"Residential Consumption","South Dakota","SD",196 +2010-08-01,"Residential Consumption","Minnesota","MN",2486 +2010-08-01,"Residential Consumption","Pennsylvania","PA",3989 +2010-08-01,"Residential Consumption","Maine","ME",28 +2010-08-01,"Residential Consumption","North Dakota","ND",199 +2010-08-01,"Residential Consumption","Missouri","MO",1622 +2010-08-01,"Residential Consumption","West Virginia","WV",387 +2010-08-01,"Residential Consumption","U.S.","U.S.",107074 +2010-08-01,"Residential Consumption","North Carolina","NC",904 +2010-08-01,"Residential Consumption","Nevada","NV",1102 +2010-08-01,"Residential Consumption","Colorado","CO",3081 +2010-08-01,"Residential Consumption","Washington","WA",1927 +2010-08-01,"Residential Consumption","Delaware","DE",192 +2010-08-01,"Residential Consumption","New York","NY",8236 +2010-08-01,"Residential Consumption","Texas","TX",5211 +2010-08-01,"Residential Consumption","South Carolina","SC",424 +2010-08-01,"Residential Consumption","Utah","UT",1469 +2010-08-01,"Residential Consumption","Maryland","MD",1363 +2010-08-01,"Residential Consumption","New Hampshire","NH",180 +2010-08-01,"Residential Consumption","Oklahoma","OK",1061 +2010-08-01,"Residential Consumption","Arizona","AZ",1033 +2010-08-01,"Residential Consumption","Illinois","IL",7626 +2010-08-01,"Residential Consumption","Oregon","OR",934 +2010-08-01,"Residential Consumption","Nebraska","NE",705 +2010-08-01,"Residential Consumption","District of Columbia","DC",224 +2010-08-01,"Residential Consumption","Indiana","IN",2494 +2010-08-01,"Residential Consumption","New Jersey","NJ",4790 +2010-08-01,"Residential Consumption","Montana","MT",365 +2010-08-01,"Residential Consumption","Alabama","AL",708 +2010-08-01,"Residential Consumption","Rhode Island","RI",467 +2010-08-01,"Residential Consumption","Iowa","IA",1107 +2010-08-01,"Residential Consumption","Georgia","GA",3272 +2010-08-01,"Residential Consumption","Hawaii","HI",41 +2010-08-01,"Residential Consumption","Connecticut","CT",1004 +2010-08-01,"Residential Consumption","Wisconsin","WI",2472 +2010-08-01,"Residential Consumption","Michigan","MI",5357 +2010-08-01,"Residential Consumption","New Mexico","NM",817 +2010-08-01,"Residential Consumption","Florida","FL",669 +2010-08-01,"Residential Consumption","Massachusetts","MA",4341 +2010-08-01,"Residential Consumption","Arkansas","AR",625 +2010-08-01,"Residential Consumption","Kentucky","KY",840 +2010-08-01,"Residential Consumption","California","CA",22085 +2010-08-01,"Residential Consumption","Alaska","AK",607 +2010-08-01,"Residential Consumption","Wyoming","WY",228 +2010-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-08-01,"Vehicle Fuel Consumption","Nevada","NV",71 +2010-08-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-08-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2010-08-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-08-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-08-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-08-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-08-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-08-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-08-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-08-01,"Vehicle Fuel Consumption","Arizona","AZ",171 +2010-08-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-08-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",13 +2010-08-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2010-08-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2010-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-08-01,"Vehicle Fuel Consumption","Michigan","MI",22 +2010-08-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-08-01,"Vehicle Fuel Consumption","California","CA",1153 +2010-08-01,"Vehicle Fuel Consumption","Washington","WA",37 +2010-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-08-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2010-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-08-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-08-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2010-08-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2434 +2010-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-08-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-08-01,"Vehicle Fuel Consumption","Georgia","GA",78 +2010-08-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-08-01,"Vehicle Fuel Consumption","Illinois","IL",25 +2010-08-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-08-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-08-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-08-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-08-01,"Vehicle Fuel Consumption","New York","NY",305 +2010-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2010-08-01,"Vehicle Fuel Consumption","Texas","TX",198 +2010-08-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-08-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-08-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2010-09-01,"Commercial Consumption","North Carolina","NC",2433 +2010-09-01,"Commercial Consumption","New Mexico","NM",791 +2010-09-01,"Commercial Consumption","Oregon","OR",950 +2010-09-01,"Commercial Consumption","Oklahoma","OK",1379 +2010-09-01,"Commercial Consumption","Pennsylvania","PA",4516 +2010-09-01,"Commercial Consumption","Wisconsin","WI",2891 +2010-09-01,"Commercial Consumption","Kentucky","KY",1203 +2010-09-01,"Commercial Consumption","Texas","TX",10677 +2010-09-01,"Commercial Consumption","Iowa","IA",1895 +2010-09-01,"Commercial Consumption","Michigan","MI",5046 +2010-09-01,"Commercial Consumption","South Carolina","SC",1246 +2010-09-01,"Commercial Consumption","U.S.","U.S.",132944 +2010-09-01,"Commercial Consumption","Georgia","GA",2094 +2010-09-01,"Commercial Consumption","Idaho","ID",620 +2010-09-01,"Commercial Consumption","Nebraska","NE",880 +2010-09-01,"Commercial Consumption","Delaware","DE",569 +2010-09-01,"Commercial Consumption","Nevada","NV",1625 +2010-09-01,"Commercial Consumption","Louisiana","LA",1508 +2010-09-01,"Commercial Consumption","Utah","UT",1110 +2010-09-01,"Commercial Consumption","New Jersey","NJ",9555 +2010-09-01,"Commercial Consumption","New York","NY",12956 +2010-09-01,"Commercial Consumption","Indiana","IN",2639 +2010-09-01,"Commercial Consumption","North Dakota","ND",357 +2010-09-01,"Commercial Consumption","Missouri","MO",1902 +2010-09-01,"Commercial Consumption","Massachusetts","MA",2279 +2010-09-01,"Commercial Consumption","Montana","MT",663 +2010-09-01,"Commercial Consumption","Maryland","MD",2787 +2010-09-01,"Commercial Consumption","Florida","FL",3416 +2010-09-01,"Commercial Consumption","Vermont","VT",79 +2010-09-01,"Commercial Consumption","Ohio","OH",5014 +2010-09-01,"Commercial Consumption","Alabama","AL",983 +2010-09-01,"Commercial Consumption","Illinois","IL",7447 +2010-09-01,"Commercial Consumption","District of Columbia","DC",773 +2010-09-01,"Commercial Consumption","Minnesota","MN",2488 +2010-09-01,"Commercial Consumption","South Dakota","SD",363 +2010-09-01,"Commercial Consumption","Rhode Island","RI",388 +2010-09-01,"Commercial Consumption","Alaska","AK",828 +2010-09-01,"Commercial Consumption","Connecticut","CT",1787 +2010-09-01,"Commercial Consumption","Arizona","AZ",1766 +2010-09-01,"Commercial Consumption","Tennessee","TN",1962 +2010-09-01,"Commercial Consumption","Wyoming","WY",333 +2010-09-01,"Commercial Consumption","West Virginia","WV",1071 +2010-09-01,"Commercial Consumption","Maine","ME",223 +2010-09-01,"Commercial Consumption","California","CA",18544 +2010-09-01,"Commercial Consumption","Arkansas","AR",2081 +2010-09-01,"Commercial Consumption","Mississippi","MS",940 +2010-09-01,"Commercial Consumption","Washington","WA",2044 +2010-09-01,"Commercial Consumption","Kansas","KS",813 +2010-09-01,"Commercial Consumption","Hawaii","HI",135 +2010-09-01,"Commercial Consumption","Colorado","CO",1718 +2010-09-01,"Commercial Consumption","Virginia","VA",2903 +2010-09-01,"Commercial Consumption","New Hampshire","NH",270 +2010-09-01,"Delivered to Consumers","Montana","MT",2706 +2010-09-01,"Delivered to Consumers","Kansas","KS",13060 +2010-09-01,"Delivered to Consumers","Iowa","IA",16766 +2010-09-01,"Delivered to Consumers","Colorado","CO",18834 +2010-09-01,"Delivered to Consumers","South Carolina","SC",17307 +2010-09-01,"Delivered to Consumers","New Hampshire","NH",5377 +2010-09-01,"Delivered to Consumers","Utah","UT",9377 +2010-09-01,"Delivered to Consumers","U.S.","U.S.",1485061 +2010-09-01,"Delivered to Consumers","New Mexico","NM",9061 +2010-09-01,"Delivered to Consumers","Wyoming","WY",3966 +2010-09-01,"Delivered to Consumers","Hawaii","HI",196 +2010-09-01,"Delivered to Consumers","Alabama","AL",38716 +2010-09-01,"Delivered to Consumers","Massachusetts","MA",26452 +2010-09-01,"Delivered to Consumers","Nevada","NV",18963 +2010-09-01,"Delivered to Consumers","Florida","FL",106798 +2010-09-01,"Delivered to Consumers","Maryland","MD",9836 +2010-09-01,"Delivered to Consumers","Pennsylvania","PA",47468 +2010-09-01,"Delivered to Consumers","California","CA",172976 +2010-09-01,"Delivered to Consumers","Oregon","OR",17657 +2010-09-01,"Delivered to Consumers","Rhode Island","RI",6545 +2010-09-01,"Delivered to Consumers","Idaho","ID",4520 +2010-09-01,"Delivered to Consumers","Connecticut","CT",12628 +2010-09-01,"Delivered to Consumers","Arkansas","AR",18442 +2010-09-01,"Delivered to Consumers","Wisconsin","WI",16423 +2010-09-01,"Delivered to Consumers","Nebraska","NE",8040 +2010-09-01,"Delivered to Consumers","Maine","ME",6451 +2010-09-01,"Delivered to Consumers","Washington","WA",21668 +2010-09-01,"Delivered to Consumers","Delaware","DE",3966 +2010-09-01,"Delivered to Consumers","West Virginia","WV",3654 +2010-09-01,"Delivered to Consumers","New York","NY",71635 +2010-09-01,"Delivered to Consumers","Michigan","MI",27492 +2010-09-01,"Delivered to Consumers","New Jersey","NJ",35585 +2010-09-01,"Delivered to Consumers","District of Columbia","DC",1090 +2010-09-01,"Delivered to Consumers","Virginia","VA",21392 +2010-09-01,"Delivered to Consumers","Mississippi","MS",30834 +2010-09-01,"Delivered to Consumers","Georgia","GA",34160 +2010-09-01,"Delivered to Consumers","Arizona","AZ",32306 +2010-09-01,"Delivered to Consumers","Oklahoma","OK",45115 +2010-09-01,"Delivered to Consumers","Tennessee","TN",11774 +2010-09-01,"Delivered to Consumers","Kentucky","KY",11493 +2010-09-01,"Delivered to Consumers","Louisiana","LA",101425 +2010-09-01,"Delivered to Consumers","North Dakota","ND",3082 +2010-09-01,"Delivered to Consumers","Indiana","IN",32659 +2010-09-01,"Delivered to Consumers","Vermont","VT",348 +2010-09-01,"Delivered to Consumers","Illinois","IL",39487 +2010-09-01,"Delivered to Consumers","South Dakota","SD",3871 +2010-09-01,"Delivered to Consumers","Alaska","AK",5311 +2010-09-01,"Delivered to Consumers","Ohio","OH",32669 +2010-09-01,"Delivered to Consumers","North Carolina","NC",16263 +2010-09-01,"Delivered to Consumers","Missouri","MO",10402 +2010-09-01,"Delivered to Consumers","Texas","TX",258383 +2010-09-01,"Delivered to Consumers","Minnesota","MN",20431 +2010-09-01,"Electric Power Consumption","New Mexico","NM",6028 +2010-09-01,"Electric Power Consumption","Louisiana","LA",28403 +2010-09-01,"Electric Power Consumption","Colorado","CO",6771 +2010-09-01,"Electric Power Consumption","Wyoming","WY",63 +2010-09-01,"Electric Power Consumption","North Carolina","NC",5803 +2010-09-01,"Electric Power Consumption","New Hampshire","NH",4535 +2010-09-01,"Electric Power Consumption","Montana","MT",49 +2010-09-01,"Electric Power Consumption","Washington","WA",12041 +2010-09-01,"Electric Power Consumption","Arkansas","AR",9548 +2010-09-01,"Electric Power Consumption","Texas","TX",124090 +2010-09-01,"Electric Power Consumption","Oregon","OR",11428 +2010-09-01,"Electric Power Consumption","West Virginia","WV",187 +2010-09-01,"Electric Power Consumption","Nebraska","NE",139 +2010-09-01,"Electric Power Consumption","Hawaii","HI",NA +2010-09-01,"Electric Power Consumption","Connecticut","CT",8296 +2010-09-01,"Electric Power Consumption","Arizona","AZ",27946 +2010-09-01,"Electric Power Consumption","Rhode Island","RI",5217 +2010-09-01,"Electric Power Consumption","Minnesota","MN",1518 +2010-09-01,"Electric Power Consumption","Massachusetts","MA",17385 +2010-09-01,"Electric Power Consumption","Kansas","KS",1955 +2010-09-01,"Electric Power Consumption","Pennsylvania","PA",24101 +2010-09-01,"Electric Power Consumption","Iowa","IA",506 +2010-09-01,"Electric Power Consumption","Indiana","IN",4265 +2010-09-01,"Electric Power Consumption","New Jersey","NJ",18061 +2010-09-01,"Electric Power Consumption","South Carolina","SC",9688 +2010-09-01,"Electric Power Consumption","Ohio","OH",3766 +2010-09-01,"Electric Power Consumption","Illinois","IL",2598 +2010-09-01,"Electric Power Consumption","Michigan","MI",6074 +2010-09-01,"Electric Power Consumption","Vermont","VT",6 +2010-09-01,"Electric Power Consumption","South Dakota","SD",50 +2010-09-01,"Electric Power Consumption","Maine","ME",4216 +2010-09-01,"Electric Power Consumption","Kentucky","KY",1439 +2010-09-01,"Electric Power Consumption","Georgia","GA",16787 +2010-09-01,"Electric Power Consumption","Virginia","VA",13407 +2010-09-01,"Electric Power Consumption","Oklahoma","OK",27479 +2010-09-01,"Electric Power Consumption","Tennessee","TN",1422 +2010-09-01,"Electric Power Consumption","Maryland","MD",3917 +2010-09-01,"Electric Power Consumption","Alabama","AL",25629 +2010-09-01,"Electric Power Consumption","Idaho","ID",1454 +2010-09-01,"Electric Power Consumption","Utah","UT",4255 +2010-09-01,"Electric Power Consumption","Wisconsin","WI",2189 +2010-09-01,"Electric Power Consumption","U.S.","U.S.",696723 +2010-09-01,"Electric Power Consumption","Florida","FL",97094 +2010-09-01,"Electric Power Consumption","California","CA",69752 +2010-09-01,"Electric Power Consumption","New York","NY",43251 +2010-09-01,"Electric Power Consumption","Nevada","NV",15224 +2010-09-01,"Electric Power Consumption","Missouri","MO",2310 +2010-09-01,"Electric Power Consumption","Mississippi","MS",20549 +2010-09-01,"Electric Power Consumption","North Dakota","ND",0 +2010-09-01,"Electric Power Consumption","Delaware","DE",2762 +2010-09-01,"Electric Power Consumption","Alaska","AK",3069 +2010-09-01,"Industrial Consumption","North Dakota","ND",2440 +2010-09-01,"Industrial Consumption","Maryland","MD",1326 +2010-09-01,"Industrial Consumption","Arizona","AZ",1312 +2010-09-01,"Industrial Consumption","Oregon","OR",4309 +2010-09-01,"Industrial Consumption","Alabama","AL",11437 +2010-09-01,"Industrial Consumption","West Virginia","WV",1961 +2010-09-01,"Industrial Consumption","Wyoming","WY",3273 +2010-09-01,"Industrial Consumption","District of Columbia","DC",0 +2010-09-01,"Industrial Consumption","Utah","UT",2385 +2010-09-01,"Industrial Consumption","Texas","TX",118060 +2010-09-01,"Industrial Consumption","Colorado","CO",7084 +2010-09-01,"Industrial Consumption","Washington","WA",5540 +2010-09-01,"Industrial Consumption","Ohio","OH",18039 +2010-09-01,"Industrial Consumption","Mississippi","MS",8765 +2010-09-01,"Industrial Consumption","Virginia","VA",3400 +2010-09-01,"Industrial Consumption","Iowa","IA",13080 +2010-09-01,"Industrial Consumption","Connecticut","CT",1591 +2010-09-01,"Industrial Consumption","U.S.","U.S.",535739 +2010-09-01,"Industrial Consumption","South Carolina","SC",5874 +2010-09-01,"Industrial Consumption","Nebraska","NE",6378 +2010-09-01,"Industrial Consumption","New Hampshire","NH",417 +2010-09-01,"Industrial Consumption","Georgia","GA",11821 +2010-09-01,"Industrial Consumption","Massachusetts","MA",2792 +2010-09-01,"Industrial Consumption","Missouri","MO",4456 +2010-09-01,"Industrial Consumption","California","CA",60774 +2010-09-01,"Industrial Consumption","Idaho","ID",1748 +2010-09-01,"Industrial Consumption","Indiana","IN",23324 +2010-09-01,"Industrial Consumption","Delaware","DE",454 +2010-09-01,"Industrial Consumption","Alaska","AK",642 +2010-09-01,"Industrial Consumption","Montana","MT",1427 +2010-09-01,"Industrial Consumption","Hawaii","HI",26 +2010-09-01,"Industrial Consumption","Oklahoma","OK",15115 +2010-09-01,"Industrial Consumption","South Dakota","SD",3185 +2010-09-01,"Industrial Consumption","Kansas","KS",9266 +2010-09-01,"Industrial Consumption","New York","NY",5181 +2010-09-01,"Industrial Consumption","Tennessee","TN",7345 +2010-09-01,"Industrial Consumption","North Carolina","NC",7014 +2010-09-01,"Industrial Consumption","Louisiana","LA",70298 +2010-09-01,"Industrial Consumption","New Mexico","NM",1388 +2010-09-01,"Industrial Consumption","Nevada","NV",818 +2010-09-01,"Industrial Consumption","Maine","ME",1980 +2010-09-01,"Industrial Consumption","Michigan","MI",9783 +2010-09-01,"Industrial Consumption","Kentucky","KY",7967 +2010-09-01,"Industrial Consumption","Illinois","IL",20377 +2010-09-01,"Industrial Consumption","Rhode Island","RI",537 +2010-09-01,"Industrial Consumption","Pennsylvania","PA",14224 +2010-09-01,"Industrial Consumption","Arkansas","AR",6167 +2010-09-01,"Industrial Consumption","Vermont","VT",194 +2010-09-01,"Industrial Consumption","Wisconsin","WI",8505 +2010-09-01,"Industrial Consumption","New Jersey","NJ",3318 +2010-09-01,"Industrial Consumption","Minnesota","MN",13334 +2010-09-01,"Industrial Consumption","Florida","FL",5608 +2010-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",107186 +2010-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",45244 +2010-09-01,"Residential Consumption","Ohio","OH",5838 +2010-09-01,"Residential Consumption","Michigan","MI",6567 +2010-09-01,"Residential Consumption","Kansas","KS",1026 +2010-09-01,"Residential Consumption","Washington","WA",2006 +2010-09-01,"Residential Consumption","Alaska","AK",771 +2010-09-01,"Residential Consumption","Connecticut","CT",951 +2010-09-01,"Residential Consumption","Virginia","VA",1671 +2010-09-01,"Residential Consumption","Maryland","MD",1789 +2010-09-01,"Residential Consumption","South Dakota","SD",274 +2010-09-01,"Residential Consumption","Massachusetts","MA",3935 +2010-09-01,"Residential Consumption","Delaware","DE",180 +2010-09-01,"Residential Consumption","Alabama","AL",658 +2010-09-01,"Residential Consumption","Mississippi","MS",580 +2010-09-01,"Residential Consumption","Utah","UT",1610 +2010-09-01,"Residential Consumption","Pennsylvania","PA",4603 +2010-09-01,"Residential Consumption","Indiana","IN",2427 +2010-09-01,"Residential Consumption","Illinois","IL",9041 +2010-09-01,"Residential Consumption","Hawaii","HI",35 +2010-09-01,"Residential Consumption","Nevada","NV",1227 +2010-09-01,"Residential Consumption","New Jersey","NJ",4639 +2010-09-01,"Residential Consumption","Missouri","MO",1733 +2010-09-01,"Residential Consumption","Iowa","IA",1285 +2010-09-01,"Residential Consumption","Minnesota","MN",3090 +2010-09-01,"Residential Consumption","New Hampshire","NH",153 +2010-09-01,"Residential Consumption","Kentucky","KY",884 +2010-09-01,"Residential Consumption","California","CA",22790 +2010-09-01,"Residential Consumption","West Virginia","WV",436 +2010-09-01,"Residential Consumption","Rhode Island","RI",396 +2010-09-01,"Residential Consumption","North Carolina","NC",1011 +2010-09-01,"Residential Consumption","District of Columbia","DC",244 +2010-09-01,"Residential Consumption","Arkansas","AR",644 +2010-09-01,"Residential Consumption","Colorado","CO",3242 +2010-09-01,"Residential Consumption","Wyoming","WY",295 +2010-09-01,"Residential Consumption","South Carolina","SC",498 +2010-09-01,"Residential Consumption","Louisiana","LA",1214 +2010-09-01,"Residential Consumption","Wisconsin","WI",2833 +2010-09-01,"Residential Consumption","Tennessee","TN",1043 +2010-09-01,"Residential Consumption","Nebraska","NE",641 +2010-09-01,"Residential Consumption","North Dakota","ND",284 +2010-09-01,"Residential Consumption","Idaho","ID",692 +2010-09-01,"Residential Consumption","Arizona","AZ",1116 +2010-09-01,"Residential Consumption","U.S.","U.S.",117299 +2010-09-01,"Residential Consumption","New York","NY",9952 +2010-09-01,"Residential Consumption","Texas","TX",5365 +2010-09-01,"Residential Consumption","Oregon","OR",955 +2010-09-01,"Residential Consumption","Vermont","VT",69 +2010-09-01,"Residential Consumption","Georgia","GA",3383 +2010-09-01,"Residential Consumption","New Mexico","NM",828 +2010-09-01,"Residential Consumption","Maine","ME",31 +2010-09-01,"Residential Consumption","Florida","FL",675 +2010-09-01,"Residential Consumption","Montana","MT",568 +2010-09-01,"Residential Consumption","Oklahoma","OK",1122 +2010-09-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",20 +2010-09-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-09-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-09-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-09-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-09-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-09-01,"Vehicle Fuel Consumption","New York","NY",295 +2010-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-09-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-09-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",60 +2010-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",12 +2010-09-01,"Vehicle Fuel Consumption","Georgia","GA",75 +2010-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-09-01,"Vehicle Fuel Consumption","California","CA",1116 +2010-09-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-09-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-09-01,"Vehicle Fuel Consumption","Nebraska","NE",2 +2010-09-01,"Vehicle Fuel Consumption","Nevada","NV",69 +2010-09-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2010-09-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-09-01,"Vehicle Fuel Consumption","Texas","TX",192 +2010-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-09-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-09-01,"Vehicle Fuel Consumption","Oregon","OR",15 +2010-09-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-09-01,"Vehicle Fuel Consumption","Colorado","CO",20 +2010-09-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2356 +2010-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-09-01,"Vehicle Fuel Consumption","Michigan","MI",21 +2010-09-01,"Vehicle Fuel Consumption","Washington","WA",36 +2010-09-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-09-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-09-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-09-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-09-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-09-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-09-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-09-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2010-09-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-09-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-09-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2010-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2010-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-10-01,"Commercial Consumption","Colorado","CO",3156 +2010-10-01,"Commercial Consumption","Massachusetts","MA",3603 +2010-10-01,"Commercial Consumption","Kentucky","KY",1690 +2010-10-01,"Commercial Consumption","Florida","FL",3890 +2010-10-01,"Commercial Consumption","Vermont","VT",161 +2010-10-01,"Commercial Consumption","Connecticut","CT",2232 +2010-10-01,"Commercial Consumption","South Carolina","SC",1479 +2010-10-01,"Commercial Consumption","Virginia","VA",4020 +2010-10-01,"Commercial Consumption","Missouri","MO",2985 +2010-10-01,"Commercial Consumption","Texas","TX",11477 +2010-10-01,"Commercial Consumption","Idaho","ID",903 +2010-10-01,"Commercial Consumption","Iowa","IA",2824 +2010-10-01,"Commercial Consumption","Nebraska","NE",1342 +2010-10-01,"Commercial Consumption","Arizona","AZ",1984 +2010-10-01,"Commercial Consumption","North Carolina","NC",3117 +2010-10-01,"Commercial Consumption","Minnesota","MN",4784 +2010-10-01,"Commercial Consumption","Pennsylvania","PA",8331 +2010-10-01,"Commercial Consumption","Montana","MT",1197 +2010-10-01,"Commercial Consumption","Kansas","KS",1072 +2010-10-01,"Commercial Consumption","Rhode Island","RI",546 +2010-10-01,"Commercial Consumption","Alaska","AK",1245 +2010-10-01,"Commercial Consumption","Arkansas","AR",2493 +2010-10-01,"Commercial Consumption","Delaware","DE",813 +2010-10-01,"Commercial Consumption","Indiana","IN",4475 +2010-10-01,"Commercial Consumption","Illinois","IL",10884 +2010-10-01,"Commercial Consumption","Wyoming","WY",636 +2010-10-01,"Commercial Consumption","Washington","WA",3937 +2010-10-01,"Commercial Consumption","Utah","UT",1992 +2010-10-01,"Commercial Consumption","District of Columbia","DC",1177 +2010-10-01,"Commercial Consumption","North Dakota","ND",543 +2010-10-01,"Commercial Consumption","Oregon","OR",1740 +2010-10-01,"Commercial Consumption","Oklahoma","OK",1471 +2010-10-01,"Commercial Consumption","Wisconsin","WI",4616 +2010-10-01,"Commercial Consumption","New Jersey","NJ",12638 +2010-10-01,"Commercial Consumption","U.S.","U.S.",185337 +2010-10-01,"Commercial Consumption","Alabama","AL",1179 +2010-10-01,"Commercial Consumption","New York","NY",19091 +2010-10-01,"Commercial Consumption","Mississippi","MS",1172 +2010-10-01,"Commercial Consumption","Michigan","MI",8094 +2010-10-01,"Commercial Consumption","West Virginia","WV",1474 +2010-10-01,"Commercial Consumption","Maryland","MD",4419 +2010-10-01,"Commercial Consumption","Ohio","OH",8075 +2010-10-01,"Commercial Consumption","Hawaii","HI",141 +2010-10-01,"Commercial Consumption","New Mexico","NM",999 +2010-10-01,"Commercial Consumption","South Dakota","SD",566 +2010-10-01,"Commercial Consumption","New Hampshire","NH",532 +2010-10-01,"Commercial Consumption","Nevada","NV",1893 +2010-10-01,"Commercial Consumption","Maine","ME",415 +2010-10-01,"Commercial Consumption","Georgia","GA",2837 +2010-10-01,"Commercial Consumption","California","CA",20568 +2010-10-01,"Commercial Consumption","Tennessee","TN",2803 +2010-10-01,"Commercial Consumption","Louisiana","LA",1623 +2010-10-01,"Delivered to Consumers","U.S.","U.S.",1506234 +2010-10-01,"Delivered to Consumers","Rhode Island","RI",7059 +2010-10-01,"Delivered to Consumers","New York","NY",74421 +2010-10-01,"Delivered to Consumers","Tennessee","TN",13835 +2010-10-01,"Delivered to Consumers","Pennsylvania","PA",53542 +2010-10-01,"Delivered to Consumers","Nebraska","NE",9624 +2010-10-01,"Delivered to Consumers","North Carolina","NC",17376 +2010-10-01,"Delivered to Consumers","Nevada","NV",17014 +2010-10-01,"Delivered to Consumers","Idaho","ID",5748 +2010-10-01,"Delivered to Consumers","Michigan","MI",38870 +2010-10-01,"Delivered to Consumers","Oregon","OR",18664 +2010-10-01,"Delivered to Consumers","Washington","WA",23399 +2010-10-01,"Delivered to Consumers","West Virginia","WV",4710 +2010-10-01,"Delivered to Consumers","Oklahoma","OK",34118 +2010-10-01,"Delivered to Consumers","Ohio","OH",48315 +2010-10-01,"Delivered to Consumers","Kentucky","KY",11545 +2010-10-01,"Delivered to Consumers","Mississippi","MS",24673 +2010-10-01,"Delivered to Consumers","Missouri","MO",12881 +2010-10-01,"Delivered to Consumers","Texas","TX",219954 +2010-10-01,"Delivered to Consumers","South Carolina","SC",15967 +2010-10-01,"Delivered to Consumers","Georgia","GA",29516 +2010-10-01,"Delivered to Consumers","North Dakota","ND",3268 +2010-10-01,"Delivered to Consumers","District of Columbia","DC",1882 +2010-10-01,"Delivered to Consumers","Indiana","IN",36835 +2010-10-01,"Delivered to Consumers","Delaware","DE",3953 +2010-10-01,"Delivered to Consumers","Vermont","VT",581 +2010-10-01,"Delivered to Consumers","Illinois","IL",49202 +2010-10-01,"Delivered to Consumers","Alabama","AL",36961 +2010-10-01,"Delivered to Consumers","Massachusetts","MA",27976 +2010-10-01,"Delivered to Consumers","New Hampshire","NH",4384 +2010-10-01,"Delivered to Consumers","Minnesota","MN",26480 +2010-10-01,"Delivered to Consumers","Utah","UT",11076 +2010-10-01,"Delivered to Consumers","Kansas","KS",11195 +2010-10-01,"Delivered to Consumers","Iowa","IA",19194 +2010-10-01,"Delivered to Consumers","Arkansas","AR",16462 +2010-10-01,"Delivered to Consumers","Colorado","CO",25519 +2010-10-01,"Delivered to Consumers","New Jersey","NJ",40371 +2010-10-01,"Delivered to Consumers","New Mexico","NM",7975 +2010-10-01,"Delivered to Consumers","Wyoming","WY",5163 +2010-10-01,"Delivered to Consumers","Maryland","MD",9748 +2010-10-01,"Delivered to Consumers","Wisconsin","WI",21523 +2010-10-01,"Delivered to Consumers","Virginia","VA",24100 +2010-10-01,"Delivered to Consumers","California","CA",191003 +2010-10-01,"Delivered to Consumers","Maine","ME",6321 +2010-10-01,"Delivered to Consumers","Louisiana","LA",94877 +2010-10-01,"Delivered to Consumers","Arizona","AZ",27058 +2010-10-01,"Delivered to Consumers","South Dakota","SD",4487 +2010-10-01,"Delivered to Consumers","Montana","MT",3979 +2010-10-01,"Delivered to Consumers","Hawaii","HI",208 +2010-10-01,"Delivered to Consumers","Alaska","AK",6881 +2010-10-01,"Delivered to Consumers","Connecticut","CT",12839 +2010-10-01,"Delivered to Consumers","Florida","FL",93504 +2010-10-01,"Electric Power Consumption","New Jersey","NJ",14545 +2010-10-01,"Electric Power Consumption","Iowa","IA",204 +2010-10-01,"Electric Power Consumption","Tennessee","TN",1584 +2010-10-01,"Electric Power Consumption","Ohio","OH",5657 +2010-10-01,"Electric Power Consumption","Delaware","DE",2324 +2010-10-01,"Electric Power Consumption","Connecticut","CT",7094 +2010-10-01,"Electric Power Consumption","New Mexico","NM",4657 +2010-10-01,"Electric Power Consumption","Colorado","CO",6849 +2010-10-01,"Electric Power Consumption","Michigan","MI",6876 +2010-10-01,"Electric Power Consumption","Kansas","KS",1358 +2010-10-01,"Electric Power Consumption","Arizona","AZ",22024 +2010-10-01,"Electric Power Consumption","South Carolina","SC",7610 +2010-10-01,"Electric Power Consumption","Oklahoma","OK",19147 +2010-10-01,"Electric Power Consumption","Minnesota","MN",2569 +2010-10-01,"Electric Power Consumption","West Virginia","WV",17 +2010-10-01,"Electric Power Consumption","North Carolina","NC",4621 +2010-10-01,"Electric Power Consumption","North Dakota","ND",0 +2010-10-01,"Electric Power Consumption","Indiana","IN",4232 +2010-10-01,"Electric Power Consumption","Georgia","GA",9472 +2010-10-01,"Electric Power Consumption","Louisiana","LA",20855 +2010-10-01,"Electric Power Consumption","Utah","UT",3582 +2010-10-01,"Electric Power Consumption","U.S.","U.S.",570363 +2010-10-01,"Electric Power Consumption","Maryland","MD",694 +2010-10-01,"Electric Power Consumption","California","CA",76902 +2010-10-01,"Electric Power Consumption","Alaska","AK",3517 +2010-10-01,"Electric Power Consumption","Arkansas","AR",6474 +2010-10-01,"Electric Power Consumption","Pennsylvania","PA",19980 +2010-10-01,"Electric Power Consumption","Wyoming","WY",49 +2010-10-01,"Electric Power Consumption","Mississippi","MS",13309 +2010-10-01,"Electric Power Consumption","Alabama","AL",22719 +2010-10-01,"Electric Power Consumption","Washington","WA",8267 +2010-10-01,"Electric Power Consumption","Oregon","OR",10111 +2010-10-01,"Electric Power Consumption","Vermont","VT",6 +2010-10-01,"Electric Power Consumption","Maine","ME",3493 +2010-10-01,"Electric Power Consumption","Virginia","VA",13553 +2010-10-01,"Electric Power Consumption","Idaho","ID",1440 +2010-10-01,"Electric Power Consumption","Texas","TX",90456 +2010-10-01,"Electric Power Consumption","Massachusetts","MA",13633 +2010-10-01,"Electric Power Consumption","Nevada","NV",12620 +2010-10-01,"Electric Power Consumption","Nebraska","NE",96 +2010-10-01,"Electric Power Consumption","Kentucky","KY",208 +2010-10-01,"Electric Power Consumption","Hawaii","HI",NA +2010-10-01,"Electric Power Consumption","New Hampshire","NH",2947 +2010-10-01,"Electric Power Consumption","Florida","FL",83333 +2010-10-01,"Electric Power Consumption","New York","NY",31458 +2010-10-01,"Electric Power Consumption","Rhode Island","RI",5020 +2010-10-01,"Electric Power Consumption","Illinois","IL",818 +2010-10-01,"Electric Power Consumption","Wisconsin","WI",1704 +2010-10-01,"Electric Power Consumption","South Dakota","SD",128 +2010-10-01,"Electric Power Consumption","Missouri","MO",2061 +2010-10-01,"Electric Power Consumption","Montana","MT",91 +2010-10-01,"Industrial Consumption","Montana","MT",1653 +2010-10-01,"Industrial Consumption","Washington","WA",6260 +2010-10-01,"Industrial Consumption","Pennsylvania","PA",15296 +2010-10-01,"Industrial Consumption","Vermont","VT",241 +2010-10-01,"Industrial Consumption","New Jersey","NJ",3813 +2010-10-01,"Industrial Consumption","District of Columbia","DC",0 +2010-10-01,"Industrial Consumption","Maryland","MD",1373 +2010-10-01,"Industrial Consumption","Louisiana","LA",70977 +2010-10-01,"Industrial Consumption","Kansas","KS",7216 +2010-10-01,"Industrial Consumption","Arizona","AZ",1502 +2010-10-01,"Industrial Consumption","U.S.","U.S.",546520 +2010-10-01,"Industrial Consumption","Alabama","AL",12215 +2010-10-01,"Industrial Consumption","Kentucky","KY",7789 +2010-10-01,"Industrial Consumption","North Dakota","ND",2186 +2010-10-01,"Industrial Consumption","Hawaii","HI",30 +2010-10-01,"Industrial Consumption","Oregon","OR",4724 +2010-10-01,"Industrial Consumption","Wisconsin","WI",9601 +2010-10-01,"Industrial Consumption","Tennessee","TN",7705 +2010-10-01,"Industrial Consumption","Iowa","IA",13952 +2010-10-01,"Industrial Consumption","Michigan","MI",10296 +2010-10-01,"Industrial Consumption","Illinois","IL",21331 +2010-10-01,"Industrial Consumption","Georgia","GA",12183 +2010-10-01,"Industrial Consumption","South Dakota","SD",3276 +2010-10-01,"Industrial Consumption","Ohio","OH",21314 +2010-10-01,"Industrial Consumption","Utah","UT",2486 +2010-10-01,"Industrial Consumption","Mississippi","MS",9417 +2010-10-01,"Industrial Consumption","Maine","ME",2350 +2010-10-01,"Industrial Consumption","Texas","TX",111063 +2010-10-01,"Industrial Consumption","Connecticut","CT",1811 +2010-10-01,"Industrial Consumption","Colorado","CO",8515 +2010-10-01,"Industrial Consumption","New Mexico","NM",1242 +2010-10-01,"Industrial Consumption","Nebraska","NE",7128 +2010-10-01,"Industrial Consumption","Virginia","VA",3321 +2010-10-01,"Industrial Consumption","West Virginia","WV",1980 +2010-10-01,"Industrial Consumption","Wyoming","WY",3877 +2010-10-01,"Industrial Consumption","Florida","FL",5445 +2010-10-01,"Industrial Consumption","Delaware","DE",520 +2010-10-01,"Industrial Consumption","Rhode Island","RI",651 +2010-10-01,"Industrial Consumption","Massachusetts","MA",3379 +2010-10-01,"Industrial Consumption","New York","NY",5996 +2010-10-01,"Industrial Consumption","Nevada","NV",905 +2010-10-01,"Industrial Consumption","Arkansas","AR",6579 +2010-10-01,"Industrial Consumption","Idaho","ID",2099 +2010-10-01,"Industrial Consumption","Oklahoma","OK",12090 +2010-10-01,"Industrial Consumption","California","CA",64500 +2010-10-01,"Industrial Consumption","South Carolina","SC",6126 +2010-10-01,"Industrial Consumption","New Hampshire","NH",564 +2010-10-01,"Industrial Consumption","Minnesota","MN",13412 +2010-10-01,"Industrial Consumption","Missouri","MO",4792 +2010-10-01,"Industrial Consumption","Indiana","IN",22991 +2010-10-01,"Industrial Consumption","North Carolina","NC",7762 +2010-10-01,"Industrial Consumption","Alaska","AK",587 +2010-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",112815 +2010-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",45889 +2010-10-01,"Residential Consumption","Iowa","IA",2213 +2010-10-01,"Residential Consumption","Tennessee","TN",1742 +2010-10-01,"Residential Consumption","Nevada","NV",1524 +2010-10-01,"Residential Consumption","New Jersey","NJ",9363 +2010-10-01,"Residential Consumption","Colorado","CO",6978 +2010-10-01,"Residential Consumption","West Virginia","WV",1239 +2010-10-01,"Residential Consumption","Mississippi","MS",774 +2010-10-01,"Residential Consumption","Utah","UT",2999 +2010-10-01,"Residential Consumption","Pennsylvania","PA",9910 +2010-10-01,"Residential Consumption","Massachusetts","MA",7299 +2010-10-01,"Residential Consumption","Kentucky","KY",1858 +2010-10-01,"Residential Consumption","Oregon","OR",2073 +2010-10-01,"Residential Consumption","North Carolina","NC",1873 +2010-10-01,"Residential Consumption","Louisiana","LA",1422 +2010-10-01,"Residential Consumption","Hawaii","HI",37 +2010-10-01,"Residential Consumption","Wisconsin","WI",5597 +2010-10-01,"Residential Consumption","Michigan","MI",13582 +2010-10-01,"Residential Consumption","Indiana","IN",5133 +2010-10-01,"Residential Consumption","U.S.","U.S.",201580 +2010-10-01,"Residential Consumption","Ohio","OH",13257 +2010-10-01,"Residential Consumption","Virginia","VA",3194 +2010-10-01,"Residential Consumption","Nebraska","NE",1056 +2010-10-01,"Residential Consumption","New Mexico","NM",1052 +2010-10-01,"Residential Consumption","North Dakota","ND",539 +2010-10-01,"Residential Consumption","Arizona","AZ",1377 +2010-10-01,"Residential Consumption","Texas","TX",6760 +2010-10-01,"Residential Consumption","Rhode Island","RI",835 +2010-10-01,"Residential Consumption","Connecticut","CT",1699 +2010-10-01,"Residential Consumption","Wyoming","WY",599 +2010-10-01,"Residential Consumption","South Carolina","SC",752 +2010-10-01,"Residential Consumption","Vermont","VT",173 +2010-10-01,"Residential Consumption","South Dakota","SD",516 +2010-10-01,"Residential Consumption","Florida","FL",830 +2010-10-01,"Residential Consumption","Montana","MT",1038 +2010-10-01,"Residential Consumption","Missouri","MO",3042 +2010-10-01,"Residential Consumption","California","CA",27880 +2010-10-01,"Residential Consumption","Alabama","AL",839 +2010-10-01,"Residential Consumption","Alaska","AK",1529 +2010-10-01,"Residential Consumption","New York","NY",17571 +2010-10-01,"Residential Consumption","Maryland","MD",3245 +2010-10-01,"Residential Consumption","Minnesota","MN",5714 +2010-10-01,"Residential Consumption","District of Columbia","DC",629 +2010-10-01,"Residential Consumption","Idaho","ID",1300 +2010-10-01,"Residential Consumption","New Hampshire","NH",338 +2010-10-01,"Residential Consumption","Oklahoma","OK",1390 +2010-10-01,"Residential Consumption","Delaware","DE",296 +2010-10-01,"Residential Consumption","Georgia","GA",4947 +2010-10-01,"Residential Consumption","Maine","ME",64 +2010-10-01,"Residential Consumption","Arkansas","AR",914 +2010-10-01,"Residential Consumption","Kansas","KS",1548 +2010-10-01,"Residential Consumption","Washington","WA",4898 +2010-10-01,"Residential Consumption","Illinois","IL",16144 +2010-10-01,"Vehicle Fuel Consumption","New York","NY",305 +2010-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2010-10-01,"Vehicle Fuel Consumption","Nevada","NV",71 +2010-10-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2010-10-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-10-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-10-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2010-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-10-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-10-01,"Vehicle Fuel Consumption","Michigan","MI",22 +2010-10-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2010-10-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-10-01,"Vehicle Fuel Consumption","Arizona","AZ",171 +2010-10-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-10-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-10-01,"Vehicle Fuel Consumption","Illinois","IL",25 +2010-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-10-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-10-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-10-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-10-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2434 +2010-10-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-10-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2010-10-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-10-01,"Vehicle Fuel Consumption","Georgia","GA",78 +2010-10-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-10-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-10-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-10-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",13 +2010-10-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-10-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-10-01,"Vehicle Fuel Consumption","Washington","WA",37 +2010-10-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-10-01,"Vehicle Fuel Consumption","Texas","TX",198 +2010-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-10-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2010-10-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2010-10-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-10-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-10-01,"Vehicle Fuel Consumption","California","CA",1153 +2010-11-01,"Commercial Consumption","North Dakota","ND",1238 +2010-11-01,"Commercial Consumption","Missouri","MO",5632 +2010-11-01,"Commercial Consumption","Texas","TX",15132 +2010-11-01,"Commercial Consumption","Idaho","ID",1826 +2010-11-01,"Commercial Consumption","New York","NY",26722 +2010-11-01,"Commercial Consumption","Nebraska","NE",3419 +2010-11-01,"Commercial Consumption","Tennessee","TN",4470 +2010-11-01,"Commercial Consumption","Louisiana","LA",2187 +2010-11-01,"Commercial Consumption","Oklahoma","OK",2038 +2010-11-01,"Commercial Consumption","Georgia","GA",5005 +2010-11-01,"Commercial Consumption","Hawaii","HI",139 +2010-11-01,"Commercial Consumption","California","CA",22395 +2010-11-01,"Commercial Consumption","Alabama","AL",2444 +2010-11-01,"Commercial Consumption","South Carolina","SC",2101 +2010-11-01,"Commercial Consumption","New Mexico","NM",1753 +2010-11-01,"Commercial Consumption","Pennsylvania","PA",13804 +2010-11-01,"Commercial Consumption","Vermont","VT",242 +2010-11-01,"Commercial Consumption","Nevada","NV",2518 +2010-11-01,"Commercial Consumption","Michigan","MI",13430 +2010-11-01,"Commercial Consumption","Illinois","IL",20568 +2010-11-01,"Commercial Consumption","Wyoming","WY",1290 +2010-11-01,"Commercial Consumption","Colorado","CO",6905 +2010-11-01,"Commercial Consumption","Massachusetts","MA",6571 +2010-11-01,"Commercial Consumption","Wisconsin","WI",8423 +2010-11-01,"Commercial Consumption","Kentucky","KY",3127 +2010-11-01,"Commercial Consumption","U.S.","U.S.",286696 +2010-11-01,"Commercial Consumption","Kansas","KS",2829 +2010-11-01,"Commercial Consumption","Arkansas","AR",2850 +2010-11-01,"Commercial Consumption","Washington","WA",6118 +2010-11-01,"Commercial Consumption","Florida","FL",4528 +2010-11-01,"Commercial Consumption","Mississippi","MS",1499 +2010-11-01,"Commercial Consumption","Delaware","DE",1165 +2010-11-01,"Commercial Consumption","Arizona","AZ",2952 +2010-11-01,"Commercial Consumption","Indiana","IN",7084 +2010-11-01,"Commercial Consumption","Oregon","OR",3170 +2010-11-01,"Commercial Consumption","Maine","ME",634 +2010-11-01,"Commercial Consumption","Ohio","OH",14398 +2010-11-01,"Commercial Consumption","Alaska","AK",1734 +2010-11-01,"Commercial Consumption","West Virginia","WV",2269 +2010-11-01,"Commercial Consumption","Minnesota","MN",9338 +2010-11-01,"Commercial Consumption","Utah","UT",4284 +2010-11-01,"Commercial Consumption","Virginia","VA",6424 +2010-11-01,"Commercial Consumption","New Hampshire","NH",823 +2010-11-01,"Commercial Consumption","Rhode Island","RI",1029 +2010-11-01,"Commercial Consumption","Iowa","IA",5050 +2010-11-01,"Commercial Consumption","District of Columbia","DC",1789 +2010-11-01,"Commercial Consumption","North Carolina","NC",5190 +2010-11-01,"Commercial Consumption","South Dakota","SD",1248 +2010-11-01,"Commercial Consumption","New Jersey","NJ",14647 +2010-11-01,"Commercial Consumption","Montana","MT",2659 +2010-11-01,"Commercial Consumption","Maryland","MD",6063 +2010-11-01,"Commercial Consumption","Connecticut","CT",3542 +2010-11-01,"Delivered to Consumers","West Virginia","WV",7154 +2010-11-01,"Delivered to Consumers","Alaska","AK",7354 +2010-11-01,"Delivered to Consumers","Kansas","KS",17421 +2010-11-01,"Delivered to Consumers","Idaho","ID",8257 +2010-11-01,"Delivered to Consumers","Mississippi","MS",27429 +2010-11-01,"Delivered to Consumers","Nevada","NV",19031 +2010-11-01,"Delivered to Consumers","District of Columbia","DC",3214 +2010-11-01,"Delivered to Consumers","Delaware","DE",4001 +2010-11-01,"Delivered to Consumers","South Dakota","SD",6130 +2010-11-01,"Delivered to Consumers","Ohio","OH",68276 +2010-11-01,"Delivered to Consumers","Wisconsin","WI",33652 +2010-11-01,"Delivered to Consumers","Rhode Island","RI",6949 +2010-11-01,"Delivered to Consumers","Oklahoma","OK",33868 +2010-11-01,"Delivered to Consumers","Connecticut","CT",18032 +2010-11-01,"Delivered to Consumers","Virginia","VA",29429 +2010-11-01,"Delivered to Consumers","California","CA",193207 +2010-11-01,"Delivered to Consumers","Arizona","AZ",22974 +2010-11-01,"Delivered to Consumers","New Hampshire","NH",7691 +2010-11-01,"Delivered to Consumers","North Dakota","ND",4750 +2010-11-01,"Delivered to Consumers","New Mexico","NM",10359 +2010-11-01,"Delivered to Consumers","New York","NY",103611 +2010-11-01,"Delivered to Consumers","Montana","MT",6913 +2010-11-01,"Delivered to Consumers","Tennessee","TN",20124 +2010-11-01,"Delivered to Consumers","Kentucky","KY",17031 +2010-11-01,"Delivered to Consumers","Georgia","GA",38358 +2010-11-01,"Delivered to Consumers","Hawaii","HI",208 +2010-11-01,"Delivered to Consumers","Missouri","MO",21346 +2010-11-01,"Delivered to Consumers","Utah","UT",18850 +2010-11-01,"Delivered to Consumers","U.S.","U.S.",1809151 +2010-11-01,"Delivered to Consumers","Wyoming","WY",6856 +2010-11-01,"Delivered to Consumers","Illinois","IL",84243 +2010-11-01,"Delivered to Consumers","Alabama","AL",36918 +2010-11-01,"Delivered to Consumers","Nebraska","NE",14242 +2010-11-01,"Delivered to Consumers","Colorado","CO",39921 +2010-11-01,"Delivered to Consumers","South Carolina","SC",16868 +2010-11-01,"Delivered to Consumers","Maine","ME",6183 +2010-11-01,"Delivered to Consumers","Texas","TX",226057 +2010-11-01,"Delivered to Consumers","Oregon","OR",23575 +2010-11-01,"Delivered to Consumers","Minnesota","MN",39323 +2010-11-01,"Delivered to Consumers","Indiana","IN",51089 +2010-11-01,"Delivered to Consumers","Vermont","VT",801 +2010-11-01,"Delivered to Consumers","Maryland","MD",16571 +2010-11-01,"Delivered to Consumers","Michigan","MI",61727 +2010-11-01,"Delivered to Consumers","Iowa","IA",26732 +2010-11-01,"Delivered to Consumers","Arkansas","AR",14500 +2010-11-01,"Delivered to Consumers","Pennsylvania","PA",74767 +2010-11-01,"Delivered to Consumers","North Carolina","NC",24848 +2010-11-01,"Delivered to Consumers","Massachusetts","MA",36684 +2010-11-01,"Delivered to Consumers","New Jersey","NJ",56766 +2010-11-01,"Delivered to Consumers","Louisiana","LA",90806 +2010-11-01,"Delivered to Consumers","Washington","WA",28126 +2010-11-01,"Delivered to Consumers","Florida","FL",75933 +2010-11-01,"Electric Power Consumption","New Jersey","NJ",14170 +2010-11-01,"Electric Power Consumption","Arkansas","AR",2772 +2010-11-01,"Electric Power Consumption","Kansas","KS",857 +2010-11-01,"Electric Power Consumption","Tennessee","TN",1543 +2010-11-01,"Electric Power Consumption","Hawaii","HI",NA +2010-11-01,"Electric Power Consumption","Louisiana","LA",13928 +2010-11-01,"Electric Power Consumption","Colorado","CO",6475 +2010-11-01,"Electric Power Consumption","Oregon","OR",10535 +2010-11-01,"Electric Power Consumption","Nebraska","NE",112 +2010-11-01,"Electric Power Consumption","Maryland","MD",616 +2010-11-01,"Electric Power Consumption","Florida","FL",64521 +2010-11-01,"Electric Power Consumption","Utah","UT",4220 +2010-11-01,"Electric Power Consumption","Illinois","IL",792 +2010-11-01,"Electric Power Consumption","Massachusetts","MA",13539 +2010-11-01,"Electric Power Consumption","Kentucky","KY",469 +2010-11-01,"Electric Power Consumption","North Dakota","ND",0 +2010-11-01,"Electric Power Consumption","Indiana","IN",4490 +2010-11-01,"Electric Power Consumption","Connecticut","CT",8856 +2010-11-01,"Electric Power Consumption","Arizona","AZ",15010 +2010-11-01,"Electric Power Consumption","New Mexico","NM",4785 +2010-11-01,"Electric Power Consumption","West Virginia","WV",48 +2010-11-01,"Electric Power Consumption","Missouri","MO",1374 +2010-11-01,"Electric Power Consumption","Georgia","GA",9732 +2010-11-01,"Electric Power Consumption","Alabama","AL",19702 +2010-11-01,"Electric Power Consumption","Mississippi","MS",14085 +2010-11-01,"Electric Power Consumption","Ohio","OH",5176 +2010-11-01,"Electric Power Consumption","Alaska","AK",3010 +2010-11-01,"Electric Power Consumption","New York","NY",32672 +2010-11-01,"Electric Power Consumption","Wisconsin","WI",1366 +2010-11-01,"Electric Power Consumption","Pennsylvania","PA",22643 +2010-11-01,"Electric Power Consumption","Delaware","DE",1448 +2010-11-01,"Electric Power Consumption","California","CA",64944 +2010-11-01,"Electric Power Consumption","Washington","WA",5325 +2010-11-01,"Electric Power Consumption","Virginia","VA",9771 +2010-11-01,"Electric Power Consumption","South Carolina","SC",5583 +2010-11-01,"Electric Power Consumption","Rhode Island","RI",3448 +2010-11-01,"Electric Power Consumption","Oklahoma","OK",14084 +2010-11-01,"Electric Power Consumption","Iowa","IA",421 +2010-11-01,"Electric Power Consumption","U.S.","U.S.",496539 +2010-11-01,"Electric Power Consumption","Maine","ME",2875 +2010-11-01,"Electric Power Consumption","Montana","MT",28 +2010-11-01,"Electric Power Consumption","Idaho","ID",963 +2010-11-01,"Electric Power Consumption","Texas","TX",79635 +2010-11-01,"Electric Power Consumption","Minnesota","MN",2131 +2010-11-01,"Electric Power Consumption","Michigan","MI",6101 +2010-11-01,"Electric Power Consumption","Nevada","NV",12374 +2010-11-01,"Electric Power Consumption","Wyoming","WY",53 +2010-11-01,"Electric Power Consumption","Vermont","VT",4 +2010-11-01,"Electric Power Consumption","South Dakota","SD",10 +2010-11-01,"Electric Power Consumption","North Carolina","NC",4250 +2010-11-01,"Electric Power Consumption","New Hampshire","NH",5594 +2010-11-01,"Industrial Consumption","Massachusetts","MA",4432 +2010-11-01,"Industrial Consumption","U.S.","U.S.",576758 +2010-11-01,"Industrial Consumption","California","CA",59298 +2010-11-01,"Industrial Consumption","Texas","TX",117300 +2010-11-01,"Industrial Consumption","Connecticut","CT",1992 +2010-11-01,"Industrial Consumption","Missouri","MO",5349 +2010-11-01,"Industrial Consumption","Ohio","OH",21345 +2010-11-01,"Industrial Consumption","Maine","ME",2547 +2010-11-01,"Industrial Consumption","South Carolina","SC",6422 +2010-11-01,"Industrial Consumption","Indiana","IN",25321 +2010-11-01,"Industrial Consumption","Illinois","IL",24378 +2010-11-01,"Industrial Consumption","North Carolina","NC",8395 +2010-11-01,"Industrial Consumption","Alaska","AK",589 +2010-11-01,"Industrial Consumption","Washington","WA",6623 +2010-11-01,"Industrial Consumption","Mississippi","MS",10082 +2010-11-01,"Industrial Consumption","Wisconsin","WI",10973 +2010-11-01,"Industrial Consumption","Minnesota","MN",14310 +2010-11-01,"Industrial Consumption","Delaware","DE",633 +2010-11-01,"Industrial Consumption","Georgia","GA",12262 +2010-11-01,"Industrial Consumption","Montana","MT",1773 +2010-11-01,"Industrial Consumption","Maryland","MD",1653 +2010-11-01,"Industrial Consumption","Arkansas","AR",6967 +2010-11-01,"Industrial Consumption","Nebraska","NE",6995 +2010-11-01,"Industrial Consumption","Tennessee","TN",8422 +2010-11-01,"Industrial Consumption","Iowa","IA",14371 +2010-11-01,"Industrial Consumption","North Dakota","ND",2247 +2010-11-01,"Industrial Consumption","Oklahoma","OK",14852 +2010-11-01,"Industrial Consumption","Louisiana","LA",71983 +2010-11-01,"Industrial Consumption","Colorado","CO",10236 +2010-11-01,"Industrial Consumption","South Dakota","SD",3500 +2010-11-01,"Industrial Consumption","New Mexico","NM",1441 +2010-11-01,"Industrial Consumption","Oregon","OR",4908 +2010-11-01,"Industrial Consumption","New Hampshire","NH",608 +2010-11-01,"Industrial Consumption","Idaho","ID",2084 +2010-11-01,"Industrial Consumption","Florida","FL",5734 +2010-11-01,"Industrial Consumption","Kentucky","KY",8512 +2010-11-01,"Industrial Consumption","Hawaii","HI",32 +2010-11-01,"Industrial Consumption","Pennsylvania","PA",17092 +2010-11-01,"Industrial Consumption","Vermont","VT",255 +2010-11-01,"Industrial Consumption","Wyoming","WY",4032 +2010-11-01,"Industrial Consumption","Rhode Island","RI",685 +2010-11-01,"Industrial Consumption","Kansas","KS",8319 +2010-11-01,"Industrial Consumption","Arizona","AZ",2003 +2010-11-01,"Industrial Consumption","Alabama","AL",12006 +2010-11-01,"Industrial Consumption","Virginia","VA",4956 +2010-11-01,"Industrial Consumption","New Jersey","NJ",4409 +2010-11-01,"Industrial Consumption","District of Columbia","DC",0 +2010-11-01,"Industrial Consumption","Utah","UT",2737 +2010-11-01,"Industrial Consumption","New York","NY",6770 +2010-11-01,"Industrial Consumption","Nevada","NV",910 +2010-11-01,"Industrial Consumption","West Virginia","WV",2041 +2010-11-01,"Industrial Consumption","Michigan","MI",11975 +2010-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",109026 +2010-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",55118 +2010-11-01,"Residential Consumption","Oregon","OR",4947 +2010-11-01,"Residential Consumption","North Carolina","NC",7010 +2010-11-01,"Residential Consumption","Wisconsin","WI",12885 +2010-11-01,"Residential Consumption","Vermont","VT",300 +2010-11-01,"Residential Consumption","District of Columbia","DC",1352 +2010-11-01,"Residential Consumption","Alabama","AL",2757 +2010-11-01,"Residential Consumption","U.S.","U.S.",446801 +2010-11-01,"Residential Consumption","Illinois","IL",38480 +2010-11-01,"Residential Consumption","Rhode Island","RI",1780 +2010-11-01,"Residential Consumption","Nebraska","NE",3713 +2010-11-01,"Residential Consumption","Georgia","GA",11283 +2010-11-01,"Residential Consumption","New Mexico","NM",2355 +2010-11-01,"Residential Consumption","Indiana","IN",14191 +2010-11-01,"Residential Consumption","Florida","FL",1146 +2010-11-01,"Residential Consumption","New Hampshire","NH",663 +2010-11-01,"Residential Consumption","Kansas","KS",5414 +2010-11-01,"Residential Consumption","Washington","WA",10024 +2010-11-01,"Residential Consumption","South Carolina","SC",2762 +2010-11-01,"Residential Consumption","Ohio","OH",27344 +2010-11-01,"Residential Consumption","Minnesota","MN",13543 +2010-11-01,"Residential Consumption","Pennsylvania","PA",21205 +2010-11-01,"Residential Consumption","Wyoming","WY",1479 +2010-11-01,"Residential Consumption","Louisiana","LA",2708 +2010-11-01,"Residential Consumption","Hawaii","HI",37 +2010-11-01,"Residential Consumption","Virginia","VA",8266 +2010-11-01,"Residential Consumption","Nevada","NV",3161 +2010-11-01,"Residential Consumption","North Dakota","ND",1265 +2010-11-01,"Residential Consumption","Texas","TX",13798 +2010-11-01,"Residential Consumption","Iowa","IA",6890 +2010-11-01,"Residential Consumption","Michigan","MI",30199 +2010-11-01,"Residential Consumption","Maryland","MD",8222 +2010-11-01,"Residential Consumption","Delaware","DE",755 +2010-11-01,"Residential Consumption","Arizona","AZ",2842 +2010-11-01,"Residential Consumption","West Virginia","WV",2796 +2010-11-01,"Residential Consumption","Tennessee","TN",5688 +2010-11-01,"Residential Consumption","Utah","UT",7592 +2010-11-01,"Residential Consumption","Maine","ME",127 +2010-11-01,"Residential Consumption","Massachusetts","MA",12081 +2010-11-01,"Residential Consumption","Oklahoma","OK",2874 +2010-11-01,"Residential Consumption","Connecticut","CT",3639 +2010-11-01,"Residential Consumption","South Dakota","SD",1372 +2010-11-01,"Residential Consumption","Arkansas","AR",1910 +2010-11-01,"Residential Consumption","New Jersey","NJ",23528 +2010-11-01,"Residential Consumption","Colorado","CO",16284 +2010-11-01,"Residential Consumption","Missouri","MO",8990 +2010-11-01,"Residential Consumption","California","CA",45455 +2010-11-01,"Residential Consumption","Mississippi","MS",1763 +2010-11-01,"Residential Consumption","Idaho","ID",3378 +2010-11-01,"Residential Consumption","Montana","MT",2453 +2010-11-01,"Residential Consumption","Kentucky","KY",4923 +2010-11-01,"Residential Consumption","Alaska","AK",2019 +2010-11-01,"Residential Consumption","New York","NY",37152 +2010-11-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-11-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-11-01,"Vehicle Fuel Consumption","Colorado","CO",20 +2010-11-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-11-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2010-11-01,"Vehicle Fuel Consumption","California","CA",1116 +2010-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2010-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-11-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2010-11-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-11-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-11-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",20 +2010-11-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-11-01,"Vehicle Fuel Consumption","Nebraska","NE",2 +2010-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",12 +2010-11-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2010-11-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-11-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-11-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-11-01,"Vehicle Fuel Consumption","Texas","TX",192 +2010-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-11-01,"Vehicle Fuel Consumption","New York","NY",295 +2010-11-01,"Vehicle Fuel Consumption","Nevada","NV",69 +2010-11-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",60 +2010-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-11-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-11-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-11-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-11-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2010-11-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-11-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-11-01,"Vehicle Fuel Consumption","Georgia","GA",75 +2010-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2356 +2010-11-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-11-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-11-01,"Vehicle Fuel Consumption","Oregon","OR",15 +2010-11-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-11-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-11-01,"Vehicle Fuel Consumption","Washington","WA",36 +2010-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-11-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-11-01,"Vehicle Fuel Consumption","Michigan","MI",21 +2010-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-11-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-12-01,"Commercial Consumption","North Dakota","ND",1812 +2010-12-01,"Commercial Consumption","Oregon","OR",3777 +2010-12-01,"Commercial Consumption","New Hampshire","NH",1318 +2010-12-01,"Commercial Consumption","Kansas","KS",4873 +2010-12-01,"Commercial Consumption","Iowa","IA",7985 +2010-12-01,"Commercial Consumption","Alaska","AK",2408 +2010-12-01,"Commercial Consumption","Arkansas","AR",4474 +2010-12-01,"Commercial Consumption","Nevada","NV",3278 +2010-12-01,"Commercial Consumption","Wyoming","WY",1522 +2010-12-01,"Commercial Consumption","Washington","WA",7020 +2010-12-01,"Commercial Consumption","North Carolina","NC",10645 +2010-12-01,"Commercial Consumption","Minnesota","MN",15446 +2010-12-01,"Commercial Consumption","Colorado","CO",7923 +2010-12-01,"Commercial Consumption","Missouri","MO",10070 +2010-12-01,"Commercial Consumption","South Dakota","SD",1798 +2010-12-01,"Commercial Consumption","Hawaii","HI",149 +2010-12-01,"Commercial Consumption","New Mexico","NM",3162 +2010-12-01,"Commercial Consumption","New Jersey","NJ",27956 +2010-12-01,"Commercial Consumption","Florida","FL",6504 +2010-12-01,"Commercial Consumption","Illinois","IL",32874 +2010-12-01,"Commercial Consumption","Virginia","VA",11962 +2010-12-01,"Commercial Consumption","Maine","ME",915 +2010-12-01,"Commercial Consumption","U.S.","U.S.",467371 +2010-12-01,"Commercial Consumption","California","CA",25550 +2010-12-01,"Commercial Consumption","Nebraska","NE",4518 +2010-12-01,"Commercial Consumption","District of Columbia","DC",3153 +2010-12-01,"Commercial Consumption","Vermont","VT",362 +2010-12-01,"Commercial Consumption","Arizona","AZ",3616 +2010-12-01,"Commercial Consumption","Tennessee","TN",9249 +2010-12-01,"Commercial Consumption","Oklahoma","OK",4415 +2010-12-01,"Commercial Consumption","Pennsylvania","PA",25094 +2010-12-01,"Commercial Consumption","Massachusetts","MA",11940 +2010-12-01,"Commercial Consumption","Maryland","MD",11768 +2010-12-01,"Commercial Consumption","Rhode Island","RI",1899 +2010-12-01,"Commercial Consumption","Ohio","OH",26914 +2010-12-01,"Commercial Consumption","Alabama","AL",4535 +2010-12-01,"Commercial Consumption","New York","NY",42547 +2010-12-01,"Commercial Consumption","Delaware","DE",2033 +2010-12-01,"Commercial Consumption","Michigan","MI",23969 +2010-12-01,"Commercial Consumption","Indiana","IN",13930 +2010-12-01,"Commercial Consumption","South Carolina","SC",3856 +2010-12-01,"Commercial Consumption","Wisconsin","WI",14318 +2010-12-01,"Commercial Consumption","Kentucky","KY",7042 +2010-12-01,"Commercial Consumption","Georgia","GA",10868 +2010-12-01,"Commercial Consumption","Connecticut","CT",5703 +2010-12-01,"Commercial Consumption","Louisiana","LA",3646 +2010-12-01,"Commercial Consumption","West Virginia","WV",3853 +2010-12-01,"Commercial Consumption","Utah","UT",5074 +2010-12-01,"Commercial Consumption","Montana","MT",3193 +2010-12-01,"Commercial Consumption","Texas","TX",21286 +2010-12-01,"Commercial Consumption","Idaho","ID",2384 +2010-12-01,"Commercial Consumption","Mississippi","MS",2786 +2010-12-01,"Delivered to Consumers","West Virginia","WV",12253 +2010-12-01,"Delivered to Consumers","Alaska","AK",9659 +2010-12-01,"Delivered to Consumers","Idaho","ID",9544 +2010-12-01,"Delivered to Consumers","Michigan","MI",103736 +2010-12-01,"Delivered to Consumers","Wisconsin","WI",53775 +2010-12-01,"Delivered to Consumers","North Carolina","NC",44993 +2010-12-01,"Delivered to Consumers","Oregon","OR",25371 +2010-12-01,"Delivered to Consumers","North Dakota","ND",6268 +2010-12-01,"Delivered to Consumers","Vermont","VT",1177 +2010-12-01,"Delivered to Consumers","Colorado","CO",45369 +2010-12-01,"Delivered to Consumers","New Jersey","NJ",92792 +2010-12-01,"Delivered to Consumers","Maine","ME",7321 +2010-12-01,"Delivered to Consumers","New Mexico","NM",15673 +2010-12-01,"Delivered to Consumers","South Dakota","SD",7745 +2010-12-01,"Delivered to Consumers","Kansas","KS",27350 +2010-12-01,"Delivered to Consumers","Connecticut","CT",21462 +2010-12-01,"Delivered to Consumers","Mississippi","MS",37973 +2010-12-01,"Delivered to Consumers","Washington","WA",30104 +2010-12-01,"Delivered to Consumers","Wyoming","WY",8139 +2010-12-01,"Delivered to Consumers","Illinois","IL",146221 +2010-12-01,"Delivered to Consumers","Arkansas","AR",23997 +2010-12-01,"Delivered to Consumers","Alabama","AL",54479 +2010-12-01,"Delivered to Consumers","Nevada","NV",21505 +2010-12-01,"Delivered to Consumers","Georgia","GA",67069 +2010-12-01,"Delivered to Consumers","Utah","UT",21067 +2010-12-01,"Delivered to Consumers","U.S.","U.S.",2522442 +2010-12-01,"Delivered to Consumers","Montana","MT",8850 +2010-12-01,"Delivered to Consumers","Pennsylvania","PA",110180 +2010-12-01,"Delivered to Consumers","Maryland","MD",33373 +2010-12-01,"Delivered to Consumers","Tennessee","TN",37601 +2010-12-01,"Delivered to Consumers","Nebraska","NE",19362 +2010-12-01,"Delivered to Consumers","Arizona","AZ",23956 +2010-12-01,"Delivered to Consumers","District of Columbia","DC",6343 +2010-12-01,"Delivered to Consumers","Indiana","IN",80728 +2010-12-01,"Delivered to Consumers","Rhode Island","RI",10964 +2010-12-01,"Delivered to Consumers","Hawaii","HI",216 +2010-12-01,"Delivered to Consumers","Oklahoma","OK",51441 +2010-12-01,"Delivered to Consumers","Kentucky","KY",31985 +2010-12-01,"Delivered to Consumers","Missouri","MO",40423 +2010-12-01,"Delivered to Consumers","Massachusetts","MA",51363 +2010-12-01,"Delivered to Consumers","Texas","TX",257594 +2010-12-01,"Delivered to Consumers","South Carolina","SC",26705 +2010-12-01,"Delivered to Consumers","Louisiana","LA",108989 +2010-12-01,"Delivered to Consumers","Minnesota","MN",56644 +2010-12-01,"Delivered to Consumers","Florida","FL",91828 +2010-12-01,"Delivered to Consumers","Delaware","DE",5493 +2010-12-01,"Delivered to Consumers","New York","NY",150759 +2010-12-01,"Delivered to Consumers","Ohio","OH",113576 +2010-12-01,"Delivered to Consumers","Iowa","IA",37412 +2010-12-01,"Delivered to Consumers","Virginia","VA",50766 +2010-12-01,"Delivered to Consumers","California","CA",213383 +2010-12-01,"Delivered to Consumers","New Hampshire","NH",7464 +2010-12-01,"Electric Power Consumption","Louisiana","LA",18961 +2010-12-01,"Electric Power Consumption","Utah","UT",3635 +2010-12-01,"Electric Power Consumption","Wisconsin","WI",1961 +2010-12-01,"Electric Power Consumption","Maine","ME",3489 +2010-12-01,"Electric Power Consumption","Delaware","DE",705 +2010-12-01,"Electric Power Consumption","Florida","FL",75769 +2010-12-01,"Electric Power Consumption","Washington","WA",4475 +2010-12-01,"Electric Power Consumption","New Jersey","NJ",15826 +2010-12-01,"Electric Power Consumption","Oklahoma","OK",21000 +2010-12-01,"Electric Power Consumption","Michigan","MI",10925 +2010-12-01,"Electric Power Consumption","Kansas","KS",1251 +2010-12-01,"Electric Power Consumption","West Virginia","WV",202 +2010-12-01,"Electric Power Consumption","Nevada","NV",11491 +2010-12-01,"Electric Power Consumption","U.S.","U.S.",564274 +2010-12-01,"Electric Power Consumption","Nebraska","NE",71 +2010-12-01,"Electric Power Consumption","Montana","MT",396 +2010-12-01,"Electric Power Consumption","Indiana","IN",8190 +2010-12-01,"Electric Power Consumption","Connecticut","CT",6603 +2010-12-01,"Electric Power Consumption","Arkansas","AR",6654 +2010-12-01,"Electric Power Consumption","South Carolina","SC",8175 +2010-12-01,"Electric Power Consumption","Illinois","IL",2584 +2010-12-01,"Electric Power Consumption","California","CA",60297 +2010-12-01,"Electric Power Consumption","Massachusetts","MA",13925 +2010-12-01,"Electric Power Consumption","Vermont","VT",5 +2010-12-01,"Electric Power Consumption","Missouri","MO",2876 +2010-12-01,"Electric Power Consumption","Ohio","OH",7467 +2010-12-01,"Electric Power Consumption","North Dakota","ND",0 +2010-12-01,"Electric Power Consumption","Alaska","AK",3628 +2010-12-01,"Electric Power Consumption","Virginia","VA",13441 +2010-12-01,"Electric Power Consumption","New Mexico","NM",5946 +2010-12-01,"Electric Power Consumption","Colorado","CO",6795 +2010-12-01,"Electric Power Consumption","Oregon","OR",10219 +2010-12-01,"Electric Power Consumption","North Carolina","NC",6013 +2010-12-01,"Electric Power Consumption","Mississippi","MS",20103 +2010-12-01,"Electric Power Consumption","Kentucky","KY",2652 +2010-12-01,"Electric Power Consumption","New Hampshire","NH",4249 +2010-12-01,"Electric Power Consumption","Georgia","GA",14376 +2010-12-01,"Electric Power Consumption","Alabama","AL",28293 +2010-12-01,"Electric Power Consumption","Idaho","ID",894 +2010-12-01,"Electric Power Consumption","Rhode Island","RI",4858 +2010-12-01,"Electric Power Consumption","Wyoming","WY",55 +2010-12-01,"Electric Power Consumption","New York","NY",29538 +2010-12-01,"Electric Power Consumption","Minnesota","MN",1903 +2010-12-01,"Electric Power Consumption","Pennsylvania","PA",22491 +2010-12-01,"Electric Power Consumption","Iowa","IA",952 +2010-12-01,"Electric Power Consumption","Maryland","MD",1427 +2010-12-01,"Electric Power Consumption","Arizona","AZ",12934 +2010-12-01,"Electric Power Consumption","Texas","TX",82213 +2010-12-01,"Electric Power Consumption","Tennessee","TN",4357 +2010-12-01,"Electric Power Consumption","South Dakota","SD",3 +2010-12-01,"Electric Power Consumption","Hawaii","HI",NA +2010-12-01,"Industrial Consumption","North Dakota","ND",2536 +2010-12-01,"Industrial Consumption","Ohio","OH",25884 +2010-12-01,"Industrial Consumption","Arizona","AZ",1958 +2010-12-01,"Industrial Consumption","Arkansas","AR",7780 +2010-12-01,"Industrial Consumption","South Carolina","SC",6913 +2010-12-01,"Industrial Consumption","Nebraska","NE",8288 +2010-12-01,"Industrial Consumption","Connecticut","CT",2616 +2010-12-01,"Industrial Consumption","Kentucky","KY",10230 +2010-12-01,"Industrial Consumption","Delaware","DE",856 +2010-12-01,"Industrial Consumption","Rhode Island","RI",835 +2010-12-01,"Industrial Consumption","Hawaii","HI",26 +2010-12-01,"Industrial Consumption","South Dakota","SD",3636 +2010-12-01,"Industrial Consumption","New Mexico","NM",1503 +2010-12-01,"Industrial Consumption","U.S.","U.S.",641361 +2010-12-01,"Industrial Consumption","Oregon","OR",5056 +2010-12-01,"Industrial Consumption","California","CA",59072 +2010-12-01,"Industrial Consumption","Wisconsin","WI",13518 +2010-12-01,"Industrial Consumption","Maryland","MD",1653 +2010-12-01,"Industrial Consumption","Missouri","MO",6680 +2010-12-01,"Industrial Consumption","Colorado","CO",11649 +2010-12-01,"Industrial Consumption","Virginia","VA",5654 +2010-12-01,"Industrial Consumption","Oklahoma","OK",17165 +2010-12-01,"Industrial Consumption","Louisiana","LA",78858 +2010-12-01,"Industrial Consumption","Utah","UT",2914 +2010-12-01,"Industrial Consumption","Pennsylvania","PA",19734 +2010-12-01,"Industrial Consumption","Nevada","NV",918 +2010-12-01,"Industrial Consumption","Alabama","AL",13672 +2010-12-01,"Industrial Consumption","Tennessee","TN",9365 +2010-12-01,"Industrial Consumption","New Jersey","NJ",5023 +2010-12-01,"Industrial Consumption","Michigan","MI",15740 +2010-12-01,"Industrial Consumption","Mississippi","MS",10380 +2010-12-01,"Industrial Consumption","Washington","WA",6935 +2010-12-01,"Industrial Consumption","New York","NY",8330 +2010-12-01,"Industrial Consumption","Vermont","VT",320 +2010-12-01,"Industrial Consumption","New Hampshire","NH",731 +2010-12-01,"Industrial Consumption","Idaho","ID",2166 +2010-12-01,"Industrial Consumption","Florida","FL",6931 +2010-12-01,"Industrial Consumption","Indiana","IN",30056 +2010-12-01,"Industrial Consumption","Illinois","IL",30027 +2010-12-01,"Industrial Consumption","Georgia","GA",12918 +2010-12-01,"Industrial Consumption","District of Columbia","DC",0 +2010-12-01,"Industrial Consumption","Montana","MT",1919 +2010-12-01,"Industrial Consumption","Kansas","KS",9897 +2010-12-01,"Industrial Consumption","Texas","TX",124317 +2010-12-01,"Industrial Consumption","Wyoming","WY",4707 +2010-12-01,"Industrial Consumption","Iowa","IA",15825 +2010-12-01,"Industrial Consumption","North Carolina","NC",9166 +2010-12-01,"Industrial Consumption","Alaska","AK",556 +2010-12-01,"Industrial Consumption","Massachusetts","MA",5319 +2010-12-01,"Industrial Consumption","Maine","ME",2713 +2010-12-01,"Industrial Consumption","West Virginia","WV",2611 +2010-12-01,"Industrial Consumption","Minnesota","MN",15802 +2010-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",114763 +2010-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",76849 +2010-12-01,"Residential Consumption","New Hampshire","NH",1163 +2010-12-01,"Residential Consumption","Wyoming","WY",1853 +2010-12-01,"Residential Consumption","West Virginia","WV",5587 +2010-12-01,"Residential Consumption","Wisconsin","WI",23974 +2010-12-01,"Residential Consumption","Vermont","VT",489 +2010-12-01,"Residential Consumption","Virginia","VA",19697 +2010-12-01,"Residential Consumption","Nebraska","NE",6483 +2010-12-01,"Residential Consumption","South Dakota","SD",2308 +2010-12-01,"Residential Consumption","Colorado","CO",18981 +2010-12-01,"Residential Consumption","Kansas","KS",11328 +2010-12-01,"Residential Consumption","Ohio","OH",53299 +2010-12-01,"Residential Consumption","New Mexico","NM",5035 +2010-12-01,"Residential Consumption","Texas","TX",29580 +2010-12-01,"Residential Consumption","Michigan","MI",53080 +2010-12-01,"Residential Consumption","District of Columbia","DC",3115 +2010-12-01,"Residential Consumption","Maine","ME",203 +2010-12-01,"Residential Consumption","Alabama","AL",7970 +2010-12-01,"Residential Consumption","Alaska","AK",3065 +2010-12-01,"Residential Consumption","Illinois","IL",80710 +2010-12-01,"Residential Consumption","Louisiana","LA",7523 +2010-12-01,"Residential Consumption","Florida","FL",2619 +2010-12-01,"Residential Consumption","Montana","MT",3342 +2010-12-01,"Residential Consumption","Oklahoma","OK",8840 +2010-12-01,"Residential Consumption","California","CA",67310 +2010-12-01,"Residential Consumption","Arizona","AZ",5276 +2010-12-01,"Residential Consumption","South Carolina","SC",7761 +2010-12-01,"Residential Consumption","Tennessee","TN",14629 +2010-12-01,"Residential Consumption","Utah","UT",9427 +2010-12-01,"Residential Consumption","Massachusetts","MA",20117 +2010-12-01,"Residential Consumption","New Jersey","NJ",43975 +2010-12-01,"Residential Consumption","Kentucky","KY",12060 +2010-12-01,"Residential Consumption","Missouri","MO",20797 +2010-12-01,"Residential Consumption","Delaware","DE",1899 +2010-12-01,"Residential Consumption","U.S.","U.S.",847001 +2010-12-01,"Residential Consumption","Rhode Island","RI",3365 +2010-12-01,"Residential Consumption","Mississippi","MS",4702 +2010-12-01,"Residential Consumption","Iowa","IA",12650 +2010-12-01,"Residential Consumption","Hawaii","HI",42 +2010-12-01,"Residential Consumption","Nevada","NV",5748 +2010-12-01,"Residential Consumption","Georgia","GA",28830 +2010-12-01,"Residential Consumption","North Dakota","ND",1920 +2010-12-01,"Residential Consumption","Arkansas","AR",5087 +2010-12-01,"Residential Consumption","New York","NY",70039 +2010-12-01,"Residential Consumption","Oregon","OR",6304 +2010-12-01,"Residential Consumption","North Carolina","NC",19166 +2010-12-01,"Residential Consumption","Connecticut","CT",6536 +2010-12-01,"Residential Consumption","Maryland","MD",18508 +2010-12-01,"Residential Consumption","Minnesota","MN",23492 +2010-12-01,"Residential Consumption","Pennsylvania","PA",42837 +2010-12-01,"Residential Consumption","Indiana","IN",28547 +2010-12-01,"Residential Consumption","Idaho","ID",4094 +2010-12-01,"Residential Consumption","Washington","WA",11637 +2010-12-01,"Vehicle Fuel Consumption","Alabama","AL",9 +2010-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2010-12-01,"Vehicle Fuel Consumption","Texas","TX",198 +2010-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2010-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2010-12-01,"Vehicle Fuel Consumption","California","CA",1153 +2010-12-01,"Vehicle Fuel Consumption","New York","NY",305 +2010-12-01,"Vehicle Fuel Consumption","Nevada","NV",71 +2010-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2010-12-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2010-12-01,"Vehicle Fuel Consumption","Alaska","AK",2 +2010-12-01,"Vehicle Fuel Consumption","Arkansas","AR",1 +2010-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2434 +2010-12-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2010-12-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2010-12-01,"Vehicle Fuel Consumption","Ohio","OH",12 +2010-12-01,"Vehicle Fuel Consumption","Florida","FL",5 +2010-12-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2010-12-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2010-12-01,"Vehicle Fuel Consumption","Michigan","MI",22 +2010-12-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2010-12-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2010-12-01,"Vehicle Fuel Consumption","Georgia","GA",78 +2010-12-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2010-12-01,"Vehicle Fuel Consumption","Utah","UT",17 +2010-12-01,"Vehicle Fuel Consumption","Virginia","VA",12 +2010-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2010-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2010-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",13 +2010-12-01,"Vehicle Fuel Consumption","Indiana","IN",4 +2010-12-01,"Vehicle Fuel Consumption","New Mexico","NM",25 +2010-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2010-12-01,"Vehicle Fuel Consumption","Arizona","AZ",171 +2010-12-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2010-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2010-12-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2010-12-01,"Vehicle Fuel Consumption","Illinois","IL",25 +2010-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2010-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2010-12-01,"Vehicle Fuel Consumption","Washington","WA",37 +2010-12-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2010-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2010-12-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2010-12-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2010-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2010-12-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2010-12-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2010-12-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2010-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2010-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2010-12-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2010-12-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-01-01,"Commercial Consumption","Wyoming","WY",1816 +2011-01-01,"Commercial Consumption","North Dakota","ND",1945 +2011-01-01,"Commercial Consumption","Maine","ME",1081 +2011-01-01,"Commercial Consumption","Kentucky","KY",7608 +2011-01-01,"Commercial Consumption","U.S.","U.S.",527999 +2011-01-01,"Commercial Consumption","Pennsylvania","PA",27444 +2011-01-01,"Commercial Consumption","Montana","MT",3355 +2011-01-01,"Commercial Consumption","Hawaii","HI",158 +2011-01-01,"Commercial Consumption","Alabama","AL",4708 +2011-01-01,"Commercial Consumption","New York","NY",46338 +2011-01-01,"Commercial Consumption","New Mexico","NM",3962 +2011-01-01,"Commercial Consumption","Rhode Island","RI",2089 +2011-01-01,"Commercial Consumption","Michigan","MI",30252 +2011-01-01,"Commercial Consumption","Louisiana","LA",3615 +2011-01-01,"Commercial Consumption","North Carolina","NC",9522 +2011-01-01,"Commercial Consumption","Oregon","OR",4226 +2011-01-01,"Commercial Consumption","Oklahoma","OK",7502 +2011-01-01,"Commercial Consumption","Georgia","GA",10634 +2011-01-01,"Commercial Consumption","Vermont","VT",431 +2011-01-01,"Commercial Consumption","Idaho","ID",2522 +2011-01-01,"Commercial Consumption","Missouri","MO",12757 +2011-01-01,"Commercial Consumption","Wisconsin","WI",16206 +2011-01-01,"Commercial Consumption","South Dakota","SD",2065 +2011-01-01,"Commercial Consumption","New Hampshire","NH",1690 +2011-01-01,"Commercial Consumption","Kansas","KS",6560 +2011-01-01,"Commercial Consumption","California","CA",25875 +2011-01-01,"Commercial Consumption","Delaware","DE",1883 +2011-01-01,"Commercial Consumption","West Virginia","WV",3875 +2011-01-01,"Commercial Consumption","Utah","UT",6891 +2011-01-01,"Commercial Consumption","New Jersey","NJ",28909 +2011-01-01,"Commercial Consumption","Alaska","AK",2603 +2011-01-01,"Commercial Consumption","Mississippi","MS",3593 +2011-01-01,"Commercial Consumption","District of Columbia","DC",2711 +2011-01-01,"Commercial Consumption","Washington","WA",7463 +2011-01-01,"Commercial Consumption","Minnesota","MN",18087 +2011-01-01,"Commercial Consumption","Colorado","CO",8983 +2011-01-01,"Commercial Consumption","Virginia","VA",11668 +2011-01-01,"Commercial Consumption","Massachusetts","MA",14998 +2011-01-01,"Commercial Consumption","Ohio","OH",31485 +2011-01-01,"Commercial Consumption","Iowa","IA",9825 +2011-01-01,"Commercial Consumption","Connecticut","CT",7129 +2011-01-01,"Commercial Consumption","Nebraska","NE",6307 +2011-01-01,"Commercial Consumption","Arizona","AZ",4299 +2011-01-01,"Commercial Consumption","Illinois","IL",39942 +2011-01-01,"Commercial Consumption","South Carolina","SC",3895 +2011-01-01,"Commercial Consumption","Texas","TX",25773 +2011-01-01,"Commercial Consumption","Maryland","MD",11518 +2011-01-01,"Commercial Consumption","Florida","FL",5819 +2011-01-01,"Commercial Consumption","Arkansas","AR",6184 +2011-01-01,"Commercial Consumption","Tennessee","TN",10306 +2011-01-01,"Commercial Consumption","Nevada","NV",4017 +2011-01-01,"Commercial Consumption","Indiana","IN",15473 +2011-01-01,"Delivered to Consumers","U.S.","U.S.",2699039 +2011-01-01,"Delivered to Consumers","Delaware","DE",6046 +2011-01-01,"Delivered to Consumers","South Dakota","SD",8454 +2011-01-01,"Delivered to Consumers","New York","NY",163122 +2011-01-01,"Delivered to Consumers","Idaho","ID",9799 +2011-01-01,"Delivered to Consumers","Wisconsin","WI",60332 +2011-01-01,"Delivered to Consumers","Virginia","VA",49416 +2011-01-01,"Delivered to Consumers","Mississippi","MS",40108 +2011-01-01,"Delivered to Consumers","Nevada","NV",23812 +2011-01-01,"Delivered to Consumers","New Jersey","NJ",97844 +2011-01-01,"Delivered to Consumers","Montana","MT",8775 +2011-01-01,"Delivered to Consumers","Michigan","MI",120903 +2011-01-01,"Delivered to Consumers","Iowa","IA",41922 +2011-01-01,"Delivered to Consumers","Alabama","AL",55881 +2011-01-01,"Delivered to Consumers","Massachusetts","MA",59371 +2011-01-01,"Delivered to Consumers","Washington","WA",30787 +2011-01-01,"Delivered to Consumers","Wyoming","WY",8345 +2011-01-01,"Delivered to Consumers","West Virginia","WV",12168 +2011-01-01,"Delivered to Consumers","Hawaii","HI",235 +2011-01-01,"Delivered to Consumers","Tennessee","TN",41454 +2011-01-01,"Delivered to Consumers","Nebraska","NE",22279 +2011-01-01,"Delivered to Consumers","Maine","ME",7042 +2011-01-01,"Delivered to Consumers","North Dakota","ND",6522 +2011-01-01,"Delivered to Consumers","Vermont","VT",1377 +2011-01-01,"Delivered to Consumers","Kansas","KS",33412 +2011-01-01,"Delivered to Consumers","Colorado","CO",48254 +2011-01-01,"Delivered to Consumers","Oregon","OR",23013 +2011-01-01,"Delivered to Consumers","New Hampshire","NH",7195 +2011-01-01,"Delivered to Consumers","Minnesota","MN",62720 +2011-01-01,"Delivered to Consumers","Utah","UT",25869 +2011-01-01,"Delivered to Consumers","Maryland","MD",32442 +2011-01-01,"Delivered to Consumers","Oklahoma","OK",58090 +2011-01-01,"Delivered to Consumers","Ohio","OH",128620 +2011-01-01,"Delivered to Consumers","Arkansas","AR",30813 +2011-01-01,"Delivered to Consumers","Missouri","MO",48282 +2011-01-01,"Delivered to Consumers","Arizona","AZ",26189 +2011-01-01,"Delivered to Consumers","Indiana","IN",83924 +2011-01-01,"Delivered to Consumers","Illinois","IL",161150 +2011-01-01,"Delivered to Consumers","Rhode Island","RI",11811 +2011-01-01,"Delivered to Consumers","Alaska","AK",10091 +2011-01-01,"Delivered to Consumers","North Carolina","NC",41316 +2011-01-01,"Delivered to Consumers","California","CA",207654 +2011-01-01,"Delivered to Consumers","Texas","TX",292533 +2011-01-01,"Delivered to Consumers","South Carolina","SC",26221 +2011-01-01,"Delivered to Consumers","Louisiana","LA",113148 +2011-01-01,"Delivered to Consumers","Florida","FL",86848 +2011-01-01,"Delivered to Consumers","Kentucky","KY",32180 +2011-01-01,"Delivered to Consumers","Pennsylvania","PA",116298 +2011-01-01,"Delivered to Consumers","Georgia","GA",65024 +2011-01-01,"Delivered to Consumers","District of Columbia","DC",5758 +2011-01-01,"Delivered to Consumers","New Mexico","NM",17586 +2011-01-01,"Delivered to Consumers","Connecticut","CT",26604 +2011-01-01,"Electric Power Consumption","Rhode Island","RI",5324 +2011-01-01,"Electric Power Consumption","Kansas","KS",1117 +2011-01-01,"Electric Power Consumption","West Virginia","WV",96 +2011-01-01,"Electric Power Consumption","Nevada","NV",11332 +2011-01-01,"Electric Power Consumption","Iowa","IA",646 +2011-01-01,"Electric Power Consumption","New Mexico","NM",5351 +2011-01-01,"Electric Power Consumption","Arkansas","AR",8137 +2011-01-01,"Electric Power Consumption","South Dakota","SD",22 +2011-01-01,"Electric Power Consumption","Montana","MT",20 +2011-01-01,"Electric Power Consumption","Texas","TX",96470 +2011-01-01,"Electric Power Consumption","Utah","UT",3394 +2011-01-01,"Electric Power Consumption","Oregon","OR",6264 +2011-01-01,"Electric Power Consumption","Minnesota","MN",2370 +2011-01-01,"Electric Power Consumption","California","CA",51610 +2011-01-01,"Electric Power Consumption","Colorado","CO",7097 +2011-01-01,"Electric Power Consumption","South Carolina","SC",7329 +2011-01-01,"Electric Power Consumption","Oklahoma","OK",18623 +2011-01-01,"Electric Power Consumption","Missouri","MO",3102 +2011-01-01,"Electric Power Consumption","Mississippi","MS",20448 +2011-01-01,"Electric Power Consumption","Connecticut","CT",7741 +2011-01-01,"Electric Power Consumption","Washington","WA",3649 +2011-01-01,"Electric Power Consumption","Virginia","VA",11260 +2011-01-01,"Electric Power Consumption","New York","NY",29397 +2011-01-01,"Electric Power Consumption","Massachusetts","MA",13144 +2011-01-01,"Electric Power Consumption","Vermont","VT",5 +2011-01-01,"Electric Power Consumption","U.S.","U.S.",539792 +2011-01-01,"Electric Power Consumption","New Hampshire","NH",3337 +2011-01-01,"Electric Power Consumption","Georgia","GA",12157 +2011-01-01,"Electric Power Consumption","New Jersey","NJ",14291 +2011-01-01,"Electric Power Consumption","Idaho","ID",567 +2011-01-01,"Electric Power Consumption","Pennsylvania","PA",18005 +2011-01-01,"Electric Power Consumption","Nebraska","NE",92 +2011-01-01,"Electric Power Consumption","Hawaii","HI",NA +2011-01-01,"Electric Power Consumption","Ohio","OH",7012 +2011-01-01,"Electric Power Consumption","Delaware","DE",649 +2011-01-01,"Electric Power Consumption","Arizona","AZ",11666 +2011-01-01,"Electric Power Consumption","Florida","FL",69954 +2011-01-01,"Electric Power Consumption","Alabama","AL",26720 +2011-01-01,"Electric Power Consumption","Louisiana","LA",22882 +2011-01-01,"Electric Power Consumption","Illinois","IL",2664 +2011-01-01,"Electric Power Consumption","Indiana","IN",7936 +2011-01-01,"Electric Power Consumption","Michigan","MI",9935 +2011-01-01,"Electric Power Consumption","Wisconsin","WI",2845 +2011-01-01,"Electric Power Consumption","Wyoming","WY",33 +2011-01-01,"Electric Power Consumption","Tennessee","TN",2306 +2011-01-01,"Electric Power Consumption","North Carolina","NC",4681 +2011-01-01,"Electric Power Consumption","Maine","ME",2752 +2011-01-01,"Electric Power Consumption","Kentucky","KY",967 +2011-01-01,"Electric Power Consumption","North Dakota","ND",NA +2011-01-01,"Electric Power Consumption","Maryland","MD",394 +2011-01-01,"Electric Power Consumption","Alaska","AK",3932 +2011-01-01,"Industrial Consumption","Ohio","OH",28703 +2011-01-01,"Industrial Consumption","Vermont","VT",344 +2011-01-01,"Industrial Consumption","New Jersey","NJ",5747 +2011-01-01,"Industrial Consumption","Rhode Island","RI",752 +2011-01-01,"Industrial Consumption","North Carolina","NC",10100 +2011-01-01,"Industrial Consumption","Massachusetts","MA",5800 +2011-01-01,"Industrial Consumption","Arizona","AZ",2300 +2011-01-01,"Industrial Consumption","New York","NY",9256 +2011-01-01,"Industrial Consumption","Arkansas","AR",8668 +2011-01-01,"Industrial Consumption","Wyoming","WY",4291 +2011-01-01,"Industrial Consumption","Wisconsin","WI",14888 +2011-01-01,"Industrial Consumption","Idaho","ID",2378 +2011-01-01,"Industrial Consumption","Delaware","DE",1058 +2011-01-01,"Industrial Consumption","Virginia","VA",6121 +2011-01-01,"Industrial Consumption","Minnesota","MN",16134 +2011-01-01,"Industrial Consumption","Iowa","IA",16496 +2011-01-01,"Industrial Consumption","Kentucky","KY",10852 +2011-01-01,"Industrial Consumption","Hawaii","HI",29 +2011-01-01,"Industrial Consumption","South Dakota","SD",3739 +2011-01-01,"Industrial Consumption","Kansas","KS",10760 +2011-01-01,"Industrial Consumption","Utah","UT",2945 +2011-01-01,"Industrial Consumption","Pennsylvania","PA",21620 +2011-01-01,"Industrial Consumption","Oregon","OR",5417 +2011-01-01,"Industrial Consumption","Texas","TX",127043 +2011-01-01,"Industrial Consumption","Alaska","AK",694 +2011-01-01,"Industrial Consumption","North Dakota","ND",2434 +2011-01-01,"Industrial Consumption","Louisiana","LA",77599 +2011-01-01,"Industrial Consumption","Washington","WA",7028 +2011-01-01,"Industrial Consumption","Maine","ME",2941 +2011-01-01,"Industrial Consumption","New Hampshire","NH",774 +2011-01-01,"Industrial Consumption","Connecticut","CT",2940 +2011-01-01,"Industrial Consumption","Maryland","MD",1742 +2011-01-01,"Industrial Consumption","Oklahoma","OK",17612 +2011-01-01,"Industrial Consumption","Colorado","CO",8439 +2011-01-01,"Industrial Consumption","Mississippi","MS",10297 +2011-01-01,"Industrial Consumption","West Virginia","WV",2502 +2011-01-01,"Industrial Consumption","Tennessee","TN",11015 +2011-01-01,"Industrial Consumption","Missouri","MO",7263 +2011-01-01,"Industrial Consumption","Nevada","NV",967 +2011-01-01,"Industrial Consumption","California","CA",58441 +2011-01-01,"Industrial Consumption","Alabama","AL",14486 +2011-01-01,"Industrial Consumption","South Carolina","SC",7057 +2011-01-01,"Industrial Consumption","Florida","FL",7676 +2011-01-01,"Industrial Consumption","Indiana","IN",30559 +2011-01-01,"Industrial Consumption","Illinois","IL",29385 +2011-01-01,"Industrial Consumption","Montana","MT",1870 +2011-01-01,"Industrial Consumption","New Mexico","NM",1751 +2011-01-01,"Industrial Consumption","U.S.","U.S.",658927 +2011-01-01,"Industrial Consumption","Nebraska","NE",7380 +2011-01-01,"Industrial Consumption","Michigan","MI",16922 +2011-01-01,"Industrial Consumption","Georgia","GA",13713 +2011-01-01,"Industrial Consumption","District of Columbia","DC",0 +2011-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",106975 +2011-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",82626 +2011-01-01,"Residential Consumption","Iowa","IA",14956 +2011-01-01,"Residential Consumption","Maryland","MD",18769 +2011-01-01,"Residential Consumption","New Mexico","NM",6501 +2011-01-01,"Residential Consumption","Kentucky","KY",12752 +2011-01-01,"Residential Consumption","Wyoming","WY",2203 +2011-01-01,"Residential Consumption","Rhode Island","RI",3638 +2011-01-01,"Residential Consumption","Oregon","OR",7093 +2011-01-01,"Residential Consumption","Louisiana","LA",9051 +2011-01-01,"Residential Consumption","Tennessee","TN",17826 +2011-01-01,"Residential Consumption","Nebraska","NE",8497 +2011-01-01,"Residential Consumption","Pennsylvania","PA",49202 +2011-01-01,"Residential Consumption","Arkansas","AR",7822 +2011-01-01,"Residential Consumption","Arizona","AZ",7779 +2011-01-01,"Residential Consumption","U.S.","U.S.",969775 +2011-01-01,"Residential Consumption","Mississippi","MS",5770 +2011-01-01,"Residential Consumption","Hawaii","HI",47 +2011-01-01,"Residential Consumption","Maine","ME",269 +2011-01-01,"Residential Consumption","Massachusetts","MA",25365 +2011-01-01,"Residential Consumption","Idaho","ID",4321 +2011-01-01,"Residential Consumption","New Hampshire","NH",1391 +2011-01-01,"Residential Consumption","Oklahoma","OK",14331 +2011-01-01,"Residential Consumption","New York","NY",77802 +2011-01-01,"Residential Consumption","Vermont","VT",596 +2011-01-01,"Residential Consumption","Utah","UT",12615 +2011-01-01,"Residential Consumption","New Jersey","NJ",48881 +2011-01-01,"Residential Consumption","Montana","MT",3529 +2011-01-01,"Residential Consumption","Missouri","MO",25159 +2011-01-01,"Residential Consumption","South Carolina","SC",7938 +2011-01-01,"Residential Consumption","South Dakota","SD",2628 +2011-01-01,"Residential Consumption","Minnesota","MN",26129 +2011-01-01,"Residential Consumption","Georgia","GA",28427 +2011-01-01,"Residential Consumption","Texas","TX",43060 +2011-01-01,"Residential Consumption","North Carolina","NC",17009 +2011-01-01,"Residential Consumption","Connecticut","CT",8793 +2011-01-01,"Residential Consumption","Wisconsin","WI",26389 +2011-01-01,"Residential Consumption","Nevada","NV",7445 +2011-01-01,"Residential Consumption","District of Columbia","DC",2905 +2011-01-01,"Residential Consumption","Florida","FL",3392 +2011-01-01,"Residential Consumption","Alaska","AK",2862 +2011-01-01,"Residential Consumption","Illinois","IL",89136 +2011-01-01,"Residential Consumption","Virginia","VA",20344 +2011-01-01,"Residential Consumption","Michigan","MI",63766 +2011-01-01,"Residential Consumption","Indiana","IN",29955 +2011-01-01,"Residential Consumption","North Dakota","ND",2143 +2011-01-01,"Residential Consumption","Kansas","KS",14975 +2011-01-01,"Residential Consumption","California","CA",70482 +2011-01-01,"Residential Consumption","Ohio","OH",61413 +2011-01-01,"Residential Consumption","Colorado","CO",23711 +2011-01-01,"Residential Consumption","Washington","WA",12605 +2011-01-01,"Residential Consumption","Delaware","DE",2456 +2011-01-01,"Residential Consumption","Alabama","AL",9951 +2011-01-01,"Residential Consumption","West Virginia","WV",5695 +2011-01-01,"Vehicle Fuel Consumption","Washington","WA",43 +2011-01-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-01-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-01-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2011-01-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2011-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2011-01-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2011-01-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-01-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2011-01-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",65 +2011-01-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-01-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-01-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-01-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2011-01-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-01-01,"Vehicle Fuel Consumption","California","CA",1245 +2011-01-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2011-01-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2011-01-01,"Vehicle Fuel Consumption","Texas","TX",187 +2011-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-01-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-01-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2011-01-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-01-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2011-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-01-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2546 +2011-01-01,"Vehicle Fuel Consumption","Utah","UT",25 +2011-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2011-01-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-01-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-01-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-01-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-01-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-01-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-01-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2011-01-01,"Vehicle Fuel Consumption","New York","NY",328 +2011-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-01-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2011-01-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-01-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-02-01,"Commercial Consumption","New Hampshire","NH",1446 +2011-02-01,"Commercial Consumption","Maine","ME",920 +2011-02-01,"Commercial Consumption","Maryland","MD",9107 +2011-02-01,"Commercial Consumption","Rhode Island","RI",1868 +2011-02-01,"Commercial Consumption","Hawaii","HI",145 +2011-02-01,"Commercial Consumption","Alaska","AK",2487 +2011-02-01,"Commercial Consumption","District of Columbia","DC",2257 +2011-02-01,"Commercial Consumption","Washington","WA",7272 +2011-02-01,"Commercial Consumption","Minnesota","MN",13957 +2011-02-01,"Commercial Consumption","Colorado","CO",8105 +2011-02-01,"Commercial Consumption","Oregon","OR",3941 +2011-02-01,"Commercial Consumption","Iowa","IA",7560 +2011-02-01,"Commercial Consumption","New York","NY",40453 +2011-02-01,"Commercial Consumption","Wyoming","WY",1713 +2011-02-01,"Commercial Consumption","New Mexico","NM",4177 +2011-02-01,"Commercial Consumption","Nebraska","NE",4768 +2011-02-01,"Commercial Consumption","South Carolina","SC",2534 +2011-02-01,"Commercial Consumption","Utah","UT",5401 +2011-02-01,"Commercial Consumption","Missouri","MO",9446 +2011-02-01,"Commercial Consumption","Delaware","DE",1393 +2011-02-01,"Commercial Consumption","Indiana","IN",11447 +2011-02-01,"Commercial Consumption","North Dakota","ND",1657 +2011-02-01,"Commercial Consumption","New Jersey","NJ",25045 +2011-02-01,"Commercial Consumption","U.S.","U.S.",431732 +2011-02-01,"Commercial Consumption","Texas","TX",25372 +2011-02-01,"Commercial Consumption","Ohio","OH",25802 +2011-02-01,"Commercial Consumption","Idaho","ID",2167 +2011-02-01,"Commercial Consumption","Alabama","AL",3036 +2011-02-01,"Commercial Consumption","Arizona","AZ",3956 +2011-02-01,"Commercial Consumption","Tennessee","TN",7040 +2011-02-01,"Commercial Consumption","Louisiana","LA",3099 +2011-02-01,"Commercial Consumption","North Carolina","NC",6169 +2011-02-01,"Commercial Consumption","Wisconsin","WI",12873 +2011-02-01,"Commercial Consumption","Kansas","KS",5252 +2011-02-01,"Commercial Consumption","Arkansas","AR",5592 +2011-02-01,"Commercial Consumption","Nevada","NV",3380 +2011-02-01,"Commercial Consumption","Illinois","IL",28569 +2011-02-01,"Commercial Consumption","West Virginia","WV",3082 +2011-02-01,"Commercial Consumption","Oklahoma","OK",6047 +2011-02-01,"Commercial Consumption","Pennsylvania","PA",20793 +2011-02-01,"Commercial Consumption","Massachusetts","MA",13123 +2011-02-01,"Commercial Consumption","Georgia","GA",6713 +2011-02-01,"Commercial Consumption","Florida","FL",4818 +2011-02-01,"Commercial Consumption","Connecticut","CT",6660 +2011-02-01,"Commercial Consumption","Mississippi","MS",2765 +2011-02-01,"Commercial Consumption","Virginia","VA",7957 +2011-02-01,"Commercial Consumption","South Dakota","SD",1642 +2011-02-01,"Commercial Consumption","Montana","MT",3231 +2011-02-01,"Commercial Consumption","Kentucky","KY",5039 +2011-02-01,"Commercial Consumption","Vermont","VT",373 +2011-02-01,"Commercial Consumption","California","CA",25063 +2011-02-01,"Commercial Consumption","Michigan","MI",25020 +2011-02-01,"Delivered to Consumers","Montana","MT",8372 +2011-02-01,"Delivered to Consumers","Idaho","ID",8553 +2011-02-01,"Delivered to Consumers","Kentucky","KY",23501 +2011-02-01,"Delivered to Consumers","Nevada","NV",20637 +2011-02-01,"Delivered to Consumers","Rhode Island","RI",9306 +2011-02-01,"Delivered to Consumers","Iowa","IA",33359 +2011-02-01,"Delivered to Consumers","Arkansas","AR",27272 +2011-02-01,"Delivered to Consumers","North Dakota","ND",5600 +2011-02-01,"Delivered to Consumers","Minnesota","MN",50157 +2011-02-01,"Delivered to Consumers","Indiana","IN",67710 +2011-02-01,"Delivered to Consumers","Wyoming","WY",7643 +2011-02-01,"Delivered to Consumers","Vermont","VT",1195 +2011-02-01,"Delivered to Consumers","Illinois","IL",128139 +2011-02-01,"Delivered to Consumers","South Dakota","SD",7349 +2011-02-01,"Delivered to Consumers","Wisconsin","WI",49272 +2011-02-01,"Delivered to Consumers","Nebraska","NE",18253 +2011-02-01,"Delivered to Consumers","Missouri","MO",35994 +2011-02-01,"Delivered to Consumers","Georgia","GA",44959 +2011-02-01,"Delivered to Consumers","New Mexico","NM",18016 +2011-02-01,"Delivered to Consumers","West Virginia","WV",9533 +2011-02-01,"Delivered to Consumers","Maryland","MD",23536 +2011-02-01,"Delivered to Consumers","Alaska","AK",9201 +2011-02-01,"Delivered to Consumers","Ohio","OH",106243 +2011-02-01,"Delivered to Consumers","Massachusetts","MA",50826 +2011-02-01,"Delivered to Consumers","New Jersey","NJ",78662 +2011-02-01,"Delivered to Consumers","U.S.","U.S.",2285465 +2011-02-01,"Delivered to Consumers","Connecticut","CT",25210 +2011-02-01,"Delivered to Consumers","Pennsylvania","PA",98257 +2011-02-01,"Delivered to Consumers","North Carolina","NC",28258 +2011-02-01,"Delivered to Consumers","Washington","WA",27340 +2011-02-01,"Delivered to Consumers","Utah","UT",21300 +2011-02-01,"Delivered to Consumers","Hawaii","HI",213 +2011-02-01,"Delivered to Consumers","Mississippi","MS",33250 +2011-02-01,"Delivered to Consumers","California","CA",196577 +2011-02-01,"Delivered to Consumers","Oregon","OR",19034 +2011-02-01,"Delivered to Consumers","Louisiana","LA",103356 +2011-02-01,"Delivered to Consumers","District of Columbia","DC",4417 +2011-02-01,"Delivered to Consumers","Virginia","VA",38032 +2011-02-01,"Delivered to Consumers","Maine","ME",5373 +2011-02-01,"Delivered to Consumers","Delaware","DE",5740 +2011-02-01,"Delivered to Consumers","New York","NY",141905 +2011-02-01,"Delivered to Consumers","Oklahoma","OK",50288 +2011-02-01,"Delivered to Consumers","Kansas","KS",27769 +2011-02-01,"Delivered to Consumers","Tennessee","TN",28431 +2011-02-01,"Delivered to Consumers","Michigan","MI",100201 +2011-02-01,"Delivered to Consumers","Alabama","AL",46440 +2011-02-01,"Delivered to Consumers","Colorado","CO",43398 +2011-02-01,"Delivered to Consumers","Texas","TX",271389 +2011-02-01,"Delivered to Consumers","South Carolina","SC",18862 +2011-02-01,"Delivered to Consumers","Arizona","AZ",22708 +2011-02-01,"Delivered to Consumers","New Hampshire","NH",7879 +2011-02-01,"Delivered to Consumers","Florida","FL",76548 +2011-02-01,"Electric Power Consumption","Washington","WA",1591 +2011-02-01,"Electric Power Consumption","New Jersey","NJ",13352 +2011-02-01,"Electric Power Consumption","Nevada","NV",10267 +2011-02-01,"Electric Power Consumption","Wyoming","WY",43 +2011-02-01,"Electric Power Consumption","Ohio","OH",4744 +2011-02-01,"Electric Power Consumption","Delaware","DE",1604 +2011-02-01,"Electric Power Consumption","California","CA",51394 +2011-02-01,"Electric Power Consumption","New Mexico","NM",5412 +2011-02-01,"Electric Power Consumption","Utah","UT",3294 +2011-02-01,"Electric Power Consumption","Minnesota","MN",1584 +2011-02-01,"Electric Power Consumption","New Hampshire","NH",4543 +2011-02-01,"Electric Power Consumption","New York","NY",27122 +2011-02-01,"Electric Power Consumption","Illinois","IL",1759 +2011-02-01,"Electric Power Consumption","Pennsylvania","PA",19710 +2011-02-01,"Electric Power Consumption","Hawaii","HI",NA +2011-02-01,"Electric Power Consumption","Virginia","VA",10373 +2011-02-01,"Electric Power Consumption","Colorado","CO",6339 +2011-02-01,"Electric Power Consumption","Texas","TX",92143 +2011-02-01,"Electric Power Consumption","Massachusetts","MA",11659 +2011-02-01,"Electric Power Consumption","Wisconsin","WI",2867 +2011-02-01,"Electric Power Consumption","Vermont","VT",4 +2011-02-01,"Electric Power Consumption","Tennessee","TN",341 +2011-02-01,"Electric Power Consumption","Maine","ME",1615 +2011-02-01,"Electric Power Consumption","Mississippi","MS",16289 +2011-02-01,"Electric Power Consumption","North Dakota","ND",NA +2011-02-01,"Electric Power Consumption","Maryland","MD",286 +2011-02-01,"Electric Power Consumption","Arizona","AZ",9602 +2011-02-01,"Electric Power Consumption","Arkansas","AR",6894 +2011-02-01,"Electric Power Consumption","West Virginia","WV",39 +2011-02-01,"Electric Power Consumption","U.S.","U.S.",483686 +2011-02-01,"Electric Power Consumption","South Dakota","SD",7 +2011-02-01,"Electric Power Consumption","Georgia","GA",9127 +2011-02-01,"Electric Power Consumption","Florida","FL",62308 +2011-02-01,"Electric Power Consumption","Alaska","AK",3363 +2011-02-01,"Electric Power Consumption","Louisiana","LA",21955 +2011-02-01,"Electric Power Consumption","Oregon","OR",3628 +2011-02-01,"Electric Power Consumption","Montana","MT",195 +2011-02-01,"Electric Power Consumption","South Carolina","SC",5371 +2011-02-01,"Electric Power Consumption","Rhode Island","RI",3844 +2011-02-01,"Electric Power Consumption","Michigan","MI",7487 +2011-02-01,"Electric Power Consumption","Iowa","IA",375 +2011-02-01,"Electric Power Consumption","North Carolina","NC",3473 +2011-02-01,"Electric Power Consumption","Indiana","IN",5599 +2011-02-01,"Electric Power Consumption","Idaho","ID",472 +2011-02-01,"Electric Power Consumption","Oklahoma","OK",16282 +2011-02-01,"Electric Power Consumption","Kansas","KS",1398 +2011-02-01,"Electric Power Consumption","Nebraska","NE",84 +2011-02-01,"Electric Power Consumption","Missouri","MO",1739 +2011-02-01,"Electric Power Consumption","Kentucky","KY",481 +2011-02-01,"Electric Power Consumption","Connecticut","CT",7819 +2011-02-01,"Electric Power Consumption","Alabama","AL",23752 +2011-02-01,"Industrial Consumption","North Dakota","ND",2153 +2011-02-01,"Industrial Consumption","Missouri","MO",6369 +2011-02-01,"Industrial Consumption","South Dakota","SD",3624 +2011-02-01,"Industrial Consumption","Ohio","OH",26865 +2011-02-01,"Industrial Consumption","Arizona","AZ",2067 +2011-02-01,"Industrial Consumption","Maine","ME",2603 +2011-02-01,"Industrial Consumption","South Carolina","SC",6655 +2011-02-01,"Industrial Consumption","West Virginia","WV",2364 +2011-02-01,"Industrial Consumption","Michigan","MI",16560 +2011-02-01,"Industrial Consumption","Oklahoma","OK",17238 +2011-02-01,"Industrial Consumption","Kansas","KS",9244 +2011-02-01,"Industrial Consumption","U.S.","U.S.",599754 +2011-02-01,"Industrial Consumption","Pennsylvania","PA",19284 +2011-02-01,"Industrial Consumption","Idaho","ID",2185 +2011-02-01,"Industrial Consumption","Florida","FL",6963 +2011-02-01,"Industrial Consumption","Rhode Island","RI",725 +2011-02-01,"Industrial Consumption","North Carolina","NC",8880 +2011-02-01,"Industrial Consumption","Alaska","AK",595 +2011-02-01,"Industrial Consumption","Nevada","NV",999 +2011-02-01,"Industrial Consumption","Texas","TX",109828 +2011-02-01,"Industrial Consumption","Minnesota","MN",14773 +2011-02-01,"Industrial Consumption","Washington","WA",6789 +2011-02-01,"Industrial Consumption","Utah","UT",3194 +2011-02-01,"Industrial Consumption","Arkansas","AR",7883 +2011-02-01,"Industrial Consumption","Wisconsin","WI",12730 +2011-02-01,"Industrial Consumption","New Jersey","NJ",4878 +2011-02-01,"Industrial Consumption","Iowa","IA",14330 +2011-02-01,"Industrial Consumption","Connecticut","CT",2692 +2011-02-01,"Industrial Consumption","Indiana","IN",28374 +2011-02-01,"Industrial Consumption","Illinois","IL",28834 +2011-02-01,"Industrial Consumption","Delaware","DE",980 +2011-02-01,"Industrial Consumption","New York","NY",8213 +2011-02-01,"Industrial Consumption","Nebraska","NE",6589 +2011-02-01,"Industrial Consumption","Virginia","VA",6498 +2011-02-01,"Industrial Consumption","Tennessee","TN",9820 +2011-02-01,"Industrial Consumption","New Hampshire","NH",668 +2011-02-01,"Industrial Consumption","Kentucky","KY",9634 +2011-02-01,"Industrial Consumption","Maryland","MD",1671 +2011-02-01,"Industrial Consumption","Massachusetts","MA",5544 +2011-02-01,"Industrial Consumption","Hawaii","HI",27 +2011-02-01,"Industrial Consumption","Oregon","OR",4929 +2011-02-01,"Industrial Consumption","Mississippi","MS",9995 +2011-02-01,"Industrial Consumption","Georgia","GA",12269 +2011-02-01,"Industrial Consumption","Louisiana","LA",70898 +2011-02-01,"Industrial Consumption","Colorado","CO",7806 +2011-02-01,"Industrial Consumption","District of Columbia","DC",0 +2011-02-01,"Industrial Consumption","Montana","MT",1697 +2011-02-01,"Industrial Consumption","New Mexico","NM",1814 +2011-02-01,"Industrial Consumption","California","CA",53538 +2011-02-01,"Industrial Consumption","Alabama","AL",13323 +2011-02-01,"Industrial Consumption","Vermont","VT",306 +2011-02-01,"Industrial Consumption","Wyoming","WY",3855 +2011-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",96973 +2011-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",69965 +2011-02-01,"Residential Consumption","Rhode Island","RI",2861 +2011-02-01,"Residential Consumption","Ohio","OH",48825 +2011-02-01,"Residential Consumption","Iowa","IA",11093 +2011-02-01,"Residential Consumption","Utah","UT",9389 +2011-02-01,"Residential Consumption","Nebraska","NE",6809 +2011-02-01,"Residential Consumption","Nevada","NV",5946 +2011-02-01,"Residential Consumption","Indiana","IN",22288 +2011-02-01,"Residential Consumption","New Hampshire","NH",1219 +2011-02-01,"Residential Consumption","Oklahoma","OK",10701 +2011-02-01,"Residential Consumption","Illinois","IL",68957 +2011-02-01,"Residential Consumption","Connecticut","CT",8037 +2011-02-01,"Residential Consumption","Michigan","MI",51109 +2011-02-01,"Residential Consumption","New Mexico","NM",6594 +2011-02-01,"Residential Consumption","Massachusetts","MA",20443 +2011-02-01,"Residential Consumption","Delaware","DE",1763 +2011-02-01,"Residential Consumption","Arizona","AZ",6951 +2011-02-01,"Residential Consumption","Wyoming","WY",2031 +2011-02-01,"Residential Consumption","U.S.","U.S.",767994 +2011-02-01,"Residential Consumption","Vermont","VT",512 +2011-02-01,"Residential Consumption","Arkansas","AR",6901 +2011-02-01,"Residential Consumption","Colorado","CO",21127 +2011-02-01,"Residential Consumption","California","CA",65457 +2011-02-01,"Residential Consumption","Oregon","OR",6525 +2011-02-01,"Residential Consumption","Wisconsin","WI",20797 +2011-02-01,"Residential Consumption","Minnesota","MN",19842 +2011-02-01,"Residential Consumption","Georgia","GA",16766 +2011-02-01,"Residential Consumption","Florida","FL",2453 +2011-02-01,"Residential Consumption","Idaho","ID",3719 +2011-02-01,"Residential Consumption","Kentucky","KY",8347 +2011-02-01,"Residential Consumption","Missouri","MO",18440 +2011-02-01,"Residential Consumption","West Virginia","WV",4049 +2011-02-01,"Residential Consumption","New York","NY",65821 +2011-02-01,"Residential Consumption","Texas","TX",43878 +2011-02-01,"Residential Consumption","Mississippi","MS",4201 +2011-02-01,"Residential Consumption","Hawaii","HI",41 +2011-02-01,"Residential Consumption","Tennessee","TN",11229 +2011-02-01,"Residential Consumption","Virginia","VA",13184 +2011-02-01,"Residential Consumption","District of Columbia","DC",2032 +2011-02-01,"Residential Consumption","Maine","ME",234 +2011-02-01,"Residential Consumption","New Jersey","NJ",35372 +2011-02-01,"Residential Consumption","Alabama","AL",6315 +2011-02-01,"Residential Consumption","Alaska","AK",2755 +2011-02-01,"Residential Consumption","Maryland","MD",12455 +2011-02-01,"Residential Consumption","South Dakota","SD",2076 +2011-02-01,"Residential Consumption","North Dakota","ND",1790 +2011-02-01,"Residential Consumption","Kansas","KS",11876 +2011-02-01,"Residential Consumption","Washington","WA",11649 +2011-02-01,"Residential Consumption","South Carolina","SC",4301 +2011-02-01,"Residential Consumption","North Carolina","NC",9734 +2011-02-01,"Residential Consumption","Louisiana","LA",7404 +2011-02-01,"Residential Consumption","Pennsylvania","PA",38447 +2011-02-01,"Residential Consumption","Montana","MT",3248 +2011-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-02-01,"Vehicle Fuel Consumption","New York","NY",297 +2011-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2011-02-01,"Vehicle Fuel Consumption","Nevada","NV",45 +2011-02-01,"Vehicle Fuel Consumption","Alabama","AL",15 +2011-02-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-02-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2011-02-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-02-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-02-01,"Vehicle Fuel Consumption","Texas","TX",169 +2011-02-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-02-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-02-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-02-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-02-01,"Vehicle Fuel Consumption","Florida","FL",6 +2011-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-02-01,"Vehicle Fuel Consumption","Oregon","OR",11 +2011-02-01,"Vehicle Fuel Consumption","Michigan","MI",25 +2011-02-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-02-01,"Vehicle Fuel Consumption","Utah","UT",22 +2011-02-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2011-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",20 +2011-02-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-02-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2011-02-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-02-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2011-02-01,"Vehicle Fuel Consumption","Idaho","ID",10 +2011-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",2299 +2011-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-02-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2011-02-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",67 +2011-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",58 +2011-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",15 +2011-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-02-01,"Vehicle Fuel Consumption","Colorado","CO",22 +2011-02-01,"Vehicle Fuel Consumption","Illinois","IL",20 +2011-02-01,"Vehicle Fuel Consumption","Washington","WA",39 +2011-02-01,"Vehicle Fuel Consumption","Georgia","GA",84 +2011-02-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-02-01,"Vehicle Fuel Consumption","Virginia","VA",20 +2011-02-01,"Vehicle Fuel Consumption","Arizona","AZ",131 +2011-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-02-01,"Vehicle Fuel Consumption","California","CA",1125 +2011-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",23 +2011-02-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-02-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-03-01,"Commercial Consumption","Wyoming","WY",1286 +2011-03-01,"Commercial Consumption","West Virginia","WV",2547 +2011-03-01,"Commercial Consumption","Virginia","VA",7402 +2011-03-01,"Commercial Consumption","U.S.","U.S.",360938 +2011-03-01,"Commercial Consumption","Kansas","KS",3607 +2011-03-01,"Commercial Consumption","Florida","FL",4931 +2011-03-01,"Commercial Consumption","Ohio","OH",22239 +2011-03-01,"Commercial Consumption","Alabama","AL",2244 +2011-03-01,"Commercial Consumption","Delaware","DE",1217 +2011-03-01,"Commercial Consumption","Washington","WA",6012 +2011-03-01,"Commercial Consumption","South Carolina","SC",2237 +2011-03-01,"Commercial Consumption","California","CA",21614 +2011-03-01,"Commercial Consumption","Montana","MT",3012 +2011-03-01,"Commercial Consumption","Georgia","GA",5444 +2011-03-01,"Commercial Consumption","Hawaii","HI",145 +2011-03-01,"Commercial Consumption","Alaska","AK",2138 +2011-03-01,"Commercial Consumption","Arkansas","AR",4121 +2011-03-01,"Commercial Consumption","Nevada","NV",3059 +2011-03-01,"Commercial Consumption","Oregon","OR",3450 +2011-03-01,"Commercial Consumption","Pennsylvania","PA",18203 +2011-03-01,"Commercial Consumption","Missouri","MO",7058 +2011-03-01,"Commercial Consumption","Kentucky","KY",4056 +2011-03-01,"Commercial Consumption","Mississippi","MS",2239 +2011-03-01,"Commercial Consumption","New Mexico","NM",3067 +2011-03-01,"Commercial Consumption","Oklahoma","OK",4586 +2011-03-01,"Commercial Consumption","Maryland","MD",8272 +2011-03-01,"Commercial Consumption","Idaho","ID",1739 +2011-03-01,"Commercial Consumption","Iowa","IA",6182 +2011-03-01,"Commercial Consumption","Connecticut","CT",5410 +2011-03-01,"Commercial Consumption","Tennessee","TN",5327 +2011-03-01,"Commercial Consumption","Colorado","CO",6519 +2011-03-01,"Commercial Consumption","Massachusetts","MA",10964 +2011-03-01,"Commercial Consumption","Texas","TX",17650 +2011-03-01,"Commercial Consumption","New York","NY",34280 +2011-03-01,"Commercial Consumption","Louisiana","LA",2441 +2011-03-01,"Commercial Consumption","Illinois","IL",23708 +2011-03-01,"Commercial Consumption","District of Columbia","DC",2066 +2011-03-01,"Commercial Consumption","North Dakota","ND",1571 +2011-03-01,"Commercial Consumption","Minnesota","MN",12873 +2011-03-01,"Commercial Consumption","Utah","UT",4063 +2011-03-01,"Commercial Consumption","South Dakota","SD",1441 +2011-03-01,"Commercial Consumption","New Jersey","NJ",21462 +2011-03-01,"Commercial Consumption","New Hampshire","NH",1177 +2011-03-01,"Commercial Consumption","Arizona","AZ",3112 +2011-03-01,"Commercial Consumption","Michigan","MI",22361 +2011-03-01,"Commercial Consumption","North Carolina","NC",5460 +2011-03-01,"Commercial Consumption","Wisconsin","WI",11062 +2011-03-01,"Commercial Consumption","Maine","ME",783 +2011-03-01,"Commercial Consumption","Vermont","VT",326 +2011-03-01,"Commercial Consumption","Rhode Island","RI",1543 +2011-03-01,"Commercial Consumption","Nebraska","NE",4044 +2011-03-01,"Commercial Consumption","Indiana","IN",9188 +2011-03-01,"Delivered to Consumers","Wyoming","WY",6709 +2011-03-01,"Delivered to Consumers","Idaho","ID",7101 +2011-03-01,"Delivered to Consumers","Tennessee","TN",23319 +2011-03-01,"Delivered to Consumers","Iowa","IA",30262 +2011-03-01,"Delivered to Consumers","North Carolina","NC",26456 +2011-03-01,"Delivered to Consumers","Colorado","CO",32037 +2011-03-01,"Delivered to Consumers","California","CA",170209 +2011-03-01,"Delivered to Consumers","South Carolina","SC",18808 +2011-03-01,"Delivered to Consumers","Maryland","MD",20605 +2011-03-01,"Delivered to Consumers","Connecticut","CT",20866 +2011-03-01,"Delivered to Consumers","Alabama","AL",39417 +2011-03-01,"Delivered to Consumers","Texas","TX",241348 +2011-03-01,"Delivered to Consumers","Maine","ME",5130 +2011-03-01,"Delivered to Consumers","Georgia","GA",39594 +2011-03-01,"Delivered to Consumers","District of Columbia","DC",3703 +2011-03-01,"Delivered to Consumers","Kansas","KS",22439 +2011-03-01,"Delivered to Consumers","Massachusetts","MA",45627 +2011-03-01,"Delivered to Consumers","North Dakota","ND",5578 +2011-03-01,"Delivered to Consumers","Utah","UT",16688 +2011-03-01,"Delivered to Consumers","Illinois","IL",108602 +2011-03-01,"Delivered to Consumers","Montana","MT",7876 +2011-03-01,"Delivered to Consumers","Alaska","AK",8536 +2011-03-01,"Delivered to Consumers","Oklahoma","OK",41159 +2011-03-01,"Delivered to Consumers","U.S.","U.S.",2056105 +2011-03-01,"Delivered to Consumers","Indiana","IN",64109 +2011-03-01,"Delivered to Consumers","Ohio","OH",99811 +2011-03-01,"Delivered to Consumers","Arkansas","AR",21844 +2011-03-01,"Delivered to Consumers","Pennsylvania","PA",94696 +2011-03-01,"Delivered to Consumers","Oregon","OR",16739 +2011-03-01,"Delivered to Consumers","Louisiana","LA",101839 +2011-03-01,"Delivered to Consumers","Delaware","DE",6512 +2011-03-01,"Delivered to Consumers","Rhode Island","RI",10198 +2011-03-01,"Delivered to Consumers","New York","NY",131789 +2011-03-01,"Delivered to Consumers","Virginia","VA",31635 +2011-03-01,"Delivered to Consumers","Mississippi","MS",27935 +2011-03-01,"Delivered to Consumers","Missouri","MO",28336 +2011-03-01,"Delivered to Consumers","Minnesota","MN",46720 +2011-03-01,"Delivered to Consumers","New Mexico","NM",13941 +2011-03-01,"Delivered to Consumers","Hawaii","HI",220 +2011-03-01,"Delivered to Consumers","Michigan","MI",91870 +2011-03-01,"Delivered to Consumers","Wisconsin","WI",45294 +2011-03-01,"Delivered to Consumers","Nevada","NV",20336 +2011-03-01,"Delivered to Consumers","New Jersey","NJ",70028 +2011-03-01,"Delivered to Consumers","Arizona","AZ",15504 +2011-03-01,"Delivered to Consumers","Washington","WA",24029 +2011-03-01,"Delivered to Consumers","West Virginia","WV",8378 +2011-03-01,"Delivered to Consumers","Vermont","VT",1080 +2011-03-01,"Delivered to Consumers","South Dakota","SD",6721 +2011-03-01,"Delivered to Consumers","Kentucky","KY",20670 +2011-03-01,"Delivered to Consumers","Nebraska","NE",17373 +2011-03-01,"Delivered to Consumers","New Hampshire","NH",6732 +2011-03-01,"Delivered to Consumers","Florida","FL",89696 +2011-03-01,"Electric Power Consumption","Louisiana","LA",19117 +2011-03-01,"Electric Power Consumption","Colorado","CO",5266 +2011-03-01,"Electric Power Consumption","Oklahoma","OK",13813 +2011-03-01,"Electric Power Consumption","Minnesota","MN",1972 +2011-03-01,"Electric Power Consumption","Wisconsin","WI",4005 +2011-03-01,"Electric Power Consumption","Wyoming","WY",38 +2011-03-01,"Electric Power Consumption","North Carolina","NC",4445 +2011-03-01,"Electric Power Consumption","Maine","ME",1331 +2011-03-01,"Electric Power Consumption","Delaware","DE",2871 +2011-03-01,"Electric Power Consumption","Alabama","AL",20204 +2011-03-01,"Electric Power Consumption","Virginia","VA",8224 +2011-03-01,"Electric Power Consumption","New York","NY",32716 +2011-03-01,"Electric Power Consumption","Vermont","VT",5 +2011-03-01,"Electric Power Consumption","Maryland","MD",382 +2011-03-01,"Electric Power Consumption","South Carolina","SC",6884 +2011-03-01,"Electric Power Consumption","Michigan","MI",8483 +2011-03-01,"Electric Power Consumption","Missouri","MO",2590 +2011-03-01,"Electric Power Consumption","Idaho","ID",62 +2011-03-01,"Electric Power Consumption","Texas","TX",79314 +2011-03-01,"Electric Power Consumption","Massachusetts","MA",12491 +2011-03-01,"Electric Power Consumption","West Virginia","WV",46 +2011-03-01,"Electric Power Consumption","South Dakota","SD",6 +2011-03-01,"Electric Power Consumption","North Dakota","ND",NA +2011-03-01,"Electric Power Consumption","New Mexico","NM",5067 +2011-03-01,"Electric Power Consumption","Utah","UT",2904 +2011-03-01,"Electric Power Consumption","Nevada","NV",11642 +2011-03-01,"Electric Power Consumption","Hawaii","HI",NA +2011-03-01,"Electric Power Consumption","Georgia","GA",9758 +2011-03-01,"Electric Power Consumption","Alaska","AK",3564 +2011-03-01,"Electric Power Consumption","Illinois","IL",2193 +2011-03-01,"Electric Power Consumption","Pennsylvania","PA",25719 +2011-03-01,"Electric Power Consumption","Kentucky","KY",508 +2011-03-01,"Electric Power Consumption","Arizona","AZ",6239 +2011-03-01,"Electric Power Consumption","Florida","FL",75884 +2011-03-01,"Electric Power Consumption","New Jersey","NJ",12901 +2011-03-01,"Electric Power Consumption","Rhode Island","RI",5536 +2011-03-01,"Electric Power Consumption","Iowa","IA",499 +2011-03-01,"Electric Power Consumption","Tennessee","TN",679 +2011-03-01,"Electric Power Consumption","U.S.","U.S.",481926 +2011-03-01,"Electric Power Consumption","Nebraska","NE",240 +2011-03-01,"Electric Power Consumption","Mississippi","MS",13306 +2011-03-01,"Electric Power Consumption","New Hampshire","NH",3904 +2011-03-01,"Electric Power Consumption","Indiana","IN",8557 +2011-03-01,"Electric Power Consumption","Connecticut","CT",6728 +2011-03-01,"Electric Power Consumption","California","CA",41357 +2011-03-01,"Electric Power Consumption","Washington","WA",1066 +2011-03-01,"Electric Power Consumption","Arkansas","AR",5991 +2011-03-01,"Electric Power Consumption","Oregon","OR",2711 +2011-03-01,"Electric Power Consumption","Kansas","KS",1301 +2011-03-01,"Electric Power Consumption","Ohio","OH",9156 +2011-03-01,"Electric Power Consumption","Montana","MT",180 +2011-03-01,"Industrial Consumption","Oklahoma","OK",16553 +2011-03-01,"Industrial Consumption","New Mexico","NM",1569 +2011-03-01,"Industrial Consumption","Oregon","OR",5078 +2011-03-01,"Industrial Consumption","California","CA",54423 +2011-03-01,"Industrial Consumption","Minnesota","MN",14630 +2011-03-01,"Industrial Consumption","Idaho","ID",2399 +2011-03-01,"Industrial Consumption","Indiana","IN",29634 +2011-03-01,"Industrial Consumption","North Dakota","ND",2363 +2011-03-01,"Industrial Consumption","U.S.","U.S.",615767 +2011-03-01,"Industrial Consumption","Illinois","IL",27796 +2011-03-01,"Industrial Consumption","Alaska","AK",546 +2011-03-01,"Industrial Consumption","Maryland","MD",1768 +2011-03-01,"Industrial Consumption","Arkansas","AR",7740 +2011-03-01,"Industrial Consumption","West Virginia","WV",2248 +2011-03-01,"Industrial Consumption","New Hampshire","NH",676 +2011-03-01,"Industrial Consumption","Michigan","MI",15841 +2011-03-01,"Industrial Consumption","Delaware","DE",1041 +2011-03-01,"Industrial Consumption","Montana","MT",1676 +2011-03-01,"Industrial Consumption","Massachusetts","MA",5206 +2011-03-01,"Industrial Consumption","Ohio","OH",25978 +2011-03-01,"Industrial Consumption","Vermont","VT",299 +2011-03-01,"Industrial Consumption","Tennessee","TN",9635 +2011-03-01,"Industrial Consumption","Georgia","GA",12933 +2011-03-01,"Industrial Consumption","District of Columbia","DC",0 +2011-03-01,"Industrial Consumption","Louisiana","LA",76242 +2011-03-01,"Industrial Consumption","Kansas","KS",9503 +2011-03-01,"Industrial Consumption","Alabama","AL",13439 +2011-03-01,"Industrial Consumption","Florida","FL",7198 +2011-03-01,"Industrial Consumption","North Carolina","NC",9149 +2011-03-01,"Industrial Consumption","Arizona","AZ",1884 +2011-03-01,"Industrial Consumption","Utah","UT",2792 +2011-03-01,"Industrial Consumption","New York","NY",7949 +2011-03-01,"Industrial Consumption","South Carolina","SC",6876 +2011-03-01,"Industrial Consumption","Virginia","VA",5613 +2011-03-01,"Industrial Consumption","Iowa","IA",14573 +2011-03-01,"Industrial Consumption","Connecticut","CT",2598 +2011-03-01,"Industrial Consumption","Kentucky","KY",9571 +2011-03-01,"Industrial Consumption","Hawaii","HI",35 +2011-03-01,"Industrial Consumption","Missouri","MO",6092 +2011-03-01,"Industrial Consumption","Colorado","CO",6809 +2011-03-01,"Industrial Consumption","South Dakota","SD",3496 +2011-03-01,"Industrial Consumption","Texas","TX",122893 +2011-03-01,"Industrial Consumption","Wisconsin","WI",12599 +2011-03-01,"Industrial Consumption","Washington","WA",6982 +2011-03-01,"Industrial Consumption","Pennsylvania","PA",19515 +2011-03-01,"Industrial Consumption","Nevada","NV",1004 +2011-03-01,"Industrial Consumption","Mississippi","MS",9379 +2011-03-01,"Industrial Consumption","Maine","ME",2822 +2011-03-01,"Industrial Consumption","Nebraska","NE",7081 +2011-03-01,"Industrial Consumption","Wyoming","WY",3884 +2011-03-01,"Industrial Consumption","New Jersey","NJ",4974 +2011-03-01,"Industrial Consumption","Rhode Island","RI",781 +2011-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",111445 +2011-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",62944 +2011-03-01,"Residential Consumption","Texas","TX",21304 +2011-03-01,"Residential Consumption","Connecticut","CT",6127 +2011-03-01,"Residential Consumption","Wisconsin","WI",17622 +2011-03-01,"Residential Consumption","Virginia","VA",10374 +2011-03-01,"Residential Consumption","Georgia","GA",11366 +2011-03-01,"Residential Consumption","Maine","ME",194 +2011-03-01,"Residential Consumption","Florida","FL",1676 +2011-03-01,"Residential Consumption","North Dakota","ND",1643 +2011-03-01,"Residential Consumption","Maryland","MD",10165 +2011-03-01,"Residential Consumption","Idaho","ID",2890 +2011-03-01,"Residential Consumption","New Jersey","NJ",30676 +2011-03-01,"Residential Consumption","New York","NY",56516 +2011-03-01,"Residential Consumption","Vermont","VT",449 +2011-03-01,"Residential Consumption","Tennessee","TN",7676 +2011-03-01,"Residential Consumption","Arkansas","AR",3990 +2011-03-01,"Residential Consumption","New Hampshire","NH",971 +2011-03-01,"Residential Consumption","West Virginia","WV",3538 +2011-03-01,"Residential Consumption","North Carolina","NC",7399 +2011-03-01,"Residential Consumption","Minnesota","MN",17244 +2011-03-01,"Residential Consumption","Indiana","IN",16730 +2011-03-01,"Residential Consumption","Alaska","AK",2287 +2011-03-01,"Residential Consumption","South Carolina","SC",2810 +2011-03-01,"Residential Consumption","Louisiana","LA",4038 +2011-03-01,"Residential Consumption","Nebraska","NE",6004 +2011-03-01,"Residential Consumption","Michigan","MI",45157 +2011-03-01,"Residential Consumption","Nevada","NV",4580 +2011-03-01,"Residential Consumption","District of Columbia","DC",1493 +2011-03-01,"Residential Consumption","Massachusetts","MA",16902 +2011-03-01,"Residential Consumption","Kansas","KS",8028 +2011-03-01,"Residential Consumption","California","CA",51570 +2011-03-01,"Residential Consumption","Arizona","AZ",4123 +2011-03-01,"Residential Consumption","Alabama","AL",3513 +2011-03-01,"Residential Consumption","Wyoming","WY",1499 +2011-03-01,"Residential Consumption","Illinois","IL",54882 +2011-03-01,"Residential Consumption","Ohio","OH",42430 +2011-03-01,"Residential Consumption","Hawaii","HI",40 +2011-03-01,"Residential Consumption","Utah","UT",6905 +2011-03-01,"Residential Consumption","Washington","WA",9926 +2011-03-01,"Residential Consumption","Missouri","MO",12596 +2011-03-01,"Residential Consumption","Rhode Island","RI",2330 +2011-03-01,"Residential Consumption","Mississippi","MS",3012 +2011-03-01,"Residential Consumption","Iowa","IA",9009 +2011-03-01,"Residential Consumption","South Dakota","SD",1779 +2011-03-01,"Residential Consumption","Montana","MT",3008 +2011-03-01,"Residential Consumption","Colorado","CO",13420 +2011-03-01,"Residential Consumption","Oklahoma","OK",6185 +2011-03-01,"Residential Consumption","U.S.","U.S.",594929 +2011-03-01,"Residential Consumption","Oregon","OR",5488 +2011-03-01,"Residential Consumption","Pennsylvania","PA",31234 +2011-03-01,"Residential Consumption","New Mexico","NM",4217 +2011-03-01,"Residential Consumption","Kentucky","KY",6535 +2011-03-01,"Residential Consumption","Delaware","DE",1383 +2011-03-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2011-03-01,"Vehicle Fuel Consumption","New York","NY",328 +2011-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2011-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-03-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2011-03-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-03-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2011-03-01,"Vehicle Fuel Consumption","Utah","UT",25 +2011-03-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-03-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-03-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2011-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-03-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-03-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-03-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-03-01,"Vehicle Fuel Consumption","Washington","WA",43 +2011-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-03-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-03-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-03-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-03-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-03-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-03-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-03-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-03-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-03-01,"Vehicle Fuel Consumption","Texas","TX",187 +2011-03-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2011-03-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2546 +2011-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-03-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2011-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2011-03-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2011-03-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-03-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2011-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",65 +2011-03-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2011-03-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2011-03-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-03-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2011-03-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-03-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-03-01,"Vehicle Fuel Consumption","California","CA",1245 +2011-04-01,"Commercial Consumption","West Virginia","WV",1631 +2011-04-01,"Commercial Consumption","Maryland","MD",4797 +2011-04-01,"Commercial Consumption","Iowa","IA",3640 +2011-04-01,"Commercial Consumption","California","CA",16716 +2011-04-01,"Commercial Consumption","New York","NY",21989 +2011-04-01,"Commercial Consumption","Nevada","NV",2503 +2011-04-01,"Commercial Consumption","Minnesota","MN",7090 +2011-04-01,"Commercial Consumption","Oklahoma","OK",3096 +2011-04-01,"Commercial Consumption","U.S.","U.S.",232006 +2011-04-01,"Commercial Consumption","Texas","TX",13032 +2011-04-01,"Commercial Consumption","Florida","FL",4328 +2011-04-01,"Commercial Consumption","Indiana","IN",4598 +2011-04-01,"Commercial Consumption","Missouri","MO",3352 +2011-04-01,"Commercial Consumption","Kentucky","KY",1902 +2011-04-01,"Commercial Consumption","Ohio","OH",12094 +2011-04-01,"Commercial Consumption","Alaska","AK",1598 +2011-04-01,"Commercial Consumption","Connecticut","CT",3668 +2011-04-01,"Commercial Consumption","Nebraska","NE",2318 +2011-04-01,"Commercial Consumption","Tennessee","TN",3162 +2011-04-01,"Commercial Consumption","Louisiana","LA",1855 +2011-04-01,"Commercial Consumption","District of Columbia","DC",1209 +2011-04-01,"Commercial Consumption","North Dakota","ND",913 +2011-04-01,"Commercial Consumption","Massachusetts","MA",6428 +2011-04-01,"Commercial Consumption","Montana","MT",1857 +2011-04-01,"Commercial Consumption","Illinois","IL",15684 +2011-04-01,"Commercial Consumption","New Mexico","NM",2417 +2011-04-01,"Commercial Consumption","Alabama","AL",1448 +2011-04-01,"Commercial Consumption","Washington","WA",5178 +2011-04-01,"Commercial Consumption","Colorado","CO",3997 +2011-04-01,"Commercial Consumption","Virginia","VA",4035 +2011-04-01,"Commercial Consumption","Wisconsin","WI",7111 +2011-04-01,"Commercial Consumption","New Hampshire","NH",756 +2011-04-01,"Commercial Consumption","Kansas","KS",2074 +2011-04-01,"Commercial Consumption","Vermont","VT",263 +2011-04-01,"Commercial Consumption","Hawaii","HI",151 +2011-04-01,"Commercial Consumption","Delaware","DE",700 +2011-04-01,"Commercial Consumption","Arizona","AZ",2634 +2011-04-01,"Commercial Consumption","Wyoming","WY",1027 +2011-04-01,"Commercial Consumption","South Carolina","SC",1359 +2011-04-01,"Commercial Consumption","Utah","UT",3437 +2011-04-01,"Commercial Consumption","South Dakota","SD",891 +2011-04-01,"Commercial Consumption","Rhode Island","RI",930 +2011-04-01,"Commercial Consumption","Idaho","ID",1405 +2011-04-01,"Commercial Consumption","Michigan","MI",13421 +2011-04-01,"Commercial Consumption","North Carolina","NC",2761 +2011-04-01,"Commercial Consumption","Oregon","OR",2805 +2011-04-01,"Commercial Consumption","Pennsylvania","PA",10784 +2011-04-01,"Commercial Consumption","New Jersey","NJ",14519 +2011-04-01,"Commercial Consumption","Maine","ME",548 +2011-04-01,"Commercial Consumption","Georgia","GA",3422 +2011-04-01,"Commercial Consumption","Arkansas","AR",3247 +2011-04-01,"Commercial Consumption","Mississippi","MS",1226 +2011-04-01,"Delivered to Consumers","New Mexico","NM",10602 +2011-04-01,"Delivered to Consumers","New York","NY",92260 +2011-04-01,"Delivered to Consumers","Michigan","MI",60111 +2011-04-01,"Delivered to Consumers","Pennsylvania","PA",64995 +2011-04-01,"Delivered to Consumers","Texas","TX",244891 +2011-04-01,"Delivered to Consumers","Utah","UT",15267 +2011-04-01,"Delivered to Consumers","Maryland","MD",12204 +2011-04-01,"Delivered to Consumers","Alaska","AK",7431 +2011-04-01,"Delivered to Consumers","Mississippi","MS",24858 +2011-04-01,"Delivered to Consumers","Massachusetts","MA",36862 +2011-04-01,"Delivered to Consumers","Florida","FL",104650 +2011-04-01,"Delivered to Consumers","District of Columbia","DC",2262 +2011-04-01,"Delivered to Consumers","Indiana","IN",45918 +2011-04-01,"Delivered to Consumers","Ohio","OH",61019 +2011-04-01,"Delivered to Consumers","Kentucky","KY",13694 +2011-04-01,"Delivered to Consumers","Washington","WA",21174 +2011-04-01,"Delivered to Consumers","New Hampshire","NH",5882 +2011-04-01,"Delivered to Consumers","North Dakota","ND",4153 +2011-04-01,"Delivered to Consumers","West Virginia","WV",5530 +2011-04-01,"Delivered to Consumers","Rhode Island","RI",6533 +2011-04-01,"Delivered to Consumers","Hawaii","HI",232 +2011-04-01,"Delivered to Consumers","Nebraska","NE",11537 +2011-04-01,"Delivered to Consumers","Colorado","CO",26879 +2011-04-01,"Delivered to Consumers","Georgia","GA",35529 +2011-04-01,"Delivered to Consumers","Minnesota","MN",30406 +2011-04-01,"Delivered to Consumers","Vermont","VT",860 +2011-04-01,"Delivered to Consumers","Illinois","IL",72616 +2011-04-01,"Delivered to Consumers","Oklahoma","OK",39333 +2011-04-01,"Delivered to Consumers","Alabama","AL",33129 +2011-04-01,"Delivered to Consumers","California","CA",145853 +2011-04-01,"Delivered to Consumers","South Carolina","SC",16265 +2011-04-01,"Delivered to Consumers","Louisiana","LA",102326 +2011-04-01,"Delivered to Consumers","U.S.","U.S.",1665278 +2011-04-01,"Delivered to Consumers","Kansas","KS",16963 +2011-04-01,"Delivered to Consumers","Idaho","ID",6361 +2011-04-01,"Delivered to Consumers","Connecticut","CT",17239 +2011-04-01,"Delivered to Consumers","Virginia","VA",18585 +2011-04-01,"Delivered to Consumers","New Jersey","NJ",50398 +2011-04-01,"Delivered to Consumers","Arizona","AZ",18263 +2011-04-01,"Delivered to Consumers","Delaware","DE",5625 +2011-04-01,"Delivered to Consumers","South Dakota","SD",5421 +2011-04-01,"Delivered to Consumers","Montana","MT",5738 +2011-04-01,"Delivered to Consumers","Tennessee","TN",17359 +2011-04-01,"Delivered to Consumers","Arkansas","AR",19450 +2011-04-01,"Delivered to Consumers","Wisconsin","WI",31132 +2011-04-01,"Delivered to Consumers","Oregon","OR",14775 +2011-04-01,"Delivered to Consumers","Maine","ME",5625 +2011-04-01,"Delivered to Consumers","Wyoming","WY",5774 +2011-04-01,"Delivered to Consumers","Iowa","IA",21892 +2011-04-01,"Delivered to Consumers","North Carolina","NC",17165 +2011-04-01,"Delivered to Consumers","Missouri","MO",14767 +2011-04-01,"Delivered to Consumers","Nevada","NV",17481 +2011-04-01,"Electric Power Consumption","Arkansas","AR",6417 +2011-04-01,"Electric Power Consumption","Minnesota","MN",1572 +2011-04-01,"Electric Power Consumption","West Virginia","WV",46 +2011-04-01,"Electric Power Consumption","Nevada","NV",11093 +2011-04-01,"Electric Power Consumption","Vermont","VT",0 +2011-04-01,"Electric Power Consumption","Connecticut","CT",7009 +2011-04-01,"Electric Power Consumption","Arizona","AZ",11340 +2011-04-01,"Electric Power Consumption","New Mexico","NM",4496 +2011-04-01,"Electric Power Consumption","New York","NY",29690 +2011-04-01,"Electric Power Consumption","Pennsylvania","PA",21288 +2011-04-01,"Electric Power Consumption","Nebraska","NE",90 +2011-04-01,"Electric Power Consumption","Mississippi","MS",13418 +2011-04-01,"Electric Power Consumption","North Dakota","ND",0 +2011-04-01,"Electric Power Consumption","Montana","MT",611 +2011-04-01,"Electric Power Consumption","Alaska","AK",3703 +2011-04-01,"Electric Power Consumption","Rhode Island","RI",3745 +2011-04-01,"Electric Power Consumption","Oklahoma","OK",14962 +2011-04-01,"Electric Power Consumption","Illinois","IL",2394 +2011-04-01,"Electric Power Consumption","Massachusetts","MA",16687 +2011-04-01,"Electric Power Consumption","Wyoming","WY",39 +2011-04-01,"Electric Power Consumption","North Carolina","NC",3691 +2011-04-01,"Electric Power Consumption","Missouri","MO",1375 +2011-04-01,"Electric Power Consumption","Maine","ME",3280 +2011-04-01,"Electric Power Consumption","Louisiana","LA",26209 +2011-04-01,"Electric Power Consumption","South Carolina","SC",7433 +2011-04-01,"Electric Power Consumption","Kentucky","KY",959 +2011-04-01,"Electric Power Consumption","New Hampshire","NH",4000 +2011-04-01,"Electric Power Consumption","Florida","FL",92345 +2011-04-01,"Electric Power Consumption","New Jersey","NJ",15881 +2011-04-01,"Electric Power Consumption","Kansas","KS",1426 +2011-04-01,"Electric Power Consumption","Alabama","AL",17484 +2011-04-01,"Electric Power Consumption","Idaho","ID",487 +2011-04-01,"Electric Power Consumption","Michigan","MI",6102 +2011-04-01,"Electric Power Consumption","Wisconsin","WI",2603 +2011-04-01,"Electric Power Consumption","Iowa","IA",247 +2011-04-01,"Electric Power Consumption","U.S.","U.S.",521453 +2011-04-01,"Electric Power Consumption","Indiana","IN",6764 +2011-04-01,"Electric Power Consumption","Virginia","VA",4978 +2011-04-01,"Electric Power Consumption","Texas","TX",103723 +2011-04-01,"Electric Power Consumption","Oregon","OR",2712 +2011-04-01,"Electric Power Consumption","Ohio","OH",4154 +2011-04-01,"Electric Power Consumption","Delaware","DE",3346 +2011-04-01,"Electric Power Consumption","Georgia","GA",14483 +2011-04-01,"Electric Power Consumption","California","CA",35375 +2011-04-01,"Electric Power Consumption","Washington","WA",1297 +2011-04-01,"Electric Power Consumption","Colorado","CO",6947 +2011-04-01,"Electric Power Consumption","Utah","UT",2798 +2011-04-01,"Electric Power Consumption","Tennessee","TN",1670 +2011-04-01,"Electric Power Consumption","South Dakota","SD",4 +2011-04-01,"Electric Power Consumption","Hawaii","HI",NA +2011-04-01,"Electric Power Consumption","Maryland","MD",1001 +2011-04-01,"Industrial Consumption","Montana","MT",1614 +2011-04-01,"Industrial Consumption","Oklahoma","OK",17039 +2011-04-01,"Industrial Consumption","Louisiana","LA",72273 +2011-04-01,"Industrial Consumption","South Carolina","SC",6191 +2011-04-01,"Industrial Consumption","Virginia","VA",4845 +2011-04-01,"Industrial Consumption","Iowa","IA",12940 +2011-04-01,"Industrial Consumption","Michigan","MI",14445 +2011-04-01,"Industrial Consumption","Indiana","IN",26111 +2011-04-01,"Industrial Consumption","Illinois","IL",22394 +2011-04-01,"Industrial Consumption","Ohio","OH",22712 +2011-04-01,"Industrial Consumption","Kansas","KS",8760 +2011-04-01,"Industrial Consumption","Wyoming","WY",3512 +2011-04-01,"Industrial Consumption","Tennessee","TN",8667 +2011-04-01,"Industrial Consumption","Connecticut","CT",2215 +2011-04-01,"Industrial Consumption","District of Columbia","DC",0 +2011-04-01,"Industrial Consumption","North Dakota","ND",2353 +2011-04-01,"Industrial Consumption","Missouri","MO",4861 +2011-04-01,"Industrial Consumption","Washington","WA",6529 +2011-04-01,"Industrial Consumption","Maine","ME",1663 +2011-04-01,"Industrial Consumption","California","CA",57719 +2011-04-01,"Industrial Consumption","Vermont","VT",228 +2011-04-01,"Industrial Consumption","Wisconsin","WI",10276 +2011-04-01,"Industrial Consumption","New Hampshire","NH",529 +2011-04-01,"Industrial Consumption","Rhode Island","RI",665 +2011-04-01,"Industrial Consumption","Utah","UT",3023 +2011-04-01,"Industrial Consumption","Texas","TX",118398 +2011-04-01,"Industrial Consumption","Nebraska","NE",6402 +2011-04-01,"Industrial Consumption","Idaho","ID",2187 +2011-04-01,"Industrial Consumption","Massachusetts","MA",3943 +2011-04-01,"Industrial Consumption","U.S.","U.S.",568804 +2011-04-01,"Industrial Consumption","Pennsylvania","PA",16587 +2011-04-01,"Industrial Consumption","Mississippi","MS",9151 +2011-04-01,"Industrial Consumption","Alaska","AK",536 +2011-04-01,"Industrial Consumption","Oregon","OR",4846 +2011-04-01,"Industrial Consumption","Arkansas","AR",6902 +2011-04-01,"Industrial Consumption","West Virginia","WV",2112 +2011-04-01,"Industrial Consumption","New Jersey","NJ",4335 +2011-04-01,"Industrial Consumption","Florida","FL",6787 +2011-04-01,"Industrial Consumption","North Carolina","NC",7820 +2011-04-01,"Industrial Consumption","Georgia","GA",12148 +2011-04-01,"Industrial Consumption","Colorado","CO",5916 +2011-04-01,"Industrial Consumption","South Dakota","SD",3473 +2011-04-01,"Industrial Consumption","New Mexico","NM",1364 +2011-04-01,"Industrial Consumption","Arizona","AZ",1669 +2011-04-01,"Industrial Consumption","Nevada","NV",884 +2011-04-01,"Industrial Consumption","Alabama","AL",12239 +2011-04-01,"Industrial Consumption","Delaware","DE",832 +2011-04-01,"Industrial Consumption","Maryland","MD",1398 +2011-04-01,"Industrial Consumption","Hawaii","HI",38 +2011-04-01,"Industrial Consumption","New York","NY",6021 +2011-04-01,"Industrial Consumption","Minnesota","MN",13004 +2011-04-01,"Industrial Consumption","Kentucky","KY",8248 +2011-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",108766 +2011-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",50979 +2011-04-01,"Residential Consumption","Texas","TX",9557 +2011-04-01,"Residential Consumption","Connecticut","CT",4344 +2011-04-01,"Residential Consumption","Kansas","KS",4703 +2011-04-01,"Residential Consumption","Washington","WA",8128 +2011-04-01,"Residential Consumption","New York","NY",34243 +2011-04-01,"Residential Consumption","Illinois","IL",32122 +2011-04-01,"Residential Consumption","Rhode Island","RI",1187 +2011-04-01,"Residential Consumption","Louisiana","LA",1987 +2011-04-01,"Residential Consumption","Hawaii","HI",44 +2011-04-01,"Residential Consumption","Wisconsin","WI",11138 +2011-04-01,"Residential Consumption","Tennessee","TN",3858 +2011-04-01,"Residential Consumption","Nebraska","NE",2724 +2011-04-01,"Residential Consumption","Georgia","GA",5386 +2011-04-01,"Residential Consumption","New Mexico","NM",2305 +2011-04-01,"Residential Consumption","New Jersey","NJ",15649 +2011-04-01,"Residential Consumption","Oklahoma","OK",4215 +2011-04-01,"Residential Consumption","Alabama","AL",1942 +2011-04-01,"Residential Consumption","North Carolina","NC",2890 +2011-04-01,"Residential Consumption","Nevada","NV",2953 +2011-04-01,"Residential Consumption","North Dakota","ND",886 +2011-04-01,"Residential Consumption","South Carolina","SC",1281 +2011-04-01,"Residential Consumption","Minnesota","MN",8740 +2011-04-01,"Residential Consumption","Maine","ME",134 +2011-04-01,"Residential Consumption","Missouri","MO",5178 +2011-04-01,"Residential Consumption","Wyoming","WY",1195 +2011-04-01,"Residential Consumption","West Virginia","WV",1740 +2011-04-01,"Residential Consumption","Oregon","OR",4400 +2011-04-01,"Residential Consumption","Idaho","ID",2272 +2011-04-01,"Residential Consumption","Kentucky","KY",2584 +2011-04-01,"Residential Consumption","Delaware","DE",747 +2011-04-01,"Residential Consumption","Alaska","AK",1593 +2011-04-01,"Residential Consumption","Mississippi","MS",1063 +2011-04-01,"Residential Consumption","South Dakota","SD",1054 +2011-04-01,"Residential Consumption","District of Columbia","DC",904 +2011-04-01,"Residential Consumption","Florida","FL",1183 +2011-04-01,"Residential Consumption","Arkansas","AR",2882 +2011-04-01,"Residential Consumption","New Hampshire","NH",594 +2011-04-01,"Residential Consumption","Montana","MT",1656 +2011-04-01,"Residential Consumption","Colorado","CO",9995 +2011-04-01,"Residential Consumption","Vermont","VT",368 +2011-04-01,"Residential Consumption","Virginia","VA",4704 +2011-04-01,"Residential Consumption","Pennsylvania","PA",16312 +2011-04-01,"Residential Consumption","Indiana","IN",8444 +2011-04-01,"Residential Consumption","Massachusetts","MA",9742 +2011-04-01,"Residential Consumption","Arizona","AZ",2479 +2011-04-01,"Residential Consumption","U.S.","U.S.",340552 +2011-04-01,"Residential Consumption","Ohio","OH",22052 +2011-04-01,"Residential Consumption","Iowa","IA",5066 +2011-04-01,"Residential Consumption","Utah","UT",5984 +2011-04-01,"Residential Consumption","Michigan","MI",26117 +2011-04-01,"Residential Consumption","Maryland","MD",4990 +2011-04-01,"Residential Consumption","California","CA",34838 +2011-04-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-04-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-04-01,"Vehicle Fuel Consumption","New York","NY",318 +2011-04-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",72 +2011-04-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2011-04-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-04-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-04-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2011-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-04-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2011-04-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-04-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-04-01,"Vehicle Fuel Consumption","California","CA",1205 +2011-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2011-04-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-04-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2011-04-01,"Vehicle Fuel Consumption","Utah","UT",24 +2011-04-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2011-04-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-04-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-04-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2011-04-01,"Vehicle Fuel Consumption","Washington","WA",42 +2011-04-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2011-04-01,"Vehicle Fuel Consumption","Texas","TX",181 +2011-04-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2011-04-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2464 +2011-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-04-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2011-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-04-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2011-04-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-04-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2011-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2011-04-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2011-04-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-04-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-04-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-04-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-04-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-04-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-04-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-05-01,"Commercial Consumption","Minnesota","MN",4098 +2011-05-01,"Commercial Consumption","Missouri","MO",2618 +2011-05-01,"Commercial Consumption","Georgia","GA",3209 +2011-05-01,"Commercial Consumption","Florida","FL",3958 +2011-05-01,"Commercial Consumption","Ohio","OH",7593 +2011-05-01,"Commercial Consumption","Idaho","ID",923 +2011-05-01,"Commercial Consumption","California","CA",17184 +2011-05-01,"Commercial Consumption","Alabama","AL",1460 +2011-05-01,"Commercial Consumption","Illinois","IL",10296 +2011-05-01,"Commercial Consumption","West Virginia","WV",1400 +2011-05-01,"Commercial Consumption","North Dakota","ND",502 +2011-05-01,"Commercial Consumption","North Carolina","NC",2568 +2011-05-01,"Commercial Consumption","Pennsylvania","PA",5607 +2011-05-01,"Commercial Consumption","Massachusetts","MA",4079 +2011-05-01,"Commercial Consumption","Texas","TX",11480 +2011-05-01,"Commercial Consumption","Hawaii","HI",150 +2011-05-01,"Commercial Consumption","Alaska","AK",1039 +2011-05-01,"Commercial Consumption","New York","NY",15108 +2011-05-01,"Commercial Consumption","Tennessee","TN",2501 +2011-05-01,"Commercial Consumption","Utah","UT",2458 +2011-05-01,"Commercial Consumption","New Mexico","NM",1664 +2011-05-01,"Commercial Consumption","Oklahoma","OK",1766 +2011-05-01,"Commercial Consumption","South Dakota","SD",482 +2011-05-01,"Commercial Consumption","Connecticut","CT",2210 +2011-05-01,"Commercial Consumption","Indiana","IN",3459 +2011-05-01,"Commercial Consumption","Washington","WA",3510 +2011-05-01,"Commercial Consumption","South Carolina","SC",1284 +2011-05-01,"Commercial Consumption","Maryland","MD",3702 +2011-05-01,"Commercial Consumption","Kansas","KS",1122 +2011-05-01,"Commercial Consumption","Rhode Island","RI",497 +2011-05-01,"Commercial Consumption","Nevada","NV",2162 +2011-05-01,"Commercial Consumption","New Hampshire","NH",436 +2011-05-01,"Commercial Consumption","Kentucky","KY",1639 +2011-05-01,"Commercial Consumption","Vermont","VT",106 +2011-05-01,"Commercial Consumption","Arkansas","AR",2314 +2011-05-01,"Commercial Consumption","Nebraska","NE",1499 +2011-05-01,"Commercial Consumption","Colorado","CO",2756 +2011-05-01,"Commercial Consumption","Oregon","OR",1925 +2011-05-01,"Commercial Consumption","Wisconsin","WI",4322 +2011-05-01,"Commercial Consumption","Maine","ME",367 +2011-05-01,"Commercial Consumption","U.S.","U.S.",166250 +2011-05-01,"Commercial Consumption","Delaware","DE",532 +2011-05-01,"Commercial Consumption","Wyoming","WY",794 +2011-05-01,"Commercial Consumption","Virginia","VA",3256 +2011-05-01,"Commercial Consumption","Mississippi","MS",1207 +2011-05-01,"Commercial Consumption","New Jersey","NJ",10075 +2011-05-01,"Commercial Consumption","Montana","MT",1200 +2011-05-01,"Commercial Consumption","Iowa","IA",2142 +2011-05-01,"Commercial Consumption","Arizona","AZ",2313 +2011-05-01,"Commercial Consumption","Michigan","MI",6752 +2011-05-01,"Commercial Consumption","Louisiana","LA",1701 +2011-05-01,"Commercial Consumption","District of Columbia","DC",824 +2011-05-01,"Delivered to Consumers","Indiana","IN",40513 +2011-05-01,"Delivered to Consumers","Delaware","DE",5557 +2011-05-01,"Delivered to Consumers","Maryland","MD",9987 +2011-05-01,"Delivered to Consumers","Alaska","AK",5714 +2011-05-01,"Delivered to Consumers","Michigan","MI",38189 +2011-05-01,"Delivered to Consumers","New Jersey","NJ",37170 +2011-05-01,"Delivered to Consumers","New Mexico","NM",10113 +2011-05-01,"Delivered to Consumers","Illinois","IL",54569 +2011-05-01,"Delivered to Consumers","Oklahoma","OK",37793 +2011-05-01,"Delivered to Consumers","Wisconsin","WI",23558 +2011-05-01,"Delivered to Consumers","Nebraska","NE",9791 +2011-05-01,"Delivered to Consumers","California","CA",139240 +2011-05-01,"Delivered to Consumers","Kentucky","KY",13343 +2011-05-01,"Delivered to Consumers","Massachusetts","MA",27391 +2011-05-01,"Delivered to Consumers","Nevada","NV",17676 +2011-05-01,"Delivered to Consumers","Arizona","AZ",14474 +2011-05-01,"Delivered to Consumers","Minnesota","MN",22648 +2011-05-01,"Delivered to Consumers","Utah","UT",12191 +2011-05-01,"Delivered to Consumers","U.S.","U.S.",1509295 +2011-05-01,"Delivered to Consumers","Montana","MT",4033 +2011-05-01,"Delivered to Consumers","Kansas","KS",13425 +2011-05-01,"Delivered to Consumers","Pennsylvania","PA",54391 +2011-05-01,"Delivered to Consumers","Colorado","CO",22076 +2011-05-01,"Delivered to Consumers","Louisiana","LA",106452 +2011-05-01,"Delivered to Consumers","Washington","WA",15426 +2011-05-01,"Delivered to Consumers","Vermont","VT",436 +2011-05-01,"Delivered to Consumers","Ohio","OH",47243 +2011-05-01,"Delivered to Consumers","Connecticut","CT",14717 +2011-05-01,"Delivered to Consumers","Virginia","VA",17885 +2011-05-01,"Delivered to Consumers","North Carolina","NC",19834 +2011-05-01,"Delivered to Consumers","Texas","TX",257032 +2011-05-01,"Delivered to Consumers","South Carolina","SC",16806 +2011-05-01,"Delivered to Consumers","Oregon","OR",10703 +2011-05-01,"Delivered to Consumers","Georgia","GA",36053 +2011-05-01,"Delivered to Consumers","North Dakota","ND",3480 +2011-05-01,"Delivered to Consumers","Florida","FL",106441 +2011-05-01,"Delivered to Consumers","District of Columbia","DC",1235 +2011-05-01,"Delivered to Consumers","Wyoming","WY",5052 +2011-05-01,"Delivered to Consumers","Hawaii","HI",226 +2011-05-01,"Delivered to Consumers","Idaho","ID",4336 +2011-05-01,"Delivered to Consumers","Iowa","IA",18333 +2011-05-01,"Delivered to Consumers","Arkansas","AR",18203 +2011-05-01,"Delivered to Consumers","New Hampshire","NH",5069 +2011-05-01,"Delivered to Consumers","Rhode Island","RI",6880 +2011-05-01,"Delivered to Consumers","New York","NY",69661 +2011-05-01,"Delivered to Consumers","Mississippi","MS",31053 +2011-05-01,"Delivered to Consumers","Maine","ME",5490 +2011-05-01,"Delivered to Consumers","West Virginia","WV",4644 +2011-05-01,"Delivered to Consumers","South Dakota","SD",4353 +2011-05-01,"Delivered to Consumers","Tennessee","TN",17061 +2011-05-01,"Delivered to Consumers","Alabama","AL",38417 +2011-05-01,"Delivered to Consumers","Missouri","MO",12925 +2011-05-01,"Electric Power Consumption","Utah","UT",2879 +2011-05-01,"Electric Power Consumption","Tennessee","TN",4503 +2011-05-01,"Electric Power Consumption","South Dakota","SD",11 +2011-05-01,"Electric Power Consumption","Missouri","MO",1851 +2011-05-01,"Electric Power Consumption","Indiana","IN",6060 +2011-05-01,"Electric Power Consumption","Alabama","AL",23979 +2011-05-01,"Electric Power Consumption","Louisiana","LA",27825 +2011-05-01,"Electric Power Consumption","Rhode Island","RI",5132 +2011-05-01,"Electric Power Consumption","Oklahoma","OK",17699 +2011-05-01,"Electric Power Consumption","Vermont","VT",7 +2011-05-01,"Electric Power Consumption","North Carolina","NC",8148 +2011-05-01,"Electric Power Consumption","Florida","FL",94558 +2011-05-01,"Electric Power Consumption","Idaho","ID",142 +2011-05-01,"Electric Power Consumption","Colorado","CO",7238 +2011-05-01,"Electric Power Consumption","New York","NY",32463 +2011-05-01,"Electric Power Consumption","Texas","TX",113215 +2011-05-01,"Electric Power Consumption","West Virginia","WV",422 +2011-05-01,"Electric Power Consumption","Wyoming","WY",40 +2011-05-01,"Electric Power Consumption","Hawaii","HI",NA +2011-05-01,"Electric Power Consumption","Arizona","AZ",8379 +2011-05-01,"Electric Power Consumption","Georgia","GA",16466 +2011-05-01,"Electric Power Consumption","Alaska","AK",3279 +2011-05-01,"Electric Power Consumption","Minnesota","MN",882 +2011-05-01,"Electric Power Consumption","Maine","ME",2830 +2011-05-01,"Electric Power Consumption","Maryland","MD",2306 +2011-05-01,"Electric Power Consumption","Delaware","DE",3090 +2011-05-01,"Electric Power Consumption","Connecticut","CT",8420 +2011-05-01,"Electric Power Consumption","Washington","WA",856 +2011-05-01,"Electric Power Consumption","South Carolina","SC",8720 +2011-05-01,"Electric Power Consumption","Massachusetts","MA",13587 +2011-05-01,"Electric Power Consumption","Wisconsin","WI",4219 +2011-05-01,"Electric Power Consumption","Ohio","OH",7569 +2011-05-01,"Electric Power Consumption","New Mexico","NM",5239 +2011-05-01,"Electric Power Consumption","Arkansas","AR",7876 +2011-05-01,"Electric Power Consumption","Oregon","OR",1368 +2011-05-01,"Electric Power Consumption","Illinois","IL",4325 +2011-05-01,"Electric Power Consumption","Kansas","KS",1333 +2011-05-01,"Electric Power Consumption","Iowa","IA",271 +2011-05-01,"Electric Power Consumption","Kentucky","KY",1855 +2011-05-01,"Electric Power Consumption","Montana","MT",385 +2011-05-01,"Electric Power Consumption","Virginia","VA",6627 +2011-05-01,"Electric Power Consumption","New Jersey","NJ",15689 +2011-05-01,"Electric Power Consumption","Pennsylvania","PA",25785 +2011-05-01,"Electric Power Consumption","New Hampshire","NH",3864 +2011-05-01,"Electric Power Consumption","Michigan","MI",8127 +2011-05-01,"Electric Power Consumption","Nevada","NV",12596 +2011-05-01,"Electric Power Consumption","U.S.","U.S.",571998 +2011-05-01,"Electric Power Consumption","Nebraska","NE",117 +2011-05-01,"Electric Power Consumption","Mississippi","MS",19137 +2011-05-01,"Electric Power Consumption","North Dakota","ND",0 +2011-05-01,"Electric Power Consumption","California","CA",30546 +2011-05-01,"Industrial Consumption","Ohio","OH",20208 +2011-05-01,"Industrial Consumption","U.S.","U.S.",563102 +2011-05-01,"Industrial Consumption","Oregon","OR",4679 +2011-05-01,"Industrial Consumption","West Virginia","WV",2020 +2011-05-01,"Industrial Consumption","Connecticut","CT",1924 +2011-05-01,"Industrial Consumption","Indiana","IN",25851 +2011-05-01,"Industrial Consumption","Illinois","IL",21351 +2011-05-01,"Industrial Consumption","Delaware","DE",1575 +2011-05-01,"Industrial Consumption","North Carolina","NC",7768 +2011-05-01,"Industrial Consumption","North Dakota","ND",2514 +2011-05-01,"Industrial Consumption","Maine","ME",2222 +2011-05-01,"Industrial Consumption","Arkansas","AR",6693 +2011-05-01,"Industrial Consumption","South Carolina","SC",6111 +2011-05-01,"Industrial Consumption","Kentucky","KY",8054 +2011-05-01,"Industrial Consumption","Massachusetts","MA",2740 +2011-05-01,"Industrial Consumption","Washington","WA",6024 +2011-05-01,"Industrial Consumption","South Dakota","SD",3320 +2011-05-01,"Industrial Consumption","Kansas","KS",8843 +2011-05-01,"Industrial Consumption","Nevada","NV",808 +2011-05-01,"Industrial Consumption","Wyoming","WY",3328 +2011-05-01,"Industrial Consumption","District of Columbia","DC",0 +2011-05-01,"Industrial Consumption","New Mexico","NM",1548 +2011-05-01,"Industrial Consumption","Arizona","AZ",1807 +2011-05-01,"Industrial Consumption","New York","NY",5002 +2011-05-01,"Industrial Consumption","Texas","TX",124718 +2011-05-01,"Industrial Consumption","Nebraska","NE",6517 +2011-05-01,"Industrial Consumption","Idaho","ID",1948 +2011-05-01,"Industrial Consumption","Rhode Island","RI",554 +2011-05-01,"Industrial Consumption","Georgia","GA",11899 +2011-05-01,"Industrial Consumption","Virginia","VA",5717 +2011-05-01,"Industrial Consumption","New Hampshire","NH",449 +2011-05-01,"Industrial Consumption","Maryland","MD",1386 +2011-05-01,"Industrial Consumption","Hawaii","HI",35 +2011-05-01,"Industrial Consumption","Oklahoma","OK",16033 +2011-05-01,"Industrial Consumption","Colorado","CO",5753 +2011-05-01,"Industrial Consumption","California","CA",57525 +2011-05-01,"Industrial Consumption","Vermont","VT",185 +2011-05-01,"Industrial Consumption","New Jersey","NJ",3559 +2011-05-01,"Industrial Consumption","Iowa","IA",13360 +2011-05-01,"Industrial Consumption","Florida","FL",7005 +2011-05-01,"Industrial Consumption","Michigan","MI",11247 +2011-05-01,"Industrial Consumption","Alaska","AK",406 +2011-05-01,"Industrial Consumption","Montana","MT",1586 +2011-05-01,"Industrial Consumption","Louisiana","LA",75307 +2011-05-01,"Industrial Consumption","Utah","UT",2796 +2011-05-01,"Industrial Consumption","Pennsylvania","PA",15060 +2011-05-01,"Industrial Consumption","Mississippi","MS",9851 +2011-05-01,"Industrial Consumption","Alabama","AL",11598 +2011-05-01,"Industrial Consumption","Wisconsin","WI",9071 +2011-05-01,"Industrial Consumption","Minnesota","MN",12346 +2011-05-01,"Industrial Consumption","Missouri","MO",4685 +2011-05-01,"Industrial Consumption","Tennessee","TN",8111 +2011-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",111897 +2011-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",46204 +2011-05-01,"Residential Consumption","Texas","TX",7431 +2011-05-01,"Residential Consumption","Rhode Island","RI",690 +2011-05-01,"Residential Consumption","Tennessee","TN",1944 +2011-05-01,"Residential Consumption","Indiana","IN",5141 +2011-05-01,"Residential Consumption","North Dakota","ND",465 +2011-05-01,"Residential Consumption","Idaho","ID",1312 +2011-05-01,"Residential Consumption","New Jersey","NJ",7831 +2011-05-01,"Residential Consumption","Kentucky","KY",1794 +2011-05-01,"Residential Consumption","Kansas","KS",2125 +2011-05-01,"Residential Consumption","Wyoming","WY",887 +2011-05-01,"Residential Consumption","West Virginia","WV",801 +2011-05-01,"Residential Consumption","South Carolina","SC",691 +2011-05-01,"Residential Consumption","Hawaii","HI",41 +2011-05-01,"Residential Consumption","Oklahoma","OK",2274 +2011-05-01,"Residential Consumption","Arizona","AZ",1829 +2011-05-01,"Residential Consumption","Louisiana","LA",1619 +2011-05-01,"Residential Consumption","Maine","ME",71 +2011-05-01,"Residential Consumption","Florida","FL",912 +2011-05-01,"Residential Consumption","California","CA",32739 +2011-05-01,"Residential Consumption","Alaska","AK",990 +2011-05-01,"Residential Consumption","U.S.","U.S.",205399 +2011-05-01,"Residential Consumption","Oregon","OR",2720 +2011-05-01,"Residential Consumption","Iowa","IA",2561 +2011-05-01,"Residential Consumption","Maryland","MD",2574 +2011-05-01,"Residential Consumption","New Mexico","NM",1641 +2011-05-01,"Residential Consumption","Arkansas","AR",1319 +2011-05-01,"Residential Consumption","Colorado","CO",6305 +2011-05-01,"Residential Consumption","Missouri","MO",3770 +2011-05-01,"Residential Consumption","Wisconsin","WI",5941 +2011-05-01,"Residential Consumption","Massachusetts","MA",6921 +2011-05-01,"Residential Consumption","New Hampshire","NH",317 +2011-05-01,"Residential Consumption","Washington","WA",4993 +2011-05-01,"Residential Consumption","New York","NY",16760 +2011-05-01,"Residential Consumption","Ohio","OH",11865 +2011-05-01,"Residential Consumption","Virginia","VA",2262 +2011-05-01,"Residential Consumption","Michigan","MI",12035 +2011-05-01,"Residential Consumption","South Dakota","SD",540 +2011-05-01,"Residential Consumption","Minnesota","MN",5321 +2011-05-01,"Residential Consumption","Alabama","AL",1363 +2011-05-01,"Residential Consumption","North Carolina","NC",1348 +2011-05-01,"Residential Consumption","Mississippi","MS",858 +2011-05-01,"Residential Consumption","Vermont","VT",137 +2011-05-01,"Residential Consumption","Nebraska","NE",1655 +2011-05-01,"Residential Consumption","Nevada","NV",2059 +2011-05-01,"Residential Consumption","District of Columbia","DC",255 +2011-05-01,"Residential Consumption","Pennsylvania","PA",7914 +2011-05-01,"Residential Consumption","Delaware","DE",359 +2011-05-01,"Residential Consumption","Connecticut","CT",2160 +2011-05-01,"Residential Consumption","Utah","UT",4033 +2011-05-01,"Residential Consumption","Georgia","GA",4387 +2011-05-01,"Residential Consumption","Montana","MT",863 +2011-05-01,"Residential Consumption","Illinois","IL",18575 +2011-05-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2011-05-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-05-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-05-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2011-05-01,"Vehicle Fuel Consumption","California","CA",1245 +2011-05-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-05-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-05-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-05-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2011-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-05-01,"Vehicle Fuel Consumption","Texas","TX",187 +2011-05-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2011-05-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-05-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-05-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2011-05-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-05-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-05-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-05-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-05-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2011-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2546 +2011-05-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-05-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-05-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2011-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-05-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-05-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-05-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2011-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2011-05-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2011-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",65 +2011-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-05-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2011-05-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-05-01,"Vehicle Fuel Consumption","Utah","UT",25 +2011-05-01,"Vehicle Fuel Consumption","New York","NY",328 +2011-05-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-05-01,"Vehicle Fuel Consumption","Washington","WA",43 +2011-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2011-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2011-05-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-05-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-05-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-06-01,"Commercial Consumption","Wyoming","WY",359 +2011-06-01,"Commercial Consumption","Minnesota","MN",2974 +2011-06-01,"Commercial Consumption","Oregon","OR",1292 +2011-06-01,"Commercial Consumption","Kentucky","KY",1132 +2011-06-01,"Commercial Consumption","Louisiana","LA",1541 +2011-06-01,"Commercial Consumption","Virginia","VA",2762 +2011-06-01,"Commercial Consumption","Missouri","MO",2188 +2011-06-01,"Commercial Consumption","Kansas","KS",1010 +2011-06-01,"Commercial Consumption","Iowa","IA",1674 +2011-06-01,"Commercial Consumption","Connecticut","CT",1994 +2011-06-01,"Commercial Consumption","Nebraska","NE",1311 +2011-06-01,"Commercial Consumption","Illinois","IL",7105 +2011-06-01,"Commercial Consumption","District of Columbia","DC",833 +2011-06-01,"Commercial Consumption","North Dakota","ND",310 +2011-06-01,"Commercial Consumption","North Carolina","NC",2133 +2011-06-01,"Commercial Consumption","Oklahoma","OK",1664 +2011-06-01,"Commercial Consumption","U.S.","U.S.",133856 +2011-06-01,"Commercial Consumption","Texas","TX",10922 +2011-06-01,"Commercial Consumption","California","CA",16310 +2011-06-01,"Commercial Consumption","Nevada","NV",1830 +2011-06-01,"Commercial Consumption","Indiana","IN",2106 +2011-06-01,"Commercial Consumption","West Virginia","WV",1341 +2011-06-01,"Commercial Consumption","Pennsylvania","PA",4244 +2011-06-01,"Commercial Consumption","Montana","MT",811 +2011-06-01,"Commercial Consumption","Maryland","MD",2800 +2011-06-01,"Commercial Consumption","Georgia","GA",2776 +2011-06-01,"Commercial Consumption","Tennessee","TN",1975 +2011-06-01,"Commercial Consumption","New Hampshire","NH",315 +2011-06-01,"Commercial Consumption","Vermont","VT",74 +2011-06-01,"Commercial Consumption","Delaware","DE",397 +2011-06-01,"Commercial Consumption","Utah","UT",2057 +2011-06-01,"Commercial Consumption","Wisconsin","WI",2616 +2011-06-01,"Commercial Consumption","New Jersey","NJ",8274 +2011-06-01,"Commercial Consumption","Maine","ME",271 +2011-06-01,"Commercial Consumption","Ohio","OH",4318 +2011-06-01,"Commercial Consumption","Arkansas","AR",2051 +2011-06-01,"Commercial Consumption","Alabama","AL",1097 +2011-06-01,"Commercial Consumption","New York","NY",14510 +2011-06-01,"Commercial Consumption","Michigan","MI",4569 +2011-06-01,"Commercial Consumption","South Carolina","SC",1081 +2011-06-01,"Commercial Consumption","Colorado","CO",1644 +2011-06-01,"Commercial Consumption","Florida","FL",3694 +2011-06-01,"Commercial Consumption","Idaho","ID",791 +2011-06-01,"Commercial Consumption","Mississippi","MS",1005 +2011-06-01,"Commercial Consumption","Washington","WA",2521 +2011-06-01,"Commercial Consumption","New Mexico","NM",1109 +2011-06-01,"Commercial Consumption","Massachusetts","MA",2569 +2011-06-01,"Commercial Consumption","South Dakota","SD",339 +2011-06-01,"Commercial Consumption","Rhode Island","RI",241 +2011-06-01,"Commercial Consumption","Hawaii","HI",150 +2011-06-01,"Commercial Consumption","Alaska","AK",760 +2011-06-01,"Commercial Consumption","Arizona","AZ",2002 +2011-06-01,"Delivered to Consumers","New Mexico","NM",10978 +2011-06-01,"Delivered to Consumers","West Virginia","WV",4144 +2011-06-01,"Delivered to Consumers","Missouri","MO",13435 +2011-06-01,"Delivered to Consumers","Nevada","NV",18340 +2011-06-01,"Delivered to Consumers","Arizona","AZ",21731 +2011-06-01,"Delivered to Consumers","Delaware","DE",5853 +2011-06-01,"Delivered to Consumers","Ohio","OH",36320 +2011-06-01,"Delivered to Consumers","Wisconsin","WI",17038 +2011-06-01,"Delivered to Consumers","North Carolina","NC",21001 +2011-06-01,"Delivered to Consumers","Oregon","OR",8026 +2011-06-01,"Delivered to Consumers","District of Columbia","DC",1327 +2011-06-01,"Delivered to Consumers","U.S.","U.S.",1503845 +2011-06-01,"Delivered to Consumers","Illinois","IL",40976 +2011-06-01,"Delivered to Consumers","Kentucky","KY",11895 +2011-06-01,"Delivered to Consumers","Mississippi","MS",37212 +2011-06-01,"Delivered to Consumers","Maine","ME",5020 +2011-06-01,"Delivered to Consumers","North Dakota","ND",3120 +2011-06-01,"Delivered to Consumers","Utah","UT",10213 +2011-06-01,"Delivered to Consumers","Alaska","AK",5058 +2011-06-01,"Delivered to Consumers","Oklahoma","OK",49987 +2011-06-01,"Delivered to Consumers","Michigan","MI",29093 +2011-06-01,"Delivered to Consumers","Colorado","CO",16209 +2011-06-01,"Delivered to Consumers","California","CA",137075 +2011-06-01,"Delivered to Consumers","Texas","TX",285347 +2011-06-01,"Delivered to Consumers","South Carolina","SC",16777 +2011-06-01,"Delivered to Consumers","New York","NY",70277 +2011-06-01,"Delivered to Consumers","Idaho","ID",3785 +2011-06-01,"Delivered to Consumers","Tennessee","TN",14191 +2011-06-01,"Delivered to Consumers","Alabama","AL",45166 +2011-06-01,"Delivered to Consumers","Virginia","VA",22826 +2011-06-01,"Delivered to Consumers","Nebraska","NE",9434 +2011-06-01,"Delivered to Consumers","New Hampshire","NH",3761 +2011-06-01,"Delivered to Consumers","Florida","FL",113966 +2011-06-01,"Delivered to Consumers","Indiana","IN",34564 +2011-06-01,"Delivered to Consumers","Wyoming","WY",3923 +2011-06-01,"Delivered to Consumers","Vermont","VT",344 +2011-06-01,"Delivered to Consumers","South Dakota","SD",3837 +2011-06-01,"Delivered to Consumers","Maryland","MD",9430 +2011-06-01,"Delivered to Consumers","Iowa","IA",16326 +2011-06-01,"Delivered to Consumers","Connecticut","CT",13614 +2011-06-01,"Delivered to Consumers","Massachusetts","MA",24246 +2011-06-01,"Delivered to Consumers","Hawaii","HI",218 +2011-06-01,"Delivered to Consumers","Louisiana","LA",102693 +2011-06-01,"Delivered to Consumers","Georgia","GA",38548 +2011-06-01,"Delivered to Consumers","Washington","WA",11754 +2011-06-01,"Delivered to Consumers","Rhode Island","RI",6434 +2011-06-01,"Delivered to Consumers","Montana","MT",2852 +2011-06-01,"Delivered to Consumers","Kansas","KS",17179 +2011-06-01,"Delivered to Consumers","Arkansas","AR",22635 +2011-06-01,"Delivered to Consumers","Pennsylvania","PA",50115 +2011-06-01,"Delivered to Consumers","New Jersey","NJ",36210 +2011-06-01,"Delivered to Consumers","Minnesota","MN",19344 +2011-06-01,"Electric Power Consumption","New Jersey","NJ",18249 +2011-06-01,"Electric Power Consumption","Louisiana","LA",29419 +2011-06-01,"Electric Power Consumption","Idaho","ID",173 +2011-06-01,"Electric Power Consumption","Colorado","CO",7235 +2011-06-01,"Electric Power Consumption","New York","NY",39657 +2011-06-01,"Electric Power Consumption","Minnesota","MN",1906 +2011-06-01,"Electric Power Consumption","Illinois","IL",4658 +2011-06-01,"Electric Power Consumption","Kansas","KS",5298 +2011-06-01,"Electric Power Consumption","Florida","FL",102529 +2011-06-01,"Electric Power Consumption","Alabama","AL",31413 +2011-06-01,"Electric Power Consumption","Michigan","MI",8434 +2011-06-01,"Electric Power Consumption","West Virginia","WV",436 +2011-06-01,"Electric Power Consumption","Nevada","NV",13945 +2011-06-01,"Electric Power Consumption","North Carolina","NC",10582 +2011-06-01,"Electric Power Consumption","Montana","MT",11 +2011-06-01,"Electric Power Consumption","Arizona","AZ",16715 +2011-06-01,"Electric Power Consumption","California","CA",34436 +2011-06-01,"Electric Power Consumption","Alaska","AK",3135 +2011-06-01,"Electric Power Consumption","New Mexico","NM",6932 +2011-06-01,"Electric Power Consumption","South Carolina","SC",9288 +2011-06-01,"Electric Power Consumption","Texas","TX",149403 +2011-06-01,"Electric Power Consumption","Iowa","IA",663 +2011-06-01,"Electric Power Consumption","Nebraska","NE",384 +2011-06-01,"Electric Power Consumption","Maine","ME",2743 +2011-06-01,"Electric Power Consumption","Kentucky","KY",1971 +2011-06-01,"Electric Power Consumption","Hawaii","HI",NA +2011-06-01,"Electric Power Consumption","Ohio","OH",6830 +2011-06-01,"Electric Power Consumption","Georgia","GA",21127 +2011-06-01,"Electric Power Consumption","Utah","UT",2191 +2011-06-01,"Electric Power Consumption","Wyoming","WY",28 +2011-06-01,"Electric Power Consumption","Tennessee","TN",3617 +2011-06-01,"Electric Power Consumption","Mississippi","MS",25710 +2011-06-01,"Electric Power Consumption","Delaware","DE",3630 +2011-06-01,"Electric Power Consumption","Arkansas","AR",13665 +2011-06-01,"Electric Power Consumption","Rhode Island","RI",5326 +2011-06-01,"Electric Power Consumption","Oregon","OR",936 +2011-06-01,"Electric Power Consumption","Massachusetts","MA",15755 +2011-06-01,"Electric Power Consumption","Vermont","VT",6 +2011-06-01,"Electric Power Consumption","Maryland","MD",3169 +2011-06-01,"Electric Power Consumption","Indiana","IN",6028 +2011-06-01,"Electric Power Consumption","Washington","WA",776 +2011-06-01,"Electric Power Consumption","Virginia","VA",13279 +2011-06-01,"Electric Power Consumption","Wisconsin","WI",3666 +2011-06-01,"Electric Power Consumption","New Hampshire","NH",2770 +2011-06-01,"Electric Power Consumption","Oklahoma","OK",31057 +2011-06-01,"Electric Power Consumption","Pennsylvania","PA",26921 +2011-06-01,"Electric Power Consumption","Missouri","MO",4708 +2011-06-01,"Electric Power Consumption","Connecticut","CT",8473 +2011-06-01,"Electric Power Consumption","U.S.","U.S.",699414 +2011-06-01,"Electric Power Consumption","South Dakota","SD",31 +2011-06-01,"Electric Power Consumption","North Dakota","ND",0 +2011-06-01,"Industrial Consumption","Massachusetts","MA",2469 +2011-06-01,"Industrial Consumption","Louisiana","LA",70346 +2011-06-01,"Industrial Consumption","Arizona","AZ",1476 +2011-06-01,"Industrial Consumption","Pennsylvania","PA",14326 +2011-06-01,"Industrial Consumption","Virginia","VA",5054 +2011-06-01,"Industrial Consumption","Wyoming","WY",3160 +2011-06-01,"Industrial Consumption","Utah","UT",2812 +2011-06-01,"Industrial Consumption","Oregon","OR",4257 +2011-06-01,"Industrial Consumption","Texas","TX",118606 +2011-06-01,"Industrial Consumption","Wisconsin","WI",8179 +2011-06-01,"Industrial Consumption","New Hampshire","NH",432 +2011-06-01,"Industrial Consumption","Minnesota","MN",11548 +2011-06-01,"Industrial Consumption","Oklahoma","OK",15757 +2011-06-01,"Industrial Consumption","Colorado","CO",4445 +2011-06-01,"Industrial Consumption","New Mexico","NM",1773 +2011-06-01,"Industrial Consumption","Kansas","KS",9393 +2011-06-01,"Industrial Consumption","Maine","ME",1961 +2011-06-01,"Industrial Consumption","Alabama","AL",11795 +2011-06-01,"Industrial Consumption","Iowa","IA",12532 +2011-06-01,"Industrial Consumption","Michigan","MI",9676 +2011-06-01,"Industrial Consumption","Kentucky","KY",7741 +2011-06-01,"Industrial Consumption","Illinois","IL",18936 +2011-06-01,"Industrial Consumption","Delaware","DE",1648 +2011-06-01,"Industrial Consumption","Alaska","AK",449 +2011-06-01,"Industrial Consumption","Washington","WA",5624 +2011-06-01,"Industrial Consumption","Ohio","OH",19142 +2011-06-01,"Industrial Consumption","Idaho","ID",1760 +2011-06-01,"Industrial Consumption","Georgia","GA",11188 +2011-06-01,"Industrial Consumption","District of Columbia","DC",0 +2011-06-01,"Industrial Consumption","South Carolina","SC",5987 +2011-06-01,"Industrial Consumption","Connecticut","CT",1800 +2011-06-01,"Industrial Consumption","Maryland","MD",1785 +2011-06-01,"Industrial Consumption","Missouri","MO",4466 +2011-06-01,"Industrial Consumption","California","CA",57920 +2011-06-01,"Industrial Consumption","Vermont","VT",177 +2011-06-01,"Industrial Consumption","Tennessee","TN",7393 +2011-06-01,"Industrial Consumption","New Jersey","NJ",3561 +2011-06-01,"Industrial Consumption","Florida","FL",6933 +2011-06-01,"Industrial Consumption","North Carolina","NC",7322 +2011-06-01,"Industrial Consumption","North Dakota","ND",2542 +2011-06-01,"Industrial Consumption","Montana","MT",1385 +2011-06-01,"Industrial Consumption","U.S.","U.S.",535440 +2011-06-01,"Industrial Consumption","New York","NY",4674 +2011-06-01,"Industrial Consumption","Mississippi","MS",9853 +2011-06-01,"Industrial Consumption","Nebraska","NE",6669 +2011-06-01,"Industrial Consumption","West Virginia","WV",1844 +2011-06-01,"Industrial Consumption","Indiana","IN",23902 +2011-06-01,"Industrial Consumption","Rhode Island","RI",551 +2011-06-01,"Industrial Consumption","Hawaii","HI",27 +2011-06-01,"Industrial Consumption","South Dakota","SD",3188 +2011-06-01,"Industrial Consumption","Nevada","NV",874 +2011-06-01,"Industrial Consumption","Arkansas","AR",6104 +2011-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",107452 +2011-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",46037 +2011-06-01,"Residential Consumption","Virginia","VA",1709 +2011-06-01,"Residential Consumption","South Dakota","SD",278 +2011-06-01,"Residential Consumption","Nevada","NV",1643 +2011-06-01,"Residential Consumption","Indiana","IN",2526 +2011-06-01,"Residential Consumption","North Dakota","ND",267 +2011-06-01,"Residential Consumption","Idaho","ID",1050 +2011-06-01,"Residential Consumption","Oklahoma","OK",1486 +2011-06-01,"Residential Consumption","Missouri","MO",2073 +2011-06-01,"Residential Consumption","Delaware","DE",177 +2011-06-01,"Residential Consumption","Wyoming","WY",373 +2011-06-01,"Residential Consumption","Rhode Island","RI",308 +2011-06-01,"Residential Consumption","Ohio","OH",6023 +2011-06-01,"Residential Consumption","North Carolina","NC",962 +2011-06-01,"Residential Consumption","Wisconsin","WI",2571 +2011-06-01,"Residential Consumption","Utah","UT",3130 +2011-06-01,"Residential Consumption","Maryland","MD",1658 +2011-06-01,"Residential Consumption","District of Columbia","DC",325 +2011-06-01,"Residential Consumption","Washington","WA",2792 +2011-06-01,"Residential Consumption","U.S.","U.S.",132672 +2011-06-01,"Residential Consumption","Iowa","IA",1458 +2011-06-01,"Residential Consumption","Tennessee","TN",1205 +2011-06-01,"Residential Consumption","Minnesota","MN",2916 +2011-06-01,"Residential Consumption","Pennsylvania","PA",4600 +2011-06-01,"Residential Consumption","Texas","TX",6235 +2011-06-01,"Residential Consumption","Hawaii","HI",41 +2011-06-01,"Residential Consumption","Connecticut","CT",1345 +2011-06-01,"Residential Consumption","New Jersey","NJ",6111 +2011-06-01,"Residential Consumption","Colorado","CO",2862 +2011-06-01,"Residential Consumption","New York","NY",11118 +2011-06-01,"Residential Consumption","Mississippi","MS",643 +2011-06-01,"Residential Consumption","Michigan","MI",6386 +2011-06-01,"Residential Consumption","Maine","ME",45 +2011-06-01,"Residential Consumption","Arkansas","AR",813 +2011-06-01,"Residential Consumption","California","CA",27204 +2011-06-01,"Residential Consumption","Arizona","AZ",1398 +2011-06-01,"Residential Consumption","Oregon","OR",1529 +2011-06-01,"Residential Consumption","Louisiana","LA",1386 +2011-06-01,"Residential Consumption","Vermont","VT",86 +2011-06-01,"Residential Consumption","Georgia","GA",3367 +2011-06-01,"Residential Consumption","Kansas","KS",1478 +2011-06-01,"Residential Consumption","Alaska","AK",712 +2011-06-01,"Residential Consumption","South Carolina","SC",420 +2011-06-01,"Residential Consumption","Nebraska","NE",1066 +2011-06-01,"Residential Consumption","New Mexico","NM",1144 +2011-06-01,"Residential Consumption","Massachusetts","MA",3390 +2011-06-01,"Residential Consumption","Montana","MT",645 +2011-06-01,"Residential Consumption","Kentucky","KY",1050 +2011-06-01,"Residential Consumption","Alabama","AL",844 +2011-06-01,"Residential Consumption","West Virginia","WV",523 +2011-06-01,"Residential Consumption","Illinois","IL",10256 +2011-06-01,"Residential Consumption","Florida","FL",802 +2011-06-01,"Residential Consumption","New Hampshire","NH",241 +2011-06-01,"Vehicle Fuel Consumption","Washington","WA",42 +2011-06-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-06-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2011-06-01,"Vehicle Fuel Consumption","New York","NY",318 +2011-06-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-06-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-06-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-06-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-06-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2011-06-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2011-06-01,"Vehicle Fuel Consumption","California","CA",1205 +2011-06-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-06-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2011-06-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-06-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-06-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2011-06-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2011-06-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-06-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-06-01,"Vehicle Fuel Consumption","Texas","TX",181 +2011-06-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2011-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2464 +2011-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-06-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2011-06-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2011-06-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2011-06-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2011-06-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-06-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-06-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-06-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-06-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-06-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2011-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-06-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2011-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-06-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-06-01,"Vehicle Fuel Consumption","Utah","UT",24 +2011-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",72 +2011-06-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2011-06-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-07-01,"Commercial Consumption","South Carolina","SC",1140 +2011-07-01,"Commercial Consumption","Missouri","MO",2015 +2011-07-01,"Commercial Consumption","Maryland","MD",2267 +2011-07-01,"Commercial Consumption","Rhode Island","RI",275 +2011-07-01,"Commercial Consumption","Nebraska","NE",1181 +2011-07-01,"Commercial Consumption","New Mexico","NM",999 +2011-07-01,"Commercial Consumption","Oklahoma","OK",1248 +2011-07-01,"Commercial Consumption","South Dakota","SD",297 +2011-07-01,"Commercial Consumption","U.S.","U.S.",130147 +2011-07-01,"Commercial Consumption","Florida","FL",3832 +2011-07-01,"Commercial Consumption","Idaho","ID",617 +2011-07-01,"Commercial Consumption","Connecticut","CT",2140 +2011-07-01,"Commercial Consumption","Nevada","NV",1723 +2011-07-01,"Commercial Consumption","Illinois","IL",7804 +2011-07-01,"Commercial Consumption","Virginia","VA",2510 +2011-07-01,"Commercial Consumption","Pennsylvania","PA",3884 +2011-07-01,"Commercial Consumption","Massachusetts","MA",2451 +2011-07-01,"Commercial Consumption","Wisconsin","WI",2313 +2011-07-01,"Commercial Consumption","Montana","MT",758 +2011-07-01,"Commercial Consumption","Texas","TX",10342 +2011-07-01,"Commercial Consumption","Alabama","AL",897 +2011-07-01,"Commercial Consumption","Arizona","AZ",1835 +2011-07-01,"Commercial Consumption","Michigan","MI",5128 +2011-07-01,"Commercial Consumption","Wyoming","WY",284 +2011-07-01,"Commercial Consumption","West Virginia","WV",1062 +2011-07-01,"Commercial Consumption","Washington","WA",2048 +2011-07-01,"Commercial Consumption","New Jersey","NJ",9419 +2011-07-01,"Commercial Consumption","Kentucky","KY",922 +2011-07-01,"Commercial Consumption","Kansas","KS",1105 +2011-07-01,"Commercial Consumption","Vermont","VT",67 +2011-07-01,"Commercial Consumption","Arkansas","AR",2105 +2011-07-01,"Commercial Consumption","New York","NY",14139 +2011-07-01,"Commercial Consumption","Delaware","DE",365 +2011-07-01,"Commercial Consumption","Tennessee","TN",1985 +2011-07-01,"Commercial Consumption","District of Columbia","DC",720 +2011-07-01,"Commercial Consumption","Minnesota","MN",2965 +2011-07-01,"Commercial Consumption","Colorado","CO",1445 +2011-07-01,"Commercial Consumption","Iowa","IA",1458 +2011-07-01,"Commercial Consumption","Indiana","IN",2114 +2011-07-01,"Commercial Consumption","Maine","ME",226 +2011-07-01,"Commercial Consumption","Georgia","GA",2825 +2011-07-01,"Commercial Consumption","Ohio","OH",3753 +2011-07-01,"Commercial Consumption","Hawaii","HI",144 +2011-07-01,"Commercial Consumption","Alaska","AK",647 +2011-07-01,"Commercial Consumption","California","CA",17515 +2011-07-01,"Commercial Consumption","Mississippi","MS",937 +2011-07-01,"Commercial Consumption","Louisiana","LA",1455 +2011-07-01,"Commercial Consumption","North Carolina","NC",1980 +2011-07-01,"Commercial Consumption","Utah","UT",1225 +2011-07-01,"Commercial Consumption","Oregon","OR",1064 +2011-07-01,"Commercial Consumption","New Hampshire","NH",253 +2011-07-01,"Commercial Consumption","North Dakota","ND",265 +2011-07-01,"Delivered to Consumers","South Dakota","SD",4595 +2011-07-01,"Delivered to Consumers","Texas","TX",328964 +2011-07-01,"Delivered to Consumers","Oregon","OR",8381 +2011-07-01,"Delivered to Consumers","Ohio","OH",38564 +2011-07-01,"Delivered to Consumers","Kentucky","KY",12715 +2011-07-01,"Delivered to Consumers","Connecticut","CT",16080 +2011-07-01,"Delivered to Consumers","Nebraska","NE",10693 +2011-07-01,"Delivered to Consumers","North Carolina","NC",24168 +2011-07-01,"Delivered to Consumers","South Carolina","SC",18518 +2011-07-01,"Delivered to Consumers","New Jersey","NJ",42629 +2011-07-01,"Delivered to Consumers","New Hampshire","NH",5753 +2011-07-01,"Delivered to Consumers","Minnesota","MN",24458 +2011-07-01,"Delivered to Consumers","District of Columbia","DC",1112 +2011-07-01,"Delivered to Consumers","Indiana","IN",41185 +2011-07-01,"Delivered to Consumers","Vermont","VT",314 +2011-07-01,"Delivered to Consumers","Hawaii","HI",210 +2011-07-01,"Delivered to Consumers","Missouri","MO",16609 +2011-07-01,"Delivered to Consumers","Nevada","NV",22479 +2011-07-01,"Delivered to Consumers","Washington","WA",11325 +2011-07-01,"Delivered to Consumers","Utah","UT",9820 +2011-07-01,"Delivered to Consumers","Rhode Island","RI",7509 +2011-07-01,"Delivered to Consumers","New York","NY",85823 +2011-07-01,"Delivered to Consumers","Maryland","MD",13389 +2011-07-01,"Delivered to Consumers","Louisiana","LA",105251 +2011-07-01,"Delivered to Consumers","U.S.","U.S.",1728010 +2011-07-01,"Delivered to Consumers","New Mexico","NM",12414 +2011-07-01,"Delivered to Consumers","Delaware","DE",7535 +2011-07-01,"Delivered to Consumers","Illinois","IL",49060 +2011-07-01,"Delivered to Consumers","Alaska","AK",4989 +2011-07-01,"Delivered to Consumers","Kansas","KS",20852 +2011-07-01,"Delivered to Consumers","Idaho","ID",3399 +2011-07-01,"Delivered to Consumers","Iowa","IA",18839 +2011-07-01,"Delivered to Consumers","Pennsylvania","PA",57298 +2011-07-01,"Delivered to Consumers","Georgia","GA",40138 +2011-07-01,"Delivered to Consumers","Wyoming","WY",4151 +2011-07-01,"Delivered to Consumers","Oklahoma","OK",60959 +2011-07-01,"Delivered to Consumers","Michigan","MI",40899 +2011-07-01,"Delivered to Consumers","Alabama","AL",49781 +2011-07-01,"Delivered to Consumers","Arizona","AZ",30174 +2011-07-01,"Delivered to Consumers","Tennessee","TN",15305 +2011-07-01,"Delivered to Consumers","Arkansas","AR",25569 +2011-07-01,"Delivered to Consumers","Wisconsin","WI",20921 +2011-07-01,"Delivered to Consumers","Virginia","VA",30825 +2011-07-01,"Delivered to Consumers","Mississippi","MS",40683 +2011-07-01,"Delivered to Consumers","California","CA",161447 +2011-07-01,"Delivered to Consumers","North Dakota","ND",2476 +2011-07-01,"Delivered to Consumers","Florida","FL",117227 +2011-07-01,"Delivered to Consumers","West Virginia","WV",3815 +2011-07-01,"Delivered to Consumers","Montana","MT",3456 +2011-07-01,"Delivered to Consumers","Massachusetts","MA",30015 +2011-07-01,"Delivered to Consumers","Colorado","CO",18896 +2011-07-01,"Delivered to Consumers","Maine","ME",6343 +2011-07-01,"Electric Power Consumption","Louisiana","LA",32496 +2011-07-01,"Electric Power Consumption","Utah","UT",4347 +2011-07-01,"Electric Power Consumption","Oregon","OR",2148 +2011-07-01,"Electric Power Consumption","Minnesota","MN",7742 +2011-07-01,"Electric Power Consumption","Iowa","IA",3395 +2011-07-01,"Electric Power Consumption","Mississippi","MS",29847 +2011-07-01,"Electric Power Consumption","Ohio","OH",12094 +2011-07-01,"Electric Power Consumption","Vermont","VT",4 +2011-07-01,"Electric Power Consumption","Maine","ME",3957 +2011-07-01,"Electric Power Consumption","Hawaii","HI",NA +2011-07-01,"Electric Power Consumption","Indiana","IN",11743 +2011-07-01,"Electric Power Consumption","Arizona","AZ",25648 +2011-07-01,"Electric Power Consumption","Georgia","GA",23029 +2011-07-01,"Electric Power Consumption","Florida","FL",105913 +2011-07-01,"Electric Power Consumption","Virginia","VA",21602 +2011-07-01,"Electric Power Consumption","U.S.","U.S.",938575 +2011-07-01,"Electric Power Consumption","Nebraska","NE",1687 +2011-07-01,"Electric Power Consumption","Maryland","MD",7435 +2011-07-01,"Electric Power Consumption","Delaware","DE",5382 +2011-07-01,"Electric Power Consumption","Alabama","AL",36666 +2011-07-01,"Electric Power Consumption","Washington","WA",1628 +2011-07-01,"Electric Power Consumption","Idaho","ID",475 +2011-07-01,"Electric Power Consumption","New York","NY",57410 +2011-07-01,"Electric Power Consumption","Michigan","MI",20538 +2011-07-01,"Electric Power Consumption","West Virginia","WV",621 +2011-07-01,"Electric Power Consumption","Pennsylvania","PA",35804 +2011-07-01,"Electric Power Consumption","South Dakota","SD",967 +2011-07-01,"Electric Power Consumption","North Carolina","NC",14049 +2011-07-01,"Electric Power Consumption","North Dakota","ND",0 +2011-07-01,"Electric Power Consumption","Texas","TX",185185 +2011-07-01,"Electric Power Consumption","Oklahoma","OK",43541 +2011-07-01,"Electric Power Consumption","Massachusetts","MA",22106 +2011-07-01,"Electric Power Consumption","Wisconsin","WI",8253 +2011-07-01,"Electric Power Consumption","Missouri","MO",8651 +2011-07-01,"Electric Power Consumption","Kentucky","KY",3526 +2011-07-01,"Electric Power Consumption","Montana","MT",926 +2011-07-01,"Electric Power Consumption","Alaska","AK",3206 +2011-07-01,"Electric Power Consumption","New Mexico","NM",8804 +2011-07-01,"Electric Power Consumption","New Hampshire","NH",4893 +2011-07-01,"Electric Power Consumption","Connecticut","CT",10960 +2011-07-01,"Electric Power Consumption","California","CA",56668 +2011-07-01,"Electric Power Consumption","New Jersey","NJ",24519 +2011-07-01,"Electric Power Consumption","Arkansas","AR",17199 +2011-07-01,"Electric Power Consumption","Rhode Island","RI",6340 +2011-07-01,"Electric Power Consumption","Illinois","IL",14399 +2011-07-01,"Electric Power Consumption","Kansas","KS",8153 +2011-07-01,"Electric Power Consumption","Colorado","CO",10395 +2011-07-01,"Electric Power Consumption","South Carolina","SC",11017 +2011-07-01,"Electric Power Consumption","Nevada","NV",18626 +2011-07-01,"Electric Power Consumption","Wyoming","WY",50 +2011-07-01,"Electric Power Consumption","Tennessee","TN",4420 +2011-07-01,"Industrial Consumption","North Dakota","ND",2031 +2011-07-01,"Industrial Consumption","Massachusetts","MA",2697 +2011-07-01,"Industrial Consumption","Missouri","MO",4273 +2011-07-01,"Industrial Consumption","Utah","UT",2471 +2011-07-01,"Industrial Consumption","New York","NY",4971 +2011-07-01,"Industrial Consumption","South Carolina","SC",5901 +2011-07-01,"Industrial Consumption","Rhode Island","RI",509 +2011-07-01,"Industrial Consumption","Oklahoma","OK",15140 +2011-07-01,"Industrial Consumption","South Dakota","SD",3114 +2011-07-01,"Industrial Consumption","Texas","TX",128035 +2011-07-01,"Industrial Consumption","Tennessee","TN",7906 +2011-07-01,"Industrial Consumption","Kentucky","KY",7450 +2011-07-01,"Industrial Consumption","Delaware","DE",1640 +2011-07-01,"Industrial Consumption","Colorado","CO",4509 +2011-07-01,"Industrial Consumption","Oregon","OR",4064 +2011-07-01,"Industrial Consumption","Georgia","GA",10949 +2011-07-01,"Industrial Consumption","Montana","MT",1344 +2011-07-01,"Industrial Consumption","New Mexico","NM",1712 +2011-07-01,"Industrial Consumption","Alabama","AL",11598 +2011-07-01,"Industrial Consumption","West Virginia","WV",1769 +2011-07-01,"Industrial Consumption","Minnesota","MN",11146 +2011-07-01,"Industrial Consumption","Idaho","ID",1672 +2011-07-01,"Industrial Consumption","Florida","FL",6719 +2011-07-01,"Industrial Consumption","Connecticut","CT",1845 +2011-07-01,"Industrial Consumption","Indiana","IN",24850 +2011-07-01,"Industrial Consumption","District of Columbia","DC",0 +2011-07-01,"Industrial Consumption","Kansas","KS",10390 +2011-07-01,"Industrial Consumption","California","CA",59324 +2011-07-01,"Industrial Consumption","Nebraska","NE",6939 +2011-07-01,"Industrial Consumption","Virginia","VA",5276 +2011-07-01,"Industrial Consumption","New Jersey","NJ",3135 +2011-07-01,"Industrial Consumption","New Hampshire","NH",444 +2011-07-01,"Industrial Consumption","Maryland","MD",2132 +2011-07-01,"Industrial Consumption","Louisiana","LA",70067 +2011-07-01,"Industrial Consumption","Ohio","OH",18260 +2011-07-01,"Industrial Consumption","Arizona","AZ",1431 +2011-07-01,"Industrial Consumption","U.S.","U.S.",542556 +2011-07-01,"Industrial Consumption","Pennsylvania","PA",13572 +2011-07-01,"Industrial Consumption","Maine","ME",2126 +2011-07-01,"Industrial Consumption","Michigan","MI",8981 +2011-07-01,"Industrial Consumption","Washington","WA",5543 +2011-07-01,"Industrial Consumption","Mississippi","MS",9327 +2011-07-01,"Industrial Consumption","Iowa","IA",12778 +2011-07-01,"Industrial Consumption","Alaska","AK",555 +2011-07-01,"Industrial Consumption","Hawaii","HI",26 +2011-07-01,"Industrial Consumption","Nevada","NV",802 +2011-07-01,"Industrial Consumption","Arkansas","AR",5516 +2011-07-01,"Industrial Consumption","Vermont","VT",173 +2011-07-01,"Industrial Consumption","Wyoming","WY",3582 +2011-07-01,"Industrial Consumption","Wisconsin","WI",7908 +2011-07-01,"Industrial Consumption","Illinois","IL",18705 +2011-07-01,"Industrial Consumption","North Carolina","NC",7247 +2011-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",109606 +2011-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",52900 +2011-07-01,"Residential Consumption","Rhode Island","RI",377 +2011-07-01,"Residential Consumption","Ohio","OH",4449 +2011-07-01,"Residential Consumption","Wisconsin","WI",2442 +2011-07-01,"Residential Consumption","Idaho","ID",624 +2011-07-01,"Residential Consumption","New Hampshire","NH",160 +2011-07-01,"Residential Consumption","Oklahoma","OK",1008 +2011-07-01,"Residential Consumption","U.S.","U.S.",114187 +2011-07-01,"Residential Consumption","Maryland","MD",1536 +2011-07-01,"Residential Consumption","Nevada","NV",1278 +2011-07-01,"Residential Consumption","Georgia","GA",3241 +2011-07-01,"Residential Consumption","Maine","ME",33 +2011-07-01,"Residential Consumption","Colorado","CO",2523 +2011-07-01,"Residential Consumption","Washington","WA",2063 +2011-07-01,"Residential Consumption","Missouri","MO",1670 +2011-07-01,"Residential Consumption","Delaware","DE",148 +2011-07-01,"Residential Consumption","California","CA",26695 +2011-07-01,"Residential Consumption","Alaska","AK",580 +2011-07-01,"Residential Consumption","South Carolina","SC",459 +2011-07-01,"Residential Consumption","Oregon","OR",1093 +2011-07-01,"Residential Consumption","Louisiana","LA",1232 +2011-07-01,"Residential Consumption","South Dakota","SD",216 +2011-07-01,"Residential Consumption","New Jersey","NJ",5540 +2011-07-01,"Residential Consumption","Alabama","AL",604 +2011-07-01,"Residential Consumption","Illinois","IL",8130 +2011-07-01,"Residential Consumption","North Carolina","NC",889 +2011-07-01,"Residential Consumption","Florida","FL",756 +2011-07-01,"Residential Consumption","Arkansas","AR",747 +2011-07-01,"Residential Consumption","Wyoming","WY",234 +2011-07-01,"Residential Consumption","Hawaii","HI",40 +2011-07-01,"Residential Consumption","Utah","UT",1752 +2011-07-01,"Residential Consumption","Pennsylvania","PA",4013 +2011-07-01,"Residential Consumption","Kansas","KS",1204 +2011-07-01,"Residential Consumption","West Virginia","WV",363 +2011-07-01,"Residential Consumption","New York","NY",8975 +2011-07-01,"Residential Consumption","Iowa","IA",1208 +2011-07-01,"Residential Consumption","Tennessee","TN",992 +2011-07-01,"Residential Consumption","Nebraska","NE",883 +2011-07-01,"Residential Consumption","Indiana","IN",2476 +2011-07-01,"Residential Consumption","Kentucky","KY",816 +2011-07-01,"Residential Consumption","Arizona","AZ",1114 +2011-07-01,"Residential Consumption","Connecticut","CT",1133 +2011-07-01,"Residential Consumption","Virginia","VA",1415 +2011-07-01,"Residential Consumption","Michigan","MI",6224 +2011-07-01,"Residential Consumption","District of Columbia","DC",207 +2011-07-01,"Residential Consumption","North Dakota","ND",180 +2011-07-01,"Residential Consumption","Massachusetts","MA",2697 +2011-07-01,"Residential Consumption","Montana","MT",428 +2011-07-01,"Residential Consumption","Texas","TX",5214 +2011-07-01,"Residential Consumption","Mississippi","MS",571 +2011-07-01,"Residential Consumption","Vermont","VT",70 +2011-07-01,"Residential Consumption","Minnesota","MN",2604 +2011-07-01,"Residential Consumption","New Mexico","NM",878 +2011-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-07-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2011-07-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-07-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-07-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2011-07-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-07-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-07-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-07-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2546 +2011-07-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-07-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2011-07-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-07-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2011-07-01,"Vehicle Fuel Consumption","Washington","WA",43 +2011-07-01,"Vehicle Fuel Consumption","Utah","UT",25 +2011-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2011-07-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-07-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2011-07-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-07-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2011-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-07-01,"Vehicle Fuel Consumption","California","CA",1245 +2011-07-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-07-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2011-07-01,"Vehicle Fuel Consumption","New York","NY",328 +2011-07-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-07-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-07-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-07-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-07-01,"Vehicle Fuel Consumption","Texas","TX",187 +2011-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-07-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2011-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2011-07-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2011-07-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-07-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-07-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2011-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",65 +2011-07-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-07-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2011-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-07-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-08-01,"Commercial Consumption","Hawaii","HI",142 +2011-08-01,"Commercial Consumption","Arizona","AZ",1652 +2011-08-01,"Commercial Consumption","Illinois","IL",7918 +2011-08-01,"Commercial Consumption","South Carolina","SC",1220 +2011-08-01,"Commercial Consumption","Colorado","CO",1396 +2011-08-01,"Commercial Consumption","New Mexico","NM",850 +2011-08-01,"Commercial Consumption","Massachusetts","MA",2939 +2011-08-01,"Commercial Consumption","Wisconsin","WI",2740 +2011-08-01,"Commercial Consumption","New Jersey","NJ",9812 +2011-08-01,"Commercial Consumption","Pennsylvania","PA",4417 +2011-08-01,"Commercial Consumption","New Hampshire","NH",278 +2011-08-01,"Commercial Consumption","Georgia","GA",2708 +2011-08-01,"Commercial Consumption","Arkansas","AR",2047 +2011-08-01,"Commercial Consumption","Delaware","DE",438 +2011-08-01,"Commercial Consumption","Tennessee","TN",2093 +2011-08-01,"Commercial Consumption","Nevada","NV",1640 +2011-08-01,"Commercial Consumption","Wyoming","WY",288 +2011-08-01,"Commercial Consumption","West Virginia","WV",1041 +2011-08-01,"Commercial Consumption","Utah","UT",1022 +2011-08-01,"Commercial Consumption","Oklahoma","OK",1230 +2011-08-01,"Commercial Consumption","Missouri","MO",2079 +2011-08-01,"Commercial Consumption","Montana","MT",675 +2011-08-01,"Commercial Consumption","U.S.","U.S.",137962 +2011-08-01,"Commercial Consumption","Maryland","MD",3065 +2011-08-01,"Commercial Consumption","Florida","FL",3773 +2011-08-01,"Commercial Consumption","Iowa","IA",1513 +2011-08-01,"Commercial Consumption","Alabama","AL",1125 +2011-08-01,"Commercial Consumption","Texas","TX",10612 +2011-08-01,"Commercial Consumption","Kansas","KS",1113 +2011-08-01,"Commercial Consumption","Idaho","ID",536 +2011-08-01,"Commercial Consumption","North Carolina","NC",2465 +2011-08-01,"Commercial Consumption","Minnesota","MN",2635 +2011-08-01,"Commercial Consumption","Oregon","OR",1013 +2011-08-01,"Commercial Consumption","Alaska","AK",760 +2011-08-01,"Commercial Consumption","Connecticut","CT",2184 +2011-08-01,"Commercial Consumption","Indiana","IN",2231 +2011-08-01,"Commercial Consumption","Washington","WA",2133 +2011-08-01,"Commercial Consumption","North Dakota","ND",277 +2011-08-01,"Commercial Consumption","Virginia","VA",2831 +2011-08-01,"Commercial Consumption","Maine","ME",221 +2011-08-01,"Commercial Consumption","Rhode Island","RI",247 +2011-08-01,"Commercial Consumption","New York","NY",15299 +2011-08-01,"Commercial Consumption","Michigan","MI",5104 +2011-08-01,"Commercial Consumption","Louisiana","LA",1538 +2011-08-01,"Commercial Consumption","South Dakota","SD",308 +2011-08-01,"Commercial Consumption","Kentucky","KY",1061 +2011-08-01,"Commercial Consumption","Vermont","VT",73 +2011-08-01,"Commercial Consumption","Ohio","OH",4912 +2011-08-01,"Commercial Consumption","California","CA",19562 +2011-08-01,"Commercial Consumption","Nebraska","NE",987 +2011-08-01,"Commercial Consumption","Mississippi","MS",992 +2011-08-01,"Commercial Consumption","District of Columbia","DC",769 +2011-08-01,"Delivered to Consumers","New Mexico","NM",12095 +2011-08-01,"Delivered to Consumers","New York","NY",78955 +2011-08-01,"Delivered to Consumers","Oklahoma","OK",57859 +2011-08-01,"Delivered to Consumers","Ohio","OH",39419 +2011-08-01,"Delivered to Consumers","Connecticut","CT",16387 +2011-08-01,"Delivered to Consumers","Colorado","CO",16778 +2011-08-01,"Delivered to Consumers","Maine","ME",5856 +2011-08-01,"Delivered to Consumers","Louisiana","LA",109972 +2011-08-01,"Delivered to Consumers","Washington","WA",15038 +2011-08-01,"Delivered to Consumers","West Virginia","WV",3690 +2011-08-01,"Delivered to Consumers","Vermont","VT",312 +2011-08-01,"Delivered to Consumers","North Carolina","NC",22004 +2011-08-01,"Delivered to Consumers","South Carolina","SC",18337 +2011-08-01,"Delivered to Consumers","New Hampshire","NH",5105 +2011-08-01,"Delivered to Consumers","North Dakota","ND",2111 +2011-08-01,"Delivered to Consumers","Illinois","IL",42862 +2011-08-01,"Delivered to Consumers","Rhode Island","RI",7204 +2011-08-01,"Delivered to Consumers","Maryland","MD",8824 +2011-08-01,"Delivered to Consumers","Kansas","KS",18395 +2011-08-01,"Delivered to Consumers","Idaho","ID",3776 +2011-08-01,"Delivered to Consumers","Michigan","MI",33096 +2011-08-01,"Delivered to Consumers","Wisconsin","WI",19016 +2011-08-01,"Delivered to Consumers","Pennsylvania","PA",53458 +2011-08-01,"Delivered to Consumers","Nebraska","NE",10694 +2011-08-01,"Delivered to Consumers","Texas","TX",344214 +2011-08-01,"Delivered to Consumers","Oregon","OR",11408 +2011-08-01,"Delivered to Consumers","Utah","UT",9452 +2011-08-01,"Delivered to Consumers","Montana","MT",3309 +2011-08-01,"Delivered to Consumers","Virginia","VA",26512 +2011-08-01,"Delivered to Consumers","Missouri","MO",15356 +2011-08-01,"Delivered to Consumers","Florida","FL",122207 +2011-08-01,"Delivered to Consumers","District of Columbia","DC",1236 +2011-08-01,"Delivered to Consumers","Alaska","AK",5403 +2011-08-01,"Delivered to Consumers","Tennessee","TN",13263 +2011-08-01,"Delivered to Consumers","Kentucky","KY",12210 +2011-08-01,"Delivered to Consumers","Iowa","IA",18406 +2011-08-01,"Delivered to Consumers","Arizona","AZ",35881 +2011-08-01,"Delivered to Consumers","Indiana","IN",37179 +2011-08-01,"Delivered to Consumers","Delaware","DE",6122 +2011-08-01,"Delivered to Consumers","Wyoming","WY",4057 +2011-08-01,"Delivered to Consumers","Hawaii","HI",208 +2011-08-01,"Delivered to Consumers","Alabama","AL",54362 +2011-08-01,"Delivered to Consumers","Mississippi","MS",42634 +2011-08-01,"Delivered to Consumers","Massachusetts","MA",30670 +2011-08-01,"Delivered to Consumers","California","CA",176413 +2011-08-01,"Delivered to Consumers","Minnesota","MN",21219 +2011-08-01,"Delivered to Consumers","U.S.","U.S.",1727907 +2011-08-01,"Delivered to Consumers","South Dakota","SD",4093 +2011-08-01,"Delivered to Consumers","Arkansas","AR",24601 +2011-08-01,"Delivered to Consumers","Nevada","NV",23383 +2011-08-01,"Delivered to Consumers","New Jersey","NJ",37312 +2011-08-01,"Delivered to Consumers","Georgia","GA",45552 +2011-08-01,"Electric Power Consumption","Idaho","ID",970 +2011-08-01,"Electric Power Consumption","Arkansas","AR",15614 +2011-08-01,"Electric Power Consumption","Illinois","IL",7634 +2011-08-01,"Electric Power Consumption","Mississippi","MS",31641 +2011-08-01,"Electric Power Consumption","Kentucky","KY",2491 +2011-08-01,"Electric Power Consumption","New Hampshire","NH",4181 +2011-08-01,"Electric Power Consumption","North Dakota","ND",0 +2011-08-01,"Electric Power Consumption","Alabama","AL",40688 +2011-08-01,"Electric Power Consumption","New Jersey","NJ",19592 +2011-08-01,"Electric Power Consumption","Minnesota","MN",4505 +2011-08-01,"Electric Power Consumption","Michigan","MI",12985 +2011-08-01,"Electric Power Consumption","Pennsylvania","PA",30637 +2011-08-01,"Electric Power Consumption","Iowa","IA",2579 +2011-08-01,"Electric Power Consumption","Hawaii","HI",NA +2011-08-01,"Electric Power Consumption","Montana","MT",745 +2011-08-01,"Electric Power Consumption","Delaware","DE",3950 +2011-08-01,"Electric Power Consumption","California","CA",69261 +2011-08-01,"Electric Power Consumption","Alaska","AK",3407 +2011-08-01,"Electric Power Consumption","Louisiana","LA",35435 +2011-08-01,"Electric Power Consumption","Oregon","OR",5120 +2011-08-01,"Electric Power Consumption","Kansas","KS",5718 +2011-08-01,"Electric Power Consumption","Nevada","NV",19657 +2011-08-01,"Electric Power Consumption","Vermont","VT",3 +2011-08-01,"Electric Power Consumption","Maryland","MD",2775 +2011-08-01,"Electric Power Consumption","Rhode Island","RI",5969 +2011-08-01,"Electric Power Consumption","Massachusetts","MA",21259 +2011-08-01,"Electric Power Consumption","West Virginia","WV",356 +2011-08-01,"Electric Power Consumption","Wyoming","WY",17 +2011-08-01,"Electric Power Consumption","Indiana","IN",7696 +2011-08-01,"Electric Power Consumption","South Dakota","SD",352 +2011-08-01,"Electric Power Consumption","North Carolina","NC",10826 +2011-08-01,"Electric Power Consumption","Maine","ME",3532 +2011-08-01,"Electric Power Consumption","Connecticut","CT",11246 +2011-08-01,"Electric Power Consumption","Georgia","GA",27828 +2011-08-01,"Electric Power Consumption","Washington","WA",5312 +2011-08-01,"Electric Power Consumption","Virginia","VA",16768 +2011-08-01,"Electric Power Consumption","New Mexico","NM",8654 +2011-08-01,"Electric Power Consumption","Colorado","CO",8411 +2011-08-01,"Electric Power Consumption","South Carolina","SC",10331 +2011-08-01,"Electric Power Consumption","New York","NY",48539 +2011-08-01,"Electric Power Consumption","Wisconsin","WI",5632 +2011-08-01,"Electric Power Consumption","Missouri","MO",7139 +2011-08-01,"Electric Power Consumption","Oklahoma","OK",41050 +2011-08-01,"Electric Power Consumption","Utah","UT",4416 +2011-08-01,"Electric Power Consumption","U.S.","U.S.",921449 +2011-08-01,"Electric Power Consumption","Florida","FL",110489 +2011-08-01,"Electric Power Consumption","Texas","TX",201213 +2011-08-01,"Electric Power Consumption","Tennessee","TN",2006 +2011-08-01,"Electric Power Consumption","Nebraska","NE",1089 +2011-08-01,"Electric Power Consumption","Ohio","OH",10073 +2011-08-01,"Electric Power Consumption","Arizona","AZ",31547 +2011-08-01,"Industrial Consumption","Ohio","OH",18943 +2011-08-01,"Industrial Consumption","Kansas","KS",10478 +2011-08-01,"Industrial Consumption","Oregon","OR",4297 +2011-08-01,"Industrial Consumption","Mississippi","MS",9433 +2011-08-01,"Industrial Consumption","Tennessee","TN",8158 +2011-08-01,"Industrial Consumption","Idaho","ID",1763 +2011-08-01,"Industrial Consumption","Montana","MT",1454 +2011-08-01,"Industrial Consumption","West Virginia","WV",1960 +2011-08-01,"Industrial Consumption","Wisconsin","WI",8406 +2011-08-01,"Industrial Consumption","Michigan","MI",9251 +2011-08-01,"Industrial Consumption","Rhode Island","RI",563 +2011-08-01,"Industrial Consumption","District of Columbia","DC",0 +2011-08-01,"Industrial Consumption","Pennsylvania","PA",14467 +2011-08-01,"Industrial Consumption","New Jersey","NJ",3225 +2011-08-01,"Industrial Consumption","Kentucky","KY",7825 +2011-08-01,"Industrial Consumption","North Dakota","ND",1648 +2011-08-01,"Industrial Consumption","Missouri","MO",4448 +2011-08-01,"Industrial Consumption","U.S.","U.S.",553670 +2011-08-01,"Industrial Consumption","Texas","TX",126955 +2011-08-01,"Industrial Consumption","Wyoming","WY",3525 +2011-08-01,"Industrial Consumption","New Hampshire","NH",457 +2011-08-01,"Industrial Consumption","Indiana","IN",24997 +2011-08-01,"Industrial Consumption","South Dakota","SD",3206 +2011-08-01,"Industrial Consumption","New Mexico","NM",1787 +2011-08-01,"Industrial Consumption","Arizona","AZ",1573 +2011-08-01,"Industrial Consumption","Maine","ME",2077 +2011-08-01,"Industrial Consumption","South Carolina","SC",6329 +2011-08-01,"Industrial Consumption","North Carolina","NC",7646 +2011-08-01,"Industrial Consumption","Georgia","GA",11626 +2011-08-01,"Industrial Consumption","Massachusetts","MA",2521 +2011-08-01,"Industrial Consumption","Louisiana","LA",71826 +2011-08-01,"Industrial Consumption","Washington","WA",5564 +2011-08-01,"Industrial Consumption","California","CA",61029 +2011-08-01,"Industrial Consumption","Arkansas","AR",6367 +2011-08-01,"Industrial Consumption","Vermont","VT",166 +2011-08-01,"Industrial Consumption","Iowa","IA",13146 +2011-08-01,"Industrial Consumption","Florida","FL",7214 +2011-08-01,"Industrial Consumption","Maryland","MD",1470 +2011-08-01,"Industrial Consumption","Hawaii","HI",31 +2011-08-01,"Industrial Consumption","Colorado","CO",4435 +2011-08-01,"Industrial Consumption","Utah","UT",2496 +2011-08-01,"Industrial Consumption","Connecticut","CT",1992 +2011-08-01,"Industrial Consumption","Oklahoma","OK",14616 +2011-08-01,"Industrial Consumption","New York","NY",5076 +2011-08-01,"Industrial Consumption","Nevada","NV",855 +2011-08-01,"Industrial Consumption","Alabama","AL",11760 +2011-08-01,"Industrial Consumption","Nebraska","NE",7934 +2011-08-01,"Industrial Consumption","Virginia","VA",5328 +2011-08-01,"Industrial Consumption","Minnesota","MN",11741 +2011-08-01,"Industrial Consumption","Illinois","IL",19485 +2011-08-01,"Industrial Consumption","Delaware","DE",1534 +2011-08-01,"Industrial Consumption","Alaska","AK",585 +2011-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",110980 +2011-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",52896 +2011-08-01,"Residential Consumption","Ohio","OH",5484 +2011-08-01,"Residential Consumption","Hawaii","HI",35 +2011-08-01,"Residential Consumption","Wisconsin","WI",2232 +2011-08-01,"Residential Consumption","Nebraska","NE",680 +2011-08-01,"Residential Consumption","District of Columbia","DC",283 +2011-08-01,"Residential Consumption","Alaska","AK",650 +2011-08-01,"Residential Consumption","Texas","TX",5247 +2011-08-01,"Residential Consumption","Michigan","MI",5729 +2011-08-01,"Residential Consumption","Colorado","CO",2512 +2011-08-01,"Residential Consumption","Alabama","AL",772 +2011-08-01,"Residential Consumption","Illinois","IL",7804 +2011-08-01,"Residential Consumption","Iowa","IA",1168 +2011-08-01,"Residential Consumption","Tennessee","TN",1004 +2011-08-01,"Residential Consumption","Virginia","VA",1562 +2011-08-01,"Residential Consumption","Minnesota","MN",2338 +2011-08-01,"Residential Consumption","Georgia","GA",3297 +2011-08-01,"Residential Consumption","North Dakota","ND",185 +2011-08-01,"Residential Consumption","Massachusetts","MA",3887 +2011-08-01,"Residential Consumption","Montana","MT",435 +2011-08-01,"Residential Consumption","Washington","WA",1985 +2011-08-01,"Residential Consumption","Arizona","AZ",964 +2011-08-01,"Residential Consumption","Oregon","OR",966 +2011-08-01,"Residential Consumption","South Dakota","SD",227 +2011-08-01,"Residential Consumption","Maine","ME",25 +2011-08-01,"Residential Consumption","Oklahoma","OK",941 +2011-08-01,"Residential Consumption","California","CA",25315 +2011-08-01,"Residential Consumption","West Virginia","WV",333 +2011-08-01,"Residential Consumption","Utah","UT",1493 +2011-08-01,"Residential Consumption","Pennsylvania","PA",3912 +2011-08-01,"Residential Consumption","Kentucky","KY",833 +2011-08-01,"Residential Consumption","U.S.","U.S.",112280 +2011-08-01,"Residential Consumption","Rhode Island","RI",418 +2011-08-01,"Residential Consumption","North Carolina","NC",1066 +2011-08-01,"Residential Consumption","Mississippi","MS",568 +2011-08-01,"Residential Consumption","Nevada","NV",1180 +2011-08-01,"Residential Consumption","Vermont","VT",70 +2011-08-01,"Residential Consumption","New Mexico","NM",784 +2011-08-01,"Residential Consumption","Florida","FL",723 +2011-08-01,"Residential Consumption","Wyoming","WY",224 +2011-08-01,"Residential Consumption","New York","NY",9712 +2011-08-01,"Residential Consumption","South Carolina","SC",457 +2011-08-01,"Residential Consumption","Louisiana","LA",1172 +2011-08-01,"Residential Consumption","Connecticut","CT",963 +2011-08-01,"Residential Consumption","Maryland","MD",1496 +2011-08-01,"Residential Consumption","Indiana","IN",2253 +2011-08-01,"Residential Consumption","Idaho","ID",496 +2011-08-01,"Residential Consumption","Arkansas","AR",571 +2011-08-01,"Residential Consumption","New Jersey","NJ",4668 +2011-08-01,"Residential Consumption","New Hampshire","NH",186 +2011-08-01,"Residential Consumption","Kansas","KS",1085 +2011-08-01,"Residential Consumption","Missouri","MO",1690 +2011-08-01,"Residential Consumption","Delaware","DE",200 +2011-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-08-01,"Vehicle Fuel Consumption","Utah","UT",25 +2011-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-08-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2011-08-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2011-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",65 +2011-08-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-08-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-08-01,"Vehicle Fuel Consumption","Washington","WA",43 +2011-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2011-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2011-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-08-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-08-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2546 +2011-08-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-08-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-08-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2011-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2011-08-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-08-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2011-08-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-08-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2011-08-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-08-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2011-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-08-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2011-08-01,"Vehicle Fuel Consumption","Texas","TX",187 +2011-08-01,"Vehicle Fuel Consumption","California","CA",1245 +2011-08-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-08-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-08-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-08-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-08-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-08-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-08-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2011-08-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-08-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-08-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2011-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-08-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-08-01,"Vehicle Fuel Consumption","New York","NY",328 +2011-08-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-08-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-08-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2011-09-01,"Commercial Consumption","North Carolina","NC",2382 +2011-09-01,"Commercial Consumption","Oregon","OR",1006 +2011-09-01,"Commercial Consumption","Virginia","VA",2332 +2011-09-01,"Commercial Consumption","South Dakota","SD",386 +2011-09-01,"Commercial Consumption","Kentucky","KY",1258 +2011-09-01,"Commercial Consumption","Kansas","KS",901 +2011-09-01,"Commercial Consumption","New York","NY",13299 +2011-09-01,"Commercial Consumption","Colorado","CO",1611 +2011-09-01,"Commercial Consumption","Rhode Island","RI",287 +2011-09-01,"Commercial Consumption","Idaho","ID",717 +2011-09-01,"Commercial Consumption","Iowa","IA",2104 +2011-09-01,"Commercial Consumption","Tennessee","TN",2239 +2011-09-01,"Commercial Consumption","Indiana","IN",3083 +2011-09-01,"Commercial Consumption","District of Columbia","DC",867 +2011-09-01,"Commercial Consumption","Washington","WA",2166 +2011-09-01,"Commercial Consumption","North Dakota","ND",352 +2011-09-01,"Commercial Consumption","Oklahoma","OK",1523 +2011-09-01,"Commercial Consumption","Maine","ME",255 +2011-09-01,"Commercial Consumption","Delaware","DE",455 +2011-09-01,"Commercial Consumption","Nevada","NV",1654 +2011-09-01,"Commercial Consumption","Utah","UT",1152 +2011-09-01,"Commercial Consumption","Wisconsin","WI",3097 +2011-09-01,"Commercial Consumption","Texas","TX",10291 +2011-09-01,"Commercial Consumption","Vermont","VT",80 +2011-09-01,"Commercial Consumption","Hawaii","HI",159 +2011-09-01,"Commercial Consumption","Alaska","AK",945 +2011-09-01,"Commercial Consumption","Connecticut","CT",2079 +2011-09-01,"Commercial Consumption","Michigan","MI",5896 +2011-09-01,"Commercial Consumption","Louisiana","LA",1570 +2011-09-01,"Commercial Consumption","Illinois","IL",9618 +2011-09-01,"Commercial Consumption","West Virginia","WV",1480 +2011-09-01,"Commercial Consumption","Montana","MT",732 +2011-09-01,"Commercial Consumption","Georgia","GA",2719 +2011-09-01,"Commercial Consumption","Nebraska","NE",1127 +2011-09-01,"Commercial Consumption","Arizona","AZ",1747 +2011-09-01,"Commercial Consumption","Wyoming","WY",373 +2011-09-01,"Commercial Consumption","Missouri","MO",2450 +2011-09-01,"Commercial Consumption","Massachusetts","MA",2955 +2011-09-01,"Commercial Consumption","U.S.","U.S.",141634 +2011-09-01,"Commercial Consumption","Maryland","MD",3692 +2011-09-01,"Commercial Consumption","Florida","FL",3786 +2011-09-01,"Commercial Consumption","Ohio","OH",5465 +2011-09-01,"Commercial Consumption","Arkansas","AR",2299 +2011-09-01,"Commercial Consumption","Mississippi","MS",993 +2011-09-01,"Commercial Consumption","South Carolina","SC",1186 +2011-09-01,"Commercial Consumption","Minnesota","MN",2846 +2011-09-01,"Commercial Consumption","New Mexico","NM",876 +2011-09-01,"Commercial Consumption","Pennsylvania","PA",4764 +2011-09-01,"Commercial Consumption","New Jersey","NJ",9668 +2011-09-01,"Commercial Consumption","New Hampshire","NH",269 +2011-09-01,"Commercial Consumption","Alabama","AL",1221 +2011-09-01,"Commercial Consumption","California","CA",17219 +2011-09-01,"Delivered to Consumers","New Mexico","NM",9599 +2011-09-01,"Delivered to Consumers","Hawaii","HI",231 +2011-09-01,"Delivered to Consumers","Kentucky","KY",10817 +2011-09-01,"Delivered to Consumers","Wisconsin","WI",16907 +2011-09-01,"Delivered to Consumers","Massachusetts","MA",26718 +2011-09-01,"Delivered to Consumers","South Carolina","SC",16902 +2011-09-01,"Delivered to Consumers","Vermont","VT",339 +2011-09-01,"Delivered to Consumers","Oklahoma","OK",41029 +2011-09-01,"Delivered to Consumers","Michigan","MI",29401 +2011-09-01,"Delivered to Consumers","Arkansas","AR",16095 +2011-09-01,"Delivered to Consumers","New Jersey","NJ",34901 +2011-09-01,"Delivered to Consumers","Maine","ME",5258 +2011-09-01,"Delivered to Consumers","Washington","WA",17018 +2011-09-01,"Delivered to Consumers","Indiana","IN",35478 +2011-09-01,"Delivered to Consumers","Illinois","IL",42201 +2011-09-01,"Delivered to Consumers","Arizona","AZ",26412 +2011-09-01,"Delivered to Consumers","Rhode Island","RI",7663 +2011-09-01,"Delivered to Consumers","Kansas","KS",12460 +2011-09-01,"Delivered to Consumers","Idaho","ID",4847 +2011-09-01,"Delivered to Consumers","Ohio","OH",36066 +2011-09-01,"Delivered to Consumers","North Carolina","NC",18096 +2011-09-01,"Delivered to Consumers","Utah","UT",9037 +2011-09-01,"Delivered to Consumers","Delaware","DE",6098 +2011-09-01,"Delivered to Consumers","Wyoming","WY",4047 +2011-09-01,"Delivered to Consumers","West Virginia","WV",4368 +2011-09-01,"Delivered to Consumers","Oregon","OR",14355 +2011-09-01,"Delivered to Consumers","U.S.","U.S.",1500242 +2011-09-01,"Delivered to Consumers","New York","NY",65797 +2011-09-01,"Delivered to Consumers","Maryland","MD",9243 +2011-09-01,"Delivered to Consumers","Tennessee","TN",12637 +2011-09-01,"Delivered to Consumers","Connecticut","CT",16019 +2011-09-01,"Delivered to Consumers","Alabama","AL",45486 +2011-09-01,"Delivered to Consumers","Pennsylvania","PA",50484 +2011-09-01,"Delivered to Consumers","Nebraska","NE",9475 +2011-09-01,"Delivered to Consumers","California","CA",174263 +2011-09-01,"Delivered to Consumers","Texas","TX",270212 +2011-09-01,"Delivered to Consumers","Georgia","GA",34486 +2011-09-01,"Delivered to Consumers","South Dakota","SD",3913 +2011-09-01,"Delivered to Consumers","Alaska","AK",5973 +2011-09-01,"Delivered to Consumers","Colorado","CO",14192 +2011-09-01,"Delivered to Consumers","Montana","MT",3000 +2011-09-01,"Delivered to Consumers","Iowa","IA",17910 +2011-09-01,"Delivered to Consumers","Virginia","VA",23186 +2011-09-01,"Delivered to Consumers","Mississippi","MS",30479 +2011-09-01,"Delivered to Consumers","Missouri","MO",10938 +2011-09-01,"Delivered to Consumers","Nevada","NV",19802 +2011-09-01,"Delivered to Consumers","Louisiana","LA",96940 +2011-09-01,"Delivered to Consumers","New Hampshire","NH",4554 +2011-09-01,"Delivered to Consumers","North Dakota","ND",2922 +2011-09-01,"Delivered to Consumers","Minnesota","MN",18965 +2011-09-01,"Delivered to Consumers","Florida","FL",111766 +2011-09-01,"Delivered to Consumers","District of Columbia","DC",1256 +2011-09-01,"Electric Power Consumption","Virginia","VA",14156 +2011-09-01,"Electric Power Consumption","New Mexico","NM",6052 +2011-09-01,"Electric Power Consumption","South Carolina","SC",9192 +2011-09-01,"Electric Power Consumption","Hawaii","HI",NA +2011-09-01,"Electric Power Consumption","Montana","MT",248 +2011-09-01,"Electric Power Consumption","Connecticut","CT",11012 +2011-09-01,"Electric Power Consumption","Rhode Island","RI",6415 +2011-09-01,"Electric Power Consumption","Michigan","MI",5169 +2011-09-01,"Electric Power Consumption","Massachusetts","MA",16881 +2011-09-01,"Electric Power Consumption","Iowa","IA",588 +2011-09-01,"Electric Power Consumption","West Virginia","WV",423 +2011-09-01,"Electric Power Consumption","Florida","FL",100705 +2011-09-01,"Electric Power Consumption","Colorado","CO",4881 +2011-09-01,"Electric Power Consumption","Arkansas","AR",6548 +2011-09-01,"Electric Power Consumption","New York","NY",37955 +2011-09-01,"Electric Power Consumption","U.S.","U.S.",684198 +2011-09-01,"Electric Power Consumption","South Dakota","SD",61 +2011-09-01,"Electric Power Consumption","North Carolina","NC",7157 +2011-09-01,"Electric Power Consumption","Mississippi","MS",19259 +2011-09-01,"Electric Power Consumption","Ohio","OH",6001 +2011-09-01,"Electric Power Consumption","Washington","WA",6961 +2011-09-01,"Electric Power Consumption","Texas","TX",135600 +2011-09-01,"Electric Power Consumption","Minnesota","MN",1395 +2011-09-01,"Electric Power Consumption","Kansas","KS",1924 +2011-09-01,"Electric Power Consumption","Missouri","MO",1849 +2011-09-01,"Electric Power Consumption","Georgia","GA",16724 +2011-09-01,"Electric Power Consumption","Oklahoma","OK",22727 +2011-09-01,"Electric Power Consumption","Utah","UT",3668 +2011-09-01,"Electric Power Consumption","Illinois","IL",2728 +2011-09-01,"Electric Power Consumption","Wisconsin","WI",1567 +2011-09-01,"Electric Power Consumption","Pennsylvania","PA",27055 +2011-09-01,"Electric Power Consumption","Wyoming","WY",23 +2011-09-01,"Electric Power Consumption","Alabama","AL",31065 +2011-09-01,"Electric Power Consumption","Louisiana","LA",23042 +2011-09-01,"Electric Power Consumption","Oregon","OR",8021 +2011-09-01,"Electric Power Consumption","Nevada","NV",16067 +2011-09-01,"Electric Power Consumption","Tennessee","TN",1174 +2011-09-01,"Electric Power Consumption","Nebraska","NE",242 +2011-09-01,"Electric Power Consumption","Kentucky","KY",854 +2011-09-01,"Electric Power Consumption","New Hampshire","NH",3661 +2011-09-01,"Electric Power Consumption","New Jersey","NJ",16529 +2011-09-01,"Electric Power Consumption","Idaho","ID",1211 +2011-09-01,"Electric Power Consumption","Vermont","VT",5 +2011-09-01,"Electric Power Consumption","Maine","ME",2871 +2011-09-01,"Electric Power Consumption","North Dakota","ND",0 +2011-09-01,"Electric Power Consumption","Maryland","MD",1976 +2011-09-01,"Electric Power Consumption","Indiana","IN",4016 +2011-09-01,"Electric Power Consumption","Delaware","DE",3335 +2011-09-01,"Electric Power Consumption","Arizona","AZ",21994 +2011-09-01,"Electric Power Consumption","California","CA",69651 +2011-09-01,"Electric Power Consumption","Alaska","AK",3465 +2011-09-01,"Industrial Consumption","Maryland","MD",1631 +2011-09-01,"Industrial Consumption","Hawaii","HI",29 +2011-09-01,"Industrial Consumption","Oklahoma","OK",15539 +2011-09-01,"Industrial Consumption","South Carolina","SC",6044 +2011-09-01,"Industrial Consumption","New Jersey","NJ",3768 +2011-09-01,"Industrial Consumption","Florida","FL",6526 +2011-09-01,"Industrial Consumption","North Carolina","NC",7506 +2011-09-01,"Industrial Consumption","Montana","MT",1544 +2011-09-01,"Industrial Consumption","Missouri","MO",4620 +2011-09-01,"Industrial Consumption","Utah","UT",2535 +2011-09-01,"Industrial Consumption","Oregon","OR",4287 +2011-09-01,"Industrial Consumption","Mississippi","MS",9614 +2011-09-01,"Industrial Consumption","California","CA",63562 +2011-09-01,"Industrial Consumption","Nebraska","NE",7325 +2011-09-01,"Industrial Consumption","Idaho","ID",2152 +2011-09-01,"Industrial Consumption","Delaware","DE",2131 +2011-09-01,"Industrial Consumption","North Dakota","ND",2320 +2011-09-01,"Industrial Consumption","Massachusetts","MA",3005 +2011-09-01,"Industrial Consumption","Arkansas","AR",6559 +2011-09-01,"Industrial Consumption","Texas","TX",119154 +2011-09-01,"Industrial Consumption","Kentucky","KY",7773 +2011-09-01,"Industrial Consumption","District of Columbia","DC",0 +2011-09-01,"Industrial Consumption","Washington","WA",5835 +2011-09-01,"Industrial Consumption","South Dakota","SD",3180 +2011-09-01,"Industrial Consumption","U.S.","U.S.",549196 +2011-09-01,"Industrial Consumption","Pennsylvania","PA",14075 +2011-09-01,"Industrial Consumption","Maine","ME",2095 +2011-09-01,"Industrial Consumption","Tennessee","TN",8075 +2011-09-01,"Industrial Consumption","Minnesota","MN",11644 +2011-09-01,"Industrial Consumption","Indiana","IN",25181 +2011-09-01,"Industrial Consumption","Louisiana","LA",71048 +2011-09-01,"Industrial Consumption","Kansas","KS",8515 +2011-09-01,"Industrial Consumption","New York","NY",4777 +2011-09-01,"Industrial Consumption","Virginia","VA",5390 +2011-09-01,"Industrial Consumption","Rhode Island","RI",549 +2011-09-01,"Industrial Consumption","Georgia","GA",11397 +2011-09-01,"Industrial Consumption","Alaska","AK",613 +2011-09-01,"Industrial Consumption","Colorado","CO",4510 +2011-09-01,"Industrial Consumption","Ohio","OH",18336 +2011-09-01,"Industrial Consumption","Arizona","AZ",1464 +2011-09-01,"Industrial Consumption","Nevada","NV",820 +2011-09-01,"Industrial Consumption","Alabama","AL",12332 +2011-09-01,"Industrial Consumption","Iowa","IA",13584 +2011-09-01,"Industrial Consumption","Michigan","MI",10068 +2011-09-01,"Industrial Consumption","New Mexico","NM",1793 +2011-09-01,"Industrial Consumption","West Virginia","WV",2003 +2011-09-01,"Industrial Consumption","Vermont","VT",174 +2011-09-01,"Industrial Consumption","Wyoming","WY",3358 +2011-09-01,"Industrial Consumption","Wisconsin","WI",8925 +2011-09-01,"Industrial Consumption","New Hampshire","NH",471 +2011-09-01,"Industrial Consumption","Connecticut","CT",1854 +2011-09-01,"Industrial Consumption","Illinois","IL",19502 +2011-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",109465 +2011-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",45927 +2011-09-01,"Residential Consumption","Louisiana","LA",1280 +2011-09-01,"Residential Consumption","Virginia","VA",1286 +2011-09-01,"Residential Consumption","Maryland","MD",1925 +2011-09-01,"Residential Consumption","Oklahoma","OK",1219 +2011-09-01,"Residential Consumption","New York","NY",9447 +2011-09-01,"Residential Consumption","Oregon","OR",1029 +2011-09-01,"Residential Consumption","Michigan","MI",8240 +2011-09-01,"Residential Consumption","Minnesota","MN",3079 +2011-09-01,"Residential Consumption","Indiana","IN",3197 +2011-09-01,"Residential Consumption","Florida","FL",743 +2011-09-01,"Residential Consumption","Colorado","CO",3167 +2011-09-01,"Residential Consumption","Kansas","KS",1118 +2011-09-01,"Residential Consumption","New Jersey","NJ",4920 +2011-09-01,"Residential Consumption","Delaware","DE",176 +2011-09-01,"Residential Consumption","U.S.","U.S.",122751 +2011-09-01,"Residential Consumption","Rhode Island","RI",405 +2011-09-01,"Residential Consumption","Ohio","OH",6258 +2011-09-01,"Residential Consumption","Utah","UT",1658 +2011-09-01,"Residential Consumption","Maine","ME",37 +2011-09-01,"Residential Consumption","Washington","WA",2014 +2011-09-01,"Residential Consumption","Wyoming","WY",292 +2011-09-01,"Residential Consumption","North Carolina","NC",1048 +2011-09-01,"Residential Consumption","Iowa","IA",1634 +2011-09-01,"Residential Consumption","Connecticut","CT",1072 +2011-09-01,"Residential Consumption","Pennsylvania","PA",4565 +2011-09-01,"Residential Consumption","New Mexico","NM",857 +2011-09-01,"Residential Consumption","North Dakota","ND",249 +2011-09-01,"Residential Consumption","Massachusetts","MA",3815 +2011-09-01,"Residential Consumption","South Carolina","SC",480 +2011-09-01,"Residential Consumption","Mississippi","MS",612 +2011-09-01,"Residential Consumption","Vermont","VT",80 +2011-09-01,"Residential Consumption","Tennessee","TN",1148 +2011-09-01,"Residential Consumption","Nebraska","NE",779 +2011-09-01,"Residential Consumption","South Dakota","SD",287 +2011-09-01,"Residential Consumption","District of Columbia","DC",222 +2011-09-01,"Residential Consumption","Idaho","ID",755 +2011-09-01,"Residential Consumption","Missouri","MO",2018 +2011-09-01,"Residential Consumption","Arizona","AZ",1066 +2011-09-01,"Residential Consumption","Alabama","AL",852 +2011-09-01,"Residential Consumption","Wisconsin","WI",3313 +2011-09-01,"Residential Consumption","Georgia","GA",3556 +2011-09-01,"Residential Consumption","New Hampshire","NH",150 +2011-09-01,"Residential Consumption","Montana","MT",476 +2011-09-01,"Residential Consumption","California","CA",22626 +2011-09-01,"Residential Consumption","Alaska","AK",948 +2011-09-01,"Residential Consumption","West Virginia","WV",462 +2011-09-01,"Residential Consumption","Illinois","IL",10332 +2011-09-01,"Residential Consumption","Texas","TX",4986 +2011-09-01,"Residential Consumption","Hawaii","HI",42 +2011-09-01,"Residential Consumption","Nevada","NV",1212 +2011-09-01,"Residential Consumption","Arkansas","AR",687 +2011-09-01,"Residential Consumption","Kentucky","KY",931 +2011-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-09-01,"Vehicle Fuel Consumption","Washington","WA",42 +2011-09-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2011-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",72 +2011-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-09-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-09-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2011-09-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-09-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2011-09-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-09-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2011-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-09-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2464 +2011-09-01,"Vehicle Fuel Consumption","Utah","UT",24 +2011-09-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2011-09-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-09-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2011-09-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-09-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-09-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2011-09-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2011-09-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-09-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2011-09-01,"Vehicle Fuel Consumption","Texas","TX",181 +2011-09-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-09-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2011-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-09-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-09-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2011-09-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2011-09-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-09-01,"Vehicle Fuel Consumption","New York","NY",318 +2011-09-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2011-09-01,"Vehicle Fuel Consumption","California","CA",1205 +2011-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-09-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-09-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2011-09-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-09-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-09-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-09-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-09-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-10-01,"Commercial Consumption","Colorado","CO",3407 +2011-10-01,"Commercial Consumption","Utah","UT",1421 +2011-10-01,"Commercial Consumption","New Mexico","NM",1039 +2011-10-01,"Commercial Consumption","New Jersey","NJ",15043 +2011-10-01,"Commercial Consumption","Maryland","MD",4128 +2011-10-01,"Commercial Consumption","Iowa","IA",3524 +2011-10-01,"Commercial Consumption","Alaska","AK",1472 +2011-10-01,"Commercial Consumption","Connecticut","CT",2791 +2011-10-01,"Commercial Consumption","Virginia","VA",4360 +2011-10-01,"Commercial Consumption","Pennsylvania","PA",9889 +2011-10-01,"Commercial Consumption","Alabama","AL",2025 +2011-10-01,"Commercial Consumption","Louisiana","LA",1925 +2011-10-01,"Commercial Consumption","Wyoming","WY",807 +2011-10-01,"Commercial Consumption","Oregon","OR",1861 +2011-10-01,"Commercial Consumption","Kentucky","KY",2269 +2011-10-01,"Commercial Consumption","Florida","FL",4407 +2011-10-01,"Commercial Consumption","Idaho","ID",1066 +2011-10-01,"Commercial Consumption","Indiana","IN",4819 +2011-10-01,"Commercial Consumption","U.S.","U.S.",206142 +2011-10-01,"Commercial Consumption","Texas","TX",11416 +2011-10-01,"Commercial Consumption","Ohio","OH",8965 +2011-10-01,"Commercial Consumption","Massachusetts","MA",4899 +2011-10-01,"Commercial Consumption","Kansas","KS",1478 +2011-10-01,"Commercial Consumption","Vermont","VT",151 +2011-10-01,"Commercial Consumption","Nebraska","NE",1665 +2011-10-01,"Commercial Consumption","Arizona","AZ",2125 +2011-10-01,"Commercial Consumption","Michigan","MI",9362 +2011-10-01,"Commercial Consumption","District of Columbia","DC",1165 +2011-10-01,"Commercial Consumption","West Virginia","WV",1779 +2011-10-01,"Commercial Consumption","Washington","WA",4200 +2011-10-01,"Commercial Consumption","South Carolina","SC",1801 +2011-10-01,"Commercial Consumption","Oklahoma","OK",2256 +2011-10-01,"Commercial Consumption","Wisconsin","WI",5125 +2011-10-01,"Commercial Consumption","New Hampshire","NH",424 +2011-10-01,"Commercial Consumption","Maine","ME",435 +2011-10-01,"Commercial Consumption","Georgia","GA",3905 +2011-10-01,"Commercial Consumption","Rhode Island","RI",518 +2011-10-01,"Commercial Consumption","Arkansas","AR",2617 +2011-10-01,"Commercial Consumption","Mississippi","MS",1366 +2011-10-01,"Commercial Consumption","North Dakota","ND",600 +2011-10-01,"Commercial Consumption","North Carolina","NC",3931 +2011-10-01,"Commercial Consumption","Montana","MT",1163 +2011-10-01,"Commercial Consumption","Hawaii","HI",138 +2011-10-01,"Commercial Consumption","New York","NY",19619 +2011-10-01,"Commercial Consumption","Minnesota","MN",5181 +2011-10-01,"Commercial Consumption","Missouri","MO",3839 +2011-10-01,"Commercial Consumption","South Dakota","SD",650 +2011-10-01,"Commercial Consumption","California","CA",16840 +2011-10-01,"Commercial Consumption","Delaware","DE",719 +2011-10-01,"Commercial Consumption","Tennessee","TN",3725 +2011-10-01,"Commercial Consumption","Nevada","NV",2019 +2011-10-01,"Commercial Consumption","Illinois","IL",15813 +2011-10-01,"Delivered to Consumers","Indiana","IN",42828 +2011-10-01,"Delivered to Consumers","Delaware","DE",6907 +2011-10-01,"Delivered to Consumers","West Virginia","WV",5286 +2011-10-01,"Delivered to Consumers","Kentucky","KY",14066 +2011-10-01,"Delivered to Consumers","Mississippi","MS",29270 +2011-10-01,"Delivered to Consumers","Missouri","MO",14300 +2011-10-01,"Delivered to Consumers","South Carolina","SC",17810 +2011-10-01,"Delivered to Consumers","Nevada","NV",18483 +2011-10-01,"Delivered to Consumers","U.S.","U.S.",1579772 +2011-10-01,"Delivered to Consumers","Hawaii","HI",201 +2011-10-01,"Delivered to Consumers","Arkansas","AR",17836 +2011-10-01,"Delivered to Consumers","Wisconsin","WI",25197 +2011-10-01,"Delivered to Consumers","Colorado","CO",22305 +2011-10-01,"Delivered to Consumers","California","CA",160500 +2011-10-01,"Delivered to Consumers","Maine","ME",5453 +2011-10-01,"Delivered to Consumers","Louisiana","LA",95819 +2011-10-01,"Delivered to Consumers","Florida","FL",94736 +2011-10-01,"Delivered to Consumers","Utah","UT",9505 +2011-10-01,"Delivered to Consumers","Wyoming","WY",5753 +2011-10-01,"Delivered to Consumers","Kansas","KS",13162 +2011-10-01,"Delivered to Consumers","Massachusetts","MA",33368 +2011-10-01,"Delivered to Consumers","New Jersey","NJ",44348 +2011-10-01,"Delivered to Consumers","Arizona","AZ",22244 +2011-10-01,"Delivered to Consumers","Washington","WA",18679 +2011-10-01,"Delivered to Consumers","North Dakota","ND",3770 +2011-10-01,"Delivered to Consumers","District of Columbia","DC",2132 +2011-10-01,"Delivered to Consumers","Vermont","VT",547 +2011-10-01,"Delivered to Consumers","New York","NY",79903 +2011-10-01,"Delivered to Consumers","Alabama","AL",43567 +2011-10-01,"Delivered to Consumers","New Hampshire","NH",4158 +2011-10-01,"Delivered to Consumers","Minnesota","MN",24491 +2011-10-01,"Delivered to Consumers","Maryland","MD",10637 +2011-10-01,"Delivered to Consumers","Nebraska","NE",10941 +2011-10-01,"Delivered to Consumers","Georgia","GA",41205 +2011-10-01,"Delivered to Consumers","New Mexico","NM",8941 +2011-10-01,"Delivered to Consumers","Montana","MT",4352 +2011-10-01,"Delivered to Consumers","Oklahoma","OK",35768 +2011-10-01,"Delivered to Consumers","Iowa","IA",20451 +2011-10-01,"Delivered to Consumers","Connecticut","CT",16324 +2011-10-01,"Delivered to Consumers","South Dakota","SD",4642 +2011-10-01,"Delivered to Consumers","Rhode Island","RI",7374 +2011-10-01,"Delivered to Consumers","Alaska","AK",7018 +2011-10-01,"Delivered to Consumers","Tennessee","TN",16955 +2011-10-01,"Delivered to Consumers","Pennsylvania","PA",59964 +2011-10-01,"Delivered to Consumers","North Carolina","NC",21311 +2011-10-01,"Delivered to Consumers","Texas","TX",234893 +2011-10-01,"Delivered to Consumers","Oregon","OR",15674 +2011-10-01,"Delivered to Consumers","Illinois","IL",58375 +2011-10-01,"Delivered to Consumers","Idaho","ID",5471 +2011-10-01,"Delivered to Consumers","Ohio","OH",51142 +2011-10-01,"Delivered to Consumers","Michigan","MI",45549 +2011-10-01,"Delivered to Consumers","Virginia","VA",26164 +2011-10-01,"Electric Power Consumption","Virginia","VA",12366 +2011-10-01,"Electric Power Consumption","New Mexico","NM",5030 +2011-10-01,"Electric Power Consumption","Texas","TX",99575 +2011-10-01,"Electric Power Consumption","Oklahoma","OK",15817 +2011-10-01,"Electric Power Consumption","Iowa","IA",216 +2011-10-01,"Electric Power Consumption","North Carolina","NC",6183 +2011-10-01,"Electric Power Consumption","Maine","ME",2676 +2011-10-01,"Electric Power Consumption","New Hampshire","NH",2835 +2011-10-01,"Electric Power Consumption","Rhode Island","RI",5425 +2011-10-01,"Electric Power Consumption","Utah","UT",3208 +2011-10-01,"Electric Power Consumption","Wisconsin","WI",3531 +2011-10-01,"Electric Power Consumption","Vermont","VT",4 +2011-10-01,"Electric Power Consumption","Tennessee","TN",1896 +2011-10-01,"Electric Power Consumption","U.S.","U.S.",574932 +2011-10-01,"Electric Power Consumption","Minnesota","MN",1459 +2011-10-01,"Electric Power Consumption","Pennsylvania","PA",22797 +2011-10-01,"Electric Power Consumption","Nevada","NV",13829 +2011-10-01,"Electric Power Consumption","Mississippi","MS",18204 +2011-10-01,"Electric Power Consumption","Hawaii","HI",NA +2011-10-01,"Electric Power Consumption","Ohio","OH",8347 +2011-10-01,"Electric Power Consumption","Connecticut","CT",9731 +2011-10-01,"Electric Power Consumption","Florida","FL",82404 +2011-10-01,"Electric Power Consumption","Idaho","ID",533 +2011-10-01,"Electric Power Consumption","Arkansas","AR",6832 +2011-10-01,"Electric Power Consumption","South Carolina","SC",8435 +2011-10-01,"Electric Power Consumption","New York","NY",35001 +2011-10-01,"Electric Power Consumption","Oregon","OR",6517 +2011-10-01,"Electric Power Consumption","South Dakota","SD",115 +2011-10-01,"Electric Power Consumption","Arizona","AZ",16841 +2011-10-01,"Electric Power Consumption","California","CA",54481 +2011-10-01,"Electric Power Consumption","Louisiana","LA",19443 +2011-10-01,"Electric Power Consumption","Massachusetts","MA",17408 +2011-10-01,"Electric Power Consumption","West Virginia","WV",11 +2011-10-01,"Electric Power Consumption","Wyoming","WY",31 +2011-10-01,"Electric Power Consumption","Nebraska","NE",76 +2011-10-01,"Electric Power Consumption","North Dakota","ND",0 +2011-10-01,"Electric Power Consumption","Maryland","MD",464 +2011-10-01,"Electric Power Consumption","New Jersey","NJ",16432 +2011-10-01,"Electric Power Consumption","Colorado","CO",5766 +2011-10-01,"Electric Power Consumption","Kansas","KS",1066 +2011-10-01,"Electric Power Consumption","Georgia","GA",18326 +2011-10-01,"Electric Power Consumption","Michigan","MI",6708 +2011-10-01,"Electric Power Consumption","Montana","MT",146 +2011-10-01,"Electric Power Consumption","Indiana","IN",4127 +2011-10-01,"Electric Power Consumption","Washington","WA",2812 +2011-10-01,"Electric Power Consumption","Illinois","IL",1592 +2011-10-01,"Electric Power Consumption","Missouri","MO",1685 +2011-10-01,"Electric Power Consumption","Kentucky","KY",793 +2011-10-01,"Electric Power Consumption","Delaware","DE",3388 +2011-10-01,"Electric Power Consumption","Alabama","AL",26923 +2011-10-01,"Electric Power Consumption","Alaska","AK",3367 +2011-10-01,"Industrial Consumption","Maryland","MD",1895 +2011-10-01,"Industrial Consumption","Massachusetts","MA",3778 +2011-10-01,"Industrial Consumption","Utah","UT",2577 +2011-10-01,"Industrial Consumption","Alabama","AL",13073 +2011-10-01,"Industrial Consumption","Vermont","VT",240 +2011-10-01,"Industrial Consumption","Wyoming","WY",4170 +2011-10-01,"Industrial Consumption","Wisconsin","WI",9901 +2011-10-01,"Industrial Consumption","New Jersey","NJ",4071 +2011-10-01,"Industrial Consumption","New Hampshire","NH",628 +2011-10-01,"Industrial Consumption","Delaware","DE",2364 +2011-10-01,"Industrial Consumption","Kansas","KS",8408 +2011-10-01,"Industrial Consumption","Maine","ME",2281 +2011-10-01,"Industrial Consumption","Illinois","IL",20729 +2011-10-01,"Industrial Consumption","Montana","MT",1648 +2011-10-01,"Industrial Consumption","South Dakota","SD",3222 +2011-10-01,"Industrial Consumption","Ohio","OH",20935 +2011-10-01,"Industrial Consumption","New Mexico","NM",1664 +2011-10-01,"Industrial Consumption","Mississippi","MS",8499 +2011-10-01,"Industrial Consumption","West Virginia","WV",2122 +2011-10-01,"Industrial Consumption","Tennessee","TN",8700 +2011-10-01,"Industrial Consumption","North Carolina","NC",8383 +2011-10-01,"Industrial Consumption","New York","NY",5705 +2011-10-01,"Industrial Consumption","Texas","TX",116819 +2011-10-01,"Industrial Consumption","Kentucky","KY",8634 +2011-10-01,"Industrial Consumption","Louisiana","LA",72758 +2011-10-01,"Industrial Consumption","Arizona","AZ",1629 +2011-10-01,"Industrial Consumption","Pennsylvania","PA",15946 +2011-10-01,"Industrial Consumption","South Carolina","SC",6482 +2011-10-01,"Industrial Consumption","Nebraska","NE",7820 +2011-10-01,"Industrial Consumption","Michigan","MI",11169 +2011-10-01,"Industrial Consumption","Hawaii","HI",27 +2011-10-01,"Industrial Consumption","Oklahoma","OK",15582 +2011-10-01,"Industrial Consumption","U.S.","U.S.",570646 +2011-10-01,"Industrial Consumption","Nevada","NV",969 +2011-10-01,"Industrial Consumption","Florida","FL",6986 +2011-10-01,"Industrial Consumption","Rhode Island","RI",584 +2011-10-01,"Industrial Consumption","Alaska","AK",597 +2011-10-01,"Industrial Consumption","North Dakota","ND",2650 +2011-10-01,"Industrial Consumption","Colorado","CO",5864 +2011-10-01,"Industrial Consumption","Oregon","OR",4745 +2011-10-01,"Industrial Consumption","California","CA",63176 +2011-10-01,"Industrial Consumption","Idaho","ID",2385 +2011-10-01,"Industrial Consumption","Indiana","IN",26878 +2011-10-01,"Industrial Consumption","District of Columbia","DC",0 +2011-10-01,"Industrial Consumption","Missouri","MO",4794 +2011-10-01,"Industrial Consumption","Washington","WA",6214 +2011-10-01,"Industrial Consumption","Arkansas","AR",7442 +2011-10-01,"Industrial Consumption","Virginia","VA",5272 +2011-10-01,"Industrial Consumption","Minnesota","MN",12047 +2011-10-01,"Industrial Consumption","Iowa","IA",13993 +2011-10-01,"Industrial Consumption","Connecticut","CT",1877 +2011-10-01,"Industrial Consumption","Georgia","GA",12317 +2011-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",116320 +2011-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",48362 +2011-10-01,"Residential Consumption","Iowa","IA",2719 +2011-10-01,"Residential Consumption","District of Columbia","DC",809 +2011-10-01,"Residential Consumption","Pennsylvania","PA",11307 +2011-10-01,"Residential Consumption","North Dakota","ND",520 +2011-10-01,"Residential Consumption","Alaska","AK",1581 +2011-10-01,"Residential Consumption","Ohio","OH",12887 +2011-10-01,"Residential Consumption","Wisconsin","WI",6635 +2011-10-01,"Residential Consumption","Vermont","VT",151 +2011-10-01,"Residential Consumption","Virginia","VA",4143 +2011-10-01,"Residential Consumption","New Mexico","NM",1187 +2011-10-01,"Residential Consumption","Massachusetts","MA",7218 +2011-10-01,"Residential Consumption","South Carolina","SC",1091 +2011-10-01,"Residential Consumption","Tennessee","TN",2633 +2011-10-01,"Residential Consumption","Nevada","NV",1616 +2011-10-01,"Residential Consumption","Arkansas","AR",943 +2011-10-01,"Residential Consumption","Kentucky","KY",2370 +2011-10-01,"Residential Consumption","New York","NY",19250 +2011-10-01,"Residential Consumption","Maryland","MD",4130 +2011-10-01,"Residential Consumption","Georgia","GA",6564 +2011-10-01,"Residential Consumption","Indiana","IN",7002 +2011-10-01,"Residential Consumption","Kansas","KS",2209 +2011-10-01,"Residential Consumption","Texas","TX",6897 +2011-10-01,"Residential Consumption","Louisiana","LA",1692 +2011-10-01,"Residential Consumption","Connecticut","CT",1923 +2011-10-01,"Residential Consumption","Idaho","ID",1475 +2011-10-01,"Residential Consumption","Colorado","CO",7243 +2011-10-01,"Residential Consumption","Oklahoma","OK",2092 +2011-10-01,"Residential Consumption","Missouri","MO",3981 +2011-10-01,"Residential Consumption","Oregon","OR",2539 +2011-10-01,"Residential Consumption","Nebraska","NE",1376 +2011-10-01,"Residential Consumption","Washington","WA",5410 +2011-10-01,"Residential Consumption","Alabama","AL",1531 +2011-10-01,"Residential Consumption","Wyoming","WY",744 +2011-10-01,"Residential Consumption","Illinois","IL",20218 +2011-10-01,"Residential Consumption","Hawaii","HI",36 +2011-10-01,"Residential Consumption","South Dakota","SD",654 +2011-10-01,"Residential Consumption","Maine","ME",62 +2011-10-01,"Residential Consumption","New Jersey","NJ",8785 +2011-10-01,"Residential Consumption","Montana","MT",1396 +2011-10-01,"Residential Consumption","Arizona","AZ",1504 +2011-10-01,"Residential Consumption","West Virginia","WV",1374 +2011-10-01,"Residential Consumption","Rhode Island","RI",840 +2011-10-01,"Residential Consumption","North Carolina","NC",2812 +2011-10-01,"Residential Consumption","Mississippi","MS",1202 +2011-10-01,"Residential Consumption","Utah","UT",2275 +2011-10-01,"Residential Consumption","Michigan","MI",18283 +2011-10-01,"Residential Consumption","Minnesota","MN",5803 +2011-10-01,"Residential Consumption","Florida","FL",932 +2011-10-01,"Residential Consumption","New Hampshire","NH",267 +2011-10-01,"Residential Consumption","Delaware","DE",435 +2011-10-01,"Residential Consumption","California","CA",24758 +2011-10-01,"Residential Consumption","U.S.","U.S.",225506 +2011-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2011-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-10-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2011-10-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-10-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-10-01,"Vehicle Fuel Consumption","Washington","WA",43 +2011-10-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",65 +2011-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-10-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-10-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-10-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-10-01,"Vehicle Fuel Consumption","Utah","UT",25 +2011-10-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2011-10-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-10-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-10-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2011-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2011-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-10-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2011-10-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-10-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2011-10-01,"Vehicle Fuel Consumption","New York","NY",328 +2011-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2011-10-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2011-10-01,"Vehicle Fuel Consumption","Texas","TX",187 +2011-10-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-10-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-10-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-10-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2011-10-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2011-10-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-10-01,"Vehicle Fuel Consumption","California","CA",1245 +2011-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-10-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-10-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-10-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2011-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-10-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-10-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-10-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-10-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-10-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-10-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2011-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2546 +2011-11-01,"Commercial Consumption","South Carolina","SC",1922 +2011-11-01,"Commercial Consumption","Utah","UT",4464 +2011-11-01,"Commercial Consumption","Pennsylvania","PA",12667 +2011-11-01,"Commercial Consumption","Idaho","ID",1748 +2011-11-01,"Commercial Consumption","Delaware","DE",976 +2011-11-01,"Commercial Consumption","Tennessee","TN",4764 +2011-11-01,"Commercial Consumption","West Virginia","WV",2058 +2011-11-01,"Commercial Consumption","Minnesota","MN",8776 +2011-11-01,"Commercial Consumption","Kentucky","KY",2865 +2011-11-01,"Commercial Consumption","Connecticut","CT",3752 +2011-11-01,"Commercial Consumption","Arkansas","AR",3016 +2011-11-01,"Commercial Consumption","Louisiana","LA",2284 +2011-11-01,"Commercial Consumption","Illinois","IL",21756 +2011-11-01,"Commercial Consumption","Oklahoma","OK",3767 +2011-11-01,"Commercial Consumption","Virginia","VA",6836 +2011-11-01,"Commercial Consumption","Massachusetts","MA",6207 +2011-11-01,"Commercial Consumption","Wisconsin","WI",8358 +2011-11-01,"Commercial Consumption","Florida","FL",4893 +2011-11-01,"Commercial Consumption","Hawaii","HI",138 +2011-11-01,"Commercial Consumption","California","CA",22753 +2011-11-01,"Commercial Consumption","Colorado","CO",6111 +2011-11-01,"Commercial Consumption","South Dakota","SD",1125 +2011-11-01,"Commercial Consumption","Vermont","VT",203 +2011-11-01,"Commercial Consumption","Rhode Island","RI",927 +2011-11-01,"Commercial Consumption","Nevada","NV",2838 +2011-11-01,"Commercial Consumption","Missouri","MO",5794 +2011-11-01,"Commercial Consumption","Ohio","OH",13808 +2011-11-01,"Commercial Consumption","Alaska","AK",2502 +2011-11-01,"Commercial Consumption","District of Columbia","DC",1428 +2011-11-01,"Commercial Consumption","Wyoming","WY",1201 +2011-11-01,"Commercial Consumption","New Hampshire","NH",718 +2011-11-01,"Commercial Consumption","Montana","MT",2383 +2011-11-01,"Commercial Consumption","U.S.","U.S.",286449 +2011-11-01,"Commercial Consumption","Maryland","MD",5683 +2011-11-01,"Commercial Consumption","Indiana","IN",7137 +2011-11-01,"Commercial Consumption","Washington","WA",6197 +2011-11-01,"Commercial Consumption","North Dakota","ND",1125 +2011-11-01,"Commercial Consumption","New Jersey","NJ",17458 +2011-11-01,"Commercial Consumption","Maine","ME",571 +2011-11-01,"Commercial Consumption","Kansas","KS",3073 +2011-11-01,"Commercial Consumption","Alabama","AL",2540 +2011-11-01,"Commercial Consumption","New York","NY",23187 +2011-11-01,"Commercial Consumption","Nebraska","NE",2814 +2011-11-01,"Commercial Consumption","Mississippi","MS",1435 +2011-11-01,"Commercial Consumption","Arizona","AZ",2848 +2011-11-01,"Commercial Consumption","North Carolina","NC",4446 +2011-11-01,"Commercial Consumption","New Mexico","NM",1779 +2011-11-01,"Commercial Consumption","Oregon","OR",3287 +2011-11-01,"Commercial Consumption","Texas","TX",14975 +2011-11-01,"Commercial Consumption","Georgia","GA",5221 +2011-11-01,"Commercial Consumption","Iowa","IA",5236 +2011-11-01,"Commercial Consumption","Michigan","MI",14399 +2011-11-01,"Delivered to Consumers","Maryland","MD",14996 +2011-11-01,"Delivered to Consumers","Alaska","AK",9543 +2011-11-01,"Delivered to Consumers","Pennsylvania","PA",72041 +2011-11-01,"Delivered to Consumers","Mississippi","MS",29813 +2011-11-01,"Delivered to Consumers","California","CA",186403 +2011-11-01,"Delivered to Consumers","District of Columbia","DC",2642 +2011-11-01,"Delivered to Consumers","Delaware","DE",8310 +2011-11-01,"Delivered to Consumers","Oklahoma","OK",37192 +2011-11-01,"Delivered to Consumers","Wisconsin","WI",35686 +2011-11-01,"Delivered to Consumers","Louisiana","LA",99053 +2011-11-01,"Delivered to Consumers","Georgia","GA",41251 +2011-11-01,"Delivered to Consumers","North Dakota","ND",4932 +2011-11-01,"Delivered to Consumers","Hawaii","HI",205 +2011-11-01,"Delivered to Consumers","Texas","TX",240190 +2011-11-01,"Delivered to Consumers","Arizona","AZ",19475 +2011-11-01,"Delivered to Consumers","Minnesota","MN",36280 +2011-11-01,"Delivered to Consumers","Utah","UT",18781 +2011-11-01,"Delivered to Consumers","Indiana","IN",54755 +2011-11-01,"Delivered to Consumers","Massachusetts","MA",36860 +2011-11-01,"Delivered to Consumers","Wyoming","WY",6917 +2011-11-01,"Delivered to Consumers","South Dakota","SD",5942 +2011-11-01,"Delivered to Consumers","Kansas","KS",19113 +2011-11-01,"Delivered to Consumers","Ohio","OH",67604 +2011-11-01,"Delivered to Consumers","Michigan","MI",65163 +2011-11-01,"Delivered to Consumers","Kentucky","KY",16856 +2011-11-01,"Delivered to Consumers","Arkansas","AR",18225 +2011-11-01,"Delivered to Consumers","Nebraska","NE",14073 +2011-11-01,"Delivered to Consumers","Washington","WA",29977 +2011-11-01,"Delivered to Consumers","Montana","MT",7584 +2011-11-01,"Delivered to Consumers","Idaho","ID",8920 +2011-11-01,"Delivered to Consumers","North Carolina","NC",27931 +2011-11-01,"Delivered to Consumers","Colorado","CO",35724 +2011-11-01,"Delivered to Consumers","Oregon","OR",23101 +2011-11-01,"Delivered to Consumers","West Virginia","WV",6602 +2011-11-01,"Delivered to Consumers","Illinois","IL",85496 +2011-11-01,"Delivered to Consumers","Rhode Island","RI",8891 +2011-11-01,"Delivered to Consumers","Tennessee","TN",22029 +2011-11-01,"Delivered to Consumers","Connecticut","CT",18930 +2011-11-01,"Delivered to Consumers","Alabama","AL",50994 +2011-11-01,"Delivered to Consumers","New Jersey","NJ",55605 +2011-11-01,"Delivered to Consumers","New Hampshire","NH",6366 +2011-11-01,"Delivered to Consumers","Florida","FL",85584 +2011-11-01,"Delivered to Consumers","U.S.","U.S.",1860159 +2011-11-01,"Delivered to Consumers","New Mexico","NM",11509 +2011-11-01,"Delivered to Consumers","Vermont","VT",692 +2011-11-01,"Delivered to Consumers","New York","NY",92900 +2011-11-01,"Delivered to Consumers","Iowa","IA",26192 +2011-11-01,"Delivered to Consumers","Virginia","VA",27977 +2011-11-01,"Delivered to Consumers","Missouri","MO",21835 +2011-11-01,"Delivered to Consumers","South Carolina","SC",19721 +2011-11-01,"Delivered to Consumers","Nevada","NV",17684 +2011-11-01,"Delivered to Consumers","Maine","ME",5614 +2011-11-01,"Electric Power Consumption","New Mexico","NM",5184 +2011-11-01,"Electric Power Consumption","New Jersey","NJ",16504 +2011-11-01,"Electric Power Consumption","South Dakota","SD",5 +2011-11-01,"Electric Power Consumption","Maine","ME",2535 +2011-11-01,"Electric Power Consumption","Kentucky","KY",657 +2011-11-01,"Electric Power Consumption","Indiana","IN",6926 +2011-11-01,"Electric Power Consumption","Louisiana","LA",18709 +2011-11-01,"Electric Power Consumption","Rhode Island","RI",5935 +2011-11-01,"Electric Power Consumption","Oregon","OR",9240 +2011-11-01,"Electric Power Consumption","Tennessee","TN",1524 +2011-11-01,"Electric Power Consumption","Alaska","AK",3579 +2011-11-01,"Electric Power Consumption","Idaho","ID",1426 +2011-11-01,"Electric Power Consumption","Arkansas","AR",5511 +2011-11-01,"Electric Power Consumption","Nevada","NV",10010 +2011-11-01,"Electric Power Consumption","Iowa","IA",189 +2011-11-01,"Electric Power Consumption","U.S.","U.S.",542546 +2011-11-01,"Electric Power Consumption","Washington","WA",6117 +2011-11-01,"Electric Power Consumption","New York","NY",30698 +2011-11-01,"Electric Power Consumption","Oklahoma","OK",12373 +2011-11-01,"Electric Power Consumption","West Virginia","WV",27 +2011-11-01,"Electric Power Consumption","Pennsylvania","PA",24307 +2011-11-01,"Electric Power Consumption","Nebraska","NE",61 +2011-11-01,"Electric Power Consumption","Missouri","MO",1139 +2011-11-01,"Electric Power Consumption","Georgia","GA",12860 +2011-11-01,"Electric Power Consumption","California","CA",53508 +2011-11-01,"Electric Power Consumption","Colorado","CO",7272 +2011-11-01,"Electric Power Consumption","Hawaii","HI",NA +2011-11-01,"Electric Power Consumption","Massachusetts","MA",13664 +2011-11-01,"Electric Power Consumption","Wisconsin","WI",3966 +2011-11-01,"Electric Power Consumption","North Carolina","NC",7969 +2011-11-01,"Electric Power Consumption","Mississippi","MS",17740 +2011-11-01,"Electric Power Consumption","Montana","MT",874 +2011-11-01,"Electric Power Consumption","Connecticut","CT",9586 +2011-11-01,"Electric Power Consumption","Arizona","AZ",11627 +2011-11-01,"Electric Power Consumption","Alabama","AL",31662 +2011-11-01,"Electric Power Consumption","Texas","TX",89936 +2011-11-01,"Electric Power Consumption","Minnesota","MN",853 +2011-11-01,"Electric Power Consumption","Illinois","IL",1281 +2011-11-01,"Electric Power Consumption","Michigan","MI",8473 +2011-11-01,"Electric Power Consumption","Kansas","KS",829 +2011-11-01,"Electric Power Consumption","Vermont","VT",2 +2011-11-01,"Electric Power Consumption","Ohio","OH",6794 +2011-11-01,"Electric Power Consumption","New Hampshire","NH",4358 +2011-11-01,"Electric Power Consumption","North Dakota","ND",NA +2011-11-01,"Electric Power Consumption","Florida","FL",72272 +2011-11-01,"Electric Power Consumption","Virginia","VA",8638 +2011-11-01,"Electric Power Consumption","South Carolina","SC",8170 +2011-11-01,"Electric Power Consumption","Utah","UT",3125 +2011-11-01,"Electric Power Consumption","Wyoming","WY",40 +2011-11-01,"Electric Power Consumption","Maryland","MD",280 +2011-11-01,"Electric Power Consumption","Delaware","DE",4038 +2011-11-01,"Industrial Consumption","Montana","MT",1779 +2011-11-01,"Industrial Consumption","Pennsylvania","PA",16674 +2011-11-01,"Industrial Consumption","Georgia","GA",11977 +2011-11-01,"Industrial Consumption","Louisiana","LA",75113 +2011-11-01,"Industrial Consumption","Oregon","OR",4918 +2011-11-01,"Industrial Consumption","Nevada","NV",1003 +2011-11-01,"Industrial Consumption","California","CA",59392 +2011-11-01,"Industrial Consumption","Tennessee","TN",9332 +2011-11-01,"Industrial Consumption","North Dakota","ND",2670 +2011-11-01,"Industrial Consumption","Maryland","MD",2085 +2011-11-01,"Industrial Consumption","Massachusetts","MA",4922 +2011-11-01,"Industrial Consumption","Colorado","CO",7287 +2011-11-01,"Industrial Consumption","Kansas","KS",9150 +2011-11-01,"Industrial Consumption","Vermont","VT",233 +2011-11-01,"Industrial Consumption","Wyoming","WY",4159 +2011-11-01,"Industrial Consumption","New Hampshire","NH",727 +2011-11-01,"Industrial Consumption","Michigan","MI",12554 +2011-11-01,"Industrial Consumption","North Carolina","NC",8531 +2011-11-01,"Industrial Consumption","Ohio","OH",22779 +2011-11-01,"Industrial Consumption","Arizona","AZ",2021 +2011-11-01,"Industrial Consumption","Arkansas","AR",7448 +2011-11-01,"Industrial Consumption","South Carolina","SC",6755 +2011-11-01,"Industrial Consumption","Virginia","VA",5359 +2011-11-01,"Industrial Consumption","Minnesota","MN",13810 +2011-11-01,"Industrial Consumption","Delaware","DE",2434 +2011-11-01,"Industrial Consumption","Hawaii","HI",31 +2011-11-01,"Industrial Consumption","Washington","WA",6906 +2011-11-01,"Industrial Consumption","South Dakota","SD",3480 +2011-11-01,"Industrial Consumption","U.S.","U.S.",594199 +2011-11-01,"Industrial Consumption","New York","NY",6249 +2011-11-01,"Industrial Consumption","Maine","ME",2393 +2011-11-01,"Industrial Consumption","West Virginia","WV",2154 +2011-11-01,"Industrial Consumption","Wisconsin","WI",11354 +2011-11-01,"Industrial Consumption","New Jersey","NJ",4058 +2011-11-01,"Industrial Consumption","Idaho","ID",2407 +2011-11-01,"Industrial Consumption","Iowa","IA",14596 +2011-11-01,"Industrial Consumption","Florida","FL",7199 +2011-11-01,"Industrial Consumption","Connecticut","CT",2067 +2011-11-01,"Industrial Consumption","Illinois","IL",23675 +2011-11-01,"Industrial Consumption","District of Columbia","DC",0 +2011-11-01,"Industrial Consumption","Utah","UT",2983 +2011-11-01,"Industrial Consumption","Mississippi","MS",8765 +2011-11-01,"Industrial Consumption","Texas","TX",120980 +2011-11-01,"Industrial Consumption","Nebraska","NE",7826 +2011-11-01,"Industrial Consumption","Kentucky","KY",8673 +2011-11-01,"Industrial Consumption","Indiana","IN",28487 +2011-11-01,"Industrial Consumption","Missouri","MO",5128 +2011-11-01,"Industrial Consumption","Alabama","AL",13351 +2011-11-01,"Industrial Consumption","Rhode Island","RI",696 +2011-11-01,"Industrial Consumption","Oklahoma","OK",15183 +2011-11-01,"Industrial Consumption","New Mexico","NM",1834 +2011-11-01,"Industrial Consumption","Alaska","AK",609 +2011-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",114768 +2011-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",56945 +2011-11-01,"Residential Consumption","Oregon","OR",5645 +2011-11-01,"Residential Consumption","Vermont","VT",253 +2011-11-01,"Residential Consumption","Nebraska","NE",3369 +2011-11-01,"Residential Consumption","Michigan","MI",29709 +2011-11-01,"Residential Consumption","Minnesota","MN",12840 +2011-11-01,"Residential Consumption","Arkansas","AR",2249 +2011-11-01,"Residential Consumption","Rhode Island","RI",1326 +2011-11-01,"Residential Consumption","Virginia","VA",7123 +2011-11-01,"Residential Consumption","New Mexico","NM",2692 +2011-11-01,"Residential Consumption","Maine","ME",115 +2011-11-01,"Residential Consumption","Indiana","IN",12202 +2011-11-01,"Residential Consumption","Washington","WA",10715 +2011-11-01,"Residential Consumption","Missouri","MO",9773 +2011-11-01,"Residential Consumption","North Carolina","NC",6982 +2011-11-01,"Residential Consumption","Mississippi","MS",1873 +2011-11-01,"Residential Consumption","Iowa","IA",6171 +2011-11-01,"Residential Consumption","Utah","UT",8186 +2011-11-01,"Residential Consumption","District of Columbia","DC",1070 +2011-11-01,"Residential Consumption","Colorado","CO",15031 +2011-11-01,"Residential Consumption","Illinois","IL",38763 +2011-11-01,"Residential Consumption","Maryland","MD",6928 +2011-11-01,"Residential Consumption","Georgia","GA",11102 +2011-11-01,"Residential Consumption","Pennsylvania","PA",18370 +2011-11-01,"Residential Consumption","Idaho","ID",3328 +2011-11-01,"Residential Consumption","Kansas","KS",6060 +2011-11-01,"Residential Consumption","Delaware","DE",861 +2011-11-01,"Residential Consumption","Arizona","AZ",2839 +2011-11-01,"Residential Consumption","Alabama","AL",3426 +2011-11-01,"Residential Consumption","Wyoming","WY",1515 +2011-11-01,"Residential Consumption","Ohio","OH",24216 +2011-11-01,"Residential Consumption","Louisiana","LA",2946 +2011-11-01,"Residential Consumption","Hawaii","HI",36 +2011-11-01,"Residential Consumption","Wisconsin","WI",12003 +2011-11-01,"Residential Consumption","Massachusetts","MA",12005 +2011-11-01,"Residential Consumption","California","CA",49546 +2011-11-01,"Residential Consumption","New York","NY",32448 +2011-11-01,"Residential Consumption","Texas","TX",14118 +2011-11-01,"Residential Consumption","Tennessee","TN",6407 +2011-11-01,"Residential Consumption","South Dakota","SD",1330 +2011-11-01,"Residential Consumption","Nevada","NV",3785 +2011-11-01,"Residential Consumption","Florida","FL",1213 +2011-11-01,"Residential Consumption","Kentucky","KY",4661 +2011-11-01,"Residential Consumption","Oklahoma","OK",5847 +2011-11-01,"Residential Consumption","U.S.","U.S.",434502 +2011-11-01,"Residential Consumption","Connecticut","CT",3524 +2011-11-01,"Residential Consumption","New Hampshire","NH",560 +2011-11-01,"Residential Consumption","Montana","MT",2548 +2011-11-01,"Residential Consumption","Alaska","AK",2851 +2011-11-01,"Residential Consumption","South Carolina","SC",2873 +2011-11-01,"Residential Consumption","North Dakota","ND",1138 +2011-11-01,"Residential Consumption","New Jersey","NJ",17569 +2011-11-01,"Residential Consumption","West Virginia","WV",2362 +2011-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-11-01,"Vehicle Fuel Consumption","Utah","UT",24 +2011-11-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2011-11-01,"Vehicle Fuel Consumption","New York","NY",318 +2011-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-11-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2011-11-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-11-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-11-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-11-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2011-11-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2011-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-11-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2011-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2011-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",72 +2011-11-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2011-11-01,"Vehicle Fuel Consumption","Texas","TX",181 +2011-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-11-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-11-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-11-01,"Vehicle Fuel Consumption","California","CA",1205 +2011-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2464 +2011-11-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-11-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2011-11-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2011-11-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-11-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-11-01,"Vehicle Fuel Consumption","Washington","WA",42 +2011-11-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-11-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-11-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-11-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2011-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-11-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-11-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-11-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2011-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-11-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2011-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-11-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-11-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-11-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-11-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-11-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2011-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-11-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2011-11-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-12-01,"Commercial Consumption","Wyoming","WY",1730 +2011-12-01,"Commercial Consumption","South Carolina","SC",2456 +2011-12-01,"Commercial Consumption","New Mexico","NM",3099 +2011-12-01,"Commercial Consumption","Missouri","MO",8708 +2011-12-01,"Commercial Consumption","Wisconsin","WI",11217 +2011-12-01,"Commercial Consumption","Maryland","MD",8473 +2011-12-01,"Commercial Consumption","Alaska","AK",2449 +2011-12-01,"Commercial Consumption","Minnesota","MN",12876 +2011-12-01,"Commercial Consumption","Montana","MT",3160 +2011-12-01,"Commercial Consumption","U.S.","U.S.",400205 +2011-12-01,"Commercial Consumption","Kansas","KS",4822 +2011-12-01,"Commercial Consumption","Georgia","GA",7026 +2011-12-01,"Commercial Consumption","Hawaii","HI",147 +2011-12-01,"Commercial Consumption","Nebraska","NE",4093 +2011-12-01,"Commercial Consumption","Mississippi","MS",2490 +2011-12-01,"Commercial Consumption","Louisiana","LA",2901 +2011-12-01,"Commercial Consumption","West Virginia","WV",2798 +2011-12-01,"Commercial Consumption","Washington","WA",7787 +2011-12-01,"Commercial Consumption","North Carolina","NC",6081 +2011-12-01,"Commercial Consumption","South Dakota","SD",1474 +2011-12-01,"Commercial Consumption","Maine","ME",915 +2011-12-01,"Commercial Consumption","Idaho","ID",2623 +2011-12-01,"Commercial Consumption","Iowa","IA",7019 +2011-12-01,"Commercial Consumption","District of Columbia","DC",2043 +2011-12-01,"Commercial Consumption","Virginia","VA",8333 +2011-12-01,"Commercial Consumption","Pennsylvania","PA",18475 +2011-12-01,"Commercial Consumption","Ohio","OH",20975 +2011-12-01,"Commercial Consumption","Connecticut","CT",4815 +2011-12-01,"Commercial Consumption","New York","NY",32898 +2011-12-01,"Commercial Consumption","Delaware","DE",1402 +2011-12-01,"Commercial Consumption","Nevada","NV",3939 +2011-12-01,"Commercial Consumption","Utah","UT",6854 +2011-12-01,"Commercial Consumption","Oregon","OR",4488 +2011-12-01,"Commercial Consumption","New Jersey","NJ",22125 +2011-12-01,"Commercial Consumption","New Hampshire","NH",1127 +2011-12-01,"Commercial Consumption","Florida","FL",5295 +2011-12-01,"Commercial Consumption","Alabama","AL",3342 +2011-12-01,"Commercial Consumption","Arizona","AZ",4111 +2011-12-01,"Commercial Consumption","Tennessee","TN",7039 +2011-12-01,"Commercial Consumption","Illinois","IL",27393 +2011-12-01,"Commercial Consumption","Colorado","CO",9869 +2011-12-01,"Commercial Consumption","Kentucky","KY",4839 +2011-12-01,"Commercial Consumption","Texas","TX",22609 +2011-12-01,"Commercial Consumption","Vermont","VT",330 +2011-12-01,"Commercial Consumption","Indiana","IN",10338 +2011-12-01,"Commercial Consumption","North Dakota","ND",1455 +2011-12-01,"Commercial Consumption","Oklahoma","OK",5707 +2011-12-01,"Commercial Consumption","Massachusetts","MA",9457 +2011-12-01,"Commercial Consumption","California","CA",29490 +2011-12-01,"Commercial Consumption","Arkansas","AR",4392 +2011-12-01,"Commercial Consumption","Rhode Island","RI",1419 +2011-12-01,"Commercial Consumption","Michigan","MI",21304 +2011-12-01,"Delivered to Consumers","Wyoming","WY",8491 +2011-12-01,"Delivered to Consumers","Idaho","ID",10993 +2011-12-01,"Delivered to Consumers","Nebraska","NE",17675 +2011-12-01,"Delivered to Consumers","Utah","UT",26458 +2011-12-01,"Delivered to Consumers","U.S.","U.S.",2351937 +2011-12-01,"Delivered to Consumers","Indiana","IN",71815 +2011-12-01,"Delivered to Consumers","Illinois","IL",115971 +2011-12-01,"Delivered to Consumers","New York","NY",125599 +2011-12-01,"Delivered to Consumers","Montana","MT",8768 +2011-12-01,"Delivered to Consumers","Colorado","CO",48915 +2011-12-01,"Delivered to Consumers","South Carolina","SC",21064 +2011-12-01,"Delivered to Consumers","Nevada","NV",25693 +2011-12-01,"Delivered to Consumers","Maine","ME",7087 +2011-12-01,"Delivered to Consumers","District of Columbia","DC",4079 +2011-12-01,"Delivered to Consumers","Alaska","AK",9222 +2011-12-01,"Delivered to Consumers","Oklahoma","OK",49758 +2011-12-01,"Delivered to Consumers","Kansas","KS",26304 +2011-12-01,"Delivered to Consumers","Tennessee","TN",30197 +2011-12-01,"Delivered to Consumers","Ohio","OH",96457 +2011-12-01,"Delivered to Consumers","New Hampshire","NH",7321 +2011-12-01,"Delivered to Consumers","North Dakota","ND",5550 +2011-12-01,"Delivered to Consumers","Hawaii","HI",217 +2011-12-01,"Delivered to Consumers","Connecticut","CT",21743 +2011-12-01,"Delivered to Consumers","Wisconsin","WI",46774 +2011-12-01,"Delivered to Consumers","North Carolina","NC",32941 +2011-12-01,"Delivered to Consumers","Massachusetts","MA",42582 +2011-12-01,"Delivered to Consumers","Oregon","OR",29126 +2011-12-01,"Delivered to Consumers","Washington","WA",35398 +2011-12-01,"Delivered to Consumers","Minnesota","MN",48139 +2011-12-01,"Delivered to Consumers","New Mexico","NM",17669 +2011-12-01,"Delivered to Consumers","Delaware","DE",8946 +2011-12-01,"Delivered to Consumers","Iowa","IA",32208 +2011-12-01,"Delivered to Consumers","Virginia","VA",39237 +2011-12-01,"Delivered to Consumers","California","CA",240645 +2011-12-01,"Delivered to Consumers","Louisiana","LA",107902 +2011-12-01,"Delivered to Consumers","Arizona","AZ",22572 +2011-12-01,"Delivered to Consumers","West Virginia","WV",9031 +2011-12-01,"Delivered to Consumers","Rhode Island","RI",9650 +2011-12-01,"Delivered to Consumers","Kentucky","KY",22433 +2011-12-01,"Delivered to Consumers","Pennsylvania","PA",94777 +2011-12-01,"Delivered to Consumers","Mississippi","MS",34265 +2011-12-01,"Delivered to Consumers","Missouri","MO",32756 +2011-12-01,"Delivered to Consumers","Texas","TX",294715 +2011-12-01,"Delivered to Consumers","Georgia","GA",50126 +2011-12-01,"Delivered to Consumers","Vermont","VT",1061 +2011-12-01,"Delivered to Consumers","Maryland","MD",22629 +2011-12-01,"Delivered to Consumers","Arkansas","AR",23651 +2011-12-01,"Delivered to Consumers","Alabama","AL",55476 +2011-12-01,"Delivered to Consumers","New Jersey","NJ",69980 +2011-12-01,"Delivered to Consumers","South Dakota","SD",6999 +2011-12-01,"Delivered to Consumers","Michigan","MI",91293 +2011-12-01,"Delivered to Consumers","Florida","FL",89579 +2011-12-01,"Electric Power Consumption","Virginia","VA",14012 +2011-12-01,"Electric Power Consumption","Kansas","KS",939 +2011-12-01,"Electric Power Consumption","U.S.","U.S.",613894 +2011-12-01,"Electric Power Consumption","South Dakota","SD",9 +2011-12-01,"Electric Power Consumption","Missouri","MO",1798 +2011-12-01,"Electric Power Consumption","New Hampshire","NH",4465 +2011-12-01,"Electric Power Consumption","Alabama","AL",32287 +2011-12-01,"Electric Power Consumption","Washington","WA",7201 +2011-12-01,"Electric Power Consumption","South Carolina","SC",7974 +2011-12-01,"Electric Power Consumption","Oklahoma","OK",16233 +2011-12-01,"Electric Power Consumption","Illinois","IL",1883 +2011-12-01,"Electric Power Consumption","Delaware","DE",3699 +2011-12-01,"Electric Power Consumption","Vermont","VT",4 +2011-12-01,"Electric Power Consumption","Arkansas","AR",6329 +2011-12-01,"Electric Power Consumption","Texas","TX",108637 +2011-12-01,"Electric Power Consumption","Oregon","OR",11590 +2011-12-01,"Electric Power Consumption","Wisconsin","WI",4573 +2011-12-01,"Electric Power Consumption","Maine","ME",3432 +2011-12-01,"Electric Power Consumption","Ohio","OH",10072 +2011-12-01,"Electric Power Consumption","Montana","MT",340 +2011-12-01,"Electric Power Consumption","Arizona","AZ",9369 +2011-12-01,"Electric Power Consumption","Massachusetts","MA",11263 +2011-12-01,"Electric Power Consumption","West Virginia","WV",55 +2011-12-01,"Electric Power Consumption","Pennsylvania","PA",28239 +2011-12-01,"Electric Power Consumption","Wyoming","WY",36 +2011-12-01,"Electric Power Consumption","Maryland","MD",666 +2011-12-01,"Electric Power Consumption","Indiana","IN",9848 +2011-12-01,"Electric Power Consumption","New Mexico","NM",7159 +2011-12-01,"Electric Power Consumption","Louisiana","LA",16712 +2011-12-01,"Electric Power Consumption","Michigan","MI",10343 +2011-12-01,"Electric Power Consumption","Mississippi","MS",19051 +2011-12-01,"Electric Power Consumption","Florida","FL",74424 +2011-12-01,"Electric Power Consumption","California","CA",68276 +2011-12-01,"Electric Power Consumption","Colorado","CO",8169 +2011-12-01,"Electric Power Consumption","New York","NY",33370 +2011-12-01,"Electric Power Consumption","Rhode Island","RI",5207 +2011-12-01,"Electric Power Consumption","Minnesota","MN",2003 +2011-12-01,"Electric Power Consumption","Nevada","NV",13713 +2011-12-01,"Electric Power Consumption","Iowa","IA",227 +2011-12-01,"Electric Power Consumption","North Carolina","NC",8594 +2011-12-01,"Electric Power Consumption","Hawaii","HI",NA +2011-12-01,"Electric Power Consumption","North Dakota","ND",0 +2011-12-01,"Electric Power Consumption","Connecticut","CT",9172 +2011-12-01,"Electric Power Consumption","Georgia","GA",14606 +2011-12-01,"Electric Power Consumption","Alaska","AK",3737 +2011-12-01,"Electric Power Consumption","New Jersey","NJ",15657 +2011-12-01,"Electric Power Consumption","Idaho","ID",1780 +2011-12-01,"Electric Power Consumption","Utah","UT",3914 +2011-12-01,"Electric Power Consumption","Tennessee","TN",2178 +2011-12-01,"Electric Power Consumption","Nebraska","NE",59 +2011-12-01,"Electric Power Consumption","Kentucky","KY",512 +2011-12-01,"Industrial Consumption","Louisiana","LA",82681 +2011-12-01,"Industrial Consumption","Colorado","CO",8634 +2011-12-01,"Industrial Consumption","Nebraska","NE",7646 +2011-12-01,"Industrial Consumption","Vermont","VT",286 +2011-12-01,"Industrial Consumption","Wisconsin","WI",12618 +2011-12-01,"Industrial Consumption","Iowa","IA",14906 +2011-12-01,"Industrial Consumption","Connecticut","CT",2455 +2011-12-01,"Industrial Consumption","Montana","MT",1790 +2011-12-01,"Industrial Consumption","Massachusetts","MA",4966 +2011-12-01,"Industrial Consumption","Utah","UT",3008 +2011-12-01,"Industrial Consumption","Oregon","OR",5458 +2011-12-01,"Industrial Consumption","Texas","TX",131251 +2011-12-01,"Industrial Consumption","New Jersey","NJ",4554 +2011-12-01,"Industrial Consumption","Minnesota","MN",14954 +2011-12-01,"Industrial Consumption","Idaho","ID",2155 +2011-12-01,"Industrial Consumption","Illinois","IL",27705 +2011-12-01,"Industrial Consumption","Washington","WA",7253 +2011-12-01,"Industrial Consumption","Ohio","OH",25171 +2011-12-01,"Industrial Consumption","Arizona","AZ",2401 +2011-12-01,"Industrial Consumption","New York","NY",7270 +2011-12-01,"Industrial Consumption","California","CA",60299 +2011-12-01,"Industrial Consumption","Tennessee","TN",9711 +2011-12-01,"Industrial Consumption","Kentucky","KY",9061 +2011-12-01,"Industrial Consumption","Delaware","DE",2522 +2011-12-01,"Industrial Consumption","Georgia","GA",12523 +2011-12-01,"Industrial Consumption","Oklahoma","OK",16709 +2011-12-01,"Industrial Consumption","South Dakota","SD",3625 +2011-12-01,"Industrial Consumption","Kansas","KS",9911 +2011-12-01,"Industrial Consumption","Virginia","VA",5674 +2011-12-01,"Industrial Consumption","West Virginia","WV",2347 +2011-12-01,"Industrial Consumption","North Carolina","NC",8758 +2011-12-01,"Industrial Consumption","Alaska","AK",584 +2011-12-01,"Industrial Consumption","Missouri","MO",6053 +2011-12-01,"Industrial Consumption","Nevada","NV",1094 +2011-12-01,"Industrial Consumption","U.S.","U.S.",642060 +2011-12-01,"Industrial Consumption","Pennsylvania","PA",18469 +2011-12-01,"Industrial Consumption","Maine","ME",2549 +2011-12-01,"Industrial Consumption","Arkansas","AR",8116 +2011-12-01,"Industrial Consumption","South Carolina","SC",6583 +2011-12-01,"Industrial Consumption","Rhode Island","RI",533 +2011-12-01,"Industrial Consumption","District of Columbia","DC",0 +2011-12-01,"Industrial Consumption","North Dakota","ND",2624 +2011-12-01,"Industrial Consumption","Hawaii","HI",27 +2011-12-01,"Industrial Consumption","New Hampshire","NH",826 +2011-12-01,"Industrial Consumption","Florida","FL",8237 +2011-12-01,"Industrial Consumption","Indiana","IN",31748 +2011-12-01,"Industrial Consumption","Maryland","MD",2257 +2011-12-01,"Industrial Consumption","New Mexico","NM",1890 +2011-12-01,"Industrial Consumption","Mississippi","MS",8794 +2011-12-01,"Industrial Consumption","Alabama","AL",14364 +2011-12-01,"Industrial Consumption","Wyoming","WY",4638 +2011-12-01,"Industrial Consumption","Michigan","MI",14369 +2011-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",117941 +2011-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",72000 +2011-12-01,"Residential Consumption","Iowa","IA",10056 +2011-12-01,"Residential Consumption","Georgia","GA",15878 +2011-12-01,"Residential Consumption","Pennsylvania","PA",29569 +2011-12-01,"Residential Consumption","Colorado","CO",22219 +2011-12-01,"Residential Consumption","Kansas","KS",10631 +2011-12-01,"Residential Consumption","Oklahoma","OK",11087 +2011-12-01,"Residential Consumption","California","CA",81335 +2011-12-01,"Residential Consumption","Alabama","AL",5467 +2011-12-01,"Residential Consumption","Louisiana","LA",5607 +2011-12-01,"Residential Consumption","Utah","UT",12657 +2011-12-01,"Residential Consumption","Nebraska","NE",5874 +2011-12-01,"Residential Consumption","New Mexico","NM",5501 +2011-12-01,"Residential Consumption","Maine","ME",190 +2011-12-01,"Residential Consumption","Indiana","IN",19879 +2011-12-01,"Residential Consumption","Montana","MT",3478 +2011-12-01,"Residential Consumption","Wisconsin","WI",18361 +2011-12-01,"Residential Consumption","Vermont","VT",441 +2011-12-01,"Residential Consumption","Virginia","VA",11196 +2011-12-01,"Residential Consumption","Minnesota","MN",18305 +2011-12-01,"Residential Consumption","District of Columbia","DC",1882 +2011-12-01,"Residential Consumption","Florida","FL",1615 +2011-12-01,"Residential Consumption","North Dakota","ND",1471 +2011-12-01,"Residential Consumption","Wyoming","WY",2086 +2011-12-01,"Residential Consumption","New York","NY",51732 +2011-12-01,"Residential Consumption","Texas","TX",32031 +2011-12-01,"Residential Consumption","South Carolina","SC",4051 +2011-12-01,"Residential Consumption","Tennessee","TN",11269 +2011-12-01,"Residential Consumption","Maryland","MD",11214 +2011-12-01,"Residential Consumption","New Jersey","NJ",27628 +2011-12-01,"Residential Consumption","Washington","WA",13113 +2011-12-01,"Residential Consumption","North Carolina","NC",9506 +2011-12-01,"Residential Consumption","Michigan","MI",45249 +2011-12-01,"Residential Consumption","Arkansas","AR",4812 +2011-12-01,"Residential Consumption","Rhode Island","RI",2483 +2011-12-01,"Residential Consumption","Oregon","OR",7578 +2011-12-01,"Residential Consumption","Hawaii","HI",42 +2011-12-01,"Residential Consumption","Massachusetts","MA",16831 +2011-12-01,"Residential Consumption","New Hampshire","NH",899 +2011-12-01,"Residential Consumption","Alaska","AK",2451 +2011-12-01,"Residential Consumption","West Virginia","WV",3832 +2011-12-01,"Residential Consumption","Ohio","OH",40232 +2011-12-01,"Residential Consumption","Connecticut","CT",5298 +2011-12-01,"Residential Consumption","South Dakota","SD",1892 +2011-12-01,"Residential Consumption","Missouri","MO",16196 +2011-12-01,"Residential Consumption","Mississippi","MS",3930 +2011-12-01,"Residential Consumption","Nevada","NV",6896 +2011-12-01,"Residential Consumption","Idaho","ID",4424 +2011-12-01,"Residential Consumption","Kentucky","KY",8021 +2011-12-01,"Residential Consumption","Delaware","DE",1323 +2011-12-01,"Residential Consumption","Arizona","AZ",6546 +2011-12-01,"Residential Consumption","U.S.","U.S.",693232 +2011-12-01,"Residential Consumption","Illinois","IL",58968 +2011-12-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2011-12-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2011-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2011-12-01,"Vehicle Fuel Consumption","Texas","TX",187 +2011-12-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2011-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2011-12-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2011-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2011-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2011-12-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2011-12-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2011-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2011-12-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2011-12-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2011-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2011-12-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2011-12-01,"Vehicle Fuel Consumption","Washington","WA",43 +2011-12-01,"Vehicle Fuel Consumption","New York","NY",328 +2011-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2011-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2011-12-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2011-12-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2011-12-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2011-12-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2011-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",75 +2011-12-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2011-12-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2011-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2011-12-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2011-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2011-12-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2011-12-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2011-12-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2011-12-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2011-12-01,"Vehicle Fuel Consumption","Utah","UT",25 +2011-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2011-12-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2011-12-01,"Vehicle Fuel Consumption","Florida","FL",7 +2011-12-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2011-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",65 +2011-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2011-12-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2011-12-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2011-12-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2011-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2011-12-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2011-12-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2011-12-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2011-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2011-12-01,"Vehicle Fuel Consumption","California","CA",1245 +2011-12-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2011-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2546 +2012-01-01,"Commercial Consumption","Texas","TX",22304 +2012-01-01,"Commercial Consumption","Rhode Island","RI",1705 +2012-01-01,"Commercial Consumption","New Mexico","NM",3991 +2012-01-01,"Commercial Consumption","Georgia","GA",7768 +2012-01-01,"Commercial Consumption","Idaho","ID",2444 +2012-01-01,"Commercial Consumption","Hawaii","HI",160 +2012-01-01,"Commercial Consumption","Alaska","AK",3107 +2012-01-01,"Commercial Consumption","Mississippi","MS",2532 +2012-01-01,"Commercial Consumption","Delaware","DE",1608 +2012-01-01,"Commercial Consumption","Arizona","AZ",4090 +2012-01-01,"Commercial Consumption","Tennessee","TN",7343 +2012-01-01,"Commercial Consumption","Wyoming","WY",1628 +2012-01-01,"Commercial Consumption","South Carolina","SC",2947 +2012-01-01,"Commercial Consumption","North Carolina","NC",8072 +2012-01-01,"Commercial Consumption","Virginia","VA",8507 +2012-01-01,"Commercial Consumption","Missouri","MO",9747 +2012-01-01,"Commercial Consumption","Wisconsin","WI",13739 +2012-01-01,"Commercial Consumption","Montana","MT",3189 +2012-01-01,"Commercial Consumption","Kentucky","KY",5672 +2012-01-01,"Commercial Consumption","Ohio","OH",26190 +2012-01-01,"Commercial Consumption","Arkansas","AR",5612 +2012-01-01,"Commercial Consumption","Alabama","AL",3184 +2012-01-01,"Commercial Consumption","New York","NY",39990 +2012-01-01,"Commercial Consumption","Washington","WA",7631 +2012-01-01,"Commercial Consumption","Maine","ME",1135 +2012-01-01,"Commercial Consumption","Iowa","IA",7508 +2012-01-01,"Commercial Consumption","Nebraska","NE",4260 +2012-01-01,"Commercial Consumption","New Jersey","NJ",26025 +2012-01-01,"Commercial Consumption","Kansas","KS",4809 +2012-01-01,"Commercial Consumption","California","CA",27921 +2012-01-01,"Commercial Consumption","Nevada","NV",3913 +2012-01-01,"Commercial Consumption","Indiana","IN",12440 +2012-01-01,"Commercial Consumption","West Virginia","WV",3237 +2012-01-01,"Commercial Consumption","Vermont","VT",416 +2012-01-01,"Commercial Consumption","Michigan","MI",24398 +2012-01-01,"Commercial Consumption","North Dakota","ND",1655 +2012-01-01,"Commercial Consumption","Minnesota","MN",14544 +2012-01-01,"Commercial Consumption","Utah","UT",6173 +2012-01-01,"Commercial Consumption","Pennsylvania","PA",21702 +2012-01-01,"Commercial Consumption","Massachusetts","MA",11531 +2012-01-01,"Commercial Consumption","New Hampshire","NH",1453 +2012-01-01,"Commercial Consumption","U.S.","U.S.",445861 +2012-01-01,"Commercial Consumption","Florida","FL",5655 +2012-01-01,"Commercial Consumption","Connecticut","CT",6403 +2012-01-01,"Commercial Consumption","Illinois","IL",31992 +2012-01-01,"Commercial Consumption","District of Columbia","DC",2367 +2012-01-01,"Commercial Consumption","Colorado","CO",8551 +2012-01-01,"Commercial Consumption","Oregon","OR",4488 +2012-01-01,"Commercial Consumption","Oklahoma","OK",5955 +2012-01-01,"Commercial Consumption","South Dakota","SD",1602 +2012-01-01,"Commercial Consumption","Maryland","MD",9640 +2012-01-01,"Commercial Consumption","Louisiana","LA",2926 +2012-01-01,"Delivered to Consumers","West Virginia","WV",10363 +2012-01-01,"Delivered to Consumers","Illinois","IL",138760 +2012-01-01,"Delivered to Consumers","Rhode Island","RI",10217 +2012-01-01,"Delivered to Consumers","New York","NY",146859 +2012-01-01,"Delivered to Consumers","Kentucky","KY",27136 +2012-01-01,"Delivered to Consumers","Iowa","IA",35325 +2012-01-01,"Delivered to Consumers","Virginia","VA",46029 +2012-01-01,"Delivered to Consumers","Oregon","OR",28368 +2012-01-01,"Delivered to Consumers","U.S.","U.S.",2557465 +2012-01-01,"Delivered to Consumers","New Mexico","NM",17486 +2012-01-01,"Delivered to Consumers","Maryland","MD",26635 +2012-01-01,"Delivered to Consumers","Ohio","OH",118702 +2012-01-01,"Delivered to Consumers","Arkansas","AR",29126 +2012-01-01,"Delivered to Consumers","Wisconsin","WI",55242 +2012-01-01,"Delivered to Consumers","Nebraska","NE",18408 +2012-01-01,"Delivered to Consumers","Colorado","CO",44362 +2012-01-01,"Delivered to Consumers","Louisiana","LA",107193 +2012-01-01,"Delivered to Consumers","Indiana","IN",80739 +2012-01-01,"Delivered to Consumers","Wyoming","WY",8335 +2012-01-01,"Delivered to Consumers","Montana","MT",8784 +2012-01-01,"Delivered to Consumers","Hawaii","HI",239 +2012-01-01,"Delivered to Consumers","Alaska","AK",11296 +2012-01-01,"Delivered to Consumers","Oklahoma","OK",53395 +2012-01-01,"Delivered to Consumers","Tennessee","TN",32409 +2012-01-01,"Delivered to Consumers","Pennsylvania","PA",112261 +2012-01-01,"Delivered to Consumers","South Carolina","SC",24227 +2012-01-01,"Delivered to Consumers","Kansas","KS",27663 +2012-01-01,"Delivered to Consumers","North Carolina","NC",40964 +2012-01-01,"Delivered to Consumers","Missouri","MO",36913 +2012-01-01,"Delivered to Consumers","Georgia","GA",59090 +2012-01-01,"Delivered to Consumers","District of Columbia","DC",5099 +2012-01-01,"Delivered to Consumers","Utah","UT",24284 +2012-01-01,"Delivered to Consumers","Vermont","VT",1323 +2012-01-01,"Delivered to Consumers","South Dakota","SD",7316 +2012-01-01,"Delivered to Consumers","Idaho","ID",10595 +2012-01-01,"Delivered to Consumers","Michigan","MI",106613 +2012-01-01,"Delivered to Consumers","Arizona","AZ",27258 +2012-01-01,"Delivered to Consumers","New Hampshire","NH",8702 +2012-01-01,"Delivered to Consumers","Connecticut","CT",24799 +2012-01-01,"Delivered to Consumers","Mississippi","MS",37200 +2012-01-01,"Delivered to Consumers","Massachusetts","MA",49526 +2012-01-01,"Delivered to Consumers","Nevada","NV",25280 +2012-01-01,"Delivered to Consumers","Maine","ME",7624 +2012-01-01,"Delivered to Consumers","Washington","WA",32832 +2012-01-01,"Delivered to Consumers","Florida","FL",95926 +2012-01-01,"Delivered to Consumers","Delaware","DE",9807 +2012-01-01,"Delivered to Consumers","Alabama","AL",57161 +2012-01-01,"Delivered to Consumers","California","CA",226299 +2012-01-01,"Delivered to Consumers","Texas","TX",299627 +2012-01-01,"Delivered to Consumers","North Dakota","ND",6014 +2012-01-01,"Delivered to Consumers","New Jersey","NJ",84790 +2012-01-01,"Delivered to Consumers","Minnesota","MN",52862 +2012-01-01,"Electric Power Consumption","New Mexico","NM",5272 +2012-01-01,"Electric Power Consumption","Wisconsin","WI",5868 +2012-01-01,"Electric Power Consumption","Pennsylvania","PA",30854 +2012-01-01,"Electric Power Consumption","Nevada","NV",13180 +2012-01-01,"Electric Power Consumption","Kentucky","KY",1123 +2012-01-01,"Electric Power Consumption","Montana","MT",372 +2012-01-01,"Electric Power Consumption","Colorado","CO",6818 +2012-01-01,"Electric Power Consumption","Texas","TX",106663 +2012-01-01,"Electric Power Consumption","Oklahoma","OK",20349 +2012-01-01,"Electric Power Consumption","Oregon","OR",11175 +2012-01-01,"Electric Power Consumption","Wyoming","WY",51 +2012-01-01,"Electric Power Consumption","Hawaii","HI",NA +2012-01-01,"Electric Power Consumption","Virginia","VA",16477 +2012-01-01,"Electric Power Consumption","South Carolina","SC",9050 +2012-01-01,"Electric Power Consumption","Michigan","MI",13361 +2012-01-01,"Electric Power Consumption","Vermont","VT",3 +2012-01-01,"Electric Power Consumption","New Jersey","NJ",14665 +2012-01-01,"Electric Power Consumption","Idaho","ID",1341 +2012-01-01,"Electric Power Consumption","Utah","UT",3905 +2012-01-01,"Electric Power Consumption","U.S.","U.S.",648823 +2012-01-01,"Electric Power Consumption","Nebraska","NE",58 +2012-01-01,"Electric Power Consumption","North Carolina","NC",10096 +2012-01-01,"Electric Power Consumption","Mississippi","MS",21831 +2012-01-01,"Electric Power Consumption","Alaska","AK",4033 +2012-01-01,"Electric Power Consumption","Massachusetts","MA",11614 +2012-01-01,"Electric Power Consumption","Tennessee","TN",3079 +2012-01-01,"Electric Power Consumption","South Dakota","SD",4 +2012-01-01,"Electric Power Consumption","Ohio","OH",15282 +2012-01-01,"Electric Power Consumption","New Hampshire","NH",5188 +2012-01-01,"Electric Power Consumption","Delaware","DE",3793 +2012-01-01,"Electric Power Consumption","Georgia","GA",18869 +2012-01-01,"Electric Power Consumption","Louisiana","LA",17420 +2012-01-01,"Electric Power Consumption","New York","NY",33216 +2012-01-01,"Electric Power Consumption","Minnesota","MN",1830 +2012-01-01,"Electric Power Consumption","Kansas","KS",1817 +2012-01-01,"Electric Power Consumption","Maine","ME",3364 +2012-01-01,"Electric Power Consumption","Connecticut","CT",8057 +2012-01-01,"Electric Power Consumption","Washington","WA",4566 +2012-01-01,"Electric Power Consumption","Arkansas","AR",9880 +2012-01-01,"Electric Power Consumption","West Virginia","WV",167 +2012-01-01,"Electric Power Consumption","Iowa","IA",483 +2012-01-01,"Electric Power Consumption","Missouri","MO",2304 +2012-01-01,"Electric Power Consumption","North Dakota","ND",0 +2012-01-01,"Electric Power Consumption","Maryland","MD",393 +2012-01-01,"Electric Power Consumption","Arizona","AZ",13126 +2012-01-01,"Electric Power Consumption","Florida","FL",79830 +2012-01-01,"Electric Power Consumption","California","CA",65556 +2012-01-01,"Electric Power Consumption","Alabama","AL",32868 +2012-01-01,"Electric Power Consumption","Rhode Island","RI",4731 +2012-01-01,"Electric Power Consumption","Illinois","IL",4389 +2012-01-01,"Electric Power Consumption","Indiana","IN",10451 +2012-01-01,"Industrial Consumption","Massachusetts","MA",5178 +2012-01-01,"Industrial Consumption","Louisiana","LA",81179 +2012-01-01,"Industrial Consumption","Arizona","AZ",2492 +2012-01-01,"Industrial Consumption","Pennsylvania","PA",20625 +2012-01-01,"Industrial Consumption","Oregon","OR",5237 +2012-01-01,"Industrial Consumption","New Jersey","NJ",5557 +2012-01-01,"Industrial Consumption","Kentucky","KY",10792 +2012-01-01,"Industrial Consumption","Rhode Island","RI",589 +2012-01-01,"Industrial Consumption","District of Columbia","DC",0 +2012-01-01,"Industrial Consumption","Alaska","AK",552 +2012-01-01,"Industrial Consumption","New Mexico","NM",1746 +2012-01-01,"Industrial Consumption","Texas","TX",133728 +2012-01-01,"Industrial Consumption","Iowa","IA",16188 +2012-01-01,"Industrial Consumption","Florida","FL",8533 +2012-01-01,"Industrial Consumption","Michigan","MI",16952 +2012-01-01,"Industrial Consumption","Montana","MT",1825 +2012-01-01,"Industrial Consumption","Washington","WA",7595 +2012-01-01,"Industrial Consumption","Kansas","KS",10018 +2012-01-01,"Industrial Consumption","Arkansas","AR",8048 +2012-01-01,"Industrial Consumption","Virginia","VA",6962 +2012-01-01,"Industrial Consumption","Wisconsin","WI",13215 +2012-01-01,"Industrial Consumption","Idaho","ID",2649 +2012-01-01,"Industrial Consumption","Georgia","GA",13611 +2012-01-01,"Industrial Consumption","Utah","UT",3184 +2012-01-01,"Industrial Consumption","South Carolina","SC",7140 +2012-01-01,"Industrial Consumption","Nebraska","NE",7985 +2012-01-01,"Industrial Consumption","Vermont","VT",325 +2012-01-01,"Industrial Consumption","Colorado","CO",8071 +2012-01-01,"Industrial Consumption","West Virginia","WV",2529 +2012-01-01,"Industrial Consumption","Minnesota","MN",15500 +2012-01-01,"Industrial Consumption","North Dakota","ND",2666 +2012-01-01,"Industrial Consumption","Oklahoma","OK",16647 +2012-01-01,"Industrial Consumption","Ohio","OH",27095 +2012-01-01,"Industrial Consumption","Nevada","NV",967 +2012-01-01,"Industrial Consumption","New Hampshire","NH",827 +2012-01-01,"Industrial Consumption","Connecticut","CT",2744 +2012-01-01,"Industrial Consumption","North Carolina","NC",9703 +2012-01-01,"Industrial Consumption","South Dakota","SD",3705 +2012-01-01,"Industrial Consumption","Maine","ME",2871 +2012-01-01,"Industrial Consumption","Illinois","IL",29142 +2012-01-01,"Industrial Consumption","Maryland","MD",1934 +2012-01-01,"Industrial Consumption","Hawaii","HI",31 +2012-01-01,"Industrial Consumption","Missouri","MO",6808 +2012-01-01,"Industrial Consumption","U.S.","U.S.",665876 +2012-01-01,"Industrial Consumption","New York","NY",8090 +2012-01-01,"Industrial Consumption","Mississippi","MS",8934 +2012-01-01,"Industrial Consumption","California","CA",59701 +2012-01-01,"Industrial Consumption","Alabama","AL",15196 +2012-01-01,"Industrial Consumption","Wyoming","WY",4735 +2012-01-01,"Industrial Consumption","Tennessee","TN",10064 +2012-01-01,"Industrial Consumption","Indiana","IN",33414 +2012-01-01,"Industrial Consumption","Delaware","DE",2598 +2012-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",118883 +2012-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",79832 +2012-01-01,"Residential Consumption","South Carolina","SC",5088 +2012-01-01,"Residential Consumption","Oregon","OR",7455 +2012-01-01,"Residential Consumption","Virginia","VA",14061 +2012-01-01,"Residential Consumption","Utah","UT",10998 +2012-01-01,"Residential Consumption","Missouri","MO",18053 +2012-01-01,"Residential Consumption","West Virginia","WV",4430 +2012-01-01,"Residential Consumption","U.S.","U.S.",794368 +2012-01-01,"Residential Consumption","Hawaii","HI",48 +2012-01-01,"Residential Consumption","District of Columbia","DC",2658 +2012-01-01,"Residential Consumption","Massachusetts","MA",21138 +2012-01-01,"Residential Consumption","Kansas","KS",11018 +2012-01-01,"Residential Consumption","Ohio","OH",50128 +2012-01-01,"Residential Consumption","Connecticut","CT",7592 +2012-01-01,"Residential Consumption","Maryland","MD",14649 +2012-01-01,"Residential Consumption","Nevada","NV",7170 +2012-01-01,"Residential Consumption","Minnesota","MN",20987 +2012-01-01,"Residential Consumption","New Hampshire","NH",1231 +2012-01-01,"Residential Consumption","Colorado","CO",20898 +2012-01-01,"Residential Consumption","Washington","WA",12997 +2012-01-01,"Residential Consumption","California","CA",71879 +2012-01-01,"Residential Consumption","Alabama","AL",5896 +2012-01-01,"Residential Consumption","Alaska","AK",3603 +2012-01-01,"Residential Consumption","New York","NY",65236 +2012-01-01,"Residential Consumption","Wisconsin","WI",22415 +2012-01-01,"Residential Consumption","Vermont","VT",578 +2012-01-01,"Residential Consumption","Tennessee","TN",11922 +2012-01-01,"Residential Consumption","Georgia","GA",18749 +2012-01-01,"Residential Consumption","Idaho","ID",4150 +2012-01-01,"Residential Consumption","Arkansas","AR",5584 +2012-01-01,"Residential Consumption","Mississippi","MS",3902 +2012-01-01,"Residential Consumption","Iowa","IA",11146 +2012-01-01,"Residential Consumption","Pennsylvania","PA",39056 +2012-01-01,"Residential Consumption","Kentucky","KY",9550 +2012-01-01,"Residential Consumption","Oklahoma","OK",10423 +2012-01-01,"Residential Consumption","Illinois","IL",73215 +2012-01-01,"Residential Consumption","Texas","TX",36745 +2012-01-01,"Residential Consumption","South Dakota","SD",2005 +2012-01-01,"Residential Consumption","Maine","ME",255 +2012-01-01,"Residential Consumption","North Dakota","ND",1694 +2012-01-01,"Residential Consumption","Delaware","DE",1808 +2012-01-01,"Residential Consumption","Arizona","AZ",7406 +2012-01-01,"Residential Consumption","North Carolina","NC",13091 +2012-01-01,"Residential Consumption","Michigan","MI",51875 +2012-01-01,"Residential Consumption","Indiana","IN",24433 +2012-01-01,"Residential Consumption","Florida","FL",1901 +2012-01-01,"Residential Consumption","Montana","MT",3398 +2012-01-01,"Residential Consumption","Wyoming","WY",1920 +2012-01-01,"Residential Consumption","Rhode Island","RI",3184 +2012-01-01,"Residential Consumption","Louisiana","LA",5667 +2012-01-01,"Residential Consumption","Nebraska","NE",6101 +2012-01-01,"Residential Consumption","New Mexico","NM",6455 +2012-01-01,"Residential Consumption","New Jersey","NJ",38527 +2012-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",64 +2012-01-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-01-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-01-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-01-01,"Vehicle Fuel Consumption","California","CA",1243 +2012-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-01-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-01-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-01-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2012-01-01,"Vehicle Fuel Consumption","Texas","TX",187 +2012-01-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2012-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-01-01,"Vehicle Fuel Consumption","Washington","WA",43 +2012-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-01-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-01-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-01-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-01-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2538 +2012-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-01-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2012-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-01-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-01-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-01-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2012-01-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",74 +2012-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-01-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2012-01-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2012-01-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-01-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-01-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2012-01-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2012-01-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2012-01-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2012-01-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-01-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-01-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2012-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2012-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-01-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2012-01-01,"Vehicle Fuel Consumption","New York","NY",326 +2012-01-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-01-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-01-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-02-01,"Commercial Consumption","North Carolina","NC",6583 +2012-02-01,"Commercial Consumption","Hawaii","HI",149 +2012-02-01,"Commercial Consumption","California","CA",24761 +2012-02-01,"Commercial Consumption","Mississippi","MS",2054 +2012-02-01,"Commercial Consumption","Delaware","DE",1367 +2012-02-01,"Commercial Consumption","Nevada","NV",3266 +2012-02-01,"Commercial Consumption","Wyoming","WY",1577 +2012-02-01,"Commercial Consumption","Washington","WA",6610 +2012-02-01,"Commercial Consumption","New Mexico","NM",3535 +2012-02-01,"Commercial Consumption","Oklahoma","OK",5437 +2012-02-01,"Commercial Consumption","Maryland","MD",8256 +2012-02-01,"Commercial Consumption","Georgia","GA",6351 +2012-02-01,"Commercial Consumption","Iowa","IA",6605 +2012-02-01,"Commercial Consumption","South Carolina","SC",2475 +2012-02-01,"Commercial Consumption","New Hampshire","NH",1225 +2012-02-01,"Commercial Consumption","Texas","TX",19673 +2012-02-01,"Commercial Consumption","Vermont","VT",345 +2012-02-01,"Commercial Consumption","Connecticut","CT",5851 +2012-02-01,"Commercial Consumption","Arkansas","AR",4980 +2012-02-01,"Commercial Consumption","Alabama","AL",2637 +2012-02-01,"Commercial Consumption","Michigan","MI",21674 +2012-02-01,"Commercial Consumption","West Virginia","WV",3112 +2012-02-01,"Commercial Consumption","Missouri","MO",7993 +2012-02-01,"Commercial Consumption","Montana","MT",2711 +2012-02-01,"Commercial Consumption","Ohio","OH",22313 +2012-02-01,"Commercial Consumption","New York","NY",33413 +2012-02-01,"Commercial Consumption","Nebraska","NE",4007 +2012-02-01,"Commercial Consumption","Louisiana","LA",2777 +2012-02-01,"Commercial Consumption","North Dakota","ND",1459 +2012-02-01,"Commercial Consumption","Pennsylvania","PA",18290 +2012-02-01,"Commercial Consumption","Kentucky","KY",4643 +2012-02-01,"Commercial Consumption","Florida","FL",4971 +2012-02-01,"Commercial Consumption","Arizona","AZ",3645 +2012-02-01,"Commercial Consumption","Illinois","IL",27643 +2012-02-01,"Commercial Consumption","District of Columbia","DC",1722 +2012-02-01,"Commercial Consumption","Colorado","CO",8003 +2012-02-01,"Commercial Consumption","Oregon","OR",3682 +2012-02-01,"Commercial Consumption","Massachusetts","MA",11548 +2012-02-01,"Commercial Consumption","Wisconsin","WI",11549 +2012-02-01,"Commercial Consumption","South Dakota","SD",1423 +2012-02-01,"Commercial Consumption","Maine","ME",912 +2012-02-01,"Commercial Consumption","U.S.","U.S.",387045 +2012-02-01,"Commercial Consumption","Kansas","KS",4003 +2012-02-01,"Commercial Consumption","Idaho","ID",1999 +2012-02-01,"Commercial Consumption","Tennessee","TN",6034 +2012-02-01,"Commercial Consumption","Virginia","VA",7923 +2012-02-01,"Commercial Consumption","New Jersey","NJ",24723 +2012-02-01,"Commercial Consumption","Minnesota","MN",12270 +2012-02-01,"Commercial Consumption","Utah","UT",5162 +2012-02-01,"Commercial Consumption","Rhode Island","RI",1674 +2012-02-01,"Commercial Consumption","Alaska","AK",2000 +2012-02-01,"Commercial Consumption","Indiana","IN",10028 +2012-02-01,"Delivered to Consumers","Utah","UT",21364 +2012-02-01,"Delivered to Consumers","Indiana","IN",71705 +2012-02-01,"Delivered to Consumers","West Virginia","WV",9664 +2012-02-01,"Delivered to Consumers","Vermont","VT",1110 +2012-02-01,"Delivered to Consumers","Oklahoma","OK",49577 +2012-02-01,"Delivered to Consumers","Tennessee","TN",27571 +2012-02-01,"Delivered to Consumers","Michigan","MI",97521 +2012-02-01,"Delivered to Consumers","Virginia","VA",41921 +2012-02-01,"Delivered to Consumers","Mississippi","MS",36834 +2012-02-01,"Delivered to Consumers","North Dakota","ND",4868 +2012-02-01,"Delivered to Consumers","Minnesota","MN",47573 +2012-02-01,"Delivered to Consumers","Iowa","IA",31279 +2012-02-01,"Delivered to Consumers","Nebraska","NE",16824 +2012-02-01,"Delivered to Consumers","North Carolina","NC",38680 +2012-02-01,"Delivered to Consumers","Maine","ME",6953 +2012-02-01,"Delivered to Consumers","New York","NY",130730 +2012-02-01,"Delivered to Consumers","California","CA",207537 +2012-02-01,"Delivered to Consumers","Delaware","DE",9026 +2012-02-01,"Delivered to Consumers","Wyoming","WY",8064 +2012-02-01,"Delivered to Consumers","South Dakota","SD",6761 +2012-02-01,"Delivered to Consumers","Maryland","MD",21692 +2012-02-01,"Delivered to Consumers","Colorado","CO",44713 +2012-02-01,"Delivered to Consumers","South Carolina","SC",21839 +2012-02-01,"Delivered to Consumers","District of Columbia","DC",3382 +2012-02-01,"Delivered to Consumers","New Mexico","NM",15614 +2012-02-01,"Delivered to Consumers","Rhode Island","RI",10135 +2012-02-01,"Delivered to Consumers","Idaho","ID",9310 +2012-02-01,"Delivered to Consumers","Kentucky","KY",22392 +2012-02-01,"Delivered to Consumers","Arkansas","AR",27039 +2012-02-01,"Delivered to Consumers","Alabama","AL",55921 +2012-02-01,"Delivered to Consumers","New Jersey","NJ",74625 +2012-02-01,"Delivered to Consumers","Arizona","AZ",27002 +2012-02-01,"Delivered to Consumers","Washington","WA",30280 +2012-02-01,"Delivered to Consumers","Florida","FL",89361 +2012-02-01,"Delivered to Consumers","U.S.","U.S.",2319221 +2012-02-01,"Delivered to Consumers","Montana","MT",7515 +2012-02-01,"Delivered to Consumers","Missouri","MO",30990 +2012-02-01,"Delivered to Consumers","Massachusetts","MA",46025 +2012-02-01,"Delivered to Consumers","Nevada","NV",22161 +2012-02-01,"Delivered to Consumers","Louisiana","LA",101038 +2012-02-01,"Delivered to Consumers","Hawaii","HI",218 +2012-02-01,"Delivered to Consumers","Wisconsin","WI",51040 +2012-02-01,"Delivered to Consumers","Oregon","OR",25487 +2012-02-01,"Delivered to Consumers","Georgia","GA",52079 +2012-02-01,"Delivered to Consumers","Illinois","IL",120636 +2012-02-01,"Delivered to Consumers","Alaska","AK",8376 +2012-02-01,"Delivered to Consumers","Kansas","KS",23731 +2012-02-01,"Delivered to Consumers","Ohio","OH",104101 +2012-02-01,"Delivered to Consumers","Connecticut","CT",22749 +2012-02-01,"Delivered to Consumers","Pennsylvania","PA",105056 +2012-02-01,"Delivered to Consumers","Texas","TX",271554 +2012-02-01,"Delivered to Consumers","New Hampshire","NH",7600 +2012-02-01,"Electric Power Consumption","Minnesota","MN",3604 +2012-02-01,"Electric Power Consumption","Nevada","NV",12062 +2012-02-01,"Electric Power Consumption","North Carolina","NC",12898 +2012-02-01,"Electric Power Consumption","New Hampshire","NH",4690 +2012-02-01,"Electric Power Consumption","Georgia","GA",18706 +2012-02-01,"Electric Power Consumption","Alaska","AK",3469 +2012-02-01,"Electric Power Consumption","Texas","TX",98584 +2012-02-01,"Electric Power Consumption","Oregon","OR",10620 +2012-02-01,"Electric Power Consumption","Illinois","IL",5844 +2012-02-01,"Electric Power Consumption","Michigan","MI",13826 +2012-02-01,"Electric Power Consumption","Kansas","KS",1537 +2012-02-01,"Electric Power Consumption","Iowa","IA",503 +2012-02-01,"Electric Power Consumption","Ohio","OH",13986 +2012-02-01,"Electric Power Consumption","Arizona","AZ",15085 +2012-02-01,"Electric Power Consumption","Alabama","AL",34517 +2012-02-01,"Electric Power Consumption","Washington","WA",5246 +2012-02-01,"Electric Power Consumption","New York","NY",31880 +2012-02-01,"Electric Power Consumption","Massachusetts","MA",11812 +2012-02-01,"Electric Power Consumption","Pennsylvania","PA",35221 +2012-02-01,"Electric Power Consumption","Hawaii","HI",NA +2012-02-01,"Electric Power Consumption","North Dakota","ND",NA +2012-02-01,"Electric Power Consumption","Montana","MT",374 +2012-02-01,"Electric Power Consumption","Delaware","DE",3661 +2012-02-01,"Electric Power Consumption","California","CA",65299 +2012-02-01,"Electric Power Consumption","Arkansas","AR",10173 +2012-02-01,"Electric Power Consumption","Rhode Island","RI",5438 +2012-02-01,"Electric Power Consumption","Indiana","IN",10389 +2012-02-01,"Electric Power Consumption","Colorado","CO",6166 +2012-02-01,"Electric Power Consumption","Wisconsin","WI",7845 +2012-02-01,"Electric Power Consumption","Tennessee","TN",1994 +2012-02-01,"Electric Power Consumption","U.S.","U.S.",644530 +2012-02-01,"Electric Power Consumption","Nebraska","NE",54 +2012-02-01,"Electric Power Consumption","Missouri","MO",2530 +2012-02-01,"Electric Power Consumption","Maine","ME",3125 +2012-02-01,"Electric Power Consumption","Kentucky","KY",791 +2012-02-01,"Electric Power Consumption","Virginia","VA",16083 +2012-02-01,"Electric Power Consumption","New Jersey","NJ",14497 +2012-02-01,"Electric Power Consumption","Idaho","ID",1356 +2012-02-01,"Electric Power Consumption","South Carolina","SC",8578 +2012-02-01,"Electric Power Consumption","Wyoming","WY",51 +2012-02-01,"Electric Power Consumption","Mississippi","MS",22451 +2012-02-01,"Electric Power Consumption","Connecticut","CT",7632 +2012-02-01,"Electric Power Consumption","Florida","FL",74712 +2012-02-01,"Electric Power Consumption","Louisiana","LA",17941 +2012-02-01,"Electric Power Consumption","Oklahoma","OK",19984 +2012-02-01,"Electric Power Consumption","Utah","UT",3859 +2012-02-01,"Electric Power Consumption","West Virginia","WV",113 +2012-02-01,"Electric Power Consumption","Vermont","VT",3 +2012-02-01,"Electric Power Consumption","South Dakota","SD",6 +2012-02-01,"Electric Power Consumption","New Mexico","NM",5142 +2012-02-01,"Electric Power Consumption","Maryland","MD",196 +2012-02-01,"Industrial Consumption","Maryland","MD",1948 +2012-02-01,"Industrial Consumption","Hawaii","HI",28 +2012-02-01,"Industrial Consumption","Ohio","OH",25977 +2012-02-01,"Industrial Consumption","Minnesota","MN",14380 +2012-02-01,"Industrial Consumption","Delaware","DE",2537 +2012-02-01,"Industrial Consumption","North Carolina","NC",9092 +2012-02-01,"Industrial Consumption","Oregon","OR",5187 +2012-02-01,"Industrial Consumption","Nevada","NV",972 +2012-02-01,"Industrial Consumption","New Jersey","NJ",5168 +2012-02-01,"Industrial Consumption","Illinois","IL",26478 +2012-02-01,"Industrial Consumption","Montana","MT",1623 +2012-02-01,"Industrial Consumption","Massachusetts","MA",5509 +2012-02-01,"Industrial Consumption","Louisiana","LA",75789 +2012-02-01,"Industrial Consumption","Arizona","AZ",2228 +2012-02-01,"Industrial Consumption","Maine","ME",2696 +2012-02-01,"Industrial Consumption","California","CA",56158 +2012-02-01,"Industrial Consumption","Texas","TX",125122 +2012-02-01,"Industrial Consumption","Virginia","VA",5682 +2012-02-01,"Industrial Consumption","Vermont","VT",287 +2012-02-01,"Industrial Consumption","New Hampshire","NH",687 +2012-02-01,"Industrial Consumption","North Dakota","ND",1898 +2012-02-01,"Industrial Consumption","Oklahoma","OK",14909 +2012-02-01,"Industrial Consumption","New Mexico","NM",1558 +2012-02-01,"Industrial Consumption","Pennsylvania","PA",19273 +2012-02-01,"Industrial Consumption","Wisconsin","WI",12772 +2012-02-01,"Industrial Consumption","Connecticut","CT",2408 +2012-02-01,"Industrial Consumption","District of Columbia","DC",0 +2012-02-01,"Industrial Consumption","Alaska","AK",573 +2012-02-01,"Industrial Consumption","Rhode Island","RI",705 +2012-02-01,"Industrial Consumption","Colorado","CO",8097 +2012-02-01,"Industrial Consumption","Utah","UT",3314 +2012-02-01,"Industrial Consumption","Mississippi","MS",9315 +2012-02-01,"Industrial Consumption","Nebraska","NE",7147 +2012-02-01,"Industrial Consumption","Iowa","IA",14498 +2012-02-01,"Industrial Consumption","Kentucky","KY",9360 +2012-02-01,"Industrial Consumption","Washington","WA",7125 +2012-02-01,"Industrial Consumption","South Dakota","SD",3556 +2012-02-01,"Industrial Consumption","Kansas","KS",9121 +2012-02-01,"Industrial Consumption","Arkansas","AR",7226 +2012-02-01,"Industrial Consumption","South Carolina","SC",6865 +2012-02-01,"Industrial Consumption","Tennessee","TN",9873 +2012-02-01,"Industrial Consumption","Idaho","ID",2588 +2012-02-01,"Industrial Consumption","Florida","FL",7834 +2012-02-01,"Industrial Consumption","Michigan","MI",16778 +2012-02-01,"Industrial Consumption","Indiana","IN",31564 +2012-02-01,"Industrial Consumption","Missouri","MO",6044 +2012-02-01,"Industrial Consumption","U.S.","U.S.",623215 +2012-02-01,"Industrial Consumption","New York","NY",7567 +2012-02-01,"Industrial Consumption","Alabama","AL",14262 +2012-02-01,"Industrial Consumption","West Virginia","WV",2343 +2012-02-01,"Industrial Consumption","Wyoming","WY",4541 +2012-02-01,"Industrial Consumption","Georgia","GA",12554 +2012-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",109038 +2012-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",72395 +2012-02-01,"Residential Consumption","Oregon","OR",5987 +2012-02-01,"Residential Consumption","Michigan","MI",45216 +2012-02-01,"Residential Consumption","Nevada","NV",5815 +2012-02-01,"Residential Consumption","Indiana","IN",19723 +2012-02-01,"Residential Consumption","Florida","FL",1837 +2012-02-01,"Residential Consumption","Kansas","KS",9071 +2012-02-01,"Residential Consumption","Oklahoma","OK",9226 +2012-02-01,"Residential Consumption","Missouri","MO",14422 +2012-02-01,"Residential Consumption","Delaware","DE",1461 +2012-02-01,"Residential Consumption","Rhode Island","RI",2312 +2012-02-01,"Residential Consumption","Mississippi","MS",3013 +2012-02-01,"Residential Consumption","North Dakota","ND",1512 +2012-02-01,"Residential Consumption","New Jersey","NJ",30221 +2012-02-01,"Residential Consumption","Washington","WA",11257 +2012-02-01,"Residential Consumption","Arizona","AZ",5909 +2012-02-01,"Residential Consumption","U.S.","U.S.",662056 +2012-02-01,"Residential Consumption","New York","NY",57566 +2012-02-01,"Residential Consumption","Texas","TX",28000 +2012-02-01,"Residential Consumption","Louisiana","LA",4529 +2012-02-01,"Residential Consumption","Wisconsin","WI",18869 +2012-02-01,"Residential Consumption","Vermont","VT",475 +2012-02-01,"Residential Consumption","Georgia","GA",14381 +2012-02-01,"Residential Consumption","Pennsylvania","PA",32249 +2012-02-01,"Residential Consumption","Alabama","AL",4489 +2012-02-01,"Residential Consumption","Alaska","AK",2334 +2012-02-01,"Residential Consumption","Illinois","IL",60650 +2012-02-01,"Residential Consumption","Maine","ME",221 +2012-02-01,"Residential Consumption","Colorado","CO",22424 +2012-02-01,"Residential Consumption","North Carolina","NC",10105 +2012-02-01,"Residential Consumption","Connecticut","CT",6856 +2012-02-01,"Residential Consumption","Virginia","VA",12212 +2012-02-01,"Residential Consumption","South Dakota","SD",1775 +2012-02-01,"Residential Consumption","Minnesota","MN",17319 +2012-02-01,"Residential Consumption","Massachusetts","MA",17095 +2012-02-01,"Residential Consumption","Arkansas","AR",4658 +2012-02-01,"Residential Consumption","Montana","MT",2807 +2012-02-01,"Residential Consumption","West Virginia","WV",4096 +2012-02-01,"Residential Consumption","South Carolina","SC",3921 +2012-02-01,"Residential Consumption","Ohio","OH",41818 +2012-02-01,"Residential Consumption","Hawaii","HI",41 +2012-02-01,"Residential Consumption","Tennessee","TN",9668 +2012-02-01,"Residential Consumption","Maryland","MD",11275 +2012-02-01,"Residential Consumption","New Mexico","NM",5360 +2012-02-01,"Residential Consumption","New Hampshire","NH",995 +2012-02-01,"Residential Consumption","California","CA",60157 +2012-02-01,"Residential Consumption","Wyoming","WY",1895 +2012-02-01,"Residential Consumption","Utah","UT",9006 +2012-02-01,"Residential Consumption","Nebraska","NE",5613 +2012-02-01,"Residential Consumption","District of Columbia","DC",1591 +2012-02-01,"Residential Consumption","Idaho","ID",3356 +2012-02-01,"Residential Consumption","Iowa","IA",9673 +2012-02-01,"Residential Consumption","Kentucky","KY",7598 +2012-02-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-02-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-02-01,"Vehicle Fuel Consumption","Colorado","CO",22 +2012-02-01,"Vehicle Fuel Consumption","California","CA",1162 +2012-02-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-02-01,"Vehicle Fuel Consumption","Utah","UT",23 +2012-02-01,"Vehicle Fuel Consumption","Virginia","VA",21 +2012-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-02-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2012-02-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2012-02-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-02-01,"Vehicle Fuel Consumption","New York","NY",305 +2012-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",20 +2012-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",2375 +2012-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-02-01,"Vehicle Fuel Consumption","Washington","WA",41 +2012-02-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",15 +2012-02-01,"Vehicle Fuel Consumption","Oregon","OR",11 +2012-02-01,"Vehicle Fuel Consumption","Georgia","GA",87 +2012-02-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2012-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-02-01,"Vehicle Fuel Consumption","New Mexico","NM",20 +2012-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-02-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2012-02-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-02-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-02-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-02-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-02-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2012-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2012-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",60 +2012-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-02-01,"Vehicle Fuel Consumption","Arizona","AZ",135 +2012-02-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-02-01,"Vehicle Fuel Consumption","Texas","TX",175 +2012-02-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-02-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-02-01,"Vehicle Fuel Consumption","Idaho","ID",10 +2012-02-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-02-01,"Vehicle Fuel Consumption","Nevada","NV",47 +2012-02-01,"Vehicle Fuel Consumption","Alabama","AL",15 +2012-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-02-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-02-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2012-02-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2012-02-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-03-01,"Commercial Consumption","South Carolina","SC",1614 +2012-03-01,"Commercial Consumption","North Carolina","NC",3545 +2012-03-01,"Commercial Consumption","Minnesota","MN",7092 +2012-03-01,"Commercial Consumption","Kansas","KS",1965 +2012-03-01,"Commercial Consumption","Arkansas","AR",3860 +2012-03-01,"Commercial Consumption","Nebraska","NE",2354 +2012-03-01,"Commercial Consumption","Louisiana","LA",2126 +2012-03-01,"Commercial Consumption","Wyoming","WY",1026 +2012-03-01,"Commercial Consumption","Utah","UT",3475 +2012-03-01,"Commercial Consumption","Texas","TX",14588 +2012-03-01,"Commercial Consumption","Florida","FL",4938 +2012-03-01,"Commercial Consumption","Ohio","OH",11889 +2012-03-01,"Commercial Consumption","District of Columbia","DC",1532 +2012-03-01,"Commercial Consumption","Rhode Island","RI",1210 +2012-03-01,"Commercial Consumption","Hawaii","HI",160 +2012-03-01,"Commercial Consumption","Alaska","AK",2228 +2012-03-01,"Commercial Consumption","Connecticut","CT",3983 +2012-03-01,"Commercial Consumption","Mississippi","MS",1499 +2012-03-01,"Commercial Consumption","Colorado","CO",5809 +2012-03-01,"Commercial Consumption","New Mexico","NM",2381 +2012-03-01,"Commercial Consumption","Missouri","MO",4030 +2012-03-01,"Commercial Consumption","South Dakota","SD",713 +2012-03-01,"Commercial Consumption","New Jersey","NJ",18484 +2012-03-01,"Commercial Consumption","Maine","ME",759 +2012-03-01,"Commercial Consumption","Maryland","MD",5684 +2012-03-01,"Commercial Consumption","Iowa","IA",4068 +2012-03-01,"Commercial Consumption","Michigan","MI",14288 +2012-03-01,"Commercial Consumption","Illinois","IL",15508 +2012-03-01,"Commercial Consumption","West Virginia","WV",2034 +2012-03-01,"Commercial Consumption","Virginia","VA",3981 +2012-03-01,"Commercial Consumption","New Hampshire","NH",733 +2012-03-01,"Commercial Consumption","U.S.","U.S.",261564 +2012-03-01,"Commercial Consumption","Vermont","VT",246 +2012-03-01,"Commercial Consumption","North Dakota","ND",919 +2012-03-01,"Commercial Consumption","Oklahoma","OK",2496 +2012-03-01,"Commercial Consumption","Montana","MT",2051 +2012-03-01,"Commercial Consumption","Georgia","GA",4188 +2012-03-01,"Commercial Consumption","California","CA",23782 +2012-03-01,"Commercial Consumption","Delaware","DE",897 +2012-03-01,"Commercial Consumption","Nevada","NV",2888 +2012-03-01,"Commercial Consumption","Pennsylvania","PA",10738 +2012-03-01,"Commercial Consumption","Kentucky","KY",2366 +2012-03-01,"Commercial Consumption","New York","NY",24442 +2012-03-01,"Commercial Consumption","Arizona","AZ",3336 +2012-03-01,"Commercial Consumption","Tennessee","TN",3063 +2012-03-01,"Commercial Consumption","Washington","WA",6291 +2012-03-01,"Commercial Consumption","Oregon","OR",3614 +2012-03-01,"Commercial Consumption","Massachusetts","MA",7627 +2012-03-01,"Commercial Consumption","Wisconsin","WI",6606 +2012-03-01,"Commercial Consumption","Idaho","ID",1707 +2012-03-01,"Commercial Consumption","Alabama","AL",1414 +2012-03-01,"Commercial Consumption","Indiana","IN",5340 +2012-03-01,"Delivered to Consumers","U.S.","U.S.",1949890 +2012-03-01,"Delivered to Consumers","Wyoming","WY",6901 +2012-03-01,"Delivered to Consumers","West Virginia","WV",6666 +2012-03-01,"Delivered to Consumers","Hawaii","HI",238 +2012-03-01,"Delivered to Consumers","Michigan","MI",68205 +2012-03-01,"Delivered to Consumers","Kentucky","KY",16750 +2012-03-01,"Delivered to Consumers","Alabama","AL",47983 +2012-03-01,"Delivered to Consumers","California","CA",203370 +2012-03-01,"Delivered to Consumers","Georgia","GA",43088 +2012-03-01,"Delivered to Consumers","North Dakota","ND",4017 +2012-03-01,"Delivered to Consumers","Indiana","IN",55978 +2012-03-01,"Delivered to Consumers","Vermont","VT",846 +2012-03-01,"Delivered to Consumers","Rhode Island","RI",7659 +2012-03-01,"Delivered to Consumers","Idaho","ID",8038 +2012-03-01,"Delivered to Consumers","Tennessee","TN",20230 +2012-03-01,"Delivered to Consumers","Arkansas","AR",20323 +2012-03-01,"Delivered to Consumers","Nebraska","NE",12246 +2012-03-01,"Delivered to Consumers","Texas","TX",272575 +2012-03-01,"Delivered to Consumers","Utah","UT",16575 +2012-03-01,"Delivered to Consumers","Delaware","DE",8383 +2012-03-01,"Delivered to Consumers","South Dakota","SD",4947 +2012-03-01,"Delivered to Consumers","Kansas","KS",17060 +2012-03-01,"Delivered to Consumers","Iowa","IA",23887 +2012-03-01,"Delivered to Consumers","Connecticut","CT",18671 +2012-03-01,"Delivered to Consumers","Louisiana","LA",106019 +2012-03-01,"Delivered to Consumers","New Hampshire","NH",5444 +2012-03-01,"Delivered to Consumers","Alaska","AK",8560 +2012-03-01,"Delivered to Consumers","Oregon","OR",22397 +2012-03-01,"Delivered to Consumers","Maryland","MD",17240 +2012-03-01,"Delivered to Consumers","Missouri","MO",18287 +2012-03-01,"Delivered to Consumers","Massachusetts","MA",36959 +2012-03-01,"Delivered to Consumers","South Carolina","SC",18817 +2012-03-01,"Delivered to Consumers","Maine","ME",5907 +2012-03-01,"Delivered to Consumers","Washington","WA",27281 +2012-03-01,"Delivered to Consumers","District of Columbia","DC",2585 +2012-03-01,"Delivered to Consumers","Ohio","OH",70906 +2012-03-01,"Delivered to Consumers","Mississippi","MS",36755 +2012-03-01,"Delivered to Consumers","Arizona","AZ",25938 +2012-03-01,"Delivered to Consumers","Illinois","IL",74579 +2012-03-01,"Delivered to Consumers","New York","NY",101027 +2012-03-01,"Delivered to Consumers","Wisconsin","WI",32971 +2012-03-01,"Delivered to Consumers","Pennsylvania","PA",78506 +2012-03-01,"Delivered to Consumers","Colorado","CO",29902 +2012-03-01,"Delivered to Consumers","Nevada","NV",20389 +2012-03-01,"Delivered to Consumers","New Jersey","NJ",61194 +2012-03-01,"Delivered to Consumers","Minnesota","MN",33503 +2012-03-01,"Delivered to Consumers","New Mexico","NM",13796 +2012-03-01,"Delivered to Consumers","Montana","MT",5950 +2012-03-01,"Delivered to Consumers","Oklahoma","OK",44783 +2012-03-01,"Delivered to Consumers","Virginia","VA",30696 +2012-03-01,"Delivered to Consumers","North Carolina","NC",27015 +2012-03-01,"Delivered to Consumers","Florida","FL",107851 +2012-03-01,"Electric Power Consumption","New Jersey","NJ",16478 +2012-03-01,"Electric Power Consumption","Pennsylvania","PA",30811 +2012-03-01,"Electric Power Consumption","Vermont","VT",3 +2012-03-01,"Electric Power Consumption","Tennessee","TN",4401 +2012-03-01,"Electric Power Consumption","Arizona","AZ",15876 +2012-03-01,"Electric Power Consumption","Colorado","CO",6048 +2012-03-01,"Electric Power Consumption","New York","NY",31742 +2012-03-01,"Electric Power Consumption","Oklahoma","OK",21762 +2012-03-01,"Electric Power Consumption","Nebraska","NE",87 +2012-03-01,"Electric Power Consumption","Mississippi","MS",24096 +2012-03-01,"Electric Power Consumption","Montana","MT",384 +2012-03-01,"Electric Power Consumption","Florida","FL",92620 +2012-03-01,"Electric Power Consumption","Alabama","AL",29927 +2012-03-01,"Electric Power Consumption","Washington","WA",3270 +2012-03-01,"Electric Power Consumption","New Mexico","NM",6038 +2012-03-01,"Electric Power Consumption","Arkansas","AR",6554 +2012-03-01,"Electric Power Consumption","Utah","UT",4028 +2012-03-01,"Electric Power Consumption","Illinois","IL",6931 +2012-03-01,"Electric Power Consumption","Kansas","KS",1918 +2012-03-01,"Electric Power Consumption","Wisconsin","WI",6048 +2012-03-01,"Electric Power Consumption","Iowa","IA",546 +2012-03-01,"Electric Power Consumption","Maine","ME",2272 +2012-03-01,"Electric Power Consumption","Hawaii","HI",NA +2012-03-01,"Electric Power Consumption","Virginia","VA",15591 +2012-03-01,"Electric Power Consumption","South Carolina","SC",8614 +2012-03-01,"Electric Power Consumption","Michigan","MI",15940 +2012-03-01,"Electric Power Consumption","Nevada","NV",12107 +2012-03-01,"Electric Power Consumption","Wyoming","WY",40 +2012-03-01,"Electric Power Consumption","Georgia","GA",19050 +2012-03-01,"Electric Power Consumption","Louisiana","LA",24102 +2012-03-01,"Electric Power Consumption","Minnesota","MN",3823 +2012-03-01,"Electric Power Consumption","Massachusetts","MA",12937 +2012-03-01,"Electric Power Consumption","U.S.","U.S.",674099 +2012-03-01,"Electric Power Consumption","Kentucky","KY",2167 +2012-03-01,"Electric Power Consumption","North Dakota","ND",0 +2012-03-01,"Electric Power Consumption","Maryland","MD",3375 +2012-03-01,"Electric Power Consumption","Delaware","DE",4348 +2012-03-01,"Electric Power Consumption","California","CA",63258 +2012-03-01,"Electric Power Consumption","Texas","TX",111167 +2012-03-01,"Electric Power Consumption","Connecticut","CT",7960 +2012-03-01,"Electric Power Consumption","Oregon","OR",7402 +2012-03-01,"Electric Power Consumption","South Dakota","SD",2 +2012-03-01,"Electric Power Consumption","Missouri","MO",2903 +2012-03-01,"Electric Power Consumption","Ohio","OH",13403 +2012-03-01,"Electric Power Consumption","New Hampshire","NH",3443 +2012-03-01,"Electric Power Consumption","Alaska","AK",3518 +2012-03-01,"Electric Power Consumption","Idaho","ID",872 +2012-03-01,"Electric Power Consumption","Rhode Island","RI",4098 +2012-03-01,"Electric Power Consumption","West Virginia","WV",113 +2012-03-01,"Electric Power Consumption","North Carolina","NC",10717 +2012-03-01,"Electric Power Consumption","Indiana","IN",11310 +2012-03-01,"Industrial Consumption","North Dakota","ND",2266 +2012-03-01,"Industrial Consumption","Oklahoma","OK",15975 +2012-03-01,"Industrial Consumption","South Dakota","SD",3372 +2012-03-01,"Industrial Consumption","Nebraska","NE",6595 +2012-03-01,"Industrial Consumption","Minnesota","MN",13982 +2012-03-01,"Industrial Consumption","Utah","UT",3055 +2012-03-01,"Industrial Consumption","Nevada","NV",1019 +2012-03-01,"Industrial Consumption","California","CA",59188 +2012-03-01,"Industrial Consumption","Texas","TX",128477 +2012-03-01,"Industrial Consumption","Wisconsin","WI",10843 +2012-03-01,"Industrial Consumption","Tennessee","TN",8778 +2012-03-01,"Industrial Consumption","Iowa","IA",14376 +2012-03-01,"Industrial Consumption","Florida","FL",8813 +2012-03-01,"Industrial Consumption","Alaska","AK",480 +2012-03-01,"Industrial Consumption","Colorado","CO",6389 +2012-03-01,"Industrial Consumption","Arizona","AZ",2094 +2012-03-01,"Industrial Consumption","U.S.","U.S.",608538 +2012-03-01,"Industrial Consumption","Illinois","IL",22391 +2012-03-01,"Industrial Consumption","Rhode Island","RI",572 +2012-03-01,"Industrial Consumption","North Carolina","NC",8638 +2012-03-01,"Industrial Consumption","Montana","MT",1566 +2012-03-01,"Industrial Consumption","Massachusetts","MA",3771 +2012-03-01,"Industrial Consumption","New Mexico","NM",1689 +2012-03-01,"Industrial Consumption","New York","NY",6539 +2012-03-01,"Industrial Consumption","Virginia","VA",6161 +2012-03-01,"Industrial Consumption","Vermont","VT",250 +2012-03-01,"Industrial Consumption","New Jersey","NJ",4579 +2012-03-01,"Industrial Consumption","Louisiana","LA",76833 +2012-03-01,"Industrial Consumption","Washington","WA",7014 +2012-03-01,"Industrial Consumption","Ohio","OH",23312 +2012-03-01,"Industrial Consumption","Wyoming","WY",4615 +2012-03-01,"Industrial Consumption","Idaho","ID",2754 +2012-03-01,"Industrial Consumption","Kentucky","KY",8553 +2012-03-01,"Industrial Consumption","Maryland","MD",1914 +2012-03-01,"Industrial Consumption","Hawaii","HI",32 +2012-03-01,"Industrial Consumption","Missouri","MO",5464 +2012-03-01,"Industrial Consumption","Kansas","KS",8779 +2012-03-01,"Industrial Consumption","Oregon","OR",5474 +2012-03-01,"Industrial Consumption","Maine","ME",2718 +2012-03-01,"Industrial Consumption","New Hampshire","NH",499 +2012-03-01,"Industrial Consumption","District of Columbia","DC",0 +2012-03-01,"Industrial Consumption","Pennsylvania","PA",17650 +2012-03-01,"Industrial Consumption","Mississippi","MS",9400 +2012-03-01,"Industrial Consumption","Michigan","MI",13900 +2012-03-01,"Industrial Consumption","Georgia","GA",12613 +2012-03-01,"Industrial Consumption","Arkansas","AR",6896 +2012-03-01,"Industrial Consumption","Alabama","AL",14418 +2012-03-01,"Industrial Consumption","South Carolina","SC",6834 +2012-03-01,"Industrial Consumption","West Virginia","WV",2559 +2012-03-01,"Industrial Consumption","Connecticut","CT",2417 +2012-03-01,"Industrial Consumption","Indiana","IN",29806 +2012-03-01,"Industrial Consumption","Delaware","DE",2226 +2012-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",117005 +2012-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",60866 +2012-03-01,"Residential Consumption","South Carolina","SC",1753 +2012-03-01,"Residential Consumption","Louisiana","LA",2957 +2012-03-01,"Residential Consumption","Michigan","MI",24049 +2012-03-01,"Residential Consumption","New Mexico","NM",3667 +2012-03-01,"Residential Consumption","Indiana","IN",9521 +2012-03-01,"Residential Consumption","New Jersey","NJ",21637 +2012-03-01,"Residential Consumption","New Hampshire","NH",765 +2012-03-01,"Residential Consumption","Wyoming","WY",1220 +2012-03-01,"Residential Consumption","Ohio","OH",22294 +2012-03-01,"Residential Consumption","Nevada","NV",4325 +2012-03-01,"Residential Consumption","Minnesota","MN",8604 +2012-03-01,"Residential Consumption","Georgia","GA",7144 +2012-03-01,"Residential Consumption","Massachusetts","MA",12560 +2012-03-01,"Residential Consumption","Colorado","CO",11633 +2012-03-01,"Residential Consumption","Kansas","KS",4398 +2012-03-01,"Residential Consumption","Missouri","MO",5891 +2012-03-01,"Residential Consumption","Alaska","AK",2333 +2012-03-01,"Residential Consumption","West Virginia","WV",1961 +2012-03-01,"Residential Consumption","New York","NY",37978 +2012-03-01,"Residential Consumption","Texas","TX",18156 +2012-03-01,"Residential Consumption","Mississippi","MS",1760 +2012-03-01,"Residential Consumption","Tennessee","TN",3986 +2012-03-01,"Residential Consumption","Idaho","ID",2694 +2012-03-01,"Residential Consumption","Kentucky","KY",3664 +2012-03-01,"Residential Consumption","Oklahoma","OK",4528 +2012-03-01,"Residential Consumption","Illinois","IL",29727 +2012-03-01,"Residential Consumption","Virginia","VA",4940 +2012-03-01,"Residential Consumption","Florida","FL",1473 +2012-03-01,"Residential Consumption","Montana","MT",1950 +2012-03-01,"Residential Consumption","Delaware","DE",912 +2012-03-01,"Residential Consumption","Arizona","AZ",4487 +2012-03-01,"Residential Consumption","Alabama","AL",2207 +2012-03-01,"Residential Consumption","Maine","ME",158 +2012-03-01,"Residential Consumption","Rhode Island","RI",1772 +2012-03-01,"Residential Consumption","Connecticut","CT",4309 +2012-03-01,"Residential Consumption","Wisconsin","WI",9470 +2012-03-01,"Residential Consumption","Vermont","VT",347 +2012-03-01,"Residential Consumption","Nebraska","NE",3206 +2012-03-01,"Residential Consumption","Pennsylvania","PA",19282 +2012-03-01,"Residential Consumption","California","CA",55899 +2012-03-01,"Residential Consumption","Oregon","OR",5894 +2012-03-01,"Residential Consumption","North Carolina","NC",4113 +2012-03-01,"Residential Consumption","South Dakota","SD",860 +2012-03-01,"Residential Consumption","District of Columbia","DC",979 +2012-03-01,"Residential Consumption","North Dakota","ND",832 +2012-03-01,"Residential Consumption","Arkansas","AR",3011 +2012-03-01,"Residential Consumption","Iowa","IA",4896 +2012-03-01,"Residential Consumption","Hawaii","HI",45 +2012-03-01,"Residential Consumption","Utah","UT",5993 +2012-03-01,"Residential Consumption","Maryland","MD",6248 +2012-03-01,"Residential Consumption","Washington","WA",10663 +2012-03-01,"Residential Consumption","U.S.","U.S.",403150 +2012-03-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2012-03-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2012-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",64 +2012-03-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-03-01,"Vehicle Fuel Consumption","New York","NY",326 +2012-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2012-03-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-03-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-03-01,"Vehicle Fuel Consumption","Texas","TX",187 +2012-03-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2012-03-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2012-03-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2012-03-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-03-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-03-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-03-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",74 +2012-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-03-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-03-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2012-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-03-01,"Vehicle Fuel Consumption","Washington","WA",43 +2012-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-03-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-03-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2012-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-03-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-03-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-03-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2012-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-03-01,"Vehicle Fuel Consumption","California","CA",1243 +2012-03-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-03-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-03-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2012-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2538 +2012-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-03-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2012-03-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-03-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-03-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-03-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2012-03-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-03-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-03-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2012-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-03-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-04-01,"Commercial Consumption","West Virginia","WV",1568 +2012-04-01,"Commercial Consumption","Maryland","MD",4761 +2012-04-01,"Commercial Consumption","Connecticut","CT",2713 +2012-04-01,"Commercial Consumption","Illinois","IL",13143 +2012-04-01,"Commercial Consumption","Wyoming","WY",732 +2012-04-01,"Commercial Consumption","South Carolina","SC",1578 +2012-04-01,"Commercial Consumption","South Dakota","SD",623 +2012-04-01,"Commercial Consumption","New Jersey","NJ",15299 +2012-04-01,"Commercial Consumption","New York","NY",20064 +2012-04-01,"Commercial Consumption","Tennessee","TN",2821 +2012-04-01,"Commercial Consumption","Oklahoma","OK",1739 +2012-04-01,"Commercial Consumption","Virginia","VA",4262 +2012-04-01,"Commercial Consumption","Missouri","MO",3265 +2012-04-01,"Commercial Consumption","Massachusetts","MA",5743 +2012-04-01,"Commercial Consumption","Florida","FL",4676 +2012-04-01,"Commercial Consumption","Vermont","VT",188 +2012-04-01,"Commercial Consumption","Alaska","AK",1471 +2012-04-01,"Commercial Consumption","Alabama","AL",1435 +2012-04-01,"Commercial Consumption","Mississippi","MS",1238 +2012-04-01,"Commercial Consumption","Utah","UT",2304 +2012-04-01,"Commercial Consumption","Pennsylvania","PA",9604 +2012-04-01,"Commercial Consumption","Wisconsin","WI",5620 +2012-04-01,"Commercial Consumption","Kentucky","KY",1819 +2012-04-01,"Commercial Consumption","U.S.","U.S.",208940 +2012-04-01,"Commercial Consumption","Texas","TX",11855 +2012-04-01,"Commercial Consumption","Kansas","KS",1205 +2012-04-01,"Commercial Consumption","Idaho","ID",1069 +2012-04-01,"Commercial Consumption","Nebraska","NE",1546 +2012-04-01,"Commercial Consumption","Washington","WA",3750 +2012-04-01,"Commercial Consumption","Georgia","GA",3493 +2012-04-01,"Commercial Consumption","Rhode Island","RI",709 +2012-04-01,"Commercial Consumption","California","CA",18780 +2012-04-01,"Commercial Consumption","Minnesota","MN",5974 +2012-04-01,"Commercial Consumption","Colorado","CO",3049 +2012-04-01,"Commercial Consumption","Oregon","OR",2257 +2012-04-01,"Commercial Consumption","Maine","ME",539 +2012-04-01,"Commercial Consumption","Hawaii","HI",155 +2012-04-01,"Commercial Consumption","Arkansas","AR",2785 +2012-04-01,"Commercial Consumption","Delaware","DE",725 +2012-04-01,"Commercial Consumption","Indiana","IN",4058 +2012-04-01,"Commercial Consumption","New Mexico","NM",1229 +2012-04-01,"Commercial Consumption","Ohio","OH",10803 +2012-04-01,"Commercial Consumption","Iowa","IA",2910 +2012-04-01,"Commercial Consumption","Nevada","NV",2435 +2012-04-01,"Commercial Consumption","Michigan","MI",11523 +2012-04-01,"Commercial Consumption","North Dakota","ND",695 +2012-04-01,"Commercial Consumption","North Carolina","NC",3370 +2012-04-01,"Commercial Consumption","New Hampshire","NH",606 +2012-04-01,"Commercial Consumption","Montana","MT",1290 +2012-04-01,"Commercial Consumption","Arizona","AZ",2576 +2012-04-01,"Commercial Consumption","Louisiana","LA",1985 +2012-04-01,"Commercial Consumption","District of Columbia","DC",901 +2012-04-01,"Delivered to Consumers","Montana","MT",4140 +2012-04-01,"Delivered to Consumers","Michigan","MI",66019 +2012-04-01,"Delivered to Consumers","California","CA",176281 +2012-04-01,"Delivered to Consumers","Louisiana","LA",105837 +2012-04-01,"Delivered to Consumers","Minnesota","MN",29793 +2012-04-01,"Delivered to Consumers","Rhode Island","RI",6172 +2012-04-01,"Delivered to Consumers","New York","NY",88046 +2012-04-01,"Delivered to Consumers","Oklahoma","OK",49370 +2012-04-01,"Delivered to Consumers","Idaho","ID",5598 +2012-04-01,"Delivered to Consumers","Connecticut","CT",14924 +2012-04-01,"Delivered to Consumers","Arkansas","AR",21860 +2012-04-01,"Delivered to Consumers","Pennsylvania","PA",73051 +2012-04-01,"Delivered to Consumers","Oregon","OR",13639 +2012-04-01,"Delivered to Consumers","North Dakota","ND",3239 +2012-04-01,"Delivered to Consumers","Indiana","IN",44826 +2012-04-01,"Delivered to Consumers","Iowa","IA",20339 +2012-04-01,"Delivered to Consumers","Arizona","AZ",24807 +2012-04-01,"Delivered to Consumers","District of Columbia","DC",1639 +2012-04-01,"Delivered to Consumers","U.S.","U.S.",1784460 +2012-04-01,"Delivered to Consumers","West Virginia","WV",6072 +2012-04-01,"Delivered to Consumers","Illinois","IL",68161 +2012-04-01,"Delivered to Consumers","South Dakota","SD",4559 +2012-04-01,"Delivered to Consumers","Maryland","MD",19953 +2012-04-01,"Delivered to Consumers","Tennessee","TN",19577 +2012-04-01,"Delivered to Consumers","Ohio","OH",62244 +2012-04-01,"Delivered to Consumers","Colorado","CO",20386 +2012-04-01,"Delivered to Consumers","New Hampshire","NH",4671 +2012-04-01,"Delivered to Consumers","Florida","FL",106343 +2012-04-01,"Delivered to Consumers","New Mexico","NM",10505 +2012-04-01,"Delivered to Consumers","Wyoming","WY",5483 +2012-04-01,"Delivered to Consumers","Kansas","KS",14292 +2012-04-01,"Delivered to Consumers","Alabama","AL",47693 +2012-04-01,"Delivered to Consumers","Virginia","VA",22639 +2012-04-01,"Delivered to Consumers","Nebraska","NE",9837 +2012-04-01,"Delivered to Consumers","North Carolina","NC",24502 +2012-04-01,"Delivered to Consumers","Massachusetts","MA",29210 +2012-04-01,"Delivered to Consumers","Nevada","NV",17377 +2012-04-01,"Delivered to Consumers","Washington","WA",17724 +2012-04-01,"Delivered to Consumers","Utah","UT",12542 +2012-04-01,"Delivered to Consumers","Vermont","VT",681 +2012-04-01,"Delivered to Consumers","Hawaii","HI",242 +2012-04-01,"Delivered to Consumers","Mississippi","MS",35932 +2012-04-01,"Delivered to Consumers","Texas","TX",277545 +2012-04-01,"Delivered to Consumers","Delaware","DE",8786 +2012-04-01,"Delivered to Consumers","Alaska","AK",6590 +2012-04-01,"Delivered to Consumers","Kentucky","KY",18386 +2012-04-01,"Delivered to Consumers","Wisconsin","WI",30787 +2012-04-01,"Delivered to Consumers","Missouri","MO",15137 +2012-04-01,"Delivered to Consumers","South Carolina","SC",17012 +2012-04-01,"Delivered to Consumers","New Jersey","NJ",52080 +2012-04-01,"Delivered to Consumers","Maine","ME",4014 +2012-04-01,"Delivered to Consumers","Georgia","GA",43920 +2012-04-01,"Electric Power Consumption","Colorado","CO",5964 +2012-04-01,"Electric Power Consumption","Wyoming","WY",52 +2012-04-01,"Electric Power Consumption","Tennessee","TN",5262 +2012-04-01,"Electric Power Consumption","North Dakota","ND",NA +2012-04-01,"Electric Power Consumption","New York","NY",34351 +2012-04-01,"Electric Power Consumption","Texas","TX",132297 +2012-04-01,"Electric Power Consumption","Oklahoma","OK",30147 +2012-04-01,"Electric Power Consumption","Alaska","AK",3412 +2012-04-01,"Electric Power Consumption","New Mexico","NM",5954 +2012-04-01,"Electric Power Consumption","Missouri","MO",3324 +2012-04-01,"Electric Power Consumption","Ohio","OH",11636 +2012-04-01,"Electric Power Consumption","Maryland","MD",8736 +2012-04-01,"Electric Power Consumption","Arizona","AZ",17556 +2012-04-01,"Electric Power Consumption","Alabama","AL",31146 +2012-04-01,"Electric Power Consumption","Washington","WA",1547 +2012-04-01,"Electric Power Consumption","New Jersey","NJ",17258 +2012-04-01,"Electric Power Consumption","Louisiana","LA",26867 +2012-04-01,"Electric Power Consumption","Oregon","OR",3321 +2012-04-01,"Electric Power Consumption","Massachusetts","MA",11942 +2012-04-01,"Electric Power Consumption","Iowa","IA",509 +2012-04-01,"Electric Power Consumption","South Dakota","SD",21 +2012-04-01,"Electric Power Consumption","Mississippi","MS",24548 +2012-04-01,"Electric Power Consumption","Delaware","DE",5345 +2012-04-01,"Electric Power Consumption","Florida","FL",92374 +2012-04-01,"Electric Power Consumption","Virginia","VA",8832 +2012-04-01,"Electric Power Consumption","Illinois","IL",8032 +2012-04-01,"Electric Power Consumption","Michigan","MI",20448 +2012-04-01,"Electric Power Consumption","Kansas","KS",2417 +2012-04-01,"Electric Power Consumption","Pennsylvania","PA",32457 +2012-04-01,"Electric Power Consumption","Connecticut","CT",7155 +2012-04-01,"Electric Power Consumption","Georgia","GA",23144 +2012-04-01,"Electric Power Consumption","California","CA",59439 +2012-04-01,"Electric Power Consumption","Utah","UT",3331 +2012-04-01,"Electric Power Consumption","Minnesota","MN",4652 +2012-04-01,"Electric Power Consumption","Nevada","NV",11342 +2012-04-01,"Electric Power Consumption","U.S.","U.S.",714338 +2012-04-01,"Electric Power Consumption","Kentucky","KY",6076 +2012-04-01,"Electric Power Consumption","Montana","MT",369 +2012-04-01,"Electric Power Consumption","Indiana","IN",7267 +2012-04-01,"Electric Power Consumption","Arkansas","AR",11312 +2012-04-01,"Electric Power Consumption","Vermont","VT",3 +2012-04-01,"Electric Power Consumption","Hawaii","HI",NA +2012-04-01,"Electric Power Consumption","Idaho","ID",530 +2012-04-01,"Electric Power Consumption","South Carolina","SC",8175 +2012-04-01,"Electric Power Consumption","Rhode Island","RI",3941 +2012-04-01,"Electric Power Consumption","West Virginia","WV",165 +2012-04-01,"Electric Power Consumption","Wisconsin","WI",6599 +2012-04-01,"Electric Power Consumption","Nebraska","NE",241 +2012-04-01,"Electric Power Consumption","North Carolina","NC",10778 +2012-04-01,"Electric Power Consumption","Maine","ME",989 +2012-04-01,"Electric Power Consumption","New Hampshire","NH",3076 +2012-04-01,"Industrial Consumption","Hawaii","HI",41 +2012-04-01,"Industrial Consumption","Ohio","OH",21949 +2012-04-01,"Industrial Consumption","New Mexico","NM",1527 +2012-04-01,"Industrial Consumption","Arizona","AZ",1923 +2012-04-01,"Industrial Consumption","Maine","ME",2384 +2012-04-01,"Industrial Consumption","Alabama","AL",13768 +2012-04-01,"Industrial Consumption","North Carolina","NC",8003 +2012-04-01,"Industrial Consumption","Massachusetts","MA",3418 +2012-04-01,"Industrial Consumption","Louisiana","LA",75275 +2012-04-01,"Industrial Consumption","Washington","WA",6606 +2012-04-01,"Industrial Consumption","Pennsylvania","PA",16646 +2012-04-01,"Industrial Consumption","Oregon","OR",4718 +2012-04-01,"Industrial Consumption","Nevada","NV",834 +2012-04-01,"Industrial Consumption","Mississippi","MS",9194 +2012-04-01,"Industrial Consumption","California","CA",58287 +2012-04-01,"Industrial Consumption","Nebraska","NE",6571 +2012-04-01,"Industrial Consumption","Vermont","VT",231 +2012-04-01,"Industrial Consumption","Wyoming","WY",3900 +2012-04-01,"Industrial Consumption","Iowa","IA",13581 +2012-04-01,"Industrial Consumption","Kentucky","KY",8391 +2012-04-01,"Industrial Consumption","Indiana","IN",26643 +2012-04-01,"Industrial Consumption","Rhode Island","RI",503 +2012-04-01,"Industrial Consumption","District of Columbia","DC",0 +2012-04-01,"Industrial Consumption","Alaska","AK",239 +2012-04-01,"Industrial Consumption","Missouri","MO",4879 +2012-04-01,"Industrial Consumption","Wisconsin","WI",9941 +2012-04-01,"Industrial Consumption","Minnesota","MN",12267 +2012-04-01,"Industrial Consumption","Montana","MT",1145 +2012-04-01,"Industrial Consumption","Colorado","CO",5446 +2012-04-01,"Industrial Consumption","Utah","UT",3132 +2012-04-01,"Industrial Consumption","Texas","TX",124613 +2012-04-01,"Industrial Consumption","South Carolina","SC",6421 +2012-04-01,"Industrial Consumption","Delaware","DE",2112 +2012-04-01,"Industrial Consumption","South Dakota","SD",3270 +2012-04-01,"Industrial Consumption","Kansas","KS",8457 +2012-04-01,"Industrial Consumption","Virginia","VA",5331 +2012-04-01,"Industrial Consumption","New Jersey","NJ",4385 +2012-04-01,"Industrial Consumption","New Hampshire","NH",523 +2012-04-01,"Industrial Consumption","Florida","FL",8096 +2012-04-01,"Industrial Consumption","Illinois","IL",21722 +2012-04-01,"Industrial Consumption","Maryland","MD",1937 +2012-04-01,"Industrial Consumption","U.S.","U.S.",579515 +2012-04-01,"Industrial Consumption","New York","NY",6771 +2012-04-01,"Industrial Consumption","Tennessee","TN",9344 +2012-04-01,"Industrial Consumption","North Dakota","ND",1924 +2012-04-01,"Industrial Consumption","Arkansas","AR",6614 +2012-04-01,"Industrial Consumption","West Virginia","WV",2433 +2012-04-01,"Industrial Consumption","Michigan","MI",12388 +2012-04-01,"Industrial Consumption","Oklahoma","OK",15276 +2012-04-01,"Industrial Consumption","Idaho","ID",2387 +2012-04-01,"Industrial Consumption","Connecticut","CT",2038 +2012-04-01,"Industrial Consumption","Georgia","GA",12029 +2012-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",112909 +2012-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",55702 +2012-04-01,"Residential Consumption","Connecticut","CT",3016 +2012-04-01,"Residential Consumption","Massachusetts","MA",8046 +2012-04-01,"Residential Consumption","Kentucky","KY",2100 +2012-04-01,"Residential Consumption","Arizona","AZ",2612 +2012-04-01,"Residential Consumption","Alaska","AK",1467 +2012-04-01,"Residential Consumption","Wyoming","WY",797 +2012-04-01,"Residential Consumption","Georgia","GA",5164 +2012-04-01,"Residential Consumption","Maine","ME",103 +2012-04-01,"Residential Consumption","Alabama","AL",1328 +2012-04-01,"Residential Consumption","Mississippi","MS",952 +2012-04-01,"Residential Consumption","Tennessee","TN",2149 +2012-04-01,"Residential Consumption","Nebraska","NE",1476 +2012-04-01,"Residential Consumption","Michigan","MI",21633 +2012-04-01,"Residential Consumption","Maryland","MD",4500 +2012-04-01,"Residential Consumption","Nevada","NV",2717 +2012-04-01,"Residential Consumption","Pennsylvania","PA",14320 +2012-04-01,"Residential Consumption","Arkansas","AR",1147 +2012-04-01,"Residential Consumption","Missouri","MO",3669 +2012-04-01,"Residential Consumption","West Virginia","WV",1907 +2012-04-01,"Residential Consumption","New York","NY",26544 +2012-04-01,"Residential Consumption","Texas","TX",8599 +2012-04-01,"Residential Consumption","Vermont","VT",258 +2012-04-01,"Residential Consumption","District of Columbia","DC",666 +2012-04-01,"Residential Consumption","Florida","FL",1190 +2012-04-01,"Residential Consumption","Delaware","DE",604 +2012-04-01,"Residential Consumption","Louisiana","LA",1709 +2012-04-01,"Residential Consumption","Kansas","KS",2212 +2012-04-01,"Residential Consumption","Washington","WA",5779 +2012-04-01,"Residential Consumption","California","CA",38572 +2012-04-01,"Residential Consumption","U.S.","U.S.",279211 +2012-04-01,"Residential Consumption","Rhode Island","RI",1012 +2012-04-01,"Residential Consumption","Oregon","OR",3331 +2012-04-01,"Residential Consumption","North Carolina","NC",2349 +2012-04-01,"Residential Consumption","Iowa","IA",3339 +2012-04-01,"Residential Consumption","Hawaii","HI",46 +2012-04-01,"Residential Consumption","Virginia","VA",4192 +2012-04-01,"Residential Consumption","South Dakota","SD",643 +2012-04-01,"Residential Consumption","Minnesota","MN",6899 +2012-04-01,"Residential Consumption","New Mexico","NM",1775 +2012-04-01,"Residential Consumption","Indiana","IN",6856 +2012-04-01,"Residential Consumption","Idaho","ID",1602 +2012-04-01,"Residential Consumption","New Hampshire","NH",463 +2012-04-01,"Residential Consumption","Montana","MT",1336 +2012-04-01,"Residential Consumption","Oklahoma","OK",2188 +2012-04-01,"Residential Consumption","Ohio","OH",17849 +2012-04-01,"Residential Consumption","Utah","UT",3752 +2012-04-01,"Residential Consumption","North Dakota","ND",621 +2012-04-01,"Residential Consumption","New Jersey","NJ",15121 +2012-04-01,"Residential Consumption","Colorado","CO",5903 +2012-04-01,"Residential Consumption","South Carolina","SC",836 +2012-04-01,"Residential Consumption","Wisconsin","WI",8622 +2012-04-01,"Residential Consumption","Illinois","IL",25243 +2012-04-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-04-01,"Vehicle Fuel Consumption","Nevada","NV",48 +2012-04-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-04-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-04-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-04-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-04-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-04-01,"Vehicle Fuel Consumption","Arizona","AZ",140 +2012-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-04-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-04-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2012-04-01,"Vehicle Fuel Consumption","New York","NY",316 +2012-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2012-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-04-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2012-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-04-01,"Vehicle Fuel Consumption","California","CA",1203 +2012-04-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-04-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2012-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-04-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2012-04-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2012-04-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-04-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2012-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-04-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-04-01,"Vehicle Fuel Consumption","Washington","WA",42 +2012-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-04-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2012-04-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-04-01,"Vehicle Fuel Consumption","Texas","TX",181 +2012-04-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-04-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-04-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-04-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2012-04-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2012-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2457 +2012-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-04-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-04-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-04-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2012-04-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-04-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-04-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2012-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2012-04-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-05-01,"Commercial Consumption","Oklahoma","OK",1546 +2012-05-01,"Commercial Consumption","Virginia","VA",2821 +2012-05-01,"Commercial Consumption","New Hampshire","NH",404 +2012-05-01,"Commercial Consumption","Kansas","KS",983 +2012-05-01,"Commercial Consumption","Connecticut","CT",2104 +2012-05-01,"Commercial Consumption","Arkansas","AR",2475 +2012-05-01,"Commercial Consumption","South Carolina","SC",1200 +2012-05-01,"Commercial Consumption","U.S.","U.S.",149137 +2012-05-01,"Commercial Consumption","Texas","TX",9808 +2012-05-01,"Commercial Consumption","Illinois","IL",8011 +2012-05-01,"Commercial Consumption","Washington","WA",3142 +2012-05-01,"Commercial Consumption","Utah","UT",1925 +2012-05-01,"Commercial Consumption","New Mexico","NM",1019 +2012-05-01,"Commercial Consumption","Oregon","OR",1676 +2012-05-01,"Commercial Consumption","Kentucky","KY",1190 +2012-05-01,"Commercial Consumption","Ohio","OH",6123 +2012-05-01,"Commercial Consumption","Iowa","IA",2145 +2012-05-01,"Commercial Consumption","Alaska","AK",1084 +2012-05-01,"Commercial Consumption","North Carolina","NC",2205 +2012-05-01,"Commercial Consumption","Rhode Island","RI",428 +2012-05-01,"Commercial Consumption","Hawaii","HI",159 +2012-05-01,"Commercial Consumption","Alabama","AL",1065 +2012-05-01,"Commercial Consumption","Delaware","DE",463 +2012-05-01,"Commercial Consumption","Tennessee","TN",2015 +2012-05-01,"Commercial Consumption","Minnesota","MN",3169 +2012-05-01,"Commercial Consumption","Colorado","CO",1960 +2012-05-01,"Commercial Consumption","Pennsylvania","PA",4725 +2012-05-01,"Commercial Consumption","Massachusetts","MA",3589 +2012-05-01,"Commercial Consumption","Wisconsin","WI",3151 +2012-05-01,"Commercial Consumption","South Dakota","SD",396 +2012-05-01,"Commercial Consumption","Montana","MT",997 +2012-05-01,"Commercial Consumption","Maryland","MD",3229 +2012-05-01,"Commercial Consumption","Arizona","AZ",2171 +2012-05-01,"Commercial Consumption","Michigan","MI",6100 +2012-05-01,"Commercial Consumption","Wyoming","WY",554 +2012-05-01,"Commercial Consumption","Maine","ME",386 +2012-05-01,"Commercial Consumption","Vermont","VT",96 +2012-05-01,"Commercial Consumption","California","CA",17026 +2012-05-01,"Commercial Consumption","Louisiana","LA",1787 +2012-05-01,"Commercial Consumption","North Dakota","ND",401 +2012-05-01,"Commercial Consumption","Missouri","MO",2368 +2012-05-01,"Commercial Consumption","Georgia","GA",2871 +2012-05-01,"Commercial Consumption","Idaho","ID",871 +2012-05-01,"Commercial Consumption","New York","NY",14138 +2012-05-01,"Commercial Consumption","Mississippi","MS",1043 +2012-05-01,"Commercial Consumption","Nevada","NV",1926 +2012-05-01,"Commercial Consumption","West Virginia","WV",1231 +2012-05-01,"Commercial Consumption","New Jersey","NJ",12076 +2012-05-01,"Commercial Consumption","Florida","FL",4265 +2012-05-01,"Commercial Consumption","Nebraska","NE",1323 +2012-05-01,"Commercial Consumption","Indiana","IN",2398 +2012-05-01,"Commercial Consumption","District of Columbia","DC",902 +2012-05-01,"Delivered to Consumers","New Mexico","NM",10017 +2012-05-01,"Delivered to Consumers","West Virginia","WV",4193 +2012-05-01,"Delivered to Consumers","Massachusetts","MA",25959 +2012-05-01,"Delivered to Consumers","Nevada","NV",21426 +2012-05-01,"Delivered to Consumers","Illinois","IL",46112 +2012-05-01,"Delivered to Consumers","Idaho","ID",4731 +2012-05-01,"Delivered to Consumers","Tennessee","TN",18411 +2012-05-01,"Delivered to Consumers","Kentucky","KY",15760 +2012-05-01,"Delivered to Consumers","Texas","TX",281571 +2012-05-01,"Delivered to Consumers","Arizona","AZ",22654 +2012-05-01,"Delivered to Consumers","New Hampshire","NH",5718 +2012-05-01,"Delivered to Consumers","District of Columbia","DC",1278 +2012-05-01,"Delivered to Consumers","Wyoming","WY",4935 +2012-05-01,"Delivered to Consumers","Oklahoma","OK",50698 +2012-05-01,"Delivered to Consumers","Michigan","MI",44822 +2012-05-01,"Delivered to Consumers","Alabama","AL",54458 +2012-05-01,"Delivered to Consumers","South Carolina","SC",19635 +2012-05-01,"Delivered to Consumers","North Dakota","ND",2638 +2012-05-01,"Delivered to Consumers","Minnesota","MN",24602 +2012-05-01,"Delivered to Consumers","Hawaii","HI",235 +2012-05-01,"Delivered to Consumers","Connecticut","CT",13051 +2012-05-01,"Delivered to Consumers","Wisconsin","WI",25531 +2012-05-01,"Delivered to Consumers","Maine","ME",3587 +2012-05-01,"Delivered to Consumers","Louisiana","LA",117614 +2012-05-01,"Delivered to Consumers","Florida","FL",120137 +2012-05-01,"Delivered to Consumers","U.S.","U.S.",1703507 +2012-05-01,"Delivered to Consumers","Indiana","IN",44151 +2012-05-01,"Delivered to Consumers","South Dakota","SD",4177 +2012-05-01,"Delivered to Consumers","Ohio","OH",51853 +2012-05-01,"Delivered to Consumers","Arkansas","AR",21290 +2012-05-01,"Delivered to Consumers","North Carolina","NC",24744 +2012-05-01,"Delivered to Consumers","Colorado","CO",18864 +2012-05-01,"Delivered to Consumers","New Jersey","NJ",46657 +2012-05-01,"Delivered to Consumers","Georgia","GA",48474 +2012-05-01,"Delivered to Consumers","Washington","WA",14329 +2012-05-01,"Delivered to Consumers","Utah","UT",11730 +2012-05-01,"Delivered to Consumers","Delaware","DE",7827 +2012-05-01,"Delivered to Consumers","Maryland","MD",15653 +2012-05-01,"Delivered to Consumers","Alaska","AK",5786 +2012-05-01,"Delivered to Consumers","Pennsylvania","PA",58008 +2012-05-01,"Delivered to Consumers","Mississippi","MS",41267 +2012-05-01,"Delivered to Consumers","California","CA",165375 +2012-05-01,"Delivered to Consumers","Vermont","VT",403 +2012-05-01,"Delivered to Consumers","Rhode Island","RI",7282 +2012-05-01,"Delivered to Consumers","New York","NY",77143 +2012-05-01,"Delivered to Consumers","Montana","MT",3702 +2012-05-01,"Delivered to Consumers","Kansas","KS",16016 +2012-05-01,"Delivered to Consumers","Iowa","IA",18483 +2012-05-01,"Delivered to Consumers","Virginia","VA",25900 +2012-05-01,"Delivered to Consumers","Nebraska","NE",9954 +2012-05-01,"Delivered to Consumers","Missouri","MO",14515 +2012-05-01,"Delivered to Consumers","Oregon","OR",10150 +2012-05-01,"Electric Power Consumption","Oregon","OR",1492 +2012-05-01,"Electric Power Consumption","Missouri","MO",5193 +2012-05-01,"Electric Power Consumption","New Hampshire","NH",4556 +2012-05-01,"Electric Power Consumption","Maryland","MD",8620 +2012-05-01,"Electric Power Consumption","Idaho","ID",197 +2012-05-01,"Electric Power Consumption","New York","NY",41947 +2012-05-01,"Electric Power Consumption","Illinois","IL",6809 +2012-05-01,"Electric Power Consumption","Maine","ME",879 +2012-05-01,"Electric Power Consumption","California","CA",59554 +2012-05-01,"Electric Power Consumption","Washington","WA",896 +2012-05-01,"Electric Power Consumption","Arkansas","AR",11660 +2012-05-01,"Electric Power Consumption","South Carolina","SC",11140 +2012-05-01,"Electric Power Consumption","Michigan","MI",19353 +2012-05-01,"Electric Power Consumption","Tennessee","TN",6334 +2012-05-01,"Electric Power Consumption","South Dakota","SD",95 +2012-05-01,"Electric Power Consumption","Delaware","DE",5027 +2012-05-01,"Electric Power Consumption","Georgia","GA",29164 +2012-05-01,"Electric Power Consumption","Alabama","AL",37974 +2012-05-01,"Electric Power Consumption","Rhode Island","RI",5581 +2012-05-01,"Electric Power Consumption","Nebraska","NE",681 +2012-05-01,"Electric Power Consumption","North Dakota","ND",0 +2012-05-01,"Electric Power Consumption","Arizona","AZ",16742 +2012-05-01,"Electric Power Consumption","New Jersey","NJ",22292 +2012-05-01,"Electric Power Consumption","Colorado","CO",8061 +2012-05-01,"Electric Power Consumption","Nevada","NV",16874 +2012-05-01,"Electric Power Consumption","Wyoming","WY",36 +2012-05-01,"Electric Power Consumption","North Carolina","NC",13077 +2012-05-01,"Electric Power Consumption","Ohio","OH",14972 +2012-05-01,"Electric Power Consumption","Indiana","IN",11154 +2012-05-01,"Electric Power Consumption","Florida","FL",106171 +2012-05-01,"Electric Power Consumption","Virginia","VA",15240 +2012-05-01,"Electric Power Consumption","Louisiana","LA",34074 +2012-05-01,"Electric Power Consumption","Texas","TX",141302 +2012-05-01,"Electric Power Consumption","Oklahoma","OK",32053 +2012-05-01,"Electric Power Consumption","Utah","UT",3954 +2012-05-01,"Electric Power Consumption","Kansas","KS",4335 +2012-05-01,"Electric Power Consumption","Mississippi","MS",30403 +2012-05-01,"Electric Power Consumption","Hawaii","HI",NA +2012-05-01,"Electric Power Consumption","Wisconsin","WI",9836 +2012-05-01,"Electric Power Consumption","Iowa","IA",1233 +2012-05-01,"Electric Power Consumption","Vermont","VT",3 +2012-05-01,"Electric Power Consumption","Montana","MT",435 +2012-05-01,"Electric Power Consumption","Connecticut","CT",7310 +2012-05-01,"Electric Power Consumption","New Mexico","NM",6232 +2012-05-01,"Electric Power Consumption","Minnesota","MN",6060 +2012-05-01,"Electric Power Consumption","Massachusetts","MA",14515 +2012-05-01,"Electric Power Consumption","West Virginia","WV",287 +2012-05-01,"Electric Power Consumption","Pennsylvania","PA",30222 +2012-05-01,"Electric Power Consumption","U.S.","U.S.",812467 +2012-05-01,"Electric Power Consumption","Kentucky","KY",5254 +2012-05-01,"Electric Power Consumption","Alaska","AK",3188 +2012-05-01,"Industrial Consumption","Massachusetts","MA",2463 +2012-05-01,"Industrial Consumption","Colorado","CO",5074 +2012-05-01,"Industrial Consumption","Utah","UT",3004 +2012-05-01,"Industrial Consumption","Maine","ME",2255 +2012-05-01,"Industrial Consumption","Illinois","IL",19563 +2012-05-01,"Industrial Consumption","Hawaii","HI",35 +2012-05-01,"Industrial Consumption","South Carolina","SC",6641 +2012-05-01,"Industrial Consumption","Alaska","AK",458 +2012-05-01,"Industrial Consumption","Montana","MT",1288 +2012-05-01,"Industrial Consumption","Ohio","OH",20826 +2012-05-01,"Industrial Consumption","Arizona","AZ",1941 +2012-05-01,"Industrial Consumption","Oregon","OR",4764 +2012-05-01,"Industrial Consumption","Virginia","VA",5634 +2012-05-01,"Industrial Consumption","Iowa","IA",13314 +2012-05-01,"Industrial Consumption","North Carolina","NC",8008 +2012-05-01,"Industrial Consumption","Oklahoma","OK",15518 +2012-05-01,"Industrial Consumption","South Dakota","SD",3255 +2012-05-01,"Industrial Consumption","New Mexico","NM",1577 +2012-05-01,"Industrial Consumption","Nevada","NV",802 +2012-05-01,"Industrial Consumption","Alabama","AL",14510 +2012-05-01,"Industrial Consumption","West Virginia","WV",2217 +2012-05-01,"Industrial Consumption","New Hampshire","NH",468 +2012-05-01,"Industrial Consumption","Connecticut","CT",1960 +2012-05-01,"Industrial Consumption","Georgia","GA",12539 +2012-05-01,"Industrial Consumption","Kansas","KS",9199 +2012-05-01,"Industrial Consumption","U.S.","U.S.",576282 +2012-05-01,"Industrial Consumption","Pennsylvania","PA",15579 +2012-05-01,"Industrial Consumption","Mississippi","MS",9173 +2012-05-01,"Industrial Consumption","Arkansas","AR",6350 +2012-05-01,"Industrial Consumption","Wyoming","WY",3784 +2012-05-01,"Industrial Consumption","Florida","FL",8700 +2012-05-01,"Industrial Consumption","Michigan","MI",11566 +2012-05-01,"Industrial Consumption","Kentucky","KY",8152 +2012-05-01,"Industrial Consumption","District of Columbia","DC",0 +2012-05-01,"Industrial Consumption","Texas","TX",123935 +2012-05-01,"Industrial Consumption","Nebraska","NE",6759 +2012-05-01,"Industrial Consumption","New Jersey","NJ",3855 +2012-05-01,"Industrial Consumption","Rhode Island","RI",652 +2012-05-01,"Industrial Consumption","North Dakota","ND",1880 +2012-05-01,"Industrial Consumption","Missouri","MO",4618 +2012-05-01,"Industrial Consumption","Louisiana","LA",80282 +2012-05-01,"Industrial Consumption","Washington","WA",6237 +2012-05-01,"Industrial Consumption","New York","NY",5450 +2012-05-01,"Industrial Consumption","Wisconsin","WI",8828 +2012-05-01,"Industrial Consumption","Tennessee","TN",8630 +2012-05-01,"Industrial Consumption","Minnesota","MN",11905 +2012-05-01,"Industrial Consumption","Delaware","DE",2005 +2012-05-01,"Industrial Consumption","Maryland","MD",1761 +2012-05-01,"Industrial Consumption","California","CA",58824 +2012-05-01,"Industrial Consumption","Vermont","VT",178 +2012-05-01,"Industrial Consumption","Idaho","ID",2533 +2012-05-01,"Industrial Consumption","Indiana","IN",27330 +2012-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",117153 +2012-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",53175 +2012-05-01,"Residential Consumption","Hawaii","HI",41 +2012-05-01,"Residential Consumption","District of Columbia","DC",303 +2012-05-01,"Residential Consumption","California","CA",28728 +2012-05-01,"Residential Consumption","Wyoming","WY",560 +2012-05-01,"Residential Consumption","Ohio","OH",9925 +2012-05-01,"Residential Consumption","Wisconsin","WI",3711 +2012-05-01,"Residential Consumption","Maryland","MD",2024 +2012-05-01,"Residential Consumption","South Dakota","SD",430 +2012-05-01,"Residential Consumption","Georgia","GA",3808 +2012-05-01,"Residential Consumption","Massachusetts","MA",5328 +2012-05-01,"Residential Consumption","Rhode Island","RI",613 +2012-05-01,"Residential Consumption","Mississippi","MS",648 +2012-05-01,"Residential Consumption","Vermont","VT",126 +2012-05-01,"Residential Consumption","Nebraska","NE",1187 +2012-05-01,"Residential Consumption","Michigan","MI",7775 +2012-05-01,"Residential Consumption","Minnesota","MN",3467 +2012-05-01,"Residential Consumption","Idaho","ID",1119 +2012-05-01,"Residential Consumption","Arkansas","AR",804 +2012-05-01,"Residential Consumption","Colorado","CO",3745 +2012-05-01,"Residential Consumption","Washington","WA",4010 +2012-05-01,"Residential Consumption","U.S.","U.S.",163083 +2012-05-01,"Residential Consumption","Texas","TX",6339 +2012-05-01,"Residential Consumption","North Carolina","NC",1452 +2012-05-01,"Residential Consumption","Iowa","IA",1791 +2012-05-01,"Residential Consumption","Kentucky","KY",1165 +2012-05-01,"Residential Consumption","Oregon","OR",2205 +2012-05-01,"Residential Consumption","Tennessee","TN",1431 +2012-05-01,"Residential Consumption","Nevada","NV",1774 +2012-05-01,"Residential Consumption","New Mexico","NM",1168 +2012-05-01,"Residential Consumption","Kansas","KS",1499 +2012-05-01,"Residential Consumption","Missouri","MO",2336 +2012-05-01,"Residential Consumption","Arizona","AZ",1656 +2012-05-01,"Residential Consumption","South Carolina","SC",653 +2012-05-01,"Residential Consumption","Connecticut","CT",1674 +2012-05-01,"Residential Consumption","Virginia","VA",2181 +2012-05-01,"Residential Consumption","Utah","UT",2822 +2012-05-01,"Residential Consumption","Pennsylvania","PA",7457 +2012-05-01,"Residential Consumption","Indiana","IN",3268 +2012-05-01,"Residential Consumption","North Dakota","ND",357 +2012-05-01,"Residential Consumption","New Hampshire","NH",287 +2012-05-01,"Residential Consumption","Montana","MT",983 +2012-05-01,"Residential Consumption","Louisiana","LA",1471 +2012-05-01,"Residential Consumption","Maine","ME",67 +2012-05-01,"Residential Consumption","West Virginia","WV",458 +2012-05-01,"Residential Consumption","Florida","FL",995 +2012-05-01,"Residential Consumption","New Jersey","NJ",8417 +2012-05-01,"Residential Consumption","Oklahoma","OK",1558 +2012-05-01,"Residential Consumption","Delaware","DE",332 +2012-05-01,"Residential Consumption","Alabama","AL",893 +2012-05-01,"Residential Consumption","Alaska","AK",1056 +2012-05-01,"Residential Consumption","New York","NY",15280 +2012-05-01,"Residential Consumption","Illinois","IL",11707 +2012-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-05-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2012-05-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2012-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-05-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2012-05-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-05-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2012-05-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2012-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-05-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-05-01,"Vehicle Fuel Consumption","California","CA",1243 +2012-05-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",74 +2012-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-05-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-05-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2012-05-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-05-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-05-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-05-01,"Vehicle Fuel Consumption","Texas","TX",187 +2012-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-05-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-05-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-05-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-05-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2012-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2538 +2012-05-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-05-01,"Vehicle Fuel Consumption","Washington","WA",43 +2012-05-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2012-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",64 +2012-05-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-05-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-05-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-05-01,"Vehicle Fuel Consumption","New York","NY",326 +2012-05-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-05-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-05-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2012-05-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-05-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2012-05-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-05-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2012-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2012-05-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2012-05-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-06-01,"Commercial Consumption","West Virginia","WV",920 +2012-06-01,"Commercial Consumption","North Carolina","NC",2433 +2012-06-01,"Commercial Consumption","Utah","UT",1586 +2012-06-01,"Commercial Consumption","Virginia","VA",2854 +2012-06-01,"Commercial Consumption","Wisconsin","WI",2512 +2012-06-01,"Commercial Consumption","Montana","MT",646 +2012-06-01,"Commercial Consumption","New York","NY",13780 +2012-06-01,"Commercial Consumption","Delaware","DE",410 +2012-06-01,"Commercial Consumption","Tennessee","TN",2005 +2012-06-01,"Commercial Consumption","Louisiana","LA",1608 +2012-06-01,"Commercial Consumption","District of Columbia","DC",748 +2012-06-01,"Commercial Consumption","Wyoming","WY",334 +2012-06-01,"Commercial Consumption","Washington","WA",2607 +2012-06-01,"Commercial Consumption","Oregon","OR",1231 +2012-06-01,"Commercial Consumption","Maryland","MD",3237 +2012-06-01,"Commercial Consumption","Iowa","IA",1489 +2012-06-01,"Commercial Consumption","South Dakota","SD",325 +2012-06-01,"Commercial Consumption","New Jersey","NJ",6394 +2012-06-01,"Commercial Consumption","New Hampshire","NH",301 +2012-06-01,"Commercial Consumption","Kentucky","KY",1236 +2012-06-01,"Commercial Consumption","Kansas","KS",1106 +2012-06-01,"Commercial Consumption","California","CA",16507 +2012-06-01,"Commercial Consumption","Illinois","IL",7153 +2012-06-01,"Commercial Consumption","South Carolina","SC",1254 +2012-06-01,"Commercial Consumption","New Mexico","NM",924 +2012-06-01,"Commercial Consumption","Texas","TX",9243 +2012-06-01,"Commercial Consumption","Vermont","VT",69 +2012-06-01,"Commercial Consumption","Connecticut","CT",1961 +2012-06-01,"Commercial Consumption","Arkansas","AR",2359 +2012-06-01,"Commercial Consumption","Nebraska","NE",1184 +2012-06-01,"Commercial Consumption","North Dakota","ND",314 +2012-06-01,"Commercial Consumption","Minnesota","MN",2365 +2012-06-01,"Commercial Consumption","Oklahoma","OK",1414 +2012-06-01,"Commercial Consumption","Maine","ME",332 +2012-06-01,"Commercial Consumption","Rhode Island","RI",251 +2012-06-01,"Commercial Consumption","Hawaii","HI",155 +2012-06-01,"Commercial Consumption","Mississippi","MS",932 +2012-06-01,"Commercial Consumption","Florida","FL",4029 +2012-06-01,"Commercial Consumption","Ohio","OH",5403 +2012-06-01,"Commercial Consumption","Idaho","ID",664 +2012-06-01,"Commercial Consumption","Arizona","AZ",1987 +2012-06-01,"Commercial Consumption","Georgia","GA",2707 +2012-06-01,"Commercial Consumption","Colorado","CO",1681 +2012-06-01,"Commercial Consumption","Pennsylvania","PA",4330 +2012-06-01,"Commercial Consumption","Missouri","MO",2133 +2012-06-01,"Commercial Consumption","Massachusetts","MA",2915 +2012-06-01,"Commercial Consumption","U.S.","U.S.",131071 +2012-06-01,"Commercial Consumption","Alaska","AK",853 +2012-06-01,"Commercial Consumption","Alabama","AL",998 +2012-06-01,"Commercial Consumption","Nevada","NV",1743 +2012-06-01,"Commercial Consumption","Michigan","MI",5158 +2012-06-01,"Commercial Consumption","Indiana","IN",2290 +2012-06-01,"Delivered to Consumers","Delaware","DE",7818 +2012-06-01,"Delivered to Consumers","Hawaii","HI",225 +2012-06-01,"Delivered to Consumers","Idaho","ID",4033 +2012-06-01,"Delivered to Consumers","Iowa","IA",18190 +2012-06-01,"Delivered to Consumers","Arkansas","AR",23174 +2012-06-01,"Delivered to Consumers","Colorado","CO",16987 +2012-06-01,"Delivered to Consumers","California","CA",165863 +2012-06-01,"Delivered to Consumers","Maine","ME",4630 +2012-06-01,"Delivered to Consumers","North Dakota","ND",3044 +2012-06-01,"Delivered to Consumers","South Dakota","SD",4042 +2012-06-01,"Delivered to Consumers","Tennessee","TN",17922 +2012-06-01,"Delivered to Consumers","Ohio","OH",46874 +2012-06-01,"Delivered to Consumers","Massachusetts","MA",26214 +2012-06-01,"Delivered to Consumers","New Hampshire","NH",5422 +2012-06-01,"Delivered to Consumers","District of Columbia","DC",1082 +2012-06-01,"Delivered to Consumers","New Mexico","NM",10690 +2012-06-01,"Delivered to Consumers","Indiana","IN",43677 +2012-06-01,"Delivered to Consumers","Wyoming","WY",4666 +2012-06-01,"Delivered to Consumers","Illinois","IL",47304 +2012-06-01,"Delivered to Consumers","Michigan","MI",42974 +2012-06-01,"Delivered to Consumers","Nebraska","NE",10316 +2012-06-01,"Delivered to Consumers","South Carolina","SC",17682 +2012-06-01,"Delivered to Consumers","Louisiana","LA",118503 +2012-06-01,"Delivered to Consumers","Utah","UT",11657 +2012-06-01,"Delivered to Consumers","Kansas","KS",15876 +2012-06-01,"Delivered to Consumers","Pennsylvania","PA",57426 +2012-06-01,"Delivered to Consumers","Texas","TX",295925 +2012-06-01,"Delivered to Consumers","Oregon","OR",8018 +2012-06-01,"Delivered to Consumers","Vermont","VT",304 +2012-06-01,"Delivered to Consumers","Montana","MT",3105 +2012-06-01,"Delivered to Consumers","Oklahoma","OK",53522 +2012-06-01,"Delivered to Consumers","Connecticut","CT",14653 +2012-06-01,"Delivered to Consumers","Virginia","VA",28781 +2012-06-01,"Delivered to Consumers","New Jersey","NJ",38688 +2012-06-01,"Delivered to Consumers","Arizona","AZ",30048 +2012-06-01,"Delivered to Consumers","Washington","WA",12491 +2012-06-01,"Delivered to Consumers","West Virginia","WV",3392 +2012-06-01,"Delivered to Consumers","New York","NY",78668 +2012-06-01,"Delivered to Consumers","Maryland","MD",11307 +2012-06-01,"Delivered to Consumers","Kentucky","KY",13392 +2012-06-01,"Delivered to Consumers","Alabama","AL",53402 +2012-06-01,"Delivered to Consumers","Wisconsin","WI",23595 +2012-06-01,"Delivered to Consumers","Mississippi","MS",43073 +2012-06-01,"Delivered to Consumers","Missouri","MO",15927 +2012-06-01,"Delivered to Consumers","Minnesota","MN",23449 +2012-06-01,"Delivered to Consumers","U.S.","U.S.",1702557 +2012-06-01,"Delivered to Consumers","Rhode Island","RI",6893 +2012-06-01,"Delivered to Consumers","Alaska","AK",5199 +2012-06-01,"Delivered to Consumers","North Carolina","NC",24432 +2012-06-01,"Delivered to Consumers","Nevada","NV",22097 +2012-06-01,"Delivered to Consumers","Georgia","GA",50740 +2012-06-01,"Delivered to Consumers","Florida","FL",115163 +2012-06-01,"Electric Power Consumption","New York","NY",48943 +2012-06-01,"Electric Power Consumption","Utah","UT",4498 +2012-06-01,"Electric Power Consumption","Minnesota","MN",7013 +2012-06-01,"Electric Power Consumption","Illinois","IL",11741 +2012-06-01,"Electric Power Consumption","Mississippi","MS",32327 +2012-06-01,"Electric Power Consumption","New Hampshire","NH",4464 +2012-06-01,"Electric Power Consumption","Indiana","IN",11057 +2012-06-01,"Electric Power Consumption","Georgia","GA",32369 +2012-06-01,"Electric Power Consumption","New Mexico","NM",7348 +2012-06-01,"Electric Power Consumption","Massachusetts","MA",16520 +2012-06-01,"Electric Power Consumption","Kansas","KS",4107 +2012-06-01,"Electric Power Consumption","Wisconsin","WI",10275 +2012-06-01,"Electric Power Consumption","Wyoming","WY",45 +2012-06-01,"Electric Power Consumption","South Dakota","SD",257 +2012-06-01,"Electric Power Consumption","Ohio","OH",15950 +2012-06-01,"Electric Power Consumption","Vermont","VT",3 +2012-06-01,"Electric Power Consumption","Tennessee","TN",6991 +2012-06-01,"Electric Power Consumption","Missouri","MO",7447 +2012-06-01,"Electric Power Consumption","Kentucky","KY",3321 +2012-06-01,"Electric Power Consumption","Maryland","MD",4438 +2012-06-01,"Electric Power Consumption","Connecticut","CT",9356 +2012-06-01,"Electric Power Consumption","Colorado","CO",8393 +2012-06-01,"Electric Power Consumption","Nevada","NV",17965 +2012-06-01,"Electric Power Consumption","Nebraska","NE",1422 +2012-06-01,"Electric Power Consumption","Montana","MT",526 +2012-06-01,"Electric Power Consumption","Delaware","DE",5087 +2012-06-01,"Electric Power Consumption","Alaska","AK",2928 +2012-06-01,"Electric Power Consumption","South Carolina","SC",9540 +2012-06-01,"Electric Power Consumption","California","CA",62632 +2012-06-01,"Electric Power Consumption","New Jersey","NJ",22956 +2012-06-01,"Electric Power Consumption","Louisiana","LA",36888 +2012-06-01,"Electric Power Consumption","Idaho","ID",349 +2012-06-01,"Electric Power Consumption","Texas","TX",158225 +2012-06-01,"Electric Power Consumption","Rhode Island","RI",5535 +2012-06-01,"Electric Power Consumption","Iowa","IA",2421 +2012-06-01,"Electric Power Consumption","Alabama","AL",38229 +2012-06-01,"Electric Power Consumption","Arkansas","AR",13998 +2012-06-01,"Electric Power Consumption","Oklahoma","OK",35773 +2012-06-01,"Electric Power Consumption","West Virginia","WV",194 +2012-06-01,"Electric Power Consumption","Pennsylvania","PA",33904 +2012-06-01,"Electric Power Consumption","Florida","FL",102818 +2012-06-01,"Electric Power Consumption","Washington","WA",840 +2012-06-01,"Electric Power Consumption","Virginia","VA",18398 +2012-06-01,"Electric Power Consumption","Oregon","OR",1156 +2012-06-01,"Electric Power Consumption","Michigan","MI",20794 +2012-06-01,"Electric Power Consumption","U.S.","U.S.",879881 +2012-06-01,"Electric Power Consumption","North Carolina","NC",13291 +2012-06-01,"Electric Power Consumption","Maine","ME",2067 +2012-06-01,"Electric Power Consumption","Hawaii","HI",NA +2012-06-01,"Electric Power Consumption","North Dakota","ND",0 +2012-06-01,"Electric Power Consumption","Arizona","AZ",25082 +2012-06-01,"Industrial Consumption","South Dakota","SD",3216 +2012-06-01,"Industrial Consumption","Ohio","OH",19646 +2012-06-01,"Industrial Consumption","Oregon","OR",4185 +2012-06-01,"Industrial Consumption","Alabama","AL",13437 +2012-06-01,"Industrial Consumption","Vermont","VT",154 +2012-06-01,"Industrial Consumption","Wisconsin","WI",8121 +2012-06-01,"Industrial Consumption","Rhode Island","RI",559 +2012-06-01,"Industrial Consumption","North Carolina","NC",7571 +2012-06-01,"Industrial Consumption","North Dakota","ND",2535 +2012-06-01,"Industrial Consumption","New Mexico","NM",1423 +2012-06-01,"Industrial Consumption","West Virginia","WV",1950 +2012-06-01,"Industrial Consumption","Idaho","ID",2334 +2012-06-01,"Industrial Consumption","Montana","MT",1353 +2012-06-01,"Industrial Consumption","Louisiana","LA",78742 +2012-06-01,"Industrial Consumption","New York","NY",4908 +2012-06-01,"Industrial Consumption","Maine","ME",2179 +2012-06-01,"Industrial Consumption","Arkansas","AR",6165 +2012-06-01,"Industrial Consumption","Virginia","VA",5747 +2012-06-01,"Industrial Consumption","Indiana","IN",27667 +2012-06-01,"Industrial Consumption","Delaware","DE",2126 +2012-06-01,"Industrial Consumption","Missouri","MO",4454 +2012-06-01,"Industrial Consumption","Nevada","NV",836 +2012-06-01,"Industrial Consumption","Texas","TX",122822 +2012-06-01,"Industrial Consumption","Minnesota","MN",11796 +2012-06-01,"Industrial Consumption","Connecticut","CT",2128 +2012-06-01,"Industrial Consumption","Maryland","MD",1737 +2012-06-01,"Industrial Consumption","Massachusetts","MA",2445 +2012-06-01,"Industrial Consumption","Colorado","CO",4439 +2012-06-01,"Industrial Consumption","Utah","UT",3290 +2012-06-01,"Industrial Consumption","South Carolina","SC",6403 +2012-06-01,"Industrial Consumption","Nebraska","NE",6843 +2012-06-01,"Industrial Consumption","Wyoming","WY",4010 +2012-06-01,"Industrial Consumption","Tennessee","TN",7845 +2012-06-01,"Industrial Consumption","New Jersey","NJ",3692 +2012-06-01,"Industrial Consumption","Washington","WA",6023 +2012-06-01,"Industrial Consumption","Arizona","AZ",1544 +2012-06-01,"Industrial Consumption","Pennsylvania","PA",14639 +2012-06-01,"Industrial Consumption","Mississippi","MS",9251 +2012-06-01,"Industrial Consumption","Iowa","IA",12953 +2012-06-01,"Industrial Consumption","Michigan","MI",10517 +2012-06-01,"Industrial Consumption","Illinois","IL",19290 +2012-06-01,"Industrial Consumption","Georgia","GA",12201 +2012-06-01,"Industrial Consumption","Oklahoma","OK",14971 +2012-06-01,"Industrial Consumption","New Hampshire","NH",468 +2012-06-01,"Industrial Consumption","Kentucky","KY",7872 +2012-06-01,"Industrial Consumption","District of Columbia","DC",0 +2012-06-01,"Industrial Consumption","Alaska","AK",718 +2012-06-01,"Industrial Consumption","Hawaii","HI",27 +2012-06-01,"Industrial Consumption","Kansas","KS",9290 +2012-06-01,"Industrial Consumption","U.S.","U.S.",565812 +2012-06-01,"Industrial Consumption","California","CA",61815 +2012-06-01,"Industrial Consumption","Florida","FL",7472 +2012-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",112654 +2012-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",53145 +2012-06-01,"Residential Consumption","North Carolina","NC",1135 +2012-06-01,"Residential Consumption","Louisiana","LA",1264 +2012-06-01,"Residential Consumption","Indiana","IN",2662 +2012-06-01,"Residential Consumption","Florida","FL",837 +2012-06-01,"Residential Consumption","Massachusetts","MA",4273 +2012-06-01,"Residential Consumption","Kansas","KS",1372 +2012-06-01,"Residential Consumption","Alaska","AK",699 +2012-06-01,"Residential Consumption","New York","NY",10722 +2012-06-01,"Residential Consumption","Rhode Island","RI",542 +2012-06-01,"Residential Consumption","Mississippi","MS",563 +2012-06-01,"Residential Consumption","Iowa","IA",1327 +2012-06-01,"Residential Consumption","Hawaii","HI",42 +2012-06-01,"Residential Consumption","Nebraska","NE",864 +2012-06-01,"Residential Consumption","Maryland","MD",1878 +2012-06-01,"Residential Consumption","South Dakota","SD",244 +2012-06-01,"Residential Consumption","Minnesota","MN",2274 +2012-06-01,"Residential Consumption","California","CA",23707 +2012-06-01,"Residential Consumption","U.S.","U.S.",123336 +2012-06-01,"Residential Consumption","Utah","UT",2259 +2012-06-01,"Residential Consumption","District of Columbia","DC",263 +2012-06-01,"Residential Consumption","Colorado","CO",2451 +2012-06-01,"Residential Consumption","Wyoming","WY",275 +2012-06-01,"Residential Consumption","Wisconsin","WI",2682 +2012-06-01,"Residential Consumption","Tennessee","TN",1079 +2012-06-01,"Residential Consumption","Virginia","VA",1760 +2012-06-01,"Residential Consumption","Maine","ME",53 +2012-06-01,"Residential Consumption","Connecticut","CT",1206 +2012-06-01,"Residential Consumption","Michigan","MI",6477 +2012-06-01,"Residential Consumption","Idaho","ID",674 +2012-06-01,"Residential Consumption","New Jersey","NJ",5630 +2012-06-01,"Residential Consumption","Montana","MT",580 +2012-06-01,"Residential Consumption","Oklahoma","OK",1343 +2012-06-01,"Residential Consumption","Texas","TX",5454 +2012-06-01,"Residential Consumption","Nevada","NV",1504 +2012-06-01,"Residential Consumption","Georgia","GA",3373 +2012-06-01,"Residential Consumption","North Dakota","ND",195 +2012-06-01,"Residential Consumption","Arkansas","AR",650 +2012-06-01,"Residential Consumption","Washington","WA",2979 +2012-06-01,"Residential Consumption","Missouri","MO",1894 +2012-06-01,"Residential Consumption","Delaware","DE",195 +2012-06-01,"Residential Consumption","West Virginia","WV",327 +2012-06-01,"Residential Consumption","Illinois","IL",9099 +2012-06-01,"Residential Consumption","South Carolina","SC",484 +2012-06-01,"Residential Consumption","Oregon","OR",1434 +2012-06-01,"Residential Consumption","Kentucky","KY",962 +2012-06-01,"Residential Consumption","Arizona","AZ",1295 +2012-06-01,"Residential Consumption","Alabama","AL",723 +2012-06-01,"Residential Consumption","Ohio","OH",5867 +2012-06-01,"Residential Consumption","Vermont","VT",79 +2012-06-01,"Residential Consumption","Pennsylvania","PA",4528 +2012-06-01,"Residential Consumption","New Mexico","NM",974 +2012-06-01,"Residential Consumption","New Hampshire","NH",185 +2012-06-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-06-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2012-06-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2012-06-01,"Vehicle Fuel Consumption","Arizona","AZ",140 +2012-06-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2012-06-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-06-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-06-01,"Vehicle Fuel Consumption","California","CA",1203 +2012-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-06-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-06-01,"Vehicle Fuel Consumption","Washington","WA",42 +2012-06-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-06-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-06-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2012-06-01,"Vehicle Fuel Consumption","New York","NY",316 +2012-06-01,"Vehicle Fuel Consumption","Nevada","NV",48 +2012-06-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2012-06-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-06-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2012-06-01,"Vehicle Fuel Consumption","Texas","TX",181 +2012-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-06-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2012-06-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2012-06-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-06-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-06-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2457 +2012-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2012-06-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2012-06-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-06-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-06-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-06-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2012-06-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-06-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2012-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-06-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2012-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-06-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-06-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-06-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-06-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-07-01,"Commercial Consumption","Wyoming","WY",301 +2012-07-01,"Commercial Consumption","Massachusetts","MA",2007 +2012-07-01,"Commercial Consumption","Idaho","ID",576 +2012-07-01,"Commercial Consumption","Tennessee","TN",1825 +2012-07-01,"Commercial Consumption","Nevada","NV",1701 +2012-07-01,"Commercial Consumption","Michigan","MI",4865 +2012-07-01,"Commercial Consumption","Louisiana","LA",1626 +2012-07-01,"Commercial Consumption","North Carolina","NC",1976 +2012-07-01,"Commercial Consumption","New Hampshire","NH",246 +2012-07-01,"Commercial Consumption","U.S.","U.S.",124496 +2012-07-01,"Commercial Consumption","Texas","TX",9437 +2012-07-01,"Commercial Consumption","Rhode Island","RI",256 +2012-07-01,"Commercial Consumption","Alaska","AK",664 +2012-07-01,"Commercial Consumption","Mississippi","MS",922 +2012-07-01,"Commercial Consumption","South Carolina","SC",1143 +2012-07-01,"Commercial Consumption","New Mexico","NM",955 +2012-07-01,"Commercial Consumption","Montana","MT",508 +2012-07-01,"Commercial Consumption","Maryland","MD",2539 +2012-07-01,"Commercial Consumption","Georgia","GA",2514 +2012-07-01,"Commercial Consumption","Vermont","VT",70 +2012-07-01,"Commercial Consumption","Connecticut","CT",2055 +2012-07-01,"Commercial Consumption","Alabama","AL",1007 +2012-07-01,"Commercial Consumption","Minnesota","MN",2565 +2012-07-01,"Commercial Consumption","Colorado","CO",1357 +2012-07-01,"Commercial Consumption","Utah","UT",1042 +2012-07-01,"Commercial Consumption","Oklahoma","OK",1339 +2012-07-01,"Commercial Consumption","Virginia","VA",2463 +2012-07-01,"Commercial Consumption","Wisconsin","WI",2395 +2012-07-01,"Commercial Consumption","New Jersey","NJ",6514 +2012-07-01,"Commercial Consumption","Ohio","OH",4075 +2012-07-01,"Commercial Consumption","Indiana","IN",2042 +2012-07-01,"Commercial Consumption","Illinois","IL",6803 +2012-07-01,"Commercial Consumption","Missouri","MO",2013 +2012-07-01,"Commercial Consumption","Kentucky","KY",1076 +2012-07-01,"Commercial Consumption","Iowa","IA",1499 +2012-07-01,"Commercial Consumption","Arkansas","AR",2307 +2012-07-01,"Commercial Consumption","Nebraska","NE",1346 +2012-07-01,"Commercial Consumption","District of Columbia","DC",837 +2012-07-01,"Commercial Consumption","North Dakota","ND",270 +2012-07-01,"Commercial Consumption","Oregon","OR",1169 +2012-07-01,"Commercial Consumption","Pennsylvania","PA",3997 +2012-07-01,"Commercial Consumption","California","CA",17022 +2012-07-01,"Commercial Consumption","West Virginia","WV",1004 +2012-07-01,"Commercial Consumption","Washington","WA",2084 +2012-07-01,"Commercial Consumption","South Dakota","SD",261 +2012-07-01,"Commercial Consumption","Maine","ME",267 +2012-07-01,"Commercial Consumption","Kansas","KS",1021 +2012-07-01,"Commercial Consumption","Florida","FL",4091 +2012-07-01,"Commercial Consumption","Hawaii","HI",152 +2012-07-01,"Commercial Consumption","New York","NY",14092 +2012-07-01,"Commercial Consumption","Delaware","DE",356 +2012-07-01,"Commercial Consumption","Arizona","AZ",1845 +2012-07-01,"Delivered to Consumers","New Mexico","NM",11785 +2012-07-01,"Delivered to Consumers","South Dakota","SD",4828 +2012-07-01,"Delivered to Consumers","Montana","MT",2923 +2012-07-01,"Delivered to Consumers","Colorado","CO",19166 +2012-07-01,"Delivered to Consumers","South Carolina","SC",20318 +2012-07-01,"Delivered to Consumers","Wyoming","WY",4331 +2012-07-01,"Delivered to Consumers","Tennessee","TN",19564 +2012-07-01,"Delivered to Consumers","Ohio","OH",47097 +2012-07-01,"Delivered to Consumers","Wisconsin","WI",28369 +2012-07-01,"Delivered to Consumers","Virginia","VA",34992 +2012-07-01,"Delivered to Consumers","New Hampshire","NH",6281 +2012-07-01,"Delivered to Consumers","Indiana","IN",46324 +2012-07-01,"Delivered to Consumers","Hawaii","HI",221 +2012-07-01,"Delivered to Consumers","Alaska","AK",5115 +2012-07-01,"Delivered to Consumers","Idaho","ID",4955 +2012-07-01,"Delivered to Consumers","North Carolina","NC",30979 +2012-07-01,"Delivered to Consumers","Missouri","MO",19419 +2012-07-01,"Delivered to Consumers","Massachusetts","MA",30618 +2012-07-01,"Delivered to Consumers","New Jersey","NJ",44789 +2012-07-01,"Delivered to Consumers","Arizona","AZ",34257 +2012-07-01,"Delivered to Consumers","U.S.","U.S.",1891318 +2012-07-01,"Delivered to Consumers","Delaware","DE",9181 +2012-07-01,"Delivered to Consumers","West Virginia","WV",3763 +2012-07-01,"Delivered to Consumers","Nebraska","NE",13875 +2012-07-01,"Delivered to Consumers","Mississippi","MS",44420 +2012-07-01,"Delivered to Consumers","Oregon","OR",10523 +2012-07-01,"Delivered to Consumers","Maine","ME",6264 +2012-07-01,"Delivered to Consumers","Utah","UT",10119 +2012-07-01,"Delivered to Consumers","New York","NY",94426 +2012-07-01,"Delivered to Consumers","Kentucky","KY",15130 +2012-07-01,"Delivered to Consumers","Iowa","IA",20467 +2012-07-01,"Delivered to Consumers","Alabama","AL",58504 +2012-07-01,"Delivered to Consumers","Texas","TX",314589 +2012-07-01,"Delivered to Consumers","Florida","FL",127404 +2012-07-01,"Delivered to Consumers","District of Columbia","DC",1147 +2012-07-01,"Delivered to Consumers","Illinois","IL",54448 +2012-07-01,"Delivered to Consumers","Rhode Island","RI",7563 +2012-07-01,"Delivered to Consumers","Michigan","MI",50507 +2012-07-01,"Delivered to Consumers","Georgia","GA",56474 +2012-07-01,"Delivered to Consumers","Washington","WA",11799 +2012-07-01,"Delivered to Consumers","Minnesota","MN",29158 +2012-07-01,"Delivered to Consumers","Vermont","VT",314 +2012-07-01,"Delivered to Consumers","Kansas","KS",20294 +2012-07-01,"Delivered to Consumers","California","CA",179207 +2012-07-01,"Delivered to Consumers","North Dakota","ND",2732 +2012-07-01,"Delivered to Consumers","Maryland","MD",13150 +2012-07-01,"Delivered to Consumers","Oklahoma","OK",63048 +2012-07-01,"Delivered to Consumers","Connecticut","CT",17613 +2012-07-01,"Delivered to Consumers","Arkansas","AR",27379 +2012-07-01,"Delivered to Consumers","Pennsylvania","PA",64855 +2012-07-01,"Delivered to Consumers","Nevada","NV",24957 +2012-07-01,"Delivered to Consumers","Louisiana","LA",121678 +2012-07-01,"Electric Power Consumption","Virginia","VA",25195 +2012-07-01,"Electric Power Consumption","Texas","TX",171113 +2012-07-01,"Electric Power Consumption","Nevada","NV",20959 +2012-07-01,"Electric Power Consumption","U.S.","U.S.",1081688 +2012-07-01,"Electric Power Consumption","Nebraska","NE",3376 +2012-07-01,"Electric Power Consumption","Mississippi","MS",33007 +2012-07-01,"Electric Power Consumption","Maryland","MD",7890 +2012-07-01,"Electric Power Consumption","Delaware","DE",6286 +2012-07-01,"Electric Power Consumption","Arizona","AZ",29722 +2012-07-01,"Electric Power Consumption","Washington","WA",2169 +2012-07-01,"Electric Power Consumption","Tennessee","TN",8785 +2012-07-01,"Electric Power Consumption","Missouri","MO",11097 +2012-07-01,"Electric Power Consumption","Maine","ME",3611 +2012-07-01,"Electric Power Consumption","New Hampshire","NH",5426 +2012-07-01,"Electric Power Consumption","Georgia","GA",38917 +2012-07-01,"Electric Power Consumption","Idaho","ID",1716 +2012-07-01,"Electric Power Consumption","South Carolina","SC",12522 +2012-07-01,"Electric Power Consumption","New York","NY",65796 +2012-07-01,"Electric Power Consumption","Massachusetts","MA",23375 +2012-07-01,"Electric Power Consumption","Kansas","KS",7331 +2012-07-01,"Electric Power Consumption","Wisconsin","WI",15746 +2012-07-01,"Electric Power Consumption","Pennsylvania","PA",42507 +2012-07-01,"Electric Power Consumption","Vermont","VT",3 +2012-07-01,"Electric Power Consumption","North Dakota","ND",0 +2012-07-01,"Electric Power Consumption","Connecticut","CT",12599 +2012-07-01,"Electric Power Consumption","New Mexico","NM",8376 +2012-07-01,"Electric Power Consumption","Illinois","IL",21542 +2012-07-01,"Electric Power Consumption","Michigan","MI",29884 +2012-07-01,"Electric Power Consumption","Hawaii","HI",NA +2012-07-01,"Electric Power Consumption","Louisiana","LA",36827 +2012-07-01,"Electric Power Consumption","Arkansas","AR",18416 +2012-07-01,"Electric Power Consumption","Utah","UT",4778 +2012-07-01,"Electric Power Consumption","Iowa","IA",5424 +2012-07-01,"Electric Power Consumption","Florida","FL",114669 +2012-07-01,"Electric Power Consumption","Colorado","CO",10910 +2012-07-01,"Electric Power Consumption","Rhode Island","RI",6267 +2012-07-01,"Electric Power Consumption","South Dakota","SD",1276 +2012-07-01,"Electric Power Consumption","North Carolina","NC",20603 +2012-07-01,"Electric Power Consumption","New Jersey","NJ",29859 +2012-07-01,"Electric Power Consumption","Oklahoma","OK",45372 +2012-07-01,"Electric Power Consumption","Oregon","OR",3981 +2012-07-01,"Electric Power Consumption","West Virginia","WV",550 +2012-07-01,"Electric Power Consumption","Kentucky","KY",5512 +2012-07-01,"Electric Power Consumption","Montana","MT",639 +2012-07-01,"Electric Power Consumption","Indiana","IN",15119 +2012-07-01,"Electric Power Consumption","Alaska","AK",3104 +2012-07-01,"Electric Power Consumption","Minnesota","MN",12363 +2012-07-01,"Electric Power Consumption","Wyoming","WY",31 +2012-07-01,"Electric Power Consumption","Ohio","OH",20479 +2012-07-01,"Electric Power Consumption","California","CA",73812 +2012-07-01,"Electric Power Consumption","Alabama","AL",42746 +2012-07-01,"Industrial Consumption","Washington","WA",5457 +2012-07-01,"Industrial Consumption","Arizona","AZ",1450 +2012-07-01,"Industrial Consumption","Oregon","OR",4164 +2012-07-01,"Industrial Consumption","Nevada","NV",870 +2012-07-01,"Industrial Consumption","Iowa","IA",12405 +2012-07-01,"Industrial Consumption","Indiana","IN",27015 +2012-07-01,"Industrial Consumption","Delaware","DE",2383 +2012-07-01,"Industrial Consumption","North Dakota","ND",2291 +2012-07-01,"Industrial Consumption","California","CA",64500 +2012-07-01,"Industrial Consumption","Nebraska","NE",8145 +2012-07-01,"Industrial Consumption","Florida","FL",7816 +2012-07-01,"Industrial Consumption","Connecticut","CT",1902 +2012-07-01,"Industrial Consumption","Georgia","GA",11790 +2012-07-01,"Industrial Consumption","Alaska","AK",712 +2012-07-01,"Industrial Consumption","Massachusetts","MA",2232 +2012-07-01,"Industrial Consumption","Louisiana","LA",81948 +2012-07-01,"Industrial Consumption","New Mexico","NM",1557 +2012-07-01,"Industrial Consumption","U.S.","U.S.",575079 +2012-07-01,"Industrial Consumption","Idaho","ID",2074 +2012-07-01,"Industrial Consumption","North Carolina","NC",7495 +2012-07-01,"Industrial Consumption","Oklahoma","OK",15161 +2012-07-01,"Industrial Consumption","Utah","UT",2792 +2012-07-01,"Industrial Consumption","Pennsylvania","PA",14377 +2012-07-01,"Industrial Consumption","Alabama","AL",14032 +2012-07-01,"Industrial Consumption","Texas","TX",128267 +2012-07-01,"Industrial Consumption","South Carolina","SC",6222 +2012-07-01,"Industrial Consumption","Wyoming","WY",3789 +2012-07-01,"Industrial Consumption","Wisconsin","WI",8064 +2012-07-01,"Industrial Consumption","Minnesota","MN",11737 +2012-07-01,"Industrial Consumption","Rhode Island","RI",600 +2012-07-01,"Industrial Consumption","District of Columbia","DC",0 +2012-07-01,"Industrial Consumption","South Dakota","SD",3109 +2012-07-01,"Industrial Consumption","Kansas","KS",10880 +2012-07-01,"Industrial Consumption","Virginia","VA",5880 +2012-07-01,"Industrial Consumption","Vermont","VT",170 +2012-07-01,"Industrial Consumption","Michigan","MI",10207 +2012-07-01,"Industrial Consumption","Illinois","IL",18570 +2012-07-01,"Industrial Consumption","Montana","MT",1415 +2012-07-01,"Industrial Consumption","Missouri","MO",4656 +2012-07-01,"Industrial Consumption","Colorado","CO",4479 +2012-07-01,"Industrial Consumption","Arkansas","AR",6049 +2012-07-01,"Industrial Consumption","Hawaii","HI",31 +2012-07-01,"Industrial Consumption","Ohio","OH",18088 +2012-07-01,"Industrial Consumption","New York","NY",5133 +2012-07-01,"Industrial Consumption","Mississippi","MS",9911 +2012-07-01,"Industrial Consumption","Maine","ME",2353 +2012-07-01,"Industrial Consumption","West Virginia","WV",1976 +2012-07-01,"Industrial Consumption","New Hampshire","NH",460 +2012-07-01,"Industrial Consumption","Kentucky","KY",7752 +2012-07-01,"Industrial Consumption","Maryland","MD",1173 +2012-07-01,"Industrial Consumption","Tennessee","TN",7977 +2012-07-01,"Industrial Consumption","New Jersey","NJ",3563 +2012-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",119418 +2012-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",59038 +2012-07-01,"Residential Consumption","Oregon","OR",1197 +2012-07-01,"Residential Consumption","Minnesota","MN",2492 +2012-07-01,"Residential Consumption","Pennsylvania","PA",3948 +2012-07-01,"Residential Consumption","New Mexico","NM",876 +2012-07-01,"Residential Consumption","Arkansas","AR",606 +2012-07-01,"Residential Consumption","Delaware","DE",155 +2012-07-01,"Residential Consumption","Texas","TX",5585 +2012-07-01,"Residential Consumption","Virginia","VA",1431 +2012-07-01,"Residential Consumption","Maine","ME",34 +2012-07-01,"Residential Consumption","California","CA",22631 +2012-07-01,"Residential Consumption","Iowa","IA",1140 +2012-07-01,"Residential Consumption","Hawaii","HI",38 +2012-07-01,"Residential Consumption","Tennessee","TN",975 +2012-07-01,"Residential Consumption","Nebraska","NE",1005 +2012-07-01,"Residential Consumption","Michigan","MI",5523 +2012-07-01,"Residential Consumption","Indiana","IN",2146 +2012-07-01,"Residential Consumption","New Hampshire","NH",146 +2012-07-01,"Residential Consumption","Montana","MT",362 +2012-07-01,"Residential Consumption","West Virginia","WV",233 +2012-07-01,"Residential Consumption","North Carolina","NC",901 +2012-07-01,"Residential Consumption","Mississippi","MS",580 +2012-07-01,"Residential Consumption","Connecticut","CT",1055 +2012-07-01,"Residential Consumption","Georgia","GA",3159 +2012-07-01,"Residential Consumption","North Dakota","ND",171 +2012-07-01,"Residential Consumption","Kentucky","KY",790 +2012-07-01,"Residential Consumption","U.S.","U.S.",107517 +2012-07-01,"Residential Consumption","Wisconsin","WI",2159 +2012-07-01,"Residential Consumption","Utah","UT",1483 +2012-07-01,"Residential Consumption","South Dakota","SD",181 +2012-07-01,"Residential Consumption","Nevada","NV",1377 +2012-07-01,"Residential Consumption","Massachusetts","MA",2939 +2012-07-01,"Residential Consumption","Idaho","ID",578 +2012-07-01,"Residential Consumption","Colorado","CO",2396 +2012-07-01,"Residential Consumption","Washington","WA",2045 +2012-07-01,"Residential Consumption","Rhode Island","RI",433 +2012-07-01,"Residential Consumption","Vermont","VT",70 +2012-07-01,"Residential Consumption","District of Columbia","DC",236 +2012-07-01,"Residential Consumption","Oklahoma","OK",1154 +2012-07-01,"Residential Consumption","Missouri","MO",1653 +2012-07-01,"Residential Consumption","New York","NY",9079 +2012-07-01,"Residential Consumption","Illinois","IL",7511 +2012-07-01,"Residential Consumption","Louisiana","LA",1276 +2012-07-01,"Residential Consumption","Maryland","MD",1529 +2012-07-01,"Residential Consumption","New Jersey","NJ",4836 +2012-07-01,"Residential Consumption","Arizona","AZ",1096 +2012-07-01,"Residential Consumption","Alabama","AL",703 +2012-07-01,"Residential Consumption","Alaska","AK",634 +2012-07-01,"Residential Consumption","South Carolina","SC",431 +2012-07-01,"Residential Consumption","Ohio","OH",4447 +2012-07-01,"Residential Consumption","Florida","FL",821 +2012-07-01,"Residential Consumption","Kansas","KS",1062 +2012-07-01,"Residential Consumption","Wyoming","WY",209 +2012-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-07-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-07-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-07-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2012-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",74 +2012-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-07-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-07-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2538 +2012-07-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-07-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-07-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2012-07-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-07-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2012-07-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-07-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-07-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-07-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-07-01,"Vehicle Fuel Consumption","Washington","WA",43 +2012-07-01,"Vehicle Fuel Consumption","New York","NY",326 +2012-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2012-07-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2012-07-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-07-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-07-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2012-07-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-07-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2012-07-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-07-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",64 +2012-07-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2012-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-07-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-07-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-07-01,"Vehicle Fuel Consumption","Texas","TX",187 +2012-07-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2012-07-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2012-07-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2012-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-07-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-07-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2012-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-07-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2012-07-01,"Vehicle Fuel Consumption","California","CA",1243 +2012-08-01,"Commercial Consumption","Florida","FL",3985 +2012-08-01,"Commercial Consumption","Hawaii","HI",153 +2012-08-01,"Commercial Consumption","California","CA",17991 +2012-08-01,"Commercial Consumption","New York","NY",14852 +2012-08-01,"Commercial Consumption","Delaware","DE",365 +2012-08-01,"Commercial Consumption","North Dakota","ND",300 +2012-08-01,"Commercial Consumption","Maryland","MD",3102 +2012-08-01,"Commercial Consumption","Alaska","AK",820 +2012-08-01,"Commercial Consumption","Nevada","NV",1503 +2012-08-01,"Commercial Consumption","Wyoming","WY",357 +2012-08-01,"Commercial Consumption","Montana","MT",537 +2012-08-01,"Commercial Consumption","U.S.","U.S.",133475 +2012-08-01,"Commercial Consumption","Kansas","KS",1008 +2012-08-01,"Commercial Consumption","Connecticut","CT",2154 +2012-08-01,"Commercial Consumption","Alabama","AL",1082 +2012-08-01,"Commercial Consumption","Illinois","IL",7135 +2012-08-01,"Commercial Consumption","West Virginia","WV",1198 +2012-08-01,"Commercial Consumption","Utah","UT",1200 +2012-08-01,"Commercial Consumption","Virginia","VA",2688 +2012-08-01,"Commercial Consumption","Massachusetts","MA",2675 +2012-08-01,"Commercial Consumption","Maine","ME",280 +2012-08-01,"Commercial Consumption","Vermont","VT",72 +2012-08-01,"Commercial Consumption","Arkansas","AR",2454 +2012-08-01,"Commercial Consumption","South Carolina","SC",1309 +2012-08-01,"Commercial Consumption","Oregon","OR",856 +2012-08-01,"Commercial Consumption","Wisconsin","WI",2771 +2012-08-01,"Commercial Consumption","South Dakota","SD",295 +2012-08-01,"Commercial Consumption","Texas","TX",9400 +2012-08-01,"Commercial Consumption","Nebraska","NE",847 +2012-08-01,"Commercial Consumption","Tennessee","TN",2036 +2012-08-01,"Commercial Consumption","Michigan","MI",5021 +2012-08-01,"Commercial Consumption","Washington","WA",2279 +2012-08-01,"Commercial Consumption","Pennsylvania","PA",4457 +2012-08-01,"Commercial Consumption","Missouri","MO",2179 +2012-08-01,"Commercial Consumption","New Jersey","NJ",9086 +2012-08-01,"Commercial Consumption","Louisiana","LA",1784 +2012-08-01,"Commercial Consumption","North Carolina","NC",2673 +2012-08-01,"Commercial Consumption","Minnesota","MN",2231 +2012-08-01,"Commercial Consumption","Oklahoma","OK",1463 +2012-08-01,"Commercial Consumption","Rhode Island","RI",236 +2012-08-01,"Commercial Consumption","Ohio","OH",4155 +2012-08-01,"Commercial Consumption","Mississippi","MS",955 +2012-08-01,"Commercial Consumption","Colorado","CO",1473 +2012-08-01,"Commercial Consumption","New Mexico","NM",1033 +2012-08-01,"Commercial Consumption","New Hampshire","NH",259 +2012-08-01,"Commercial Consumption","Kentucky","KY",1160 +2012-08-01,"Commercial Consumption","Georgia","GA",2686 +2012-08-01,"Commercial Consumption","Idaho","ID",644 +2012-08-01,"Commercial Consumption","Iowa","IA",1625 +2012-08-01,"Commercial Consumption","Arizona","AZ",1740 +2012-08-01,"Commercial Consumption","Indiana","IN",2252 +2012-08-01,"Commercial Consumption","District of Columbia","DC",662 +2012-08-01,"Delivered to Consumers","Vermont","VT",319 +2012-08-01,"Delivered to Consumers","Maryland","MD",11114 +2012-08-01,"Delivered to Consumers","Alaska","AK",5119 +2012-08-01,"Delivered to Consumers","Virginia","VA",29797 +2012-08-01,"Delivered to Consumers","Mississippi","MS",41042 +2012-08-01,"Delivered to Consumers","Missouri","MO",15511 +2012-08-01,"Delivered to Consumers","Oregon","OR",13249 +2012-08-01,"Delivered to Consumers","Arizona","AZ",39520 +2012-08-01,"Delivered to Consumers","Washington","WA",15774 +2012-08-01,"Delivered to Consumers","U.S.","U.S.",1832775 +2012-08-01,"Delivered to Consumers","Montana","MT",3027 +2012-08-01,"Delivered to Consumers","Iowa","IA",16924 +2012-08-01,"Delivered to Consumers","Connecticut","CT",17892 +2012-08-01,"Delivered to Consumers","South Carolina","SC",18298 +2012-08-01,"Delivered to Consumers","Georgia","GA",50864 +2012-08-01,"Delivered to Consumers","Idaho","ID",5724 +2012-08-01,"Delivered to Consumers","Wisconsin","WI",21819 +2012-08-01,"Delivered to Consumers","North Carolina","NC",28599 +2012-08-01,"Delivered to Consumers","New Jersey","NJ",43857 +2012-08-01,"Delivered to Consumers","Indiana","IN",41094 +2012-08-01,"Delivered to Consumers","Wyoming","WY",4537 +2012-08-01,"Delivered to Consumers","Illinois","IL",43629 +2012-08-01,"Delivered to Consumers","New York","NY",86454 +2012-08-01,"Delivered to Consumers","Oklahoma","OK",56307 +2012-08-01,"Delivered to Consumers","Kansas","KS",17992 +2012-08-01,"Delivered to Consumers","Tennessee","TN",17756 +2012-08-01,"Delivered to Consumers","Pennsylvania","PA",61379 +2012-08-01,"Delivered to Consumers","Massachusetts","MA",32098 +2012-08-01,"Delivered to Consumers","New Mexico","NM",12489 +2012-08-01,"Delivered to Consumers","Hawaii","HI",214 +2012-08-01,"Delivered to Consumers","Ohio","OH",44183 +2012-08-01,"Delivered to Consumers","Arkansas","AR",24806 +2012-08-01,"Delivered to Consumers","Alabama","AL",54896 +2012-08-01,"Delivered to Consumers","Maine","ME",6776 +2012-08-01,"Delivered to Consumers","North Dakota","ND",2984 +2012-08-01,"Delivered to Consumers","Utah","UT",10667 +2012-08-01,"Delivered to Consumers","South Dakota","SD",4117 +2012-08-01,"Delivered to Consumers","Rhode Island","RI",8328 +2012-08-01,"Delivered to Consumers","Kentucky","KY",12721 +2012-08-01,"Delivered to Consumers","Colorado","CO",18834 +2012-08-01,"Delivered to Consumers","Texas","TX",323754 +2012-08-01,"Delivered to Consumers","Florida","FL",127290 +2012-08-01,"Delivered to Consumers","Michigan","MI",36482 +2012-08-01,"Delivered to Consumers","Nevada","NV",26124 +2012-08-01,"Delivered to Consumers","New Hampshire","NH",5939 +2012-08-01,"Delivered to Consumers","District of Columbia","DC",978 +2012-08-01,"Delivered to Consumers","Delaware","DE",8188 +2012-08-01,"Delivered to Consumers","West Virginia","WV",3964 +2012-08-01,"Delivered to Consumers","Nebraska","NE",10122 +2012-08-01,"Delivered to Consumers","California","CA",208397 +2012-08-01,"Delivered to Consumers","Louisiana","LA",118124 +2012-08-01,"Delivered to Consumers","Minnesota","MN",22700 +2012-08-01,"Electric Power Consumption","Louisiana","LA",35333 +2012-08-01,"Electric Power Consumption","Colorado","CO",10162 +2012-08-01,"Electric Power Consumption","Utah","UT",4999 +2012-08-01,"Electric Power Consumption","Minnesota","MN",5581 +2012-08-01,"Electric Power Consumption","Kansas","KS",4445 +2012-08-01,"Electric Power Consumption","Mississippi","MS",29713 +2012-08-01,"Electric Power Consumption","North Dakota","ND",0 +2012-08-01,"Electric Power Consumption","Connecticut","CT",12490 +2012-08-01,"Electric Power Consumption","Idaho","ID",2459 +2012-08-01,"Electric Power Consumption","Oregon","OR",7219 +2012-08-01,"Electric Power Consumption","Wisconsin","WI",8183 +2012-08-01,"Electric Power Consumption","Vermont","VT",3 +2012-08-01,"Electric Power Consumption","Nebraska","NE",1250 +2012-08-01,"Electric Power Consumption","Maine","ME",4143 +2012-08-01,"Electric Power Consumption","Maryland","MD",5571 +2012-08-01,"Electric Power Consumption","Arkansas","AR",15385 +2012-08-01,"Electric Power Consumption","Pennsylvania","PA",37929 +2012-08-01,"Electric Power Consumption","Wyoming","WY",36 +2012-08-01,"Electric Power Consumption","U.S.","U.S.",1003938 +2012-08-01,"Electric Power Consumption","Hawaii","HI",NA +2012-08-01,"Electric Power Consumption","South Carolina","SC",9644 +2012-08-01,"Electric Power Consumption","New York","NY",57285 +2012-08-01,"Electric Power Consumption","Rhode Island","RI",7039 +2012-08-01,"Electric Power Consumption","West Virginia","WV",289 +2012-08-01,"Electric Power Consumption","Tennessee","TN",6545 +2012-08-01,"Electric Power Consumption","California","CA",101388 +2012-08-01,"Electric Power Consumption","Oklahoma","OK",38833 +2012-08-01,"Electric Power Consumption","Illinois","IL",9250 +2012-08-01,"Electric Power Consumption","North Carolina","NC",16794 +2012-08-01,"Electric Power Consumption","Florida","FL",114407 +2012-08-01,"Electric Power Consumption","Alabama","AL",39324 +2012-08-01,"Electric Power Consumption","Alaska","AK",3268 +2012-08-01,"Electric Power Consumption","Washington","WA",5935 +2012-08-01,"Electric Power Consumption","Texas","TX",178032 +2012-08-01,"Electric Power Consumption","Michigan","MI",15198 +2012-08-01,"Electric Power Consumption","South Dakota","SD",508 +2012-08-01,"Electric Power Consumption","Missouri","MO",6970 +2012-08-01,"Electric Power Consumption","Arizona","AZ",35177 +2012-08-01,"Electric Power Consumption","Virginia","VA",19932 +2012-08-01,"Electric Power Consumption","Massachusetts","MA",23234 +2012-08-01,"Electric Power Consumption","Nevada","NV",22608 +2012-08-01,"Electric Power Consumption","Kentucky","KY",2634 +2012-08-01,"Electric Power Consumption","New Hampshire","NH",5053 +2012-08-01,"Electric Power Consumption","New Mexico","NM",8969 +2012-08-01,"Electric Power Consumption","New Jersey","NJ",25873 +2012-08-01,"Electric Power Consumption","Iowa","IA",1770 +2012-08-01,"Electric Power Consumption","Ohio","OH",15870 +2012-08-01,"Electric Power Consumption","Montana","MT",703 +2012-08-01,"Electric Power Consumption","Indiana","IN",9148 +2012-08-01,"Electric Power Consumption","Delaware","DE",5233 +2012-08-01,"Electric Power Consumption","Georgia","GA",32124 +2012-08-01,"Industrial Consumption","Washington","WA",5584 +2012-08-01,"Industrial Consumption","Utah","UT",2670 +2012-08-01,"Industrial Consumption","Arkansas","AR",6414 +2012-08-01,"Industrial Consumption","New Hampshire","NH",480 +2012-08-01,"Industrial Consumption","Idaho","ID",2080 +2012-08-01,"Industrial Consumption","District of Columbia","DC",0 +2012-08-01,"Industrial Consumption","North Dakota","ND",2506 +2012-08-01,"Industrial Consumption","Pennsylvania","PA",14834 +2012-08-01,"Industrial Consumption","New York","NY",5215 +2012-08-01,"Industrial Consumption","Maine","ME",2321 +2012-08-01,"Industrial Consumption","Virginia","VA",5786 +2012-08-01,"Industrial Consumption","Montana","MT",1412 +2012-08-01,"Industrial Consumption","Massachusetts","MA",2610 +2012-08-01,"Industrial Consumption","North Carolina","NC",7996 +2012-08-01,"Industrial Consumption","Georgia","GA",12563 +2012-08-01,"Industrial Consumption","Louisiana","LA",79763 +2012-08-01,"Industrial Consumption","Colorado","CO",4769 +2012-08-01,"Industrial Consumption","South Dakota","SD",3084 +2012-08-01,"Industrial Consumption","Oregon","OR",4397 +2012-08-01,"Industrial Consumption","Nevada","NV",910 +2012-08-01,"Industrial Consumption","Mississippi","MS",9843 +2012-08-01,"Industrial Consumption","South Carolina","SC",6845 +2012-08-01,"Industrial Consumption","New Jersey","NJ",4060 +2012-08-01,"Industrial Consumption","Iowa","IA",12355 +2012-08-01,"Industrial Consumption","Illinois","IL",19343 +2012-08-01,"Industrial Consumption","Oklahoma","OK",14868 +2012-08-01,"Industrial Consumption","New Mexico","NM",1567 +2012-08-01,"Industrial Consumption","Wisconsin","WI",8665 +2012-08-01,"Industrial Consumption","Rhode Island","RI",635 +2012-08-01,"Industrial Consumption","Hawaii","HI",24 +2012-08-01,"Industrial Consumption","Missouri","MO",4594 +2012-08-01,"Industrial Consumption","Ohio","OH",19784 +2012-08-01,"Industrial Consumption","Arizona","AZ",1439 +2012-08-01,"Industrial Consumption","Nebraska","NE",7511 +2012-08-01,"Industrial Consumption","Wyoming","WY",3864 +2012-08-01,"Industrial Consumption","Tennessee","TN",8155 +2012-08-01,"Industrial Consumption","Florida","FL",8087 +2012-08-01,"Industrial Consumption","Michigan","MI",10445 +2012-08-01,"Industrial Consumption","Kentucky","KY",8090 +2012-08-01,"Industrial Consumption","Indiana","IN",27375 +2012-08-01,"Industrial Consumption","Alaska","AK",473 +2012-08-01,"Industrial Consumption","Maryland","MD",812 +2012-08-01,"Industrial Consumption","Kansas","KS",11572 +2012-08-01,"Industrial Consumption","U.S.","U.S.",587219 +2012-08-01,"Industrial Consumption","California","CA",67045 +2012-08-01,"Industrial Consumption","Alabama","AL",13774 +2012-08-01,"Industrial Consumption","West Virginia","WV",2098 +2012-08-01,"Industrial Consumption","Vermont","VT",176 +2012-08-01,"Industrial Consumption","Connecticut","CT",2275 +2012-08-01,"Industrial Consumption","Texas","TX",131072 +2012-08-01,"Industrial Consumption","Minnesota","MN",12531 +2012-08-01,"Industrial Consumption","Delaware","DE",2449 +2012-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",118830 +2012-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",57210 +2012-08-01,"Residential Consumption","Minnesota","MN",2357 +2012-08-01,"Residential Consumption","Arkansas","AR",551 +2012-08-01,"Residential Consumption","New Hampshire","NH",144 +2012-08-01,"Residential Consumption","Wyoming","WY",278 +2012-08-01,"Residential Consumption","New York","NY",8776 +2012-08-01,"Residential Consumption","Texas","TX",5063 +2012-08-01,"Residential Consumption","Iowa","IA",1173 +2012-08-01,"Residential Consumption","Tennessee","TN",1019 +2012-08-01,"Residential Consumption","New Mexico","NM",899 +2012-08-01,"Residential Consumption","Oklahoma","OK",1121 +2012-08-01,"Residential Consumption","Alabama","AL",700 +2012-08-01,"Residential Consumption","West Virginia","WV",379 +2012-08-01,"Residential Consumption","Louisiana","LA",1242 +2012-08-01,"Residential Consumption","Connecticut","CT",971 +2012-08-01,"Residential Consumption","Virginia","VA",1369 +2012-08-01,"Residential Consumption","Nebraska","NE",511 +2012-08-01,"Residential Consumption","Idaho","ID",529 +2012-08-01,"Residential Consumption","Missouri","MO",1769 +2012-08-01,"Residential Consumption","Arizona","AZ",1020 +2012-08-01,"Residential Consumption","South Carolina","SC",500 +2012-08-01,"Residential Consumption","Rhode Island","RI",411 +2012-08-01,"Residential Consumption","Ohio","OH",4367 +2012-08-01,"Residential Consumption","Michigan","MI",5790 +2012-08-01,"Residential Consumption","U.S.","U.S.",105604 +2012-08-01,"Residential Consumption","Utah","UT",1773 +2012-08-01,"Residential Consumption","South Dakota","SD",230 +2012-08-01,"Residential Consumption","Georgia","GA",3398 +2012-08-01,"Residential Consumption","Pennsylvania","PA",4133 +2012-08-01,"Residential Consumption","Maine","ME",32 +2012-08-01,"Residential Consumption","Florida","FL",805 +2012-08-01,"Residential Consumption","Massachusetts","MA",3514 +2012-08-01,"Residential Consumption","New Jersey","NJ",4822 +2012-08-01,"Residential Consumption","Washington","WA",1933 +2012-08-01,"Residential Consumption","Delaware","DE",141 +2012-08-01,"Residential Consumption","North Carolina","NC",1135 +2012-08-01,"Residential Consumption","Maryland","MD",1610 +2012-08-01,"Residential Consumption","Indiana","IN",2318 +2012-08-01,"Residential Consumption","Kentucky","KY",836 +2012-08-01,"Residential Consumption","Alaska","AK",558 +2012-08-01,"Residential Consumption","Mississippi","MS",530 +2012-08-01,"Residential Consumption","Hawaii","HI",37 +2012-08-01,"Residential Consumption","Vermont","VT",68 +2012-08-01,"Residential Consumption","Nevada","NV",1054 +2012-08-01,"Residential Consumption","North Dakota","ND",179 +2012-08-01,"Residential Consumption","Montana","MT",375 +2012-08-01,"Residential Consumption","Colorado","CO",2405 +2012-08-01,"Residential Consumption","Kansas","KS",967 +2012-08-01,"Residential Consumption","California","CA",20731 +2012-08-01,"Residential Consumption","Illinois","IL",7878 +2012-08-01,"Residential Consumption","Oregon","OR",765 +2012-08-01,"Residential Consumption","Wisconsin","WI",2195 +2012-08-01,"Residential Consumption","District of Columbia","DC",242 +2012-08-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-08-01,"Vehicle Fuel Consumption","Washington","WA",43 +2012-08-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-08-01,"Vehicle Fuel Consumption","New York","NY",326 +2012-08-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-08-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2012-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-08-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-08-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",74 +2012-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-08-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-08-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-08-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2012-08-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2012-08-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2012-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-08-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2012-08-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2012-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2012-08-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-08-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2012-08-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2012-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-08-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-08-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2012-08-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2012-08-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-08-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-08-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2012-08-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-08-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-08-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-08-01,"Vehicle Fuel Consumption","Texas","TX",187 +2012-08-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-08-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-08-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2012-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-08-01,"Vehicle Fuel Consumption","California","CA",1243 +2012-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2538 +2012-08-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",64 +2012-08-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-08-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-09-01,"Commercial Consumption","Colorado","CO",1805 +2012-09-01,"Commercial Consumption","Virginia","VA",3203 +2012-09-01,"Commercial Consumption","Missouri","MO",2530 +2012-09-01,"Commercial Consumption","Massachusetts","MA",3165 +2012-09-01,"Commercial Consumption","New Jersey","NJ",10495 +2012-09-01,"Commercial Consumption","Maryland","MD",3177 +2012-09-01,"Commercial Consumption","Nebraska","NE",982 +2012-09-01,"Commercial Consumption","Arizona","AZ",1792 +2012-09-01,"Commercial Consumption","Louisiana","LA",1620 +2012-09-01,"Commercial Consumption","Utah","UT",776 +2012-09-01,"Commercial Consumption","Oklahoma","OK",1430 +2012-09-01,"Commercial Consumption","South Dakota","SD",372 +2012-09-01,"Commercial Consumption","Florida","FL",3953 +2012-09-01,"Commercial Consumption","Idaho","ID",708 +2012-09-01,"Commercial Consumption","Illinois","IL",8893 +2012-09-01,"Commercial Consumption","Minnesota","MN",2969 +2012-09-01,"Commercial Consumption","Pennsylvania","PA",4844 +2012-09-01,"Commercial Consumption","Vermont","VT",87 +2012-09-01,"Commercial Consumption","Alabama","AL",1094 +2012-09-01,"Commercial Consumption","Tennessee","TN",2114 +2012-09-01,"Commercial Consumption","Indiana","IN",2958 +2012-09-01,"Commercial Consumption","District of Columbia","DC",854 +2012-09-01,"Commercial Consumption","West Virginia","WV",1453 +2012-09-01,"Commercial Consumption","Oregon","OR",1035 +2012-09-01,"Commercial Consumption","Maine","ME",345 +2012-09-01,"Commercial Consumption","Kansas","KS",951 +2012-09-01,"Commercial Consumption","Rhode Island","RI",255 +2012-09-01,"Commercial Consumption","Iowa","IA",1993 +2012-09-01,"Commercial Consumption","Hawaii","HI",147 +2012-09-01,"Commercial Consumption","New York","NY",14728 +2012-09-01,"Commercial Consumption","Washington","WA",2363 +2012-09-01,"Commercial Consumption","New Hampshire","NH",225 +2012-09-01,"Commercial Consumption","Georgia","GA",2573 +2012-09-01,"Commercial Consumption","Arkansas","AR",2548 +2012-09-01,"Commercial Consumption","Michigan","MI",5214 +2012-09-01,"Commercial Consumption","North Dakota","ND",343 +2012-09-01,"Commercial Consumption","U.S.","U.S.",141657 +2012-09-01,"Commercial Consumption","California","CA",17027 +2012-09-01,"Commercial Consumption","Mississippi","MS",882 +2012-09-01,"Commercial Consumption","South Carolina","SC",1328 +2012-09-01,"Commercial Consumption","North Carolina","NC",2529 +2012-09-01,"Commercial Consumption","Montana","MT",632 +2012-09-01,"Commercial Consumption","Ohio","OH",5222 +2012-09-01,"Commercial Consumption","Connecticut","CT",2345 +2012-09-01,"Commercial Consumption","Delaware","DE",429 +2012-09-01,"Commercial Consumption","Wyoming","WY",335 +2012-09-01,"Commercial Consumption","New Mexico","NM",1110 +2012-09-01,"Commercial Consumption","Wisconsin","WI",3001 +2012-09-01,"Commercial Consumption","Kentucky","KY",1284 +2012-09-01,"Commercial Consumption","Texas","TX",8931 +2012-09-01,"Commercial Consumption","Alaska","AK",952 +2012-09-01,"Commercial Consumption","Nevada","NV",1657 +2012-09-01,"Delivered to Consumers","Kentucky","KY",11849 +2012-09-01,"Delivered to Consumers","Colorado","CO",17392 +2012-09-01,"Delivered to Consumers","Louisiana","LA",109920 +2012-09-01,"Delivered to Consumers","Washington","WA",16627 +2012-09-01,"Delivered to Consumers","District of Columbia","DC",1158 +2012-09-01,"Delivered to Consumers","Delaware","DE",7494 +2012-09-01,"Delivered to Consumers","Montana","MT",3118 +2012-09-01,"Delivered to Consumers","Maryland","MD",9047 +2012-09-01,"Delivered to Consumers","Alaska","AK",5489 +2012-09-01,"Delivered to Consumers","Nebraska","NE",8653 +2012-09-01,"Delivered to Consumers","New Hampshire","NH",5273 +2012-09-01,"Delivered to Consumers","Illinois","IL",46414 +2012-09-01,"Delivered to Consumers","Kansas","KS",12951 +2012-09-01,"Delivered to Consumers","Tennessee","TN",17261 +2012-09-01,"Delivered to Consumers","Iowa","IA",17830 +2012-09-01,"Delivered to Consumers","California","CA",194104 +2012-09-01,"Delivered to Consumers","Texas","TX",272945 +2012-09-01,"Delivered to Consumers","Nevada","NV",21680 +2012-09-01,"Delivered to Consumers","Florida","FL",118031 +2012-09-01,"Delivered to Consumers","West Virginia","WV",4257 +2012-09-01,"Delivered to Consumers","Idaho","ID",5408 +2012-09-01,"Delivered to Consumers","Arkansas","AR",19107 +2012-09-01,"Delivered to Consumers","Utah","UT",8972 +2012-09-01,"Delivered to Consumers","New Mexico","NM",9518 +2012-09-01,"Delivered to Consumers","Wyoming","WY",4692 +2012-09-01,"Delivered to Consumers","Vermont","VT",351 +2012-09-01,"Delivered to Consumers","Oklahoma","OK",45168 +2012-09-01,"Delivered to Consumers","Alabama","AL",47531 +2012-09-01,"Delivered to Consumers","North Carolina","NC",25404 +2012-09-01,"Delivered to Consumers","Mississippi","MS",31040 +2012-09-01,"Delivered to Consumers","Massachusetts","MA",28435 +2012-09-01,"Delivered to Consumers","Oregon","OR",16905 +2012-09-01,"Delivered to Consumers","New Jersey","NJ",41320 +2012-09-01,"Delivered to Consumers","South Dakota","SD",3775 +2012-09-01,"Delivered to Consumers","Hawaii","HI",207 +2012-09-01,"Delivered to Consumers","Ohio","OH",44037 +2012-09-01,"Delivered to Consumers","Connecticut","CT",16176 +2012-09-01,"Delivered to Consumers","Virginia","VA",28155 +2012-09-01,"Delivered to Consumers","Missouri","MO",12393 +2012-09-01,"Delivered to Consumers","South Carolina","SC",18866 +2012-09-01,"Delivered to Consumers","Minnesota","MN",20382 +2012-09-01,"Delivered to Consumers","U.S.","U.S.",1640347 +2012-09-01,"Delivered to Consumers","New York","NY",71617 +2012-09-01,"Delivered to Consumers","Wisconsin","WI",19404 +2012-09-01,"Delivered to Consumers","Arizona","AZ",30135 +2012-09-01,"Delivered to Consumers","North Dakota","ND",3027 +2012-09-01,"Delivered to Consumers","Indiana","IN",38619 +2012-09-01,"Delivered to Consumers","Rhode Island","RI",6824 +2012-09-01,"Delivered to Consumers","Michigan","MI",35444 +2012-09-01,"Delivered to Consumers","Pennsylvania","PA",57337 +2012-09-01,"Delivered to Consumers","Maine","ME",5344 +2012-09-01,"Delivered to Consumers","Georgia","GA",43263 +2012-09-01,"Electric Power Consumption","Arkansas","AR",9328 +2012-09-01,"Electric Power Consumption","New York","NY",41513 +2012-09-01,"Electric Power Consumption","Oklahoma","OK",27119 +2012-09-01,"Electric Power Consumption","Illinois","IL",6252 +2012-09-01,"Electric Power Consumption","Pennsylvania","PA",32377 +2012-09-01,"Electric Power Consumption","Maine","ME",2646 +2012-09-01,"Electric Power Consumption","Delaware","DE",4553 +2012-09-01,"Electric Power Consumption","Arizona","AZ",25391 +2012-09-01,"Electric Power Consumption","New Mexico","NM",5946 +2012-09-01,"Electric Power Consumption","Louisiana","LA",28605 +2012-09-01,"Electric Power Consumption","South Carolina","SC",10620 +2012-09-01,"Electric Power Consumption","Minnesota","MN",2551 +2012-09-01,"Electric Power Consumption","Wyoming","WY",29 +2012-09-01,"Electric Power Consumption","Nebraska","NE",267 +2012-09-01,"Electric Power Consumption","North Carolina","NC",14032 +2012-09-01,"Electric Power Consumption","North Dakota","ND",NA +2012-09-01,"Electric Power Consumption","Texas","TX",133771 +2012-09-01,"Electric Power Consumption","Oregon","OR",10546 +2012-09-01,"Electric Power Consumption","Wisconsin","WI",4259 +2012-09-01,"Electric Power Consumption","U.S.","U.S.",802588 +2012-09-01,"Electric Power Consumption","Ohio","OH",13233 +2012-09-01,"Electric Power Consumption","Utah","UT",4134 +2012-09-01,"Electric Power Consumption","Tennessee","TN",6173 +2012-09-01,"Electric Power Consumption","Mississippi","MS",20428 +2012-09-01,"Electric Power Consumption","Hawaii","HI",NA +2012-09-01,"Electric Power Consumption","Montana","MT",528 +2012-09-01,"Electric Power Consumption","Connecticut","CT",10483 +2012-09-01,"Electric Power Consumption","Virginia","VA",17131 +2012-09-01,"Electric Power Consumption","West Virginia","WV",150 +2012-09-01,"Electric Power Consumption","Missouri","MO",3352 +2012-09-01,"Electric Power Consumption","Kentucky","KY",1454 +2012-09-01,"Electric Power Consumption","Indiana","IN",6872 +2012-09-01,"Electric Power Consumption","Georgia","GA",27422 +2012-09-01,"Electric Power Consumption","Alabama","AL",31873 +2012-09-01,"Electric Power Consumption","Washington","WA",6370 +2012-09-01,"Electric Power Consumption","Idaho","ID",1634 +2012-09-01,"Electric Power Consumption","Rhode Island","RI",5516 +2012-09-01,"Electric Power Consumption","Michigan","MI",10524 +2012-09-01,"Electric Power Consumption","Massachusetts","MA",18343 +2012-09-01,"Electric Power Consumption","South Dakota","SD",52 +2012-09-01,"Electric Power Consumption","Florida","FL",105942 +2012-09-01,"Electric Power Consumption","Alaska","AK",2970 +2012-09-01,"Electric Power Consumption","New Jersey","NJ",22087 +2012-09-01,"Electric Power Consumption","Colorado","CO",7620 +2012-09-01,"Electric Power Consumption","Kansas","KS",2195 +2012-09-01,"Electric Power Consumption","Nevada","NV",17863 +2012-09-01,"Electric Power Consumption","Iowa","IA",925 +2012-09-01,"Electric Power Consumption","Vermont","VT",2 +2012-09-01,"Electric Power Consumption","New Hampshire","NH",4512 +2012-09-01,"Electric Power Consumption","Maryland","MD",3438 +2012-09-01,"Electric Power Consumption","California","CA",89558 +2012-09-01,"Industrial Consumption","Hawaii","HI",26 +2012-09-01,"Industrial Consumption","Louisiana","LA",78491 +2012-09-01,"Industrial Consumption","New Mexico","NM",1492 +2012-09-01,"Industrial Consumption","Pennsylvania","PA",15369 +2012-09-01,"Industrial Consumption","Maine","ME",2313 +2012-09-01,"Industrial Consumption","Wyoming","WY",4059 +2012-09-01,"Industrial Consumption","Wisconsin","WI",8937 +2012-09-01,"Industrial Consumption","New Jersey","NJ",3723 +2012-09-01,"Industrial Consumption","New Hampshire","NH",405 +2012-09-01,"Industrial Consumption","Idaho","ID",2442 +2012-09-01,"Industrial Consumption","Iowa","IA",13336 +2012-09-01,"Industrial Consumption","Massachusetts","MA",2945 +2012-09-01,"Industrial Consumption","Oklahoma","OK",15490 +2012-09-01,"Industrial Consumption","Washington","WA",5670 +2012-09-01,"Industrial Consumption","Arizona","AZ",1726 +2012-09-01,"Industrial Consumption","Utah","UT",2871 +2012-09-01,"Industrial Consumption","New York","NY",5089 +2012-09-01,"Industrial Consumption","West Virginia","WV",2023 +2012-09-01,"Industrial Consumption","Nevada","NV",912 +2012-09-01,"Industrial Consumption","Tennessee","TN",7826 +2012-09-01,"Industrial Consumption","Michigan","MI",11552 +2012-09-01,"Industrial Consumption","Illinois","IL",21335 +2012-09-01,"Industrial Consumption","Missouri","MO",4405 +2012-09-01,"Industrial Consumption","Texas","TX",124971 +2012-09-01,"Industrial Consumption","Nebraska","NE",6739 +2012-09-01,"Industrial Consumption","Vermont","VT",180 +2012-09-01,"Industrial Consumption","Indiana","IN",25902 +2012-09-01,"Industrial Consumption","North Carolina","NC",7827 +2012-09-01,"Industrial Consumption","Alaska","AK",472 +2012-09-01,"Industrial Consumption","North Dakota","ND",2463 +2012-09-01,"Industrial Consumption","Montana","MT",1499 +2012-09-01,"Industrial Consumption","Maryland","MD",802 +2012-09-01,"Industrial Consumption","Colorado","CO",4764 +2012-09-01,"Industrial Consumption","U.S.","U.S.",575034 +2012-09-01,"Industrial Consumption","Florida","FL",7358 +2012-09-01,"Industrial Consumption","Delaware","DE",2351 +2012-09-01,"Industrial Consumption","Georgia","GA",9718 +2012-09-01,"Industrial Consumption","Kansas","KS",8634 +2012-09-01,"Industrial Consumption","Oregon","OR",4289 +2012-09-01,"Industrial Consumption","California","CA",66709 +2012-09-01,"Industrial Consumption","Arkansas","AR",6611 +2012-09-01,"Industrial Consumption","Alabama","AL",13826 +2012-09-01,"Industrial Consumption","Minnesota","MN",12010 +2012-09-01,"Industrial Consumption","Connecticut","CT",2094 +2012-09-01,"Industrial Consumption","Rhode Island","RI",648 +2012-09-01,"Industrial Consumption","District of Columbia","DC",0 +2012-09-01,"Industrial Consumption","South Dakota","SD",3088 +2012-09-01,"Industrial Consumption","Ohio","OH",19892 +2012-09-01,"Industrial Consumption","Mississippi","MS",9158 +2012-09-01,"Industrial Consumption","South Carolina","SC",6455 +2012-09-01,"Industrial Consumption","Virginia","VA",5970 +2012-09-01,"Industrial Consumption","Kentucky","KY",8171 +2012-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",115658 +2012-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",51204 +2012-09-01,"Residential Consumption","Ohio","OH",5682 +2012-09-01,"Residential Consumption","Utah","UT",1167 +2012-09-01,"Residential Consumption","Maryland","MD",1612 +2012-09-01,"Residential Consumption","Wyoming","WY",268 +2012-09-01,"Residential Consumption","West Virginia","WV",631 +2012-09-01,"Residential Consumption","North Carolina","NC",1015 +2012-09-01,"Residential Consumption","Virginia","VA",1829 +2012-09-01,"Residential Consumption","South Dakota","SD",264 +2012-09-01,"Residential Consumption","Georgia","GA",3460 +2012-09-01,"Residential Consumption","Florida","FL",771 +2012-09-01,"Residential Consumption","California","CA",19607 +2012-09-01,"Residential Consumption","U.S.","U.S.",118611 +2012-09-01,"Residential Consumption","Louisiana","LA",1203 +2012-09-01,"Residential Consumption","Tennessee","TN",1146 +2012-09-01,"Residential Consumption","Kentucky","KY",940 +2012-09-01,"Residential Consumption","Missouri","MO",2105 +2012-09-01,"Residential Consumption","Alabama","AL",722 +2012-09-01,"Residential Consumption","Nebraska","NE",661 +2012-09-01,"Residential Consumption","Pennsylvania","PA",4723 +2012-09-01,"Residential Consumption","Indiana","IN",2886 +2012-09-01,"Residential Consumption","North Dakota","ND",221 +2012-09-01,"Residential Consumption","Arkansas","AR",618 +2012-09-01,"Residential Consumption","New Jersey","NJ",5000 +2012-09-01,"Residential Consumption","Delaware","DE",161 +2012-09-01,"Residential Consumption","Illinois","IL",9913 +2012-09-01,"Residential Consumption","Texas","TX",5091 +2012-09-01,"Residential Consumption","South Carolina","SC",462 +2012-09-01,"Residential Consumption","Hawaii","HI",35 +2012-09-01,"Residential Consumption","Connecticut","CT",1253 +2012-09-01,"Residential Consumption","Michigan","MI",8127 +2012-09-01,"Residential Consumption","Maine","ME",41 +2012-09-01,"Residential Consumption","Idaho","ID",614 +2012-09-01,"Residential Consumption","New Hampshire","NH",128 +2012-09-01,"Residential Consumption","Montana","MT",459 +2012-09-01,"Residential Consumption","Kansas","KS",1172 +2012-09-01,"Residential Consumption","Oklahoma","OK",1107 +2012-09-01,"Residential Consumption","Alaska","AK",1093 +2012-09-01,"Residential Consumption","Wisconsin","WI",3202 +2012-09-01,"Residential Consumption","District of Columbia","DC",233 +2012-09-01,"Residential Consumption","Washington","WA",2181 +2012-09-01,"Residential Consumption","New York","NY",9971 +2012-09-01,"Residential Consumption","Mississippi","MS",572 +2012-09-01,"Residential Consumption","Massachusetts","MA",3920 +2012-09-01,"Residential Consumption","Colorado","CO",3180 +2012-09-01,"Residential Consumption","Rhode Island","RI",398 +2012-09-01,"Residential Consumption","Oregon","OR",1023 +2012-09-01,"Residential Consumption","Iowa","IA",1576 +2012-09-01,"Residential Consumption","Vermont","VT",82 +2012-09-01,"Residential Consumption","Nevada","NV",1199 +2012-09-01,"Residential Consumption","Minnesota","MN",2852 +2012-09-01,"Residential Consumption","New Mexico","NM",950 +2012-09-01,"Residential Consumption","Arizona","AZ",1087 +2012-09-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-09-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-09-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-09-01,"Vehicle Fuel Consumption","Arizona","AZ",140 +2012-09-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-09-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2457 +2012-09-01,"Vehicle Fuel Consumption","Washington","WA",42 +2012-09-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-09-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-09-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-09-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2012-09-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-09-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-09-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-09-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2012-09-01,"Vehicle Fuel Consumption","New York","NY",316 +2012-09-01,"Vehicle Fuel Consumption","Nevada","NV",48 +2012-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2012-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2012-09-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-09-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-09-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2012-09-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2012-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-09-01,"Vehicle Fuel Consumption","California","CA",1203 +2012-09-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-09-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2012-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-09-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-09-01,"Vehicle Fuel Consumption","Texas","TX",181 +2012-09-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2012-09-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2012-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2012-09-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-09-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-09-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2012-09-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2012-09-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-09-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-09-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2012-09-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-10-01,"Commercial Consumption","Pennsylvania","PA",8988 +2012-10-01,"Commercial Consumption","Missouri","MO",4138 +2012-10-01,"Commercial Consumption","Montana","MT",1542 +2012-10-01,"Commercial Consumption","Georgia","GA",3726 +2012-10-01,"Commercial Consumption","Idaho","ID",1219 +2012-10-01,"Commercial Consumption","California","CA",19476 +2012-10-01,"Commercial Consumption","North Dakota","ND",852 +2012-10-01,"Commercial Consumption","Maine","ME",476 +2012-10-01,"Commercial Consumption","Alabama","AL",1933 +2012-10-01,"Commercial Consumption","South Carolina","SC",1782 +2012-10-01,"Commercial Consumption","Oregon","OR",1951 +2012-10-01,"Commercial Consumption","Virginia","VA",5246 +2012-10-01,"Commercial Consumption","Massachusetts","MA",3932 +2012-10-01,"Commercial Consumption","New Jersey","NJ",11957 +2012-10-01,"Commercial Consumption","Rhode Island","RI",440 +2012-10-01,"Commercial Consumption","Ohio","OH",11139 +2012-10-01,"Commercial Consumption","New York","NY",16698 +2012-10-01,"Commercial Consumption","District of Columbia","DC",1115 +2012-10-01,"Commercial Consumption","Minnesota","MN",6660 +2012-10-01,"Commercial Consumption","Colorado","CO",3699 +2012-10-01,"Commercial Consumption","New Hampshire","NH",394 +2012-10-01,"Commercial Consumption","Arizona","AZ",2081 +2012-10-01,"Commercial Consumption","Wisconsin","WI",6036 +2012-10-01,"Commercial Consumption","Kentucky","KY",2105 +2012-10-01,"Commercial Consumption","Texas","TX",11797 +2012-10-01,"Commercial Consumption","Connecticut","CT",2727 +2012-10-01,"Commercial Consumption","Mississippi","MS",1408 +2012-10-01,"Commercial Consumption","Indiana","IN",5528 +2012-10-01,"Commercial Consumption","Washington","WA",4401 +2012-10-01,"Commercial Consumption","Utah","UT",2435 +2012-10-01,"Commercial Consumption","New Mexico","NM",1815 +2012-10-01,"Commercial Consumption","Oklahoma","OK",3004 +2012-10-01,"Commercial Consumption","U.S.","U.S.",212768 +2012-10-01,"Commercial Consumption","Maryland","MD",4691 +2012-10-01,"Commercial Consumption","Florida","FL",4168 +2012-10-01,"Commercial Consumption","Alaska","AK",1813 +2012-10-01,"Commercial Consumption","Nevada","NV",2009 +2012-10-01,"Commercial Consumption","Illinois","IL",15286 +2012-10-01,"Commercial Consumption","Wyoming","WY",913 +2012-10-01,"Commercial Consumption","North Carolina","NC",4003 +2012-10-01,"Commercial Consumption","South Dakota","SD",685 +2012-10-01,"Commercial Consumption","Delaware","DE",686 +2012-10-01,"Commercial Consumption","Tennessee","TN",3522 +2012-10-01,"Commercial Consumption","Michigan","MI",10101 +2012-10-01,"Commercial Consumption","West Virginia","WV",1547 +2012-10-01,"Commercial Consumption","Kansas","KS",1693 +2012-10-01,"Commercial Consumption","Vermont","VT",144 +2012-10-01,"Commercial Consumption","Iowa","IA",3424 +2012-10-01,"Commercial Consumption","Hawaii","HI",149 +2012-10-01,"Commercial Consumption","Arkansas","AR",3281 +2012-10-01,"Commercial Consumption","Nebraska","NE",1737 +2012-10-01,"Commercial Consumption","Louisiana","LA",2214 +2012-10-01,"Delivered to Consumers","Hawaii","HI",208 +2012-10-01,"Delivered to Consumers","Kansas","KS",14254 +2012-10-01,"Delivered to Consumers","Iowa","IA",21917 +2012-10-01,"Delivered to Consumers","North Dakota","ND",4115 +2012-10-01,"Delivered to Consumers","Minnesota","MN",30599 +2012-10-01,"Delivered to Consumers","Illinois","IL",64878 +2012-10-01,"Delivered to Consumers","South Dakota","SD",4933 +2012-10-01,"Delivered to Consumers","New York","NY",79128 +2012-10-01,"Delivered to Consumers","Alaska","AK",7371 +2012-10-01,"Delivered to Consumers","Ohio","OH",61051 +2012-10-01,"Delivered to Consumers","District of Columbia","DC",1802 +2012-10-01,"Delivered to Consumers","Utah","UT",11733 +2012-10-01,"Delivered to Consumers","New Mexico","NM",10457 +2012-10-01,"Delivered to Consumers","Wyoming","WY",6433 +2012-10-01,"Delivered to Consumers","West Virginia","WV",5228 +2012-10-01,"Delivered to Consumers","Oklahoma","OK",37282 +2012-10-01,"Delivered to Consumers","Connecticut","CT",17374 +2012-10-01,"Delivered to Consumers","Alabama","AL",42844 +2012-10-01,"Delivered to Consumers","Virginia","VA",27583 +2012-10-01,"Delivered to Consumers","Pennsylvania","PA",62736 +2012-10-01,"Delivered to Consumers","New Jersey","NJ",41269 +2012-10-01,"Delivered to Consumers","Arizona","AZ",24752 +2012-10-01,"Delivered to Consumers","Maryland","MD",11886 +2012-10-01,"Delivered to Consumers","Nebraska","NE",10955 +2012-10-01,"Delivered to Consumers","Oregon","OR",20011 +2012-10-01,"Delivered to Consumers","Maine","ME",5358 +2012-10-01,"Delivered to Consumers","Florida","FL",107208 +2012-10-01,"Delivered to Consumers","U.S.","U.S.",1727393 +2012-10-01,"Delivered to Consumers","Idaho","ID",7340 +2012-10-01,"Delivered to Consumers","Tennessee","TN",18934 +2012-10-01,"Delivered to Consumers","Massachusetts","MA",28199 +2012-10-01,"Delivered to Consumers","Colorado","CO",22081 +2012-10-01,"Delivered to Consumers","California","CA",191369 +2012-10-01,"Delivered to Consumers","Montana","MT",5084 +2012-10-01,"Delivered to Consumers","Michigan","MI",51693 +2012-10-01,"Delivered to Consumers","Wisconsin","WI",27357 +2012-10-01,"Delivered to Consumers","South Carolina","SC",20339 +2012-10-01,"Delivered to Consumers","Louisiana","LA",110673 +2012-10-01,"Delivered to Consumers","Delaware","DE",7647 +2012-10-01,"Delivered to Consumers","Vermont","VT",501 +2012-10-01,"Delivered to Consumers","Rhode Island","RI",7477 +2012-10-01,"Delivered to Consumers","North Carolina","NC",24849 +2012-10-01,"Delivered to Consumers","Mississippi","MS",29598 +2012-10-01,"Delivered to Consumers","Missouri","MO",16080 +2012-10-01,"Delivered to Consumers","Texas","TX",247719 +2012-10-01,"Delivered to Consumers","Nevada","NV",20818 +2012-10-01,"Delivered to Consumers","Georgia","GA",43020 +2012-10-01,"Delivered to Consumers","New Hampshire","NH",5483 +2012-10-01,"Delivered to Consumers","Indiana","IN",49575 +2012-10-01,"Delivered to Consumers","Kentucky","KY",14695 +2012-10-01,"Delivered to Consumers","Arkansas","AR",20556 +2012-10-01,"Delivered to Consumers","Washington","WA",22937 +2012-10-01,"Electric Power Consumption","Virginia","VA",12418 +2012-10-01,"Electric Power Consumption","New Jersey","NJ",17093 +2012-10-01,"Electric Power Consumption","West Virginia","WV",170 +2012-10-01,"Electric Power Consumption","Wyoming","WY",45 +2012-10-01,"Electric Power Consumption","Missouri","MO",1613 +2012-10-01,"Electric Power Consumption","Montana","MT",421 +2012-10-01,"Electric Power Consumption","Georgia","GA",22727 +2012-10-01,"Electric Power Consumption","Washington","WA",6656 +2012-10-01,"Electric Power Consumption","Texas","TX",102192 +2012-10-01,"Electric Power Consumption","Illinois","IL",2496 +2012-10-01,"Electric Power Consumption","Massachusetts","MA",15423 +2012-10-01,"Electric Power Consumption","Pennsylvania","PA",27688 +2012-10-01,"Electric Power Consumption","Vermont","VT",2 +2012-10-01,"Electric Power Consumption","Maryland","MD",2357 +2012-10-01,"Electric Power Consumption","Louisiana","LA",23761 +2012-10-01,"Electric Power Consumption","Minnesota","MN",1958 +2012-10-01,"Electric Power Consumption","North Carolina","NC",9107 +2012-10-01,"Electric Power Consumption","Ohio","OH",12767 +2012-10-01,"Electric Power Consumption","Delaware","DE",4248 +2012-10-01,"Electric Power Consumption","Connecticut","CT",10622 +2012-10-01,"Electric Power Consumption","California","CA",82060 +2012-10-01,"Electric Power Consumption","Alaska","AK",3307 +2012-10-01,"Electric Power Consumption","Oregon","OR",10565 +2012-10-01,"Electric Power Consumption","South Dakota","SD",67 +2012-10-01,"Electric Power Consumption","Nebraska","NE",90 +2012-10-01,"Electric Power Consumption","New Hampshire","NH",4245 +2012-10-01,"Electric Power Consumption","Florida","FL",94486 +2012-10-01,"Electric Power Consumption","New York","NY",38655 +2012-10-01,"Electric Power Consumption","Michigan","MI",7910 +2012-10-01,"Electric Power Consumption","Wisconsin","WI",2541 +2012-10-01,"Electric Power Consumption","Indiana","IN",8357 +2012-10-01,"Electric Power Consumption","Arizona","AZ",19457 +2012-10-01,"Electric Power Consumption","Arkansas","AR",9154 +2012-10-01,"Electric Power Consumption","South Carolina","SC",10395 +2012-10-01,"Electric Power Consumption","Kansas","KS",957 +2012-10-01,"Electric Power Consumption","Hawaii","HI",NA +2012-10-01,"Electric Power Consumption","Colorado","CO",4154 +2012-10-01,"Electric Power Consumption","Kentucky","KY",924 +2012-10-01,"Electric Power Consumption","North Dakota","ND",NA +2012-10-01,"Electric Power Consumption","New Mexico","NM",5540 +2012-10-01,"Electric Power Consumption","Idaho","ID",1529 +2012-10-01,"Electric Power Consumption","Rhode Island","RI",5498 +2012-10-01,"Electric Power Consumption","Oklahoma","OK",16847 +2012-10-01,"Electric Power Consumption","Utah","UT",2858 +2012-10-01,"Electric Power Consumption","Nevada","NV",16263 +2012-10-01,"Electric Power Consumption","Iowa","IA",675 +2012-10-01,"Electric Power Consumption","Tennessee","TN",3973 +2012-10-01,"Electric Power Consumption","U.S.","U.S.",669195 +2012-10-01,"Electric Power Consumption","Maine","ME",2205 +2012-10-01,"Electric Power Consumption","Mississippi","MS",18099 +2012-10-01,"Electric Power Consumption","Alabama","AL",24622 +2012-10-01,"Industrial Consumption","Louisiana","LA",82862 +2012-10-01,"Industrial Consumption","Colorado","CO",6250 +2012-10-01,"Industrial Consumption","Utah","UT",2742 +2012-10-01,"Industrial Consumption","Maine","ME",2598 +2012-10-01,"Industrial Consumption","Texas","TX",125359 +2012-10-01,"Industrial Consumption","Nebraska","NE",7444 +2012-10-01,"Industrial Consumption","North Carolina","NC",9030 +2012-10-01,"Industrial Consumption","Kansas","KS",8937 +2012-10-01,"Industrial Consumption","U.S.","U.S.",602786 +2012-10-01,"Industrial Consumption","Virginia","VA",5967 +2012-10-01,"Industrial Consumption","Idaho","ID",2824 +2012-10-01,"Industrial Consumption","Iowa","IA",14591 +2012-10-01,"Industrial Consumption","Maryland","MD",1003 +2012-10-01,"Industrial Consumption","Massachusetts","MA",3326 +2012-10-01,"Industrial Consumption","Oklahoma","OK",14827 +2012-10-01,"Industrial Consumption","Ohio","OH",20832 +2012-10-01,"Industrial Consumption","Pennsylvania","PA",15756 +2012-10-01,"Industrial Consumption","New York","NY",5592 +2012-10-01,"Industrial Consumption","Nevada","NV",983 +2012-10-01,"Industrial Consumption","Mississippi","MS",9129 +2012-10-01,"Industrial Consumption","Michigan","MI",13185 +2012-10-01,"Industrial Consumption","Arkansas","AR",6973 +2012-10-01,"Industrial Consumption","Alabama","AL",14938 +2012-10-01,"Industrial Consumption","Vermont","VT",207 +2012-10-01,"Industrial Consumption","Kentucky","KY",9396 +2012-10-01,"Industrial Consumption","North Dakota","ND",2508 +2012-10-01,"Industrial Consumption","Hawaii","HI",26 +2012-10-01,"Industrial Consumption","Missouri","MO",5196 +2012-10-01,"Industrial Consumption","South Dakota","SD",3409 +2012-10-01,"Industrial Consumption","Wyoming","WY",4609 +2012-10-01,"Industrial Consumption","New Jersey","NJ",4108 +2012-10-01,"Industrial Consumption","New Hampshire","NH",560 +2012-10-01,"Industrial Consumption","Florida","FL",7724 +2012-10-01,"Industrial Consumption","Illinois","IL",22925 +2012-10-01,"Industrial Consumption","Rhode Island","RI",701 +2012-10-01,"Industrial Consumption","District of Columbia","DC",0 +2012-10-01,"Industrial Consumption","Oregon","OR",4971 +2012-10-01,"Industrial Consumption","California","CA",63968 +2012-10-01,"Industrial Consumption","South Carolina","SC",7161 +2012-10-01,"Industrial Consumption","Montana","MT",1637 +2012-10-01,"Industrial Consumption","Arizona","AZ",1696 +2012-10-01,"Industrial Consumption","West Virginia","WV",2148 +2012-10-01,"Industrial Consumption","Tennessee","TN",8710 +2012-10-01,"Industrial Consumption","Minnesota","MN",13364 +2012-10-01,"Industrial Consumption","Connecticut","CT",2031 +2012-10-01,"Industrial Consumption","Georgia","GA",10622 +2012-10-01,"Industrial Consumption","Alaska","AK",520 +2012-10-01,"Industrial Consumption","Washington","WA",6662 +2012-10-01,"Industrial Consumption","New Mexico","NM",1713 +2012-10-01,"Industrial Consumption","Wisconsin","WI",10951 +2012-10-01,"Industrial Consumption","Indiana","IN",27729 +2012-10-01,"Industrial Consumption","Delaware","DE",2387 +2012-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",119771 +2012-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",53921 +2012-10-01,"Residential Consumption","Hawaii","HI",34 +2012-10-01,"Residential Consumption","Virginia","VA",3929 +2012-10-01,"Residential Consumption","South Dakota","SD",772 +2012-10-01,"Residential Consumption","District of Columbia","DC",614 +2012-10-01,"Residential Consumption","North Dakota","ND",754 +2012-10-01,"Residential Consumption","New Hampshire","NH",282 +2012-10-01,"Residential Consumption","Kansas","KS",2667 +2012-10-01,"Residential Consumption","Delaware","DE",326 +2012-10-01,"Residential Consumption","U.S.","U.S.",240105 +2012-10-01,"Residential Consumption","Ohio","OH",16306 +2012-10-01,"Residential Consumption","Indiana","IN",7959 +2012-10-01,"Residential Consumption","Massachusetts","MA",5453 +2012-10-01,"Residential Consumption","Missouri","MO",5132 +2012-10-01,"Residential Consumption","Michigan","MI",20470 +2012-10-01,"Residential Consumption","New Jersey","NJ",8095 +2012-10-01,"Residential Consumption","Montana","MT",1485 +2012-10-01,"Residential Consumption","Kentucky","KY",2270 +2012-10-01,"Residential Consumption","Colorado","CO",7954 +2012-10-01,"Residential Consumption","Arizona","AZ",1373 +2012-10-01,"Residential Consumption","Alabama","AL",1334 +2012-10-01,"Residential Consumption","South Carolina","SC",1000 +2012-10-01,"Residential Consumption","Oregon","OR",2512 +2012-10-01,"Residential Consumption","Iowa","IA",3228 +2012-10-01,"Residential Consumption","Minnesota","MN",8616 +2012-10-01,"Residential Consumption","Pennsylvania","PA",10279 +2012-10-01,"Residential Consumption","California","CA",24622 +2012-10-01,"Residential Consumption","Mississippi","MS",963 +2012-10-01,"Residential Consumption","Wisconsin","WI",7823 +2012-10-01,"Residential Consumption","Vermont","VT",149 +2012-10-01,"Residential Consumption","Maryland","MD",3817 +2012-10-01,"Residential Consumption","Georgia","GA",5851 +2012-10-01,"Residential Consumption","Florida","FL",823 +2012-10-01,"Residential Consumption","Washington","WA",5175 +2012-10-01,"Residential Consumption","Connecticut","CT",1993 +2012-10-01,"Residential Consumption","Tennessee","TN",2728 +2012-10-01,"Residential Consumption","Nebraska","NE",1680 +2012-10-01,"Residential Consumption","Wyoming","WY",865 +2012-10-01,"Residential Consumption","Rhode Island","RI",830 +2012-10-01,"Residential Consumption","North Carolina","NC",2706 +2012-10-01,"Residential Consumption","Louisiana","LA",1835 +2012-10-01,"Residential Consumption","Utah","UT",3673 +2012-10-01,"Residential Consumption","Maine","ME",80 +2012-10-01,"Residential Consumption","Arkansas","AR",1145 +2012-10-01,"Residential Consumption","Oklahoma","OK",2583 +2012-10-01,"Residential Consumption","Alaska","AK",1730 +2012-10-01,"Residential Consumption","New York","NY",17856 +2012-10-01,"Residential Consumption","Texas","TX",8185 +2012-10-01,"Residential Consumption","Nevada","NV",1513 +2012-10-01,"Residential Consumption","New Mexico","NM",1368 +2012-10-01,"Residential Consumption","Idaho","ID",1756 +2012-10-01,"Residential Consumption","West Virginia","WV",1363 +2012-10-01,"Residential Consumption","Illinois","IL",24148 +2012-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2012-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",64 +2012-10-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2012-10-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-10-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-10-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-10-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-10-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2012-10-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2538 +2012-10-01,"Vehicle Fuel Consumption","Washington","WA",43 +2012-10-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-10-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2012-10-01,"Vehicle Fuel Consumption","Texas","TX",187 +2012-10-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2012-10-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-10-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2012-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-10-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2012-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-10-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-10-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2012-10-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-10-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-10-01,"Vehicle Fuel Consumption","California","CA",1243 +2012-10-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-10-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-10-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-10-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-10-01,"Vehicle Fuel Consumption","New York","NY",326 +2012-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2012-10-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2012-10-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-10-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-10-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2012-10-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-10-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-10-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",74 +2012-10-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-10-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2012-10-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2012-11-01,"Commercial Consumption","Washington","WA",5524 +2012-11-01,"Commercial Consumption","Florida","FL",4852 +2012-11-01,"Commercial Consumption","Rhode Island","RI",1315 +2012-11-01,"Commercial Consumption","Arkansas","AR",3992 +2012-11-01,"Commercial Consumption","Indiana","IN",7862 +2012-11-01,"Commercial Consumption","Oregon","OR",2844 +2012-11-01,"Commercial Consumption","Pennsylvania","PA",17102 +2012-11-01,"Commercial Consumption","Missouri","MO",5832 +2012-11-01,"Commercial Consumption","South Dakota","SD",1039 +2012-11-01,"Commercial Consumption","Montana","MT",2019 +2012-11-01,"Commercial Consumption","Alaska","AK",2318 +2012-11-01,"Commercial Consumption","Mississippi","MS",1937 +2012-11-01,"Commercial Consumption","Michigan","MI",16172 +2012-11-01,"Commercial Consumption","West Virginia","WV",2625 +2012-11-01,"Commercial Consumption","New Mexico","NM",2825 +2012-11-01,"Commercial Consumption","Oklahoma","OK",3772 +2012-11-01,"Commercial Consumption","Massachusetts","MA",7301 +2012-11-01,"Commercial Consumption","New Jersey","NJ",14469 +2012-11-01,"Commercial Consumption","Kentucky","KY",3550 +2012-11-01,"Commercial Consumption","Vermont","VT",229 +2012-11-01,"Commercial Consumption","South Carolina","SC",2389 +2012-11-01,"Commercial Consumption","Colorado","CO",5650 +2012-11-01,"Commercial Consumption","Wisconsin","WI",8562 +2012-11-01,"Commercial Consumption","U.S.","U.S.",308076 +2012-11-01,"Commercial Consumption","Idaho","ID",1563 +2012-11-01,"Commercial Consumption","Iowa","IA",4142 +2012-11-01,"Commercial Consumption","Delaware","DE",1359 +2012-11-01,"Commercial Consumption","Arizona","AZ",2601 +2012-11-01,"Commercial Consumption","Minnesota","MN",9299 +2012-11-01,"Commercial Consumption","Ohio","OH",17805 +2012-11-01,"Commercial Consumption","Alabama","AL",2760 +2012-11-01,"Commercial Consumption","Nevada","NV",2538 +2012-11-01,"Commercial Consumption","Louisiana","LA",2792 +2012-11-01,"Commercial Consumption","Virginia","VA",7948 +2012-11-01,"Commercial Consumption","Maryland","MD",7801 +2012-11-01,"Commercial Consumption","Connecticut","CT",4376 +2012-11-01,"Commercial Consumption","Tennessee","TN",5564 +2012-11-01,"Commercial Consumption","Illinois","IL",20617 +2012-11-01,"Commercial Consumption","Wyoming","WY",1089 +2012-11-01,"Commercial Consumption","North Dakota","ND",1278 +2012-11-01,"Commercial Consumption","Utah","UT",3468 +2012-11-01,"Commercial Consumption","Kansas","KS",2497 +2012-11-01,"Commercial Consumption","Hawaii","HI",159 +2012-11-01,"Commercial Consumption","California","CA",23169 +2012-11-01,"Commercial Consumption","North Carolina","NC",5686 +2012-11-01,"Commercial Consumption","New Hampshire","NH",1020 +2012-11-01,"Commercial Consumption","Maine","ME",830 +2012-11-01,"Commercial Consumption","Texas","TX",13900 +2012-11-01,"Commercial Consumption","Georgia","GA",6200 +2012-11-01,"Commercial Consumption","New York","NY",28819 +2012-11-01,"Commercial Consumption","Nebraska","NE",2663 +2012-11-01,"Commercial Consumption","District of Columbia","DC",1951 +2012-11-01,"Delivered to Consumers","Montana","MT",6181 +2012-11-01,"Delivered to Consumers","Kansas","KS",17751 +2012-11-01,"Delivered to Consumers","Alabama","AL",47992 +2012-11-01,"Delivered to Consumers","Virginia","VA",36149 +2012-11-01,"Delivered to Consumers","Missouri","MO",23156 +2012-11-01,"Delivered to Consumers","South Carolina","SC",23623 +2012-11-01,"Delivered to Consumers","New Jersey","NJ",52262 +2012-11-01,"Delivered to Consumers","Arizona","AZ",15611 +2012-11-01,"Delivered to Consumers","Florida","FL",89336 +2012-11-01,"Delivered to Consumers","U.S.","U.S.",1989660 +2012-11-01,"Delivered to Consumers","New Mexico","NM",12162 +2012-11-01,"Delivered to Consumers","Indiana","IN",58917 +2012-11-01,"Delivered to Consumers","Delaware","DE",7423 +2012-11-01,"Delivered to Consumers","West Virginia","WV",8176 +2012-11-01,"Delivered to Consumers","Maryland","MD",22191 +2012-11-01,"Delivered to Consumers","Arkansas","AR",21345 +2012-11-01,"Delivered to Consumers","Nevada","NV",19517 +2012-11-01,"Delivered to Consumers","Louisiana","LA",104018 +2012-11-01,"Delivered to Consumers","Minnesota","MN",40154 +2012-11-01,"Delivered to Consumers","Utah","UT",16250 +2012-11-01,"Delivered to Consumers","Alaska","AK",9197 +2012-11-01,"Delivered to Consumers","Connecticut","CT",22389 +2012-11-01,"Delivered to Consumers","Wisconsin","WI",38284 +2012-11-01,"Delivered to Consumers","North Carolina","NC",32177 +2012-11-01,"Delivered to Consumers","Texas","TX",243655 +2012-11-01,"Delivered to Consumers","Rhode Island","RI",7526 +2012-11-01,"Delivered to Consumers","New York","NY",118786 +2012-11-01,"Delivered to Consumers","Kentucky","KY",20026 +2012-11-01,"Delivered to Consumers","Georgia","GA",52299 +2012-11-01,"Delivered to Consumers","Illinois","IL",93613 +2012-11-01,"Delivered to Consumers","Tennessee","TN",26792 +2012-11-01,"Delivered to Consumers","North Dakota","ND",4611 +2012-11-01,"Delivered to Consumers","Hawaii","HI",223 +2012-11-01,"Delivered to Consumers","Ohio","OH",84711 +2012-11-01,"Delivered to Consumers","Michigan","MI",74959 +2012-11-01,"Delivered to Consumers","Colorado","CO",31502 +2012-11-01,"Delivered to Consumers","Washington","WA",24246 +2012-11-01,"Delivered to Consumers","New Hampshire","NH",4883 +2012-11-01,"Delivered to Consumers","Wyoming","WY",6911 +2012-11-01,"Delivered to Consumers","Iowa","IA",26812 +2012-11-01,"Delivered to Consumers","Pennsylvania","PA",89542 +2012-11-01,"Delivered to Consumers","Mississippi","MS",29552 +2012-11-01,"Delivered to Consumers","Massachusetts","MA",36974 +2012-11-01,"Delivered to Consumers","Vermont","VT",787 +2012-11-01,"Delivered to Consumers","South Dakota","SD",6045 +2012-11-01,"Delivered to Consumers","Oklahoma","OK",37154 +2012-11-01,"Delivered to Consumers","Idaho","ID",7903 +2012-11-01,"Delivered to Consumers","Nebraska","NE",12656 +2012-11-01,"Delivered to Consumers","California","CA",193400 +2012-11-01,"Delivered to Consumers","Oregon","OR",20722 +2012-11-01,"Delivered to Consumers","Maine","ME",5322 +2012-11-01,"Delivered to Consumers","District of Columbia","DC",3784 +2012-11-01,"Electric Power Consumption","Illinois","IL",3507 +2012-11-01,"Electric Power Consumption","Michigan","MI",8494 +2012-11-01,"Electric Power Consumption","Maryland","MD",2972 +2012-11-01,"Electric Power Consumption","Idaho","ID",988 +2012-11-01,"Electric Power Consumption","Colorado","CO",6320 +2012-11-01,"Electric Power Consumption","Rhode Island","RI",3384 +2012-11-01,"Electric Power Consumption","U.S.","U.S.",579745 +2012-11-01,"Electric Power Consumption","Missouri","MO",1901 +2012-11-01,"Electric Power Consumption","Georgia","GA",20277 +2012-11-01,"Electric Power Consumption","Alabama","AL",26858 +2012-11-01,"Electric Power Consumption","Alaska","AK",3573 +2012-11-01,"Electric Power Consumption","Louisiana","LA",17837 +2012-11-01,"Electric Power Consumption","New York","NY",39241 +2012-11-01,"Electric Power Consumption","Kansas","KS",841 +2012-11-01,"Electric Power Consumption","Vermont","VT",4 +2012-11-01,"Electric Power Consumption","Nebraska","NE",115 +2012-11-01,"Electric Power Consumption","Mississippi","MS",16114 +2012-11-01,"Electric Power Consumption","Arizona","AZ",8550 +2012-11-01,"Electric Power Consumption","Washington","WA",3081 +2012-11-01,"Electric Power Consumption","Arkansas","AR",7487 +2012-11-01,"Electric Power Consumption","Nevada","NV",12758 +2012-11-01,"Electric Power Consumption","Wyoming","WY",30 +2012-11-01,"Electric Power Consumption","Delaware","DE",2301 +2012-11-01,"Electric Power Consumption","California","CA",68922 +2012-11-01,"Electric Power Consumption","Utah","UT",3353 +2012-11-01,"Electric Power Consumption","Maine","ME",1624 +2012-11-01,"Electric Power Consumption","Kentucky","KY",1332 +2012-11-01,"Electric Power Consumption","New Jersey","NJ",11646 +2012-11-01,"Electric Power Consumption","South Carolina","SC",10398 +2012-11-01,"Electric Power Consumption","Massachusetts","MA",11707 +2012-11-01,"Electric Power Consumption","Pennsylvania","PA",28895 +2012-11-01,"Electric Power Consumption","North Carolina","NC",7885 +2012-11-01,"Electric Power Consumption","Ohio","OH",11033 +2012-11-01,"Electric Power Consumption","North Dakota","ND",0 +2012-11-01,"Electric Power Consumption","Virginia","VA",11311 +2012-11-01,"Electric Power Consumption","Texas","TX",88702 +2012-11-01,"Electric Power Consumption","Oklahoma","OK",14726 +2012-11-01,"Electric Power Consumption","Minnesota","MN",3085 +2012-11-01,"Electric Power Consumption","West Virginia","WV",122 +2012-11-01,"Electric Power Consumption","Hawaii","HI",NA +2012-11-01,"Electric Power Consumption","Montana","MT",303 +2012-11-01,"Electric Power Consumption","Connecticut","CT",11042 +2012-11-01,"Electric Power Consumption","Florida","FL",74621 +2012-11-01,"Electric Power Consumption","New Mexico","NM",4305 +2012-11-01,"Electric Power Consumption","Oregon","OR",8185 +2012-11-01,"Electric Power Consumption","Wisconsin","WI",5069 +2012-11-01,"Electric Power Consumption","Iowa","IA",935 +2012-11-01,"Electric Power Consumption","Tennessee","TN",4393 +2012-11-01,"Electric Power Consumption","South Dakota","SD",6 +2012-11-01,"Electric Power Consumption","New Hampshire","NH",2269 +2012-11-01,"Electric Power Consumption","Indiana","IN",7243 +2012-11-01,"Industrial Consumption","Washington","WA",6889 +2012-11-01,"Industrial Consumption","Arizona","AZ",1903 +2012-11-01,"Industrial Consumption","Utah","UT",3175 +2012-11-01,"Industrial Consumption","Wisconsin","WI",11539 +2012-11-01,"Industrial Consumption","Georgia","GA",12742 +2012-11-01,"Industrial Consumption","Maryland","MD",1416 +2012-11-01,"Industrial Consumption","Missouri","MO",5295 +2012-11-01,"Industrial Consumption","Alabama","AL",14622 +2012-11-01,"Industrial Consumption","Minnesota","MN",14761 +2012-11-01,"Industrial Consumption","Idaho","ID",2538 +2012-11-01,"Industrial Consumption","Connecticut","CT",2282 +2012-11-01,"Industrial Consumption","North Carolina","NC",9415 +2012-11-01,"Industrial Consumption","North Dakota","ND",2104 +2012-11-01,"Industrial Consumption","Massachusetts","MA",4745 +2012-11-01,"Industrial Consumption","Kansas","KS",9140 +2012-11-01,"Industrial Consumption","Nevada","NV",1030 +2012-11-01,"Industrial Consumption","Iowa","IA",15392 +2012-11-01,"Industrial Consumption","Oregon","OR",4946 +2012-11-01,"Industrial Consumption","Maine","ME",2688 +2012-11-01,"Industrial Consumption","California","CA",58871 +2012-11-01,"Industrial Consumption","South Carolina","SC",7234 +2012-11-01,"Industrial Consumption","Nebraska","NE",6641 +2012-11-01,"Industrial Consumption","Vermont","VT",264 +2012-11-01,"Industrial Consumption","New Jersey","NJ",6002 +2012-11-01,"Industrial Consumption","Alaska","AK",562 +2012-11-01,"Industrial Consumption","Hawaii","HI",28 +2012-11-01,"Industrial Consumption","Colorado","CO",6852 +2012-11-01,"Industrial Consumption","Ohio","OH",22557 +2012-11-01,"Industrial Consumption","Pennsylvania","PA",17367 +2012-11-01,"Industrial Consumption","Mississippi","MS",9041 +2012-11-01,"Industrial Consumption","Arkansas","AR",6934 +2012-11-01,"Industrial Consumption","Wyoming","WY",4529 +2012-11-01,"Industrial Consumption","Tennessee","TN",9091 +2012-11-01,"Industrial Consumption","Rhode Island","RI",769 +2012-11-01,"Industrial Consumption","District of Columbia","DC",0 +2012-11-01,"Industrial Consumption","Texas","TX",127111 +2012-11-01,"Industrial Consumption","West Virginia","WV",2129 +2012-11-01,"Industrial Consumption","Delaware","DE",2631 +2012-11-01,"Industrial Consumption","Oklahoma","OK",13869 +2012-11-01,"Industrial Consumption","Louisiana","LA",79763 +2012-11-01,"Industrial Consumption","South Dakota","SD",3656 +2012-11-01,"Industrial Consumption","New Mexico","NM",1819 +2012-11-01,"Industrial Consumption","Florida","FL",8599 +2012-11-01,"Industrial Consumption","Kentucky","KY",9540 +2012-11-01,"Industrial Consumption","Montana","MT",1659 +2012-11-01,"Industrial Consumption","U.S.","U.S.",617247 +2012-11-01,"Industrial Consumption","New York","NY",6943 +2012-11-01,"Industrial Consumption","Virginia","VA",6399 +2012-11-01,"Industrial Consumption","New Hampshire","NH",841 +2012-11-01,"Industrial Consumption","Michigan","MI",15060 +2012-11-01,"Industrial Consumption","Indiana","IN",28930 +2012-11-01,"Industrial Consumption","Illinois","IL",24937 +2012-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",116074 +2012-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",62107 +2012-11-01,"Residential Consumption","Mississippi","MS",2460 +2012-11-01,"Residential Consumption","Louisiana","LA",3626 +2012-11-01,"Residential Consumption","South Dakota","SD",1343 +2012-11-01,"Residential Consumption","Massachusetts","MA",13159 +2012-11-01,"Residential Consumption","Kentucky","KY",5604 +2012-11-01,"Residential Consumption","Wyoming","WY",1262 +2012-11-01,"Residential Consumption","Ohio","OH",33308 +2012-11-01,"Residential Consumption","Iowa","IA",6343 +2012-11-01,"Residential Consumption","Utah","UT",6231 +2012-11-01,"Residential Consumption","Maryland","MD",9985 +2012-11-01,"Residential Consumption","Minnesota","MN",13009 +2012-11-01,"Residential Consumption","New Mexico","NM",3193 +2012-11-01,"Residential Consumption","Montana","MT",2199 +2012-11-01,"Residential Consumption","Arizona","AZ",2417 +2012-11-01,"Residential Consumption","Alabama","AL",3735 +2012-11-01,"Residential Consumption","Alaska","AK",2743 +2012-11-01,"Residential Consumption","West Virginia","WV",3300 +2012-11-01,"Residential Consumption","New York","NY",43467 +2012-11-01,"Residential Consumption","Illinois","IL",44531 +2012-11-01,"Residential Consumption","Michigan","MI",35206 +2012-11-01,"Residential Consumption","Maine","ME",180 +2012-11-01,"Residential Consumption","New Jersey","NJ",20129 +2012-11-01,"Residential Consumption","U.S.","U.S.",482134 +2012-11-01,"Residential Consumption","Vermont","VT",290 +2012-11-01,"Residential Consumption","Florida","FL",1257 +2012-11-01,"Residential Consumption","Idaho","ID",2803 +2012-11-01,"Residential Consumption","Kansas","KS",5273 +2012-11-01,"Residential Consumption","Texas","TX",13761 +2012-11-01,"Residential Consumption","Virginia","VA",10469 +2012-11-01,"Residential Consumption","Georgia","GA",12989 +2012-11-01,"Residential Consumption","Washington","WA",8711 +2012-11-01,"Residential Consumption","Oklahoma","OK",4766 +2012-11-01,"Residential Consumption","Delaware","DE",1132 +2012-11-01,"Residential Consumption","South Carolina","SC",3602 +2012-11-01,"Residential Consumption","District of Columbia","DC",1762 +2012-11-01,"Residential Consumption","Indiana","IN",14880 +2012-11-01,"Residential Consumption","Missouri","MO",10128 +2012-11-01,"Residential Consumption","Rhode Island","RI",2052 +2012-11-01,"Residential Consumption","Oregon","OR",4735 +2012-11-01,"Residential Consumption","North Carolina","NC",9189 +2012-11-01,"Residential Consumption","Connecticut","CT",4686 +2012-11-01,"Residential Consumption","Tennessee","TN",7744 +2012-11-01,"Residential Consumption","Pennsylvania","PA",26153 +2012-11-01,"Residential Consumption","North Dakota","ND",1230 +2012-11-01,"Residential Consumption","Hawaii","HI",36 +2012-11-01,"Residential Consumption","Wisconsin","WI",13109 +2012-11-01,"Residential Consumption","Nebraska","NE",3235 +2012-11-01,"Residential Consumption","Nevada","NV",3143 +2012-11-01,"Residential Consumption","Arkansas","AR",2930 +2012-11-01,"Residential Consumption","New Hampshire","NH",750 +2012-11-01,"Residential Consumption","Colorado","CO",12657 +2012-11-01,"Residential Consumption","California","CA",41236 +2012-11-01,"Vehicle Fuel Consumption","Washington","WA",42 +2012-11-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-11-01,"Vehicle Fuel Consumption","Nevada","NV",48 +2012-11-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2012-11-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-11-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-11-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2012-11-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-11-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-11-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2012-11-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-11-01,"Vehicle Fuel Consumption","North Carolina","NC",2 +2012-11-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-11-01,"Vehicle Fuel Consumption","Illinois","IL",21 +2012-11-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2012-11-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-11-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-11-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-11-01,"Vehicle Fuel Consumption","Michigan","MI",27 +2012-11-01,"Vehicle Fuel Consumption","Georgia","GA",90 +2012-11-01,"Vehicle Fuel Consumption","California","CA",1203 +2012-11-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",21 +2012-11-01,"Vehicle Fuel Consumption","Arizona","AZ",140 +2012-11-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-11-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-11-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-11-01,"Vehicle Fuel Consumption","New York","NY",316 +2012-11-01,"Vehicle Fuel Consumption","Missouri","MO",0 +2012-11-01,"Vehicle Fuel Consumption","Texas","TX",181 +2012-11-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2012-11-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2457 +2012-11-01,"Vehicle Fuel Consumption","Ohio","OH",7 +2012-11-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2012-11-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-11-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-11-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-12-01,"Commercial Consumption","South Carolina","SC",2396 +2012-12-01,"Commercial Consumption","Missouri","MO",8509 +2012-12-01,"Commercial Consumption","Wisconsin","WI",11007 +2012-12-01,"Commercial Consumption","Rhode Island","RI",1612 +2012-12-01,"Commercial Consumption","Delaware","DE",1370 +2012-12-01,"Commercial Consumption","Nevada","NV",3411 +2012-12-01,"Commercial Consumption","Pennsylvania","PA",18159 +2012-12-01,"Commercial Consumption","Iowa","IA",6359 +2012-12-01,"Commercial Consumption","Alaska","AK",2587 +2012-12-01,"Commercial Consumption","California","CA",29686 +2012-12-01,"Commercial Consumption","Alabama","AL",2941 +2012-12-01,"Commercial Consumption","District of Columbia","DC",1772 +2012-12-01,"Commercial Consumption","Minnesota","MN",14035 +2012-12-01,"Commercial Consumption","Oklahoma","OK",6511 +2012-12-01,"Commercial Consumption","Maine","ME",1053 +2012-12-01,"Commercial Consumption","Kentucky","KY",4671 +2012-12-01,"Commercial Consumption","Georgia","GA",6843 +2012-12-01,"Commercial Consumption","Ohio","OH",20364 +2012-12-01,"Commercial Consumption","Arkansas","AR",4783 +2012-12-01,"Commercial Consumption","Michigan","MI",20094 +2012-12-01,"Commercial Consumption","North Carolina","NC",5878 +2012-12-01,"Commercial Consumption","South Dakota","SD",1595 +2012-12-01,"Commercial Consumption","New Hampshire","NH",1264 +2012-12-01,"Commercial Consumption","Montana","MT",3082 +2012-12-01,"Commercial Consumption","Indiana","IN",9468 +2012-12-01,"Commercial Consumption","West Virginia","WV",2704 +2012-12-01,"Commercial Consumption","Colorado","CO",8758 +2012-12-01,"Commercial Consumption","Vermont","VT",353 +2012-12-01,"Commercial Consumption","Idaho","ID",2372 +2012-12-01,"Commercial Consumption","Connecticut","CT",5674 +2012-12-01,"Commercial Consumption","Arizona","AZ",3668 +2012-12-01,"Commercial Consumption","Washington","WA",6738 +2012-12-01,"Commercial Consumption","Massachusetts","MA",11007 +2012-12-01,"Commercial Consumption","New Jersey","NJ",19119 +2012-12-01,"Commercial Consumption","Texas","TX",20335 +2012-12-01,"Commercial Consumption","Maryland","MD",8029 +2012-12-01,"Commercial Consumption","Hawaii","HI",154 +2012-12-01,"Commercial Consumption","New York","NY",35217 +2012-12-01,"Commercial Consumption","Nebraska","NE",4252 +2012-12-01,"Commercial Consumption","Tennessee","TN",6587 +2012-12-01,"Commercial Consumption","Illinois","IL",25916 +2012-12-01,"Commercial Consumption","Wyoming","WY",1637 +2012-12-01,"Commercial Consumption","North Dakota","ND",1879 +2012-12-01,"Commercial Consumption","Oregon","OR",4001 +2012-12-01,"Commercial Consumption","Virginia","VA",8320 +2012-12-01,"Commercial Consumption","Kansas","KS",4211 +2012-12-01,"Commercial Consumption","Florida","FL",5076 +2012-12-01,"Commercial Consumption","Mississippi","MS",2433 +2012-12-01,"Commercial Consumption","Louisiana","LA",3049 +2012-12-01,"Commercial Consumption","Utah","UT",5816 +2012-12-01,"Commercial Consumption","New Mexico","NM",4081 +2012-12-01,"Commercial Consumption","U.S.","U.S.",390835 +2012-12-01,"Delivered to Consumers","Oklahoma","OK",46983 +2012-12-01,"Delivered to Consumers","Oregon","OR",21766 +2012-12-01,"Delivered to Consumers","Maine","ME",5724 +2012-12-01,"Delivered to Consumers","Vermont","VT",1137 +2012-12-01,"Delivered to Consumers","New York","NY",132120 +2012-12-01,"Delivered to Consumers","Montana","MT",8433 +2012-12-01,"Delivered to Consumers","Hawaii","HI",216 +2012-12-01,"Delivered to Consumers","Kansas","KS",25307 +2012-12-01,"Delivered to Consumers","Connecticut","CT",24118 +2012-12-01,"Delivered to Consumers","U.S.","U.S.",2312832 +2012-12-01,"Delivered to Consumers","New Mexico","NM",17083 +2012-12-01,"Delivered to Consumers","Delaware","DE",9051 +2012-12-01,"Delivered to Consumers","Rhode Island","RI",8376 +2012-12-01,"Delivered to Consumers","Maryland","MD",21681 +2012-12-01,"Delivered to Consumers","Tennessee","TN",30336 +2012-12-01,"Delivered to Consumers","Wisconsin","WI",46476 +2012-12-01,"Delivered to Consumers","Virginia","VA",39613 +2012-12-01,"Delivered to Consumers","North Carolina","NC",36164 +2012-12-01,"Delivered to Consumers","Massachusetts","MA",42420 +2012-12-01,"Delivered to Consumers","Florida","FL",101973 +2012-12-01,"Delivered to Consumers","Utah","UT",23047 +2012-12-01,"Delivered to Consumers","West Virginia","WV",8721 +2012-12-01,"Delivered to Consumers","Alaska","AK",9304 +2012-12-01,"Delivered to Consumers","Kentucky","KY",22347 +2012-12-01,"Delivered to Consumers","Mississippi","MS",34028 +2012-12-01,"Delivered to Consumers","South Carolina","SC",20778 +2012-12-01,"Delivered to Consumers","Nevada","NV",25416 +2012-12-01,"Delivered to Consumers","Louisiana","LA",115906 +2012-12-01,"Delivered to Consumers","Idaho","ID",9639 +2012-12-01,"Delivered to Consumers","Ohio","OH",96679 +2012-12-01,"Delivered to Consumers","Indiana","IN",66603 +2012-12-01,"Delivered to Consumers","California","CA",225814 +2012-12-01,"Delivered to Consumers","New Hampshire","NH",6590 +2012-12-01,"Delivered to Consumers","District of Columbia","DC",3559 +2012-12-01,"Delivered to Consumers","Arkansas","AR",22300 +2012-12-01,"Delivered to Consumers","Pennsylvania","PA",98332 +2012-12-01,"Delivered to Consumers","Missouri","MO",32573 +2012-12-01,"Delivered to Consumers","New Jersey","NJ",65927 +2012-12-01,"Delivered to Consumers","Arizona","AZ",17703 +2012-12-01,"Delivered to Consumers","North Dakota","ND",5349 +2012-12-01,"Delivered to Consumers","Minnesota","MN",54647 +2012-12-01,"Delivered to Consumers","Wyoming","WY",8399 +2012-12-01,"Delivered to Consumers","Illinois","IL",112077 +2012-12-01,"Delivered to Consumers","South Dakota","SD",7469 +2012-12-01,"Delivered to Consumers","Michigan","MI",86306 +2012-12-01,"Delivered to Consumers","Iowa","IA",33585 +2012-12-01,"Delivered to Consumers","Alabama","AL",53975 +2012-12-01,"Delivered to Consumers","Nebraska","NE",17115 +2012-12-01,"Delivered to Consumers","Colorado","CO",42920 +2012-12-01,"Delivered to Consumers","Texas","TX",275758 +2012-12-01,"Delivered to Consumers","Georgia","GA",61950 +2012-12-01,"Delivered to Consumers","Washington","WA",29036 +2012-12-01,"Electric Power Consumption","Virginia","VA",13239 +2012-12-01,"Electric Power Consumption","South Carolina","SC",7333 +2012-12-01,"Electric Power Consumption","Oklahoma","OK",14902 +2012-12-01,"Electric Power Consumption","Minnesota","MN",4671 +2012-12-01,"Electric Power Consumption","Michigan","MI",5504 +2012-12-01,"Electric Power Consumption","Maryland","MD",1226 +2012-12-01,"Electric Power Consumption","California","CA",63863 +2012-12-01,"Electric Power Consumption","Utah","UT",3442 +2012-12-01,"Electric Power Consumption","Massachusetts","MA",8177 +2012-12-01,"Electric Power Consumption","West Virginia","WV",42 +2012-12-01,"Electric Power Consumption","Kentucky","KY",606 +2012-12-01,"Electric Power Consumption","Rhode Island","RI",3524 +2012-12-01,"Electric Power Consumption","Illinois","IL",2507 +2012-12-01,"Electric Power Consumption","Ohio","OH",12980 +2012-12-01,"Electric Power Consumption","Montana","MT",316 +2012-12-01,"Electric Power Consumption","Georgia","GA",25326 +2012-12-01,"Electric Power Consumption","Texas","TX",94898 +2012-12-01,"Electric Power Consumption","Kansas","KS",622 +2012-12-01,"Electric Power Consumption","Wisconsin","WI",4705 +2012-12-01,"Electric Power Consumption","Wyoming","WY",51 +2012-12-01,"Electric Power Consumption","U.S.","U.S.",599502 +2012-12-01,"Electric Power Consumption","South Dakota","SD",169 +2012-12-01,"Electric Power Consumption","Nebraska","NE",55 +2012-12-01,"Electric Power Consumption","Missouri","MO",1904 +2012-12-01,"Electric Power Consumption","Mississippi","MS",18324 +2012-12-01,"Electric Power Consumption","Hawaii","HI",NA +2012-12-01,"Electric Power Consumption","New Hampshire","NH",3488 +2012-12-01,"Electric Power Consumption","Delaware","DE",3411 +2012-12-01,"Electric Power Consumption","Florida","FL",86123 +2012-12-01,"Electric Power Consumption","Alabama","AL",31222 +2012-12-01,"Electric Power Consumption","Idaho","ID",629 +2012-12-01,"Electric Power Consumption","Arkansas","AR",5712 +2012-12-01,"Electric Power Consumption","New York","NY",34505 +2012-12-01,"Electric Power Consumption","Iowa","IA",1087 +2012-12-01,"Electric Power Consumption","Indiana","IN",6959 +2012-12-01,"Electric Power Consumption","Connecticut","CT",9348 +2012-12-01,"Electric Power Consumption","New Jersey","NJ",11765 +2012-12-01,"Electric Power Consumption","Louisiana","LA",22977 +2012-12-01,"Electric Power Consumption","Oregon","OR",5782 +2012-12-01,"Electric Power Consumption","Pennsylvania","PA",30909 +2012-12-01,"Electric Power Consumption","Vermont","VT",4 +2012-12-01,"Electric Power Consumption","Maine","ME",1532 +2012-12-01,"Electric Power Consumption","Washington","WA",2760 +2012-12-01,"Electric Power Consumption","New Mexico","NM",5235 +2012-12-01,"Electric Power Consumption","Nevada","NV",15311 +2012-12-01,"Electric Power Consumption","North Carolina","NC",11589 +2012-12-01,"Electric Power Consumption","Colorado","CO",5693 +2012-12-01,"Electric Power Consumption","Tennessee","TN",5032 +2012-12-01,"Electric Power Consumption","North Dakota","ND",NA +2012-12-01,"Electric Power Consumption","Arizona","AZ",7054 +2012-12-01,"Electric Power Consumption","Alaska","AK",2989 +2012-12-01,"Industrial Consumption","Wisconsin","WI",12462 +2012-12-01,"Industrial Consumption","Connecticut","CT",2654 +2012-12-01,"Industrial Consumption","Kentucky","KY",9485 +2012-12-01,"Industrial Consumption","Illinois","IL",26363 +2012-12-01,"Industrial Consumption","Rhode Island","RI",908 +2012-12-01,"Industrial Consumption","North Carolina","NC",9373 +2012-12-01,"Industrial Consumption","South Dakota","SD",3711 +2012-12-01,"Industrial Consumption","Pennsylvania","PA",18054 +2012-12-01,"Industrial Consumption","Nevada","NV",1165 +2012-12-01,"Industrial Consumption","Alabama","AL",14945 +2012-12-01,"Industrial Consumption","Nebraska","NE",7058 +2012-12-01,"Industrial Consumption","Virginia","VA",5967 +2012-12-01,"Industrial Consumption","New Jersey","NJ",6090 +2012-12-01,"Industrial Consumption","Michigan","MI",16042 +2012-12-01,"Industrial Consumption","Maryland","MD",1190 +2012-12-01,"Industrial Consumption","Massachusetts","MA",5286 +2012-12-01,"Industrial Consumption","Hawaii","HI",25 +2012-12-01,"Industrial Consumption","Oklahoma","OK",16494 +2012-12-01,"Industrial Consumption","Washington","WA",7334 +2012-12-01,"Industrial Consumption","Ohio","OH",24448 +2012-12-01,"Industrial Consumption","Utah","UT",3121 +2012-12-01,"Industrial Consumption","New Hampshire","NH",788 +2012-12-01,"Industrial Consumption","Montana","MT",1899 +2012-12-01,"Industrial Consumption","Louisiana","LA",84824 +2012-12-01,"Industrial Consumption","Maine","ME",2875 +2012-12-01,"Industrial Consumption","Texas","TX",131336 +2012-12-01,"Industrial Consumption","West Virginia","WV",2522 +2012-12-01,"Industrial Consumption","Vermont","VT",289 +2012-12-01,"Industrial Consumption","Florida","FL",9112 +2012-12-01,"Industrial Consumption","North Dakota","ND",1640 +2012-12-01,"Industrial Consumption","Arizona","AZ",2221 +2012-12-01,"Industrial Consumption","Mississippi","MS",9645 +2012-12-01,"Industrial Consumption","Wyoming","WY",4754 +2012-12-01,"Industrial Consumption","Iowa","IA",15917 +2012-12-01,"Industrial Consumption","Indiana","IN",31303 +2012-12-01,"Industrial Consumption","Georgia","GA",13500 +2012-12-01,"Industrial Consumption","District of Columbia","DC",0 +2012-12-01,"Industrial Consumption","Kansas","KS",10695 +2012-12-01,"Industrial Consumption","Oregon","OR",5174 +2012-12-01,"Industrial Consumption","California","CA",60860 +2012-12-01,"Industrial Consumption","Arkansas","AR",7318 +2012-12-01,"Industrial Consumption","South Carolina","SC",6942 +2012-12-01,"Industrial Consumption","Idaho","ID",2577 +2012-12-01,"Industrial Consumption","Delaware","DE",2933 +2012-12-01,"Industrial Consumption","Missouri","MO",6103 +2012-12-01,"Industrial Consumption","New Mexico","NM",1915 +2012-12-01,"Industrial Consumption","Tennessee","TN",8752 +2012-12-01,"Industrial Consumption","Minnesota","MN",15713 +2012-12-01,"Industrial Consumption","Alaska","AK",598 +2012-12-01,"Industrial Consumption","Colorado","CO",8396 +2012-12-01,"Industrial Consumption","U.S.","U.S.",649613 +2012-12-01,"Industrial Consumption","New York","NY",6835 +2012-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",118880 +2012-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",72195 +2012-12-01,"Residential Consumption","South Carolina","SC",4105 +2012-12-01,"Residential Consumption","Oregon","OR",6797 +2012-12-01,"Residential Consumption","Iowa","IA",10222 +2012-12-01,"Residential Consumption","Arkansas","AR",4486 +2012-12-01,"Residential Consumption","Montana","MT",3137 +2012-12-01,"Residential Consumption","Oklahoma","OK",9054 +2012-12-01,"Residential Consumption","Delaware","DE",1337 +2012-12-01,"Residential Consumption","California","CA",70162 +2012-12-01,"Residential Consumption","Alaska","AK",3129 +2012-12-01,"Residential Consumption","Texas","TX",29003 +2012-12-01,"Residential Consumption","Connecticut","CT",6440 +2012-12-01,"Residential Consumption","South Dakota","SD",1995 +2012-12-01,"Residential Consumption","Massachusetts","MA",17885 +2012-12-01,"Residential Consumption","New Hampshire","NH",1046 +2012-12-01,"Residential Consumption","Washington","WA",12161 +2012-12-01,"Residential Consumption","Maryland","MD",11218 +2012-12-01,"Residential Consumption","New Mexico","NM",5831 +2012-12-01,"Residential Consumption","Colorado","CO",20049 +2012-12-01,"Residential Consumption","Alabama","AL",4849 +2012-12-01,"Residential Consumption","Wyoming","WY",1955 +2012-12-01,"Residential Consumption","New York","NY",55236 +2012-12-01,"Residential Consumption","Hawaii","HI",37 +2012-12-01,"Residential Consumption","Vermont","VT",491 +2012-12-01,"Residential Consumption","Virginia","VA",12066 +2012-12-01,"Residential Consumption","Pennsylvania","PA",31185 +2012-12-01,"Residential Consumption","Indiana","IN",18871 +2012-12-01,"Residential Consumption","Idaho","ID",4050 +2012-12-01,"Residential Consumption","Kentucky","KY",7586 +2012-12-01,"Residential Consumption","West Virginia","WV",3454 +2012-12-01,"Residential Consumption","U.S.","U.S.",670344 +2012-12-01,"Residential Consumption","Nebraska","NE",5747 +2012-12-01,"Residential Consumption","Georgia","GA",16188 +2012-12-01,"Residential Consumption","Missouri","MO",16056 +2012-12-01,"Residential Consumption","Illinois","IL",57269 +2012-12-01,"Residential Consumption","Rhode Island","RI",2324 +2012-12-01,"Residential Consumption","Ohio","OH",38881 +2012-12-01,"Residential Consumption","Wisconsin","WI",18297 +2012-12-01,"Residential Consumption","Tennessee","TN",9963 +2012-12-01,"Residential Consumption","Utah","UT",10645 +2012-12-01,"Residential Consumption","Florida","FL",1655 +2012-12-01,"Residential Consumption","Kansas","KS",9778 +2012-12-01,"Residential Consumption","Arizona","AZ",4616 +2012-12-01,"Residential Consumption","North Carolina","NC",9321 +2012-12-01,"Residential Consumption","Louisiana","LA",5055 +2012-12-01,"Residential Consumption","Michigan","MI",44638 +2012-12-01,"Residential Consumption","Minnesota","MN",20227 +2012-12-01,"Residential Consumption","New Jersey","NJ",28936 +2012-12-01,"Residential Consumption","Mississippi","MS",3626 +2012-12-01,"Residential Consumption","Nevada","NV",5479 +2012-12-01,"Residential Consumption","District of Columbia","DC",1713 +2012-12-01,"Residential Consumption","Maine","ME",264 +2012-12-01,"Residential Consumption","North Dakota","ND",1830 +2012-12-01,"Vehicle Fuel Consumption","Ohio","OH",8 +2012-12-01,"Vehicle Fuel Consumption","New York","NY",326 +2012-12-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2012-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2012-12-01,"Vehicle Fuel Consumption","Louisiana","LA",1 +2012-12-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2012-12-01,"Vehicle Fuel Consumption","California","CA",1243 +2012-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",5 +2012-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2012-12-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2012-12-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2012-12-01,"Vehicle Fuel Consumption","Colorado","CO",24 +2012-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2012-12-01,"Vehicle Fuel Consumption","Iowa","IA",0 +2012-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",74 +2012-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2012-12-01,"Vehicle Fuel Consumption","Georgia","GA",93 +2012-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2538 +2012-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2012-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2012-12-01,"Vehicle Fuel Consumption","Nebraska","NE",3 +2012-12-01,"Vehicle Fuel Consumption","Missouri","MO",1 +2012-12-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2012-12-01,"Vehicle Fuel Consumption","New Mexico","NM",21 +2012-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2012-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",3 +2012-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2012-12-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2012-12-01,"Vehicle Fuel Consumption","Kentucky","KY",0 +2012-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",22 +2012-12-01,"Vehicle Fuel Consumption","Nevada","NV",50 +2012-12-01,"Vehicle Fuel Consumption","Arizona","AZ",145 +2012-12-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2012-12-01,"Vehicle Fuel Consumption","Florida","FL",7 +2012-12-01,"Vehicle Fuel Consumption","North Carolina","NC",3 +2012-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2012-12-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2012-12-01,"Vehicle Fuel Consumption","Utah","UT",24 +2012-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2012-12-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2012-12-01,"Vehicle Fuel Consumption","Texas","TX",187 +2012-12-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2012-12-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2012-12-01,"Vehicle Fuel Consumption","Washington","WA",43 +2012-12-01,"Vehicle Fuel Consumption","Tennessee","TN",1 +2012-12-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2012-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",25 +2012-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",64 +2012-12-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2012-12-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2012-12-01,"Vehicle Fuel Consumption","Minnesota","MN",1 +2012-12-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2013-01-01,"Commercial Consumption","West Virginia","WV",3301 +2013-01-01,"Commercial Consumption","North Dakota","ND",1976 +2013-01-01,"Commercial Consumption","Minnesota","MN",16873 +2013-01-01,"Commercial Consumption","Oregon","OR",5165 +2013-01-01,"Commercial Consumption","Florida","FL",5745 +2013-01-01,"Commercial Consumption","Michigan","MI",25684 +2013-01-01,"Commercial Consumption","Illinois","IL",34422 +2013-01-01,"Commercial Consumption","Oklahoma","OK",6069 +2013-01-01,"Commercial Consumption","Virginia","VA",9761 +2013-01-01,"Commercial Consumption","Montana","MT",3283 +2013-01-01,"Commercial Consumption","Maine","ME",1246 +2013-01-01,"Commercial Consumption","Kansas","KS",5209 +2013-01-01,"Commercial Consumption","Iowa","IA",8633 +2013-01-01,"Commercial Consumption","District of Columbia","DC",2403 +2013-01-01,"Commercial Consumption","Utah","UT",8353 +2013-01-01,"Commercial Consumption","New Mexico","NM",4691 +2013-01-01,"Commercial Consumption","Nebraska","NE",4829 +2013-01-01,"Commercial Consumption","Washington","WA",8261 +2013-01-01,"Commercial Consumption","North Carolina","NC",6935 +2013-01-01,"Commercial Consumption","Maryland","MD",10206 +2013-01-01,"Commercial Consumption","Idaho","ID",3330 +2013-01-01,"Commercial Consumption","Hawaii","HI",154 +2013-01-01,"Commercial Consumption","Connecticut","CT",6584 +2013-01-01,"Commercial Consumption","Indiana","IN",13475 +2013-01-01,"Commercial Consumption","Wyoming","WY",1799 +2013-01-01,"Commercial Consumption","Kentucky","KY",6071 +2013-01-01,"Commercial Consumption","Georgia","GA",7191 +2013-01-01,"Commercial Consumption","Tennessee","TN",8381 +2013-01-01,"Commercial Consumption","South Carolina","SC",2820 +2013-01-01,"Commercial Consumption","Missouri","MO",10478 +2013-01-01,"Commercial Consumption","Wisconsin","WI",15440 +2013-01-01,"Commercial Consumption","New Jersey","NJ",22317 +2013-01-01,"Commercial Consumption","California","CA",30439 +2013-01-01,"Commercial Consumption","Alabama","AL",3238 +2013-01-01,"Commercial Consumption","Colorado","CO",9461 +2013-01-01,"Commercial Consumption","Massachusetts","MA",15685 +2013-01-01,"Commercial Consumption","South Dakota","SD",1916 +2013-01-01,"Commercial Consumption","New Hampshire","NH",1355 +2013-01-01,"Commercial Consumption","Rhode Island","RI",1899 +2013-01-01,"Commercial Consumption","Alaska","AK",2682 +2013-01-01,"Commercial Consumption","Arkansas","AR",6262 +2013-01-01,"Commercial Consumption","New York","NY",41481 +2013-01-01,"Commercial Consumption","Mississippi","MS",2622 +2013-01-01,"Commercial Consumption","Delaware","DE",1722 +2013-01-01,"Commercial Consumption","Arizona","AZ",4648 +2013-01-01,"Commercial Consumption","Pennsylvania","PA",24115 +2013-01-01,"Commercial Consumption","U.S.","U.S.",478984 +2013-01-01,"Commercial Consumption","Texas","TX",24063 +2013-01-01,"Commercial Consumption","Vermont","VT",611 +2013-01-01,"Commercial Consumption","Ohio","OH",27740 +2013-01-01,"Commercial Consumption","Nevada","NV",4542 +2013-01-01,"Commercial Consumption","Louisiana","LA",3416 +2013-01-01,"Delivered to Consumers","Indiana","IN",81317 +2013-01-01,"Delivered to Consumers","New York","NY",153414 +2013-01-01,"Delivered to Consumers","Montana","MT",9293 +2013-01-01,"Delivered to Consumers","Virginia","VA",45167 +2013-01-01,"Delivered to Consumers","Massachusetts","MA",50263 +2013-01-01,"Delivered to Consumers","South Carolina","SC",22437 +2013-01-01,"Delivered to Consumers","Florida","FL",92797 +2013-01-01,"Delivered to Consumers","Alabama","AL",52297 +2013-01-01,"Delivered to Consumers","Wisconsin","WI",59886 +2013-01-01,"Delivered to Consumers","Nebraska","NE",19158 +2013-01-01,"Delivered to Consumers","Colorado","CO",47976 +2013-01-01,"Delivered to Consumers","Maine","ME",7053 +2013-01-01,"Delivered to Consumers","North Dakota","ND",6752 +2013-01-01,"Delivered to Consumers","Vermont","VT",1370 +2013-01-01,"Delivered to Consumers","Maryland","MD",26783 +2013-01-01,"Delivered to Consumers","Kentucky","KY",28296 +2013-01-01,"Delivered to Consumers","North Carolina","NC",45419 +2013-01-01,"Delivered to Consumers","Missouri","MO",40375 +2013-01-01,"Delivered to Consumers","California","CA",246850 +2013-01-01,"Delivered to Consumers","New Jersey","NJ",82095 +2013-01-01,"Delivered to Consumers","Louisiana","LA",111190 +2013-01-01,"Delivered to Consumers","New Hampshire","NH",6206 +2013-01-01,"Delivered to Consumers","Utah","UT",31301 +2013-01-01,"Delivered to Consumers","South Dakota","SD",8462 +2013-01-01,"Delivered to Consumers","U.S.","U.S.",2661816 +2013-01-01,"Delivered to Consumers","West Virginia","WV",10674 +2013-01-01,"Delivered to Consumers","Oklahoma","OK",51408 +2013-01-01,"Delivered to Consumers","Kansas","KS",29081 +2013-01-01,"Delivered to Consumers","Arkansas","AR",30418 +2013-01-01,"Delivered to Consumers","Nevada","NV",30640 +2013-01-01,"Delivered to Consumers","Arizona","AZ",28047 +2013-01-01,"Delivered to Consumers","Delaware","DE",8947 +2013-01-01,"Delivered to Consumers","Wyoming","WY",8676 +2013-01-01,"Delivered to Consumers","Idaho","ID",14293 +2013-01-01,"Delivered to Consumers","Michigan","MI",107225 +2013-01-01,"Delivered to Consumers","Iowa","IA",37938 +2013-01-01,"Delivered to Consumers","Connecticut","CT",27058 +2013-01-01,"Delivered to Consumers","District of Columbia","DC",4914 +2013-01-01,"Delivered to Consumers","New Mexico","NM",19308 +2013-01-01,"Delivered to Consumers","Illinois","IL",145385 +2013-01-01,"Delivered to Consumers","Rhode Island","RI",8790 +2013-01-01,"Delivered to Consumers","Hawaii","HI",232 +2013-01-01,"Delivered to Consumers","Pennsylvania","PA",118264 +2013-01-01,"Delivered to Consumers","Mississippi","MS",39920 +2013-01-01,"Delivered to Consumers","Oregon","OR",29905 +2013-01-01,"Delivered to Consumers","Washington","WA",34596 +2013-01-01,"Delivered to Consumers","Minnesota","MN",62831 +2013-01-01,"Delivered to Consumers","Alaska","AK",9180 +2013-01-01,"Delivered to Consumers","Tennessee","TN",37710 +2013-01-01,"Delivered to Consumers","Ohio","OH",122099 +2013-01-01,"Delivered to Consumers","Texas","TX",305793 +2013-01-01,"Delivered to Consumers","Georgia","GA",62324 +2013-01-01,"Electric Power Consumption","Oregon","OR",10257 +2013-01-01,"Electric Power Consumption","Massachusetts","MA",9907 +2013-01-01,"Electric Power Consumption","Wyoming","WY",50 +2013-01-01,"Electric Power Consumption","Tennessee","TN",4735 +2013-01-01,"Electric Power Consumption","Mississippi","MS",22938 +2013-01-01,"Electric Power Consumption","Hawaii","HI",NA +2013-01-01,"Electric Power Consumption","Idaho","ID",2480 +2013-01-01,"Electric Power Consumption","North Carolina","NC",15937 +2013-01-01,"Electric Power Consumption","Kentucky","KY",1152 +2013-01-01,"Electric Power Consumption","Montana","MT",792 +2013-01-01,"Electric Power Consumption","Arizona","AZ",11476 +2013-01-01,"Electric Power Consumption","Florida","FL",75863 +2013-01-01,"Electric Power Consumption","New Mexico","NM",5296 +2013-01-01,"Electric Power Consumption","New Jersey","NJ",13721 +2013-01-01,"Electric Power Consumption","West Virginia","WV",227 +2013-01-01,"Electric Power Consumption","South Dakota","SD",219 +2013-01-01,"Electric Power Consumption","Maryland","MD",272 +2013-01-01,"Electric Power Consumption","Virginia","VA",13905 +2013-01-01,"Electric Power Consumption","South Carolina","SC",7022 +2013-01-01,"Electric Power Consumption","Texas","TX",106224 +2013-01-01,"Electric Power Consumption","Rhode Island","RI",2751 +2013-01-01,"Electric Power Consumption","Kansas","KS",743 +2013-01-01,"Electric Power Consumption","Missouri","MO",3239 +2013-01-01,"Electric Power Consumption","New Hampshire","NH",2883 +2013-01-01,"Electric Power Consumption","Delaware","DE",2310 +2013-01-01,"Electric Power Consumption","Utah","UT",3894 +2013-01-01,"Electric Power Consumption","Michigan","MI",7409 +2013-01-01,"Electric Power Consumption","Ohio","OH",13650 +2013-01-01,"Electric Power Consumption","North Dakota","ND",NA +2013-01-01,"Electric Power Consumption","Indiana","IN",7851 +2013-01-01,"Electric Power Consumption","Louisiana","LA",20977 +2013-01-01,"Electric Power Consumption","Illinois","IL",2945 +2013-01-01,"Electric Power Consumption","Nevada","NV",15764 +2013-01-01,"Electric Power Consumption","Vermont","VT",5 +2013-01-01,"Electric Power Consumption","Nebraska","NE",45 +2013-01-01,"Electric Power Consumption","Maine","ME",2284 +2013-01-01,"Electric Power Consumption","Connecticut","CT",8810 +2013-01-01,"Electric Power Consumption","California","CA",65611 +2013-01-01,"Electric Power Consumption","Alaska","AK",3604 +2013-01-01,"Electric Power Consumption","Colorado","CO",6945 +2013-01-01,"Electric Power Consumption","Oklahoma","OK",18024 +2013-01-01,"Electric Power Consumption","Minnesota","MN",4058 +2013-01-01,"Electric Power Consumption","Iowa","IA",749 +2013-01-01,"Electric Power Consumption","Washington","WA",4392 +2013-01-01,"Electric Power Consumption","Arkansas","AR",9364 +2013-01-01,"Electric Power Consumption","New York","NY",34417 +2013-01-01,"Electric Power Consumption","Wisconsin","WI",5413 +2013-01-01,"Electric Power Consumption","Pennsylvania","PA",31265 +2013-01-01,"Electric Power Consumption","U.S.","U.S.",631685 +2013-01-01,"Electric Power Consumption","Georgia","GA",22838 +2013-01-01,"Electric Power Consumption","Alabama","AL",26971 +2013-01-01,"Industrial Consumption","Montana","MT",1774 +2013-01-01,"Industrial Consumption","Maryland","MD",1395 +2013-01-01,"Industrial Consumption","Ohio","OH",27109 +2013-01-01,"Industrial Consumption","Utah","UT",3525 +2013-01-01,"Industrial Consumption","Pennsylvania","PA",21099 +2013-01-01,"Industrial Consumption","Mississippi","MS",9853 +2013-01-01,"Industrial Consumption","Maine","ME",3185 +2013-01-01,"Industrial Consumption","West Virginia","WV",2616 +2013-01-01,"Industrial Consumption","Minnesota","MN",16647 +2013-01-01,"Industrial Consumption","Connecticut","CT",3409 +2013-01-01,"Industrial Consumption","Indiana","IN",33763 +2013-01-01,"Industrial Consumption","Hawaii","HI",25 +2013-01-01,"Industrial Consumption","Kansas","KS",10316 +2013-01-01,"Industrial Consumption","U.S.","U.S.",676303 +2013-01-01,"Industrial Consumption","Oregon","OR",5735 +2013-01-01,"Industrial Consumption","Texas","TX",130695 +2013-01-01,"Industrial Consumption","Michigan","MI",18913 +2013-01-01,"Industrial Consumption","Arkansas","AR",8170 +2013-01-01,"Industrial Consumption","South Carolina","SC",7590 +2013-01-01,"Industrial Consumption","Wisconsin","WI",14845 +2013-01-01,"Industrial Consumption","Illinois","IL",29186 +2013-01-01,"Industrial Consumption","North Carolina","NC",10322 +2013-01-01,"Industrial Consumption","Arizona","AZ",2463 +2013-01-01,"Industrial Consumption","New York","NY",8327 +2013-01-01,"Industrial Consumption","Tennessee","TN",10697 +2013-01-01,"Industrial Consumption","Delaware","DE",3014 +2013-01-01,"Industrial Consumption","North Dakota","ND",2695 +2013-01-01,"Industrial Consumption","Massachusetts","MA",5041 +2013-01-01,"Industrial Consumption","South Dakota","SD",3885 +2013-01-01,"Industrial Consumption","Nebraska","NE",6922 +2013-01-01,"Industrial Consumption","Wyoming","WY",4575 +2013-01-01,"Industrial Consumption","New Jersey","NJ",6128 +2013-01-01,"Industrial Consumption","Idaho","ID",2882 +2013-01-01,"Industrial Consumption","Iowa","IA",15636 +2013-01-01,"Industrial Consumption","Kentucky","KY",10861 +2013-01-01,"Industrial Consumption","Colorado","CO",8717 +2013-01-01,"Industrial Consumption","Nevada","NV",1164 +2013-01-01,"Industrial Consumption","New Hampshire","NH",816 +2013-01-01,"Industrial Consumption","Florida","FL",9212 +2013-01-01,"Industrial Consumption","Georgia","GA",13879 +2013-01-01,"Industrial Consumption","Alaska","AK",367 +2013-01-01,"Industrial Consumption","Oklahoma","OK",16323 +2013-01-01,"Industrial Consumption","Missouri","MO",6747 +2013-01-01,"Industrial Consumption","Washington","WA",7340 +2013-01-01,"Industrial Consumption","Alabama","AL",15925 +2013-01-01,"Industrial Consumption","Vermont","VT",146 +2013-01-01,"Industrial Consumption","Louisiana","LA",79693 +2013-01-01,"Industrial Consumption","New Mexico","NM",1657 +2013-01-01,"Industrial Consumption","California","CA",64113 +2013-01-01,"Industrial Consumption","Virginia","VA",6181 +2013-01-01,"Industrial Consumption","Rhode Island","RI",726 +2013-01-01,"Industrial Consumption","District of Columbia","DC",0 +2013-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",123951 +2013-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",93018 +2013-01-01,"Residential Consumption","Louisiana","LA",7100 +2013-01-01,"Residential Consumption","Vermont","VT",608 +2013-01-01,"Residential Consumption","Maryland","MD",14893 +2013-01-01,"Residential Consumption","Washington","WA",14568 +2013-01-01,"Residential Consumption","Illinois","IL",78809 +2013-01-01,"Residential Consumption","South Carolina","SC",5003 +2013-01-01,"Residential Consumption","Hawaii","HI",52 +2013-01-01,"Residential Consumption","Utah","UT",15510 +2013-01-01,"Residential Consumption","Nebraska","NE",7358 +2013-01-01,"Residential Consumption","Pennsylvania","PA",41758 +2013-01-01,"Residential Consumption","Florida","FL",1962 +2013-01-01,"Residential Consumption","Arkansas","AR",6620 +2013-01-01,"Residential Consumption","New Hampshire","NH",1146 +2013-01-01,"Residential Consumption","Montana","MT",3444 +2013-01-01,"Residential Consumption","Alaska","AK",2526 +2013-01-01,"Residential Consumption","U.S.","U.S.",872291 +2013-01-01,"Residential Consumption","Iowa","IA",12919 +2013-01-01,"Residential Consumption","Connecticut","CT",8251 +2013-01-01,"Residential Consumption","Wisconsin","WI",24180 +2013-01-01,"Residential Consumption","Michigan","MI",55189 +2013-01-01,"Residential Consumption","District of Columbia","DC",2438 +2013-01-01,"Residential Consumption","Maine","ME",339 +2013-01-01,"Residential Consumption","Wyoming","WY",2251 +2013-01-01,"Residential Consumption","Kentucky","KY",10210 +2013-01-01,"Residential Consumption","Colorado","CO",22830 +2013-01-01,"Residential Consumption","Missouri","MO",19908 +2013-01-01,"Residential Consumption","New York","NY",68908 +2013-01-01,"Residential Consumption","Texas","TX",44556 +2013-01-01,"Residential Consumption","Mississippi","MS",4505 +2013-01-01,"Residential Consumption","Nevada","NV",9120 +2013-01-01,"Residential Consumption","Kansas","KS",12812 +2013-01-01,"Residential Consumption","Alabama","AL",6147 +2013-01-01,"Residential Consumption","Oregon","OR",8735 +2013-01-01,"Residential Consumption","North Carolina","NC",12218 +2013-01-01,"Residential Consumption","Georgia","GA",18331 +2013-01-01,"Residential Consumption","New Mexico","NM",7652 +2013-01-01,"Residential Consumption","Indiana","IN",26226 +2013-01-01,"Residential Consumption","North Dakota","ND",2080 +2013-01-01,"Residential Consumption","Massachusetts","MA",19571 +2013-01-01,"Residential Consumption","Oklahoma","OK",10962 +2013-01-01,"Residential Consumption","Delaware","DE",1901 +2013-01-01,"Residential Consumption","Ohio","OH",53574 +2013-01-01,"Residential Consumption","Tennessee","TN",13889 +2013-01-01,"Residential Consumption","Virginia","VA",15302 +2013-01-01,"Residential Consumption","Rhode Island","RI",3407 +2013-01-01,"Residential Consumption","South Dakota","SD",2442 +2013-01-01,"Residential Consumption","Minnesota","MN",25249 +2013-01-01,"Residential Consumption","Idaho","ID",5590 +2013-01-01,"Residential Consumption","New Jersey","NJ",39912 +2013-01-01,"Residential Consumption","California","CA",85488 +2013-01-01,"Residential Consumption","Arizona","AZ",9313 +2013-01-01,"Residential Consumption","West Virginia","WV",4530 +2013-01-01,"Vehicle Fuel Consumption","Utah","UT",19 +2013-01-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-01-01,"Vehicle Fuel Consumption","New York","NY",282 +2013-01-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-01-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-01-01,"Vehicle Fuel Consumption","Florida","FL",15 +2013-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-01-01,"Vehicle Fuel Consumption","Texas","TX",255 +2013-01-01,"Vehicle Fuel Consumption","Georgia","GA",85 +2013-01-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-01-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-01-01,"Vehicle Fuel Consumption","Washington","WA",36 +2013-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-01-01,"Vehicle Fuel Consumption","Minnesota","MN",4 +2013-01-01,"Vehicle Fuel Consumption","South Carolina","SC",2 +2013-01-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-01-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-01-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-01-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-01-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2013-01-01,"Vehicle Fuel Consumption","Arizona","AZ",147 +2013-01-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-01-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2013-01-01,"Vehicle Fuel Consumption","Missouri","MO",4 +2013-01-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-01-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-01-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",29 +2013-01-01,"Vehicle Fuel Consumption","Nevada","NV",51 +2013-01-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",17 +2013-01-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-01-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-01-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-01-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-01-01,"Vehicle Fuel Consumption","Michigan","MI",29 +2013-01-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2013-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-01-01,"Vehicle Fuel Consumption","California","CA",1199 +2013-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2013-01-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-01-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2552 +2013-02-01,"Commercial Consumption","North Dakota","ND",1684 +2013-02-01,"Commercial Consumption","Kansas","KS",4387 +2013-02-01,"Commercial Consumption","Iowa","IA",7410 +2013-02-01,"Commercial Consumption","Delaware","DE",1592 +2013-02-01,"Commercial Consumption","Nevada","NV",3594 +2013-02-01,"Commercial Consumption","Michigan","MI",24686 +2013-02-01,"Commercial Consumption","Indiana","IN",11623 +2013-02-01,"Commercial Consumption","Illinois","IL",30974 +2013-02-01,"Commercial Consumption","Washington","WA",6027 +2013-02-01,"Commercial Consumption","South Carolina","SC",3094 +2013-02-01,"Commercial Consumption","Minnesota","MN",15155 +2013-02-01,"Commercial Consumption","New Mexico","NM",3371 +2013-02-01,"Commercial Consumption","Oklahoma","OK",6423 +2013-02-01,"Commercial Consumption","Pennsylvania","PA",22258 +2013-02-01,"Commercial Consumption","New Jersey","NJ",21344 +2013-02-01,"Commercial Consumption","Georgia","GA",7667 +2013-02-01,"Commercial Consumption","Ohio","OH",26688 +2013-02-01,"Commercial Consumption","Hawaii","HI",151 +2013-02-01,"Commercial Consumption","Connecticut","CT",6413 +2013-02-01,"Commercial Consumption","Utah","UT",5779 +2013-02-01,"Commercial Consumption","Virginia","VA",9255 +2013-02-01,"Commercial Consumption","Wisconsin","WI",13735 +2013-02-01,"Commercial Consumption","Kentucky","KY",5493 +2013-02-01,"Commercial Consumption","U.S.","U.S.",429014 +2013-02-01,"Commercial Consumption","Maryland","MD",9754 +2013-02-01,"Commercial Consumption","Vermont","VT",509 +2013-02-01,"Commercial Consumption","Arkansas","AR",5415 +2013-02-01,"Commercial Consumption","Alabama","AL",3092 +2013-02-01,"Commercial Consumption","District of Columbia","DC",2277 +2013-02-01,"Commercial Consumption","North Carolina","NC",7155 +2013-02-01,"Commercial Consumption","Missouri","MO",9373 +2013-02-01,"Commercial Consumption","Idaho","ID",2244 +2013-02-01,"Commercial Consumption","Nebraska","NE",4265 +2013-02-01,"Commercial Consumption","Louisiana","LA",2843 +2013-02-01,"Commercial Consumption","Colorado","CO",8081 +2013-02-01,"Commercial Consumption","Montana","MT",2540 +2013-02-01,"Commercial Consumption","Rhode Island","RI",1907 +2013-02-01,"Commercial Consumption","California","CA",25810 +2013-02-01,"Commercial Consumption","West Virginia","WV",3149 +2013-02-01,"Commercial Consumption","Massachusetts","MA",15724 +2013-02-01,"Commercial Consumption","South Dakota","SD",1537 +2013-02-01,"Commercial Consumption","Maine","ME",1013 +2013-02-01,"Commercial Consumption","Texas","TX",18143 +2013-02-01,"Commercial Consumption","Alaska","AK",1860 +2013-02-01,"Commercial Consumption","Arizona","AZ",3923 +2013-02-01,"Commercial Consumption","New Hampshire","NH",1550 +2013-02-01,"Commercial Consumption","Florida","FL",5419 +2013-02-01,"Commercial Consumption","New York","NY",38147 +2013-02-01,"Commercial Consumption","Mississippi","MS",2156 +2013-02-01,"Commercial Consumption","Tennessee","TN",7095 +2013-02-01,"Commercial Consumption","Wyoming","WY",1527 +2013-02-01,"Commercial Consumption","Oregon","OR",3704 +2013-02-01,"Delivered to Consumers","Rhode Island","RI",7176 +2013-02-01,"Delivered to Consumers","Alaska","AK",7144 +2013-02-01,"Delivered to Consumers","Kansas","KS",25768 +2013-02-01,"Delivered to Consumers","Kentucky","KY",25046 +2013-02-01,"Delivered to Consumers","Louisiana","LA",93607 +2013-02-01,"Delivered to Consumers","Washington","WA",28421 +2013-02-01,"Delivered to Consumers","Florida","FL",91718 +2013-02-01,"Delivered to Consumers","Vermont","VT",1231 +2013-02-01,"Delivered to Consumers","Wisconsin","WI",53198 +2013-02-01,"Delivered to Consumers","Texas","TX",246719 +2013-02-01,"Delivered to Consumers","Delaware","DE",8358 +2013-02-01,"Delivered to Consumers","Montana","MT",7470 +2013-02-01,"Delivered to Consumers","Connecticut","CT",25586 +2013-02-01,"Delivered to Consumers","Arkansas","AR",27016 +2013-02-01,"Delivered to Consumers","Mississippi","MS",32000 +2013-02-01,"Delivered to Consumers","Colorado","CO",40285 +2013-02-01,"Delivered to Consumers","Iowa","IA",32944 +2013-02-01,"Delivered to Consumers","U.S.","U.S.",2371983 +2013-02-01,"Delivered to Consumers","New York","NY",148404 +2013-02-01,"Delivered to Consumers","Maryland","MD",26138 +2013-02-01,"Delivered to Consumers","Tennessee","TN",32538 +2013-02-01,"Delivered to Consumers","Alabama","AL",53798 +2013-02-01,"Delivered to Consumers","Pennsylvania","PA",112129 +2013-02-01,"Delivered to Consumers","New Jersey","NJ",78574 +2013-02-01,"Delivered to Consumers","Georgia","GA",63455 +2013-02-01,"Delivered to Consumers","Minnesota","MN",52860 +2013-02-01,"Delivered to Consumers","District of Columbia","DC",4582 +2013-02-01,"Delivered to Consumers","New Mexico","NM",15344 +2013-02-01,"Delivered to Consumers","Indiana","IN",73367 +2013-02-01,"Delivered to Consumers","Wyoming","WY",7578 +2013-02-01,"Delivered to Consumers","Illinois","IL",130938 +2013-02-01,"Delivered to Consumers","Oklahoma","OK",46744 +2013-02-01,"Delivered to Consumers","Virginia","VA",44731 +2013-02-01,"Delivered to Consumers","Maine","ME",5482 +2013-02-01,"Delivered to Consumers","South Dakota","SD",7226 +2013-02-01,"Delivered to Consumers","Hawaii","HI",230 +2013-02-01,"Delivered to Consumers","Idaho","ID",9476 +2013-02-01,"Delivered to Consumers","Ohio","OH",117774 +2013-02-01,"Delivered to Consumers","Nebraska","NE",16235 +2013-02-01,"Delivered to Consumers","Massachusetts","MA",45652 +2013-02-01,"Delivered to Consumers","California","CA",209104 +2013-02-01,"Delivered to Consumers","Oregon","OR",23631 +2013-02-01,"Delivered to Consumers","Arizona","AZ",22210 +2013-02-01,"Delivered to Consumers","Utah","UT",22653 +2013-02-01,"Delivered to Consumers","West Virginia","WV",10326 +2013-02-01,"Delivered to Consumers","Michigan","MI",100653 +2013-02-01,"Delivered to Consumers","North Carolina","NC",43334 +2013-02-01,"Delivered to Consumers","Missouri","MO",35097 +2013-02-01,"Delivered to Consumers","South Carolina","SC",22363 +2013-02-01,"Delivered to Consumers","Nevada","NV",24472 +2013-02-01,"Delivered to Consumers","New Hampshire","NH",5697 +2013-02-01,"Delivered to Consumers","North Dakota","ND",5498 +2013-02-01,"Electric Power Consumption","New Mexico","NM",4813 +2013-02-01,"Electric Power Consumption","Louisiana","LA",14458 +2013-02-01,"Electric Power Consumption","New York","NY",35839 +2013-02-01,"Electric Power Consumption","Oklahoma","OK",14321 +2013-02-01,"Electric Power Consumption","West Virginia","WV",165 +2013-02-01,"Electric Power Consumption","Maine","ME",1274 +2013-02-01,"Electric Power Consumption","Ohio","OH",14271 +2013-02-01,"Electric Power Consumption","Colorado","CO",5039 +2013-02-01,"Electric Power Consumption","New Hampshire","NH",2281 +2013-02-01,"Electric Power Consumption","Maryland","MD",768 +2013-02-01,"Electric Power Consumption","Arkansas","AR",8799 +2013-02-01,"Electric Power Consumption","Oregon","OR",9182 +2013-02-01,"Electric Power Consumption","Kansas","KS",1533 +2013-02-01,"Electric Power Consumption","Tennessee","TN",3598 +2013-02-01,"Electric Power Consumption","Nebraska","NE",63 +2013-02-01,"Electric Power Consumption","Montana","MT",637 +2013-02-01,"Electric Power Consumption","Arizona","AZ",8874 +2013-02-01,"Electric Power Consumption","Massachusetts","MA",6316 +2013-02-01,"Electric Power Consumption","Pennsylvania","PA",29226 +2013-02-01,"Electric Power Consumption","Wyoming","WY",49 +2013-02-01,"Electric Power Consumption","Mississippi","MS",17430 +2013-02-01,"Electric Power Consumption","Virginia","VA",13928 +2013-02-01,"Electric Power Consumption","Wisconsin","WI",4536 +2013-02-01,"Electric Power Consumption","Kentucky","KY",822 +2013-02-01,"Electric Power Consumption","Hawaii","HI",NA +2013-02-01,"Electric Power Consumption","Indiana","IN",6951 +2013-02-01,"Electric Power Consumption","Delaware","DE",2124 +2013-02-01,"Electric Power Consumption","California","CA",60460 +2013-02-01,"Electric Power Consumption","Washington","WA",5029 +2013-02-01,"Electric Power Consumption","Texas","TX",82836 +2013-02-01,"Electric Power Consumption","Utah","UT",3485 +2013-02-01,"Electric Power Consumption","Michigan","MI",6203 +2013-02-01,"Electric Power Consumption","Nevada","NV",13657 +2013-02-01,"Electric Power Consumption","Vermont","VT",4 +2013-02-01,"Electric Power Consumption","South Dakota","SD",2 +2013-02-01,"Electric Power Consumption","North Dakota","ND",NA +2013-02-01,"Electric Power Consumption","Alabama","AL",30863 +2013-02-01,"Electric Power Consumption","New Jersey","NJ",13867 +2013-02-01,"Electric Power Consumption","South Carolina","SC",6933 +2013-02-01,"Electric Power Consumption","Rhode Island","RI",1542 +2013-02-01,"Electric Power Consumption","North Carolina","NC",14435 +2013-02-01,"Electric Power Consumption","Idaho","ID",1240 +2013-02-01,"Electric Power Consumption","Minnesota","MN",2778 +2013-02-01,"Electric Power Consumption","Illinois","IL",2859 +2013-02-01,"Electric Power Consumption","Iowa","IA",835 +2013-02-01,"Electric Power Consumption","U.S.","U.S.",568388 +2013-02-01,"Electric Power Consumption","Missouri","MO",2636 +2013-02-01,"Electric Power Consumption","Connecticut","CT",8267 +2013-02-01,"Electric Power Consumption","Georgia","GA",23978 +2013-02-01,"Electric Power Consumption","Florida","FL",76355 +2013-02-01,"Electric Power Consumption","Alaska","AK",2827 +2013-02-01,"Industrial Consumption","U.S.","U.S.",622193 +2013-02-01,"Industrial Consumption","Oregon","OR",4938 +2013-02-01,"Industrial Consumption","California","CA",57150 +2013-02-01,"Industrial Consumption","West Virginia","WV",2526 +2013-02-01,"Industrial Consumption","Vermont","VT",164 +2013-02-01,"Industrial Consumption","New Hampshire","NH",660 +2013-02-01,"Industrial Consumption","Minnesota","MN",14251 +2013-02-01,"Industrial Consumption","North Dakota","ND",2187 +2013-02-01,"Industrial Consumption","Ohio","OH",26423 +2013-02-01,"Industrial Consumption","Mississippi","MS",9108 +2013-02-01,"Industrial Consumption","Alabama","AL",14170 +2013-02-01,"Industrial Consumption","Tennessee","TN",10119 +2013-02-01,"Industrial Consumption","Kentucky","KY",9980 +2013-02-01,"Industrial Consumption","Kansas","KS",9284 +2013-02-01,"Industrial Consumption","Illinois","IL",26602 +2013-02-01,"Industrial Consumption","Missouri","MO",5990 +2013-02-01,"Industrial Consumption","Louisiana","LA",71494 +2013-02-01,"Industrial Consumption","Pennsylvania","PA",21027 +2013-02-01,"Industrial Consumption","New York","NY",8372 +2013-02-01,"Industrial Consumption","Maine","ME",2902 +2013-02-01,"Industrial Consumption","Arkansas","AR",7484 +2013-02-01,"Industrial Consumption","Nebraska","NE",5929 +2013-02-01,"Industrial Consumption","Virginia","VA",6901 +2013-02-01,"Industrial Consumption","Wyoming","WY",4159 +2013-02-01,"Industrial Consumption","Massachusetts","MA",5694 +2013-02-01,"Industrial Consumption","Colorado","CO",7719 +2013-02-01,"Industrial Consumption","New Mexico","NM",1522 +2013-02-01,"Industrial Consumption","Utah","UT",3718 +2013-02-01,"Industrial Consumption","Nevada","NV",1072 +2013-02-01,"Industrial Consumption","New Jersey","NJ",5941 +2013-02-01,"Industrial Consumption","District of Columbia","DC",0 +2013-02-01,"Industrial Consumption","Alaska","AK",326 +2013-02-01,"Industrial Consumption","Montana","MT",1731 +2013-02-01,"Industrial Consumption","Maryland","MD",1330 +2013-02-01,"Industrial Consumption","Hawaii","HI",28 +2013-02-01,"Industrial Consumption","Arizona","AZ",2230 +2013-02-01,"Industrial Consumption","Idaho","ID",2486 +2013-02-01,"Industrial Consumption","Iowa","IA",14026 +2013-02-01,"Industrial Consumption","Florida","FL",8244 +2013-02-01,"Industrial Consumption","Connecticut","CT",3172 +2013-02-01,"Industrial Consumption","Indiana","IN",31764 +2013-02-01,"Industrial Consumption","Delaware","DE",2786 +2013-02-01,"Industrial Consumption","Rhode Island","RI",770 +2013-02-01,"Industrial Consumption","Georgia","GA",12703 +2013-02-01,"Industrial Consumption","Oklahoma","OK",15833 +2013-02-01,"Industrial Consumption","South Carolina","SC",7119 +2013-02-01,"Industrial Consumption","Wisconsin","WI",13491 +2013-02-01,"Industrial Consumption","Michigan","MI",18080 +2013-02-01,"Industrial Consumption","North Carolina","NC",9624 +2013-02-01,"Industrial Consumption","Washington","WA",7066 +2013-02-01,"Industrial Consumption","South Dakota","SD",3740 +2013-02-01,"Industrial Consumption","Texas","TX",118161 +2013-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",112282 +2013-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",82890 +2013-02-01,"Residential Consumption","South Carolina","SC",5216 +2013-02-01,"Residential Consumption","Oregon","OR",5795 +2013-02-01,"Residential Consumption","Nebraska","NE",5973 +2013-02-01,"Residential Consumption","New Mexico","NM",5625 +2013-02-01,"Residential Consumption","Indiana","IN",23027 +2013-02-01,"Residential Consumption","West Virginia","WV",4486 +2013-02-01,"Residential Consumption","North Carolina","NC",12114 +2013-02-01,"Residential Consumption","Tennessee","TN",11719 +2013-02-01,"Residential Consumption","Utah","UT",9654 +2013-02-01,"Residential Consumption","Nevada","NV",6103 +2013-02-01,"Residential Consumption","District of Columbia","DC",2239 +2013-02-01,"Residential Consumption","Idaho","ID",3496 +2013-02-01,"Residential Consumption","Arizona","AZ",7051 +2013-02-01,"Residential Consumption","North Dakota","ND",1626 +2013-02-01,"Residential Consumption","Arkansas","AR",5316 +2013-02-01,"Residential Consumption","Alaska","AK",2130 +2013-02-01,"Residential Consumption","U.S.","U.S.",750082 +2013-02-01,"Residential Consumption","Louisiana","LA",4809 +2013-02-01,"Residential Consumption","New Jersey","NJ",37407 +2013-02-01,"Residential Consumption","Wyoming","WY",1841 +2013-02-01,"Residential Consumption","Rhode Island","RI",2951 +2013-02-01,"Residential Consumption","Ohio","OH",50370 +2013-02-01,"Residential Consumption","Hawaii","HI",50 +2013-02-01,"Residential Consumption","Maine","ME",293 +2013-02-01,"Residential Consumption","Florida","FL",1687 +2013-02-01,"Residential Consumption","New Hampshire","NH",1201 +2013-02-01,"Residential Consumption","Washington","WA",10267 +2013-02-01,"Residential Consumption","Missouri","MO",17095 +2013-02-01,"Residential Consumption","Alabama","AL",5657 +2013-02-01,"Residential Consumption","New York","NY",65792 +2013-02-01,"Residential Consumption","Mississippi","MS",3304 +2013-02-01,"Residential Consumption","Vermont","VT",554 +2013-02-01,"Residential Consumption","Colorado","CO",19426 +2013-02-01,"Residential Consumption","Illinois","IL",70482 +2013-02-01,"Residential Consumption","Iowa","IA",10673 +2013-02-01,"Residential Consumption","Connecticut","CT",7731 +2013-02-01,"Residential Consumption","Wisconsin","WI",21428 +2013-02-01,"Residential Consumption","Maryland","MD",14270 +2013-02-01,"Residential Consumption","Massachusetts","MA",17864 +2013-02-01,"Residential Consumption","Oklahoma","OK",10140 +2013-02-01,"Residential Consumption","California","CA",64601 +2013-02-01,"Residential Consumption","Texas","TX",27347 +2013-02-01,"Residential Consumption","Virginia","VA",14632 +2013-02-01,"Residential Consumption","Michigan","MI",51657 +2013-02-01,"Residential Consumption","South Dakota","SD",1948 +2013-02-01,"Residential Consumption","Minnesota","MN",20673 +2013-02-01,"Residential Consumption","Georgia","GA",19031 +2013-02-01,"Residential Consumption","Pennsylvania","PA",39594 +2013-02-01,"Residential Consumption","Montana","MT",2563 +2013-02-01,"Residential Consumption","Kentucky","KY",8749 +2013-02-01,"Residential Consumption","Kansas","KS",10563 +2013-02-01,"Residential Consumption","Delaware","DE",1856 +2013-02-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-02-01,"Vehicle Fuel Consumption","Virginia","VA",16 +2013-02-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-02-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",15 +2013-02-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-02-01,"Vehicle Fuel Consumption","Utah","UT",17 +2013-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-02-01,"Vehicle Fuel Consumption","Nevada","NV",46 +2013-02-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-02-01,"Vehicle Fuel Consumption","Colorado","CO",21 +2013-02-01,"Vehicle Fuel Consumption","North Carolina","NC",5 +2013-02-01,"Vehicle Fuel Consumption","Georgia","GA",77 +2013-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-02-01,"Vehicle Fuel Consumption","Oregon","OR",12 +2013-02-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-02-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2013-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-02-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-02-01,"Vehicle Fuel Consumption","Missouri","MO",3 +2013-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",54 +2013-02-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-02-01,"Vehicle Fuel Consumption","Minnesota","MN",3 +2013-02-01,"Vehicle Fuel Consumption","California","CA",1083 +2013-02-01,"Vehicle Fuel Consumption","New York","NY",254 +2013-02-01,"Vehicle Fuel Consumption","Alabama","AL",15 +2013-02-01,"Vehicle Fuel Consumption","Florida","FL",13 +2013-02-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-02-01,"Vehicle Fuel Consumption","Illinois","IL",22 +2013-02-01,"Vehicle Fuel Consumption","Connecticut","CT",3 +2013-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",2305 +2013-02-01,"Vehicle Fuel Consumption","New Mexico","NM",12 +2013-02-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-02-01,"Vehicle Fuel Consumption","Washington","WA",32 +2013-02-01,"Vehicle Fuel Consumption","Ohio","OH",23 +2013-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",24 +2013-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",27 +2013-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",66 +2013-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-02-01,"Vehicle Fuel Consumption","Maryland","MD",15 +2013-02-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-02-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2013-02-01,"Vehicle Fuel Consumption","Texas","TX",230 +2013-02-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2013-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-02-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-02-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-02-01,"Vehicle Fuel Consumption","Idaho","ID",10 +2013-03-01,"Commercial Consumption","West Virginia","WV",3193 +2013-03-01,"Commercial Consumption","Oklahoma","OK",5878 +2013-03-01,"Commercial Consumption","Texas","TX",16322 +2013-03-01,"Commercial Consumption","New York","NY",36128 +2013-03-01,"Commercial Consumption","Arizona","AZ",3250 +2013-03-01,"Commercial Consumption","Louisiana","LA",2815 +2013-03-01,"Commercial Consumption","North Dakota","ND",1740 +2013-03-01,"Commercial Consumption","Idaho","ID",1776 +2013-03-01,"Commercial Consumption","Nebraska","NE",3953 +2013-03-01,"Commercial Consumption","Nevada","NV",2804 +2013-03-01,"Commercial Consumption","Colorado","CO",6850 +2013-03-01,"Commercial Consumption","Oregon","OR",2988 +2013-03-01,"Commercial Consumption","Massachusetts","MA",13093 +2013-03-01,"Commercial Consumption","New Hampshire","NH",1251 +2013-03-01,"Commercial Consumption","Iowa","IA",7204 +2013-03-01,"Commercial Consumption","Hawaii","HI",143 +2013-03-01,"Commercial Consumption","Mississippi","MS",2200 +2013-03-01,"Commercial Consumption","Washington","WA",5491 +2013-03-01,"Commercial Consumption","Minnesota","MN",13958 +2013-03-01,"Commercial Consumption","Utah","UT",4192 +2013-03-01,"Commercial Consumption","Montana","MT",2455 +2013-03-01,"Commercial Consumption","Georgia","GA",7430 +2013-03-01,"Commercial Consumption","Rhode Island","RI",1553 +2013-03-01,"Commercial Consumption","Alaska","AK",2242 +2013-03-01,"Commercial Consumption","Arkansas","AR",5283 +2013-03-01,"Commercial Consumption","Tennessee","TN",7009 +2013-03-01,"Commercial Consumption","Virginia","VA",8984 +2013-03-01,"Commercial Consumption","Missouri","MO",8936 +2013-03-01,"Commercial Consumption","U.S.","U.S.",393457 +2013-03-01,"Commercial Consumption","Vermont","VT",468 +2013-03-01,"Commercial Consumption","Connecticut","CT",5395 +2013-03-01,"Commercial Consumption","Illinois","IL",29937 +2013-03-01,"Commercial Consumption","Wyoming","WY",1289 +2013-03-01,"Commercial Consumption","North Carolina","NC",7253 +2013-03-01,"Commercial Consumption","New Mexico","NM",2145 +2013-03-01,"Commercial Consumption","New Jersey","NJ",19611 +2013-03-01,"Commercial Consumption","Maryland","MD",9327 +2013-03-01,"Commercial Consumption","Florida","FL",6039 +2013-03-01,"Commercial Consumption","Delaware","DE",1435 +2013-03-01,"Commercial Consumption","District of Columbia","DC",2143 +2013-03-01,"Commercial Consumption","South Carolina","SC",2883 +2013-03-01,"Commercial Consumption","Wisconsin","WI",12777 +2013-03-01,"Commercial Consumption","South Dakota","SD",1482 +2013-03-01,"Commercial Consumption","Kentucky","KY",5334 +2013-03-01,"Commercial Consumption","Ohio","OH",24284 +2013-03-01,"Commercial Consumption","California","CA",20795 +2013-03-01,"Commercial Consumption","Michigan","MI",23112 +2013-03-01,"Commercial Consumption","Indiana","IN",11129 +2013-03-01,"Commercial Consumption","Pennsylvania","PA",19303 +2013-03-01,"Commercial Consumption","Maine","ME",939 +2013-03-01,"Commercial Consumption","Kansas","KS",4229 +2013-03-01,"Commercial Consumption","Alabama","AL",3026 +2013-03-01,"Delivered to Consumers","Delaware","DE",10541 +2013-03-01,"Delivered to Consumers","Illinois","IL",128302 +2013-03-01,"Delivered to Consumers","South Dakota","SD",6973 +2013-03-01,"Delivered to Consumers","Rhode Island","RI",6506 +2013-03-01,"Delivered to Consumers","Montana","MT",7035 +2013-03-01,"Delivered to Consumers","Ohio","OH",111583 +2013-03-01,"Delivered to Consumers","Michigan","MI",96174 +2013-03-01,"Delivered to Consumers","Iowa","IA",33515 +2013-03-01,"Delivered to Consumers","Arkansas","AR",27179 +2013-03-01,"Delivered to Consumers","Nebraska","NE",16680 +2013-03-01,"Delivered to Consumers","Mississippi","MS",31858 +2013-03-01,"Delivered to Consumers","California","CA",187296 +2013-03-01,"Delivered to Consumers","New Hampshire","NH",5333 +2013-03-01,"Delivered to Consumers","Vermont","VT",1078 +2013-03-01,"Delivered to Consumers","Maryland","MD",24176 +2013-03-01,"Delivered to Consumers","Kansas","KS",26227 +2013-03-01,"Delivered to Consumers","Connecticut","CT",23930 +2013-03-01,"Delivered to Consumers","Virginia","VA",37575 +2013-03-01,"Delivered to Consumers","Texas","TX",258530 +2013-03-01,"Delivered to Consumers","North Dakota","ND",6175 +2013-03-01,"Delivered to Consumers","Florida","FL",95673 +2013-03-01,"Delivered to Consumers","Hawaii","HI",218 +2013-03-01,"Delivered to Consumers","Idaho","ID",8701 +2013-03-01,"Delivered to Consumers","Wisconsin","WI",51861 +2013-03-01,"Delivered to Consumers","Missouri","MO",35186 +2013-03-01,"Delivered to Consumers","Minnesota","MN",51197 +2013-03-01,"Delivered to Consumers","District of Columbia","DC",4164 +2013-03-01,"Delivered to Consumers","U.S.","U.S.",2316191 +2013-03-01,"Delivered to Consumers","North Carolina","NC",45240 +2013-03-01,"Delivered to Consumers","Colorado","CO",37003 +2013-03-01,"Delivered to Consumers","New Jersey","NJ",76453 +2013-03-01,"Delivered to Consumers","Maine","ME",5823 +2013-03-01,"Delivered to Consumers","West Virginia","WV",10426 +2013-03-01,"Delivered to Consumers","Oklahoma","OK",49775 +2013-03-01,"Delivered to Consumers","Kentucky","KY",26516 +2013-03-01,"Delivered to Consumers","Indiana","IN",72206 +2013-03-01,"Delivered to Consumers","New York","NY",139631 +2013-03-01,"Delivered to Consumers","Alaska","AK",7858 +2013-03-01,"Delivered to Consumers","Tennessee","TN",32487 +2013-03-01,"Delivered to Consumers","Massachusetts","MA",42328 +2013-03-01,"Delivered to Consumers","Arizona","AZ",19446 +2013-03-01,"Delivered to Consumers","New Mexico","NM",12184 +2013-03-01,"Delivered to Consumers","Alabama","AL",54576 +2013-03-01,"Delivered to Consumers","South Carolina","SC",23140 +2013-03-01,"Delivered to Consumers","Georgia","GA",63195 +2013-03-01,"Delivered to Consumers","Washington","WA",28667 +2013-03-01,"Delivered to Consumers","Utah","UT",18114 +2013-03-01,"Delivered to Consumers","Wyoming","WY",7141 +2013-03-01,"Delivered to Consumers","Pennsylvania","PA",103477 +2013-03-01,"Delivered to Consumers","Oregon","OR",22597 +2013-03-01,"Delivered to Consumers","Nevada","NV",20564 +2013-03-01,"Delivered to Consumers","Louisiana","LA",103675 +2013-03-01,"Electric Power Consumption","Washington","WA",7274 +2013-03-01,"Electric Power Consumption","Michigan","MI",9594 +2013-03-01,"Electric Power Consumption","South Dakota","SD",2 +2013-03-01,"Electric Power Consumption","Hawaii","HI",NA +2013-03-01,"Electric Power Consumption","Louisiana","LA",16488 +2013-03-01,"Electric Power Consumption","Texas","TX",90799 +2013-03-01,"Electric Power Consumption","Oklahoma","OK",18619 +2013-03-01,"Electric Power Consumption","North Carolina","NC",15941 +2013-03-01,"Electric Power Consumption","Mississippi","MS",15709 +2013-03-01,"Electric Power Consumption","Kansas","KS",1944 +2013-03-01,"Electric Power Consumption","Nevada","NV",12553 +2013-03-01,"Electric Power Consumption","Wyoming","WY",59 +2013-03-01,"Electric Power Consumption","North Dakota","ND",NA +2013-03-01,"Electric Power Consumption","Georgia","GA",24060 +2013-03-01,"Electric Power Consumption","Alaska","AK",2971 +2013-03-01,"Electric Power Consumption","New Mexico","NM",4741 +2013-03-01,"Electric Power Consumption","South Carolina","SC",8067 +2013-03-01,"Electric Power Consumption","Illinois","IL",5577 +2013-03-01,"Electric Power Consumption","West Virginia","WV",155 +2013-03-01,"Electric Power Consumption","U.S.","U.S.",603910 +2013-03-01,"Electric Power Consumption","Missouri","MO",3890 +2013-03-01,"Electric Power Consumption","Arizona","AZ",9255 +2013-03-01,"Electric Power Consumption","Florida","FL",78330 +2013-03-01,"Electric Power Consumption","Alabama","AL",31388 +2013-03-01,"Electric Power Consumption","New York","NY",35118 +2013-03-01,"Electric Power Consumption","Massachusetts","MA",8726 +2013-03-01,"Electric Power Consumption","Iowa","IA",745 +2013-03-01,"Electric Power Consumption","Vermont","VT",4 +2013-03-01,"Electric Power Consumption","Tennessee","TN",4495 +2013-03-01,"Electric Power Consumption","Nebraska","NE",103 +2013-03-01,"Electric Power Consumption","Kentucky","KY",2048 +2013-03-01,"Electric Power Consumption","Ohio","OH",13502 +2013-03-01,"Electric Power Consumption","New Hampshire","NH",2285 +2013-03-01,"Electric Power Consumption","Montana","MT",484 +2013-03-01,"Electric Power Consumption","Delaware","DE",4662 +2013-03-01,"Electric Power Consumption","Connecticut","CT",8889 +2013-03-01,"Electric Power Consumption","Virginia","VA",9626 +2013-03-01,"Electric Power Consumption","Idaho","ID",1635 +2013-03-01,"Electric Power Consumption","Colorado","CO",7066 +2013-03-01,"Electric Power Consumption","Utah","UT",3653 +2013-03-01,"Electric Power Consumption","Wisconsin","WI",5791 +2013-03-01,"Electric Power Consumption","Maine","ME",1783 +2013-03-01,"Electric Power Consumption","Rhode Island","RI",2371 +2013-03-01,"Electric Power Consumption","Oregon","OR",10233 +2013-03-01,"Electric Power Consumption","Minnesota","MN",4197 +2013-03-01,"Electric Power Consumption","Pennsylvania","PA",27755 +2013-03-01,"Electric Power Consumption","Maryland","MD",751 +2013-03-01,"Electric Power Consumption","New Jersey","NJ",16823 +2013-03-01,"Electric Power Consumption","Arkansas","AR",9038 +2013-03-01,"Electric Power Consumption","Indiana","IN",6303 +2013-03-01,"Electric Power Consumption","California","CA",58410 +2013-03-01,"Industrial Consumption","Utah","UT",3397 +2013-03-01,"Industrial Consumption","Idaho","ID",2502 +2013-03-01,"Industrial Consumption","Florida","FL",9141 +2013-03-01,"Industrial Consumption","Kentucky","KY",10474 +2013-03-01,"Industrial Consumption","District of Columbia","DC",0 +2013-03-01,"Industrial Consumption","New York","NY",8046 +2013-03-01,"Industrial Consumption","Maine","ME",2861 +2013-03-01,"Industrial Consumption","Nebraska","NE",6934 +2013-03-01,"Industrial Consumption","Wisconsin","WI",13525 +2013-03-01,"Industrial Consumption","Michigan","MI",16404 +2013-03-01,"Industrial Consumption","Oregon","OR",5124 +2013-03-01,"Industrial Consumption","Tennessee","TN",9890 +2013-03-01,"Industrial Consumption","New Jersey","NJ",5745 +2013-03-01,"Industrial Consumption","Oklahoma","OK",15213 +2013-03-01,"Industrial Consumption","South Dakota","SD",3640 +2013-03-01,"Industrial Consumption","Kansas","KS",10063 +2013-03-01,"Industrial Consumption","Arizona","AZ",1985 +2013-03-01,"Industrial Consumption","Nevada","NV",1079 +2013-03-01,"Industrial Consumption","Vermont","VT",141 +2013-03-01,"Industrial Consumption","Indiana","IN",33145 +2013-03-01,"Industrial Consumption","Delaware","DE",2756 +2013-03-01,"Industrial Consumption","Rhode Island","RI",735 +2013-03-01,"Industrial Consumption","Washington","WA",6724 +2013-03-01,"Industrial Consumption","U.S.","U.S.",654009 +2013-03-01,"Industrial Consumption","Pennsylvania","PA",21251 +2013-03-01,"Industrial Consumption","Connecticut","CT",3253 +2013-03-01,"Industrial Consumption","Georgia","GA",13784 +2013-03-01,"Industrial Consumption","North Dakota","ND",2812 +2013-03-01,"Industrial Consumption","Maryland","MD",1332 +2013-03-01,"Industrial Consumption","Hawaii","HI",26 +2013-03-01,"Industrial Consumption","Louisiana","LA",79495 +2013-03-01,"Industrial Consumption","Colorado","CO",7610 +2013-03-01,"Industrial Consumption","Ohio","OH",26975 +2013-03-01,"Industrial Consumption","Arkansas","AR",7879 +2013-03-01,"Industrial Consumption","Texas","TX",127583 +2013-03-01,"Industrial Consumption","Virginia","VA",5486 +2013-03-01,"Industrial Consumption","Minnesota","MN",14923 +2013-03-01,"Industrial Consumption","Iowa","IA",15225 +2013-03-01,"Industrial Consumption","Illinois","IL",27961 +2013-03-01,"Industrial Consumption","Missouri","MO",6068 +2013-03-01,"Industrial Consumption","California","CA",63427 +2013-03-01,"Industrial Consumption","West Virginia","WV",2517 +2013-03-01,"Industrial Consumption","New Hampshire","NH",768 +2013-03-01,"Industrial Consumption","Alaska","AK",341 +2013-03-01,"Industrial Consumption","Montana","MT",1731 +2013-03-01,"Industrial Consumption","Massachusetts","MA",4893 +2013-03-01,"Industrial Consumption","New Mexico","NM",1734 +2013-03-01,"Industrial Consumption","Mississippi","MS",10398 +2013-03-01,"Industrial Consumption","Alabama","AL",14940 +2013-03-01,"Industrial Consumption","South Carolina","SC",7437 +2013-03-01,"Industrial Consumption","Wyoming","WY",4207 +2013-03-01,"Industrial Consumption","North Carolina","NC",10428 +2013-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",123977 +2013-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",80940 +2013-03-01,"Residential Consumption","Iowa","IA",10341 +2013-03-01,"Residential Consumption","South Dakota","SD",1849 +2013-03-01,"Residential Consumption","New Mexico","NM",3550 +2013-03-01,"Residential Consumption","Indiana","IN",21628 +2013-03-01,"Residential Consumption","U.S.","U.S.",662262 +2013-03-01,"Residential Consumption","Texas","TX",23570 +2013-03-01,"Residential Consumption","Rhode Island","RI",1841 +2013-03-01,"Residential Consumption","Ohio","OH",46797 +2013-03-01,"Residential Consumption","North Carolina","NC",11612 +2013-03-01,"Residential Consumption","Connecticut","CT",6390 +2013-03-01,"Residential Consumption","Vermont","VT",465 +2013-03-01,"Residential Consumption","Nevada","NV",4077 +2013-03-01,"Residential Consumption","Georgia","GA",17837 +2013-03-01,"Residential Consumption","Pennsylvania","PA",35141 +2013-03-01,"Residential Consumption","Massachusetts","MA",15557 +2013-03-01,"Residential Consumption","New Hampshire","NH",1024 +2013-03-01,"Residential Consumption","Louisiana","LA",4873 +2013-03-01,"Residential Consumption","Hawaii","HI",48 +2013-03-01,"Residential Consumption","Maine","ME",240 +2013-03-01,"Residential Consumption","Kentucky","KY",8659 +2013-03-01,"Residential Consumption","Washington","WA",9142 +2013-03-01,"Residential Consumption","Delaware","DE",1688 +2013-03-01,"Residential Consumption","Alabama","AL",5205 +2013-03-01,"Residential Consumption","South Carolina","SC",4751 +2013-03-01,"Residential Consumption","Virginia","VA",13462 +2013-03-01,"Residential Consumption","Nebraska","NE",5685 +2013-03-01,"Residential Consumption","Michigan","MI",47035 +2013-03-01,"Residential Consumption","Maryland","MD",12749 +2013-03-01,"Residential Consumption","Colorado","CO",15454 +2013-03-01,"Residential Consumption","Arizona","AZ",4809 +2013-03-01,"Residential Consumption","Wyoming","WY",1584 +2013-03-01,"Residential Consumption","Utah","UT",6853 +2013-03-01,"Residential Consumption","Florida","FL",2147 +2013-03-01,"Residential Consumption","Idaho","ID",2777 +2013-03-01,"Residential Consumption","New Jersey","NJ",34257 +2013-03-01,"Residential Consumption","Montana","MT",2365 +2013-03-01,"Residential Consumption","Minnesota","MN",18115 +2013-03-01,"Residential Consumption","District of Columbia","DC",1948 +2013-03-01,"Residential Consumption","North Dakota","ND",1624 +2013-03-01,"Residential Consumption","Arkansas","AR",4977 +2013-03-01,"Residential Consumption","Missouri","MO",16290 +2013-03-01,"Residential Consumption","Oregon","OR",4238 +2013-03-01,"Residential Consumption","Mississippi","MS",3549 +2013-03-01,"Residential Consumption","Kansas","KS",9990 +2013-03-01,"Residential Consumption","Alaska","AK",2304 +2013-03-01,"Residential Consumption","West Virginia","WV",4560 +2013-03-01,"Residential Consumption","Illinois","IL",64802 +2013-03-01,"Residential Consumption","Wisconsin","WI",19759 +2013-03-01,"Residential Consumption","Tennessee","TN",11085 +2013-03-01,"Residential Consumption","Oklahoma","OK",10035 +2013-03-01,"Residential Consumption","California","CA",43465 +2013-03-01,"Residential Consumption","New York","NY",60057 +2013-03-01,"Vehicle Fuel Consumption","Utah","UT",19 +2013-03-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-03-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-03-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-03-01,"Vehicle Fuel Consumption","Minnesota","MN",4 +2013-03-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-03-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-03-01,"Vehicle Fuel Consumption","Nevada","NV",51 +2013-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2013-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",17 +2013-03-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-03-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-03-01,"Vehicle Fuel Consumption","South Carolina","SC",2 +2013-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2013-03-01,"Vehicle Fuel Consumption","Missouri","MO",4 +2013-03-01,"Vehicle Fuel Consumption","Texas","TX",255 +2013-03-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-03-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-03-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-03-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-03-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2013-03-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-03-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-03-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-03-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-03-01,"Vehicle Fuel Consumption","Michigan","MI",29 +2013-03-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-03-01,"Vehicle Fuel Consumption","Washington","WA",36 +2013-03-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-03-01,"Vehicle Fuel Consumption","New York","NY",282 +2013-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-03-01,"Vehicle Fuel Consumption","Georgia","GA",85 +2013-03-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-03-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2013-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-03-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-03-01,"Vehicle Fuel Consumption","Arizona","AZ",147 +2013-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2552 +2013-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",29 +2013-03-01,"Vehicle Fuel Consumption","Florida","FL",15 +2013-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-03-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-03-01,"Vehicle Fuel Consumption","California","CA",1199 +2013-03-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-04-01,"Commercial Consumption","Missouri","MO",4855 +2013-04-01,"Commercial Consumption","South Dakota","SD",1080 +2013-04-01,"Commercial Consumption","Maine","ME",656 +2013-04-01,"Commercial Consumption","Rhode Island","RI",1244 +2013-04-01,"Commercial Consumption","Idaho","ID",1305 +2013-04-01,"Commercial Consumption","Iowa","IA",4414 +2013-04-01,"Commercial Consumption","Hawaii","HI",151 +2013-04-01,"Commercial Consumption","Arkansas","AR",3569 +2013-04-01,"Commercial Consumption","Tennessee","TN",3523 +2013-04-01,"Commercial Consumption","Illinois","IL",17444 +2013-04-01,"Commercial Consumption","Wyoming","WY",1143 +2013-04-01,"Commercial Consumption","Minnesota","MN",8809 +2013-04-01,"Commercial Consumption","Utah","UT",3048 +2013-04-01,"Commercial Consumption","New Mexico","NM",1649 +2013-04-01,"Commercial Consumption","New Hampshire","NH",910 +2013-04-01,"Commercial Consumption","Vermont","VT",300 +2013-04-01,"Commercial Consumption","Alaska","AK",1753 +2013-04-01,"Commercial Consumption","Louisiana","LA",2080 +2013-04-01,"Commercial Consumption","Oklahoma","OK",4555 +2013-04-01,"Commercial Consumption","Massachusetts","MA",8208 +2013-04-01,"Commercial Consumption","Florida","FL",5279 +2013-04-01,"Commercial Consumption","Connecticut","CT",3486 +2013-04-01,"Commercial Consumption","Delaware","DE",665 +2013-04-01,"Commercial Consumption","Arizona","AZ",2517 +2013-04-01,"Commercial Consumption","Nevada","NV",2284 +2013-04-01,"Commercial Consumption","North Dakota","ND",1167 +2013-04-01,"Commercial Consumption","Kentucky","KY",2221 +2013-04-01,"Commercial Consumption","New York","NY",22709 +2013-04-01,"Commercial Consumption","South Carolina","SC",1536 +2013-04-01,"Commercial Consumption","Colorado","CO",5297 +2013-04-01,"Commercial Consumption","Montana","MT",1776 +2013-04-01,"Commercial Consumption","Texas","TX",12778 +2013-04-01,"Commercial Consumption","Maryland","MD",4550 +2013-04-01,"Commercial Consumption","Georgia","GA",3510 +2013-04-01,"Commercial Consumption","Ohio","OH",11848 +2013-04-01,"Commercial Consumption","Michigan","MI",15817 +2013-04-01,"Commercial Consumption","Washington","WA",4254 +2013-04-01,"Commercial Consumption","Virginia","VA",4796 +2013-04-01,"Commercial Consumption","West Virginia","WV",1858 +2013-04-01,"Commercial Consumption","North Carolina","NC",3390 +2013-04-01,"Commercial Consumption","Oregon","OR",2134 +2013-04-01,"Commercial Consumption","Pennsylvania","PA",10074 +2013-04-01,"Commercial Consumption","New Jersey","NJ",13575 +2013-04-01,"Commercial Consumption","U.S.","U.S.",249295 +2013-04-01,"Commercial Consumption","Kansas","KS",2480 +2013-04-01,"Commercial Consumption","Indiana","IN",5318 +2013-04-01,"Commercial Consumption","Wisconsin","WI",8651 +2013-04-01,"Commercial Consumption","California","CA",18038 +2013-04-01,"Commercial Consumption","Alabama","AL",1425 +2013-04-01,"Commercial Consumption","Nebraska","NE",2689 +2013-04-01,"Commercial Consumption","Mississippi","MS",1415 +2013-04-01,"Commercial Consumption","District of Columbia","DC",1061 +2013-04-01,"Delivered to Consumers","West Virginia","WV",6142 +2013-04-01,"Delivered to Consumers","Vermont","VT",701 +2013-04-01,"Delivered to Consumers","New York","NY",93833 +2013-04-01,"Delivered to Consumers","Alaska","AK",6714 +2013-04-01,"Delivered to Consumers","Ohio","OH",66118 +2013-04-01,"Delivered to Consumers","Iowa","IA",24292 +2013-04-01,"Delivered to Consumers","Virginia","VA",30981 +2013-04-01,"Delivered to Consumers","Nebraska","NE",12902 +2013-04-01,"Delivered to Consumers","Mississippi","MS",26250 +2013-04-01,"Delivered to Consumers","Hawaii","HI",244 +2013-04-01,"Delivered to Consumers","Oklahoma","OK",43495 +2013-04-01,"Delivered to Consumers","Texas","TX",250057 +2013-04-01,"Delivered to Consumers","Nevada","NV",16169 +2013-04-01,"Delivered to Consumers","Maine","ME",4761 +2013-04-01,"Delivered to Consumers","Arizona","AZ",19477 +2013-04-01,"Delivered to Consumers","Utah","UT",14734 +2013-04-01,"Delivered to Consumers","U.S.","U.S.",1783603 +2013-04-01,"Delivered to Consumers","Wyoming","WY",6762 +2013-04-01,"Delivered to Consumers","Maryland","MD",13041 +2013-04-01,"Delivered to Consumers","Kansas","KS",18556 +2013-04-01,"Delivered to Consumers","Tennessee","TN",18461 +2013-04-01,"Delivered to Consumers","Michigan","MI",67617 +2013-04-01,"Delivered to Consumers","District of Columbia","DC",1893 +2013-04-01,"Delivered to Consumers","Georgia","GA",44422 +2013-04-01,"Delivered to Consumers","Minnesota","MN",39173 +2013-04-01,"Delivered to Consumers","South Dakota","SD",6302 +2013-04-01,"Delivered to Consumers","Kentucky","KY",16151 +2013-04-01,"Delivered to Consumers","Alabama","AL",40167 +2013-04-01,"Delivered to Consumers","Missouri","MO",19781 +2013-04-01,"Delivered to Consumers","Massachusetts","MA",35147 +2013-04-01,"Delivered to Consumers","California","CA",159828 +2013-04-01,"Delivered to Consumers","New Jersey","NJ",56151 +2013-04-01,"Delivered to Consumers","Delaware","DE",6657 +2013-04-01,"Delivered to Consumers","Rhode Island","RI",7015 +2013-04-01,"Delivered to Consumers","Idaho","ID",6250 +2013-04-01,"Delivered to Consumers","Connecticut","CT",18248 +2013-04-01,"Delivered to Consumers","Arkansas","AR",18250 +2013-04-01,"Delivered to Consumers","Wisconsin","WI",37485 +2013-04-01,"Delivered to Consumers","South Carolina","SC",17090 +2013-04-01,"Delivered to Consumers","Washington","WA",19872 +2013-04-01,"Delivered to Consumers","North Dakota","ND",4326 +2013-04-01,"Delivered to Consumers","Florida","FL",95326 +2013-04-01,"Delivered to Consumers","Illinois","IL",79551 +2013-04-01,"Delivered to Consumers","Montana","MT",5739 +2013-04-01,"Delivered to Consumers","North Carolina","NC",30555 +2013-04-01,"Delivered to Consumers","Oregon","OR",15302 +2013-04-01,"Delivered to Consumers","Louisiana","LA",99691 +2013-04-01,"Delivered to Consumers","New Hampshire","NH",2507 +2013-04-01,"Delivered to Consumers","New Mexico","NM",11625 +2013-04-01,"Delivered to Consumers","Indiana","IN",46792 +2013-04-01,"Delivered to Consumers","Pennsylvania","PA",70336 +2013-04-01,"Delivered to Consumers","Colorado","CO",30665 +2013-04-01,"Electric Power Consumption","Virginia","VA",13473 +2013-04-01,"Electric Power Consumption","South Carolina","SC",7184 +2013-04-01,"Electric Power Consumption","Michigan","MI",9825 +2013-04-01,"Electric Power Consumption","Vermont","VT",1 +2013-04-01,"Electric Power Consumption","California","CA",50993 +2013-04-01,"Electric Power Consumption","Alabama","AL",22245 +2013-04-01,"Electric Power Consumption","Rhode Island","RI",4022 +2013-04-01,"Electric Power Consumption","Massachusetts","MA",13625 +2013-04-01,"Electric Power Consumption","Kansas","KS",1431 +2013-04-01,"Electric Power Consumption","Tennessee","TN",692 +2013-04-01,"Electric Power Consumption","U.S.","U.S.",564827 +2013-04-01,"Electric Power Consumption","Mississippi","MS",13193 +2013-04-01,"Electric Power Consumption","Kentucky","KY",1476 +2013-04-01,"Electric Power Consumption","Hawaii","HI",NA +2013-04-01,"Electric Power Consumption","Ohio","OH",9579 +2013-04-01,"Electric Power Consumption","Montana","MT",808 +2013-04-01,"Electric Power Consumption","Maryland","MD",2189 +2013-04-01,"Electric Power Consumption","New Jersey","NJ",16749 +2013-04-01,"Electric Power Consumption","Colorado","CO",6350 +2013-04-01,"Electric Power Consumption","Arkansas","AR",5061 +2013-04-01,"Electric Power Consumption","Wisconsin","WI",5356 +2013-04-01,"Electric Power Consumption","Maine","ME",1658 +2013-04-01,"Electric Power Consumption","Connecticut","CT",8294 +2013-04-01,"Electric Power Consumption","Florida","FL",79959 +2013-04-01,"Electric Power Consumption","Alaska","AK",2755 +2013-04-01,"Electric Power Consumption","New York","NY",30861 +2013-04-01,"Electric Power Consumption","Iowa","IA",459 +2013-04-01,"Electric Power Consumption","North Carolina","NC",14360 +2013-04-01,"Electric Power Consumption","North Dakota","ND",NA +2013-04-01,"Electric Power Consumption","Idaho","ID",749 +2013-04-01,"Electric Power Consumption","Nebraska","NE",120 +2013-04-01,"Electric Power Consumption","New Mexico","NM",6165 +2013-04-01,"Electric Power Consumption","Oregon","OR",4955 +2013-04-01,"Electric Power Consumption","West Virginia","WV",179 +2013-04-01,"Electric Power Consumption","Pennsylvania","PA",25860 +2013-04-01,"Electric Power Consumption","Nevada","NV",10285 +2013-04-01,"Electric Power Consumption","Wyoming","WY",54 +2013-04-01,"Electric Power Consumption","New Hampshire","NH",125 +2013-04-01,"Electric Power Consumption","Delaware","DE",2674 +2013-04-01,"Electric Power Consumption","Louisiana","LA",20166 +2013-04-01,"Electric Power Consumption","Oklahoma","OK",16452 +2013-04-01,"Electric Power Consumption","Utah","UT",3490 +2013-04-01,"Electric Power Consumption","Minnesota","MN",4681 +2013-04-01,"Electric Power Consumption","South Dakota","SD",142 +2013-04-01,"Electric Power Consumption","Indiana","IN",4734 +2013-04-01,"Electric Power Consumption","Arizona","AZ",12787 +2013-04-01,"Electric Power Consumption","Georgia","GA",20394 +2013-04-01,"Electric Power Consumption","Washington","WA",2398 +2013-04-01,"Electric Power Consumption","Texas","TX",99035 +2013-04-01,"Electric Power Consumption","Illinois","IL",4808 +2013-04-01,"Electric Power Consumption","Missouri","MO",1980 +2013-04-01,"Industrial Consumption","Montana","MT",1300 +2013-04-01,"Industrial Consumption","Arizona","AZ",1758 +2013-04-01,"Industrial Consumption","Utah","UT",3203 +2013-04-01,"Industrial Consumption","Oregon","OR",4749 +2013-04-01,"Industrial Consumption","Mississippi","MS",9852 +2013-04-01,"Industrial Consumption","Georgia","GA",13284 +2013-04-01,"Industrial Consumption","Kansas","KS",9209 +2013-04-01,"Industrial Consumption","Pennsylvania","PA",17426 +2013-04-01,"Industrial Consumption","Nevada","NV",1075 +2013-04-01,"Industrial Consumption","Texas","TX",124423 +2013-04-01,"Industrial Consumption","South Carolina","SC",6784 +2013-04-01,"Industrial Consumption","West Virginia","WV",2123 +2013-04-01,"Industrial Consumption","Idaho","ID",2300 +2013-04-01,"Industrial Consumption","Michigan","MI",15366 +2013-04-01,"Industrial Consumption","District of Columbia","DC",0 +2013-04-01,"Industrial Consumption","U.S.","U.S.",600591 +2013-04-01,"Industrial Consumption","Arkansas","AR",7186 +2013-04-01,"Industrial Consumption","Nebraska","NE",6466 +2013-04-01,"Industrial Consumption","New Hampshire","NH",710 +2013-04-01,"Industrial Consumption","Minnesota","MN",13546 +2013-04-01,"Industrial Consumption","Indiana","IN",27272 +2013-04-01,"Industrial Consumption","Delaware","DE",2596 +2013-04-01,"Industrial Consumption","Louisiana","LA",74446 +2013-04-01,"Industrial Consumption","Colorado","CO",6893 +2013-04-01,"Industrial Consumption","Maine","ME",2282 +2013-04-01,"Industrial Consumption","Vermont","VT",115 +2013-04-01,"Industrial Consumption","Tennessee","TN",9465 +2013-04-01,"Industrial Consumption","Iowa","IA",13532 +2013-04-01,"Industrial Consumption","Kentucky","KY",9202 +2013-04-01,"Industrial Consumption","Alaska","AK",317 +2013-04-01,"Industrial Consumption","Ohio","OH",22811 +2013-04-01,"Industrial Consumption","Illinois","IL",23031 +2013-04-01,"Industrial Consumption","North Carolina","NC",9182 +2013-04-01,"Industrial Consumption","Massachusetts","MA",3871 +2013-04-01,"Industrial Consumption","Hawaii","HI",42 +2013-04-01,"Industrial Consumption","New Mexico","NM",1653 +2013-04-01,"Industrial Consumption","Wyoming","WY",4188 +2013-04-01,"Industrial Consumption","New Jersey","NJ",5786 +2013-04-01,"Industrial Consumption","Connecticut","CT",2361 +2013-04-01,"Industrial Consumption","Rhode Island","RI",622 +2013-04-01,"Industrial Consumption","Oklahoma","OK",15890 +2013-04-01,"Industrial Consumption","Missouri","MO",5283 +2013-04-01,"Industrial Consumption","New York","NY",6758 +2013-04-01,"Industrial Consumption","Alabama","AL",14283 +2013-04-01,"Industrial Consumption","Virginia","VA",6336 +2013-04-01,"Industrial Consumption","Wisconsin","WI",11507 +2013-04-01,"Industrial Consumption","North Dakota","ND",2051 +2013-04-01,"Industrial Consumption","Maryland","MD",1052 +2013-04-01,"Industrial Consumption","Washington","WA",6547 +2013-04-01,"Industrial Consumption","South Dakota","SD",3808 +2013-04-01,"Industrial Consumption","California","CA",58222 +2013-04-01,"Industrial Consumption","Florida","FL",8428 +2013-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",121527 +2013-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",62329 +2013-04-01,"Residential Consumption","Ohio","OH",21855 +2013-04-01,"Residential Consumption","Iowa","IA",5885 +2013-04-01,"Residential Consumption","Maryland","MD",5232 +2013-04-01,"Residential Consumption","Massachusetts","MA",9386 +2013-04-01,"Residential Consumption","Montana","MT",1855 +2013-04-01,"Residential Consumption","Arizona","AZ",2273 +2013-04-01,"Residential Consumption","Alaska","AK",1889 +2013-04-01,"Residential Consumption","Illinois","IL",34245 +2013-04-01,"Residential Consumption","South Carolina","SC",1586 +2013-04-01,"Residential Consumption","Virginia","VA",6358 +2013-04-01,"Residential Consumption","Nebraska","NE",3623 +2013-04-01,"Residential Consumption","Minnesota","MN",12133 +2013-04-01,"Residential Consumption","California","CA",31414 +2013-04-01,"Residential Consumption","Oregon","OR",3452 +2013-04-01,"Residential Consumption","North Carolina","NC",3617 +2013-04-01,"Residential Consumption","Louisiana","LA",2995 +2013-04-01,"Residential Consumption","Hawaii","HI",49 +2013-04-01,"Residential Consumption","Wisconsin","WI",11962 +2013-04-01,"Residential Consumption","Tennessee","TN",4774 +2013-04-01,"Residential Consumption","Pennsylvania","PA",16952 +2013-04-01,"Residential Consumption","Washington","WA",6638 +2013-04-01,"Residential Consumption","Oklahoma","OK",6569 +2013-04-01,"Residential Consumption","Wyoming","WY",1375 +2013-04-01,"Residential Consumption","Mississippi","MS",1788 +2013-04-01,"Residential Consumption","South Dakota","SD",1272 +2013-04-01,"Residential Consumption","Kentucky","KY",3249 +2013-04-01,"Residential Consumption","Colorado","CO",12103 +2013-04-01,"Residential Consumption","Vermont","VT",285 +2013-04-01,"Residential Consumption","Utah","UT",4975 +2013-04-01,"Residential Consumption","Nevada","NV",2476 +2013-04-01,"Residential Consumption","Maine","ME",165 +2013-04-01,"Residential Consumption","Indiana","IN",9466 +2013-04-01,"Residential Consumption","North Dakota","ND",1107 +2013-04-01,"Residential Consumption","Arkansas","AR",2433 +2013-04-01,"Residential Consumption","New Hampshire","NH",757 +2013-04-01,"Residential Consumption","Florida","FL",1646 +2013-04-01,"Residential Consumption","Idaho","ID",1885 +2013-04-01,"Residential Consumption","Delaware","DE",723 +2013-04-01,"Residential Consumption","Georgia","GA",7153 +2013-04-01,"Residential Consumption","New Mexico","NM",2146 +2013-04-01,"Residential Consumption","Kansas","KS",5437 +2013-04-01,"Residential Consumption","Missouri","MO",7660 +2013-04-01,"Residential Consumption","New York","NY",33232 +2013-04-01,"Residential Consumption","Texas","TX",13573 +2013-04-01,"Residential Consumption","Rhode Island","RI",1121 +2013-04-01,"Residential Consumption","Connecticut","CT",4103 +2013-04-01,"Residential Consumption","Michigan","MI",26582 +2013-04-01,"Residential Consumption","District of Columbia","DC",761 +2013-04-01,"Residential Consumption","New Jersey","NJ",20025 +2013-04-01,"Residential Consumption","Alabama","AL",2198 +2013-04-01,"Residential Consumption","West Virginia","WV",1982 +2013-04-01,"Residential Consumption","U.S.","U.S.",366420 +2013-04-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-04-01,"Vehicle Fuel Consumption","Texas","TX",247 +2013-04-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",28 +2013-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2013-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2013-04-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-04-01,"Vehicle Fuel Consumption","Georgia","GA",82 +2013-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2469 +2013-04-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2013-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",57 +2013-04-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-04-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-04-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-04-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-04-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-04-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-04-01,"Vehicle Fuel Consumption","Florida","FL",14 +2013-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-04-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-04-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-04-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-04-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-04-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-04-01,"Vehicle Fuel Consumption","Colorado","CO",22 +2013-04-01,"Vehicle Fuel Consumption","Minnesota","MN",3 +2013-04-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-04-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-04-01,"Vehicle Fuel Consumption","Washington","WA",34 +2013-04-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-04-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2013-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-04-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-04-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-04-01,"Vehicle Fuel Consumption","Missouri","MO",3 +2013-04-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-04-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2013-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-04-01,"Vehicle Fuel Consumption","New York","NY",273 +2013-04-01,"Vehicle Fuel Consumption","Utah","UT",18 +2013-04-01,"Vehicle Fuel Consumption","Arizona","AZ",142 +2013-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-04-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-04-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2013-04-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-04-01,"Vehicle Fuel Consumption","California","CA",1161 +2013-05-01,"Commercial Consumption","Oklahoma","OK",3462 +2013-05-01,"Commercial Consumption","Montana","MT",885 +2013-05-01,"Commercial Consumption","Kansas","KS",1436 +2013-05-01,"Commercial Consumption","California","CA",17317 +2013-05-01,"Commercial Consumption","New York","NY",16842 +2013-05-01,"Commercial Consumption","District of Columbia","DC",834 +2013-05-01,"Commercial Consumption","Wyoming","WY",558 +2013-05-01,"Commercial Consumption","Massachusetts","MA",5051 +2013-05-01,"Commercial Consumption","New Hampshire","NH",532 +2013-05-01,"Commercial Consumption","Arizona","AZ",2191 +2013-05-01,"Commercial Consumption","Tennessee","TN",2599 +2013-05-01,"Commercial Consumption","Oregon","OR",1719 +2013-05-01,"Commercial Consumption","Virginia","VA",3314 +2013-05-01,"Commercial Consumption","U.S.","U.S.",168850 +2013-05-01,"Commercial Consumption","Maryland","MD",3564 +2013-05-01,"Commercial Consumption","Georgia","GA",2821 +2013-05-01,"Commercial Consumption","Florida","FL",4753 +2013-05-01,"Commercial Consumption","Alaska","AK",1244 +2013-05-01,"Commercial Consumption","Connecticut","CT",2279 +2013-05-01,"Commercial Consumption","Washington","WA",3086 +2013-05-01,"Commercial Consumption","Wisconsin","WI",4338 +2013-05-01,"Commercial Consumption","New Jersey","NJ",9618 +2013-05-01,"Commercial Consumption","Texas","TX",11202 +2013-05-01,"Commercial Consumption","Alabama","AL",1273 +2013-05-01,"Commercial Consumption","Mississippi","MS",1132 +2013-05-01,"Commercial Consumption","Indiana","IN",3159 +2013-05-01,"Commercial Consumption","Colorado","CO",3070 +2013-05-01,"Commercial Consumption","Utah","UT",1288 +2013-05-01,"Commercial Consumption","Pennsylvania","PA",6201 +2013-05-01,"Commercial Consumption","Rhode Island","RI",414 +2013-05-01,"Commercial Consumption","Idaho","ID",828 +2013-05-01,"Commercial Consumption","Nevada","NV",1987 +2013-05-01,"Commercial Consumption","Illinois","IL",9489 +2013-05-01,"Commercial Consumption","North Dakota","ND",504 +2013-05-01,"Commercial Consumption","North Carolina","NC",3075 +2013-05-01,"Commercial Consumption","Hawaii","HI",164 +2013-05-01,"Commercial Consumption","Delaware","DE",481 +2013-05-01,"Commercial Consumption","Michigan","MI",7693 +2013-05-01,"Commercial Consumption","West Virginia","WV",1404 +2013-05-01,"Commercial Consumption","Minnesota","MN",4619 +2013-05-01,"Commercial Consumption","Vermont","VT",216 +2013-05-01,"Commercial Consumption","Ohio","OH",5709 +2013-05-01,"Commercial Consumption","Iowa","IA",2482 +2013-05-01,"Commercial Consumption","South Carolina","SC",1481 +2013-05-01,"Commercial Consumption","New Mexico","NM",1191 +2013-05-01,"Commercial Consumption","Missouri","MO",2898 +2013-05-01,"Commercial Consumption","South Dakota","SD",493 +2013-05-01,"Commercial Consumption","Maine","ME",406 +2013-05-01,"Commercial Consumption","Kentucky","KY",1298 +2013-05-01,"Commercial Consumption","Arkansas","AR",2831 +2013-05-01,"Commercial Consumption","Nebraska","NE",1513 +2013-05-01,"Commercial Consumption","Louisiana","LA",1906 +2013-05-01,"Delivered to Consumers","Indiana","IN",41163 +2013-05-01,"Delivered to Consumers","Vermont","VT",440 +2013-05-01,"Delivered to Consumers","Michigan","MI",42331 +2013-05-01,"Delivered to Consumers","Wisconsin","WI",22360 +2013-05-01,"Delivered to Consumers","Missouri","MO",14938 +2013-05-01,"Delivered to Consumers","Illinois","IL",49299 +2013-05-01,"Delivered to Consumers","Maryland","MD",11055 +2013-05-01,"Delivered to Consumers","Oklahoma","OK",44025 +2013-05-01,"Delivered to Consumers","Tennessee","TN",15214 +2013-05-01,"Delivered to Consumers","Ohio","OH",48701 +2013-05-01,"Delivered to Consumers","Arkansas","AR",16377 +2013-05-01,"Delivered to Consumers","Virginia","VA",25022 +2013-05-01,"Delivered to Consumers","Colorado","CO",21590 +2013-05-01,"Delivered to Consumers","California","CA",162719 +2013-05-01,"Delivered to Consumers","Louisiana","LA",100129 +2013-05-01,"Delivered to Consumers","New Hampshire","NH",2793 +2013-05-01,"Delivered to Consumers","Connecticut","CT",15716 +2013-05-01,"Delivered to Consumers","Oregon","OR",11066 +2013-05-01,"Delivered to Consumers","Minnesota","MN",24447 +2013-05-01,"Delivered to Consumers","District of Columbia","DC",1357 +2013-05-01,"Delivered to Consumers","U.S.","U.S.",1572373 +2013-05-01,"Delivered to Consumers","West Virginia","WV",4470 +2013-05-01,"Delivered to Consumers","South Dakota","SD",4592 +2013-05-01,"Delivered to Consumers","Hawaii","HI",252 +2013-05-01,"Delivered to Consumers","North Carolina","NC",29254 +2013-05-01,"Delivered to Consumers","Maine","ME",4396 +2013-05-01,"Delivered to Consumers","New Mexico","NM",10463 +2013-05-01,"Delivered to Consumers","Rhode Island","RI",7028 +2013-05-01,"Delivered to Consumers","Kansas","KS",16074 +2013-05-01,"Delivered to Consumers","Pennsylvania","PA",59127 +2013-05-01,"Delivered to Consumers","Massachusetts","MA",28245 +2013-05-01,"Delivered to Consumers","Texas","TX",259206 +2013-05-01,"Delivered to Consumers","Georgia","GA",42239 +2013-05-01,"Delivered to Consumers","Arizona","AZ",17328 +2013-05-01,"Delivered to Consumers","Wyoming","WY",5311 +2013-05-01,"Delivered to Consumers","New York","NY",76758 +2013-05-01,"Delivered to Consumers","Iowa","IA",19705 +2013-05-01,"Delivered to Consumers","South Carolina","SC",15939 +2013-05-01,"Delivered to Consumers","North Dakota","ND",3385 +2013-05-01,"Delivered to Consumers","Florida","FL",101092 +2013-05-01,"Delivered to Consumers","Montana","MT",3151 +2013-05-01,"Delivered to Consumers","Kentucky","KY",13274 +2013-05-01,"Delivered to Consumers","Alabama","AL",39906 +2013-05-01,"Delivered to Consumers","New Jersey","NJ",40659 +2013-05-01,"Delivered to Consumers","Utah","UT",8757 +2013-05-01,"Delivered to Consumers","Delaware","DE",7036 +2013-05-01,"Delivered to Consumers","Alaska","AK",5395 +2013-05-01,"Delivered to Consumers","Idaho","ID",5182 +2013-05-01,"Delivered to Consumers","Nebraska","NE",10294 +2013-05-01,"Delivered to Consumers","Mississippi","MS",29572 +2013-05-01,"Delivered to Consumers","Nevada","NV",18186 +2013-05-01,"Delivered to Consumers","Washington","WA",15358 +2013-05-01,"Electric Power Consumption","Colorado","CO",6338 +2013-05-01,"Electric Power Consumption","New York","NY",36121 +2013-05-01,"Electric Power Consumption","Pennsylvania","PA",27653 +2013-05-01,"Electric Power Consumption","Vermont","VT",4 +2013-05-01,"Electric Power Consumption","U.S.","U.S.",614808 +2013-05-01,"Electric Power Consumption","Kentucky","KY",1682 +2013-05-01,"Electric Power Consumption","Florida","FL",86799 +2013-05-01,"Electric Power Consumption","Rhode Island","RI",5293 +2013-05-01,"Electric Power Consumption","Tennessee","TN",1426 +2013-05-01,"Electric Power Consumption","South Dakota","SD",12 +2013-05-01,"Electric Power Consumption","Nebraska","NE",251 +2013-05-01,"Electric Power Consumption","Ohio","OH",13864 +2013-05-01,"Electric Power Consumption","New Hampshire","NH",1281 +2013-05-01,"Electric Power Consumption","Montana","MT",196 +2013-05-01,"Electric Power Consumption","Virginia","VA",12606 +2013-05-01,"Electric Power Consumption","New Jersey","NJ",17363 +2013-05-01,"Electric Power Consumption","Massachusetts","MA",15458 +2013-05-01,"Electric Power Consumption","Wyoming","WY",46 +2013-05-01,"Electric Power Consumption","Iowa","IA",818 +2013-05-01,"Electric Power Consumption","Missouri","MO",3355 +2013-05-01,"Electric Power Consumption","Alaska","AK",2730 +2013-05-01,"Electric Power Consumption","Louisiana","LA",19403 +2013-05-01,"Electric Power Consumption","Nevada","NV",13350 +2013-05-01,"Electric Power Consumption","North Carolina","NC",15756 +2013-05-01,"Electric Power Consumption","Mississippi","MS",17573 +2013-05-01,"Electric Power Consumption","Maryland","MD",3328 +2013-05-01,"Electric Power Consumption","Connecticut","CT",9382 +2013-05-01,"Electric Power Consumption","Washington","WA",2188 +2013-05-01,"Electric Power Consumption","New Mexico","NM",6251 +2013-05-01,"Electric Power Consumption","Arkansas","AR",5737 +2013-05-01,"Electric Power Consumption","South Carolina","SC",6834 +2013-05-01,"Electric Power Consumption","Texas","TX",109357 +2013-05-01,"Electric Power Consumption","Indiana","IN",6198 +2013-05-01,"Electric Power Consumption","Georgia","GA",21056 +2013-05-01,"Electric Power Consumption","Minnesota","MN",3481 +2013-05-01,"Electric Power Consumption","Illinois","IL",4243 +2013-05-01,"Electric Power Consumption","Michigan","MI",12236 +2013-05-01,"Electric Power Consumption","Hawaii","HI",NA +2013-05-01,"Electric Power Consumption","California","CA",54820 +2013-05-01,"Electric Power Consumption","Oklahoma","OK",19788 +2013-05-01,"Electric Power Consumption","Utah","UT",2514 +2013-05-01,"Electric Power Consumption","Kansas","KS",2244 +2013-05-01,"Electric Power Consumption","West Virginia","WV",352 +2013-05-01,"Electric Power Consumption","Wisconsin","WI",3342 +2013-05-01,"Electric Power Consumption","Delaware","DE",3477 +2013-05-01,"Electric Power Consumption","Idaho","ID",1124 +2013-05-01,"Electric Power Consumption","Oregon","OR",2888 +2013-05-01,"Electric Power Consumption","Maine","ME",1385 +2013-05-01,"Electric Power Consumption","North Dakota","ND",NA +2013-05-01,"Electric Power Consumption","Arizona","AZ",11628 +2013-05-01,"Electric Power Consumption","Alabama","AL",21578 +2013-05-01,"Industrial Consumption","Maryland","MD",1138 +2013-05-01,"Industrial Consumption","Tennessee","TN",8788 +2013-05-01,"Industrial Consumption","Idaho","ID",2302 +2013-05-01,"Industrial Consumption","Kentucky","KY",8624 +2013-05-01,"Industrial Consumption","Oklahoma","OK",16474 +2013-05-01,"Industrial Consumption","Louisiana","LA",76771 +2013-05-01,"Industrial Consumption","Colorado","CO",5609 +2013-05-01,"Industrial Consumption","Kansas","KS",9507 +2013-05-01,"Industrial Consumption","U.S.","U.S.",592942 +2013-05-01,"Industrial Consumption","Pennsylvania","PA",17022 +2013-05-01,"Industrial Consumption","New York","NY",5917 +2013-05-01,"Industrial Consumption","Indiana","IN",27299 +2013-05-01,"Industrial Consumption","Delaware","DE",2736 +2013-05-01,"Industrial Consumption","District of Columbia","DC",0 +2013-05-01,"Industrial Consumption","Hawaii","HI",37 +2013-05-01,"Industrial Consumption","Washington","WA",6336 +2013-05-01,"Industrial Consumption","Utah","UT",2979 +2013-05-01,"Industrial Consumption","Arkansas","AR",6430 +2013-05-01,"Industrial Consumption","Wisconsin","WI",9131 +2013-05-01,"Industrial Consumption","North Dakota","ND",2443 +2013-05-01,"Industrial Consumption","Massachusetts","MA",2812 +2013-05-01,"Industrial Consumption","Ohio","OH",20640 +2013-05-01,"Industrial Consumption","Arizona","AZ",1687 +2013-05-01,"Industrial Consumption","Maine","ME",2525 +2013-05-01,"Industrial Consumption","California","CA",63188 +2013-05-01,"Industrial Consumption","Virginia","VA",6257 +2013-05-01,"Industrial Consumption","New Jersey","NJ",4764 +2013-05-01,"Industrial Consumption","Minnesota","MN",11711 +2013-05-01,"Industrial Consumption","Iowa","IA",13516 +2013-05-01,"Industrial Consumption","Oregon","OR",4377 +2013-05-01,"Industrial Consumption","Nevada","NV",1055 +2013-05-01,"Industrial Consumption","Texas","TX",128633 +2013-05-01,"Industrial Consumption","West Virginia","WV",1890 +2013-05-01,"Industrial Consumption","Vermont","VT",75 +2013-05-01,"Industrial Consumption","Florida","FL",8455 +2013-05-01,"Industrial Consumption","Montana","MT",1213 +2013-05-01,"Industrial Consumption","Missouri","MO",4757 +2013-05-01,"Industrial Consumption","Rhode Island","RI",564 +2013-05-01,"Industrial Consumption","Mississippi","MS",9629 +2013-05-01,"Industrial Consumption","Wyoming","WY",4101 +2013-05-01,"Industrial Consumption","Connecticut","CT",2165 +2013-05-01,"Industrial Consumption","Michigan","MI",12187 +2013-05-01,"Industrial Consumption","Illinois","IL",20324 +2013-05-01,"Industrial Consumption","Alaska","AK",306 +2013-05-01,"Industrial Consumption","South Dakota","SD",3542 +2013-05-01,"Industrial Consumption","New Mexico","NM",1548 +2013-05-01,"Industrial Consumption","Alabama","AL",15714 +2013-05-01,"Industrial Consumption","South Carolina","SC",6798 +2013-05-01,"Industrial Consumption","Nebraska","NE",6682 +2013-05-01,"Industrial Consumption","New Hampshire","NH",586 +2013-05-01,"Industrial Consumption","North Carolina","NC",8594 +2013-05-01,"Industrial Consumption","Georgia","GA",13105 +2013-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",125149 +2013-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",54947 +2013-05-01,"Residential Consumption","Connecticut","CT",1886 +2013-05-01,"Residential Consumption","Minnesota","MN",4633 +2013-05-01,"Residential Consumption","Idaho","ID",916 +2013-05-01,"Residential Consumption","North Carolina","NC",1823 +2013-05-01,"Residential Consumption","Iowa","IA",2888 +2013-05-01,"Residential Consumption","District of Columbia","DC",449 +2013-05-01,"Residential Consumption","Massachusetts","MA",4864 +2013-05-01,"Residential Consumption","Montana","MT",857 +2013-05-01,"Residential Consumption","New York","NY",17596 +2013-05-01,"Residential Consumption","Texas","TX",9759 +2013-05-01,"Residential Consumption","Mississippi","MS",1236 +2013-05-01,"Residential Consumption","Hawaii","HI",50 +2013-05-01,"Residential Consumption","Nebraska","NE",1844 +2013-05-01,"Residential Consumption","Michigan","MI",10185 +2013-05-01,"Residential Consumption","Maryland","MD",3007 +2013-05-01,"Residential Consumption","South Dakota","SD",546 +2013-05-01,"Residential Consumption","Arkansas","AR",1377 +2013-05-01,"Residential Consumption","California","CA",26196 +2013-05-01,"Residential Consumption","Rhode Island","RI",750 +2013-05-01,"Residential Consumption","Ohio","OH",8462 +2013-05-01,"Residential Consumption","Wisconsin","WI",5541 +2013-05-01,"Residential Consumption","Virginia","VA",2827 +2013-05-01,"Residential Consumption","Georgia","GA",5173 +2013-05-01,"Residential Consumption","New Mexico","NM",1460 +2013-05-01,"Residential Consumption","Florida","FL",1069 +2013-05-01,"Residential Consumption","Colorado","CO",6550 +2013-05-01,"Residential Consumption","Delaware","DE",343 +2013-05-01,"Residential Consumption","Wyoming","WY",604 +2013-05-01,"Residential Consumption","Maine","ME",80 +2013-05-01,"Residential Consumption","Indiana","IN",4506 +2013-05-01,"Residential Consumption","New Jersey","NJ",8898 +2013-05-01,"Residential Consumption","Kansas","KS",2886 +2013-05-01,"Residential Consumption","Arizona","AZ",1675 +2013-05-01,"Residential Consumption","Alabama","AL",1325 +2013-05-01,"Residential Consumption","West Virginia","WV",824 +2013-05-01,"Residential Consumption","South Carolina","SC",824 +2013-05-01,"Residential Consumption","Louisiana","LA",2044 +2013-05-01,"Residential Consumption","Pennsylvania","PA",8224 +2013-05-01,"Residential Consumption","North Dakota","ND",438 +2013-05-01,"Residential Consumption","Oklahoma","OK",4273 +2013-05-01,"Residential Consumption","Missouri","MO",3924 +2013-05-01,"Residential Consumption","U.S.","U.S.",193222 +2013-05-01,"Residential Consumption","Illinois","IL",15219 +2013-05-01,"Residential Consumption","Oregon","OR",2069 +2013-05-01,"Residential Consumption","Vermont","VT",145 +2013-05-01,"Residential Consumption","Tennessee","TN",2394 +2013-05-01,"Residential Consumption","Utah","UT",1957 +2013-05-01,"Residential Consumption","Nevada","NV",1744 +2013-05-01,"Residential Consumption","Washington","WA",3713 +2013-05-01,"Residential Consumption","Alaska","AK",1115 +2013-05-01,"Residential Consumption","New Hampshire","NH",389 +2013-05-01,"Residential Consumption","Kentucky","KY",1667 +2013-05-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-05-01,"Vehicle Fuel Consumption","Minnesota","MN",4 +2013-05-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-05-01,"Vehicle Fuel Consumption","Washington","WA",36 +2013-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-05-01,"Vehicle Fuel Consumption","Nevada","NV",51 +2013-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-05-01,"Vehicle Fuel Consumption","Arizona","AZ",147 +2013-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-05-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-05-01,"Vehicle Fuel Consumption","Michigan","MI",29 +2013-05-01,"Vehicle Fuel Consumption","Georgia","GA",85 +2013-05-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-05-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-05-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-05-01,"Vehicle Fuel Consumption","Florida","FL",15 +2013-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-05-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",17 +2013-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-05-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",29 +2013-05-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-05-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2013-05-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-05-01,"Vehicle Fuel Consumption","Utah","UT",19 +2013-05-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2013-05-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-05-01,"Vehicle Fuel Consumption","Missouri","MO",4 +2013-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2013-05-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-05-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-05-01,"Vehicle Fuel Consumption","South Carolina","SC",2 +2013-05-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-05-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-05-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-05-01,"Vehicle Fuel Consumption","New York","NY",282 +2013-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-05-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-05-01,"Vehicle Fuel Consumption","Texas","TX",255 +2013-05-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-05-01,"Vehicle Fuel Consumption","California","CA",1199 +2013-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2013-05-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-05-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-05-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2552 +2013-06-01,"Commercial Consumption","North Carolina","NC",2381 +2013-06-01,"Commercial Consumption","Virginia","VA",3130 +2013-06-01,"Commercial Consumption","Missouri","MO",2257 +2013-06-01,"Commercial Consumption","Massachusetts","MA",3422 +2013-06-01,"Commercial Consumption","Connecticut","CT",2098 +2013-06-01,"Commercial Consumption","New York","NY",14397 +2013-06-01,"Commercial Consumption","District of Columbia","DC",784 +2013-06-01,"Commercial Consumption","West Virginia","WV",1079 +2013-06-01,"Commercial Consumption","Utah","UT",1377 +2013-06-01,"Commercial Consumption","Wisconsin","WI",2782 +2013-06-01,"Commercial Consumption","Montana","MT",640 +2013-06-01,"Commercial Consumption","New Mexico","NM",954 +2013-06-01,"Commercial Consumption","Idaho","ID",694 +2013-06-01,"Commercial Consumption","Delaware","DE",372 +2013-06-01,"Commercial Consumption","Pennsylvania","PA",4288 +2013-06-01,"Commercial Consumption","Maine","ME",287 +2013-06-01,"Commercial Consumption","Vermont","VT",204 +2013-06-01,"Commercial Consumption","Iowa","IA",1785 +2013-06-01,"Commercial Consumption","Arkansas","AR",2384 +2013-06-01,"Commercial Consumption","Wyoming","WY",302 +2013-06-01,"Commercial Consumption","Kentucky","KY",1136 +2013-06-01,"Commercial Consumption","Texas","TX",9766 +2013-06-01,"Commercial Consumption","Ohio","OH",4464 +2013-06-01,"Commercial Consumption","Illinois","IL",7460 +2013-06-01,"Commercial Consumption","South Carolina","SC",1303 +2013-06-01,"Commercial Consumption","North Dakota","ND",333 +2013-06-01,"Commercial Consumption","South Dakota","SD",342 +2013-06-01,"Commercial Consumption","Kansas","KS",1261 +2013-06-01,"Commercial Consumption","Georgia","GA",2766 +2013-06-01,"Commercial Consumption","Tennessee","TN",2026 +2013-06-01,"Commercial Consumption","Nevada","NV",1746 +2013-06-01,"Commercial Consumption","Michigan","MI",5012 +2013-06-01,"Commercial Consumption","Washington","WA",2190 +2013-06-01,"Commercial Consumption","Colorado","CO",2057 +2013-06-01,"Commercial Consumption","Oregon","OR",1137 +2013-06-01,"Commercial Consumption","New Jersey","NJ",8816 +2013-06-01,"Commercial Consumption","New Hampshire","NH",344 +2013-06-01,"Commercial Consumption","Florida","FL",4326 +2013-06-01,"Commercial Consumption","Alaska","AK",577 +2013-06-01,"Commercial Consumption","Alabama","AL",1220 +2013-06-01,"Commercial Consumption","Nebraska","NE",1233 +2013-06-01,"Commercial Consumption","Mississippi","MS",934 +2013-06-01,"Commercial Consumption","Arizona","AZ",1925 +2013-06-01,"Commercial Consumption","Indiana","IN",2206 +2013-06-01,"Commercial Consumption","Minnesota","MN",2900 +2013-06-01,"Commercial Consumption","Oklahoma","OK",2135 +2013-06-01,"Commercial Consumption","U.S.","U.S.",136047 +2013-06-01,"Commercial Consumption","Maryland","MD",2862 +2013-06-01,"Commercial Consumption","Rhode Island","RI",213 +2013-06-01,"Commercial Consumption","Hawaii","HI",159 +2013-06-01,"Commercial Consumption","California","CA",15833 +2013-06-01,"Commercial Consumption","Louisiana","LA",1750 +2013-06-01,"Delivered to Consumers","Delaware","DE",7011 +2013-06-01,"Delivered to Consumers","Wyoming","WY",3727 +2013-06-01,"Delivered to Consumers","Montana","MT",3238 +2013-06-01,"Delivered to Consumers","Iowa","IA",17302 +2013-06-01,"Delivered to Consumers","Connecticut","CT",13827 +2013-06-01,"Delivered to Consumers","Nevada","NV",21828 +2013-06-01,"Delivered to Consumers","New Jersey","NJ",39439 +2013-06-01,"Delivered to Consumers","Indiana","IN",36362 +2013-06-01,"Delivered to Consumers","Ohio","OH",43564 +2013-06-01,"Delivered to Consumers","Michigan","MI",30649 +2013-06-01,"Delivered to Consumers","North Dakota","ND",1850 +2013-06-01,"Delivered to Consumers","Minnesota","MN",20239 +2013-06-01,"Delivered to Consumers","Florida","FL",109284 +2013-06-01,"Delivered to Consumers","U.S.","U.S.",1567216 +2013-06-01,"Delivered to Consumers","Vermont","VT",373 +2013-06-01,"Delivered to Consumers","Rhode Island","RI",5739 +2013-06-01,"Delivered to Consumers","New York","NY",73316 +2013-06-01,"Delivered to Consumers","Maryland","MD",8100 +2013-06-01,"Delivered to Consumers","Alaska","AK",4020 +2013-06-01,"Delivered to Consumers","Mississippi","MS",35866 +2013-06-01,"Delivered to Consumers","Washington","WA",15105 +2013-06-01,"Delivered to Consumers","Oklahoma","OK",45462 +2013-06-01,"Delivered to Consumers","Texas","TX",278603 +2013-06-01,"Delivered to Consumers","New Hampshire","NH",4051 +2013-06-01,"Delivered to Consumers","New Mexico","NM",10475 +2013-06-01,"Delivered to Consumers","Idaho","ID",5189 +2013-06-01,"Delivered to Consumers","Arkansas","AR",19744 +2013-06-01,"Delivered to Consumers","Nebraska","NE",8904 +2013-06-01,"Delivered to Consumers","Missouri","MO",12194 +2013-06-01,"Delivered to Consumers","Colorado","CO",19120 +2013-06-01,"Delivered to Consumers","Georgia","GA",44390 +2013-06-01,"Delivered to Consumers","Kentucky","KY",11104 +2013-06-01,"Delivered to Consumers","Pennsylvania","PA",53791 +2013-06-01,"Delivered to Consumers","California","CA",167204 +2013-06-01,"Delivered to Consumers","South Carolina","SC",18016 +2013-06-01,"Delivered to Consumers","Oregon","OR",10007 +2013-06-01,"Delivered to Consumers","District of Columbia","DC",1184 +2013-06-01,"Delivered to Consumers","Utah","UT",9597 +2013-06-01,"Delivered to Consumers","West Virginia","WV",3684 +2013-06-01,"Delivered to Consumers","Illinois","IL",40881 +2013-06-01,"Delivered to Consumers","Hawaii","HI",243 +2013-06-01,"Delivered to Consumers","Kansas","KS",15736 +2013-06-01,"Delivered to Consumers","Virginia","VA",23732 +2013-06-01,"Delivered to Consumers","Massachusetts","MA",23370 +2013-06-01,"Delivered to Consumers","Maine","ME",4585 +2013-06-01,"Delivered to Consumers","Louisiana","LA",102979 +2013-06-01,"Delivered to Consumers","Arizona","AZ",30469 +2013-06-01,"Delivered to Consumers","South Dakota","SD",4189 +2013-06-01,"Delivered to Consumers","Tennessee","TN",14364 +2013-06-01,"Delivered to Consumers","Alabama","AL",45627 +2013-06-01,"Delivered to Consumers","Wisconsin","WI",18817 +2013-06-01,"Delivered to Consumers","North Carolina","NC",28663 +2013-06-01,"Electric Power Consumption","Texas","TX",137766 +2013-06-01,"Electric Power Consumption","Utah","UT",3404 +2013-06-01,"Electric Power Consumption","Pennsylvania","PA",28672 +2013-06-01,"Electric Power Consumption","U.S.","U.S.",737150 +2013-06-01,"Electric Power Consumption","New Hampshire","NH",2935 +2013-06-01,"Electric Power Consumption","Connecticut","CT",8499 +2013-06-01,"Electric Power Consumption","New Jersey","NJ",19857 +2013-06-01,"Electric Power Consumption","Colorado","CO",8907 +2013-06-01,"Electric Power Consumption","Rhode Island","RI",4518 +2013-06-01,"Electric Power Consumption","Michigan","MI",8747 +2013-06-01,"Electric Power Consumption","Wyoming","WY",32 +2013-06-01,"Electric Power Consumption","Alaska","AK",2596 +2013-06-01,"Electric Power Consumption","New Mexico","NM",7131 +2013-06-01,"Electric Power Consumption","Arkansas","AR",10275 +2013-06-01,"Electric Power Consumption","Oklahoma","OK",26001 +2013-06-01,"Electric Power Consumption","Kansas","KS",3123 +2013-06-01,"Electric Power Consumption","Nevada","NV",17587 +2013-06-01,"Electric Power Consumption","South Dakota","SD",15 +2013-06-01,"Electric Power Consumption","Mississippi","MS",25055 +2013-06-01,"Electric Power Consumption","Delaware","DE",3866 +2013-06-01,"Electric Power Consumption","Washington","WA",4500 +2013-06-01,"Electric Power Consumption","New York","NY",42340 +2013-06-01,"Electric Power Consumption","Oregon","OR",3658 +2013-06-01,"Electric Power Consumption","Illinois","IL",3500 +2013-06-01,"Electric Power Consumption","Vermont","VT",4 +2013-06-01,"Electric Power Consumption","Nebraska","NE",422 +2013-06-01,"Electric Power Consumption","North Dakota","ND",NA +2013-06-01,"Electric Power Consumption","Arizona","AZ",25794 +2013-06-01,"Electric Power Consumption","Idaho","ID",1638 +2013-06-01,"Electric Power Consumption","Massachusetts","MA",13735 +2013-06-01,"Electric Power Consumption","West Virginia","WV",224 +2013-06-01,"Electric Power Consumption","Tennessee","TN",3014 +2013-06-01,"Electric Power Consumption","Missouri","MO",3479 +2013-06-01,"Electric Power Consumption","Indiana","IN",5644 +2013-06-01,"Electric Power Consumption","Florida","FL",97022 +2013-06-01,"Electric Power Consumption","Alabama","AL",29020 +2013-06-01,"Electric Power Consumption","Louisiana","LA",26759 +2013-06-01,"Electric Power Consumption","Minnesota","MN",2824 +2013-06-01,"Electric Power Consumption","Georgia","GA",25968 +2013-06-01,"Electric Power Consumption","California","CA",64713 +2013-06-01,"Electric Power Consumption","South Carolina","SC",9645 +2013-06-01,"Electric Power Consumption","Wisconsin","WI",4659 +2013-06-01,"Electric Power Consumption","North Carolina","NC",17294 +2013-06-01,"Electric Power Consumption","Kentucky","KY",914 +2013-06-01,"Electric Power Consumption","Ohio","OH",13380 +2013-06-01,"Electric Power Consumption","Montana","MT",683 +2013-06-01,"Electric Power Consumption","Maryland","MD",2467 +2013-06-01,"Electric Power Consumption","Virginia","VA",12379 +2013-06-01,"Electric Power Consumption","Iowa","IA",709 +2013-06-01,"Electric Power Consumption","Maine","ME",1777 +2013-06-01,"Electric Power Consumption","Hawaii","HI",NA +2013-06-01,"Industrial Consumption","Hawaii","HI",33 +2013-06-01,"Industrial Consumption","Arizona","AZ",1381 +2013-06-01,"Industrial Consumption","U.S.","U.S.",563890 +2013-06-01,"Industrial Consumption","Virginia","VA",6097 +2013-06-01,"Industrial Consumption","Kentucky","KY",8048 +2013-06-01,"Industrial Consumption","Maryland","MD",896 +2013-06-01,"Industrial Consumption","Massachusetts","MA",2900 +2013-06-01,"Industrial Consumption","Louisiana","LA",73089 +2013-06-01,"Industrial Consumption","Nevada","NV",1051 +2013-06-01,"Industrial Consumption","Mississippi","MS",9181 +2013-06-01,"Industrial Consumption","Arkansas","AR",6350 +2013-06-01,"Industrial Consumption","West Virginia","WV",1913 +2013-06-01,"Industrial Consumption","Tennessee","TN",8059 +2013-06-01,"Industrial Consumption","Minnesota","MN",11398 +2013-06-01,"Industrial Consumption","Idaho","ID",2183 +2013-06-01,"Industrial Consumption","Delaware","DE",2572 +2013-06-01,"Industrial Consumption","Oklahoma","OK",15531 +2013-06-01,"Industrial Consumption","Kansas","KS",9781 +2013-06-01,"Industrial Consumption","California","CA",62622 +2013-06-01,"Industrial Consumption","Georgia","GA",11969 +2013-06-01,"Industrial Consumption","North Dakota","ND",1271 +2013-06-01,"Industrial Consumption","Washington","WA",5977 +2013-06-01,"Industrial Consumption","Oregon","OR",4098 +2013-06-01,"Industrial Consumption","Wyoming","WY",3121 +2013-06-01,"Industrial Consumption","Wisconsin","WI",8284 +2013-06-01,"Industrial Consumption","Montana","MT",1374 +2013-06-01,"Industrial Consumption","South Dakota","SD",3567 +2013-06-01,"Industrial Consumption","New Jersey","NJ",4443 +2013-06-01,"Industrial Consumption","Florida","FL",7260 +2013-06-01,"Industrial Consumption","Connecticut","CT",1905 +2013-06-01,"Industrial Consumption","Indiana","IN",26014 +2013-06-01,"Industrial Consumption","Colorado","CO",4572 +2013-06-01,"Industrial Consumption","Ohio","OH",19837 +2013-06-01,"Industrial Consumption","New Mexico","NM",1423 +2013-06-01,"Industrial Consumption","Utah","UT",2927 +2013-06-01,"Industrial Consumption","New York","NY",5173 +2013-06-01,"Industrial Consumption","Alabama","AL",14392 +2013-06-01,"Industrial Consumption","Texas","TX",124711 +2013-06-01,"Industrial Consumption","Nebraska","NE",6262 +2013-06-01,"Industrial Consumption","New Hampshire","NH",542 +2013-06-01,"Industrial Consumption","Michigan","MI",10179 +2013-06-01,"Industrial Consumption","North Carolina","NC",8040 +2013-06-01,"Industrial Consumption","Alaska","AK",262 +2013-06-01,"Industrial Consumption","Maine","ME",2474 +2013-06-01,"Industrial Consumption","South Carolina","SC",6569 +2013-06-01,"Industrial Consumption","Vermont","VT",67 +2013-06-01,"Industrial Consumption","District of Columbia","DC",0 +2013-06-01,"Industrial Consumption","Missouri","MO",4498 +2013-06-01,"Industrial Consumption","Pennsylvania","PA",15814 +2013-06-01,"Industrial Consumption","Iowa","IA",13220 +2013-06-01,"Industrial Consumption","Illinois","IL",20043 +2013-06-01,"Industrial Consumption","Rhode Island","RI",522 +2013-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",120934 +2013-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",54767 +2013-06-01,"Residential Consumption","Mississippi","MS",694 +2013-06-01,"Residential Consumption","Connecticut","CT",1322 +2013-06-01,"Residential Consumption","Utah","UT",1872 +2013-06-01,"Residential Consumption","Nebraska","NE",982 +2013-06-01,"Residential Consumption","Nevada","NV",1395 +2013-06-01,"Residential Consumption","Florida","FL",662 +2013-06-01,"Residential Consumption","Kansas","KS",1570 +2013-06-01,"Residential Consumption","Missouri","MO",1956 +2013-06-01,"Residential Consumption","Rhode Island","RI",481 +2013-06-01,"Residential Consumption","Louisiana","LA",1377 +2013-06-01,"Residential Consumption","Michigan","MI",6684 +2013-06-01,"Residential Consumption","Montana","MT",541 +2013-06-01,"Residential Consumption","Delaware","DE",200 +2013-06-01,"Residential Consumption","Alaska","AK",585 +2013-06-01,"Residential Consumption","New York","NY",11134 +2013-06-01,"Residential Consumption","South Carolina","SC",497 +2013-06-01,"Residential Consumption","Kentucky","KY",1004 +2013-06-01,"Residential Consumption","Arizona","AZ",1227 +2013-06-01,"Residential Consumption","U.S.","U.S.",127659 +2013-06-01,"Residential Consumption","Ohio","OH",5860 +2013-06-01,"Residential Consumption","Hawaii","HI",50 +2013-06-01,"Residential Consumption","Wisconsin","WI",3085 +2013-06-01,"Residential Consumption","Maryland","MD",1859 +2013-06-01,"Residential Consumption","New Mexico","NM",954 +2013-06-01,"Residential Consumption","Maine","ME",48 +2013-06-01,"Residential Consumption","Arkansas","AR",733 +2013-06-01,"Residential Consumption","Virginia","VA",2108 +2013-06-01,"Residential Consumption","Pennsylvania","PA",4991 +2013-06-01,"Residential Consumption","Washington","WA",2404 +2013-06-01,"Residential Consumption","Oregon","OR",1102 +2013-06-01,"Residential Consumption","North Carolina","NC",942 +2013-06-01,"Residential Consumption","Iowa","IA",1586 +2013-06-01,"Residential Consumption","Minnesota","MN",3114 +2013-06-01,"Residential Consumption","North Dakota","ND",246 +2013-06-01,"Residential Consumption","Idaho","ID",663 +2013-06-01,"Residential Consumption","Colorado","CO",3562 +2013-06-01,"Residential Consumption","Wyoming","WY",270 +2013-06-01,"Residential Consumption","Illinois","IL",9853 +2013-06-01,"Residential Consumption","Vermont","VT",99 +2013-06-01,"Residential Consumption","Tennessee","TN",1259 +2013-06-01,"Residential Consumption","District of Columbia","DC",329 +2013-06-01,"Residential Consumption","Indiana","IN",2497 +2013-06-01,"Residential Consumption","New Jersey","NJ",6307 +2013-06-01,"Residential Consumption","West Virginia","WV",467 +2013-06-01,"Residential Consumption","Texas","TX",6114 +2013-06-01,"Residential Consumption","South Dakota","SD",265 +2013-06-01,"Residential Consumption","Georgia","GA",3605 +2013-06-01,"Residential Consumption","Massachusetts","MA",3256 +2013-06-01,"Residential Consumption","New Hampshire","NH",226 +2013-06-01,"Residential Consumption","Oklahoma","OK",1767 +2013-06-01,"Residential Consumption","California","CA",22876 +2013-06-01,"Residential Consumption","Alabama","AL",980 +2013-06-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-06-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2013-06-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-06-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-06-01,"Vehicle Fuel Consumption","Georgia","GA",82 +2013-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2469 +2013-06-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2013-06-01,"Vehicle Fuel Consumption","New York","NY",273 +2013-06-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",57 +2013-06-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-06-01,"Vehicle Fuel Consumption","Minnesota","MN",3 +2013-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-06-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",28 +2013-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-06-01,"Vehicle Fuel Consumption","Missouri","MO",3 +2013-06-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-06-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-06-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-06-01,"Vehicle Fuel Consumption","Utah","UT",18 +2013-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-06-01,"Vehicle Fuel Consumption","Arizona","AZ",142 +2013-06-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-06-01,"Vehicle Fuel Consumption","Texas","TX",247 +2013-06-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-06-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2013-06-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2013-06-01,"Vehicle Fuel Consumption","Washington","WA",34 +2013-06-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-06-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-06-01,"Vehicle Fuel Consumption","Florida","FL",14 +2013-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-06-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2013-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-06-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-06-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-06-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-06-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-06-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-06-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2013-06-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-06-01,"Vehicle Fuel Consumption","Colorado","CO",22 +2013-06-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-06-01,"Vehicle Fuel Consumption","California","CA",1161 +2013-07-01,"Commercial Consumption","North Carolina","NC",2613 +2013-07-01,"Commercial Consumption","Missouri","MO",2044 +2013-07-01,"Commercial Consumption","District of Columbia","DC",767 +2013-07-01,"Commercial Consumption","New Jersey","NJ",8983 +2013-07-01,"Commercial Consumption","Rhode Island","RI",195 +2013-07-01,"Commercial Consumption","Hawaii","HI",160 +2013-07-01,"Commercial Consumption","Michigan","MI",4879 +2013-07-01,"Commercial Consumption","New Hampshire","NH",257 +2013-07-01,"Commercial Consumption","California","CA",17128 +2013-07-01,"Commercial Consumption","Illinois","IL",7505 +2013-07-01,"Commercial Consumption","Colorado","CO",1455 +2013-07-01,"Commercial Consumption","Oregon","OR",936 +2013-07-01,"Commercial Consumption","Maine","ME",289 +2013-07-01,"Commercial Consumption","Connecticut","CT",2159 +2013-07-01,"Commercial Consumption","Wyoming","WY",275 +2013-07-01,"Commercial Consumption","West Virginia","WV",1255 +2013-07-01,"Commercial Consumption","Utah","UT",1552 +2013-07-01,"Commercial Consumption","New Mexico","NM",1034 +2013-07-01,"Commercial Consumption","Virginia","VA",2459 +2013-07-01,"Commercial Consumption","Maryland","MD",3007 +2013-07-01,"Commercial Consumption","Florida","FL",4542 +2013-07-01,"Commercial Consumption","Vermont","VT",238 +2013-07-01,"Commercial Consumption","Ohio","OH",4980 +2013-07-01,"Commercial Consumption","Iowa","IA",1751 +2013-07-01,"Commercial Consumption","Delaware","DE",364 +2013-07-01,"Commercial Consumption","Arizona","AZ",1791 +2013-07-01,"Commercial Consumption","Nevada","NV",1655 +2013-07-01,"Commercial Consumption","Louisiana","LA",1722 +2013-07-01,"Commercial Consumption","South Carolina","SC",1187 +2013-07-01,"Commercial Consumption","Oklahoma","OK",1567 +2013-07-01,"Commercial Consumption","U.S.","U.S.",135057 +2013-07-01,"Commercial Consumption","Georgia","GA",2851 +2013-07-01,"Commercial Consumption","Idaho","ID",642 +2013-07-01,"Commercial Consumption","Arkansas","AR",2398 +2013-07-01,"Commercial Consumption","Alabama","AL",1081 +2013-07-01,"Commercial Consumption","Tennessee","TN",2077 +2013-07-01,"Commercial Consumption","Washington","WA",2159 +2013-07-01,"Commercial Consumption","Wisconsin","WI",2745 +2013-07-01,"Commercial Consumption","Nebraska","NE",1484 +2013-07-01,"Commercial Consumption","Indiana","IN",2288 +2013-07-01,"Commercial Consumption","North Dakota","ND",296 +2013-07-01,"Commercial Consumption","Minnesota","MN",2613 +2013-07-01,"Commercial Consumption","Pennsylvania","PA",4241 +2013-07-01,"Commercial Consumption","Massachusetts","MA",2537 +2013-07-01,"Commercial Consumption","South Dakota","SD",300 +2013-07-01,"Commercial Consumption","Montana","MT",562 +2013-07-01,"Commercial Consumption","Kentucky","KY",1298 +2013-07-01,"Commercial Consumption","Texas","TX",9760 +2013-07-01,"Commercial Consumption","Kansas","KS",1290 +2013-07-01,"Commercial Consumption","Alaska","AK",562 +2013-07-01,"Commercial Consumption","New York","NY",14259 +2013-07-01,"Commercial Consumption","Mississippi","MS",868 +2013-07-01,"Delivered to Consumers","South Dakota","SD",4733 +2013-07-01,"Delivered to Consumers","Rhode Island","RI",7187 +2013-07-01,"Delivered to Consumers","Maine","ME",5113 +2013-07-01,"Delivered to Consumers","Washington","WA",19525 +2013-07-01,"Delivered to Consumers","Minnesota","MN",21412 +2013-07-01,"Delivered to Consumers","District of Columbia","DC",1121 +2013-07-01,"Delivered to Consumers","U.S.","U.S.",1738157 +2013-07-01,"Delivered to Consumers","New Mexico","NM",11265 +2013-07-01,"Delivered to Consumers","Delaware","DE",8202 +2013-07-01,"Delivered to Consumers","Montana","MT",3441 +2013-07-01,"Delivered to Consumers","Oklahoma","OK",47225 +2013-07-01,"Delivered to Consumers","Arkansas","AR",19960 +2013-07-01,"Delivered to Consumers","Nebraska","NE",11758 +2013-07-01,"Delivered to Consumers","Massachusetts","MA",31202 +2013-07-01,"Delivered to Consumers","West Virginia","WV",4333 +2013-07-01,"Delivered to Consumers","Alaska","AK",4068 +2013-07-01,"Delivered to Consumers","Tennessee","TN",15636 +2013-07-01,"Delivered to Consumers","Iowa","IA",17637 +2013-07-01,"Delivered to Consumers","Virginia","VA",31643 +2013-07-01,"Delivered to Consumers","California","CA",190260 +2013-07-01,"Delivered to Consumers","Louisiana","LA",109103 +2013-07-01,"Delivered to Consumers","Illinois","IL",46112 +2013-07-01,"Delivered to Consumers","Maryland","MD",11016 +2013-07-01,"Delivered to Consumers","Kansas","KS",17111 +2013-07-01,"Delivered to Consumers","Ohio","OH",46440 +2013-07-01,"Delivered to Consumers","Michigan","MI",34854 +2013-07-01,"Delivered to Consumers","Alabama","AL",46813 +2013-07-01,"Delivered to Consumers","New Hampshire","NH",5002 +2013-07-01,"Delivered to Consumers","Utah","UT",11503 +2013-07-01,"Delivered to Consumers","Indiana","IN",42050 +2013-07-01,"Delivered to Consumers","Wisconsin","WI",20899 +2013-07-01,"Delivered to Consumers","Pennsylvania","PA",60954 +2013-07-01,"Delivered to Consumers","Mississippi","MS",35654 +2013-07-01,"Delivered to Consumers","Missouri","MO",12891 +2013-07-01,"Delivered to Consumers","Texas","TX",296074 +2013-07-01,"Delivered to Consumers","Oregon","OR",14566 +2013-07-01,"Delivered to Consumers","New Jersey","NJ",47810 +2013-07-01,"Delivered to Consumers","Florida","FL",109648 +2013-07-01,"Delivered to Consumers","Wyoming","WY",4310 +2013-07-01,"Delivered to Consumers","Idaho","ID",5995 +2013-07-01,"Delivered to Consumers","Connecticut","CT",16537 +2013-07-01,"Delivered to Consumers","North Carolina","NC",31638 +2013-07-01,"Delivered to Consumers","Colorado","CO",19021 +2013-07-01,"Delivered to Consumers","South Carolina","SC",20097 +2013-07-01,"Delivered to Consumers","Nevada","NV",25268 +2013-07-01,"Delivered to Consumers","Vermont","VT",390 +2013-07-01,"Delivered to Consumers","New York","NY",92722 +2013-07-01,"Delivered to Consumers","Hawaii","HI",238 +2013-07-01,"Delivered to Consumers","Georgia","GA",43617 +2013-07-01,"Delivered to Consumers","North Dakota","ND",1753 +2013-07-01,"Delivered to Consumers","Kentucky","KY",12729 +2013-07-01,"Delivered to Consumers","Arizona","AZ",39622 +2013-07-01,"Electric Power Consumption","New Jersey","NJ",29210 +2013-07-01,"Electric Power Consumption","Idaho","ID",2925 +2013-07-01,"Electric Power Consumption","Oklahoma","OK",29414 +2013-07-01,"Electric Power Consumption","Minnesota","MN",6097 +2013-07-01,"Electric Power Consumption","Nevada","NV",21341 +2013-07-01,"Electric Power Consumption","New Hampshire","NH",4140 +2013-07-01,"Electric Power Consumption","Indiana","IN",9046 +2013-07-01,"Electric Power Consumption","Connecticut","CT",11365 +2013-07-01,"Electric Power Consumption","Florida","FL",97085 +2013-07-01,"Electric Power Consumption","California","CA",82592 +2013-07-01,"Electric Power Consumption","Rhode Island","RI",5987 +2013-07-01,"Electric Power Consumption","Massachusetts","MA",22960 +2013-07-01,"Electric Power Consumption","Tennessee","TN",3935 +2013-07-01,"Electric Power Consumption","Mississippi","MS",25246 +2013-07-01,"Electric Power Consumption","Hawaii","HI",NA +2013-07-01,"Electric Power Consumption","Arizona","AZ",35134 +2013-07-01,"Electric Power Consumption","Alaska","AK",2711 +2013-07-01,"Electric Power Consumption","North Dakota","ND",NA +2013-07-01,"Electric Power Consumption","Montana","MT",1199 +2013-07-01,"Electric Power Consumption","Maryland","MD",5136 +2013-07-01,"Electric Power Consumption","Virginia","VA",21586 +2013-07-01,"Electric Power Consumption","Texas","TX",152173 +2013-07-01,"Electric Power Consumption","Wisconsin","WI",7198 +2013-07-01,"Electric Power Consumption","Iowa","IA",2068 +2013-07-01,"Electric Power Consumption","Nebraska","NE",1108 +2013-07-01,"Electric Power Consumption","Maine","ME",2183 +2013-07-01,"Electric Power Consumption","Kentucky","KY",2722 +2013-07-01,"Electric Power Consumption","New Mexico","NM",8004 +2013-07-01,"Electric Power Consumption","Louisiana","LA",30245 +2013-07-01,"Electric Power Consumption","Colorado","CO",10307 +2013-07-01,"Electric Power Consumption","New York","NY",63375 +2013-07-01,"Electric Power Consumption","Illinois","IL",10337 +2013-07-01,"Electric Power Consumption","Wyoming","WY",41 +2013-07-01,"Electric Power Consumption","U.S.","U.S.",911124 +2013-07-01,"Electric Power Consumption","South Dakota","SD",787 +2013-07-01,"Electric Power Consumption","North Carolina","NC",19699 +2013-07-01,"Electric Power Consumption","Delaware","DE",5173 +2013-07-01,"Electric Power Consumption","Georgia","GA",24801 +2013-07-01,"Electric Power Consumption","Oregon","OR",8602 +2013-07-01,"Electric Power Consumption","Kansas","KS",3042 +2013-07-01,"Electric Power Consumption","West Virginia","WV",846 +2013-07-01,"Electric Power Consumption","Pennsylvania","PA",38195 +2013-07-01,"Electric Power Consumption","Missouri","MO",4529 +2013-07-01,"Electric Power Consumption","Alabama","AL",30428 +2013-07-01,"Electric Power Consumption","Utah","UT",5075 +2013-07-01,"Electric Power Consumption","Washington","WA",9611 +2013-07-01,"Electric Power Consumption","Arkansas","AR",10385 +2013-07-01,"Electric Power Consumption","South Carolina","SC",11835 +2013-07-01,"Electric Power Consumption","Michigan","MI",13556 +2013-07-01,"Electric Power Consumption","Vermont","VT",3 +2013-07-01,"Electric Power Consumption","Ohio","OH",17687 +2013-07-01,"Industrial Consumption","Montana","MT",1321 +2013-07-01,"Industrial Consumption","South Dakota","SD",3416 +2013-07-01,"Industrial Consumption","Utah","UT",2699 +2013-07-01,"Industrial Consumption","U.S.","U.S.",577915 +2013-07-01,"Industrial Consumption","Mississippi","MS",8941 +2013-07-01,"Industrial Consumption","Nebraska","NE",8230 +2013-07-01,"Industrial Consumption","Virginia","VA",6140 +2013-07-01,"Industrial Consumption","Vermont","VT",67 +2013-07-01,"Industrial Consumption","Wisconsin","WI",8406 +2013-07-01,"Industrial Consumption","Minnesota","MN",10520 +2013-07-01,"Industrial Consumption","Florida","FL",7287 +2013-07-01,"Industrial Consumption","Missouri","MO",3783 +2013-07-01,"Industrial Consumption","Pennsylvania","PA",14474 +2013-07-01,"Industrial Consumption","Oregon","OR",4097 +2013-07-01,"Industrial Consumption","Texas","TX",128004 +2013-07-01,"Industrial Consumption","New Jersey","NJ",4513 +2013-07-01,"Industrial Consumption","Connecticut","CT",2040 +2013-07-01,"Industrial Consumption","Oklahoma","OK",14952 +2013-07-01,"Industrial Consumption","Louisiana","LA",75863 +2013-07-01,"Industrial Consumption","Colorado","CO",4627 +2013-07-01,"Industrial Consumption","Ohio","OH",18766 +2013-07-01,"Industrial Consumption","New Mexico","NM",1415 +2013-07-01,"Industrial Consumption","Arizona","AZ",1496 +2013-07-01,"Industrial Consumption","New York","NY",5349 +2013-07-01,"Industrial Consumption","West Virginia","WV",1900 +2013-07-01,"Industrial Consumption","Tennessee","TN",8510 +2013-07-01,"Industrial Consumption","Kansas","KS",11486 +2013-07-01,"Industrial Consumption","Alabama","AL",14573 +2013-07-01,"Industrial Consumption","Michigan","MI",10181 +2013-07-01,"Industrial Consumption","Indiana","IN",28284 +2013-07-01,"Industrial Consumption","North Dakota","ND",1271 +2013-07-01,"Industrial Consumption","Massachusetts","MA",2748 +2013-07-01,"Industrial Consumption","Idaho","ID",1935 +2013-07-01,"Industrial Consumption","North Carolina","NC",8200 +2013-07-01,"Industrial Consumption","Georgia","GA",12346 +2013-07-01,"Industrial Consumption","Washington","WA",5991 +2013-07-01,"Industrial Consumption","Delaware","DE",2513 +2013-07-01,"Industrial Consumption","Alaska","AK",297 +2013-07-01,"Industrial Consumption","California","CA",68447 +2013-07-01,"Industrial Consumption","South Carolina","SC",6634 +2013-07-01,"Industrial Consumption","Wyoming","WY",3770 +2013-07-01,"Industrial Consumption","New Hampshire","NH",464 +2013-07-01,"Industrial Consumption","Iowa","IA",12592 +2013-07-01,"Industrial Consumption","Kentucky","KY",7767 +2013-07-01,"Industrial Consumption","Maryland","MD",1117 +2013-07-01,"Industrial Consumption","Hawaii","HI",30 +2013-07-01,"Industrial Consumption","Nevada","NV",1008 +2013-07-01,"Industrial Consumption","Maine","ME",2604 +2013-07-01,"Industrial Consumption","Arkansas","AR",6562 +2013-07-01,"Industrial Consumption","Illinois","IL",19651 +2013-07-01,"Industrial Consumption","Rhode Island","RI",625 +2013-07-01,"Industrial Consumption","District of Columbia","DC",0 +2013-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",127432 +2013-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",60741 +2013-07-01,"Residential Consumption","Ohio","OH",4983 +2013-07-01,"Residential Consumption","Hawaii","HI",47 +2013-07-01,"Residential Consumption","Connecticut","CT",970 +2013-07-01,"Residential Consumption","Tennessee","TN",1107 +2013-07-01,"Residential Consumption","New Mexico","NM",798 +2013-07-01,"Residential Consumption","Idaho","ID",481 +2013-07-01,"Residential Consumption","New Hampshire","NH",136 +2013-07-01,"Residential Consumption","Alaska","AK",497 +2013-07-01,"Residential Consumption","Wyoming","WY",222 +2013-07-01,"Residential Consumption","Iowa","IA",1225 +2013-07-01,"Residential Consumption","Vermont","VT",81 +2013-07-01,"Residential Consumption","Virginia","VA",1440 +2013-07-01,"Residential Consumption","Nevada","NV",1212 +2013-07-01,"Residential Consumption","Georgia","GA",3534 +2013-07-01,"Residential Consumption","District of Columbia","DC",281 +2013-07-01,"Residential Consumption","Maine","ME",37 +2013-07-01,"Residential Consumption","Massachusetts","MA",2897 +2013-07-01,"Residential Consumption","Washington","WA",1728 +2013-07-01,"Residential Consumption","Illinois","IL",8595 +2013-07-01,"Residential Consumption","North Carolina","NC",1119 +2013-07-01,"Residential Consumption","Maryland","MD",1739 +2013-07-01,"Residential Consumption","Pennsylvania","PA",4018 +2013-07-01,"Residential Consumption","Florida","FL",719 +2013-07-01,"Residential Consumption","Arkansas","AR",612 +2013-07-01,"Residential Consumption","Delaware","DE",152 +2013-07-01,"Residential Consumption","New York","NY",9459 +2013-07-01,"Residential Consumption","Louisiana","LA",1269 +2013-07-01,"Residential Consumption","Kansas","KS",1292 +2013-07-01,"Residential Consumption","Oklahoma","OK",1263 +2013-07-01,"Residential Consumption","California","CA",20894 +2013-07-01,"Residential Consumption","Alabama","AL",715 +2013-07-01,"Residential Consumption","Texas","TX",5883 +2013-07-01,"Residential Consumption","Rhode Island","RI",375 +2013-07-01,"Residential Consumption","Mississippi","MS",597 +2013-07-01,"Residential Consumption","Wisconsin","WI",2541 +2013-07-01,"Residential Consumption","Minnesota","MN",2177 +2013-07-01,"Residential Consumption","West Virginia","WV",331 +2013-07-01,"Residential Consumption","Utah","UT",2159 +2013-07-01,"Residential Consumption","Michigan","MI",6208 +2013-07-01,"Residential Consumption","Missouri","MO",2531 +2013-07-01,"Residential Consumption","Oregon","OR",919 +2013-07-01,"Residential Consumption","Indiana","IN",2430 +2013-07-01,"Residential Consumption","Colorado","CO",2610 +2013-07-01,"Residential Consumption","Arizona","AZ",1053 +2013-07-01,"Residential Consumption","U.S.","U.S.",111509 +2013-07-01,"Residential Consumption","South Carolina","SC",440 +2013-07-01,"Residential Consumption","Nebraska","NE",930 +2013-07-01,"Residential Consumption","South Dakota","SD",230 +2013-07-01,"Residential Consumption","North Dakota","ND",186 +2013-07-01,"Residential Consumption","New Jersey","NJ",5088 +2013-07-01,"Residential Consumption","Montana","MT",359 +2013-07-01,"Residential Consumption","Kentucky","KY",941 +2013-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-07-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-07-01,"Vehicle Fuel Consumption","New York","NY",282 +2013-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",29 +2013-07-01,"Vehicle Fuel Consumption","Nevada","NV",51 +2013-07-01,"Vehicle Fuel Consumption","Missouri","MO",4 +2013-07-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-07-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2013-07-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-07-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-07-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2013-07-01,"Vehicle Fuel Consumption","Texas","TX",255 +2013-07-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-07-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-07-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-07-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2013-07-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2013-07-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-07-01,"Vehicle Fuel Consumption","Georgia","GA",85 +2013-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-07-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-07-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-07-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2552 +2013-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-07-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",17 +2013-07-01,"Vehicle Fuel Consumption","California","CA",1199 +2013-07-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-07-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-07-01,"Vehicle Fuel Consumption","Arizona","AZ",147 +2013-07-01,"Vehicle Fuel Consumption","Florida","FL",15 +2013-07-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-07-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-07-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-07-01,"Vehicle Fuel Consumption","Minnesota","MN",4 +2013-07-01,"Vehicle Fuel Consumption","South Carolina","SC",2 +2013-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-07-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-07-01,"Vehicle Fuel Consumption","Washington","WA",36 +2013-07-01,"Vehicle Fuel Consumption","Utah","UT",19 +2013-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-07-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-07-01,"Vehicle Fuel Consumption","Michigan","MI",29 +2013-08-01,"Commercial Consumption","California","CA",17774 +2013-08-01,"Commercial Consumption","Mississippi","MS",899 +2013-08-01,"Commercial Consumption","New Mexico","NM",1100 +2013-08-01,"Commercial Consumption","Oklahoma","OK",1490 +2013-08-01,"Commercial Consumption","Virginia","VA",2389 +2013-08-01,"Commercial Consumption","Massachusetts","MA",3109 +2013-08-01,"Commercial Consumption","Vermont","VT",262 +2013-08-01,"Commercial Consumption","Indiana","IN",2391 +2013-08-01,"Commercial Consumption","Wisconsin","WI",2864 +2013-08-01,"Commercial Consumption","Alaska","AK",668 +2013-08-01,"Commercial Consumption","Louisiana","LA",1814 +2013-08-01,"Commercial Consumption","Wyoming","WY",292 +2013-08-01,"Commercial Consumption","South Carolina","SC",1311 +2013-08-01,"Commercial Consumption","Oregon","OR",947 +2013-08-01,"Commercial Consumption","New Jersey","NJ",9094 +2013-08-01,"Commercial Consumption","Kentucky","KY",1154 +2013-08-01,"Commercial Consumption","U.S.","U.S.",137019 +2013-08-01,"Commercial Consumption","Georgia","GA",2850 +2013-08-01,"Commercial Consumption","Florida","FL",4283 +2013-08-01,"Commercial Consumption","Idaho","ID",641 +2013-08-01,"Commercial Consumption","Nevada","NV",1668 +2013-08-01,"Commercial Consumption","West Virginia","WV",991 +2013-08-01,"Commercial Consumption","North Dakota","ND",289 +2013-08-01,"Commercial Consumption","Minnesota","MN",2615 +2013-08-01,"Commercial Consumption","Pennsylvania","PA",4589 +2013-08-01,"Commercial Consumption","Missouri","MO",2243 +2013-08-01,"Commercial Consumption","New Hampshire","NH",290 +2013-08-01,"Commercial Consumption","Ohio","OH",4518 +2013-08-01,"Commercial Consumption","Arizona","AZ",1795 +2013-08-01,"Commercial Consumption","North Carolina","NC",2611 +2013-08-01,"Commercial Consumption","Utah","UT",1057 +2013-08-01,"Commercial Consumption","South Dakota","SD",328 +2013-08-01,"Commercial Consumption","Maine","ME",282 +2013-08-01,"Commercial Consumption","Hawaii","HI",160 +2013-08-01,"Commercial Consumption","New York","NY",14178 +2013-08-01,"Commercial Consumption","Nebraska","NE",875 +2013-08-01,"Commercial Consumption","Michigan","MI",5374 +2013-08-01,"Commercial Consumption","Colorado","CO",1429 +2013-08-01,"Commercial Consumption","Kansas","KS",1169 +2013-08-01,"Commercial Consumption","Connecticut","CT",2059 +2013-08-01,"Commercial Consumption","Alabama","AL",1170 +2013-08-01,"Commercial Consumption","Illinois","IL",7700 +2013-08-01,"Commercial Consumption","District of Columbia","DC",760 +2013-08-01,"Commercial Consumption","Washington","WA",3111 +2013-08-01,"Commercial Consumption","Montana","MT",555 +2013-08-01,"Commercial Consumption","Texas","TX",9603 +2013-08-01,"Commercial Consumption","Maryland","MD",3263 +2013-08-01,"Commercial Consumption","Rhode Island","RI",298 +2013-08-01,"Commercial Consumption","Iowa","IA",1740 +2013-08-01,"Commercial Consumption","Arkansas","AR",2510 +2013-08-01,"Commercial Consumption","Delaware","DE",405 +2013-08-01,"Commercial Consumption","Tennessee","TN",2050 +2013-08-01,"Delivered to Consumers","Delaware","DE",7363 +2013-08-01,"Delivered to Consumers","Wyoming","WY",4300 +2013-08-01,"Delivered to Consumers","Maryland","MD",7379 +2013-08-01,"Delivered to Consumers","Oklahoma","OK",47565 +2013-08-01,"Delivered to Consumers","Connecticut","CT",14765 +2013-08-01,"Delivered to Consumers","Wisconsin","WI",21276 +2013-08-01,"Delivered to Consumers","Massachusetts","MA",28467 +2013-08-01,"Delivered to Consumers","Nevada","NV",23214 +2013-08-01,"Delivered to Consumers","Utah","UT",10318 +2013-08-01,"Delivered to Consumers","Rhode Island","RI",6699 +2013-08-01,"Delivered to Consumers","Tennessee","TN",14911 +2013-08-01,"Delivered to Consumers","North Carolina","NC",31729 +2013-08-01,"Delivered to Consumers","Missouri","MO",12081 +2013-08-01,"Delivered to Consumers","West Virginia","WV",3544 +2013-08-01,"Delivered to Consumers","Kansas","KS",14566 +2013-08-01,"Delivered to Consumers","Idaho","ID",6180 +2013-08-01,"Delivered to Consumers","Ohio","OH",44628 +2013-08-01,"Delivered to Consumers","U.S.","U.S.",1739436 +2013-08-01,"Delivered to Consumers","Alaska","AK",4217 +2013-08-01,"Delivered to Consumers","California","CA",195058 +2013-08-01,"Delivered to Consumers","Washington","WA",23923 +2013-08-01,"Delivered to Consumers","Indiana","IN",40542 +2013-08-01,"Delivered to Consumers","Vermont","VT",410 +2013-08-01,"Delivered to Consumers","South Dakota","SD",4827 +2013-08-01,"Delivered to Consumers","Iowa","IA",17200 +2013-08-01,"Delivered to Consumers","Virginia","VA",30168 +2013-08-01,"Delivered to Consumers","Colorado","CO",18403 +2013-08-01,"Delivered to Consumers","Texas","TX",318113 +2013-08-01,"Delivered to Consumers","South Carolina","SC",19222 +2013-08-01,"Delivered to Consumers","Oregon","OR",17134 +2013-08-01,"Delivered to Consumers","Georgia","GA",46916 +2013-08-01,"Delivered to Consumers","Minnesota","MN",21919 +2013-08-01,"Delivered to Consumers","Florida","FL",119374 +2013-08-01,"Delivered to Consumers","District of Columbia","DC",1087 +2013-08-01,"Delivered to Consumers","Illinois","IL",43063 +2013-08-01,"Delivered to Consumers","Montana","MT",2758 +2013-08-01,"Delivered to Consumers","Hawaii","HI",246 +2013-08-01,"Delivered to Consumers","Kentucky","KY",11900 +2013-08-01,"Delivered to Consumers","Arkansas","AR",19600 +2013-08-01,"Delivered to Consumers","Alabama","AL",49805 +2013-08-01,"Delivered to Consumers","New Jersey","NJ",40515 +2013-08-01,"Delivered to Consumers","New Hampshire","NH",4579 +2013-08-01,"Delivered to Consumers","Michigan","MI",33322 +2013-08-01,"Delivered to Consumers","Pennsylvania","PA",60837 +2013-08-01,"Delivered to Consumers","Nebraska","NE",10938 +2013-08-01,"Delivered to Consumers","Mississippi","MS",37679 +2013-08-01,"Delivered to Consumers","Maine","ME",4449 +2013-08-01,"Delivered to Consumers","Louisiana","LA",113705 +2013-08-01,"Delivered to Consumers","New Mexico","NM",12227 +2013-08-01,"Delivered to Consumers","New York","NY",73825 +2013-08-01,"Delivered to Consumers","Arizona","AZ",39704 +2013-08-01,"Delivered to Consumers","North Dakota","ND",2782 +2013-08-01,"Electric Power Consumption","Colorado","CO",9660 +2013-08-01,"Electric Power Consumption","Arkansas","AR",9958 +2013-08-01,"Electric Power Consumption","Vermont","VT",3 +2013-08-01,"Electric Power Consumption","U.S.","U.S.",900530 +2013-08-01,"Electric Power Consumption","South Dakota","SD",831 +2013-08-01,"Electric Power Consumption","Delaware","DE",4340 +2013-08-01,"Electric Power Consumption","Louisiana","LA",31467 +2013-08-01,"Electric Power Consumption","Idaho","ID",3246 +2013-08-01,"Electric Power Consumption","Oklahoma","OK",30972 +2013-08-01,"Electric Power Consumption","Pennsylvania","PA",35879 +2013-08-01,"Electric Power Consumption","Wyoming","WY",35 +2013-08-01,"Electric Power Consumption","Iowa","IA",1814 +2013-08-01,"Electric Power Consumption","New Hampshire","NH",3638 +2013-08-01,"Electric Power Consumption","North Dakota","ND",NA +2013-08-01,"Electric Power Consumption","California","CA",83179 +2013-08-01,"Electric Power Consumption","Alabama","AL",33105 +2013-08-01,"Electric Power Consumption","New Mexico","NM",8772 +2013-08-01,"Electric Power Consumption","Oregon","OR",11092 +2013-08-01,"Electric Power Consumption","Nevada","NV",19347 +2013-08-01,"Electric Power Consumption","Nebraska","NE",1263 +2013-08-01,"Electric Power Consumption","Mississippi","MS",26727 +2013-08-01,"Electric Power Consumption","Maryland","MD",1663 +2013-08-01,"Electric Power Consumption","Virginia","VA",20036 +2013-08-01,"Electric Power Consumption","New York","NY",44786 +2013-08-01,"Electric Power Consumption","Utah","UT",5106 +2013-08-01,"Electric Power Consumption","Wisconsin","WI",7374 +2013-08-01,"Electric Power Consumption","Connecticut","CT",9792 +2013-08-01,"Electric Power Consumption","Florida","FL",106623 +2013-08-01,"Electric Power Consumption","Washington","WA",12810 +2013-08-01,"Electric Power Consumption","Illinois","IL",6893 +2013-08-01,"Electric Power Consumption","Kansas","KS",2759 +2013-08-01,"Electric Power Consumption","Tennessee","TN",3718 +2013-08-01,"Electric Power Consumption","Missouri","MO",3611 +2013-08-01,"Electric Power Consumption","Hawaii","HI",NA +2013-08-01,"Electric Power Consumption","Indiana","IN",8663 +2013-08-01,"Electric Power Consumption","Texas","TX",172570 +2013-08-01,"Electric Power Consumption","Michigan","MI",11423 +2013-08-01,"Electric Power Consumption","North Carolina","NC",19566 +2013-08-01,"Electric Power Consumption","Maine","ME",1629 +2013-08-01,"Electric Power Consumption","New Jersey","NJ",22081 +2013-08-01,"Electric Power Consumption","Minnesota","MN",5642 +2013-08-01,"Electric Power Consumption","Kentucky","KY",1168 +2013-08-01,"Electric Power Consumption","Ohio","OH",15342 +2013-08-01,"Electric Power Consumption","Montana","MT",499 +2013-08-01,"Electric Power Consumption","Alaska","AK",2589 +2013-08-01,"Electric Power Consumption","South Carolina","SC",10638 +2013-08-01,"Electric Power Consumption","Rhode Island","RI",5306 +2013-08-01,"Electric Power Consumption","Massachusetts","MA",19547 +2013-08-01,"Electric Power Consumption","West Virginia","WV",240 +2013-08-01,"Electric Power Consumption","Arizona","AZ",35254 +2013-08-01,"Electric Power Consumption","Georgia","GA",27881 +2013-08-01,"Industrial Consumption","Montana","MT",1363 +2013-08-01,"Industrial Consumption","Ohio","OH",19854 +2013-08-01,"Industrial Consumption","Oregon","OR",4223 +2013-08-01,"Industrial Consumption","New York","NY",5395 +2013-08-01,"Industrial Consumption","Arkansas","AR",6517 +2013-08-01,"Industrial Consumption","South Carolina","SC",6785 +2013-08-01,"Industrial Consumption","New Jersey","NJ",4664 +2013-08-01,"Industrial Consumption","Idaho","ID",1851 +2013-08-01,"Industrial Consumption","Florida","FL",7727 +2013-08-01,"Industrial Consumption","Maryland","MD",775 +2013-08-01,"Industrial Consumption","Oklahoma","OK",13917 +2013-08-01,"Industrial Consumption","Nevada","NV",1043 +2013-08-01,"Industrial Consumption","Maine","ME",2504 +2013-08-01,"Industrial Consumption","Virginia","VA",6380 +2013-08-01,"Industrial Consumption","Michigan","MI",10487 +2013-08-01,"Industrial Consumption","North Dakota","ND",2326 +2013-08-01,"Industrial Consumption","Louisiana","LA",79164 +2013-08-01,"Industrial Consumption","Pennsylvania","PA",16284 +2013-08-01,"Industrial Consumption","West Virginia","WV",1951 +2013-08-01,"Industrial Consumption","Wisconsin","WI",8615 +2013-08-01,"Industrial Consumption","Rhode Island","RI",687 +2013-08-01,"Industrial Consumption","Massachusetts","MA",2660 +2013-08-01,"Industrial Consumption","Missouri","MO",4441 +2013-08-01,"Industrial Consumption","Colorado","CO",4697 +2013-08-01,"Industrial Consumption","New Mexico","NM",1407 +2013-08-01,"Industrial Consumption","Utah","UT",2699 +2013-08-01,"Industrial Consumption","California","CA",71691 +2013-08-01,"Industrial Consumption","Iowa","IA",12551 +2013-08-01,"Industrial Consumption","Illinois","IL",19963 +2013-08-01,"Industrial Consumption","North Carolina","NC",8535 +2013-08-01,"Industrial Consumption","District of Columbia","DC",0 +2013-08-01,"Industrial Consumption","Alaska","AK",370 +2013-08-01,"Industrial Consumption","Hawaii","HI",38 +2013-08-01,"Industrial Consumption","Washington","WA",6055 +2013-08-01,"Industrial Consumption","Kansas","KS",9507 +2013-08-01,"Industrial Consumption","Wyoming","WY",3754 +2013-08-01,"Industrial Consumption","New Hampshire","NH",491 +2013-08-01,"Industrial Consumption","Kentucky","KY",8721 +2013-08-01,"Industrial Consumption","Indiana","IN",27194 +2013-08-01,"Industrial Consumption","South Dakota","SD",3447 +2013-08-01,"Industrial Consumption","Mississippi","MS",9490 +2013-08-01,"Industrial Consumption","Nebraska","NE",8250 +2013-08-01,"Industrial Consumption","Connecticut","CT",1981 +2013-08-01,"Industrial Consumption","Georgia","GA",12534 +2013-08-01,"Industrial Consumption","Alabama","AL",14745 +2013-08-01,"Industrial Consumption","Minnesota","MN",11444 +2013-08-01,"Industrial Consumption","Arizona","AZ",1477 +2013-08-01,"Industrial Consumption","U.S.","U.S.",591603 +2013-08-01,"Industrial Consumption","Texas","TX",130405 +2013-08-01,"Industrial Consumption","Vermont","VT",71 +2013-08-01,"Industrial Consumption","Tennessee","TN",8020 +2013-08-01,"Industrial Consumption","Delaware","DE",2457 +2013-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",127158 +2013-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",60785 +2013-08-01,"Residential Consumption","Rhode Island","RI",402 +2013-08-01,"Residential Consumption","Louisiana","LA",1256 +2013-08-01,"Residential Consumption","Wisconsin","WI",2415 +2013-08-01,"Residential Consumption","Virginia","VA",1346 +2013-08-01,"Residential Consumption","Nebraska","NE",546 +2013-08-01,"Residential Consumption","Michigan","MI",6008 +2013-08-01,"Residential Consumption","Delaware","DE",160 +2013-08-01,"Residential Consumption","Texas","TX",5280 +2013-08-01,"Residential Consumption","Connecticut","CT",930 +2013-08-01,"Residential Consumption","South Dakota","SD",221 +2013-08-01,"Residential Consumption","New Mexico","NM",935 +2013-08-01,"Residential Consumption","Indiana","IN",2292 +2013-08-01,"Residential Consumption","Massachusetts","MA",3093 +2013-08-01,"Residential Consumption","New Hampshire","NH",155 +2013-08-01,"Residential Consumption","Alaska","AK",590 +2013-08-01,"Residential Consumption","Wyoming","WY",217 +2013-08-01,"Residential Consumption","Ohio","OH",4889 +2013-08-01,"Residential Consumption","Hawaii","HI",47 +2013-08-01,"Residential Consumption","Utah","UT",1437 +2013-08-01,"Residential Consumption","Idaho","ID",431 +2013-08-01,"Residential Consumption","New Jersey","NJ",4660 +2013-08-01,"Residential Consumption","Kansas","KS",1131 +2013-08-01,"Residential Consumption","Missouri","MO",1784 +2013-08-01,"Residential Consumption","Florida","FL",727 +2013-08-01,"Residential Consumption","Arizona","AZ",1032 +2013-08-01,"Residential Consumption","Alabama","AL",770 +2013-08-01,"Residential Consumption","West Virginia","WV",362 +2013-08-01,"Residential Consumption","Oregon","OR",859 +2013-08-01,"Residential Consumption","North Carolina","NC",1011 +2013-08-01,"Residential Consumption","Mississippi","MS",562 +2013-08-01,"Residential Consumption","Minnesota","MN",2214 +2013-08-01,"Residential Consumption","District of Columbia","DC",254 +2013-08-01,"Residential Consumption","North Dakota","ND",167 +2013-08-01,"Residential Consumption","Washington","WA",1912 +2013-08-01,"Residential Consumption","U.S.","U.S.",107731 +2013-08-01,"Residential Consumption","Maryland","MD",1660 +2013-08-01,"Residential Consumption","Maine","ME",34 +2013-08-01,"Residential Consumption","Arkansas","AR",613 +2013-08-01,"Residential Consumption","Colorado","CO",2595 +2013-08-01,"Residential Consumption","Illinois","IL",8483 +2013-08-01,"Residential Consumption","Vermont","VT",74 +2013-08-01,"Residential Consumption","Tennessee","TN",1115 +2013-08-01,"Residential Consumption","Georgia","GA",3566 +2013-08-01,"Residential Consumption","South Carolina","SC",487 +2013-08-01,"Residential Consumption","Iowa","IA",1093 +2013-08-01,"Residential Consumption","Nevada","NV",1106 +2013-08-01,"Residential Consumption","Pennsylvania","PA",4059 +2013-08-01,"Residential Consumption","Montana","MT",341 +2013-08-01,"Residential Consumption","Kentucky","KY",856 +2013-08-01,"Residential Consumption","Oklahoma","OK",1157 +2013-08-01,"Residential Consumption","California","CA",21214 +2013-08-01,"Residential Consumption","New York","NY",9185 +2013-08-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2013-08-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-08-01,"Vehicle Fuel Consumption","Arizona","AZ",147 +2013-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",17 +2013-08-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-08-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-08-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-08-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-08-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-08-01,"Vehicle Fuel Consumption","Michigan","MI",29 +2013-08-01,"Vehicle Fuel Consumption","Georgia","GA",85 +2013-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",29 +2013-08-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-08-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-08-01,"Vehicle Fuel Consumption","Missouri","MO",4 +2013-08-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-08-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-08-01,"Vehicle Fuel Consumption","California","CA",1199 +2013-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-08-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-08-01,"Vehicle Fuel Consumption","New York","NY",282 +2013-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2013-08-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-08-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-08-01,"Vehicle Fuel Consumption","Utah","UT",19 +2013-08-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-08-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-08-01,"Vehicle Fuel Consumption","South Carolina","SC",2 +2013-08-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-08-01,"Vehicle Fuel Consumption","Texas","TX",255 +2013-08-01,"Vehicle Fuel Consumption","Minnesota","MN",4 +2013-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2552 +2013-08-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-08-01,"Vehicle Fuel Consumption","Washington","WA",36 +2013-08-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-08-01,"Vehicle Fuel Consumption","Florida","FL",15 +2013-08-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-08-01,"Vehicle Fuel Consumption","Nevada","NV",51 +2013-08-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2013-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-08-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2013-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-08-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-09-01,"Commercial Consumption","Washington","WA",2980 +2013-09-01,"Commercial Consumption","Oregon","OR",1261 +2013-09-01,"Commercial Consumption","Missouri","MO",2220 +2013-09-01,"Commercial Consumption","Massachusetts","MA",3585 +2013-09-01,"Commercial Consumption","New Hampshire","NH",286 +2013-09-01,"Commercial Consumption","Kentucky","KY",1242 +2013-09-01,"Commercial Consumption","New York","NY",13636 +2013-09-01,"Commercial Consumption","South Carolina","SC",1200 +2013-09-01,"Commercial Consumption","Pennsylvania","PA",5262 +2013-09-01,"Commercial Consumption","New Jersey","NJ",9045 +2013-09-01,"Commercial Consumption","Maine","ME",326 +2013-09-01,"Commercial Consumption","Kansas","KS",1084 +2013-09-01,"Commercial Consumption","Idaho","ID",763 +2013-09-01,"Commercial Consumption","Hawaii","HI",157 +2013-09-01,"Commercial Consumption","Wisconsin","WI",3076 +2013-09-01,"Commercial Consumption","South Dakota","SD",340 +2013-09-01,"Commercial Consumption","U.S.","U.S.",141926 +2013-09-01,"Commercial Consumption","Arizona","AZ",1822 +2013-09-01,"Commercial Consumption","Nevada","NV",1699 +2013-09-01,"Commercial Consumption","Colorado","CO",1727 +2013-09-01,"Commercial Consumption","Utah","UT",1214 +2013-09-01,"Commercial Consumption","Florida","FL",4210 +2013-09-01,"Commercial Consumption","Iowa","IA",1794 +2013-09-01,"Commercial Consumption","Arkansas","AR",2631 +2013-09-01,"Commercial Consumption","Michigan","MI",5585 +2013-09-01,"Commercial Consumption","Wyoming","WY",414 +2013-09-01,"Commercial Consumption","Minnesota","MN",3010 +2013-09-01,"Commercial Consumption","Montana","MT",681 +2013-09-01,"Commercial Consumption","Maryland","MD",2841 +2013-09-01,"Commercial Consumption","Vermont","VT",284 +2013-09-01,"Commercial Consumption","Ohio","OH",5071 +2013-09-01,"Commercial Consumption","Delaware","DE",461 +2013-09-01,"Commercial Consumption","Louisiana","LA",1919 +2013-09-01,"Commercial Consumption","Illinois","IL",8319 +2013-09-01,"Commercial Consumption","West Virginia","WV",864 +2013-09-01,"Commercial Consumption","Oklahoma","OK",1585 +2013-09-01,"Commercial Consumption","Texas","TX",9870 +2013-09-01,"Commercial Consumption","Rhode Island","RI",331 +2013-09-01,"Commercial Consumption","District of Columbia","DC",798 +2013-09-01,"Commercial Consumption","North Dakota","ND",265 +2013-09-01,"Commercial Consumption","North Carolina","NC",2873 +2013-09-01,"Commercial Consumption","New Mexico","NM",1136 +2013-09-01,"Commercial Consumption","Virginia","VA",2936 +2013-09-01,"Commercial Consumption","Georgia","GA",2874 +2013-09-01,"Commercial Consumption","Connecticut","CT",2218 +2013-09-01,"Commercial Consumption","California","CA",17036 +2013-09-01,"Commercial Consumption","Nebraska","NE",1047 +2013-09-01,"Commercial Consumption","Mississippi","MS",910 +2013-09-01,"Commercial Consumption","Tennessee","TN",2155 +2013-09-01,"Commercial Consumption","Indiana","IN",2739 +2013-09-01,"Commercial Consumption","Alaska","AK",943 +2013-09-01,"Commercial Consumption","Alabama","AL",1203 +2013-09-01,"Delivered to Consumers","Indiana","IN",38390 +2013-09-01,"Delivered to Consumers","South Dakota","SD",4315 +2013-09-01,"Delivered to Consumers","Maryland","MD",8433 +2013-09-01,"Delivered to Consumers","Ohio","OH",38353 +2013-09-01,"Delivered to Consumers","Kentucky","KY",10628 +2013-09-01,"Delivered to Consumers","Missouri","MO",11984 +2013-09-01,"Delivered to Consumers","Massachusetts","MA",24543 +2013-09-01,"Delivered to Consumers","Nevada","NV",19510 +2013-09-01,"Delivered to Consumers","Louisiana","LA",104020 +2013-09-01,"Delivered to Consumers","Utah","UT",10589 +2013-09-01,"Delivered to Consumers","Montana","MT",3107 +2013-09-01,"Delivered to Consumers","Alaska","AK",4773 +2013-09-01,"Delivered to Consumers","Iowa","IA",17832 +2013-09-01,"Delivered to Consumers","Connecticut","CT",14397 +2013-09-01,"Delivered to Consumers","Wisconsin","WI",19183 +2013-09-01,"Delivered to Consumers","Nebraska","NE",9703 +2013-09-01,"Delivered to Consumers","Mississippi","MS",28861 +2013-09-01,"Delivered to Consumers","Texas","TX",283822 +2013-09-01,"Delivered to Consumers","New Mexico","NM",10521 +2013-09-01,"Delivered to Consumers","Pennsylvania","PA",55566 +2013-09-01,"Delivered to Consumers","District of Columbia","DC",1150 +2013-09-01,"Delivered to Consumers","West Virginia","WV",3761 +2013-09-01,"Delivered to Consumers","Kansas","KS",12966 +2013-09-01,"Delivered to Consumers","Colorado","CO",18093 +2013-09-01,"Delivered to Consumers","Oregon","OR",15968 +2013-09-01,"Delivered to Consumers","Arizona","AZ",31545 +2013-09-01,"Delivered to Consumers","Hawaii","HI",235 +2013-09-01,"Delivered to Consumers","Idaho","ID",6505 +2013-09-01,"Delivered to Consumers","Tennessee","TN",14340 +2013-09-01,"Delivered to Consumers","Virginia","VA",26603 +2013-09-01,"Delivered to Consumers","U.S.","U.S.",1588718 +2013-09-01,"Delivered to Consumers","Delaware","DE",7215 +2013-09-01,"Delivered to Consumers","Wyoming","WY",4505 +2013-09-01,"Delivered to Consumers","Arkansas","AR",17278 +2013-09-01,"Delivered to Consumers","California","CA",188669 +2013-09-01,"Delivered to Consumers","South Carolina","SC",16949 +2013-09-01,"Delivered to Consumers","New Jersey","NJ",37225 +2013-09-01,"Delivered to Consumers","Maine","ME",4246 +2013-09-01,"Delivered to Consumers","Washington","WA",21514 +2013-09-01,"Delivered to Consumers","Minnesota","MN",22398 +2013-09-01,"Delivered to Consumers","Florida","FL",107449 +2013-09-01,"Delivered to Consumers","Vermont","VT",450 +2013-09-01,"Delivered to Consumers","Illinois","IL",42403 +2013-09-01,"Delivered to Consumers","Rhode Island","RI",6673 +2013-09-01,"Delivered to Consumers","New York","NY",64927 +2013-09-01,"Delivered to Consumers","Oklahoma","OK",38808 +2013-09-01,"Delivered to Consumers","Michigan","MI",32537 +2013-09-01,"Delivered to Consumers","Alabama","AL",42742 +2013-09-01,"Delivered to Consumers","North Carolina","NC",30748 +2013-09-01,"Delivered to Consumers","Georgia","GA",44920 +2013-09-01,"Delivered to Consumers","New Hampshire","NH",4202 +2013-09-01,"Delivered to Consumers","North Dakota","ND",3172 +2013-09-01,"Electric Power Consumption","New Mexico","NM",6971 +2013-09-01,"Electric Power Consumption","Louisiana","LA",25238 +2013-09-01,"Electric Power Consumption","Oregon","OR",9035 +2013-09-01,"Electric Power Consumption","Iowa","IA",1496 +2013-09-01,"Electric Power Consumption","Nebraska","NE",539 +2013-09-01,"Electric Power Consumption","Indiana","IN",5789 +2013-09-01,"Electric Power Consumption","Connecticut","CT",9148 +2013-09-01,"Electric Power Consumption","California","CA",83420 +2013-09-01,"Electric Power Consumption","Oklahoma","OK",23622 +2013-09-01,"Electric Power Consumption","Michigan","MI",7264 +2013-09-01,"Electric Power Consumption","U.S.","U.S.",751482 +2013-09-01,"Electric Power Consumption","Maine","ME",1485 +2013-09-01,"Electric Power Consumption","Ohio","OH",8590 +2013-09-01,"Electric Power Consumption","Maryland","MD",2926 +2013-09-01,"Electric Power Consumption","Arizona","AZ",26902 +2013-09-01,"Electric Power Consumption","Utah","UT",4738 +2013-09-01,"Electric Power Consumption","Illinois","IL",4453 +2013-09-01,"Electric Power Consumption","Kansas","KS",2628 +2013-09-01,"Electric Power Consumption","West Virginia","WV",222 +2013-09-01,"Electric Power Consumption","Wisconsin","WI",4660 +2013-09-01,"Electric Power Consumption","Nevada","NV",15472 +2013-09-01,"Electric Power Consumption","Georgia","GA",25949 +2013-09-01,"Electric Power Consumption","New Jersey","NJ",18640 +2013-09-01,"Electric Power Consumption","Minnesota","MN",4754 +2013-09-01,"Electric Power Consumption","Wyoming","WY",24 +2013-09-01,"Electric Power Consumption","Vermont","VT",3 +2013-09-01,"Electric Power Consumption","Kentucky","KY",693 +2013-09-01,"Electric Power Consumption","New Hampshire","NH",3169 +2013-09-01,"Electric Power Consumption","North Dakota","ND",66 +2013-09-01,"Electric Power Consumption","Montana","MT",301 +2013-09-01,"Electric Power Consumption","New York","NY",34729 +2013-09-01,"Electric Power Consumption","Rhode Island","RI",5220 +2013-09-01,"Electric Power Consumption","Massachusetts","MA",14274 +2013-09-01,"Electric Power Consumption","South Dakota","SD",399 +2013-09-01,"Electric Power Consumption","Idaho","ID",2835 +2013-09-01,"Electric Power Consumption","Colorado","CO",8720 +2013-09-01,"Electric Power Consumption","Arkansas","AR",7386 +2013-09-01,"Electric Power Consumption","South Carolina","SC",8680 +2013-09-01,"Electric Power Consumption","Texas","TX",143048 +2013-09-01,"Electric Power Consumption","Tennessee","TN",2855 +2013-09-01,"Electric Power Consumption","Missouri","MO",3627 +2013-09-01,"Electric Power Consumption","Washington","WA",9961 +2013-09-01,"Electric Power Consumption","Virginia","VA",15819 +2013-09-01,"Electric Power Consumption","Pennsylvania","PA",30294 +2013-09-01,"Electric Power Consumption","North Carolina","NC",18418 +2013-09-01,"Electric Power Consumption","Hawaii","HI",NA +2013-09-01,"Electric Power Consumption","Mississippi","MS",18381 +2013-09-01,"Electric Power Consumption","Delaware","DE",4048 +2013-09-01,"Electric Power Consumption","Florida","FL",95487 +2013-09-01,"Electric Power Consumption","Alabama","AL",26571 +2013-09-01,"Electric Power Consumption","Alaska","AK",2531 +2013-09-01,"Industrial Consumption","Oregon","OR",4366 +2013-09-01,"Industrial Consumption","Nevada","NV",1047 +2013-09-01,"Industrial Consumption","Mississippi","MS",9000 +2013-09-01,"Industrial Consumption","Maine","ME",2391 +2013-09-01,"Industrial Consumption","Vermont","VT",76 +2013-09-01,"Industrial Consumption","Louisiana","LA",75535 +2013-09-01,"Industrial Consumption","Arizona","AZ",1547 +2013-09-01,"Industrial Consumption","Alabama","AL",14175 +2013-09-01,"Industrial Consumption","West Virginia","WV",2125 +2013-09-01,"Industrial Consumption","New Hampshire","NH",557 +2013-09-01,"Industrial Consumption","Minnesota","MN",12019 +2013-09-01,"Industrial Consumption","Connecticut","CT",1939 +2013-09-01,"Industrial Consumption","Illinois","IL",21007 +2013-09-01,"Industrial Consumption","Rhode Island","RI",599 +2013-09-01,"Industrial Consumption","Colorado","CO",4503 +2013-09-01,"Industrial Consumption","California","CA",67354 +2013-09-01,"Industrial Consumption","Texas","TX",125380 +2013-09-01,"Industrial Consumption","Tennessee","TN",8205 +2013-09-01,"Industrial Consumption","Idaho","ID",2235 +2013-09-01,"Industrial Consumption","Michigan","MI",11397 +2013-09-01,"Industrial Consumption","Kentucky","KY",7794 +2013-09-01,"Industrial Consumption","North Carolina","NC",8307 +2013-09-01,"Industrial Consumption","Georgia","GA",12439 +2013-09-01,"Industrial Consumption","Arkansas","AR",6654 +2013-09-01,"Industrial Consumption","Wisconsin","WI",8745 +2013-09-01,"Industrial Consumption","Florida","FL",7074 +2013-09-01,"Industrial Consumption","Massachusetts","MA",2926 +2013-09-01,"Industrial Consumption","Oklahoma","OK",12393 +2013-09-01,"Industrial Consumption","Missouri","MO",4368 +2013-09-01,"Industrial Consumption","Washington","WA",6330 +2013-09-01,"Industrial Consumption","South Dakota","SD",3330 +2013-09-01,"Industrial Consumption","Kansas","KS",8188 +2013-09-01,"Industrial Consumption","Utah","UT",2930 +2013-09-01,"Industrial Consumption","New York","NY",5066 +2013-09-01,"Industrial Consumption","Virginia","VA",6145 +2013-09-01,"Industrial Consumption","Delaware","DE",2524 +2013-09-01,"Industrial Consumption","Alaska","AK",311 +2013-09-01,"Industrial Consumption","North Dakota","ND",2599 +2013-09-01,"Industrial Consumption","Montana","MT",1574 +2013-09-01,"Industrial Consumption","Iowa","IA",13187 +2013-09-01,"Industrial Consumption","Indiana","IN",27440 +2013-09-01,"Industrial Consumption","U.S.","U.S.",575038 +2013-09-01,"Industrial Consumption","Nebraska","NE",7411 +2013-09-01,"Industrial Consumption","Wyoming","WY",3726 +2013-09-01,"Industrial Consumption","New Jersey","NJ",4489 +2013-09-01,"Industrial Consumption","District of Columbia","DC",0 +2013-09-01,"Industrial Consumption","Maryland","MD",1112 +2013-09-01,"Industrial Consumption","Hawaii","HI",31 +2013-09-01,"Industrial Consumption","Ohio","OH",19169 +2013-09-01,"Industrial Consumption","New Mexico","NM",1426 +2013-09-01,"Industrial Consumption","Pennsylvania","PA",15295 +2013-09-01,"Industrial Consumption","South Carolina","SC",6596 +2013-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",122736 +2013-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",55518 +2013-09-01,"Residential Consumption","North Carolina","NC",1145 +2013-09-01,"Residential Consumption","Iowa","IA",1353 +2013-09-01,"Residential Consumption","Georgia","GA",3576 +2013-09-01,"Residential Consumption","New Jersey","NJ",5035 +2013-09-01,"Residential Consumption","Kansas","KS",1065 +2013-09-01,"Residential Consumption","California","CA",19699 +2013-09-01,"Residential Consumption","Alabama","AL",778 +2013-09-01,"Residential Consumption","Wyoming","WY",340 +2013-09-01,"Residential Consumption","South Carolina","SC",472 +2013-09-01,"Residential Consumption","Oregon","OR",1293 +2013-09-01,"Residential Consumption","Tennessee","TN",1117 +2013-09-01,"Residential Consumption","Virginia","VA",1686 +2013-09-01,"Residential Consumption","Utah","UT",1687 +2013-09-01,"Residential Consumption","Minnesota","MN",2612 +2013-09-01,"Residential Consumption","District of Columbia","DC",281 +2013-09-01,"Residential Consumption","New Hampshire","NH",184 +2013-09-01,"Residential Consumption","Kentucky","KY",896 +2013-09-01,"Residential Consumption","Oklahoma","OK",1178 +2013-09-01,"Residential Consumption","Missouri","MO",1765 +2013-09-01,"Residential Consumption","Louisiana","LA",1325 +2013-09-01,"Residential Consumption","Michigan","MI",8262 +2013-09-01,"Residential Consumption","Colorado","CO",3121 +2013-09-01,"Residential Consumption","West Virginia","WV",549 +2013-09-01,"Residential Consumption","Connecticut","CT",1087 +2013-09-01,"Residential Consumption","Florida","FL",663 +2013-09-01,"Residential Consumption","North Dakota","ND",243 +2013-09-01,"Residential Consumption","Arkansas","AR",606 +2013-09-01,"Residential Consumption","Delaware","DE",183 +2013-09-01,"Residential Consumption","U.S.","U.S.",117803 +2013-09-01,"Residential Consumption","Rhode Island","RI",517 +2013-09-01,"Residential Consumption","Mississippi","MS",568 +2013-09-01,"Residential Consumption","Hawaii","HI",47 +2013-09-01,"Residential Consumption","Nebraska","NE",702 +2013-09-01,"Residential Consumption","Montana","MT",551 +2013-09-01,"Residential Consumption","Washington","WA",2209 +2013-09-01,"Residential Consumption","Alaska","AK",987 +2013-09-01,"Residential Consumption","Ohio","OH",5499 +2013-09-01,"Residential Consumption","Nevada","NV",1243 +2013-09-01,"Residential Consumption","Arizona","AZ",1132 +2013-09-01,"Residential Consumption","Illinois","IL",8600 +2013-09-01,"Residential Consumption","Vermont","VT",86 +2013-09-01,"Residential Consumption","New Mexico","NM",975 +2013-09-01,"Residential Consumption","Maine","ME",43 +2013-09-01,"Residential Consumption","Massachusetts","MA",3700 +2013-09-01,"Residential Consumption","Idaho","ID",661 +2013-09-01,"Residential Consumption","Texas","TX",5276 +2013-09-01,"Residential Consumption","Wisconsin","WI",2694 +2013-09-01,"Residential Consumption","Maryland","MD",1537 +2013-09-01,"Residential Consumption","South Dakota","SD",245 +2013-09-01,"Residential Consumption","Pennsylvania","PA",4689 +2013-09-01,"Residential Consumption","Indiana","IN",2420 +2013-09-01,"Residential Consumption","New York","NY",11223 +2013-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-09-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-09-01,"Vehicle Fuel Consumption","Washington","WA",34 +2013-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",28 +2013-09-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-09-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-09-01,"Vehicle Fuel Consumption","Texas","TX",247 +2013-09-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-09-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-09-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-09-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2013-09-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2013-09-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-09-01,"Vehicle Fuel Consumption","Georgia","GA",82 +2013-09-01,"Vehicle Fuel Consumption","California","CA",1161 +2013-09-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-09-01,"Vehicle Fuel Consumption","Missouri","MO",3 +2013-09-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-09-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-09-01,"Vehicle Fuel Consumption","Florida","FL",14 +2013-09-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-09-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-09-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-09-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2013-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-09-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-09-01,"Vehicle Fuel Consumption","Minnesota","MN",3 +2013-09-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2013-09-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-09-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-09-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-09-01,"Vehicle Fuel Consumption","Arizona","AZ",142 +2013-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",57 +2013-09-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-09-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2013-09-01,"Vehicle Fuel Consumption","Colorado","CO",22 +2013-09-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2469 +2013-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-09-01,"Vehicle Fuel Consumption","Utah","UT",18 +2013-09-01,"Vehicle Fuel Consumption","New York","NY",273 +2013-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2013-09-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-09-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-10-01,"Commercial Consumption","West Virginia","WV",1615 +2013-10-01,"Commercial Consumption","Minnesota","MN",5755 +2013-10-01,"Commercial Consumption","Utah","UT",1686 +2013-10-01,"Commercial Consumption","Maryland","MD",4808 +2013-10-01,"Commercial Consumption","Georgia","GA",3453 +2013-10-01,"Commercial Consumption","Florida","FL",4608 +2013-10-01,"Commercial Consumption","Rhode Island","RI",557 +2013-10-01,"Commercial Consumption","Ohio","OH",7198 +2013-10-01,"Commercial Consumption","Iowa","IA",3860 +2013-10-01,"Commercial Consumption","Hawaii","HI",155 +2013-10-01,"Commercial Consumption","Nebraska","NE",2080 +2013-10-01,"Commercial Consumption","Virginia","VA",4270 +2013-10-01,"Commercial Consumption","New Jersey","NJ",10694 +2013-10-01,"Commercial Consumption","New Hampshire","NH",321 +2013-10-01,"Commercial Consumption","Delaware","DE",740 +2013-10-01,"Commercial Consumption","Tennessee","TN",3408 +2013-10-01,"Commercial Consumption","South Carolina","SC",1706 +2013-10-01,"Commercial Consumption","North Carolina","NC",3869 +2013-10-01,"Commercial Consumption","Montana","MT",1623 +2013-10-01,"Commercial Consumption","Arkansas","AR",3408 +2013-10-01,"Commercial Consumption","Arizona","AZ",2291 +2013-10-01,"Commercial Consumption","Nevada","NV",2362 +2013-10-01,"Commercial Consumption","Washington","WA",4690 +2013-10-01,"Commercial Consumption","North Dakota","ND",943 +2013-10-01,"Commercial Consumption","Colorado","CO",3603 +2013-10-01,"Commercial Consumption","Pennsylvania","PA",9040 +2013-10-01,"Commercial Consumption","Massachusetts","MA",4995 +2013-10-01,"Commercial Consumption","South Dakota","SD",782 +2013-10-01,"Commercial Consumption","Vermont","VT",405 +2013-10-01,"Commercial Consumption","California","CA",19896 +2013-10-01,"Commercial Consumption","Missouri","MO",2846 +2013-10-01,"Commercial Consumption","Kentucky","KY",2101 +2013-10-01,"Commercial Consumption","U.S.","U.S.",206671 +2013-10-01,"Commercial Consumption","Indiana","IN",5615 +2013-10-01,"Commercial Consumption","New Mexico","NM",2043 +2013-10-01,"Commercial Consumption","Wisconsin","WI",5861 +2013-10-01,"Commercial Consumption","Kansas","KS",2119 +2013-10-01,"Commercial Consumption","Alaska","AK",1314 +2013-10-01,"Commercial Consumption","New York","NY",17608 +2013-10-01,"Commercial Consumption","Michigan","MI",9539 +2013-10-01,"Commercial Consumption","Wyoming","WY",1090 +2013-10-01,"Commercial Consumption","Oklahoma","OK",1690 +2013-10-01,"Commercial Consumption","Connecticut","CT",2656 +2013-10-01,"Commercial Consumption","Oregon","OR",2236 +2013-10-01,"Commercial Consumption","Maine","ME",500 +2013-10-01,"Commercial Consumption","Texas","TX",11265 +2013-10-01,"Commercial Consumption","Idaho","ID",1282 +2013-10-01,"Commercial Consumption","Alabama","AL",1788 +2013-10-01,"Commercial Consumption","Mississippi","MS",1418 +2013-10-01,"Commercial Consumption","Louisiana","LA",2111 +2013-10-01,"Commercial Consumption","Illinois","IL",15630 +2013-10-01,"Commercial Consumption","District of Columbia","DC",1137 +2013-10-01,"Delivered to Consumers","Delaware","DE",7274 +2013-10-01,"Delivered to Consumers","Kansas","KS",14782 +2013-10-01,"Delivered to Consumers","Tennessee","TN",17030 +2013-10-01,"Delivered to Consumers","Connecticut","CT",14597 +2013-10-01,"Delivered to Consumers","Virginia","VA",25279 +2013-10-01,"Delivered to Consumers","North Carolina","NC",30312 +2013-10-01,"Delivered to Consumers","Missouri","MO",12313 +2013-10-01,"Delivered to Consumers","Colorado","CO",24355 +2013-10-01,"Delivered to Consumers","California","CA",183115 +2013-10-01,"Delivered to Consumers","Utah","UT",11869 +2013-10-01,"Delivered to Consumers","Indiana","IN",47597 +2013-10-01,"Delivered to Consumers","New York","NY",69604 +2013-10-01,"Delivered to Consumers","Kentucky","KY",13515 +2013-10-01,"Delivered to Consumers","Massachusetts","MA",27690 +2013-10-01,"Delivered to Consumers","Oregon","OR",19865 +2013-10-01,"Delivered to Consumers","New Jersey","NJ",39932 +2013-10-01,"Delivered to Consumers","Maine","ME",4751 +2013-10-01,"Delivered to Consumers","South Dakota","SD",5445 +2013-10-01,"Delivered to Consumers","Oklahoma","OK",30222 +2013-10-01,"Delivered to Consumers","Michigan","MI",49664 +2013-10-01,"Delivered to Consumers","Alabama","AL",45338 +2013-10-01,"Delivered to Consumers","Texas","TX",256264 +2013-10-01,"Delivered to Consumers","New Hampshire","NH",3269 +2013-10-01,"Delivered to Consumers","Vermont","VT",644 +2013-10-01,"Delivered to Consumers","Rhode Island","RI",6601 +2013-10-01,"Delivered to Consumers","Maryland","MD",11519 +2013-10-01,"Delivered to Consumers","Hawaii","HI",230 +2013-10-01,"Delivered to Consumers","Alaska","AK",5478 +2013-10-01,"Delivered to Consumers","Ohio","OH",51300 +2013-10-01,"Delivered to Consumers","Nebraska","NE",11990 +2013-10-01,"Delivered to Consumers","South Carolina","SC",16012 +2013-10-01,"Delivered to Consumers","Arizona","AZ",21328 +2013-10-01,"Delivered to Consumers","Florida","FL",106787 +2013-10-01,"Delivered to Consumers","Wisconsin","WI",28766 +2013-10-01,"Delivered to Consumers","New Mexico","NM",10301 +2013-10-01,"Delivered to Consumers","Wyoming","WY",6291 +2013-10-01,"Delivered to Consumers","Montana","MT",5477 +2013-10-01,"Delivered to Consumers","Idaho","ID",7213 +2013-10-01,"Delivered to Consumers","Iowa","IA",23586 +2013-10-01,"Delivered to Consumers","U.S.","U.S.",1680814 +2013-10-01,"Delivered to Consumers","Pennsylvania","PA",63854 +2013-10-01,"Delivered to Consumers","Mississippi","MS",29558 +2013-10-01,"Delivered to Consumers","Louisiana","LA",101507 +2013-10-01,"Delivered to Consumers","Georgia","GA",47927 +2013-10-01,"Delivered to Consumers","Washington","WA",28757 +2013-10-01,"Delivered to Consumers","District of Columbia","DC",1662 +2013-10-01,"Delivered to Consumers","West Virginia","WV",5249 +2013-10-01,"Delivered to Consumers","Illinois","IL",63710 +2013-10-01,"Delivered to Consumers","Arkansas","AR",17940 +2013-10-01,"Delivered to Consumers","Nevada","NV",19931 +2013-10-01,"Delivered to Consumers","North Dakota","ND",4465 +2013-10-01,"Delivered to Consumers","Minnesota","MN",28650 +2013-10-01,"Electric Power Consumption","Washington","WA",10017 +2013-10-01,"Electric Power Consumption","South Carolina","SC",6146 +2013-10-01,"Electric Power Consumption","Utah","UT",4444 +2013-10-01,"Electric Power Consumption","Massachusetts","MA",13770 +2013-10-01,"Electric Power Consumption","Illinois","IL",1793 +2013-10-01,"Electric Power Consumption","Kansas","KS",1484 +2013-10-01,"Electric Power Consumption","Wyoming","WY",43 +2013-10-01,"Electric Power Consumption","Mississippi","MS",17335 +2013-10-01,"Electric Power Consumption","Montana","MT",191 +2013-10-01,"Electric Power Consumption","New Jersey","NJ",16061 +2013-10-01,"Electric Power Consumption","Idaho","ID",1568 +2013-10-01,"Electric Power Consumption","Arkansas","AR",6069 +2013-10-01,"Electric Power Consumption","Texas","TX",108357 +2013-10-01,"Electric Power Consumption","Oklahoma","OK",14101 +2013-10-01,"Electric Power Consumption","Michigan","MI",7699 +2013-10-01,"Electric Power Consumption","West Virginia","WV",43 +2013-10-01,"Electric Power Consumption","South Dakota","SD",248 +2013-10-01,"Electric Power Consumption","Missouri","MO",1847 +2013-10-01,"Electric Power Consumption","Maine","ME",1385 +2013-10-01,"Electric Power Consumption","Hawaii","HI",NA +2013-10-01,"Electric Power Consumption","Alaska","AK",2457 +2013-10-01,"Electric Power Consumption","New Mexico","NM",4827 +2013-10-01,"Electric Power Consumption","New York","NY",29088 +2013-10-01,"Electric Power Consumption","Nevada","NV",14176 +2013-10-01,"Electric Power Consumption","Indiana","IN",6560 +2013-10-01,"Electric Power Consumption","Georgia","GA",24767 +2013-10-01,"Electric Power Consumption","Florida","FL",93173 +2013-10-01,"Electric Power Consumption","California","CA",69869 +2013-10-01,"Electric Power Consumption","Colorado","CO",5530 +2013-10-01,"Electric Power Consumption","Vermont","VT",4 +2013-10-01,"Electric Power Consumption","U.S.","U.S.",637038 +2013-10-01,"Electric Power Consumption","Ohio","OH",14171 +2013-10-01,"Electric Power Consumption","Alabama","AL",27082 +2013-10-01,"Electric Power Consumption","Minnesota","MN",2765 +2013-10-01,"Electric Power Consumption","North Dakota","ND",34 +2013-10-01,"Electric Power Consumption","Oregon","OR",9176 +2013-10-01,"Electric Power Consumption","Pennsylvania","PA",28772 +2013-10-01,"Electric Power Consumption","Tennessee","TN",2718 +2013-10-01,"Electric Power Consumption","Maryland","MD",2201 +2013-10-01,"Electric Power Consumption","Delaware","DE",3673 +2013-10-01,"Electric Power Consumption","Connecticut","CT",8099 +2013-10-01,"Electric Power Consumption","Virginia","VA",11783 +2013-10-01,"Electric Power Consumption","Louisiana","LA",20550 +2013-10-01,"Electric Power Consumption","Rhode Island","RI",4423 +2013-10-01,"Electric Power Consumption","Wisconsin","WI",4643 +2013-10-01,"Electric Power Consumption","Iowa","IA",509 +2013-10-01,"Electric Power Consumption","Nebraska","NE",143 +2013-10-01,"Electric Power Consumption","North Carolina","NC",15030 +2013-10-01,"Electric Power Consumption","Kentucky","KY",722 +2013-10-01,"Electric Power Consumption","New Hampshire","NH",2096 +2013-10-01,"Electric Power Consumption","Arizona","AZ",15399 +2013-10-01,"Industrial Consumption","Maryland","MD",1059 +2013-10-01,"Industrial Consumption","New Mexico","NM",1620 +2013-10-01,"Industrial Consumption","Nevada","NV",1133 +2013-10-01,"Industrial Consumption","Wisconsin","WI",10958 +2013-10-01,"Industrial Consumption","Rhode Island","RI",653 +2013-10-01,"Industrial Consumption","Arkansas","AR",7399 +2013-10-01,"Industrial Consumption","Virginia","VA",6213 +2013-10-01,"Industrial Consumption","Montana","MT",1983 +2013-10-01,"Industrial Consumption","Massachusetts","MA",3445 +2013-10-01,"Industrial Consumption","Colorado","CO",6509 +2013-10-01,"Industrial Consumption","Utah","UT",2906 +2013-10-01,"Industrial Consumption","New York","NY",6031 +2013-10-01,"Industrial Consumption","Idaho","ID",2378 +2013-10-01,"Industrial Consumption","Connecticut","CT",2123 +2013-10-01,"Industrial Consumption","Delaware","DE",2548 +2013-10-01,"Industrial Consumption","Alaska","AK",392 +2013-10-01,"Industrial Consumption","Missouri","MO",4941 +2013-10-01,"Industrial Consumption","Alabama","AL",15310 +2013-10-01,"Industrial Consumption","Tennessee","TN",8805 +2013-10-01,"Industrial Consumption","Florida","FL",8019 +2013-10-01,"Industrial Consumption","Oklahoma","OK",12932 +2013-10-01,"Industrial Consumption","Washington","WA",7426 +2013-10-01,"Industrial Consumption","Oregon","OR",5094 +2013-10-01,"Industrial Consumption","Mississippi","MS",9826 +2013-10-01,"Industrial Consumption","Maine","ME",2788 +2013-10-01,"Industrial Consumption","California","CA",63894 +2013-10-01,"Industrial Consumption","Nebraska","NE",8094 +2013-10-01,"Industrial Consumption","New Hampshire","NH",639 +2013-10-01,"Industrial Consumption","Michigan","MI",14159 +2013-10-01,"Industrial Consumption","Kentucky","KY",8609 +2013-10-01,"Industrial Consumption","Indiana","IN",28305 +2013-10-01,"Industrial Consumption","District of Columbia","DC",0 +2013-10-01,"Industrial Consumption","North Dakota","ND",2788 +2013-10-01,"Industrial Consumption","Hawaii","HI",30 +2013-10-01,"Industrial Consumption","Louisiana","LA",77322 +2013-10-01,"Industrial Consumption","South Dakota","SD",3580 +2013-10-01,"Industrial Consumption","Ohio","OH",20809 +2013-10-01,"Industrial Consumption","U.S.","U.S.",611884 +2013-10-01,"Industrial Consumption","Iowa","IA",15865 +2013-10-01,"Industrial Consumption","Illinois","IL",23623 +2013-10-01,"Industrial Consumption","Arizona","AZ",1820 +2013-10-01,"Industrial Consumption","Pennsylvania","PA",16569 +2013-10-01,"Industrial Consumption","South Carolina","SC",7344 +2013-10-01,"Industrial Consumption","Vermont","VT",93 +2013-10-01,"Industrial Consumption","New Jersey","NJ",5138 +2013-10-01,"Industrial Consumption","Kansas","KS",8781 +2013-10-01,"Industrial Consumption","Texas","TX",129123 +2013-10-01,"Industrial Consumption","West Virginia","WV",2233 +2013-10-01,"Industrial Consumption","Wyoming","WY",4089 +2013-10-01,"Industrial Consumption","Minnesota","MN",13383 +2013-10-01,"Industrial Consumption","North Carolina","NC",9062 +2013-10-01,"Industrial Consumption","Georgia","GA",14037 +2013-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",127212 +2013-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",58737 +2013-10-01,"Residential Consumption","Iowa","IA",3350 +2013-10-01,"Residential Consumption","Michigan","MI",18237 +2013-10-01,"Residential Consumption","Maine","ME",78 +2013-10-01,"Residential Consumption","Indiana","IN",7115 +2013-10-01,"Residential Consumption","Idaho","ID",1974 +2013-10-01,"Residential Consumption","Delaware","DE",313 +2013-10-01,"Residential Consumption","West Virginia","WV",1356 +2013-10-01,"Residential Consumption","South Carolina","SC",815 +2013-10-01,"Residential Consumption","Connecticut","CT",1715 +2013-10-01,"Residential Consumption","Nebraska","NE",1668 +2013-10-01,"Residential Consumption","Maryland","MD",3433 +2013-10-01,"Residential Consumption","Washington","WA",6588 +2013-10-01,"Residential Consumption","Texas","TX",7264 +2013-10-01,"Residential Consumption","Oregon","OR",3347 +2013-10-01,"Residential Consumption","Tennessee","TN",2092 +2013-10-01,"Residential Consumption","New Jersey","NJ",8021 +2013-10-01,"Residential Consumption","Montana","MT",1679 +2013-10-01,"Residential Consumption","Ohio","OH",9097 +2013-10-01,"Residential Consumption","New Mexico","NM",1797 +2013-10-01,"Residential Consumption","Arkansas","AR",1062 +2013-10-01,"Residential Consumption","Oklahoma","OK",1469 +2013-10-01,"Residential Consumption","North Carolina","NC",2345 +2013-10-01,"Residential Consumption","District of Columbia","DC",451 +2013-10-01,"Residential Consumption","Massachusetts","MA",5421 +2013-10-01,"Residential Consumption","Colorado","CO",8689 +2013-10-01,"Residential Consumption","Kansas","KS",2397 +2013-10-01,"Residential Consumption","Missouri","MO",2676 +2013-10-01,"Residential Consumption","Wyoming","WY",1068 +2013-10-01,"Residential Consumption","U.S.","U.S.",222668 +2013-10-01,"Residential Consumption","Louisiana","LA",1520 +2013-10-01,"Residential Consumption","Hawaii","HI",44 +2013-10-01,"Residential Consumption","Utah","UT",2814 +2013-10-01,"Residential Consumption","Florida","FL",973 +2013-10-01,"Residential Consumption","North Dakota","ND",700 +2013-10-01,"Residential Consumption","New Hampshire","NH",208 +2013-10-01,"Residential Consumption","Arizona","AZ",1672 +2013-10-01,"Residential Consumption","Alabama","AL",1142 +2013-10-01,"Residential Consumption","Illinois","IL",22640 +2013-10-01,"Residential Consumption","Vermont","VT",143 +2013-10-01,"Residential Consumption","Virginia","VA",2995 +2013-10-01,"Residential Consumption","Minnesota","MN",6744 +2013-10-01,"Residential Consumption","Georgia","GA",5585 +2013-10-01,"Residential Consumption","Pennsylvania","PA",9447 +2013-10-01,"Residential Consumption","Kentucky","KY",2081 +2013-10-01,"Residential Consumption","California","CA",28257 +2013-10-01,"Residential Consumption","New York","NY",16594 +2013-10-01,"Residential Consumption","Rhode Island","RI",963 +2013-10-01,"Residential Consumption","Mississippi","MS",978 +2013-10-01,"Residential Consumption","Wisconsin","WI",7295 +2013-10-01,"Residential Consumption","South Dakota","SD",834 +2013-10-01,"Residential Consumption","Nevada","NV",2210 +2013-10-01,"Residential Consumption","Alaska","AK",1314 +2013-10-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-10-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-10-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-10-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-10-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-10-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-10-01,"Vehicle Fuel Consumption","Texas","TX",255 +2013-10-01,"Vehicle Fuel Consumption","Michigan","MI",29 +2013-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-10-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-10-01,"Vehicle Fuel Consumption","New York","NY",282 +2013-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-10-01,"Vehicle Fuel Consumption","Arizona","AZ",147 +2013-10-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-10-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2552 +2013-10-01,"Vehicle Fuel Consumption","Florida","FL",15 +2013-10-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-10-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-10-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2013-10-01,"Vehicle Fuel Consumption","Minnesota","MN",4 +2013-10-01,"Vehicle Fuel Consumption","South Carolina","SC",2 +2013-10-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-10-01,"Vehicle Fuel Consumption","Washington","WA",36 +2013-10-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2013-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-10-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-10-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-10-01,"Vehicle Fuel Consumption","Nevada","NV",51 +2013-10-01,"Vehicle Fuel Consumption","Missouri","MO",4 +2013-10-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-10-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-10-01,"Vehicle Fuel Consumption","California","CA",1199 +2013-10-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-10-01,"Vehicle Fuel Consumption","Utah","UT",19 +2013-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2013-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",17 +2013-10-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2013-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",29 +2013-10-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-10-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-10-01,"Vehicle Fuel Consumption","Georgia","GA",85 +2013-10-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-11-01,"Commercial Consumption","Wyoming","WY",1324 +2013-11-01,"Commercial Consumption","Washington","WA",5850 +2013-11-01,"Commercial Consumption","Colorado","CO",6191 +2013-11-01,"Commercial Consumption","Missouri","MO",6202 +2013-11-01,"Commercial Consumption","New Jersey","NJ",17094 +2013-11-01,"Commercial Consumption","New Hampshire","NH",654 +2013-11-01,"Commercial Consumption","Montana","MT",2345 +2013-11-01,"Commercial Consumption","California","CA",23656 +2013-11-01,"Commercial Consumption","Mississippi","MS",1891 +2013-11-01,"Commercial Consumption","Oregon","OR",3369 +2013-11-01,"Commercial Consumption","Wisconsin","WI",10558 +2013-11-01,"Commercial Consumption","Texas","TX",16598 +2013-11-01,"Commercial Consumption","Vermont","VT",569 +2013-11-01,"Commercial Consumption","Idaho","ID",1892 +2013-11-01,"Commercial Consumption","Tennessee","TN",5361 +2013-11-01,"Commercial Consumption","Illinois","IL",25955 +2013-11-01,"Commercial Consumption","South Carolina","SC",2695 +2013-11-01,"Commercial Consumption","Maine","ME",882 +2013-11-01,"Commercial Consumption","Maryland","MD",7934 +2013-11-01,"Commercial Consumption","Connecticut","CT",4373 +2013-11-01,"Commercial Consumption","New Mexico","NM",3176 +2013-11-01,"Commercial Consumption","Kansas","KS",2720 +2013-11-01,"Commercial Consumption","Florida","FL",5130 +2013-11-01,"Commercial Consumption","Nebraska","NE",3145 +2013-11-01,"Commercial Consumption","North Carolina","NC",6415 +2013-11-01,"Commercial Consumption","Utah","UT",4130 +2013-11-01,"Commercial Consumption","Oklahoma","OK",2934 +2013-11-01,"Commercial Consumption","Georgia","GA",6099 +2013-11-01,"Commercial Consumption","Arkansas","AR",4786 +2013-11-01,"Commercial Consumption","New York","NY",31697 +2013-11-01,"Commercial Consumption","Nevada","NV",2767 +2013-11-01,"Commercial Consumption","Michigan","MI",17643 +2013-11-01,"Commercial Consumption","West Virginia","WV",2759 +2013-11-01,"Commercial Consumption","Massachusetts","MA",10392 +2013-11-01,"Commercial Consumption","Kentucky","KY",4325 +2013-11-01,"Commercial Consumption","Iowa","IA",6700 +2013-11-01,"Commercial Consumption","Alabama","AL",3263 +2013-11-01,"Commercial Consumption","Delaware","DE",1305 +2013-11-01,"Commercial Consumption","Louisiana","LA",2896 +2013-11-01,"Commercial Consumption","District of Columbia","DC",1981 +2013-11-01,"Commercial Consumption","Minnesota","MN",11586 +2013-11-01,"Commercial Consumption","Virginia","VA",8078 +2013-11-01,"Commercial Consumption","Pennsylvania","PA",17211 +2013-11-01,"Commercial Consumption","South Dakota","SD",1430 +2013-11-01,"Commercial Consumption","Ohio","OH",19814 +2013-11-01,"Commercial Consumption","Alaska","AK",2222 +2013-11-01,"Commercial Consumption","Indiana","IN",9456 +2013-11-01,"Commercial Consumption","North Dakota","ND",1576 +2013-11-01,"Commercial Consumption","U.S.","U.S.",345132 +2013-11-01,"Commercial Consumption","Rhode Island","RI",1135 +2013-11-01,"Commercial Consumption","Hawaii","HI",159 +2013-11-01,"Commercial Consumption","Arizona","AZ",2811 +2013-11-01,"Delivered to Consumers","Hawaii","HI",234 +2013-11-01,"Delivered to Consumers","Kentucky","KY",20972 +2013-11-01,"Delivered to Consumers","Colorado","CO",33584 +2013-11-01,"Delivered to Consumers","Oregon","OR",24143 +2013-11-01,"Delivered to Consumers","North Dakota","ND",5163 +2013-11-01,"Delivered to Consumers","Minnesota","MN",44921 +2013-11-01,"Delivered to Consumers","Maryland","MD",19593 +2013-11-01,"Delivered to Consumers","Alaska","AK",7944 +2013-11-01,"Delivered to Consumers","Tennessee","TN",25115 +2013-11-01,"Delivered to Consumers","Ohio","OH",93164 +2013-11-01,"Delivered to Consumers","Wisconsin","WI",43610 +2013-11-01,"Delivered to Consumers","Massachusetts","MA",37185 +2013-11-01,"Delivered to Consumers","District of Columbia","DC",3694 +2013-11-01,"Delivered to Consumers","Oklahoma","OK",37150 +2013-11-01,"Delivered to Consumers","Arizona","AZ",19460 +2013-11-01,"Delivered to Consumers","Florida","FL",90632 +2013-11-01,"Delivered to Consumers","New Mexico","NM",13812 +2013-11-01,"Delivered to Consumers","West Virginia","WV",8467 +2013-11-01,"Delivered to Consumers","Iowa","IA",31615 +2013-11-01,"Delivered to Consumers","Alabama","AL",49972 +2013-11-01,"Delivered to Consumers","Pennsylvania","PA",88998 +2013-11-01,"Delivered to Consumers","North Carolina","NC",41672 +2013-11-01,"Delivered to Consumers","Maine","ME",5493 +2013-11-01,"Delivered to Consumers","Louisiana","LA",107888 +2013-11-01,"Delivered to Consumers","New Hampshire","NH",4346 +2013-11-01,"Delivered to Consumers","Wyoming","WY",7194 +2013-11-01,"Delivered to Consumers","Nebraska","NE",16149 +2013-11-01,"Delivered to Consumers","Missouri","MO",24324 +2013-11-01,"Delivered to Consumers","Texas","TX",271913 +2013-11-01,"Delivered to Consumers","South Carolina","SC",18843 +2013-11-01,"Delivered to Consumers","New Jersey","NJ",60659 +2013-11-01,"Delivered to Consumers","Georgia","GA",53651 +2013-11-01,"Delivered to Consumers","U.S.","U.S.",2118508 +2013-11-01,"Delivered to Consumers","Indiana","IN",63191 +2013-11-01,"Delivered to Consumers","Illinois","IL",106049 +2013-11-01,"Delivered to Consumers","South Dakota","SD",7260 +2013-11-01,"Delivered to Consumers","Rhode Island","RI",7108 +2013-11-01,"Delivered to Consumers","New York","NY",115495 +2013-11-01,"Delivered to Consumers","Montana","MT",7429 +2013-11-01,"Delivered to Consumers","Michigan","MI",81484 +2013-11-01,"Delivered to Consumers","Connecticut","CT",20024 +2013-11-01,"Delivered to Consumers","California","CA",201865 +2013-11-01,"Delivered to Consumers","Utah","UT",19342 +2013-11-01,"Delivered to Consumers","Delaware","DE",7588 +2013-11-01,"Delivered to Consumers","Kansas","KS",18717 +2013-11-01,"Delivered to Consumers","Arkansas","AR",21007 +2013-11-01,"Delivered to Consumers","Mississippi","MS",30054 +2013-11-01,"Delivered to Consumers","Nevada","NV",20296 +2013-11-01,"Delivered to Consumers","Washington","WA",31101 +2013-11-01,"Delivered to Consumers","Vermont","VT",1029 +2013-11-01,"Delivered to Consumers","Idaho","ID",9694 +2013-11-01,"Delivered to Consumers","Virginia","VA",38217 +2013-11-01,"Electric Power Consumption","Virginia","VA",13604 +2013-11-01,"Electric Power Consumption","Rhode Island","RI",2864 +2013-11-01,"Electric Power Consumption","Michigan","MI",7580 +2013-11-01,"Electric Power Consumption","West Virginia","WV",50 +2013-11-01,"Electric Power Consumption","Tennessee","TN",3171 +2013-11-01,"Electric Power Consumption","North Carolina","NC",16111 +2013-11-01,"Electric Power Consumption","Mississippi","MS",16777 +2013-11-01,"Electric Power Consumption","Kentucky","KY",586 +2013-11-01,"Electric Power Consumption","North Dakota","ND",95 +2013-11-01,"Electric Power Consumption","Maryland","MD",480 +2013-11-01,"Electric Power Consumption","Arizona","AZ",11974 +2013-11-01,"Electric Power Consumption","California","CA",69803 +2013-11-01,"Electric Power Consumption","Pennsylvania","PA",28583 +2013-11-01,"Electric Power Consumption","Wyoming","WY",46 +2013-11-01,"Electric Power Consumption","Delaware","DE",2480 +2013-11-01,"Electric Power Consumption","Connecticut","CT",8365 +2013-11-01,"Electric Power Consumption","Georgia","GA",19470 +2013-11-01,"Electric Power Consumption","New Mexico","NM",5323 +2013-11-01,"Electric Power Consumption","New Jersey","NJ",15283 +2013-11-01,"Electric Power Consumption","Arkansas","AR",4686 +2013-11-01,"Electric Power Consumption","Texas","TX",105182 +2013-11-01,"Electric Power Consumption","Iowa","IA",802 +2013-11-01,"Electric Power Consumption","Montana","MT",565 +2013-11-01,"Electric Power Consumption","Illinois","IL",2469 +2013-11-01,"Electric Power Consumption","Massachusetts","MA",9410 +2013-11-01,"Electric Power Consumption","Kansas","KS",1054 +2013-11-01,"Electric Power Consumption","Wisconsin","WI",4085 +2013-11-01,"Electric Power Consumption","Hawaii","HI",NA +2013-11-01,"Electric Power Consumption","Idaho","ID",2173 +2013-11-01,"Electric Power Consumption","Nevada","NV",12878 +2013-11-01,"Electric Power Consumption","Vermont","VT",4 +2013-11-01,"Electric Power Consumption","Indiana","IN",6266 +2013-11-01,"Electric Power Consumption","Alabama","AL",27211 +2013-11-01,"Electric Power Consumption","Louisiana","LA",18797 +2013-11-01,"Electric Power Consumption","Colorado","CO",5642 +2013-11-01,"Electric Power Consumption","Oregon","OR",10279 +2013-11-01,"Electric Power Consumption","Nebraska","NE",304 +2013-11-01,"Electric Power Consumption","Ohio","OH",13709 +2013-11-01,"Electric Power Consumption","New Hampshire","NH",2396 +2013-11-01,"Electric Power Consumption","Washington","WA",8058 +2013-11-01,"Electric Power Consumption","South Dakota","SD",451 +2013-11-01,"Electric Power Consumption","Maine","ME",1678 +2013-11-01,"Electric Power Consumption","South Carolina","SC",5401 +2013-11-01,"Electric Power Consumption","New York","NY",31999 +2013-11-01,"Electric Power Consumption","Oklahoma","OK",14313 +2013-11-01,"Electric Power Consumption","Utah","UT",4433 +2013-11-01,"Electric Power Consumption","Minnesota","MN",3574 +2013-11-01,"Electric Power Consumption","U.S.","U.S.",601019 +2013-11-01,"Electric Power Consumption","Missouri","MO",1641 +2013-11-01,"Electric Power Consumption","Florida","FL",76000 +2013-11-01,"Electric Power Consumption","Alaska","AK",2917 +2013-11-01,"Industrial Consumption","Washington","WA",7385 +2013-11-01,"Industrial Consumption","Minnesota","MN",14530 +2013-11-01,"Industrial Consumption","Kentucky","KY",9770 +2013-11-01,"Industrial Consumption","Rhode Island","RI",767 +2013-11-01,"Industrial Consumption","Maryland","MD",1386 +2013-11-01,"Industrial Consumption","Arizona","AZ",1992 +2013-11-01,"Industrial Consumption","Utah","UT",3539 +2013-11-01,"Industrial Consumption","New York","NY",7068 +2013-11-01,"Industrial Consumption","Maine","ME",2737 +2013-11-01,"Industrial Consumption","Wyoming","WY",4294 +2013-11-01,"Industrial Consumption","Tennessee","TN",9645 +2013-11-01,"Industrial Consumption","Indiana","IN",30849 +2013-11-01,"Industrial Consumption","Missouri","MO",5669 +2013-11-01,"Industrial Consumption","Oregon","OR",4927 +2013-11-01,"Industrial Consumption","Virginia","VA",6886 +2013-11-01,"Industrial Consumption","New Jersey","NJ",5067 +2013-11-01,"Industrial Consumption","Michigan","MI",15127 +2013-11-01,"Industrial Consumption","Georgia","GA",13462 +2013-11-01,"Industrial Consumption","North Dakota","ND",2130 +2013-11-01,"Industrial Consumption","Oklahoma","OK",15372 +2013-11-01,"Industrial Consumption","Pennsylvania","PA",18668 +2013-11-01,"Industrial Consumption","California","CA",64981 +2013-11-01,"Industrial Consumption","Vermont","VT",122 +2013-11-01,"Industrial Consumption","Illinois","IL",26834 +2013-11-01,"Industrial Consumption","District of Columbia","DC",0 +2013-11-01,"Industrial Consumption","Hawaii","HI",26 +2013-11-01,"Industrial Consumption","Louisiana","LA",83060 +2013-11-01,"Industrial Consumption","New Mexico","NM",1633 +2013-11-01,"Industrial Consumption","Kansas","KS",9630 +2013-11-01,"Industrial Consumption","U.S.","U.S.",652358 +2013-11-01,"Industrial Consumption","Mississippi","MS",9109 +2013-11-01,"Industrial Consumption","West Virginia","WV",2459 +2013-11-01,"Industrial Consumption","New Hampshire","NH",784 +2013-11-01,"Industrial Consumption","Connecticut","CT",2658 +2013-11-01,"Industrial Consumption","Delaware","DE",2787 +2013-11-01,"Industrial Consumption","Massachusetts","MA",4912 +2013-11-01,"Industrial Consumption","Colorado","CO",7236 +2013-11-01,"Industrial Consumption","Ohio","OH",24271 +2013-11-01,"Industrial Consumption","Nevada","NV",1192 +2013-11-01,"Industrial Consumption","Arkansas","AR",7798 +2013-11-01,"Industrial Consumption","Idaho","ID",2358 +2013-11-01,"Industrial Consumption","Iowa","IA",16839 +2013-11-01,"Industrial Consumption","Alaska","AK",384 +2013-11-01,"Industrial Consumption","Montana","MT",2010 +2013-11-01,"Industrial Consumption","South Dakota","SD",3950 +2013-11-01,"Industrial Consumption","Texas","TX",134167 +2013-11-01,"Industrial Consumption","South Carolina","SC",7095 +2013-11-01,"Industrial Consumption","Nebraska","NE",8513 +2013-11-01,"Industrial Consumption","Florida","FL",8213 +2013-11-01,"Industrial Consumption","North Carolina","NC",9626 +2013-11-01,"Industrial Consumption","Alabama","AL",15559 +2013-11-01,"Industrial Consumption","Wisconsin","WI",12884 +2013-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",124369 +2013-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",74032 +2013-11-01,"Residential Consumption","Texas","TX",15719 +2013-11-01,"Residential Consumption","Connecticut","CT",4624 +2013-11-01,"Residential Consumption","Tennessee","TN",6931 +2013-11-01,"Residential Consumption","Virginia","VA",9631 +2013-11-01,"Residential Consumption","Maine","ME",195 +2013-11-01,"Residential Consumption","Alabama","AL",3925 +2013-11-01,"Residential Consumption","U.S.","U.S.",517529 +2013-11-01,"Residential Consumption","Illinois","IL",50768 +2013-11-01,"Residential Consumption","Maryland","MD",9776 +2013-11-01,"Residential Consumption","Florida","FL",1275 +2013-11-01,"Residential Consumption","North Dakota","ND",1361 +2013-11-01,"Residential Consumption","New Jersey","NJ",23199 +2013-11-01,"Residential Consumption","Kentucky","KY",6289 +2013-11-01,"Residential Consumption","Delaware","DE",1016 +2013-11-01,"Residential Consumption","Arizona","AZ",2542 +2013-11-01,"Residential Consumption","New York","NY",44459 +2013-11-01,"Residential Consumption","South Carolina","SC",3651 +2013-11-01,"Residential Consumption","Louisiana","LA",3131 +2013-11-01,"Residential Consumption","Nevada","NV",3411 +2013-11-01,"Residential Consumption","Pennsylvania","PA",24510 +2013-11-01,"Residential Consumption","Idaho","ID",3260 +2013-11-01,"Residential Consumption","New Hampshire","NH",507 +2013-11-01,"Residential Consumption","North Carolina","NC",9514 +2013-11-01,"Residential Consumption","Georgia","GA",14538 +2013-11-01,"Residential Consumption","Ohio","OH",35345 +2013-11-01,"Residential Consumption","Vermont","VT",333 +2013-11-01,"Residential Consumption","Utah","UT",7222 +2013-11-01,"Residential Consumption","Michigan","MI",41106 +2013-11-01,"Residential Consumption","Minnesota","MN",15228 +2013-11-01,"Residential Consumption","Kansas","KS",5313 +2013-11-01,"Residential Consumption","California","CA",42264 +2013-11-01,"Residential Consumption","Alaska","AK",2420 +2013-11-01,"Residential Consumption","Oregon","OR",5555 +2013-11-01,"Residential Consumption","Hawaii","HI",48 +2013-11-01,"Residential Consumption","Wisconsin","WI",16075 +2013-11-01,"Residential Consumption","New Mexico","NM",3667 +2013-11-01,"Residential Consumption","Massachusetts","MA",12413 +2013-11-01,"Residential Consumption","Montana","MT",2510 +2013-11-01,"Residential Consumption","Missouri","MO",10809 +2013-11-01,"Residential Consumption","West Virginia","WV",3198 +2013-11-01,"Residential Consumption","Mississippi","MS",2275 +2013-11-01,"Residential Consumption","South Dakota","SD",1429 +2013-11-01,"Residential Consumption","District of Columbia","DC",1642 +2013-11-01,"Residential Consumption","Indiana","IN",16619 +2013-11-01,"Residential Consumption","Colorado","CO",14493 +2013-11-01,"Residential Consumption","Washington","WA",9774 +2013-11-01,"Residential Consumption","Rhode Island","RI",2336 +2013-11-01,"Residential Consumption","Iowa","IA",7273 +2013-11-01,"Residential Consumption","Nebraska","NE",4183 +2013-11-01,"Residential Consumption","Arkansas","AR",3735 +2013-11-01,"Residential Consumption","Oklahoma","OK",4503 +2013-11-01,"Residential Consumption","Wyoming","WY",1529 +2013-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-11-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-11-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-11-01,"Vehicle Fuel Consumption","Texas","TX",247 +2013-11-01,"Vehicle Fuel Consumption","Michigan","MI",28 +2013-11-01,"Vehicle Fuel Consumption","Colorado","CO",22 +2013-11-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-11-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-11-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-11-01,"Vehicle Fuel Consumption","Utah","UT",18 +2013-11-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-11-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-11-01,"Vehicle Fuel Consumption","Florida","FL",14 +2013-11-01,"Vehicle Fuel Consumption","Georgia","GA",82 +2013-11-01,"Vehicle Fuel Consumption","South Carolina","SC",1 +2013-11-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2469 +2013-11-01,"Vehicle Fuel Consumption","Missouri","MO",3 +2013-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",57 +2013-11-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-11-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-11-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-11-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-11-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-11-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-11-01,"Vehicle Fuel Consumption","Arizona","AZ",142 +2013-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-11-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",28 +2013-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-11-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-11-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-11-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-11-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-11-01,"Vehicle Fuel Consumption","Washington","WA",34 +2013-11-01,"Vehicle Fuel Consumption","Nevada","NV",49 +2013-11-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",71 +2013-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2013-11-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-11-01,"Vehicle Fuel Consumption","Minnesota","MN",3 +2013-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2013-11-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-11-01,"Vehicle Fuel Consumption","California","CA",1161 +2013-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-11-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2013-11-01,"Vehicle Fuel Consumption","New York","NY",273 +2013-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-12-01,"Commercial Consumption","Wyoming","WY",2001 +2013-12-01,"Commercial Consumption","Ohio","OH",25921 +2013-12-01,"Commercial Consumption","Connecticut","CT",6698 +2013-12-01,"Commercial Consumption","California","CA",31124 +2013-12-01,"Commercial Consumption","Indiana","IN",13199 +2013-12-01,"Commercial Consumption","West Virginia","WV",2783 +2013-12-01,"Commercial Consumption","Maine","ME",1320 +2013-12-01,"Commercial Consumption","Kentucky","KY",5748 +2013-12-01,"Commercial Consumption","Georgia","GA",7683 +2013-12-01,"Commercial Consumption","Arizona","AZ",3927 +2013-12-01,"Commercial Consumption","District of Columbia","DC",2289 +2013-12-01,"Commercial Consumption","Oregon","OR",4970 +2013-12-01,"Commercial Consumption","Missouri","MO",10172 +2013-12-01,"Commercial Consumption","Massachusetts","MA",13980 +2013-12-01,"Commercial Consumption","New Hampshire","NH",1455 +2013-12-01,"Commercial Consumption","Montana","MT",3626 +2013-12-01,"Commercial Consumption","U.S.","U.S.",473848 +2013-12-01,"Commercial Consumption","Maryland","MD",9028 +2013-12-01,"Commercial Consumption","Kansas","KS",5817 +2013-12-01,"Commercial Consumption","Vermont","VT",682 +2013-12-01,"Commercial Consumption","Nebraska","NE",5099 +2013-12-01,"Commercial Consumption","South Dakota","SD",2122 +2013-12-01,"Commercial Consumption","Hawaii","HI",159 +2013-12-01,"Commercial Consumption","Delaware","DE",1627 +2013-12-01,"Commercial Consumption","Michigan","MI",26493 +2013-12-01,"Commercial Consumption","Minnesota","MN",18044 +2013-12-01,"Commercial Consumption","New Mexico","NM",4299 +2013-12-01,"Commercial Consumption","Oklahoma","OK",6449 +2013-12-01,"Commercial Consumption","Alaska","AK",2629 +2013-12-01,"Commercial Consumption","Arkansas","AR",6161 +2013-12-01,"Commercial Consumption","Alabama","AL",3545 +2013-12-01,"Commercial Consumption","New York","NY",39694 +2013-12-01,"Commercial Consumption","Mississippi","MS",3038 +2013-12-01,"Commercial Consumption","Illinois","IL",35985 +2013-12-01,"Commercial Consumption","Nevada","NV",4103 +2013-12-01,"Commercial Consumption","Washington","WA",7706 +2013-12-01,"Commercial Consumption","North Dakota","ND",2461 +2013-12-01,"Commercial Consumption","Colorado","CO",9566 +2013-12-01,"Commercial Consumption","Utah","UT",7723 +2013-12-01,"Commercial Consumption","Pennsylvania","PA",22532 +2013-12-01,"Commercial Consumption","Florida","FL",5637 +2013-12-01,"Commercial Consumption","Rhode Island","RI",1887 +2013-12-01,"Commercial Consumption","Idaho","ID",3087 +2013-12-01,"Commercial Consumption","South Carolina","SC",2647 +2013-12-01,"Commercial Consumption","North Carolina","NC",6700 +2013-12-01,"Commercial Consumption","Virginia","VA",8753 +2013-12-01,"Commercial Consumption","Wisconsin","WI",16607 +2013-12-01,"Commercial Consumption","New Jersey","NJ",21606 +2013-12-01,"Commercial Consumption","Texas","TX",24438 +2013-12-01,"Commercial Consumption","Iowa","IA",8819 +2013-12-01,"Commercial Consumption","Tennessee","TN",8206 +2013-12-01,"Commercial Consumption","Louisiana","LA",3603 +2013-12-01,"Delivered to Consumers","New York","NY",154142 +2013-12-01,"Delivered to Consumers","Tennessee","TN",34498 +2013-12-01,"Delivered to Consumers","Connecticut","CT",25410 +2013-12-01,"Delivered to Consumers","Arkansas","AR",28512 +2013-12-01,"Delivered to Consumers","Massachusetts","MA",44149 +2013-12-01,"Delivered to Consumers","South Carolina","SC",19660 +2013-12-01,"Delivered to Consumers","Louisiana","LA",120300 +2013-12-01,"Delivered to Consumers","New Hampshire","NH",5975 +2013-12-01,"Delivered to Consumers","North Dakota","ND",8148 +2013-12-01,"Delivered to Consumers","West Virginia","WV",9318 +2013-12-01,"Delivered to Consumers","Illinois","IL",149158 +2013-12-01,"Delivered to Consumers","Alabama","AL",52940 +2013-12-01,"Delivered to Consumers","Missouri","MO",40177 +2013-12-01,"Delivered to Consumers","Washington","WA",41309 +2013-12-01,"Delivered to Consumers","Minnesota","MN",66202 +2013-12-01,"Delivered to Consumers","Florida","FL",87792 +2013-12-01,"Delivered to Consumers","Utah","UT",30906 +2013-12-01,"Delivered to Consumers","New Mexico","NM",19055 +2013-12-01,"Delivered to Consumers","Ohio","OH",117363 +2013-12-01,"Delivered to Consumers","Michigan","MI",111093 +2013-12-01,"Delivered to Consumers","Mississippi","MS",35890 +2013-12-01,"Delivered to Consumers","New Jersey","NJ",77175 +2013-12-01,"Delivered to Consumers","Maine","ME",7096 +2013-12-01,"Delivered to Consumers","Arizona","AZ",30814 +2013-12-01,"Delivered to Consumers","District of Columbia","DC",4501 +2013-12-01,"Delivered to Consumers","Wyoming","WY",8802 +2013-12-01,"Delivered to Consumers","Alaska","AK",9136 +2013-12-01,"Delivered to Consumers","Oklahoma","OK",57178 +2013-12-01,"Delivered to Consumers","Colorado","CO",51684 +2013-12-01,"Delivered to Consumers","Iowa","IA",41177 +2013-12-01,"Delivered to Consumers","North Carolina","NC",47583 +2013-12-01,"Delivered to Consumers","U.S.","U.S.",2700111 +2013-12-01,"Delivered to Consumers","Indiana","IN",81839 +2013-12-01,"Delivered to Consumers","Rhode Island","RI",7928 +2013-12-01,"Delivered to Consumers","Montana","MT",10272 +2013-12-01,"Delivered to Consumers","Hawaii","HI",252 +2013-12-01,"Delivered to Consumers","Kentucky","KY",26319 +2013-12-01,"Delivered to Consumers","Virginia","VA",42505 +2013-12-01,"Delivered to Consumers","Nevada","NV",27930 +2013-12-01,"Delivered to Consumers","Maryland","MD",25999 +2013-12-01,"Delivered to Consumers","Kansas","KS",31706 +2013-12-01,"Delivered to Consumers","Pennsylvania","PA",111709 +2013-12-01,"Delivered to Consumers","Nebraska","NE",21524 +2013-12-01,"Delivered to Consumers","California","CA",260454 +2013-12-01,"Delivered to Consumers","Texas","TX",325552 +2013-12-01,"Delivered to Consumers","Georgia","GA",60252 +2013-12-01,"Delivered to Consumers","Delaware","DE",8817 +2013-12-01,"Delivered to Consumers","Vermont","VT",1396 +2013-12-01,"Delivered to Consumers","South Dakota","SD",9859 +2013-12-01,"Delivered to Consumers","Idaho","ID",14165 +2013-12-01,"Delivered to Consumers","Wisconsin","WI",62401 +2013-12-01,"Delivered to Consumers","Oregon","OR",32092 +2013-12-01,"Electric Power Consumption","Pennsylvania","PA",30198 +2013-12-01,"Electric Power Consumption","U.S.","U.S.",668792 +2013-12-01,"Electric Power Consumption","Kentucky","KY",552 +2013-12-01,"Electric Power Consumption","Alaska","AK",3255 +2013-12-01,"Electric Power Consumption","Utah","UT",5328 +2013-12-01,"Electric Power Consumption","Oregon","OR",12574 +2013-12-01,"Electric Power Consumption","Michigan","MI",9160 +2013-12-01,"Electric Power Consumption","Indiana","IN",7008 +2013-12-01,"Electric Power Consumption","Alabama","AL",27437 +2013-12-01,"Electric Power Consumption","New York","NY",37174 +2013-12-01,"Electric Power Consumption","Oklahoma","OK",21930 +2013-12-01,"Electric Power Consumption","Wisconsin","WI",4132 +2013-12-01,"Electric Power Consumption","Vermont","VT",4 +2013-12-01,"Electric Power Consumption","South Dakota","SD",963 +2013-12-01,"Electric Power Consumption","Montana","MT",918 +2013-12-01,"Electric Power Consumption","Washington","WA",11432 +2013-12-01,"Electric Power Consumption","Virginia","VA",12843 +2013-12-01,"Electric Power Consumption","Idaho","ID",3249 +2013-12-01,"Electric Power Consumption","Colorado","CO",9004 +2013-12-01,"Electric Power Consumption","Texas","TX",115254 +2013-12-01,"Electric Power Consumption","Rhode Island","RI",2065 +2013-12-01,"Electric Power Consumption","Illinois","IL",2392 +2013-12-01,"Electric Power Consumption","West Virginia","WV",136 +2013-12-01,"Electric Power Consumption","Nebraska","NE",241 +2013-12-01,"Electric Power Consumption","North Carolina","NC",18942 +2013-12-01,"Electric Power Consumption","New Hampshire","NH",2412 +2013-12-01,"Electric Power Consumption","Maryland","MD",2372 +2013-12-01,"Electric Power Consumption","Delaware","DE",2661 +2013-12-01,"Electric Power Consumption","Florida","FL",71591 +2013-12-01,"Electric Power Consumption","New Jersey","NJ",17378 +2013-12-01,"Electric Power Consumption","Minnesota","MN",4788 +2013-12-01,"Electric Power Consumption","Iowa","IA",1067 +2013-12-01,"Electric Power Consumption","Maine","ME",2383 +2013-12-01,"Electric Power Consumption","California","CA",81844 +2013-12-01,"Electric Power Consumption","New Mexico","NM",6523 +2013-12-01,"Electric Power Consumption","South Carolina","SC",5131 +2013-12-01,"Electric Power Consumption","Massachusetts","MA",6491 +2013-12-01,"Electric Power Consumption","Missouri","MO",3287 +2013-12-01,"Electric Power Consumption","Ohio","OH",13430 +2013-12-01,"Electric Power Consumption","North Dakota","ND",142 +2013-12-01,"Electric Power Consumption","Arizona","AZ",18509 +2013-12-01,"Electric Power Consumption","Kansas","KS",1283 +2013-12-01,"Electric Power Consumption","Nevada","NV",14917 +2013-12-01,"Electric Power Consumption","Tennessee","TN",2256 +2013-12-01,"Electric Power Consumption","Mississippi","MS",17909 +2013-12-01,"Electric Power Consumption","Louisiana","LA",23080 +2013-12-01,"Electric Power Consumption","Arkansas","AR",6795 +2013-12-01,"Electric Power Consumption","Wyoming","WY",55 +2013-12-01,"Electric Power Consumption","Hawaii","HI",NA +2013-12-01,"Electric Power Consumption","Connecticut","CT",7952 +2013-12-01,"Electric Power Consumption","Georgia","GA",18344 +2013-12-01,"Industrial Consumption","Colorado","CO",9588 +2013-12-01,"Industrial Consumption","Washington","WA",7712 +2013-12-01,"Industrial Consumption","Alabama","AL",15726 +2013-12-01,"Industrial Consumption","Wisconsin","WI",15644 +2013-12-01,"Industrial Consumption","Tennessee","TN",10270 +2013-12-01,"Industrial Consumption","Georgia","GA",14441 +2013-12-01,"Industrial Consumption","Massachusetts","MA",4774 +2013-12-01,"Industrial Consumption","New York","NY",8274 +2013-12-01,"Industrial Consumption","Texas","TX",142798 +2013-12-01,"Industrial Consumption","Nebraska","NE",8446 +2013-12-01,"Industrial Consumption","Minnesota","MN",16359 +2013-12-01,"Industrial Consumption","Florida","FL",8760 +2013-12-01,"Industrial Consumption","Michigan","MI",18352 +2013-12-01,"Industrial Consumption","Kentucky","KY",10410 +2013-12-01,"Industrial Consumption","Montana","MT",1979 +2013-12-01,"Industrial Consumption","Louisiana","LA",86493 +2013-12-01,"Industrial Consumption","Kansas","KS",11024 +2013-12-01,"Industrial Consumption","U.S.","U.S.",706724 +2013-12-01,"Industrial Consumption","West Virginia","WV",2528 +2013-12-01,"Industrial Consumption","North Dakota","ND",3237 +2013-12-01,"Industrial Consumption","Hawaii","HI",42 +2013-12-01,"Industrial Consumption","Oklahoma","OK",15979 +2013-12-01,"Industrial Consumption","Mississippi","MS",9811 +2013-12-01,"Industrial Consumption","New Jersey","NJ",4789 +2013-12-01,"Industrial Consumption","Iowa","IA",17356 +2013-12-01,"Industrial Consumption","Maryland","MD",1396 +2013-12-01,"Industrial Consumption","South Dakota","SD",4136 +2013-12-01,"Industrial Consumption","Ohio","OH",27355 +2013-12-01,"Industrial Consumption","Pennsylvania","PA",20477 +2013-12-01,"Industrial Consumption","South Carolina","SC",6980 +2013-12-01,"Industrial Consumption","Virginia","VA",6975 +2013-12-01,"Industrial Consumption","New Hampshire","NH",850 +2013-12-01,"Industrial Consumption","Idaho","ID",2582 +2013-12-01,"Industrial Consumption","Rhode Island","RI",891 +2013-12-01,"Industrial Consumption","District of Columbia","DC",0 +2013-12-01,"Industrial Consumption","Alaska","AK",393 +2013-12-01,"Industrial Consumption","Nevada","NV",1291 +2013-12-01,"Industrial Consumption","Maine","ME",3055 +2013-12-01,"Industrial Consumption","California","CA",70882 +2013-12-01,"Industrial Consumption","Vermont","VT",165 +2013-12-01,"Industrial Consumption","Indiana","IN",35361 +2013-12-01,"Industrial Consumption","New Mexico","NM",1756 +2013-12-01,"Industrial Consumption","Utah","UT",3487 +2013-12-01,"Industrial Consumption","Oregon","OR",5645 +2013-12-01,"Industrial Consumption","Arkansas","AR",8649 +2013-12-01,"Industrial Consumption","Wyoming","WY",4406 +2013-12-01,"Industrial Consumption","Connecticut","CT",2960 +2013-12-01,"Industrial Consumption","Illinois","IL",30650 +2013-12-01,"Industrial Consumption","Missouri","MO",6666 +2013-12-01,"Industrial Consumption","Arizona","AZ",2317 +2013-12-01,"Industrial Consumption","Delaware","DE",2865 +2013-12-01,"Industrial Consumption","North Carolina","NC",9743 +2013-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",126358 +2013-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",94357 +2013-12-01,"Residential Consumption","North Carolina","NC",12192 +2013-12-01,"Residential Consumption","Louisiana","LA",7120 +2013-12-01,"Residential Consumption","Hawaii","HI",49 +2013-12-01,"Residential Consumption","Maryland","MD",13185 +2013-12-01,"Residential Consumption","District of Columbia","DC",2139 +2013-12-01,"Residential Consumption","Wisconsin","WI",26010 +2013-12-01,"Residential Consumption","Vermont","VT",544 +2013-12-01,"Residential Consumption","Tennessee","TN",13758 +2013-12-01,"Residential Consumption","Michigan","MI",57059 +2013-12-01,"Residential Consumption","Minnesota","MN",27007 +2013-12-01,"Residential Consumption","Maine","ME",338 +2013-12-01,"Residential Consumption","North Dakota","ND",2307 +2013-12-01,"Residential Consumption","Washington","WA",14423 +2013-12-01,"Residential Consumption","South Carolina","SC",4901 +2013-12-01,"Residential Consumption","Oregon","OR",8890 +2013-12-01,"Residential Consumption","Virginia","VA",13916 +2013-12-01,"Residential Consumption","Nevada","NV",7568 +2013-12-01,"Residential Consumption","Idaho","ID",5235 +2013-12-01,"Residential Consumption","Texas","TX",42807 +2013-12-01,"Residential Consumption","Georgia","GA",19700 +2013-12-01,"Residential Consumption","Pennsylvania","PA",38477 +2013-12-01,"Residential Consumption","Indiana","IN",26270 +2013-12-01,"Residential Consumption","Colorado","CO",23504 +2013-12-01,"Residential Consumption","Alabama","AL",6216 +2013-12-01,"Residential Consumption","West Virginia","WV",3870 +2013-12-01,"Residential Consumption","Illinois","IL",80106 +2013-12-01,"Residential Consumption","Ohio","OH",50631 +2013-12-01,"Residential Consumption","Iowa","IA",13934 +2013-12-01,"Residential Consumption","Connecticut","CT",7795 +2013-12-01,"Residential Consumption","Nebraska","NE",7733 +2013-12-01,"Residential Consumption","Montana","MT",3749 +2013-12-01,"Residential Consumption","Mississippi","MS",5130 +2013-12-01,"Residential Consumption","Utah","UT",14349 +2013-12-01,"Residential Consumption","New Mexico","NM",6464 +2013-12-01,"Residential Consumption","Florida","FL",1789 +2013-12-01,"Residential Consumption","Arkansas","AR",6904 +2013-12-01,"Residential Consumption","New Jersey","NJ",33386 +2013-12-01,"Residential Consumption","Missouri","MO",20048 +2013-12-01,"Residential Consumption","California","CA",75406 +2013-12-01,"Residential Consumption","New York","NY",68718 +2013-12-01,"Residential Consumption","Rhode Island","RI",3078 +2013-12-01,"Residential Consumption","South Dakota","SD",2637 +2013-12-01,"Residential Consumption","Oklahoma","OK",12791 +2013-12-01,"Residential Consumption","Arizona","AZ",5914 +2013-12-01,"Residential Consumption","Wyoming","WY",2338 +2013-12-01,"Residential Consumption","Massachusetts","MA",18845 +2013-12-01,"Residential Consumption","New Hampshire","NH",1253 +2013-12-01,"Residential Consumption","Kentucky","KY",9606 +2013-12-01,"Residential Consumption","Kansas","KS",13581 +2013-12-01,"Residential Consumption","Delaware","DE",1663 +2013-12-01,"Residential Consumption","Alaska","AK",2859 +2013-12-01,"Residential Consumption","U.S.","U.S.",848195 +2013-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2013-12-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2013-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",8 +2013-12-01,"Vehicle Fuel Consumption","Arizona","AZ",147 +2013-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",6 +2013-12-01,"Vehicle Fuel Consumption","Missouri","MO",4 +2013-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2013-12-01,"Vehicle Fuel Consumption","Colorado","CO",23 +2013-12-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2013-12-01,"Vehicle Fuel Consumption","Nevada","NV",51 +2013-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2013-12-01,"Vehicle Fuel Consumption","Florida","FL",15 +2013-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2013-12-01,"Vehicle Fuel Consumption","Indiana","IN",2 +2013-12-01,"Vehicle Fuel Consumption","Georgia","GA",85 +2013-12-01,"Vehicle Fuel Consumption","Illinois","IL",24 +2013-12-01,"Vehicle Fuel Consumption","Tennessee","TN",7 +2013-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2013-12-01,"Vehicle Fuel Consumption","Ohio","OH",25 +2013-12-01,"Vehicle Fuel Consumption","New York","NY",282 +2013-12-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2013-12-01,"Vehicle Fuel Consumption","Michigan","MI",29 +2013-12-01,"Vehicle Fuel Consumption","South Carolina","SC",2 +2013-12-01,"Vehicle Fuel Consumption","California","CA",1199 +2013-12-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2013-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2013-12-01,"Vehicle Fuel Consumption","Kentucky","KY",2 +2013-12-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2013-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",29 +2013-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2013-12-01,"Vehicle Fuel Consumption","North Carolina","NC",6 +2013-12-01,"Vehicle Fuel Consumption","Iowa","IA",1 +2013-12-01,"Vehicle Fuel Consumption","Alabama","AL",16 +2013-12-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2013-12-01,"Vehicle Fuel Consumption","Minnesota","MN",4 +2013-12-01,"Vehicle Fuel Consumption","Connecticut","CT",4 +2013-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2013-12-01,"Vehicle Fuel Consumption","Washington","WA",36 +2013-12-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2013-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",26 +2013-12-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2013-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",73 +2013-12-01,"Vehicle Fuel Consumption","Texas","TX",255 +2013-12-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2013-12-01,"Vehicle Fuel Consumption","Hawaii","HI",1 +2013-12-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2013-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2552 +2013-12-01,"Vehicle Fuel Consumption","Utah","UT",19 +2013-12-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2013-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",17 +2013-12-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2013-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-01-01,"Commercial Consumption","South Carolina","SC",4082 +2014-01-01,"Commercial Consumption","Pennsylvania","PA",30181 +2014-01-01,"Commercial Consumption","Kentucky","KY",8298 +2014-01-01,"Commercial Consumption","Vermont","VT",727 +2014-01-01,"Commercial Consumption","Alaska","AK",2055 +2014-01-01,"Commercial Consumption","Arizona","AZ",3915 +2014-01-01,"Commercial Consumption","Louisiana","LA",4539 +2014-01-01,"Commercial Consumption","Illinois","IL",45646 +2014-01-01,"Commercial Consumption","Colorado","CO",9605 +2014-01-01,"Commercial Consumption","New Jersey","NJ",30128 +2014-01-01,"Commercial Consumption","Texas","TX",27526 +2014-01-01,"Commercial Consumption","Ohio","OH",36807 +2014-01-01,"Commercial Consumption","Connecticut","CT",7462 +2014-01-01,"Commercial Consumption","California","CA",26168 +2014-01-01,"Commercial Consumption","Virginia","VA",12526 +2014-01-01,"Commercial Consumption","Massachusetts","MA",16401 +2014-01-01,"Commercial Consumption","New Hampshire","NH",1691 +2014-01-01,"Commercial Consumption","Maryland","MD",12140 +2014-01-01,"Commercial Consumption","Alabama","AL",5283 +2014-01-01,"Commercial Consumption","New York","NY",48196 +2014-01-01,"Commercial Consumption","West Virginia","WV",3787 +2014-01-01,"Commercial Consumption","Minnesota","MN",19277 +2014-01-01,"Commercial Consumption","U.S.","U.S.",571744 +2014-01-01,"Commercial Consumption","Georgia","GA",12019 +2014-01-01,"Commercial Consumption","Idaho","ID",2739 +2014-01-01,"Commercial Consumption","Arkansas","AR",7755 +2014-01-01,"Commercial Consumption","Washington","WA",7891 +2014-01-01,"Commercial Consumption","Wisconsin","WI",19782 +2014-01-01,"Commercial Consumption","Montana","MT",3113 +2014-01-01,"Commercial Consumption","Maine","ME",1468 +2014-01-01,"Commercial Consumption","Kansas","KS",6217 +2014-01-01,"Commercial Consumption","Florida","FL",6605 +2014-01-01,"Commercial Consumption","Michigan","MI",33083 +2014-01-01,"Commercial Consumption","Indiana","IN",17995 +2014-01-01,"Commercial Consumption","Wyoming","WY",1762 +2014-01-01,"Commercial Consumption","North Carolina","NC",10966 +2014-01-01,"Commercial Consumption","New Mexico","NM",3737 +2014-01-01,"Commercial Consumption","Oregon","OR",4711 +2014-01-01,"Commercial Consumption","Missouri","MO",13133 +2014-01-01,"Commercial Consumption","Nebraska","NE",5443 +2014-01-01,"Commercial Consumption","Delaware","DE",2128 +2014-01-01,"Commercial Consumption","District of Columbia","DC",2961 +2014-01-01,"Commercial Consumption","North Dakota","ND",2345 +2014-01-01,"Commercial Consumption","Utah","UT",6726 +2014-01-01,"Commercial Consumption","Oklahoma","OK",8230 +2014-01-01,"Commercial Consumption","South Dakota","SD",2139 +2014-01-01,"Commercial Consumption","Rhode Island","RI",2364 +2014-01-01,"Commercial Consumption","Iowa","IA",10477 +2014-01-01,"Commercial Consumption","Hawaii","HI",177 +2014-01-01,"Commercial Consumption","Tennessee","TN",11570 +2014-01-01,"Commercial Consumption","Nevada","NV",3961 +2014-01-01,"Commercial Consumption","Mississippi","MS",3807 +2014-01-01,"Delivered to Consumers","West Virginia","WV",13540 +2014-01-01,"Delivered to Consumers","Alaska","AK",7551 +2014-01-01,"Delivered to Consumers","Idaho","ID",12675 +2014-01-01,"Delivered to Consumers","Iowa","IA",44798 +2014-01-01,"Delivered to Consumers","Alabama","AL",65260 +2014-01-01,"Delivered to Consumers","Virginia","VA",53990 +2014-01-01,"Delivered to Consumers","Minnesota","MN",70320 +2014-01-01,"Delivered to Consumers","Utah","UT",26709 +2014-01-01,"Delivered to Consumers","U.S.","U.S.",2997145 +2014-01-01,"Delivered to Consumers","Delaware","DE",9273 +2014-01-01,"Delivered to Consumers","South Dakota","SD",9346 +2014-01-01,"Delivered to Consumers","Rhode Island","RI",9294 +2014-01-01,"Delivered to Consumers","Montana","MT",8965 +2014-01-01,"Delivered to Consumers","Maryland","MD",33911 +2014-01-01,"Delivered to Consumers","Missouri","MO",49901 +2014-01-01,"Delivered to Consumers","California","CA",224852 +2014-01-01,"Delivered to Consumers","District of Columbia","DC",5937 +2014-01-01,"Delivered to Consumers","Tennessee","TN",49157 +2014-01-01,"Delivered to Consumers","Kentucky","KY",39777 +2014-01-01,"Delivered to Consumers","South Carolina","SC",25732 +2014-01-01,"Delivered to Consumers","Georgia","GA",80653 +2014-01-01,"Delivered to Consumers","Washington","WA",37827 +2014-01-01,"Delivered to Consumers","Florida","FL",97386 +2014-01-01,"Delivered to Consumers","Indiana","IN",101410 +2014-01-01,"Delivered to Consumers","New York","NY",171572 +2014-01-01,"Delivered to Consumers","Kansas","KS",34270 +2014-01-01,"Delivered to Consumers","Ohio","OH",155070 +2014-01-01,"Delivered to Consumers","Mississippi","MS",44401 +2014-01-01,"Delivered to Consumers","Illinois","IL",185421 +2014-01-01,"Delivered to Consumers","Hawaii","HI",271 +2014-01-01,"Delivered to Consumers","Oklahoma","OK",60226 +2014-01-01,"Delivered to Consumers","New Jersey","NJ",102052 +2014-01-01,"Delivered to Consumers","Maine","ME",6841 +2014-01-01,"Delivered to Consumers","Vermont","VT",1613 +2014-01-01,"Delivered to Consumers","Connecticut","CT",26722 +2014-01-01,"Delivered to Consumers","Colorado","CO",47838 +2014-01-01,"Delivered to Consumers","Texas","TX",332920 +2014-01-01,"Delivered to Consumers","Louisiana","LA",121644 +2014-01-01,"Delivered to Consumers","Arizona","AZ",24041 +2014-01-01,"Delivered to Consumers","Arkansas","AR",33114 +2014-01-01,"Delivered to Consumers","Nevada","NV",23407 +2014-01-01,"Delivered to Consumers","New Mexico","NM",17919 +2014-01-01,"Delivered to Consumers","Wyoming","WY",8163 +2014-01-01,"Delivered to Consumers","Michigan","MI",140025 +2014-01-01,"Delivered to Consumers","Wisconsin","WI",72528 +2014-01-01,"Delivered to Consumers","Pennsylvania","PA",133865 +2014-01-01,"Delivered to Consumers","Nebraska","NE",21761 +2014-01-01,"Delivered to Consumers","North Carolina","NC",57988 +2014-01-01,"Delivered to Consumers","Massachusetts","MA",53771 +2014-01-01,"Delivered to Consumers","Oregon","OR",29393 +2014-01-01,"Delivered to Consumers","New Hampshire","NH",4615 +2014-01-01,"Delivered to Consumers","North Dakota","ND",7432 +2014-01-01,"Electric Power Consumption","Texas","TX",107671 +2014-01-01,"Electric Power Consumption","Utah","UT",4552 +2014-01-01,"Electric Power Consumption","Pennsylvania","PA",28065 +2014-01-01,"Electric Power Consumption","U.S.","U.S.",662881 +2014-01-01,"Electric Power Consumption","Missouri","MO",3430 +2014-01-01,"Electric Power Consumption","Montana","MT",459 +2014-01-01,"Electric Power Consumption","Arkansas","AR",7420 +2014-01-01,"Electric Power Consumption","New York","NY",33604 +2014-01-01,"Electric Power Consumption","Wisconsin","WI",4926 +2014-01-01,"Electric Power Consumption","California","CA",72448 +2014-01-01,"Electric Power Consumption","New Mexico","NM",5923 +2014-01-01,"Electric Power Consumption","Idaho","ID",2715 +2014-01-01,"Electric Power Consumption","Illinois","IL",5120 +2014-01-01,"Electric Power Consumption","Massachusetts","MA",7304 +2014-01-01,"Electric Power Consumption","Indiana","IN",10707 +2014-01-01,"Electric Power Consumption","Arizona","AZ",10767 +2014-01-01,"Electric Power Consumption","Virginia","VA",13443 +2014-01-01,"Electric Power Consumption","New Jersey","NJ",15678 +2014-01-01,"Electric Power Consumption","West Virginia","WV",1050 +2014-01-01,"Electric Power Consumption","Wyoming","WY",41 +2014-01-01,"Electric Power Consumption","Iowa","IA",765 +2014-01-01,"Electric Power Consumption","North Carolina","NC",17808 +2014-01-01,"Electric Power Consumption","Maine","ME",2644 +2014-01-01,"Electric Power Consumption","Hawaii","HI",NA +2014-01-01,"Electric Power Consumption","Ohio","OH",15401 +2014-01-01,"Electric Power Consumption","New Hampshire","NH",582 +2014-01-01,"Electric Power Consumption","North Dakota","ND",166 +2014-01-01,"Electric Power Consumption","Alaska","AK",2965 +2014-01-01,"Electric Power Consumption","Washington","WA",9398 +2014-01-01,"Electric Power Consumption","Minnesota","MN",3050 +2014-01-01,"Electric Power Consumption","Nebraska","NE",99 +2014-01-01,"Electric Power Consumption","Louisiana","LA",23291 +2014-01-01,"Electric Power Consumption","Colorado","CO",6343 +2014-01-01,"Electric Power Consumption","Oklahoma","OK",20542 +2014-01-01,"Electric Power Consumption","Michigan","MI",13150 +2014-01-01,"Electric Power Consumption","Tennessee","TN",6195 +2014-01-01,"Electric Power Consumption","South Dakota","SD",326 +2014-01-01,"Electric Power Consumption","Mississippi","MS",24566 +2014-01-01,"Electric Power Consumption","Kentucky","KY",6149 +2014-01-01,"Electric Power Consumption","Connecticut","CT",6081 +2014-01-01,"Electric Power Consumption","Florida","FL",77962 +2014-01-01,"Electric Power Consumption","Kansas","KS",1611 +2014-01-01,"Electric Power Consumption","Vermont","VT",4 +2014-01-01,"Electric Power Consumption","Maryland","MD",913 +2014-01-01,"Electric Power Consumption","Georgia","GA",21864 +2014-01-01,"Electric Power Consumption","Alabama","AL",31639 +2014-01-01,"Electric Power Consumption","South Carolina","SC",6730 +2014-01-01,"Electric Power Consumption","Rhode Island","RI",2542 +2014-01-01,"Electric Power Consumption","Oregon","OR",11675 +2014-01-01,"Electric Power Consumption","Nevada","NV",11091 +2014-01-01,"Electric Power Consumption","Delaware","DE",2006 +2014-01-01,"Industrial Consumption","Hawaii","HI",36 +2014-01-01,"Industrial Consumption","Missouri","MO",7413 +2014-01-01,"Industrial Consumption","Maine","ME",2308 +2014-01-01,"Industrial Consumption","Alabama","AL",17956 +2014-01-01,"Industrial Consumption","Montana","MT",2086 +2014-01-01,"Industrial Consumption","Massachusetts","MA",5849 +2014-01-01,"Industrial Consumption","Louisiana","LA",83041 +2014-01-01,"Industrial Consumption","Washington","WA",7595 +2014-01-01,"Industrial Consumption","Kansas","KS",11208 +2014-01-01,"Industrial Consumption","Utah","UT",3745 +2014-01-01,"Industrial Consumption","U.S.","U.S.",722327 +2014-01-01,"Industrial Consumption","Texas","TX",140888 +2014-01-01,"Industrial Consumption","Minnesota","MN",18294 +2014-01-01,"Industrial Consumption","Rhode Island","RI",717 +2014-01-01,"Industrial Consumption","Alaska","AK",361 +2014-01-01,"Industrial Consumption","Oklahoma","OK",16585 +2014-01-01,"Industrial Consumption","Colorado","CO",8885 +2014-01-01,"Industrial Consumption","Mississippi","MS",9404 +2014-01-01,"Industrial Consumption","New Jersey","NJ",6090 +2014-01-01,"Industrial Consumption","North Dakota","ND",2662 +2014-01-01,"Industrial Consumption","Pennsylvania","PA",22293 +2014-01-01,"Industrial Consumption","Tennessee","TN",11624 +2014-01-01,"Industrial Consumption","Idaho","ID",2752 +2014-01-01,"Industrial Consumption","Maryland","MD",1333 +2014-01-01,"Industrial Consumption","New York","NY",9507 +2014-01-01,"Industrial Consumption","South Carolina","SC",6820 +2014-01-01,"Industrial Consumption","Nebraska","NE",7888 +2014-01-01,"Industrial Consumption","Wisconsin","WI",17020 +2014-01-01,"Industrial Consumption","Iowa","IA",17215 +2014-01-01,"Industrial Consumption","Florida","FL",9737 +2014-01-01,"Industrial Consumption","Michigan","MI",21924 +2014-01-01,"Industrial Consumption","North Carolina","NC",10179 +2014-01-01,"Industrial Consumption","Georgia","GA",13868 +2014-01-01,"Industrial Consumption","Ohio","OH",32272 +2014-01-01,"Industrial Consumption","New Mexico","NM",1929 +2014-01-01,"Industrial Consumption","Arizona","AZ",2191 +2014-01-01,"Industrial Consumption","Virginia","VA",7376 +2014-01-01,"Industrial Consumption","West Virginia","WV",2793 +2014-01-01,"Industrial Consumption","Vermont","VT",176 +2014-01-01,"Industrial Consumption","Illinois","IL",33466 +2014-01-01,"Industrial Consumption","Delaware","DE",2676 +2014-01-01,"Industrial Consumption","California","CA",63885 +2014-01-01,"Industrial Consumption","Arkansas","AR",8742 +2014-01-01,"Industrial Consumption","Wyoming","WY",4313 +2014-01-01,"Industrial Consumption","Kentucky","KY",11699 +2014-01-01,"Industrial Consumption","South Dakota","SD",4158 +2014-01-01,"Industrial Consumption","Oregon","OR",5581 +2014-01-01,"Industrial Consumption","Nevada","NV",1387 +2014-01-01,"Industrial Consumption","New Hampshire","NH",861 +2014-01-01,"Industrial Consumption","Connecticut","CT",3499 +2014-01-01,"Industrial Consumption","Indiana","IN",38039 +2014-01-01,"Industrial Consumption","District of Columbia","DC",0 +2014-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",120915 +2014-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",86069 +2014-01-01,"Residential Consumption","Texas","TX",56481 +2014-01-01,"Residential Consumption","Mississippi","MS",6617 +2014-01-01,"Residential Consumption","New Jersey","NJ",50138 +2014-01-01,"Residential Consumption","Tennessee","TN",19749 +2014-01-01,"Residential Consumption","Louisiana","LA",10769 +2014-01-01,"Residential Consumption","Nebraska","NE",8326 +2014-01-01,"Residential Consumption","Michigan","MI",71831 +2014-01-01,"Residential Consumption","Florida","FL",3057 +2014-01-01,"Residential Consumption","Arkansas","AR",9194 +2014-01-01,"Residential Consumption","Colorado","CO",22977 +2014-01-01,"Residential Consumption","California","CA",61049 +2014-01-01,"Residential Consumption","Arizona","AZ",6983 +2014-01-01,"Residential Consumption","Oregon","OR",7412 +2014-01-01,"Residential Consumption","Pennsylvania","PA",53292 +2014-01-01,"Residential Consumption","Kentucky","KY",13627 +2014-01-01,"Residential Consumption","Missouri","MO",25916 +2014-01-01,"Residential Consumption","Minnesota","MN",29694 +2014-01-01,"Residential Consumption","Maine","ME",421 +2014-01-01,"Residential Consumption","New Hampshire","NH",1476 +2014-01-01,"Residential Consumption","Montana","MT",3307 +2014-01-01,"Residential Consumption","Washington","WA",12903 +2014-01-01,"Residential Consumption","Alaska","AK",2169 +2014-01-01,"Residential Consumption","South Carolina","SC",8096 +2014-01-01,"Residential Consumption","Ohio","OH",70548 +2014-01-01,"Residential Consumption","Hawaii","HI",57 +2014-01-01,"Residential Consumption","Virginia","VA",20627 +2014-01-01,"Residential Consumption","Indiana","IN",34662 +2014-01-01,"Residential Consumption","Idaho","ID",4456 +2014-01-01,"Residential Consumption","Kansas","KS",15232 +2014-01-01,"Residential Consumption","Wyoming","WY",2045 +2014-01-01,"Residential Consumption","West Virginia","WV",5909 +2014-01-01,"Residential Consumption","New York","NY",79952 +2014-01-01,"Residential Consumption","Rhode Island","RI",3664 +2014-01-01,"Residential Consumption","North Carolina","NC",19026 +2014-01-01,"Residential Consumption","Iowa","IA",16339 +2014-01-01,"Residential Consumption","Connecticut","CT",9677 +2014-01-01,"Residential Consumption","Vermont","VT",706 +2014-01-01,"Residential Consumption","Utah","UT",11664 +2014-01-01,"Residential Consumption","South Dakota","SD",2722 +2014-01-01,"Residential Consumption","District of Columbia","DC",2908 +2014-01-01,"Residential Consumption","New Mexico","NM",6317 +2014-01-01,"Residential Consumption","Massachusetts","MA",24156 +2014-01-01,"Residential Consumption","Oklahoma","OK",14830 +2014-01-01,"Residential Consumption","Delaware","DE",2463 +2014-01-01,"Residential Consumption","U.S.","U.S.",1037197 +2014-01-01,"Residential Consumption","Wisconsin","WI",30789 +2014-01-01,"Residential Consumption","Maryland","MD",19505 +2014-01-01,"Residential Consumption","Nevada","NV",6886 +2014-01-01,"Residential Consumption","Georgia","GA",32809 +2014-01-01,"Residential Consumption","North Dakota","ND",2260 +2014-01-01,"Residential Consumption","Alabama","AL",10350 +2014-01-01,"Residential Consumption","Illinois","IL",101155 +2014-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-01-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-01-01,"Vehicle Fuel Consumption","Arizona","AZ",185 +2014-01-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-01-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-01-01,"Vehicle Fuel Consumption","California","CA",1302 +2014-01-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2014-01-01,"Vehicle Fuel Consumption","New York","NY",312 +2014-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",61 +2014-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-01-01,"Vehicle Fuel Consumption","Maryland","MD",20 +2014-01-01,"Vehicle Fuel Consumption","Louisiana","LA",5 +2014-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",40 +2014-01-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2014-01-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-01-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-01-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2014-01-01,"Vehicle Fuel Consumption","Utah","UT",22 +2014-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",33 +2014-01-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-01-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-01-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-01-01,"Vehicle Fuel Consumption","Illinois","IL",35 +2014-01-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-01-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2014-01-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2014-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-01-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-01-01,"Vehicle Fuel Consumption","Alabama","AL",32 +2014-01-01,"Vehicle Fuel Consumption","Georgia","GA",92 +2014-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2014-01-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-01-01,"Vehicle Fuel Consumption","Texas","TX",353 +2014-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-01-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-01-01,"Vehicle Fuel Consumption","Washington","WA",41 +2014-01-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-01-01,"Vehicle Fuel Consumption","Nevada","NV",83 +2014-01-01,"Vehicle Fuel Consumption","Florida","FL",25 +2014-01-01,"Vehicle Fuel Consumption","Michigan","MI",38 +2014-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",2997 +2014-01-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-01-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-01-01,"Vehicle Fuel Consumption","Idaho","ID",13 +2014-02-01,"Commercial Consumption","Pennsylvania","PA",24813 +2014-02-01,"Commercial Consumption","New Hampshire","NH",1372 +2014-02-01,"Commercial Consumption","U.S.","U.S.",490105 +2014-02-01,"Commercial Consumption","Texas","TX",24160 +2014-02-01,"Commercial Consumption","Idaho","ID",2185 +2014-02-01,"Commercial Consumption","New York","NY",43304 +2014-02-01,"Commercial Consumption","Michigan","MI",30115 +2014-02-01,"Commercial Consumption","Indiana","IN",15117 +2014-02-01,"Commercial Consumption","Washington","WA",7396 +2014-02-01,"Commercial Consumption","Utah","UT",4485 +2014-02-01,"Commercial Consumption","New Mexico","NM",2702 +2014-02-01,"Commercial Consumption","Maryland","MD",10237 +2014-02-01,"Commercial Consumption","Arkansas","AR",6637 +2014-02-01,"Commercial Consumption","Nebraska","NE",4818 +2014-02-01,"Commercial Consumption","Tennessee","TN",8314 +2014-02-01,"Commercial Consumption","North Carolina","NC",7128 +2014-02-01,"Commercial Consumption","Oklahoma","OK",8380 +2014-02-01,"Commercial Consumption","District of Columbia","DC",2169 +2014-02-01,"Commercial Consumption","West Virginia","WV",3585 +2014-02-01,"Commercial Consumption","South Carolina","SC",2784 +2014-02-01,"Commercial Consumption","Minnesota","MN",18236 +2014-02-01,"Commercial Consumption","Oregon","OR",4098 +2014-02-01,"Commercial Consumption","Wisconsin","WI",16512 +2014-02-01,"Commercial Consumption","New Jersey","NJ",27541 +2014-02-01,"Commercial Consumption","Louisiana","LA",3295 +2014-02-01,"Commercial Consumption","Virginia","VA",9723 +2014-02-01,"Commercial Consumption","Missouri","MO",13070 +2014-02-01,"Commercial Consumption","Massachusetts","MA",14772 +2014-02-01,"Commercial Consumption","Kansas","KS",5471 +2014-02-01,"Commercial Consumption","Georgia","GA",7646 +2014-02-01,"Commercial Consumption","Florida","FL",5602 +2014-02-01,"Commercial Consumption","Rhode Island","RI",1967 +2014-02-01,"Commercial Consumption","Alabama","AL",3316 +2014-02-01,"Commercial Consumption","Arizona","AZ",3234 +2014-02-01,"Commercial Consumption","North Dakota","ND",2258 +2014-02-01,"Commercial Consumption","Kentucky","KY",6516 +2014-02-01,"Commercial Consumption","Vermont","VT",551 +2014-02-01,"Commercial Consumption","Ohio","OH",30959 +2014-02-01,"Commercial Consumption","Iowa","IA",9232 +2014-02-01,"Commercial Consumption","Alaska","AK",2249 +2014-02-01,"Commercial Consumption","California","CA",23504 +2014-02-01,"Commercial Consumption","Nevada","NV",3169 +2014-02-01,"Commercial Consumption","Colorado","CO",8402 +2014-02-01,"Commercial Consumption","South Dakota","SD",1916 +2014-02-01,"Commercial Consumption","Maine","ME",1247 +2014-02-01,"Commercial Consumption","Hawaii","HI",161 +2014-02-01,"Commercial Consumption","Connecticut","CT",7530 +2014-02-01,"Commercial Consumption","Delaware","DE",1696 +2014-02-01,"Commercial Consumption","Wyoming","WY",1737 +2014-02-01,"Commercial Consumption","Montana","MT",3468 +2014-02-01,"Commercial Consumption","Mississippi","MS",3174 +2014-02-01,"Commercial Consumption","Illinois","IL",38151 +2014-02-01,"Delivered to Consumers","Indiana","IN",85285 +2014-02-01,"Delivered to Consumers","Oklahoma","OK",60204 +2014-02-01,"Delivered to Consumers","Wisconsin","WI",61885 +2014-02-01,"Delivered to Consumers","Utah","UT",19728 +2014-02-01,"Delivered to Consumers","Michigan","MI",121808 +2014-02-01,"Delivered to Consumers","Pennsylvania","PA",117297 +2014-02-01,"Delivered to Consumers","Texas","TX",291978 +2014-02-01,"Delivered to Consumers","Washington","WA",35349 +2014-02-01,"Delivered to Consumers","Minnesota","MN",59267 +2014-02-01,"Delivered to Consumers","U.S.","U.S.",2556038 +2014-02-01,"Delivered to Consumers","West Virginia","WV",11807 +2014-02-01,"Delivered to Consumers","Vermont","VT",1337 +2014-02-01,"Delivered to Consumers","Illinois","IL",152540 +2014-02-01,"Delivered to Consumers","Hawaii","HI",242 +2014-02-01,"Delivered to Consumers","Alabama","AL",43559 +2014-02-01,"Delivered to Consumers","Nevada","NV",19644 +2014-02-01,"Delivered to Consumers","Louisiana","LA",105457 +2014-02-01,"Delivered to Consumers","Georgia","GA",54609 +2014-02-01,"Delivered to Consumers","Delaware","DE",8484 +2014-02-01,"Delivered to Consumers","Wyoming","WY",7856 +2014-02-01,"Delivered to Consumers","Alaska","AK",7767 +2014-02-01,"Delivered to Consumers","North Carolina","NC",37489 +2014-02-01,"Delivered to Consumers","Massachusetts","MA",47769 +2014-02-01,"Delivered to Consumers","Arizona","AZ",20464 +2014-02-01,"Delivered to Consumers","New York","NY",162047 +2014-02-01,"Delivered to Consumers","Ohio","OH",133039 +2014-02-01,"Delivered to Consumers","Arkansas","AR",26360 +2014-02-01,"Delivered to Consumers","Virginia","VA",46415 +2014-02-01,"Delivered to Consumers","Florida","FL",76417 +2014-02-01,"Delivered to Consumers","Mississippi","MS",34934 +2014-02-01,"Delivered to Consumers","Missouri","MO",43811 +2014-02-01,"Delivered to Consumers","South Carolina","SC",18784 +2014-02-01,"Delivered to Consumers","New Jersey","NJ",94211 +2014-02-01,"Delivered to Consumers","North Dakota","ND",6957 +2014-02-01,"Delivered to Consumers","South Dakota","SD",8554 +2014-02-01,"Delivered to Consumers","Montana","MT",9570 +2014-02-01,"Delivered to Consumers","Idaho","ID",10339 +2014-02-01,"Delivered to Consumers","Iowa","IA",38406 +2014-02-01,"Delivered to Consumers","California","CA",199902 +2014-02-01,"Delivered to Consumers","Maine","ME",5110 +2014-02-01,"Delivered to Consumers","New Hampshire","NH",3831 +2014-02-01,"Delivered to Consumers","District of Columbia","DC",4739 +2014-02-01,"Delivered to Consumers","New Mexico","NM",14119 +2014-02-01,"Delivered to Consumers","Rhode Island","RI",7645 +2014-02-01,"Delivered to Consumers","Maryland","MD",27650 +2014-02-01,"Delivered to Consumers","Kansas","KS",30339 +2014-02-01,"Delivered to Consumers","Tennessee","TN",35525 +2014-02-01,"Delivered to Consumers","Kentucky","KY",31059 +2014-02-01,"Delivered to Consumers","Connecticut","CT",26137 +2014-02-01,"Delivered to Consumers","Nebraska","NE",19709 +2014-02-01,"Delivered to Consumers","Colorado","CO",42235 +2014-02-01,"Delivered to Consumers","Oregon","OR",26368 +2014-02-01,"Electric Power Consumption","Virginia","VA",13592 +2014-02-01,"Electric Power Consumption","Kansas","KS",1394 +2014-02-01,"Electric Power Consumption","Wyoming","WY",39 +2014-02-01,"Electric Power Consumption","Montana","MT",705 +2014-02-01,"Electric Power Consumption","Indiana","IN",8477 +2014-02-01,"Electric Power Consumption","Alaska","AK",2738 +2014-02-01,"Electric Power Consumption","Arkansas","AR",4512 +2014-02-01,"Electric Power Consumption","Wisconsin","WI",4203 +2014-02-01,"Electric Power Consumption","Vermont","VT",3 +2014-02-01,"Electric Power Consumption","Tennessee","TN",1773 +2014-02-01,"Electric Power Consumption","Louisiana","LA",17820 +2014-02-01,"Electric Power Consumption","Minnesota","MN",1599 +2014-02-01,"Electric Power Consumption","Pennsylvania","PA",24912 +2014-02-01,"Electric Power Consumption","South Dakota","SD",146 +2014-02-01,"Electric Power Consumption","North Carolina","NC",8679 +2014-02-01,"Electric Power Consumption","New Hampshire","NH",406 +2014-02-01,"Electric Power Consumption","North Dakota","ND",103 +2014-02-01,"Electric Power Consumption","Connecticut","CT",6610 +2014-02-01,"Electric Power Consumption","Florida","FL",60860 +2014-02-01,"Electric Power Consumption","California","CA",68285 +2014-02-01,"Electric Power Consumption","New Jersey","NJ",17140 +2014-02-01,"Electric Power Consumption","Michigan","MI",11885 +2014-02-01,"Electric Power Consumption","Massachusetts","MA",7518 +2014-02-01,"Electric Power Consumption","U.S.","U.S.",551109 +2014-02-01,"Electric Power Consumption","Delaware","DE",2005 +2014-02-01,"Electric Power Consumption","Alabama","AL",18406 +2014-02-01,"Electric Power Consumption","Oklahoma","OK",20291 +2014-02-01,"Electric Power Consumption","Iowa","IA",366 +2014-02-01,"Electric Power Consumption","Nebraska","NE",90 +2014-02-01,"Electric Power Consumption","New York","NY",34274 +2014-02-01,"Electric Power Consumption","Missouri","MO",2363 +2014-02-01,"Electric Power Consumption","Kentucky","KY",3233 +2014-02-01,"Electric Power Consumption","Hawaii","HI",NA +2014-02-01,"Electric Power Consumption","Washington","WA",8191 +2014-02-01,"Electric Power Consumption","New Mexico","NM",4983 +2014-02-01,"Electric Power Consumption","South Carolina","SC",4231 +2014-02-01,"Electric Power Consumption","Texas","TX",94715 +2014-02-01,"Electric Power Consumption","Rhode Island","RI",1842 +2014-02-01,"Electric Power Consumption","Illinois","IL",1231 +2014-02-01,"Electric Power Consumption","Nevada","NV",9986 +2014-02-01,"Electric Power Consumption","Mississippi","MS",17490 +2014-02-01,"Electric Power Consumption","Ohio","OH",13408 +2014-02-01,"Electric Power Consumption","Georgia","GA",14144 +2014-02-01,"Electric Power Consumption","Idaho","ID",2196 +2014-02-01,"Electric Power Consumption","Colorado","CO",6349 +2014-02-01,"Electric Power Consumption","Utah","UT",3888 +2014-02-01,"Electric Power Consumption","Oregon","OR",10414 +2014-02-01,"Electric Power Consumption","West Virginia","WV",723 +2014-02-01,"Electric Power Consumption","Maine","ME",1910 +2014-02-01,"Electric Power Consumption","Maryland","MD",706 +2014-02-01,"Electric Power Consumption","Arizona","AZ",10276 +2014-02-01,"Industrial Consumption","Alabama","AL",15286 +2014-02-01,"Industrial Consumption","Massachusetts","MA",5746 +2014-02-01,"Industrial Consumption","Wyoming","WY",4046 +2014-02-01,"Industrial Consumption","District of Columbia","DC",0 +2014-02-01,"Industrial Consumption","Ohio","OH",30125 +2014-02-01,"Industrial Consumption","Utah","UT",3701 +2014-02-01,"Industrial Consumption","Oregon","OR",5094 +2014-02-01,"Industrial Consumption","Mississippi","MS",8976 +2014-02-01,"Industrial Consumption","Maine","ME",1592 +2014-02-01,"Industrial Consumption","Arkansas","AR",7682 +2014-02-01,"Industrial Consumption","Tennessee","TN",10749 +2014-02-01,"Industrial Consumption","Idaho","ID",2477 +2014-02-01,"Industrial Consumption","Michigan","MI",20923 +2014-02-01,"Industrial Consumption","Maryland","MD",1354 +2014-02-01,"Industrial Consumption","Washington","WA",7061 +2014-02-01,"Industrial Consumption","New Mexico","NM",1658 +2014-02-01,"Industrial Consumption","Arizona","AZ",1934 +2014-02-01,"Industrial Consumption","Nevada","NV",1209 +2014-02-01,"Industrial Consumption","South Carolina","SC",6771 +2014-02-01,"Industrial Consumption","Nebraska","NE",7185 +2014-02-01,"Industrial Consumption","Connecticut","CT",3120 +2014-02-01,"Industrial Consumption","North Dakota","ND",2444 +2014-02-01,"Industrial Consumption","Virginia","VA",6908 +2014-02-01,"Industrial Consumption","Kentucky","KY",10716 +2014-02-01,"Industrial Consumption","Illinois","IL",28611 +2014-02-01,"Industrial Consumption","North Carolina","NC",9703 +2014-02-01,"Industrial Consumption","Georgia","GA",13318 +2014-02-01,"Industrial Consumption","Alaska","AK",336 +2014-02-01,"Industrial Consumption","Montana","MT",1765 +2014-02-01,"Industrial Consumption","Missouri","MO",6959 +2014-02-01,"Industrial Consumption","South Dakota","SD",4079 +2014-02-01,"Industrial Consumption","Pennsylvania","PA",21872 +2014-02-01,"Industrial Consumption","West Virginia","WV",2548 +2014-02-01,"Industrial Consumption","Vermont","VT",174 +2014-02-01,"Industrial Consumption","Minnesota","MN",13888 +2014-02-01,"Industrial Consumption","Iowa","IA",15090 +2014-02-01,"Industrial Consumption","Florida","FL",8059 +2014-02-01,"Industrial Consumption","Delaware","DE",2644 +2014-02-01,"Industrial Consumption","Hawaii","HI",27 +2014-02-01,"Industrial Consumption","Louisiana","LA",76982 +2014-02-01,"Industrial Consumption","Kansas","KS",10305 +2014-02-01,"Industrial Consumption","U.S.","U.S.",659190 +2014-02-01,"Industrial Consumption","New York","NY",9286 +2014-02-01,"Industrial Consumption","California","CA",57702 +2014-02-01,"Industrial Consumption","Wisconsin","WI",15433 +2014-02-01,"Industrial Consumption","New Jersey","NJ",5448 +2014-02-01,"Industrial Consumption","Indiana","IN",34324 +2014-02-01,"Industrial Consumption","Rhode Island","RI",782 +2014-02-01,"Industrial Consumption","Oklahoma","OK",16753 +2014-02-01,"Industrial Consumption","Colorado","CO",8062 +2014-02-01,"Industrial Consumption","Texas","TX",127448 +2014-02-01,"Industrial Consumption","New Hampshire","NH",838 +2014-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",111800 +2014-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",73402 +2014-02-01,"Residential Consumption","Florida","FL",1874 +2014-02-01,"Residential Consumption","North Dakota","ND",2152 +2014-02-01,"Residential Consumption","Montana","MT",3633 +2014-02-01,"Residential Consumption","Washington","WA",12665 +2014-02-01,"Residential Consumption","Texas","TX",45335 +2014-02-01,"Residential Consumption","Ohio","OH",58508 +2014-02-01,"Residential Consumption","Mississippi","MS",5290 +2014-02-01,"Residential Consumption","Wisconsin","WI",25727 +2014-02-01,"Residential Consumption","Vermont","VT",608 +2014-02-01,"Residential Consumption","Minnesota","MN",25539 +2014-02-01,"Residential Consumption","Georgia","GA",19418 +2014-02-01,"Residential Consumption","District of Columbia","DC",2508 +2014-02-01,"Residential Consumption","Maine","ME",361 +2014-02-01,"Residential Consumption","Indiana","IN",27362 +2014-02-01,"Residential Consumption","U.S.","U.S.",852927 +2014-02-01,"Residential Consumption","New York","NY",74901 +2014-02-01,"Residential Consumption","Louisiana","LA",7356 +2014-02-01,"Residential Consumption","Hawaii","HI",53 +2014-02-01,"Residential Consumption","Nevada","NV",5205 +2014-02-01,"Residential Consumption","Arkansas","AR",7527 +2014-02-01,"Residential Consumption","Colorado","CO",19396 +2014-02-01,"Residential Consumption","Iowa","IA",13717 +2014-02-01,"Residential Consumption","Tennessee","TN",14673 +2014-02-01,"Residential Consumption","Maryland","MD",15335 +2014-02-01,"Residential Consumption","New Mexico","NM",4764 +2014-02-01,"Residential Consumption","Oklahoma","OK",14744 +2014-02-01,"Residential Consumption","Alaska","AK",2443 +2014-02-01,"Residential Consumption","Oregon","OR",6749 +2014-02-01,"Residential Consumption","North Carolina","NC",11969 +2014-02-01,"Residential Consumption","Virginia","VA",16176 +2014-02-01,"Residential Consumption","Nebraska","NE",7612 +2014-02-01,"Residential Consumption","South Dakota","SD",2414 +2014-02-01,"Residential Consumption","Idaho","ID",3469 +2014-02-01,"Residential Consumption","New Jersey","NJ",44067 +2014-02-01,"Residential Consumption","New Hampshire","NH",1210 +2014-02-01,"Residential Consumption","Missouri","MO",21410 +2014-02-01,"Residential Consumption","West Virginia","WV",4950 +2014-02-01,"Residential Consumption","South Carolina","SC",4995 +2014-02-01,"Residential Consumption","Utah","UT",7635 +2014-02-01,"Residential Consumption","Massachusetts","MA",19678 +2014-02-01,"Residential Consumption","Kansas","KS",13168 +2014-02-01,"Residential Consumption","California","CA",49235 +2014-02-01,"Residential Consumption","Arizona","AZ",4853 +2014-02-01,"Residential Consumption","Illinois","IL",84515 +2014-02-01,"Residential Consumption","Rhode Island","RI",3047 +2014-02-01,"Residential Consumption","Kentucky","KY",10591 +2014-02-01,"Residential Consumption","Alabama","AL",6522 +2014-02-01,"Residential Consumption","Wyoming","WY",2032 +2014-02-01,"Residential Consumption","Connecticut","CT",8875 +2014-02-01,"Residential Consumption","Michigan","MI",58850 +2014-02-01,"Residential Consumption","Pennsylvania","PA",45671 +2014-02-01,"Residential Consumption","Delaware","DE",2138 +2014-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",55 +2014-02-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-02-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-02-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2014-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",2707 +2014-02-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",16 +2014-02-01,"Vehicle Fuel Consumption","North Carolina","NC",9 +2014-02-01,"Vehicle Fuel Consumption","Georgia","GA",83 +2014-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-02-01,"Vehicle Fuel Consumption","Illinois","IL",31 +2014-02-01,"Vehicle Fuel Consumption","California","CA",1176 +2014-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-02-01,"Vehicle Fuel Consumption","Tennessee","TN",17 +2014-02-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-02-01,"Vehicle Fuel Consumption","Arizona","AZ",167 +2014-02-01,"Vehicle Fuel Consumption","Missouri","MO",8 +2014-02-01,"Vehicle Fuel Consumption","Texas","TX",319 +2014-02-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-02-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-02-01,"Vehicle Fuel Consumption","New Mexico","NM",12 +2014-02-01,"Vehicle Fuel Consumption","Virginia","VA",16 +2014-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",30 +2014-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",36 +2014-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",62 +2014-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2014-02-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2014-02-01,"Vehicle Fuel Consumption","Oregon","OR",13 +2014-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2014-02-01,"Vehicle Fuel Consumption","Nevada","NV",75 +2014-02-01,"Vehicle Fuel Consumption","Florida","FL",22 +2014-02-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-02-01,"Vehicle Fuel Consumption","Washington","WA",37 +2014-02-01,"Vehicle Fuel Consumption","Utah","UT",20 +2014-02-01,"Vehicle Fuel Consumption","New York","NY",282 +2014-02-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-02-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-02-01,"Vehicle Fuel Consumption","Alabama","AL",29 +2014-02-01,"Vehicle Fuel Consumption","Colorado","CO",25 +2014-02-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2014-02-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2014-02-01,"Vehicle Fuel Consumption","Ohio","OH",38 +2014-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-02-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2014-02-01,"Vehicle Fuel Consumption","Indiana","IN",6 +2014-02-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2014-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-02-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2014-03-01,"Commercial Consumption","Utah","UT",4397 +2014-03-01,"Commercial Consumption","Pennsylvania","PA",21946 +2014-03-01,"Commercial Consumption","Georgia","GA",6380 +2014-03-01,"Commercial Consumption","Florida","FL",5744 +2014-03-01,"Commercial Consumption","Hawaii","HI",159 +2014-03-01,"Commercial Consumption","Alabama","AL",2834 +2014-03-01,"Commercial Consumption","Indiana","IN",10893 +2014-03-01,"Commercial Consumption","Wyoming","WY",1337 +2014-03-01,"Commercial Consumption","North Dakota","ND",1826 +2014-03-01,"Commercial Consumption","New Mexico","NM",2429 +2014-03-01,"Commercial Consumption","Virginia","VA",9259 +2014-03-01,"Commercial Consumption","Massachusetts","MA",13503 +2014-03-01,"Commercial Consumption","New Hampshire","NH",1409 +2014-03-01,"Commercial Consumption","Texas","TX",19205 +2014-03-01,"Commercial Consumption","Nevada","NV",2674 +2014-03-01,"Commercial Consumption","District of Columbia","DC",2325 +2014-03-01,"Commercial Consumption","Wisconsin","WI",13915 +2014-03-01,"Commercial Consumption","South Dakota","SD",1521 +2014-03-01,"Commercial Consumption","Montana","MT",2715 +2014-03-01,"Commercial Consumption","Maine","ME",1296 +2014-03-01,"Commercial Consumption","Rhode Island","RI",1914 +2014-03-01,"Commercial Consumption","Iowa","IA",7134 +2014-03-01,"Commercial Consumption","Alaska","AK",2030 +2014-03-01,"Commercial Consumption","Arkansas","AR",5521 +2014-03-01,"Commercial Consumption","Mississippi","MS",2572 +2014-03-01,"Commercial Consumption","Delaware","DE",1502 +2014-03-01,"Commercial Consumption","Washington","WA",5900 +2014-03-01,"Commercial Consumption","Colorado","CO",6357 +2014-03-01,"Commercial Consumption","Oregon","OR",2920 +2014-03-01,"Commercial Consumption","Oklahoma","OK",7102 +2014-03-01,"Commercial Consumption","Missouri","MO",9208 +2014-03-01,"Commercial Consumption","U.S.","U.S.",420934 +2014-03-01,"Commercial Consumption","Vermont","VT",575 +2014-03-01,"Commercial Consumption","Tennessee","TN",6578 +2014-03-01,"Commercial Consumption","South Carolina","SC",2931 +2014-03-01,"Commercial Consumption","Kansas","KS",4217 +2014-03-01,"Commercial Consumption","Ohio","OH",26332 +2014-03-01,"Commercial Consumption","Idaho","ID",1715 +2014-03-01,"Commercial Consumption","Illinois","IL",30968 +2014-03-01,"Commercial Consumption","West Virginia","WV",3199 +2014-03-01,"Commercial Consumption","Minnesota","MN",14952 +2014-03-01,"Commercial Consumption","New Jersey","NJ",24277 +2014-03-01,"Commercial Consumption","Maryland","MD",9792 +2014-03-01,"Commercial Consumption","Connecticut","CT",6849 +2014-03-01,"Commercial Consumption","Arizona","AZ",2866 +2014-03-01,"Commercial Consumption","Michigan","MI",26042 +2014-03-01,"Commercial Consumption","North Carolina","NC",7155 +2014-03-01,"Commercial Consumption","Kentucky","KY",5051 +2014-03-01,"Commercial Consumption","California","CA",20512 +2014-03-01,"Commercial Consumption","New York","NY",41932 +2014-03-01,"Commercial Consumption","Nebraska","NE",3859 +2014-03-01,"Commercial Consumption","Louisiana","LA",3201 +2014-03-01,"Delivered to Consumers","Utah","UT",18758 +2014-03-01,"Delivered to Consumers","West Virginia","WV",10787 +2014-03-01,"Delivered to Consumers","New York","NY",158384 +2014-03-01,"Delivered to Consumers","Connecticut","CT",25057 +2014-03-01,"Delivered to Consumers","Arkansas","AR",24659 +2014-03-01,"Delivered to Consumers","Pennsylvania","PA",112282 +2014-03-01,"Delivered to Consumers","Massachusetts","MA",44694 +2014-03-01,"Delivered to Consumers","South Dakota","SD",7155 +2014-03-01,"Delivered to Consumers","Colorado","CO",37491 +2014-03-01,"Delivered to Consumers","Arizona","AZ",13935 +2014-03-01,"Delivered to Consumers","Indiana","IN",75123 +2014-03-01,"Delivered to Consumers","Oklahoma","OK",49138 +2014-03-01,"Delivered to Consumers","Idaho","ID",7164 +2014-03-01,"Delivered to Consumers","Virginia","VA",43424 +2014-03-01,"Delivered to Consumers","Georgia","GA",54667 +2014-03-01,"Delivered to Consumers","Kentucky","KY",27558 +2014-03-01,"Delivered to Consumers","Iowa","IA",32877 +2014-03-01,"Delivered to Consumers","Wisconsin","WI",51669 +2014-03-01,"Delivered to Consumers","California","CA",183038 +2014-03-01,"Delivered to Consumers","Texas","TX",280010 +2014-03-01,"Delivered to Consumers","Nevada","NV",16540 +2014-03-01,"Delivered to Consumers","Minnesota","MN",51164 +2014-03-01,"Delivered to Consumers","U.S.","U.S.",2365293 +2014-03-01,"Delivered to Consumers","Delaware","DE",9535 +2014-03-01,"Delivered to Consumers","Maryland","MD",26177 +2014-03-01,"Delivered to Consumers","Hawaii","HI",244 +2014-03-01,"Delivered to Consumers","Kansas","KS",25204 +2014-03-01,"Delivered to Consumers","Tennessee","TN",28631 +2014-03-01,"Delivered to Consumers","Nebraska","NE",16814 +2014-03-01,"Delivered to Consumers","North Carolina","NC",43371 +2014-03-01,"Delivered to Consumers","Mississippi","MS",32890 +2014-03-01,"Delivered to Consumers","Missouri","MO",33722 +2014-03-01,"Delivered to Consumers","Louisiana","LA",107720 +2014-03-01,"Delivered to Consumers","New Hampshire","NH",5348 +2014-03-01,"Delivered to Consumers","Vermont","VT",1383 +2014-03-01,"Delivered to Consumers","Montana","MT",8401 +2014-03-01,"Delivered to Consumers","South Carolina","SC",21426 +2014-03-01,"Delivered to Consumers","New Jersey","NJ",87759 +2014-03-01,"Delivered to Consumers","Illinois","IL",126843 +2014-03-01,"Delivered to Consumers","Rhode Island","RI",7459 +2014-03-01,"Delivered to Consumers","Alaska","AK",7369 +2014-03-01,"Delivered to Consumers","Maine","ME",5585 +2014-03-01,"Delivered to Consumers","New Mexico","NM",13886 +2014-03-01,"Delivered to Consumers","Wyoming","WY",7085 +2014-03-01,"Delivered to Consumers","Ohio","OH",119747 +2014-03-01,"Delivered to Consumers","Michigan","MI",106270 +2014-03-01,"Delivered to Consumers","Alabama","AL",50469 +2014-03-01,"Delivered to Consumers","Oregon","OR",15385 +2014-03-01,"Delivered to Consumers","Washington","WA",26018 +2014-03-01,"Delivered to Consumers","North Dakota","ND",6371 +2014-03-01,"Delivered to Consumers","Florida","FL",94126 +2014-03-01,"Delivered to Consumers","District of Columbia","DC",4480 +2014-03-01,"Electric Power Consumption","New Mexico","NM",6144 +2014-03-01,"Electric Power Consumption","Minnesota","MN",1454 +2014-03-01,"Electric Power Consumption","Wyoming","WY",36 +2014-03-01,"Electric Power Consumption","U.S.","U.S.",560808 +2014-03-01,"Electric Power Consumption","Mississippi","MS",17164 +2014-03-01,"Electric Power Consumption","Indiana","IN",8008 +2014-03-01,"Electric Power Consumption","Washington","WA",4229 +2014-03-01,"Electric Power Consumption","South Carolina","SC",6547 +2014-03-01,"Electric Power Consumption","Illinois","IL",1901 +2014-03-01,"Electric Power Consumption","Michigan","MI",9232 +2014-03-01,"Electric Power Consumption","Maine","ME",1489 +2014-03-01,"Electric Power Consumption","Ohio","OH",15733 +2014-03-01,"Electric Power Consumption","Montana","MT",985 +2014-03-01,"Electric Power Consumption","Connecticut","CT",7025 +2014-03-01,"Electric Power Consumption","Virginia","VA",12646 +2014-03-01,"Electric Power Consumption","Pennsylvania","PA",28277 +2014-03-01,"Electric Power Consumption","Kentucky","KY",4130 +2014-03-01,"Electric Power Consumption","Hawaii","HI",NA +2014-03-01,"Electric Power Consumption","Georgia","GA",18337 +2014-03-01,"Electric Power Consumption","Alabama","AL",26747 +2014-03-01,"Electric Power Consumption","Idaho","ID",404 +2014-03-01,"Electric Power Consumption","West Virginia","WV",479 +2014-03-01,"Electric Power Consumption","Nebraska","NE",152 +2014-03-01,"Electric Power Consumption","Colorado","CO",8235 +2014-03-01,"Electric Power Consumption","Arkansas","AR",6071 +2014-03-01,"Electric Power Consumption","New York","NY",36044 +2014-03-01,"Electric Power Consumption","Wisconsin","WI",3596 +2014-03-01,"Electric Power Consumption","Vermont","VT",4 +2014-03-01,"Electric Power Consumption","North Carolina","NC",14737 +2014-03-01,"Electric Power Consumption","Maryland","MD",1363 +2014-03-01,"Electric Power Consumption","New Jersey","NJ",18515 +2014-03-01,"Electric Power Consumption","Louisiana","LA",14597 +2014-03-01,"Electric Power Consumption","Texas","TX",94692 +2014-03-01,"Electric Power Consumption","Massachusetts","MA",5715 +2014-03-01,"Electric Power Consumption","Kansas","KS",751 +2014-03-01,"Electric Power Consumption","South Dakota","SD",46 +2014-03-01,"Electric Power Consumption","Florida","FL",78226 +2014-03-01,"Electric Power Consumption","Rhode Island","RI",1919 +2014-03-01,"Electric Power Consumption","Utah","UT",3829 +2014-03-01,"Electric Power Consumption","Oregon","OR",2874 +2014-03-01,"Electric Power Consumption","Nevada","NV",8888 +2014-03-01,"Electric Power Consumption","Iowa","IA",202 +2014-03-01,"Electric Power Consumption","Tennessee","TN",1466 +2014-03-01,"Electric Power Consumption","New Hampshire","NH",1961 +2014-03-01,"Electric Power Consumption","North Dakota","ND",72 +2014-03-01,"Electric Power Consumption","Delaware","DE",3304 +2014-03-01,"Electric Power Consumption","California","CA",58980 +2014-03-01,"Electric Power Consumption","Alaska","AK",2734 +2014-03-01,"Electric Power Consumption","Oklahoma","OK",13308 +2014-03-01,"Electric Power Consumption","Missouri","MO",1816 +2014-03-01,"Electric Power Consumption","Arizona","AZ",5744 +2014-03-01,"Industrial Consumption","South Dakota","SD",3725 +2014-03-01,"Industrial Consumption","Arizona","AZ",1979 +2014-03-01,"Industrial Consumption","California","CA",63286 +2014-03-01,"Industrial Consumption","West Virginia","WV",2625 +2014-03-01,"Industrial Consumption","New Hampshire","NH",765 +2014-03-01,"Industrial Consumption","North Dakota","ND",2811 +2014-03-01,"Industrial Consumption","Montana","MT",2001 +2014-03-01,"Industrial Consumption","Maryland","MD",1332 +2014-03-01,"Industrial Consumption","Washington","WA",6937 +2014-03-01,"Industrial Consumption","Connecticut","CT",3147 +2014-03-01,"Industrial Consumption","Kentucky","KY",10483 +2014-03-01,"Industrial Consumption","Massachusetts","MA",5521 +2014-03-01,"Industrial Consumption","Ohio","OH",29069 +2014-03-01,"Industrial Consumption","Kansas","KS",10577 +2014-03-01,"Industrial Consumption","U.S.","U.S.",680634 +2014-03-01,"Industrial Consumption","New York","NY",9260 +2014-03-01,"Industrial Consumption","Arkansas","AR",7842 +2014-03-01,"Industrial Consumption","Nebraska","NE",7210 +2014-03-01,"Industrial Consumption","Vermont","VT",188 +2014-03-01,"Industrial Consumption","Georgia","GA",14625 +2014-03-01,"Industrial Consumption","New Mexico","NM",1781 +2014-03-01,"Industrial Consumption","Oregon","OR",5164 +2014-03-01,"Industrial Consumption","Mississippi","MS",9399 +2014-03-01,"Industrial Consumption","Texas","TX",135561 +2014-03-01,"Industrial Consumption","South Carolina","SC",7457 +2014-03-01,"Industrial Consumption","Delaware","DE",2871 +2014-03-01,"Industrial Consumption","Hawaii","HI",35 +2014-03-01,"Industrial Consumption","Maine","ME",2436 +2014-03-01,"Industrial Consumption","Wyoming","WY",4159 +2014-03-01,"Industrial Consumption","Tennessee","TN",10346 +2014-03-01,"Industrial Consumption","Iowa","IA",14847 +2014-03-01,"Industrial Consumption","Oklahoma","OK",17110 +2014-03-01,"Industrial Consumption","Colorado","CO",7575 +2014-03-01,"Industrial Consumption","Nevada","NV",1361 +2014-03-01,"Industrial Consumption","New Jersey","NJ",6037 +2014-03-01,"Industrial Consumption","Minnesota","MN",15286 +2014-03-01,"Industrial Consumption","Idaho","ID",2389 +2014-03-01,"Industrial Consumption","Florida","FL",8211 +2014-03-01,"Industrial Consumption","Michigan","MI",19186 +2014-03-01,"Industrial Consumption","Indiana","IN",33264 +2014-03-01,"Industrial Consumption","Illinois","IL",27329 +2014-03-01,"Industrial Consumption","District of Columbia","DC",0 +2014-03-01,"Industrial Consumption","Louisiana","LA",84435 +2014-03-01,"Industrial Consumption","Pennsylvania","PA",22444 +2014-03-01,"Industrial Consumption","Wisconsin","WI",14074 +2014-03-01,"Industrial Consumption","Missouri","MO",6564 +2014-03-01,"Industrial Consumption","Utah","UT",3209 +2014-03-01,"Industrial Consumption","Alabama","AL",16244 +2014-03-01,"Industrial Consumption","Virginia","VA",7062 +2014-03-01,"Industrial Consumption","Rhode Island","RI",673 +2014-03-01,"Industrial Consumption","North Carolina","NC",10339 +2014-03-01,"Industrial Consumption","Alaska","AK",403 +2014-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",124673 +2014-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",67924 +2014-03-01,"Residential Consumption","Rhode Island","RI",2946 +2014-03-01,"Residential Consumption","Mississippi","MS",3748 +2014-03-01,"Residential Consumption","Louisiana","LA",5482 +2014-03-01,"Residential Consumption","Connecticut","CT",8035 +2014-03-01,"Residential Consumption","Michigan","MI",51772 +2014-03-01,"Residential Consumption","South Dakota","SD",1862 +2014-03-01,"Residential Consumption","Nevada","NV",3533 +2014-03-01,"Residential Consumption","Pennsylvania","PA",39581 +2014-03-01,"Residential Consumption","New Mexico","NM",3519 +2014-03-01,"Residential Consumption","Kansas","KS",9658 +2014-03-01,"Residential Consumption","Washington","WA",8911 +2014-03-01,"Residential Consumption","U.S.","U.S.",699921 +2014-03-01,"Residential Consumption","District of Columbia","DC",2087 +2014-03-01,"Residential Consumption","New Jersey","NJ",38911 +2014-03-01,"Residential Consumption","Colorado","CO",15296 +2014-03-01,"Residential Consumption","Oklahoma","OK",11579 +2014-03-01,"Residential Consumption","West Virginia","WV",4484 +2014-03-01,"Residential Consumption","South Carolina","SC",4487 +2014-03-01,"Residential Consumption","Maryland","MD",13669 +2014-03-01,"Residential Consumption","Florida","FL",1920 +2014-03-01,"Residential Consumption","Missouri","MO",16125 +2014-03-01,"Residential Consumption","Delaware","DE",1858 +2014-03-01,"Residential Consumption","Illinois","IL",66611 +2014-03-01,"Residential Consumption","Texas","TX",30199 +2014-03-01,"Residential Consumption","Massachusetts","MA",19893 +2014-03-01,"Residential Consumption","Alabama","AL",4611 +2014-03-01,"Residential Consumption","North Carolina","NC",11130 +2014-03-01,"Residential Consumption","Iowa","IA",10692 +2014-03-01,"Residential Consumption","Tennessee","TN",10222 +2014-03-01,"Residential Consumption","Nebraska","NE",5589 +2014-03-01,"Residential Consumption","Georgia","GA",15232 +2014-03-01,"Residential Consumption","Arkansas","AR",5222 +2014-03-01,"Residential Consumption","Kentucky","KY",7890 +2014-03-01,"Residential Consumption","Wisconsin","WI",20074 +2014-03-01,"Residential Consumption","Vermont","VT",617 +2014-03-01,"Residential Consumption","California","CA",38959 +2014-03-01,"Residential Consumption","New York","NY",70836 +2014-03-01,"Residential Consumption","Ohio","OH",48571 +2014-03-01,"Residential Consumption","Minnesota","MN",19467 +2014-03-01,"Residential Consumption","Maine","ME",363 +2014-03-01,"Residential Consumption","North Dakota","ND",1662 +2014-03-01,"Residential Consumption","New Hampshire","NH",1207 +2014-03-01,"Residential Consumption","Montana","MT",2700 +2014-03-01,"Residential Consumption","Alaska","AK",2201 +2014-03-01,"Residential Consumption","Wyoming","WY",1552 +2014-03-01,"Residential Consumption","Oregon","OR",4412 +2014-03-01,"Residential Consumption","Hawaii","HI",50 +2014-03-01,"Residential Consumption","Virginia","VA",14439 +2014-03-01,"Residential Consumption","Utah","UT",7302 +2014-03-01,"Residential Consumption","Indiana","IN",22950 +2014-03-01,"Residential Consumption","Idaho","ID",2643 +2014-03-01,"Residential Consumption","Arizona","AZ",3162 +2014-03-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2014-03-01,"Vehicle Fuel Consumption","Louisiana","LA",5 +2014-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-03-01,"Vehicle Fuel Consumption","Nevada","NV",83 +2014-03-01,"Vehicle Fuel Consumption","Texas","TX",353 +2014-03-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-03-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-03-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-03-01,"Vehicle Fuel Consumption","Illinois","IL",35 +2014-03-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-03-01,"Vehicle Fuel Consumption","California","CA",1302 +2014-03-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2014-03-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-03-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2014-03-01,"Vehicle Fuel Consumption","Arizona","AZ",185 +2014-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",61 +2014-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-03-01,"Vehicle Fuel Consumption","Idaho","ID",13 +2014-03-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",40 +2014-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-03-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-03-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-03-01,"Vehicle Fuel Consumption","Washington","WA",41 +2014-03-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2014-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",33 +2014-03-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-03-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2014-03-01,"Vehicle Fuel Consumption","Georgia","GA",92 +2014-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",2997 +2014-03-01,"Vehicle Fuel Consumption","Utah","UT",22 +2014-03-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2014-03-01,"Vehicle Fuel Consumption","New York","NY",312 +2014-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-03-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-03-01,"Vehicle Fuel Consumption","Florida","FL",25 +2014-03-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-03-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-03-01,"Vehicle Fuel Consumption","Michigan","MI",38 +2014-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-03-01,"Vehicle Fuel Consumption","Alabama","AL",32 +2014-03-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-03-01,"Vehicle Fuel Consumption","Maryland","MD",20 +2014-03-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-04-01,"Commercial Consumption","South Carolina","SC",1620 +2014-04-01,"Commercial Consumption","Pennsylvania","PA",9996 +2014-04-01,"Commercial Consumption","Massachusetts","MA",9986 +2014-04-01,"Commercial Consumption","Maryland","MD",5278 +2014-04-01,"Commercial Consumption","Kansas","KS",2276 +2014-04-01,"Commercial Consumption","Rhode Island","RI",1622 +2014-04-01,"Commercial Consumption","Delaware","DE",740 +2014-04-01,"Commercial Consumption","Tennessee","TN",3201 +2014-04-01,"Commercial Consumption","Louisiana","LA",2113 +2014-04-01,"Commercial Consumption","New Mexico","NM",1703 +2014-04-01,"Commercial Consumption","Connecticut","CT",4206 +2014-04-01,"Commercial Consumption","District of Columbia","DC",1224 +2014-04-01,"Commercial Consumption","Minnesota","MN",9085 +2014-04-01,"Commercial Consumption","Virginia","VA",4270 +2014-04-01,"Commercial Consumption","New Jersey","NJ",14060 +2014-04-01,"Commercial Consumption","Maine","ME",715 +2014-04-01,"Commercial Consumption","Idaho","ID",1216 +2014-04-01,"Commercial Consumption","Arkansas","AR",3673 +2014-04-01,"Commercial Consumption","New York","NY",25033 +2014-04-01,"Commercial Consumption","Wyoming","WY",1001 +2014-04-01,"Commercial Consumption","Missouri","MO",5112 +2014-04-01,"Commercial Consumption","U.S.","U.S.",251038 +2014-04-01,"Commercial Consumption","Georgia","GA",3545 +2014-04-01,"Commercial Consumption","Ohio","OH",10918 +2014-04-01,"Commercial Consumption","Illinois","IL",16462 +2014-04-01,"Commercial Consumption","Washington","WA",3942 +2014-04-01,"Commercial Consumption","North Carolina","NC",3247 +2014-04-01,"Commercial Consumption","Utah","UT",2532 +2014-04-01,"Commercial Consumption","Nebraska","NE",2280 +2014-04-01,"Commercial Consumption","Mississippi","MS",1571 +2014-04-01,"Commercial Consumption","North Dakota","ND",970 +2014-04-01,"Commercial Consumption","Oregon","OR",2177 +2014-04-01,"Commercial Consumption","Texas","TX",14780 +2014-04-01,"Commercial Consumption","Hawaii","HI",168 +2014-04-01,"Commercial Consumption","Nevada","NV",2375 +2014-04-01,"Commercial Consumption","West Virginia","WV",1643 +2014-04-01,"Commercial Consumption","Oklahoma","OK",5343 +2014-04-01,"Commercial Consumption","South Dakota","SD",881 +2014-04-01,"Commercial Consumption","New Hampshire","NH",658 +2014-04-01,"Commercial Consumption","Montana","MT",1562 +2014-04-01,"Commercial Consumption","Florida","FL",5320 +2014-04-01,"Commercial Consumption","Iowa","IA",3851 +2014-04-01,"Commercial Consumption","Alaska","AK",1451 +2014-04-01,"Commercial Consumption","Alabama","AL",1592 +2014-04-01,"Commercial Consumption","Arizona","AZ",2546 +2014-04-01,"Commercial Consumption","Colorado","CO",4234 +2014-04-01,"Commercial Consumption","Wisconsin","WI",7965 +2014-04-01,"Commercial Consumption","Kentucky","KY",2219 +2014-04-01,"Commercial Consumption","Vermont","VT",393 +2014-04-01,"Commercial Consumption","California","CA",17614 +2014-04-01,"Commercial Consumption","Michigan","MI",14841 +2014-04-01,"Commercial Consumption","Indiana","IN",5827 +2014-04-01,"Delivered to Consumers","U.S.","U.S.",1786764 +2014-04-01,"Delivered to Consumers","South Dakota","SD",5688 +2014-04-01,"Delivered to Consumers","Nebraska","NE",12191 +2014-04-01,"Delivered to Consumers","Florida","FL",101757 +2014-04-01,"Delivered to Consumers","District of Columbia","DC",2183 +2014-04-01,"Delivered to Consumers","Tennessee","TN",18678 +2014-04-01,"Delivered to Consumers","Pennsylvania","PA",69388 +2014-04-01,"Delivered to Consumers","North Carolina","NC",30764 +2014-04-01,"Delivered to Consumers","Missouri","MO",20201 +2014-04-01,"Delivered to Consumers","New Jersey","NJ",52255 +2014-04-01,"Delivered to Consumers","New Hampshire","NH",5291 +2014-04-01,"Delivered to Consumers","North Dakota","ND",4801 +2014-04-01,"Delivered to Consumers","West Virginia","WV",6176 +2014-04-01,"Delivered to Consumers","Alaska","AK",5674 +2014-04-01,"Delivered to Consumers","Michigan","MI",61749 +2014-04-01,"Delivered to Consumers","Arkansas","AR",18688 +2014-04-01,"Delivered to Consumers","Oregon","OR",12453 +2014-04-01,"Delivered to Consumers","Utah","UT",13307 +2014-04-01,"Delivered to Consumers","New York","NY",100389 +2014-04-01,"Delivered to Consumers","Hawaii","HI",251 +2014-04-01,"Delivered to Consumers","Oklahoma","OK",46444 +2014-04-01,"Delivered to Consumers","Kentucky","KY",18126 +2014-04-01,"Delivered to Consumers","Iowa","IA",23136 +2014-04-01,"Delivered to Consumers","California","CA",168620 +2014-04-01,"Delivered to Consumers","Nevada","NV",17186 +2014-04-01,"Delivered to Consumers","Georgia","GA",41700 +2014-04-01,"Delivered to Consumers","Illinois","IL",71889 +2014-04-01,"Delivered to Consumers","Montana","MT",5654 +2014-04-01,"Delivered to Consumers","Idaho","ID",5579 +2014-04-01,"Delivered to Consumers","Alabama","AL",37858 +2014-04-01,"Delivered to Consumers","South Carolina","SC",17840 +2014-04-01,"Delivered to Consumers","Delaware","DE",6971 +2014-04-01,"Delivered to Consumers","Vermont","VT",890 +2014-04-01,"Delivered to Consumers","Maryland","MD",12958 +2014-04-01,"Delivered to Consumers","Kansas","KS",17935 +2014-04-01,"Delivered to Consumers","Ohio","OH",66714 +2014-04-01,"Delivered to Consumers","Wisconsin","WI",34699 +2014-04-01,"Delivered to Consumers","Virginia","VA",26519 +2014-04-01,"Delivered to Consumers","Massachusetts","MA",38084 +2014-04-01,"Delivered to Consumers","Colorado","CO",25416 +2014-04-01,"Delivered to Consumers","Washington","WA",18875 +2014-04-01,"Delivered to Consumers","Minnesota","MN",35166 +2014-04-01,"Delivered to Consumers","Rhode Island","RI",8264 +2014-04-01,"Delivered to Consumers","Texas","TX",260005 +2014-04-01,"Delivered to Consumers","Maine","ME",4885 +2014-04-01,"Delivered to Consumers","Louisiana","LA",106818 +2014-04-01,"Delivered to Consumers","New Mexico","NM",11696 +2014-04-01,"Delivered to Consumers","Indiana","IN",47750 +2014-04-01,"Delivered to Consumers","Wyoming","WY",6033 +2014-04-01,"Delivered to Consumers","Connecticut","CT",19705 +2014-04-01,"Delivered to Consumers","Mississippi","MS",25047 +2014-04-01,"Delivered to Consumers","Arizona","AZ",16417 +2014-04-01,"Electric Power Consumption","Arkansas","AR",5553 +2014-04-01,"Electric Power Consumption","New York","NY",29045 +2014-04-01,"Electric Power Consumption","Missouri","MO",1547 +2014-04-01,"Electric Power Consumption","North Dakota","ND",87 +2014-04-01,"Electric Power Consumption","Delaware","DE",3066 +2014-04-01,"Electric Power Consumption","Nevada","NV",10865 +2014-04-01,"Electric Power Consumption","Wyoming","WY",29 +2014-04-01,"Electric Power Consumption","South Dakota","SD",207 +2014-04-01,"Electric Power Consumption","Nebraska","NE",517 +2014-04-01,"Electric Power Consumption","Mississippi","MS",11924 +2014-04-01,"Electric Power Consumption","Montana","MT",771 +2014-04-01,"Electric Power Consumption","Washington","WA",2674 +2014-04-01,"Electric Power Consumption","New Mexico","NM",6109 +2014-04-01,"Electric Power Consumption","Louisiana","LA",20257 +2014-04-01,"Electric Power Consumption","Rhode Island","RI",3516 +2014-04-01,"Electric Power Consumption","Oklahoma","OK",15823 +2014-04-01,"Electric Power Consumption","Kansas","KS",1385 +2014-04-01,"Electric Power Consumption","Maine","ME",1818 +2014-04-01,"Electric Power Consumption","Hawaii","HI",NA +2014-04-01,"Electric Power Consumption","Indiana","IN",3991 +2014-04-01,"Electric Power Consumption","Arizona","AZ",9439 +2014-04-01,"Electric Power Consumption","Virginia","VA",10055 +2014-04-01,"Electric Power Consumption","Idaho","ID",246 +2014-04-01,"Electric Power Consumption","Minnesota","MN",1218 +2014-04-01,"Electric Power Consumption","West Virginia","WV",74 +2014-04-01,"Electric Power Consumption","Pennsylvania","PA",21770 +2014-04-01,"Electric Power Consumption","Vermont","VT",1 +2014-04-01,"Electric Power Consumption","Tennessee","TN",2130 +2014-04-01,"Electric Power Consumption","Kentucky","KY",3765 +2014-04-01,"Electric Power Consumption","Ohio","OH",11354 +2014-04-01,"Electric Power Consumption","New Hampshire","NH",3350 +2014-04-01,"Electric Power Consumption","Connecticut","CT",8610 +2014-04-01,"Electric Power Consumption","Alabama","AL",18805 +2014-04-01,"Electric Power Consumption","Illinois","IL",1418 +2014-04-01,"Electric Power Consumption","Wisconsin","WI",4097 +2014-04-01,"Electric Power Consumption","U.S.","U.S.",548899 +2014-04-01,"Electric Power Consumption","Maryland","MD",873 +2014-04-01,"Electric Power Consumption","South Carolina","SC",7676 +2014-04-01,"Electric Power Consumption","Oregon","OR",2313 +2014-04-01,"Electric Power Consumption","Iowa","IA",477 +2014-04-01,"Electric Power Consumption","North Carolina","NC",15341 +2014-04-01,"Electric Power Consumption","Utah","UT",3310 +2014-04-01,"Electric Power Consumption","Michigan","MI",8060 +2014-04-01,"Electric Power Consumption","Georgia","GA",17644 +2014-04-01,"Electric Power Consumption","California","CA",56546 +2014-04-01,"Electric Power Consumption","New Jersey","NJ",15117 +2014-04-01,"Electric Power Consumption","Colorado","CO",5348 +2014-04-01,"Electric Power Consumption","Texas","TX",99834 +2014-04-01,"Electric Power Consumption","Massachusetts","MA",11199 +2014-04-01,"Electric Power Consumption","Florida","FL",87132 +2014-04-01,"Electric Power Consumption","Alaska","AK",2512 +2014-04-01,"Industrial Consumption","Hawaii","HI",29 +2014-04-01,"Industrial Consumption","Arizona","AZ",1879 +2014-04-01,"Industrial Consumption","U.S.","U.S.",627785 +2014-04-01,"Industrial Consumption","Texas","TX",129422 +2014-04-01,"Industrial Consumption","New Jersey","NJ",4614 +2014-04-01,"Industrial Consumption","New Hampshire","NH",743 +2014-04-01,"Industrial Consumption","Connecticut","CT",2267 +2014-04-01,"Industrial Consumption","District of Columbia","DC",0 +2014-04-01,"Industrial Consumption","Colorado","CO",6322 +2014-04-01,"Industrial Consumption","Ohio","OH",24434 +2014-04-01,"Industrial Consumption","Mississippi","MS",9724 +2014-04-01,"Industrial Consumption","Florida","FL",8114 +2014-04-01,"Industrial Consumption","North Carolina","NC",8893 +2014-04-01,"Industrial Consumption","Montana","MT",1678 +2014-04-01,"Industrial Consumption","Louisiana","LA",81868 +2014-04-01,"Industrial Consumption","South Carolina","SC",6961 +2014-04-01,"Industrial Consumption","Iowa","IA",13563 +2014-04-01,"Industrial Consumption","Kentucky","KY",8949 +2014-04-01,"Industrial Consumption","Indiana","IN",30014 +2014-04-01,"Industrial Consumption","Maryland","MD",1040 +2014-04-01,"Industrial Consumption","Missouri","MO",5350 +2014-04-01,"Industrial Consumption","Oregon","OR",4752 +2014-04-01,"Industrial Consumption","California","CA",62483 +2014-04-01,"Industrial Consumption","Arkansas","AR",6995 +2014-04-01,"Industrial Consumption","Minnesota","MN",13976 +2014-04-01,"Industrial Consumption","Idaho","ID",2318 +2014-04-01,"Industrial Consumption","North Dakota","ND",2736 +2014-04-01,"Industrial Consumption","Massachusetts","MA",4098 +2014-04-01,"Industrial Consumption","Oklahoma","OK",18764 +2014-04-01,"Industrial Consumption","Washington","WA",6377 +2014-04-01,"Industrial Consumption","New Mexico","NM",1580 +2014-04-01,"Industrial Consumption","Utah","UT",3302 +2014-04-01,"Industrial Consumption","Pennsylvania","PA",20145 +2014-04-01,"Industrial Consumption","Tennessee","TN",9241 +2014-04-01,"Industrial Consumption","Michigan","MI",15152 +2014-04-01,"Industrial Consumption","Rhode Island","RI",787 +2014-04-01,"Industrial Consumption","Georgia","GA",13277 +2014-04-01,"Industrial Consumption","Virginia","VA",6788 +2014-04-01,"Industrial Consumption","West Virginia","WV",2486 +2014-04-01,"Industrial Consumption","Alaska","AK",283 +2014-04-01,"Industrial Consumption","South Dakota","SD",3600 +2014-04-01,"Industrial Consumption","New York","NY",7366 +2014-04-01,"Industrial Consumption","Maine","ME",2145 +2014-04-01,"Industrial Consumption","Nebraska","NE",6431 +2014-04-01,"Industrial Consumption","Vermont","VT",141 +2014-04-01,"Industrial Consumption","Delaware","DE",2340 +2014-04-01,"Industrial Consumption","Kansas","KS",9768 +2014-04-01,"Industrial Consumption","Nevada","NV",1280 +2014-04-01,"Industrial Consumption","Alabama","AL",15238 +2014-04-01,"Industrial Consumption","Wyoming","WY",3900 +2014-04-01,"Industrial Consumption","Wisconsin","WI",11065 +2014-04-01,"Industrial Consumption","Illinois","IL",23106 +2014-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",123603 +2014-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",51310 +2014-04-01,"Residential Consumption","Ohio","OH",19967 +2014-04-01,"Residential Consumption","Hawaii","HI",53 +2014-04-01,"Residential Consumption","Vermont","VT",354 +2014-04-01,"Residential Consumption","Maryland","MD",5748 +2014-04-01,"Residential Consumption","Minnesota","MN",10881 +2014-04-01,"Residential Consumption","Georgia","GA",7145 +2014-04-01,"Residential Consumption","District of Columbia","DC",893 +2014-04-01,"Residential Consumption","New Mexico","NM",2292 +2014-04-01,"Residential Consumption","Florida","FL",1166 +2014-04-01,"Residential Consumption","Idaho","ID",1787 +2014-04-01,"Residential Consumption","New Jersey","NJ",18446 +2014-04-01,"Residential Consumption","Kentucky","KY",3189 +2014-04-01,"Residential Consumption","Missouri","MO",8183 +2014-04-01,"Residential Consumption","New York","NY",38643 +2014-04-01,"Residential Consumption","South Carolina","SC",1580 +2014-04-01,"Residential Consumption","Oregon","OR",3197 +2014-04-01,"Residential Consumption","Connecticut","CT",4620 +2014-04-01,"Residential Consumption","Nebraska","NE",2959 +2014-04-01,"Residential Consumption","South Dakota","SD",1001 +2014-04-01,"Residential Consumption","Alaska","AK",1427 +2014-04-01,"Residential Consumption","Iowa","IA",5244 +2014-04-01,"Residential Consumption","Virginia","VA",5389 +2014-04-01,"Residential Consumption","New Hampshire","NH",535 +2014-04-01,"Residential Consumption","Montana","MT",1642 +2014-04-01,"Residential Consumption","Colorado","CO",9485 +2014-04-01,"Residential Consumption","Washington","WA",5843 +2014-04-01,"Residential Consumption","California","CA",30716 +2014-04-01,"Residential Consumption","Utah","UT",4143 +2014-04-01,"Residential Consumption","Maine","ME",206 +2014-04-01,"Residential Consumption","Alabama","AL",2192 +2014-04-01,"Residential Consumption","West Virginia","WV",1972 +2014-04-01,"Residential Consumption","Illinois","IL",30870 +2014-04-01,"Residential Consumption","North Carolina","NC",3272 +2014-04-01,"Residential Consumption","Mississippi","MS",1823 +2014-04-01,"Residential Consumption","Louisiana","LA",2576 +2014-04-01,"Residential Consumption","Arkansas","AR",2463 +2014-04-01,"Residential Consumption","Kansas","KS",4506 +2014-04-01,"Residential Consumption","Delaware","DE",825 +2014-04-01,"Residential Consumption","Wisconsin","WI",11561 +2014-04-01,"Residential Consumption","Michigan","MI",23659 +2014-04-01,"Residential Consumption","Pennsylvania","PA",17444 +2014-04-01,"Residential Consumption","North Dakota","ND",1007 +2014-04-01,"Residential Consumption","Massachusetts","MA",12741 +2014-04-01,"Residential Consumption","Wyoming","WY",1101 +2014-04-01,"Residential Consumption","U.S.","U.S.",356142 +2014-04-01,"Residential Consumption","Rhode Island","RI",2332 +2014-04-01,"Residential Consumption","Arizona","AZ",2373 +2014-04-01,"Residential Consumption","Texas","TX",15627 +2014-04-01,"Residential Consumption","Tennessee","TN",4088 +2014-04-01,"Residential Consumption","Nevada","NV",2585 +2014-04-01,"Residential Consumption","Indiana","IN",7911 +2014-04-01,"Residential Consumption","Oklahoma","OK",6476 +2014-04-01,"Vehicle Fuel Consumption","Washington","WA",40 +2014-04-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",32 +2014-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",66 +2014-04-01,"Vehicle Fuel Consumption","Arizona","AZ",179 +2014-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-04-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-04-01,"Vehicle Fuel Consumption","Michigan","MI",36 +2014-04-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-04-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-04-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-04-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-04-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-04-01,"Vehicle Fuel Consumption","Tennessee","TN",18 +2014-04-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2014-04-01,"Vehicle Fuel Consumption","New York","NY",302 +2014-04-01,"Vehicle Fuel Consumption","Nevada","NV",80 +2014-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2014-04-01,"Vehicle Fuel Consumption","Texas","TX",342 +2014-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-04-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2014-04-01,"Vehicle Fuel Consumption","California","CA",1260 +2014-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2014-04-01,"Vehicle Fuel Consumption","Alabama","AL",31 +2014-04-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-04-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-04-01,"Vehicle Fuel Consumption","Colorado","CO",27 +2014-04-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-04-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2014-04-01,"Vehicle Fuel Consumption","Utah","UT",21 +2014-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-04-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-04-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2014-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",2900 +2014-04-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2014-04-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-04-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2014-04-01,"Vehicle Fuel Consumption","Florida","FL",24 +2014-04-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-04-01,"Vehicle Fuel Consumption","Georgia","GA",89 +2014-04-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-04-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-04-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-04-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2014-05-01,"Commercial Consumption","Colorado","CO",2932 +2014-05-01,"Commercial Consumption","Utah","UT",2538 +2014-05-01,"Commercial Consumption","New Mexico","NM",1324 +2014-05-01,"Commercial Consumption","Ohio","OH",6482 +2014-05-01,"Commercial Consumption","Wyoming","WY",670 +2014-05-01,"Commercial Consumption","Massachusetts","MA",6139 +2014-05-01,"Commercial Consumption","New Jersey","NJ",12207 +2014-05-01,"Commercial Consumption","Iowa","IA",2396 +2014-05-01,"Commercial Consumption","Tennessee","TN",2175 +2014-05-01,"Commercial Consumption","Oklahoma","OK",2464 +2014-05-01,"Commercial Consumption","Montana","MT",959 +2014-05-01,"Commercial Consumption","Kentucky","KY",1390 +2014-05-01,"Commercial Consumption","Maryland","MD",3690 +2014-05-01,"Commercial Consumption","Alaska","AK",902 +2014-05-01,"Commercial Consumption","Nebraska","NE",1557 +2014-05-01,"Commercial Consumption","Mississippi","MS",1065 +2014-05-01,"Commercial Consumption","Arizona","AZ",2260 +2014-05-01,"Commercial Consumption","Washington","WA",2774 +2014-05-01,"Commercial Consumption","Pennsylvania","PA",5684 +2014-05-01,"Commercial Consumption","Missouri","MO",2733 +2014-05-01,"Commercial Consumption","Kansas","KS",1432 +2014-05-01,"Commercial Consumption","Florida","FL",4738 +2014-05-01,"Commercial Consumption","South Carolina","SC",1412 +2014-05-01,"Commercial Consumption","Wisconsin","WI",4324 +2014-05-01,"Commercial Consumption","South Dakota","SD",519 +2014-05-01,"Commercial Consumption","Maine","ME",466 +2014-05-01,"Commercial Consumption","Georgia","GA",2519 +2014-05-01,"Commercial Consumption","Vermont","VT",259 +2014-05-01,"Commercial Consumption","Hawaii","HI",158 +2014-05-01,"Commercial Consumption","Connecticut","CT",2589 +2014-05-01,"Commercial Consumption","Michigan","MI",8664 +2014-05-01,"Commercial Consumption","Illinois","IL",10946 +2014-05-01,"Commercial Consumption","West Virginia","WV",1269 +2014-05-01,"Commercial Consumption","Idaho","ID",766 +2014-05-01,"Commercial Consumption","Arkansas","AR",2864 +2014-05-01,"Commercial Consumption","New York","NY",18591 +2014-05-01,"Commercial Consumption","Indiana","IN",3368 +2014-05-01,"Commercial Consumption","District of Columbia","DC",877 +2014-05-01,"Commercial Consumption","Oregon","OR",1237 +2014-05-01,"Commercial Consumption","New Hampshire","NH",582 +2014-05-01,"Commercial Consumption","Alabama","AL",1496 +2014-05-01,"Commercial Consumption","Delaware","DE",615 +2014-05-01,"Commercial Consumption","Louisiana","LA",2145 +2014-05-01,"Commercial Consumption","North Dakota","ND",685 +2014-05-01,"Commercial Consumption","North Carolina","NC",3196 +2014-05-01,"Commercial Consumption","Minnesota","MN",4546 +2014-05-01,"Commercial Consumption","Virginia","VA",2904 +2014-05-01,"Commercial Consumption","U.S.","U.S.",176753 +2014-05-01,"Commercial Consumption","Texas","TX",11280 +2014-05-01,"Commercial Consumption","Rhode Island","RI",485 +2014-05-01,"Commercial Consumption","California","CA",17418 +2014-05-01,"Commercial Consumption","Nevada","NV",2061 +2014-05-01,"Delivered to Consumers","South Dakota","SD",4883 +2014-05-01,"Delivered to Consumers","Maryland","MD",10196 +2014-05-01,"Delivered to Consumers","Alaska","AK",4710 +2014-05-01,"Delivered to Consumers","Oklahoma","OK",34344 +2014-05-01,"Delivered to Consumers","Tennessee","TN",18029 +2014-05-01,"Delivered to Consumers","Iowa","IA",19546 +2014-05-01,"Delivered to Consumers","Wisconsin","WI",24789 +2014-05-01,"Delivered to Consumers","California","CA",166204 +2014-05-01,"Delivered to Consumers","Wyoming","WY",5129 +2014-05-01,"Delivered to Consumers","Kansas","KS",15730 +2014-05-01,"Delivered to Consumers","Nebraska","NE",10831 +2014-05-01,"Delivered to Consumers","Missouri","MO",13753 +2014-05-01,"Delivered to Consumers","Texas","TX",266265 +2014-05-01,"Delivered to Consumers","New Hampshire","NH",4669 +2014-05-01,"Delivered to Consumers","U.S.","U.S.",1636202 +2014-05-01,"Delivered to Consumers","New Mexico","NM",11055 +2014-05-01,"Delivered to Consumers","West Virginia","WV",4610 +2014-05-01,"Delivered to Consumers","Illinois","IL",53342 +2014-05-01,"Delivered to Consumers","Montana","MT",3823 +2014-05-01,"Delivered to Consumers","Michigan","MI",41608 +2014-05-01,"Delivered to Consumers","Kentucky","KY",13279 +2014-05-01,"Delivered to Consumers","Arkansas","AR",17239 +2014-05-01,"Delivered to Consumers","Pennsylvania","PA",62318 +2014-05-01,"Delivered to Consumers","Massachusetts","MA",27292 +2014-05-01,"Delivered to Consumers","Delaware","DE",6709 +2014-05-01,"Delivered to Consumers","Rhode Island","RI",5308 +2014-05-01,"Delivered to Consumers","Hawaii","HI",239 +2014-05-01,"Delivered to Consumers","Idaho","ID",5099 +2014-05-01,"Delivered to Consumers","Maine","ME",4072 +2014-05-01,"Delivered to Consumers","Louisiana","LA",110407 +2014-05-01,"Delivered to Consumers","Connecticut","CT",14891 +2014-05-01,"Delivered to Consumers","Colorado","CO",22827 +2014-05-01,"Delivered to Consumers","South Carolina","SC",17883 +2014-05-01,"Delivered to Consumers","District of Columbia","DC",1392 +2014-05-01,"Delivered to Consumers","Vermont","VT",573 +2014-05-01,"Delivered to Consumers","Alabama","AL",45433 +2014-05-01,"Delivered to Consumers","Virginia","VA",27337 +2014-05-01,"Delivered to Consumers","Mississippi","MS",32608 +2014-05-01,"Delivered to Consumers","Oregon","OR",9968 +2014-05-01,"Delivered to Consumers","North Dakota","ND",3752 +2014-05-01,"Delivered to Consumers","Indiana","IN",42393 +2014-05-01,"Delivered to Consumers","New York","NY",82722 +2014-05-01,"Delivered to Consumers","Ohio","OH",51914 +2014-05-01,"Delivered to Consumers","Nevada","NV",17493 +2014-05-01,"Delivered to Consumers","New Jersey","NJ",45820 +2014-05-01,"Delivered to Consumers","Washington","WA",14675 +2014-05-01,"Delivered to Consumers","Utah","UT",13793 +2014-05-01,"Delivered to Consumers","North Carolina","NC",29393 +2014-05-01,"Delivered to Consumers","Georgia","GA",42666 +2014-05-01,"Delivered to Consumers","Arizona","AZ",20069 +2014-05-01,"Delivered to Consumers","Minnesota","MN",25242 +2014-05-01,"Delivered to Consumers","Florida","FL",107879 +2014-05-01,"Electric Power Consumption","Rhode Island","RI",3650 +2014-05-01,"Electric Power Consumption","Massachusetts","MA",11372 +2014-05-01,"Electric Power Consumption","Missouri","MO",2943 +2014-05-01,"Electric Power Consumption","Mississippi","MS",20926 +2014-05-01,"Electric Power Consumption","Indiana","IN",6189 +2014-05-01,"Electric Power Consumption","Florida","FL",94357 +2014-05-01,"Electric Power Consumption","Colorado","CO",8022 +2014-05-01,"Electric Power Consumption","Arkansas","AR",6338 +2014-05-01,"Electric Power Consumption","Pennsylvania","PA",29362 +2014-05-01,"Electric Power Consumption","North Dakota","ND",207 +2014-05-01,"Electric Power Consumption","Maryland","MD",1776 +2014-05-01,"Electric Power Consumption","California","CA",57046 +2014-05-01,"Electric Power Consumption","Virginia","VA",15387 +2014-05-01,"Electric Power Consumption","Minnesota","MN",3589 +2014-05-01,"Electric Power Consumption","U.S.","U.S.",646929 +2014-05-01,"Electric Power Consumption","Texas","TX",111872 +2014-05-01,"Electric Power Consumption","Utah","UT",4050 +2014-05-01,"Electric Power Consumption","Wyoming","WY",32 +2014-05-01,"Electric Power Consumption","Tennessee","TN",4954 +2014-05-01,"Electric Power Consumption","Kentucky","KY",1472 +2014-05-01,"Electric Power Consumption","Hawaii","HI",NA +2014-05-01,"Electric Power Consumption","Alaska","AK",2668 +2014-05-01,"Electric Power Consumption","Washington","WA",2623 +2014-05-01,"Electric Power Consumption","New Jersey","NJ",19254 +2014-05-01,"Electric Power Consumption","Oregon","OR",2766 +2014-05-01,"Electric Power Consumption","Kansas","KS",2396 +2014-05-01,"Electric Power Consumption","Iowa","IA",1200 +2014-05-01,"Electric Power Consumption","Nebraska","NE",821 +2014-05-01,"Electric Power Consumption","Arizona","AZ",14062 +2014-05-01,"Electric Power Consumption","Georgia","GA",22444 +2014-05-01,"Electric Power Consumption","South Carolina","SC",8914 +2014-05-01,"Electric Power Consumption","Illinois","IL",5096 +2014-05-01,"Electric Power Consumption","Alabama","AL",27325 +2014-05-01,"Electric Power Consumption","New Mexico","NM",6681 +2014-05-01,"Electric Power Consumption","New York","NY",31762 +2014-05-01,"Electric Power Consumption","Oklahoma","OK",14599 +2014-05-01,"Electric Power Consumption","Vermont","VT",2 +2014-05-01,"Electric Power Consumption","North Carolina","NC",16523 +2014-05-01,"Electric Power Consumption","Ohio","OH",13816 +2014-05-01,"Electric Power Consumption","New Hampshire","NH",2973 +2014-05-01,"Electric Power Consumption","Delaware","DE",3121 +2014-05-01,"Electric Power Consumption","Louisiana","LA",26121 +2014-05-01,"Electric Power Consumption","Idaho","ID",998 +2014-05-01,"Electric Power Consumption","Michigan","MI",9188 +2014-05-01,"Electric Power Consumption","West Virginia","WV",246 +2014-05-01,"Electric Power Consumption","Wisconsin","WI",5973 +2014-05-01,"Electric Power Consumption","Nevada","NV",12254 +2014-05-01,"Electric Power Consumption","South Dakota","SD",317 +2014-05-01,"Electric Power Consumption","Maine","ME",1161 +2014-05-01,"Electric Power Consumption","Montana","MT",126 +2014-05-01,"Electric Power Consumption","Connecticut","CT",7959 +2014-05-01,"Industrial Consumption","North Dakota","ND",2354 +2014-05-01,"Industrial Consumption","Missouri","MO",4848 +2014-05-01,"Industrial Consumption","Louisiana","LA",80163 +2014-05-01,"Industrial Consumption","U.S.","U.S.",606067 +2014-05-01,"Industrial Consumption","Texas","TX",133904 +2014-05-01,"Industrial Consumption","Florida","FL",7841 +2014-05-01,"Industrial Consumption","Kentucky","KY",8850 +2014-05-01,"Industrial Consumption","Montana","MT",1817 +2014-05-01,"Industrial Consumption","Hawaii","HI",31 +2014-05-01,"Industrial Consumption","New Mexico","NM",1529 +2014-05-01,"Industrial Consumption","Arkansas","AR",6770 +2014-05-01,"Industrial Consumption","Minnesota","MN",11580 +2014-05-01,"Industrial Consumption","Idaho","ID",2452 +2014-05-01,"Industrial Consumption","Connecticut","CT",2015 +2014-05-01,"Industrial Consumption","Indiana","IN",28579 +2014-05-01,"Industrial Consumption","Ohio","OH",21392 +2014-05-01,"Industrial Consumption","Alabama","AL",15234 +2014-05-01,"Industrial Consumption","South Carolina","SC",6878 +2014-05-01,"Industrial Consumption","Nebraska","NE",6736 +2014-05-01,"Industrial Consumption","Vermont","VT",138 +2014-05-01,"Industrial Consumption","New Jersey","NJ",4760 +2014-05-01,"Industrial Consumption","Iowa","IA",13095 +2014-05-01,"Industrial Consumption","Illinois","IL",21040 +2014-05-01,"Industrial Consumption","Colorado","CO",5525 +2014-05-01,"Industrial Consumption","Washington","WA",5847 +2014-05-01,"Industrial Consumption","Mississippi","MS",9735 +2014-05-01,"Industrial Consumption","Virginia","VA",6540 +2014-05-01,"Industrial Consumption","Wisconsin","WI",9177 +2014-05-01,"Industrial Consumption","New Hampshire","NH",655 +2014-05-01,"Industrial Consumption","Delaware","DE",2477 +2014-05-01,"Industrial Consumption","Oklahoma","OK",14683 +2014-05-01,"Industrial Consumption","Pennsylvania","PA",18532 +2014-05-01,"Industrial Consumption","New York","NY",5892 +2014-05-01,"Industrial Consumption","Wyoming","WY",3726 +2014-05-01,"Industrial Consumption","Tennessee","TN",9014 +2014-05-01,"Industrial Consumption","Rhode Island","RI",499 +2014-05-01,"Industrial Consumption","North Carolina","NC",8344 +2014-05-01,"Industrial Consumption","Maryland","MD",1122 +2014-05-01,"Industrial Consumption","Oregon","OR",4492 +2014-05-01,"Industrial Consumption","Michigan","MI",11733 +2014-05-01,"Industrial Consumption","Massachusetts","MA",3173 +2014-05-01,"Industrial Consumption","Arizona","AZ",1812 +2014-05-01,"Industrial Consumption","Maine","ME",2332 +2014-05-01,"Industrial Consumption","California","CA",65214 +2014-05-01,"Industrial Consumption","Alaska","AK",338 +2014-05-01,"Industrial Consumption","South Dakota","SD",3503 +2014-05-01,"Industrial Consumption","Kansas","KS",9845 +2014-05-01,"Industrial Consumption","Utah","UT",3243 +2014-05-01,"Industrial Consumption","Nevada","NV",1272 +2014-05-01,"Industrial Consumption","West Virginia","WV",2181 +2014-05-01,"Industrial Consumption","Georgia","GA",13154 +2014-05-01,"Industrial Consumption","District of Columbia","DC",0 +2014-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",127034 +2014-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",46987 +2014-05-01,"Residential Consumption","Louisiana","LA",1972 +2014-05-01,"Residential Consumption","Connecticut","CT",2325 +2014-05-01,"Residential Consumption","Nevada","NV",1824 +2014-05-01,"Residential Consumption","Oklahoma","OK",2558 +2014-05-01,"Residential Consumption","Arizona","AZ",1750 +2014-05-01,"Residential Consumption","Alabama","AL",1345 +2014-05-01,"Residential Consumption","Rhode Island","RI",667 +2014-05-01,"Residential Consumption","Georgia","GA",4458 +2014-05-01,"Residential Consumption","Maine","ME",112 +2014-05-01,"Residential Consumption","Indiana","IN",4250 +2014-05-01,"Residential Consumption","Idaho","ID",870 +2014-05-01,"Residential Consumption","New York","NY",26165 +2014-05-01,"Residential Consumption","Maryland","MD",3588 +2014-05-01,"Residential Consumption","Minnesota","MN",5522 +2014-05-01,"Residential Consumption","Pennsylvania","PA",8707 +2014-05-01,"Residential Consumption","Kansas","KS",2055 +2014-05-01,"Residential Consumption","Massachusetts","MA",6548 +2014-05-01,"Residential Consumption","New Hampshire","NH",454 +2014-05-01,"Residential Consumption","Kentucky","KY",1563 +2014-05-01,"Residential Consumption","Oregon","OR",1459 +2014-05-01,"Residential Consumption","Ohio","OH",10181 +2014-05-01,"Residential Consumption","Virginia","VA",2489 +2014-05-01,"Residential Consumption","District of Columbia","DC",446 +2014-05-01,"Residential Consumption","Florida","FL",917 +2014-05-01,"Residential Consumption","Colorado","CO",6319 +2014-05-01,"Residential Consumption","Missouri","MO",3221 +2014-05-01,"Residential Consumption","U.S.","U.S.",203456 +2014-05-01,"Residential Consumption","North Carolina","NC",1320 +2014-05-01,"Residential Consumption","Mississippi","MS",877 +2014-05-01,"Residential Consumption","Iowa","IA",2853 +2014-05-01,"Residential Consumption","Hawaii","HI",49 +2014-05-01,"Residential Consumption","Tennessee","TN",1868 +2014-05-01,"Residential Consumption","Nebraska","NE",1713 +2014-05-01,"Residential Consumption","North Dakota","ND",506 +2014-05-01,"Residential Consumption","Washington","WA",3390 +2014-05-01,"Residential Consumption","Wyoming","WY",699 +2014-05-01,"Residential Consumption","West Virginia","WV",913 +2014-05-01,"Residential Consumption","Illinois","IL",16225 +2014-05-01,"Residential Consumption","South Carolina","SC",676 +2014-05-01,"Residential Consumption","Utah","UT",3941 +2014-05-01,"Residential Consumption","New Mexico","NM",1507 +2014-05-01,"Residential Consumption","Arkansas","AR",1265 +2014-05-01,"Residential Consumption","New Jersey","NJ",9581 +2014-05-01,"Residential Consumption","Alaska","AK",800 +2014-05-01,"Residential Consumption","Texas","TX",8855 +2014-05-01,"Residential Consumption","Wisconsin","WI",5305 +2014-05-01,"Residential Consumption","Vermont","VT",175 +2014-05-01,"Residential Consumption","Michigan","MI",11987 +2014-05-01,"Residential Consumption","South Dakota","SD",545 +2014-05-01,"Residential Consumption","Montana","MT",921 +2014-05-01,"Residential Consumption","Delaware","DE",496 +2014-05-01,"Residential Consumption","California","CA",25224 +2014-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-05-01,"Vehicle Fuel Consumption","Florida","FL",25 +2014-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-05-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-05-01,"Vehicle Fuel Consumption","Nevada","NV",83 +2014-05-01,"Vehicle Fuel Consumption","Texas","TX",353 +2014-05-01,"Vehicle Fuel Consumption","Louisiana","LA",5 +2014-05-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-05-01,"Vehicle Fuel Consumption","Georgia","GA",92 +2014-05-01,"Vehicle Fuel Consumption","Illinois","IL",35 +2014-05-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2014-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",33 +2014-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-05-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-05-01,"Vehicle Fuel Consumption","Idaho","ID",13 +2014-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-05-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-05-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-05-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-05-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-05-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-05-01,"Vehicle Fuel Consumption","Washington","WA",41 +2014-05-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2014-05-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2014-05-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2014-05-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-05-01,"Vehicle Fuel Consumption","California","CA",1302 +2014-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",40 +2014-05-01,"Vehicle Fuel Consumption","Alabama","AL",32 +2014-05-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-05-01,"Vehicle Fuel Consumption","Maryland","MD",20 +2014-05-01,"Vehicle Fuel Consumption","Utah","UT",22 +2014-05-01,"Vehicle Fuel Consumption","New York","NY",312 +2014-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2014-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-05-01,"Vehicle Fuel Consumption","Michigan","MI",38 +2014-05-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-05-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-05-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2014-05-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-05-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-05-01,"Vehicle Fuel Consumption","Arizona","AZ",185 +2014-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",61 +2014-05-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",2997 +2014-06-01,"Commercial Consumption","Wyoming","WY",365 +2014-06-01,"Commercial Consumption","New Mexico","NM",1118 +2014-06-01,"Commercial Consumption","Wisconsin","WI",3333 +2014-06-01,"Commercial Consumption","New Jersey","NJ",9819 +2014-06-01,"Commercial Consumption","New Hampshire","NH",292 +2014-06-01,"Commercial Consumption","Kansas","KS",1177 +2014-06-01,"Commercial Consumption","Florida","FL",4565 +2014-06-01,"Commercial Consumption","Delaware","DE",412 +2014-06-01,"Commercial Consumption","Tennessee","TN",2029 +2014-06-01,"Commercial Consumption","Minnesota","MN",2862 +2014-06-01,"Commercial Consumption","Connecticut","CT",2221 +2014-06-01,"Commercial Consumption","Michigan","MI",5304 +2014-06-01,"Commercial Consumption","Indiana","IN",2360 +2014-06-01,"Commercial Consumption","Virginia","VA",2806 +2014-06-01,"Commercial Consumption","Montana","MT",671 +2014-06-01,"Commercial Consumption","Rhode Island","RI",442 +2014-06-01,"Commercial Consumption","Idaho","ID",661 +2014-06-01,"Commercial Consumption","Alaska","AK",829 +2014-06-01,"Commercial Consumption","Louisiana","LA",1709 +2014-06-01,"Commercial Consumption","Pennsylvania","PA",4759 +2014-06-01,"Commercial Consumption","Maine","ME",357 +2014-06-01,"Commercial Consumption","Ohio","OH",5269 +2014-06-01,"Commercial Consumption","Hawaii","HI",162 +2014-06-01,"Commercial Consumption","Illinois","IL",7965 +2014-06-01,"Commercial Consumption","South Carolina","SC",1286 +2014-06-01,"Commercial Consumption","Utah","UT",1586 +2014-06-01,"Commercial Consumption","Oregon","OR",1201 +2014-06-01,"Commercial Consumption","Texas","TX",10733 +2014-06-01,"Commercial Consumption","California","CA",16551 +2014-06-01,"Commercial Consumption","Arkansas","AR",2577 +2014-06-01,"Commercial Consumption","District of Columbia","DC",744 +2014-06-01,"Commercial Consumption","North Carolina","NC",2826 +2014-06-01,"Commercial Consumption","Oklahoma","OK",1744 +2014-06-01,"Commercial Consumption","Massachusetts","MA",3456 +2014-06-01,"Commercial Consumption","Kentucky","KY",1079 +2014-06-01,"Commercial Consumption","Maryland","MD",2862 +2014-06-01,"Commercial Consumption","Georgia","GA",2223 +2014-06-01,"Commercial Consumption","Mississippi","MS",950 +2014-06-01,"Commercial Consumption","Arizona","AZ",1931 +2014-06-01,"Commercial Consumption","Washington","WA",2427 +2014-06-01,"Commercial Consumption","Colorado","CO",1937 +2014-06-01,"Commercial Consumption","Missouri","MO",2190 +2014-06-01,"Commercial Consumption","U.S.","U.S.",141451 +2014-06-01,"Commercial Consumption","Vermont","VT",199 +2014-06-01,"Commercial Consumption","Iowa","IA",1700 +2014-06-01,"Commercial Consumption","Alabama","AL",1132 +2014-06-01,"Commercial Consumption","New York","NY",14274 +2014-06-01,"Commercial Consumption","Nebraska","NE",1101 +2014-06-01,"Commercial Consumption","West Virginia","WV",786 +2014-06-01,"Commercial Consumption","North Dakota","ND",354 +2014-06-01,"Commercial Consumption","South Dakota","SD",361 +2014-06-01,"Commercial Consumption","Nevada","NV",1753 +2014-06-01,"Delivered to Consumers","Illinois","IL",41986 +2014-06-01,"Delivered to Consumers","Rhode Island","RI",6480 +2014-06-01,"Delivered to Consumers","Montana","MT",3188 +2014-06-01,"Delivered to Consumers","Ohio","OH",48707 +2014-06-01,"Delivered to Consumers","Nebraska","NE",8871 +2014-06-01,"Delivered to Consumers","Florida","FL",107969 +2014-06-01,"Delivered to Consumers","South Dakota","SD",4139 +2014-06-01,"Delivered to Consumers","Iowa","IA",17262 +2014-06-01,"Delivered to Consumers","Wisconsin","WI",19528 +2014-06-01,"Delivered to Consumers","Texas","TX",279037 +2014-06-01,"Delivered to Consumers","Nevada","NV",18783 +2014-06-01,"Delivered to Consumers","Minnesota","MN",20872 +2014-06-01,"Delivered to Consumers","U.S.","U.S.",1576508 +2014-06-01,"Delivered to Consumers","West Virginia","WV",3706 +2014-06-01,"Delivered to Consumers","Alaska","AK",4694 +2014-06-01,"Delivered to Consumers","Oklahoma","OK",34202 +2014-06-01,"Delivered to Consumers","Idaho","ID",4218 +2014-06-01,"Delivered to Consumers","Alabama","AL",46623 +2014-06-01,"Delivered to Consumers","Pennsylvania","PA",63427 +2014-06-01,"Delivered to Consumers","North Carolina","NC",32597 +2014-06-01,"Delivered to Consumers","California","CA",159661 +2014-06-01,"Delivered to Consumers","Louisiana","LA",106128 +2014-06-01,"Delivered to Consumers","Utah","UT",12880 +2014-06-01,"Delivered to Consumers","Wyoming","WY",4287 +2014-06-01,"Delivered to Consumers","Maryland","MD",8352 +2014-06-01,"Delivered to Consumers","Kansas","KS",12811 +2014-06-01,"Delivered to Consumers","Mississippi","MS",32438 +2014-06-01,"Delivered to Consumers","Massachusetts","MA",22385 +2014-06-01,"Delivered to Consumers","Oregon","OR",9336 +2014-06-01,"Delivered to Consumers","North Dakota","ND",3291 +2014-06-01,"Delivered to Consumers","District of Columbia","DC",1103 +2014-06-01,"Delivered to Consumers","Kentucky","KY",11819 +2014-06-01,"Delivered to Consumers","Connecticut","CT",14406 +2014-06-01,"Delivered to Consumers","New Jersey","NJ",43606 +2014-06-01,"Delivered to Consumers","Maine","ME",5374 +2014-06-01,"Delivered to Consumers","Arizona","AZ",27795 +2014-06-01,"Delivered to Consumers","Virginia","VA",27040 +2014-06-01,"Delivered to Consumers","Georgia","GA",45029 +2014-06-01,"Delivered to Consumers","New Hampshire","NH",4007 +2014-06-01,"Delivered to Consumers","New Mexico","NM",11061 +2014-06-01,"Delivered to Consumers","Hawaii","HI",240 +2014-06-01,"Delivered to Consumers","Tennessee","TN",17232 +2014-06-01,"Delivered to Consumers","South Carolina","SC",16833 +2014-06-01,"Delivered to Consumers","Washington","WA",13153 +2014-06-01,"Delivered to Consumers","Indiana","IN",37104 +2014-06-01,"Delivered to Consumers","Delaware","DE",7336 +2014-06-01,"Delivered to Consumers","Vermont","VT",430 +2014-06-01,"Delivered to Consumers","New York","NY",75655 +2014-06-01,"Delivered to Consumers","Michigan","MI",31716 +2014-06-01,"Delivered to Consumers","Arkansas","AR",18058 +2014-06-01,"Delivered to Consumers","Missouri","MO",11031 +2014-06-01,"Delivered to Consumers","Colorado","CO",18625 +2014-06-01,"Electric Power Consumption","Arkansas","AR",8150 +2014-06-01,"Electric Power Consumption","Kansas","KS",1748 +2014-06-01,"Electric Power Consumption","Pennsylvania","PA",35815 +2014-06-01,"Electric Power Consumption","Wyoming","WY",30 +2014-06-01,"Electric Power Consumption","Tennessee","TN",5288 +2014-06-01,"Electric Power Consumption","Kentucky","KY",1117 +2014-06-01,"Electric Power Consumption","Hawaii","HI",NA +2014-06-01,"Electric Power Consumption","Montana","MT",374 +2014-06-01,"Electric Power Consumption","Indiana","IN",5188 +2014-06-01,"Electric Power Consumption","Georgia","GA",26583 +2014-06-01,"Electric Power Consumption","California","CA",56205 +2014-06-01,"Electric Power Consumption","Idaho","ID",595 +2014-06-01,"Electric Power Consumption","Oregon","OR",2521 +2014-06-01,"Electric Power Consumption","Minnesota","MN",2751 +2014-06-01,"Electric Power Consumption","Illinois","IL",4657 +2014-06-01,"Electric Power Consumption","Maine","ME",3014 +2014-06-01,"Electric Power Consumption","Alaska","AK",2866 +2014-06-01,"Electric Power Consumption","Louisiana","LA",25736 +2014-06-01,"Electric Power Consumption","Massachusetts","MA",13430 +2014-06-01,"Electric Power Consumption","Vermont","VT",3 +2014-06-01,"Electric Power Consumption","U.S.","U.S.",720750 +2014-06-01,"Electric Power Consumption","Nebraska","NE",305 +2014-06-01,"Electric Power Consumption","Washington","WA",2381 +2014-06-01,"Electric Power Consumption","New York","NY",43321 +2014-06-01,"Electric Power Consumption","Alabama","AL",30018 +2014-06-01,"Electric Power Consumption","New Mexico","NM",7445 +2014-06-01,"Electric Power Consumption","Texas","TX",131526 +2014-06-01,"Electric Power Consumption","Oklahoma","OK",16771 +2014-06-01,"Electric Power Consumption","Michigan","MI",9446 +2014-06-01,"Electric Power Consumption","West Virginia","WV",347 +2014-06-01,"Electric Power Consumption","Ohio","OH",15108 +2014-06-01,"Electric Power Consumption","New Hampshire","NH",2843 +2014-06-01,"Electric Power Consumption","Virginia","VA",16051 +2014-06-01,"Electric Power Consumption","New Jersey","NJ",23065 +2014-06-01,"Electric Power Consumption","Arizona","AZ",22799 +2014-06-01,"Electric Power Consumption","Nevada","NV",14199 +2014-06-01,"Electric Power Consumption","Missouri","MO",2414 +2014-06-01,"Electric Power Consumption","Mississippi","MS",21040 +2014-06-01,"Electric Power Consumption","Delaware","DE",4589 +2014-06-01,"Electric Power Consumption","Colorado","CO",7907 +2014-06-01,"Electric Power Consumption","South Carolina","SC",8498 +2014-06-01,"Electric Power Consumption","Rhode Island","RI",4891 +2014-06-01,"Electric Power Consumption","Utah","UT",5848 +2014-06-01,"Electric Power Consumption","Wisconsin","WI",4586 +2014-06-01,"Electric Power Consumption","Iowa","IA",917 +2014-06-01,"Electric Power Consumption","South Dakota","SD",74 +2014-06-01,"Electric Power Consumption","North Carolina","NC",20914 +2014-06-01,"Electric Power Consumption","North Dakota","ND",150 +2014-06-01,"Electric Power Consumption","Maryland","MD",2496 +2014-06-01,"Electric Power Consumption","Connecticut","CT",8922 +2014-06-01,"Electric Power Consumption","Florida","FL",95806 +2014-06-01,"Industrial Consumption","Idaho","ID",2333 +2014-06-01,"Industrial Consumption","U.S.","U.S.",585811 +2014-06-01,"Industrial Consumption","Nevada","NV",1312 +2014-06-01,"Industrial Consumption","California","CA",63954 +2014-06-01,"Industrial Consumption","Nebraska","NE",6523 +2014-06-01,"Industrial Consumption","Florida","FL",6980 +2014-06-01,"Industrial Consumption","Illinois","IL",19691 +2014-06-01,"Industrial Consumption","District of Columbia","DC",0 +2014-06-01,"Industrial Consumption","Massachusetts","MA",2625 +2014-06-01,"Industrial Consumption","Oklahoma","OK",14108 +2014-06-01,"Industrial Consumption","Louisiana","LA",77414 +2014-06-01,"Industrial Consumption","Maine","ME",1948 +2014-06-01,"Industrial Consumption","South Carolina","SC",6574 +2014-06-01,"Industrial Consumption","West Virginia","WV",2105 +2014-06-01,"Industrial Consumption","Missouri","MO",4412 +2014-06-01,"Industrial Consumption","Colorado","CO",5228 +2014-06-01,"Industrial Consumption","Ohio","OH",22033 +2014-06-01,"Industrial Consumption","Arizona","AZ",1611 +2014-06-01,"Industrial Consumption","Pennsylvania","PA",17806 +2014-06-01,"Industrial Consumption","New York","NY",5395 +2014-06-01,"Industrial Consumption","Virginia","VA",6467 +2014-06-01,"Industrial Consumption","Vermont","VT",132 +2014-06-01,"Industrial Consumption","Wyoming","WY",3576 +2014-06-01,"Industrial Consumption","Michigan","MI",10556 +2014-06-01,"Industrial Consumption","North Dakota","ND",2538 +2014-06-01,"Industrial Consumption","Kansas","KS",8600 +2014-06-01,"Industrial Consumption","Utah","UT",3184 +2014-06-01,"Industrial Consumption","Mississippi","MS",9815 +2014-06-01,"Industrial Consumption","Texas","TX",129458 +2014-06-01,"Industrial Consumption","Tennessee","TN",8705 +2014-06-01,"Industrial Consumption","Kentucky","KY",8715 +2014-06-01,"Industrial Consumption","North Carolina","NC",7913 +2014-06-01,"Industrial Consumption","Alaska","AK",320 +2014-06-01,"Industrial Consumption","Montana","MT",1600 +2014-06-01,"Industrial Consumption","New Mexico","NM",1442 +2014-06-01,"Industrial Consumption","Iowa","IA",13196 +2014-06-01,"Industrial Consumption","Indiana","IN",27553 +2014-06-01,"Industrial Consumption","Delaware","DE",2140 +2014-06-01,"Industrial Consumption","Washington","WA",5945 +2014-06-01,"Industrial Consumption","Oregon","OR",4387 +2014-06-01,"Industrial Consumption","Wisconsin","WI",8348 +2014-06-01,"Industrial Consumption","New Hampshire","NH",648 +2014-06-01,"Industrial Consumption","Connecticut","CT",1950 +2014-06-01,"Industrial Consumption","Maryland","MD",1251 +2014-06-01,"Industrial Consumption","Hawaii","HI",30 +2014-06-01,"Industrial Consumption","South Dakota","SD",3417 +2014-06-01,"Industrial Consumption","Arkansas","AR",6521 +2014-06-01,"Industrial Consumption","Alabama","AL",14638 +2014-06-01,"Industrial Consumption","New Jersey","NJ",4625 +2014-06-01,"Industrial Consumption","Minnesota","MN",13013 +2014-06-01,"Industrial Consumption","Rhode Island","RI",557 +2014-06-01,"Industrial Consumption","Georgia","GA",12518 +2014-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",123570 +2014-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",45272 +2014-06-01,"Residential Consumption","Ohio","OH",6255 +2014-06-01,"Residential Consumption","Iowa","IA",1447 +2014-06-01,"Residential Consumption","Vermont","VT",96 +2014-06-01,"Residential Consumption","South Dakota","SD",286 +2014-06-01,"Residential Consumption","District of Columbia","DC",293 +2014-06-01,"Residential Consumption","Idaho","ID",617 +2014-06-01,"Residential Consumption","Alaska","AK",678 +2014-06-01,"Residential Consumption","West Virginia","WV",466 +2014-06-01,"Residential Consumption","Rhode Island","RI",583 +2014-06-01,"Residential Consumption","Mississippi","MS",627 +2014-06-01,"Residential Consumption","Louisiana","LA",1263 +2014-06-01,"Residential Consumption","Tennessee","TN",1191 +2014-06-01,"Residential Consumption","Georgia","GA",3617 +2014-06-01,"Residential Consumption","North Dakota","ND",248 +2014-06-01,"Residential Consumption","Arkansas","AR",808 +2014-06-01,"Residential Consumption","Kentucky","KY",904 +2014-06-01,"Residential Consumption","Washington","WA",2360 +2014-06-01,"Residential Consumption","Arizona","AZ",1275 +2014-06-01,"Residential Consumption","Alabama","AL",804 +2014-06-01,"Residential Consumption","Texas","TX",6977 +2014-06-01,"Residential Consumption","North Carolina","NC",934 +2014-06-01,"Residential Consumption","Hawaii","HI",48 +2014-06-01,"Residential Consumption","Utah","UT",2241 +2014-06-01,"Residential Consumption","Nebraska","NE",938 +2014-06-01,"Residential Consumption","Maryland","MD",1724 +2014-06-01,"Residential Consumption","New Mexico","NM",1043 +2014-06-01,"Residential Consumption","New Jersey","NJ",6079 +2014-06-01,"Residential Consumption","New Hampshire","NH",217 +2014-06-01,"Residential Consumption","Montana","MT",544 +2014-06-01,"Residential Consumption","Michigan","MI",6373 +2014-06-01,"Residential Consumption","Kansas","KS",1285 +2014-06-01,"Residential Consumption","Delaware","DE",196 +2014-06-01,"Residential Consumption","Illinois","IL",9640 +2014-06-01,"Residential Consumption","Maine","ME",55 +2014-06-01,"Residential Consumption","Florida","FL",593 +2014-06-01,"Residential Consumption","Missouri","MO",2007 +2014-06-01,"Residential Consumption","California","CA",21690 +2014-06-01,"Residential Consumption","Oregon","OR",1213 +2014-06-01,"Residential Consumption","Connecticut","CT",1311 +2014-06-01,"Residential Consumption","Nevada","NV",1438 +2014-06-01,"Residential Consumption","Pennsylvania","PA",5014 +2014-06-01,"Residential Consumption","Indiana","IN",1996 +2014-06-01,"Residential Consumption","Massachusetts","MA",2815 +2014-06-01,"Residential Consumption","Oklahoma","OK",1540 +2014-06-01,"Residential Consumption","Wisconsin","WI",3251 +2014-06-01,"Residential Consumption","Virginia","VA",1698 +2014-06-01,"Residential Consumption","Minnesota","MN",2241 +2014-06-01,"Residential Consumption","Colorado","CO",3526 +2014-06-01,"Residential Consumption","U.S.","U.S.",125596 +2014-06-01,"Residential Consumption","New York","NY",12363 +2014-06-01,"Residential Consumption","South Carolina","SC",472 +2014-06-01,"Residential Consumption","Wyoming","WY",314 +2014-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-06-01,"Vehicle Fuel Consumption","Utah","UT",21 +2014-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2014-06-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-06-01,"Vehicle Fuel Consumption","Arizona","AZ",179 +2014-06-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-06-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2014-06-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-06-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",2900 +2014-06-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2014-06-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-06-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-06-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-06-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-06-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-06-01,"Vehicle Fuel Consumption","Georgia","GA",89 +2014-06-01,"Vehicle Fuel Consumption","Washington","WA",40 +2014-06-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2014-06-01,"Vehicle Fuel Consumption","New York","NY",302 +2014-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",32 +2014-06-01,"Vehicle Fuel Consumption","Florida","FL",24 +2014-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",66 +2014-06-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2014-06-01,"Vehicle Fuel Consumption","Colorado","CO",27 +2014-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-06-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-06-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2014-06-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-06-01,"Vehicle Fuel Consumption","Nevada","NV",80 +2014-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2014-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-06-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-06-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-06-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-06-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2014-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-06-01,"Vehicle Fuel Consumption","Tennessee","TN",18 +2014-06-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-06-01,"Vehicle Fuel Consumption","Alabama","AL",31 +2014-06-01,"Vehicle Fuel Consumption","Michigan","MI",36 +2014-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-06-01,"Vehicle Fuel Consumption","Texas","TX",342 +2014-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-06-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2014-06-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-06-01,"Vehicle Fuel Consumption","California","CA",1260 +2014-07-01,"Commercial Consumption","Massachusetts","MA",3600 +2014-07-01,"Commercial Consumption","South Dakota","SD",312 +2014-07-01,"Commercial Consumption","Maine","ME",335 +2014-07-01,"Commercial Consumption","U.S.","U.S.",137609 +2014-07-01,"Commercial Consumption","Idaho","ID",627 +2014-07-01,"Commercial Consumption","Indiana","IN",2514 +2014-07-01,"Commercial Consumption","South Carolina","SC",1255 +2014-07-01,"Commercial Consumption","Colorado","CO",1767 +2014-07-01,"Commercial Consumption","Mississippi","MS",972 +2014-07-01,"Commercial Consumption","Tennessee","TN",2106 +2014-07-01,"Commercial Consumption","Louisiana","LA",1731 +2014-07-01,"Commercial Consumption","Utah","UT",1257 +2014-07-01,"Commercial Consumption","Texas","TX",10743 +2014-07-01,"Commercial Consumption","Iowa","IA",1580 +2014-07-01,"Commercial Consumption","California","CA",16799 +2014-07-01,"Commercial Consumption","Arkansas","AR",2585 +2014-07-01,"Commercial Consumption","District of Columbia","DC",703 +2014-07-01,"Commercial Consumption","North Dakota","ND",319 +2014-07-01,"Commercial Consumption","Virginia","VA",2578 +2014-07-01,"Commercial Consumption","Florida","FL",4534 +2014-07-01,"Commercial Consumption","Hawaii","HI",164 +2014-07-01,"Commercial Consumption","Alabama","AL",1189 +2014-07-01,"Commercial Consumption","Illinois","IL",7789 +2014-07-01,"Commercial Consumption","West Virginia","WV",1015 +2014-07-01,"Commercial Consumption","Minnesota","MN",2349 +2014-07-01,"Commercial Consumption","New Jersey","NJ",9596 +2014-07-01,"Commercial Consumption","Maryland","MD",3043 +2014-07-01,"Commercial Consumption","Kansas","KS",1364 +2014-07-01,"Commercial Consumption","Alaska","AK",667 +2014-07-01,"Commercial Consumption","New York","NY",12988 +2014-07-01,"Commercial Consumption","Wisconsin","WI",3117 +2014-07-01,"Commercial Consumption","Kentucky","KY",1077 +2014-07-01,"Commercial Consumption","Georgia","GA",2350 +2014-07-01,"Commercial Consumption","Rhode Island","RI",265 +2014-07-01,"Commercial Consumption","Ohio","OH",4799 +2014-07-01,"Commercial Consumption","Nebraska","NE",1161 +2014-07-01,"Commercial Consumption","Delaware","DE",352 +2014-07-01,"Commercial Consumption","Arizona","AZ",1843 +2014-07-01,"Commercial Consumption","Nevada","NV",1722 +2014-07-01,"Commercial Consumption","Washington","WA",2162 +2014-07-01,"Commercial Consumption","Oregon","OR",956 +2014-07-01,"Commercial Consumption","Pennsylvania","PA",4492 +2014-07-01,"Commercial Consumption","Missouri","MO",2267 +2014-07-01,"Commercial Consumption","New Hampshire","NH",215 +2014-07-01,"Commercial Consumption","Montana","MT",542 +2014-07-01,"Commercial Consumption","Vermont","VT",218 +2014-07-01,"Commercial Consumption","Michigan","MI",5589 +2014-07-01,"Commercial Consumption","Wyoming","WY",349 +2014-07-01,"Commercial Consumption","North Carolina","NC",2785 +2014-07-01,"Commercial Consumption","New Mexico","NM",1200 +2014-07-01,"Commercial Consumption","Oklahoma","OK",1509 +2014-07-01,"Commercial Consumption","Connecticut","CT",2158 +2014-07-01,"Delivered to Consumers","Illinois","IL",40005 +2014-07-01,"Delivered to Consumers","Idaho","ID",5378 +2014-07-01,"Delivered to Consumers","Ohio","OH",49105 +2014-07-01,"Delivered to Consumers","North Carolina","NC",32850 +2014-07-01,"Delivered to Consumers","Missouri","MO",12571 +2014-07-01,"Delivered to Consumers","Massachusetts","MA",27305 +2014-07-01,"Delivered to Consumers","Texas","TX",304999 +2014-07-01,"Delivered to Consumers","South Carolina","SC",18639 +2014-07-01,"Delivered to Consumers","Washington","WA",18214 +2014-07-01,"Delivered to Consumers","Rhode Island","RI",7257 +2014-07-01,"Delivered to Consumers","Oklahoma","OK",37271 +2014-07-01,"Delivered to Consumers","Arkansas","AR",16738 +2014-07-01,"Delivered to Consumers","Virginia","VA",27246 +2014-07-01,"Delivered to Consumers","Montana","MT",2657 +2014-07-01,"Delivered to Consumers","New Hampshire","NH",4897 +2014-07-01,"Delivered to Consumers","Florida","FL",117412 +2014-07-01,"Delivered to Consumers","District of Columbia","DC",1021 +2014-07-01,"Delivered to Consumers","Indiana","IN",38204 +2014-07-01,"Delivered to Consumers","Delaware","DE",8394 +2014-07-01,"Delivered to Consumers","Wyoming","WY",4058 +2014-07-01,"Delivered to Consumers","Vermont","VT",432 +2014-07-01,"Delivered to Consumers","New York","NY",80454 +2014-07-01,"Delivered to Consumers","Maryland","MD",8983 +2014-07-01,"Delivered to Consumers","Alaska","AK",4368 +2014-07-01,"Delivered to Consumers","Michigan","MI",29027 +2014-07-01,"Delivered to Consumers","Iowa","IA",16980 +2014-07-01,"Delivered to Consumers","New Jersey","NJ",48824 +2014-07-01,"Delivered to Consumers","North Dakota","ND",3282 +2014-07-01,"Delivered to Consumers","Tennessee","TN",16919 +2014-07-01,"Delivered to Consumers","Wisconsin","WI",18700 +2014-07-01,"Delivered to Consumers","Pennsylvania","PA",67797 +2014-07-01,"Delivered to Consumers","Mississippi","MS",32022 +2014-07-01,"Delivered to Consumers","New Mexico","NM",11320 +2014-07-01,"Delivered to Consumers","South Dakota","SD",4646 +2014-07-01,"Delivered to Consumers","Hawaii","HI",245 +2014-07-01,"Delivered to Consumers","Kansas","KS",15297 +2014-07-01,"Delivered to Consumers","Nebraska","NE",9629 +2014-07-01,"Delivered to Consumers","Colorado","CO",19927 +2014-07-01,"Delivered to Consumers","Utah","UT",13073 +2014-07-01,"Delivered to Consumers","West Virginia","WV",3835 +2014-07-01,"Delivered to Consumers","Kentucky","KY",11875 +2014-07-01,"Delivered to Consumers","Connecticut","CT",16387 +2014-07-01,"Delivered to Consumers","Alabama","AL",47261 +2014-07-01,"Delivered to Consumers","Maine","ME",6355 +2014-07-01,"Delivered to Consumers","Arizona","AZ",36749 +2014-07-01,"Delivered to Consumers","U.S.","U.S.",1701744 +2014-07-01,"Delivered to Consumers","California","CA",190351 +2014-07-01,"Delivered to Consumers","Oregon","OR",14062 +2014-07-01,"Delivered to Consumers","Nevada","NV",24130 +2014-07-01,"Delivered to Consumers","Louisiana","LA",108061 +2014-07-01,"Delivered to Consumers","Georgia","GA",47671 +2014-07-01,"Delivered to Consumers","Minnesota","MN",18862 +2014-07-01,"Electric Power Consumption","Virginia","VA",17106 +2014-07-01,"Electric Power Consumption","Wisconsin","WI",4401 +2014-07-01,"Electric Power Consumption","Montana","MT",190 +2014-07-01,"Electric Power Consumption","Delaware","DE",5636 +2014-07-01,"Electric Power Consumption","Georgia","GA",28806 +2014-07-01,"Electric Power Consumption","California","CA",80285 +2014-07-01,"Electric Power Consumption","New York","NY",51020 +2014-07-01,"Electric Power Consumption","South Dakota","SD",782 +2014-07-01,"Electric Power Consumption","Nebraska","NE",527 +2014-07-01,"Electric Power Consumption","Missouri","MO",3831 +2014-07-01,"Electric Power Consumption","New Hampshire","NH",3971 +2014-07-01,"Electric Power Consumption","Arizona","AZ",31950 +2014-07-01,"Electric Power Consumption","Alabama","AL",30843 +2014-07-01,"Electric Power Consumption","Michigan","MI",6490 +2014-07-01,"Electric Power Consumption","Indiana","IN",5666 +2014-07-01,"Electric Power Consumption","New Jersey","NJ",28822 +2014-07-01,"Electric Power Consumption","Utah","UT",7018 +2014-07-01,"Electric Power Consumption","Kansas","KS",2077 +2014-07-01,"Electric Power Consumption","Vermont","VT",3 +2014-07-01,"Electric Power Consumption","Tennessee","TN",4642 +2014-07-01,"Electric Power Consumption","Hawaii","HI",NA +2014-07-01,"Electric Power Consumption","Louisiana","LA",25739 +2014-07-01,"Electric Power Consumption","Oregon","OR",8115 +2014-07-01,"Electric Power Consumption","Pennsylvania","PA",41086 +2014-07-01,"Electric Power Consumption","Iowa","IA",862 +2014-07-01,"Electric Power Consumption","North Carolina","NC",20999 +2014-07-01,"Electric Power Consumption","Mississippi","MS",20673 +2014-07-01,"Electric Power Consumption","Ohio","OH",16219 +2014-07-01,"Electric Power Consumption","South Carolina","SC",10246 +2014-07-01,"Electric Power Consumption","Oklahoma","OK",21082 +2014-07-01,"Electric Power Consumption","West Virginia","WV",598 +2014-07-01,"Electric Power Consumption","Wyoming","WY",35 +2014-07-01,"Electric Power Consumption","Kentucky","KY",1283 +2014-07-01,"Electric Power Consumption","Washington","WA",8091 +2014-07-01,"Electric Power Consumption","New Mexico","NM",7728 +2014-07-01,"Electric Power Consumption","Idaho","ID",2136 +2014-07-01,"Electric Power Consumption","Arkansas","AR",6783 +2014-07-01,"Electric Power Consumption","Rhode Island","RI",5893 +2014-07-01,"Electric Power Consumption","Minnesota","MN",1947 +2014-07-01,"Electric Power Consumption","Illinois","IL",3248 +2014-07-01,"Electric Power Consumption","Massachusetts","MA",18972 +2014-07-01,"Electric Power Consumption","Nevada","NV",19844 +2014-07-01,"Electric Power Consumption","North Dakota","ND",175 +2014-07-01,"Electric Power Consumption","Connecticut","CT",11242 +2014-07-01,"Electric Power Consumption","Florida","FL",104729 +2014-07-01,"Electric Power Consumption","Colorado","CO",10115 +2014-07-01,"Electric Power Consumption","Texas","TX",151814 +2014-07-01,"Electric Power Consumption","U.S.","U.S.",843303 +2014-07-01,"Electric Power Consumption","Maine","ME",3650 +2014-07-01,"Electric Power Consumption","Maryland","MD",3204 +2014-07-01,"Electric Power Consumption","Alaska","AK",2728 +2014-07-01,"Industrial Consumption","Ohio","OH",22888 +2014-07-01,"Industrial Consumption","Kansas","KS",10664 +2014-07-01,"Industrial Consumption","New York","NY",5448 +2014-07-01,"Industrial Consumption","Massachusetts","MA",2054 +2014-07-01,"Industrial Consumption","Alabama","AL",14433 +2014-07-01,"Industrial Consumption","Virginia","VA",6056 +2014-07-01,"Industrial Consumption","Florida","FL",7415 +2014-07-01,"Industrial Consumption","Kentucky","KY",8734 +2014-07-01,"Industrial Consumption","Delaware","DE",2269 +2014-07-01,"Industrial Consumption","Maryland","MD",1118 +2014-07-01,"Industrial Consumption","Utah","UT",3030 +2014-07-01,"Industrial Consumption","Nevada","NV",1225 +2014-07-01,"Industrial Consumption","California","CA",71666 +2014-07-01,"Industrial Consumption","Wisconsin","WI",8528 +2014-07-01,"Industrial Consumption","Hawaii","HI",34 +2014-07-01,"Industrial Consumption","Missouri","MO",4573 +2014-07-01,"Industrial Consumption","Louisiana","LA",79361 +2014-07-01,"Industrial Consumption","U.S.","U.S.",605051 +2014-07-01,"Industrial Consumption","Pennsylvania","PA",18036 +2014-07-01,"Industrial Consumption","Maine","ME",2329 +2014-07-01,"Industrial Consumption","Tennessee","TN",9000 +2014-07-01,"Industrial Consumption","Iowa","IA",13344 +2014-07-01,"Industrial Consumption","North Carolina","NC",7936 +2014-07-01,"Industrial Consumption","North Dakota","ND",2605 +2014-07-01,"Industrial Consumption","Colorado","CO",4796 +2014-07-01,"Industrial Consumption","Washington","WA",6003 +2014-07-01,"Industrial Consumption","Arizona","AZ",1675 +2014-07-01,"Industrial Consumption","New Jersey","NJ",5000 +2014-07-01,"Industrial Consumption","Minnesota","MN",12493 +2014-07-01,"Industrial Consumption","Indiana","IN",27773 +2014-07-01,"Industrial Consumption","District of Columbia","DC",0 +2014-07-01,"Industrial Consumption","Oklahoma","OK",13397 +2014-07-01,"Industrial Consumption","Mississippi","MS",9765 +2014-07-01,"Industrial Consumption","Wyoming","WY",3409 +2014-07-01,"Industrial Consumption","New Mexico","NM",1444 +2014-07-01,"Industrial Consumption","Oregon","OR",3998 +2014-07-01,"Industrial Consumption","West Virginia","WV",1860 +2014-07-01,"Industrial Consumption","New Hampshire","NH",564 +2014-07-01,"Industrial Consumption","Connecticut","CT",1949 +2014-07-01,"Industrial Consumption","Michigan","MI",10577 +2014-07-01,"Industrial Consumption","Illinois","IL",20076 +2014-07-01,"Industrial Consumption","Georgia","GA",12885 +2014-07-01,"Industrial Consumption","Montana","MT",1565 +2014-07-01,"Industrial Consumption","South Dakota","SD",3359 +2014-07-01,"Industrial Consumption","Arkansas","AR",6720 +2014-07-01,"Industrial Consumption","Texas","TX",135899 +2014-07-01,"Industrial Consumption","South Carolina","SC",6681 +2014-07-01,"Industrial Consumption","Nebraska","NE",7145 +2014-07-01,"Industrial Consumption","Vermont","VT",129 +2014-07-01,"Industrial Consumption","Idaho","ID",2050 +2014-07-01,"Industrial Consumption","Rhode Island","RI",664 +2014-07-01,"Industrial Consumption","Alaska","AK",427 +2014-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",130405 +2014-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",48869 +2014-07-01,"Residential Consumption","Louisiana","LA",1226 +2014-07-01,"Residential Consumption","Virginia","VA",1488 +2014-07-01,"Residential Consumption","Maine","ME",41 +2014-07-01,"Residential Consumption","Rhode Island","RI",427 +2014-07-01,"Residential Consumption","Mississippi","MS",606 +2014-07-01,"Residential Consumption","Hawaii","HI",48 +2014-07-01,"Residential Consumption","Maryland","MD",1599 +2014-07-01,"Residential Consumption","New Mexico","NM",936 +2014-07-01,"Residential Consumption","Indiana","IN",2243 +2014-07-01,"Residential Consumption","New Jersey","NJ",5388 +2014-07-01,"Residential Consumption","Missouri","MO",1891 +2014-07-01,"Residential Consumption","California","CA",20299 +2014-07-01,"Residential Consumption","Wyoming","WY",262 +2014-07-01,"Residential Consumption","West Virginia","WV",360 +2014-07-01,"Residential Consumption","U.S.","U.S.",112785 +2014-07-01,"Residential Consumption","South Carolina","SC",453 +2014-07-01,"Residential Consumption","South Dakota","SD",193 +2014-07-01,"Residential Consumption","Arkansas","AR",648 +2014-07-01,"Residential Consumption","New Hampshire","NH",142 +2014-07-01,"Residential Consumption","Kentucky","KY",779 +2014-07-01,"Residential Consumption","Ohio","OH",5156 +2014-07-01,"Residential Consumption","Vermont","VT",82 +2014-07-01,"Residential Consumption","Pennsylvania","PA",4150 +2014-07-01,"Residential Consumption","North Dakota","ND",183 +2014-07-01,"Residential Consumption","Massachusetts","MA",2618 +2014-07-01,"Residential Consumption","Idaho","ID",552 +2014-07-01,"Residential Consumption","Oklahoma","OK",1243 +2014-07-01,"Residential Consumption","Iowa","IA",1192 +2014-07-01,"Residential Consumption","Tennessee","TN",1152 +2014-07-01,"Residential Consumption","Utah","UT",1746 +2014-07-01,"Residential Consumption","Nebraska","NE",791 +2014-07-01,"Residential Consumption","Nevada","NV",1257 +2014-07-01,"Residential Consumption","District of Columbia","DC",249 +2014-07-01,"Residential Consumption","Alaska","AK",545 +2014-07-01,"Residential Consumption","New York","NY",10686 +2014-07-01,"Residential Consumption","Texas","TX",6188 +2014-07-01,"Residential Consumption","Wisconsin","WI",2642 +2014-07-01,"Residential Consumption","Georgia","GA",3537 +2014-07-01,"Residential Consumption","Kansas","KS",1190 +2014-07-01,"Residential Consumption","Washington","WA",1916 +2014-07-01,"Residential Consumption","Arizona","AZ",1096 +2014-07-01,"Residential Consumption","Minnesota","MN",2068 +2014-07-01,"Residential Consumption","Alabama","AL",764 +2014-07-01,"Residential Consumption","Illinois","IL",8857 +2014-07-01,"Residential Consumption","Oregon","OR",979 +2014-07-01,"Residential Consumption","North Carolina","NC",1120 +2014-07-01,"Residential Consumption","Connecticut","CT",1036 +2014-07-01,"Residential Consumption","Michigan","MI",6334 +2014-07-01,"Residential Consumption","Florida","FL",709 +2014-07-01,"Residential Consumption","Montana","MT",360 +2014-07-01,"Residential Consumption","Colorado","CO",3220 +2014-07-01,"Residential Consumption","Delaware","DE",137 +2014-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-07-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-07-01,"Vehicle Fuel Consumption","Texas","TX",353 +2014-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-07-01,"Vehicle Fuel Consumption","Idaho","ID",13 +2014-07-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-07-01,"Vehicle Fuel Consumption","Nevada","NV",83 +2014-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-07-01,"Vehicle Fuel Consumption","Michigan","MI",38 +2014-07-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-07-01,"Vehicle Fuel Consumption","Georgia","GA",92 +2014-07-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-07-01,"Vehicle Fuel Consumption","California","CA",1302 +2014-07-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2014-07-01,"Vehicle Fuel Consumption","New York","NY",312 +2014-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",33 +2014-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-07-01,"Vehicle Fuel Consumption","Arizona","AZ",185 +2014-07-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-07-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-07-01,"Vehicle Fuel Consumption","Illinois","IL",35 +2014-07-01,"Vehicle Fuel Consumption","Washington","WA",41 +2014-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-07-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",40 +2014-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2014-07-01,"Vehicle Fuel Consumption","Florida","FL",25 +2014-07-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-07-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",2997 +2014-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-07-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2014-07-01,"Vehicle Fuel Consumption","Alabama","AL",32 +2014-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",61 +2014-07-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-07-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-07-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-07-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-07-01,"Vehicle Fuel Consumption","Maryland","MD",20 +2014-07-01,"Vehicle Fuel Consumption","Louisiana","LA",5 +2014-07-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-07-01,"Vehicle Fuel Consumption","Utah","UT",22 +2014-07-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2014-07-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2014-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-07-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2014-07-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-08-01,"Commercial Consumption","Kansas","KS",1395 +2014-08-01,"Commercial Consumption","Georgia","GA",2234 +2014-08-01,"Commercial Consumption","Rhode Island","RI",281 +2014-08-01,"Commercial Consumption","Idaho","ID",660 +2014-08-01,"Commercial Consumption","Hawaii","HI",153 +2014-08-01,"Commercial Consumption","Tennessee","TN",2145 +2014-08-01,"Commercial Consumption","Indiana","IN",2449 +2014-08-01,"Commercial Consumption","Vermont","VT",223 +2014-08-01,"Commercial Consumption","California","CA",17141 +2014-08-01,"Commercial Consumption","Nebraska","NE",1166 +2014-08-01,"Commercial Consumption","Michigan","MI",4894 +2014-08-01,"Commercial Consumption","West Virginia","WV",1035 +2014-08-01,"Commercial Consumption","Washington","WA",2112 +2014-08-01,"Commercial Consumption","South Carolina","SC",1267 +2014-08-01,"Commercial Consumption","Missouri","MO",2268 +2014-08-01,"Commercial Consumption","Maine","ME",264 +2014-08-01,"Commercial Consumption","Alabama","AL",1186 +2014-08-01,"Commercial Consumption","Arizona","AZ",1750 +2014-08-01,"Commercial Consumption","Wyoming","WY",389 +2014-08-01,"Commercial Consumption","North Dakota","ND",296 +2014-08-01,"Commercial Consumption","North Carolina","NC",2602 +2014-08-01,"Commercial Consumption","Minnesota","MN",2755 +2014-08-01,"Commercial Consumption","Oklahoma","OK",1546 +2014-08-01,"Commercial Consumption","Montana","MT",580 +2014-08-01,"Commercial Consumption","Alaska","AK",758 +2014-08-01,"Commercial Consumption","Texas","TX",10099 +2014-08-01,"Commercial Consumption","Iowa","IA",1475 +2014-08-01,"Commercial Consumption","Connecticut","CT",2204 +2014-08-01,"Commercial Consumption","Mississippi","MS",956 +2014-08-01,"Commercial Consumption","Delaware","DE",410 +2014-08-01,"Commercial Consumption","Oregon","OR",1066 +2014-08-01,"Commercial Consumption","Pennsylvania","PA",4753 +2014-08-01,"Commercial Consumption","Wisconsin","WI",2979 +2014-08-01,"Commercial Consumption","Kentucky","KY",1120 +2014-08-01,"Commercial Consumption","Florida","FL",4407 +2014-08-01,"Commercial Consumption","New Mexico","NM",1224 +2014-08-01,"Commercial Consumption","Virginia","VA",2802 +2014-08-01,"Commercial Consumption","Massachusetts","MA",3790 +2014-08-01,"Commercial Consumption","South Dakota","SD",328 +2014-08-01,"Commercial Consumption","New Jersey","NJ",9136 +2014-08-01,"Commercial Consumption","New Hampshire","NH",224 +2014-08-01,"Commercial Consumption","U.S.","U.S.",137122 +2014-08-01,"Commercial Consumption","Maryland","MD",3303 +2014-08-01,"Commercial Consumption","Arkansas","AR",2574 +2014-08-01,"Commercial Consumption","Nevada","NV",1611 +2014-08-01,"Commercial Consumption","Illinois","IL",7632 +2014-08-01,"Commercial Consumption","District of Columbia","DC",752 +2014-08-01,"Commercial Consumption","Colorado","CO",1361 +2014-08-01,"Commercial Consumption","Utah","UT",940 +2014-08-01,"Commercial Consumption","Ohio","OH",4697 +2014-08-01,"Commercial Consumption","New York","NY",13881 +2014-08-01,"Commercial Consumption","Louisiana","LA",1849 +2014-08-01,"Delivered to Consumers","Maryland","MD",9114 +2014-08-01,"Delivered to Consumers","Oklahoma","OK",43991 +2014-08-01,"Delivered to Consumers","North Carolina","NC",32377 +2014-08-01,"Delivered to Consumers","Nevada","NV",22959 +2014-08-01,"Delivered to Consumers","Washington","WA",22185 +2014-08-01,"Delivered to Consumers","Wyoming","WY",4367 +2014-08-01,"Delivered to Consumers","Vermont","VT",436 +2014-08-01,"Delivered to Consumers","Rhode Island","RI",7102 +2014-08-01,"Delivered to Consumers","Idaho","ID",5931 +2014-08-01,"Delivered to Consumers","Kentucky","KY",11658 +2014-08-01,"Delivered to Consumers","Alabama","AL",51590 +2014-08-01,"Delivered to Consumers","Wisconsin","WI",20077 +2014-08-01,"Delivered to Consumers","Texas","TX",322822 +2014-08-01,"Delivered to Consumers","Arizona","AZ",34547 +2014-08-01,"Delivered to Consumers","Florida","FL",125105 +2014-08-01,"Delivered to Consumers","Montana","MT",2958 +2014-08-01,"Delivered to Consumers","Arkansas","AR",17685 +2014-08-01,"Delivered to Consumers","Mississippi","MS",35920 +2014-08-01,"Delivered to Consumers","U.S.","U.S.",1751644 +2014-08-01,"Delivered to Consumers","Illinois","IL",42266 +2014-08-01,"Delivered to Consumers","South Dakota","SD",4715 +2014-08-01,"Delivered to Consumers","Alaska","AK",4267 +2014-08-01,"Delivered to Consumers","Kansas","KS",15152 +2014-08-01,"Delivered to Consumers","Connecticut","CT",15637 +2014-08-01,"Delivered to Consumers","Oregon","OR",16713 +2014-08-01,"Delivered to Consumers","West Virginia","WV",4118 +2014-08-01,"Delivered to Consumers","Iowa","IA",17116 +2014-08-01,"Delivered to Consumers","Pennsylvania","PA",66180 +2014-08-01,"Delivered to Consumers","Massachusetts","MA",25776 +2014-08-01,"Delivered to Consumers","New Hampshire","NH",4217 +2014-08-01,"Delivered to Consumers","District of Columbia","DC",1078 +2014-08-01,"Delivered to Consumers","Utah","UT",11473 +2014-08-01,"Delivered to Consumers","New Mexico","NM",12272 +2014-08-01,"Delivered to Consumers","New York","NY",76195 +2014-08-01,"Delivered to Consumers","Nebraska","NE",9329 +2014-08-01,"Delivered to Consumers","California","CA",193331 +2014-08-01,"Delivered to Consumers","South Carolina","SC",17702 +2014-08-01,"Delivered to Consumers","Georgia","GA",51275 +2014-08-01,"Delivered to Consumers","Delaware","DE",8582 +2014-08-01,"Delivered to Consumers","Tennessee","TN",17572 +2014-08-01,"Delivered to Consumers","Michigan","MI",31913 +2014-08-01,"Delivered to Consumers","Virginia","VA",26830 +2014-08-01,"Delivered to Consumers","Colorado","CO",16776 +2014-08-01,"Delivered to Consumers","Louisiana","LA",113813 +2014-08-01,"Delivered to Consumers","Minnesota","MN",21266 +2014-08-01,"Delivered to Consumers","Indiana","IN",39624 +2014-08-01,"Delivered to Consumers","Hawaii","HI",240 +2014-08-01,"Delivered to Consumers","Ohio","OH",51836 +2014-08-01,"Delivered to Consumers","Missouri","MO",13058 +2014-08-01,"Delivered to Consumers","New Jersey","NJ",43696 +2014-08-01,"Delivered to Consumers","Maine","ME",4205 +2014-08-01,"Delivered to Consumers","North Dakota","ND",2597 +2014-08-01,"Electric Power Consumption","Louisiana","LA",31222 +2014-08-01,"Electric Power Consumption","Wyoming","WY",22 +2014-08-01,"Electric Power Consumption","Missouri","MO",4483 +2014-08-01,"Electric Power Consumption","Montana","MT",530 +2014-08-01,"Electric Power Consumption","Oklahoma","OK",25905 +2014-08-01,"Electric Power Consumption","Utah","UT",6378 +2014-08-01,"Electric Power Consumption","Kansas","KS",2365 +2014-08-01,"Electric Power Consumption","Tennessee","TN",5261 +2014-08-01,"Electric Power Consumption","U.S.","U.S.",897806 +2014-08-01,"Electric Power Consumption","South Dakota","SD",704 +2014-08-01,"Electric Power Consumption","Hawaii","HI",NA +2014-08-01,"Electric Power Consumption","Washington","WA",12308 +2014-08-01,"Electric Power Consumption","Arkansas","AR",7681 +2014-08-01,"Electric Power Consumption","New York","NY",46926 +2014-08-01,"Electric Power Consumption","Texas","TX",171985 +2014-08-01,"Electric Power Consumption","Rhode Island","RI",5632 +2014-08-01,"Electric Power Consumption","Wisconsin","WI",5929 +2014-08-01,"Electric Power Consumption","Florida","FL",112988 +2014-08-01,"Electric Power Consumption","Alabama","AL",34915 +2014-08-01,"Electric Power Consumption","Idaho","ID",2804 +2014-08-01,"Electric Power Consumption","Minnesota","MN",3187 +2014-08-01,"Electric Power Consumption","Illinois","IL",5892 +2014-08-01,"Electric Power Consumption","Massachusetts","MA",16923 +2014-08-01,"Electric Power Consumption","West Virginia","WV",660 +2014-08-01,"Electric Power Consumption","North Carolina","NC",20536 +2014-08-01,"Electric Power Consumption","North Dakota","ND",242 +2014-08-01,"Electric Power Consumption","Maryland","MD",3302 +2014-08-01,"Electric Power Consumption","California","CA",82009 +2014-08-01,"Electric Power Consumption","Virginia","VA",15657 +2014-08-01,"Electric Power Consumption","Michigan","MI",10028 +2014-08-01,"Electric Power Consumption","Vermont","VT",3 +2014-08-01,"Electric Power Consumption","Maine","ME",1999 +2014-08-01,"Electric Power Consumption","Delaware","DE",5538 +2014-08-01,"Electric Power Consumption","Connecticut","CT",10589 +2014-08-01,"Electric Power Consumption","New Jersey","NJ",25134 +2014-08-01,"Electric Power Consumption","South Carolina","SC",9243 +2014-08-01,"Electric Power Consumption","Pennsylvania","PA",40206 +2014-08-01,"Electric Power Consumption","Nebraska","NE",642 +2014-08-01,"Electric Power Consumption","Mississippi","MS",24474 +2014-08-01,"Electric Power Consumption","New Hampshire","NH",3286 +2014-08-01,"Electric Power Consumption","Georgia","GA",32954 +2014-08-01,"Electric Power Consumption","Kentucky","KY",1050 +2014-08-01,"Electric Power Consumption","Ohio","OH",19286 +2014-08-01,"Electric Power Consumption","Indiana","IN",6195 +2014-08-01,"Electric Power Consumption","Alaska","AK",2536 +2014-08-01,"Electric Power Consumption","New Mexico","NM",8695 +2014-08-01,"Electric Power Consumption","Colorado","CO",8419 +2014-08-01,"Electric Power Consumption","Oregon","OR",10633 +2014-08-01,"Electric Power Consumption","Nevada","NV",18769 +2014-08-01,"Electric Power Consumption","Iowa","IA",1780 +2014-08-01,"Electric Power Consumption","Arizona","AZ",29903 +2014-08-01,"Industrial Consumption","Montana","MT",1486 +2014-08-01,"Industrial Consumption","Maryland","MD",988 +2014-08-01,"Industrial Consumption","Missouri","MO",4569 +2014-08-01,"Industrial Consumption","Colorado","CO",4772 +2014-08-01,"Industrial Consumption","California","CA",74044 +2014-08-01,"Industrial Consumption","West Virginia","WV",2062 +2014-08-01,"Industrial Consumption","Wisconsin","WI",8761 +2014-08-01,"Industrial Consumption","New Hampshire","NH",563 +2014-08-01,"Industrial Consumption","Indiana","IN",28557 +2014-08-01,"Industrial Consumption","New Mexico","NM",1433 +2014-08-01,"Industrial Consumption","New York","NY",5393 +2014-08-01,"Industrial Consumption","Mississippi","MS",9895 +2014-08-01,"Industrial Consumption","New Jersey","NJ",4544 +2014-08-01,"Industrial Consumption","Georgia","GA",12455 +2014-08-01,"Industrial Consumption","Hawaii","HI",42 +2014-08-01,"Industrial Consumption","Nevada","NV",1329 +2014-08-01,"Industrial Consumption","Maine","ME",1902 +2014-08-01,"Industrial Consumption","Iowa","IA",12761 +2014-08-01,"Industrial Consumption","Illinois","IL",20469 +2014-08-01,"Industrial Consumption","Utah","UT",2835 +2014-08-01,"Industrial Consumption","Oregon","OR",4107 +2014-08-01,"Industrial Consumption","Virginia","VA",6820 +2014-08-01,"Industrial Consumption","Minnesota","MN",12991 +2014-08-01,"Industrial Consumption","Kentucky","KY",8679 +2014-08-01,"Industrial Consumption","District of Columbia","DC",0 +2014-08-01,"Industrial Consumption","Oklahoma","OK",15350 +2014-08-01,"Industrial Consumption","U.S.","U.S.",608533 +2014-08-01,"Industrial Consumption","Arkansas","AR",6743 +2014-08-01,"Industrial Consumption","Texas","TX",134723 +2014-08-01,"Industrial Consumption","South Carolina","SC",6711 +2014-08-01,"Industrial Consumption","Vermont","VT",131 +2014-08-01,"Industrial Consumption","Tennessee","TN",8985 +2014-08-01,"Industrial Consumption","Connecticut","CT",1868 +2014-08-01,"Industrial Consumption","North Carolina","NC",8256 +2014-08-01,"Industrial Consumption","Alaska","AK",434 +2014-08-01,"Industrial Consumption","Washington","WA",6003 +2014-08-01,"Industrial Consumption","Pennsylvania","PA",16936 +2014-08-01,"Industrial Consumption","Idaho","ID",1913 +2014-08-01,"Industrial Consumption","Massachusetts","MA",2591 +2014-08-01,"Industrial Consumption","Louisiana","LA",79443 +2014-08-01,"Industrial Consumption","South Dakota","SD",3463 +2014-08-01,"Industrial Consumption","Ohio","OH",22950 +2014-08-01,"Industrial Consumption","Arizona","AZ",1684 +2014-08-01,"Industrial Consumption","Alabama","AL",14709 +2014-08-01,"Industrial Consumption","Rhode Island","RI",786 +2014-08-01,"Industrial Consumption","North Dakota","ND",1877 +2014-08-01,"Industrial Consumption","Kansas","KS",10264 +2014-08-01,"Industrial Consumption","Nebraska","NE",6786 +2014-08-01,"Industrial Consumption","Wyoming","WY",3712 +2014-08-01,"Industrial Consumption","Florida","FL",6957 +2014-08-01,"Industrial Consumption","Michigan","MI",11327 +2014-08-01,"Industrial Consumption","Delaware","DE",2473 +2014-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",131115 +2014-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",50302 +2014-08-01,"Residential Consumption","Nebraska","NE",730 +2014-08-01,"Residential Consumption","Pennsylvania","PA",4251 +2014-08-01,"Residential Consumption","Colorado","CO",2195 +2014-08-01,"Residential Consumption","Missouri","MO",1729 +2014-08-01,"Residential Consumption","Alabama","AL",748 +2014-08-01,"Residential Consumption","Alaska","AK",538 +2014-08-01,"Residential Consumption","West Virginia","WV",360 +2014-08-01,"Residential Consumption","Iowa","IA",1098 +2014-08-01,"Residential Consumption","Georgia","GA",3540 +2014-08-01,"Residential Consumption","Illinois","IL",8238 +2014-08-01,"Residential Consumption","Wisconsin","WI",2397 +2014-08-01,"Residential Consumption","Tennessee","TN",1163 +2014-08-01,"Residential Consumption","Virginia","VA",1533 +2014-08-01,"Residential Consumption","North Dakota","ND",181 +2014-08-01,"Residential Consumption","Massachusetts","MA",2411 +2014-08-01,"Residential Consumption","U.S.","U.S.",105187 +2014-08-01,"Residential Consumption","Mississippi","MS",589 +2014-08-01,"Residential Consumption","Maryland","MD",1502 +2014-08-01,"Residential Consumption","Minnesota","MN",2329 +2014-08-01,"Residential Consumption","Maine","ME",41 +2014-08-01,"Residential Consumption","Arkansas","AR",684 +2014-08-01,"Residential Consumption","Montana","MT",362 +2014-08-01,"Residential Consumption","Oklahoma","OK",1150 +2014-08-01,"Residential Consumption","Delaware","DE",161 +2014-08-01,"Residential Consumption","New York","NY",9683 +2014-08-01,"Residential Consumption","Texas","TX",5661 +2014-08-01,"Residential Consumption","South Carolina","SC",476 +2014-08-01,"Residential Consumption","Ohio","OH",4860 +2014-08-01,"Residential Consumption","Utah","UT",1298 +2014-08-01,"Residential Consumption","Kentucky","KY",806 +2014-08-01,"Residential Consumption","Rhode Island","RI",395 +2014-08-01,"Residential Consumption","Oregon","OR",894 +2014-08-01,"Residential Consumption","Connecticut","CT",974 +2014-08-01,"Residential Consumption","Kansas","KS",1127 +2014-08-01,"Residential Consumption","Washington","WA",1722 +2014-08-01,"Residential Consumption","Louisiana","LA",1294 +2014-08-01,"Residential Consumption","Hawaii","HI",44 +2014-08-01,"Residential Consumption","Vermont","VT",79 +2014-08-01,"Residential Consumption","South Dakota","SD",220 +2014-08-01,"Residential Consumption","Nevada","NV",1168 +2014-08-01,"Residential Consumption","District of Columbia","DC",258 +2014-08-01,"Residential Consumption","Florida","FL",729 +2014-08-01,"Residential Consumption","Idaho","ID",541 +2014-08-01,"Residential Consumption","Arizona","AZ",1025 +2014-08-01,"Residential Consumption","North Carolina","NC",973 +2014-08-01,"Residential Consumption","Michigan","MI",5627 +2014-08-01,"Residential Consumption","New Mexico","NM",908 +2014-08-01,"Residential Consumption","Indiana","IN",2417 +2014-08-01,"Residential Consumption","New Jersey","NJ",4865 +2014-08-01,"Residential Consumption","New Hampshire","NH",138 +2014-08-01,"Residential Consumption","California","CA",18834 +2014-08-01,"Residential Consumption","Wyoming","WY",241 +2014-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",40 +2014-08-01,"Vehicle Fuel Consumption","Florida","FL",25 +2014-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-08-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-08-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-08-01,"Vehicle Fuel Consumption","Arizona","AZ",185 +2014-08-01,"Vehicle Fuel Consumption","Texas","TX",353 +2014-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-08-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-08-01,"Vehicle Fuel Consumption","Nevada","NV",83 +2014-08-01,"Vehicle Fuel Consumption","Alabama","AL",32 +2014-08-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2014-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-08-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-08-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-08-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2014-08-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-08-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-08-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-08-01,"Vehicle Fuel Consumption","Utah","UT",22 +2014-08-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2014-08-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-08-01,"Vehicle Fuel Consumption","Georgia","GA",92 +2014-08-01,"Vehicle Fuel Consumption","Illinois","IL",35 +2014-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",2997 +2014-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-08-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2014-08-01,"Vehicle Fuel Consumption","New York","NY",312 +2014-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",33 +2014-08-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2014-08-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",61 +2014-08-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-08-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-08-01,"Vehicle Fuel Consumption","California","CA",1302 +2014-08-01,"Vehicle Fuel Consumption","Washington","WA",41 +2014-08-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2014-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-08-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-08-01,"Vehicle Fuel Consumption","Maryland","MD",20 +2014-08-01,"Vehicle Fuel Consumption","Louisiana","LA",5 +2014-08-01,"Vehicle Fuel Consumption","Michigan","MI",38 +2014-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-08-01,"Vehicle Fuel Consumption","Idaho","ID",13 +2014-08-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-09-01,"Commercial Consumption","Colorado","CO",1862 +2014-09-01,"Commercial Consumption","Oklahoma","OK",1476 +2014-09-01,"Commercial Consumption","New Hampshire","NH",260 +2014-09-01,"Commercial Consumption","Georgia","GA",2220 +2014-09-01,"Commercial Consumption","Rhode Island","RI",328 +2014-09-01,"Commercial Consumption","Iowa","IA",1724 +2014-09-01,"Commercial Consumption","Hawaii","HI",154 +2014-09-01,"Commercial Consumption","Alaska","AK",1081 +2014-09-01,"Commercial Consumption","Alabama","AL",1146 +2014-09-01,"Commercial Consumption","District of Columbia","DC",745 +2014-09-01,"Commercial Consumption","New Jersey","NJ",9818 +2014-09-01,"Commercial Consumption","Texas","TX",10330 +2014-09-01,"Commercial Consumption","Illinois","IL",8922 +2014-09-01,"Commercial Consumption","Virginia","VA",3178 +2014-09-01,"Commercial Consumption","South Dakota","SD",420 +2014-09-01,"Commercial Consumption","Montana","MT",793 +2014-09-01,"Commercial Consumption","U.S.","U.S.",148913 +2014-09-01,"Commercial Consumption","Kansas","KS",1494 +2014-09-01,"Commercial Consumption","Louisiana","LA",1848 +2014-09-01,"Commercial Consumption","West Virginia","WV",1086 +2014-09-01,"Commercial Consumption","North Dakota","ND",419 +2014-09-01,"Commercial Consumption","Pennsylvania","PA",5044 +2014-09-01,"Commercial Consumption","Missouri","MO",2556 +2014-09-01,"Commercial Consumption","Wisconsin","WI",3398 +2014-09-01,"Commercial Consumption","Maine","ME",314 +2014-09-01,"Commercial Consumption","Florida","FL",4585 +2014-09-01,"Commercial Consumption","Ohio","OH",5640 +2014-09-01,"Commercial Consumption","Arkansas","AR",2883 +2014-09-01,"Commercial Consumption","Utah","UT",1227 +2014-09-01,"Commercial Consumption","Connecticut","CT",2246 +2014-09-01,"Commercial Consumption","California","CA",17313 +2014-09-01,"Commercial Consumption","Washington","WA",2385 +2014-09-01,"Commercial Consumption","Massachusetts","MA",4179 +2014-09-01,"Commercial Consumption","Vermont","VT",239 +2014-09-01,"Commercial Consumption","New York","NY",14941 +2014-09-01,"Commercial Consumption","Tennessee","TN",2244 +2014-09-01,"Commercial Consumption","Michigan","MI",5871 +2014-09-01,"Commercial Consumption","North Carolina","NC",2779 +2014-09-01,"Commercial Consumption","Minnesota","MN",3102 +2014-09-01,"Commercial Consumption","Oregon","OR",1083 +2014-09-01,"Commercial Consumption","Maryland","MD",3228 +2014-09-01,"Commercial Consumption","Idaho","ID",777 +2014-09-01,"Commercial Consumption","Arizona","AZ",1806 +2014-09-01,"Commercial Consumption","Indiana","IN",3216 +2014-09-01,"Commercial Consumption","Wyoming","WY",477 +2014-09-01,"Commercial Consumption","South Carolina","SC",1285 +2014-09-01,"Commercial Consumption","New Mexico","NM",1060 +2014-09-01,"Commercial Consumption","Kentucky","KY",1340 +2014-09-01,"Commercial Consumption","Nebraska","NE",1222 +2014-09-01,"Commercial Consumption","Mississippi","MS",1033 +2014-09-01,"Commercial Consumption","Delaware","DE",421 +2014-09-01,"Commercial Consumption","Nevada","NV",1714 +2014-09-01,"Delivered to Consumers","U.S.","U.S.",1635485 +2014-09-01,"Delivered to Consumers","Vermont","VT",475 +2014-09-01,"Delivered to Consumers","Illinois","IL",44941 +2014-09-01,"Delivered to Consumers","Alaska","AK",4398 +2014-09-01,"Delivered to Consumers","Connecticut","CT",13102 +2014-09-01,"Delivered to Consumers","Alabama","AL",49380 +2014-09-01,"Delivered to Consumers","Virginia","VA",26215 +2014-09-01,"Delivered to Consumers","South Carolina","SC",15117 +2014-09-01,"Delivered to Consumers","Arizona","AZ",31954 +2014-09-01,"Delivered to Consumers","Washington","WA",22926 +2014-09-01,"Delivered to Consumers","District of Columbia","DC",1073 +2014-09-01,"Delivered to Consumers","West Virginia","WV",4327 +2014-09-01,"Delivered to Consumers","Idaho","ID",5901 +2014-09-01,"Delivered to Consumers","Florida","FL",108448 +2014-09-01,"Delivered to Consumers","New Mexico","NM",9044 +2014-09-01,"Delivered to Consumers","Indiana","IN",39587 +2014-09-01,"Delivered to Consumers","Wyoming","WY",4675 +2014-09-01,"Delivered to Consumers","Montana","MT",3184 +2014-09-01,"Delivered to Consumers","Ohio","OH",51544 +2014-09-01,"Delivered to Consumers","Kentucky","KY",11657 +2014-09-01,"Delivered to Consumers","Mississippi","MS",31511 +2014-09-01,"Delivered to Consumers","Missouri","MO",12126 +2014-09-01,"Delivered to Consumers","Maine","ME",3553 +2014-09-01,"Delivered to Consumers","Utah","UT",11124 +2014-09-01,"Delivered to Consumers","Delaware","DE",7967 +2014-09-01,"Delivered to Consumers","Maryland","MD",8058 +2014-09-01,"Delivered to Consumers","Tennessee","TN",16007 +2014-09-01,"Delivered to Consumers","Nebraska","NE",9353 +2014-09-01,"Delivered to Consumers","California","CA",193409 +2014-09-01,"Delivered to Consumers","South Dakota","SD",4195 +2014-09-01,"Delivered to Consumers","New York","NY",74935 +2014-09-01,"Delivered to Consumers","Hawaii","HI",232 +2014-09-01,"Delivered to Consumers","Kansas","KS",12158 +2014-09-01,"Delivered to Consumers","Texas","TX",278723 +2014-09-01,"Delivered to Consumers","Georgia","GA",47009 +2014-09-01,"Delivered to Consumers","North Carolina","NC",31670 +2014-09-01,"Delivered to Consumers","Nevada","NV",22615 +2014-09-01,"Delivered to Consumers","Minnesota","MN",20911 +2014-09-01,"Delivered to Consumers","Rhode Island","RI",6713 +2014-09-01,"Delivered to Consumers","Oklahoma","OK",32928 +2014-09-01,"Delivered to Consumers","Michigan","MI",34192 +2014-09-01,"Delivered to Consumers","Iowa","IA",16247 +2014-09-01,"Delivered to Consumers","New Jersey","NJ",43077 +2014-09-01,"Delivered to Consumers","Louisiana","LA",101294 +2014-09-01,"Delivered to Consumers","New Hampshire","NH",4409 +2014-09-01,"Delivered to Consumers","North Dakota","ND",2273 +2014-09-01,"Delivered to Consumers","Arkansas","AR",16083 +2014-09-01,"Delivered to Consumers","Wisconsin","WI",20584 +2014-09-01,"Delivered to Consumers","Pennsylvania","PA",64632 +2014-09-01,"Delivered to Consumers","Massachusetts","MA",23092 +2014-09-01,"Delivered to Consumers","Colorado","CO",19163 +2014-09-01,"Delivered to Consumers","Oregon","OR",17293 +2014-09-01,"Electric Power Consumption","Washington","WA",12192 +2014-09-01,"Electric Power Consumption","Idaho","ID",2401 +2014-09-01,"Electric Power Consumption","New York","NY",42923 +2014-09-01,"Electric Power Consumption","Utah","UT",5262 +2014-09-01,"Electric Power Consumption","Minnesota","MN",1595 +2014-09-01,"Electric Power Consumption","Massachusetts","MA",13601 +2014-09-01,"Electric Power Consumption","Pennsylvania","PA",37837 +2014-09-01,"Electric Power Consumption","U.S.","U.S.",770947 +2014-09-01,"Electric Power Consumption","Missouri","MO",2850 +2014-09-01,"Electric Power Consumption","Hawaii","HI",NA +2014-09-01,"Electric Power Consumption","Montana","MT",137 +2014-09-01,"Electric Power Consumption","Maryland","MD",1957 +2014-09-01,"Electric Power Consumption","Florida","FL",96134 +2014-09-01,"Electric Power Consumption","Wyoming","WY",148 +2014-09-01,"Electric Power Consumption","Mississippi","MS",20174 +2014-09-01,"Electric Power Consumption","Indiana","IN",4604 +2014-09-01,"Electric Power Consumption","New Mexico","NM",5816 +2014-09-01,"Electric Power Consumption","Colorado","CO",8810 +2014-09-01,"Electric Power Consumption","Arkansas","AR",5758 +2014-09-01,"Electric Power Consumption","Texas","TX",135001 +2014-09-01,"Electric Power Consumption","Oklahoma","OK",15559 +2014-09-01,"Electric Power Consumption","Vermont","VT",3 +2014-09-01,"Electric Power Consumption","North Dakota","ND",138 +2014-09-01,"Electric Power Consumption","Georgia","GA",28534 +2014-09-01,"Electric Power Consumption","New Jersey","NJ",23557 +2014-09-01,"Electric Power Consumption","Wisconsin","WI",4192 +2014-09-01,"Electric Power Consumption","Nevada","NV",18219 +2014-09-01,"Electric Power Consumption","Louisiana","LA",23710 +2014-09-01,"Electric Power Consumption","South Carolina","SC",6778 +2014-09-01,"Electric Power Consumption","Rhode Island","RI",5360 +2014-09-01,"Electric Power Consumption","Illinois","IL",3675 +2014-09-01,"Electric Power Consumption","South Dakota","SD",24 +2014-09-01,"Electric Power Consumption","New Hampshire","NH",3344 +2014-09-01,"Electric Power Consumption","Alabama","AL",32493 +2014-09-01,"Electric Power Consumption","Tennessee","TN",3553 +2014-09-01,"Electric Power Consumption","Maine","ME",1235 +2014-09-01,"Electric Power Consumption","Virginia","VA",15157 +2014-09-01,"Electric Power Consumption","Michigan","MI",8196 +2014-09-01,"Electric Power Consumption","Kansas","KS",1311 +2014-09-01,"Electric Power Consumption","North Carolina","NC",19600 +2014-09-01,"Electric Power Consumption","Kentucky","KY",684 +2014-09-01,"Electric Power Consumption","Ohio","OH",16891 +2014-09-01,"Electric Power Consumption","Connecticut","CT",8075 +2014-09-01,"Electric Power Consumption","Arizona","AZ",27212 +2014-09-01,"Electric Power Consumption","California","CA",86626 +2014-09-01,"Electric Power Consumption","Alaska","AK",1956 +2014-09-01,"Electric Power Consumption","Oregon","OR",11064 +2014-09-01,"Electric Power Consumption","West Virginia","WV",732 +2014-09-01,"Electric Power Consumption","Iowa","IA",849 +2014-09-01,"Electric Power Consumption","Nebraska","NE",212 +2014-09-01,"Electric Power Consumption","Delaware","DE",4807 +2014-09-01,"Industrial Consumption","Massachusetts","MA",2326 +2014-09-01,"Industrial Consumption","Utah","UT",3012 +2014-09-01,"Industrial Consumption","U.S.","U.S.",590989 +2014-09-01,"Industrial Consumption","New Jersey","NJ",4593 +2014-09-01,"Industrial Consumption","Kentucky","KY",8659 +2014-09-01,"Industrial Consumption","Illinois","IL",21720 +2014-09-01,"Industrial Consumption","Colorado","CO",4931 +2014-09-01,"Industrial Consumption","California","CA",69753 +2014-09-01,"Industrial Consumption","Indiana","IN",28836 +2014-09-01,"Industrial Consumption","North Dakota","ND",1442 +2014-09-01,"Industrial Consumption","Oklahoma","OK",14694 +2014-09-01,"Industrial Consumption","New Mexico","NM",1320 +2014-09-01,"Industrial Consumption","Kansas","KS",8077 +2014-09-01,"Industrial Consumption","Oregon","OR",4163 +2014-09-01,"Industrial Consumption","Nevada","NV",1396 +2014-09-01,"Industrial Consumption","Mississippi","MS",9738 +2014-09-01,"Industrial Consumption","Texas","TX",127100 +2014-09-01,"Industrial Consumption","West Virginia","WV",1991 +2014-09-01,"Industrial Consumption","Tennessee","TN",8952 +2014-09-01,"Industrial Consumption","New Hampshire","NH",626 +2014-09-01,"Industrial Consumption","Idaho","ID",2082 +2014-09-01,"Industrial Consumption","Missouri","MO",4605 +2014-09-01,"Industrial Consumption","South Dakota","SD",3421 +2014-09-01,"Industrial Consumption","Pennsylvania","PA",16950 +2014-09-01,"Industrial Consumption","Connecticut","CT",1734 +2014-09-01,"Industrial Consumption","Michigan","MI",11680 +2014-09-01,"Industrial Consumption","Delaware","DE",2582 +2014-09-01,"Industrial Consumption","Montana","MT",1637 +2014-09-01,"Industrial Consumption","Washington","WA",6219 +2014-09-01,"Industrial Consumption","Arizona","AZ",1634 +2014-09-01,"Industrial Consumption","New York","NY",5652 +2014-09-01,"Industrial Consumption","Maine","ME",1950 +2014-09-01,"Industrial Consumption","Arkansas","AR",6721 +2014-09-01,"Industrial Consumption","Vermont","VT",137 +2014-09-01,"Industrial Consumption","Florida","FL",7064 +2014-09-01,"Industrial Consumption","Alaska","AK",485 +2014-09-01,"Industrial Consumption","Maryland","MD",1065 +2014-09-01,"Industrial Consumption","Ohio","OH",22786 +2014-09-01,"Industrial Consumption","Virginia","VA",6240 +2014-09-01,"Industrial Consumption","Wyoming","WY",3661 +2014-09-01,"Industrial Consumption","Wisconsin","WI",9617 +2014-09-01,"Industrial Consumption","Iowa","IA",12162 +2014-09-01,"Industrial Consumption","Hawaii","HI",34 +2014-09-01,"Industrial Consumption","Louisiana","LA",74373 +2014-09-01,"Industrial Consumption","Alabama","AL",14995 +2014-09-01,"Industrial Consumption","Minnesota","MN",13227 +2014-09-01,"Industrial Consumption","North Carolina","NC",8149 +2014-09-01,"Industrial Consumption","Georgia","GA",12589 +2014-09-01,"Industrial Consumption","South Carolina","SC",6562 +2014-09-01,"Industrial Consumption","Nebraska","NE",7105 +2014-09-01,"Industrial Consumption","Rhode Island","RI",545 +2014-09-01,"Industrial Consumption","District of Columbia","DC",0 +2014-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",126840 +2014-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",46966 +2014-09-01,"Residential Consumption","Oregon","OR",970 +2014-09-01,"Residential Consumption","Ohio","OH",6185 +2014-09-01,"Residential Consumption","Louisiana","LA",1358 +2014-09-01,"Residential Consumption","Hawaii","HI",43 +2014-09-01,"Residential Consumption","Wisconsin","WI",3365 +2014-09-01,"Residential Consumption","Nebraska","NE",811 +2014-09-01,"Residential Consumption","New Hampshire","NH",172 +2014-09-01,"Residential Consumption","Kansas","KS",1274 +2014-09-01,"Residential Consumption","Oklahoma","OK",1161 +2014-09-01,"Residential Consumption","New York","NY",11117 +2014-09-01,"Residential Consumption","Illinois","IL",10591 +2014-09-01,"Residential Consumption","Iowa","IA",1510 +2014-09-01,"Residential Consumption","Michigan","MI",8409 +2014-09-01,"Residential Consumption","Nevada","NV",1206 +2014-09-01,"Residential Consumption","District of Columbia","DC",262 +2014-09-01,"Residential Consumption","Indiana","IN",2925 +2014-09-01,"Residential Consumption","Idaho","ID",628 +2014-09-01,"Residential Consumption","New Jersey","NJ",5091 +2014-09-01,"Residential Consumption","Colorado","CO",3533 +2014-09-01,"Residential Consumption","West Virginia","WV",517 +2014-09-01,"Residential Consumption","Connecticut","CT",1046 +2014-09-01,"Residential Consumption","Maryland","MD",1788 +2014-09-01,"Residential Consumption","Florida","FL",641 +2014-09-01,"Residential Consumption","North Dakota","ND",273 +2014-09-01,"Residential Consumption","Arkansas","AR",719 +2014-09-01,"Residential Consumption","Washington","WA",2089 +2014-09-01,"Residential Consumption","Delaware","DE",158 +2014-09-01,"Residential Consumption","Arizona","AZ",1123 +2014-09-01,"Residential Consumption","Wyoming","WY",386 +2014-09-01,"Residential Consumption","North Carolina","NC",1133 +2014-09-01,"Residential Consumption","Minnesota","MN",2982 +2014-09-01,"Residential Consumption","New Mexico","NM",835 +2014-09-01,"Residential Consumption","Montana","MT",618 +2014-09-01,"Residential Consumption","Kentucky","KY",970 +2014-09-01,"Residential Consumption","Rhode Island","RI",473 +2014-09-01,"Residential Consumption","South Dakota","SD",330 +2014-09-01,"Residential Consumption","Georgia","GA",3577 +2014-09-01,"Residential Consumption","Alabama","AL",716 +2014-09-01,"Residential Consumption","U.S.","U.S.",121736 +2014-09-01,"Residential Consumption","South Carolina","SC",490 +2014-09-01,"Residential Consumption","Virginia","VA",1623 +2014-09-01,"Residential Consumption","Utah","UT",1602 +2014-09-01,"Residential Consumption","Pennsylvania","PA",4770 +2014-09-01,"Residential Consumption","Maine","ME",54 +2014-09-01,"Residential Consumption","California","CA",18456 +2014-09-01,"Residential Consumption","Texas","TX",5951 +2014-09-01,"Residential Consumption","Mississippi","MS",558 +2014-09-01,"Residential Consumption","Vermont","VT",96 +2014-09-01,"Residential Consumption","Tennessee","TN",1239 +2014-09-01,"Residential Consumption","Massachusetts","MA",2927 +2014-09-01,"Residential Consumption","Missouri","MO",2106 +2014-09-01,"Residential Consumption","Alaska","AK",875 +2014-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-09-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2014-09-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",2900 +2014-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-09-01,"Vehicle Fuel Consumption","Utah","UT",21 +2014-09-01,"Vehicle Fuel Consumption","Tennessee","TN",18 +2014-09-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2014-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-09-01,"Vehicle Fuel Consumption","Arizona","AZ",179 +2014-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-09-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2014-09-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-09-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-09-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-09-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2014-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",32 +2014-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2014-09-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-09-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-09-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-09-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-09-01,"Vehicle Fuel Consumption","Texas","TX",342 +2014-09-01,"Vehicle Fuel Consumption","Michigan","MI",36 +2014-09-01,"Vehicle Fuel Consumption","Georgia","GA",89 +2014-09-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-09-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",66 +2014-09-01,"Vehicle Fuel Consumption","Alabama","AL",31 +2014-09-01,"Vehicle Fuel Consumption","Florida","FL",24 +2014-09-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-09-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-09-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-09-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2014-09-01,"Vehicle Fuel Consumption","New York","NY",302 +2014-09-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-09-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2014-09-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-09-01,"Vehicle Fuel Consumption","Colorado","CO",27 +2014-09-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2014-09-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-09-01,"Vehicle Fuel Consumption","Washington","WA",40 +2014-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-09-01,"Vehicle Fuel Consumption","Nevada","NV",80 +2014-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2014-09-01,"Vehicle Fuel Consumption","California","CA",1260 +2014-10-01,"Commercial Consumption","North Carolina","NC",3474 +2014-10-01,"Commercial Consumption","Virginia","VA",4212 +2014-10-01,"Commercial Consumption","Maine","ME",492 +2014-10-01,"Commercial Consumption","Ohio","OH",9491 +2014-10-01,"Commercial Consumption","New York","NY",17824 +2014-10-01,"Commercial Consumption","Nevada","NV",2009 +2014-10-01,"Commercial Consumption","Indiana","IN",5183 +2014-10-01,"Commercial Consumption","Washington","WA",3523 +2014-10-01,"Commercial Consumption","South Carolina","SC",1687 +2014-10-01,"Commercial Consumption","New Mexico","NM",1652 +2014-10-01,"Commercial Consumption","Massachusetts","MA",6331 +2014-10-01,"Commercial Consumption","New Hampshire","NH",481 +2014-10-01,"Commercial Consumption","Maryland","MD",4436 +2014-10-01,"Commercial Consumption","Kansas","KS",2052 +2014-10-01,"Commercial Consumption","Rhode Island","RI",484 +2014-10-01,"Commercial Consumption","Nebraska","NE",1773 +2014-10-01,"Commercial Consumption","Oregon","OR",1538 +2014-10-01,"Commercial Consumption","Kentucky","KY",1965 +2014-10-01,"Commercial Consumption","U.S.","U.S.",202359 +2014-10-01,"Commercial Consumption","Hawaii","HI",158 +2014-10-01,"Commercial Consumption","Alaska","AK",1662 +2014-10-01,"Commercial Consumption","North Dakota","ND",763 +2014-10-01,"Commercial Consumption","Wisconsin","WI",5795 +2014-10-01,"Commercial Consumption","New Jersey","NJ",11427 +2014-10-01,"Commercial Consumption","Idaho","ID",1038 +2014-10-01,"Commercial Consumption","Iowa","IA",3450 +2014-10-01,"Commercial Consumption","Connecticut","CT",2785 +2014-10-01,"Commercial Consumption","Alabama","AL",1789 +2014-10-01,"Commercial Consumption","Tennessee","TN",3370 +2014-10-01,"Commercial Consumption","Louisiana","LA",2232 +2014-10-01,"Commercial Consumption","West Virginia","WV",1470 +2014-10-01,"Commercial Consumption","South Dakota","SD",633 +2014-10-01,"Commercial Consumption","Arizona","AZ",1968 +2014-10-01,"Commercial Consumption","Illinois","IL",14788 +2014-10-01,"Commercial Consumption","Utah","UT",2117 +2014-10-01,"Commercial Consumption","Oklahoma","OK",1605 +2014-10-01,"Commercial Consumption","Missouri","MO",3835 +2014-10-01,"Commercial Consumption","Georgia","GA",3022 +2014-10-01,"Commercial Consumption","Vermont","VT",300 +2014-10-01,"Commercial Consumption","Michigan","MI",9681 +2014-10-01,"Commercial Consumption","Minnesota","MN",5816 +2014-10-01,"Commercial Consumption","California","CA",17355 +2014-10-01,"Commercial Consumption","Arkansas","AR",3401 +2014-10-01,"Commercial Consumption","Mississippi","MS",1488 +2014-10-01,"Commercial Consumption","Delaware","DE",711 +2014-10-01,"Commercial Consumption","Wyoming","WY",789 +2014-10-01,"Commercial Consumption","Colorado","CO",3118 +2014-10-01,"Commercial Consumption","Pennsylvania","PA",8889 +2014-10-01,"Commercial Consumption","Montana","MT",1154 +2014-10-01,"Commercial Consumption","Texas","TX",11298 +2014-10-01,"Commercial Consumption","Florida","FL",4840 +2014-10-01,"Commercial Consumption","District of Columbia","DC",1007 +2014-10-01,"Delivered to Consumers","Utah","UT",12741 +2014-10-01,"Delivered to Consumers","Illinois","IL",63812 +2014-10-01,"Delivered to Consumers","Alaska","AK",6422 +2014-10-01,"Delivered to Consumers","Tennessee","TN",17694 +2014-10-01,"Delivered to Consumers","Massachusetts","MA",28321 +2014-10-01,"Delivered to Consumers","Louisiana","LA",104595 +2014-10-01,"Delivered to Consumers","Georgia","GA",51911 +2014-10-01,"Delivered to Consumers","New Hampshire","NH",4953 +2014-10-01,"Delivered to Consumers","Michigan","MI",52451 +2014-10-01,"Delivered to Consumers","Arkansas","AR",16315 +2014-10-01,"Delivered to Consumers","South Carolina","SC",16056 +2014-10-01,"Delivered to Consumers","West Virginia","WV",6196 +2014-10-01,"Delivered to Consumers","Vermont","VT",616 +2014-10-01,"Delivered to Consumers","Rhode Island","RI",5752 +2014-10-01,"Delivered to Consumers","Kentucky","KY",14020 +2014-10-01,"Delivered to Consumers","Connecticut","CT",13510 +2014-10-01,"Delivered to Consumers","Virginia","VA",21327 +2014-10-01,"Delivered to Consumers","Mississippi","MS",32501 +2014-10-01,"Delivered to Consumers","Oregon","OR",17787 +2014-10-01,"Delivered to Consumers","Indiana","IN",48693 +2014-10-01,"Delivered to Consumers","Delaware","DE",7536 +2014-10-01,"Delivered to Consumers","South Dakota","SD",5062 +2014-10-01,"Delivered to Consumers","Oklahoma","OK",30587 +2014-10-01,"Delivered to Consumers","Maine","ME",3503 +2014-10-01,"Delivered to Consumers","North Dakota","ND",3706 +2014-10-01,"Delivered to Consumers","U.S.","U.S.",1730740 +2014-10-01,"Delivered to Consumers","New Mexico","NM",9447 +2014-10-01,"Delivered to Consumers","Wyoming","WY",5776 +2014-10-01,"Delivered to Consumers","Kansas","KS",13594 +2014-10-01,"Delivered to Consumers","Pennsylvania","PA",75511 +2014-10-01,"Delivered to Consumers","District of Columbia","DC",1626 +2014-10-01,"Delivered to Consumers","Hawaii","HI",233 +2014-10-01,"Delivered to Consumers","Idaho","ID",5948 +2014-10-01,"Delivered to Consumers","Nebraska","NE",11132 +2014-10-01,"Delivered to Consumers","North Carolina","NC",27029 +2014-10-01,"Delivered to Consumers","Missouri","MO",17035 +2014-10-01,"Delivered to Consumers","Texas","TX",259428 +2014-10-01,"Delivered to Consumers","New Jersey","NJ",46040 +2014-10-01,"Delivered to Consumers","New York","NY",76064 +2014-10-01,"Delivered to Consumers","Iowa","IA",22297 +2014-10-01,"Delivered to Consumers","Wisconsin","WI",31769 +2014-10-01,"Delivered to Consumers","Colorado","CO",25138 +2014-10-01,"Delivered to Consumers","Washington","WA",23639 +2014-10-01,"Delivered to Consumers","Minnesota","MN",31291 +2014-10-01,"Delivered to Consumers","Florida","FL",104194 +2014-10-01,"Delivered to Consumers","Montana","MT",4581 +2014-10-01,"Delivered to Consumers","Maryland","MD",10322 +2014-10-01,"Delivered to Consumers","Ohio","OH",55400 +2014-10-01,"Delivered to Consumers","Alabama","AL",49050 +2014-10-01,"Delivered to Consumers","California","CA",191905 +2014-10-01,"Delivered to Consumers","Nevada","NV",21065 +2014-10-01,"Delivered to Consumers","Arizona","AZ",25160 +2014-10-01,"Electric Power Consumption","Virginia","VA",7568 +2014-10-01,"Electric Power Consumption","New Mexico","NM",5038 +2014-10-01,"Electric Power Consumption","Utah","UT",4970 +2014-10-01,"Electric Power Consumption","Iowa","IA",1118 +2014-10-01,"Electric Power Consumption","Tennessee","TN",2556 +2014-10-01,"Electric Power Consumption","Mississippi","MS",19833 +2014-10-01,"Electric Power Consumption","North Dakota","ND",227 +2014-10-01,"Electric Power Consumption","Florida","FL",90571 +2014-10-01,"Electric Power Consumption","Colorado","CO",9101 +2014-10-01,"Electric Power Consumption","New York","NY",35619 +2014-10-01,"Electric Power Consumption","Oregon","OR",9801 +2014-10-01,"Electric Power Consumption","West Virginia","WV",1268 +2014-10-01,"Electric Power Consumption","Nevada","NV",15912 +2014-10-01,"Electric Power Consumption","North Carolina","NC",12550 +2014-10-01,"Electric Power Consumption","Delaware","DE",3865 +2014-10-01,"Electric Power Consumption","Louisiana","LA",21314 +2014-10-01,"Electric Power Consumption","South Carolina","SC",6374 +2014-10-01,"Electric Power Consumption","Oklahoma","OK",14937 +2014-10-01,"Electric Power Consumption","Wyoming","WY",95 +2014-10-01,"Electric Power Consumption","New Hampshire","NH",3500 +2014-10-01,"Electric Power Consumption","Arizona","AZ",19861 +2014-10-01,"Electric Power Consumption","Alabama","AL",30282 +2014-10-01,"Electric Power Consumption","Maryland","MD",1607 +2014-10-01,"Electric Power Consumption","Connecticut","CT",6987 +2014-10-01,"Electric Power Consumption","California","CA",85776 +2014-10-01,"Electric Power Consumption","Alaska","AK",2482 +2014-10-01,"Electric Power Consumption","New Jersey","NJ",21511 +2014-10-01,"Electric Power Consumption","Idaho","ID",1219 +2014-10-01,"Electric Power Consumption","Texas","TX",118033 +2014-10-01,"Electric Power Consumption","Pennsylvania","PA",39288 +2014-10-01,"Electric Power Consumption","Nebraska","NE",326 +2014-10-01,"Electric Power Consumption","Washington","WA",9509 +2014-10-01,"Electric Power Consumption","Arkansas","AR",4496 +2014-10-01,"Electric Power Consumption","Wisconsin","WI",7245 +2014-10-01,"Electric Power Consumption","U.S.","U.S.",703390 +2014-10-01,"Electric Power Consumption","South Dakota","SD",186 +2014-10-01,"Electric Power Consumption","Maine","ME",1138 +2014-10-01,"Electric Power Consumption","Indiana","IN",6445 +2014-10-01,"Electric Power Consumption","Minnesota","MN",4479 +2014-10-01,"Electric Power Consumption","Illinois","IL",4129 +2014-10-01,"Electric Power Consumption","Michigan","MI",8810 +2014-10-01,"Electric Power Consumption","Kentucky","KY",469 +2014-10-01,"Electric Power Consumption","Montana","MT",361 +2014-10-01,"Electric Power Consumption","Georgia","GA",29677 +2014-10-01,"Electric Power Consumption","Rhode Island","RI",4151 +2014-10-01,"Electric Power Consumption","Massachusetts","MA",14158 +2014-10-01,"Electric Power Consumption","Kansas","KS",1064 +2014-10-01,"Electric Power Consumption","Vermont","VT",3 +2014-10-01,"Electric Power Consumption","Missouri","MO",4282 +2014-10-01,"Electric Power Consumption","Hawaii","HI",NA +2014-10-01,"Electric Power Consumption","Ohio","OH",9195 +2014-10-01,"Industrial Consumption","Texas","TX",122863 +2014-10-01,"Industrial Consumption","Delaware","DE",2668 +2014-10-01,"Industrial Consumption","Maryland","MD",1182 +2014-10-01,"Industrial Consumption","Missouri","MO",5043 +2014-10-01,"Industrial Consumption","Ohio","OH",23090 +2014-10-01,"Industrial Consumption","U.S.","U.S.",609917 +2014-10-01,"Industrial Consumption","California","CA",66331 +2014-10-01,"Industrial Consumption","Wisconsin","WI",11240 +2014-10-01,"Industrial Consumption","Tennessee","TN",9441 +2014-10-01,"Industrial Consumption","New Jersey","NJ",4781 +2014-10-01,"Industrial Consumption","Minnesota","MN",13805 +2014-10-01,"Industrial Consumption","Florida","FL",7794 +2014-10-01,"Industrial Consumption","Indiana","IN",29439 +2014-10-01,"Industrial Consumption","North Carolina","NC",8957 +2014-10-01,"Industrial Consumption","Alaska","AK",508 +2014-10-01,"Industrial Consumption","Montana","MT",1962 +2014-10-01,"Industrial Consumption","Hawaii","HI",32 +2014-10-01,"Industrial Consumption","Oklahoma","OK",12644 +2014-10-01,"Industrial Consumption","Colorado","CO",5971 +2014-10-01,"Industrial Consumption","Kansas","KS",8208 +2014-10-01,"Industrial Consumption","Utah","UT",2587 +2014-10-01,"Industrial Consumption","Pennsylvania","PA",17768 +2014-10-01,"Industrial Consumption","Mississippi","MS",10187 +2014-10-01,"Industrial Consumption","Maine","ME",1768 +2014-10-01,"Industrial Consumption","West Virginia","WV",2311 +2014-10-01,"Industrial Consumption","North Dakota","ND",2091 +2014-10-01,"Industrial Consumption","New York","NY",6048 +2014-10-01,"Industrial Consumption","Vermont","VT",154 +2014-10-01,"Industrial Consumption","Idaho","ID",2345 +2014-10-01,"Industrial Consumption","Kentucky","KY",9725 +2014-10-01,"Industrial Consumption","Massachusetts","MA",2838 +2014-10-01,"Industrial Consumption","Louisiana","LA",79353 +2014-10-01,"Industrial Consumption","Oregon","OR",4655 +2014-10-01,"Industrial Consumption","Nevada","NV",1506 +2014-10-01,"Industrial Consumption","Washington","WA",6877 +2014-10-01,"Industrial Consumption","Arkansas","AR",7495 +2014-10-01,"Industrial Consumption","Wyoming","WY",4153 +2014-10-01,"Industrial Consumption","New Hampshire","NH",628 +2014-10-01,"Industrial Consumption","Michigan","MI",14325 +2014-10-01,"Industrial Consumption","District of Columbia","DC",0 +2014-10-01,"Industrial Consumption","South Dakota","SD",3525 +2014-10-01,"Industrial Consumption","Alabama","AL",15823 +2014-10-01,"Industrial Consumption","South Carolina","SC",7155 +2014-10-01,"Industrial Consumption","Nebraska","NE",7581 +2014-10-01,"Industrial Consumption","Virginia","VA",6686 +2014-10-01,"Industrial Consumption","New Mexico","NM",1469 +2014-10-01,"Industrial Consumption","Arizona","AZ",1761 +2014-10-01,"Industrial Consumption","Iowa","IA",14504 +2014-10-01,"Industrial Consumption","Connecticut","CT",1961 +2014-10-01,"Industrial Consumption","Illinois","IL",22482 +2014-10-01,"Industrial Consumption","Rhode Island","RI",610 +2014-10-01,"Industrial Consumption","Georgia","GA",13588 +2014-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",132368 +2014-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",49702 +2014-10-01,"Residential Consumption","Oregon","OR",1779 +2014-10-01,"Residential Consumption","North Carolina","NC",2037 +2014-10-01,"Residential Consumption","Utah","UT",3046 +2014-10-01,"Residential Consumption","Maryland","MD",3078 +2014-10-01,"Residential Consumption","Idaho","ID",1334 +2014-10-01,"Residential Consumption","Arkansas","AR",921 +2014-10-01,"Residential Consumption","Ohio","OH",13581 +2014-10-01,"Residential Consumption","Connecticut","CT",1776 +2014-10-01,"Residential Consumption","Wisconsin","WI",7477 +2014-10-01,"Residential Consumption","Maine","ME",105 +2014-10-01,"Residential Consumption","Texas","TX",6881 +2014-10-01,"Residential Consumption","Iowa","IA",3224 +2014-10-01,"Residential Consumption","Montana","MT",1104 +2014-10-01,"Residential Consumption","Colorado","CO",6921 +2014-10-01,"Residential Consumption","U.S.","U.S.",212079 +2014-10-01,"Residential Consumption","New York","NY",16260 +2014-10-01,"Residential Consumption","Nebraska","NE",1447 +2014-10-01,"Residential Consumption","Minnesota","MN",7186 +2014-10-01,"Residential Consumption","Kentucky","KY",1856 +2014-10-01,"Residential Consumption","Oklahoma","OK",1361 +2014-10-01,"Residential Consumption","California","CA",21140 +2014-10-01,"Residential Consumption","Alaska","AK",1768 +2014-10-01,"Residential Consumption","Illinois","IL",22380 +2014-10-01,"Residential Consumption","Rhode Island","RI",499 +2014-10-01,"Residential Consumption","Hawaii","HI",43 +2014-10-01,"Residential Consumption","Tennessee","TN",2308 +2014-10-01,"Residential Consumption","Michigan","MI",19597 +2014-10-01,"Residential Consumption","District of Columbia","DC",550 +2014-10-01,"Residential Consumption","Indiana","IN",7619 +2014-10-01,"Residential Consumption","New Hampshire","NH",338 +2014-10-01,"Residential Consumption","Kansas","KS",2268 +2014-10-01,"Residential Consumption","Delaware","DE",292 +2014-10-01,"Residential Consumption","Arizona","AZ",1384 +2014-10-01,"Residential Consumption","Alabama","AL",1124 +2014-10-01,"Residential Consumption","Louisiana","LA",1691 +2014-10-01,"Residential Consumption","Virginia","VA",2843 +2014-10-01,"Residential Consumption","Nevada","NV",1556 +2014-10-01,"Residential Consumption","Massachusetts","MA",4933 +2014-10-01,"Residential Consumption","New Jersey","NJ",8303 +2014-10-01,"Residential Consumption","Missouri","MO",3865 +2014-10-01,"Residential Consumption","Wyoming","WY",737 +2014-10-01,"Residential Consumption","West Virginia","WV",1147 +2014-10-01,"Residential Consumption","Mississippi","MS",987 +2014-10-01,"Residential Consumption","Vermont","VT",158 +2014-10-01,"Residential Consumption","Georgia","GA",5533 +2014-10-01,"Residential Consumption","New Mexico","NM",1275 +2014-10-01,"Residential Consumption","Florida","FL",965 +2014-10-01,"Residential Consumption","South Carolina","SC",836 +2014-10-01,"Residential Consumption","South Dakota","SD",718 +2014-10-01,"Residential Consumption","Pennsylvania","PA",9532 +2014-10-01,"Residential Consumption","North Dakota","ND",625 +2014-10-01,"Residential Consumption","Washington","WA",3689 +2014-10-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-10-01,"Vehicle Fuel Consumption","Utah","UT",22 +2014-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-10-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-10-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-10-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",33 +2014-10-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-10-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-10-01,"Vehicle Fuel Consumption","Arizona","AZ",185 +2014-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",61 +2014-10-01,"Vehicle Fuel Consumption","Texas","TX",353 +2014-10-01,"Vehicle Fuel Consumption","Maryland","MD",20 +2014-10-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-10-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2014-10-01,"Vehicle Fuel Consumption","New York","NY",312 +2014-10-01,"Vehicle Fuel Consumption","Alabama","AL",32 +2014-10-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-10-01,"Vehicle Fuel Consumption","Washington","WA",41 +2014-10-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2014-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-10-01,"Vehicle Fuel Consumption","Michigan","MI",38 +2014-10-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2014-10-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",2997 +2014-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",40 +2014-10-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-10-01,"Vehicle Fuel Consumption","Georgia","GA",92 +2014-10-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-10-01,"Vehicle Fuel Consumption","Idaho","ID",13 +2014-10-01,"Vehicle Fuel Consumption","Nevada","NV",83 +2014-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-10-01,"Vehicle Fuel Consumption","Louisiana","LA",5 +2014-10-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-10-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-10-01,"Vehicle Fuel Consumption","California","CA",1302 +2014-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-10-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2014-10-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2014-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-10-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-10-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-10-01,"Vehicle Fuel Consumption","Illinois","IL",35 +2014-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2014-10-01,"Vehicle Fuel Consumption","Florida","FL",25 +2014-11-01,"Commercial Consumption","West Virginia","WV",2447 +2014-11-01,"Commercial Consumption","South Carolina","SC",3001 +2014-11-01,"Commercial Consumption","Montana","MT",2849 +2014-11-01,"Commercial Consumption","Ohio","OH",17953 +2014-11-01,"Commercial Consumption","Nebraska","NE",3608 +2014-11-01,"Commercial Consumption","Oregon","OR",3343 +2014-11-01,"Commercial Consumption","Wisconsin","WI",12402 +2014-11-01,"Commercial Consumption","New Hampshire","NH",996 +2014-11-01,"Commercial Consumption","Vermont","VT",479 +2014-11-01,"Commercial Consumption","Delaware","DE",1347 +2014-11-01,"Commercial Consumption","Arizona","AZ",2749 +2014-11-01,"Commercial Consumption","Indiana","IN",10520 +2014-11-01,"Commercial Consumption","Massachusetts","MA",11187 +2014-11-01,"Commercial Consumption","Kansas","KS",4127 +2014-11-01,"Commercial Consumption","Georgia","GA",7295 +2014-11-01,"Commercial Consumption","Hawaii","HI",150 +2014-11-01,"Commercial Consumption","Alaska","AK",1932 +2014-11-01,"Commercial Consumption","Arkansas","AR",4261 +2014-11-01,"Commercial Consumption","District of Columbia","DC",1747 +2014-11-01,"Commercial Consumption","Colorado","CO",7587 +2014-11-01,"Commercial Consumption","New York","NY",31373 +2014-11-01,"Commercial Consumption","Michigan","MI",19200 +2014-11-01,"Commercial Consumption","Illinois","IL",27746 +2014-11-01,"Commercial Consumption","Washington","WA",6923 +2014-11-01,"Commercial Consumption","North Dakota","ND",1832 +2014-11-01,"Commercial Consumption","Minnesota","MN",12705 +2014-11-01,"Commercial Consumption","Virginia","VA",8722 +2014-11-01,"Commercial Consumption","Texas","TX",14388 +2014-11-01,"Commercial Consumption","Maryland","MD",7736 +2014-11-01,"Commercial Consumption","Rhode Island","RI",1336 +2014-11-01,"Commercial Consumption","Connecticut","CT",4719 +2014-11-01,"Commercial Consumption","New Mexico","NM",3555 +2014-11-01,"Commercial Consumption","Oklahoma","OK",2265 +2014-11-01,"Commercial Consumption","Missouri","MO",7349 +2014-11-01,"Commercial Consumption","New Jersey","NJ",19687 +2014-11-01,"Commercial Consumption","U.S.","U.S.",361530 +2014-11-01,"Commercial Consumption","Idaho","ID",2107 +2014-11-01,"Commercial Consumption","California","CA",21710 +2014-11-01,"Commercial Consumption","Tennessee","TN",6111 +2014-11-01,"Commercial Consumption","Wyoming","WY",1581 +2014-11-01,"Commercial Consumption","Utah","UT",4741 +2014-11-01,"Commercial Consumption","Pennsylvania","PA",17723 +2014-11-01,"Commercial Consumption","South Dakota","SD",1649 +2014-11-01,"Commercial Consumption","Florida","FL",5679 +2014-11-01,"Commercial Consumption","Alabama","AL",3445 +2014-11-01,"Commercial Consumption","Mississippi","MS",2033 +2014-11-01,"Commercial Consumption","Nevada","NV",2598 +2014-11-01,"Commercial Consumption","Louisiana","LA",3308 +2014-11-01,"Commercial Consumption","North Carolina","NC",6594 +2014-11-01,"Commercial Consumption","Maine","ME",930 +2014-11-01,"Commercial Consumption","Kentucky","KY",4502 +2014-11-01,"Commercial Consumption","Iowa","IA",7303 +2014-11-01,"Delivered to Consumers","U.S.","U.S.",2167984 +2014-11-01,"Delivered to Consumers","Indiana","IN",73513 +2014-11-01,"Delivered to Consumers","Rhode Island","RI",6628 +2014-11-01,"Delivered to Consumers","Alabama","AL",57761 +2014-11-01,"Delivered to Consumers","California","CA",181273 +2014-11-01,"Delivered to Consumers","Texas","TX",260922 +2014-11-01,"Delivered to Consumers","New Hampshire","NH",4519 +2014-11-01,"Delivered to Consumers","Illinois","IL",114971 +2014-11-01,"Delivered to Consumers","New York","NY",116473 +2014-11-01,"Delivered to Consumers","Maryland","MD",20099 +2014-11-01,"Delivered to Consumers","Alaska","AK",7281 +2014-11-01,"Delivered to Consumers","Ohio","OH",85878 +2014-11-01,"Delivered to Consumers","Massachusetts","MA",34407 +2014-11-01,"Delivered to Consumers","Minnesota","MN",49151 +2014-11-01,"Delivered to Consumers","District of Columbia","DC",3484 +2014-11-01,"Delivered to Consumers","Vermont","VT",1006 +2014-11-01,"Delivered to Consumers","Kansas","KS",24126 +2014-11-01,"Delivered to Consumers","Idaho","ID",9750 +2014-11-01,"Delivered to Consumers","Iowa","IA",33053 +2014-11-01,"Delivered to Consumers","Wisconsin","WI",50744 +2014-11-01,"Delivered to Consumers","Colorado","CO",43020 +2014-11-01,"Delivered to Consumers","North Dakota","ND",5634 +2014-11-01,"Delivered to Consumers","Virginia","VA",36115 +2014-11-01,"Delivered to Consumers","Missouri","MO",28688 +2014-11-01,"Delivered to Consumers","Nevada","NV",20230 +2014-11-01,"Delivered to Consumers","Oklahoma","OK",32398 +2014-11-01,"Delivered to Consumers","Nebraska","NE",17129 +2014-11-01,"Delivered to Consumers","Mississippi","MS",32249 +2014-11-01,"Delivered to Consumers","Maine","ME",5057 +2014-11-01,"Delivered to Consumers","Arizona","AZ",21566 +2014-11-01,"Delivered to Consumers","Washington","WA",32117 +2014-11-01,"Delivered to Consumers","New Mexico","NM",14523 +2014-11-01,"Delivered to Consumers","Delaware","DE",9304 +2014-11-01,"Delivered to Consumers","Wyoming","WY",7777 +2014-11-01,"Delivered to Consumers","West Virginia","WV",8434 +2014-11-01,"Delivered to Consumers","South Dakota","SD",7682 +2014-11-01,"Delivered to Consumers","Hawaii","HI",227 +2014-11-01,"Delivered to Consumers","Tennessee","TN",28857 +2014-11-01,"Delivered to Consumers","Michigan","MI",86279 +2014-11-01,"Delivered to Consumers","Kentucky","KY",24307 +2014-11-01,"Delivered to Consumers","Louisiana","LA",107104 +2014-11-01,"Delivered to Consumers","Georgia","GA",63798 +2014-11-01,"Delivered to Consumers","Florida","FL",82652 +2014-11-01,"Delivered to Consumers","Utah","UT",21030 +2014-11-01,"Delivered to Consumers","Montana","MT",8630 +2014-11-01,"Delivered to Consumers","Connecticut","CT",20103 +2014-11-01,"Delivered to Consumers","Pennsylvania","PA",91624 +2014-11-01,"Delivered to Consumers","South Carolina","SC",20374 +2014-11-01,"Delivered to Consumers","Oregon","OR",23359 +2014-11-01,"Delivered to Consumers","Arkansas","AR",19113 +2014-11-01,"Delivered to Consumers","North Carolina","NC",42666 +2014-11-01,"Delivered to Consumers","New Jersey","NJ",70897 +2014-11-01,"Electric Power Consumption","Oklahoma","OK",12768 +2014-11-01,"Electric Power Consumption","Kansas","KS",1327 +2014-11-01,"Electric Power Consumption","West Virginia","WV",319 +2014-11-01,"Electric Power Consumption","Pennsylvania","PA",27301 +2014-11-01,"Electric Power Consumption","Vermont","VT",3 +2014-11-01,"Electric Power Consumption","Arkansas","AR",3615 +2014-11-01,"Electric Power Consumption","U.S.","U.S.",600392 +2014-11-01,"Electric Power Consumption","New Hampshire","NH",1982 +2014-11-01,"Electric Power Consumption","Montana","MT",663 +2014-11-01,"Electric Power Consumption","Indiana","IN",8969 +2014-11-01,"Electric Power Consumption","Utah","UT",5012 +2014-11-01,"Electric Power Consumption","Oregon","OR",9306 +2014-11-01,"Electric Power Consumption","Maine","ME",2150 +2014-11-01,"Electric Power Consumption","Maryland","MD",1080 +2014-11-01,"Electric Power Consumption","Connecticut","CT",8423 +2014-11-01,"Electric Power Consumption","New Mexico","NM",5803 +2014-11-01,"Electric Power Consumption","New Jersey","NJ",20861 +2014-11-01,"Electric Power Consumption","Nevada","NV",12978 +2014-11-01,"Electric Power Consumption","Wyoming","WY",195 +2014-11-01,"Electric Power Consumption","Nebraska","NE",222 +2014-11-01,"Electric Power Consumption","California","CA",61219 +2014-11-01,"Electric Power Consumption","Louisiana","LA",18704 +2014-11-01,"Electric Power Consumption","New York","NY",32781 +2014-11-01,"Electric Power Consumption","Michigan","MI",7442 +2014-11-01,"Electric Power Consumption","North Carolina","NC",16897 +2014-11-01,"Electric Power Consumption","Arizona","AZ",14175 +2014-11-01,"Electric Power Consumption","Georgia","GA",24819 +2014-11-01,"Electric Power Consumption","Alaska","AK",2821 +2014-11-01,"Electric Power Consumption","Virginia","VA",10341 +2014-11-01,"Electric Power Consumption","Minnesota","MN",2228 +2014-11-01,"Electric Power Consumption","Iowa","IA",656 +2014-11-01,"Electric Power Consumption","Missouri","MO",2638 +2014-11-01,"Electric Power Consumption","Mississippi","MS",16870 +2014-11-01,"Electric Power Consumption","Hawaii","HI",NA +2014-11-01,"Electric Power Consumption","Ohio","OH",11471 +2014-11-01,"Electric Power Consumption","Alabama","AL",33380 +2014-11-01,"Electric Power Consumption","Washington","WA",6483 +2014-11-01,"Electric Power Consumption","Idaho","ID",1502 +2014-11-01,"Electric Power Consumption","Colorado","CO",9159 +2014-11-01,"Electric Power Consumption","Texas","TX",100467 +2014-11-01,"Electric Power Consumption","Rhode Island","RI",2595 +2014-11-01,"Electric Power Consumption","Illinois","IL",2842 +2014-11-01,"Electric Power Consumption","Tennessee","TN",4120 +2014-11-01,"Electric Power Consumption","Delaware","DE",4239 +2014-11-01,"Electric Power Consumption","Florida","FL",67333 +2014-11-01,"Electric Power Consumption","South Carolina","SC",5815 +2014-11-01,"Electric Power Consumption","Massachusetts","MA",7955 +2014-11-01,"Electric Power Consumption","Wisconsin","WI",5885 +2014-11-01,"Electric Power Consumption","South Dakota","SD",366 +2014-11-01,"Electric Power Consumption","Kentucky","KY",2070 +2014-11-01,"Electric Power Consumption","North Dakota","ND",145 +2014-11-01,"Industrial Consumption","Louisiana","LA",81262 +2014-11-01,"Industrial Consumption","South Dakota","SD",3942 +2014-11-01,"Industrial Consumption","New Mexico","NM",1707 +2014-11-01,"Industrial Consumption","Kansas","KS",10646 +2014-11-01,"Industrial Consumption","Utah","UT",3065 +2014-11-01,"Industrial Consumption","New Jersey","NJ",5914 +2014-11-01,"Industrial Consumption","Kentucky","KY",10834 +2014-11-01,"Industrial Consumption","Indiana","IN",34107 +2014-11-01,"Industrial Consumption","Georgia","GA",14304 +2014-11-01,"Industrial Consumption","California","CA",63073 +2014-11-01,"Industrial Consumption","Tennessee","TN",10235 +2014-11-01,"Industrial Consumption","Illinois","IL",26950 +2014-11-01,"Industrial Consumption","Delaware","DE",2769 +2014-11-01,"Industrial Consumption","North Dakota","ND",1998 +2014-11-01,"Industrial Consumption","Montana","MT",2198 +2014-11-01,"Industrial Consumption","Washington","WA",7192 +2014-11-01,"Industrial Consumption","Pennsylvania","PA",21493 +2014-11-01,"Industrial Consumption","Texas","TX",131090 +2014-11-01,"Industrial Consumption","Nebraska","NE",8652 +2014-11-01,"Industrial Consumption","West Virginia","WV",2419 +2014-11-01,"Industrial Consumption","New Hampshire","NH",741 +2014-11-01,"Industrial Consumption","North Carolina","NC",9441 +2014-11-01,"Industrial Consumption","District of Columbia","DC",0 +2014-11-01,"Industrial Consumption","Colorado","CO",7615 +2014-11-01,"Industrial Consumption","Ohio","OH",24717 +2014-11-01,"Industrial Consumption","Arkansas","AR",8537 +2014-11-01,"Industrial Consumption","Alabama","AL",16447 +2014-11-01,"Industrial Consumption","Vermont","VT",174 +2014-11-01,"Industrial Consumption","Florida","FL",7764 +2014-11-01,"Industrial Consumption","Oregon","OR",4993 +2014-11-01,"Industrial Consumption","Connecticut","CT",2289 +2014-11-01,"Industrial Consumption","Michigan","MI",15580 +2014-11-01,"Industrial Consumption","Missouri","MO",6185 +2014-11-01,"Industrial Consumption","U.S.","U.S.",659624 +2014-11-01,"Industrial Consumption","Nevada","NV",1557 +2014-11-01,"Industrial Consumption","Mississippi","MS",10530 +2014-11-01,"Industrial Consumption","South Carolina","SC",7331 +2014-11-01,"Industrial Consumption","Wyoming","WY",4168 +2014-11-01,"Industrial Consumption","Wisconsin","WI",14038 +2014-11-01,"Industrial Consumption","Idaho","ID",2392 +2014-11-01,"Industrial Consumption","Rhode Island","RI",660 +2014-11-01,"Industrial Consumption","Alaska","AK",458 +2014-11-01,"Industrial Consumption","Maryland","MD",1516 +2014-11-01,"Industrial Consumption","Oklahoma","OK",14127 +2014-11-01,"Industrial Consumption","Arizona","AZ",1980 +2014-11-01,"Industrial Consumption","Maine","ME",1728 +2014-11-01,"Industrial Consumption","Minnesota","MN",16406 +2014-11-01,"Industrial Consumption","Iowa","IA",16442 +2014-11-01,"Industrial Consumption","Massachusetts","MA",3918 +2014-11-01,"Industrial Consumption","Hawaii","HI",33 +2014-11-01,"Industrial Consumption","New York","NY",6942 +2014-11-01,"Industrial Consumption","Virginia","VA",7063 +2014-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",127279 +2014-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",62258 +2014-11-01,"Residential Consumption","Louisiana","LA",3825 +2014-11-01,"Residential Consumption","New Mexico","NM",3445 +2014-11-01,"Residential Consumption","Massachusetts","MA",11289 +2014-11-01,"Residential Consumption","Kansas","KS",8023 +2014-11-01,"Residential Consumption","North Carolina","NC",9724 +2014-11-01,"Residential Consumption","Tennessee","TN",8372 +2014-11-01,"Residential Consumption","South Dakota","SD",1724 +2014-11-01,"Residential Consumption","Florida","FL",1853 +2014-11-01,"Residential Consumption","Ohio","OH",31696 +2014-11-01,"Residential Consumption","Virginia","VA",9971 +2014-11-01,"Residential Consumption","Minnesota","MN",17807 +2014-11-01,"Residential Consumption","New Hampshire","NH",795 +2014-11-01,"Residential Consumption","Oklahoma","OK",3198 +2014-11-01,"Residential Consumption","Arizona","AZ",2482 +2014-11-01,"Residential Consumption","Alaska","AK",2070 +2014-11-01,"Residential Consumption","Utah","UT",8191 +2014-11-01,"Residential Consumption","Colorado","CO",18632 +2014-11-01,"Residential Consumption","Delaware","DE",949 +2014-11-01,"Residential Consumption","Alabama","AL",4457 +2014-11-01,"Residential Consumption","West Virginia","WV",3249 +2014-11-01,"Residential Consumption","Mississippi","MS",2811 +2014-11-01,"Residential Consumption","Nebraska","NE",4644 +2014-11-01,"Residential Consumption","Michigan","MI",44020 +2014-11-01,"Residential Consumption","Georgia","GA",17292 +2014-11-01,"Residential Consumption","North Dakota","ND",1660 +2014-11-01,"Residential Consumption","Kentucky","KY",6898 +2014-11-01,"Residential Consumption","Missouri","MO",12508 +2014-11-01,"Residential Consumption","California","CA",34011 +2014-11-01,"Residential Consumption","Wyoming","WY",1831 +2014-11-01,"Residential Consumption","South Carolina","SC",4224 +2014-11-01,"Residential Consumption","Rhode Island","RI",2030 +2014-11-01,"Residential Consumption","Oregon","OR",5703 +2014-11-01,"Residential Consumption","Iowa","IA",8650 +2014-11-01,"Residential Consumption","Hawaii","HI",44 +2014-11-01,"Residential Consumption","Connecticut","CT",4670 +2014-11-01,"Residential Consumption","Vermont","VT",349 +2014-11-01,"Residential Consumption","Maine","ME",249 +2014-11-01,"Residential Consumption","Arkansas","AR",2698 +2014-11-01,"Residential Consumption","New Jersey","NJ",24417 +2014-11-01,"Residential Consumption","Texas","TX",14635 +2014-11-01,"Residential Consumption","Wisconsin","WI",18409 +2014-11-01,"Residential Consumption","Maryland","MD",9749 +2014-11-01,"Residential Consumption","Indiana","IN",19910 +2014-11-01,"Residential Consumption","Idaho","ID",3737 +2014-11-01,"Residential Consumption","Montana","MT",2919 +2014-11-01,"Residential Consumption","Washington","WA",11480 +2014-11-01,"Residential Consumption","New York","NY",45075 +2014-11-01,"Residential Consumption","Nevada","NV",3016 +2014-11-01,"Residential Consumption","District of Columbia","DC",1671 +2014-11-01,"Residential Consumption","Pennsylvania","PA",25074 +2014-11-01,"Residential Consumption","U.S.","U.S.",543538 +2014-11-01,"Residential Consumption","Illinois","IL",57400 +2014-11-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-11-01,"Vehicle Fuel Consumption","Nevada","NV",80 +2014-11-01,"Vehicle Fuel Consumption","Alabama","AL",31 +2014-11-01,"Vehicle Fuel Consumption","Georgia","GA",89 +2014-11-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-11-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",2900 +2014-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-11-01,"Vehicle Fuel Consumption","Utah","UT",21 +2014-11-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-11-01,"Vehicle Fuel Consumption","Colorado","CO",27 +2014-11-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-11-01,"Vehicle Fuel Consumption","Arizona","AZ",179 +2014-11-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-11-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-11-01,"Vehicle Fuel Consumption","Washington","WA",40 +2014-11-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2014-11-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-11-01,"Vehicle Fuel Consumption","Texas","TX",342 +2014-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-11-01,"Vehicle Fuel Consumption","California","CA",1260 +2014-11-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-11-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2014-11-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-11-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2014-11-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-11-01,"Vehicle Fuel Consumption","Michigan","MI",36 +2014-11-01,"Vehicle Fuel Consumption","Tennessee","TN",18 +2014-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2014-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",59 +2014-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-11-01,"Vehicle Fuel Consumption","Louisiana","LA",4 +2014-11-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-11-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2014-11-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2014-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-11-01,"Vehicle Fuel Consumption","New York","NY",302 +2014-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",32 +2014-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",66 +2014-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-11-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-11-01,"Vehicle Fuel Consumption","Virginia","VA",17 +2014-11-01,"Vehicle Fuel Consumption","Florida","FL",24 +2014-11-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-11-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-11-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-12-01,"Commercial Consumption","Wisconsin","WI",13482 +2014-12-01,"Commercial Consumption","Georgia","GA",7600 +2014-12-01,"Commercial Consumption","Connecticut","CT",6252 +2014-12-01,"Commercial Consumption","Alabama","AL",3125 +2014-12-01,"Commercial Consumption","Delaware","DE",1548 +2014-12-01,"Commercial Consumption","Tennessee","TN",7591 +2014-12-01,"Commercial Consumption","New Mexico","NM",3990 +2014-12-01,"Commercial Consumption","Pennsylvania","PA",21355 +2014-12-01,"Commercial Consumption","Kansas","KS",4932 +2014-12-01,"Commercial Consumption","Nebraska","NE",4419 +2014-12-01,"Commercial Consumption","Louisiana","LA",3307 +2014-12-01,"Commercial Consumption","Washington","WA",7023 +2014-12-01,"Commercial Consumption","New Hampshire","NH",1233 +2014-12-01,"Commercial Consumption","Maine","ME",1144 +2014-12-01,"Commercial Consumption","U.S.","U.S.",426751 +2014-12-01,"Commercial Consumption","Rhode Island","RI",1690 +2014-12-01,"Commercial Consumption","District of Columbia","DC",2242 +2014-12-01,"Commercial Consumption","Missouri","MO",9199 +2014-12-01,"Commercial Consumption","New Jersey","NJ",24505 +2014-12-01,"Commercial Consumption","Florida","FL",5992 +2014-12-01,"Commercial Consumption","Idaho","ID",2472 +2014-12-01,"Commercial Consumption","Michigan","MI",23128 +2014-12-01,"Commercial Consumption","West Virginia","WV",2778 +2014-12-01,"Commercial Consumption","South Carolina","SC",2789 +2014-12-01,"Commercial Consumption","North Dakota","ND",1932 +2014-12-01,"Commercial Consumption","Utah","UT",5611 +2014-12-01,"Commercial Consumption","Massachusetts","MA",12458 +2014-12-01,"Commercial Consumption","Montana","MT",3145 +2014-12-01,"Commercial Consumption","Vermont","VT",666 +2014-12-01,"Commercial Consumption","Illinois","IL",29259 +2014-12-01,"Commercial Consumption","Minnesota","MN",15199 +2014-12-01,"Commercial Consumption","Colorado","CO",8844 +2014-12-01,"Commercial Consumption","South Dakota","SD",1630 +2014-12-01,"Commercial Consumption","Kentucky","KY",5410 +2014-12-01,"Commercial Consumption","Ohio","OH",23759 +2014-12-01,"Commercial Consumption","Iowa","IA",7117 +2014-12-01,"Commercial Consumption","Hawaii","HI",165 +2014-12-01,"Commercial Consumption","California","CA",25591 +2014-12-01,"Commercial Consumption","New York","NY",37830 +2014-12-01,"Commercial Consumption","Mississippi","MS",2574 +2014-12-01,"Commercial Consumption","Arizona","AZ",3589 +2014-12-01,"Commercial Consumption","North Carolina","NC",7192 +2014-12-01,"Commercial Consumption","Virginia","VA",9184 +2014-12-01,"Commercial Consumption","Texas","TX",20365 +2014-12-01,"Commercial Consumption","Alaska","AK",2307 +2014-12-01,"Commercial Consumption","Indiana","IN",11472 +2014-12-01,"Commercial Consumption","Wyoming","WY",1732 +2014-12-01,"Commercial Consumption","Oregon","OR",4047 +2014-12-01,"Commercial Consumption","Oklahoma","OK",5378 +2014-12-01,"Commercial Consumption","Maryland","MD",9099 +2014-12-01,"Commercial Consumption","Arkansas","AR",5942 +2014-12-01,"Commercial Consumption","Nevada","NV",3459 +2014-12-01,"Delivered to Consumers","Rhode Island","RI",7963 +2014-12-01,"Delivered to Consumers","Montana","MT",9064 +2014-12-01,"Delivered to Consumers","Oklahoma","OK",46279 +2014-12-01,"Delivered to Consumers","Wisconsin","WI",52517 +2014-12-01,"Delivered to Consumers","Nebraska","NE",18924 +2014-12-01,"Delivered to Consumers","Arizona","AZ",20524 +2014-12-01,"Delivered to Consumers","Illinois","IL",124886 +2014-12-01,"Delivered to Consumers","New York","NY",144317 +2014-12-01,"Delivered to Consumers","Hawaii","HI",251 +2014-12-01,"Delivered to Consumers","Connecticut","CT",25507 +2014-12-01,"Delivered to Consumers","Virginia","VA",42925 +2014-12-01,"Delivered to Consumers","Massachusetts","MA",40965 +2014-12-01,"Delivered to Consumers","Utah","UT",23363 +2014-12-01,"Delivered to Consumers","New Mexico","NM",17943 +2014-12-01,"Delivered to Consumers","Indiana","IN",77098 +2014-12-01,"Delivered to Consumers","Kansas","KS",27703 +2014-12-01,"Delivered to Consumers","Iowa","IA",34956 +2014-12-01,"Delivered to Consumers","Oregon","OR",24230 +2014-12-01,"Delivered to Consumers","New Jersey","NJ",83091 +2014-12-01,"Delivered to Consumers","Delaware","DE",10246 +2014-12-01,"Delivered to Consumers","Vermont","VT",1362 +2014-12-01,"Delivered to Consumers","Idaho","ID",10163 +2014-12-01,"Delivered to Consumers","Arkansas","AR",25372 +2014-12-01,"Delivered to Consumers","District of Columbia","DC",4427 +2014-12-01,"Delivered to Consumers","West Virginia","WV",9339 +2014-12-01,"Delivered to Consumers","South Dakota","SD",8528 +2014-12-01,"Delivered to Consumers","Michigan","MI",97179 +2014-12-01,"Delivered to Consumers","Alabama","AL",56399 +2014-12-01,"Delivered to Consumers","Louisiana","LA",107512 +2014-12-01,"Delivered to Consumers","Georgia","GA",64442 +2014-12-01,"Delivered to Consumers","Wyoming","WY",8261 +2014-12-01,"Delivered to Consumers","Tennessee","TN",33714 +2014-12-01,"Delivered to Consumers","Ohio","OH",113809 +2014-12-01,"Delivered to Consumers","Kentucky","KY",25903 +2014-12-01,"Delivered to Consumers","North Carolina","NC",50695 +2014-12-01,"Delivered to Consumers","Missouri","MO",34886 +2014-12-01,"Delivered to Consumers","Colorado","CO",46897 +2014-12-01,"Delivered to Consumers","Nevada","NV",24322 +2014-12-01,"Delivered to Consumers","New Hampshire","NH",6177 +2014-12-01,"Delivered to Consumers","Maryland","MD",24936 +2014-12-01,"Delivered to Consumers","Pennsylvania","PA",115593 +2014-12-01,"Delivered to Consumers","Texas","TX",297357 +2014-12-01,"Delivered to Consumers","Maine","ME",4817 +2014-12-01,"Delivered to Consumers","Washington","WA",32680 +2014-12-01,"Delivered to Consumers","North Dakota","ND",6058 +2014-12-01,"Delivered to Consumers","Minnesota","MN",58085 +2014-12-01,"Delivered to Consumers","U.S.","U.S.",2475535 +2014-12-01,"Delivered to Consumers","Alaska","AK",7957 +2014-12-01,"Delivered to Consumers","Mississippi","MS",38450 +2014-12-01,"Delivered to Consumers","California","CA",218289 +2014-12-01,"Delivered to Consumers","South Carolina","SC",21731 +2014-12-01,"Delivered to Consumers","Florida","FL",87443 +2014-12-01,"Electric Power Consumption","New Mexico","NM",6608 +2014-12-01,"Electric Power Consumption","Pennsylvania","PA",34137 +2014-12-01,"Electric Power Consumption","Ohio","OH",17339 +2014-12-01,"Electric Power Consumption","North Dakota","ND",175 +2014-12-01,"Electric Power Consumption","Washington","WA",6452 +2014-12-01,"Electric Power Consumption","Arkansas","AR",5420 +2014-12-01,"Electric Power Consumption","New York","NY",35477 +2014-12-01,"Electric Power Consumption","Illinois","IL",3329 +2014-12-01,"Electric Power Consumption","West Virginia","WV",215 +2014-12-01,"Electric Power Consumption","Nebraska","NE",277 +2014-12-01,"Electric Power Consumption","Maine","ME",1641 +2014-12-01,"Electric Power Consumption","Arizona","AZ",9510 +2014-12-01,"Electric Power Consumption","California","CA",66095 +2014-12-01,"Electric Power Consumption","South Carolina","SC",6278 +2014-12-01,"Electric Power Consumption","North Carolina","NC",21159 +2014-12-01,"Electric Power Consumption","Florida","FL",70656 +2014-12-01,"Electric Power Consumption","Alabama","AL",31210 +2014-12-01,"Electric Power Consumption","Louisiana","LA",16158 +2014-12-01,"Electric Power Consumption","Michigan","MI",9891 +2014-12-01,"Electric Power Consumption","Massachusetts","MA",6710 +2014-12-01,"Electric Power Consumption","Vermont","VT",4 +2014-12-01,"Electric Power Consumption","U.S.","U.S.",638769 +2014-12-01,"Electric Power Consumption","Mississippi","MS",21399 +2014-12-01,"Electric Power Consumption","New Hampshire","NH",3040 +2014-12-01,"Electric Power Consumption","Idaho","ID",1155 +2014-12-01,"Electric Power Consumption","Rhode Island","RI",2877 +2014-12-01,"Electric Power Consumption","Wisconsin","WI",5251 +2014-12-01,"Electric Power Consumption","Georgia","GA",24167 +2014-12-01,"Electric Power Consumption","Minnesota","MN",3340 +2014-12-01,"Electric Power Consumption","Kansas","KS",1014 +2014-12-01,"Electric Power Consumption","South Dakota","SD",687 +2014-12-01,"Electric Power Consumption","Missouri","MO",2531 +2014-12-01,"Electric Power Consumption","Montana","MT",361 +2014-12-01,"Electric Power Consumption","Delaware","DE",3960 +2014-12-01,"Electric Power Consumption","Connecticut","CT",9836 +2014-12-01,"Electric Power Consumption","Iowa","IA",1303 +2014-12-01,"Electric Power Consumption","Kentucky","KY",1369 +2014-12-01,"Electric Power Consumption","Maryland","MD",1127 +2014-12-01,"Electric Power Consumption","Alaska","AK",2938 +2014-12-01,"Electric Power Consumption","Virginia","VA",12151 +2014-12-01,"Electric Power Consumption","New Jersey","NJ",21023 +2014-12-01,"Electric Power Consumption","Colorado","CO",8781 +2014-12-01,"Electric Power Consumption","Texas","TX",107524 +2014-12-01,"Electric Power Consumption","Oklahoma","OK",15993 +2014-12-01,"Electric Power Consumption","Utah","UT",4665 +2014-12-01,"Electric Power Consumption","Oregon","OR",8616 +2014-12-01,"Electric Power Consumption","Nevada","NV",13724 +2014-12-01,"Electric Power Consumption","Wyoming","WY",128 +2014-12-01,"Electric Power Consumption","Tennessee","TN",3144 +2014-12-01,"Electric Power Consumption","Hawaii","HI",NA +2014-12-01,"Electric Power Consumption","Indiana","IN",7923 +2014-12-01,"Industrial Consumption","Oklahoma","OK",15658 +2014-12-01,"Industrial Consumption","New Mexico","NM",1799 +2014-12-01,"Industrial Consumption","Nevada","NV",1598 +2014-12-01,"Industrial Consumption","Idaho","ID",2543 +2014-12-01,"Industrial Consumption","Iowa","IA",15925 +2014-12-01,"Industrial Consumption","Kansas","KS",10427 +2014-12-01,"Industrial Consumption","Utah","UT",3416 +2014-12-01,"Industrial Consumption","Pennsylvania","PA",22738 +2014-12-01,"Industrial Consumption","Wisconsin","WI",14361 +2014-12-01,"Industrial Consumption","New Hampshire","NH",826 +2014-12-01,"Industrial Consumption","Massachusetts","MA",4841 +2014-12-01,"Industrial Consumption","Hawaii","HI",36 +2014-12-01,"Industrial Consumption","Washington","WA",7382 +2014-12-01,"Industrial Consumption","U.S.","U.S.",690112 +2014-12-01,"Industrial Consumption","Kentucky","KY",10602 +2014-12-01,"Industrial Consumption","Illinois","IL",29281 +2014-12-01,"Industrial Consumption","Delaware","DE",3094 +2014-12-01,"Industrial Consumption","Alaska","AK",494 +2014-12-01,"Industrial Consumption","Ohio","OH",27609 +2014-12-01,"Industrial Consumption","New York","NY",8066 +2014-12-01,"Industrial Consumption","Maine","ME",1683 +2014-12-01,"Industrial Consumption","California","CA",67425 +2014-12-01,"Industrial Consumption","Alabama","AL",16659 +2014-12-01,"Industrial Consumption","Texas","TX",137385 +2014-12-01,"Industrial Consumption","Nebraska","NE",7637 +2014-12-01,"Industrial Consumption","Minnesota","MN",18611 +2014-12-01,"Industrial Consumption","Indiana","IN",35301 +2014-12-01,"Industrial Consumption","North Carolina","NC",9794 +2014-12-01,"Industrial Consumption","Missouri","MO",6596 +2014-12-01,"Industrial Consumption","South Carolina","SC",7542 +2014-12-01,"Industrial Consumption","Georgia","GA",14260 +2014-12-01,"Industrial Consumption","District of Columbia","DC",0 +2014-12-01,"Industrial Consumption","North Dakota","ND",2202 +2014-12-01,"Industrial Consumption","Louisiana","LA",82338 +2014-12-01,"Industrial Consumption","South Dakota","SD",4014 +2014-12-01,"Industrial Consumption","Virginia","VA",7033 +2014-12-01,"Industrial Consumption","Tennessee","TN",10591 +2014-12-01,"Industrial Consumption","Florida","FL",8544 +2014-12-01,"Industrial Consumption","Michigan","MI",17869 +2014-12-01,"Industrial Consumption","Montana","MT",2291 +2014-12-01,"Industrial Consumption","Colorado","CO",8641 +2014-12-01,"Industrial Consumption","Arizona","AZ",2349 +2014-12-01,"Industrial Consumption","Oregon","OR",5135 +2014-12-01,"Industrial Consumption","Mississippi","MS",10741 +2014-12-01,"Industrial Consumption","West Virginia","WV",2416 +2014-12-01,"Industrial Consumption","New Jersey","NJ",5087 +2014-12-01,"Industrial Consumption","Connecticut","CT",2571 +2014-12-01,"Industrial Consumption","Maryland","MD",1433 +2014-12-01,"Industrial Consumption","Arkansas","AR",8029 +2014-12-01,"Industrial Consumption","Vermont","VT",185 +2014-12-01,"Industrial Consumption","Wyoming","WY",4330 +2014-12-01,"Industrial Consumption","Rhode Island","RI",727 +2014-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",132541 +2014-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",71090 +2014-12-01,"Residential Consumption","Texas","TX",31730 +2014-12-01,"Residential Consumption","Wisconsin","WI",19411 +2014-12-01,"Residential Consumption","Nevada","NV",5459 +2014-12-01,"Residential Consumption","North Dakota","ND",1749 +2014-12-01,"Residential Consumption","Virginia","VA",14540 +2014-12-01,"Residential Consumption","Maryland","MD",13257 +2014-12-01,"Residential Consumption","New Jersey","NJ",32458 +2014-12-01,"Residential Consumption","Hawaii","HI",50 +2014-12-01,"Residential Consumption","Connecticut","CT",6846 +2014-12-01,"Residential Consumption","Vermont","VT",507 +2014-12-01,"Residential Consumption","Michigan","MI",46254 +2014-12-01,"Residential Consumption","District of Columbia","DC",2117 +2014-12-01,"Residential Consumption","Kentucky","KY",8517 +2014-12-01,"Residential Consumption","New York","NY",62632 +2014-12-01,"Residential Consumption","Tennessee","TN",12369 +2014-12-01,"Residential Consumption","Minnesota","MN",20929 +2014-12-01,"Residential Consumption","Indiana","IN",22394 +2014-12-01,"Residential Consumption","Idaho","ID",3981 +2014-12-01,"Residential Consumption","Colorado","CO",20604 +2014-12-01,"Residential Consumption","West Virginia","WV",3929 +2014-12-01,"Residential Consumption","Rhode Island","RI",2662 +2014-12-01,"Residential Consumption","Oregon","OR",6418 +2014-12-01,"Residential Consumption","Mississippi","MS",3730 +2014-12-01,"Residential Consumption","Utah","UT",9648 +2014-12-01,"Residential Consumption","Nebraska","NE",6587 +2014-12-01,"Residential Consumption","Maine","ME",350 +2014-12-01,"Residential Consumption","Florida","FL",2227 +2014-12-01,"Residential Consumption","North Carolina","NC",12540 +2014-12-01,"Residential Consumption","Iowa","IA",10609 +2014-12-01,"Residential Consumption","Washington","WA",11782 +2014-12-01,"Residential Consumption","California","CA",57876 +2014-12-01,"Residential Consumption","Arizona","AZ",4891 +2014-12-01,"Residential Consumption","Wyoming","WY",2069 +2014-12-01,"Residential Consumption","U.S.","U.S.",716907 +2014-12-01,"Residential Consumption","South Carolina","SC",5119 +2014-12-01,"Residential Consumption","Georgia","GA",18324 +2014-12-01,"Residential Consumption","Pennsylvania","PA",37330 +2014-12-01,"Residential Consumption","Arkansas","AR",5978 +2014-12-01,"Residential Consumption","Montana","MT",3267 +2014-12-01,"Residential Consumption","Kansas","KS",11328 +2014-12-01,"Residential Consumption","Oklahoma","OK",9210 +2014-12-01,"Residential Consumption","Missouri","MO",16552 +2014-12-01,"Residential Consumption","Delaware","DE",1644 +2014-12-01,"Residential Consumption","Alabama","AL",5373 +2014-12-01,"Residential Consumption","Alaska","AK",2218 +2014-12-01,"Residential Consumption","Illinois","IL",62983 +2014-12-01,"Residential Consumption","Ohio","OH",45059 +2014-12-01,"Residential Consumption","Louisiana","LA",5705 +2014-12-01,"Residential Consumption","South Dakota","SD",2197 +2014-12-01,"Residential Consumption","New Mexico","NM",5533 +2014-12-01,"Residential Consumption","Massachusetts","MA",16894 +2014-12-01,"Residential Consumption","New Hampshire","NH",1072 +2014-12-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2014-12-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2014-12-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2014-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2014-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",33 +2014-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",68 +2014-12-01,"Vehicle Fuel Consumption","Missouri","MO",9 +2014-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2014-12-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2014-12-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2014-12-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2014-12-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2014-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",18 +2014-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2014-12-01,"Vehicle Fuel Consumption","Louisiana","LA",5 +2014-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2014-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2014-12-01,"Vehicle Fuel Consumption","Virginia","VA",18 +2014-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",11 +2014-12-01,"Vehicle Fuel Consumption","Nevada","NV",83 +2014-12-01,"Vehicle Fuel Consumption","Arizona","AZ",185 +2014-12-01,"Vehicle Fuel Consumption","Oregon","OR",14 +2014-12-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2014-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",2997 +2014-12-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2014-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2014-12-01,"Vehicle Fuel Consumption","Alabama","AL",32 +2014-12-01,"Vehicle Fuel Consumption","Florida","FL",25 +2014-12-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2014-12-01,"Vehicle Fuel Consumption","Washington","WA",41 +2014-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",40 +2014-12-01,"Vehicle Fuel Consumption","Kansas","KS",1 +2014-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",61 +2014-12-01,"Vehicle Fuel Consumption","Georgia","GA",92 +2014-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2014-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2014-12-01,"Vehicle Fuel Consumption","Utah","UT",22 +2014-12-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2014-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2014-12-01,"Vehicle Fuel Consumption","Texas","TX",353 +2014-12-01,"Vehicle Fuel Consumption","Idaho","ID",13 +2014-12-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2014-12-01,"Vehicle Fuel Consumption","Michigan","MI",38 +2014-12-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2014-12-01,"Vehicle Fuel Consumption","Illinois","IL",35 +2014-12-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2014-12-01,"Vehicle Fuel Consumption","New York","NY",312 +2014-12-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2014-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2014-12-01,"Vehicle Fuel Consumption","Maryland","MD",20 +2014-12-01,"Vehicle Fuel Consumption","North Carolina","NC",10 +2014-12-01,"Vehicle Fuel Consumption","California","CA",1302 +2015-01-01,"Commercial Consumption","North Carolina","NC",9139 +2015-01-01,"Commercial Consumption","Pennsylvania","PA",27858 +2015-01-01,"Commercial Consumption","Montana","MT",3252 +2015-01-01,"Commercial Consumption","Rhode Island","RI",2463 +2015-01-01,"Commercial Consumption","Iowa","IA",8625 +2015-01-01,"Commercial Consumption","Mississippi","MS",3332 +2015-01-01,"Commercial Consumption","Michigan","MI",30587 +2015-01-01,"Commercial Consumption","New Hampshire","NH",1975 +2015-01-01,"Commercial Consumption","Ohio","OH",32696 +2015-01-01,"Commercial Consumption","Indiana","IN",15390 +2015-01-01,"Commercial Consumption","West Virginia","WV",3693 +2015-01-01,"Commercial Consumption","Oregon","OR",3745 +2015-01-01,"Commercial Consumption","Oklahoma","OK",7824 +2015-01-01,"Commercial Consumption","Massachusetts","MA",18175 +2015-01-01,"Commercial Consumption","Wisconsin","WI",16627 +2015-01-01,"Commercial Consumption","Maryland","MD",11699 +2015-01-01,"Commercial Consumption","Arkansas","AR",7338 +2015-01-01,"Commercial Consumption","Nebraska","NE",5012 +2015-01-01,"Commercial Consumption","Washington","WA",6825 +2015-01-01,"Commercial Consumption","South Carolina","SC",3611 +2015-01-01,"Commercial Consumption","North Dakota","ND",2264 +2015-01-01,"Commercial Consumption","Minnesota","MN",16471 +2015-01-01,"Commercial Consumption","Missouri","MO",10496 +2015-01-01,"Commercial Consumption","South Dakota","SD",1916 +2015-01-01,"Commercial Consumption","Connecticut","CT",8259 +2015-01-01,"Commercial Consumption","Delaware","DE",2031 +2015-01-01,"Commercial Consumption","Illinois","IL",38856 +2015-01-01,"Commercial Consumption","Wyoming","WY",1913 +2015-01-01,"Commercial Consumption","U.S.","U.S.",532631 +2015-01-01,"Commercial Consumption","Hawaii","HI",179 +2015-01-01,"Commercial Consumption","Alaska","AK",2473 +2015-01-01,"Commercial Consumption","Alabama","AL",4516 +2015-01-01,"Commercial Consumption","New York","NY",51813 +2015-01-01,"Commercial Consumption","Colorado","CO",8934 +2015-01-01,"Commercial Consumption","Texas","TX",27388 +2015-01-01,"Commercial Consumption","Idaho","ID",2687 +2015-01-01,"Commercial Consumption","California","CA",25021 +2015-01-01,"Commercial Consumption","Arizona","AZ",3981 +2015-01-01,"Commercial Consumption","Tennessee","TN",9901 +2015-01-01,"Commercial Consumption","Nevada","NV",3817 +2015-01-01,"Commercial Consumption","District of Columbia","DC",3043 +2015-01-01,"Commercial Consumption","Virginia","VA",12102 +2015-01-01,"Commercial Consumption","Maine","ME",1676 +2015-01-01,"Commercial Consumption","Florida","FL",6311 +2015-01-01,"Commercial Consumption","Louisiana","LA",4292 +2015-01-01,"Commercial Consumption","Utah","UT",5620 +2015-01-01,"Commercial Consumption","New Mexico","NM",3836 +2015-01-01,"Commercial Consumption","New Jersey","NJ",28280 +2015-01-01,"Commercial Consumption","Kentucky","KY",7275 +2015-01-01,"Commercial Consumption","Kansas","KS",6338 +2015-01-01,"Commercial Consumption","Georgia","GA",10187 +2015-01-01,"Commercial Consumption","Vermont","VT",889 +2015-01-01,"Delivered to Consumers","Wyoming","WY",8407 +2015-01-01,"Delivered to Consumers","West Virginia","WV",11602 +2015-01-01,"Delivered to Consumers","Rhode Island","RI",9565 +2015-01-01,"Delivered to Consumers","Hawaii","HI",278 +2015-01-01,"Delivered to Consumers","Virginia","VA",56711 +2015-01-01,"Delivered to Consumers","Georgia","GA",80644 +2015-01-01,"Delivered to Consumers","Minnesota","MN",59139 +2015-01-01,"Delivered to Consumers","Maryland","MD",32824 +2015-01-01,"Delivered to Consumers","California","CA",216065 +2015-01-01,"Delivered to Consumers","Texas","TX",348119 +2015-01-01,"Delivered to Consumers","Nevada","NV",25728 +2015-01-01,"Delivered to Consumers","Florida","FL",98429 +2015-01-01,"Delivered to Consumers","New Mexico","NM",18296 +2015-01-01,"Delivered to Consumers","Ohio","OH",142053 +2015-01-01,"Delivered to Consumers","Michigan","MI",129763 +2015-01-01,"Delivered to Consumers","South Carolina","SC",25674 +2015-01-01,"Delivered to Consumers","Louisiana","LA",118589 +2015-01-01,"Delivered to Consumers","North Dakota","ND",7045 +2015-01-01,"Delivered to Consumers","U.S.","U.S.",2903574 +2015-01-01,"Delivered to Consumers","Delaware","DE",10671 +2015-01-01,"Delivered to Consumers","Montana","MT",9322 +2015-01-01,"Delivered to Consumers","Alaska","AK",8828 +2015-01-01,"Delivered to Consumers","Oklahoma","OK",59662 +2015-01-01,"Delivered to Consumers","Tennessee","TN",42787 +2015-01-01,"Delivered to Consumers","Missouri","MO",40132 +2015-01-01,"Delivered to Consumers","Colorado","CO",46190 +2015-01-01,"Delivered to Consumers","New Jersey","NJ",100401 +2015-01-01,"Delivered to Consumers","Arizona","AZ",25044 +2015-01-01,"Delivered to Consumers","New Hampshire","NH",8118 +2015-01-01,"Delivered to Consumers","Utah","UT",23346 +2015-01-01,"Delivered to Consumers","Indiana","IN",94388 +2015-01-01,"Delivered to Consumers","Vermont","VT",1836 +2015-01-01,"Delivered to Consumers","Connecticut","CT",32005 +2015-01-01,"Delivered to Consumers","Alabama","AL",66181 +2015-01-01,"Delivered to Consumers","Oregon","OR",23345 +2015-01-01,"Delivered to Consumers","Washington","WA",30508 +2015-01-01,"Delivered to Consumers","South Dakota","SD",8814 +2015-01-01,"Delivered to Consumers","Wisconsin","WI",66135 +2015-01-01,"Delivered to Consumers","Nebraska","NE",20344 +2015-01-01,"Delivered to Consumers","North Carolina","NC",56943 +2015-01-01,"Delivered to Consumers","Mississippi","MS",46698 +2015-01-01,"Delivered to Consumers","Massachusetts","MA",56732 +2015-01-01,"Delivered to Consumers","Maine","ME",6290 +2015-01-01,"Delivered to Consumers","Illinois","IL",156762 +2015-01-01,"Delivered to Consumers","New York","NY",185541 +2015-01-01,"Delivered to Consumers","Kansas","KS",31757 +2015-01-01,"Delivered to Consumers","Iowa","IA",40417 +2015-01-01,"Delivered to Consumers","Arkansas","AR",33888 +2015-01-01,"Delivered to Consumers","Pennsylvania","PA",130164 +2015-01-01,"Delivered to Consumers","Idaho","ID",11961 +2015-01-01,"Delivered to Consumers","Kentucky","KY",33156 +2015-01-01,"Delivered to Consumers","District of Columbia","DC",6278 +2015-01-01,"Electric Power Consumption","Virginia","VA",17704 +2015-01-01,"Electric Power Consumption","South Carolina","SC",7267 +2015-01-01,"Electric Power Consumption","Oklahoma","OK",20692 +2015-01-01,"Electric Power Consumption","Utah","UT",3937 +2015-01-01,"Electric Power Consumption","Oregon","OR",8153 +2015-01-01,"Electric Power Consumption","Nevada","NV",13145 +2015-01-01,"Electric Power Consumption","Kentucky","KY",2290 +2015-01-01,"Electric Power Consumption","Indiana","IN",11783 +2015-01-01,"Electric Power Consumption","Pennsylvania","PA",32952 +2015-01-01,"Electric Power Consumption","U.S.","U.S.",711324 +2015-01-01,"Electric Power Consumption","Maine","ME",1888 +2015-01-01,"Electric Power Consumption","Mississippi","MS",26571 +2015-01-01,"Electric Power Consumption","Montana","MT",571 +2015-01-01,"Electric Power Consumption","Georgia","GA",29304 +2015-01-01,"Electric Power Consumption","Alaska","AK",3114 +2015-01-01,"Electric Power Consumption","West Virginia","WV",256 +2015-01-01,"Electric Power Consumption","Wyoming","WY",56 +2015-01-01,"Electric Power Consumption","South Dakota","SD",516 +2015-01-01,"Electric Power Consumption","Nebraska","NE",184 +2015-01-01,"Electric Power Consumption","North Carolina","NC",21918 +2015-01-01,"Electric Power Consumption","Alabama","AL",35709 +2015-01-01,"Electric Power Consumption","Arkansas","AR",9981 +2015-01-01,"Electric Power Consumption","Texas","TX",126489 +2015-01-01,"Electric Power Consumption","Illinois","IL",6108 +2015-01-01,"Electric Power Consumption","Tennessee","TN",4748 +2015-01-01,"Electric Power Consumption","Maryland","MD",1001 +2015-01-01,"Electric Power Consumption","Arizona","AZ",11324 +2015-01-01,"Electric Power Consumption","New Mexico","NM",6622 +2015-01-01,"Electric Power Consumption","Colorado","CO",6740 +2015-01-01,"Electric Power Consumption","Minnesota","MN",2373 +2015-01-01,"Electric Power Consumption","Iowa","IA",1328 +2015-01-01,"Electric Power Consumption","Missouri","MO",2720 +2015-01-01,"Electric Power Consumption","Florida","FL",80767 +2015-01-01,"Electric Power Consumption","California","CA",62816 +2015-01-01,"Electric Power Consumption","Washington","WA",4618 +2015-01-01,"Electric Power Consumption","New Jersey","NJ",18699 +2015-01-01,"Electric Power Consumption","Louisiana","LA",21979 +2015-01-01,"Electric Power Consumption","Vermont","VT",5 +2015-01-01,"Electric Power Consumption","Ohio","OH",19214 +2015-01-01,"Electric Power Consumption","Connecticut","CT",10732 +2015-01-01,"Electric Power Consumption","Idaho","ID",2309 +2015-01-01,"Electric Power Consumption","Rhode Island","RI",2156 +2015-01-01,"Electric Power Consumption","Kansas","KS",493 +2015-01-01,"Electric Power Consumption","Wisconsin","WI",7847 +2015-01-01,"Electric Power Consumption","New York","NY",35055 +2015-01-01,"Electric Power Consumption","Michigan","MI",13951 +2015-01-01,"Electric Power Consumption","Massachusetts","MA",6586 +2015-01-01,"Electric Power Consumption","Hawaii","HI",NA +2015-01-01,"Electric Power Consumption","New Hampshire","NH",3622 +2015-01-01,"Electric Power Consumption","North Dakota","ND",38 +2015-01-01,"Electric Power Consumption","Delaware","DE",2994 +2015-01-01,"Industrial Consumption","Arizona","AZ",2115 +2015-01-01,"Industrial Consumption","New York","NY",9379 +2015-01-01,"Industrial Consumption","Alabama","AL",17844 +2015-01-01,"Industrial Consumption","West Virginia","WV",2529 +2015-01-01,"Industrial Consumption","Hawaii","HI",38 +2015-01-01,"Industrial Consumption","Missouri","MO",7179 +2015-01-01,"Industrial Consumption","Kansas","KS",12075 +2015-01-01,"Industrial Consumption","Utah","UT",3586 +2015-01-01,"Industrial Consumption","Oregon","OR",5209 +2015-01-01,"Industrial Consumption","Mississippi","MS",10991 +2015-01-01,"Industrial Consumption","Wyoming","WY",4470 +2015-01-01,"Industrial Consumption","Wisconsin","WI",15947 +2015-01-01,"Industrial Consumption","New Jersey","NJ",6341 +2015-01-01,"Industrial Consumption","Illinois","IL",29210 +2015-01-01,"Industrial Consumption","Georgia","GA",14803 +2015-01-01,"Industrial Consumption","North Dakota","ND",2736 +2015-01-01,"Industrial Consumption","New Mexico","NM",1575 +2015-01-01,"Industrial Consumption","California","CA",66464 +2015-01-01,"Industrial Consumption","South Carolina","SC",7611 +2015-01-01,"Industrial Consumption","New Hampshire","NH",823 +2015-01-01,"Industrial Consumption","North Carolina","NC",10411 +2015-01-01,"Industrial Consumption","Montana","MT",2182 +2015-01-01,"Industrial Consumption","Louisiana","LA",83743 +2015-01-01,"Industrial Consumption","South Dakota","SD",4025 +2015-01-01,"Industrial Consumption","Maine","ME",2201 +2015-01-01,"Industrial Consumption","Arkansas","AR",8486 +2015-01-01,"Industrial Consumption","Alaska","AK",497 +2015-01-01,"Industrial Consumption","Colorado","CO",8894 +2015-01-01,"Industrial Consumption","Washington","WA",7246 +2015-01-01,"Industrial Consumption","Ohio","OH",31300 +2015-01-01,"Industrial Consumption","Pennsylvania","PA",20905 +2015-01-01,"Industrial Consumption","Nebraska","NE",7930 +2015-01-01,"Industrial Consumption","Minnesota","MN",16822 +2015-01-01,"Industrial Consumption","Connecticut","CT",2978 +2015-01-01,"Industrial Consumption","Indiana","IN",37904 +2015-01-01,"Industrial Consumption","Massachusetts","MA",5830 +2015-01-01,"Industrial Consumption","Nevada","NV",1625 +2015-01-01,"Industrial Consumption","Texas","TX",140247 +2015-01-01,"Industrial Consumption","Idaho","ID",2607 +2015-01-01,"Industrial Consumption","Michigan","MI",20906 +2015-01-01,"Industrial Consumption","Kentucky","KY",12018 +2015-01-01,"Industrial Consumption","Maryland","MD",1584 +2015-01-01,"Industrial Consumption","Oklahoma","OK",17893 +2015-01-01,"Industrial Consumption","U.S.","U.S.",718319 +2015-01-01,"Industrial Consumption","Virginia","VA",7550 +2015-01-01,"Industrial Consumption","Vermont","VT",217 +2015-01-01,"Industrial Consumption","Tennessee","TN",11513 +2015-01-01,"Industrial Consumption","Iowa","IA",17368 +2015-01-01,"Industrial Consumption","Florida","FL",8804 +2015-01-01,"Industrial Consumption","Delaware","DE",2980 +2015-01-01,"Industrial Consumption","Rhode Island","RI",728 +2015-01-01,"Industrial Consumption","District of Columbia","DC",0 +2015-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",132608 +2015-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",78800 +2015-01-01,"Residential Consumption","South Carolina","SC",7182 +2015-01-01,"Residential Consumption","Iowa","IA",13093 +2015-01-01,"Residential Consumption","Virginia","VA",19331 +2015-01-01,"Residential Consumption","Michigan","MI",64293 +2015-01-01,"Residential Consumption","South Dakota","SD",2357 +2015-01-01,"Residential Consumption","Pennsylvania","PA",48403 +2015-01-01,"Residential Consumption","Arkansas","AR",8080 +2015-01-01,"Residential Consumption","Alaska","AK",2743 +2015-01-01,"Residential Consumption","Louisiana","LA",8561 +2015-01-01,"Residential Consumption","Nebraska","NE",7214 +2015-01-01,"Residential Consumption","New Mexico","NM",6249 +2015-01-01,"Residential Consumption","Delaware","DE",2665 +2015-01-01,"Residential Consumption","Texas","TX",53622 +2015-01-01,"Residential Consumption","Ohio","OH",58799 +2015-01-01,"Residential Consumption","Mississippi","MS",5799 +2015-01-01,"Residential Consumption","Wisconsin","WI",25705 +2015-01-01,"Residential Consumption","Florida","FL",2518 +2015-01-01,"Residential Consumption","Massachusetts","MA",26072 +2015-01-01,"Residential Consumption","New York","NY",89006 +2015-01-01,"Residential Consumption","Hawaii","HI",60 +2015-01-01,"Residential Consumption","District of Columbia","DC",3166 +2015-01-01,"Residential Consumption","Maine","ME",526 +2015-01-01,"Residential Consumption","Colorado","CO",21591 +2015-01-01,"Residential Consumption","Washington","WA",11781 +2015-01-01,"Residential Consumption","Missouri","MO",19731 +2015-01-01,"Residential Consumption","Arizona","AZ",7436 +2015-01-01,"Residential Consumption","Alabama","AL",8087 +2015-01-01,"Residential Consumption","Rhode Island","RI",4211 +2015-01-01,"Residential Consumption","Oregon","OR",6219 +2015-01-01,"Residential Consumption","North Carolina","NC",15464 +2015-01-01,"Residential Consumption","Vermont","VT",725 +2015-01-01,"Residential Consumption","Georgia","GA",26214 +2015-01-01,"Residential Consumption","Montana","MT",3317 +2015-01-01,"Residential Consumption","Kentucky","KY",11564 +2015-01-01,"Residential Consumption","California","CA",60216 +2015-01-01,"Residential Consumption","West Virginia","WV",5121 +2015-01-01,"Residential Consumption","U.S.","U.S.",937954 +2015-01-01,"Residential Consumption","Connecticut","CT",10035 +2015-01-01,"Residential Consumption","Nevada","NV",7046 +2015-01-01,"Residential Consumption","Indiana","IN",29303 +2015-01-01,"Residential Consumption","Oklahoma","OK",13215 +2015-01-01,"Residential Consumption","Illinois","IL",82554 +2015-01-01,"Residential Consumption","Utah","UT",10176 +2015-01-01,"Residential Consumption","Minnesota","MN",23468 +2015-01-01,"Residential Consumption","Idaho","ID",4346 +2015-01-01,"Residential Consumption","New Jersey","NJ",47059 +2015-01-01,"Residential Consumption","New Hampshire","NH",1691 +2015-01-01,"Residential Consumption","Wyoming","WY",1966 +2015-01-01,"Residential Consumption","Tennessee","TN",16604 +2015-01-01,"Residential Consumption","Maryland","MD",18521 +2015-01-01,"Residential Consumption","North Dakota","ND",2006 +2015-01-01,"Residential Consumption","Kansas","KS",12843 +2015-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",69 +2015-01-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-01-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-01-01,"Vehicle Fuel Consumption","Utah","UT",28 +2015-01-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2015-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-01-01,"Vehicle Fuel Consumption","Washington","WA",38 +2015-01-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2015-01-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2015-01-01,"Vehicle Fuel Consumption","Ohio","OH",44 +2015-01-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2015-01-01,"Vehicle Fuel Consumption","California","CA",1548 +2015-01-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-01-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-01-01,"Vehicle Fuel Consumption","New York","NY",288 +2015-01-01,"Vehicle Fuel Consumption","Arizona","AZ",187 +2015-01-01,"Vehicle Fuel Consumption","Georgia","GA",136 +2015-01-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",45 +2015-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2015-01-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2015-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-01-01,"Vehicle Fuel Consumption","Alabama","AL",26 +2015-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2015-01-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2015-01-01,"Vehicle Fuel Consumption","Colorado","CO",31 +2015-01-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-01-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2015-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-01-01,"Vehicle Fuel Consumption","Texas","TX",373 +2015-01-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-01-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-01-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-01-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-01-01,"Vehicle Fuel Consumption","Kansas","KS",9 +2015-01-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2015-01-01,"Vehicle Fuel Consumption","Florida","FL",29 +2015-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-01-01,"Vehicle Fuel Consumption","Nebraska","NE",5 +2015-01-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-01-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2015-01-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",3345 +2015-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2015-01-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-02-01,"Commercial Consumption","West Virginia","WV",3870 +2015-02-01,"Commercial Consumption","Washington","WA",5302 +2015-02-01,"Commercial Consumption","Minnesota","MN",17900 +2015-02-01,"Commercial Consumption","Texas","TX",21751 +2015-02-01,"Commercial Consumption","Hawaii","HI",157 +2015-02-01,"Commercial Consumption","Tennessee","TN",10806 +2015-02-01,"Commercial Consumption","Montana","MT",2586 +2015-02-01,"Commercial Consumption","Georgia","GA",10135 +2015-02-01,"Commercial Consumption","Alaska","AK",1992 +2015-02-01,"Commercial Consumption","Alabama","AL",4712 +2015-02-01,"Commercial Consumption","Indiana","IN",15393 +2015-02-01,"Commercial Consumption","Louisiana","LA",3738 +2015-02-01,"Commercial Consumption","Oregon","OR",2770 +2015-02-01,"Commercial Consumption","New Hampshire","NH",1955 +2015-02-01,"Commercial Consumption","Ohio","OH",33326 +2015-02-01,"Commercial Consumption","New York","NY",50726 +2015-02-01,"Commercial Consumption","District of Columbia","DC",2648 +2015-02-01,"Commercial Consumption","Utah","UT",3979 +2015-02-01,"Commercial Consumption","South Dakota","SD",1771 +2015-02-01,"Commercial Consumption","Maine","ME",1665 +2015-02-01,"Commercial Consumption","Idaho","ID",1770 +2015-02-01,"Commercial Consumption","California","CA",19598 +2015-02-01,"Commercial Consumption","South Carolina","SC",3690 +2015-02-01,"Commercial Consumption","Virginia","VA",12727 +2015-02-01,"Commercial Consumption","U.S.","U.S.",517341 +2015-02-01,"Commercial Consumption","Iowa","IA",9104 +2015-02-01,"Commercial Consumption","Nebraska","NE",4904 +2015-02-01,"Commercial Consumption","Arizona","AZ",3083 +2015-02-01,"Commercial Consumption","Michigan","MI",31717 +2015-02-01,"Commercial Consumption","North Carolina","NC",10110 +2015-02-01,"Commercial Consumption","Colorado","CO",7064 +2015-02-01,"Commercial Consumption","Missouri","MO",11594 +2015-02-01,"Commercial Consumption","Wisconsin","WI",16777 +2015-02-01,"Commercial Consumption","Kentucky","KY",7562 +2015-02-01,"Commercial Consumption","Mississippi","MS",3007 +2015-02-01,"Commercial Consumption","Wyoming","WY",1603 +2015-02-01,"Commercial Consumption","New Mexico","NM",3063 +2015-02-01,"Commercial Consumption","Oklahoma","OK",7445 +2015-02-01,"Commercial Consumption","Pennsylvania","PA",29768 +2015-02-01,"Commercial Consumption","Maryland","MD",11814 +2015-02-01,"Commercial Consumption","Florida","FL",6078 +2015-02-01,"Commercial Consumption","Vermont","VT",810 +2015-02-01,"Commercial Consumption","Rhode Island","RI",2477 +2015-02-01,"Commercial Consumption","Arkansas","AR",7068 +2015-02-01,"Commercial Consumption","Delaware","DE",2097 +2015-02-01,"Commercial Consumption","Nevada","NV",2902 +2015-02-01,"Commercial Consumption","Illinois","IL",39507 +2015-02-01,"Commercial Consumption","North Dakota","ND",2229 +2015-02-01,"Commercial Consumption","Massachusetts","MA",18213 +2015-02-01,"Commercial Consumption","New Jersey","NJ",28279 +2015-02-01,"Commercial Consumption","Kansas","KS",5825 +2015-02-01,"Commercial Consumption","Connecticut","CT",8272 +2015-02-01,"Delivered to Consumers","U.S.","U.S.",2730693 +2015-02-01,"Delivered to Consumers","Wyoming","WY",6818 +2015-02-01,"Delivered to Consumers","West Virginia","WV",12611 +2015-02-01,"Delivered to Consumers","Rhode Island","RI",9167 +2015-02-01,"Delivered to Consumers","Maryland","MD",33570 +2015-02-01,"Delivered to Consumers","Alaska","AK",7753 +2015-02-01,"Delivered to Consumers","Virginia","VA",58062 +2015-02-01,"Delivered to Consumers","Pennsylvania","PA",128927 +2015-02-01,"Delivered to Consumers","Mississippi","MS",48835 +2015-02-01,"Delivered to Consumers","Colorado","CO",37360 +2015-02-01,"Delivered to Consumers","California","CA",165799 +2015-02-01,"Delivered to Consumers","New Hampshire","NH",6673 +2015-02-01,"Delivered to Consumers","Minnesota","MN",60511 +2015-02-01,"Delivered to Consumers","Delaware","DE",8576 +2015-02-01,"Delivered to Consumers","North Carolina","NC",56908 +2015-02-01,"Delivered to Consumers","Florida","FL",90983 +2015-02-01,"Delivered to Consumers","South Dakota","SD",8383 +2015-02-01,"Delivered to Consumers","Iowa","IA",40491 +2015-02-01,"Delivered to Consumers","Alabama","AL",60953 +2015-02-01,"Delivered to Consumers","Utah","UT",17202 +2015-02-01,"Delivered to Consumers","Illinois","IL",158444 +2015-02-01,"Delivered to Consumers","Michigan","MI",133779 +2015-02-01,"Delivered to Consumers","Wisconsin","WI",68372 +2015-02-01,"Delivered to Consumers","Nebraska","NE",19657 +2015-02-01,"Delivered to Consumers","Missouri","MO",42310 +2015-02-01,"Delivered to Consumers","Maine","ME",5345 +2015-02-01,"Delivered to Consumers","Washington","WA",21525 +2015-02-01,"Delivered to Consumers","New Mexico","NM",15205 +2015-02-01,"Delivered to Consumers","Vermont","VT",1748 +2015-02-01,"Delivered to Consumers","Kansas","KS",29406 +2015-02-01,"Delivered to Consumers","Kentucky","KY",36558 +2015-02-01,"Delivered to Consumers","Louisiana","LA",108488 +2015-02-01,"Delivered to Consumers","Idaho","ID",7453 +2015-02-01,"Delivered to Consumers","New Jersey","NJ",101480 +2015-02-01,"Delivered to Consumers","District of Columbia","DC",5596 +2015-02-01,"Delivered to Consumers","Oklahoma","OK",56194 +2015-02-01,"Delivered to Consumers","Ohio","OH",144778 +2015-02-01,"Delivered to Consumers","Georgia","GA",76170 +2015-02-01,"Delivered to Consumers","Arizona","AZ",17872 +2015-02-01,"Delivered to Consumers","North Dakota","ND",7547 +2015-02-01,"Delivered to Consumers","Indiana","IN",96065 +2015-02-01,"Delivered to Consumers","New York","NY",180721 +2015-02-01,"Delivered to Consumers","Montana","MT",7852 +2015-02-01,"Delivered to Consumers","Hawaii","HI",237 +2015-02-01,"Delivered to Consumers","Tennessee","TN",47266 +2015-02-01,"Delivered to Consumers","Connecticut","CT",28813 +2015-02-01,"Delivered to Consumers","Arkansas","AR",35279 +2015-02-01,"Delivered to Consumers","Massachusetts","MA",56909 +2015-02-01,"Delivered to Consumers","Texas","TX",297837 +2015-02-01,"Delivered to Consumers","South Carolina","SC",24316 +2015-02-01,"Delivered to Consumers","Oregon","OR",15831 +2015-02-01,"Delivered to Consumers","Nevada","NV",22056 +2015-02-01,"Electric Power Consumption","Virginia","VA",17648 +2015-02-01,"Electric Power Consumption","New Mexico","NM",5592 +2015-02-01,"Electric Power Consumption","Idaho","ID",414 +2015-02-01,"Electric Power Consumption","South Carolina","SC",7181 +2015-02-01,"Electric Power Consumption","Rhode Island","RI",1702 +2015-02-01,"Electric Power Consumption","Wyoming","WY",23 +2015-02-01,"Electric Power Consumption","U.S.","U.S.",648343 +2015-02-01,"Electric Power Consumption","Nebraska","NE",63 +2015-02-01,"Electric Power Consumption","Maine","ME",1308 +2015-02-01,"Electric Power Consumption","Oregon","OR",4342 +2015-02-01,"Electric Power Consumption","Minnesota","MN",3452 +2015-02-01,"Electric Power Consumption","West Virginia","WV",430 +2015-02-01,"Electric Power Consumption","Nevada","NV",13405 +2015-02-01,"Electric Power Consumption","Hawaii","HI",NA +2015-02-01,"Electric Power Consumption","New Hampshire","NH",2236 +2015-02-01,"Electric Power Consumption","Arizona","AZ",8648 +2015-02-01,"Electric Power Consumption","Colorado","CO",5779 +2015-02-01,"Electric Power Consumption","Utah","UT",3267 +2015-02-01,"Electric Power Consumption","Kansas","KS",936 +2015-02-01,"Electric Power Consumption","Iowa","IA",1265 +2015-02-01,"Electric Power Consumption","Mississippi","MS",30586 +2015-02-01,"Electric Power Consumption","Connecticut","CT",7533 +2015-02-01,"Electric Power Consumption","Georgia","GA",25998 +2015-02-01,"Electric Power Consumption","Michigan","MI",14499 +2015-02-01,"Electric Power Consumption","Missouri","MO",2927 +2015-02-01,"Electric Power Consumption","Kentucky","KY",5530 +2015-02-01,"Electric Power Consumption","Ohio","OH",19404 +2015-02-01,"Electric Power Consumption","Montana","MT",784 +2015-02-01,"Electric Power Consumption","Delaware","DE",1451 +2015-02-01,"Electric Power Consumption","Florida","FL",73961 +2015-02-01,"Electric Power Consumption","Washington","WA",1860 +2015-02-01,"Electric Power Consumption","Louisiana","LA",22220 +2015-02-01,"Electric Power Consumption","Texas","TX",113522 +2015-02-01,"Electric Power Consumption","Oklahoma","OK",20714 +2015-02-01,"Electric Power Consumption","Massachusetts","MA",6206 +2015-02-01,"Electric Power Consumption","Wisconsin","WI",8744 +2015-02-01,"Electric Power Consumption","Vermont","VT",2 +2015-02-01,"Electric Power Consumption","South Dakota","SD",484 +2015-02-01,"Electric Power Consumption","North Carolina","NC",20049 +2015-02-01,"Electric Power Consumption","Tennessee","TN",6909 +2015-02-01,"Electric Power Consumption","Alabama","AL",31360 +2015-02-01,"Electric Power Consumption","Alaska","AK",3099 +2015-02-01,"Electric Power Consumption","New Jersey","NJ",17073 +2015-02-01,"Electric Power Consumption","New York","NY",29201 +2015-02-01,"Electric Power Consumption","Maryland","MD",1245 +2015-02-01,"Electric Power Consumption","Indiana","IN",13696 +2015-02-01,"Electric Power Consumption","California","CA",46537 +2015-02-01,"Electric Power Consumption","Arkansas","AR",12428 +2015-02-01,"Electric Power Consumption","Illinois","IL",5582 +2015-02-01,"Electric Power Consumption","Pennsylvania","PA",26471 +2015-02-01,"Electric Power Consumption","North Dakota","ND",576 +2015-02-01,"Industrial Consumption","West Virginia","WV",2669 +2015-02-01,"Industrial Consumption","Vermont","VT",176 +2015-02-01,"Industrial Consumption","Idaho","ID",2558 +2015-02-01,"Industrial Consumption","Illinois","IL",27785 +2015-02-01,"Industrial Consumption","Alaska","AK",450 +2015-02-01,"Industrial Consumption","Oregon","OR",4538 +2015-02-01,"Industrial Consumption","Maine","ME",1843 +2015-02-01,"Industrial Consumption","Virginia","VA",6805 +2015-02-01,"Industrial Consumption","New Jersey","NJ",5557 +2015-02-01,"Industrial Consumption","Michigan","MI",19139 +2015-02-01,"Industrial Consumption","Indiana","IN",37319 +2015-02-01,"Industrial Consumption","Maryland","MD",1353 +2015-02-01,"Industrial Consumption","Massachusetts","MA",6187 +2015-02-01,"Industrial Consumption","U.S.","U.S.",659623 +2015-02-01,"Industrial Consumption","Alabama","AL",16306 +2015-02-01,"Industrial Consumption","South Carolina","SC",6119 +2015-02-01,"Industrial Consumption","Montana","MT",1862 +2015-02-01,"Industrial Consumption","Wyoming","WY",3733 +2015-02-01,"Industrial Consumption","Minnesota","MN",15370 +2015-02-01,"Industrial Consumption","Ohio","OH",30802 +2015-02-01,"Industrial Consumption","Pennsylvania","PA",20789 +2015-02-01,"Industrial Consumption","California","CA",57364 +2015-02-01,"Industrial Consumption","Arkansas","AR",8062 +2015-02-01,"Industrial Consumption","District of Columbia","DC",0 +2015-02-01,"Industrial Consumption","Missouri","MO",7055 +2015-02-01,"Industrial Consumption","Washington","WA",6249 +2015-02-01,"Industrial Consumption","New Mexico","NM",1523 +2015-02-01,"Industrial Consumption","Kansas","KS",11071 +2015-02-01,"Industrial Consumption","Arizona","AZ",1695 +2015-02-01,"Industrial Consumption","Texas","TX",125336 +2015-02-01,"Industrial Consumption","Nebraska","NE",7715 +2015-02-01,"Industrial Consumption","Iowa","IA",16578 +2015-02-01,"Industrial Consumption","North Carolina","NC",9375 +2015-02-01,"Industrial Consumption","North Dakota","ND",2687 +2015-02-01,"Industrial Consumption","Louisiana","LA",74946 +2015-02-01,"Industrial Consumption","New York","NY",9427 +2015-02-01,"Industrial Consumption","Nevada","NV",1376 +2015-02-01,"Industrial Consumption","Mississippi","MS",10327 +2015-02-01,"Industrial Consumption","New Hampshire","NH",812 +2015-02-01,"Industrial Consumption","Florida","FL",8416 +2015-02-01,"Industrial Consumption","Kentucky","KY",11433 +2015-02-01,"Industrial Consumption","Hawaii","HI",28 +2015-02-01,"Industrial Consumption","Oklahoma","OK",15206 +2015-02-01,"Industrial Consumption","Colorado","CO",8041 +2015-02-01,"Industrial Consumption","South Dakota","SD",3967 +2015-02-01,"Industrial Consumption","Utah","UT",3483 +2015-02-01,"Industrial Consumption","Wisconsin","WI",15341 +2015-02-01,"Industrial Consumption","Tennessee","TN",11510 +2015-02-01,"Industrial Consumption","Connecticut","CT",2728 +2015-02-01,"Industrial Consumption","Delaware","DE",2494 +2015-02-01,"Industrial Consumption","Rhode Island","RI",826 +2015-02-01,"Industrial Consumption","Georgia","GA",13192 +2015-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",120370 +2015-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",74108 +2015-02-01,"Residential Consumption","Rhode Island","RI",4154 +2015-02-01,"Residential Consumption","Georgia","GA",26723 +2015-02-01,"Residential Consumption","Washington","WA",8079 +2015-02-01,"Residential Consumption","Alaska","AK",2212 +2015-02-01,"Residential Consumption","Ohio","OH",61207 +2015-02-01,"Residential Consumption","Vermont","VT",760 +2015-02-01,"Residential Consumption","Maryland","MD",19141 +2015-02-01,"Residential Consumption","South Dakota","SD",2162 +2015-02-01,"Residential Consumption","Idaho","ID",2701 +2015-02-01,"Residential Consumption","Kansas","KS",11566 +2015-02-01,"Residential Consumption","Missouri","MO",20729 +2015-02-01,"Residential Consumption","New York","NY",91107 +2015-02-01,"Residential Consumption","South Carolina","SC",7323 +2015-02-01,"Residential Consumption","Louisiana","LA",7572 +2015-02-01,"Residential Consumption","Minnesota","MN",23784 +2015-02-01,"Residential Consumption","Indiana","IN",29649 +2015-02-01,"Residential Consumption","Florida","FL",2502 +2015-02-01,"Residential Consumption","Arkansas","AR",7718 +2015-02-01,"Residential Consumption","Kentucky","KY",12025 +2015-02-01,"Residential Consumption","Arizona","AZ",4276 +2015-02-01,"Residential Consumption","North Carolina","NC",17363 +2015-02-01,"Residential Consumption","Mississippi","MS",4909 +2015-02-01,"Residential Consumption","Connecticut","CT",10279 +2015-02-01,"Residential Consumption","Wisconsin","WI",27502 +2015-02-01,"Residential Consumption","Michigan","MI",68402 +2015-02-01,"Residential Consumption","District of Columbia","DC",2886 +2015-02-01,"Residential Consumption","Hawaii","HI",52 +2015-02-01,"Residential Consumption","Virginia","VA",20861 +2015-02-01,"Residential Consumption","Utah","UT",6449 +2015-02-01,"Residential Consumption","Nebraska","NE",6971 +2015-02-01,"Residential Consumption","Pennsylvania","PA",51857 +2015-02-01,"Residential Consumption","Maine","ME",529 +2015-02-01,"Residential Consumption","North Dakota","ND",2055 +2015-02-01,"Residential Consumption","New Jersey","NJ",50550 +2015-02-01,"Residential Consumption","New Hampshire","NH",1665 +2015-02-01,"Residential Consumption","Colorado","CO",16449 +2015-02-01,"Residential Consumption","Delaware","DE",2533 +2015-02-01,"Residential Consumption","California","CA",40902 +2015-02-01,"Residential Consumption","Alabama","AL",8552 +2015-02-01,"Residential Consumption","Wyoming","WY",1457 +2015-02-01,"Residential Consumption","U.S.","U.S.",902364 +2015-02-01,"Residential Consumption","Texas","TX",36891 +2015-02-01,"Residential Consumption","Iowa","IA",13542 +2015-02-01,"Residential Consumption","New Mexico","NM",5014 +2015-02-01,"Residential Consumption","Massachusetts","MA",26240 +2015-02-01,"Residential Consumption","Oregon","OR",4166 +2015-02-01,"Residential Consumption","Tennessee","TN",18022 +2015-02-01,"Residential Consumption","Nevada","NV",4287 +2015-02-01,"Residential Consumption","Oklahoma","OK",12794 +2015-02-01,"Residential Consumption","Montana","MT",2620 +2015-02-01,"Residential Consumption","West Virginia","WV",5640 +2015-02-01,"Residential Consumption","Illinois","IL",85540 +2015-02-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-02-01,"Vehicle Fuel Consumption","Arizona","AZ",169 +2015-02-01,"Vehicle Fuel Consumption","Alabama","AL",23 +2015-02-01,"Vehicle Fuel Consumption","Texas","TX",337 +2015-02-01,"Vehicle Fuel Consumption","North Carolina","NC",11 +2015-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-02-01,"Vehicle Fuel Consumption","Ohio","OH",40 +2015-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",35 +2015-02-01,"Vehicle Fuel Consumption","Missouri","MO",5 +2015-02-01,"Vehicle Fuel Consumption","California","CA",1398 +2015-02-01,"Vehicle Fuel Consumption","Washington","WA",34 +2015-02-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",9 +2015-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",41 +2015-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-02-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-02-01,"Vehicle Fuel Consumption","Arkansas","AR",2 +2015-02-01,"Vehicle Fuel Consumption","Kansas","KS",8 +2015-02-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2015-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",21 +2015-02-01,"Vehicle Fuel Consumption","Minnesota","MN",5 +2015-02-01,"Vehicle Fuel Consumption","Georgia","GA",123 +2015-02-01,"Vehicle Fuel Consumption","New Mexico","NM",13 +2015-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2015-02-01,"Vehicle Fuel Consumption","Mississippi","MS",5 +2015-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",3022 +2015-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-02-01,"Vehicle Fuel Consumption","Utah","UT",25 +2015-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",62 +2015-02-01,"Vehicle Fuel Consumption","Oregon","OR",16 +2015-02-01,"Vehicle Fuel Consumption","Illinois","IL",30 +2015-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-02-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-02-01,"Vehicle Fuel Consumption","Tennessee","TN",20 +2015-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-02-01,"Vehicle Fuel Consumption","Florida","FL",26 +2015-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",62 +2015-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2015-02-01,"Vehicle Fuel Consumption","Maryland","MD",17 +2015-02-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-02-01,"Vehicle Fuel Consumption","Virginia","VA",21 +2015-02-01,"Vehicle Fuel Consumption","New York","NY",260 +2015-02-01,"Vehicle Fuel Consumption","Nevada","NV",86 +2015-02-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-02-01,"Vehicle Fuel Consumption","Louisiana","LA",13 +2015-02-01,"Vehicle Fuel Consumption","Indiana","IN",7 +2015-02-01,"Vehicle Fuel Consumption","Michigan","MI",23 +2015-02-01,"Vehicle Fuel Consumption","Colorado","CO",28 +2015-02-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-02-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2015-03-01,"Commercial Consumption","Wisconsin","WI",11827 +2015-03-01,"Commercial Consumption","Idaho","ID",1477 +2015-03-01,"Commercial Consumption","Louisiana","LA",2553 +2015-03-01,"Commercial Consumption","District of Columbia","DC",2184 +2015-03-01,"Commercial Consumption","Wyoming","WY",1196 +2015-03-01,"Commercial Consumption","Kentucky","KY",4345 +2015-03-01,"Commercial Consumption","Kansas","KS",3805 +2015-03-01,"Commercial Consumption","Alabama","AL",2148 +2015-03-01,"Commercial Consumption","Pennsylvania","PA",21190 +2015-03-01,"Commercial Consumption","South Dakota","SD",1103 +2015-03-01,"Commercial Consumption","Florida","FL",5402 +2015-03-01,"Commercial Consumption","Hawaii","HI",165 +2015-03-01,"Commercial Consumption","South Carolina","SC",2153 +2015-03-01,"Commercial Consumption","Minnesota","MN",11399 +2015-03-01,"Commercial Consumption","Virginia","VA",8607 +2015-03-01,"Commercial Consumption","Massachusetts","MA",14506 +2015-03-01,"Commercial Consumption","Texas","TX",20419 +2015-03-01,"Commercial Consumption","Vermont","VT",675 +2015-03-01,"Commercial Consumption","Michigan","MI",23965 +2015-03-01,"Commercial Consumption","West Virginia","WV",3181 +2015-03-01,"Commercial Consumption","Washington","WA",4776 +2015-03-01,"Commercial Consumption","Colorado","CO",5455 +2015-03-01,"Commercial Consumption","New Mexico","NM",2093 +2015-03-01,"Commercial Consumption","U.S.","U.S.",385772 +2015-03-01,"Commercial Consumption","Rhode Island","RI",1949 +2015-03-01,"Commercial Consumption","Ohio","OH",24200 +2015-03-01,"Commercial Consumption","Connecticut","CT",7321 +2015-03-01,"Commercial Consumption","California","CA",18893 +2015-03-01,"Commercial Consumption","Nebraska","NE",3127 +2015-03-01,"Commercial Consumption","Delaware","DE",1504 +2015-03-01,"Commercial Consumption","Indiana","IN",9954 +2015-03-01,"Commercial Consumption","North Dakota","ND",1491 +2015-03-01,"Commercial Consumption","Missouri","MO",8620 +2015-03-01,"Commercial Consumption","Mississippi","MS",2148 +2015-03-01,"Commercial Consumption","Illinois","IL",27346 +2015-03-01,"Commercial Consumption","Utah","UT",3004 +2015-03-01,"Commercial Consumption","Oregon","OR",2373 +2015-03-01,"Commercial Consumption","Oklahoma","OK",4768 +2015-03-01,"Commercial Consumption","Montana","MT",2060 +2015-03-01,"Commercial Consumption","Maine","ME",1405 +2015-03-01,"Commercial Consumption","Georgia","GA",5480 +2015-03-01,"Commercial Consumption","Iowa","IA",5800 +2015-03-01,"Commercial Consumption","Alaska","AK",2268 +2015-03-01,"Commercial Consumption","Arkansas","AR",5328 +2015-03-01,"Commercial Consumption","North Carolina","NC",5408 +2015-03-01,"Commercial Consumption","New Jersey","NJ",22572 +2015-03-01,"Commercial Consumption","New Hampshire","NH",1455 +2015-03-01,"Commercial Consumption","Maryland","MD",9783 +2015-03-01,"Commercial Consumption","New York","NY",41824 +2015-03-01,"Commercial Consumption","Arizona","AZ",2786 +2015-03-01,"Commercial Consumption","Tennessee","TN",5638 +2015-03-01,"Commercial Consumption","Nevada","NV",2642 +2015-03-01,"Delivered to Consumers","Oklahoma","OK",46515 +2015-03-01,"Delivered to Consumers","Kentucky","KY",25999 +2015-03-01,"Delivered to Consumers","Connecticut","CT",27426 +2015-03-01,"Delivered to Consumers","Arkansas","AR",28737 +2015-03-01,"Delivered to Consumers","Nebraska","NE",13898 +2015-03-01,"Delivered to Consumers","Colorado","CO",31835 +2015-03-01,"Delivered to Consumers","South Carolina","SC",21614 +2015-03-01,"Delivered to Consumers","Maine","ME",5879 +2015-03-01,"Delivered to Consumers","Louisiana","LA",107330 +2015-03-01,"Delivered to Consumers","West Virginia","WV",10777 +2015-03-01,"Delivered to Consumers","New York","NY",165966 +2015-03-01,"Delivered to Consumers","Kansas","KS",21436 +2015-03-01,"Delivered to Consumers","Missouri","MO",33837 +2015-03-01,"Delivered to Consumers","New Hampshire","NH",6981 +2015-03-01,"Delivered to Consumers","Wyoming","WY",6520 +2015-03-01,"Delivered to Consumers","Montana","MT",6990 +2015-03-01,"Delivered to Consumers","Maryland","MD",25471 +2015-03-01,"Delivered to Consumers","Michigan","MI",98500 +2015-03-01,"Delivered to Consumers","Iowa","IA",30483 +2015-03-01,"Delivered to Consumers","Massachusetts","MA",48538 +2015-03-01,"Delivered to Consumers","Indiana","IN",77653 +2015-03-01,"Delivered to Consumers","South Dakota","SD",6249 +2015-03-01,"Delivered to Consumers","Idaho","ID",6953 +2015-03-01,"Delivered to Consumers","California","CA",168835 +2015-03-01,"Delivered to Consumers","Texas","TX",315617 +2015-03-01,"Delivered to Consumers","North Dakota","ND",5980 +2015-03-01,"Delivered to Consumers","Utah","UT",14704 +2015-03-01,"Delivered to Consumers","Delaware","DE",8898 +2015-03-01,"Delivered to Consumers","Vermont","VT",1493 +2015-03-01,"Delivered to Consumers","Tennessee","TN",29718 +2015-03-01,"Delivered to Consumers","Virginia","VA",47104 +2015-03-01,"Delivered to Consumers","Pennsylvania","PA",115060 +2015-03-01,"Delivered to Consumers","Mississippi","MS",41983 +2015-03-01,"Delivered to Consumers","New Mexico","NM",13473 +2015-03-01,"Delivered to Consumers","Illinois","IL",112156 +2015-03-01,"Delivered to Consumers","Alabama","AL",52388 +2015-03-01,"Delivered to Consumers","Wisconsin","WI",50434 +2015-03-01,"Delivered to Consumers","Georgia","GA",57083 +2015-03-01,"Delivered to Consumers","District of Columbia","DC",4299 +2015-03-01,"Delivered to Consumers","New Jersey","NJ",91613 +2015-03-01,"Delivered to Consumers","Arizona","AZ",17365 +2015-03-01,"Delivered to Consumers","Washington","WA",23430 +2015-03-01,"Delivered to Consumers","Florida","FL",101420 +2015-03-01,"Delivered to Consumers","U.S.","U.S.",2392542 +2015-03-01,"Delivered to Consumers","Rhode Island","RI",9183 +2015-03-01,"Delivered to Consumers","Hawaii","HI",252 +2015-03-01,"Delivered to Consumers","Alaska","AK",7926 +2015-03-01,"Delivered to Consumers","Ohio","OH",120107 +2015-03-01,"Delivered to Consumers","North Carolina","NC",41790 +2015-03-01,"Delivered to Consumers","Oregon","OR",16876 +2015-03-01,"Delivered to Consumers","Nevada","NV",21303 +2015-03-01,"Delivered to Consumers","Minnesota","MN",46463 +2015-03-01,"Electric Power Consumption","Washington","WA",4517 +2015-03-01,"Electric Power Consumption","New Mexico","NM",6301 +2015-03-01,"Electric Power Consumption","Louisiana","LA",23542 +2015-03-01,"Electric Power Consumption","South Carolina","SC",8512 +2015-03-01,"Electric Power Consumption","Wisconsin","WI",8767 +2015-03-01,"Electric Power Consumption","Connecticut","CT",8418 +2015-03-01,"Electric Power Consumption","Idaho","ID",842 +2015-03-01,"Electric Power Consumption","Texas","TX",127251 +2015-03-01,"Electric Power Consumption","Tennessee","TN",4220 +2015-03-01,"Electric Power Consumption","Missouri","MO",2699 +2015-03-01,"Electric Power Consumption","Maine","ME",1884 +2015-03-01,"Electric Power Consumption","Montana","MT",1180 +2015-03-01,"Electric Power Consumption","Alabama","AL",30383 +2015-03-01,"Electric Power Consumption","Utah","UT",3409 +2015-03-01,"Electric Power Consumption","Oregon","OR",6250 +2015-03-01,"Electric Power Consumption","Nevada","NV",13635 +2015-03-01,"Electric Power Consumption","Nebraska","NE",152 +2015-03-01,"Electric Power Consumption","New Hampshire","NH",3393 +2015-03-01,"Electric Power Consumption","Arizona","AZ",9360 +2015-03-01,"Electric Power Consumption","Virginia","VA",18274 +2015-03-01,"Electric Power Consumption","Rhode Island","RI",3170 +2015-03-01,"Electric Power Consumption","Oklahoma","OK",18835 +2015-03-01,"Electric Power Consumption","U.S.","U.S.",708731 +2015-03-01,"Electric Power Consumption","North Carolina","NC",19126 +2015-03-01,"Electric Power Consumption","Kentucky","KY",3111 +2015-03-01,"Electric Power Consumption","Maryland","MD",1351 +2015-03-01,"Electric Power Consumption","Alaska","AK",3044 +2015-03-01,"Electric Power Consumption","Massachusetts","MA",7657 +2015-03-01,"Electric Power Consumption","Pennsylvania","PA",34602 +2015-03-01,"Electric Power Consumption","Iowa","IA",1235 +2015-03-01,"Electric Power Consumption","South Dakota","SD",66 +2015-03-01,"Electric Power Consumption","Indiana","IN",13117 +2015-03-01,"Electric Power Consumption","Minnesota","MN",4629 +2015-03-01,"Electric Power Consumption","Michigan","MI",14332 +2015-03-01,"Electric Power Consumption","New Jersey","NJ",22460 +2015-03-01,"Electric Power Consumption","Colorado","CO",6344 +2015-03-01,"Electric Power Consumption","Kansas","KS",1100 +2015-03-01,"Electric Power Consumption","West Virginia","WV",358 +2015-03-01,"Electric Power Consumption","Delaware","DE",2146 +2015-03-01,"Electric Power Consumption","California","CA",54168 +2015-03-01,"Electric Power Consumption","Arkansas","AR",10639 +2015-03-01,"Electric Power Consumption","New York","NY",39614 +2015-03-01,"Electric Power Consumption","Illinois","IL",5834 +2015-03-01,"Electric Power Consumption","Wyoming","WY",53 +2015-03-01,"Electric Power Consumption","Vermont","VT",1 +2015-03-01,"Electric Power Consumption","Mississippi","MS",26789 +2015-03-01,"Electric Power Consumption","Hawaii","HI",NA +2015-03-01,"Electric Power Consumption","Ohio","OH",19926 +2015-03-01,"Electric Power Consumption","North Dakota","ND",270 +2015-03-01,"Electric Power Consumption","Georgia","GA",25734 +2015-03-01,"Electric Power Consumption","Florida","FL",86030 +2015-03-01,"Industrial Consumption","South Dakota","SD",3722 +2015-03-01,"Industrial Consumption","Utah","UT",3152 +2015-03-01,"Industrial Consumption","Virginia","VA",6605 +2015-03-01,"Industrial Consumption","Vermont","VT",207 +2015-03-01,"Industrial Consumption","Connecticut","CT",2936 +2015-03-01,"Industrial Consumption","Indiana","IN",36014 +2015-03-01,"Industrial Consumption","Delaware","DE",3171 +2015-03-01,"Industrial Consumption","Georgia","GA",13537 +2015-03-01,"Industrial Consumption","Maryland","MD",1351 +2015-03-01,"Industrial Consumption","Hawaii","HI",37 +2015-03-01,"Industrial Consumption","Florida","FL",8562 +2015-03-01,"Industrial Consumption","Michigan","MI",17712 +2015-03-01,"Industrial Consumption","Ohio","OH",28217 +2015-03-01,"Industrial Consumption","Arizona","AZ",1831 +2015-03-01,"Industrial Consumption","Pennsylvania","PA",21257 +2015-03-01,"Industrial Consumption","Nevada","NV",1546 +2015-03-01,"Industrial Consumption","South Carolina","SC",7647 +2015-03-01,"Industrial Consumption","West Virginia","WV",2672 +2015-03-01,"Industrial Consumption","North Dakota","ND",2940 +2015-03-01,"Industrial Consumption","Montana","MT",1791 +2015-03-01,"Industrial Consumption","Missouri","MO",6733 +2015-03-01,"Industrial Consumption","Tennessee","TN",10717 +2015-03-01,"Industrial Consumption","Kentucky","KY",11455 +2015-03-01,"Industrial Consumption","District of Columbia","DC",0 +2015-03-01,"Industrial Consumption","Oregon","OR",4710 +2015-03-01,"Industrial Consumption","Alabama","AL",15969 +2015-03-01,"Industrial Consumption","New Jersey","NJ",5316 +2015-03-01,"Industrial Consumption","New Hampshire","NH",930 +2015-03-01,"Industrial Consumption","Illinois","IL",24665 +2015-03-01,"Industrial Consumption","Alaska","AK",439 +2015-03-01,"Industrial Consumption","Oklahoma","OK",15918 +2015-03-01,"Industrial Consumption","Colorado","CO",7135 +2015-03-01,"Industrial Consumption","New Mexico","NM",1643 +2015-03-01,"Industrial Consumption","Maine","ME",2186 +2015-03-01,"Industrial Consumption","California","CA",62086 +2015-03-01,"Industrial Consumption","Wyoming","WY",4092 +2015-03-01,"Industrial Consumption","Wisconsin","WI",13617 +2015-03-01,"Industrial Consumption","Idaho","ID",2419 +2015-03-01,"Industrial Consumption","North Carolina","NC",9856 +2015-03-01,"Industrial Consumption","Washington","WA",6874 +2015-03-01,"Industrial Consumption","Kansas","KS",9199 +2015-03-01,"Industrial Consumption","U.S.","U.S.",661612 +2015-03-01,"Industrial Consumption","New York","NY",9509 +2015-03-01,"Industrial Consumption","Arkansas","AR",7921 +2015-03-01,"Industrial Consumption","Nebraska","NE",6395 +2015-03-01,"Industrial Consumption","Minnesota","MN",15419 +2015-03-01,"Industrial Consumption","Massachusetts","MA",5321 +2015-03-01,"Industrial Consumption","Louisiana","LA",76884 +2015-03-01,"Industrial Consumption","Mississippi","MS",9983 +2015-03-01,"Industrial Consumption","Texas","TX",133061 +2015-03-01,"Industrial Consumption","Iowa","IA",15493 +2015-03-01,"Industrial Consumption","Rhode Island","RI",760 +2015-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",133856 +2015-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",64931 +2015-03-01,"Residential Consumption","Rhode Island","RI",3296 +2015-03-01,"Residential Consumption","Ohio","OH",47720 +2015-03-01,"Residential Consumption","Mississippi","MS",3058 +2015-03-01,"Residential Consumption","Hawaii","HI",51 +2015-03-01,"Residential Consumption","Wisconsin","WI",16213 +2015-03-01,"Residential Consumption","Virginia","VA",13596 +2015-03-01,"Residential Consumption","Michigan","MI",42465 +2015-03-01,"Residential Consumption","North Dakota","ND",1277 +2015-03-01,"Residential Consumption","Washington","WA",7225 +2015-03-01,"Residential Consumption","West Virginia","WV",4563 +2015-03-01,"Residential Consumption","Louisiana","LA",4337 +2015-03-01,"Residential Consumption","Maryland","MD",12967 +2015-03-01,"Residential Consumption","Massachusetts","MA",20986 +2015-03-01,"Residential Consumption","Arkansas","AR",4846 +2015-03-01,"Residential Consumption","New Jersey","NJ",41241 +2015-03-01,"Residential Consumption","Colorado","CO",12871 +2015-03-01,"Residential Consumption","Arizona","AZ",3201 +2015-03-01,"Residential Consumption","Utah","UT",5112 +2015-03-01,"Residential Consumption","Nevada","NV",3384 +2015-03-01,"Residential Consumption","Georgia","GA",12196 +2015-03-01,"Residential Consumption","Maine","ME",404 +2015-03-01,"Residential Consumption","Montana","MT",1959 +2015-03-01,"Residential Consumption","Delaware","DE",2076 +2015-03-01,"Residential Consumption","California","CA",32140 +2015-03-01,"Residential Consumption","Vermont","VT",610 +2015-03-01,"Residential Consumption","Florida","FL",1397 +2015-03-01,"Residential Consumption","New Hampshire","NH",1197 +2015-03-01,"Residential Consumption","Kansas","KS",7324 +2015-03-01,"Residential Consumption","Oregon","OR",3525 +2015-03-01,"Residential Consumption","South Dakota","SD",1358 +2015-03-01,"Residential Consumption","Pennsylvania","PA",37965 +2015-03-01,"Residential Consumption","New Mexico","NM",3422 +2015-03-01,"Residential Consumption","Kentucky","KY",7078 +2015-03-01,"Residential Consumption","Illinois","IL",54278 +2015-03-01,"Residential Consumption","Iowa","IA",7952 +2015-03-01,"Residential Consumption","U.S.","U.S.",633081 +2015-03-01,"Residential Consumption","Texas","TX",34514 +2015-03-01,"Residential Consumption","Connecticut","CT",8749 +2015-03-01,"Residential Consumption","Tennessee","TN",9122 +2015-03-01,"Residential Consumption","Indiana","IN",18560 +2015-03-01,"Residential Consumption","Oklahoma","OK",6955 +2015-03-01,"Residential Consumption","Missouri","MO",15779 +2015-03-01,"Residential Consumption","Alaska","AK",2174 +2015-03-01,"Residential Consumption","Wyoming","WY",1177 +2015-03-01,"Residential Consumption","South Carolina","SC",3299 +2015-03-01,"Residential Consumption","North Carolina","NC",7387 +2015-03-01,"Residential Consumption","Nebraska","NE",4219 +2015-03-01,"Residential Consumption","Minnesota","MN",15011 +2015-03-01,"Residential Consumption","District of Columbia","DC",2046 +2015-03-01,"Residential Consumption","Idaho","ID",2203 +2015-03-01,"Residential Consumption","Alabama","AL",3863 +2015-03-01,"Residential Consumption","New York","NY",74731 +2015-03-01,"Vehicle Fuel Consumption","Washington","WA",38 +2015-03-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2015-03-01,"Vehicle Fuel Consumption","Arizona","AZ",187 +2015-03-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-03-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-03-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2015-03-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2015-03-01,"Vehicle Fuel Consumption","Kansas","KS",9 +2015-03-01,"Vehicle Fuel Consumption","Florida","FL",29 +2015-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2015-03-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-03-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2015-03-01,"Vehicle Fuel Consumption","New York","NY",288 +2015-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-03-01,"Vehicle Fuel Consumption","Texas","TX",373 +2015-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",45 +2015-03-01,"Vehicle Fuel Consumption","Alabama","AL",26 +2015-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-03-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2015-03-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-03-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-03-01,"Vehicle Fuel Consumption","Utah","UT",28 +2015-03-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2015-03-01,"Vehicle Fuel Consumption","Ohio","OH",44 +2015-03-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-03-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2015-03-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2015-03-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-03-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",69 +2015-03-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2015-03-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-03-01,"Vehicle Fuel Consumption","Colorado","CO",31 +2015-03-01,"Vehicle Fuel Consumption","Georgia","GA",136 +2015-03-01,"Vehicle Fuel Consumption","California","CA",1548 +2015-03-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2015-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-03-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-03-01,"Vehicle Fuel Consumption","Nebraska","NE",5 +2015-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2015-03-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-03-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",3345 +2015-04-01,"Commercial Consumption","North Dakota","ND",833 +2015-04-01,"Commercial Consumption","North Carolina","NC",3421 +2015-04-01,"Commercial Consumption","Colorado","CO",3869 +2015-04-01,"Commercial Consumption","Virginia","VA",4015 +2015-04-01,"Commercial Consumption","Missouri","MO",4330 +2015-04-01,"Commercial Consumption","New Jersey","NJ",15286 +2015-04-01,"Commercial Consumption","New Hampshire","NH",673 +2015-04-01,"Commercial Consumption","Maine","ME",833 +2015-04-01,"Commercial Consumption","Kentucky","KY",1739 +2015-04-01,"Commercial Consumption","Rhode Island","RI",872 +2015-04-01,"Commercial Consumption","Louisiana","LA",2032 +2015-04-01,"Commercial Consumption","Georgia","GA",3298 +2015-04-01,"Commercial Consumption","Iowa","IA",3158 +2015-04-01,"Commercial Consumption","Alaska","AK",1548 +2015-04-01,"Commercial Consumption","Connecticut","CT",4444 +2015-04-01,"Commercial Consumption","Nevada","NV",2411 +2015-04-01,"Commercial Consumption","West Virginia","WV",1740 +2015-04-01,"Commercial Consumption","Massachusetts","MA",7663 +2015-04-01,"Commercial Consumption","California","CA",18080 +2015-04-01,"Commercial Consumption","Arkansas","AR",3183 +2015-04-01,"Commercial Consumption","Alabama","AL",1446 +2015-04-01,"Commercial Consumption","Washington","WA",4169 +2015-04-01,"Commercial Consumption","Oklahoma","OK",2349 +2015-04-01,"Commercial Consumption","Idaho","ID",1235 +2015-04-01,"Commercial Consumption","Hawaii","HI",168 +2015-04-01,"Commercial Consumption","Mississippi","MS",1130 +2015-04-01,"Commercial Consumption","Pennsylvania","PA",10553 +2015-04-01,"Commercial Consumption","Texas","TX",12629 +2015-04-01,"Commercial Consumption","Maryland","MD",4954 +2015-04-01,"Commercial Consumption","New York","NY",22349 +2015-04-01,"Commercial Consumption","South Carolina","SC",1585 +2015-04-01,"Commercial Consumption","Utah","UT",3027 +2015-04-01,"Commercial Consumption","South Dakota","SD",672 +2015-04-01,"Commercial Consumption","U.S.","U.S.",232201 +2015-04-01,"Commercial Consumption","Florida","FL",5074 +2015-04-01,"Commercial Consumption","Vermont","VT",370 +2015-04-01,"Commercial Consumption","Delaware","DE",770 +2015-04-01,"Commercial Consumption","Indiana","IN",5094 +2015-04-01,"Commercial Consumption","Illinois","IL",15102 +2015-04-01,"Commercial Consumption","Wyoming","WY",986 +2015-04-01,"Commercial Consumption","Minnesota","MN",6600 +2015-04-01,"Commercial Consumption","Oregon","OR",2193 +2015-04-01,"Commercial Consumption","Montana","MT",1404 +2015-04-01,"Commercial Consumption","Kansas","KS",1900 +2015-04-01,"Commercial Consumption","Nebraska","NE",1957 +2015-04-01,"Commercial Consumption","Tennessee","TN",2928 +2015-04-01,"Commercial Consumption","Michigan","MI",13744 +2015-04-01,"Commercial Consumption","District of Columbia","DC",1010 +2015-04-01,"Commercial Consumption","New Mexico","NM",1488 +2015-04-01,"Commercial Consumption","Wisconsin","WI",6601 +2015-04-01,"Commercial Consumption","Ohio","OH",12865 +2015-04-01,"Commercial Consumption","Arizona","AZ",2422 +2015-04-01,"Delivered to Consumers","Kansas","KS",14411 +2015-04-01,"Delivered to Consumers","Idaho","ID",6581 +2015-04-01,"Delivered to Consumers","Tennessee","TN",19711 +2015-04-01,"Delivered to Consumers","Utah","UT",14525 +2015-04-01,"Delivered to Consumers","Illinois","IL",67860 +2015-04-01,"Delivered to Consumers","New York","NY",94938 +2015-04-01,"Delivered to Consumers","Connecticut","CT",20226 +2015-04-01,"Delivered to Consumers","Wyoming","WY",5824 +2015-04-01,"Delivered to Consumers","South Dakota","SD",5462 +2015-04-01,"Delivered to Consumers","Oklahoma","OK",37061 +2015-04-01,"Delivered to Consumers","Alabama","AL",42260 +2015-04-01,"Delivered to Consumers","Missouri","MO",18030 +2015-04-01,"Delivered to Consumers","New Jersey","NJ",59283 +2015-04-01,"Delivered to Consumers","New Hampshire","NH",5347 +2015-04-01,"Delivered to Consumers","New Mexico","NM",11408 +2015-04-01,"Delivered to Consumers","Indiana","IN",52110 +2015-04-01,"Delivered to Consumers","Kentucky","KY",17071 +2015-04-01,"Delivered to Consumers","Wisconsin","WI",33066 +2015-04-01,"Delivered to Consumers","Pennsylvania","PA",76893 +2015-04-01,"Delivered to Consumers","North Carolina","NC",33961 +2015-04-01,"Delivered to Consumers","California","CA",164979 +2015-04-01,"Delivered to Consumers","Texas","TX",271023 +2015-04-01,"Delivered to Consumers","Louisiana","LA",105050 +2015-04-01,"Delivered to Consumers","Arizona","AZ",19730 +2015-04-01,"Delivered to Consumers","Florida","FL",112873 +2015-04-01,"Delivered to Consumers","U.S.","U.S.",1826933 +2015-04-01,"Delivered to Consumers","West Virginia","WV",6421 +2015-04-01,"Delivered to Consumers","Vermont","VT",895 +2015-04-01,"Delivered to Consumers","Rhode Island","RI",5631 +2015-04-01,"Delivered to Consumers","Hawaii","HI",254 +2015-04-01,"Delivered to Consumers","Alaska","AK",5893 +2015-04-01,"Delivered to Consumers","Ohio","OH",71031 +2015-04-01,"Delivered to Consumers","Nebraska","NE",10964 +2015-04-01,"Delivered to Consumers","South Carolina","SC",19143 +2015-04-01,"Delivered to Consumers","Washington","WA",20853 +2015-04-01,"Delivered to Consumers","District of Columbia","DC",1942 +2015-04-01,"Delivered to Consumers","Maryland","MD",13763 +2015-04-01,"Delivered to Consumers","Delaware","DE",10089 +2015-04-01,"Delivered to Consumers","Montana","MT",4610 +2015-04-01,"Delivered to Consumers","Michigan","MI",60297 +2015-04-01,"Delivered to Consumers","Iowa","IA",21863 +2015-04-01,"Delivered to Consumers","Mississippi","MS",31832 +2015-04-01,"Delivered to Consumers","Massachusetts","MA",32698 +2015-04-01,"Delivered to Consumers","Colorado","CO",24301 +2015-04-01,"Delivered to Consumers","Nevada","NV",22535 +2015-04-01,"Delivered to Consumers","Maine","ME",4061 +2015-04-01,"Delivered to Consumers","North Dakota","ND",5012 +2015-04-01,"Delivered to Consumers","Arkansas","AR",20688 +2015-04-01,"Delivered to Consumers","Virginia","VA",29204 +2015-04-01,"Delivered to Consumers","Oregon","OR",17588 +2015-04-01,"Delivered to Consumers","Georgia","GA",43196 +2015-04-01,"Delivered to Consumers","Minnesota","MN",32486 +2015-04-01,"Electric Power Consumption","Louisiana","LA",24985 +2015-04-01,"Electric Power Consumption","Colorado","CO",5839 +2015-04-01,"Electric Power Consumption","Arkansas","AR",8840 +2015-04-01,"Electric Power Consumption","Rhode Island","RI",2478 +2015-04-01,"Electric Power Consumption","Michigan","MI",10037 +2015-04-01,"Electric Power Consumption","Wisconsin","WI",6531 +2015-04-01,"Electric Power Consumption","Maine","ME",1051 +2015-04-01,"Electric Power Consumption","Mississippi","MS",20019 +2015-04-01,"Electric Power Consumption","Connecticut","CT",8933 +2015-04-01,"Electric Power Consumption","Florida","FL",98530 +2015-04-01,"Electric Power Consumption","Alabama","AL",24902 +2015-04-01,"Electric Power Consumption","New Jersey","NJ",18113 +2015-04-01,"Electric Power Consumption","South Carolina","SC",9328 +2015-04-01,"Electric Power Consumption","New York","NY",28508 +2015-04-01,"Electric Power Consumption","Minnesota","MN",4348 +2015-04-01,"Electric Power Consumption","Wyoming","WY",30 +2015-04-01,"Electric Power Consumption","Vermont","VT",0 +2015-04-01,"Electric Power Consumption","Missouri","MO",2372 +2015-04-01,"Electric Power Consumption","Kentucky","KY",3317 +2015-04-01,"Electric Power Consumption","Indiana","IN",9311 +2015-04-01,"Electric Power Consumption","Delaware","DE",5527 +2015-04-01,"Electric Power Consumption","Georgia","GA",22113 +2015-04-01,"Electric Power Consumption","Pennsylvania","PA",31493 +2015-04-01,"Electric Power Consumption","Nevada","NV",16108 +2015-04-01,"Electric Power Consumption","North Carolina","NC",19169 +2015-04-01,"Electric Power Consumption","Maryland","MD",2680 +2015-04-01,"Electric Power Consumption","California","CA",52671 +2015-04-01,"Electric Power Consumption","Alaska","AK",2477 +2015-04-01,"Electric Power Consumption","New Mexico","NM",6390 +2015-04-01,"Electric Power Consumption","Texas","TX",117283 +2015-04-01,"Electric Power Consumption","Oklahoma","OK",16856 +2015-04-01,"Electric Power Consumption","Massachusetts","MA",10797 +2015-04-01,"Electric Power Consumption","Kansas","KS",938 +2015-04-01,"Electric Power Consumption","West Virginia","WV",803 +2015-04-01,"Electric Power Consumption","North Dakota","ND",948 +2015-04-01,"Electric Power Consumption","Montana","MT",79 +2015-04-01,"Electric Power Consumption","Idaho","ID",1276 +2015-04-01,"Electric Power Consumption","Utah","UT",3864 +2015-04-01,"Electric Power Consumption","Oregon","OR",7467 +2015-04-01,"Electric Power Consumption","Tennessee","TN",4480 +2015-04-01,"Electric Power Consumption","Nebraska","NE",240 +2015-04-01,"Electric Power Consumption","Arizona","AZ",13276 +2015-04-01,"Electric Power Consumption","Washington","WA",4488 +2015-04-01,"Electric Power Consumption","South Dakota","SD",301 +2015-04-01,"Electric Power Consumption","Hawaii","HI",NA +2015-04-01,"Electric Power Consumption","Ohio","OH",13053 +2015-04-01,"Electric Power Consumption","Virginia","VA",12706 +2015-04-01,"Electric Power Consumption","Illinois","IL",5327 +2015-04-01,"Electric Power Consumption","Iowa","IA",686 +2015-04-01,"Electric Power Consumption","U.S.","U.S.",664276 +2015-04-01,"Electric Power Consumption","New Hampshire","NH",3308 +2015-04-01,"Industrial Consumption","Maryland","MD",1135 +2015-04-01,"Industrial Consumption","Massachusetts","MA",4049 +2015-04-01,"Industrial Consumption","Missouri","MO",5116 +2015-04-01,"Industrial Consumption","Washington","WA",6187 +2015-04-01,"Industrial Consumption","New Mexico","NM",1597 +2015-04-01,"Industrial Consumption","Arizona","AZ",1659 +2015-04-01,"Industrial Consumption","California","CA",63109 +2015-04-01,"Industrial Consumption","Wisconsin","WI",10427 +2015-04-01,"Industrial Consumption","Pennsylvania","PA",17645 +2015-04-01,"Industrial Consumption","Oregon","OR",4671 +2015-04-01,"Industrial Consumption","South Carolina","SC",7121 +2015-04-01,"Industrial Consumption","Virginia","VA",7711 +2015-04-01,"Industrial Consumption","Tennessee","TN",9194 +2015-04-01,"Industrial Consumption","New Hampshire","NH",764 +2015-04-01,"Industrial Consumption","Minnesota","MN",13355 +2015-04-01,"Industrial Consumption","Utah","UT",3092 +2015-04-01,"Industrial Consumption","Maine","ME",1953 +2015-04-01,"Industrial Consumption","West Virginia","WV",2245 +2015-04-01,"Industrial Consumption","Wyoming","WY",3919 +2015-04-01,"Industrial Consumption","Iowa","IA",13906 +2015-04-01,"Industrial Consumption","Connecticut","CT",2082 +2015-04-01,"Industrial Consumption","Delaware","DE",3037 +2015-04-01,"Industrial Consumption","Georgia","GA",12115 +2015-04-01,"Industrial Consumption","Colorado","CO",6060 +2015-04-01,"Industrial Consumption","South Dakota","SD",3706 +2015-04-01,"Industrial Consumption","Ohio","OH",22803 +2015-04-01,"Industrial Consumption","Nevada","NV",1558 +2015-04-01,"Industrial Consumption","Vermont","VT",158 +2015-04-01,"Industrial Consumption","Kentucky","KY",9698 +2015-04-01,"Industrial Consumption","Hawaii","HI",32 +2015-04-01,"Industrial Consumption","Oklahoma","OK",15171 +2015-04-01,"Industrial Consumption","U.S.","U.S.",607933 +2015-04-01,"Industrial Consumption","North Carolina","NC",8546 +2015-04-01,"Industrial Consumption","District of Columbia","DC",0 +2015-04-01,"Industrial Consumption","Texas","TX",129764 +2015-04-01,"Industrial Consumption","Florida","FL",7994 +2015-04-01,"Industrial Consumption","Alaska","AK",395 +2015-04-01,"Industrial Consumption","North Dakota","ND",2510 +2015-04-01,"Industrial Consumption","Mississippi","MS",9617 +2015-04-01,"Industrial Consumption","Arkansas","AR",7029 +2015-04-01,"Industrial Consumption","Nebraska","NE",6626 +2015-04-01,"Industrial Consumption","New Jersey","NJ",4589 +2015-04-01,"Industrial Consumption","Idaho","ID",2322 +2015-04-01,"Industrial Consumption","Michigan","MI",14382 +2015-04-01,"Industrial Consumption","Indiana","IN",29054 +2015-04-01,"Industrial Consumption","Illinois","IL",20616 +2015-04-01,"Industrial Consumption","Montana","MT",1670 +2015-04-01,"Industrial Consumption","Louisiana","LA",76135 +2015-04-01,"Industrial Consumption","Kansas","KS",9035 +2015-04-01,"Industrial Consumption","New York","NY",7332 +2015-04-01,"Industrial Consumption","Alabama","AL",14190 +2015-04-01,"Industrial Consumption","Rhode Island","RI",848 +2015-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",131408 +2015-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",49581 +2015-04-01,"Residential Consumption","Maryland","MD",4975 +2015-04-01,"Residential Consumption","Indiana","IN",8643 +2015-04-01,"Residential Consumption","Washington","WA",5971 +2015-04-01,"Residential Consumption","California","CA",29622 +2015-04-01,"Residential Consumption","District of Columbia","DC",866 +2015-04-01,"Residential Consumption","Florida","FL",1246 +2015-04-01,"Residential Consumption","North Dakota","ND",720 +2015-04-01,"Residential Consumption","Massachusetts","MA",10124 +2015-04-01,"Residential Consumption","Idaho","ID",1736 +2015-04-01,"Residential Consumption","New Hampshire","NH",596 +2015-04-01,"Residential Consumption","Alabama","AL",1697 +2015-04-01,"Residential Consumption","Oregon","OR",3242 +2015-04-01,"Residential Consumption","Arizona","AZ",2191 +2015-04-01,"Residential Consumption","U.S.","U.S.",319285 +2015-04-01,"Residential Consumption","Texas","TX",10986 +2015-04-01,"Residential Consumption","Ohio","OH",22267 +2015-04-01,"Residential Consumption","North Carolina","NC",2814 +2015-04-01,"Residential Consumption","Iowa","IA",4112 +2015-04-01,"Residential Consumption","Hawaii","HI",54 +2015-04-01,"Residential Consumption","Connecticut","CT",4766 +2015-04-01,"Residential Consumption","South Dakota","SD",783 +2015-04-01,"Residential Consumption","Missouri","MO",6206 +2015-04-01,"Residential Consumption","Rhode Island","RI",1426 +2015-04-01,"Residential Consumption","Wisconsin","WI",9496 +2015-04-01,"Residential Consumption","Nebraska","NE",2137 +2015-04-01,"Residential Consumption","New Mexico","NM",1919 +2015-04-01,"Residential Consumption","Montana","MT",1457 +2015-04-01,"Residential Consumption","Oklahoma","OK",2647 +2015-04-01,"Residential Consumption","Wyoming","WY",888 +2015-04-01,"Residential Consumption","New York","NY",36470 +2015-04-01,"Residential Consumption","South Carolina","SC",1104 +2015-04-01,"Residential Consumption","Virginia","VA",4750 +2015-04-01,"Residential Consumption","Michigan","MI",22109 +2015-04-01,"Residential Consumption","Nevada","NV",2366 +2015-04-01,"Residential Consumption","Minnesota","MN",8178 +2015-04-01,"Residential Consumption","Colorado","CO",8503 +2015-04-01,"Residential Consumption","Louisiana","LA",1884 +2015-04-01,"Residential Consumption","Vermont","VT",367 +2015-04-01,"Residential Consumption","Georgia","GA",5538 +2015-04-01,"Residential Consumption","Pennsylvania","PA",17159 +2015-04-01,"Residential Consumption","Kentucky","KY",2309 +2015-04-01,"Residential Consumption","Delaware","DE",754 +2015-04-01,"Residential Consumption","Alaska","AK",1473 +2015-04-01,"Residential Consumption","Mississippi","MS",1060 +2015-04-01,"Residential Consumption","Tennessee","TN",3088 +2015-04-01,"Residential Consumption","Utah","UT",4515 +2015-04-01,"Residential Consumption","Maine","ME",224 +2015-04-01,"Residential Consumption","Arkansas","AR",1634 +2015-04-01,"Residential Consumption","New Jersey","NJ",21273 +2015-04-01,"Residential Consumption","Kansas","KS",2529 +2015-04-01,"Residential Consumption","West Virginia","WV",1631 +2015-04-01,"Residential Consumption","Illinois","IL",26783 +2015-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",37 +2015-04-01,"Vehicle Fuel Consumption","Arizona","AZ",181 +2015-04-01,"Vehicle Fuel Consumption","Florida","FL",28 +2015-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2015-04-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-04-01,"Vehicle Fuel Consumption","Colorado","CO",30 +2015-04-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-04-01,"Vehicle Fuel Consumption","Illinois","IL",32 +2015-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-04-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-04-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2015-04-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-04-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-04-01,"Vehicle Fuel Consumption","New York","NY",278 +2015-04-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",66 +2015-04-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2015-04-01,"Vehicle Fuel Consumption","Michigan","MI",25 +2015-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-04-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2015-04-01,"Vehicle Fuel Consumption","California","CA",1498 +2015-04-01,"Vehicle Fuel Consumption","Washington","WA",37 +2015-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-04-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",3238 +2015-04-01,"Vehicle Fuel Consumption","Utah","UT",27 +2015-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",44 +2015-04-01,"Vehicle Fuel Consumption","Kansas","KS",8 +2015-04-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-04-01,"Vehicle Fuel Consumption","Texas","TX",361 +2015-04-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-04-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-04-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-04-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",67 +2015-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-04-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-04-01,"Vehicle Fuel Consumption","Georgia","GA",132 +2015-04-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2015-04-01,"Vehicle Fuel Consumption","Alabama","AL",25 +2015-04-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2015-04-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-04-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2015-04-01,"Vehicle Fuel Consumption","Nevada","NV",92 +2015-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",22 +2015-04-01,"Vehicle Fuel Consumption","Oregon","OR",17 +2015-04-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-05-01,"Commercial Consumption","Oregon","OR",1539 +2015-05-01,"Commercial Consumption","Oklahoma","OK",1941 +2015-05-01,"Commercial Consumption","Pennsylvania","PA",5766 +2015-05-01,"Commercial Consumption","Kentucky","KY",1202 +2015-05-01,"Commercial Consumption","U.S.","U.S.",160511 +2015-05-01,"Commercial Consumption","Vermont","VT",204 +2015-05-01,"Commercial Consumption","Arkansas","AR",2654 +2015-05-01,"Commercial Consumption","New York","NY",15674 +2015-05-01,"Commercial Consumption","Illinois","IL",9179 +2015-05-01,"Commercial Consumption","West Virginia","WV",1128 +2015-05-01,"Commercial Consumption","Washington","WA",2940 +2015-05-01,"Commercial Consumption","North Dakota","ND",580 +2015-05-01,"Commercial Consumption","Ohio","OH",6476 +2015-05-01,"Commercial Consumption","Idaho","ID",850 +2015-05-01,"Commercial Consumption","New Hampshire","NH",308 +2015-05-01,"Commercial Consumption","Delaware","DE",422 +2015-05-01,"Commercial Consumption","District of Columbia","DC",725 +2015-05-01,"Commercial Consumption","South Carolina","SC",1516 +2015-05-01,"Commercial Consumption","Utah","UT",2168 +2015-05-01,"Commercial Consumption","Virginia","VA",2813 +2015-05-01,"Commercial Consumption","Maine","ME",389 +2015-05-01,"Commercial Consumption","Texas","TX",10214 +2015-05-01,"Commercial Consumption","Hawaii","HI",151 +2015-05-01,"Commercial Consumption","Alabama","AL",1418 +2015-05-01,"Commercial Consumption","Arizona","AZ",2204 +2015-05-01,"Commercial Consumption","Tennessee","TN",2453 +2015-05-01,"Commercial Consumption","Nevada","NV",2119 +2015-05-01,"Commercial Consumption","Michigan","MI",7299 +2015-05-01,"Commercial Consumption","Indiana","IN",2726 +2015-05-01,"Commercial Consumption","Wyoming","WY",919 +2015-05-01,"Commercial Consumption","Minnesota","MN",3970 +2015-05-01,"Commercial Consumption","New Mexico","NM",1356 +2015-05-01,"Commercial Consumption","New Jersey","NJ",7304 +2015-05-01,"Commercial Consumption","Georgia","GA",2626 +2015-05-01,"Commercial Consumption","Iowa","IA",2108 +2015-05-01,"Commercial Consumption","Connecticut","CT",2611 +2015-05-01,"Commercial Consumption","California","CA",19132 +2015-05-01,"Commercial Consumption","North Carolina","NC",2488 +2015-05-01,"Commercial Consumption","Colorado","CO",3507 +2015-05-01,"Commercial Consumption","Missouri","MO",2368 +2015-05-01,"Commercial Consumption","Massachusetts","MA",4407 +2015-05-01,"Commercial Consumption","Wisconsin","WI",3791 +2015-05-01,"Commercial Consumption","Kansas","KS",1722 +2015-05-01,"Commercial Consumption","Florida","FL",4571 +2015-05-01,"Commercial Consumption","Alaska","AK",1147 +2015-05-01,"Commercial Consumption","Nebraska","NE",1460 +2015-05-01,"Commercial Consumption","South Dakota","SD",498 +2015-05-01,"Commercial Consumption","Montana","MT",988 +2015-05-01,"Commercial Consumption","Maryland","MD",2956 +2015-05-01,"Commercial Consumption","Rhode Island","RI",385 +2015-05-01,"Commercial Consumption","Mississippi","MS",1068 +2015-05-01,"Commercial Consumption","Louisiana","LA",2068 +2015-05-01,"Delivered to Consumers","Delaware","DE",8534 +2015-05-01,"Delivered to Consumers","Idaho","ID",6441 +2015-05-01,"Delivered to Consumers","Connecticut","CT",15300 +2015-05-01,"Delivered to Consumers","Massachusetts","MA",26798 +2015-05-01,"Delivered to Consumers","New Jersey","NJ",44959 +2015-05-01,"Delivered to Consumers","Arizona","AZ",18984 +2015-05-01,"Delivered to Consumers","New York","NY",79062 +2015-05-01,"Delivered to Consumers","Virginia","VA",34839 +2015-05-01,"Delivered to Consumers","Nebraska","NE",9783 +2015-05-01,"Delivered to Consumers","North Carolina","NC",35730 +2015-05-01,"Delivered to Consumers","California","CA",162529 +2015-05-01,"Delivered to Consumers","Maine","ME",3029 +2015-05-01,"Delivered to Consumers","Louisiana","LA",111508 +2015-05-01,"Delivered to Consumers","New Hampshire","NH",5019 +2015-05-01,"Delivered to Consumers","New Mexico","NM",9324 +2015-05-01,"Delivered to Consumers","Wyoming","WY",5393 +2015-05-01,"Delivered to Consumers","Iowa","IA",19485 +2015-05-01,"Delivered to Consumers","Pennsylvania","PA",61527 +2015-05-01,"Delivered to Consumers","South Carolina","SC",19169 +2015-05-01,"Delivered to Consumers","Oregon","OR",14732 +2015-05-01,"Delivered to Consumers","Washington","WA",18051 +2015-05-01,"Delivered to Consumers","District of Columbia","DC",1250 +2015-05-01,"Delivered to Consumers","Kansas","KS",13073 +2015-05-01,"Delivered to Consumers","Ohio","OH",51753 +2015-05-01,"Delivered to Consumers","Kentucky","KY",14583 +2015-05-01,"Delivered to Consumers","Alabama","AL",50458 +2015-05-01,"Delivered to Consumers","Texas","TX",274677 +2015-05-01,"Delivered to Consumers","Georgia","GA",48174 +2015-05-01,"Delivered to Consumers","U.S.","U.S.",1678755 +2015-05-01,"Delivered to Consumers","South Dakota","SD",5065 +2015-05-01,"Delivered to Consumers","Rhode Island","RI",7399 +2015-05-01,"Delivered to Consumers","Hawaii","HI",228 +2015-05-01,"Delivered to Consumers","Alaska","AK",4742 +2015-05-01,"Delivered to Consumers","Michigan","MI",41295 +2015-05-01,"Delivered to Consumers","Wisconsin","WI",24965 +2015-05-01,"Delivered to Consumers","Missouri","MO",11082 +2015-05-01,"Delivered to Consumers","Colorado","CO",21759 +2015-05-01,"Delivered to Consumers","Florida","FL",114992 +2015-05-01,"Delivered to Consumers","West Virginia","WV",4884 +2015-05-01,"Delivered to Consumers","Vermont","VT",500 +2015-05-01,"Delivered to Consumers","Oklahoma","OK",36866 +2015-05-01,"Delivered to Consumers","Illinois","IL",46823 +2015-05-01,"Delivered to Consumers","Montana","MT",4065 +2015-05-01,"Delivered to Consumers","Maryland","MD",10812 +2015-05-01,"Delivered to Consumers","Arkansas","AR",17770 +2015-05-01,"Delivered to Consumers","North Dakota","ND",3961 +2015-05-01,"Delivered to Consumers","Minnesota","MN",21246 +2015-05-01,"Delivered to Consumers","Utah","UT",13020 +2015-05-01,"Delivered to Consumers","Indiana","IN",45248 +2015-05-01,"Delivered to Consumers","Tennessee","TN",19164 +2015-05-01,"Delivered to Consumers","Mississippi","MS",37611 +2015-05-01,"Delivered to Consumers","Nevada","NV",21097 +2015-05-01,"Electric Power Consumption","New Mexico","NM",4833 +2015-05-01,"Electric Power Consumption","Minnesota","MN",2180 +2015-05-01,"Electric Power Consumption","Michigan","MI",11924 +2015-05-01,"Electric Power Consumption","West Virginia","WV",1211 +2015-05-01,"Electric Power Consumption","Pennsylvania","PA",31152 +2015-05-01,"Electric Power Consumption","Nevada","NV",15544 +2015-05-01,"Electric Power Consumption","Tennessee","TN",6502 +2015-05-01,"Electric Power Consumption","Maryland","MD",4496 +2015-05-01,"Electric Power Consumption","Georgia","GA",27969 +2015-05-01,"Electric Power Consumption","Alabama","AL",32391 +2015-05-01,"Electric Power Consumption","Washington","WA",5976 +2015-05-01,"Electric Power Consumption","Nebraska","NE",178 +2015-05-01,"Electric Power Consumption","Indiana","IN",9208 +2015-05-01,"Electric Power Consumption","Louisiana","LA",27765 +2015-05-01,"Electric Power Consumption","New York","NY",39074 +2015-05-01,"Electric Power Consumption","Rhode Island","RI",5728 +2015-05-01,"Electric Power Consumption","Massachusetts","MA",15150 +2015-05-01,"Electric Power Consumption","Kansas","KS",1023 +2015-05-01,"Electric Power Consumption","Wyoming","WY",68 +2015-05-01,"Electric Power Consumption","Missouri","MO",1538 +2015-05-01,"Electric Power Consumption","Montana","MT",496 +2015-05-01,"Electric Power Consumption","Arkansas","AR",7400 +2015-05-01,"Electric Power Consumption","Utah","UT",4621 +2015-05-01,"Electric Power Consumption","Illinois","IL",4645 +2015-05-01,"Electric Power Consumption","Connecticut","CT",8759 +2015-05-01,"Electric Power Consumption","Alaska","AK",2314 +2015-05-01,"Electric Power Consumption","New Jersey","NJ",24482 +2015-05-01,"Electric Power Consumption","Colorado","CO",4901 +2015-05-01,"Electric Power Consumption","Oregon","OR",7174 +2015-05-01,"Electric Power Consumption","U.S.","U.S.",734486 +2015-05-01,"Electric Power Consumption","Maine","ME",827 +2015-05-01,"Electric Power Consumption","Mississippi","MS",26176 +2015-05-01,"Electric Power Consumption","Hawaii","HI",NA +2015-05-01,"Electric Power Consumption","Idaho","ID",2081 +2015-05-01,"Electric Power Consumption","Texas","TX",122352 +2015-05-01,"Electric Power Consumption","Vermont","VT",6 +2015-05-01,"Electric Power Consumption","South Dakota","SD",535 +2015-05-01,"Electric Power Consumption","Kentucky","KY",3384 +2015-05-01,"Electric Power Consumption","South Carolina","SC",10045 +2015-05-01,"Electric Power Consumption","New Hampshire","NH",3865 +2015-05-01,"Electric Power Consumption","Delaware","DE",5004 +2015-05-01,"Electric Power Consumption","Virginia","VA",22131 +2015-05-01,"Electric Power Consumption","Oklahoma","OK",17039 +2015-05-01,"Electric Power Consumption","Wisconsin","WI",7223 +2015-05-01,"Electric Power Consumption","Iowa","IA",784 +2015-05-01,"Electric Power Consumption","North Carolina","NC",23790 +2015-05-01,"Electric Power Consumption","Ohio","OH",14983 +2015-05-01,"Electric Power Consumption","North Dakota","ND",98 +2015-05-01,"Electric Power Consumption","Arizona","AZ",13127 +2015-05-01,"Electric Power Consumption","Florida","FL",101383 +2015-05-01,"Electric Power Consumption","California","CA",50951 +2015-05-01,"Industrial Consumption","North Dakota","ND",2835 +2015-05-01,"Industrial Consumption","Utah","UT",3073 +2015-05-01,"Industrial Consumption","Nevada","NV",1438 +2015-05-01,"Industrial Consumption","West Virginia","WV",1874 +2015-05-01,"Industrial Consumption","Alaska","AK",397 +2015-05-01,"Industrial Consumption","Oklahoma","OK",15911 +2015-05-01,"Industrial Consumption","Texas","TX",134880 +2015-05-01,"Industrial Consumption","Virginia","VA",7646 +2015-05-01,"Industrial Consumption","Tennessee","TN",8581 +2015-05-01,"Industrial Consumption","Iowa","IA",14433 +2015-05-01,"Industrial Consumption","Florida","FL",8064 +2015-05-01,"Industrial Consumption","Montana","MT",1671 +2015-05-01,"Industrial Consumption","Missouri","MO",4657 +2015-05-01,"Industrial Consumption","Arizona","AZ",1644 +2015-05-01,"Industrial Consumption","New York","NY",5776 +2015-05-01,"Industrial Consumption","Maine","ME",1718 +2015-05-01,"Industrial Consumption","California","CA",63541 +2015-05-01,"Industrial Consumption","Arkansas","AR",6771 +2015-05-01,"Industrial Consumption","Minnesota","MN",11133 +2015-05-01,"Industrial Consumption","Idaho","ID",2598 +2015-05-01,"Industrial Consumption","Illinois","IL",19770 +2015-05-01,"Industrial Consumption","Massachusetts","MA",2808 +2015-05-01,"Industrial Consumption","Louisiana","LA",79982 +2015-05-01,"Industrial Consumption","New Mexico","NM",1550 +2015-05-01,"Industrial Consumption","Kansas","KS",8466 +2015-05-01,"Industrial Consumption","Vermont","VT",134 +2015-05-01,"Industrial Consumption","Wyoming","WY",3673 +2015-05-01,"Industrial Consumption","North Carolina","NC",8132 +2015-05-01,"Industrial Consumption","Hawaii","HI",31 +2015-05-01,"Industrial Consumption","Pennsylvania","PA",16938 +2015-05-01,"Industrial Consumption","New Hampshire","NH",598 +2015-05-01,"Industrial Consumption","Michigan","MI",11570 +2015-05-01,"Industrial Consumption","Kentucky","KY",8771 +2015-05-01,"Industrial Consumption","Indiana","IN",29593 +2015-05-01,"Industrial Consumption","Maryland","MD",1141 +2015-05-01,"Industrial Consumption","South Dakota","SD",3524 +2015-05-01,"Industrial Consumption","Alabama","AL",15511 +2015-05-01,"Industrial Consumption","South Carolina","SC",6892 +2015-05-01,"Industrial Consumption","Wisconsin","WI",9392 +2015-05-01,"Industrial Consumption","New Jersey","NJ",4154 +2015-05-01,"Industrial Consumption","Rhode Island","RI",701 +2015-05-01,"Industrial Consumption","District of Columbia","DC",0 +2015-05-01,"Industrial Consumption","Colorado","CO",5976 +2015-05-01,"Industrial Consumption","Ohio","OH",20431 +2015-05-01,"Industrial Consumption","Mississippi","MS",9642 +2015-05-01,"Industrial Consumption","Connecticut","CT",1816 +2015-05-01,"Industrial Consumption","Georgia","GA",13089 +2015-05-01,"Industrial Consumption","Washington","WA",5995 +2015-05-01,"Industrial Consumption","U.S.","U.S.",602843 +2015-05-01,"Industrial Consumption","Oregon","OR",4307 +2015-05-01,"Industrial Consumption","Nebraska","NE",6797 +2015-05-01,"Industrial Consumption","Delaware","DE",2819 +2015-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",133834 +2015-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",45560 +2015-05-01,"Residential Consumption","North Carolina","NC",1308 +2015-05-01,"Residential Consumption","Nebraska","NE",1343 +2015-05-01,"Residential Consumption","Nevada","NV",1901 +2015-05-01,"Residential Consumption","Oregon","OR",1694 +2015-05-01,"Residential Consumption","Ohio","OH",9819 +2015-05-01,"Residential Consumption","Tennessee","TN",1606 +2015-05-01,"Residential Consumption","Virginia","VA",2226 +2015-05-01,"Residential Consumption","Maryland","MD",2200 +2015-05-01,"Residential Consumption","Minnesota","MN",3958 +2015-05-01,"Residential Consumption","Georgia","GA",4354 +2015-05-01,"Residential Consumption","Massachusetts","MA",4364 +2015-05-01,"Residential Consumption","Kansas","KS",1854 +2015-05-01,"Residential Consumption","Delaware","DE",289 +2015-05-01,"Residential Consumption","Wyoming","WY",731 +2015-05-01,"Residential Consumption","Texas","TX",6857 +2015-05-01,"Residential Consumption","Hawaii","HI",46 +2015-05-01,"Residential Consumption","Wisconsin","WI",4550 +2015-05-01,"Residential Consumption","District of Columbia","DC",456 +2015-05-01,"Residential Consumption","New Jersey","NJ",8995 +2015-05-01,"Residential Consumption","Kentucky","KY",1217 +2015-05-01,"Residential Consumption","Oklahoma","OK",1937 +2015-05-01,"Residential Consumption","Rhode Island","RI",577 +2015-05-01,"Residential Consumption","New Hampshire","NH",244 +2015-05-01,"Residential Consumption","California","CA",27358 +2015-05-01,"Residential Consumption","New York","NY",18251 +2015-05-01,"Residential Consumption","Michigan","MI",10476 +2015-05-01,"Residential Consumption","Pennsylvania","PA",7626 +2015-05-01,"Residential Consumption","Indiana","IN",3713 +2015-05-01,"Residential Consumption","Arkansas","AR",942 +2015-05-01,"Residential Consumption","Montana","MT",909 +2015-05-01,"Residential Consumption","Washington","WA",3103 +2015-05-01,"Residential Consumption","South Carolina","SC",712 +2015-05-01,"Residential Consumption","Connecticut","CT",2112 +2015-05-01,"Residential Consumption","New Mexico","NM",1572 +2015-05-01,"Residential Consumption","Maine","ME",95 +2015-05-01,"Residential Consumption","Idaho","ID",900 +2015-05-01,"Residential Consumption","Colorado","CO",7343 +2015-05-01,"Residential Consumption","U.S.","U.S.",177570 +2015-05-01,"Residential Consumption","Mississippi","MS",718 +2015-05-01,"Residential Consumption","Iowa","IA",2157 +2015-05-01,"Residential Consumption","South Dakota","SD",508 +2015-05-01,"Residential Consumption","North Dakota","ND",447 +2015-05-01,"Residential Consumption","Missouri","MO",2514 +2015-05-01,"Residential Consumption","Alaska","AK",883 +2015-05-01,"Residential Consumption","West Virginia","WV",668 +2015-05-01,"Residential Consumption","Louisiana","LA",1679 +2015-05-01,"Residential Consumption","Vermont","VT",156 +2015-05-01,"Residential Consumption","Utah","UT",3129 +2015-05-01,"Residential Consumption","Florida","FL",946 +2015-05-01,"Residential Consumption","Arizona","AZ",1821 +2015-05-01,"Residential Consumption","Alabama","AL",1113 +2015-05-01,"Residential Consumption","Illinois","IL",13194 +2015-05-01,"Vehicle Fuel Consumption","Utah","UT",28 +2015-05-01,"Vehicle Fuel Consumption","Kansas","KS",9 +2015-05-01,"Vehicle Fuel Consumption","Nebraska","NE",5 +2015-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-05-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-05-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-05-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2015-05-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2015-05-01,"Vehicle Fuel Consumption","Alabama","AL",26 +2015-05-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-05-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2015-05-01,"Vehicle Fuel Consumption","California","CA",1548 +2015-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-05-01,"Vehicle Fuel Consumption","Ohio","OH",44 +2015-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2015-05-01,"Vehicle Fuel Consumption","Arizona","AZ",187 +2015-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2015-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2015-05-01,"Vehicle Fuel Consumption","Florida","FL",29 +2015-05-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2015-05-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",45 +2015-05-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-05-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2015-05-01,"Vehicle Fuel Consumption","Georgia","GA",136 +2015-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-05-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2015-05-01,"Vehicle Fuel Consumption","New York","NY",288 +2015-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-05-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-05-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-05-01,"Vehicle Fuel Consumption","Washington","WA",38 +2015-05-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2015-05-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-05-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-05-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",3345 +2015-05-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-05-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-05-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2015-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",69 +2015-05-01,"Vehicle Fuel Consumption","Texas","TX",373 +2015-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2015-05-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-05-01,"Vehicle Fuel Consumption","Colorado","CO",31 +2015-05-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-06-01,"Commercial Consumption","Pennsylvania","PA",5155 +2015-06-01,"Commercial Consumption","Montana","MT",583 +2015-06-01,"Commercial Consumption","Connecticut","CT",2239 +2015-06-01,"Commercial Consumption","Alabama","AL",1114 +2015-06-01,"Commercial Consumption","Mississippi","MS",1015 +2015-06-01,"Commercial Consumption","North Dakota","ND",313 +2015-06-01,"Commercial Consumption","North Carolina","NC",2867 +2015-06-01,"Commercial Consumption","New Mexico","NM",1240 +2015-06-01,"Commercial Consumption","Oregon","OR",974 +2015-06-01,"Commercial Consumption","Virginia","VA",2644 +2015-06-01,"Commercial Consumption","Texas","TX",10620 +2015-06-01,"Commercial Consumption","Maryland","MD",2840 +2015-06-01,"Commercial Consumption","Florida","FL",4668 +2015-06-01,"Commercial Consumption","Hawaii","HI",154 +2015-06-01,"Commercial Consumption","New York","NY",13026 +2015-06-01,"Commercial Consumption","Wyoming","WY",461 +2015-06-01,"Commercial Consumption","Washington","WA",2406 +2015-06-01,"Commercial Consumption","South Carolina","SC",1299 +2015-06-01,"Commercial Consumption","Colorado","CO",1953 +2015-06-01,"Commercial Consumption","Iowa","IA",1804 +2015-06-01,"Commercial Consumption","Alaska","AK",574 +2015-06-01,"Commercial Consumption","California","CA",16147 +2015-06-01,"Commercial Consumption","Michigan","MI",5423 +2015-06-01,"Commercial Consumption","Louisiana","LA",1869 +2015-06-01,"Commercial Consumption","District of Columbia","DC",821 +2015-06-01,"Commercial Consumption","Minnesota","MN",2609 +2015-06-01,"Commercial Consumption","Massachusetts","MA",4033 +2015-06-01,"Commercial Consumption","Wisconsin","WI",2840 +2015-06-01,"Commercial Consumption","New Hampshire","NH",274 +2015-06-01,"Commercial Consumption","Indiana","IN",2309 +2015-06-01,"Commercial Consumption","Illinois","IL",7293 +2015-06-01,"Commercial Consumption","Arizona","AZ",1878 +2015-06-01,"Commercial Consumption","West Virginia","WV",813 +2015-06-01,"Commercial Consumption","Utah","UT",1387 +2015-06-01,"Commercial Consumption","Oklahoma","OK",1541 +2015-06-01,"Commercial Consumption","Kentucky","KY",1125 +2015-06-01,"Commercial Consumption","Kansas","KS",1288 +2015-06-01,"Commercial Consumption","Vermont","VT",323 +2015-06-01,"Commercial Consumption","Arkansas","AR",2405 +2015-06-01,"Commercial Consumption","Nebraska","NE",1281 +2015-06-01,"Commercial Consumption","Tennessee","TN",2141 +2015-06-01,"Commercial Consumption","Missouri","MO",1840 +2015-06-01,"Commercial Consumption","Ohio","OH",5217 +2015-06-01,"Commercial Consumption","Idaho","ID",685 +2015-06-01,"Commercial Consumption","South Dakota","SD",323 +2015-06-01,"Commercial Consumption","New Jersey","NJ",6556 +2015-06-01,"Commercial Consumption","Maine","ME",407 +2015-06-01,"Commercial Consumption","U.S.","U.S.",135446 +2015-06-01,"Commercial Consumption","Georgia","GA",2094 +2015-06-01,"Commercial Consumption","Rhode Island","RI",309 +2015-06-01,"Commercial Consumption","Delaware","DE",429 +2015-06-01,"Commercial Consumption","Nevada","NV",1839 +2015-06-01,"Delivered to Consumers","Tennessee","TN",19184 +2015-06-01,"Delivered to Consumers","Arizona","AZ",35407 +2015-06-01,"Delivered to Consumers","District of Columbia","DC",1143 +2015-06-01,"Delivered to Consumers","Kansas","KS",13538 +2015-06-01,"Delivered to Consumers","Virginia","VA",37862 +2015-06-01,"Delivered to Consumers","Massachusetts","MA",24702 +2015-06-01,"Delivered to Consumers","Delaware","DE",7777 +2015-06-01,"Delivered to Consumers","Rhode Island","RI",7608 +2015-06-01,"Delivered to Consumers","Kentucky","KY",14264 +2015-06-01,"Delivered to Consumers","Wisconsin","WI",22226 +2015-06-01,"Delivered to Consumers","Washington","WA",20046 +2015-06-01,"Delivered to Consumers","Utah","UT",11926 +2015-06-01,"Delivered to Consumers","West Virginia","WV",4761 +2015-06-01,"Delivered to Consumers","Vermont","VT",569 +2015-06-01,"Delivered to Consumers","New York","NY",71536 +2015-06-01,"Delivered to Consumers","Alaska","AK",4014 +2015-06-01,"Delivered to Consumers","Arkansas","AR",19362 +2015-06-01,"Delivered to Consumers","Texas","TX",292544 +2015-06-01,"Delivered to Consumers","South Carolina","SC",23246 +2015-06-01,"Delivered to Consumers","Georgia","GA",52162 +2015-06-01,"Delivered to Consumers","Wyoming","WY",4830 +2015-06-01,"Delivered to Consumers","Montana","MT",2995 +2015-06-01,"Delivered to Consumers","Alabama","AL",53287 +2015-06-01,"Delivered to Consumers","Colorado","CO",17982 +2015-06-01,"Delivered to Consumers","California","CA",174388 +2015-06-01,"Delivered to Consumers","New Mexico","NM",10345 +2015-06-01,"Delivered to Consumers","South Dakota","SD",4836 +2015-06-01,"Delivered to Consumers","Maryland","MD",10299 +2015-06-01,"Delivered to Consumers","Oklahoma","OK",37710 +2015-06-01,"Delivered to Consumers","Iowa","IA",18390 +2015-06-01,"Delivered to Consumers","Connecticut","CT",14703 +2015-06-01,"Delivered to Consumers","Pennsylvania","PA",64046 +2015-06-01,"Delivered to Consumers","Mississippi","MS",43684 +2015-06-01,"Delivered to Consumers","Missouri","MO",12508 +2015-06-01,"Delivered to Consumers","Maine","ME",2782 +2015-06-01,"Delivered to Consumers","New Hampshire","NH",4693 +2015-06-01,"Delivered to Consumers","North Dakota","ND",3428 +2015-06-01,"Delivered to Consumers","Florida","FL",118863 +2015-06-01,"Delivered to Consumers","U.S.","U.S.",1723906 +2015-06-01,"Delivered to Consumers","Illinois","IL",42018 +2015-06-01,"Delivered to Consumers","Nevada","NV",26234 +2015-06-01,"Delivered to Consumers","New Jersey","NJ",41009 +2015-06-01,"Delivered to Consumers","Minnesota","MN",20335 +2015-06-01,"Delivered to Consumers","Indiana","IN",41480 +2015-06-01,"Delivered to Consumers","Hawaii","HI",244 +2015-06-01,"Delivered to Consumers","Idaho","ID",7050 +2015-06-01,"Delivered to Consumers","Ohio","OH",48812 +2015-06-01,"Delivered to Consumers","Michigan","MI",36079 +2015-06-01,"Delivered to Consumers","Nebraska","NE",9350 +2015-06-01,"Delivered to Consumers","North Carolina","NC",38410 +2015-06-01,"Delivered to Consumers","Oregon","OR",16432 +2015-06-01,"Delivered to Consumers","Louisiana","LA",112809 +2015-06-01,"Electric Power Consumption","Arkansas","AR",9908 +2015-06-01,"Electric Power Consumption","Tennessee","TN",7019 +2015-06-01,"Electric Power Consumption","Ohio","OH",18045 +2015-06-01,"Electric Power Consumption","New Mexico","NM",6598 +2015-06-01,"Electric Power Consumption","New Jersey","NJ",24137 +2015-06-01,"Electric Power Consumption","Massachusetts","MA",15103 +2015-06-01,"Electric Power Consumption","Pennsylvania","PA",37533 +2015-06-01,"Electric Power Consumption","Missouri","MO",4226 +2015-06-01,"Electric Power Consumption","Washington","WA",9992 +2015-06-01,"Electric Power Consumption","Virginia","VA",26227 +2015-06-01,"Electric Power Consumption","South Carolina","SC",14729 +2015-06-01,"Electric Power Consumption","Rhode Island","RI",6127 +2015-06-01,"Electric Power Consumption","Illinois","IL",7069 +2015-06-01,"Electric Power Consumption","Maine","ME",674 +2015-06-01,"Electric Power Consumption","Hawaii","HI",NA +2015-06-01,"Electric Power Consumption","Connecticut","CT",9399 +2015-06-01,"Electric Power Consumption","California","CA",73309 +2015-06-01,"Electric Power Consumption","Idaho","ID",3474 +2015-06-01,"Electric Power Consumption","New York","NY",39800 +2015-06-01,"Electric Power Consumption","Michigan","MI",13328 +2015-06-01,"Electric Power Consumption","Wisconsin","WI",8056 +2015-06-01,"Electric Power Consumption","Nevada","NV",21420 +2015-06-01,"Electric Power Consumption","South Dakota","SD",664 +2015-06-01,"Electric Power Consumption","Montana","MT",454 +2015-06-01,"Electric Power Consumption","Delaware","DE",4594 +2015-06-01,"Electric Power Consumption","Louisiana","LA",33952 +2015-06-01,"Electric Power Consumption","Kansas","KS",1726 +2015-06-01,"Electric Power Consumption","Vermont","VT",1 +2015-06-01,"Electric Power Consumption","North Carolina","NC",26615 +2015-06-01,"Electric Power Consumption","New Hampshire","NH",3618 +2015-06-01,"Electric Power Consumption","Indiana","IN",9337 +2015-06-01,"Electric Power Consumption","Arizona","AZ",30516 +2015-06-01,"Electric Power Consumption","Texas","TX",145182 +2015-06-01,"Electric Power Consumption","Utah","UT",5560 +2015-06-01,"Electric Power Consumption","Oregon","OR",10384 +2015-06-01,"Electric Power Consumption","Minnesota","MN",4567 +2015-06-01,"Electric Power Consumption","Iowa","IA",1563 +2015-06-01,"Electric Power Consumption","Mississippi","MS",32118 +2015-06-01,"Electric Power Consumption","North Dakota","ND",458 +2015-06-01,"Electric Power Consumption","Colorado","CO",8013 +2015-06-01,"Electric Power Consumption","Oklahoma","OK",22032 +2015-06-01,"Electric Power Consumption","West Virginia","WV",1612 +2015-06-01,"Electric Power Consumption","Wyoming","WY",141 +2015-06-01,"Electric Power Consumption","Kentucky","KY",3618 +2015-06-01,"Electric Power Consumption","Maryland","MD",4489 +2015-06-01,"Electric Power Consumption","Georgia","GA",33548 +2015-06-01,"Electric Power Consumption","Florida","FL",105715 +2015-06-01,"Electric Power Consumption","Alabama","AL",36718 +2015-06-01,"Electric Power Consumption","Alaska","AK",2475 +2015-06-01,"Electric Power Consumption","U.S.","U.S.",886475 +2015-06-01,"Electric Power Consumption","Nebraska","NE",634 +2015-06-01,"Industrial Consumption","North Dakota","ND",2452 +2015-06-01,"Industrial Consumption","Pennsylvania","PA",15935 +2015-06-01,"Industrial Consumption","Oregon","OR",4095 +2015-06-01,"Industrial Consumption","Mississippi","MS",9893 +2015-06-01,"Industrial Consumption","Arkansas","AR",6380 +2015-06-01,"Industrial Consumption","South Carolina","SC",6700 +2015-06-01,"Industrial Consumption","Wyoming","WY",3817 +2015-06-01,"Industrial Consumption","Michigan","MI",10687 +2015-06-01,"Industrial Consumption","Indiana","IN",27518 +2015-06-01,"Industrial Consumption","Kansas","KS",9136 +2015-06-01,"Industrial Consumption","Utah","UT",2994 +2015-06-01,"Industrial Consumption","New York","NY",5363 +2015-06-01,"Industrial Consumption","Wisconsin","WI",8839 +2015-06-01,"Industrial Consumption","Alaska","AK",376 +2015-06-01,"Industrial Consumption","Louisiana","LA",75687 +2015-06-01,"Industrial Consumption","Washington","WA",5698 +2015-06-01,"Industrial Consumption","Nevada","NV",1386 +2015-06-01,"Industrial Consumption","Nebraska","NE",6459 +2015-06-01,"Industrial Consumption","New Jersey","NJ",4134 +2015-06-01,"Industrial Consumption","Montana","MT",1554 +2015-06-01,"Industrial Consumption","Missouri","MO",4629 +2015-06-01,"Industrial Consumption","New Mexico","NM",1230 +2015-06-01,"Industrial Consumption","Texas","TX",130022 +2015-06-01,"Industrial Consumption","Vermont","VT",137 +2015-06-01,"Industrial Consumption","Idaho","ID",2359 +2015-06-01,"Industrial Consumption","Iowa","IA",13627 +2015-06-01,"Industrial Consumption","Kentucky","KY",8613 +2015-06-01,"Industrial Consumption","Rhode Island","RI",666 +2015-06-01,"Industrial Consumption","Massachusetts","MA",2169 +2015-06-01,"Industrial Consumption","Hawaii","HI",44 +2015-06-01,"Industrial Consumption","Arizona","AZ",1512 +2015-06-01,"Industrial Consumption","Virginia","VA",7320 +2015-06-01,"Industrial Consumption","Minnesota","MN",10718 +2015-06-01,"Industrial Consumption","Georgia","GA",12710 +2015-06-01,"Industrial Consumption","Oklahoma","OK",12772 +2015-06-01,"Industrial Consumption","U.S.","U.S.",574682 +2015-06-01,"Industrial Consumption","California","CA",62545 +2015-06-01,"Industrial Consumption","West Virginia","WV",1916 +2015-06-01,"Industrial Consumption","Tennessee","TN",8801 +2015-06-01,"Industrial Consumption","Florida","FL",7572 +2015-06-01,"Industrial Consumption","Connecticut","CT",1733 +2015-06-01,"Industrial Consumption","North Carolina","NC",7794 +2015-06-01,"Industrial Consumption","Maryland","MD",1168 +2015-06-01,"Industrial Consumption","Colorado","CO",4872 +2015-06-01,"Industrial Consumption","South Dakota","SD",3571 +2015-06-01,"Industrial Consumption","Ohio","OH",19413 +2015-06-01,"Industrial Consumption","New Hampshire","NH",611 +2015-06-01,"Industrial Consumption","Delaware","DE",2560 +2015-06-01,"Industrial Consumption","District of Columbia","DC",0 +2015-06-01,"Industrial Consumption","Maine","ME",1629 +2015-06-01,"Industrial Consumption","Alabama","AL",14664 +2015-06-01,"Industrial Consumption","Illinois","IL",18206 +2015-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",129215 +2015-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",46785 +2015-06-01,"Residential Consumption","Rhode Island","RI",498 +2015-06-01,"Residential Consumption","Iowa","IA",1394 +2015-06-01,"Residential Consumption","Virginia","VA",1649 +2015-06-01,"Residential Consumption","District of Columbia","DC",256 +2015-06-01,"Residential Consumption","Maine","ME",71 +2015-06-01,"Residential Consumption","Kentucky","KY",900 +2015-06-01,"Residential Consumption","Ohio","OH",6095 +2015-06-01,"Residential Consumption","South Dakota","SD",278 +2015-06-01,"Residential Consumption","Nevada","NV",1497 +2015-06-01,"Residential Consumption","Minnesota","MN",2435 +2015-06-01,"Residential Consumption","Pennsylvania","PA",5380 +2015-06-01,"Residential Consumption","New Jersey","NJ",6160 +2015-06-01,"Residential Consumption","Georgia","GA",3679 +2015-06-01,"Residential Consumption","New Mexico","NM",1262 +2015-06-01,"Residential Consumption","Arkansas","AR",667 +2015-06-01,"Residential Consumption","Montana","MT",404 +2015-06-01,"Residential Consumption","California","CA",20889 +2015-06-01,"Residential Consumption","North Carolina","NC",1123 +2015-06-01,"Residential Consumption","Connecticut","CT",1330 +2015-06-01,"Residential Consumption","Vermont","VT",107 +2015-06-01,"Residential Consumption","Tennessee","TN",1202 +2015-06-01,"Residential Consumption","Nebraska","NE",971 +2015-06-01,"Residential Consumption","Michigan","MI",6616 +2015-06-01,"Residential Consumption","New Hampshire","NH",186 +2015-06-01,"Residential Consumption","Kansas","KS",1380 +2015-06-01,"Residential Consumption","Oklahoma","OK",1328 +2015-06-01,"Residential Consumption","Alabama","AL",765 +2015-06-01,"Residential Consumption","Texas","TX",6360 +2015-06-01,"Residential Consumption","Hawaii","HI",46 +2015-06-01,"Residential Consumption","Indiana","IN",2309 +2015-06-01,"Residential Consumption","Massachusetts","MA",3330 +2015-06-01,"Residential Consumption","Alaska","AK",589 +2015-06-01,"Residential Consumption","Wyoming","WY",410 +2015-06-01,"Residential Consumption","West Virginia","WV",416 +2015-06-01,"Residential Consumption","South Carolina","SC",514 +2015-06-01,"Residential Consumption","Wisconsin","WI",2481 +2015-06-01,"Residential Consumption","Utah","UT",1958 +2015-06-01,"Residential Consumption","Florida","FL",880 +2015-06-01,"Residential Consumption","Idaho","ID",521 +2015-06-01,"Residential Consumption","Maryland","MD",1783 +2015-06-01,"Residential Consumption","Washington","WA",1914 +2015-06-01,"Residential Consumption","New York","NY",13069 +2015-06-01,"Residential Consumption","Oregon","OR",963 +2015-06-01,"Residential Consumption","Mississippi","MS",652 +2015-06-01,"Residential Consumption","Louisiana","LA",1288 +2015-06-01,"Residential Consumption","North Dakota","ND",205 +2015-06-01,"Residential Consumption","Colorado","CO",3115 +2015-06-01,"Residential Consumption","Missouri","MO",1807 +2015-06-01,"Residential Consumption","Delaware","DE",194 +2015-06-01,"Residential Consumption","Arizona","AZ",1320 +2015-06-01,"Residential Consumption","U.S.","U.S.",124066 +2015-06-01,"Residential Consumption","Illinois","IL",9419 +2015-06-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",22 +2015-06-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2015-06-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-06-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-06-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-06-01,"Vehicle Fuel Consumption","Washington","WA",37 +2015-06-01,"Vehicle Fuel Consumption","New York","NY",278 +2015-06-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-06-01,"Vehicle Fuel Consumption","Texas","TX",361 +2015-06-01,"Vehicle Fuel Consumption","Colorado","CO",30 +2015-06-01,"Vehicle Fuel Consumption","California","CA",1498 +2015-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-06-01,"Vehicle Fuel Consumption","Alabama","AL",25 +2015-06-01,"Vehicle Fuel Consumption","Florida","FL",28 +2015-06-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2015-06-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-06-01,"Vehicle Fuel Consumption","Michigan","MI",25 +2015-06-01,"Vehicle Fuel Consumption","Georgia","GA",132 +2015-06-01,"Vehicle Fuel Consumption","Illinois","IL",32 +2015-06-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2015-06-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-06-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-06-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2015-06-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",37 +2015-06-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-06-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-06-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-06-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",66 +2015-06-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-06-01,"Vehicle Fuel Consumption","Utah","UT",27 +2015-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-06-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2015-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",44 +2015-06-01,"Vehicle Fuel Consumption","Nevada","NV",92 +2015-06-01,"Vehicle Fuel Consumption","Arizona","AZ",181 +2015-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",3238 +2015-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-06-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2015-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-06-01,"Vehicle Fuel Consumption","Kansas","KS",8 +2015-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2015-06-01,"Vehicle Fuel Consumption","Oregon","OR",17 +2015-06-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",67 +2015-07-01,"Commercial Consumption","Oklahoma","OK",1530 +2015-07-01,"Commercial Consumption","Virginia","VA",2716 +2015-07-01,"Commercial Consumption","South Dakota","SD",305 +2015-07-01,"Commercial Consumption","Montana","MT",595 +2015-07-01,"Commercial Consumption","Illinois","IL",7358 +2015-07-01,"Commercial Consumption","Minnesota","MN",2516 +2015-07-01,"Commercial Consumption","Missouri","MO",1881 +2015-07-01,"Commercial Consumption","Wisconsin","WI",2781 +2015-07-01,"Commercial Consumption","Georgia","GA",2162 +2015-07-01,"Commercial Consumption","South Carolina","SC",1316 +2015-07-01,"Commercial Consumption","North Carolina","NC",2487 +2015-07-01,"Commercial Consumption","New Mexico","NM",980 +2015-07-01,"Commercial Consumption","Oregon","OR",934 +2015-07-01,"Commercial Consumption","Massachusetts","MA",3883 +2015-07-01,"Commercial Consumption","Kansas","KS",1709 +2015-07-01,"Commercial Consumption","Ohio","OH",4679 +2015-07-01,"Commercial Consumption","Alabama","AL",1117 +2015-07-01,"Commercial Consumption","Tennessee","TN",2040 +2015-07-01,"Commercial Consumption","Idaho","ID",627 +2015-07-01,"Commercial Consumption","Connecticut","CT",2321 +2015-07-01,"Commercial Consumption","California","CA",15782 +2015-07-01,"Commercial Consumption","New York","NY",14458 +2015-07-01,"Commercial Consumption","Indiana","IN",2357 +2015-07-01,"Commercial Consumption","West Virginia","WV",1003 +2015-07-01,"Commercial Consumption","Utah","UT",1181 +2015-07-01,"Commercial Consumption","New Jersey","NJ",7475 +2015-07-01,"Commercial Consumption","Kentucky","KY",1192 +2015-07-01,"Commercial Consumption","U.S.","U.S.",133728 +2015-07-01,"Commercial Consumption","Florida","FL",4483 +2015-07-01,"Commercial Consumption","Alaska","AK",662 +2015-07-01,"Commercial Consumption","Louisiana","LA",1772 +2015-07-01,"Commercial Consumption","North Dakota","ND",307 +2015-07-01,"Commercial Consumption","Texas","TX",10649 +2015-07-01,"Commercial Consumption","Maryland","MD",2943 +2015-07-01,"Commercial Consumption","Iowa","IA",1597 +2015-07-01,"Commercial Consumption","Hawaii","HI",159 +2015-07-01,"Commercial Consumption","Arizona","AZ",1758 +2015-07-01,"Commercial Consumption","Nevada","NV",1610 +2015-07-01,"Commercial Consumption","Michigan","MI",5034 +2015-07-01,"Commercial Consumption","Wyoming","WY",422 +2015-07-01,"Commercial Consumption","Washington","WA",2067 +2015-07-01,"Commercial Consumption","Pennsylvania","PA",4390 +2015-07-01,"Commercial Consumption","New Hampshire","NH",229 +2015-07-01,"Commercial Consumption","Maine","ME",417 +2015-07-01,"Commercial Consumption","Nebraska","NE",1264 +2015-07-01,"Commercial Consumption","Mississippi","MS",961 +2015-07-01,"Commercial Consumption","Delaware","DE",393 +2015-07-01,"Commercial Consumption","District of Columbia","DC",712 +2015-07-01,"Commercial Consumption","Colorado","CO",1521 +2015-07-01,"Commercial Consumption","Vermont","VT",340 +2015-07-01,"Commercial Consumption","Rhode Island","RI",262 +2015-07-01,"Commercial Consumption","Arkansas","AR",2388 +2015-07-01,"Delivered to Consumers","Delaware","DE",9035 +2015-07-01,"Delivered to Consumers","Rhode Island","RI",8236 +2015-07-01,"Delivered to Consumers","Kansas","KS",17013 +2015-07-01,"Delivered to Consumers","Tennessee","TN",19253 +2015-07-01,"Delivered to Consumers","Arkansas","AR",22239 +2015-07-01,"Delivered to Consumers","Nevada","NV",25168 +2015-07-01,"Delivered to Consumers","New Jersey","NJ",47893 +2015-07-01,"Delivered to Consumers","New Hampshire","NH",5202 +2015-07-01,"Delivered to Consumers","North Dakota","ND",3661 +2015-07-01,"Delivered to Consumers","Minnesota","MN",22278 +2015-07-01,"Delivered to Consumers","District of Columbia","DC",1044 +2015-07-01,"Delivered to Consumers","U.S.","U.S.",1882675 +2015-07-01,"Delivered to Consumers","Oklahoma","OK",45294 +2015-07-01,"Delivered to Consumers","Nebraska","NE",10980 +2015-07-01,"Delivered to Consumers","North Carolina","NC",37444 +2015-07-01,"Delivered to Consumers","Mississippi","MS",45994 +2015-07-01,"Delivered to Consumers","California","CA",189714 +2015-07-01,"Delivered to Consumers","Wisconsin","WI",24913 +2015-07-01,"Delivered to Consumers","Oregon","OR",18144 +2015-07-01,"Delivered to Consumers","Maine","ME",3233 +2015-07-01,"Delivered to Consumers","Utah","UT",11431 +2015-07-01,"Delivered to Consumers","Vermont","VT",587 +2015-07-01,"Delivered to Consumers","Illinois","IL",45902 +2015-07-01,"Delivered to Consumers","New York","NY",84611 +2015-07-01,"Delivered to Consumers","Kentucky","KY",16776 +2015-07-01,"Delivered to Consumers","Connecticut","CT",16781 +2015-07-01,"Delivered to Consumers","Alabama","AL",56806 +2015-07-01,"Delivered to Consumers","Virginia","VA",40618 +2015-07-01,"Delivered to Consumers","Washington","WA",21691 +2015-07-01,"Delivered to Consumers","Wyoming","WY",4709 +2015-07-01,"Delivered to Consumers","West Virginia","WV",5148 +2015-07-01,"Delivered to Consumers","Pennsylvania","PA",71941 +2015-07-01,"Delivered to Consumers","Colorado","CO",18580 +2015-07-01,"Delivered to Consumers","New Mexico","NM",11096 +2015-07-01,"Delivered to Consumers","Montana","MT",2777 +2015-07-01,"Delivered to Consumers","Alaska","AK",3917 +2015-07-01,"Delivered to Consumers","Ohio","OH",49234 +2015-07-01,"Delivered to Consumers","Michigan","MI",38035 +2015-07-01,"Delivered to Consumers","Iowa","IA",19398 +2015-07-01,"Delivered to Consumers","South Carolina","SC",23633 +2015-07-01,"Delivered to Consumers","Florida","FL",123817 +2015-07-01,"Delivered to Consumers","Maryland","MD",12444 +2015-07-01,"Delivered to Consumers","Hawaii","HI",242 +2015-07-01,"Delivered to Consumers","Idaho","ID",6406 +2015-07-01,"Delivered to Consumers","Massachusetts","MA",31968 +2015-07-01,"Delivered to Consumers","Texas","TX",330573 +2015-07-01,"Delivered to Consumers","Louisiana","LA",117126 +2015-07-01,"Delivered to Consumers","Georgia","GA",58833 +2015-07-01,"Delivered to Consumers","Indiana","IN",43055 +2015-07-01,"Delivered to Consumers","South Dakota","SD",5033 +2015-07-01,"Delivered to Consumers","Missouri","MO",14620 +2015-07-01,"Delivered to Consumers","Arizona","AZ",38149 +2015-07-01,"Electric Power Consumption","Texas","TX",179372 +2015-07-01,"Electric Power Consumption","Iowa","IA",2812 +2015-07-01,"Electric Power Consumption","South Dakota","SD",1040 +2015-07-01,"Electric Power Consumption","Nebraska","NE",1164 +2015-07-01,"Electric Power Consumption","Missouri","MO",6396 +2015-07-01,"Electric Power Consumption","Kentucky","KY",6197 +2015-07-01,"Electric Power Consumption","Georgia","GA",39865 +2015-07-01,"Electric Power Consumption","California","CA",83645 +2015-07-01,"Electric Power Consumption","Alaska","AK",2366 +2015-07-01,"Electric Power Consumption","Colorado","CO",9396 +2015-07-01,"Electric Power Consumption","Oregon","OR",12432 +2015-07-01,"Electric Power Consumption","Minnesota","MN",7131 +2015-07-01,"Electric Power Consumption","Massachusetts","MA",23110 +2015-07-01,"Electric Power Consumption","Oklahoma","OK",30270 +2015-07-01,"Electric Power Consumption","Utah","UT",5845 +2015-07-01,"Electric Power Consumption","Michigan","MI",16264 +2015-07-01,"Electric Power Consumption","Nevada","NV",20918 +2015-07-01,"Electric Power Consumption","Indiana","IN",10272 +2015-07-01,"Electric Power Consumption","Delaware","DE",5798 +2015-07-01,"Electric Power Consumption","Connecticut","CT",11634 +2015-07-01,"Electric Power Consumption","Washington","WA",12516 +2015-07-01,"Electric Power Consumption","New Mexico","NM",7914 +2015-07-01,"Electric Power Consumption","Louisiana","LA",36917 +2015-07-01,"Electric Power Consumption","New York","NY",54257 +2015-07-01,"Electric Power Consumption","Illinois","IL",10938 +2015-07-01,"Electric Power Consumption","Wisconsin","WI",10791 +2015-07-01,"Electric Power Consumption","Hawaii","HI",NA +2015-07-01,"Electric Power Consumption","New Hampshire","NH",4211 +2015-07-01,"Electric Power Consumption","Idaho","ID",3182 +2015-07-01,"Electric Power Consumption","Arkansas","AR",12815 +2015-07-01,"Electric Power Consumption","Tennessee","TN",7585 +2015-07-01,"Electric Power Consumption","Maine","ME",1176 +2015-07-01,"Electric Power Consumption","Ohio","OH",20036 +2015-07-01,"Electric Power Consumption","Florida","FL",110857 +2015-07-01,"Electric Power Consumption","Virginia","VA",29067 +2015-07-01,"Electric Power Consumption","Rhode Island","RI",6879 +2015-07-01,"Electric Power Consumption","U.S.","U.S.",1045542 +2015-07-01,"Electric Power Consumption","North Carolina","NC",26073 +2015-07-01,"Electric Power Consumption","Maryland","MD",6702 +2015-07-01,"Electric Power Consumption","Kansas","KS",3116 +2015-07-01,"Electric Power Consumption","Vermont","VT",0 +2015-07-01,"Electric Power Consumption","North Dakota","ND",1187 +2015-07-01,"Electric Power Consumption","Montana","MT",356 +2015-07-01,"Electric Power Consumption","Arizona","AZ",33640 +2015-07-01,"Electric Power Consumption","Alabama","AL",39113 +2015-07-01,"Electric Power Consumption","New Jersey","NJ",30696 +2015-07-01,"Electric Power Consumption","South Carolina","SC",15096 +2015-07-01,"Electric Power Consumption","West Virginia","WV",2142 +2015-07-01,"Electric Power Consumption","Pennsylvania","PA",47447 +2015-07-01,"Electric Power Consumption","Wyoming","WY",216 +2015-07-01,"Electric Power Consumption","Mississippi","MS",34689 +2015-07-01,"Industrial Consumption","Massachusetts","MA",2265 +2015-07-01,"Industrial Consumption","Kansas","KS",11029 +2015-07-01,"Industrial Consumption","California","CA",69806 +2015-07-01,"Industrial Consumption","Nebraska","NE",7738 +2015-07-01,"Industrial Consumption","Florida","FL",7605 +2015-07-01,"Industrial Consumption","North Carolina","NC",7855 +2015-07-01,"Industrial Consumption","Alaska","AK",390 +2015-07-01,"Industrial Consumption","New Mexico","NM",1379 +2015-07-01,"Industrial Consumption","Nevada","NV",1425 +2015-07-01,"Industrial Consumption","Indiana","IN",28246 +2015-07-01,"Industrial Consumption","Montana","MT",1441 +2015-07-01,"Industrial Consumption","Maryland","MD",1123 +2015-07-01,"Industrial Consumption","South Dakota","SD",3499 +2015-07-01,"Industrial Consumption","U.S.","U.S.",591900 +2015-07-01,"Industrial Consumption","Oregon","OR",3919 +2015-07-01,"Industrial Consumption","New York","NY",5279 +2015-07-01,"Industrial Consumption","Minnesota","MN",10333 +2015-07-01,"Industrial Consumption","Delaware","DE",2668 +2015-07-01,"Industrial Consumption","Colorado","CO",5000 +2015-07-01,"Industrial Consumption","South Carolina","SC",6697 +2015-07-01,"Industrial Consumption","District of Columbia","DC",0 +2015-07-01,"Industrial Consumption","Ohio","OH",19463 +2015-07-01,"Industrial Consumption","Arizona","AZ",1498 +2015-07-01,"Industrial Consumption","Pennsylvania","PA",15910 +2015-07-01,"Industrial Consumption","Mississippi","MS",9717 +2015-07-01,"Industrial Consumption","Illinois","IL",19614 +2015-07-01,"Industrial Consumption","Louisiana","LA",77128 +2015-07-01,"Industrial Consumption","Washington","WA",5370 +2015-07-01,"Industrial Consumption","Utah","UT",2744 +2015-07-01,"Industrial Consumption","Arkansas","AR",6434 +2015-07-01,"Industrial Consumption","Texas","TX",133700 +2015-07-01,"Industrial Consumption","Vermont","VT",156 +2015-07-01,"Industrial Consumption","New Jersey","NJ",4218 +2015-07-01,"Industrial Consumption","Connecticut","CT",1736 +2015-07-01,"Industrial Consumption","Rhode Island","RI",650 +2015-07-01,"Industrial Consumption","Georgia","GA",13006 +2015-07-01,"Industrial Consumption","Oklahoma","OK",12251 +2015-07-01,"Industrial Consumption","Missouri","MO",4742 +2015-07-01,"Industrial Consumption","Maine","ME",1591 +2015-07-01,"Industrial Consumption","Virginia","VA",7286 +2015-07-01,"Industrial Consumption","Wisconsin","WI",8853 +2015-07-01,"Industrial Consumption","Tennessee","TN",8574 +2015-07-01,"Industrial Consumption","New Hampshire","NH",606 +2015-07-01,"Industrial Consumption","Kentucky","KY",8479 +2015-07-01,"Industrial Consumption","North Dakota","ND",1999 +2015-07-01,"Industrial Consumption","Hawaii","HI",38 +2015-07-01,"Industrial Consumption","Alabama","AL",15830 +2015-07-01,"Industrial Consumption","West Virginia","WV",1757 +2015-07-01,"Industrial Consumption","Wyoming","WY",3826 +2015-07-01,"Industrial Consumption","Idaho","ID",2091 +2015-07-01,"Industrial Consumption","Iowa","IA",13797 +2015-07-01,"Industrial Consumption","Michigan","MI",11139 +2015-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",133945 +2015-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",51094 +2015-07-01,"Residential Consumption","Pennsylvania","PA",4148 +2015-07-01,"Residential Consumption","New Mexico","NM",808 +2015-07-01,"Residential Consumption","Massachusetts","MA",2641 +2015-07-01,"Residential Consumption","California","CA",18932 +2015-07-01,"Residential Consumption","Ohio","OH",5012 +2015-07-01,"Residential Consumption","Tennessee","TN",1033 +2015-07-01,"Residential Consumption","Missouri","MO",1595 +2015-07-01,"Residential Consumption","West Virginia","WV",243 +2015-07-01,"Residential Consumption","Iowa","IA",1189 +2015-07-01,"Residential Consumption","Connecticut","CT",1089 +2015-07-01,"Residential Consumption","Wisconsin","WI",2478 +2015-07-01,"Residential Consumption","Michigan","MI",5572 +2015-07-01,"Residential Consumption","Georgia","GA",3663 +2015-07-01,"Residential Consumption","North Dakota","ND",168 +2015-07-01,"Residential Consumption","Washington","WA",1700 +2015-07-01,"Residential Consumption","Alabama","AL",721 +2015-07-01,"Residential Consumption","Wyoming","WY",244 +2015-07-01,"Residential Consumption","Oregon","OR",840 +2015-07-01,"Residential Consumption","Nevada","NV",1120 +2015-07-01,"Residential Consumption","Illinois","IL",7959 +2015-07-01,"Residential Consumption","Texas","TX",6479 +2015-07-01,"Residential Consumption","South Carolina","SC",520 +2015-07-01,"Residential Consumption","Mississippi","MS",620 +2015-07-01,"Residential Consumption","Vermont","VT",89 +2015-07-01,"Residential Consumption","Nebraska","NE",809 +2015-07-01,"Residential Consumption","Minnesota","MN",2292 +2015-07-01,"Residential Consumption","Idaho","ID",494 +2015-07-01,"Residential Consumption","Kentucky","KY",899 +2015-07-01,"Residential Consumption","U.S.","U.S.",108160 +2015-07-01,"Residential Consumption","Rhode Island","RI",437 +2015-07-01,"Residential Consumption","North Carolina","NC",1016 +2015-07-01,"Residential Consumption","Utah","UT",1634 +2015-07-01,"Residential Consumption","Florida","FL",844 +2015-07-01,"Residential Consumption","New Hampshire","NH",151 +2015-07-01,"Residential Consumption","New York","NY",10330 +2015-07-01,"Residential Consumption","Louisiana","LA",1295 +2015-07-01,"Residential Consumption","Hawaii","HI",45 +2015-07-01,"Residential Consumption","District of Columbia","DC",264 +2015-07-01,"Residential Consumption","Maine","ME",49 +2015-07-01,"Residential Consumption","Arkansas","AR",598 +2015-07-01,"Residential Consumption","Montana","MT",385 +2015-07-01,"Residential Consumption","Kansas","KS",1151 +2015-07-01,"Residential Consumption","Oklahoma","OK",1204 +2015-07-01,"Residential Consumption","Delaware","DE",175 +2015-07-01,"Residential Consumption","Arizona","AZ",1066 +2015-07-01,"Residential Consumption","Virginia","VA",1526 +2015-07-01,"Residential Consumption","Maryland","MD",1657 +2015-07-01,"Residential Consumption","South Dakota","SD",190 +2015-07-01,"Residential Consumption","Indiana","IN",2172 +2015-07-01,"Residential Consumption","New Jersey","NJ",5481 +2015-07-01,"Residential Consumption","Colorado","CO",2633 +2015-07-01,"Residential Consumption","Alaska","AK",499 +2015-07-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-07-01,"Vehicle Fuel Consumption","Washington","WA",38 +2015-07-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2015-07-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2015-07-01,"Vehicle Fuel Consumption","Utah","UT",28 +2015-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-07-01,"Vehicle Fuel Consumption","Texas","TX",373 +2015-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2015-07-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2015-07-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-07-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-07-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-07-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-07-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-07-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-07-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-07-01,"Vehicle Fuel Consumption","Georgia","GA",136 +2015-07-01,"Vehicle Fuel Consumption","Ohio","OH",44 +2015-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-07-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-07-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2015-07-01,"Vehicle Fuel Consumption","California","CA",1548 +2015-07-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2015-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2015-07-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2015-07-01,"Vehicle Fuel Consumption","Kansas","KS",9 +2015-07-01,"Vehicle Fuel Consumption","Florida","FL",29 +2015-07-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-07-01,"Vehicle Fuel Consumption","Colorado","CO",31 +2015-07-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2015-07-01,"Vehicle Fuel Consumption","New York","NY",288 +2015-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2015-07-01,"Vehicle Fuel Consumption","Arizona","AZ",187 +2015-07-01,"Vehicle Fuel Consumption","Nebraska","NE",5 +2015-07-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",69 +2015-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2015-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-07-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",45 +2015-07-01,"Vehicle Fuel Consumption","Alabama","AL",26 +2015-07-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2015-07-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-07-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",3345 +2015-08-01,"Commercial Consumption","West Virginia","WV",869 +2015-08-01,"Commercial Consumption","Colorado","CO",1408 +2015-08-01,"Commercial Consumption","Oregon","OR",916 +2015-08-01,"Commercial Consumption","Pennsylvania","PA",4642 +2015-08-01,"Commercial Consumption","Missouri","MO",2161 +2015-08-01,"Commercial Consumption","Maine","ME",428 +2015-08-01,"Commercial Consumption","Florida","FL",4405 +2015-08-01,"Commercial Consumption","Rhode Island","RI",253 +2015-08-01,"Commercial Consumption","New York","NY",14826 +2015-08-01,"Commercial Consumption","Nebraska","NE",1044 +2015-08-01,"Commercial Consumption","Kentucky","KY",1205 +2015-08-01,"Commercial Consumption","Texas","TX",9420 +2015-08-01,"Commercial Consumption","Georgia","GA",2277 +2015-08-01,"Commercial Consumption","Iowa","IA",1495 +2015-08-01,"Commercial Consumption","California","CA",16351 +2015-08-01,"Commercial Consumption","Alabama","AL",1147 +2015-08-01,"Commercial Consumption","Oklahoma","OK",1566 +2015-08-01,"Commercial Consumption","Massachusetts","MA",3869 +2015-08-01,"Commercial Consumption","South Dakota","SD",310 +2015-08-01,"Commercial Consumption","Maryland","MD",2986 +2015-08-01,"Commercial Consumption","Vermont","VT",316 +2015-08-01,"Commercial Consumption","Arkansas","AR",2517 +2015-08-01,"Commercial Consumption","District of Columbia","DC",770 +2015-08-01,"Commercial Consumption","South Carolina","SC",1380 +2015-08-01,"Commercial Consumption","North Carolina","NC",2452 +2015-08-01,"Commercial Consumption","Virginia","VA",2646 +2015-08-01,"Commercial Consumption","New Hampshire","NH",233 +2015-08-01,"Commercial Consumption","Montana","MT",582 +2015-08-01,"Commercial Consumption","Kansas","KS",2149 +2015-08-01,"Commercial Consumption","Delaware","DE",429 +2015-08-01,"Commercial Consumption","Tennessee","TN",2057 +2015-08-01,"Commercial Consumption","Washington","WA",1994 +2015-08-01,"Commercial Consumption","North Dakota","ND",310 +2015-08-01,"Commercial Consumption","Wisconsin","WI",2963 +2015-08-01,"Commercial Consumption","U.S.","U.S.",135279 +2015-08-01,"Commercial Consumption","Mississippi","MS",1046 +2015-08-01,"Commercial Consumption","Indiana","IN",2171 +2015-08-01,"Commercial Consumption","Minnesota","MN",2884 +2015-08-01,"Commercial Consumption","New Jersey","NJ",7173 +2015-08-01,"Commercial Consumption","Ohio","OH",4716 +2015-08-01,"Commercial Consumption","Hawaii","HI",156 +2015-08-01,"Commercial Consumption","Arizona","AZ",1651 +2015-08-01,"Commercial Consumption","Nevada","NV",1722 +2015-08-01,"Commercial Consumption","Utah","UT",1170 +2015-08-01,"Commercial Consumption","New Mexico","NM",1068 +2015-08-01,"Commercial Consumption","Connecticut","CT",2451 +2015-08-01,"Commercial Consumption","Michigan","MI",5372 +2015-08-01,"Commercial Consumption","Louisiana","LA",1868 +2015-08-01,"Commercial Consumption","Illinois","IL",7840 +2015-08-01,"Commercial Consumption","Wyoming","WY",298 +2015-08-01,"Commercial Consumption","Idaho","ID",603 +2015-08-01,"Commercial Consumption","Alaska","AK",717 +2015-08-01,"Delivered to Consumers","Indiana","IN",42240 +2015-08-01,"Delivered to Consumers","Illinois","IL",42179 +2015-08-01,"Delivered to Consumers","Montana","MT",3616 +2015-08-01,"Delivered to Consumers","Maryland","MD",10485 +2015-08-01,"Delivered to Consumers","Ohio","OH",47860 +2015-08-01,"Delivered to Consumers","Michigan","MI",36156 +2015-08-01,"Delivered to Consumers","Texas","TX",334353 +2015-08-01,"Delivered to Consumers","North Dakota","ND",4167 +2015-08-01,"Delivered to Consumers","New York","NY",85551 +2015-08-01,"Delivered to Consumers","Alaska","AK",3876 +2015-08-01,"Delivered to Consumers","Idaho","ID",7023 +2015-08-01,"Delivered to Consumers","Tennessee","TN",17834 +2015-08-01,"Delivered to Consumers","Wisconsin","WI",23143 +2015-08-01,"Delivered to Consumers","New Mexico","NM",12012 +2015-08-01,"Delivered to Consumers","Virginia","VA",37663 +2015-08-01,"Delivered to Consumers","Nebraska","NE",9676 +2015-08-01,"Delivered to Consumers","Mississippi","MS",43315 +2015-08-01,"Delivered to Consumers","Missouri","MO",13856 +2015-08-01,"Delivered to Consumers","West Virginia","WV",4925 +2015-08-01,"Delivered to Consumers","South Dakota","SD",4873 +2015-08-01,"Delivered to Consumers","Rhode Island","RI",8366 +2015-08-01,"Delivered to Consumers","Kansas","KS",16449 +2015-08-01,"Delivered to Consumers","Iowa","IA",18721 +2015-08-01,"Delivered to Consumers","Pennsylvania","PA",71126 +2015-08-01,"Delivered to Consumers","California","CA",195602 +2015-08-01,"Delivered to Consumers","South Carolina","SC",22520 +2015-08-01,"Delivered to Consumers","Oregon","OR",17525 +2015-08-01,"Delivered to Consumers","Nevada","NV",27596 +2015-08-01,"Delivered to Consumers","Maine","ME",3887 +2015-08-01,"Delivered to Consumers","Arizona","AZ",42348 +2015-08-01,"Delivered to Consumers","Washington","WA",20291 +2015-08-01,"Delivered to Consumers","Utah","UT",11740 +2015-08-01,"Delivered to Consumers","U.S.","U.S.",1867936 +2015-08-01,"Delivered to Consumers","Oklahoma","OK",44244 +2015-08-01,"Delivered to Consumers","Connecticut","CT",17632 +2015-08-01,"Delivered to Consumers","Arkansas","AR",22088 +2015-08-01,"Delivered to Consumers","Alabama","AL",54599 +2015-08-01,"Delivered to Consumers","North Carolina","NC",36748 +2015-08-01,"Delivered to Consumers","Colorado","CO",18748 +2015-08-01,"Delivered to Consumers","Minnesota","MN",22035 +2015-08-01,"Delivered to Consumers","Georgia","GA",54749 +2015-08-01,"Delivered to Consumers","Florida","FL",125213 +2015-08-01,"Delivered to Consumers","Wyoming","WY",4418 +2015-08-01,"Delivered to Consumers","Vermont","VT",544 +2015-08-01,"Delivered to Consumers","Hawaii","HI",239 +2015-08-01,"Delivered to Consumers","New Jersey","NJ",45019 +2015-08-01,"Delivered to Consumers","New Hampshire","NH",5571 +2015-08-01,"Delivered to Consumers","District of Columbia","DC",1101 +2015-08-01,"Delivered to Consumers","Delaware","DE",8401 +2015-08-01,"Delivered to Consumers","Kentucky","KY",15667 +2015-08-01,"Delivered to Consumers","Massachusetts","MA",32327 +2015-08-01,"Delivered to Consumers","Louisiana","LA",117620 +2015-08-01,"Electric Power Consumption","Texas","TX",183710 +2015-08-01,"Electric Power Consumption","Utah","UT",6232 +2015-08-01,"Electric Power Consumption","Minnesota","MN",6268 +2015-08-01,"Electric Power Consumption","Kansas","KS",2012 +2015-08-01,"Electric Power Consumption","Vermont","VT",0 +2015-08-01,"Electric Power Consumption","North Carolina","NC",24915 +2015-08-01,"Electric Power Consumption","North Dakota","ND",1129 +2015-08-01,"Electric Power Consumption","Maryland","MD",4973 +2015-08-01,"Electric Power Consumption","Alabama","AL",37362 +2015-08-01,"Electric Power Consumption","Massachusetts","MA",23712 +2015-08-01,"Electric Power Consumption","Pennsylvania","PA",47012 +2015-08-01,"Electric Power Consumption","Hawaii","HI",NA +2015-08-01,"Electric Power Consumption","Alaska","AK",2225 +2015-08-01,"Electric Power Consumption","Wisconsin","WI",8706 +2015-08-01,"Electric Power Consumption","Mississippi","MS",32028 +2015-08-01,"Electric Power Consumption","South Carolina","SC",13804 +2015-08-01,"Electric Power Consumption","Michigan","MI",13677 +2015-08-01,"Electric Power Consumption","Iowa","IA",2180 +2015-08-01,"Electric Power Consumption","South Dakota","SD",809 +2015-08-01,"Electric Power Consumption","Maine","ME",1856 +2015-08-01,"Electric Power Consumption","Ohio","OH",19302 +2015-08-01,"Electric Power Consumption","Connecticut","CT",12406 +2015-08-01,"Electric Power Consumption","Georgia","GA",35866 +2015-08-01,"Electric Power Consumption","New Mexico","NM",8656 +2015-08-01,"Electric Power Consumption","Oklahoma","OK",27986 +2015-08-01,"Electric Power Consumption","West Virginia","WV",1870 +2015-08-01,"Electric Power Consumption","U.S.","U.S.",1026590 +2015-08-01,"Electric Power Consumption","Indiana","IN",9932 +2015-08-01,"Electric Power Consumption","Colorado","CO",9911 +2015-08-01,"Electric Power Consumption","Arkansas","AR",12556 +2015-08-01,"Electric Power Consumption","New York","NY",54490 +2015-08-01,"Electric Power Consumption","Rhode Island","RI",7028 +2015-08-01,"Electric Power Consumption","Oregon","OR",11706 +2015-08-01,"Electric Power Consumption","Virginia","VA",26159 +2015-08-01,"Electric Power Consumption","New Jersey","NJ",29196 +2015-08-01,"Electric Power Consumption","Illinois","IL",7798 +2015-08-01,"Electric Power Consumption","Tennessee","TN",5993 +2015-08-01,"Electric Power Consumption","Nebraska","NE",826 +2015-08-01,"Electric Power Consumption","Missouri","MO",5561 +2015-08-01,"Electric Power Consumption","New Hampshire","NH",4622 +2015-08-01,"Electric Power Consumption","Montana","MT",683 +2015-08-01,"Electric Power Consumption","Arizona","AZ",38045 +2015-08-01,"Electric Power Consumption","Florida","FL",112839 +2015-08-01,"Electric Power Consumption","Washington","WA",10989 +2015-08-01,"Electric Power Consumption","Louisiana","LA",33918 +2015-08-01,"Electric Power Consumption","Idaho","ID",3629 +2015-08-01,"Electric Power Consumption","Nevada","NV",23127 +2015-08-01,"Electric Power Consumption","Wyoming","WY",154 +2015-08-01,"Electric Power Consumption","Kentucky","KY",4723 +2015-08-01,"Electric Power Consumption","Delaware","DE",5158 +2015-08-01,"Electric Power Consumption","California","CA",88850 +2015-08-01,"Industrial Consumption","Oklahoma","OK",13427 +2015-08-01,"Industrial Consumption","Tennessee","TN",8767 +2015-08-01,"Industrial Consumption","Mississippi","MS",9646 +2015-08-01,"Industrial Consumption","Arkansas","AR",6455 +2015-08-01,"Industrial Consumption","South Carolina","SC",6802 +2015-08-01,"Industrial Consumption","New Hampshire","NH",566 +2015-08-01,"Industrial Consumption","Michigan","MI",11210 +2015-08-01,"Industrial Consumption","Indiana","IN",28121 +2015-08-01,"Industrial Consumption","Delaware","DE",2636 +2015-08-01,"Industrial Consumption","North Carolina","NC",8155 +2015-08-01,"Industrial Consumption","Montana","MT",1970 +2015-08-01,"Industrial Consumption","South Dakota","SD",3534 +2015-08-01,"Industrial Consumption","Ohio","OH",19080 +2015-08-01,"Industrial Consumption","Nevada","NV",1463 +2015-08-01,"Industrial Consumption","Maine","ME",1555 +2015-08-01,"Industrial Consumption","Florida","FL",7298 +2015-08-01,"Industrial Consumption","Maryland","MD",927 +2015-08-01,"Industrial Consumption","Kansas","KS",10837 +2015-08-01,"Industrial Consumption","Arizona","AZ",1487 +2015-08-01,"Industrial Consumption","New York","NY",5803 +2015-08-01,"Industrial Consumption","Texas","TX",135975 +2015-08-01,"Industrial Consumption","Nebraska","NE",7106 +2015-08-01,"Industrial Consumption","Virginia","VA",7360 +2015-08-01,"Industrial Consumption","Vermont","VT",153 +2015-08-01,"Industrial Consumption","Wyoming","WY",3765 +2015-08-01,"Industrial Consumption","Kentucky","KY",8841 +2015-08-01,"Industrial Consumption","Rhode Island","RI",673 +2015-08-01,"Industrial Consumption","Georgia","GA",12720 +2015-08-01,"Industrial Consumption","Louisiana","LA",80615 +2015-08-01,"Industrial Consumption","New Mexico","NM",1434 +2015-08-01,"Industrial Consumption","Utah","UT",2755 +2015-08-01,"Industrial Consumption","Pennsylvania","PA",15364 +2015-08-01,"Industrial Consumption","Colorado","CO",4996 +2015-08-01,"Industrial Consumption","Oregon","OR",4064 +2015-08-01,"Industrial Consumption","Wisconsin","WI",9153 +2015-08-01,"Industrial Consumption","New Jersey","NJ",4039 +2015-08-01,"Industrial Consumption","Illinois","IL",18717 +2015-08-01,"Industrial Consumption","District of Columbia","DC",0 +2015-08-01,"Industrial Consumption","Missouri","MO",4399 +2015-08-01,"Industrial Consumption","Alabama","AL",15358 +2015-08-01,"Industrial Consumption","Iowa","IA",13991 +2015-08-01,"Industrial Consumption","Connecticut","CT",1804 +2015-08-01,"Industrial Consumption","Alaska","AK",402 +2015-08-01,"Industrial Consumption","North Dakota","ND",2519 +2015-08-01,"Industrial Consumption","Massachusetts","MA",2215 +2015-08-01,"Industrial Consumption","Hawaii","HI",41 +2015-08-01,"Industrial Consumption","Washington","WA",5633 +2015-08-01,"Industrial Consumption","U.S.","U.S.",599867 +2015-08-01,"Industrial Consumption","California","CA",71454 +2015-08-01,"Industrial Consumption","West Virginia","WV",1846 +2015-08-01,"Industrial Consumption","Minnesota","MN",10324 +2015-08-01,"Industrial Consumption","Idaho","ID",2412 +2015-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",134098 +2015-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",50694 +2015-08-01,"Residential Consumption","South Carolina","SC",531 +2015-08-01,"Residential Consumption","Wisconsin","WI",2310 +2015-08-01,"Residential Consumption","Vermont","VT",74 +2015-08-01,"Residential Consumption","Arkansas","AR",557 +2015-08-01,"Residential Consumption","New Hampshire","NH",146 +2015-08-01,"Residential Consumption","Missouri","MO",1729 +2015-08-01,"Residential Consumption","Delaware","DE",178 +2015-08-01,"Residential Consumption","Illinois","IL",7790 +2015-08-01,"Residential Consumption","Rhode Island","RI",404 +2015-08-01,"Residential Consumption","Louisiana","LA",1205 +2015-08-01,"Residential Consumption","Utah","UT",1555 +2015-08-01,"Residential Consumption","South Dakota","SD",219 +2015-08-01,"Residential Consumption","Nevada","NV",1189 +2015-08-01,"Residential Consumption","District of Columbia","DC",262 +2015-08-01,"Residential Consumption","Kansas","KS",1442 +2015-08-01,"Residential Consumption","U.S.","U.S.",102855 +2015-08-01,"Residential Consumption","Texas","TX",4875 +2015-08-01,"Residential Consumption","Michigan","MI",5872 +2015-08-01,"Residential Consumption","Minnesota","MN",2553 +2015-08-01,"Residential Consumption","Indiana","IN",2008 +2015-08-01,"Residential Consumption","North Dakota","ND",209 +2015-08-01,"Residential Consumption","Washington","WA",1637 +2015-08-01,"Residential Consumption","New York","NY",10144 +2015-08-01,"Residential Consumption","Iowa","IA",1052 +2015-08-01,"Residential Consumption","Virginia","VA",1475 +2015-08-01,"Residential Consumption","Nebraska","NE",695 +2015-08-01,"Residential Consumption","Maryland","MD",1580 +2015-08-01,"Residential Consumption","Idaho","ID",367 +2015-08-01,"Residential Consumption","North Carolina","NC",1214 +2015-08-01,"Residential Consumption","Connecticut","CT",970 +2015-08-01,"Residential Consumption","Tennessee","TN",995 +2015-08-01,"Residential Consumption","Georgia","GA",3751 +2015-08-01,"Residential Consumption","New Mexico","NM",840 +2015-08-01,"Residential Consumption","Maine","ME",48 +2015-08-01,"Residential Consumption","Florida","FL",643 +2015-08-01,"Residential Consumption","Montana","MT",381 +2015-08-01,"Residential Consumption","Colorado","CO",2403 +2015-08-01,"Residential Consumption","Alaska","AK",531 +2015-08-01,"Residential Consumption","Kentucky","KY",889 +2015-08-01,"Residential Consumption","Oklahoma","OK",1227 +2015-08-01,"Residential Consumption","California","CA",17399 +2015-08-01,"Residential Consumption","Arizona","AZ",978 +2015-08-01,"Residential Consumption","Wyoming","WY",199 +2015-08-01,"Residential Consumption","West Virginia","WV",337 +2015-08-01,"Residential Consumption","Oregon","OR",821 +2015-08-01,"Residential Consumption","Ohio","OH",4717 +2015-08-01,"Residential Consumption","Mississippi","MS",589 +2015-08-01,"Residential Consumption","Hawaii","HI",43 +2015-08-01,"Residential Consumption","Pennsylvania","PA",4063 +2015-08-01,"Residential Consumption","Massachusetts","MA",2463 +2015-08-01,"Residential Consumption","New Jersey","NJ",4589 +2015-08-01,"Residential Consumption","Alabama","AL",706 +2015-08-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2015-08-01,"Vehicle Fuel Consumption","Kansas","KS",9 +2015-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-08-01,"Vehicle Fuel Consumption","Arizona","AZ",187 +2015-08-01,"Vehicle Fuel Consumption","Alabama","AL",26 +2015-08-01,"Vehicle Fuel Consumption","Texas","TX",373 +2015-08-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-08-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2015-08-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",69 +2015-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2015-08-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2015-08-01,"Vehicle Fuel Consumption","Colorado","CO",31 +2015-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-08-01,"Vehicle Fuel Consumption","Nebraska","NE",5 +2015-08-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-08-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-08-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-08-01,"Vehicle Fuel Consumption","Georgia","GA",136 +2015-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",3345 +2015-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",45 +2015-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2015-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2015-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-08-01,"Vehicle Fuel Consumption","California","CA",1548 +2015-08-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-08-01,"Vehicle Fuel Consumption","Ohio","OH",44 +2015-08-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-08-01,"Vehicle Fuel Consumption","Florida","FL",29 +2015-08-01,"Vehicle Fuel Consumption","Washington","WA",38 +2015-08-01,"Vehicle Fuel Consumption","Utah","UT",28 +2015-08-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-08-01,"Vehicle Fuel Consumption","New York","NY",288 +2015-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-08-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2015-08-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2015-08-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-08-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-08-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-08-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2015-08-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-08-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-08-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2015-08-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2015-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2015-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-08-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-09-01,"Commercial Consumption","North Dakota","ND",320 +2015-09-01,"Commercial Consumption","Utah","UT",1003 +2015-09-01,"Commercial Consumption","Virginia","VA",3592 +2015-09-01,"Commercial Consumption","Rhode Island","RI",247 +2015-09-01,"Commercial Consumption","Iowa","IA",1748 +2015-09-01,"Commercial Consumption","Alabama","AL",1201 +2015-09-01,"Commercial Consumption","Delaware","DE",453 +2015-09-01,"Commercial Consumption","Tennessee","TN",2225 +2015-09-01,"Commercial Consumption","Nevada","NV",1674 +2015-09-01,"Commercial Consumption","Indiana","IN",2766 +2015-09-01,"Commercial Consumption","Wyoming","WY",503 +2015-09-01,"Commercial Consumption","West Virginia","WV",1131 +2015-09-01,"Commercial Consumption","South Carolina","SC",1371 +2015-09-01,"Commercial Consumption","North Carolina","NC",2889 +2015-09-01,"Commercial Consumption","Massachusetts","MA",3972 +2015-09-01,"Commercial Consumption","Montana","MT",687 +2015-09-01,"Commercial Consumption","Illinois","IL",7827 +2015-09-01,"Commercial Consumption","Washington","WA",2520 +2015-09-01,"Commercial Consumption","Oklahoma","OK",1599 +2015-09-01,"Commercial Consumption","Missouri","MO",2112 +2015-09-01,"Commercial Consumption","Texas","TX",9633 +2015-09-01,"Commercial Consumption","Florida","FL",4206 +2015-09-01,"Commercial Consumption","California","CA",15078 +2015-09-01,"Commercial Consumption","Arkansas","AR",2654 +2015-09-01,"Commercial Consumption","South Dakota","SD",312 +2015-09-01,"Commercial Consumption","Maine","ME",435 +2015-09-01,"Commercial Consumption","U.S.","U.S.",138126 +2015-09-01,"Commercial Consumption","Georgia","GA",2421 +2015-09-01,"Commercial Consumption","Idaho","ID",718 +2015-09-01,"Commercial Consumption","Hawaii","HI",153 +2015-09-01,"Commercial Consumption","Connecticut","CT",2515 +2015-09-01,"Commercial Consumption","Arizona","AZ",1709 +2015-09-01,"Commercial Consumption","Michigan","MI",5182 +2015-09-01,"Commercial Consumption","New Hampshire","NH",240 +2015-09-01,"Commercial Consumption","Kentucky","KY",1208 +2015-09-01,"Commercial Consumption","Kansas","KS",1927 +2015-09-01,"Commercial Consumption","Ohio","OH",4465 +2015-09-01,"Commercial Consumption","Minnesota","MN",2760 +2015-09-01,"Commercial Consumption","Louisiana","LA",2175 +2015-09-01,"Commercial Consumption","District of Columbia","DC",798 +2015-09-01,"Commercial Consumption","Colorado","CO",1646 +2015-09-01,"Commercial Consumption","New Mexico","NM",1053 +2015-09-01,"Commercial Consumption","Oregon","OR",1175 +2015-09-01,"Commercial Consumption","Pennsylvania","PA",5197 +2015-09-01,"Commercial Consumption","New Jersey","NJ",7123 +2015-09-01,"Commercial Consumption","Vermont","VT",334 +2015-09-01,"Commercial Consumption","Wisconsin","WI",2866 +2015-09-01,"Commercial Consumption","Maryland","MD",2962 +2015-09-01,"Commercial Consumption","Alaska","AK",1202 +2015-09-01,"Commercial Consumption","New York","NY",14008 +2015-09-01,"Commercial Consumption","Nebraska","NE",964 +2015-09-01,"Commercial Consumption","Mississippi","MS",1169 +2015-09-01,"Delivered to Consumers","Utah","UT",10247 +2015-09-01,"Delivered to Consumers","South Dakota","SD",4316 +2015-09-01,"Delivered to Consumers","Maryland","MD",9873 +2015-09-01,"Delivered to Consumers","Alaska","AK",4434 +2015-09-01,"Delivered to Consumers","Oklahoma","OK",38036 +2015-09-01,"Delivered to Consumers","Idaho","ID",6841 +2015-09-01,"Delivered to Consumers","North Carolina","NC",35567 +2015-09-01,"Delivered to Consumers","Missouri","MO",11718 +2015-09-01,"Delivered to Consumers","Washington","WA",22065 +2015-09-01,"Delivered to Consumers","Connecticut","CT",15909 +2015-09-01,"Delivered to Consumers","Alabama","AL",50086 +2015-09-01,"Delivered to Consumers","Virginia","VA",34381 +2015-09-01,"Delivered to Consumers","California","CA",187006 +2015-09-01,"Delivered to Consumers","Florida","FL",117812 +2015-09-01,"Delivered to Consumers","U.S.","U.S.",1723960 +2015-09-01,"Delivered to Consumers","Indiana","IN",39639 +2015-09-01,"Delivered to Consumers","Vermont","VT",566 +2015-09-01,"Delivered to Consumers","Tennessee","TN",18242 +2015-09-01,"Delivered to Consumers","Ohio","OH",45403 +2015-09-01,"Delivered to Consumers","Mississippi","MS",38510 +2015-09-01,"Delivered to Consumers","Arizona","AZ",35335 +2015-09-01,"Delivered to Consumers","Delaware","DE",8088 +2015-09-01,"Delivered to Consumers","Wyoming","WY",4558 +2015-09-01,"Delivered to Consumers","Montana","MT",2957 +2015-09-01,"Delivered to Consumers","Massachusetts","MA",26010 +2015-09-01,"Delivered to Consumers","South Carolina","SC",20583 +2015-09-01,"Delivered to Consumers","Louisiana","LA",108898 +2015-09-01,"Delivered to Consumers","New Hampshire","NH",4925 +2015-09-01,"Delivered to Consumers","District of Columbia","DC",1141 +2015-09-01,"Delivered to Consumers","Arkansas","AR",18174 +2015-09-01,"Delivered to Consumers","Wisconsin","WI",23459 +2015-09-01,"Delivered to Consumers","Pennsylvania","PA",64808 +2015-09-01,"Delivered to Consumers","Colorado","CO",18738 +2015-09-01,"Delivered to Consumers","Texas","TX",292889 +2015-09-01,"Delivered to Consumers","Minnesota","MN",22743 +2015-09-01,"Delivered to Consumers","West Virginia","WV",4947 +2015-09-01,"Delivered to Consumers","Illinois","IL",43482 +2015-09-01,"Delivered to Consumers","Hawaii","HI",232 +2015-09-01,"Delivered to Consumers","Kansas","KS",13711 +2015-09-01,"Delivered to Consumers","Oregon","OR",18115 +2015-09-01,"Delivered to Consumers","Nevada","NV",24802 +2015-09-01,"Delivered to Consumers","New Jersey","NJ",45046 +2015-09-01,"Delivered to Consumers","New Mexico","NM",9852 +2015-09-01,"Delivered to Consumers","Michigan","MI",36302 +2015-09-01,"Delivered to Consumers","Kentucky","KY",15439 +2015-09-01,"Delivered to Consumers","Iowa","IA",18031 +2015-09-01,"Delivered to Consumers","Maine","ME",3664 +2015-09-01,"Delivered to Consumers","Rhode Island","RI",4847 +2015-09-01,"Delivered to Consumers","New York","NY",79377 +2015-09-01,"Delivered to Consumers","Nebraska","NE",8592 +2015-09-01,"Delivered to Consumers","Georgia","GA",49225 +2015-09-01,"Delivered to Consumers","North Dakota","ND",4337 +2015-09-01,"Electric Power Consumption","South Carolina","SC",11970 +2015-09-01,"Electric Power Consumption","Minnesota","MN",6284 +2015-09-01,"Electric Power Consumption","Pennsylvania","PA",39530 +2015-09-01,"Electric Power Consumption","Mississippi","MS",26709 +2015-09-01,"Electric Power Consumption","Montana","MT",59 +2015-09-01,"Electric Power Consumption","Maryland","MD",4210 +2015-09-01,"Electric Power Consumption","Connecticut","CT",10733 +2015-09-01,"Electric Power Consumption","Idaho","ID",2900 +2015-09-01,"Electric Power Consumption","Arkansas","AR",8588 +2015-09-01,"Electric Power Consumption","Utah","UT",5164 +2015-09-01,"Electric Power Consumption","Missouri","MO",3403 +2015-09-01,"Electric Power Consumption","Kentucky","KY",4825 +2015-09-01,"Electric Power Consumption","Georgia","GA",30598 +2015-09-01,"Electric Power Consumption","Washington","WA",10873 +2015-09-01,"Electric Power Consumption","New Jersey","NJ",29315 +2015-09-01,"Electric Power Consumption","Tennessee","TN",6125 +2015-09-01,"Electric Power Consumption","New Mexico","NM",6610 +2015-09-01,"Electric Power Consumption","Louisiana","LA",27478 +2015-09-01,"Electric Power Consumption","Texas","TX",149420 +2015-09-01,"Electric Power Consumption","Oregon","OR",11743 +2015-09-01,"Electric Power Consumption","Delaware","DE",5018 +2015-09-01,"Electric Power Consumption","Rhode Island","RI",3515 +2015-09-01,"Electric Power Consumption","Massachusetts","MA",16911 +2015-09-01,"Electric Power Consumption","Wyoming","WY",108 +2015-09-01,"Electric Power Consumption","South Dakota","SD",339 +2015-09-01,"Electric Power Consumption","Arizona","AZ",30919 +2015-09-01,"Electric Power Consumption","California","CA",87498 +2015-09-01,"Electric Power Consumption","Virginia","VA",22112 +2015-09-01,"Electric Power Consumption","New York","NY",49295 +2015-09-01,"Electric Power Consumption","Oklahoma","OK",20187 +2015-09-01,"Electric Power Consumption","Michigan","MI",13612 +2015-09-01,"Electric Power Consumption","Kansas","KS",1457 +2015-09-01,"Electric Power Consumption","Nevada","NV",20339 +2015-09-01,"Electric Power Consumption","Iowa","IA",1573 +2015-09-01,"Electric Power Consumption","Vermont","VT",1 +2015-09-01,"Electric Power Consumption","U.S.","U.S.",895044 +2015-09-01,"Electric Power Consumption","North Carolina","NC",23600 +2015-09-01,"Electric Power Consumption","Maine","ME",1591 +2015-09-01,"Electric Power Consumption","Hawaii","HI",NA +2015-09-01,"Electric Power Consumption","New Hampshire","NH",3922 +2015-09-01,"Electric Power Consumption","Indiana","IN",7777 +2015-09-01,"Electric Power Consumption","Florida","FL",105618 +2015-09-01,"Electric Power Consumption","Illinois","IL",8783 +2015-09-01,"Electric Power Consumption","Wisconsin","WI",8950 +2015-09-01,"Electric Power Consumption","Nebraska","NE",433 +2015-09-01,"Electric Power Consumption","Alabama","AL",33206 +2015-09-01,"Electric Power Consumption","Colorado","CO",9346 +2015-09-01,"Electric Power Consumption","West Virginia","WV",1740 +2015-09-01,"Electric Power Consumption","Ohio","OH",17698 +2015-09-01,"Electric Power Consumption","North Dakota","ND",1113 +2015-09-01,"Electric Power Consumption","Alaska","AK",1846 +2015-09-01,"Industrial Consumption","Washington","WA",6023 +2015-09-01,"Industrial Consumption","Kansas","KS",8723 +2015-09-01,"Industrial Consumption","Maine","ME",1590 +2015-09-01,"Industrial Consumption","California","CA",65899 +2015-09-01,"Industrial Consumption","Vermont","VT",150 +2015-09-01,"Industrial Consumption","New Jersey","NJ",4079 +2015-09-01,"Industrial Consumption","North Dakota","ND",2706 +2015-09-01,"Industrial Consumption","Oklahoma","OK",14973 +2015-09-01,"Industrial Consumption","Louisiana","LA",77875 +2015-09-01,"Industrial Consumption","New Mexico","NM",1345 +2015-09-01,"Industrial Consumption","Utah","UT",2724 +2015-09-01,"Industrial Consumption","Pennsylvania","PA",15240 +2015-09-01,"Industrial Consumption","Mississippi","MS",9898 +2015-09-01,"Industrial Consumption","Kentucky","KY",8512 +2015-09-01,"Industrial Consumption","Rhode Island","RI",686 +2015-09-01,"Industrial Consumption","North Carolina","NC",7975 +2015-09-01,"Industrial Consumption","Maryland","MD",1140 +2015-09-01,"Industrial Consumption","Missouri","MO",4551 +2015-09-01,"Industrial Consumption","Alabama","AL",14943 +2015-09-01,"Industrial Consumption","Texas","TX",128074 +2015-09-01,"Industrial Consumption","Virginia","VA",6752 +2015-09-01,"Industrial Consumption","Tennessee","TN",8716 +2015-09-01,"Industrial Consumption","New Hampshire","NH",605 +2015-09-01,"Industrial Consumption","Iowa","IA",13428 +2015-09-01,"Industrial Consumption","Connecticut","CT",1712 +2015-09-01,"Industrial Consumption","Michigan","MI",11478 +2015-09-01,"Industrial Consumption","Indiana","IN",26669 +2015-09-01,"Industrial Consumption","Massachusetts","MA",2574 +2015-09-01,"Industrial Consumption","Colorado","CO",4792 +2015-09-01,"Industrial Consumption","Arizona","AZ",1446 +2015-09-01,"Industrial Consumption","Arkansas","AR",6342 +2015-09-01,"Industrial Consumption","West Virginia","WV",1688 +2015-09-01,"Industrial Consumption","Wyoming","WY",3644 +2015-09-01,"Industrial Consumption","Minnesota","MN",11362 +2015-09-01,"Industrial Consumption","Illinois","IL",18722 +2015-09-01,"Industrial Consumption","Delaware","DE",2448 +2015-09-01,"Industrial Consumption","Alaska","AK",345 +2015-09-01,"Industrial Consumption","South Dakota","SD",3438 +2015-09-01,"Industrial Consumption","Ohio","OH",18521 +2015-09-01,"Industrial Consumption","U.S.","U.S.",579061 +2015-09-01,"Industrial Consumption","Oregon","OR",3990 +2015-09-01,"Industrial Consumption","Nevada","NV",1470 +2015-09-01,"Industrial Consumption","Wisconsin","WI",9133 +2015-09-01,"Industrial Consumption","Florida","FL",7320 +2015-09-01,"Industrial Consumption","Montana","MT",1714 +2015-09-01,"Industrial Consumption","Hawaii","HI",37 +2015-09-01,"Industrial Consumption","Nebraska","NE",6508 +2015-09-01,"Industrial Consumption","Georgia","GA",12274 +2015-09-01,"Industrial Consumption","New York","NY",5594 +2015-09-01,"Industrial Consumption","South Carolina","SC",6671 +2015-09-01,"Industrial Consumption","Idaho","ID",2561 +2015-09-01,"Industrial Consumption","District of Columbia","DC",0 +2015-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",130591 +2015-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",46786 +2015-09-01,"Residential Consumption","Nebraska","NE",683 +2015-09-01,"Residential Consumption","Indiana","IN",2419 +2015-09-01,"Residential Consumption","North Dakota","ND",199 +2015-09-01,"Residential Consumption","New Hampshire","NH",153 +2015-09-01,"Residential Consumption","Colorado","CO",2924 +2015-09-01,"Residential Consumption","Washington","WA",2613 +2015-09-01,"Residential Consumption","Illinois","IL",8118 +2015-09-01,"Residential Consumption","Pennsylvania","PA",4797 +2015-09-01,"Residential Consumption","Kansas","KS",1596 +2015-09-01,"Residential Consumption","Texas","TX",5401 +2015-09-01,"Residential Consumption","Tennessee","TN",1155 +2015-09-01,"Residential Consumption","Virginia","VA",1903 +2015-09-01,"Residential Consumption","South Dakota","SD",228 +2015-09-01,"Residential Consumption","New Mexico","NM",829 +2015-09-01,"Residential Consumption","Oklahoma","OK",1240 +2015-09-01,"Residential Consumption","Wyoming","WY",300 +2015-09-01,"Residential Consumption","West Virginia","WV",385 +2015-09-01,"Residential Consumption","North Carolina","NC",1092 +2015-09-01,"Residential Consumption","Michigan","MI",6006 +2015-09-01,"Residential Consumption","Minnesota","MN",2331 +2015-09-01,"Residential Consumption","Georgia","GA",3800 +2015-09-01,"Residential Consumption","Idaho","ID",652 +2015-09-01,"Residential Consumption","Arizona","AZ",1080 +2015-09-01,"Residential Consumption","Alabama","AL",711 +2015-09-01,"Residential Consumption","Alaska","AK",1040 +2015-09-01,"Residential Consumption","New York","NY",10202 +2015-09-01,"Residential Consumption","South Carolina","SC",569 +2015-09-01,"Residential Consumption","Oregon","OR",1189 +2015-09-01,"Residential Consumption","Wisconsin","WI",2502 +2015-09-01,"Residential Consumption","Vermont","VT",81 +2015-09-01,"Residential Consumption","Utah","UT",1329 +2015-09-01,"Residential Consumption","Maryland","MD",1542 +2015-09-01,"Residential Consumption","Maine","ME",48 +2015-09-01,"Residential Consumption","Arkansas","AR",586 +2015-09-01,"Residential Consumption","Kentucky","KY",885 +2015-09-01,"Residential Consumption","Delaware","DE",168 +2015-09-01,"Residential Consumption","California","CA",17032 +2015-09-01,"Residential Consumption","U.S.","U.S.",108491 +2015-09-01,"Residential Consumption","Mississippi","MS",728 +2015-09-01,"Residential Consumption","Iowa","IA",1279 +2015-09-01,"Residential Consumption","Connecticut","CT",948 +2015-09-01,"Residential Consumption","District of Columbia","DC",276 +2015-09-01,"Residential Consumption","Florida","FL",641 +2015-09-01,"Residential Consumption","New Jersey","NJ",4507 +2015-09-01,"Residential Consumption","Ohio","OH",4677 +2015-09-01,"Residential Consumption","Louisiana","LA",1356 +2015-09-01,"Residential Consumption","Hawaii","HI",41 +2015-09-01,"Residential Consumption","Massachusetts","MA",2486 +2015-09-01,"Residential Consumption","Missouri","MO",1646 +2015-09-01,"Residential Consumption","Rhode Island","RI",391 +2015-09-01,"Residential Consumption","Nevada","NV",1228 +2015-09-01,"Residential Consumption","Montana","MT",497 +2015-09-01,"Vehicle Fuel Consumption","Washington","WA",37 +2015-09-01,"Vehicle Fuel Consumption","Utah","UT",27 +2015-09-01,"Vehicle Fuel Consumption","Nevada","NV",92 +2015-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-09-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-09-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-09-01,"Vehicle Fuel Consumption","California","CA",1498 +2015-09-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2015-09-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2015-09-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-09-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-09-01,"Vehicle Fuel Consumption","Kansas","KS",8 +2015-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",22 +2015-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2015-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",66 +2015-09-01,"Vehicle Fuel Consumption","Colorado","CO",30 +2015-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-09-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-09-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",44 +2015-09-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-09-01,"Vehicle Fuel Consumption","Florida","FL",28 +2015-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-09-01,"Vehicle Fuel Consumption","Oregon","OR",17 +2015-09-01,"Vehicle Fuel Consumption","Michigan","MI",25 +2015-09-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2015-09-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2015-09-01,"Vehicle Fuel Consumption","New York","NY",278 +2015-09-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-09-01,"Vehicle Fuel Consumption","Arizona","AZ",181 +2015-09-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-09-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-09-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2015-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",3238 +2015-09-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",67 +2015-09-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-09-01,"Vehicle Fuel Consumption","Texas","TX",361 +2015-09-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-09-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",37 +2015-09-01,"Vehicle Fuel Consumption","Alabama","AL",25 +2015-09-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2015-09-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-09-01,"Vehicle Fuel Consumption","Georgia","GA",132 +2015-09-01,"Vehicle Fuel Consumption","Illinois","IL",32 +2015-10-01,"Commercial Consumption","Kentucky","KY",1788 +2015-10-01,"Commercial Consumption","Maryland","MD",4720 +2015-10-01,"Commercial Consumption","Ohio","OH",9078 +2015-10-01,"Commercial Consumption","Iowa","IA",3103 +2015-10-01,"Commercial Consumption","Hawaii","HI",152 +2015-10-01,"Commercial Consumption","Connecticut","CT",3080 +2015-10-01,"Commercial Consumption","Alabama","AL",1549 +2015-10-01,"Commercial Consumption","Delaware","DE",852 +2015-10-01,"Commercial Consumption","Tennessee","TN",3033 +2015-10-01,"Commercial Consumption","Indiana","IN",4689 +2015-10-01,"Commercial Consumption","North Dakota","ND",664 +2015-10-01,"Commercial Consumption","Colorado","CO",2794 +2015-10-01,"Commercial Consumption","Virginia","VA",4889 +2015-10-01,"Commercial Consumption","South Dakota","SD",565 +2015-10-01,"Commercial Consumption","New Jersey","NJ",8406 +2015-10-01,"Commercial Consumption","Kansas","KS",2551 +2015-10-01,"Commercial Consumption","Arizona","AZ",1918 +2015-10-01,"Commercial Consumption","Nevada","NV",1977 +2015-10-01,"Commercial Consumption","Michigan","MI",9169 +2015-10-01,"Commercial Consumption","Oregon","OR",1499 +2015-10-01,"Commercial Consumption","Pennsylvania","PA",9859 +2015-10-01,"Commercial Consumption","Missouri","MO",3331 +2015-10-01,"Commercial Consumption","Rhode Island","RI",638 +2015-10-01,"Commercial Consumption","California","CA",16134 +2015-10-01,"Commercial Consumption","Mississippi","MS",1304 +2015-10-01,"Commercial Consumption","Washington","WA",3218 +2015-10-01,"Commercial Consumption","Wisconsin","WI",4983 +2015-10-01,"Commercial Consumption","Florida","FL",4738 +2015-10-01,"Commercial Consumption","Vermont","VT",520 +2015-10-01,"Commercial Consumption","Illinois","IL",12469 +2015-10-01,"Commercial Consumption","South Carolina","SC",1815 +2015-10-01,"Commercial Consumption","North Carolina","NC",4116 +2015-10-01,"Commercial Consumption","New Mexico","NM",1608 +2015-10-01,"Commercial Consumption","Massachusetts","MA",7299 +2015-10-01,"Commercial Consumption","District of Columbia","DC",1230 +2015-10-01,"Commercial Consumption","West Virginia","WV",1580 +2015-10-01,"Commercial Consumption","Oklahoma","OK",2030 +2015-10-01,"Commercial Consumption","Maine","ME",597 +2015-10-01,"Commercial Consumption","Idaho","ID",1102 +2015-10-01,"Commercial Consumption","Alaska","AK",1393 +2015-10-01,"Commercial Consumption","Wyoming","WY",604 +2015-10-01,"Commercial Consumption","Texas","TX",10532 +2015-10-01,"Commercial Consumption","Nebraska","NE",1616 +2015-10-01,"Commercial Consumption","Louisiana","LA",2247 +2015-10-01,"Commercial Consumption","Minnesota","MN",5158 +2015-10-01,"Commercial Consumption","Utah","UT",1491 +2015-10-01,"Commercial Consumption","New Hampshire","NH",389 +2015-10-01,"Commercial Consumption","Montana","MT",1157 +2015-10-01,"Commercial Consumption","U.S.","U.S.",194961 +2015-10-01,"Commercial Consumption","Georgia","GA",3165 +2015-10-01,"Commercial Consumption","Arkansas","AR",3163 +2015-10-01,"Commercial Consumption","New York","NY",19000 +2015-10-01,"Delivered to Consumers","U.S.","U.S.",1804380 +2015-10-01,"Delivered to Consumers","Indiana","IN",47886 +2015-10-01,"Delivered to Consumers","Wyoming","WY",5109 +2015-10-01,"Delivered to Consumers","Alaska","AK",5306 +2015-10-01,"Delivered to Consumers","Kansas","KS",14377 +2015-10-01,"Delivered to Consumers","Tennessee","TN",18780 +2015-10-01,"Delivered to Consumers","North Carolina","NC",35315 +2015-10-01,"Delivered to Consumers","Utah","UT",10838 +2015-10-01,"Delivered to Consumers","Iowa","IA",21501 +2015-10-01,"Delivered to Consumers","Alabama","AL",49489 +2015-10-01,"Delivered to Consumers","Nebraska","NE",10124 +2015-10-01,"Delivered to Consumers","Massachusetts","MA",30340 +2015-10-01,"Delivered to Consumers","Colorado","CO",22353 +2015-10-01,"Delivered to Consumers","California","CA",184678 +2015-10-01,"Delivered to Consumers","Nevada","NV",23259 +2015-10-01,"Delivered to Consumers","Rhode Island","RI",6244 +2015-10-01,"Delivered to Consumers","New York","NY",85801 +2015-10-01,"Delivered to Consumers","Hawaii","HI",239 +2015-10-01,"Delivered to Consumers","Ohio","OH",55112 +2015-10-01,"Delivered to Consumers","Kentucky","KY",18414 +2015-10-01,"Delivered to Consumers","New Jersey","NJ",45099 +2015-10-01,"Delivered to Consumers","Washington","WA",25415 +2015-10-01,"Delivered to Consumers","South Dakota","SD",4755 +2015-10-01,"Delivered to Consumers","Maryland","MD",12836 +2015-10-01,"Delivered to Consumers","Oklahoma","OK",36072 +2015-10-01,"Delivered to Consumers","Idaho","ID",7669 +2015-10-01,"Delivered to Consumers","Oregon","OR",18501 +2015-10-01,"Delivered to Consumers","Louisiana","LA",112583 +2015-10-01,"Delivered to Consumers","New Hampshire","NH",4639 +2015-10-01,"Delivered to Consumers","Minnesota","MN",26927 +2015-10-01,"Delivered to Consumers","Florida","FL",113800 +2015-10-01,"Delivered to Consumers","New Mexico","NM",10476 +2015-10-01,"Delivered to Consumers","Arkansas","AR",14998 +2015-10-01,"Delivered to Consumers","Pennsylvania","PA",76095 +2015-10-01,"Delivered to Consumers","South Carolina","SC",22709 +2015-10-01,"Delivered to Consumers","North Dakota","ND",4572 +2015-10-01,"Delivered to Consumers","District of Columbia","DC",1865 +2015-10-01,"Delivered to Consumers","Wisconsin","WI",29255 +2015-10-01,"Delivered to Consumers","Mississippi","MS",37262 +2015-10-01,"Delivered to Consumers","Maine","ME",4935 +2015-10-01,"Delivered to Consumers","Arizona","AZ",29432 +2015-10-01,"Delivered to Consumers","West Virginia","WV",6216 +2015-10-01,"Delivered to Consumers","Michigan","MI",53762 +2015-10-01,"Delivered to Consumers","Connecticut","CT",17381 +2015-10-01,"Delivered to Consumers","Missouri","MO",12965 +2015-10-01,"Delivered to Consumers","Texas","TX",278831 +2015-10-01,"Delivered to Consumers","Delaware","DE",7037 +2015-10-01,"Delivered to Consumers","Vermont","VT",876 +2015-10-01,"Delivered to Consumers","Illinois","IL",57688 +2015-10-01,"Delivered to Consumers","Montana","MT",4598 +2015-10-01,"Delivered to Consumers","Virginia","VA",27441 +2015-10-01,"Delivered to Consumers","Georgia","GA",52525 +2015-10-01,"Electric Power Consumption","Tennessee","TN",4568 +2015-10-01,"Electric Power Consumption","U.S.","U.S.",791541 +2015-10-01,"Electric Power Consumption","Mississippi","MS",23829 +2015-10-01,"Electric Power Consumption","Ohio","OH",13674 +2015-10-01,"Electric Power Consumption","North Dakota","ND",451 +2015-10-01,"Electric Power Consumption","Montana","MT",514 +2015-10-01,"Electric Power Consumption","Florida","FL",100010 +2015-10-01,"Electric Power Consumption","New Jersey","NJ",23585 +2015-10-01,"Electric Power Consumption","Oregon","OR",10949 +2015-10-01,"Electric Power Consumption","Michigan","MI",14827 +2015-10-01,"Electric Power Consumption","Pennsylvania","PA",37886 +2015-10-01,"Electric Power Consumption","Nebraska","NE",102 +2015-10-01,"Electric Power Consumption","Arizona","AZ",24377 +2015-10-01,"Electric Power Consumption","Idaho","ID",2510 +2015-10-01,"Electric Power Consumption","New York","NY",39583 +2015-10-01,"Electric Power Consumption","Illinois","IL",6679 +2015-10-01,"Electric Power Consumption","West Virginia","WV",1536 +2015-10-01,"Electric Power Consumption","Oklahoma","OK",16297 +2015-10-01,"Electric Power Consumption","Nevada","NV",18276 +2015-10-01,"Electric Power Consumption","Maine","ME",2524 +2015-10-01,"Electric Power Consumption","Indiana","IN",8621 +2015-10-01,"Electric Power Consumption","Alaska","AK",2114 +2015-10-01,"Electric Power Consumption","South Carolina","SC",12523 +2015-10-01,"Electric Power Consumption","Massachusetts","MA",14089 +2015-10-01,"Electric Power Consumption","Wisconsin","WI",7393 +2015-10-01,"Electric Power Consumption","Wyoming","WY",161 +2015-10-01,"Electric Power Consumption","Missouri","MO",1620 +2015-10-01,"Electric Power Consumption","Kentucky","KY",6086 +2015-10-01,"Electric Power Consumption","New Hampshire","NH",3375 +2015-10-01,"Electric Power Consumption","Maryland","MD",2964 +2015-10-01,"Electric Power Consumption","Georgia","GA",29598 +2015-10-01,"Electric Power Consumption","Virginia","VA",11729 +2015-10-01,"Electric Power Consumption","New Mexico","NM",6130 +2015-10-01,"Electric Power Consumption","Louisiana","LA",29206 +2015-10-01,"Electric Power Consumption","Utah","UT",4371 +2015-10-01,"Electric Power Consumption","Minnesota","MN",3276 +2015-10-01,"Electric Power Consumption","North Carolina","NC",19405 +2015-10-01,"Electric Power Consumption","California","CA",83347 +2015-10-01,"Electric Power Consumption","Rhode Island","RI",3860 +2015-10-01,"Electric Power Consumption","Iowa","IA",774 +2015-10-01,"Electric Power Consumption","Vermont","VT",0 +2015-10-01,"Electric Power Consumption","South Dakota","SD",291 +2015-10-01,"Electric Power Consumption","Alabama","AL",31618 +2015-10-01,"Electric Power Consumption","Washington","WA",11212 +2015-10-01,"Electric Power Consumption","Colorado","CO",7901 +2015-10-01,"Electric Power Consumption","Arkansas","AR",4135 +2015-10-01,"Electric Power Consumption","Texas","TX",129548 +2015-10-01,"Electric Power Consumption","Kansas","KS",513 +2015-10-01,"Electric Power Consumption","Hawaii","HI",NA +2015-10-01,"Electric Power Consumption","Delaware","DE",3189 +2015-10-01,"Electric Power Consumption","Connecticut","CT",10315 +2015-10-01,"Industrial Consumption","South Dakota","SD",3422 +2015-10-01,"Industrial Consumption","Utah","UT",2933 +2015-10-01,"Industrial Consumption","Arkansas","AR",6903 +2015-10-01,"Industrial Consumption","New Hampshire","NH",619 +2015-10-01,"Industrial Consumption","Minnesota","MN",13347 +2015-10-01,"Industrial Consumption","Iowa","IA",15213 +2015-10-01,"Industrial Consumption","North Carolina","NC",9045 +2015-10-01,"Industrial Consumption","Georgia","GA",13742 +2015-10-01,"Industrial Consumption","Massachusetts","MA",3051 +2015-10-01,"Industrial Consumption","Kansas","KS",9125 +2015-10-01,"Industrial Consumption","Texas","TX",132045 +2015-10-01,"Industrial Consumption","Nebraska","NE",7320 +2015-10-01,"Industrial Consumption","West Virginia","WV",1861 +2015-10-01,"Industrial Consumption","Wyoming","WY",3906 +2015-10-01,"Industrial Consumption","New Jersey","NJ",4156 +2015-10-01,"Industrial Consumption","Florida","FL",7928 +2015-10-01,"Industrial Consumption","District of Columbia","DC",0 +2015-10-01,"Industrial Consumption","Maryland","MD",1252 +2015-10-01,"Industrial Consumption","Washington","WA",6748 +2015-10-01,"Industrial Consumption","California","CA",64415 +2015-10-01,"Industrial Consumption","Vermont","VT",188 +2015-10-01,"Industrial Consumption","Tennessee","TN",9190 +2015-10-01,"Industrial Consumption","Illinois","IL",20369 +2015-10-01,"Industrial Consumption","North Dakota","ND",2948 +2015-10-01,"Industrial Consumption","U.S.","U.S.",612994 +2015-10-01,"Industrial Consumption","New York","NY",6256 +2015-10-01,"Industrial Consumption","Idaho","ID",3028 +2015-10-01,"Industrial Consumption","Indiana","IN",28801 +2015-10-01,"Industrial Consumption","Montana","MT",1878 +2015-10-01,"Industrial Consumption","Pennsylvania","PA",16747 +2015-10-01,"Industrial Consumption","Mississippi","MS",11290 +2015-10-01,"Industrial Consumption","Michigan","MI",13319 +2015-10-01,"Industrial Consumption","Kentucky","KY",8890 +2015-10-01,"Industrial Consumption","Delaware","DE",2590 +2015-10-01,"Industrial Consumption","Alaska","AK",369 +2015-10-01,"Industrial Consumption","Missouri","MO",4912 +2015-10-01,"Industrial Consumption","Colorado","CO",5828 +2015-10-01,"Industrial Consumption","Ohio","OH",20128 +2015-10-01,"Industrial Consumption","New Mexico","NM",1476 +2015-10-01,"Industrial Consumption","Wisconsin","WI",10777 +2015-10-01,"Industrial Consumption","Hawaii","HI",43 +2015-10-01,"Industrial Consumption","Oklahoma","OK",15893 +2015-10-01,"Industrial Consumption","Oregon","OR",4273 +2015-10-01,"Industrial Consumption","Virginia","VA",7260 +2015-10-01,"Industrial Consumption","Connecticut","CT",1883 +2015-10-01,"Industrial Consumption","Rhode Island","RI",675 +2015-10-01,"Industrial Consumption","Louisiana","LA",79578 +2015-10-01,"Industrial Consumption","Arizona","AZ",1604 +2015-10-01,"Industrial Consumption","Nevada","NV",1463 +2015-10-01,"Industrial Consumption","Maine","ME",1670 +2015-10-01,"Industrial Consumption","Alabama","AL",15339 +2015-10-01,"Industrial Consumption","South Carolina","SC",7298 +2015-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",133961 +2015-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",48969 +2015-10-01,"Residential Consumption","New Mexico","NM",1247 +2015-10-01,"Residential Consumption","New Jersey","NJ",8928 +2015-10-01,"Residential Consumption","California","CA",19235 +2015-10-01,"Residential Consumption","U.S.","U.S.",201540 +2015-10-01,"Residential Consumption","Texas","TX",6334 +2015-10-01,"Residential Consumption","Mississippi","MS",833 +2015-10-01,"Residential Consumption","Michigan","MI",16422 +2015-10-01,"Residential Consumption","Massachusetts","MA",5833 +2015-10-01,"Residential Consumption","New Hampshire","NH",251 +2015-10-01,"Residential Consumption","Montana","MT",1049 +2015-10-01,"Residential Consumption","Washington","WA",4199 +2015-10-01,"Residential Consumption","Wisconsin","WI",6091 +2015-10-01,"Residential Consumption","Virginia","VA",3540 +2015-10-01,"Residential Consumption","South Dakota","SD",478 +2015-10-01,"Residential Consumption","Nevada","NV",1449 +2015-10-01,"Residential Consumption","Florida","FL",1096 +2015-10-01,"Residential Consumption","Kentucky","KY",1640 +2015-10-01,"Residential Consumption","Alabama","AL",957 +2015-10-01,"Residential Consumption","Illinois","IL",18138 +2015-10-01,"Residential Consumption","Tennessee","TN",1967 +2015-10-01,"Residential Consumption","Nebraska","NE",1081 +2015-10-01,"Residential Consumption","Arkansas","AR",795 +2015-10-01,"Residential Consumption","Alaska","AK",1429 +2015-10-01,"Residential Consumption","Rhode Island","RI",1063 +2015-10-01,"Residential Consumption","Hawaii","HI",44 +2015-10-01,"Residential Consumption","Utah","UT",2015 +2015-10-01,"Residential Consumption","Maryland","MD",3881 +2015-10-01,"Residential Consumption","Minnesota","MN",5140 +2015-10-01,"Residential Consumption","Georgia","GA",5883 +2015-10-01,"Residential Consumption","Pennsylvania","PA",11557 +2015-10-01,"Residential Consumption","Kansas","KS",2180 +2015-10-01,"Residential Consumption","Oklahoma","OK",1814 +2015-10-01,"Residential Consumption","Wyoming","WY",437 +2015-10-01,"Residential Consumption","Oregon","OR",1763 +2015-10-01,"Residential Consumption","Louisiana","LA",1537 +2015-10-01,"Residential Consumption","Maine","ME",145 +2015-10-01,"Residential Consumption","Indiana","IN",5768 +2015-10-01,"Residential Consumption","North Dakota","ND",509 +2015-10-01,"Residential Consumption","South Carolina","SC",1070 +2015-10-01,"Residential Consumption","Ohio","OH",12188 +2015-10-01,"Residential Consumption","Iowa","IA",2408 +2015-10-01,"Residential Consumption","Vermont","VT",168 +2015-10-01,"Residential Consumption","Idaho","ID",1017 +2015-10-01,"Residential Consumption","Delaware","DE",406 +2015-10-01,"Residential Consumption","New York","NY",20674 +2015-10-01,"Residential Consumption","North Carolina","NC",2737 +2015-10-01,"Residential Consumption","Connecticut","CT",2101 +2015-10-01,"Residential Consumption","District of Columbia","DC",567 +2015-10-01,"Residential Consumption","Colorado","CO",5800 +2015-10-01,"Residential Consumption","Missouri","MO",3096 +2015-10-01,"Residential Consumption","Arizona","AZ",1345 +2015-10-01,"Residential Consumption","West Virginia","WV",1235 +2015-10-01,"Vehicle Fuel Consumption","Utah","UT",28 +2015-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2015-10-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2015-10-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-10-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-10-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2015-10-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2015-10-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-10-01,"Vehicle Fuel Consumption","California","CA",1548 +2015-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",3345 +2015-10-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2015-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-10-01,"Vehicle Fuel Consumption","Florida","FL",29 +2015-10-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-10-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-10-01,"Vehicle Fuel Consumption","New York","NY",288 +2015-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",45 +2015-10-01,"Vehicle Fuel Consumption","Nebraska","NE",5 +2015-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-10-01,"Vehicle Fuel Consumption","Colorado","CO",31 +2015-10-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-10-01,"Vehicle Fuel Consumption","Alabama","AL",26 +2015-10-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-10-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-10-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2015-10-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-10-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-10-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-10-01,"Vehicle Fuel Consumption","Kansas","KS",9 +2015-10-01,"Vehicle Fuel Consumption","Arizona","AZ",187 +2015-10-01,"Vehicle Fuel Consumption","Texas","TX",373 +2015-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2015-10-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2015-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-10-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2015-10-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",69 +2015-10-01,"Vehicle Fuel Consumption","Georgia","GA",136 +2015-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-10-01,"Vehicle Fuel Consumption","Washington","WA",38 +2015-10-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2015-10-01,"Vehicle Fuel Consumption","Ohio","OH",44 +2015-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2015-10-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-10-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2015-11-01,"Commercial Consumption","Oklahoma","OK",3758 +2015-11-01,"Commercial Consumption","Wisconsin","WI",7772 +2015-11-01,"Commercial Consumption","Texas","TX",13714 +2015-11-01,"Commercial Consumption","Michigan","MI",13062 +2015-11-01,"Commercial Consumption","District of Columbia","DC",1563 +2015-11-01,"Commercial Consumption","Wyoming","WY",1637 +2015-11-01,"Commercial Consumption","Minnesota","MN",8304 +2015-11-01,"Commercial Consumption","Utah","UT",4785 +2015-11-01,"Commercial Consumption","Oregon","OR",3326 +2015-11-01,"Commercial Consumption","Mississippi","MS",1744 +2015-11-01,"Commercial Consumption","Arizona","AZ",3015 +2015-11-01,"Commercial Consumption","Virginia","VA",6155 +2015-11-01,"Commercial Consumption","Montana","MT",2504 +2015-11-01,"Commercial Consumption","Maine","ME",816 +2015-11-01,"Commercial Consumption","Idaho","ID",2140 +2015-11-01,"Commercial Consumption","Hawaii","HI",148 +2015-11-01,"Commercial Consumption","New York","NY",24517 +2015-11-01,"Commercial Consumption","Indiana","IN",6376 +2015-11-01,"Commercial Consumption","North Dakota","ND",1208 +2015-11-01,"Commercial Consumption","Pennsylvania","PA",12873 +2015-11-01,"Commercial Consumption","Florida","FL",4938 +2015-11-01,"Commercial Consumption","Iowa","IA",4259 +2015-11-01,"Commercial Consumption","California","CA",26091 +2015-11-01,"Commercial Consumption","Alabama","AL",2372 +2015-11-01,"Commercial Consumption","Washington","WA",6040 +2015-11-01,"Commercial Consumption","Colorado","CO",6634 +2015-11-01,"Commercial Consumption","South Dakota","SD",1114 +2015-11-01,"Commercial Consumption","Kentucky","KY",3061 +2015-11-01,"Commercial Consumption","Alaska","AK",2028 +2015-11-01,"Commercial Consumption","Connecticut","CT",4024 +2015-11-01,"Commercial Consumption","Nebraska","NE",2718 +2015-11-01,"Commercial Consumption","Delaware","DE",1117 +2015-11-01,"Commercial Consumption","Illinois","IL",18019 +2015-11-01,"Commercial Consumption","New Mexico","NM",3137 +2015-11-01,"Commercial Consumption","New Hampshire","NH",850 +2015-11-01,"Commercial Consumption","Vermont","VT",554 +2015-11-01,"Commercial Consumption","Louisiana","LA",2739 +2015-11-01,"Commercial Consumption","U.S.","U.S.",283231 +2015-11-01,"Commercial Consumption","Kansas","KS",2976 +2015-11-01,"Commercial Consumption","Rhode Island","RI",1030 +2015-11-01,"Commercial Consumption","Ohio","OH",12682 +2015-11-01,"Commercial Consumption","Nevada","NV",3114 +2015-11-01,"Commercial Consumption","West Virginia","WV",1965 +2015-11-01,"Commercial Consumption","South Carolina","SC",2122 +2015-11-01,"Commercial Consumption","North Carolina","NC",5334 +2015-11-01,"Commercial Consumption","Missouri","MO",5298 +2015-11-01,"Commercial Consumption","Massachusetts","MA",9161 +2015-11-01,"Commercial Consumption","New Jersey","NJ",11164 +2015-11-01,"Commercial Consumption","Maryland","MD",5903 +2015-11-01,"Commercial Consumption","Georgia","GA",4704 +2015-11-01,"Commercial Consumption","Arkansas","AR",4033 +2015-11-01,"Commercial Consumption","Tennessee","TN",4635 +2015-11-01,"Delivered to Consumers","New York","NY",97650 +2015-11-01,"Delivered to Consumers","Tennessee","TN",24195 +2015-11-01,"Delivered to Consumers","Wisconsin","WI",38829 +2015-11-01,"Delivered to Consumers","South Carolina","SC",25796 +2015-11-01,"Delivered to Consumers","New Jersey","NJ",55589 +2015-11-01,"Delivered to Consumers","Washington","WA",34844 +2015-11-01,"Delivered to Consumers","Minnesota","MN",35555 +2015-11-01,"Delivered to Consumers","District of Columbia","DC",2624 +2015-11-01,"Delivered to Consumers","Utah","UT",21114 +2015-11-01,"Delivered to Consumers","Mississippi","MS",39572 +2015-11-01,"Delivered to Consumers","Texas","TX",271193 +2015-11-01,"Delivered to Consumers","Maine","ME",4387 +2015-11-01,"Delivered to Consumers","Arizona","AZ",25860 +2015-11-01,"Delivered to Consumers","New Mexico","NM",14137 +2015-11-01,"Delivered to Consumers","Delaware","DE",6888 +2015-11-01,"Delivered to Consumers","Alabama","AL",51040 +2015-11-01,"Delivered to Consumers","Pennsylvania","PA",84267 +2015-11-01,"Delivered to Consumers","Colorado","CO",40204 +2015-11-01,"Delivered to Consumers","California","CA",194636 +2015-11-01,"Delivered to Consumers","North Dakota","ND",5320 +2015-11-01,"Delivered to Consumers","Indiana","IN",59397 +2015-11-01,"Delivered to Consumers","Vermont","VT",1028 +2015-11-01,"Delivered to Consumers","Maryland","MD",16636 +2015-11-01,"Delivered to Consumers","Oklahoma","OK",47163 +2015-11-01,"Delivered to Consumers","Kansas","KS",19208 +2015-11-01,"Delivered to Consumers","Kentucky","KY",22360 +2015-11-01,"Delivered to Consumers","Iowa","IA",25330 +2015-11-01,"Delivered to Consumers","Missouri","MO",20880 +2015-11-01,"Delivered to Consumers","Georgia","GA",55942 +2015-11-01,"Delivered to Consumers","West Virginia","WV",6870 +2015-11-01,"Delivered to Consumers","Illinois","IL",85107 +2015-11-01,"Delivered to Consumers","Hawaii","HI",227 +2015-11-01,"Delivered to Consumers","Ohio","OH",73041 +2015-11-01,"Delivered to Consumers","Arkansas","AR",19044 +2015-11-01,"Delivered to Consumers","Massachusetts","MA",31121 +2015-11-01,"Delivered to Consumers","Oregon","OR",24915 +2015-11-01,"Delivered to Consumers","Rhode Island","RI",7621 +2015-11-01,"Delivered to Consumers","Montana","MT",7757 +2015-11-01,"Delivered to Consumers","Virginia","VA",36525 +2015-11-01,"Delivered to Consumers","Nebraska","NE",13642 +2015-11-01,"Delivered to Consumers","U.S.","U.S.",2064029 +2015-11-01,"Delivered to Consumers","Idaho","ID",11402 +2015-11-01,"Delivered to Consumers","Michigan","MI",69425 +2015-11-01,"Delivered to Consumers","Connecticut","CT",19714 +2015-11-01,"Delivered to Consumers","Louisiana","LA",116055 +2015-11-01,"Delivered to Consumers","Florida","FL",105544 +2015-11-01,"Delivered to Consumers","Wyoming","WY",7474 +2015-11-01,"Delivered to Consumers","South Dakota","SD",6566 +2015-11-01,"Delivered to Consumers","Alaska","AK",7225 +2015-11-01,"Delivered to Consumers","North Carolina","NC",42679 +2015-11-01,"Delivered to Consumers","Nevada","NV",24391 +2015-11-01,"Delivered to Consumers","New Hampshire","NH",6039 +2015-11-01,"Electric Power Consumption","South Carolina","SC",13807 +2015-11-01,"Electric Power Consumption","Oklahoma","OK",20467 +2015-11-01,"Electric Power Consumption","Illinois","IL",7206 +2015-11-01,"Electric Power Consumption","Mississippi","MS",25669 +2015-11-01,"Electric Power Consumption","Montana","MT",591 +2015-11-01,"Electric Power Consumption","Alabama","AL",31415 +2015-11-01,"Electric Power Consumption","Kansas","KS",664 +2015-11-01,"Electric Power Consumption","West Virginia","WV",754 +2015-11-01,"Electric Power Consumption","South Dakota","SD",463 +2015-11-01,"Electric Power Consumption","Maine","ME",1815 +2015-11-01,"Electric Power Consumption","Kentucky","KY",5309 +2015-11-01,"Electric Power Consumption","Hawaii","HI",NA +2015-11-01,"Electric Power Consumption","Ohio","OH",15766 +2015-11-01,"Electric Power Consumption","New Hampshire","NH",3795 +2015-11-01,"Electric Power Consumption","Georgia","GA",27518 +2015-11-01,"Electric Power Consumption","Massachusetts","MA",8386 +2015-11-01,"Electric Power Consumption","Pennsylvania","PA",36127 +2015-11-01,"Electric Power Consumption","Connecticut","CT",9833 +2015-11-01,"Electric Power Consumption","Arizona","AZ",17648 +2015-11-01,"Electric Power Consumption","Virginia","VA",16554 +2015-11-01,"Electric Power Consumption","Texas","TX",108509 +2015-11-01,"Electric Power Consumption","Vermont","VT",1 +2015-11-01,"Electric Power Consumption","Florida","FL",91640 +2015-11-01,"Electric Power Consumption","New Mexico","NM",5614 +2015-11-01,"Electric Power Consumption","Nevada","NV",15460 +2015-11-01,"Electric Power Consumption","Iowa","IA",435 +2015-11-01,"Electric Power Consumption","Louisiana","LA",29293 +2015-11-01,"Electric Power Consumption","Colorado","CO",9707 +2015-11-01,"Electric Power Consumption","Utah","UT",4875 +2015-11-01,"Electric Power Consumption","Wyoming","WY",150 +2015-11-01,"Electric Power Consumption","Tennessee","TN",5453 +2015-11-01,"Electric Power Consumption","U.S.","U.S.",732413 +2015-11-01,"Electric Power Consumption","North Dakota","ND",102 +2015-11-01,"Electric Power Consumption","Indiana","IN",11416 +2015-11-01,"Electric Power Consumption","Delaware","DE",2318 +2015-11-01,"Electric Power Consumption","California","CA",59144 +2015-11-01,"Electric Power Consumption","Washington","WA",10567 +2015-11-01,"Electric Power Consumption","Idaho","ID",2236 +2015-11-01,"Electric Power Consumption","Arkansas","AR",5446 +2015-11-01,"Electric Power Consumption","New York","NY",32318 +2015-11-01,"Electric Power Consumption","Rhode Island","RI",4282 +2015-11-01,"Electric Power Consumption","Minnesota","MN",2969 +2015-11-01,"Electric Power Consumption","North Carolina","NC",22253 +2015-11-01,"Electric Power Consumption","Alaska","AK",2498 +2015-11-01,"Electric Power Consumption","New Jersey","NJ",23683 +2015-11-01,"Electric Power Consumption","Oregon","OR",11133 +2015-11-01,"Electric Power Consumption","Michigan","MI",13848 +2015-11-01,"Electric Power Consumption","Wisconsin","WI",7642 +2015-11-01,"Electric Power Consumption","Nebraska","NE",149 +2015-11-01,"Electric Power Consumption","Missouri","MO",2285 +2015-11-01,"Electric Power Consumption","Maryland","MD",3202 +2015-11-01,"Industrial Consumption","North Dakota","ND",2951 +2015-11-01,"Industrial Consumption","U.S.","U.S.",638537 +2015-11-01,"Industrial Consumption","Pennsylvania","PA",17002 +2015-11-01,"Industrial Consumption","Maine","ME",1510 +2015-11-01,"Industrial Consumption","Wyoming","WY",4196 +2015-11-01,"Industrial Consumption","Michigan","MI",14100 +2015-11-01,"Industrial Consumption","Georgia","GA",13324 +2015-11-01,"Industrial Consumption","Montana","MT",2009 +2015-11-01,"Industrial Consumption","Oklahoma","OK",17201 +2015-11-01,"Industrial Consumption","Missouri","MO",5560 +2015-11-01,"Industrial Consumption","Colorado","CO",7646 +2015-11-01,"Industrial Consumption","Ohio","OH",22474 +2015-11-01,"Industrial Consumption","California","CA",63511 +2015-11-01,"Industrial Consumption","Texas","TX",137582 +2015-11-01,"Industrial Consumption","Virginia","VA",7338 +2015-11-01,"Industrial Consumption","Wisconsin","WI",12329 +2015-11-01,"Industrial Consumption","Minnesota","MN",13674 +2015-11-01,"Industrial Consumption","Indiana","IN",29891 +2015-11-01,"Industrial Consumption","Alaska","AK",381 +2015-11-01,"Industrial Consumption","Hawaii","HI",36 +2015-11-01,"Industrial Consumption","West Virginia","WV",2027 +2015-11-01,"Industrial Consumption","Rhode Island","RI",669 +2015-11-01,"Industrial Consumption","New Mexico","NM",1613 +2015-11-01,"Industrial Consumption","Arizona","AZ",1882 +2015-11-01,"Industrial Consumption","Nevada","NV",1507 +2015-11-01,"Industrial Consumption","Arkansas","AR",7201 +2015-11-01,"Industrial Consumption","Iowa","IA",15136 +2015-11-01,"Industrial Consumption","Florida","FL",7706 +2015-11-01,"Industrial Consumption","Utah","UT",3083 +2015-11-01,"Industrial Consumption","Oregon","OR",4720 +2015-11-01,"Industrial Consumption","South Carolina","SC",7403 +2015-11-01,"Industrial Consumption","New Jersey","NJ",4575 +2015-11-01,"Industrial Consumption","Kentucky","KY",9814 +2015-11-01,"Industrial Consumption","District of Columbia","DC",0 +2015-11-01,"Industrial Consumption","Louisiana","LA",81626 +2015-11-01,"Industrial Consumption","Washington","WA",6984 +2015-11-01,"Industrial Consumption","Kansas","KS",9972 +2015-11-01,"Industrial Consumption","New York","NY",6657 +2015-11-01,"Industrial Consumption","Mississippi","MS",10320 +2015-11-01,"Industrial Consumption","Nebraska","NE",7848 +2015-11-01,"Industrial Consumption","Tennessee","TN",9276 +2015-11-01,"Industrial Consumption","Delaware","DE",2682 +2015-11-01,"Industrial Consumption","Massachusetts","MA",4042 +2015-11-01,"Industrial Consumption","Vermont","VT",178 +2015-11-01,"Industrial Consumption","Idaho","ID",3311 +2015-11-01,"Industrial Consumption","Illinois","IL",23724 +2015-11-01,"Industrial Consumption","Maryland","MD",1277 +2015-11-01,"Industrial Consumption","South Dakota","SD",3815 +2015-11-01,"Industrial Consumption","Alabama","AL",15146 +2015-11-01,"Industrial Consumption","New Hampshire","NH",709 +2015-11-01,"Industrial Consumption","Connecticut","CT",2010 +2015-11-01,"Industrial Consumption","North Carolina","NC",8912 +2015-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",129096 +2015-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",56016 +2015-11-01,"Residential Consumption","South Carolina","SC",2461 +2015-11-01,"Residential Consumption","North Carolina","NC",6169 +2015-11-01,"Residential Consumption","Tennessee","TN",4811 +2015-11-01,"Residential Consumption","Nebraska","NE",2921 +2015-11-01,"Residential Consumption","Maine","ME",246 +2015-11-01,"Residential Consumption","Montana","MT",2652 +2015-11-01,"Residential Consumption","Kentucky","KY",4167 +2015-11-01,"Residential Consumption","Kansas","KS",5587 +2015-11-01,"Residential Consumption","Washington","WA",11216 +2015-11-01,"Residential Consumption","California","CA",44392 +2015-11-01,"Residential Consumption","Alabama","AL",2082 +2015-11-01,"Residential Consumption","Oregon","OR",5719 +2015-11-01,"Residential Consumption","Utah","UT",8345 +2015-11-01,"Residential Consumption","Florida","FL",1233 +2015-11-01,"Residential Consumption","Massachusetts","MA",9466 +2015-11-01,"Residential Consumption","New Jersey","NJ",16145 +2015-11-01,"Residential Consumption","Oklahoma","OK",5701 +2015-11-01,"Residential Consumption","Delaware","DE",772 +2015-11-01,"Residential Consumption","Texas","TX",11027 +2015-11-01,"Residential Consumption","Maryland","MD",6235 +2015-11-01,"Residential Consumption","Nevada","NV",4218 +2015-11-01,"Residential Consumption","Georgia","GA",10265 +2015-11-01,"Residential Consumption","Arkansas","AR",2361 +2015-11-01,"Residential Consumption","Alaska","AK",2317 +2015-11-01,"Residential Consumption","New York","NY",33880 +2015-11-01,"Residential Consumption","Hawaii","HI",44 +2015-11-01,"Residential Consumption","New Mexico","NM",3759 +2015-11-01,"Residential Consumption","West Virginia","WV",2120 +2015-11-01,"Residential Consumption","District of Columbia","DC",994 +2015-11-01,"Residential Consumption","Indiana","IN",11707 +2015-11-01,"Residential Consumption","Wyoming","WY",1489 +2015-11-01,"Residential Consumption","Ohio","OH",22078 +2015-11-01,"Residential Consumption","Wisconsin","WI",11077 +2015-11-01,"Residential Consumption","Vermont","VT",294 +2015-11-01,"Residential Consumption","Arizona","AZ",3134 +2015-11-01,"Residential Consumption","U.S.","U.S.",406610 +2015-11-01,"Residential Consumption","Mississippi","MS",1833 +2015-11-01,"Residential Consumption","Michigan","MI",28390 +2015-11-01,"Residential Consumption","South Dakota","SD",1174 +2015-11-01,"Residential Consumption","Idaho","ID",3704 +2015-11-01,"Residential Consumption","New Hampshire","NH",680 +2015-11-01,"Residential Consumption","Rhode Island","RI",1632 +2015-11-01,"Residential Consumption","Louisiana","LA",2384 +2015-11-01,"Residential Consumption","Iowa","IA",5498 +2015-11-01,"Residential Consumption","Connecticut","CT",3846 +2015-11-01,"Residential Consumption","Virginia","VA",6455 +2015-11-01,"Residential Consumption","Minnesota","MN",10603 +2015-11-01,"Residential Consumption","Pennsylvania","PA",18222 +2015-11-01,"Residential Consumption","North Dakota","ND",1060 +2015-11-01,"Residential Consumption","Colorado","CO",16187 +2015-11-01,"Residential Consumption","Missouri","MO",7731 +2015-11-01,"Residential Consumption","Illinois","IL",36127 +2015-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",37 +2015-11-01,"Vehicle Fuel Consumption","Michigan","MI",25 +2015-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-11-01,"Vehicle Fuel Consumption","Utah","UT",27 +2015-11-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",44 +2015-11-01,"Vehicle Fuel Consumption","Florida","FL",28 +2015-11-01,"Vehicle Fuel Consumption","Texas","TX",361 +2015-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",3238 +2015-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",22 +2015-11-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-11-01,"Vehicle Fuel Consumption","Colorado","CO",30 +2015-11-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-11-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-11-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",5 +2015-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-11-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-11-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-11-01,"Vehicle Fuel Consumption","Alabama","AL",25 +2015-11-01,"Vehicle Fuel Consumption","Nebraska","NE",4 +2015-11-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-11-01,"Vehicle Fuel Consumption","Illinois","IL",32 +2015-11-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2015-11-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-11-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-11-01,"Vehicle Fuel Consumption","Washington","WA",37 +2015-11-01,"Vehicle Fuel Consumption","Virginia","VA",22 +2015-11-01,"Vehicle Fuel Consumption","Nevada","NV",92 +2015-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",67 +2015-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",66 +2015-11-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-11-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-11-01,"Vehicle Fuel Consumption","Oregon","OR",17 +2015-11-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2015-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-11-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2015-11-01,"Vehicle Fuel Consumption","Arizona","AZ",181 +2015-11-01,"Vehicle Fuel Consumption","Maryland","MD",18 +2015-11-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-11-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-11-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-11-01,"Vehicle Fuel Consumption","New York","NY",278 +2015-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-11-01,"Vehicle Fuel Consumption","Kansas","KS",8 +2015-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-11-01,"Vehicle Fuel Consumption","Georgia","GA",132 +2015-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-11-01,"Vehicle Fuel Consumption","California","CA",1498 +2015-12-01,"Commercial Consumption","Utah","UT",6958 +2015-12-01,"Commercial Consumption","Pennsylvania","PA",14839 +2015-12-01,"Commercial Consumption","Florida","FL",5360 +2015-12-01,"Commercial Consumption","Ohio","OH",16202 +2015-12-01,"Commercial Consumption","California","CA",29484 +2015-12-01,"Commercial Consumption","Mississippi","MS",1803 +2015-12-01,"Commercial Consumption","Wyoming","WY",2395 +2015-12-01,"Commercial Consumption","Washington","WA",7681 +2015-12-01,"Commercial Consumption","Virginia","VA",6201 +2015-12-01,"Commercial Consumption","Wisconsin","WI",10348 +2015-12-01,"Commercial Consumption","Kansas","KS",4856 +2015-12-01,"Commercial Consumption","Georgia","GA",5195 +2015-12-01,"Commercial Consumption","Rhode Island","RI",1132 +2015-12-01,"Commercial Consumption","Alabama","AL",2421 +2015-12-01,"Commercial Consumption","Indiana","IN",8326 +2015-12-01,"Commercial Consumption","Illinois","IL",24423 +2015-12-01,"Commercial Consumption","West Virginia","WV",2053 +2015-12-01,"Commercial Consumption","North Carolina","NC",4403 +2015-12-01,"Commercial Consumption","New Mexico","NM",4115 +2015-12-01,"Commercial Consumption","Oklahoma","OK",5631 +2015-12-01,"Commercial Consumption","South Dakota","SD",1546 +2015-12-01,"Commercial Consumption","New Jersey","NJ",13604 +2015-12-01,"Commercial Consumption","Texas","TX",18914 +2015-12-01,"Commercial Consumption","Vermont","VT",583 +2015-12-01,"Commercial Consumption","Arizona","AZ",4131 +2015-12-01,"Commercial Consumption","Oregon","OR",4159 +2015-12-01,"Commercial Consumption","Maryland","MD",6638 +2015-12-01,"Commercial Consumption","Iowa","IA",6364 +2015-12-01,"Commercial Consumption","Louisiana","LA",2917 +2015-12-01,"Commercial Consumption","Colorado","CO",9183 +2015-12-01,"Commercial Consumption","Missouri","MO",7357 +2015-12-01,"Commercial Consumption","New Hampshire","NH",1050 +2015-12-01,"Commercial Consumption","Montana","MT",3104 +2015-12-01,"Commercial Consumption","Alaska","AK",2469 +2015-12-01,"Commercial Consumption","Nevada","NV",4045 +2015-12-01,"Commercial Consumption","Massachusetts","MA",9988 +2015-12-01,"Commercial Consumption","U.S.","U.S.",352506 +2015-12-01,"Commercial Consumption","Hawaii","HI",167 +2015-12-01,"Commercial Consumption","Connecticut","CT",4915 +2015-12-01,"Commercial Consumption","South Carolina","SC",1894 +2015-12-01,"Commercial Consumption","North Dakota","ND",1799 +2015-12-01,"Commercial Consumption","Idaho","ID",2812 +2015-12-01,"Commercial Consumption","Arkansas","AR",4918 +2015-12-01,"Commercial Consumption","Nebraska","NE",4117 +2015-12-01,"Commercial Consumption","Delaware","DE",1234 +2015-12-01,"Commercial Consumption","Tennessee","TN",5192 +2015-12-01,"Commercial Consumption","Minnesota","MN",12435 +2015-12-01,"Commercial Consumption","Maine","ME",1006 +2015-12-01,"Commercial Consumption","Kentucky","KY",3735 +2015-12-01,"Commercial Consumption","New York","NY",28987 +2015-12-01,"Commercial Consumption","Michigan","MI",17807 +2015-12-01,"Commercial Consumption","District of Columbia","DC",1611 +2015-12-01,"Delivered to Consumers","Utah","UT",28205 +2015-12-01,"Delivered to Consumers","Idaho","ID",13922 +2015-12-01,"Delivered to Consumers","Mississippi","MS",40301 +2015-12-01,"Delivered to Consumers","Vermont","VT",1173 +2015-12-01,"Delivered to Consumers","Pennsylvania","PA",93466 +2015-12-01,"Delivered to Consumers","Massachusetts","MA",35848 +2015-12-01,"Delivered to Consumers","California","CA",233993 +2015-12-01,"Delivered to Consumers","South Carolina","SC",24814 +2015-12-01,"Delivered to Consumers","New Mexico","NM",18986 +2015-12-01,"Delivered to Consumers","Alaska","AK",8211 +2015-12-01,"Delivered to Consumers","Kentucky","KY",22930 +2015-12-01,"Delivered to Consumers","Connecticut","CT",23073 +2015-12-01,"Delivered to Consumers","Minnesota","MN",51440 +2015-12-01,"Delivered to Consumers","Florida","FL",104960 +2015-12-01,"Delivered to Consumers","Indiana","IN",72029 +2015-12-01,"Delivered to Consumers","Delaware","DE",7574 +2015-12-01,"Delivered to Consumers","Illinois","IL",107941 +2015-12-01,"Delivered to Consumers","Rhode Island","RI",6913 +2015-12-01,"Delivered to Consumers","Montana","MT",9354 +2015-12-01,"Delivered to Consumers","Virginia","VA",44426 +2015-12-01,"Delivered to Consumers","North Carolina","NC",42741 +2015-12-01,"Delivered to Consumers","Colorado","CO",49125 +2015-12-01,"Delivered to Consumers","Arizona","AZ",30504 +2015-12-01,"Delivered to Consumers","South Dakota","SD",8056 +2015-12-01,"Delivered to Consumers","New York","NY",110651 +2015-12-01,"Delivered to Consumers","Hawaii","HI",250 +2015-12-01,"Delivered to Consumers","Wisconsin","WI",49559 +2015-12-01,"Delivered to Consumers","Oregon","OR",28028 +2015-12-01,"Delivered to Consumers","New Jersey","NJ",62020 +2015-12-01,"Delivered to Consumers","Maine","ME",4287 +2015-12-01,"Delivered to Consumers","U.S.","U.S.",2389902 +2015-12-01,"Delivered to Consumers","Wyoming","WY",9372 +2015-12-01,"Delivered to Consumers","Maryland","MD",18802 +2015-12-01,"Delivered to Consumers","Kansas","KS",26841 +2015-12-01,"Delivered to Consumers","Tennessee","TN",28915 +2015-12-01,"Delivered to Consumers","Michigan","MI",84766 +2015-12-01,"Delivered to Consumers","Iowa","IA",32790 +2015-12-01,"Delivered to Consumers","Arkansas","AR",23306 +2015-12-01,"Delivered to Consumers","Missouri","MO",29348 +2015-12-01,"Delivered to Consumers","Texas","TX",313833 +2015-12-01,"Delivered to Consumers","Georgia","GA",58304 +2015-12-01,"Delivered to Consumers","North Dakota","ND",6048 +2015-12-01,"Delivered to Consumers","West Virginia","WV",7403 +2015-12-01,"Delivered to Consumers","Oklahoma","OK",55967 +2015-12-01,"Delivered to Consumers","Alabama","AL",54982 +2015-12-01,"Delivered to Consumers","Nebraska","NE",17031 +2015-12-01,"Delivered to Consumers","Louisiana","LA",123166 +2015-12-01,"Delivered to Consumers","Washington","WA",36997 +2015-12-01,"Delivered to Consumers","District of Columbia","DC",3136 +2015-12-01,"Delivered to Consumers","Ohio","OH",87464 +2015-12-01,"Delivered to Consumers","Nevada","NV",31266 +2015-12-01,"Delivered to Consumers","New Hampshire","NH",5388 +2015-12-01,"Electric Power Consumption","New Jersey","NJ",22007 +2015-12-01,"Electric Power Consumption","Louisiana","LA",31251 +2015-12-01,"Electric Power Consumption","South Carolina","SC",11849 +2015-12-01,"Electric Power Consumption","Massachusetts","MA",9089 +2015-12-01,"Electric Power Consumption","Nevada","NV",18315 +2015-12-01,"Electric Power Consumption","North Dakota","ND",174 +2015-12-01,"Electric Power Consumption","New Mexico","NM",7078 +2015-12-01,"Electric Power Consumption","Arkansas","AR",6818 +2015-12-01,"Electric Power Consumption","Washington","WA",9289 +2015-12-01,"Electric Power Consumption","Oklahoma","OK",23028 +2015-12-01,"Electric Power Consumption","Minnesota","MN",5619 +2015-12-01,"Electric Power Consumption","Kansas","KS",647 +2015-12-01,"Electric Power Consumption","Vermont","VT",1 +2015-12-01,"Electric Power Consumption","Ohio","OH",17120 +2015-12-01,"Electric Power Consumption","Montana","MT",789 +2015-12-01,"Electric Power Consumption","Connecticut","CT",11213 +2015-12-01,"Electric Power Consumption","Arizona","AZ",17489 +2015-12-01,"Electric Power Consumption","Virginia","VA",22865 +2015-12-01,"Electric Power Consumption","Rhode Island","RI",3079 +2015-12-01,"Electric Power Consumption","West Virginia","WV",509 +2015-12-01,"Electric Power Consumption","Wisconsin","WI",9852 +2015-12-01,"Electric Power Consumption","Pennsylvania","PA",35771 +2015-12-01,"Electric Power Consumption","Wyoming","WY",72 +2015-12-01,"Electric Power Consumption","Mississippi","MS",25534 +2015-12-01,"Electric Power Consumption","Utah","UT",5305 +2015-12-01,"Electric Power Consumption","Michigan","MI",15903 +2015-12-01,"Electric Power Consumption","South Dakota","SD",622 +2015-12-01,"Electric Power Consumption","Kentucky","KY",3333 +2015-12-01,"Electric Power Consumption","Florida","FL",89257 +2015-12-01,"Electric Power Consumption","Alabama","AL",33320 +2015-12-01,"Electric Power Consumption","New York","NY",30391 +2015-12-01,"Electric Power Consumption","Texas","TX",121199 +2015-12-01,"Electric Power Consumption","Oregon","OR",11787 +2015-12-01,"Electric Power Consumption","Illinois","IL",8006 +2015-12-01,"Electric Power Consumption","California","CA",62996 +2015-12-01,"Electric Power Consumption","Alaska","AK",2636 +2015-12-01,"Electric Power Consumption","Colorado","CO",8428 +2015-12-01,"Electric Power Consumption","Tennessee","TN",6151 +2015-12-01,"Electric Power Consumption","U.S.","U.S.",768606 +2015-12-01,"Electric Power Consumption","Missouri","MO",2887 +2015-12-01,"Electric Power Consumption","New Hampshire","NH",2706 +2015-12-01,"Electric Power Consumption","Delaware","DE",2251 +2015-12-01,"Electric Power Consumption","Georgia","GA",27586 +2015-12-01,"Electric Power Consumption","Idaho","ID",2857 +2015-12-01,"Electric Power Consumption","Iowa","IA",1564 +2015-12-01,"Electric Power Consumption","Nebraska","NE",129 +2015-12-01,"Electric Power Consumption","North Carolina","NC",22441 +2015-12-01,"Electric Power Consumption","Maine","ME",1439 +2015-12-01,"Electric Power Consumption","Hawaii","HI",NA +2015-12-01,"Electric Power Consumption","Maryland","MD",2457 +2015-12-01,"Electric Power Consumption","Indiana","IN",13496 +2015-12-01,"Industrial Consumption","Massachusetts","MA",4043 +2015-12-01,"Industrial Consumption","Hawaii","HI",36 +2015-12-01,"Industrial Consumption","Colorado","CO",8939 +2015-12-01,"Industrial Consumption","Ohio","OH",23373 +2015-12-01,"Industrial Consumption","Arkansas","AR",7301 +2015-12-01,"Industrial Consumption","Wyoming","WY",4626 +2015-12-01,"Industrial Consumption","Kentucky","KY",10000 +2015-12-01,"Industrial Consumption","North Dakota","ND",2377 +2015-12-01,"Industrial Consumption","Montana","MT",2178 +2015-12-01,"Industrial Consumption","Maryland","MD",1312 +2015-12-01,"Industrial Consumption","Washington","WA",7520 +2015-12-01,"Industrial Consumption","Maine","ME",1526 +2015-12-01,"Industrial Consumption","South Carolina","SC",7938 +2015-12-01,"Industrial Consumption","Tennessee","TN",9843 +2015-12-01,"Industrial Consumption","Indiana","IN",33407 +2015-12-01,"Industrial Consumption","New York","NY",6684 +2015-12-01,"Industrial Consumption","Illinois","IL",24502 +2015-12-01,"Industrial Consumption","Georgia","GA",13423 +2015-12-01,"Industrial Consumption","District of Columbia","DC",0 +2015-12-01,"Industrial Consumption","Oklahoma","OK",17932 +2015-12-01,"Industrial Consumption","South Dakota","SD",3872 +2015-12-01,"Industrial Consumption","New Mexico","NM",1571 +2015-12-01,"Industrial Consumption","Arizona","AZ",2029 +2015-12-01,"Industrial Consumption","California","CA",66909 +2015-12-01,"Industrial Consumption","Virginia","VA",7186 +2015-12-01,"Industrial Consumption","Vermont","VT",188 +2015-12-01,"Industrial Consumption","New Hampshire","NH",743 +2015-12-01,"Industrial Consumption","Michigan","MI",15555 +2015-12-01,"Industrial Consumption","North Carolina","NC",9050 +2015-12-01,"Industrial Consumption","Louisiana","LA",85222 +2015-12-01,"Industrial Consumption","U.S.","U.S.",674532 +2015-12-01,"Industrial Consumption","Alabama","AL",15719 +2015-12-01,"Industrial Consumption","West Virginia","WV",2390 +2015-12-01,"Industrial Consumption","Minnesota","MN",15545 +2015-12-01,"Industrial Consumption","Idaho","ID",3399 +2015-12-01,"Industrial Consumption","Connecticut","CT",2194 +2015-12-01,"Industrial Consumption","Alaska","AK",422 +2015-12-01,"Industrial Consumption","Missouri","MO",6158 +2015-12-01,"Industrial Consumption","Nebraska","NE",7161 +2015-12-01,"Industrial Consumption","New Jersey","NJ",4211 +2015-12-01,"Industrial Consumption","Iowa","IA",15802 +2015-12-01,"Industrial Consumption","Delaware","DE",3040 +2015-12-01,"Industrial Consumption","Utah","UT",3568 +2015-12-01,"Industrial Consumption","Pennsylvania","PA",18318 +2015-12-01,"Industrial Consumption","Oregon","OR",5136 +2015-12-01,"Industrial Consumption","Mississippi","MS",10510 +2015-12-01,"Industrial Consumption","Texas","TX",145313 +2015-12-01,"Industrial Consumption","Wisconsin","WI",12901 +2015-12-01,"Industrial Consumption","Florida","FL",8855 +2015-12-01,"Industrial Consumption","Rhode Island","RI",742 +2015-12-01,"Industrial Consumption","Kansas","KS",12396 +2015-12-01,"Industrial Consumption","Nevada","NV",1467 +2015-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",133407 +2015-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",64859 +2015-12-01,"Residential Consumption","Utah","UT",12346 +2015-12-01,"Residential Consumption","Michigan","MI",35475 +2015-12-01,"Residential Consumption","Indiana","IN",16792 +2015-12-01,"Residential Consumption","New Jersey","NJ",22176 +2015-12-01,"Residential Consumption","Colorado","CO",22545 +2015-12-01,"Residential Consumption","Missouri","MO",12940 +2015-12-01,"Residential Consumption","California","CA",73056 +2015-12-01,"Residential Consumption","Hawaii","HI",47 +2015-12-01,"Residential Consumption","Maine","ME",315 +2015-12-01,"Residential Consumption","Alaska","AK",2683 +2015-12-01,"Residential Consumption","West Virginia","WV",2449 +2015-12-01,"Residential Consumption","South Carolina","SC",3129 +2015-12-01,"Residential Consumption","North Carolina","NC",6836 +2015-12-01,"Residential Consumption","Connecticut","CT",4749 +2015-12-01,"Residential Consumption","Wisconsin","WI",16449 +2015-12-01,"Residential Consumption","Delaware","DE",1049 +2015-12-01,"Residential Consumption","Arizona","AZ",6667 +2015-12-01,"Residential Consumption","Oregon","OR",6927 +2015-12-01,"Residential Consumption","Iowa","IA",9057 +2015-12-01,"Residential Consumption","Minnesota","MN",17835 +2015-12-01,"Residential Consumption","New Hampshire","NH",884 +2015-12-01,"Residential Consumption","Wyoming","WY",2277 +2015-12-01,"Residential Consumption","Rhode Island","RI",1952 +2015-12-01,"Residential Consumption","Louisiana","LA",3762 +2015-12-01,"Residential Consumption","Vermont","VT",402 +2015-12-01,"Residential Consumption","Virginia","VA",8151 +2015-12-01,"Residential Consumption","Nevada","NV",7344 +2015-12-01,"Residential Consumption","Georgia","GA",11963 +2015-12-01,"Residential Consumption","New Mexico","NM",6207 +2015-12-01,"Residential Consumption","Massachusetts","MA",12658 +2015-12-01,"Residential Consumption","Kentucky","KY",5853 +2015-12-01,"Residential Consumption","Kansas","KS",8933 +2015-12-01,"Residential Consumption","Washington","WA",12469 +2015-12-01,"Residential Consumption","New York","NY",44302 +2015-12-01,"Residential Consumption","Illinois","IL",50976 +2015-12-01,"Residential Consumption","Texas","TX",28033 +2015-12-01,"Residential Consumption","Maryland","MD",8376 +2015-12-01,"Residential Consumption","District of Columbia","DC",1456 +2015-12-01,"Residential Consumption","Pennsylvania","PA",24492 +2015-12-01,"Residential Consumption","North Dakota","ND",1698 +2015-12-01,"Residential Consumption","Idaho","ID",4842 +2015-12-01,"Residential Consumption","Montana","MT",3283 +2015-12-01,"Residential Consumption","U.S.","U.S.",590911 +2015-12-01,"Residential Consumption","Mississippi","MS",2448 +2015-12-01,"Residential Consumption","Tennessee","TN",7708 +2015-12-01,"Residential Consumption","Florida","FL",1459 +2015-12-01,"Residential Consumption","Oklahoma","OK",9337 +2015-12-01,"Residential Consumption","Ohio","OH",30726 +2015-12-01,"Residential Consumption","Nebraska","NE",5620 +2015-12-01,"Residential Consumption","South Dakota","SD",2016 +2015-12-01,"Residential Consumption","Arkansas","AR",4266 +2015-12-01,"Residential Consumption","Alabama","AL",3496 +2015-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2015-12-01,"Vehicle Fuel Consumption","Alabama","AL",26 +2015-12-01,"Vehicle Fuel Consumption","Louisiana","LA",14 +2015-12-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2015-12-01,"Vehicle Fuel Consumption","Utah","UT",28 +2015-12-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2015-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",69 +2015-12-01,"Vehicle Fuel Consumption","Missouri","MO",6 +2015-12-01,"Vehicle Fuel Consumption","Colorado","CO",31 +2015-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2015-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2015-12-01,"Vehicle Fuel Consumption","Ohio","OH",44 +2015-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2015-12-01,"Vehicle Fuel Consumption","Nebraska","NE",5 +2015-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",10 +2015-12-01,"Vehicle Fuel Consumption","Texas","TX",373 +2015-12-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2015-12-01,"Vehicle Fuel Consumption","California","CA",1548 +2015-12-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2015-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",3345 +2015-12-01,"Vehicle Fuel Consumption","Washington","WA",38 +2015-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2015-12-01,"Vehicle Fuel Consumption","New York","NY",288 +2015-12-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2015-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2015-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",6 +2015-12-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2015-12-01,"Vehicle Fuel Consumption","North Carolina","NC",12 +2015-12-01,"Vehicle Fuel Consumption","Illinois","IL",33 +2015-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2015-12-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2015-12-01,"Vehicle Fuel Consumption","Kentucky","KY",9 +2015-12-01,"Vehicle Fuel Consumption","Virginia","VA",23 +2015-12-01,"Vehicle Fuel Consumption","Arizona","AZ",187 +2015-12-01,"Vehicle Fuel Consumption","Florida","FL",29 +2015-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2015-12-01,"Vehicle Fuel Consumption","Michigan","MI",26 +2015-12-01,"Vehicle Fuel Consumption","Minnesota","MN",6 +2015-12-01,"Vehicle Fuel Consumption","Connecticut","CT",1 +2015-12-01,"Vehicle Fuel Consumption","New Mexico","NM",14 +2015-12-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2015-12-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2015-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2015-12-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2015-12-01,"Vehicle Fuel Consumption","South Carolina","SC",3 +2015-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",45 +2015-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",39 +2015-12-01,"Vehicle Fuel Consumption","Kansas","KS",9 +2015-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2015-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",69 +2015-12-01,"Vehicle Fuel Consumption","Maryland","MD",19 +2015-12-01,"Vehicle Fuel Consumption","Georgia","GA",136 +2016-01-01,"Commercial Consumption","Wyoming","WY",2059 +2016-01-01,"Commercial Consumption","Virginia","VA",11597 +2016-01-01,"Commercial Consumption","New Jersey","NJ",22901 +2016-01-01,"Commercial Consumption","Delaware","DE",1926 +2016-01-01,"Commercial Consumption","Washington","WA",7434 +2016-01-01,"Commercial Consumption","Colorado","CO",9288 +2016-01-01,"Commercial Consumption","U.S.","U.S.",503093 +2016-01-01,"Commercial Consumption","Maryland","MD",11424 +2016-01-01,"Commercial Consumption","Iowa","IA",8918 +2016-01-01,"Commercial Consumption","Michigan","MI",25886 +2016-01-01,"Commercial Consumption","Louisiana","LA",4243 +2016-01-01,"Commercial Consumption","Utah","UT",6937 +2016-01-01,"Commercial Consumption","New Mexico","NM",3942 +2016-01-01,"Commercial Consumption","Pennsylvania","PA",26331 +2016-01-01,"Commercial Consumption","New Hampshire","NH",1539 +2016-01-01,"Commercial Consumption","Idaho","ID",2827 +2016-01-01,"Commercial Consumption","Hawaii","HI",197 +2016-01-01,"Commercial Consumption","Arizona","AZ",4918 +2016-01-01,"Commercial Consumption","South Carolina","SC",3836 +2016-01-01,"Commercial Consumption","Missouri","MO",10686 +2016-01-01,"Commercial Consumption","Arkansas","AR",6318 +2016-01-01,"Commercial Consumption","Alabama","AL",4582 +2016-01-01,"Commercial Consumption","Mississippi","MS",3137 +2016-01-01,"Commercial Consumption","Tennessee","TN",9783 +2016-01-01,"Commercial Consumption","District of Columbia","DC",2596 +2016-01-01,"Commercial Consumption","Oklahoma","OK",7129 +2016-01-01,"Commercial Consumption","Florida","FL",6679 +2016-01-01,"Commercial Consumption","Alaska","AK",2110 +2016-01-01,"Commercial Consumption","California","CA",26743 +2016-01-01,"Commercial Consumption","New York","NY",45539 +2016-01-01,"Commercial Consumption","Nebraska","NE",5094 +2016-01-01,"Commercial Consumption","Nevada","NV",4404 +2016-01-01,"Commercial Consumption","West Virginia","WV",3768 +2016-01-01,"Commercial Consumption","North Dakota","ND",2115 +2016-01-01,"Commercial Consumption","North Carolina","NC",10183 +2016-01-01,"Commercial Consumption","Massachusetts","MA",16338 +2016-01-01,"Commercial Consumption","Maine","ME",1333 +2016-01-01,"Commercial Consumption","Kansas","KS",6023 +2016-01-01,"Commercial Consumption","Georgia","GA",10341 +2016-01-01,"Commercial Consumption","Vermont","VT",911 +2016-01-01,"Commercial Consumption","Indiana","IN",14341 +2016-01-01,"Commercial Consumption","Illinois","IL",36445 +2016-01-01,"Commercial Consumption","Kentucky","KY",6623 +2016-01-01,"Commercial Consumption","Texas","TX",23538 +2016-01-01,"Commercial Consumption","Rhode Island","RI",1983 +2016-01-01,"Commercial Consumption","Ohio","OH",29819 +2016-01-01,"Commercial Consumption","Connecticut","CT",7153 +2016-01-01,"Commercial Consumption","Minnesota","MN",16600 +2016-01-01,"Commercial Consumption","Oregon","OR",4202 +2016-01-01,"Commercial Consumption","Wisconsin","WI",15271 +2016-01-01,"Commercial Consumption","South Dakota","SD",1918 +2016-01-01,"Commercial Consumption","Montana","MT",3184 +2016-01-01,"Delivered to Consumers","Ohio","OH",133943 +2016-01-01,"Delivered to Consumers","California","CA",223373 +2016-01-01,"Delivered to Consumers","New Mexico","NM",19043 +2016-01-01,"Delivered to Consumers","Illinois","IL",151561 +2016-01-01,"Delivered to Consumers","Hawaii","HI",257 +2016-01-01,"Delivered to Consumers","Alaska","AK",7660 +2016-01-01,"Delivered to Consumers","Kentucky","KY",34717 +2016-01-01,"Delivered to Consumers","Virginia","VA",60715 +2016-01-01,"Delivered to Consumers","Pennsylvania","PA",128493 +2016-01-01,"Delivered to Consumers","North Dakota","ND",7260 +2016-01-01,"Delivered to Consumers","West Virginia","WV",11918 +2016-01-01,"Delivered to Consumers","Vermont","VT",1730 +2016-01-01,"Delivered to Consumers","Rhode Island","RI",8480 +2016-01-01,"Delivered to Consumers","Wisconsin","WI",66696 +2016-01-01,"Delivered to Consumers","Missouri","MO",41049 +2016-01-01,"Delivered to Consumers","Texas","TX",330283 +2016-01-01,"Delivered to Consumers","Louisiana","LA",130023 +2016-01-01,"Delivered to Consumers","Georgia","GA",79477 +2016-01-01,"Delivered to Consumers","U.S.","U.S.",2880714 +2016-01-01,"Delivered to Consumers","South Dakota","SD",8869 +2016-01-01,"Delivered to Consumers","Maryland","MD",30715 +2016-01-01,"Delivered to Consumers","Michigan","MI",116614 +2016-01-01,"Delivered to Consumers","Alabama","AL",64396 +2016-01-01,"Delivered to Consumers","North Carolina","NC",60153 +2016-01-01,"Delivered to Consumers","South Carolina","SC",28467 +2016-01-01,"Delivered to Consumers","Arizona","AZ",31130 +2016-01-01,"Delivered to Consumers","Florida","FL",105732 +2016-01-01,"Delivered to Consumers","Montana","MT",8819 +2016-01-01,"Delivered to Consumers","Idaho","ID",13896 +2016-01-01,"Delivered to Consumers","Mississippi","MS",49982 +2016-01-01,"Delivered to Consumers","Massachusetts","MA",50432 +2016-01-01,"Delivered to Consumers","Oregon","OR",27145 +2016-01-01,"Delivered to Consumers","Nevada","NV",32635 +2016-01-01,"Delivered to Consumers","New Jersey","NJ",94640 +2016-01-01,"Delivered to Consumers","New Hampshire","NH",5905 +2016-01-01,"Delivered to Consumers","District of Columbia","DC",5141 +2016-01-01,"Delivered to Consumers","Delaware","DE",9006 +2016-01-01,"Delivered to Consumers","New York","NY",162191 +2016-01-01,"Delivered to Consumers","Nebraska","NE",19513 +2016-01-01,"Delivered to Consumers","Minnesota","MN",63197 +2016-01-01,"Delivered to Consumers","Wyoming","WY",8596 +2016-01-01,"Delivered to Consumers","Oklahoma","OK",58803 +2016-01-01,"Delivered to Consumers","Kansas","KS",31387 +2016-01-01,"Delivered to Consumers","Iowa","IA",40842 +2016-01-01,"Delivered to Consumers","Arkansas","AR",29571 +2016-01-01,"Delivered to Consumers","Maine","ME",5905 +2016-01-01,"Delivered to Consumers","Utah","UT",27844 +2016-01-01,"Delivered to Consumers","Indiana","IN",93837 +2016-01-01,"Delivered to Consumers","Tennessee","TN",43470 +2016-01-01,"Delivered to Consumers","Connecticut","CT",28655 +2016-01-01,"Delivered to Consumers","Colorado","CO",48543 +2016-01-01,"Delivered to Consumers","Washington","WA",38006 +2016-01-01,"Electric Power Consumption","Colorado","CO",7868 +2016-01-01,"Electric Power Consumption","Arkansas","AR",8629 +2016-01-01,"Electric Power Consumption","Texas","TX",122753 +2016-01-01,"Electric Power Consumption","Rhode Island","RI",2438 +2016-01-01,"Electric Power Consumption","Utah","UT",4892 +2016-01-01,"Electric Power Consumption","New Hampshire","NH",2196 +2016-01-01,"Electric Power Consumption","Massachusetts","MA",9082 +2016-01-01,"Electric Power Consumption","Kentucky","KY",5411 +2016-01-01,"Electric Power Consumption","Hawaii","HI",NA +2016-01-01,"Electric Power Consumption","Maryland","MD",1197 +2016-01-01,"Electric Power Consumption","Florida","FL",86725 +2016-01-01,"Electric Power Consumption","Nebraska","NE",88 +2016-01-01,"Electric Power Consumption","Ohio","OH",19989 +2016-01-01,"Electric Power Consumption","Virginia","VA",23283 +2016-01-01,"Electric Power Consumption","Mississippi","MS",30858 +2016-01-01,"Electric Power Consumption","Montana","MT",416 +2016-01-01,"Electric Power Consumption","California","CA",60932 +2016-01-01,"Electric Power Consumption","Alabama","AL",33919 +2016-01-01,"Electric Power Consumption","Minnesota","MN",5400 +2016-01-01,"Electric Power Consumption","West Virginia","WV",204 +2016-01-01,"Electric Power Consumption","Iowa","IA",1634 +2016-01-01,"Electric Power Consumption","Vermont","VT",0 +2016-01-01,"Electric Power Consumption","Tennessee","TN",6356 +2016-01-01,"Electric Power Consumption","North Carolina","NC",23262 +2016-01-01,"Electric Power Consumption","Missouri","MO",2479 +2016-01-01,"Electric Power Consumption","Connecticut","CT",10479 +2016-01-01,"Electric Power Consumption","Georgia","GA",28632 +2016-01-01,"Electric Power Consumption","New Jersey","NJ",22939 +2016-01-01,"Electric Power Consumption","South Carolina","SC",9858 +2016-01-01,"Electric Power Consumption","Oregon","OR",10372 +2016-01-01,"Electric Power Consumption","Illinois","IL",8337 +2016-01-01,"Electric Power Consumption","Kansas","KS",720 +2016-01-01,"Electric Power Consumption","Wisconsin","WI",10265 +2016-01-01,"Electric Power Consumption","Pennsylvania","PA",36590 +2016-01-01,"Electric Power Consumption","U.S.","U.S.",773954 +2016-01-01,"Electric Power Consumption","North Dakota","ND",435 +2016-01-01,"Electric Power Consumption","Indiana","IN",15082 +2016-01-01,"Electric Power Consumption","Delaware","DE",2250 +2016-01-01,"Electric Power Consumption","Arizona","AZ",15254 +2016-01-01,"Electric Power Consumption","Idaho","ID",2887 +2016-01-01,"Electric Power Consumption","New York","NY",33634 +2016-01-01,"Electric Power Consumption","Oklahoma","OK",21696 +2016-01-01,"Electric Power Consumption","Michigan","MI",16416 +2016-01-01,"Electric Power Consumption","Nevada","NV",17928 +2016-01-01,"Electric Power Consumption","South Dakota","SD",545 +2016-01-01,"Electric Power Consumption","Maine","ME",2451 +2016-01-01,"Electric Power Consumption","Alaska","AK",2712 +2016-01-01,"Electric Power Consumption","Washington","WA",9645 +2016-01-01,"Electric Power Consumption","New Mexico","NM",6811 +2016-01-01,"Electric Power Consumption","Louisiana","LA",27974 +2016-01-01,"Electric Power Consumption","Wyoming","WY",32 +2016-01-01,"Industrial Consumption","Massachusetts","MA",5581 +2016-01-01,"Industrial Consumption","Wyoming","WY",4539 +2016-01-01,"Industrial Consumption","Connecticut","CT",2763 +2016-01-01,"Industrial Consumption","Indiana","IN",36930 +2016-01-01,"Industrial Consumption","Delaware","DE",2821 +2016-01-01,"Industrial Consumption","Montana","MT",2061 +2016-01-01,"Industrial Consumption","Hawaii","HI",7 +2016-01-01,"Industrial Consumption","Missouri","MO",6860 +2016-01-01,"Industrial Consumption","New Mexico","NM",1541 +2016-01-01,"Industrial Consumption","Utah","UT",3571 +2016-01-01,"Industrial Consumption","Nevada","NV",1603 +2016-01-01,"Industrial Consumption","California","CA",64278 +2016-01-01,"Industrial Consumption","New Hampshire","NH",869 +2016-01-01,"Industrial Consumption","North Carolina","NC",10497 +2016-01-01,"Industrial Consumption","Washington","WA",7964 +2016-01-01,"Industrial Consumption","Alabama","AL",18689 +2016-01-01,"Industrial Consumption","Nebraska","NE",7251 +2016-01-01,"Industrial Consumption","West Virginia","WV",2669 +2016-01-01,"Industrial Consumption","New Jersey","NJ",6048 +2016-01-01,"Industrial Consumption","North Dakota","ND",2753 +2016-01-01,"Industrial Consumption","Oklahoma","OK",17935 +2016-01-01,"Industrial Consumption","Ohio","OH",29762 +2016-01-01,"Industrial Consumption","Oregon","OR",5723 +2016-01-01,"Industrial Consumption","New York","NY",8114 +2016-01-01,"Industrial Consumption","Arkansas","AR",8580 +2016-01-01,"Industrial Consumption","Texas","TX",142240 +2016-01-01,"Industrial Consumption","South Carolina","SC",7900 +2016-01-01,"Industrial Consumption","Virginia","VA",8622 +2016-01-01,"Industrial Consumption","Wisconsin","WI",16152 +2016-01-01,"Industrial Consumption","Tennessee","TN",12233 +2016-01-01,"Industrial Consumption","Idaho","ID",3644 +2016-01-01,"Industrial Consumption","Iowa","IA",17022 +2016-01-01,"Industrial Consumption","Kentucky","KY",12020 +2016-01-01,"Industrial Consumption","District of Columbia","DC",0 +2016-01-01,"Industrial Consumption","Alaska","AK",479 +2016-01-01,"Industrial Consumption","South Dakota","SD",4117 +2016-01-01,"Industrial Consumption","U.S.","U.S.",721171 +2016-01-01,"Industrial Consumption","Minnesota","MN",17372 +2016-01-01,"Industrial Consumption","Illinois","IL",27716 +2016-01-01,"Industrial Consumption","Georgia","GA",14370 +2016-01-01,"Industrial Consumption","Maryland","MD",1311 +2016-01-01,"Industrial Consumption","Arizona","AZ",2030 +2016-01-01,"Industrial Consumption","Vermont","VT",220 +2016-01-01,"Industrial Consumption","Louisiana","LA",90371 +2016-01-01,"Industrial Consumption","Colorado","CO",9126 +2016-01-01,"Industrial Consumption","Kansas","KS",11858 +2016-01-01,"Industrial Consumption","Pennsylvania","PA",21103 +2016-01-01,"Industrial Consumption","Mississippi","MS",10814 +2016-01-01,"Industrial Consumption","Maine","ME",1685 +2016-01-01,"Industrial Consumption","Florida","FL",9538 +2016-01-01,"Industrial Consumption","Rhode Island","RI",730 +2016-01-01,"Industrial Consumption","Michigan","MI",19086 +2016-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",132516 +2016-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",78465 +2016-01-01,"Residential Consumption","Iowa","IA",13266 +2016-01-01,"Residential Consumption","Utah","UT",12419 +2016-01-01,"Residential Consumption","Maine","ME",436 +2016-01-01,"Residential Consumption","Washington","WA",12921 +2016-01-01,"Residential Consumption","U.S.","U.S.",878936 +2016-01-01,"Residential Consumption","Illinois","IL",79022 +2016-01-01,"Residential Consumption","South Carolina","SC",6866 +2016-01-01,"Residential Consumption","Hawaii","HI",52 +2016-01-01,"Residential Consumption","Wisconsin","WI",25000 +2016-01-01,"Residential Consumption","Maryland","MD",16770 +2016-01-01,"Residential Consumption","District of Columbia","DC",2464 +2016-01-01,"Residential Consumption","Vermont","VT",598 +2016-01-01,"Residential Consumption","Nebraska","NE",7072 +2016-01-01,"Residential Consumption","Colorado","CO",22222 +2016-01-01,"Residential Consumption","Oklahoma","OK",11999 +2016-01-01,"Residential Consumption","Alaska","AK",2358 +2016-01-01,"Residential Consumption","Mississippi","MS",5167 +2016-01-01,"Residential Consumption","Louisiana","LA",7419 +2016-01-01,"Residential Consumption","Tennessee","TN",15073 +2016-01-01,"Residential Consumption","Pennsylvania","PA",44428 +2016-01-01,"Residential Consumption","Florida","FL",2738 +2016-01-01,"Residential Consumption","North Dakota","ND",1956 +2016-01-01,"Residential Consumption","Massachusetts","MA",19399 +2016-01-01,"Residential Consumption","New Jersey","NJ",42724 +2016-01-01,"Residential Consumption","Kansas","KS",12771 +2016-01-01,"Residential Consumption","Missouri","MO",21002 +2016-01-01,"Residential Consumption","California","CA",69803 +2016-01-01,"Residential Consumption","Oregon","OR",6827 +2016-01-01,"Residential Consumption","Indiana","IN",27474 +2016-01-01,"Residential Consumption","Kentucky","KY",10651 +2016-01-01,"Residential Consumption","West Virginia","WV",5275 +2016-01-01,"Residential Consumption","New York","NY",74579 +2016-01-01,"Residential Consumption","Connecticut","CT",8259 +2016-01-01,"Residential Consumption","Michigan","MI",55192 +2016-01-01,"Residential Consumption","Nevada","NV",8540 +2016-01-01,"Residential Consumption","New Hampshire","NH",1293 +2016-01-01,"Residential Consumption","Alabama","AL",7195 +2016-01-01,"Residential Consumption","Ohio","OH",54299 +2016-01-01,"Residential Consumption","North Carolina","NC",16193 +2016-01-01,"Residential Consumption","New Mexico","NM",6740 +2016-01-01,"Residential Consumption","Idaho","ID",4525 +2016-01-01,"Residential Consumption","Arkansas","AR",6040 +2016-01-01,"Residential Consumption","Delaware","DE",2009 +2016-01-01,"Residential Consumption","Arizona","AZ",8719 +2016-01-01,"Residential Consumption","Wyoming","WY",1963 +2016-01-01,"Residential Consumption","Texas","TX",41423 +2016-01-01,"Residential Consumption","Rhode Island","RI",3320 +2016-01-01,"Residential Consumption","Virginia","VA",17158 +2016-01-01,"Residential Consumption","South Dakota","SD",2289 +2016-01-01,"Residential Consumption","Minnesota","MN",23813 +2016-01-01,"Residential Consumption","Georgia","GA",26056 +2016-01-01,"Residential Consumption","Montana","MT",3158 +2016-01-01,"Vehicle Fuel Consumption","Utah","UT",26 +2016-01-01,"Vehicle Fuel Consumption","Tennessee","TN",25 +2016-01-01,"Vehicle Fuel Consumption","Florida","FL",52 +2016-01-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-01-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-01-01,"Vehicle Fuel Consumption","Colorado","CO",38 +2016-01-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-01-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",3560 +2016-01-01,"Vehicle Fuel Consumption","Kentucky","KY",11 +2016-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-01-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-01-01,"Vehicle Fuel Consumption","Arizona","AZ",209 +2016-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",31 +2016-01-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2016-01-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",42 +2016-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-01-01,"Vehicle Fuel Consumption","Texas","TX",328 +2016-01-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",81 +2016-01-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-01-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-01-01,"Vehicle Fuel Consumption","Georgia","GA",79 +2016-01-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-01-01,"Vehicle Fuel Consumption","Ohio","OH",73 +2016-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",44 +2016-01-01,"Vehicle Fuel Consumption","Nevada","NV",160 +2016-01-01,"Vehicle Fuel Consumption","Missouri","MO",22 +2016-01-01,"Vehicle Fuel Consumption","California","CA",1617 +2016-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-01-01,"Vehicle Fuel Consumption","Washington","WA",42 +2016-01-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2016-01-01,"Vehicle Fuel Consumption","New York","NY",324 +2016-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2016-01-01,"Vehicle Fuel Consumption","Oregon","OR",20 +2016-01-01,"Vehicle Fuel Consumption","North Carolina","NC",18 +2016-01-01,"Vehicle Fuel Consumption","Illinois","IL",40 +2016-01-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-01-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-01-01,"Vehicle Fuel Consumption","Kansas","KS",16 +2016-01-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-01-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-01-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-02-01,"Commercial Consumption","Minnesota","MN",14112 +2016-02-01,"Commercial Consumption","Pennsylvania","PA",21414 +2016-02-01,"Commercial Consumption","Wisconsin","WI",13209 +2016-02-01,"Commercial Consumption","Maine","ME",1168 +2016-02-01,"Commercial Consumption","Alabama","AL",3092 +2016-02-01,"Commercial Consumption","Arizona","AZ",3762 +2016-02-01,"Commercial Consumption","Tennessee","TN",7279 +2016-02-01,"Commercial Consumption","Utah","UT",5361 +2016-02-01,"Commercial Consumption","Oregon","OR",3165 +2016-02-01,"Commercial Consumption","Massachusetts","MA",14235 +2016-02-01,"Commercial Consumption","Georgia","GA",7910 +2016-02-01,"Commercial Consumption","Montana","MT",2390 +2016-02-01,"Commercial Consumption","Kansas","KS",4496 +2016-02-01,"Commercial Consumption","Florida","FL",6135 +2016-02-01,"Commercial Consumption","Vermont","VT",724 +2016-02-01,"Commercial Consumption","Hawaii","HI",192 +2016-02-01,"Commercial Consumption","Delaware","DE",1595 +2016-02-01,"Commercial Consumption","Michigan","MI",24382 +2016-02-01,"Commercial Consumption","Wyoming","WY",1634 +2016-02-01,"Commercial Consumption","Missouri","MO",8517 +2016-02-01,"Commercial Consumption","South Dakota","SD",1395 +2016-02-01,"Commercial Consumption","Alaska","AK",1753 +2016-02-01,"Commercial Consumption","New York","NY",39285 +2016-02-01,"Commercial Consumption","South Carolina","SC",2982 +2016-02-01,"Commercial Consumption","Virginia","VA",9338 +2016-02-01,"Commercial Consumption","New Jersey","NJ",19959 +2016-02-01,"Commercial Consumption","New Hampshire","NH",1283 +2016-02-01,"Commercial Consumption","Kentucky","KY",5408 +2016-02-01,"Commercial Consumption","U.S.","U.S.",413548 +2016-02-01,"Commercial Consumption","Rhode Island","RI",1747 +2016-02-01,"Commercial Consumption","Ohio","OH",23507 +2016-02-01,"Commercial Consumption","California","CA",21460 +2016-02-01,"Commercial Consumption","Mississippi","MS",2208 +2016-02-01,"Commercial Consumption","Indiana","IN",11412 +2016-02-01,"Commercial Consumption","Washington","WA",5867 +2016-02-01,"Commercial Consumption","Idaho","ID",2111 +2016-02-01,"Commercial Consumption","Arkansas","AR",5576 +2016-02-01,"Commercial Consumption","Nevada","NV",3408 +2016-02-01,"Commercial Consumption","Illinois","IL",31008 +2016-02-01,"Commercial Consumption","West Virginia","WV",3075 +2016-02-01,"Commercial Consumption","North Dakota","ND",1629 +2016-02-01,"Commercial Consumption","North Carolina","NC",7910 +2016-02-01,"Commercial Consumption","Colorado","CO",7280 +2016-02-01,"Commercial Consumption","New Mexico","NM",2815 +2016-02-01,"Commercial Consumption","Oklahoma","OK",4864 +2016-02-01,"Commercial Consumption","Maryland","MD",9691 +2016-02-01,"Commercial Consumption","Connecticut","CT",6810 +2016-02-01,"Commercial Consumption","Louisiana","LA",2777 +2016-02-01,"Commercial Consumption","District of Columbia","DC",2469 +2016-02-01,"Commercial Consumption","Texas","TX",18764 +2016-02-01,"Commercial Consumption","Iowa","IA",7139 +2016-02-01,"Commercial Consumption","Nebraska","NE",3846 +2016-02-01,"Delivered to Consumers","California","CA",174197 +2016-02-01,"Delivered to Consumers","South Carolina","SC",24033 +2016-02-01,"Delivered to Consumers","Oregon","OR",22433 +2016-02-01,"Delivered to Consumers","New Jersey","NJ",80050 +2016-02-01,"Delivered to Consumers","Utah","UT",22264 +2016-02-01,"Delivered to Consumers","Maryland","MD",26982 +2016-02-01,"Delivered to Consumers","Tennessee","TN",36150 +2016-02-01,"Delivered to Consumers","Missouri","MO",32878 +2016-02-01,"Delivered to Consumers","Arizona","AZ",24125 +2016-02-01,"Delivered to Consumers","Washington","WA",29006 +2016-02-01,"Delivered to Consumers","Delaware","DE",8433 +2016-02-01,"Delivered to Consumers","Illinois","IL",128247 +2016-02-01,"Delivered to Consumers","New York","NY",143852 +2016-02-01,"Delivered to Consumers","Arkansas","AR",24062 +2016-02-01,"Delivered to Consumers","Virginia","VA",53844 +2016-02-01,"Delivered to Consumers","North Carolina","NC",55682 +2016-02-01,"Delivered to Consumers","Georgia","GA",67243 +2016-02-01,"Delivered to Consumers","New Mexico","NM",15175 +2016-02-01,"Delivered to Consumers","Indiana","IN",80093 +2016-02-01,"Delivered to Consumers","Oklahoma","OK",44300 +2016-02-01,"Delivered to Consumers","Kansas","KS",24431 +2016-02-01,"Delivered to Consumers","Wisconsin","WI",57895 +2016-02-01,"Delivered to Consumers","Pennsylvania","PA",112995 +2016-02-01,"Delivered to Consumers","West Virginia","WV",10025 +2016-02-01,"Delivered to Consumers","Alaska","AK",6395 +2016-02-01,"Delivered to Consumers","Iowa","IA",34683 +2016-02-01,"Delivered to Consumers","Nebraska","NE",15961 +2016-02-01,"Delivered to Consumers","Mississippi","MS",45385 +2016-02-01,"Delivered to Consumers","Texas","TX",285885 +2016-02-01,"Delivered to Consumers","District of Columbia","DC",4775 +2016-02-01,"Delivered to Consumers","Rhode Island","RI",7873 +2016-02-01,"Delivered to Consumers","Hawaii","HI",246 +2016-02-01,"Delivered to Consumers","Ohio","OH",114458 +2016-02-01,"Delivered to Consumers","Kentucky","KY",28590 +2016-02-01,"Delivered to Consumers","Colorado","CO",38671 +2016-02-01,"Delivered to Consumers","North Dakota","ND",6242 +2016-02-01,"Delivered to Consumers","Minnesota","MN",54432 +2016-02-01,"Delivered to Consumers","U.S.","U.S.",2459545 +2016-02-01,"Delivered to Consumers","Wyoming","WY",7467 +2016-02-01,"Delivered to Consumers","Vermont","VT",1490 +2016-02-01,"Delivered to Consumers","Idaho","ID",11131 +2016-02-01,"Delivered to Consumers","Connecticut","CT",26671 +2016-02-01,"Delivered to Consumers","Alabama","AL",54608 +2016-02-01,"Delivered to Consumers","Massachusetts","MA",47175 +2016-02-01,"Delivered to Consumers","Nevada","NV",25494 +2016-02-01,"Delivered to Consumers","Maine","ME",5004 +2016-02-01,"Delivered to Consumers","New Hampshire","NH",4399 +2016-02-01,"Delivered to Consumers","Florida","FL",96617 +2016-02-01,"Delivered to Consumers","South Dakota","SD",7766 +2016-02-01,"Delivered to Consumers","Montana","MT",6873 +2016-02-01,"Delivered to Consumers","Michigan","MI",107023 +2016-02-01,"Delivered to Consumers","Louisiana","LA",115837 +2016-02-01,"Electric Power Consumption","Louisiana","LA",24798 +2016-02-01,"Electric Power Consumption","Oregon","OR",9347 +2016-02-01,"Electric Power Consumption","Wyoming","WY",37 +2016-02-01,"Electric Power Consumption","North Dakota","ND",840 +2016-02-01,"Electric Power Consumption","Montana","MT",341 +2016-02-01,"Electric Power Consumption","Oklahoma","OK",16177 +2016-02-01,"Electric Power Consumption","Minnesota","MN",5206 +2016-02-01,"Electric Power Consumption","North Carolina","NC",24788 +2016-02-01,"Electric Power Consumption","Florida","FL",79445 +2016-02-01,"Electric Power Consumption","Virginia","VA",22925 +2016-02-01,"Electric Power Consumption","Arkansas","AR",5866 +2016-02-01,"Electric Power Consumption","New York","NY",29327 +2016-02-01,"Electric Power Consumption","Nevada","NV",14835 +2016-02-01,"Electric Power Consumption","Nebraska","NE",103 +2016-02-01,"Electric Power Consumption","Mississippi","MS",29753 +2016-02-01,"Electric Power Consumption","Maryland","MD",2274 +2016-02-01,"Electric Power Consumption","Connecticut","CT",9694 +2016-02-01,"Electric Power Consumption","Alabama","AL",29302 +2016-02-01,"Electric Power Consumption","New Mexico","NM",5938 +2016-02-01,"Electric Power Consumption","Colorado","CO",6405 +2016-02-01,"Electric Power Consumption","Texas","TX",105227 +2016-02-01,"Electric Power Consumption","Pennsylvania","PA",33779 +2016-02-01,"Electric Power Consumption","New Hampshire","NH",1145 +2016-02-01,"Electric Power Consumption","Kansas","KS",566 +2016-02-01,"Electric Power Consumption","Wisconsin","WI",10355 +2016-02-01,"Electric Power Consumption","Tennessee","TN",6326 +2016-02-01,"Electric Power Consumption","Missouri","MO",2759 +2016-02-01,"Electric Power Consumption","Arizona","AZ",12559 +2016-02-01,"Electric Power Consumption","California","CA",48599 +2016-02-01,"Electric Power Consumption","Alaska","AK",2331 +2016-02-01,"Electric Power Consumption","South Carolina","SC",8074 +2016-02-01,"Electric Power Consumption","Michigan","MI",16849 +2016-02-01,"Electric Power Consumption","Iowa","IA",1471 +2016-02-01,"Electric Power Consumption","Utah","UT",4249 +2016-02-01,"Electric Power Consumption","Illinois","IL",8962 +2016-02-01,"Electric Power Consumption","Massachusetts","MA",9526 +2016-02-01,"Electric Power Consumption","Kentucky","KY",3725 +2016-02-01,"Electric Power Consumption","Hawaii","HI",NA +2016-02-01,"Electric Power Consumption","Ohio","OH",19433 +2016-02-01,"Electric Power Consumption","Indiana","IN",13185 +2016-02-01,"Electric Power Consumption","Georgia","GA",25673 +2016-02-01,"Electric Power Consumption","Washington","WA",7033 +2016-02-01,"Electric Power Consumption","New Jersey","NJ",20351 +2016-02-01,"Electric Power Consumption","Idaho","ID",2392 +2016-02-01,"Electric Power Consumption","Rhode Island","RI",2528 +2016-02-01,"Electric Power Consumption","West Virginia","WV",222 +2016-02-01,"Electric Power Consumption","Vermont","VT",NA +2016-02-01,"Electric Power Consumption","U.S.","U.S.",689800 +2016-02-01,"Electric Power Consumption","South Dakota","SD",674 +2016-02-01,"Electric Power Consumption","Maine","ME",1897 +2016-02-01,"Electric Power Consumption","Delaware","DE",2510 +2016-02-01,"Industrial Consumption","Hawaii","HI",7 +2016-02-01,"Industrial Consumption","Ohio","OH",27286 +2016-02-01,"Industrial Consumption","U.S.","U.S.",662790 +2016-02-01,"Industrial Consumption","Oregon","OR",4998 +2016-02-01,"Industrial Consumption","Maine","ME",1550 +2016-02-01,"Industrial Consumption","Alabama","AL",16687 +2016-02-01,"Industrial Consumption","Wyoming","WY",4263 +2016-02-01,"Industrial Consumption","Wisconsin","WI",14381 +2016-02-01,"Industrial Consumption","Iowa","IA",15850 +2016-02-01,"Industrial Consumption","Rhode Island","RI",799 +2016-02-01,"Industrial Consumption","Pennsylvania","PA",20507 +2016-02-01,"Industrial Consumption","Arkansas","AR",7673 +2016-02-01,"Industrial Consumption","South Carolina","SC",7284 +2016-02-01,"Industrial Consumption","Vermont","VT",204 +2016-02-01,"Industrial Consumption","Indiana","IN",34111 +2016-02-01,"Industrial Consumption","Georgia","GA",13817 +2016-02-01,"Industrial Consumption","Maryland","MD",1416 +2016-02-01,"Industrial Consumption","Missouri","MO",7122 +2016-02-01,"Industrial Consumption","Arizona","AZ",1793 +2016-02-01,"Industrial Consumption","Utah","UT",3600 +2016-02-01,"Industrial Consumption","New Jersey","NJ",4731 +2016-02-01,"Industrial Consumption","District of Columbia","DC",0 +2016-02-01,"Industrial Consumption","New Mexico","NM",1449 +2016-02-01,"Industrial Consumption","Tennessee","TN",11181 +2016-02-01,"Industrial Consumption","Idaho","ID",3333 +2016-02-01,"Industrial Consumption","Delaware","DE",2517 +2016-02-01,"Industrial Consumption","Montana","MT",1851 +2016-02-01,"Industrial Consumption","Washington","WA",6795 +2016-02-01,"Industrial Consumption","California","CA",58878 +2016-02-01,"Industrial Consumption","West Virginia","WV",2566 +2016-02-01,"Industrial Consumption","Kentucky","KY",10914 +2016-02-01,"Industrial Consumption","North Carolina","NC",10050 +2016-02-01,"Industrial Consumption","Alaska","AK",243 +2016-02-01,"Industrial Consumption","Massachusetts","MA",5317 +2016-02-01,"Industrial Consumption","Nevada","NV",1442 +2016-02-01,"Industrial Consumption","Nebraska","NE",6541 +2016-02-01,"Industrial Consumption","New Hampshire","NH",862 +2016-02-01,"Industrial Consumption","Michigan","MI",18123 +2016-02-01,"Industrial Consumption","North Dakota","ND",2263 +2016-02-01,"Industrial Consumption","Louisiana","LA",83366 +2016-02-01,"Industrial Consumption","Colorado","CO",7705 +2016-02-01,"Industrial Consumption","Kansas","KS",10736 +2016-02-01,"Industrial Consumption","New York","NY",8250 +2016-02-01,"Industrial Consumption","Mississippi","MS",10106 +2016-02-01,"Industrial Consumption","Texas","TX",131520 +2016-02-01,"Industrial Consumption","Oklahoma","OK",15612 +2016-02-01,"Industrial Consumption","South Dakota","SD",3932 +2016-02-01,"Industrial Consumption","Virginia","VA",7101 +2016-02-01,"Industrial Consumption","Minnesota","MN",15388 +2016-02-01,"Industrial Consumption","Florida","FL",8655 +2016-02-01,"Industrial Consumption","Connecticut","CT",2517 +2016-02-01,"Industrial Consumption","Illinois","IL",25499 +2016-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",125722 +2016-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",66993 +2016-02-01,"Residential Consumption","Texas","TX",30067 +2016-02-01,"Residential Consumption","Ohio","OH",44165 +2016-02-01,"Residential Consumption","Louisiana","LA",4881 +2016-02-01,"Residential Consumption","Michigan","MI",47638 +2016-02-01,"Residential Consumption","Maryland","MD",13589 +2016-02-01,"Residential Consumption","New Hampshire","NH",1101 +2016-02-01,"Residential Consumption","Montana","MT",2291 +2016-02-01,"Residential Consumption","Utah","UT",9030 +2016-02-01,"Residential Consumption","New York","NY",66686 +2016-02-01,"Residential Consumption","Oregon","OR",4904 +2016-02-01,"Residential Consumption","North Carolina","NC",12917 +2016-02-01,"Residential Consumption","Hawaii","HI",47 +2016-02-01,"Residential Consumption","Minnesota","MN",19714 +2016-02-01,"Residential Consumption","Indiana","IN",21376 +2016-02-01,"Residential Consumption","Wyoming","WY",1530 +2016-02-01,"Residential Consumption","South Dakota","SD",1766 +2016-02-01,"Residential Consumption","New Mexico","NM",4966 +2016-02-01,"Residential Consumption","Maine","ME",388 +2016-02-01,"Residential Consumption","North Dakota","ND",1509 +2016-02-01,"Residential Consumption","Arkansas","AR",4944 +2016-02-01,"Residential Consumption","Colorado","CO",17247 +2016-02-01,"Residential Consumption","Washington","WA",9272 +2016-02-01,"Residential Consumption","Alabama","AL",5516 +2016-02-01,"Residential Consumption","Mississippi","MS",3312 +2016-02-01,"Residential Consumption","Virginia","VA",14427 +2016-02-01,"Residential Consumption","Georgia","GA",19769 +2016-02-01,"Residential Consumption","Kansas","KS",8619 +2016-02-01,"Residential Consumption","Oklahoma","OK",7605 +2016-02-01,"Residential Consumption","Delaware","DE",1812 +2016-02-01,"Residential Consumption","Alaska","AK",2067 +2016-02-01,"Residential Consumption","West Virginia","WV",4160 +2016-02-01,"Residential Consumption","South Carolina","SC",5686 +2016-02-01,"Residential Consumption","Rhode Island","RI",2791 +2016-02-01,"Residential Consumption","Connecticut","CT",7649 +2016-02-01,"Residential Consumption","Vermont","VT",562 +2016-02-01,"Residential Consumption","Tennessee","TN",11341 +2016-02-01,"Residential Consumption","Nevada","NV",5658 +2016-02-01,"Residential Consumption","Kentucky","KY",8533 +2016-02-01,"Residential Consumption","Arizona","AZ",5816 +2016-02-01,"Residential Consumption","Illinois","IL",62741 +2016-02-01,"Residential Consumption","Iowa","IA",10221 +2016-02-01,"Residential Consumption","Wisconsin","WI",19942 +2016-02-01,"Residential Consumption","Nebraska","NE",5465 +2016-02-01,"Residential Consumption","Florida","FL",2333 +2016-02-01,"Residential Consumption","Massachusetts","MA",18068 +2016-02-01,"Residential Consumption","New Jersey","NJ",34983 +2016-02-01,"Residential Consumption","Missouri","MO",14459 +2016-02-01,"Residential Consumption","District of Columbia","DC",2230 +2016-02-01,"Residential Consumption","Pennsylvania","PA",37256 +2016-02-01,"Residential Consumption","Idaho","ID",3284 +2016-02-01,"Residential Consumption","California","CA",43748 +2016-02-01,"Residential Consumption","U.S.","U.S.",690077 +2016-02-01,"Vehicle Fuel Consumption","Virginia","VA",52 +2016-02-01,"Vehicle Fuel Consumption","Ohio","OH",68 +2016-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",39 +2016-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",42 +2016-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-02-01,"Vehicle Fuel Consumption","Arizona","AZ",196 +2016-02-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-02-01,"Vehicle Fuel Consumption","Georgia","GA",74 +2016-02-01,"Vehicle Fuel Consumption","Illinois","IL",38 +2016-02-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2016-02-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",76 +2016-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-02-01,"Vehicle Fuel Consumption","California","CA",1512 +2016-02-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-02-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-02-01,"Vehicle Fuel Consumption","Florida","FL",49 +2016-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",29 +2016-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",27 +2016-02-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-02-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",3330 +2016-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-02-01,"Vehicle Fuel Consumption","Washington","WA",39 +2016-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-02-01,"Vehicle Fuel Consumption","Nevada","NV",150 +2016-02-01,"Vehicle Fuel Consumption","Kansas","KS",15 +2016-02-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-02-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-02-01,"Vehicle Fuel Consumption","Kentucky","KY",10 +2016-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-02-01,"Vehicle Fuel Consumption","Louisiana","LA",15 +2016-02-01,"Vehicle Fuel Consumption","Minnesota","MN",11 +2016-02-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2016-02-01,"Vehicle Fuel Consumption","New York","NY",303 +2016-02-01,"Vehicle Fuel Consumption","Texas","TX",307 +2016-02-01,"Vehicle Fuel Consumption","Oregon","OR",18 +2016-02-01,"Vehicle Fuel Consumption","Michigan","MI",32 +2016-02-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2016-02-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-02-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-02-01,"Vehicle Fuel Consumption","Idaho","ID",11 +2016-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-02-01,"Vehicle Fuel Consumption","Utah","UT",24 +2016-02-01,"Vehicle Fuel Consumption","Missouri","MO",21 +2016-02-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-02-01,"Vehicle Fuel Consumption","Colorado","CO",36 +2016-02-01,"Vehicle Fuel Consumption","North Carolina","NC",17 +2016-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-03-01,"Commercial Consumption","West Virginia","WV",2330 +2016-03-01,"Commercial Consumption","Virginia","VA",6296 +2016-03-01,"Commercial Consumption","Maryland","MD",6514 +2016-03-01,"Commercial Consumption","Mississippi","MS",1435 +2016-03-01,"Commercial Consumption","South Carolina","SC",1845 +2016-03-01,"Commercial Consumption","Oklahoma","OK",3299 +2016-03-01,"Commercial Consumption","New Jersey","NJ",15021 +2016-03-01,"Commercial Consumption","Ohio","OH",14931 +2016-03-01,"Commercial Consumption","Idaho","ID",1734 +2016-03-01,"Commercial Consumption","Hawaii","HI",195 +2016-03-01,"Commercial Consumption","Nebraska","NE",2565 +2016-03-01,"Commercial Consumption","Washington","WA",5552 +2016-03-01,"Commercial Consumption","Missouri","MO",5205 +2016-03-01,"Commercial Consumption","Montana","MT",2230 +2016-03-01,"Commercial Consumption","U.S.","U.S.",298447 +2016-03-01,"Commercial Consumption","Georgia","GA",4392 +2016-03-01,"Commercial Consumption","Alabama","AL",1816 +2016-03-01,"Commercial Consumption","Arizona","AZ",3066 +2016-03-01,"Commercial Consumption","North Carolina","NC",4281 +2016-03-01,"Commercial Consumption","Utah","UT",4002 +2016-03-01,"Commercial Consumption","Pennsylvania","PA",13281 +2016-03-01,"Commercial Consumption","Texas","TX",14500 +2016-03-01,"Commercial Consumption","Alaska","AK",1664 +2016-03-01,"Commercial Consumption","Delaware","DE",1071 +2016-03-01,"Commercial Consumption","Louisiana","LA",2247 +2016-03-01,"Commercial Consumption","Minnesota","MN",10263 +2016-03-01,"Commercial Consumption","Maine","ME",1018 +2016-03-01,"Commercial Consumption","Kentucky","KY",3178 +2016-03-01,"Commercial Consumption","Arkansas","AR",4237 +2016-03-01,"Commercial Consumption","Indiana","IN",6491 +2016-03-01,"Commercial Consumption","District of Columbia","DC",1297 +2016-03-01,"Commercial Consumption","Wyoming","WY",1521 +2016-03-01,"Commercial Consumption","Oregon","OR",2922 +2016-03-01,"Commercial Consumption","Wisconsin","WI",9265 +2016-03-01,"Commercial Consumption","South Dakota","SD",1053 +2016-03-01,"Commercial Consumption","Florida","FL",5668 +2016-03-01,"Commercial Consumption","Rhode Island","RI",1247 +2016-03-01,"Commercial Consumption","Nevada","NV",2801 +2016-03-01,"Commercial Consumption","Colorado","CO",6191 +2016-03-01,"Commercial Consumption","New Mexico","NM",2196 +2016-03-01,"Commercial Consumption","Iowa","IA",4933 +2016-03-01,"Commercial Consumption","Connecticut","CT",5111 +2016-03-01,"Commercial Consumption","Michigan","MI",18468 +2016-03-01,"Commercial Consumption","Illinois","IL",21675 +2016-03-01,"Commercial Consumption","North Dakota","ND",1189 +2016-03-01,"Commercial Consumption","Massachusetts","MA",10864 +2016-03-01,"Commercial Consumption","New Hampshire","NH",962 +2016-03-01,"Commercial Consumption","Kansas","KS",2969 +2016-03-01,"Commercial Consumption","Vermont","VT",523 +2016-03-01,"Commercial Consumption","California","CA",20549 +2016-03-01,"Commercial Consumption","New York","NY",28203 +2016-03-01,"Commercial Consumption","Tennessee","TN",4180 +2016-03-01,"Delivered to Consumers","Rhode Island","RI",8439 +2016-03-01,"Delivered to Consumers","Tennessee","TN",26746 +2016-03-01,"Delivered to Consumers","Kentucky","KY",24222 +2016-03-01,"Delivered to Consumers","Alabama","AL",52232 +2016-03-01,"Delivered to Consumers","Pennsylvania","PA",91864 +2016-03-01,"Delivered to Consumers","North Carolina","NC",46701 +2016-03-01,"Delivered to Consumers","Missouri","MO",22035 +2016-03-01,"Delivered to Consumers","Nevada","NV",23474 +2016-03-01,"Delivered to Consumers","Louisiana","LA",120300 +2016-03-01,"Delivered to Consumers","Arizona","AZ",22214 +2016-03-01,"Delivered to Consumers","Washington","WA",24887 +2016-03-01,"Delivered to Consumers","Delaware","DE",8680 +2016-03-01,"Delivered to Consumers","Vermont","VT",1122 +2016-03-01,"Delivered to Consumers","South Dakota","SD",6770 +2016-03-01,"Delivered to Consumers","Idaho","ID",9231 +2016-03-01,"Delivered to Consumers","Ohio","OH",85031 +2016-03-01,"Delivered to Consumers","Virginia","VA",42386 +2016-03-01,"Delivered to Consumers","Utah","UT",18125 +2016-03-01,"Delivered to Consumers","New Mexico","NM",13229 +2016-03-01,"Delivered to Consumers","Iowa","IA",28997 +2016-03-01,"Delivered to Consumers","Arkansas","AR",27261 +2016-03-01,"Delivered to Consumers","Mississippi","MS",38750 +2016-03-01,"Delivered to Consumers","North Dakota","ND",5593 +2016-03-01,"Delivered to Consumers","U.S.","U.S.",2164467 +2016-03-01,"Delivered to Consumers","Michigan","MI",87032 +2016-03-01,"Delivered to Consumers","Wisconsin","WI",50110 +2016-03-01,"Delivered to Consumers","Florida","FL",107347 +2016-03-01,"Delivered to Consumers","Wyoming","WY",7422 +2016-03-01,"Delivered to Consumers","Montana","MT",6290 +2016-03-01,"Delivered to Consumers","Oklahoma","OK",42213 +2016-03-01,"Delivered to Consumers","South Carolina","SC",21786 +2016-03-01,"Delivered to Consumers","Maryland","MD",19870 +2016-03-01,"Delivered to Consumers","Alaska","AK",6175 +2016-03-01,"Delivered to Consumers","Nebraska","NE",12952 +2016-03-01,"Delivered to Consumers","Massachusetts","MA",39498 +2016-03-01,"Delivered to Consumers","California","CA",162754 +2016-03-01,"Delivered to Consumers","Oregon","OR",19837 +2016-03-01,"Delivered to Consumers","New Jersey","NJ",67513 +2016-03-01,"Delivered to Consumers","Georgia","GA",56885 +2016-03-01,"Delivered to Consumers","West Virginia","WV",8539 +2016-03-01,"Delivered to Consumers","Hawaii","HI",250 +2016-03-01,"Delivered to Consumers","Kansas","KS",19384 +2016-03-01,"Delivered to Consumers","Texas","TX",289057 +2016-03-01,"Delivered to Consumers","New Hampshire","NH",3329 +2016-03-01,"Delivered to Consumers","Minnesota","MN",43567 +2016-03-01,"Delivered to Consumers","Indiana","IN",67425 +2016-03-01,"Delivered to Consumers","Illinois","IL",98353 +2016-03-01,"Delivered to Consumers","New York","NY",115411 +2016-03-01,"Delivered to Consumers","Connecticut","CT",21405 +2016-03-01,"Delivered to Consumers","Colorado","CO",35560 +2016-03-01,"Delivered to Consumers","Maine","ME",3754 +2016-03-01,"Delivered to Consumers","District of Columbia","DC",2459 +2016-03-01,"Electric Power Consumption","Louisiana","LA",27234 +2016-03-01,"Electric Power Consumption","Arkansas","AR",12695 +2016-03-01,"Electric Power Consumption","Rhode Island","RI",4488 +2016-03-01,"Electric Power Consumption","Oregon","OR",7267 +2016-03-01,"Electric Power Consumption","Illinois","IL",12168 +2016-03-01,"Electric Power Consumption","Nebraska","NE",150 +2016-03-01,"Electric Power Consumption","Washington","WA",3785 +2016-03-01,"Electric Power Consumption","Virginia","VA",20405 +2016-03-01,"Electric Power Consumption","New Jersey","NJ",24328 +2016-03-01,"Electric Power Consumption","South Carolina","SC",10113 +2016-03-01,"Electric Power Consumption","Utah","UT",4493 +2016-03-01,"Electric Power Consumption","Kansas","KS",933 +2016-03-01,"Electric Power Consumption","Missouri","MO",2591 +2016-03-01,"Electric Power Consumption","Alaska","AK",2387 +2016-03-01,"Electric Power Consumption","Texas","TX",119813 +2016-03-01,"Electric Power Consumption","Michigan","MI",18925 +2016-03-01,"Electric Power Consumption","Iowa","IA",1464 +2016-03-01,"Electric Power Consumption","North Carolina","NC",28073 +2016-03-01,"Electric Power Consumption","Mississippi","MS",26478 +2016-03-01,"Electric Power Consumption","Montana","MT",361 +2016-03-01,"Electric Power Consumption","California","CA",38154 +2016-03-01,"Electric Power Consumption","New Mexico","NM",6245 +2016-03-01,"Electric Power Consumption","Wisconsin","WI",13359 +2016-03-01,"Electric Power Consumption","Wyoming","WY",161 +2016-03-01,"Electric Power Consumption","Vermont","VT",1 +2016-03-01,"Electric Power Consumption","Tennessee","TN",6916 +2016-03-01,"Electric Power Consumption","U.S.","U.S.",744765 +2016-03-01,"Electric Power Consumption","Delaware","DE",3849 +2016-03-01,"Electric Power Consumption","Florida","FL",90865 +2016-03-01,"Electric Power Consumption","Alabama","AL",30787 +2016-03-01,"Electric Power Consumption","Idaho","ID",1736 +2016-03-01,"Electric Power Consumption","West Virginia","WV",1077 +2016-03-01,"Electric Power Consumption","Pennsylvania","PA",36829 +2016-03-01,"Electric Power Consumption","Nevada","NV",15431 +2016-03-01,"Electric Power Consumption","Ohio","OH",18262 +2016-03-01,"Electric Power Consumption","Colorado","CO",7415 +2016-03-01,"Electric Power Consumption","Minnesota","MN",5186 +2016-03-01,"Electric Power Consumption","South Dakota","SD",629 +2016-03-01,"Electric Power Consumption","Indiana","IN",15464 +2016-03-01,"Electric Power Consumption","Connecticut","CT",8897 +2016-03-01,"Electric Power Consumption","Arizona","AZ",14142 +2016-03-01,"Electric Power Consumption","New York","NY",31526 +2016-03-01,"Electric Power Consumption","Oklahoma","OK",17695 +2016-03-01,"Electric Power Consumption","Maine","ME",606 +2016-03-01,"Electric Power Consumption","Kentucky","KY",6024 +2016-03-01,"Electric Power Consumption","Hawaii","HI",NA +2016-03-01,"Electric Power Consumption","Maryland","MD",4267 +2016-03-01,"Electric Power Consumption","Massachusetts","MA",10265 +2016-03-01,"Electric Power Consumption","New Hampshire","NH",749 +2016-03-01,"Electric Power Consumption","North Dakota","ND",664 +2016-03-01,"Electric Power Consumption","Georgia","GA",29414 +2016-03-01,"Industrial Consumption","New Mexico","NM",1437 +2016-03-01,"Industrial Consumption","Mississippi","MS",9098 +2016-03-01,"Industrial Consumption","Wisconsin","WI",13086 +2016-03-01,"Industrial Consumption","Minnesota","MN",15566 +2016-03-01,"Industrial Consumption","Florida","FL",9069 +2016-03-01,"Industrial Consumption","Indiana","IN",33805 +2016-03-01,"Industrial Consumption","Colorado","CO",7543 +2016-03-01,"Industrial Consumption","Washington","WA",6606 +2016-03-01,"Industrial Consumption","Kansas","KS",10366 +2016-03-01,"Industrial Consumption","U.S.","U.S.",662694 +2016-03-01,"Industrial Consumption","New Jersey","NJ",4181 +2016-03-01,"Industrial Consumption","Delaware","DE",2666 +2016-03-01,"Industrial Consumption","Alaska","AK",237 +2016-03-01,"Industrial Consumption","Massachusetts","MA",4604 +2016-03-01,"Industrial Consumption","South Dakota","SD",3785 +2016-03-01,"Industrial Consumption","Arizona","AZ",1708 +2016-03-01,"Industrial Consumption","New York","NY",7821 +2016-03-01,"Industrial Consumption","Virginia","VA",7455 +2016-03-01,"Industrial Consumption","Vermont","VT",204 +2016-03-01,"Industrial Consumption","Tennessee","TN",10158 +2016-03-01,"Industrial Consumption","Oregon","OR",5105 +2016-03-01,"Industrial Consumption","Alabama","AL",16861 +2016-03-01,"Industrial Consumption","Texas","TX",137784 +2016-03-01,"Industrial Consumption","New Hampshire","NH",803 +2016-03-01,"Industrial Consumption","Iowa","IA",15810 +2016-03-01,"Industrial Consumption","District of Columbia","DC",0 +2016-03-01,"Industrial Consumption","North Dakota","ND",2665 +2016-03-01,"Industrial Consumption","Montana","MT",1690 +2016-03-01,"Industrial Consumption","Missouri","MO",5553 +2016-03-01,"Industrial Consumption","Pennsylvania","PA",19230 +2016-03-01,"Industrial Consumption","Nevada","NV",1556 +2016-03-01,"Industrial Consumption","Nebraska","NE",6730 +2016-03-01,"Industrial Consumption","North Carolina","NC",9197 +2016-03-01,"Industrial Consumption","Georgia","GA",13421 +2016-03-01,"Industrial Consumption","Ohio","OH",24852 +2016-03-01,"Industrial Consumption","Utah","UT",3376 +2016-03-01,"Industrial Consumption","Maine","ME",1800 +2016-03-01,"Industrial Consumption","Arkansas","AR",7563 +2016-03-01,"Industrial Consumption","Idaho","ID",3184 +2016-03-01,"Industrial Consumption","Kentucky","KY",10354 +2016-03-01,"Industrial Consumption","Illinois","IL",23105 +2016-03-01,"Industrial Consumption","Maryland","MD",1528 +2016-03-01,"Industrial Consumption","Oklahoma","OK",16558 +2016-03-01,"Industrial Consumption","California","CA",62641 +2016-03-01,"Industrial Consumption","South Carolina","SC",7539 +2016-03-01,"Industrial Consumption","Hawaii","HI",6 +2016-03-01,"Industrial Consumption","Louisiana","LA",88194 +2016-03-01,"Industrial Consumption","West Virginia","WV",2513 +2016-03-01,"Industrial Consumption","Wyoming","WY",4405 +2016-03-01,"Industrial Consumption","Connecticut","CT",2044 +2016-03-01,"Industrial Consumption","Michigan","MI",16471 +2016-03-01,"Industrial Consumption","Rhode Island","RI",760 +2016-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",132875 +2016-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",58956 +2016-03-01,"Residential Consumption","Oregon","OR",4524 +2016-03-01,"Residential Consumption","North Carolina","NC",5133 +2016-03-01,"Residential Consumption","Louisiana","LA",2610 +2016-03-01,"Residential Consumption","Maryland","MD",7549 +2016-03-01,"Residential Consumption","Arkansas","AR",2762 +2016-03-01,"Residential Consumption","Colorado","CO",14373 +2016-03-01,"Residential Consumption","Texas","TX",16632 +2016-03-01,"Residential Consumption","Rhode Island","RI",1935 +2016-03-01,"Residential Consumption","Mississippi","MS",1733 +2016-03-01,"Residential Consumption","Iowa","IA",6787 +2016-03-01,"Residential Consumption","Michigan","MI",33133 +2016-03-01,"Residential Consumption","South Dakota","SD",1303 +2016-03-01,"Residential Consumption","Indiana","IN",11654 +2016-03-01,"Residential Consumption","Florida","FL",1694 +2016-03-01,"Residential Consumption","Washington","WA",8903 +2016-03-01,"Residential Consumption","Alaska","AK",1885 +2016-03-01,"Residential Consumption","West Virginia","WV",2617 +2016-03-01,"Residential Consumption","Ohio","OH",26914 +2016-03-01,"Residential Consumption","District of Columbia","DC",1080 +2016-03-01,"Residential Consumption","Kentucky","KY",4655 +2016-03-01,"Residential Consumption","Connecticut","CT",5351 +2016-03-01,"Residential Consumption","Nevada","NV",3524 +2016-03-01,"Residential Consumption","Pennsylvania","PA",22482 +2016-03-01,"Residential Consumption","Massachusetts","MA",13735 +2016-03-01,"Residential Consumption","New Jersey","NJ",23954 +2016-03-01,"Residential Consumption","Wyoming","WY",1333 +2016-03-01,"Residential Consumption","Nebraska","NE",3500 +2016-03-01,"Residential Consumption","New Mexico","NM",3341 +2016-03-01,"Residential Consumption","Maine","ME",330 +2016-03-01,"Residential Consumption","North Dakota","ND",1076 +2016-03-01,"Residential Consumption","Montana","MT",2008 +2016-03-01,"Residential Consumption","U.S.","U.S.",455001 +2016-03-01,"Residential Consumption","South Carolina","SC",2282 +2016-03-01,"Residential Consumption","Vermont","VT",395 +2016-03-01,"Residential Consumption","Georgia","GA",9579 +2016-03-01,"Residential Consumption","New Hampshire","NH",806 +2016-03-01,"Residential Consumption","California","CA",39795 +2016-03-01,"Residential Consumption","Virginia","VA",8174 +2016-03-01,"Residential Consumption","Minnesota","MN",12540 +2016-03-01,"Residential Consumption","Idaho","ID",2566 +2016-03-01,"Residential Consumption","Missouri","MO",8665 +2016-03-01,"Residential Consumption","Delaware","DE",1094 +2016-03-01,"Residential Consumption","Arizona","AZ",3089 +2016-03-01,"Residential Consumption","Alabama","AL",2755 +2016-03-01,"Residential Consumption","Hawaii","HI",49 +2016-03-01,"Residential Consumption","Wisconsin","WI",14393 +2016-03-01,"Residential Consumption","Tennessee","TN",5466 +2016-03-01,"Residential Consumption","Utah","UT",6228 +2016-03-01,"Residential Consumption","Kansas","KS",5100 +2016-03-01,"Residential Consumption","Oklahoma","OK",4616 +2016-03-01,"Residential Consumption","New York","NY",47537 +2016-03-01,"Residential Consumption","Illinois","IL",41365 +2016-03-01,"Vehicle Fuel Consumption","Washington","WA",42 +2016-03-01,"Vehicle Fuel Consumption","Ohio","OH",73 +2016-03-01,"Vehicle Fuel Consumption","New York","NY",324 +2016-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",44 +2016-03-01,"Vehicle Fuel Consumption","Arizona","AZ",209 +2016-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-03-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-03-01,"Vehicle Fuel Consumption","Kentucky","KY",11 +2016-03-01,"Vehicle Fuel Consumption","Nevada","NV",160 +2016-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",81 +2016-03-01,"Vehicle Fuel Consumption","Florida","FL",52 +2016-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-03-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-03-01,"Vehicle Fuel Consumption","North Carolina","NC",18 +2016-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-03-01,"Vehicle Fuel Consumption","Utah","UT",26 +2016-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-03-01,"Vehicle Fuel Consumption","Kansas","KS",16 +2016-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-03-01,"Vehicle Fuel Consumption","Missouri","MO",22 +2016-03-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-03-01,"Vehicle Fuel Consumption","Colorado","CO",38 +2016-03-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-03-01,"Vehicle Fuel Consumption","Illinois","IL",40 +2016-03-01,"Vehicle Fuel Consumption","Tennessee","TN",25 +2016-03-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-03-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2016-03-01,"Vehicle Fuel Consumption","Oregon","OR",20 +2016-03-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-03-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-03-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-03-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",42 +2016-03-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-03-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-03-01,"Vehicle Fuel Consumption","California","CA",1617 +2016-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-03-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2016-03-01,"Vehicle Fuel Consumption","Georgia","GA",79 +2016-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",31 +2016-03-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-03-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-03-01,"Vehicle Fuel Consumption","Texas","TX",328 +2016-03-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2016-03-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",3560 +2016-04-01,"Commercial Consumption","South Carolina","SC",1849 +2016-04-01,"Commercial Consumption","North Carolina","NC",3743 +2016-04-01,"Commercial Consumption","Colorado","CO",4606 +2016-04-01,"Commercial Consumption","Virginia","VA",5150 +2016-04-01,"Commercial Consumption","Massachusetts","MA",8886 +2016-04-01,"Commercial Consumption","Tennessee","TN",2854 +2016-04-01,"Commercial Consumption","New Jersey","NJ",11456 +2016-04-01,"Commercial Consumption","Connecticut","CT",3746 +2016-04-01,"Commercial Consumption","Nebraska","NE",1817 +2016-04-01,"Commercial Consumption","Nevada","NV",2421 +2016-04-01,"Commercial Consumption","Louisiana","LA",2136 +2016-04-01,"Commercial Consumption","New Mexico","NM",1558 +2016-04-01,"Commercial Consumption","Texas","TX",12955 +2016-04-01,"Commercial Consumption","Maryland","MD",5514 +2016-04-01,"Commercial Consumption","Ohio","OH",12085 +2016-04-01,"Commercial Consumption","California","CA",17218 +2016-04-01,"Commercial Consumption","Arkansas","AR",3143 +2016-04-01,"Commercial Consumption","Alabama","AL",1488 +2016-04-01,"Commercial Consumption","Oregon","OR",1797 +2016-04-01,"Commercial Consumption","Missouri","MO",3235 +2016-04-01,"Commercial Consumption","Montana","MT",1461 +2016-04-01,"Commercial Consumption","Maine","ME",789 +2016-04-01,"Commercial Consumption","Georgia","GA",3221 +2016-04-01,"Commercial Consumption","Alaska","AK",1201 +2016-04-01,"Commercial Consumption","New York","NY",23284 +2016-04-01,"Commercial Consumption","Washington","WA",3115 +2016-04-01,"Commercial Consumption","Minnesota","MN",7290 +2016-04-01,"Commercial Consumption","Kentucky","KY",1798 +2016-04-01,"Commercial Consumption","U.S.","U.S.",233059 +2016-04-01,"Commercial Consumption","Hawaii","HI",200 +2016-04-01,"Commercial Consumption","Mississippi","MS",1019 +2016-04-01,"Commercial Consumption","Indiana","IN",5162 +2016-04-01,"Commercial Consumption","Utah","UT",2794 +2016-04-01,"Commercial Consumption","Oklahoma","OK",2122 +2016-04-01,"Commercial Consumption","Kansas","KS",2124 +2016-04-01,"Commercial Consumption","Rhode Island","RI",977 +2016-04-01,"Commercial Consumption","Idaho","ID",1009 +2016-04-01,"Commercial Consumption","Michigan","MI",14403 +2016-04-01,"Commercial Consumption","West Virginia","WV",1656 +2016-04-01,"Commercial Consumption","North Dakota","ND",1026 +2016-04-01,"Commercial Consumption","Wisconsin","WI",7205 +2016-04-01,"Commercial Consumption","New Hampshire","NH",716 +2016-04-01,"Commercial Consumption","Vermont","VT",520 +2016-04-01,"Commercial Consumption","Iowa","IA",3531 +2016-04-01,"Commercial Consumption","Delaware","DE",898 +2016-04-01,"Commercial Consumption","Wyoming","WY",1107 +2016-04-01,"Commercial Consumption","Pennsylvania","PA",10708 +2016-04-01,"Commercial Consumption","South Dakota","SD",820 +2016-04-01,"Commercial Consumption","Florida","FL",5279 +2016-04-01,"Commercial Consumption","Arizona","AZ",2723 +2016-04-01,"Commercial Consumption","Illinois","IL",16018 +2016-04-01,"Commercial Consumption","District of Columbia","DC",1222 +2016-04-01,"Delivered to Consumers","Montana","MT",4611 +2016-04-01,"Delivered to Consumers","Tennessee","TN",20683 +2016-04-01,"Delivered to Consumers","Arkansas","AR",22188 +2016-04-01,"Delivered to Consumers","Alabama","AL",45414 +2016-04-01,"Delivered to Consumers","U.S.","U.S.",1903501 +2016-04-01,"Delivered to Consumers","South Dakota","SD",6080 +2016-04-01,"Delivered to Consumers","Alaska","AK",5063 +2016-04-01,"Delivered to Consumers","Kansas","KS",15151 +2016-04-01,"Delivered to Consumers","Idaho","ID",5351 +2016-04-01,"Delivered to Consumers","Ohio","OH",72736 +2016-04-01,"Delivered to Consumers","Iowa","IA",22888 +2016-04-01,"Delivered to Consumers","Virginia","VA",31321 +2016-04-01,"Delivered to Consumers","North Carolina","NC",39726 +2016-04-01,"Delivered to Consumers","Washington","WA",15916 +2016-04-01,"Delivered to Consumers","North Dakota","ND",4057 +2016-04-01,"Delivered to Consumers","West Virginia","WV",6828 +2016-04-01,"Delivered to Consumers","Connecticut","CT",21107 +2016-04-01,"Delivered to Consumers","Missouri","MO",18313 +2016-04-01,"Delivered to Consumers","Texas","TX",269291 +2016-04-01,"Delivered to Consumers","New Hampshire","NH",5666 +2016-04-01,"Delivered to Consumers","District of Columbia","DC",2073 +2016-04-01,"Delivered to Consumers","Delaware","DE",8678 +2016-04-01,"Delivered to Consumers","Wyoming","WY",6277 +2016-04-01,"Delivered to Consumers","Vermont","VT",1073 +2016-04-01,"Delivered to Consumers","Kentucky","KY",18359 +2016-04-01,"Delivered to Consumers","Colorado","CO",30476 +2016-04-01,"Delivered to Consumers","Georgia","GA",52685 +2016-04-01,"Delivered to Consumers","Minnesota","MN",36311 +2016-04-01,"Delivered to Consumers","Florida","FL",115483 +2016-04-01,"Delivered to Consumers","New Mexico","NM",11162 +2016-04-01,"Delivered to Consumers","Michigan","MI",79238 +2016-04-01,"Delivered to Consumers","Wisconsin","WI",40041 +2016-04-01,"Delivered to Consumers","New Jersey","NJ",58705 +2016-04-01,"Delivered to Consumers","Arizona","AZ",25567 +2016-04-01,"Delivered to Consumers","Indiana","IN",56286 +2016-04-01,"Delivered to Consumers","Hawaii","HI",258 +2016-04-01,"Delivered to Consumers","Oklahoma","OK",41277 +2016-04-01,"Delivered to Consumers","Pennsylvania","PA",78262 +2016-04-01,"Delivered to Consumers","Maine","ME",4055 +2016-04-01,"Delivered to Consumers","Louisiana","LA",115313 +2016-04-01,"Delivered to Consumers","Illinois","IL",76116 +2016-04-01,"Delivered to Consumers","New York","NY",100622 +2016-04-01,"Delivered to Consumers","Nebraska","NE",11125 +2016-04-01,"Delivered to Consumers","South Carolina","SC",17373 +2016-04-01,"Delivered to Consumers","Utah","UT",15995 +2016-04-01,"Delivered to Consumers","Rhode Island","RI",6136 +2016-04-01,"Delivered to Consumers","Maryland","MD",15811 +2016-04-01,"Delivered to Consumers","Mississippi","MS",34078 +2016-04-01,"Delivered to Consumers","Massachusetts","MA",34459 +2016-04-01,"Delivered to Consumers","California","CA",144618 +2016-04-01,"Delivered to Consumers","Oregon","OR",11726 +2016-04-01,"Delivered to Consumers","Nevada","NV",21472 +2016-04-01,"Electric Power Consumption","Utah","UT",5155 +2016-04-01,"Electric Power Consumption","Oregon","OR",3049 +2016-04-01,"Electric Power Consumption","West Virginia","WV",1098 +2016-04-01,"Electric Power Consumption","Pennsylvania","PA",32992 +2016-04-01,"Electric Power Consumption","Mississippi","MS",22463 +2016-04-01,"Electric Power Consumption","Kentucky","KY",4470 +2016-04-01,"Electric Power Consumption","Ohio","OH",16532 +2016-04-01,"Electric Power Consumption","New Hampshire","NH",3609 +2016-04-01,"Electric Power Consumption","Montana","MT",402 +2016-04-01,"Electric Power Consumption","Georgia","GA",30539 +2016-04-01,"Electric Power Consumption","New Mexico","NM",6183 +2016-04-01,"Electric Power Consumption","Idaho","ID",530 +2016-04-01,"Electric Power Consumption","New York","NY",33122 +2016-04-01,"Electric Power Consumption","Vermont","VT",0 +2016-04-01,"Electric Power Consumption","Missouri","MO",5178 +2016-04-01,"Electric Power Consumption","Connecticut","CT",11368 +2016-04-01,"Electric Power Consumption","Alabama","AL",26247 +2016-04-01,"Electric Power Consumption","Colorado","CO",8790 +2016-04-01,"Electric Power Consumption","South Carolina","SC",6711 +2016-04-01,"Electric Power Consumption","Wisconsin","WI",9626 +2016-04-01,"Electric Power Consumption","Nebraska","NE",389 +2016-04-01,"Electric Power Consumption","Arkansas","AR",10434 +2016-04-01,"Electric Power Consumption","Minnesota","MN",5804 +2016-04-01,"Electric Power Consumption","Indiana","IN",10314 +2016-04-01,"Electric Power Consumption","Alaska","AK",2436 +2016-04-01,"Electric Power Consumption","Washington","WA",2305 +2016-04-01,"Electric Power Consumption","Massachusetts","MA",11333 +2016-04-01,"Electric Power Consumption","Kansas","KS",1051 +2016-04-01,"Electric Power Consumption","Wyoming","WY",135 +2016-04-01,"Electric Power Consumption","Iowa","IA",698 +2016-04-01,"Electric Power Consumption","South Dakota","SD",642 +2016-04-01,"Electric Power Consumption","North Carolina","NC",24029 +2016-04-01,"Electric Power Consumption","Arizona","AZ",18638 +2016-04-01,"Electric Power Consumption","Louisiana","LA",25535 +2016-04-01,"Electric Power Consumption","Illinois","IL",9543 +2016-04-01,"Electric Power Consumption","U.S.","U.S.",718893 +2016-04-01,"Electric Power Consumption","Maine","ME",1408 +2016-04-01,"Electric Power Consumption","Hawaii","HI",NA +2016-04-01,"Electric Power Consumption","North Dakota","ND",178 +2016-04-01,"Electric Power Consumption","Delaware","DE",4522 +2016-04-01,"Electric Power Consumption","Florida","FL",99955 +2016-04-01,"Electric Power Consumption","California","CA",36115 +2016-04-01,"Electric Power Consumption","Virginia","VA",13517 +2016-04-01,"Electric Power Consumption","Texas","TX",117564 +2016-04-01,"Electric Power Consumption","Rhode Island","RI",2924 +2016-04-01,"Electric Power Consumption","Michigan","MI",22958 +2016-04-01,"Electric Power Consumption","Nevada","NV",14884 +2016-04-01,"Electric Power Consumption","Tennessee","TN",5148 +2016-04-01,"Electric Power Consumption","Maryland","MD",3600 +2016-04-01,"Electric Power Consumption","New Jersey","NJ",24493 +2016-04-01,"Electric Power Consumption","Oklahoma","OK",20280 +2016-04-01,"Industrial Consumption","Hawaii","HI",7 +2016-04-01,"Industrial Consumption","Oklahoma","OK",16462 +2016-04-01,"Industrial Consumption","Colorado","CO",6624 +2016-04-01,"Industrial Consumption","Utah","UT",3569 +2016-04-01,"Industrial Consumption","Pennsylvania","PA",17592 +2016-04-01,"Industrial Consumption","New York","NY",6993 +2016-04-01,"Industrial Consumption","Kentucky","KY",9448 +2016-04-01,"Industrial Consumption","Ohio","OH",22601 +2016-04-01,"Industrial Consumption","Oregon","OR",4618 +2016-04-01,"Industrial Consumption","Mississippi","MS",9646 +2016-04-01,"Industrial Consumption","California","CA",61518 +2016-04-01,"Industrial Consumption","West Virginia","WV",2287 +2016-04-01,"Industrial Consumption","Iowa","IA",13992 +2016-04-01,"Industrial Consumption","Connecticut","CT",1921 +2016-04-01,"Industrial Consumption","Rhode Island","RI",728 +2016-04-01,"Industrial Consumption","Louisiana","LA",85724 +2016-04-01,"Industrial Consumption","South Carolina","SC",7465 +2016-04-01,"Industrial Consumption","Idaho","ID",2492 +2016-04-01,"Industrial Consumption","North Dakota","ND",2083 +2016-04-01,"Industrial Consumption","Massachusetts","MA",4160 +2016-04-01,"Industrial Consumption","South Dakota","SD",3645 +2016-04-01,"Industrial Consumption","Arizona","AZ",1582 +2016-04-01,"Industrial Consumption","Maine","ME",1603 +2016-04-01,"Industrial Consumption","Alabama","AL",16023 +2016-04-01,"Industrial Consumption","Illinois","IL",20144 +2016-04-01,"Industrial Consumption","Montana","MT",1459 +2016-04-01,"Industrial Consumption","Washington","WA",6304 +2016-04-01,"Industrial Consumption","Kansas","KS",9362 +2016-04-01,"Industrial Consumption","Arkansas","AR",7097 +2016-04-01,"Industrial Consumption","Nebraska","NE",6588 +2016-04-01,"Industrial Consumption","Vermont","VT",192 +2016-04-01,"Industrial Consumption","New Hampshire","NH",726 +2016-04-01,"Industrial Consumption","Minnesota","MN",13333 +2016-04-01,"Industrial Consumption","Indiana","IN",31458 +2016-04-01,"Industrial Consumption","Delaware","DE",2464 +2016-04-01,"Industrial Consumption","North Carolina","NC",8635 +2016-04-01,"Industrial Consumption","Missouri","MO",4937 +2016-04-01,"Industrial Consumption","Virginia","VA",7179 +2016-04-01,"Industrial Consumption","Wyoming","WY",4054 +2016-04-01,"Industrial Consumption","Wisconsin","WI",11961 +2016-04-01,"Industrial Consumption","Tennessee","TN",9550 +2016-04-01,"Industrial Consumption","District of Columbia","DC",0 +2016-04-01,"Industrial Consumption","New Mexico","NM",1234 +2016-04-01,"Industrial Consumption","U.S.","U.S.",620045 +2016-04-01,"Industrial Consumption","Nevada","NV",1512 +2016-04-01,"Industrial Consumption","Texas","TX",126871 +2016-04-01,"Industrial Consumption","New Jersey","NJ",4820 +2016-04-01,"Industrial Consumption","Georgia","GA",12372 +2016-04-01,"Industrial Consumption","Maryland","MD",1264 +2016-04-01,"Industrial Consumption","Florida","FL",8977 +2016-04-01,"Industrial Consumption","Michigan","MI",14586 +2016-04-01,"Industrial Consumption","Alaska","AK",183 +2016-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",128499 +2016-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",51848 +2016-04-01,"Residential Consumption","South Carolina","SC",1342 +2016-04-01,"Residential Consumption","North Carolina","NC",3302 +2016-04-01,"Residential Consumption","Wisconsin","WI",11242 +2016-04-01,"Residential Consumption","Nebraska","NE",2324 +2016-04-01,"Residential Consumption","Maryland","MD",5420 +2016-04-01,"Residential Consumption","Maine","ME",255 +2016-04-01,"Residential Consumption","Kentucky","KY",2633 +2016-04-01,"Residential Consumption","Wyoming","WY",979 +2016-04-01,"Residential Consumption","Iowa","IA",4664 +2016-04-01,"Residential Consumption","Connecticut","CT",4070 +2016-04-01,"Residential Consumption","Alaska","AK",1242 +2016-04-01,"Residential Consumption","Ohio","OH",21448 +2016-04-01,"Residential Consumption","Virginia","VA",5420 +2016-04-01,"Residential Consumption","Michigan","MI",27259 +2016-04-01,"Residential Consumption","Minnesota","MN",9873 +2016-04-01,"Residential Consumption","Florida","FL",1221 +2016-04-01,"Residential Consumption","Massachusetts","MA",10051 +2016-04-01,"Residential Consumption","Missouri","MO",4942 +2016-04-01,"Residential Consumption","Alabama","AL",1645 +2016-04-01,"Residential Consumption","Texas","TX",11584 +2016-04-01,"Residential Consumption","Oregon","OR",2244 +2016-04-01,"Residential Consumption","Tennessee","TN",3107 +2016-04-01,"Residential Consumption","Georgia","GA",6476 +2016-04-01,"Residential Consumption","District of Columbia","DC",772 +2016-04-01,"Residential Consumption","Pennsylvania","PA",16928 +2016-04-01,"Residential Consumption","North Dakota","ND",770 +2016-04-01,"Residential Consumption","New Jersey","NJ",17908 +2016-04-01,"Residential Consumption","Mississippi","MS",943 +2016-04-01,"Residential Consumption","Hawaii","HI",51 +2016-04-01,"Residential Consumption","Nevada","NV",2500 +2016-04-01,"Residential Consumption","Colorado","CO",10419 +2016-04-01,"Residential Consumption","Kansas","KS",2599 +2016-04-01,"Residential Consumption","Oklahoma","OK",2370 +2016-04-01,"Residential Consumption","Delaware","DE",794 +2016-04-01,"Residential Consumption","Arizona","AZ",2422 +2016-04-01,"Residential Consumption","U.S.","U.S.",328059 +2016-04-01,"Residential Consumption","New York","NY",36910 +2016-04-01,"Residential Consumption","Rhode Island","RI",1498 +2016-04-01,"Residential Consumption","Idaho","ID",1308 +2016-04-01,"Residential Consumption","Vermont","VT",362 +2016-04-01,"Residential Consumption","Utah","UT",4452 +2016-04-01,"Residential Consumption","South Dakota","SD",973 +2016-04-01,"Residential Consumption","Indiana","IN",9343 +2016-04-01,"Residential Consumption","Arkansas","AR",1510 +2016-04-01,"Residential Consumption","Montana","MT",1288 +2016-04-01,"Residential Consumption","Louisiana","LA",1902 +2016-04-01,"Residential Consumption","New Mexico","NM",2178 +2016-04-01,"Residential Consumption","New Hampshire","NH",606 +2016-04-01,"Residential Consumption","Washington","WA",4151 +2016-04-01,"Residential Consumption","California","CA",28203 +2016-04-01,"Residential Consumption","West Virginia","WV",1784 +2016-04-01,"Residential Consumption","Illinois","IL",30372 +2016-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",41 +2016-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-04-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-04-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-04-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-04-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-04-01,"Vehicle Fuel Consumption","California","CA",1564 +2016-04-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-04-01,"Vehicle Fuel Consumption","Virginia","VA",54 +2016-04-01,"Vehicle Fuel Consumption","New York","NY",313 +2016-04-01,"Vehicle Fuel Consumption","Florida","FL",50 +2016-04-01,"Vehicle Fuel Consumption","Texas","TX",318 +2016-04-01,"Vehicle Fuel Consumption","Michigan","MI",33 +2016-04-01,"Vehicle Fuel Consumption","Kentucky","KY",10 +2016-04-01,"Vehicle Fuel Consumption","Ohio","OH",70 +2016-04-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",43 +2016-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",27 +2016-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-04-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-04-01,"Vehicle Fuel Consumption","Utah","UT",25 +2016-04-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-04-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-04-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",30 +2016-04-01,"Vehicle Fuel Consumption","Georgia","GA",77 +2016-04-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",3445 +2016-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-04-01,"Vehicle Fuel Consumption","Kansas","KS",15 +2016-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",79 +2016-04-01,"Vehicle Fuel Consumption","Arizona","AZ",203 +2016-04-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-04-01,"Vehicle Fuel Consumption","Missouri","MO",21 +2016-04-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-04-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-04-01,"Vehicle Fuel Consumption","Washington","WA",41 +2016-04-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2016-04-01,"Vehicle Fuel Consumption","Nevada","NV",155 +2016-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-04-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-04-01,"Vehicle Fuel Consumption","Colorado","CO",37 +2016-04-01,"Vehicle Fuel Consumption","North Carolina","NC",17 +2016-04-01,"Vehicle Fuel Consumption","Illinois","IL",39 +2016-04-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-04-01,"Vehicle Fuel Consumption","Oregon","OR",19 +2016-05-01,"Commercial Consumption","West Virginia","WV",1216 +2016-05-01,"Commercial Consumption","North Carolina","NC",2879 +2016-05-01,"Commercial Consumption","Colorado","CO",3120 +2016-05-01,"Commercial Consumption","Virginia","VA",3411 +2016-05-01,"Commercial Consumption","South Dakota","SD",482 +2016-05-01,"Commercial Consumption","Iowa","IA",2134 +2016-05-01,"Commercial Consumption","Arkansas","AR",2879 +2016-05-01,"Commercial Consumption","Nevada","NV",2183 +2016-05-01,"Commercial Consumption","Wyoming","WY",856 +2016-05-01,"Commercial Consumption","South Carolina","SC",1395 +2016-05-01,"Commercial Consumption","Minnesota","MN",4573 +2016-05-01,"Commercial Consumption","New Mexico","NM",1249 +2016-05-01,"Commercial Consumption","Montana","MT",1136 +2016-05-01,"Commercial Consumption","U.S.","U.S.",171297 +2016-05-01,"Commercial Consumption","Kansas","KS",2045 +2016-05-01,"Commercial Consumption","Hawaii","HI",187 +2016-05-01,"Commercial Consumption","Nebraska","NE",1267 +2016-05-01,"Commercial Consumption","Oregon","OR",1318 +2016-05-01,"Commercial Consumption","Missouri","MO",2666 +2016-05-01,"Commercial Consumption","Maryland","MD",4159 +2016-05-01,"Commercial Consumption","Washington","WA",2855 +2016-05-01,"Commercial Consumption","Utah","UT",2026 +2016-05-01,"Commercial Consumption","Oklahoma","OK",2004 +2016-05-01,"Commercial Consumption","New Jersey","NJ",8929 +2016-05-01,"Commercial Consumption","Maine","ME",471 +2016-05-01,"Commercial Consumption","Georgia","GA",2437 +2016-05-01,"Commercial Consumption","Idaho","ID",865 +2016-05-01,"Commercial Consumption","Delaware","DE",668 +2016-05-01,"Commercial Consumption","Tennessee","TN",2522 +2016-05-01,"Commercial Consumption","Michigan","MI",8584 +2016-05-01,"Commercial Consumption","Indiana","IN",3276 +2016-05-01,"Commercial Consumption","Illinois","IL",10636 +2016-05-01,"Commercial Consumption","North Dakota","ND",422 +2016-05-01,"Commercial Consumption","Massachusetts","MA",5675 +2016-05-01,"Commercial Consumption","New Hampshire","NH",381 +2016-05-01,"Commercial Consumption","Texas","TX",10404 +2016-05-01,"Commercial Consumption","Ohio","OH",6641 +2016-05-01,"Commercial Consumption","Alaska","AK",826 +2016-05-01,"Commercial Consumption","Vermont","VT",290 +2016-05-01,"Commercial Consumption","Rhode Island","RI",549 +2016-05-01,"Commercial Consumption","Arizona","AZ",2397 +2016-05-01,"Commercial Consumption","District of Columbia","DC",877 +2016-05-01,"Commercial Consumption","Pennsylvania","PA",6755 +2016-05-01,"Commercial Consumption","Florida","FL",4878 +2016-05-01,"Commercial Consumption","California","CA",16478 +2016-05-01,"Commercial Consumption","Alabama","AL",1235 +2016-05-01,"Commercial Consumption","New York","NY",16834 +2016-05-01,"Commercial Consumption","Mississippi","MS",1192 +2016-05-01,"Commercial Consumption","Wisconsin","WI",4577 +2016-05-01,"Commercial Consumption","Kentucky","KY",1523 +2016-05-01,"Commercial Consumption","Connecticut","CT",2826 +2016-05-01,"Commercial Consumption","Louisiana","LA",2109 +2016-05-01,"Delivered to Consumers","South Dakota","SD",5043 +2016-05-01,"Delivered to Consumers","Kentucky","KY",17148 +2016-05-01,"Delivered to Consumers","Missouri","MO",14576 +2016-05-01,"Delivered to Consumers","California","CA",145157 +2016-05-01,"Delivered to Consumers","New Jersey","NJ",48812 +2016-05-01,"Delivered to Consumers","Minnesota","MN",27447 +2016-05-01,"Delivered to Consumers","New York","NY",83430 +2016-05-01,"Delivered to Consumers","Connecticut","CT",17080 +2016-05-01,"Delivered to Consumers","Oregon","OR",10777 +2016-05-01,"Delivered to Consumers","Arizona","AZ",26217 +2016-05-01,"Delivered to Consumers","New Hampshire","NH",4373 +2016-05-01,"Delivered to Consumers","Indiana","IN",54324 +2016-05-01,"Delivered to Consumers","Illinois","IL",54860 +2016-05-01,"Delivered to Consumers","Montana","MT",4164 +2016-05-01,"Delivered to Consumers","Alaska","AK",4356 +2016-05-01,"Delivered to Consumers","Tennessee","TN",19804 +2016-05-01,"Delivered to Consumers","Ohio","OH",49902 +2016-05-01,"Delivered to Consumers","Nebraska","NE",9689 +2016-05-01,"Delivered to Consumers","Texas","TX",279180 +2016-05-01,"Delivered to Consumers","South Carolina","SC",19683 +2016-05-01,"Delivered to Consumers","Louisiana","LA",122287 +2016-05-01,"Delivered to Consumers","Georgia","GA",53101 +2016-05-01,"Delivered to Consumers","U.S.","U.S.",1785885 +2016-05-01,"Delivered to Consumers","Delaware","DE",7617 +2016-05-01,"Delivered to Consumers","Kansas","KS",15211 +2016-05-01,"Delivered to Consumers","Wisconsin","WI",29547 +2016-05-01,"Delivered to Consumers","North Carolina","NC",34844 +2016-05-01,"Delivered to Consumers","District of Columbia","DC",1447 +2016-05-01,"Delivered to Consumers","Utah","UT",13340 +2016-05-01,"Delivered to Consumers","Wyoming","WY",6012 +2016-05-01,"Delivered to Consumers","Hawaii","HI",239 +2016-05-01,"Delivered to Consumers","Virginia","VA",35152 +2016-05-01,"Delivered to Consumers","Pennsylvania","PA",67464 +2016-05-01,"Delivered to Consumers","Massachusetts","MA",29521 +2016-05-01,"Delivered to Consumers","Maine","ME",4094 +2016-05-01,"Delivered to Consumers","North Dakota","ND",4269 +2016-05-01,"Delivered to Consumers","West Virginia","WV",5695 +2016-05-01,"Delivered to Consumers","Vermont","VT",663 +2016-05-01,"Delivered to Consumers","Oklahoma","OK",44161 +2016-05-01,"Delivered to Consumers","Michigan","MI",55178 +2016-05-01,"Delivered to Consumers","Mississippi","MS",43599 +2016-05-01,"Delivered to Consumers","Nevada","NV",22893 +2016-05-01,"Delivered to Consumers","New Mexico","NM",10336 +2016-05-01,"Delivered to Consumers","Arkansas","AR",22950 +2016-05-01,"Delivered to Consumers","Florida","FL",121474 +2016-05-01,"Delivered to Consumers","Rhode Island","RI",6982 +2016-05-01,"Delivered to Consumers","Maryland","MD",12680 +2016-05-01,"Delivered to Consumers","Idaho","ID",5578 +2016-05-01,"Delivered to Consumers","Iowa","IA",21192 +2016-05-01,"Delivered to Consumers","Alabama","AL",52165 +2016-05-01,"Delivered to Consumers","Colorado","CO",23832 +2016-05-01,"Delivered to Consumers","Washington","WA",16340 +2016-05-01,"Electric Power Consumption","Virginia","VA",21823 +2016-05-01,"Electric Power Consumption","New Jersey","NJ",24677 +2016-05-01,"Electric Power Consumption","Vermont","VT",2 +2016-05-01,"Electric Power Consumption","Alabama","AL",33044 +2016-05-01,"Electric Power Consumption","Washington","WA",4514 +2016-05-01,"Electric Power Consumption","Louisiana","LA",30749 +2016-05-01,"Electric Power Consumption","Iowa","IA",2492 +2016-05-01,"Electric Power Consumption","U.S.","U.S.",804431 +2016-05-01,"Electric Power Consumption","Mississippi","MS",31812 +2016-05-01,"Electric Power Consumption","Kentucky","KY",4952 +2016-05-01,"Electric Power Consumption","Montana","MT",434 +2016-05-01,"Electric Power Consumption","Florida","FL",107010 +2016-05-01,"Electric Power Consumption","Alaska","AK",2405 +2016-05-01,"Electric Power Consumption","Idaho","ID",1346 +2016-05-01,"Electric Power Consumption","Colorado","CO",8004 +2016-05-01,"Electric Power Consumption","Oregon","OR",3311 +2016-05-01,"Electric Power Consumption","Maine","ME",1917 +2016-05-01,"Electric Power Consumption","New Hampshire","NH",3009 +2016-05-01,"Electric Power Consumption","Michigan","MI",22513 +2016-05-01,"Electric Power Consumption","West Virginia","WV",1658 +2016-05-01,"Electric Power Consumption","Nebraska","NE",257 +2016-05-01,"Electric Power Consumption","North Carolina","NC",21849 +2016-05-01,"Electric Power Consumption","Ohio","OH",11314 +2016-05-01,"Electric Power Consumption","Maryland","MD",3951 +2016-05-01,"Electric Power Consumption","Connecticut","CT",10245 +2016-05-01,"Electric Power Consumption","New Mexico","NM",6235 +2016-05-01,"Electric Power Consumption","New York","NY",39014 +2016-05-01,"Electric Power Consumption","Texas","TX",132444 +2016-05-01,"Electric Power Consumption","Kansas","KS",1825 +2016-05-01,"Electric Power Consumption","South Dakota","SD",558 +2016-05-01,"Electric Power Consumption","Hawaii","HI",NA +2016-05-01,"Electric Power Consumption","North Dakota","ND",662 +2016-05-01,"Electric Power Consumption","Arizona","AZ",20255 +2016-05-01,"Electric Power Consumption","Arkansas","AR",12107 +2016-05-01,"Electric Power Consumption","Minnesota","MN",6106 +2016-05-01,"Electric Power Consumption","Wisconsin","WI",9701 +2016-05-01,"Electric Power Consumption","Pennsylvania","PA",35525 +2016-05-01,"Electric Power Consumption","Nevada","NV",17080 +2016-05-01,"Electric Power Consumption","Tennessee","TN",6236 +2016-05-01,"Electric Power Consumption","Missouri","MO",4069 +2016-05-01,"Electric Power Consumption","Delaware","DE",3847 +2016-05-01,"Electric Power Consumption","California","CA",39062 +2016-05-01,"Electric Power Consumption","South Carolina","SC",10114 +2016-05-01,"Electric Power Consumption","Rhode Island","RI",4988 +2016-05-01,"Electric Power Consumption","Oklahoma","OK",22917 +2016-05-01,"Electric Power Consumption","Utah","UT",5222 +2016-05-01,"Electric Power Consumption","Illinois","IL",9544 +2016-05-01,"Electric Power Consumption","Indiana","IN",15092 +2016-05-01,"Electric Power Consumption","Georgia","GA",33281 +2016-05-01,"Electric Power Consumption","Massachusetts","MA",15038 +2016-05-01,"Electric Power Consumption","Wyoming","WY",223 +2016-05-01,"Industrial Consumption","Massachusetts","MA",3161 +2016-05-01,"Industrial Consumption","U.S.","U.S.",612675 +2016-05-01,"Industrial Consumption","California","CA",63228 +2016-05-01,"Industrial Consumption","South Carolina","SC",7448 +2016-05-01,"Industrial Consumption","Virginia","VA",6894 +2016-05-01,"Industrial Consumption","Wisconsin","WI",10206 +2016-05-01,"Industrial Consumption","Michigan","MI",11856 +2016-05-01,"Industrial Consumption","Alaska","AK",261 +2016-05-01,"Industrial Consumption","Oklahoma","OK",17437 +2016-05-01,"Industrial Consumption","Mississippi","MS",9772 +2016-05-01,"Industrial Consumption","West Virginia","WV",2093 +2016-05-01,"Industrial Consumption","Florida","FL",8566 +2016-05-01,"Industrial Consumption","Illinois","IL",18791 +2016-05-01,"Industrial Consumption","North Dakota","ND",2811 +2016-05-01,"Industrial Consumption","Colorado","CO",6141 +2016-05-01,"Industrial Consumption","Utah","UT",3073 +2016-05-01,"Industrial Consumption","Texas","TX",128630 +2016-05-01,"Industrial Consumption","Tennessee","TN",9394 +2016-05-01,"Industrial Consumption","Iowa","IA",14314 +2016-05-01,"Industrial Consumption","South Dakota","SD",3480 +2016-05-01,"Industrial Consumption","Arizona","AZ",1591 +2016-05-01,"Industrial Consumption","Oregon","OR",4580 +2016-05-01,"Industrial Consumption","Nevada","NV",1477 +2016-05-01,"Industrial Consumption","Arkansas","AR",7024 +2016-05-01,"Industrial Consumption","Minnesota","MN",12504 +2016-05-01,"Industrial Consumption","Idaho","ID",2462 +2016-05-01,"Industrial Consumption","North Carolina","NC",8442 +2016-05-01,"Industrial Consumption","Montana","MT",1660 +2016-05-01,"Industrial Consumption","Maryland","MD",1217 +2016-05-01,"Industrial Consumption","Hawaii","HI",7 +2016-05-01,"Industrial Consumption","New York","NY",5161 +2016-05-01,"Industrial Consumption","Alabama","AL",16896 +2016-05-01,"Industrial Consumption","Wyoming","WY",4159 +2016-05-01,"Industrial Consumption","New Jersey","NJ",4369 +2016-05-01,"Industrial Consumption","Ohio","OH",21364 +2016-05-01,"Industrial Consumption","New Mexico","NM",1297 +2016-05-01,"Industrial Consumption","Kansas","KS",9241 +2016-05-01,"Industrial Consumption","Vermont","VT",167 +2016-05-01,"Industrial Consumption","New Hampshire","NH",680 +2016-05-01,"Industrial Consumption","Connecticut","CT",1714 +2016-05-01,"Industrial Consumption","Delaware","DE",2643 +2016-05-01,"Industrial Consumption","Rhode Island","RI",691 +2016-05-01,"Industrial Consumption","District of Columbia","DC",0 +2016-05-01,"Industrial Consumption","Missouri","MO",4950 +2016-05-01,"Industrial Consumption","Washington","WA",5759 +2016-05-01,"Industrial Consumption","Pennsylvania","PA",15741 +2016-05-01,"Industrial Consumption","Maine","ME",1569 +2016-05-01,"Industrial Consumption","Nebraska","NE",6787 +2016-05-01,"Industrial Consumption","Kentucky","KY",9171 +2016-05-01,"Industrial Consumption","Georgia","GA",12662 +2016-05-01,"Industrial Consumption","Louisiana","LA",87931 +2016-05-01,"Industrial Consumption","Indiana","IN",31205 +2016-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",131270 +2016-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",48644 +2016-05-01,"Residential Consumption","South Carolina","SC",719 +2016-05-01,"Residential Consumption","Oregon","OR",1550 +2016-05-01,"Residential Consumption","Connecticut","CT",2294 +2016-05-01,"Residential Consumption","Kansas","KS",2084 +2016-05-01,"Residential Consumption","Delaware","DE",458 +2016-05-01,"Residential Consumption","California","CA",24772 +2016-05-01,"Residential Consumption","Ohio","OH",10510 +2016-05-01,"Residential Consumption","North Carolina","NC",1657 +2016-05-01,"Residential Consumption","Mississippi","MS",817 +2016-05-01,"Residential Consumption","New Mexico","NM",1546 +2016-05-01,"Residential Consumption","Indiana","IN",4741 +2016-05-01,"Residential Consumption","Wisconsin","WI",5056 +2016-05-01,"Residential Consumption","Michigan","MI",12191 +2016-05-01,"Residential Consumption","District of Columbia","DC",489 +2016-05-01,"Residential Consumption","Maine","ME",136 +2016-05-01,"Residential Consumption","Idaho","ID",893 +2016-05-01,"Residential Consumption","Arkansas","AR",937 +2016-05-01,"Residential Consumption","New Hampshire","NH",294 +2016-05-01,"Residential Consumption","Illinois","IL",15848 +2016-05-01,"Residential Consumption","Iowa","IA",2249 +2016-05-01,"Residential Consumption","Virginia","VA",2968 +2016-05-01,"Residential Consumption","Maryland","MD",3341 +2016-05-01,"Residential Consumption","Georgia","GA",4642 +2016-05-01,"Residential Consumption","Massachusetts","MA",5617 +2016-05-01,"Residential Consumption","Colorado","CO",6529 +2016-05-01,"Residential Consumption","Oklahoma","OK",1759 +2016-05-01,"Residential Consumption","Arizona","AZ",1766 +2016-05-01,"Residential Consumption","Alabama","AL",978 +2016-05-01,"Residential Consumption","Alaska","AK",864 +2016-05-01,"Residential Consumption","Wyoming","WY",772 +2016-05-01,"Residential Consumption","New York","NY",22097 +2016-05-01,"Residential Consumption","Texas","TX",7373 +2016-05-01,"Residential Consumption","Hawaii","HI",44 +2016-05-01,"Residential Consumption","Nebraska","NE",1371 +2016-05-01,"Residential Consumption","Kentucky","KY",1491 +2016-05-01,"Residential Consumption","U.S.","U.S.",193922 +2016-05-01,"Residential Consumption","Rhode Island","RI",746 +2016-05-01,"Residential Consumption","Utah","UT",2994 +2016-05-01,"Residential Consumption","Pennsylvania","PA",9401 +2016-05-01,"Residential Consumption","Missouri","MO",2869 +2016-05-01,"Residential Consumption","Vermont","VT",204 +2016-05-01,"Residential Consumption","Tennessee","TN",1627 +2016-05-01,"Residential Consumption","Florida","FL",968 +2016-05-01,"Residential Consumption","North Dakota","ND",375 +2016-05-01,"Residential Consumption","New Jersey","NJ",10809 +2016-05-01,"Residential Consumption","Louisiana","LA",1481 +2016-05-01,"Residential Consumption","South Dakota","SD",523 +2016-05-01,"Residential Consumption","Nevada","NV",1993 +2016-05-01,"Residential Consumption","Minnesota","MN",4253 +2016-05-01,"Residential Consumption","Montana","MT",934 +2016-05-01,"Residential Consumption","Washington","WA",3170 +2016-05-01,"Residential Consumption","West Virginia","WV",726 +2016-05-01,"Vehicle Fuel Consumption","Washington","WA",42 +2016-05-01,"Vehicle Fuel Consumption","New York","NY",324 +2016-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-05-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-05-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-05-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-05-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-05-01,"Vehicle Fuel Consumption","Illinois","IL",40 +2016-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",3560 +2016-05-01,"Vehicle Fuel Consumption","Nevada","NV",160 +2016-05-01,"Vehicle Fuel Consumption","Kansas","KS",16 +2016-05-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-05-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",81 +2016-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-05-01,"Vehicle Fuel Consumption","Texas","TX",328 +2016-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2016-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-05-01,"Vehicle Fuel Consumption","Oregon","OR",20 +2016-05-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2016-05-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-05-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-05-01,"Vehicle Fuel Consumption","Missouri","MO",22 +2016-05-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-05-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-05-01,"Vehicle Fuel Consumption","Ohio","OH",73 +2016-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",42 +2016-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-05-01,"Vehicle Fuel Consumption","Florida","FL",52 +2016-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-05-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-05-01,"Vehicle Fuel Consumption","Tennessee","TN",25 +2016-05-01,"Vehicle Fuel Consumption","Arizona","AZ",209 +2016-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",31 +2016-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-05-01,"Vehicle Fuel Consumption","Kentucky","KY",11 +2016-05-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2016-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-05-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-05-01,"Vehicle Fuel Consumption","Colorado","CO",38 +2016-05-01,"Vehicle Fuel Consumption","California","CA",1617 +2016-05-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-05-01,"Vehicle Fuel Consumption","Utah","UT",26 +2016-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",44 +2016-05-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-05-01,"Vehicle Fuel Consumption","North Carolina","NC",18 +2016-05-01,"Vehicle Fuel Consumption","Georgia","GA",79 +2016-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-05-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-06-01,"Commercial Consumption","New Mexico","NM",1117 +2016-06-01,"Commercial Consumption","Pennsylvania","PA",4886 +2016-06-01,"Commercial Consumption","Ohio","OH",4163 +2016-06-01,"Commercial Consumption","Connecticut","CT",2107 +2016-06-01,"Commercial Consumption","Nebraska","NE",1048 +2016-06-01,"Commercial Consumption","Delaware","DE",516 +2016-06-01,"Commercial Consumption","District of Columbia","DC",639 +2016-06-01,"Commercial Consumption","North Dakota","ND",296 +2016-06-01,"Commercial Consumption","North Carolina","NC",2583 +2016-06-01,"Commercial Consumption","Missouri","MO",2033 +2016-06-01,"Commercial Consumption","U.S.","U.S.",138340 +2016-06-01,"Commercial Consumption","Mississippi","MS",1158 +2016-06-01,"Commercial Consumption","Minnesota","MN",3075 +2016-06-01,"Commercial Consumption","New Jersey","NJ",7963 +2016-06-01,"Commercial Consumption","Maryland","MD",3249 +2016-06-01,"Commercial Consumption","Kansas","KS",1723 +2016-06-01,"Commercial Consumption","Florida","FL",4546 +2016-06-01,"Commercial Consumption","California","CA",16005 +2016-06-01,"Commercial Consumption","Tennessee","TN",1945 +2016-06-01,"Commercial Consumption","Indiana","IN",2175 +2016-06-01,"Commercial Consumption","Maine","ME",311 +2016-06-01,"Commercial Consumption","Kentucky","KY",1012 +2016-06-01,"Commercial Consumption","Texas","TX",11194 +2016-06-01,"Commercial Consumption","Hawaii","HI",190 +2016-06-01,"Commercial Consumption","Alaska","AK",664 +2016-06-01,"Commercial Consumption","Illinois","IL",7348 +2016-06-01,"Commercial Consumption","West Virginia","WV",989 +2016-06-01,"Commercial Consumption","South Carolina","SC",1255 +2016-06-01,"Commercial Consumption","Oregon","OR",1046 +2016-06-01,"Commercial Consumption","South Dakota","SD",302 +2016-06-01,"Commercial Consumption","Georgia","GA",2052 +2016-06-01,"Commercial Consumption","Wyoming","WY",435 +2016-06-01,"Commercial Consumption","Washington","WA",2466 +2016-06-01,"Commercial Consumption","Colorado","CO",1833 +2016-06-01,"Commercial Consumption","Massachusetts","MA",3735 +2016-06-01,"Commercial Consumption","Wisconsin","WI",3160 +2016-06-01,"Commercial Consumption","Idaho","ID",664 +2016-06-01,"Commercial Consumption","Alabama","AL",1171 +2016-06-01,"Commercial Consumption","New York","NY",14898 +2016-06-01,"Commercial Consumption","Michigan","MI",5237 +2016-06-01,"Commercial Consumption","Louisiana","LA",1815 +2016-06-01,"Commercial Consumption","Oklahoma","OK",1499 +2016-06-01,"Commercial Consumption","Montana","MT",764 +2016-06-01,"Commercial Consumption","Vermont","VT",310 +2016-06-01,"Commercial Consumption","Rhode Island","RI",234 +2016-06-01,"Commercial Consumption","Iowa","IA",1604 +2016-06-01,"Commercial Consumption","Nevada","NV",1783 +2016-06-01,"Commercial Consumption","Utah","UT",1083 +2016-06-01,"Commercial Consumption","Virginia","VA",3134 +2016-06-01,"Commercial Consumption","New Hampshire","NH",248 +2016-06-01,"Commercial Consumption","Arkansas","AR",2561 +2016-06-01,"Commercial Consumption","Arizona","AZ",2114 +2016-06-01,"Delivered to Consumers","Alaska","AK",3778 +2016-06-01,"Delivered to Consumers","Michigan","MI",43592 +2016-06-01,"Delivered to Consumers","California","CA",162945 +2016-06-01,"Delivered to Consumers","Maine","ME",3551 +2016-06-01,"Delivered to Consumers","Utah","UT",11910 +2016-06-01,"Delivered to Consumers","Rhode Island","RI",5963 +2016-06-01,"Delivered to Consumers","Tennessee","TN",21878 +2016-06-01,"Delivered to Consumers","New Jersey","NJ",50907 +2016-06-01,"Delivered to Consumers","Wyoming","WY",4940 +2016-06-01,"Delivered to Consumers","New York","NY",77027 +2016-06-01,"Delivered to Consumers","Montana","MT",3357 +2016-06-01,"Delivered to Consumers","Maryland","MD",9865 +2016-06-01,"Delivered to Consumers","Hawaii","HI",242 +2016-06-01,"Delivered to Consumers","Iowa","IA",19145 +2016-06-01,"Delivered to Consumers","Connecticut","CT",14221 +2016-06-01,"Delivered to Consumers","Indiana","IN",48813 +2016-06-01,"Delivered to Consumers","West Virginia","WV",5078 +2016-06-01,"Delivered to Consumers","Kentucky","KY",16774 +2016-06-01,"Delivered to Consumers","Oregon","OR",14403 +2016-06-01,"Delivered to Consumers","Arizona","AZ",36228 +2016-06-01,"Delivered to Consumers","North Dakota","ND",4606 +2016-06-01,"Delivered to Consumers","Florida","FL",127361 +2016-06-01,"Delivered to Consumers","South Dakota","SD",4658 +2016-06-01,"Delivered to Consumers","Oklahoma","OK",50340 +2016-06-01,"Delivered to Consumers","Arkansas","AR",26965 +2016-06-01,"Delivered to Consumers","North Carolina","NC",35323 +2016-06-01,"Delivered to Consumers","New Hampshire","NH",3846 +2016-06-01,"Delivered to Consumers","Delaware","DE",9088 +2016-06-01,"Delivered to Consumers","Vermont","VT",574 +2016-06-01,"Delivered to Consumers","Kansas","KS",15584 +2016-06-01,"Delivered to Consumers","Alabama","AL",56417 +2016-06-01,"Delivered to Consumers","Wisconsin","WI",27199 +2016-06-01,"Delivered to Consumers","Colorado","CO",20175 +2016-06-01,"Delivered to Consumers","Washington","WA",16373 +2016-06-01,"Delivered to Consumers","Minnesota","MN",23830 +2016-06-01,"Delivered to Consumers","New Mexico","NM",10853 +2016-06-01,"Delivered to Consumers","Idaho","ID",5340 +2016-06-01,"Delivered to Consumers","Nebraska","NE",10429 +2016-06-01,"Delivered to Consumers","Mississippi","MS",47771 +2016-06-01,"Delivered to Consumers","South Carolina","SC",20952 +2016-06-01,"Delivered to Consumers","Nevada","NV",26162 +2016-06-01,"Delivered to Consumers","Louisiana","LA",121850 +2016-06-01,"Delivered to Consumers","U.S.","U.S.",1825125 +2016-06-01,"Delivered to Consumers","Illinois","IL",46464 +2016-06-01,"Delivered to Consumers","Ohio","OH",46205 +2016-06-01,"Delivered to Consumers","Virginia","VA",41696 +2016-06-01,"Delivered to Consumers","Pennsylvania","PA",71414 +2016-06-01,"Delivered to Consumers","Missouri","MO",15792 +2016-06-01,"Delivered to Consumers","Massachusetts","MA",26479 +2016-06-01,"Delivered to Consumers","Texas","TX",298407 +2016-06-01,"Delivered to Consumers","Georgia","GA",57356 +2016-06-01,"Delivered to Consumers","District of Columbia","DC",998 +2016-06-01,"Electric Power Consumption","New Jersey","NJ",31226 +2016-06-01,"Electric Power Consumption","Louisiana","LA",33563 +2016-06-01,"Electric Power Consumption","West Virginia","WV",1298 +2016-06-01,"Electric Power Consumption","Nevada","NV",21280 +2016-06-01,"Electric Power Consumption","Maine","ME",1765 +2016-06-01,"Electric Power Consumption","Ohio","OH",17446 +2016-06-01,"Electric Power Consumption","New Hampshire","NH",2854 +2016-06-01,"Electric Power Consumption","Virginia","VA",29260 +2016-06-01,"Electric Power Consumption","New Mexico","NM",7423 +2016-06-01,"Electric Power Consumption","Colorado","CO",10390 +2016-06-01,"Electric Power Consumption","Texas","TX",151466 +2016-06-01,"Electric Power Consumption","Wisconsin","WI",11634 +2016-06-01,"Electric Power Consumption","Pennsylvania","PA",46717 +2016-06-01,"Electric Power Consumption","North Carolina","NC",23830 +2016-06-01,"Electric Power Consumption","Montana","MT",570 +2016-06-01,"Electric Power Consumption","Maryland","MD",3737 +2016-06-01,"Electric Power Consumption","Alabama","AL",39006 +2016-06-01,"Electric Power Consumption","Washington","WA",5834 +2016-06-01,"Electric Power Consumption","Rhode Island","RI",4743 +2016-06-01,"Electric Power Consumption","Kansas","KS",3165 +2016-06-01,"Electric Power Consumption","U.S.","U.S.",970308 +2016-06-01,"Electric Power Consumption","Georgia","GA",39622 +2016-06-01,"Electric Power Consumption","Idaho","ID",1942 +2016-06-01,"Electric Power Consumption","Utah","UT",6303 +2016-06-01,"Electric Power Consumption","Missouri","MO",7435 +2016-06-01,"Electric Power Consumption","South Carolina","SC",12181 +2016-06-01,"Electric Power Consumption","New York","NY",43633 +2016-06-01,"Electric Power Consumption","Michigan","MI",21471 +2016-06-01,"Electric Power Consumption","Mississippi","MS",36028 +2016-06-01,"Electric Power Consumption","Arizona","AZ",31042 +2016-06-01,"Electric Power Consumption","Florida","FL",114348 +2016-06-01,"Electric Power Consumption","Tennessee","TN",9258 +2016-06-01,"Electric Power Consumption","Nebraska","NE",1344 +2016-06-01,"Electric Power Consumption","Hawaii","HI",NA +2016-06-01,"Electric Power Consumption","North Dakota","ND",1347 +2016-06-01,"Electric Power Consumption","Indiana","IN",15362 +2016-06-01,"Electric Power Consumption","Connecticut","CT",9199 +2016-06-01,"Electric Power Consumption","Oregon","OR",7931 +2016-06-01,"Electric Power Consumption","Minnesota","MN",6090 +2016-06-01,"Electric Power Consumption","Illinois","IL",13199 +2016-06-01,"Electric Power Consumption","Vermont","VT",NA +2016-06-01,"Electric Power Consumption","South Dakota","SD",739 +2016-06-01,"Electric Power Consumption","Delaware","DE",6015 +2016-06-01,"Electric Power Consumption","Alaska","AK",2216 +2016-06-01,"Electric Power Consumption","Arkansas","AR",17126 +2016-06-01,"Electric Power Consumption","Oklahoma","OK",31636 +2016-06-01,"Electric Power Consumption","Massachusetts","MA",17082 +2016-06-01,"Electric Power Consumption","Wyoming","WY",169 +2016-06-01,"Electric Power Consumption","Iowa","IA",2230 +2016-06-01,"Electric Power Consumption","Kentucky","KY",6703 +2016-06-01,"Electric Power Consumption","California","CA",61452 +2016-06-01,"Industrial Consumption","Louisiana","LA",85217 +2016-06-01,"Industrial Consumption","Texas","TX",128351 +2016-06-01,"Industrial Consumption","Wyoming","WY",4040 +2016-06-01,"Industrial Consumption","Iowa","IA",14127 +2016-06-01,"Industrial Consumption","District of Columbia","DC",0 +2016-06-01,"Industrial Consumption","Alaska","AK",363 +2016-06-01,"Industrial Consumption","Massachusetts","MA",2832 +2016-06-01,"Industrial Consumption","Oklahoma","OK",15793 +2016-06-01,"Industrial Consumption","New Mexico","NM",1220 +2016-06-01,"Industrial Consumption","Arizona","AZ",1542 +2016-06-01,"Industrial Consumption","New York","NY",5384 +2016-06-01,"Industrial Consumption","Arkansas","AR",6588 +2016-06-01,"Industrial Consumption","Minnesota","MN",11710 +2016-06-01,"Industrial Consumption","Delaware","DE",2333 +2016-06-01,"Industrial Consumption","Washington","WA",5731 +2016-06-01,"Industrial Consumption","Utah","UT",3036 +2016-06-01,"Industrial Consumption","Mississippi","MS",9838 +2016-06-01,"Industrial Consumption","California","CA",62672 +2016-06-01,"Industrial Consumption","Vermont","VT",151 +2016-06-01,"Industrial Consumption","Tennessee","TN",9493 +2016-06-01,"Industrial Consumption","South Dakota","SD",3386 +2016-06-01,"Industrial Consumption","Pennsylvania","PA",14580 +2016-06-01,"Industrial Consumption","Oregon","OR",4280 +2016-06-01,"Industrial Consumption","Idaho","ID",2136 +2016-06-01,"Industrial Consumption","Indiana","IN",29036 +2016-06-01,"Industrial Consumption","Georgia","GA",11834 +2016-06-01,"Industrial Consumption","Montana","MT",1508 +2016-06-01,"Industrial Consumption","Maryland","MD",1084 +2016-06-01,"Industrial Consumption","Ohio","OH",19658 +2016-06-01,"Industrial Consumption","South Carolina","SC",7011 +2016-06-01,"Industrial Consumption","Virginia","VA",7195 +2016-06-01,"Industrial Consumption","Wisconsin","WI",9793 +2016-06-01,"Industrial Consumption","Michigan","MI",11265 +2016-06-01,"Industrial Consumption","Kentucky","KY",8237 +2016-06-01,"Industrial Consumption","Illinois","IL",16347 +2016-06-01,"Industrial Consumption","Rhode Island","RI",652 +2016-06-01,"Industrial Consumption","North Dakota","ND",2782 +2016-06-01,"Industrial Consumption","Missouri","MO",4383 +2016-06-01,"Industrial Consumption","Kansas","KS",9304 +2016-06-01,"Industrial Consumption","New Hampshire","NH",568 +2016-06-01,"Industrial Consumption","Florida","FL",7619 +2016-06-01,"Industrial Consumption","Connecticut","CT",1602 +2016-06-01,"Industrial Consumption","Hawaii","HI",6 +2016-06-01,"Industrial Consumption","Colorado","CO",4982 +2016-06-01,"Industrial Consumption","Maine","ME",1415 +2016-06-01,"Industrial Consumption","Alabama","AL",15396 +2016-06-01,"Industrial Consumption","West Virginia","WV",2417 +2016-06-01,"Industrial Consumption","New Jersey","NJ",5274 +2016-06-01,"Industrial Consumption","North Carolina","NC",7671 +2016-06-01,"Industrial Consumption","U.S.","U.S.",590392 +2016-06-01,"Industrial Consumption","Nevada","NV",1427 +2016-06-01,"Industrial Consumption","Nebraska","NE",7125 +2016-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",125818 +2016-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",49713 +2016-06-01,"Residential Consumption","Texas","TX",7078 +2016-06-01,"Residential Consumption","Oregon","OR",1127 +2016-06-01,"Residential Consumption","Tennessee","TN",1157 +2016-06-01,"Residential Consumption","Minnesota","MN",2944 +2016-06-01,"Residential Consumption","North Dakota","ND",181 +2016-06-01,"Residential Consumption","Arkansas","AR",687 +2016-06-01,"Residential Consumption","Washington","WA",2300 +2016-06-01,"Residential Consumption","Illinois","IL",9531 +2016-06-01,"Residential Consumption","Wisconsin","WI",2605 +2016-06-01,"Residential Consumption","Vermont","VT",113 +2016-06-01,"Residential Consumption","Pennsylvania","PA",5191 +2016-06-01,"Residential Consumption","Kentucky","KY",813 +2016-06-01,"Residential Consumption","Missouri","MO",1919 +2016-06-01,"Residential Consumption","Arizona","AZ",1327 +2016-06-01,"Residential Consumption","West Virginia","WV",371 +2016-06-01,"Residential Consumption","Nebraska","NE",905 +2016-06-01,"Residential Consumption","Maryland","MD",1783 +2016-06-01,"Residential Consumption","South Dakota","SD",230 +2016-06-01,"Residential Consumption","Georgia","GA",3772 +2016-06-01,"Residential Consumption","Colorado","CO",2932 +2016-06-01,"Residential Consumption","California","CA",21252 +2016-06-01,"Residential Consumption","Ohio","OH",4867 +2016-06-01,"Residential Consumption","North Carolina","NC",1222 +2016-06-01,"Residential Consumption","New Mexico","NM",1085 +2016-06-01,"Residential Consumption","Maine","ME",60 +2016-06-01,"Residential Consumption","Indiana","IN",2229 +2016-06-01,"Residential Consumption","New Hampshire","NH",168 +2016-06-01,"Residential Consumption","Delaware","DE",224 +2016-06-01,"Residential Consumption","New York","NY",12799 +2016-06-01,"Residential Consumption","Virginia","VA",2052 +2016-06-01,"Residential Consumption","Utah","UT",1463 +2016-06-01,"Residential Consumption","Massachusetts","MA",2802 +2016-06-01,"Residential Consumption","U.S.","U.S.",122640 +2016-06-01,"Residential Consumption","Louisiana","LA",1239 +2016-06-01,"Residential Consumption","District of Columbia","DC",280 +2016-06-01,"Residential Consumption","Alaska","AK",534 +2016-06-01,"Residential Consumption","Rhode Island","RI",325 +2016-06-01,"Residential Consumption","Iowa","IA",1181 +2016-06-01,"Residential Consumption","Hawaii","HI",45 +2016-06-01,"Residential Consumption","Michigan","MI",5586 +2016-06-01,"Residential Consumption","Nevada","NV",1518 +2016-06-01,"Residential Consumption","Montana","MT",515 +2016-06-01,"Residential Consumption","Oklahoma","OK",1370 +2016-06-01,"Residential Consumption","South Carolina","SC",499 +2016-06-01,"Residential Consumption","Mississippi","MS",740 +2016-06-01,"Residential Consumption","Connecticut","CT",1312 +2016-06-01,"Residential Consumption","Florida","FL",798 +2016-06-01,"Residential Consumption","Idaho","ID",587 +2016-06-01,"Residential Consumption","New Jersey","NJ",6416 +2016-06-01,"Residential Consumption","Kansas","KS",1377 +2016-06-01,"Residential Consumption","Alabama","AL",833 +2016-06-01,"Residential Consumption","Wyoming","WY",294 +2016-06-01,"Vehicle Fuel Consumption","Utah","UT",25 +2016-06-01,"Vehicle Fuel Consumption","Virginia","VA",54 +2016-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",30 +2016-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-06-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",3445 +2016-06-01,"Vehicle Fuel Consumption","New York","NY",313 +2016-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-06-01,"Vehicle Fuel Consumption","Florida","FL",50 +2016-06-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-06-01,"Vehicle Fuel Consumption","Georgia","GA",77 +2016-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-06-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-06-01,"Vehicle Fuel Consumption","Missouri","MO",21 +2016-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-06-01,"Vehicle Fuel Consumption","Michigan","MI",33 +2016-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-06-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-06-01,"Vehicle Fuel Consumption","Kentucky","KY",10 +2016-06-01,"Vehicle Fuel Consumption","Washington","WA",41 +2016-06-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-06-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",27 +2016-06-01,"Vehicle Fuel Consumption","Oregon","OR",19 +2016-06-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-06-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-06-01,"Vehicle Fuel Consumption","California","CA",1564 +2016-06-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",41 +2016-06-01,"Vehicle Fuel Consumption","Nevada","NV",155 +2016-06-01,"Vehicle Fuel Consumption","Kansas","KS",15 +2016-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",79 +2016-06-01,"Vehicle Fuel Consumption","Texas","TX",318 +2016-06-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-06-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-06-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-06-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-06-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2016-06-01,"Vehicle Fuel Consumption","Ohio","OH",70 +2016-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",43 +2016-06-01,"Vehicle Fuel Consumption","Arizona","AZ",203 +2016-06-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-06-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-06-01,"Vehicle Fuel Consumption","Colorado","CO",37 +2016-06-01,"Vehicle Fuel Consumption","North Carolina","NC",17 +2016-06-01,"Vehicle Fuel Consumption","Illinois","IL",39 +2016-06-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-07-01,"Commercial Consumption","Washington","WA",2290 +2016-07-01,"Commercial Consumption","South Dakota","SD",299 +2016-07-01,"Commercial Consumption","Rhode Island","RI",174 +2016-07-01,"Commercial Consumption","Connecticut","CT",2444 +2016-07-01,"Commercial Consumption","Alabama","AL",1007 +2016-07-01,"Commercial Consumption","District of Columbia","DC",688 +2016-07-01,"Commercial Consumption","North Dakota","ND",303 +2016-07-01,"Commercial Consumption","Oklahoma","OK",1424 +2016-07-01,"Commercial Consumption","Missouri","MO",2039 +2016-07-01,"Commercial Consumption","Kentucky","KY",1066 +2016-07-01,"Commercial Consumption","Florida","FL",4637 +2016-07-01,"Commercial Consumption","Mississippi","MS",949 +2016-07-01,"Commercial Consumption","Colorado","CO",1637 +2016-07-01,"Commercial Consumption","Utah","UT",1245 +2016-07-01,"Commercial Consumption","Virginia","VA",2736 +2016-07-01,"Commercial Consumption","Pennsylvania","PA",4419 +2016-07-01,"Commercial Consumption","New Jersey","NJ",8165 +2016-07-01,"Commercial Consumption","Montana","MT",732 +2016-07-01,"Commercial Consumption","Maryland","MD",2883 +2016-07-01,"Commercial Consumption","California","CA",15669 +2016-07-01,"Commercial Consumption","Arkansas","AR",2468 +2016-07-01,"Commercial Consumption","New York","NY",15036 +2016-07-01,"Commercial Consumption","South Carolina","SC",1135 +2016-07-01,"Commercial Consumption","North Carolina","NC",2585 +2016-07-01,"Commercial Consumption","New Mexico","NM",1009 +2016-07-01,"Commercial Consumption","Vermont","VT",350 +2016-07-01,"Commercial Consumption","Alaska","AK",566 +2016-07-01,"Commercial Consumption","Indiana","IN",2087 +2016-07-01,"Commercial Consumption","Louisiana","LA",1784 +2016-07-01,"Commercial Consumption","Minnesota","MN",2674 +2016-07-01,"Commercial Consumption","Oregon","OR",926 +2016-07-01,"Commercial Consumption","Maine","ME",284 +2016-07-01,"Commercial Consumption","U.S.","U.S.",134609 +2016-07-01,"Commercial Consumption","Iowa","IA",1758 +2016-07-01,"Commercial Consumption","Nebraska","NE",960 +2016-07-01,"Commercial Consumption","Tennessee","TN",1948 +2016-07-01,"Commercial Consumption","Nevada","NV",1771 +2016-07-01,"Commercial Consumption","Wyoming","WY",431 +2016-07-01,"Commercial Consumption","West Virginia","WV",1065 +2016-07-01,"Commercial Consumption","Texas","TX",9940 +2016-07-01,"Commercial Consumption","Kansas","KS",1607 +2016-07-01,"Commercial Consumption","Georgia","GA",2007 +2016-07-01,"Commercial Consumption","Ohio","OH",4191 +2016-07-01,"Commercial Consumption","Hawaii","HI",192 +2016-07-01,"Commercial Consumption","Massachusetts","MA",3804 +2016-07-01,"Commercial Consumption","Wisconsin","WI",2865 +2016-07-01,"Commercial Consumption","New Hampshire","NH",200 +2016-07-01,"Commercial Consumption","Idaho","ID",668 +2016-07-01,"Commercial Consumption","Delaware","DE",519 +2016-07-01,"Commercial Consumption","Arizona","AZ",1960 +2016-07-01,"Commercial Consumption","Michigan","MI",5030 +2016-07-01,"Commercial Consumption","Illinois","IL",7986 +2016-07-01,"Delivered to Consumers","Indiana","IN",50085 +2016-07-01,"Delivered to Consumers","Delaware","DE",11006 +2016-07-01,"Delivered to Consumers","Arkansas","AR",25793 +2016-07-01,"Delivered to Consumers","Wisconsin","WI",28226 +2016-07-01,"Delivered to Consumers","Oregon","OR",16533 +2016-07-01,"Delivered to Consumers","Louisiana","LA",130195 +2016-07-01,"Delivered to Consumers","North Dakota","ND",4147 +2016-07-01,"Delivered to Consumers","U.S.","U.S.",2001036 +2016-07-01,"Delivered to Consumers","West Virginia","WV",4818 +2016-07-01,"Delivered to Consumers","Kansas","KS",16536 +2016-07-01,"Delivered to Consumers","Alabama","AL",60786 +2016-07-01,"Delivered to Consumers","North Carolina","NC",40519 +2016-07-01,"Delivered to Consumers","Mississippi","MS",50639 +2016-07-01,"Delivered to Consumers","Missouri","MO",15409 +2016-07-01,"Delivered to Consumers","California","CA",175135 +2016-07-01,"Delivered to Consumers","Arizona","AZ",41072 +2016-07-01,"Delivered to Consumers","New Hampshire","NH",5079 +2016-07-01,"Delivered to Consumers","New Mexico","NM",12026 +2016-07-01,"Delivered to Consumers","South Dakota","SD",4746 +2016-07-01,"Delivered to Consumers","Maryland","MD",15594 +2016-07-01,"Delivered to Consumers","Oklahoma","OK",52402 +2016-07-01,"Delivered to Consumers","Ohio","OH",50136 +2016-07-01,"Delivered to Consumers","Kentucky","KY",17860 +2016-07-01,"Delivered to Consumers","Nebraska","NE",11084 +2016-07-01,"Delivered to Consumers","South Carolina","SC",24182 +2016-07-01,"Delivered to Consumers","Minnesota","MN",25641 +2016-07-01,"Delivered to Consumers","District of Columbia","DC",1009 +2016-07-01,"Delivered to Consumers","New Jersey","NJ",60273 +2016-07-01,"Delivered to Consumers","Washington","WA",19605 +2016-07-01,"Delivered to Consumers","Wyoming","WY",5143 +2016-07-01,"Delivered to Consumers","Vermont","VT",584 +2016-07-01,"Delivered to Consumers","Tennessee","TN",22376 +2016-07-01,"Delivered to Consumers","Michigan","MI",46709 +2016-07-01,"Delivered to Consumers","Georgia","GA",60677 +2016-07-01,"Delivered to Consumers","Montana","MT",3441 +2016-07-01,"Delivered to Consumers","Alaska","AK",3704 +2016-07-01,"Delivered to Consumers","Nevada","NV",27115 +2016-07-01,"Delivered to Consumers","Utah","UT",12399 +2016-07-01,"Delivered to Consumers","Rhode Island","RI",7004 +2016-07-01,"Delivered to Consumers","Connecticut","CT",16793 +2016-07-01,"Delivered to Consumers","Massachusetts","MA",30228 +2016-07-01,"Delivered to Consumers","Colorado","CO",21082 +2016-07-01,"Delivered to Consumers","Illinois","IL",56561 +2016-07-01,"Delivered to Consumers","New York","NY",90974 +2016-07-01,"Delivered to Consumers","Hawaii","HI",246 +2016-07-01,"Delivered to Consumers","Idaho","ID",6148 +2016-07-01,"Delivered to Consumers","Iowa","IA",20404 +2016-07-01,"Delivered to Consumers","Virginia","VA",48466 +2016-07-01,"Delivered to Consumers","Pennsylvania","PA",80239 +2016-07-01,"Delivered to Consumers","Texas","TX",328972 +2016-07-01,"Delivered to Consumers","Maine","ME",5140 +2016-07-01,"Delivered to Consumers","Florida","FL",136095 +2016-07-01,"Electric Power Consumption","Louisiana","LA",38612 +2016-07-01,"Electric Power Consumption","Colorado","CO",11729 +2016-07-01,"Electric Power Consumption","Texas","TX",170485 +2016-07-01,"Electric Power Consumption","Oregon","OR",10409 +2016-07-01,"Electric Power Consumption","Hawaii","HI",NA +2016-07-01,"Electric Power Consumption","Florida","FL",122367 +2016-07-01,"Electric Power Consumption","New Mexico","NM",8917 +2016-07-01,"Electric Power Consumption","South Carolina","SC",15823 +2016-07-01,"Electric Power Consumption","Nevada","NV",22524 +2016-07-01,"Electric Power Consumption","Ohio","OH",22526 +2016-07-01,"Electric Power Consumption","Georgia","GA",43072 +2016-07-01,"Electric Power Consumption","Virginia","VA",36894 +2016-07-01,"Electric Power Consumption","Iowa","IA",3103 +2016-07-01,"Electric Power Consumption","Alabama","AL",44142 +2016-07-01,"Electric Power Consumption","Oklahoma","OK",33906 +2016-07-01,"Electric Power Consumption","Michigan","MI",25486 +2016-07-01,"Electric Power Consumption","Wyoming","WY",205 +2016-07-01,"Electric Power Consumption","South Dakota","SD",849 +2016-07-01,"Electric Power Consumption","Mississippi","MS",39499 +2016-07-01,"Electric Power Consumption","Kentucky","KY",7891 +2016-07-01,"Electric Power Consumption","Indiana","IN",16937 +2016-07-01,"Electric Power Consumption","Rhode Island","RI",5947 +2016-07-01,"Electric Power Consumption","Minnesota","MN",8456 +2016-07-01,"Electric Power Consumption","Kansas","KS",2848 +2016-07-01,"Electric Power Consumption","Pennsylvania","PA",56797 +2016-07-01,"Electric Power Consumption","Vermont","VT",1 +2016-07-01,"Electric Power Consumption","Nebraska","NE",961 +2016-07-01,"Electric Power Consumption","New Hampshire","NH",4147 +2016-07-01,"Electric Power Consumption","Montana","MT",649 +2016-07-01,"Electric Power Consumption","Illinois","IL",23160 +2016-07-01,"Electric Power Consumption","West Virginia","WV",672 +2016-07-01,"Electric Power Consumption","North Carolina","NC",29125 +2016-07-01,"Electric Power Consumption","Alaska","AK",2351 +2016-07-01,"Electric Power Consumption","Washington","WA",9406 +2016-07-01,"Electric Power Consumption","Idaho","ID",2420 +2016-07-01,"Electric Power Consumption","New York","NY",59387 +2016-07-01,"Electric Power Consumption","Utah","UT",6592 +2016-07-01,"Electric Power Consumption","Tennessee","TN",10110 +2016-07-01,"Electric Power Consumption","U.S.","U.S.",1139968 +2016-07-01,"Electric Power Consumption","Missouri","MO",7261 +2016-07-01,"Electric Power Consumption","Maine","ME",3241 +2016-07-01,"Electric Power Consumption","North Dakota","ND",1506 +2016-07-01,"Electric Power Consumption","Delaware","DE",7632 +2016-07-01,"Electric Power Consumption","Connecticut","CT",11628 +2016-07-01,"Electric Power Consumption","Arizona","AZ",36488 +2016-07-01,"Electric Power Consumption","California","CA",71837 +2016-07-01,"Electric Power Consumption","New Jersey","NJ",40703 +2016-07-01,"Electric Power Consumption","Arkansas","AR",16153 +2016-07-01,"Electric Power Consumption","Massachusetts","MA",21487 +2016-07-01,"Electric Power Consumption","Wisconsin","WI",13658 +2016-07-01,"Electric Power Consumption","Maryland","MD",9969 +2016-07-01,"Industrial Consumption","Maryland","MD",1246 +2016-07-01,"Industrial Consumption","Oregon","OR",4258 +2016-07-01,"Industrial Consumption","Virginia","VA",7352 +2016-07-01,"Industrial Consumption","Michigan","MI",10754 +2016-07-01,"Industrial Consumption","Kentucky","KY",8169 +2016-07-01,"Industrial Consumption","District of Columbia","DC",0 +2016-07-01,"Industrial Consumption","Nevada","NV",1391 +2016-07-01,"Industrial Consumption","Arkansas","AR",6584 +2016-07-01,"Industrial Consumption","Alabama","AL",14949 +2016-07-01,"Industrial Consumption","South Carolina","SC",6770 +2016-07-01,"Industrial Consumption","West Virginia","WV",2715 +2016-07-01,"Industrial Consumption","Vermont","VT",140 +2016-07-01,"Industrial Consumption","Wisconsin","WI",9335 +2016-07-01,"Industrial Consumption","Idaho","ID",2524 +2016-07-01,"Industrial Consumption","Florida","FL",8339 +2016-07-01,"Industrial Consumption","Hawaii","HI",8 +2016-07-01,"Industrial Consumption","Colorado","CO",5117 +2016-07-01,"Industrial Consumption","Washington","WA",6013 +2016-07-01,"Industrial Consumption","U.S.","U.S.",616480 +2016-07-01,"Industrial Consumption","Pennsylvania","PA",14825 +2016-07-01,"Industrial Consumption","Nebraska","NE",8443 +2016-07-01,"Industrial Consumption","Wyoming","WY",4274 +2016-07-01,"Industrial Consumption","Illinois","IL",17546 +2016-07-01,"Industrial Consumption","Rhode Island","RI",605 +2016-07-01,"Industrial Consumption","South Dakota","SD",3402 +2016-07-01,"Industrial Consumption","Ohio","OH",19109 +2016-07-01,"Industrial Consumption","Maine","ME",1565 +2016-07-01,"Industrial Consumption","Tennessee","TN",9289 +2016-07-01,"Industrial Consumption","Connecticut","CT",1685 +2016-07-01,"Industrial Consumption","Georgia","GA",11878 +2016-07-01,"Industrial Consumption","North Dakota","ND",2176 +2016-07-01,"Industrial Consumption","California","CA",66480 +2016-07-01,"Industrial Consumption","Minnesota","MN",12192 +2016-07-01,"Industrial Consumption","North Carolina","NC",7745 +2016-07-01,"Industrial Consumption","Alaska","AK",307 +2016-07-01,"Industrial Consumption","Louisiana","LA",88601 +2016-07-01,"Industrial Consumption","New Mexico","NM",1252 +2016-07-01,"Industrial Consumption","Montana","MT",1661 +2016-07-01,"Industrial Consumption","New York","NY",5452 +2016-07-01,"Industrial Consumption","Mississippi","MS",9590 +2016-07-01,"Industrial Consumption","New Jersey","NJ",5638 +2016-07-01,"Industrial Consumption","Iowa","IA",14362 +2016-07-01,"Industrial Consumption","Indiana","IN",29019 +2016-07-01,"Industrial Consumption","Massachusetts","MA",2466 +2016-07-01,"Industrial Consumption","Oklahoma","OK",15913 +2016-07-01,"Industrial Consumption","Missouri","MO",4450 +2016-07-01,"Industrial Consumption","Kansas","KS",10987 +2016-07-01,"Industrial Consumption","Arizona","AZ",1334 +2016-07-01,"Industrial Consumption","Utah","UT",2822 +2016-07-01,"Industrial Consumption","Texas","TX",142462 +2016-07-01,"Industrial Consumption","New Hampshire","NH",593 +2016-07-01,"Industrial Consumption","Delaware","DE",2690 +2016-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",131076 +2016-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",54504 +2016-07-01,"Residential Consumption","Hawaii","HI",45 +2016-07-01,"Residential Consumption","Michigan","MI",5405 +2016-07-01,"Residential Consumption","Maryland","MD",1483 +2016-07-01,"Residential Consumption","Kentucky","KY",723 +2016-07-01,"Residential Consumption","Alabama","AL",675 +2016-07-01,"Residential Consumption","Wyoming","WY",231 +2016-07-01,"Residential Consumption","Illinois","IL",7828 +2016-07-01,"Residential Consumption","Rhode Island","RI",268 +2016-07-01,"Residential Consumption","Wisconsin","WI",2361 +2016-07-01,"Residential Consumption","Nevada","NV",1269 +2016-07-01,"Residential Consumption","Pennsylvania","PA",4156 +2016-07-01,"Residential Consumption","Florida","FL",701 +2016-07-01,"Residential Consumption","Idaho","ID",524 +2016-07-01,"Residential Consumption","Kansas","KS",1080 +2016-07-01,"Residential Consumption","Washington","WA",1855 +2016-07-01,"Residential Consumption","West Virginia","WV",363 +2016-07-01,"Residential Consumption","U.S.","U.S.",106420 +2016-07-01,"Residential Consumption","Texas","TX",5756 +2016-07-01,"Residential Consumption","Connecticut","CT",1034 +2016-07-01,"Residential Consumption","Vermont","VT",93 +2016-07-01,"Residential Consumption","New Mexico","NM",839 +2016-07-01,"Residential Consumption","Indiana","IN",2033 +2016-07-01,"Residential Consumption","Arkansas","AR",584 +2016-07-01,"Residential Consumption","Montana","MT",400 +2016-07-01,"Residential Consumption","South Carolina","SC",447 +2016-07-01,"Residential Consumption","Oregon","OR",920 +2016-07-01,"Residential Consumption","New Hampshire","NH",130 +2016-07-01,"Residential Consumption","Colorado","CO",2560 +2016-07-01,"Residential Consumption","District of Columbia","DC",240 +2016-07-01,"Residential Consumption","Massachusetts","MA",2440 +2016-07-01,"Residential Consumption","California","CA",19533 +2016-07-01,"Residential Consumption","New York","NY",10775 +2016-07-01,"Residential Consumption","Mississippi","MS",595 +2016-07-01,"Residential Consumption","Virginia","VA",1429 +2016-07-01,"Residential Consumption","Utah","UT",1714 +2016-07-01,"Residential Consumption","North Dakota","ND",162 +2016-07-01,"Residential Consumption","Alaska","AK",479 +2016-07-01,"Residential Consumption","Ohio","OH",4237 +2016-07-01,"Residential Consumption","Nebraska","NE",713 +2016-07-01,"Residential Consumption","Minnesota","MN",2306 +2016-07-01,"Residential Consumption","Georgia","GA",3641 +2016-07-01,"Residential Consumption","Maine","ME",50 +2016-07-01,"Residential Consumption","New Jersey","NJ",5739 +2016-07-01,"Residential Consumption","Missouri","MO",1637 +2016-07-01,"Residential Consumption","North Carolina","NC",1047 +2016-07-01,"Residential Consumption","Louisiana","LA",1182 +2016-07-01,"Residential Consumption","Iowa","IA",1178 +2016-07-01,"Residential Consumption","Tennessee","TN",1004 +2016-07-01,"Residential Consumption","South Dakota","SD",196 +2016-07-01,"Residential Consumption","Oklahoma","OK",1115 +2016-07-01,"Residential Consumption","Delaware","DE",164 +2016-07-01,"Residential Consumption","Arizona","AZ",1081 +2016-07-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2016-07-01,"Vehicle Fuel Consumption","Washington","WA",42 +2016-07-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-07-01,"Vehicle Fuel Consumption","Missouri","MO",22 +2016-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",31 +2016-07-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",81 +2016-07-01,"Vehicle Fuel Consumption","Texas","TX",328 +2016-07-01,"Vehicle Fuel Consumption","Illinois","IL",40 +2016-07-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-07-01,"Vehicle Fuel Consumption","Utah","UT",26 +2016-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",42 +2016-07-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-07-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-07-01,"Vehicle Fuel Consumption","Ohio","OH",73 +2016-07-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-07-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-07-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-07-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2016-07-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",3560 +2016-07-01,"Vehicle Fuel Consumption","Tennessee","TN",25 +2016-07-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2016-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",44 +2016-07-01,"Vehicle Fuel Consumption","Kansas","KS",16 +2016-07-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-07-01,"Vehicle Fuel Consumption","Florida","FL",52 +2016-07-01,"Vehicle Fuel Consumption","Colorado","CO",38 +2016-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-07-01,"Vehicle Fuel Consumption","Nevada","NV",160 +2016-07-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-07-01,"Vehicle Fuel Consumption","North Carolina","NC",18 +2016-07-01,"Vehicle Fuel Consumption","Georgia","GA",79 +2016-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-07-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-07-01,"Vehicle Fuel Consumption","California","CA",1617 +2016-07-01,"Vehicle Fuel Consumption","Kentucky","KY",11 +2016-07-01,"Vehicle Fuel Consumption","New York","NY",324 +2016-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-07-01,"Vehicle Fuel Consumption","Arizona","AZ",209 +2016-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-07-01,"Vehicle Fuel Consumption","Oregon","OR",20 +2016-07-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-07-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-08-01,"Commercial Consumption","Florida","FL",4283 +2016-08-01,"Commercial Consumption","Connecticut","CT",2463 +2016-08-01,"Commercial Consumption","Indiana","IN",2477 +2016-08-01,"Commercial Consumption","District of Columbia","DC",699 +2016-08-01,"Commercial Consumption","Utah","UT",1036 +2016-08-01,"Commercial Consumption","New Hampshire","NH",203 +2016-08-01,"Commercial Consumption","Texas","TX",9890 +2016-08-01,"Commercial Consumption","Delaware","DE",566 +2016-08-01,"Commercial Consumption","Arizona","AZ",1947 +2016-08-01,"Commercial Consumption","Nevada","NV",1723 +2016-08-01,"Commercial Consumption","West Virginia","WV",1007 +2016-08-01,"Commercial Consumption","Washington","WA",2192 +2016-08-01,"Commercial Consumption","Colorado","CO",1494 +2016-08-01,"Commercial Consumption","Kentucky","KY",1127 +2016-08-01,"Commercial Consumption","Maryland","MD",2978 +2016-08-01,"Commercial Consumption","Rhode Island","RI",167 +2016-08-01,"Commercial Consumption","California","CA",17665 +2016-08-01,"Commercial Consumption","Nebraska","NE",930 +2016-08-01,"Commercial Consumption","Minnesota","MN",2840 +2016-08-01,"Commercial Consumption","Missouri","MO",2119 +2016-08-01,"Commercial Consumption","Wisconsin","WI",3058 +2016-08-01,"Commercial Consumption","Montana","MT",742 +2016-08-01,"Commercial Consumption","Idaho","ID",712 +2016-08-01,"Commercial Consumption","Illinois","IL",7988 +2016-08-01,"Commercial Consumption","New Jersey","NJ",8213 +2016-08-01,"Commercial Consumption","Vermont","VT",355 +2016-08-01,"Commercial Consumption","Ohio","OH",4901 +2016-08-01,"Commercial Consumption","Arkansas","AR",2602 +2016-08-01,"Commercial Consumption","Mississippi","MS",972 +2016-08-01,"Commercial Consumption","North Dakota","ND",300 +2016-08-01,"Commercial Consumption","North Carolina","NC",2791 +2016-08-01,"Commercial Consumption","New Mexico","NM",1053 +2016-08-01,"Commercial Consumption","Oklahoma","OK",1576 +2016-08-01,"Commercial Consumption","Massachusetts","MA",4040 +2016-08-01,"Commercial Consumption","Maine","ME",280 +2016-08-01,"Commercial Consumption","U.S.","U.S.",140436 +2016-08-01,"Commercial Consumption","Georgia","GA",2066 +2016-08-01,"Commercial Consumption","Alabama","AL",1045 +2016-08-01,"Commercial Consumption","South Carolina","SC",1300 +2016-08-01,"Commercial Consumption","Oregon","OR",697 +2016-08-01,"Commercial Consumption","Pennsylvania","PA",4607 +2016-08-01,"Commercial Consumption","South Dakota","SD",298 +2016-08-01,"Commercial Consumption","Kansas","KS",1674 +2016-08-01,"Commercial Consumption","Hawaii","HI",202 +2016-08-01,"Commercial Consumption","New York","NY",16361 +2016-08-01,"Commercial Consumption","Michigan","MI",5186 +2016-08-01,"Commercial Consumption","Wyoming","WY",467 +2016-08-01,"Commercial Consumption","Virginia","VA",2754 +2016-08-01,"Commercial Consumption","Iowa","IA",1827 +2016-08-01,"Commercial Consumption","Alaska","AK",639 +2016-08-01,"Commercial Consumption","Tennessee","TN",1957 +2016-08-01,"Commercial Consumption","Louisiana","LA",1969 +2016-08-01,"Delivered to Consumers","New Mexico","NM",11326 +2016-08-01,"Delivered to Consumers","Ohio","OH",51579 +2016-08-01,"Delivered to Consumers","Alabama","AL",59650 +2016-08-01,"Delivered to Consumers","North Dakota","ND",3885 +2016-08-01,"Delivered to Consumers","Minnesota","MN",27604 +2016-08-01,"Delivered to Consumers","Delaware","DE",10504 +2016-08-01,"Delivered to Consumers","Illinois","IL",52694 +2016-08-01,"Delivered to Consumers","Kansas","KS",17500 +2016-08-01,"Delivered to Consumers","Mississippi","MS",48853 +2016-08-01,"Delivered to Consumers","Nevada","NV",26392 +2016-08-01,"Delivered to Consumers","Rhode Island","RI",6779 +2016-08-01,"Delivered to Consumers","Idaho","ID",7021 +2016-08-01,"Delivered to Consumers","Arkansas","AR",26445 +2016-08-01,"Delivered to Consumers","Louisiana","LA",122541 +2016-08-01,"Delivered to Consumers","Florida","FL",134141 +2016-08-01,"Delivered to Consumers","West Virginia","WV",4599 +2016-08-01,"Delivered to Consumers","Hawaii","HI",256 +2016-08-01,"Delivered to Consumers","Kentucky","KY",17924 +2016-08-01,"Delivered to Consumers","Connecticut","CT",17471 +2016-08-01,"Delivered to Consumers","Virginia","VA",49929 +2016-08-01,"Delivered to Consumers","Pennsylvania","PA",82039 +2016-08-01,"Delivered to Consumers","Colorado","CO",19706 +2016-08-01,"Delivered to Consumers","Arizona","AZ",40604 +2016-08-01,"Delivered to Consumers","Washington","WA",22237 +2016-08-01,"Delivered to Consumers","Utah","UT",11357 +2016-08-01,"Delivered to Consumers","Indiana","IN",49930 +2016-08-01,"Delivered to Consumers","Wyoming","WY",5223 +2016-08-01,"Delivered to Consumers","New York","NY",96419 +2016-08-01,"Delivered to Consumers","Missouri","MO",14742 +2016-08-01,"Delivered to Consumers","Alaska","AK",3624 +2016-08-01,"Delivered to Consumers","Oklahoma","OK",48385 +2016-08-01,"Delivered to Consumers","Wisconsin","WI",29775 +2016-08-01,"Delivered to Consumers","California","CA",189633 +2016-08-01,"Delivered to Consumers","South Carolina","SC",23515 +2016-08-01,"Delivered to Consumers","Maine","ME",5462 +2016-08-01,"Delivered to Consumers","Georgia","GA",59034 +2016-08-01,"Delivered to Consumers","District of Columbia","DC",992 +2016-08-01,"Delivered to Consumers","Vermont","VT",575 +2016-08-01,"Delivered to Consumers","South Dakota","SD",5041 +2016-08-01,"Delivered to Consumers","Tennessee","TN",22962 +2016-08-01,"Delivered to Consumers","Michigan","MI",51921 +2016-08-01,"Delivered to Consumers","Iowa","IA",21383 +2016-08-01,"Delivered to Consumers","New Jersey","NJ",58902 +2016-08-01,"Delivered to Consumers","New Hampshire","NH",5509 +2016-08-01,"Delivered to Consumers","U.S.","U.S.",2023229 +2016-08-01,"Delivered to Consumers","Montana","MT",3423 +2016-08-01,"Delivered to Consumers","Maryland","MD",16145 +2016-08-01,"Delivered to Consumers","Nebraska","NE",11694 +2016-08-01,"Delivered to Consumers","North Carolina","NC",42421 +2016-08-01,"Delivered to Consumers","Massachusetts","MA",30155 +2016-08-01,"Delivered to Consumers","Texas","TX",333459 +2016-08-01,"Delivered to Consumers","Oregon","OR",19872 +2016-08-01,"Electric Power Consumption","Wyoming","WY",190 +2016-08-01,"Electric Power Consumption","Indiana","IN",17277 +2016-08-01,"Electric Power Consumption","New Jersey","NJ",40967 +2016-08-01,"Electric Power Consumption","Colorado","CO",10192 +2016-08-01,"Electric Power Consumption","New York","NY",64632 +2016-08-01,"Electric Power Consumption","Pennsylvania","PA",57182 +2016-08-01,"Electric Power Consumption","Iowa","IA",3477 +2016-08-01,"Electric Power Consumption","Vermont","VT",3 +2016-08-01,"Electric Power Consumption","Maryland","MD",10580 +2016-08-01,"Electric Power Consumption","Delaware","DE",7211 +2016-08-01,"Electric Power Consumption","Alaska","AK",2189 +2016-08-01,"Electric Power Consumption","Washington","WA",12263 +2016-08-01,"Electric Power Consumption","New Mexico","NM",8281 +2016-08-01,"Electric Power Consumption","Michigan","MI",30330 +2016-08-01,"Electric Power Consumption","South Dakota","SD",871 +2016-08-01,"Electric Power Consumption","Nebraska","NE",931 +2016-08-01,"Electric Power Consumption","Hawaii","HI",NA +2016-08-01,"Electric Power Consumption","Florida","FL",120692 +2016-08-01,"Electric Power Consumption","South Carolina","SC",14823 +2016-08-01,"Electric Power Consumption","Illinois","IL",19713 +2016-08-01,"Electric Power Consumption","Wisconsin","WI",14518 +2016-08-01,"Electric Power Consumption","Montana","MT",636 +2016-08-01,"Electric Power Consumption","Connecticut","CT",12376 +2016-08-01,"Electric Power Consumption","Idaho","ID",3547 +2016-08-01,"Electric Power Consumption","Arkansas","AR",16253 +2016-08-01,"Electric Power Consumption","Utah","UT",6195 +2016-08-01,"Electric Power Consumption","Kansas","KS",2759 +2016-08-01,"Electric Power Consumption","North Dakota","ND",1397 +2016-08-01,"Electric Power Consumption","Louisiana","LA",31944 +2016-08-01,"Electric Power Consumption","Rhode Island","RI",5705 +2016-08-01,"Electric Power Consumption","Oklahoma","OK",29834 +2016-08-01,"Electric Power Consumption","Nevada","NV",21862 +2016-08-01,"Electric Power Consumption","Virginia","VA",38312 +2016-08-01,"Electric Power Consumption","Texas","TX",174678 +2016-08-01,"Electric Power Consumption","Minnesota","MN",10175 +2016-08-01,"Electric Power Consumption","West Virginia","WV",680 +2016-08-01,"Electric Power Consumption","Tennessee","TN",10416 +2016-08-01,"Electric Power Consumption","California","CA",78970 +2016-08-01,"Electric Power Consumption","Alabama","AL",43070 +2016-08-01,"Electric Power Consumption","Oregon","OR",14200 +2016-08-01,"Electric Power Consumption","Massachusetts","MA",21402 +2016-08-01,"Electric Power Consumption","U.S.","U.S.",1151236 +2016-08-01,"Electric Power Consumption","North Carolina","NC",30193 +2016-08-01,"Electric Power Consumption","Missouri","MO",6692 +2016-08-01,"Electric Power Consumption","Maine","ME",3554 +2016-08-01,"Electric Power Consumption","Mississippi","MS",37750 +2016-08-01,"Electric Power Consumption","Kentucky","KY",7452 +2016-08-01,"Electric Power Consumption","Ohio","OH",22905 +2016-08-01,"Electric Power Consumption","New Hampshire","NH",4582 +2016-08-01,"Electric Power Consumption","Arizona","AZ",36031 +2016-08-01,"Electric Power Consumption","Georgia","GA",41343 +2016-08-01,"Industrial Consumption","Nebraska","NE",9161 +2016-08-01,"Industrial Consumption","New Hampshire","NH",587 +2016-08-01,"Industrial Consumption","North Carolina","NC",8374 +2016-08-01,"Industrial Consumption","Hawaii","HI",9 +2016-08-01,"Industrial Consumption","Washington","WA",5964 +2016-08-01,"Industrial Consumption","Arizona","AZ",1386 +2016-08-01,"Industrial Consumption","Utah","UT",2735 +2016-08-01,"Industrial Consumption","New York","NY",5835 +2016-08-01,"Industrial Consumption","Alabama","AL",14876 +2016-08-01,"Industrial Consumption","Texas","TX",143182 +2016-08-01,"Industrial Consumption","Connecticut","CT",1733 +2016-08-01,"Industrial Consumption","Illinois","IL",17490 +2016-08-01,"Industrial Consumption","U.S.","U.S.",627541 +2016-08-01,"Industrial Consumption","Nevada","NV",1438 +2016-08-01,"Industrial Consumption","Mississippi","MS",9571 +2016-08-01,"Industrial Consumption","Tennessee","TN",9638 +2016-08-01,"Industrial Consumption","North Dakota","ND",2013 +2016-08-01,"Industrial Consumption","Louisiana","LA",87364 +2016-08-01,"Industrial Consumption","Colorado","CO",5245 +2016-08-01,"Industrial Consumption","Ohio","OH",18882 +2016-08-01,"Industrial Consumption","New Mexico","NM",1209 +2016-08-01,"Industrial Consumption","Kentucky","KY",8561 +2016-08-01,"Industrial Consumption","Georgia","GA",11715 +2016-08-01,"Industrial Consumption","Maryland","MD",1230 +2016-08-01,"Industrial Consumption","Vermont","VT",140 +2016-08-01,"Industrial Consumption","Wyoming","WY",4304 +2016-08-01,"Industrial Consumption","New Jersey","NJ",5381 +2016-08-01,"Industrial Consumption","Iowa","IA",15025 +2016-08-01,"Industrial Consumption","District of Columbia","DC",0 +2016-08-01,"Industrial Consumption","Kansas","KS",12061 +2016-08-01,"Industrial Consumption","South Carolina","SC",6901 +2016-08-01,"Industrial Consumption","Virginia","VA",7432 +2016-08-01,"Industrial Consumption","Minnesota","MN",12081 +2016-08-01,"Industrial Consumption","Idaho","ID",2252 +2016-08-01,"Industrial Consumption","Indiana","IN",27964 +2016-08-01,"Industrial Consumption","Delaware","DE",2573 +2016-08-01,"Industrial Consumption","Rhode Island","RI",662 +2016-08-01,"Industrial Consumption","Montana","MT",1639 +2016-08-01,"Industrial Consumption","South Dakota","SD",3662 +2016-08-01,"Industrial Consumption","Arkansas","AR",7042 +2016-08-01,"Industrial Consumption","West Virginia","WV",2586 +2016-08-01,"Industrial Consumption","Wisconsin","WI",10067 +2016-08-01,"Industrial Consumption","Florida","FL",8430 +2016-08-01,"Industrial Consumption","Alaska","AK",261 +2016-08-01,"Industrial Consumption","Massachusetts","MA",2402 +2016-08-01,"Industrial Consumption","Oklahoma","OK",15755 +2016-08-01,"Industrial Consumption","Missouri","MO",4299 +2016-08-01,"Industrial Consumption","Pennsylvania","PA",16265 +2016-08-01,"Industrial Consumption","Oregon","OR",4334 +2016-08-01,"Industrial Consumption","Maine","ME",1584 +2016-08-01,"Industrial Consumption","California","CA",72768 +2016-08-01,"Industrial Consumption","Michigan","MI",11474 +2016-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",130037 +2016-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",55109 +2016-08-01,"Residential Consumption","South Dakota","SD",209 +2016-08-01,"Residential Consumption","Georgia","GA",3830 +2016-08-01,"Residential Consumption","Kansas","KS",990 +2016-08-01,"Residential Consumption","Oklahoma","OK",1175 +2016-08-01,"Residential Consumption","Missouri","MO",1611 +2016-08-01,"Residential Consumption","Hawaii","HI",45 +2016-08-01,"Residential Consumption","New Jersey","NJ",4313 +2016-08-01,"Residential Consumption","Montana","MT",405 +2016-08-01,"Residential Consumption","California","CA",18613 +2016-08-01,"Residential Consumption","Alabama","AL",646 +2016-08-01,"Residential Consumption","New York","NY",9267 +2016-08-01,"Residential Consumption","Nevada","NV",1208 +2016-08-01,"Residential Consumption","Indiana","IN",2201 +2016-08-01,"Residential Consumption","North Dakota","ND",175 +2016-08-01,"Residential Consumption","Massachusetts","MA",2281 +2016-08-01,"Residential Consumption","Washington","WA",1776 +2016-08-01,"Residential Consumption","Delaware","DE",155 +2016-08-01,"Residential Consumption","Alaska","AK",534 +2016-08-01,"Residential Consumption","Texas","TX",5380 +2016-08-01,"Residential Consumption","Ohio","OH",4818 +2016-08-01,"Residential Consumption","North Carolina","NC",1045 +2016-08-01,"Residential Consumption","Iowa","IA",1052 +2016-08-01,"Residential Consumption","Connecticut","CT",897 +2016-08-01,"Residential Consumption","Wisconsin","WI",2124 +2016-08-01,"Residential Consumption","Virginia","VA",1376 +2016-08-01,"Residential Consumption","Maryland","MD",1345 +2016-08-01,"Residential Consumption","Minnesota","MN",2497 +2016-08-01,"Residential Consumption","Idaho","ID",498 +2016-08-01,"Residential Consumption","Wyoming","WY",259 +2016-08-01,"Residential Consumption","U.S.","U.S.",100455 +2016-08-01,"Residential Consumption","Illinois","IL",7463 +2016-08-01,"Residential Consumption","Vermont","VT",77 +2016-08-01,"Residential Consumption","Tennessee","TN",926 +2016-08-01,"Residential Consumption","West Virginia","WV",323 +2016-08-01,"Residential Consumption","South Carolina","SC",484 +2016-08-01,"Residential Consumption","Arkansas","AR",545 +2016-08-01,"Residential Consumption","Louisiana","LA",1247 +2016-08-01,"Residential Consumption","Nebraska","NE",665 +2016-08-01,"Residential Consumption","Pennsylvania","PA",3943 +2016-08-01,"Residential Consumption","New Mexico","NM",775 +2016-08-01,"Residential Consumption","Maine","ME",44 +2016-08-01,"Residential Consumption","Florida","FL",683 +2016-08-01,"Residential Consumption","New Hampshire","NH",129 +2016-08-01,"Residential Consumption","Arizona","AZ",1031 +2016-08-01,"Residential Consumption","Rhode Island","RI",236 +2016-08-01,"Residential Consumption","Oregon","OR",622 +2016-08-01,"Residential Consumption","Mississippi","MS",553 +2016-08-01,"Residential Consumption","Utah","UT",1366 +2016-08-01,"Residential Consumption","Michigan","MI",4898 +2016-08-01,"Residential Consumption","District of Columbia","DC",211 +2016-08-01,"Residential Consumption","Kentucky","KY",774 +2016-08-01,"Residential Consumption","Colorado","CO",2736 +2016-08-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-08-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-08-01,"Vehicle Fuel Consumption","Oregon","OR",20 +2016-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-08-01,"Vehicle Fuel Consumption","Florida","FL",52 +2016-08-01,"Vehicle Fuel Consumption","Texas","TX",328 +2016-08-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-08-01,"Vehicle Fuel Consumption","Georgia","GA",79 +2016-08-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-08-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-08-01,"Vehicle Fuel Consumption","Kentucky","KY",11 +2016-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",31 +2016-08-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-08-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-08-01,"Vehicle Fuel Consumption","North Carolina","NC",18 +2016-08-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-08-01,"Vehicle Fuel Consumption","Utah","UT",26 +2016-08-01,"Vehicle Fuel Consumption","Tennessee","TN",25 +2016-08-01,"Vehicle Fuel Consumption","Kansas","KS",16 +2016-08-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-08-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-08-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2016-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",44 +2016-08-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-08-01,"Vehicle Fuel Consumption","California","CA",1617 +2016-08-01,"Vehicle Fuel Consumption","Ohio","OH",73 +2016-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2016-08-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2016-08-01,"Vehicle Fuel Consumption","Colorado","CO",38 +2016-08-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-08-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",3560 +2016-08-01,"Vehicle Fuel Consumption","Washington","WA",42 +2016-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-08-01,"Vehicle Fuel Consumption","New York","NY",324 +2016-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",42 +2016-08-01,"Vehicle Fuel Consumption","Nevada","NV",160 +2016-08-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",81 +2016-08-01,"Vehicle Fuel Consumption","Arizona","AZ",209 +2016-08-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-08-01,"Vehicle Fuel Consumption","Missouri","MO",22 +2016-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-08-01,"Vehicle Fuel Consumption","Illinois","IL",40 +2016-09-01,"Commercial Consumption","North Dakota","ND",356 +2016-09-01,"Commercial Consumption","Minnesota","MN",2948 +2016-09-01,"Commercial Consumption","Kansas","KS",1640 +2016-09-01,"Commercial Consumption","Nevada","NV",1836 +2016-09-01,"Commercial Consumption","Louisiana","LA",1902 +2016-09-01,"Commercial Consumption","Virginia","VA",2938 +2016-09-01,"Commercial Consumption","Wisconsin","WI",3140 +2016-09-01,"Commercial Consumption","Georgia","GA",2086 +2016-09-01,"Commercial Consumption","Alaska","AK",866 +2016-09-01,"Commercial Consumption","District of Columbia","DC",675 +2016-09-01,"Commercial Consumption","Wyoming","WY",556 +2016-09-01,"Commercial Consumption","Montana","MT",934 +2016-09-01,"Commercial Consumption","Arkansas","AR",2732 +2016-09-01,"Commercial Consumption","Washington","WA",2518 +2016-09-01,"Commercial Consumption","Pennsylvania","PA",4845 +2016-09-01,"Commercial Consumption","New Hampshire","NH",234 +2016-09-01,"Commercial Consumption","Rhode Island","RI",233 +2016-09-01,"Commercial Consumption","Hawaii","HI",212 +2016-09-01,"Commercial Consumption","New York","NY",14980 +2016-09-01,"Commercial Consumption","Mississippi","MS",988 +2016-09-01,"Commercial Consumption","Indiana","IN",2719 +2016-09-01,"Commercial Consumption","Illinois","IL",8283 +2016-09-01,"Commercial Consumption","North Carolina","NC",2792 +2016-09-01,"Commercial Consumption","Utah","UT",1358 +2016-09-01,"Commercial Consumption","New Mexico","NM",1170 +2016-09-01,"Commercial Consumption","Kentucky","KY",1176 +2016-09-01,"Commercial Consumption","Florida","FL",4549 +2016-09-01,"Commercial Consumption","Ohio","OH",4897 +2016-09-01,"Commercial Consumption","California","CA",16696 +2016-09-01,"Commercial Consumption","West Virginia","WV",999 +2016-09-01,"Commercial Consumption","South Dakota","SD",349 +2016-09-01,"Commercial Consumption","New Jersey","NJ",7339 +2016-09-01,"Commercial Consumption","Iowa","IA",2053 +2016-09-01,"Commercial Consumption","Delaware","DE",596 +2016-09-01,"Commercial Consumption","South Carolina","SC",1284 +2016-09-01,"Commercial Consumption","Colorado","CO",1812 +2016-09-01,"Commercial Consumption","Oregon","OR",1071 +2016-09-01,"Commercial Consumption","Oklahoma","OK",1619 +2016-09-01,"Commercial Consumption","Missouri","MO",1981 +2016-09-01,"Commercial Consumption","Maine","ME",291 +2016-09-01,"Commercial Consumption","Texas","TX",9892 +2016-09-01,"Commercial Consumption","Maryland","MD",3228 +2016-09-01,"Commercial Consumption","Vermont","VT",353 +2016-09-01,"Commercial Consumption","Connecticut","CT",2467 +2016-09-01,"Commercial Consumption","Alabama","AL",1029 +2016-09-01,"Commercial Consumption","Nebraska","NE",954 +2016-09-01,"Commercial Consumption","Michigan","MI",5363 +2016-09-01,"Commercial Consumption","Massachusetts","MA",4249 +2016-09-01,"Commercial Consumption","U.S.","U.S.",142031 +2016-09-01,"Commercial Consumption","Idaho","ID",811 +2016-09-01,"Commercial Consumption","Arizona","AZ",1984 +2016-09-01,"Commercial Consumption","Tennessee","TN",2049 +2016-09-01,"Delivered to Consumers","Delaware","DE",8778 +2016-09-01,"Delivered to Consumers","Alaska","AK",4284 +2016-09-01,"Delivered to Consumers","Tennessee","TN",21312 +2016-09-01,"Delivered to Consumers","Pennsylvania","PA",71165 +2016-09-01,"Delivered to Consumers","New Hampshire","NH",4928 +2016-09-01,"Delivered to Consumers","Minnesota","MN",19712 +2016-09-01,"Delivered to Consumers","West Virginia","WV",5206 +2016-09-01,"Delivered to Consumers","Vermont","VT",596 +2016-09-01,"Delivered to Consumers","New York","NY",75139 +2016-09-01,"Delivered to Consumers","Idaho","ID",6813 +2016-09-01,"Delivered to Consumers","Connecticut","CT",15162 +2016-09-01,"Delivered to Consumers","Alabama","AL",56306 +2016-09-01,"Delivered to Consumers","Mississippi","MS",46512 +2016-09-01,"Delivered to Consumers","Missouri","MO",13071 +2016-09-01,"Delivered to Consumers","Nevada","NV",22053 +2016-09-01,"Delivered to Consumers","Maine","ME",3763 +2016-09-01,"Delivered to Consumers","Georgia","GA",49244 +2016-09-01,"Delivered to Consumers","U.S.","U.S.",1774412 +2016-09-01,"Delivered to Consumers","Illinois","IL",47408 +2016-09-01,"Delivered to Consumers","Arkansas","AR",19062 +2016-09-01,"Delivered to Consumers","Massachusetts","MA",23309 +2016-09-01,"Delivered to Consumers","California","CA",171347 +2016-09-01,"Delivered to Consumers","New Jersey","NJ",46989 +2016-09-01,"Delivered to Consumers","Washington","WA",21829 +2016-09-01,"Delivered to Consumers","Wyoming","WY",4986 +2016-09-01,"Delivered to Consumers","South Dakota","SD",4671 +2016-09-01,"Delivered to Consumers","Montana","MT",3906 +2016-09-01,"Delivered to Consumers","Maryland","MD",11207 +2016-09-01,"Delivered to Consumers","North Carolina","NC",35766 +2016-09-01,"Delivered to Consumers","Colorado","CO",17151 +2016-09-01,"Delivered to Consumers","Ohio","OH",47202 +2016-09-01,"Delivered to Consumers","Wisconsin","WI",23371 +2016-09-01,"Delivered to Consumers","Florida","FL",122388 +2016-09-01,"Delivered to Consumers","Utah","UT",10750 +2016-09-01,"Delivered to Consumers","Kansas","KS",13872 +2016-09-01,"Delivered to Consumers","Kentucky","KY",15565 +2016-09-01,"Delivered to Consumers","Virginia","VA",40093 +2016-09-01,"Delivered to Consumers","Louisiana","LA",116316 +2016-09-01,"Delivered to Consumers","Arizona","AZ",33491 +2016-09-01,"Delivered to Consumers","District of Columbia","DC",956 +2016-09-01,"Delivered to Consumers","Hawaii","HI",267 +2016-09-01,"Delivered to Consumers","Michigan","MI",42019 +2016-09-01,"Delivered to Consumers","Iowa","IA",18988 +2016-09-01,"Delivered to Consumers","Nebraska","NE",9561 +2016-09-01,"Delivered to Consumers","Texas","TX",296870 +2016-09-01,"Delivered to Consumers","South Carolina","SC",22621 +2016-09-01,"Delivered to Consumers","North Dakota","ND",4345 +2016-09-01,"Delivered to Consumers","New Mexico","NM",10345 +2016-09-01,"Delivered to Consumers","Indiana","IN",45236 +2016-09-01,"Delivered to Consumers","Rhode Island","RI",5803 +2016-09-01,"Delivered to Consumers","Oklahoma","OK",42837 +2016-09-01,"Delivered to Consumers","Oregon","OR",19838 +2016-09-01,"Electric Power Consumption","Washington","WA",10306 +2016-09-01,"Electric Power Consumption","New Jersey","NJ",29728 +2016-09-01,"Electric Power Consumption","Oklahoma","OK",26003 +2016-09-01,"Electric Power Consumption","Minnesota","MN",3281 +2016-09-01,"Electric Power Consumption","Missouri","MO",4917 +2016-09-01,"Electric Power Consumption","Montana","MT",501 +2016-09-01,"Electric Power Consumption","Maryland","MD",5521 +2016-09-01,"Electric Power Consumption","Indiana","IN",13083 +2016-09-01,"Electric Power Consumption","Florida","FL",108909 +2016-09-01,"Electric Power Consumption","Alaska","AK",2150 +2016-09-01,"Electric Power Consumption","Wyoming","WY",62 +2016-09-01,"Electric Power Consumption","Iowa","IA",1408 +2016-09-01,"Electric Power Consumption","Vermont","VT",3 +2016-09-01,"Electric Power Consumption","Hawaii","HI",NA +2016-09-01,"Electric Power Consumption","Connecticut","CT",10069 +2016-09-01,"Electric Power Consumption","Colorado","CO",6920 +2016-09-01,"Electric Power Consumption","Arkansas","AR",9071 +2016-09-01,"Electric Power Consumption","Kansas","KS",2743 +2016-09-01,"Electric Power Consumption","Wisconsin","WI",7893 +2016-09-01,"Electric Power Consumption","Nevada","NV",17165 +2016-09-01,"Electric Power Consumption","Tennessee","TN",8880 +2016-09-01,"Electric Power Consumption","U.S.","U.S.",915286 +2016-09-01,"Electric Power Consumption","South Dakota","SD",546 +2016-09-01,"Electric Power Consumption","Kentucky","KY",5408 +2016-09-01,"Electric Power Consumption","New Hampshire","NH",3909 +2016-09-01,"Electric Power Consumption","Delaware","DE",5359 +2016-09-01,"Electric Power Consumption","Alabama","AL",40185 +2016-09-01,"Electric Power Consumption","Louisiana","LA",28667 +2016-09-01,"Electric Power Consumption","South Carolina","SC",13967 +2016-09-01,"Electric Power Consumption","New York","NY",44875 +2016-09-01,"Electric Power Consumption","Illinois","IL",12773 +2016-09-01,"Electric Power Consumption","Michigan","MI",17814 +2016-09-01,"Electric Power Consumption","West Virginia","WV",1134 +2016-09-01,"Electric Power Consumption","North Dakota","ND",909 +2016-09-01,"Electric Power Consumption","New Mexico","NM",7003 +2016-09-01,"Electric Power Consumption","Texas","TX",144410 +2016-09-01,"Electric Power Consumption","Utah","UT",4590 +2016-09-01,"Electric Power Consumption","Nebraska","NE",257 +2016-09-01,"Electric Power Consumption","Maine","ME",1829 +2016-09-01,"Electric Power Consumption","Idaho","ID",2641 +2016-09-01,"Electric Power Consumption","Rhode Island","RI",4459 +2016-09-01,"Electric Power Consumption","Oregon","OR",13161 +2016-09-01,"Electric Power Consumption","Massachusetts","MA",14109 +2016-09-01,"Electric Power Consumption","Mississippi","MS",36271 +2016-09-01,"Electric Power Consumption","Georgia","GA",31766 +2016-09-01,"Electric Power Consumption","California","CA",64331 +2016-09-01,"Electric Power Consumption","Virginia","VA",28121 +2016-09-01,"Electric Power Consumption","Pennsylvania","PA",47232 +2016-09-01,"Electric Power Consumption","North Carolina","NC",24168 +2016-09-01,"Electric Power Consumption","Ohio","OH",18196 +2016-09-01,"Electric Power Consumption","Arizona","AZ",28584 +2016-09-01,"Industrial Consumption","Ohio","OH",19318 +2016-09-01,"Industrial Consumption","Maine","ME",1586 +2016-09-01,"Industrial Consumption","West Virginia","WV",2710 +2016-09-01,"Industrial Consumption","New Hampshire","NH",623 +2016-09-01,"Industrial Consumption","Washington","WA",6414 +2016-09-01,"Industrial Consumption","U.S.","U.S.",603868 +2016-09-01,"Industrial Consumption","California","CA",68838 +2016-09-01,"Industrial Consumption","Wisconsin","WI",9927 +2016-09-01,"Industrial Consumption","Tennessee","TN",9338 +2016-09-01,"Industrial Consumption","Iowa","IA",14196 +2016-09-01,"Industrial Consumption","Indiana","IN",27079 +2016-09-01,"Industrial Consumption","North Dakota","ND",2862 +2016-09-01,"Industrial Consumption","Arizona","AZ",1576 +2016-09-01,"Industrial Consumption","Vermont","VT",153 +2016-09-01,"Industrial Consumption","New Jersey","NJ",5188 +2016-09-01,"Industrial Consumption","Minnesota","MN",10872 +2016-09-01,"Industrial Consumption","Georgia","GA",11521 +2016-09-01,"Industrial Consumption","Missouri","MO",4627 +2016-09-01,"Industrial Consumption","New Mexico","NM",1232 +2016-09-01,"Industrial Consumption","Nebraska","NE",7636 +2016-09-01,"Industrial Consumption","Idaho","ID",2659 +2016-09-01,"Industrial Consumption","Florida","FL",8153 +2016-09-01,"Industrial Consumption","Kentucky","KY",8199 +2016-09-01,"Industrial Consumption","North Carolina","NC",7701 +2016-09-01,"Industrial Consumption","Montana","MT",1840 +2016-09-01,"Industrial Consumption","Massachusetts","MA",2481 +2016-09-01,"Industrial Consumption","Pennsylvania","PA",14881 +2016-09-01,"Industrial Consumption","Oregon","OR",4473 +2016-09-01,"Industrial Consumption","Mississippi","MS",8675 +2016-09-01,"Industrial Consumption","Arkansas","AR",6647 +2016-09-01,"Industrial Consumption","Michigan","MI",12156 +2016-09-01,"Industrial Consumption","Delaware","DE",2659 +2016-09-01,"Industrial Consumption","Rhode Island","RI",742 +2016-09-01,"Industrial Consumption","Hawaii","HI",7 +2016-09-01,"Industrial Consumption","Colorado","CO",5165 +2016-09-01,"Industrial Consumption","South Dakota","SD",3537 +2016-09-01,"Industrial Consumption","Maryland","MD",1021 +2016-09-01,"Industrial Consumption","Oklahoma","OK",13868 +2016-09-01,"Industrial Consumption","Louisiana","LA",84510 +2016-09-01,"Industrial Consumption","Kansas","KS",8334 +2016-09-01,"Industrial Consumption","Utah","UT",2995 +2016-09-01,"Industrial Consumption","New York","NY",5591 +2016-09-01,"Industrial Consumption","Nevada","NV",1509 +2016-09-01,"Industrial Consumption","Texas","TX",136898 +2016-09-01,"Industrial Consumption","Virginia","VA",7531 +2016-09-01,"Industrial Consumption","Wyoming","WY",4013 +2016-09-01,"Industrial Consumption","Connecticut","CT",1663 +2016-09-01,"Industrial Consumption","Alaska","AK",436 +2016-09-01,"Industrial Consumption","Alabama","AL",14459 +2016-09-01,"Industrial Consumption","South Carolina","SC",6862 +2016-09-01,"Industrial Consumption","Illinois","IL",18509 +2016-09-01,"Industrial Consumption","District of Columbia","DC",0 +2016-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",125008 +2016-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",48332 +2016-09-01,"Residential Consumption","Iowa","IA",1330 +2016-09-01,"Residential Consumption","Indiana","IN",2346 +2016-09-01,"Residential Consumption","Florida","FL",727 +2016-09-01,"Residential Consumption","Idaho","ID",690 +2016-09-01,"Residential Consumption","Connecticut","CT",962 +2016-09-01,"Residential Consumption","Nebraska","NE",706 +2016-09-01,"Residential Consumption","Pennsylvania","PA",4167 +2016-09-01,"Residential Consumption","Maine","ME",56 +2016-09-01,"Residential Consumption","New Jersey","NJ",4706 +2016-09-01,"Residential Consumption","Kansas","KS",1139 +2016-09-01,"Residential Consumption","Texas","TX",5353 +2016-09-01,"Residential Consumption","Rhode Island","RI",360 +2016-09-01,"Residential Consumption","Mississippi","MS",572 +2016-09-01,"Residential Consumption","Louisiana","LA",1222 +2016-09-01,"Residential Consumption","Nevada","NV",1387 +2016-09-01,"Residential Consumption","Montana","MT",631 +2016-09-01,"Residential Consumption","Delaware","DE",165 +2016-09-01,"Residential Consumption","Virginia","VA",1450 +2016-09-01,"Residential Consumption","Minnesota","MN",2599 +2016-09-01,"Residential Consumption","District of Columbia","DC",202 +2016-09-01,"Residential Consumption","New Hampshire","NH",153 +2016-09-01,"Residential Consumption","Alabama","AL",620 +2016-09-01,"Residential Consumption","Utah","UT",1781 +2016-09-01,"Residential Consumption","Michigan","MI",6654 +2016-09-01,"Residential Consumption","Maryland","MD",1425 +2016-09-01,"Residential Consumption","Kentucky","KY",772 +2016-09-01,"Residential Consumption","Colorado","CO",3217 +2016-09-01,"Residential Consumption","Washington","WA",2551 +2016-09-01,"Residential Consumption","Missouri","MO",1526 +2016-09-01,"Residential Consumption","California","CA",19918 +2016-09-01,"Residential Consumption","Wyoming","WY",353 +2016-09-01,"Residential Consumption","U.S.","U.S.",109782 +2016-09-01,"Residential Consumption","Illinois","IL",7804 +2016-09-01,"Residential Consumption","Tennessee","TN",1020 +2016-09-01,"Residential Consumption","South Dakota","SD",239 +2016-09-01,"Residential Consumption","North Dakota","ND",218 +2016-09-01,"Residential Consumption","Alaska","AK",831 +2016-09-01,"Residential Consumption","New York","NY",9380 +2016-09-01,"Residential Consumption","Oregon","OR",1114 +2016-09-01,"Residential Consumption","Hawaii","HI",49 +2016-09-01,"Residential Consumption","Wisconsin","WI",2403 +2016-09-01,"Residential Consumption","Georgia","GA",3795 +2016-09-01,"Residential Consumption","New Mexico","NM",933 +2016-09-01,"Residential Consumption","Arkansas","AR",609 +2016-09-01,"Residential Consumption","Arizona","AZ",1144 +2016-09-01,"Residential Consumption","South Carolina","SC",502 +2016-09-01,"Residential Consumption","Ohio","OH",4721 +2016-09-01,"Residential Consumption","North Carolina","NC",1088 +2016-09-01,"Residential Consumption","Vermont","VT",87 +2016-09-01,"Residential Consumption","Massachusetts","MA",2440 +2016-09-01,"Residential Consumption","Oklahoma","OK",1305 +2016-09-01,"Residential Consumption","West Virginia","WV",360 +2016-09-01,"Vehicle Fuel Consumption","Kentucky","KY",10 +2016-09-01,"Vehicle Fuel Consumption","Utah","UT",25 +2016-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",41 +2016-09-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",3445 +2016-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-09-01,"Vehicle Fuel Consumption","New York","NY",313 +2016-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-09-01,"Vehicle Fuel Consumption","Kansas","KS",15 +2016-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",43 +2016-09-01,"Vehicle Fuel Consumption","Nevada","NV",155 +2016-09-01,"Vehicle Fuel Consumption","Texas","TX",318 +2016-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",27 +2016-09-01,"Vehicle Fuel Consumption","California","CA",1564 +2016-09-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-09-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-09-01,"Vehicle Fuel Consumption","Florida","FL",50 +2016-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-09-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-09-01,"Vehicle Fuel Consumption","Colorado","CO",37 +2016-09-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2016-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-09-01,"Vehicle Fuel Consumption","Oregon","OR",19 +2016-09-01,"Vehicle Fuel Consumption","Illinois","IL",39 +2016-09-01,"Vehicle Fuel Consumption","Arizona","AZ",203 +2016-09-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-09-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-09-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-09-01,"Vehicle Fuel Consumption","Georgia","GA",77 +2016-09-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-09-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-09-01,"Vehicle Fuel Consumption","Ohio","OH",70 +2016-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-09-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-09-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-09-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-09-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-09-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-09-01,"Vehicle Fuel Consumption","Washington","WA",41 +2016-09-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-09-01,"Vehicle Fuel Consumption","Virginia","VA",54 +2016-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",79 +2016-09-01,"Vehicle Fuel Consumption","Missouri","MO",21 +2016-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",30 +2016-09-01,"Vehicle Fuel Consumption","Michigan","MI",33 +2016-09-01,"Vehicle Fuel Consumption","North Carolina","NC",17 +2016-09-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-10-01,"Commercial Consumption","Washington","WA",3829 +2016-10-01,"Commercial Consumption","Minnesota","MN",5391 +2016-10-01,"Commercial Consumption","Oklahoma","OK",1878 +2016-10-01,"Commercial Consumption","Missouri","MO",2951 +2016-10-01,"Commercial Consumption","Ohio","OH",8563 +2016-10-01,"Commercial Consumption","Arizona","AZ",2197 +2016-10-01,"Commercial Consumption","Michigan","MI",8229 +2016-10-01,"Commercial Consumption","U.S.","U.S.",191437 +2016-10-01,"Commercial Consumption","Vermont","VT",495 +2016-10-01,"Commercial Consumption","Arkansas","AR",3024 +2016-10-01,"Commercial Consumption","Nevada","NV",2154 +2016-10-01,"Commercial Consumption","Indiana","IN",4328 +2016-10-01,"Commercial Consumption","Illinois","IL",12700 +2016-10-01,"Commercial Consumption","North Dakota","ND",795 +2016-10-01,"Commercial Consumption","Oregon","OR",1949 +2016-10-01,"Commercial Consumption","Pennsylvania","PA",8461 +2016-10-01,"Commercial Consumption","Massachusetts","MA",7159 +2016-10-01,"Commercial Consumption","South Dakota","SD",590 +2016-10-01,"Commercial Consumption","New Jersey","NJ",7835 +2016-10-01,"Commercial Consumption","Maine","ME",523 +2016-10-01,"Commercial Consumption","Maryland","MD",4184 +2016-10-01,"Commercial Consumption","Kansas","KS",2056 +2016-10-01,"Commercial Consumption","Florida","FL",4706 +2016-10-01,"Commercial Consumption","Idaho","ID",1266 +2016-10-01,"Commercial Consumption","Delaware","DE",862 +2016-10-01,"Commercial Consumption","Louisiana","LA",2094 +2016-10-01,"Commercial Consumption","Wyoming","WY",851 +2016-10-01,"Commercial Consumption","Colorado","CO",2823 +2016-10-01,"Commercial Consumption","Virginia","VA",4447 +2016-10-01,"Commercial Consumption","New Hampshire","NH",365 +2016-10-01,"Commercial Consumption","Georgia","GA",2574 +2016-10-01,"Commercial Consumption","Hawaii","HI",201 +2016-10-01,"Commercial Consumption","District of Columbia","DC",898 +2016-10-01,"Commercial Consumption","South Carolina","SC",1588 +2016-10-01,"Commercial Consumption","Kentucky","KY",1698 +2016-10-01,"Commercial Consumption","Texas","TX",10547 +2016-10-01,"Commercial Consumption","Alaska","AK",1400 +2016-10-01,"Commercial Consumption","Connecticut","CT",3180 +2016-10-01,"Commercial Consumption","West Virginia","WV",1350 +2016-10-01,"Commercial Consumption","North Carolina","NC",3360 +2016-10-01,"Commercial Consumption","Wisconsin","WI",4882 +2016-10-01,"Commercial Consumption","Mississippi","MS",1097 +2016-10-01,"Commercial Consumption","Tennessee","TN",2548 +2016-10-01,"Commercial Consumption","Utah","UT",1971 +2016-10-01,"Commercial Consumption","New Mexico","NM",1534 +2016-10-01,"Commercial Consumption","Montana","MT",1556 +2016-10-01,"Commercial Consumption","California","CA",17303 +2016-10-01,"Commercial Consumption","Alabama","AL",1502 +2016-10-01,"Commercial Consumption","Rhode Island","RI",572 +2016-10-01,"Commercial Consumption","Iowa","IA",2969 +2016-10-01,"Commercial Consumption","New York","NY",20743 +2016-10-01,"Commercial Consumption","Nebraska","NE",1259 +2016-10-01,"Delivered to Consumers","Delaware","DE",9243 +2016-10-01,"Delivered to Consumers","Michigan","MI",53571 +2016-10-01,"Delivered to Consumers","Connecticut","CT",16616 +2016-10-01,"Delivered to Consumers","Massachusetts","MA",25040 +2016-10-01,"Delivered to Consumers","Maine","ME",4114 +2016-10-01,"Delivered to Consumers","U.S.","U.S.",1748897 +2016-10-01,"Delivered to Consumers","New York","NY",77822 +2016-10-01,"Delivered to Consumers","Idaho","ID",7195 +2016-10-01,"Delivered to Consumers","Wisconsin","WI",26981 +2016-10-01,"Delivered to Consumers","Nebraska","NE",10815 +2016-10-01,"Delivered to Consumers","Colorado","CO",21022 +2016-10-01,"Delivered to Consumers","Florida","FL",111434 +2016-10-01,"Delivered to Consumers","New Mexico","NM",10978 +2016-10-01,"Delivered to Consumers","Indiana","IN",45894 +2016-10-01,"Delivered to Consumers","Vermont","VT",831 +2016-10-01,"Delivered to Consumers","South Dakota","SD",5174 +2016-10-01,"Delivered to Consumers","Pennsylvania","PA",74230 +2016-10-01,"Delivered to Consumers","Texas","TX",266076 +2016-10-01,"Delivered to Consumers","Nevada","NV",21065 +2016-10-01,"Delivered to Consumers","Arizona","AZ",26285 +2016-10-01,"Delivered to Consumers","New Hampshire","NH",3620 +2016-10-01,"Delivered to Consumers","Illinois","IL",59457 +2016-10-01,"Delivered to Consumers","Oklahoma","OK",37475 +2016-10-01,"Delivered to Consumers","Ohio","OH",54740 +2016-10-01,"Delivered to Consumers","Iowa","IA",22457 +2016-10-01,"Delivered to Consumers","Virginia","VA",31929 +2016-10-01,"Delivered to Consumers","Louisiana","LA",111926 +2016-10-01,"Delivered to Consumers","Georgia","GA",46157 +2016-10-01,"Delivered to Consumers","North Dakota","ND",6428 +2016-10-01,"Delivered to Consumers","District of Columbia","DC",1316 +2016-10-01,"Delivered to Consumers","Wyoming","WY",6274 +2016-10-01,"Delivered to Consumers","West Virginia","WV",6870 +2016-10-01,"Delivered to Consumers","Kansas","KS",14011 +2016-10-01,"Delivered to Consumers","Alabama","AL",49098 +2016-10-01,"Delivered to Consumers","Mississippi","MS",37292 +2016-10-01,"Delivered to Consumers","Missouri","MO",13079 +2016-10-01,"Delivered to Consumers","Washington","WA",21200 +2016-10-01,"Delivered to Consumers","Rhode Island","RI",5136 +2016-10-01,"Delivered to Consumers","Tennessee","TN",20393 +2016-10-01,"Delivered to Consumers","Arkansas","AR",19818 +2016-10-01,"Delivered to Consumers","California","CA",168407 +2016-10-01,"Delivered to Consumers","New Jersey","NJ",49463 +2016-10-01,"Delivered to Consumers","Utah","UT",12131 +2016-10-01,"Delivered to Consumers","Hawaii","HI",252 +2016-10-01,"Delivered to Consumers","Kentucky","KY",16707 +2016-10-01,"Delivered to Consumers","North Carolina","NC",32259 +2016-10-01,"Delivered to Consumers","Oregon","OR",17451 +2016-10-01,"Delivered to Consumers","Minnesota","MN",26289 +2016-10-01,"Delivered to Consumers","Montana","MT",5218 +2016-10-01,"Delivered to Consumers","Maryland","MD",11489 +2016-10-01,"Delivered to Consumers","Alaska","AK",5708 +2016-10-01,"Delivered to Consumers","South Carolina","SC",20463 +2016-10-01,"Electric Power Consumption","Colorado","CO",5992 +2016-10-01,"Electric Power Consumption","Oklahoma","OK",18832 +2016-10-01,"Electric Power Consumption","Kansas","KS",1253 +2016-10-01,"Electric Power Consumption","Nebraska","NE",452 +2016-10-01,"Electric Power Consumption","Mississippi","MS",27237 +2016-10-01,"Electric Power Consumption","New Jersey","NJ",27406 +2016-10-01,"Electric Power Consumption","Illinois","IL",11723 +2016-10-01,"Electric Power Consumption","Nevada","NV",15312 +2016-10-01,"Electric Power Consumption","New Hampshire","NH",2362 +2016-10-01,"Electric Power Consumption","Michigan","MI",17156 +2016-10-01,"Electric Power Consumption","Ohio","OH",14351 +2016-10-01,"Electric Power Consumption","Delaware","DE",5359 +2016-10-01,"Electric Power Consumption","Connecticut","CT",9718 +2016-10-01,"Electric Power Consumption","Washington","WA",4641 +2016-10-01,"Electric Power Consumption","Virginia","VA",18088 +2016-10-01,"Electric Power Consumption","Idaho","ID",1344 +2016-10-01,"Electric Power Consumption","Texas","TX",111464 +2016-10-01,"Electric Power Consumption","Wisconsin","WI",5109 +2016-10-01,"Electric Power Consumption","California","CA",63461 +2016-10-01,"Electric Power Consumption","Alaska","AK",2055 +2016-10-01,"Electric Power Consumption","Louisiana","LA",22901 +2016-10-01,"Electric Power Consumption","Arkansas","AR",9016 +2016-10-01,"Electric Power Consumption","Minnesota","MN",3309 +2016-10-01,"Electric Power Consumption","West Virginia","WV",1632 +2016-10-01,"Electric Power Consumption","Tennessee","TN",6424 +2016-10-01,"Electric Power Consumption","U.S.","U.S.",743796 +2016-10-01,"Electric Power Consumption","Hawaii","HI",NA +2016-10-01,"Electric Power Consumption","North Dakota","ND",1809 +2016-10-01,"Electric Power Consumption","Maryland","MD",3346 +2016-10-01,"Electric Power Consumption","Arizona","AZ",20783 +2016-10-01,"Electric Power Consumption","Rhode Island","RI",2955 +2016-10-01,"Electric Power Consumption","Utah","UT",4025 +2016-10-01,"Electric Power Consumption","Oregon","OR",7778 +2016-10-01,"Electric Power Consumption","Pennsylvania","PA",39539 +2016-10-01,"Electric Power Consumption","Wyoming","WY",45 +2016-10-01,"Electric Power Consumption","Iowa","IA",1116 +2016-10-01,"Electric Power Consumption","South Dakota","SD",499 +2016-10-01,"Electric Power Consumption","Montana","MT",404 +2016-10-01,"Electric Power Consumption","Georgia","GA",26055 +2016-10-01,"Electric Power Consumption","Alabama","AL",31645 +2016-10-01,"Electric Power Consumption","New Mexico","NM",6901 +2016-10-01,"Electric Power Consumption","Massachusetts","MA",9112 +2016-10-01,"Electric Power Consumption","Vermont","VT",2 +2016-10-01,"Electric Power Consumption","Maine","ME",1766 +2016-10-01,"Electric Power Consumption","Kentucky","KY",4709 +2016-10-01,"Electric Power Consumption","Indiana","IN",12625 +2016-10-01,"Electric Power Consumption","South Carolina","SC",10979 +2016-10-01,"Electric Power Consumption","New York","NY",32031 +2016-10-01,"Electric Power Consumption","North Carolina","NC",18534 +2016-10-01,"Electric Power Consumption","Missouri","MO",3143 +2016-10-01,"Electric Power Consumption","Florida","FL",97396 +2016-10-01,"Industrial Consumption","Maryland","MD",1302 +2016-10-01,"Industrial Consumption","Washington","WA",7137 +2016-10-01,"Industrial Consumption","Oregon","OR",4927 +2016-10-01,"Industrial Consumption","Texas","TX",137229 +2016-10-01,"Industrial Consumption","South Carolina","SC",7159 +2016-10-01,"Industrial Consumption","Virginia","VA",6455 +2016-10-01,"Industrial Consumption","West Virginia","WV",3002 +2016-10-01,"Industrial Consumption","Florida","FL",8459 +2016-10-01,"Industrial Consumption","Michigan","MI",13227 +2016-10-01,"Industrial Consumption","Massachusetts","MA",3312 +2016-10-01,"Industrial Consumption","Colorado","CO",6109 +2016-10-01,"Industrial Consumption","South Dakota","SD",3565 +2016-10-01,"Industrial Consumption","Utah","UT",3130 +2016-10-01,"Industrial Consumption","Pennsylvania","PA",17368 +2016-10-01,"Industrial Consumption","Nevada","NV",1629 +2016-10-01,"Industrial Consumption","Maine","ME",1692 +2016-10-01,"Industrial Consumption","Vermont","VT",185 +2016-10-01,"Industrial Consumption","New Jersey","NJ",5411 +2016-10-01,"Industrial Consumption","New Hampshire","NH",653 +2016-10-01,"Industrial Consumption","Iowa","IA",16354 +2016-10-01,"Industrial Consumption","Connecticut","CT",1745 +2016-10-01,"Industrial Consumption","Georgia","GA",12638 +2016-10-01,"Industrial Consumption","Oklahoma","OK",15060 +2016-10-01,"Industrial Consumption","Ohio","OH",21355 +2016-10-01,"Industrial Consumption","Arizona","AZ",1664 +2016-10-01,"Industrial Consumption","California","CA",63793 +2016-10-01,"Industrial Consumption","Alabama","AL",15062 +2016-10-01,"Industrial Consumption","Tennessee","TN",9986 +2016-10-01,"Industrial Consumption","North Dakota","ND",3194 +2016-10-01,"Industrial Consumption","Montana","MT",1875 +2016-10-01,"Industrial Consumption","New Mexico","NM",1321 +2016-10-01,"Industrial Consumption","Nebraska","NE",8066 +2016-10-01,"Industrial Consumption","Wisconsin","WI",11393 +2016-10-01,"Industrial Consumption","District of Columbia","DC",0 +2016-10-01,"Industrial Consumption","Kansas","KS",9143 +2016-10-01,"Industrial Consumption","U.S.","U.S.",622720 +2016-10-01,"Industrial Consumption","New York","NY",6423 +2016-10-01,"Industrial Consumption","Mississippi","MS",8326 +2016-10-01,"Industrial Consumption","Wyoming","WY",4648 +2016-10-01,"Industrial Consumption","Idaho","ID",3117 +2016-10-01,"Industrial Consumption","Indiana","IN",24640 +2016-10-01,"Industrial Consumption","Missouri","MO",4457 +2016-10-01,"Industrial Consumption","Arkansas","AR",7040 +2016-10-01,"Industrial Consumption","Minnesota","MN",12022 +2016-10-01,"Industrial Consumption","Alaska","AK",538 +2016-10-01,"Industrial Consumption","Hawaii","HI",7 +2016-10-01,"Industrial Consumption","Louisiana","LA",85526 +2016-10-01,"Industrial Consumption","Kentucky","KY",9002 +2016-10-01,"Industrial Consumption","Illinois","IL",20311 +2016-10-01,"Industrial Consumption","Delaware","DE",2742 +2016-10-01,"Industrial Consumption","Rhode Island","RI",694 +2016-10-01,"Industrial Consumption","North Carolina","NC",8628 +2016-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",128669 +2016-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",47637 +2016-10-01,"Residential Consumption","Hawaii","HI",45 +2016-10-01,"Residential Consumption","Wisconsin","WI",5590 +2016-10-01,"Residential Consumption","Nevada","NV",1810 +2016-10-01,"Residential Consumption","Indiana","IN",4292 +2016-10-01,"Residential Consumption","Kansas","KS",1543 +2016-10-01,"Residential Consumption","Delaware","DE",281 +2016-10-01,"Residential Consumption","Arizona","AZ",1433 +2016-10-01,"Residential Consumption","Alabama","AL",875 +2016-10-01,"Residential Consumption","Iowa","IA",2016 +2016-10-01,"Residential Consumption","Tennessee","TN",1410 +2016-10-01,"Residential Consumption","Michigan","MI",14925 +2016-10-01,"Residential Consumption","District of Columbia","DC",337 +2016-10-01,"Residential Consumption","New Hampshire","NH",231 +2016-10-01,"Residential Consumption","Washington","WA",5551 +2016-10-01,"Residential Consumption","Wyoming","WY",727 +2016-10-01,"Residential Consumption","Illinois","IL",14683 +2016-10-01,"Residential Consumption","Mississippi","MS",625 +2016-10-01,"Residential Consumption","Utah","UT",2979 +2016-10-01,"Residential Consumption","Minnesota","MN",5555 +2016-10-01,"Residential Consumption","New Mexico","NM",1214 +2016-10-01,"Residential Consumption","Oregon","OR",2776 +2016-10-01,"Residential Consumption","Louisiana","LA",1388 +2016-10-01,"Residential Consumption","Connecticut","CT",1971 +2016-10-01,"Residential Consumption","Virginia","VA",2883 +2016-10-01,"Residential Consumption","Maine","ME",133 +2016-10-01,"Residential Consumption","Alaska","AK",1713 +2016-10-01,"Residential Consumption","North Carolina","NC",1719 +2016-10-01,"Residential Consumption","Vermont","VT",149 +2016-10-01,"Residential Consumption","Florida","FL",820 +2016-10-01,"Residential Consumption","Idaho","ID",1457 +2016-10-01,"Residential Consumption","New Jersey","NJ",8782 +2016-10-01,"Residential Consumption","West Virginia","WV",884 +2016-10-01,"Residential Consumption","U.S.","U.S.",187385 +2016-10-01,"Residential Consumption","New York","NY",18301 +2016-10-01,"Residential Consumption","Texas","TX",6508 +2016-10-01,"Residential Consumption","Ohio","OH",10397 +2016-10-01,"Residential Consumption","Massachusetts","MA",5427 +2016-10-01,"Residential Consumption","Arkansas","AR",734 +2016-10-01,"Residential Consumption","South Carolina","SC",730 +2016-10-01,"Residential Consumption","South Dakota","SD",520 +2016-10-01,"Residential Consumption","Georgia","GA",4812 +2016-10-01,"Residential Consumption","Colorado","CO",6060 +2016-10-01,"Residential Consumption","Oklahoma","OK",1660 +2016-10-01,"Residential Consumption","California","CA",22234 +2016-10-01,"Residential Consumption","Rhode Island","RI",906 +2016-10-01,"Residential Consumption","Nebraska","NE",1031 +2016-10-01,"Residential Consumption","Maryland","MD",2645 +2016-10-01,"Residential Consumption","Pennsylvania","PA",8820 +2016-10-01,"Residential Consumption","North Dakota","ND",629 +2016-10-01,"Residential Consumption","Montana","MT",1383 +2016-10-01,"Residential Consumption","Kentucky","KY",1288 +2016-10-01,"Residential Consumption","Missouri","MO",2507 +2016-10-01,"Vehicle Fuel Consumption","Washington","WA",42 +2016-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",42 +2016-10-01,"Vehicle Fuel Consumption","Florida","FL",52 +2016-10-01,"Vehicle Fuel Consumption","Missouri","MO",22 +2016-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-10-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-10-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",44 +2016-10-01,"Vehicle Fuel Consumption","Arizona","AZ",209 +2016-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2016-10-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",81 +2016-10-01,"Vehicle Fuel Consumption","Texas","TX",328 +2016-10-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-10-01,"Vehicle Fuel Consumption","Georgia","GA",79 +2016-10-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",3560 +2016-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-10-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",31 +2016-10-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-10-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2016-10-01,"Vehicle Fuel Consumption","North Carolina","NC",18 +2016-10-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2016-10-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-10-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-10-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-10-01,"Vehicle Fuel Consumption","California","CA",1617 +2016-10-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-10-01,"Vehicle Fuel Consumption","Utah","UT",26 +2016-10-01,"Vehicle Fuel Consumption","New York","NY",324 +2016-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-10-01,"Vehicle Fuel Consumption","Colorado","CO",38 +2016-10-01,"Vehicle Fuel Consumption","Illinois","IL",40 +2016-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-10-01,"Vehicle Fuel Consumption","Kentucky","KY",11 +2016-10-01,"Vehicle Fuel Consumption","Ohio","OH",73 +2016-10-01,"Vehicle Fuel Consumption","Nevada","NV",160 +2016-10-01,"Vehicle Fuel Consumption","Kansas","KS",16 +2016-10-01,"Vehicle Fuel Consumption","Oregon","OR",20 +2016-10-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-10-01,"Vehicle Fuel Consumption","Tennessee","TN",25 +2016-10-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-10-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-10-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-11-01,"Commercial Consumption","Washington","WA",4816 +2016-11-01,"Commercial Consumption","Wisconsin","WI",7421 +2016-11-01,"Commercial Consumption","South Dakota","SD",964 +2016-11-01,"Commercial Consumption","Kansas","KS",2687 +2016-11-01,"Commercial Consumption","Indiana","IN",6368 +2016-11-01,"Commercial Consumption","Virginia","VA",7390 +2016-11-01,"Commercial Consumption","New Jersey","NJ",11716 +2016-11-01,"Commercial Consumption","Maryland","MD",6916 +2016-11-01,"Commercial Consumption","Vermont","VT",575 +2016-11-01,"Commercial Consumption","Mississippi","MS",1610 +2016-11-01,"Commercial Consumption","Louisiana","LA",2449 +2016-11-01,"Commercial Consumption","District of Columbia","DC",1577 +2016-11-01,"Commercial Consumption","West Virginia","WV",2079 +2016-11-01,"Commercial Consumption","North Carolina","NC",5301 +2016-11-01,"Commercial Consumption","Minnesota","MN",8031 +2016-11-01,"Commercial Consumption","Utah","UT",4221 +2016-11-01,"Commercial Consumption","Kentucky","KY",2991 +2016-11-01,"Commercial Consumption","Ohio","OH",14607 +2016-11-01,"Commercial Consumption","Iowa","IA",4181 +2016-11-01,"Commercial Consumption","Alabama","AL",2270 +2016-11-01,"Commercial Consumption","Nevada","NV",2639 +2016-11-01,"Commercial Consumption","Wyoming","WY",1253 +2016-11-01,"Commercial Consumption","South Carolina","SC",2424 +2016-11-01,"Commercial Consumption","Idaho","ID",1658 +2016-11-01,"Commercial Consumption","Oregon","OR",2520 +2016-11-01,"Commercial Consumption","Oklahoma","OK",2879 +2016-11-01,"Commercial Consumption","Pennsylvania","PA",13683 +2016-11-01,"Commercial Consumption","U.S.","U.S.",280600 +2016-11-01,"Commercial Consumption","Florida","FL",5252 +2016-11-01,"Commercial Consumption","Alaska","AK",1986 +2016-11-01,"Commercial Consumption","New York","NY",27357 +2016-11-01,"Commercial Consumption","North Dakota","ND",1034 +2016-11-01,"Commercial Consumption","Missouri","MO",5473 +2016-11-01,"Commercial Consumption","Massachusetts","MA",10251 +2016-11-01,"Commercial Consumption","Maine","ME",771 +2016-11-01,"Commercial Consumption","Rhode Island","RI",1019 +2016-11-01,"Commercial Consumption","Hawaii","HI",205 +2016-11-01,"Commercial Consumption","California","CA",22313 +2016-11-01,"Commercial Consumption","Tennessee","TN",4716 +2016-11-01,"Commercial Consumption","Colorado","CO",5113 +2016-11-01,"Commercial Consumption","New Mexico","NM",3332 +2016-11-01,"Commercial Consumption","Texas","TX",12834 +2016-11-01,"Commercial Consumption","Georgia","GA",4604 +2016-11-01,"Commercial Consumption","Arkansas","AR",4035 +2016-11-01,"Commercial Consumption","Nebraska","NE",2339 +2016-11-01,"Commercial Consumption","Arizona","AZ",2925 +2016-11-01,"Commercial Consumption","Michigan","MI",13187 +2016-11-01,"Commercial Consumption","Illinois","IL",17391 +2016-11-01,"Commercial Consumption","New Hampshire","NH",892 +2016-11-01,"Commercial Consumption","Montana","MT",2238 +2016-11-01,"Commercial Consumption","Connecticut","CT",4847 +2016-11-01,"Commercial Consumption","Delaware","DE",1259 +2016-11-01,"Delivered to Consumers","South Dakota","SD",6425 +2016-11-01,"Delivered to Consumers","Connecticut","CT",21341 +2016-11-01,"Delivered to Consumers","Oregon","OR",19098 +2016-11-01,"Delivered to Consumers","Maine","ME",3526 +2016-11-01,"Delivered to Consumers","Louisiana","LA",112264 +2016-11-01,"Delivered to Consumers","New Mexico","NM",12939 +2016-11-01,"Delivered to Consumers","Wyoming","WY",7434 +2016-11-01,"Delivered to Consumers","Maryland","MD",15327 +2016-11-01,"Delivered to Consumers","Alaska","AK",7263 +2016-11-01,"Delivered to Consumers","Idaho","ID",8280 +2016-11-01,"Delivered to Consumers","Tennessee","TN",23353 +2016-11-01,"Delivered to Consumers","Ohio","OH",77338 +2016-11-01,"Delivered to Consumers","Nebraska","NE",13702 +2016-11-01,"Delivered to Consumers","Colorado","CO",29725 +2016-11-01,"Delivered to Consumers","Texas","TX",257158 +2016-11-01,"Delivered to Consumers","Minnesota","MN",34989 +2016-11-01,"Delivered to Consumers","Montana","MT",6799 +2016-11-01,"Delivered to Consumers","Michigan","MI",72547 +2016-11-01,"Delivered to Consumers","Virginia","VA",42442 +2016-11-01,"Delivered to Consumers","South Carolina","SC",26745 +2016-11-01,"Delivered to Consumers","Nevada","NV",22879 +2016-11-01,"Delivered to Consumers","Florida","FL",92004 +2016-11-01,"Delivered to Consumers","District of Columbia","DC",2596 +2016-11-01,"Delivered to Consumers","U.S.","U.S.",1979957 +2016-11-01,"Delivered to Consumers","Vermont","VT",1102 +2016-11-01,"Delivered to Consumers","Wisconsin","WI",36869 +2016-11-01,"Delivered to Consumers","North Dakota","ND",6154 +2016-11-01,"Delivered to Consumers","Delaware","DE",8114 +2016-11-01,"Delivered to Consumers","Illinois","IL",80793 +2016-11-01,"Delivered to Consumers","Rhode Island","RI",6361 +2016-11-01,"Delivered to Consumers","Hawaii","HI",258 +2016-11-01,"Delivered to Consumers","Kentucky","KY",21120 +2016-11-01,"Delivered to Consumers","Pennsylvania","PA",92607 +2016-11-01,"Delivered to Consumers","North Carolina","NC",44312 +2016-11-01,"Delivered to Consumers","Missouri","MO",19699 +2016-11-01,"Delivered to Consumers","Utah","UT",17339 +2016-11-01,"Delivered to Consumers","Kansas","KS",18746 +2016-11-01,"Delivered to Consumers","New Jersey","NJ",54218 +2016-11-01,"Delivered to Consumers","Georgia","GA",51394 +2016-11-01,"Delivered to Consumers","Indiana","IN",61099 +2016-11-01,"Delivered to Consumers","West Virginia","WV",8027 +2016-11-01,"Delivered to Consumers","New York","NY",100694 +2016-11-01,"Delivered to Consumers","Oklahoma","OK",43616 +2016-11-01,"Delivered to Consumers","Arkansas","AR",24243 +2016-11-01,"Delivered to Consumers","Arizona","AZ",19219 +2016-11-01,"Delivered to Consumers","New Hampshire","NH",5400 +2016-11-01,"Delivered to Consumers","Iowa","IA",28057 +2016-11-01,"Delivered to Consumers","Alabama","AL",50142 +2016-11-01,"Delivered to Consumers","Mississippi","MS",34246 +2016-11-01,"Delivered to Consumers","Massachusetts","MA",32838 +2016-11-01,"Delivered to Consumers","California","CA",173278 +2016-11-01,"Delivered to Consumers","Washington","WA",23838 +2016-11-01,"Electric Power Consumption","Virginia","VA",20924 +2016-11-01,"Electric Power Consumption","Arkansas","AR",10822 +2016-11-01,"Electric Power Consumption","Michigan","MI",17274 +2016-11-01,"Electric Power Consumption","Maine","ME",1119 +2016-11-01,"Electric Power Consumption","Indiana","IN",15085 +2016-11-01,"Electric Power Consumption","Georgia","GA",23983 +2016-11-01,"Electric Power Consumption","Idaho","ID",778 +2016-11-01,"Electric Power Consumption","Pennsylvania","PA",39356 +2016-11-01,"Electric Power Consumption","Ohio","OH",15769 +2016-11-01,"Electric Power Consumption","Connecticut","CT",9848 +2016-11-01,"Electric Power Consumption","Alaska","AK",2469 +2016-11-01,"Electric Power Consumption","Iowa","IA",843 +2016-11-01,"Electric Power Consumption","Missouri","MO",2225 +2016-11-01,"Electric Power Consumption","Kentucky","KY",4224 +2016-11-01,"Electric Power Consumption","Alabama","AL",30551 +2016-11-01,"Electric Power Consumption","New Jersey","NJ",19267 +2016-11-01,"Electric Power Consumption","South Carolina","SC",13842 +2016-11-01,"Electric Power Consumption","Oklahoma","OK",21300 +2016-11-01,"Electric Power Consumption","Oregon","OR",7806 +2016-11-01,"Electric Power Consumption","Kansas","KS",1383 +2016-11-01,"Electric Power Consumption","West Virginia","WV",361 +2016-11-01,"Electric Power Consumption","Wisconsin","WI",6597 +2016-11-01,"Electric Power Consumption","Nevada","NV",15676 +2016-11-01,"Electric Power Consumption","Wyoming","WY",106 +2016-11-01,"Electric Power Consumption","Vermont","VT",2 +2016-11-01,"Electric Power Consumption","Arizona","AZ",12132 +2016-11-01,"Electric Power Consumption","Washington","WA",4450 +2016-11-01,"Electric Power Consumption","Rhode Island","RI",2904 +2016-11-01,"Electric Power Consumption","Utah","UT",3529 +2016-11-01,"Electric Power Consumption","Massachusetts","MA",7743 +2016-11-01,"Electric Power Consumption","U.S.","U.S.",662046 +2016-11-01,"Electric Power Consumption","Mississippi","MS",21348 +2016-11-01,"Electric Power Consumption","New Hampshire","NH",3078 +2016-11-01,"Electric Power Consumption","North Dakota","ND",1237 +2016-11-01,"Electric Power Consumption","Maryland","MD",459 +2016-11-01,"Electric Power Consumption","New York","NY",27930 +2016-11-01,"Electric Power Consumption","Tennessee","TN",3689 +2016-11-01,"Electric Power Consumption","Montana","MT",313 +2016-11-01,"Electric Power Consumption","Delaware","DE",3488 +2016-11-01,"Electric Power Consumption","California","CA",48998 +2016-11-01,"Electric Power Consumption","Texas","TX",94746 +2016-11-01,"Electric Power Consumption","Minnesota","MN",3322 +2016-11-01,"Electric Power Consumption","South Dakota","SD",607 +2016-11-01,"Electric Power Consumption","Nebraska","NE",679 +2016-11-01,"Electric Power Consumption","Hawaii","HI",NA +2016-11-01,"Electric Power Consumption","New Mexico","NM",5138 +2016-11-01,"Electric Power Consumption","Louisiana","LA",19759 +2016-11-01,"Electric Power Consumption","Colorado","CO",5795 +2016-11-01,"Electric Power Consumption","Illinois","IL",8346 +2016-11-01,"Electric Power Consumption","North Carolina","NC",23750 +2016-11-01,"Electric Power Consumption","Florida","FL",76993 +2016-11-01,"Industrial Consumption","North Dakota","ND",3016 +2016-11-01,"Industrial Consumption","Massachusetts","MA",4191 +2016-11-01,"Industrial Consumption","Louisiana","LA",88053 +2016-11-01,"Industrial Consumption","New Mexico","NM",1393 +2016-11-01,"Industrial Consumption","Maine","ME",1407 +2016-11-01,"Industrial Consumption","Arkansas","AR",7552 +2016-11-01,"Industrial Consumption","Minnesota","MN",13777 +2016-11-01,"Industrial Consumption","Iowa","IA",18423 +2016-11-01,"Industrial Consumption","Connecticut","CT",2213 +2016-11-01,"Industrial Consumption","Wisconsin","WI",12478 +2016-11-01,"Industrial Consumption","New Hampshire","NH",722 +2016-11-01,"Industrial Consumption","District of Columbia","DC",0 +2016-11-01,"Industrial Consumption","Hawaii","HI",6 +2016-11-01,"Industrial Consumption","South Dakota","SD",3952 +2016-11-01,"Industrial Consumption","Kansas","KS",9908 +2016-11-01,"Industrial Consumption","Mississippi","MS",9931 +2016-11-01,"Industrial Consumption","Alabama","AL",15519 +2016-11-01,"Industrial Consumption","Delaware","DE",2573 +2016-11-01,"Industrial Consumption","Missouri","MO",5256 +2016-11-01,"Industrial Consumption","Oregon","OR",4759 +2016-11-01,"Industrial Consumption","South Carolina","SC",7852 +2016-11-01,"Industrial Consumption","Wyoming","WY",4937 +2016-11-01,"Industrial Consumption","New Jersey","NJ",4500 +2016-11-01,"Industrial Consumption","Idaho","ID",3171 +2016-11-01,"Industrial Consumption","Alaska","AK",493 +2016-11-01,"Industrial Consumption","Washington","WA",6687 +2016-11-01,"Industrial Consumption","U.S.","U.S.",654119 +2016-11-01,"Industrial Consumption","Pennsylvania","PA",19496 +2016-11-01,"Industrial Consumption","New York","NY",7103 +2016-11-01,"Industrial Consumption","Nevada","NV",1517 +2016-11-01,"Industrial Consumption","Tennessee","TN",10532 +2016-11-01,"Industrial Consumption","Florida","FL",8626 +2016-11-01,"Industrial Consumption","Illinois","IL",22155 +2016-11-01,"Industrial Consumption","Georgia","GA",12606 +2016-11-01,"Industrial Consumption","Maryland","MD",1147 +2016-11-01,"Industrial Consumption","Oklahoma","OK",15596 +2016-11-01,"Industrial Consumption","Colorado","CO",7221 +2016-11-01,"Industrial Consumption","Utah","UT",3201 +2016-11-01,"Industrial Consumption","Texas","TX",140148 +2016-11-01,"Industrial Consumption","Vermont","VT",199 +2016-11-01,"Industrial Consumption","Indiana","IN",28293 +2016-11-01,"Industrial Consumption","North Carolina","NC",8939 +2016-11-01,"Industrial Consumption","Arizona","AZ",1646 +2016-11-01,"Industrial Consumption","Michigan","MI",14564 +2016-11-01,"Industrial Consumption","Rhode Island","RI",677 +2016-11-01,"Industrial Consumption","Montana","MT",2132 +2016-11-01,"Industrial Consumption","Ohio","OH",23434 +2016-11-01,"Industrial Consumption","California","CA",62917 +2016-11-01,"Industrial Consumption","Nebraska","NE",8304 +2016-11-01,"Industrial Consumption","Virginia","VA",7546 +2016-11-01,"Industrial Consumption","West Virginia","WV",3319 +2016-11-01,"Industrial Consumption","Kentucky","KY",10031 +2016-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",125558 +2016-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",53930 +2016-11-01,"Residential Consumption","Tennessee","TN",4391 +2016-11-01,"Residential Consumption","South Dakota","SD",901 +2016-11-01,"Residential Consumption","Minnesota","MN",9848 +2016-11-01,"Residential Consumption","Massachusetts","MA",10623 +2016-11-01,"Residential Consumption","Montana","MT",2115 +2016-11-01,"Residential Consumption","Arizona","AZ",2313 +2016-11-01,"Residential Consumption","Alabama","AL",1790 +2016-11-01,"Residential Consumption","Alaska","AK",2313 +2016-11-01,"Residential Consumption","New York","NY",37991 +2016-11-01,"Residential Consumption","Texas","TX",9112 +2016-11-01,"Residential Consumption","Georgia","GA",10125 +2016-11-01,"Residential Consumption","New Mexico","NM",3068 +2016-11-01,"Residential Consumption","Indiana","IN",11343 +2016-11-01,"Residential Consumption","Idaho","ID",2661 +2016-11-01,"Residential Consumption","U.S.","U.S.",379746 +2016-11-01,"Residential Consumption","Mississippi","MS",1350 +2016-11-01,"Residential Consumption","Wisconsin","WI",10367 +2016-11-01,"Residential Consumption","Vermont","VT",326 +2016-11-01,"Residential Consumption","Utah","UT",6363 +2016-11-01,"Residential Consumption","Michigan","MI",27488 +2016-11-01,"Residential Consumption","Pennsylvania","PA",20030 +2016-11-01,"Residential Consumption","Missouri","MO",6723 +2016-11-01,"Residential Consumption","Rhode Island","RI",1753 +2016-11-01,"Residential Consumption","Oregon","OR",3994 +2016-11-01,"Residential Consumption","Louisiana","LA",1988 +2016-11-01,"Residential Consumption","Virginia","VA",6527 +2016-11-01,"Residential Consumption","Maine","ME",229 +2016-11-01,"Residential Consumption","New Jersey","NJ",18709 +2016-11-01,"Residential Consumption","Kansas","KS",4753 +2016-11-01,"Residential Consumption","Wyoming","WY",1135 +2016-11-01,"Residential Consumption","Illinois","IL",32863 +2016-11-01,"Residential Consumption","Connecticut","CT",4432 +2016-11-01,"Residential Consumption","Nevada","NV",2891 +2016-11-01,"Residential Consumption","District of Columbia","DC",941 +2016-11-01,"Residential Consumption","North Dakota","ND",867 +2016-11-01,"Residential Consumption","New Hampshire","NH",701 +2016-11-01,"Residential Consumption","Colorado","CO",11559 +2016-11-01,"Residential Consumption","Washington","WA",7845 +2016-11-01,"Residential Consumption","North Carolina","NC",6306 +2016-11-01,"Residential Consumption","Hawaii","HI",47 +2016-11-01,"Residential Consumption","Maryland","MD",6792 +2016-11-01,"Residential Consumption","Florida","FL",1082 +2016-11-01,"Residential Consumption","Arkansas","AR",1830 +2016-11-01,"Residential Consumption","Oklahoma","OK",3798 +2016-11-01,"Residential Consumption","Delaware","DE",794 +2016-11-01,"Residential Consumption","West Virginia","WV",2265 +2016-11-01,"Residential Consumption","South Carolina","SC",2620 +2016-11-01,"Residential Consumption","Ohio","OH",23458 +2016-11-01,"Residential Consumption","Iowa","IA",4607 +2016-11-01,"Residential Consumption","Nebraska","NE",2374 +2016-11-01,"Residential Consumption","Kentucky","KY",3863 +2016-11-01,"Residential Consumption","California","CA",37485 +2016-11-01,"Vehicle Fuel Consumption","Virginia","VA",54 +2016-11-01,"Vehicle Fuel Consumption","Ohio","OH",70 +2016-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-11-01,"Vehicle Fuel Consumption","Florida","FL",50 +2016-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-11-01,"Vehicle Fuel Consumption","Michigan","MI",33 +2016-11-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-11-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2016-11-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-11-01,"Vehicle Fuel Consumption","Nevada","NV",155 +2016-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",79 +2016-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-11-01,"Vehicle Fuel Consumption","Missouri","MO",21 +2016-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-11-01,"Vehicle Fuel Consumption","Oregon","OR",19 +2016-11-01,"Vehicle Fuel Consumption","California","CA",1564 +2016-11-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-11-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",43 +2016-11-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-11-01,"Vehicle Fuel Consumption","Illinois","IL",39 +2016-11-01,"Vehicle Fuel Consumption","Utah","UT",25 +2016-11-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2016-11-01,"Vehicle Fuel Consumption","Arizona","AZ",203 +2016-11-01,"Vehicle Fuel Consumption","Colorado","CO",37 +2016-11-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-11-01,"Vehicle Fuel Consumption","Washington","WA",41 +2016-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-11-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-11-01,"Vehicle Fuel Consumption","New York","NY",313 +2016-11-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-11-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-11-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-11-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-11-01,"Vehicle Fuel Consumption","North Carolina","NC",17 +2016-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",3445 +2016-11-01,"Vehicle Fuel Consumption","Kentucky","KY",10 +2016-11-01,"Vehicle Fuel Consumption","Kansas","KS",15 +2016-11-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-11-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",41 +2016-11-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-11-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",30 +2016-11-01,"Vehicle Fuel Consumption","Texas","TX",318 +2016-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",27 +2016-11-01,"Vehicle Fuel Consumption","Georgia","GA",77 +2016-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-12-01,"Commercial Consumption","Missouri","MO",10063 +2016-12-01,"Commercial Consumption","Florida","FL",5912 +2016-12-01,"Commercial Consumption","Alaska","AK",2277 +2016-12-01,"Commercial Consumption","New York","NY",40052 +2016-12-01,"Commercial Consumption","Washington","WA",8699 +2016-12-01,"Commercial Consumption","North Carolina","NC",7468 +2016-12-01,"Commercial Consumption","Oklahoma","OK",6770 +2016-12-01,"Commercial Consumption","Wisconsin","WI",14625 +2016-12-01,"Commercial Consumption","New Jersey","NJ",23599 +2016-12-01,"Commercial Consumption","Rhode Island","RI",1843 +2016-12-01,"Commercial Consumption","Idaho","ID",3274 +2016-12-01,"Commercial Consumption","California","CA",28868 +2016-12-01,"Commercial Consumption","Arkansas","AR",6235 +2016-12-01,"Commercial Consumption","Nevada","NV",4003 +2016-12-01,"Commercial Consumption","Louisiana","LA",3405 +2016-12-01,"Commercial Consumption","Wyoming","WY",2256 +2016-12-01,"Commercial Consumption","Oregon","OR",5055 +2016-12-01,"Commercial Consumption","Massachusetts","MA",15614 +2016-12-01,"Commercial Consumption","Georgia","GA",7639 +2016-12-01,"Commercial Consumption","Montana","MT",3947 +2016-12-01,"Commercial Consumption","Kentucky","KY",5920 +2016-12-01,"Commercial Consumption","U.S.","U.S.",462687 +2016-12-01,"Commercial Consumption","Ohio","OH",24175 +2016-12-01,"Commercial Consumption","North Dakota","ND",2344 +2016-12-01,"Commercial Consumption","Minnesota","MN",14792 +2016-12-01,"Commercial Consumption","Maine","ME",1319 +2016-12-01,"Commercial Consumption","Hawaii","HI",210 +2016-12-01,"Commercial Consumption","Alabama","AL",3314 +2016-12-01,"Commercial Consumption","Indiana","IN",13295 +2016-12-01,"Commercial Consumption","Colorado","CO",9068 +2016-12-01,"Commercial Consumption","Utah","UT",7032 +2016-12-01,"Commercial Consumption","New Mexico","NM",3981 +2016-12-01,"Commercial Consumption","Virginia","VA",8363 +2016-12-01,"Commercial Consumption","New Hampshire","NH",1486 +2016-12-01,"Commercial Consumption","Kansas","KS",5714 +2016-12-01,"Commercial Consumption","Vermont","VT",845 +2016-12-01,"Commercial Consumption","Iowa","IA",8367 +2016-12-01,"Commercial Consumption","Mississippi","MS",2369 +2016-12-01,"Commercial Consumption","Pennsylvania","PA",23333 +2016-12-01,"Commercial Consumption","South Dakota","SD",1968 +2016-12-01,"Commercial Consumption","Connecticut","CT",7106 +2016-12-01,"Commercial Consumption","Delaware","DE",1865 +2016-12-01,"Commercial Consumption","Arizona","AZ",4017 +2016-12-01,"Commercial Consumption","District of Columbia","DC",2011 +2016-12-01,"Commercial Consumption","West Virginia","WV",3164 +2016-12-01,"Commercial Consumption","South Carolina","SC",2840 +2016-12-01,"Commercial Consumption","Texas","TX",19848 +2016-12-01,"Commercial Consumption","Maryland","MD",9758 +2016-12-01,"Commercial Consumption","Nebraska","NE",4892 +2016-12-01,"Commercial Consumption","Tennessee","TN",8028 +2016-12-01,"Commercial Consumption","Michigan","MI",24658 +2016-12-01,"Commercial Consumption","Illinois","IL",35004 +2016-12-01,"Delivered to Consumers","Delaware","DE",8466 +2016-12-01,"Delivered to Consumers","Wyoming","WY",10003 +2016-12-01,"Delivered to Consumers","South Dakota","SD",8839 +2016-12-01,"Delivered to Consumers","New York","NY",148559 +2016-12-01,"Delivered to Consumers","Oklahoma","OK",53019 +2016-12-01,"Delivered to Consumers","Arkansas","AR",27817 +2016-12-01,"Delivered to Consumers","Alabama","AL",56229 +2016-12-01,"Delivered to Consumers","Missouri","MO",39957 +2016-12-01,"Delivered to Consumers","Nevada","NV",28689 +2016-12-01,"Delivered to Consumers","Vermont","VT",1619 +2016-12-01,"Delivered to Consumers","Rhode Island","RI",8477 +2016-12-01,"Delivered to Consumers","Kansas","KS",31660 +2016-12-01,"Delivered to Consumers","Michigan","MI",112515 +2016-12-01,"Delivered to Consumers","Iowa","IA",42159 +2016-12-01,"Delivered to Consumers","Connecticut","CT",27095 +2016-12-01,"Delivered to Consumers","New Jersey","NJ",86360 +2016-12-01,"Delivered to Consumers","Georgia","GA",66524 +2016-12-01,"Delivered to Consumers","Utah","UT",28096 +2016-12-01,"Delivered to Consumers","U.S.","U.S.",2665391 +2016-12-01,"Delivered to Consumers","Ohio","OH",113779 +2016-12-01,"Delivered to Consumers","Wisconsin","WI",61918 +2016-12-01,"Delivered to Consumers","Arizona","AZ",20711 +2016-12-01,"Delivered to Consumers","New Mexico","NM",17608 +2016-12-01,"Delivered to Consumers","Indiana","IN",91896 +2016-12-01,"Delivered to Consumers","Tennessee","TN",40547 +2016-12-01,"Delivered to Consumers","Texas","TX",292696 +2016-12-01,"Delivered to Consumers","Maine","ME",4109 +2016-12-01,"Delivered to Consumers","Washington","WA",40216 +2016-12-01,"Delivered to Consumers","North Dakota","ND",7434 +2016-12-01,"Delivered to Consumers","Florida","FL",93522 +2016-12-01,"Delivered to Consumers","Pennsylvania","PA",121330 +2016-12-01,"Delivered to Consumers","North Carolina","NC",51703 +2016-12-01,"Delivered to Consumers","Oregon","OR",31942 +2016-12-01,"Delivered to Consumers","Minnesota","MN",55355 +2016-12-01,"Delivered to Consumers","Illinois","IL",147431 +2016-12-01,"Delivered to Consumers","Hawaii","HI",268 +2016-12-01,"Delivered to Consumers","Idaho","ID",14718 +2016-12-01,"Delivered to Consumers","Kentucky","KY",31721 +2016-12-01,"Delivered to Consumers","Virginia","VA",50358 +2016-12-01,"Delivered to Consumers","Mississippi","MS",44433 +2016-12-01,"Delivered to Consumers","Massachusetts","MA",50315 +2016-12-01,"Delivered to Consumers","New Hampshire","NH",5711 +2016-12-01,"Delivered to Consumers","District of Columbia","DC",4224 +2016-12-01,"Delivered to Consumers","West Virginia","WV",10786 +2016-12-01,"Delivered to Consumers","Montana","MT",10110 +2016-12-01,"Delivered to Consumers","Maryland","MD",25895 +2016-12-01,"Delivered to Consumers","Nebraska","NE",20390 +2016-12-01,"Delivered to Consumers","California","CA",217558 +2016-12-01,"Delivered to Consumers","South Carolina","SC",23350 +2016-12-01,"Delivered to Consumers","Alaska","AK",8236 +2016-12-01,"Delivered to Consumers","Colorado","CO",48093 +2016-12-01,"Delivered to Consumers","Louisiana","LA",120944 +2016-12-01,"Electric Power Consumption","New Mexico","NM",6201 +2016-12-01,"Electric Power Consumption","South Carolina","SC",7162 +2016-12-01,"Electric Power Consumption","Vermont","VT",2 +2016-12-01,"Electric Power Consumption","Connecticut","CT",9504 +2016-12-01,"Electric Power Consumption","Washington","WA",7547 +2016-12-01,"Electric Power Consumption","Idaho","ID",1748 +2016-12-01,"Electric Power Consumption","New York","NY",33317 +2016-12-01,"Electric Power Consumption","Rhode Island","RI",2828 +2016-12-01,"Electric Power Consumption","Massachusetts","MA",10256 +2016-12-01,"Electric Power Consumption","Kansas","KS",1153 +2016-12-01,"Electric Power Consumption","U.S.","U.S.",670787 +2016-12-01,"Electric Power Consumption","North Carolina","NC",21671 +2016-12-01,"Electric Power Consumption","Maine","ME",813 +2016-12-01,"Electric Power Consumption","Kentucky","KY",5391 +2016-12-01,"Electric Power Consumption","Alabama","AL",31015 +2016-12-01,"Electric Power Consumption","Arkansas","AR",7146 +2016-12-01,"Electric Power Consumption","Utah","UT",4438 +2016-12-01,"Electric Power Consumption","Minnesota","MN",2892 +2016-12-01,"Electric Power Consumption","West Virginia","WV",131 +2016-12-01,"Electric Power Consumption","Indiana","IN",15180 +2016-12-01,"Electric Power Consumption","Illinois","IL",8248 +2016-12-01,"Electric Power Consumption","Iowa","IA",951 +2016-12-01,"Electric Power Consumption","Missouri","MO",3732 +2016-12-01,"Electric Power Consumption","Virginia","VA",20971 +2016-12-01,"Electric Power Consumption","New Jersey","NJ",20898 +2016-12-01,"Electric Power Consumption","Wisconsin","WI",6898 +2016-12-01,"Electric Power Consumption","North Dakota","ND",336 +2016-12-01,"Electric Power Consumption","Arizona","AZ",9591 +2016-12-01,"Electric Power Consumption","Alaska","AK",2523 +2016-12-01,"Electric Power Consumption","Oregon","OR",12372 +2016-12-01,"Electric Power Consumption","Michigan","MI",15595 +2016-12-01,"Electric Power Consumption","Pennsylvania","PA",38578 +2016-12-01,"Electric Power Consumption","Wyoming","WY",148 +2016-12-01,"Electric Power Consumption","Florida","FL",76746 +2016-12-01,"Electric Power Consumption","Louisiana","LA",18805 +2016-12-01,"Electric Power Consumption","Colorado","CO",7425 +2016-12-01,"Electric Power Consumption","Tennessee","TN",7932 +2016-12-01,"Electric Power Consumption","Mississippi","MS",27542 +2016-12-01,"Electric Power Consumption","Hawaii","HI",NA +2016-12-01,"Electric Power Consumption","New Hampshire","NH",2200 +2016-12-01,"Electric Power Consumption","Montana","MT",335 +2016-12-01,"Electric Power Consumption","Delaware","DE",2113 +2016-12-01,"Electric Power Consumption","Georgia","GA",25902 +2016-12-01,"Electric Power Consumption","California","CA",54108 +2016-12-01,"Electric Power Consumption","Texas","TX",89011 +2016-12-01,"Electric Power Consumption","Oklahoma","OK",16688 +2016-12-01,"Electric Power Consumption","Nevada","NV",15924 +2016-12-01,"Electric Power Consumption","South Dakota","SD",252 +2016-12-01,"Electric Power Consumption","Nebraska","NE",180 +2016-12-01,"Electric Power Consumption","Ohio","OH",15804 +2016-12-01,"Electric Power Consumption","Maryland","MD",585 +2016-12-01,"Industrial Consumption","South Dakota","SD",4106 +2016-12-01,"Industrial Consumption","U.S.","U.S.",734194 +2016-12-01,"Industrial Consumption","New York","NY",8722 +2016-12-01,"Industrial Consumption","Maine","ME",1528 +2016-12-01,"Industrial Consumption","Wisconsin","WI",16022 +2016-12-01,"Industrial Consumption","Tennessee","TN",12160 +2016-12-01,"Industrial Consumption","Florida","FL",9226 +2016-12-01,"Industrial Consumption","Connecticut","CT",2671 +2016-12-01,"Industrial Consumption","Michigan","MI",18444 +2016-12-01,"Industrial Consumption","Rhode Island","RI",734 +2016-12-01,"Industrial Consumption","North Carolina","NC",9626 +2016-12-01,"Industrial Consumption","Montana","MT",1857 +2016-12-01,"Industrial Consumption","Colorado","CO",9453 +2016-12-01,"Industrial Consumption","Nebraska","NE",8388 +2016-12-01,"Industrial Consumption","Vermont","VT",217 +2016-12-01,"Industrial Consumption","North Dakota","ND",2615 +2016-12-01,"Industrial Consumption","Washington","WA",7901 +2016-12-01,"Industrial Consumption","Indiana","IN",37404 +2016-12-01,"Industrial Consumption","Massachusetts","MA",5214 +2016-12-01,"Industrial Consumption","Louisiana","LA",93894 +2016-12-01,"Industrial Consumption","New Mexico","NM",1524 +2016-12-01,"Industrial Consumption","Oregon","OR",5707 +2016-12-01,"Industrial Consumption","Delaware","DE",2776 +2016-12-01,"Industrial Consumption","Alaska","AK",466 +2016-12-01,"Industrial Consumption","Oklahoma","OK",17713 +2016-12-01,"Industrial Consumption","Nevada","NV",1826 +2016-12-01,"Industrial Consumption","Arkansas","AR",8486 +2016-12-01,"Industrial Consumption","Virginia","VA",7661 +2016-12-01,"Industrial Consumption","Minnesota","MN",16003 +2016-12-01,"Industrial Consumption","Ohio","OH",27736 +2016-12-01,"Industrial Consumption","Arizona","AZ",1914 +2016-12-01,"Industrial Consumption","Utah","UT",3460 +2016-12-01,"Industrial Consumption","South Carolina","SC",7957 +2016-12-01,"Industrial Consumption","West Virginia","WV",3406 +2016-12-01,"Industrial Consumption","New Jersey","NJ",5368 +2016-12-01,"Industrial Consumption","Iowa","IA",20144 +2016-12-01,"Industrial Consumption","Hawaii","HI",6 +2016-12-01,"Industrial Consumption","Missouri","MO",6736 +2016-12-01,"Industrial Consumption","Mississippi","MS",10738 +2016-12-01,"Industrial Consumption","Alabama","AL",17008 +2016-12-01,"Industrial Consumption","Texas","TX",154444 +2016-12-01,"Industrial Consumption","Wyoming","WY",5173 +2016-12-01,"Industrial Consumption","New Hampshire","NH",768 +2016-12-01,"Industrial Consumption","Idaho","ID",3788 +2016-12-01,"Industrial Consumption","Illinois","IL",27068 +2016-12-01,"Industrial Consumption","Georgia","GA",13477 +2016-12-01,"Industrial Consumption","District of Columbia","DC",0 +2016-12-01,"Industrial Consumption","Maryland","MD",1634 +2016-12-01,"Industrial Consumption","Kansas","KS",12773 +2016-12-01,"Industrial Consumption","Pennsylvania","PA",20665 +2016-12-01,"Industrial Consumption","California","CA",66492 +2016-12-01,"Industrial Consumption","Kentucky","KY",11095 +2016-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",128282 +2016-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",72600 +2016-12-01,"Residential Consumption","South Carolina","SC",5384 +2016-12-01,"Residential Consumption","Ohio","OH",45991 +2016-12-01,"Residential Consumption","Vermont","VT",555 +2016-12-01,"Residential Consumption","Michigan","MI",53783 +2016-12-01,"Residential Consumption","Minnesota","MN",21656 +2016-12-01,"Residential Consumption","District of Columbia","DC",2132 +2016-12-01,"Residential Consumption","Alaska","AK",2969 +2016-12-01,"Residential Consumption","Utah","UT",13140 +2016-12-01,"Residential Consumption","Massachusetts","MA",19200 +2016-12-01,"Residential Consumption","New Hampshire","NH",1249 +2016-12-01,"Residential Consumption","Tennessee","TN",12402 +2016-12-01,"Residential Consumption","Virginia","VA",13307 +2016-12-01,"Residential Consumption","Pennsylvania","PA",38711 +2016-12-01,"Residential Consumption","Arkansas","AR",5947 +2016-12-01,"Residential Consumption","Missouri","MO",19405 +2016-12-01,"Residential Consumption","California","CA",66473 +2016-12-01,"Residential Consumption","West Virginia","WV",4083 +2016-12-01,"Residential Consumption","Rhode Island","RI",3064 +2016-12-01,"Residential Consumption","New Jersey","NJ",36467 +2016-12-01,"Residential Consumption","Montana","MT",3972 +2016-12-01,"Residential Consumption","Washington","WA",16027 +2016-12-01,"Residential Consumption","Oklahoma","OK",11803 +2016-12-01,"Residential Consumption","Alabama","AL",4880 +2016-12-01,"Residential Consumption","New York","NY",66144 +2016-12-01,"Residential Consumption","Texas","TX",29065 +2016-12-01,"Residential Consumption","Connecticut","CT",7814 +2016-12-01,"Residential Consumption","Nevada","NV",6777 +2016-12-01,"Residential Consumption","Idaho","ID",5896 +2016-12-01,"Residential Consumption","Colorado","CO",22110 +2016-12-01,"Residential Consumption","Arizona","AZ",4980 +2016-12-01,"Residential Consumption","Oregon","OR",8788 +2016-12-01,"Residential Consumption","Mississippi","MS",3778 +2016-12-01,"Residential Consumption","Hawaii","HI",52 +2016-12-01,"Residential Consumption","South Dakota","SD",2513 +2016-12-01,"Residential Consumption","New Mexico","NM",5893 +2016-12-01,"Residential Consumption","Maine","ME",449 +2016-12-01,"Residential Consumption","North Dakota","ND",2140 +2016-12-01,"Residential Consumption","Kansas","KS",12004 +2016-12-01,"Residential Consumption","U.S.","U.S.",794164 +2016-12-01,"Residential Consumption","Illinois","IL",77071 +2016-12-01,"Residential Consumption","Iowa","IA",12695 +2016-12-01,"Residential Consumption","Nebraska","NE",6924 +2016-12-01,"Residential Consumption","Maryland","MD",13905 +2016-12-01,"Residential Consumption","Georgia","GA",19426 +2016-12-01,"Residential Consumption","Indiana","IN",26006 +2016-12-01,"Residential Consumption","Delaware","DE",1711 +2016-12-01,"Residential Consumption","North Carolina","NC",12920 +2016-12-01,"Residential Consumption","Louisiana","LA",4824 +2016-12-01,"Residential Consumption","Wisconsin","WI",24366 +2016-12-01,"Residential Consumption","Florida","FL",1587 +2016-12-01,"Residential Consumption","Kentucky","KY",9305 +2016-12-01,"Residential Consumption","Wyoming","WY",2424 +2016-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2016-12-01,"Vehicle Fuel Consumption","Utah","UT",26 +2016-12-01,"Vehicle Fuel Consumption","West Virginia","WV",3 +2016-12-01,"Vehicle Fuel Consumption","Alabama","AL",12 +2016-12-01,"Vehicle Fuel Consumption","Florida","FL",52 +2016-12-01,"Vehicle Fuel Consumption","Texas","TX",328 +2016-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2016-12-01,"Vehicle Fuel Consumption","Oregon","OR",20 +2016-12-01,"Vehicle Fuel Consumption","Minnesota","MN",12 +2016-12-01,"Vehicle Fuel Consumption","Alaska","AK",1 +2016-12-01,"Vehicle Fuel Consumption","Connecticut","CT",2 +2016-12-01,"Vehicle Fuel Consumption","Washington","WA",42 +2016-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",44 +2016-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2016-12-01,"Vehicle Fuel Consumption","Arizona","AZ",209 +2016-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",31 +2016-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",8 +2016-12-01,"Vehicle Fuel Consumption","Indiana","IN",10 +2016-12-01,"Vehicle Fuel Consumption","Colorado","CO",38 +2016-12-01,"Vehicle Fuel Consumption","New Mexico","NM",9 +2016-12-01,"Vehicle Fuel Consumption","Tennessee","TN",25 +2016-12-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2016-12-01,"Vehicle Fuel Consumption","Mississippi","MS",6 +2016-12-01,"Vehicle Fuel Consumption","Ohio","OH",73 +2016-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",81 +2016-12-01,"Vehicle Fuel Consumption","Louisiana","LA",16 +2016-12-01,"Vehicle Fuel Consumption","Michigan","MI",34 +2016-12-01,"Vehicle Fuel Consumption","Illinois","IL",40 +2016-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2016-12-01,"Vehicle Fuel Consumption","New York","NY",324 +2016-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2016-12-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2016-12-01,"Vehicle Fuel Consumption","Nebraska","NE",7 +2016-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2016-12-01,"Vehicle Fuel Consumption","Maryland","MD",12 +2016-12-01,"Vehicle Fuel Consumption","Georgia","GA",79 +2016-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2016-12-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2016-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",3560 +2016-12-01,"Vehicle Fuel Consumption","Kentucky","KY",11 +2016-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",42 +2016-12-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2016-12-01,"Vehicle Fuel Consumption","California","CA",1617 +2016-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",7 +2016-12-01,"Vehicle Fuel Consumption","Nevada","NV",160 +2016-12-01,"Vehicle Fuel Consumption","Kansas","KS",16 +2016-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2016-12-01,"Vehicle Fuel Consumption","Missouri","MO",22 +2016-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2016-12-01,"Vehicle Fuel Consumption","North Carolina","NC",18 +2016-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2016-12-01,"Vehicle Fuel Consumption","Idaho","ID",12 +2017-01-01,"Commercial Consumption","Utah","UT",7780 +2017-01-01,"Commercial Consumption","New Mexico","NM",3887 +2017-01-01,"Commercial Consumption","Maine","ME",1304 +2017-01-01,"Commercial Consumption","California","CA",29953 +2017-01-01,"Commercial Consumption","Nebraska","NE",5384 +2017-01-01,"Commercial Consumption","Arizona","AZ",4004 +2017-01-01,"Commercial Consumption","Nevada","NV",4528 +2017-01-01,"Commercial Consumption","South Carolina","SC",2839 +2017-01-01,"Commercial Consumption","New Hampshire","NH",1446 +2017-01-01,"Commercial Consumption","Rhode Island","RI",1840 +2017-01-01,"Commercial Consumption","Hawaii","HI",226 +2017-01-01,"Commercial Consumption","New York","NY",41616 +2017-01-01,"Commercial Consumption","Montana","MT",4096 +2017-01-01,"Commercial Consumption","Texas","TX",23872 +2017-01-01,"Commercial Consumption","Ohio","OH",25694 +2017-01-01,"Commercial Consumption","Washington","WA",9551 +2017-01-01,"Commercial Consumption","Colorado","CO",9448 +2017-01-01,"Commercial Consumption","Oklahoma","OK",7096 +2017-01-01,"Commercial Consumption","U.S.","U.S.",479371 +2017-01-01,"Commercial Consumption","Vermont","VT",814 +2017-01-01,"Commercial Consumption","Mississippi","MS",2374 +2017-01-01,"Commercial Consumption","Michigan","MI",26046 +2017-01-01,"Commercial Consumption","Indiana","IN",12717 +2017-01-01,"Commercial Consumption","Illinois","IL",35360 +2017-01-01,"Commercial Consumption","North Dakota","ND",2306 +2017-01-01,"Commercial Consumption","North Carolina","NC",7633 +2017-01-01,"Commercial Consumption","New Jersey","NJ",22476 +2017-01-01,"Commercial Consumption","Kentucky","KY",5380 +2017-01-01,"Commercial Consumption","Maryland","MD",10354 +2017-01-01,"Commercial Consumption","Florida","FL",6097 +2017-01-01,"Commercial Consumption","District of Columbia","DC",2127 +2017-01-01,"Commercial Consumption","Wyoming","WY",2405 +2017-01-01,"Commercial Consumption","Oregon","OR",5864 +2017-01-01,"Commercial Consumption","Pennsylvania","PA",22975 +2017-01-01,"Commercial Consumption","Wisconsin","WI",15389 +2017-01-01,"Commercial Consumption","Idaho","ID",3769 +2017-01-01,"Commercial Consumption","Minnesota","MN",16944 +2017-01-01,"Commercial Consumption","Virginia","VA",9659 +2017-01-01,"Commercial Consumption","Missouri","MO",10590 +2017-01-01,"Commercial Consumption","Massachusetts","MA",15472 +2017-01-01,"Commercial Consumption","South Dakota","SD",1972 +2017-01-01,"Commercial Consumption","Kansas","KS",5918 +2017-01-01,"Commercial Consumption","Georgia","GA",7263 +2017-01-01,"Commercial Consumption","Connecticut","CT",7504 +2017-01-01,"Commercial Consumption","Alabama","AL",3026 +2017-01-01,"Commercial Consumption","Delaware","DE",1874 +2017-01-01,"Commercial Consumption","West Virginia","WV",3071 +2017-01-01,"Commercial Consumption","Iowa","IA",8330 +2017-01-01,"Commercial Consumption","Alaska","AK",2342 +2017-01-01,"Commercial Consumption","Arkansas","AR",6451 +2017-01-01,"Commercial Consumption","Tennessee","TN",7134 +2017-01-01,"Commercial Consumption","Louisiana","LA",3169 +2017-01-01,"Delivered to Consumers","Vermont","VT",1594 +2017-01-01,"Delivered to Consumers","Iowa","IA",42670 +2017-01-01,"Delivered to Consumers","Nebraska","NE",21745 +2017-01-01,"Delivered to Consumers","Colorado","CO",50825 +2017-01-01,"Delivered to Consumers","California","CA",232305 +2017-01-01,"Delivered to Consumers","New Jersey","NJ",88204 +2017-01-01,"Delivered to Consumers","Georgia","GA",68612 +2017-01-01,"Delivered to Consumers","Delaware","DE",8926 +2017-01-01,"Delivered to Consumers","Montana","MT",10747 +2017-01-01,"Delivered to Consumers","Idaho","ID",16946 +2017-01-01,"Delivered to Consumers","Michigan","MI",112535 +2017-01-01,"Delivered to Consumers","Connecticut","CT",29153 +2017-01-01,"Delivered to Consumers","Pennsylvania","PA",125319 +2017-01-01,"Delivered to Consumers","Mississippi","MS",41559 +2017-01-01,"Delivered to Consumers","Maine","ME",4833 +2017-01-01,"Delivered to Consumers","District of Columbia","DC",4508 +2017-01-01,"Delivered to Consumers","Indiana","IN",85152 +2017-01-01,"Delivered to Consumers","New York","NY",153325 +2017-01-01,"Delivered to Consumers","Maryland","MD",27594 +2017-01-01,"Delivered to Consumers","Virginia","VA",55663 +2017-01-01,"Delivered to Consumers","North Carolina","NC",52350 +2017-01-01,"Delivered to Consumers","New Hampshire","NH",4680 +2017-01-01,"Delivered to Consumers","U.S.","U.S.",2708217 +2017-01-01,"Delivered to Consumers","Rhode Island","RI",8249 +2017-01-01,"Delivered to Consumers","North Dakota","ND",7698 +2017-01-01,"Delivered to Consumers","Minnesota","MN",60948 +2017-01-01,"Delivered to Consumers","Florida","FL",96142 +2017-01-01,"Delivered to Consumers","Alaska","AK",8664 +2017-01-01,"Delivered to Consumers","Ohio","OH",117398 +2017-01-01,"Delivered to Consumers","Kentucky","KY",29095 +2017-01-01,"Delivered to Consumers","Wisconsin","WI",63301 +2017-01-01,"Delivered to Consumers","Washington","WA",43918 +2017-01-01,"Delivered to Consumers","Wyoming","WY",9951 +2017-01-01,"Delivered to Consumers","Illinois","IL",142312 +2017-01-01,"Delivered to Consumers","South Dakota","SD",9078 +2017-01-01,"Delivered to Consumers","Arkansas","AR",27674 +2017-01-01,"Delivered to Consumers","Alabama","AL",51032 +2017-01-01,"Delivered to Consumers","Missouri","MO",39686 +2017-01-01,"Delivered to Consumers","Utah","UT",30551 +2017-01-01,"Delivered to Consumers","New Mexico","NM",17798 +2017-01-01,"Delivered to Consumers","Nevada","NV",31225 +2017-01-01,"Delivered to Consumers","Louisiana","LA",117968 +2017-01-01,"Delivered to Consumers","Arizona","AZ",22393 +2017-01-01,"Delivered to Consumers","West Virginia","WV",10999 +2017-01-01,"Delivered to Consumers","Hawaii","HI",292 +2017-01-01,"Delivered to Consumers","Oklahoma","OK",51332 +2017-01-01,"Delivered to Consumers","Kansas","KS",30440 +2017-01-01,"Delivered to Consumers","Tennessee","TN",36176 +2017-01-01,"Delivered to Consumers","Massachusetts","MA",52121 +2017-01-01,"Delivered to Consumers","Texas","TX",294170 +2017-01-01,"Delivered to Consumers","South Carolina","SC",23416 +2017-01-01,"Delivered to Consumers","Oregon","OR",34946 +2017-01-01,"Electric Power Consumption","New Mexico","NM",6357 +2017-01-01,"Electric Power Consumption","Illinois","IL",7688 +2017-01-01,"Electric Power Consumption","Nebraska","NE",270 +2017-01-01,"Electric Power Consumption","North Carolina","NC",23056 +2017-01-01,"Electric Power Consumption","Maine","ME",1337 +2017-01-01,"Electric Power Consumption","Mississippi","MS",24646 +2017-01-01,"Electric Power Consumption","Ohio","OH",15943 +2017-01-01,"Electric Power Consumption","California","CA",52415 +2017-01-01,"Electric Power Consumption","New Jersey","NJ",20453 +2017-01-01,"Electric Power Consumption","Arkansas","AR",6022 +2017-01-01,"Electric Power Consumption","Minnesota","MN",4069 +2017-01-01,"Electric Power Consumption","Massachusetts","MA",11437 +2017-01-01,"Electric Power Consumption","Wisconsin","WI",7507 +2017-01-01,"Electric Power Consumption","New Hampshire","NH",1104 +2017-01-01,"Electric Power Consumption","North Dakota","ND",336 +2017-01-01,"Electric Power Consumption","Indiana","IN",11378 +2017-01-01,"Electric Power Consumption","South Carolina","SC",7393 +2017-01-01,"Electric Power Consumption","Tennessee","TN",5164 +2017-01-01,"Electric Power Consumption","Kentucky","KY",4011 +2017-01-01,"Electric Power Consumption","Montana","MT",380 +2017-01-01,"Electric Power Consumption","Arizona","AZ",9535 +2017-01-01,"Electric Power Consumption","Florida","FL",78350 +2017-01-01,"Electric Power Consumption","Idaho","ID",3076 +2017-01-01,"Electric Power Consumption","Oklahoma","OK",14508 +2017-01-01,"Electric Power Consumption","Oregon","OR",13640 +2017-01-01,"Electric Power Consumption","Kansas","KS",1063 +2017-01-01,"Electric Power Consumption","Vermont","VT",2 +2017-01-01,"Electric Power Consumption","Colorado","CO",8340 +2017-01-01,"Electric Power Consumption","New York","NY",30182 +2017-01-01,"Electric Power Consumption","Utah","UT",4982 +2017-01-01,"Electric Power Consumption","Iowa","IA",743 +2017-01-01,"Electric Power Consumption","Missouri","MO",3132 +2017-01-01,"Electric Power Consumption","Hawaii","HI",NA +2017-01-01,"Electric Power Consumption","Maryland","MD",1587 +2017-01-01,"Electric Power Consumption","Virginia","VA",22614 +2017-01-01,"Electric Power Consumption","Louisiana","LA",15644 +2017-01-01,"Electric Power Consumption","West Virginia","WV",174 +2017-01-01,"Electric Power Consumption","Nevada","NV",16201 +2017-01-01,"Electric Power Consumption","U.S.","U.S.",659623 +2017-01-01,"Electric Power Consumption","Delaware","DE",2213 +2017-01-01,"Electric Power Consumption","Connecticut","CT",10437 +2017-01-01,"Electric Power Consumption","Georgia","GA",29646 +2017-01-01,"Electric Power Consumption","Alaska","AK",2631 +2017-01-01,"Electric Power Consumption","Michigan","MI",15584 +2017-01-01,"Electric Power Consumption","Pennsylvania","PA",40926 +2017-01-01,"Electric Power Consumption","Wyoming","WY",113 +2017-01-01,"Electric Power Consumption","South Dakota","SD",294 +2017-01-01,"Electric Power Consumption","Washington","WA",9329 +2017-01-01,"Electric Power Consumption","Texas","TX",85861 +2017-01-01,"Electric Power Consumption","Rhode Island","RI",2633 +2017-01-01,"Electric Power Consumption","Alabama","AL",25217 +2017-01-01,"Industrial Consumption","Arkansas","AR",9459 +2017-01-01,"Industrial Consumption","Nebraska","NE",8517 +2017-01-01,"Industrial Consumption","West Virginia","WV",3672 +2017-01-01,"Industrial Consumption","Tennessee","TN",12606 +2017-01-01,"Industrial Consumption","New Hampshire","NH",895 +2017-01-01,"Industrial Consumption","Florida","FL",9423 +2017-01-01,"Industrial Consumption","Oklahoma","OK",17803 +2017-01-01,"Industrial Consumption","Mississippi","MS",11121 +2017-01-01,"Industrial Consumption","Alabama","AL",17937 +2017-01-01,"Industrial Consumption","Virginia","VA",7937 +2017-01-01,"Industrial Consumption","Wyoming","WY",5088 +2017-01-01,"Industrial Consumption","Iowa","IA",21584 +2017-01-01,"Industrial Consumption","North Dakota","ND",2929 +2017-01-01,"Industrial Consumption","Montana","MT",2059 +2017-01-01,"Industrial Consumption","Maryland","MD",1483 +2017-01-01,"Industrial Consumption","South Dakota","SD",4326 +2017-01-01,"Industrial Consumption","Ohio","OH",28801 +2017-01-01,"Industrial Consumption","New Mexico","NM",1511 +2017-01-01,"Industrial Consumption","Arizona","AZ",2064 +2017-01-01,"Industrial Consumption","New York","NY",8470 +2017-01-01,"Industrial Consumption","Minnesota","MN",16474 +2017-01-01,"Industrial Consumption","Indiana","IN",37541 +2017-01-01,"Industrial Consumption","Delaware","DE",2888 +2017-01-01,"Industrial Consumption","District of Columbia","DC",NA +2017-01-01,"Industrial Consumption","Alaska","AK",502 +2017-01-01,"Industrial Consumption","Utah","UT",3779 +2017-01-01,"Industrial Consumption","U.S.","U.S.",734212 +2017-01-01,"Industrial Consumption","New Jersey","NJ",5476 +2017-01-01,"Industrial Consumption","Washington","WA",8176 +2017-01-01,"Industrial Consumption","Maine","ME",1745 +2017-01-01,"Industrial Consumption","Wisconsin","WI",16832 +2017-01-01,"Industrial Consumption","Connecticut","CT",2644 +2017-01-01,"Industrial Consumption","Illinois","IL",27150 +2017-01-01,"Industrial Consumption","North Carolina","NC",9635 +2017-01-01,"Industrial Consumption","Georgia","GA",13456 +2017-01-01,"Industrial Consumption","Hawaii","HI",8 +2017-01-01,"Industrial Consumption","Nevada","NV",1821 +2017-01-01,"Industrial Consumption","Massachusetts","MA",5687 +2017-01-01,"Industrial Consumption","Louisiana","LA",94192 +2017-01-01,"Industrial Consumption","Oregon","OR",5902 +2017-01-01,"Industrial Consumption","California","CA",64279 +2017-01-01,"Industrial Consumption","Texas","TX",145245 +2017-01-01,"Industrial Consumption","South Carolina","SC",8199 +2017-01-01,"Industrial Consumption","Vermont","VT",222 +2017-01-01,"Industrial Consumption","Idaho","ID",3897 +2017-01-01,"Industrial Consumption","Rhode Island","RI",806 +2017-01-01,"Industrial Consumption","Missouri","MO",7011 +2017-01-01,"Industrial Consumption","Colorado","CO",10242 +2017-01-01,"Industrial Consumption","Kansas","KS",11076 +2017-01-01,"Industrial Consumption","Pennsylvania","PA",21328 +2017-01-01,"Industrial Consumption","Michigan","MI",18881 +2017-01-01,"Industrial Consumption","Kentucky","KY",11435 +2017-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",126894 +2017-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",78712 +2017-01-01,"Residential Consumption","Vermont","VT",556 +2017-01-01,"Residential Consumption","Michigan","MI",52023 +2017-01-01,"Residential Consumption","Delaware","DE",1951 +2017-01-01,"Residential Consumption","South Carolina","SC",4970 +2017-01-01,"Residential Consumption","Iowa","IA",12009 +2017-01-01,"Residential Consumption","Connecticut","CT",8549 +2017-01-01,"Residential Consumption","Virginia","VA",15380 +2017-01-01,"Residential Consumption","Nebraska","NE",7563 +2017-01-01,"Residential Consumption","Nevada","NV",8578 +2017-01-01,"Residential Consumption","New Mexico","NM",6024 +2017-01-01,"Residential Consumption","Arkansas","AR",5740 +2017-01-01,"Residential Consumption","Colorado","CO",22722 +2017-01-01,"Residential Consumption","Oregon","OR",9534 +2017-01-01,"Residential Consumption","Maryland","MD",14139 +2017-01-01,"Residential Consumption","Washington","WA",16845 +2017-01-01,"Residential Consumption","Oklahoma","OK",11789 +2017-01-01,"Residential Consumption","Missouri","MO",18939 +2017-01-01,"Residential Consumption","Wyoming","WY",2344 +2017-01-01,"Residential Consumption","New York","NY",72971 +2017-01-01,"Residential Consumption","North Dakota","ND",2126 +2017-01-01,"Residential Consumption","Massachusetts","MA",19515 +2017-01-01,"Residential Consumption","Idaho","ID",6199 +2017-01-01,"Residential Consumption","Alabama","AL",4845 +2017-01-01,"Residential Consumption","North Carolina","NC",11943 +2017-01-01,"Residential Consumption","Tennessee","TN",11248 +2017-01-01,"Residential Consumption","Pennsylvania","PA",39962 +2017-01-01,"Residential Consumption","Maine","ME",447 +2017-01-01,"Residential Consumption","Florida","FL",1958 +2017-01-01,"Residential Consumption","Kentucky","KY",8265 +2017-01-01,"Residential Consumption","California","CA",83528 +2017-01-01,"Residential Consumption","Arizona","AZ",6656 +2017-01-01,"Residential Consumption","Alaska","AK",3188 +2017-01-01,"Residential Consumption","Texas","TX",39036 +2017-01-01,"Residential Consumption","Rhode Island","RI",2961 +2017-01-01,"Residential Consumption","Hawaii","HI",58 +2017-01-01,"Residential Consumption","Indiana","IN",23508 +2017-01-01,"Residential Consumption","West Virginia","WV",4081 +2017-01-01,"Residential Consumption","U.S.","U.S.",830917 +2017-01-01,"Residential Consumption","Ohio","OH",46915 +2017-01-01,"Residential Consumption","Utah","UT",13980 +2017-01-01,"Residential Consumption","Georgia","GA",18076 +2017-01-01,"Residential Consumption","District of Columbia","DC",2348 +2017-01-01,"Residential Consumption","New Jersey","NJ",39766 +2017-01-01,"Residential Consumption","New Hampshire","NH",1235 +2017-01-01,"Residential Consumption","Kansas","KS",12342 +2017-01-01,"Residential Consumption","Illinois","IL",72098 +2017-01-01,"Residential Consumption","Mississippi","MS",3417 +2017-01-01,"Residential Consumption","Louisiana","LA",4930 +2017-01-01,"Residential Consumption","Wisconsin","WI",23539 +2017-01-01,"Residential Consumption","South Dakota","SD",2486 +2017-01-01,"Residential Consumption","Minnesota","MN",23423 +2017-01-01,"Residential Consumption","Montana","MT",4211 +2017-01-01,"Vehicle Fuel Consumption","Utah","UT",30 +2017-01-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2017-01-01,"Vehicle Fuel Consumption","Ohio","OH",45 +2017-01-01,"Vehicle Fuel Consumption","New York","NY",86 +2017-01-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2017-01-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2017-01-01,"Vehicle Fuel Consumption","Illinois","IL",16 +2017-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-01-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",35 +2017-01-01,"Vehicle Fuel Consumption","Georgia","GA",171 +2017-01-01,"Vehicle Fuel Consumption","South Carolina","SC",15 +2017-01-01,"Vehicle Fuel Consumption","California","CA",2129 +2017-01-01,"Vehicle Fuel Consumption","Kansas","KS",41 +2017-01-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-01-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-01-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-01-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",136 +2017-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2017-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2017-01-01,"Vehicle Fuel Consumption","Texas","TX",156 +2017-01-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-01-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-01-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2017-01-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2017-01-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",33 +2017-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-01-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-01-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2017-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2017-01-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2017-01-01,"Vehicle Fuel Consumption","Florida","FL",314 +2017-01-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-01-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2017-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2017-01-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2017-01-01,"Vehicle Fuel Consumption","Indiana","IN",9 +2017-01-01,"Vehicle Fuel Consumption","North Carolina","NC",83 +2017-01-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2017-01-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-01-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2017-01-01,"Vehicle Fuel Consumption","Colorado","CO",73 +2017-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",4094 +2017-02-01,"Commercial Consumption","Wyoming","WY",1884 +2017-02-01,"Commercial Consumption","North Dakota","ND",1703 +2017-02-01,"Commercial Consumption","Minnesota","MN",12894 +2017-02-01,"Commercial Consumption","South Dakota","SD",1344 +2017-02-01,"Commercial Consumption","U.S.","U.S.",359436 +2017-02-01,"Commercial Consumption","Florida","FL",5345 +2017-02-01,"Commercial Consumption","Idaho","ID",2492 +2017-02-01,"Commercial Consumption","Nebraska","NE",3687 +2017-02-01,"Commercial Consumption","Tennessee","TN",5140 +2017-02-01,"Commercial Consumption","Michigan","MI",20747 +2017-02-01,"Commercial Consumption","South Carolina","SC",2124 +2017-02-01,"Commercial Consumption","Colorado","CO",6211 +2017-02-01,"Commercial Consumption","New Mexico","NM",2444 +2017-02-01,"Commercial Consumption","Virginia","VA",7246 +2017-02-01,"Commercial Consumption","New Jersey","NJ",18253 +2017-02-01,"Commercial Consumption","Maryland","MD",8026 +2017-02-01,"Commercial Consumption","Georgia","GA",5190 +2017-02-01,"Commercial Consumption","Arkansas","AR",4629 +2017-02-01,"Commercial Consumption","Indiana","IN",8353 +2017-02-01,"Commercial Consumption","Illinois","IL",24480 +2017-02-01,"Commercial Consumption","Pennsylvania","PA",18866 +2017-02-01,"Commercial Consumption","Massachusetts","MA",13235 +2017-02-01,"Commercial Consumption","Louisiana","LA",2287 +2017-02-01,"Commercial Consumption","Texas","TX",16442 +2017-02-01,"Commercial Consumption","Kansas","KS",3492 +2017-02-01,"Commercial Consumption","Vermont","VT",678 +2017-02-01,"Commercial Consumption","Alabama","AL",2092 +2017-02-01,"Commercial Consumption","New York","NY",36320 +2017-02-01,"Commercial Consumption","Arizona","AZ",3408 +2017-02-01,"Commercial Consumption","Utah","UT",4609 +2017-02-01,"Commercial Consumption","Wisconsin","WI",10879 +2017-02-01,"Commercial Consumption","Maine","ME",1150 +2017-02-01,"Commercial Consumption","Kentucky","KY",3815 +2017-02-01,"Commercial Consumption","Ohio","OH",18791 +2017-02-01,"Commercial Consumption","Hawaii","HI",200 +2017-02-01,"Commercial Consumption","Delaware","DE",1495 +2017-02-01,"Commercial Consumption","North Carolina","NC",5153 +2017-02-01,"Commercial Consumption","Oregon","OR",4110 +2017-02-01,"Commercial Consumption","Oklahoma","OK",4395 +2017-02-01,"Commercial Consumption","Connecticut","CT",6332 +2017-02-01,"Commercial Consumption","Mississippi","MS",1704 +2017-02-01,"Commercial Consumption","Nevada","NV",3525 +2017-02-01,"Commercial Consumption","Montana","MT",3028 +2017-02-01,"Commercial Consumption","Rhode Island","RI",1501 +2017-02-01,"Commercial Consumption","Alaska","AK",1857 +2017-02-01,"Commercial Consumption","West Virginia","WV",2536 +2017-02-01,"Commercial Consumption","Washington","WA",7492 +2017-02-01,"Commercial Consumption","Missouri","MO",6673 +2017-02-01,"Commercial Consumption","New Hampshire","NH",1165 +2017-02-01,"Commercial Consumption","Iowa","IA",6003 +2017-02-01,"Commercial Consumption","California","CA",22399 +2017-02-01,"Commercial Consumption","District of Columbia","DC",1613 +2017-02-01,"Delivered to Consumers","New Mexico","NM",12965 +2017-02-01,"Delivered to Consumers","Vermont","VT",1382 +2017-02-01,"Delivered to Consumers","South Dakota","SD",7048 +2017-02-01,"Delivered to Consumers","Oklahoma","OK",36737 +2017-02-01,"Delivered to Consumers","Iowa","IA",34739 +2017-02-01,"Delivered to Consumers","Connecticut","CT",24214 +2017-02-01,"Delivered to Consumers","Colorado","CO",34545 +2017-02-01,"Delivered to Consumers","Maine","ME",4393 +2017-02-01,"Delivered to Consumers","New Hampshire","NH",3962 +2017-02-01,"Delivered to Consumers","Kansas","KS",20972 +2017-02-01,"Delivered to Consumers","Idaho","ID",10781 +2017-02-01,"Delivered to Consumers","Arkansas","AR",23198 +2017-02-01,"Delivered to Consumers","Nebraska","NE",16222 +2017-02-01,"Delivered to Consumers","California","CA",173392 +2017-02-01,"Delivered to Consumers","Louisiana","LA",103807 +2017-02-01,"Delivered to Consumers","Wyoming","WY",8346 +2017-02-01,"Delivered to Consumers","New York","NY",130148 +2017-02-01,"Delivered to Consumers","Tennessee","TN",29487 +2017-02-01,"Delivered to Consumers","Virginia","VA",48001 +2017-02-01,"Delivered to Consumers","North Carolina","NC",43699 +2017-02-01,"Delivered to Consumers","New Jersey","NJ",70987 +2017-02-01,"Delivered to Consumers","Washington","WA",31239 +2017-02-01,"Delivered to Consumers","Minnesota","MN",45993 +2017-02-01,"Delivered to Consumers","Illinois","IL",102940 +2017-02-01,"Delivered to Consumers","Maryland","MD",22994 +2017-02-01,"Delivered to Consumers","Michigan","MI",87899 +2017-02-01,"Delivered to Consumers","Wisconsin","WI",48942 +2017-02-01,"Delivered to Consumers","Nevada","NV",24571 +2017-02-01,"Delivered to Consumers","Georgia","GA",59497 +2017-02-01,"Delivered to Consumers","U.S.","U.S.",2161185 +2017-02-01,"Delivered to Consumers","Mississippi","MS",33260 +2017-02-01,"Delivered to Consumers","Oregon","OR",22734 +2017-02-01,"Delivered to Consumers","Utah","UT",18583 +2017-02-01,"Delivered to Consumers","Indiana","IN",66139 +2017-02-01,"Delivered to Consumers","West Virginia","WV",8950 +2017-02-01,"Delivered to Consumers","Rhode Island","RI",7099 +2017-02-01,"Delivered to Consumers","Montana","MT",8031 +2017-02-01,"Delivered to Consumers","Pennsylvania","PA",107054 +2017-02-01,"Delivered to Consumers","Missouri","MO",26148 +2017-02-01,"Delivered to Consumers","Arizona","AZ",16509 +2017-02-01,"Delivered to Consumers","Florida","FL",89494 +2017-02-01,"Delivered to Consumers","District of Columbia","DC",3322 +2017-02-01,"Delivered to Consumers","Delaware","DE",8085 +2017-02-01,"Delivered to Consumers","Hawaii","HI",259 +2017-02-01,"Delivered to Consumers","Alaska","AK",7340 +2017-02-01,"Delivered to Consumers","Texas","TX",245170 +2017-02-01,"Delivered to Consumers","South Carolina","SC",20928 +2017-02-01,"Delivered to Consumers","Ohio","OH",92701 +2017-02-01,"Delivered to Consumers","Kentucky","KY",21757 +2017-02-01,"Delivered to Consumers","Alabama","AL",43762 +2017-02-01,"Delivered to Consumers","Massachusetts","MA",44661 +2017-02-01,"Delivered to Consumers","North Dakota","ND",6098 +2017-02-01,"Electric Power Consumption","Virginia","VA",22207 +2017-02-01,"Electric Power Consumption","New York","NY",25846 +2017-02-01,"Electric Power Consumption","Utah","UT",2710 +2017-02-01,"Electric Power Consumption","Illinois","IL",8076 +2017-02-01,"Electric Power Consumption","Wisconsin","WI",6936 +2017-02-01,"Electric Power Consumption","Pennsylvania","PA",37976 +2017-02-01,"Electric Power Consumption","Wyoming","WY",46 +2017-02-01,"Electric Power Consumption","Iowa","IA",792 +2017-02-01,"Electric Power Consumption","Vermont","VT",1 +2017-02-01,"Electric Power Consumption","Ohio","OH",15066 +2017-02-01,"Electric Power Consumption","North Dakota","ND",460 +2017-02-01,"Electric Power Consumption","Montana","MT",287 +2017-02-01,"Electric Power Consumption","Connecticut","CT",8451 +2017-02-01,"Electric Power Consumption","Alabama","AL",22805 +2017-02-01,"Electric Power Consumption","Washington","WA",4418 +2017-02-01,"Electric Power Consumption","Tennessee","TN",5418 +2017-02-01,"Electric Power Consumption","U.S.","U.S.",568781 +2017-02-01,"Electric Power Consumption","North Carolina","NC",22680 +2017-02-01,"Electric Power Consumption","Maine","ME",1280 +2017-02-01,"Electric Power Consumption","Florida","FL",73795 +2017-02-01,"Electric Power Consumption","Rhode Island","RI",2286 +2017-02-01,"Electric Power Consumption","Nebraska","NE",177 +2017-02-01,"Electric Power Consumption","Arizona","AZ",5362 +2017-02-01,"Electric Power Consumption","California","CA",38222 +2017-02-01,"Electric Power Consumption","Arkansas","AR",6862 +2017-02-01,"Electric Power Consumption","South Carolina","SC",8466 +2017-02-01,"Electric Power Consumption","Minnesota","MN",1817 +2017-02-01,"Electric Power Consumption","Delaware","DE",2537 +2017-02-01,"Electric Power Consumption","Georgia","GA",29592 +2017-02-01,"Electric Power Consumption","Massachusetts","MA",9763 +2017-02-01,"Electric Power Consumption","Maryland","MD",2633 +2017-02-01,"Electric Power Consumption","Texas","TX",74362 +2017-02-01,"Electric Power Consumption","Kansas","KS",668 +2017-02-01,"Electric Power Consumption","Nevada","NV",13184 +2017-02-01,"Electric Power Consumption","South Dakota","SD",216 +2017-02-01,"Electric Power Consumption","Missouri","MO",2844 +2017-02-01,"Electric Power Consumption","Hawaii","HI",NA +2017-02-01,"Electric Power Consumption","Indiana","IN",9936 +2017-02-01,"Electric Power Consumption","Louisiana","LA",16270 +2017-02-01,"Electric Power Consumption","Colorado","CO",5712 +2017-02-01,"Electric Power Consumption","Oregon","OR",7117 +2017-02-01,"Electric Power Consumption","Michigan","MI",12520 +2017-02-01,"Electric Power Consumption","New Hampshire","NH",893 +2017-02-01,"Electric Power Consumption","Alaska","AK",2493 +2017-02-01,"Electric Power Consumption","New Mexico","NM",5098 +2017-02-01,"Electric Power Consumption","New Jersey","NJ",17244 +2017-02-01,"Electric Power Consumption","Idaho","ID",1185 +2017-02-01,"Electric Power Consumption","Oklahoma","OK",10380 +2017-02-01,"Electric Power Consumption","West Virginia","WV",71 +2017-02-01,"Electric Power Consumption","Mississippi","MS",19136 +2017-02-01,"Electric Power Consumption","Kentucky","KY",2484 +2017-02-01,"Industrial Consumption","Maryland","MD",1276 +2017-02-01,"Industrial Consumption","Hawaii","HI",7 +2017-02-01,"Industrial Consumption","South Dakota","SD",3821 +2017-02-01,"Industrial Consumption","New Mexico","NM",1211 +2017-02-01,"Industrial Consumption","Oregon","OR",5096 +2017-02-01,"Industrial Consumption","Arkansas","AR",8328 +2017-02-01,"Industrial Consumption","Connecticut","CT",2217 +2017-02-01,"Industrial Consumption","Michigan","MI",16201 +2017-02-01,"Industrial Consumption","Illinois","IL",22841 +2017-02-01,"Industrial Consumption","North Dakota","ND",2358 +2017-02-01,"Industrial Consumption","New York","NY",7540 +2017-02-01,"Industrial Consumption","Maine","ME",1567 +2017-02-01,"Industrial Consumption","Alabama","AL",15631 +2017-02-01,"Industrial Consumption","Indiana","IN",32493 +2017-02-01,"Industrial Consumption","Washington","WA",6862 +2017-02-01,"Industrial Consumption","Virginia","VA",8080 +2017-02-01,"Industrial Consumption","New Jersey","NJ",5030 +2017-02-01,"Industrial Consumption","Rhode Island","RI",791 +2017-02-01,"Industrial Consumption","District of Columbia","DC",NA +2017-02-01,"Industrial Consumption","Montana","MT",1738 +2017-02-01,"Industrial Consumption","Utah","UT",3809 +2017-02-01,"Industrial Consumption","U.S.","U.S.",649811 +2017-02-01,"Industrial Consumption","California","CA",56870 +2017-02-01,"Industrial Consumption","Texas","TX",132098 +2017-02-01,"Industrial Consumption","Nebraska","NE",7666 +2017-02-01,"Industrial Consumption","Minnesota","MN",14740 +2017-02-01,"Industrial Consumption","Iowa","IA",19560 +2017-02-01,"Industrial Consumption","Alaska","AK",468 +2017-02-01,"Industrial Consumption","Massachusetts","MA",5123 +2017-02-01,"Industrial Consumption","Vermont","VT",196 +2017-02-01,"Industrial Consumption","New Hampshire","NH",904 +2017-02-01,"Industrial Consumption","Florida","FL",8345 +2017-02-01,"Industrial Consumption","Delaware","DE",2657 +2017-02-01,"Industrial Consumption","Oklahoma","OK",15393 +2017-02-01,"Industrial Consumption","Missouri","MO",5633 +2017-02-01,"Industrial Consumption","Louisiana","LA",82312 +2017-02-01,"Industrial Consumption","Ohio","OH",25589 +2017-02-01,"Industrial Consumption","Pennsylvania","PA",19124 +2017-02-01,"Industrial Consumption","Mississippi","MS",10308 +2017-02-01,"Industrial Consumption","South Carolina","SC",7293 +2017-02-01,"Industrial Consumption","West Virginia","WV",3224 +2017-02-01,"Industrial Consumption","Wisconsin","WI",13844 +2017-02-01,"Industrial Consumption","Idaho","ID",3273 +2017-02-01,"Industrial Consumption","Kentucky","KY",9857 +2017-02-01,"Industrial Consumption","Colorado","CO",7890 +2017-02-01,"Industrial Consumption","Kansas","KS",10112 +2017-02-01,"Industrial Consumption","Arizona","AZ",1780 +2017-02-01,"Industrial Consumption","Nevada","NV",1518 +2017-02-01,"Industrial Consumption","Wyoming","WY",4617 +2017-02-01,"Industrial Consumption","Tennessee","TN",11690 +2017-02-01,"Industrial Consumption","North Carolina","NC",8663 +2017-02-01,"Industrial Consumption","Georgia","GA",12169 +2017-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",116217 +2017-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",62816 +2017-02-01,"Residential Consumption","Hawaii","HI",52 +2017-02-01,"Residential Consumption","Vermont","VT",507 +2017-02-01,"Residential Consumption","Minnesota","MN",16507 +2017-02-01,"Residential Consumption","Arkansas","AR",3376 +2017-02-01,"Residential Consumption","Alaska","AK",2521 +2017-02-01,"Residential Consumption","North Carolina","NC",7129 +2017-02-01,"Residential Consumption","Louisiana","LA",2908 +2017-02-01,"Residential Consumption","Maryland","MD",11029 +2017-02-01,"Residential Consumption","Maine","ME",395 +2017-02-01,"Residential Consumption","Idaho","ID",3829 +2017-02-01,"Residential Consumption","South Carolina","SC",3032 +2017-02-01,"Residential Consumption","Oregon","OR",6406 +2017-02-01,"Residential Consumption","Tennessee","TN",7217 +2017-02-01,"Residential Consumption","District of Columbia","DC",1679 +2017-02-01,"Residential Consumption","Indiana","IN",15350 +2017-02-01,"Residential Consumption","Oklahoma","OK",6446 +2017-02-01,"Residential Consumption","Delaware","DE",1397 +2017-02-01,"Residential Consumption","Michigan","MI",38430 +2017-02-01,"Residential Consumption","New Mexico","NM",4196 +2017-02-01,"Residential Consumption","North Dakota","ND",1577 +2017-02-01,"Residential Consumption","Massachusetts","MA",16531 +2017-02-01,"Residential Consumption","New Hampshire","NH",999 +2017-02-01,"Residential Consumption","Colorado","CO",14666 +2017-02-01,"Residential Consumption","Washington","WA",12452 +2017-02-01,"Residential Consumption","West Virginia","WV",3118 +2017-02-01,"Residential Consumption","U.S.","U.S.",579458 +2017-02-01,"Residential Consumption","Rhode Island","RI",2513 +2017-02-01,"Residential Consumption","Connecticut","CT",7199 +2017-02-01,"Residential Consumption","Montana","MT",2978 +2017-02-01,"Residential Consumption","Missouri","MO",10986 +2017-02-01,"Residential Consumption","Arizona","AZ",5840 +2017-02-01,"Residential Consumption","Illinois","IL",47529 +2017-02-01,"Residential Consumption","Mississippi","MS",2110 +2017-02-01,"Residential Consumption","Iowa","IA",8380 +2017-02-01,"Residential Consumption","Wisconsin","WI",17252 +2017-02-01,"Residential Consumption","Nebraska","NE",4681 +2017-02-01,"Residential Consumption","Nevada","NV",6256 +2017-02-01,"Residential Consumption","Pennsylvania","PA",30972 +2017-02-01,"Residential Consumption","Kentucky","KY",5597 +2017-02-01,"Residential Consumption","Alabama","AL",3228 +2017-02-01,"Residential Consumption","New York","NY",60364 +2017-02-01,"Residential Consumption","Texas","TX",22127 +2017-02-01,"Residential Consumption","Ohio","OH",33215 +2017-02-01,"Residential Consumption","Utah","UT",7427 +2017-02-01,"Residential Consumption","South Dakota","SD",1668 +2017-02-01,"Residential Consumption","Florida","FL",1725 +2017-02-01,"Residential Consumption","Virginia","VA",10403 +2017-02-01,"Residential Consumption","Georgia","GA",12391 +2017-02-01,"Residential Consumption","New Jersey","NJ",30429 +2017-02-01,"Residential Consumption","Kansas","KS",6663 +2017-02-01,"Residential Consumption","California","CA",53979 +2017-02-01,"Residential Consumption","Wyoming","WY",1797 +2017-02-01,"Vehicle Fuel Consumption","New Mexico","NM",16 +2017-02-01,"Vehicle Fuel Consumption","Arizona","AZ",120 +2017-02-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2017-02-01,"Vehicle Fuel Consumption","Georgia","GA",155 +2017-02-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-02-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2017-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",3698 +2017-02-01,"Vehicle Fuel Consumption","Utah","UT",27 +2017-02-01,"Vehicle Fuel Consumption","Tennessee","TN",22 +2017-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",122 +2017-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",30 +2017-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2017-02-01,"Vehicle Fuel Consumption","Nebraska","NE",11 +2017-02-01,"Vehicle Fuel Consumption","North Carolina","NC",75 +2017-02-01,"Vehicle Fuel Consumption","Arkansas","AR",3 +2017-02-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2017-02-01,"Vehicle Fuel Consumption","Washington","WA",16 +2017-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",116 +2017-02-01,"Vehicle Fuel Consumption","Kansas","KS",37 +2017-02-01,"Vehicle Fuel Consumption","Florida","FL",284 +2017-02-01,"Vehicle Fuel Consumption","Missouri","MO",13 +2017-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2017-02-01,"Vehicle Fuel Consumption","Maryland","MD",29 +2017-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-02-01,"Vehicle Fuel Consumption","Ohio","OH",40 +2017-02-01,"Vehicle Fuel Consumption","New York","NY",78 +2017-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-02-01,"Vehicle Fuel Consumption","Texas","TX",141 +2017-02-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-02-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-02-01,"Vehicle Fuel Consumption","South Carolina","SC",13 +2017-02-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2017-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",31 +2017-02-01,"Vehicle Fuel Consumption","Nevada","NV",88 +2017-02-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2017-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",31 +2017-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-02-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2017-02-01,"Vehicle Fuel Consumption","Colorado","CO",66 +2017-02-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-02-01,"Vehicle Fuel Consumption","California","CA",1923 +2017-02-01,"Vehicle Fuel Consumption","Virginia","VA",65 +2017-02-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-02-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-02-01,"Vehicle Fuel Consumption","Minnesota","MN",34 +2017-02-01,"Vehicle Fuel Consumption","Illinois","IL",14 +2017-03-01,"Commercial Consumption","Massachusetts","MA",16132 +2017-03-01,"Commercial Consumption","New Jersey","NJ",20984 +2017-03-01,"Commercial Consumption","Maine","ME",1291 +2017-03-01,"Commercial Consumption","Iowa","IA",5799 +2017-03-01,"Commercial Consumption","South Carolina","SC",2511 +2017-03-01,"Commercial Consumption","South Dakota","SD",1294 +2017-03-01,"Commercial Consumption","Kentucky","KY",3882 +2017-03-01,"Commercial Consumption","Texas","TX",14591 +2017-03-01,"Commercial Consumption","Idaho","ID",1765 +2017-03-01,"Commercial Consumption","Illinois","IL",25913 +2017-03-01,"Commercial Consumption","Colorado","CO",5202 +2017-03-01,"Commercial Consumption","New Mexico","NM",1931 +2017-03-01,"Commercial Consumption","Oregon","OR",3318 +2017-03-01,"Commercial Consumption","Wisconsin","WI",11248 +2017-03-01,"Commercial Consumption","Hawaii","HI",211 +2017-03-01,"Commercial Consumption","California","CA",19964 +2017-03-01,"Commercial Consumption","North Carolina","NC",6205 +2017-03-01,"Commercial Consumption","Missouri","MO",6534 +2017-03-01,"Commercial Consumption","New Hampshire","NH",1439 +2017-03-01,"Commercial Consumption","U.S.","U.S.",371668 +2017-03-01,"Commercial Consumption","Georgia","GA",5419 +2017-03-01,"Commercial Consumption","Michigan","MI",21858 +2017-03-01,"Commercial Consumption","Ohio","OH",20883 +2017-03-01,"Commercial Consumption","Alaska","AK",2052 +2017-03-01,"Commercial Consumption","New York","NY",40896 +2017-03-01,"Commercial Consumption","District of Columbia","DC",1826 +2017-03-01,"Commercial Consumption","West Virginia","WV",2756 +2017-03-01,"Commercial Consumption","Montana","MT",2475 +2017-03-01,"Commercial Consumption","Maryland","MD",9620 +2017-03-01,"Commercial Consumption","Connecticut","CT",7026 +2017-03-01,"Commercial Consumption","Nebraska","NE",3235 +2017-03-01,"Commercial Consumption","Mississippi","MS",1776 +2017-03-01,"Commercial Consumption","Delaware","DE",1683 +2017-03-01,"Commercial Consumption","Tennessee","TN",5230 +2017-03-01,"Commercial Consumption","Nevada","NV",3089 +2017-03-01,"Commercial Consumption","Indiana","IN",9268 +2017-03-01,"Commercial Consumption","Washington","WA",6433 +2017-03-01,"Commercial Consumption","North Dakota","ND",1645 +2017-03-01,"Commercial Consumption","Oklahoma","OK",3478 +2017-03-01,"Commercial Consumption","Kansas","KS",3467 +2017-03-01,"Commercial Consumption","Vermont","VT",774 +2017-03-01,"Commercial Consumption","Arkansas","AR",4498 +2017-03-01,"Commercial Consumption","Arizona","AZ",2946 +2017-03-01,"Commercial Consumption","Louisiana","LA",2588 +2017-03-01,"Commercial Consumption","Wyoming","WY",1713 +2017-03-01,"Commercial Consumption","Minnesota","MN",12307 +2017-03-01,"Commercial Consumption","Utah","UT",3419 +2017-03-01,"Commercial Consumption","Virginia","VA",8572 +2017-03-01,"Commercial Consumption","Pennsylvania","PA",20620 +2017-03-01,"Commercial Consumption","Florida","FL",5715 +2017-03-01,"Commercial Consumption","Rhode Island","RI",1883 +2017-03-01,"Commercial Consumption","Alabama","AL",2302 +2017-03-01,"Delivered to Consumers","U.S.","U.S.",2324198 +2017-03-01,"Delivered to Consumers","New Mexico","NM",11167 +2017-03-01,"Delivered to Consumers","Montana","MT",6761 +2017-03-01,"Delivered to Consumers","Pennsylvania","PA",114179 +2017-03-01,"Delivered to Consumers","Oregon","OR",16640 +2017-03-01,"Delivered to Consumers","Arizona","AZ",15866 +2017-03-01,"Delivered to Consumers","District of Columbia","DC",3656 +2017-03-01,"Delivered to Consumers","Wyoming","WY",8206 +2017-03-01,"Delivered to Consumers","New York","NY",148123 +2017-03-01,"Delivered to Consumers","Alaska","AK",7782 +2017-03-01,"Delivered to Consumers","Oklahoma","OK",38586 +2017-03-01,"Delivered to Consumers","Ohio","OH",100547 +2017-03-01,"Delivered to Consumers","Kentucky","KY",27536 +2017-03-01,"Delivered to Consumers","Connecticut","CT",25362 +2017-03-01,"Delivered to Consumers","Texas","TX",262085 +2017-03-01,"Delivered to Consumers","South Dakota","SD",7151 +2017-03-01,"Delivered to Consumers","Hawaii","HI",271 +2017-03-01,"Delivered to Consumers","Mississippi","MS",44393 +2017-03-01,"Delivered to Consumers","Massachusetts","MA",53317 +2017-03-01,"Delivered to Consumers","Louisiana","LA",115745 +2017-03-01,"Delivered to Consumers","Washington","WA",26011 +2017-03-01,"Delivered to Consumers","Indiana","IN",74728 +2017-03-01,"Delivered to Consumers","Maryland","MD",27018 +2017-03-01,"Delivered to Consumers","Kansas","KS",21403 +2017-03-01,"Delivered to Consumers","North Carolina","NC",48773 +2017-03-01,"Delivered to Consumers","Maine","ME",4603 +2017-03-01,"Delivered to Consumers","Utah","UT",14758 +2017-03-01,"Delivered to Consumers","Colorado","CO",30707 +2017-03-01,"Delivered to Consumers","New Jersey","NJ",86195 +2017-03-01,"Delivered to Consumers","Minnesota","MN",49053 +2017-03-01,"Delivered to Consumers","Florida","FL",104327 +2017-03-01,"Delivered to Consumers","Illinois","IL",112941 +2017-03-01,"Delivered to Consumers","Rhode Island","RI",8515 +2017-03-01,"Delivered to Consumers","Virginia","VA",53629 +2017-03-01,"Delivered to Consumers","Nebraska","NE",15151 +2017-03-01,"Delivered to Consumers","Missouri","MO",26180 +2017-03-01,"Delivered to Consumers","Nevada","NV",22107 +2017-03-01,"Delivered to Consumers","Vermont","VT",1562 +2017-03-01,"Delivered to Consumers","Tennessee","TN",33049 +2017-03-01,"Delivered to Consumers","Michigan","MI",102279 +2017-03-01,"Delivered to Consumers","New Hampshire","NH",4996 +2017-03-01,"Delivered to Consumers","Delaware","DE",9778 +2017-03-01,"Delivered to Consumers","West Virginia","WV",10104 +2017-03-01,"Delivered to Consumers","Idaho","ID",7733 +2017-03-01,"Delivered to Consumers","Iowa","IA",36605 +2017-03-01,"Delivered to Consumers","Arkansas","AR",26951 +2017-03-01,"Delivered to Consumers","Alabama","AL",54601 +2017-03-01,"Delivered to Consumers","Wisconsin","WI",54904 +2017-03-01,"Delivered to Consumers","California","CA",157399 +2017-03-01,"Delivered to Consumers","South Carolina","SC",25164 +2017-03-01,"Delivered to Consumers","Georgia","GA",58895 +2017-03-01,"Delivered to Consumers","North Dakota","ND",6711 +2017-03-01,"Electric Power Consumption","Louisiana","LA",20329 +2017-03-01,"Electric Power Consumption","Arkansas","AR",11042 +2017-03-01,"Electric Power Consumption","Oklahoma","OK",12468 +2017-03-01,"Electric Power Consumption","Illinois","IL",11230 +2017-03-01,"Electric Power Consumption","Massachusetts","MA",11257 +2017-03-01,"Electric Power Consumption","North Carolina","NC",24688 +2017-03-01,"Electric Power Consumption","Kentucky","KY",7585 +2017-03-01,"Electric Power Consumption","Connecticut","CT",7841 +2017-03-01,"Electric Power Consumption","Florida","FL",87323 +2017-03-01,"Electric Power Consumption","California","CA",31728 +2017-03-01,"Electric Power Consumption","Alabama","AL",31584 +2017-03-01,"Electric Power Consumption","Wyoming","WY",22 +2017-03-01,"Electric Power Consumption","Tennessee","TN",8921 +2017-03-01,"Electric Power Consumption","Maine","ME",1252 +2017-03-01,"Electric Power Consumption","Indiana","IN",13501 +2017-03-01,"Electric Power Consumption","Delaware","DE",4052 +2017-03-01,"Electric Power Consumption","Colorado","CO",5811 +2017-03-01,"Electric Power Consumption","Pennsylvania","PA",38531 +2017-03-01,"Electric Power Consumption","North Dakota","ND",545 +2017-03-01,"Electric Power Consumption","Maryland","MD",4395 +2017-03-01,"Electric Power Consumption","Washington","WA",2124 +2017-03-01,"Electric Power Consumption","Virginia","VA",25447 +2017-03-01,"Electric Power Consumption","Michigan","MI",20126 +2017-03-01,"Electric Power Consumption","Kansas","KS",1381 +2017-03-01,"Electric Power Consumption","Wisconsin","WI",9862 +2017-03-01,"Electric Power Consumption","U.S.","U.S.",672176 +2017-03-01,"Electric Power Consumption","South Dakota","SD",372 +2017-03-01,"Electric Power Consumption","Nebraska","NE",337 +2017-03-01,"Electric Power Consumption","New Hampshire","NH",1464 +2017-03-01,"Electric Power Consumption","Arizona","AZ",7331 +2017-03-01,"Electric Power Consumption","New Jersey","NJ",25542 +2017-03-01,"Electric Power Consumption","Idaho","ID",115 +2017-03-01,"Electric Power Consumption","New York","NY",30828 +2017-03-01,"Electric Power Consumption","Rhode Island","RI",2781 +2017-03-01,"Electric Power Consumption","Utah","UT",2215 +2017-03-01,"Electric Power Consumption","Georgia","GA",26720 +2017-03-01,"Electric Power Consumption","Alaska","AK",2590 +2017-03-01,"Electric Power Consumption","New Mexico","NM",5127 +2017-03-01,"Electric Power Consumption","Texas","TX",91146 +2017-03-01,"Electric Power Consumption","Nevada","NV",12852 +2017-03-01,"Electric Power Consumption","Missouri","MO",3465 +2017-03-01,"Electric Power Consumption","Mississippi","MS",29436 +2017-03-01,"Electric Power Consumption","South Carolina","SC",11103 +2017-03-01,"Electric Power Consumption","Oregon","OR",2970 +2017-03-01,"Electric Power Consumption","Minnesota","MN",5135 +2017-03-01,"Electric Power Consumption","Hawaii","HI",NA +2017-03-01,"Electric Power Consumption","Ohio","OH",15735 +2017-03-01,"Electric Power Consumption","Montana","MT",311 +2017-03-01,"Electric Power Consumption","West Virginia","WV",374 +2017-03-01,"Electric Power Consumption","Iowa","IA",1183 +2017-03-01,"Electric Power Consumption","Vermont","VT",2 +2017-03-01,"Industrial Consumption","Missouri","MO",5869 +2017-03-01,"Industrial Consumption","Oregon","OR",5212 +2017-03-01,"Industrial Consumption","New Jersey","NJ",5553 +2017-03-01,"Industrial Consumption","South Dakota","SD",3945 +2017-03-01,"Industrial Consumption","Utah","UT",3390 +2017-03-01,"Industrial Consumption","U.S.","U.S.",696319 +2017-03-01,"Industrial Consumption","California","CA",62971 +2017-03-01,"Industrial Consumption","Wisconsin","WI",15106 +2017-03-01,"Industrial Consumption","Rhode Island","RI",716 +2017-03-01,"Industrial Consumption","Ohio","OH",26464 +2017-03-01,"Industrial Consumption","New Mexico","NM",1118 +2017-03-01,"Industrial Consumption","Pennsylvania","PA",21134 +2017-03-01,"Industrial Consumption","Wyoming","WY",4949 +2017-03-01,"Industrial Consumption","District of Columbia","DC",NA +2017-03-01,"Industrial Consumption","Montana","MT",1744 +2017-03-01,"Industrial Consumption","Arizona","AZ",1753 +2017-03-01,"Industrial Consumption","Texas","TX",140169 +2017-03-01,"Industrial Consumption","Kentucky","KY",10416 +2017-03-01,"Industrial Consumption","North Carolina","NC",9632 +2017-03-01,"Industrial Consumption","North Dakota","ND",3047 +2017-03-01,"Industrial Consumption","Hawaii","HI",8 +2017-03-01,"Industrial Consumption","Oklahoma","OK",17748 +2017-03-01,"Industrial Consumption","Louisiana","LA",90094 +2017-03-01,"Industrial Consumption","Kansas","KS",10066 +2017-03-01,"Industrial Consumption","Nebraska","NE",7412 +2017-03-01,"Industrial Consumption","Georgia","GA",13761 +2017-03-01,"Industrial Consumption","Maryland","MD",1528 +2017-03-01,"Industrial Consumption","Massachusetts","MA",5696 +2017-03-01,"Industrial Consumption","Colorado","CO",7799 +2017-03-01,"Industrial Consumption","Arkansas","AR",8455 +2017-03-01,"Industrial Consumption","Minnesota","MN",14916 +2017-03-01,"Industrial Consumption","Idaho","ID",3180 +2017-03-01,"Industrial Consumption","Iowa","IA",21559 +2017-03-01,"Industrial Consumption","Connecticut","CT",2632 +2017-03-01,"Industrial Consumption","Indiana","IN",34791 +2017-03-01,"Industrial Consumption","Illinois","IL",23646 +2017-03-01,"Industrial Consumption","Washington","WA",7011 +2017-03-01,"Industrial Consumption","Nevada","NV",1672 +2017-03-01,"Industrial Consumption","Alabama","AL",17530 +2017-03-01,"Industrial Consumption","South Carolina","SC",8140 +2017-03-01,"Industrial Consumption","Virginia","VA",8471 +2017-03-01,"Industrial Consumption","West Virginia","WV",3484 +2017-03-01,"Industrial Consumption","Vermont","VT",215 +2017-03-01,"Industrial Consumption","Tennessee","TN",11986 +2017-03-01,"Industrial Consumption","New Hampshire","NH",909 +2017-03-01,"Industrial Consumption","Michigan","MI",17320 +2017-03-01,"Industrial Consumption","Delaware","DE",2353 +2017-03-01,"Industrial Consumption","Alaska","AK",473 +2017-03-01,"Industrial Consumption","New York","NY",8240 +2017-03-01,"Industrial Consumption","Mississippi","MS",11027 +2017-03-01,"Industrial Consumption","Maine","ME",1634 +2017-03-01,"Industrial Consumption","Florida","FL",9376 +2017-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",131579 +2017-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",67554 +2017-03-01,"Residential Consumption","Hawaii","HI",52 +2017-03-01,"Residential Consumption","Vermont","VT",570 +2017-03-01,"Residential Consumption","South Dakota","SD",1539 +2017-03-01,"Residential Consumption","Maine","ME",426 +2017-03-01,"Residential Consumption","Indiana","IN",17160 +2017-03-01,"Residential Consumption","North Dakota","ND",1475 +2017-03-01,"Residential Consumption","Massachusetts","MA",20222 +2017-03-01,"Residential Consumption","Alabama","AL",3177 +2017-03-01,"Residential Consumption","Texas","TX",16023 +2017-03-01,"Residential Consumption","South Carolina","SC",3395 +2017-03-01,"Residential Consumption","Wisconsin","WI",18653 +2017-03-01,"Residential Consumption","Virginia","VA",11067 +2017-03-01,"Residential Consumption","Utah","UT",5704 +2017-03-01,"Residential Consumption","Nevada","NV",4396 +2017-03-01,"Residential Consumption","Minnesota","MN",16657 +2017-03-01,"Residential Consumption","Georgia","GA",12823 +2017-03-01,"Residential Consumption","Montana","MT",2231 +2017-03-01,"Residential Consumption","Delaware","DE",1689 +2017-03-01,"Residential Consumption","West Virginia","WV",3489 +2017-03-01,"Residential Consumption","New York","NY",68073 +2017-03-01,"Residential Consumption","Louisiana","LA",2700 +2017-03-01,"Residential Consumption","Iowa","IA",8061 +2017-03-01,"Residential Consumption","Nebraska","NE",4156 +2017-03-01,"Residential Consumption","Idaho","ID",2669 +2017-03-01,"Residential Consumption","Colorado","CO",11823 +2017-03-01,"Residential Consumption","Alaska","AK",2666 +2017-03-01,"Residential Consumption","Wyoming","WY",1520 +2017-03-01,"Residential Consumption","U.S.","U.S.",579941 +2017-03-01,"Residential Consumption","North Carolina","NC",8165 +2017-03-01,"Residential Consumption","Connecticut","CT",7844 +2017-03-01,"Residential Consumption","Tennessee","TN",6888 +2017-03-01,"Residential Consumption","Michigan","MI",42975 +2017-03-01,"Residential Consumption","District of Columbia","DC",1796 +2017-03-01,"Residential Consumption","Arizona","AZ",3703 +2017-03-01,"Residential Consumption","Pennsylvania","PA",33765 +2017-03-01,"Residential Consumption","Oregon","OR",5136 +2017-03-01,"Residential Consumption","Ohio","OH",37420 +2017-03-01,"Residential Consumption","Florida","FL",1600 +2017-03-01,"Residential Consumption","Arkansas","AR",2952 +2017-03-01,"Residential Consumption","California","CA",40607 +2017-03-01,"Residential Consumption","Illinois","IL",52136 +2017-03-01,"Residential Consumption","Mississippi","MS",2153 +2017-03-01,"Residential Consumption","New Hampshire","NH",1184 +2017-03-01,"Residential Consumption","Kansas","KS",6449 +2017-03-01,"Residential Consumption","Rhode Island","RI",3126 +2017-03-01,"Residential Consumption","Maryland","MD",11443 +2017-03-01,"Residential Consumption","New Mexico","NM",2973 +2017-03-01,"Residential Consumption","New Jersey","NJ",34082 +2017-03-01,"Residential Consumption","Kentucky","KY",5648 +2017-03-01,"Residential Consumption","Washington","WA",10426 +2017-03-01,"Residential Consumption","Oklahoma","OK",4756 +2017-03-01,"Residential Consumption","Missouri","MO",10298 +2017-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2017-03-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2017-03-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-03-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-03-01,"Vehicle Fuel Consumption","Utah","UT",30 +2017-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",33 +2017-03-01,"Vehicle Fuel Consumption","Florida","FL",314 +2017-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-03-01,"Vehicle Fuel Consumption","Texas","TX",156 +2017-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-03-01,"Vehicle Fuel Consumption","Georgia","GA",171 +2017-03-01,"Vehicle Fuel Consumption","California","CA",2129 +2017-03-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",4094 +2017-03-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-03-01,"Vehicle Fuel Consumption","Ohio","OH",45 +2017-03-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2017-03-01,"Vehicle Fuel Consumption","Colorado","CO",73 +2017-03-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2017-03-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2017-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2017-03-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-03-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-03-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-03-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2017-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",136 +2017-03-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2017-03-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2017-03-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2017-03-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2017-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-03-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-03-01,"Vehicle Fuel Consumption","New York","NY",86 +2017-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",35 +2017-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2017-03-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2017-03-01,"Vehicle Fuel Consumption","Indiana","IN",9 +2017-03-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-03-01,"Vehicle Fuel Consumption","Kansas","KS",41 +2017-03-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2017-03-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2017-03-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-03-01,"Vehicle Fuel Consumption","North Carolina","NC",83 +2017-03-01,"Vehicle Fuel Consumption","South Carolina","SC",15 +2017-03-01,"Vehicle Fuel Consumption","Illinois","IL",16 +2017-04-01,"Commercial Consumption","Washington","WA",4786 +2017-04-01,"Commercial Consumption","North Carolina","NC",2997 +2017-04-01,"Commercial Consumption","Colorado","CO",4042 +2017-04-01,"Commercial Consumption","Oklahoma","OK",2355 +2017-04-01,"Commercial Consumption","Wisconsin","WI",6319 +2017-04-01,"Commercial Consumption","Mississippi","MS",987 +2017-04-01,"Commercial Consumption","Tennessee","TN",2505 +2017-04-01,"Commercial Consumption","North Dakota","ND",892 +2017-04-01,"Commercial Consumption","Utah","UT",3171 +2017-04-01,"Commercial Consumption","South Dakota","SD",756 +2017-04-01,"Commercial Consumption","Maine","ME",695 +2017-04-01,"Commercial Consumption","Nebraska","NE",2065 +2017-04-01,"Commercial Consumption","South Carolina","SC",1501 +2017-04-01,"Commercial Consumption","Virginia","VA",4073 +2017-04-01,"Commercial Consumption","New Jersey","NJ",9271 +2017-04-01,"Commercial Consumption","Montana","MT",1711 +2017-04-01,"Commercial Consumption","U.S.","U.S.",211971 +2017-04-01,"Commercial Consumption","Texas","TX",12118 +2017-04-01,"Commercial Consumption","Ohio","OH",8461 +2017-04-01,"Commercial Consumption","New York","NY",21293 +2017-04-01,"Commercial Consumption","Delaware","DE",746 +2017-04-01,"Commercial Consumption","District of Columbia","DC",1088 +2017-04-01,"Commercial Consumption","West Virginia","WV",1557 +2017-04-01,"Commercial Consumption","Minnesota","MN",7465 +2017-04-01,"Commercial Consumption","New Mexico","NM",1696 +2017-04-01,"Commercial Consumption","Missouri","MO",3318 +2017-04-01,"Commercial Consumption","New Hampshire","NH",564 +2017-04-01,"Commercial Consumption","Vermont","VT",375 +2017-04-01,"Commercial Consumption","Arkansas","AR",3108 +2017-04-01,"Commercial Consumption","Oregon","OR",2466 +2017-04-01,"Commercial Consumption","Kentucky","KY",1660 +2017-04-01,"Commercial Consumption","Maryland","MD",4287 +2017-04-01,"Commercial Consumption","Kansas","KS",2532 +2017-04-01,"Commercial Consumption","Florida","FL",5291 +2017-04-01,"Commercial Consumption","Rhode Island","RI",749 +2017-04-01,"Commercial Consumption","Connecticut","CT",3818 +2017-04-01,"Commercial Consumption","Arizona","AZ",2539 +2017-04-01,"Commercial Consumption","Hawaii","HI",201 +2017-04-01,"Commercial Consumption","Massachusetts","MA",7377 +2017-04-01,"Commercial Consumption","Iowa","IA",3276 +2017-04-01,"Commercial Consumption","Alabama","AL",1212 +2017-04-01,"Commercial Consumption","Michigan","MI",11198 +2017-04-01,"Commercial Consumption","Indiana","IN",4419 +2017-04-01,"Commercial Consumption","Illinois","IL",13518 +2017-04-01,"Commercial Consumption","Wyoming","WY",1098 +2017-04-01,"Commercial Consumption","Pennsylvania","PA",9181 +2017-04-01,"Commercial Consumption","Georgia","GA",2817 +2017-04-01,"Commercial Consumption","Idaho","ID",1349 +2017-04-01,"Commercial Consumption","Alaska","AK",1153 +2017-04-01,"Commercial Consumption","California","CA",17261 +2017-04-01,"Commercial Consumption","Nevada","NV",2596 +2017-04-01,"Commercial Consumption","Louisiana","LA",2057 +2017-04-01,"Delivered to Consumers","Wyoming","WY",6766 +2017-04-01,"Delivered to Consumers","South Dakota","SD",5589 +2017-04-01,"Delivered to Consumers","Rhode Island","RI",8279 +2017-04-01,"Delivered to Consumers","Missouri","MO",14861 +2017-04-01,"Delivered to Consumers","Massachusetts","MA",34677 +2017-04-01,"Delivered to Consumers","California","CA",136967 +2017-04-01,"Delivered to Consumers","Nevada","NV",18971 +2017-04-01,"Delivered to Consumers","Maine","ME",3753 +2017-04-01,"Delivered to Consumers","North Dakota","ND",5333 +2017-04-01,"Delivered to Consumers","Utah","UT",13865 +2017-04-01,"Delivered to Consumers","Iowa","IA",28214 +2017-04-01,"Delivered to Consumers","Alabama","AL",48589 +2017-04-01,"Delivered to Consumers","Virginia","VA",33919 +2017-04-01,"Delivered to Consumers","Pennsylvania","PA",72167 +2017-04-01,"Delivered to Consumers","Oregon","OR",12688 +2017-04-01,"Delivered to Consumers","New Hampshire","NH",5461 +2017-04-01,"Delivered to Consumers","Minnesota","MN",34062 +2017-04-01,"Delivered to Consumers","District of Columbia","DC",1736 +2017-04-01,"Delivered to Consumers","New Mexico","NM",9601 +2017-04-01,"Delivered to Consumers","Delaware","DE",5860 +2017-04-01,"Delivered to Consumers","Vermont","VT",853 +2017-04-01,"Delivered to Consumers","Kansas","KS",17214 +2017-04-01,"Delivered to Consumers","Ohio","OH",56815 +2017-04-01,"Delivered to Consumers","Michigan","MI",57100 +2017-04-01,"Delivered to Consumers","Mississippi","MS",37779 +2017-04-01,"Delivered to Consumers","Texas","TX",246920 +2017-04-01,"Delivered to Consumers","Montana","MT",4994 +2017-04-01,"Delivered to Consumers","Maryland","MD",12503 +2017-04-01,"Delivered to Consumers","Kentucky","KY",20204 +2017-04-01,"Delivered to Consumers","Arkansas","AR",24417 +2017-04-01,"Delivered to Consumers","Colorado","CO",27439 +2017-04-01,"Delivered to Consumers","South Carolina","SC",20431 +2017-04-01,"Delivered to Consumers","New Jersey","NJ",47253 +2017-04-01,"Delivered to Consumers","Illinois","IL",66635 +2017-04-01,"Delivered to Consumers","Wisconsin","WI",31261 +2017-04-01,"Delivered to Consumers","Georgia","GA",45222 +2017-04-01,"Delivered to Consumers","Arizona","AZ",20869 +2017-04-01,"Delivered to Consumers","Indiana","IN",50782 +2017-04-01,"Delivered to Consumers","Alaska","AK",5275 +2017-04-01,"Delivered to Consumers","Idaho","ID",6365 +2017-04-01,"Delivered to Consumers","Tennessee","TN",22114 +2017-04-01,"Delivered to Consumers","Nebraska","NE",11754 +2017-04-01,"Delivered to Consumers","North Carolina","NC",31129 +2017-04-01,"Delivered to Consumers","Florida","FL",106054 +2017-04-01,"Delivered to Consumers","U.S.","U.S.",1753578 +2017-04-01,"Delivered to Consumers","Hawaii","HI",256 +2017-04-01,"Delivered to Consumers","Connecticut","CT",16375 +2017-04-01,"Delivered to Consumers","West Virginia","WV",5934 +2017-04-01,"Delivered to Consumers","New York","NY",82942 +2017-04-01,"Delivered to Consumers","Oklahoma","OK",39678 +2017-04-01,"Delivered to Consumers","Louisiana","LA",115105 +2017-04-01,"Delivered to Consumers","Washington","WA",20546 +2017-04-01,"Electric Power Consumption","Louisiana","LA",23580 +2017-04-01,"Electric Power Consumption","Illinois","IL",9808 +2017-04-01,"Electric Power Consumption","Massachusetts","MA",14296 +2017-04-01,"Electric Power Consumption","Nevada","NV",11960 +2017-04-01,"Electric Power Consumption","Iowa","IA",1544 +2017-04-01,"Electric Power Consumption","Maryland","MD",3743 +2017-04-01,"Electric Power Consumption","Arizona","AZ",14262 +2017-04-01,"Electric Power Consumption","Washington","WA",2433 +2017-04-01,"Electric Power Consumption","Colorado","CO",7377 +2017-04-01,"Electric Power Consumption","New York","NY",24266 +2017-04-01,"Electric Power Consumption","Rhode Island","RI",5531 +2017-04-01,"Electric Power Consumption","Kansas","KS",1438 +2017-04-01,"Electric Power Consumption","Wyoming","WY",76 +2017-04-01,"Electric Power Consumption","New Hampshire","NH",3572 +2017-04-01,"Electric Power Consumption","Indiana","IN",8767 +2017-04-01,"Electric Power Consumption","Virginia","VA",17945 +2017-04-01,"Electric Power Consumption","Pennsylvania","PA",32014 +2017-04-01,"Electric Power Consumption","Vermont","VT",0 +2017-04-01,"Electric Power Consumption","Tennessee","TN",6554 +2017-04-01,"Electric Power Consumption","Nebraska","NE",372 +2017-04-01,"Electric Power Consumption","Connecticut","CT",7162 +2017-04-01,"Electric Power Consumption","Georgia","GA",24751 +2017-04-01,"Electric Power Consumption","Arkansas","AR",12188 +2017-04-01,"Electric Power Consumption","Wisconsin","WI",4704 +2017-04-01,"Electric Power Consumption","North Carolina","NC",17458 +2017-04-01,"Electric Power Consumption","North Dakota","ND",801 +2017-04-01,"Electric Power Consumption","Delaware","DE",2665 +2017-04-01,"Electric Power Consumption","Alabama","AL",29957 +2017-04-01,"Electric Power Consumption","New Mexico","NM",4589 +2017-04-01,"Electric Power Consumption","New Jersey","NJ",19107 +2017-04-01,"Electric Power Consumption","South Dakota","SD",283 +2017-04-01,"Electric Power Consumption","Montana","MT",324 +2017-04-01,"Electric Power Consumption","Florida","FL",90596 +2017-04-01,"Electric Power Consumption","Michigan","MI",14206 +2017-04-01,"Electric Power Consumption","Hawaii","HI",NA +2017-04-01,"Electric Power Consumption","Idaho","ID",179 +2017-04-01,"Electric Power Consumption","South Carolina","SC",10435 +2017-04-01,"Electric Power Consumption","Texas","TX",93553 +2017-04-01,"Electric Power Consumption","Oklahoma","OK",17393 +2017-04-01,"Electric Power Consumption","Minnesota","MN",4513 +2017-04-01,"Electric Power Consumption","West Virginia","WV",299 +2017-04-01,"Electric Power Consumption","U.S.","U.S.",627049 +2017-04-01,"Electric Power Consumption","Missouri","MO",2264 +2017-04-01,"Electric Power Consumption","Mississippi","MS",25534 +2017-04-01,"Electric Power Consumption","Alaska","AK",2247 +2017-04-01,"Electric Power Consumption","Utah","UT",2208 +2017-04-01,"Electric Power Consumption","Oregon","OR",1666 +2017-04-01,"Electric Power Consumption","Maine","ME",1387 +2017-04-01,"Electric Power Consumption","Kentucky","KY",7481 +2017-04-01,"Electric Power Consumption","Ohio","OH",11982 +2017-04-01,"Electric Power Consumption","California","CA",27579 +2017-04-01,"Industrial Consumption","Hawaii","HI",7 +2017-04-01,"Industrial Consumption","Florida","FL",8470 +2017-04-01,"Industrial Consumption","Indiana","IN",30512 +2017-04-01,"Industrial Consumption","Delaware","DE",1837 +2017-04-01,"Industrial Consumption","North Carolina","NC",8284 +2017-04-01,"Industrial Consumption","Georgia","GA",11785 +2017-04-01,"Industrial Consumption","Missouri","MO",4834 +2017-04-01,"Industrial Consumption","Washington","WA",6277 +2017-04-01,"Industrial Consumption","South Dakota","SD",3645 +2017-04-01,"Industrial Consumption","Ohio","OH",22340 +2017-04-01,"Industrial Consumption","Maine","ME",1435 +2017-04-01,"Industrial Consumption","Wisconsin","WI",11766 +2017-04-01,"Industrial Consumption","Minnesota","MN",13739 +2017-04-01,"Industrial Consumption","Montana","MT",1351 +2017-04-01,"Industrial Consumption","Maryland","MD",1041 +2017-04-01,"Industrial Consumption","Connecticut","CT",1849 +2017-04-01,"Industrial Consumption","Massachusetts","MA",4299 +2017-04-01,"Industrial Consumption","Louisiana","LA",87730 +2017-04-01,"Industrial Consumption","Texas","TX",131686 +2017-04-01,"Industrial Consumption","Tennessee","TN",10668 +2017-04-01,"Industrial Consumption","New Hampshire","NH",847 +2017-04-01,"Industrial Consumption","Alaska","AK",403 +2017-04-01,"Industrial Consumption","North Dakota","ND",2903 +2017-04-01,"Industrial Consumption","Pennsylvania","PA",17108 +2017-04-01,"Industrial Consumption","New York","NY",6389 +2017-04-01,"Industrial Consumption","California","CA",60359 +2017-04-01,"Industrial Consumption","West Virginia","WV",2705 +2017-04-01,"Industrial Consumption","Idaho","ID",2817 +2017-04-01,"Industrial Consumption","Illinois","IL",19984 +2017-04-01,"Industrial Consumption","Colorado","CO",7110 +2017-04-01,"Industrial Consumption","Kansas","KS",10141 +2017-04-01,"Industrial Consumption","Arizona","AZ",1582 +2017-04-01,"Industrial Consumption","Utah","UT",3480 +2017-04-01,"Industrial Consumption","Nevada","NV",1526 +2017-04-01,"Industrial Consumption","Arkansas","AR",7951 +2017-04-01,"Industrial Consumption","Alabama","AL",16052 +2017-04-01,"Industrial Consumption","Virginia","VA",8036 +2017-04-01,"Industrial Consumption","Wyoming","WY",4590 +2017-04-01,"Industrial Consumption","District of Columbia","DC",NA +2017-04-01,"Industrial Consumption","Oregon","OR",4784 +2017-04-01,"Industrial Consumption","South Carolina","SC",7256 +2017-04-01,"Industrial Consumption","Nebraska","NE",7074 +2017-04-01,"Industrial Consumption","Vermont","VT",167 +2017-04-01,"Industrial Consumption","New Jersey","NJ",4045 +2017-04-01,"Industrial Consumption","Kentucky","KY",9027 +2017-04-01,"Industrial Consumption","Oklahoma","OK",17062 +2017-04-01,"Industrial Consumption","New Mexico","NM",1214 +2017-04-01,"Industrial Consumption","U.S.","U.S.",631624 +2017-04-01,"Industrial Consumption","Mississippi","MS",10449 +2017-04-01,"Industrial Consumption","Iowa","IA",19343 +2017-04-01,"Industrial Consumption","Michigan","MI",12865 +2017-04-01,"Industrial Consumption","Rhode Island","RI",799 +2017-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",127491 +2017-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",50973 +2017-04-01,"Residential Consumption","Rhode Island","RI",1192 +2017-04-01,"Residential Consumption","North Carolina","NC",2309 +2017-04-01,"Residential Consumption","Hawaii","HI",49 +2017-04-01,"Residential Consumption","District of Columbia","DC",616 +2017-04-01,"Residential Consumption","New Hampshire","NH",478 +2017-04-01,"Residential Consumption","Colorado","CO",8839 +2017-04-01,"Residential Consumption","Kansas","KS",3063 +2017-04-01,"Residential Consumption","Nevada","NV",2794 +2017-04-01,"Residential Consumption","New Jersey","NJ",14798 +2017-04-01,"Residential Consumption","Arizona","AZ",2358 +2017-04-01,"Residential Consumption","Louisiana","LA",1706 +2017-04-01,"Residential Consumption","Iowa","IA",4047 +2017-04-01,"Residential Consumption","Tennessee","TN",2363 +2017-04-01,"Residential Consumption","Virginia","VA",3795 +2017-04-01,"Residential Consumption","South Dakota","SD",905 +2017-04-01,"Residential Consumption","Maine","ME",235 +2017-04-01,"Residential Consumption","Oklahoma","OK",2737 +2017-04-01,"Residential Consumption","Delaware","DE",612 +2017-04-01,"Residential Consumption","Texas","TX",9413 +2017-04-01,"Residential Consumption","Michigan","MI",18831 +2017-04-01,"Residential Consumption","Georgia","GA",5704 +2017-04-01,"Residential Consumption","Indiana","IN",7076 +2017-04-01,"Residential Consumption","Missouri","MO",4432 +2017-04-01,"Residential Consumption","Alaska","AK",1472 +2017-04-01,"Residential Consumption","West Virginia","WV",1372 +2017-04-01,"Residential Consumption","U.S.","U.S.",278972 +2017-04-01,"Residential Consumption","Vermont","VT",311 +2017-04-01,"Residential Consumption","Nebraska","NE",2231 +2017-04-01,"Residential Consumption","Massachusetts","MA",8696 +2017-04-01,"Residential Consumption","Idaho","ID",2016 +2017-04-01,"Residential Consumption","Kentucky","KY",2032 +2017-04-01,"Residential Consumption","California","CA",29707 +2017-04-01,"Residential Consumption","Alabama","AL",1362 +2017-04-01,"Residential Consumption","Wyoming","WY",1001 +2017-04-01,"Residential Consumption","New York","NY",30910 +2017-04-01,"Residential Consumption","Mississippi","MS",807 +2017-04-01,"Residential Consumption","Connecticut","CT",3529 +2017-04-01,"Residential Consumption","Wisconsin","WI",8439 +2017-04-01,"Residential Consumption","Arkansas","AR",1167 +2017-04-01,"Residential Consumption","Oregon","OR",3766 +2017-04-01,"Residential Consumption","Minnesota","MN",8308 +2017-04-01,"Residential Consumption","New Mexico","NM",2085 +2017-04-01,"Residential Consumption","Florida","FL",1392 +2017-04-01,"Residential Consumption","North Dakota","ND",737 +2017-04-01,"Residential Consumption","Washington","WA",7033 +2017-04-01,"Residential Consumption","Illinois","IL",23309 +2017-04-01,"Residential Consumption","South Carolina","SC",1224 +2017-04-01,"Residential Consumption","Ohio","OH",13988 +2017-04-01,"Residential Consumption","Utah","UT",4976 +2017-04-01,"Residential Consumption","Maryland","MD",3402 +2017-04-01,"Residential Consumption","Pennsylvania","PA",13739 +2017-04-01,"Residential Consumption","Montana","MT",1608 +2017-04-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-04-01,"Vehicle Fuel Consumption","New York","NY",83 +2017-04-01,"Vehicle Fuel Consumption","Kansas","KS",40 +2017-04-01,"Vehicle Fuel Consumption","Florida","FL",304 +2017-04-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-04-01,"Vehicle Fuel Consumption","Georgia","GA",166 +2017-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-04-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-04-01,"Vehicle Fuel Consumption","Louisiana","LA",32 +2017-04-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-04-01,"Vehicle Fuel Consumption","Missouri","MO",13 +2017-04-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2017-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-04-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-04-01,"Vehicle Fuel Consumption","Utah","UT",29 +2017-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-04-01,"Vehicle Fuel Consumption","Virginia","VA",70 +2017-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",32 +2017-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",33 +2017-04-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2017-04-01,"Vehicle Fuel Consumption","California","CA",2061 +2017-04-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-04-01,"Vehicle Fuel Consumption","New Mexico","NM",17 +2017-04-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2017-04-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2017-04-01,"Vehicle Fuel Consumption","Illinois","IL",15 +2017-04-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2017-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",34 +2017-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2017-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-04-01,"Vehicle Fuel Consumption","North Carolina","NC",80 +2017-04-01,"Vehicle Fuel Consumption","Minnesota","MN",37 +2017-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",3962 +2017-04-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",124 +2017-04-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-04-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-04-01,"Vehicle Fuel Consumption","South Carolina","SC",14 +2017-04-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-04-01,"Vehicle Fuel Consumption","Tennessee","TN",23 +2017-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",131 +2017-04-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2017-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-04-01,"Vehicle Fuel Consumption","Arizona","AZ",129 +2017-04-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2017-04-01,"Vehicle Fuel Consumption","Texas","TX",151 +2017-04-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-04-01,"Vehicle Fuel Consumption","Colorado","CO",70 +2017-05-01,"Commercial Consumption","West Virginia","WV",1218 +2017-05-01,"Commercial Consumption","New Hampshire","NH",425 +2017-05-01,"Commercial Consumption","Texas","TX",11196 +2017-05-01,"Commercial Consumption","Georgia","GA",2594 +2017-05-01,"Commercial Consumption","Indiana","IN",3621 +2017-05-01,"Commercial Consumption","Washington","WA",3506 +2017-05-01,"Commercial Consumption","Minnesota","MN",4852 +2017-05-01,"Commercial Consumption","Colorado","CO",3069 +2017-05-01,"Commercial Consumption","Maryland","MD",4222 +2017-05-01,"Commercial Consumption","Florida","FL",4881 +2017-05-01,"Commercial Consumption","Vermont","VT",332 +2017-05-01,"Commercial Consumption","California","CA",16233 +2017-05-01,"Commercial Consumption","South Carolina","SC",1527 +2017-05-01,"Commercial Consumption","U.S.","U.S.",178502 +2017-05-01,"Commercial Consumption","Ohio","OH",7178 +2017-05-01,"Commercial Consumption","Iowa","IA",2283 +2017-05-01,"Commercial Consumption","Alaska","AK",855 +2017-05-01,"Commercial Consumption","New York","NY",18003 +2017-05-01,"Commercial Consumption","Mississippi","MS",1101 +2017-05-01,"Commercial Consumption","North Carolina","NC",3008 +2017-05-01,"Commercial Consumption","Oregon","OR",1674 +2017-05-01,"Commercial Consumption","Oklahoma","OK",1872 +2017-05-01,"Commercial Consumption","Montana","MT",1095 +2017-05-01,"Commercial Consumption","Kansas","KS",1748 +2017-05-01,"Commercial Consumption","Alabama","AL",1280 +2017-05-01,"Commercial Consumption","Utah","UT",1958 +2017-05-01,"Commercial Consumption","Virginia","VA",3875 +2017-05-01,"Commercial Consumption","Pennsylvania","PA",7325 +2017-05-01,"Commercial Consumption","New Jersey","NJ",8135 +2017-05-01,"Commercial Consumption","Maine","ME",462 +2017-05-01,"Commercial Consumption","Kentucky","KY",1338 +2017-05-01,"Commercial Consumption","Idaho","ID",959 +2017-05-01,"Commercial Consumption","Hawaii","HI",192 +2017-05-01,"Commercial Consumption","Tennessee","TN",2559 +2017-05-01,"Commercial Consumption","Missouri","MO",2851 +2017-05-01,"Commercial Consumption","Massachusetts","MA",5899 +2017-05-01,"Commercial Consumption","Wisconsin","WI",4498 +2017-05-01,"Commercial Consumption","Rhode Island","RI",536 +2017-05-01,"Commercial Consumption","Connecticut","CT",2732 +2017-05-01,"Commercial Consumption","Arizona","AZ",2288 +2017-05-01,"Commercial Consumption","Michigan","MI",8794 +2017-05-01,"Commercial Consumption","Louisiana","LA",2025 +2017-05-01,"Commercial Consumption","Wyoming","WY",938 +2017-05-01,"Commercial Consumption","New Mexico","NM",1259 +2017-05-01,"Commercial Consumption","Delaware","DE",716 +2017-05-01,"Commercial Consumption","Nevada","NV",2189 +2017-05-01,"Commercial Consumption","Illinois","IL",12630 +2017-05-01,"Commercial Consumption","North Dakota","ND",489 +2017-05-01,"Commercial Consumption","South Dakota","SD",488 +2017-05-01,"Commercial Consumption","Arkansas","AR",3089 +2017-05-01,"Commercial Consumption","Nebraska","NE",1497 +2017-05-01,"Commercial Consumption","District of Columbia","DC",1009 +2017-05-01,"Delivered to Consumers","Illinois","IL",57632 +2017-05-01,"Delivered to Consumers","Ohio","OH",53280 +2017-05-01,"Delivered to Consumers","Michigan","MI",51557 +2017-05-01,"Delivered to Consumers","Kentucky","KY",17574 +2017-05-01,"Delivered to Consumers","North Carolina","NC",33826 +2017-05-01,"Delivered to Consumers","Colorado","CO",23305 +2017-05-01,"Delivered to Consumers","Indiana","IN",43954 +2017-05-01,"Delivered to Consumers","South Dakota","SD",5057 +2017-05-01,"Delivered to Consumers","Alabama","AL",49578 +2017-05-01,"Delivered to Consumers","Missouri","MO",14160 +2017-05-01,"Delivered to Consumers","Massachusetts","MA",28053 +2017-05-01,"Delivered to Consumers","New Jersey","NJ",43254 +2017-05-01,"Delivered to Consumers","New Hampshire","NH",3293 +2017-05-01,"Delivered to Consumers","Vermont","VT",679 +2017-05-01,"Delivered to Consumers","Pennsylvania","PA",67625 +2017-05-01,"Delivered to Consumers","Mississippi","MS",42437 +2017-05-01,"Delivered to Consumers","Maine","ME",3244 +2017-05-01,"Delivered to Consumers","Georgia","GA",50663 +2017-05-01,"Delivered to Consumers","Arizona","AZ",24826 +2017-05-01,"Delivered to Consumers","Utah","UT",10620 +2017-05-01,"Delivered to Consumers","Texas","TX",261700 +2017-05-01,"Delivered to Consumers","Oregon","OR",10013 +2017-05-01,"Delivered to Consumers","Washington","WA",15855 +2017-05-01,"Delivered to Consumers","New York","NY",71116 +2017-05-01,"Delivered to Consumers","Hawaii","HI",244 +2017-05-01,"Delivered to Consumers","Connecticut","CT",13238 +2017-05-01,"Delivered to Consumers","Arkansas","AR",24331 +2017-05-01,"Delivered to Consumers","California","CA",143180 +2017-05-01,"Delivered to Consumers","Nevada","NV",20347 +2017-05-01,"Delivered to Consumers","New Mexico","NM",10095 +2017-05-01,"Delivered to Consumers","Wyoming","WY",6172 +2017-05-01,"Delivered to Consumers","Rhode Island","RI",5421 +2017-05-01,"Delivered to Consumers","Maryland","MD",11475 +2017-05-01,"Delivered to Consumers","Alaska","AK",4526 +2017-05-01,"Delivered to Consumers","Virginia","VA",35705 +2017-05-01,"Delivered to Consumers","South Carolina","SC",22960 +2017-05-01,"Delivered to Consumers","Louisiana","LA",117147 +2017-05-01,"Delivered to Consumers","Montana","MT",3463 +2017-05-01,"Delivered to Consumers","Kansas","KS",14121 +2017-05-01,"Delivered to Consumers","Tennessee","TN",18565 +2017-05-01,"Delivered to Consumers","Wisconsin","WI",26153 +2017-05-01,"Delivered to Consumers","Nebraska","NE",10257 +2017-05-01,"Delivered to Consumers","Minnesota","MN",26343 +2017-05-01,"Delivered to Consumers","Florida","FL",123676 +2017-05-01,"Delivered to Consumers","District of Columbia","DC",1560 +2017-05-01,"Delivered to Consumers","U.S.","U.S.",1710548 +2017-05-01,"Delivered to Consumers","Delaware","DE",8784 +2017-05-01,"Delivered to Consumers","West Virginia","WV",5351 +2017-05-01,"Delivered to Consumers","Oklahoma","OK",38458 +2017-05-01,"Delivered to Consumers","Idaho","ID",5077 +2017-05-01,"Delivered to Consumers","Iowa","IA",25904 +2017-05-01,"Delivered to Consumers","North Dakota","ND",4696 +2017-05-01,"Electric Power Consumption","Texas","TX",109734 +2017-05-01,"Electric Power Consumption","Kansas","KS",1230 +2017-05-01,"Electric Power Consumption","Vermont","VT",2 +2017-05-01,"Electric Power Consumption","Nebraska","NE",305 +2017-05-01,"Electric Power Consumption","Hawaii","HI",NA +2017-05-01,"Electric Power Consumption","Delaware","DE",5402 +2017-05-01,"Electric Power Consumption","Missouri","MO",3294 +2017-05-01,"Electric Power Consumption","Alabama","AL",30940 +2017-05-01,"Electric Power Consumption","Louisiana","LA",24692 +2017-05-01,"Electric Power Consumption","South Carolina","SC",13255 +2017-05-01,"Electric Power Consumption","Wisconsin","WI",4568 +2017-05-01,"Electric Power Consumption","Nevada","NV",14568 +2017-05-01,"Electric Power Consumption","Maine","ME",1390 +2017-05-01,"Electric Power Consumption","Kentucky","KY",5858 +2017-05-01,"Electric Power Consumption","Connecticut","CT",6500 +2017-05-01,"Electric Power Consumption","Georgia","GA",30367 +2017-05-01,"Electric Power Consumption","New Jersey","NJ",21366 +2017-05-01,"Electric Power Consumption","Colorado","CO",7211 +2017-05-01,"Electric Power Consumption","Oregon","OR",1436 +2017-05-01,"Electric Power Consumption","Wyoming","WY",58 +2017-05-01,"Electric Power Consumption","Ohio","OH",14845 +2017-05-01,"Electric Power Consumption","Florida","FL",108854 +2017-05-01,"Electric Power Consumption","Washington","WA",2221 +2017-05-01,"Electric Power Consumption","North Dakota","ND",1008 +2017-05-01,"Electric Power Consumption","Montana","MT",300 +2017-05-01,"Electric Power Consumption","Indiana","IN",6326 +2017-05-01,"Electric Power Consumption","Idaho","ID",260 +2017-05-01,"Electric Power Consumption","Massachusetts","MA",12931 +2017-05-01,"Electric Power Consumption","Iowa","IA",1564 +2017-05-01,"Electric Power Consumption","U.S.","U.S.",700059 +2017-05-01,"Electric Power Consumption","New Hampshire","NH",1776 +2017-05-01,"Electric Power Consumption","Alaska","AK",2313 +2017-05-01,"Electric Power Consumption","Virginia","VA",21357 +2017-05-01,"Electric Power Consumption","New Mexico","NM",6131 +2017-05-01,"Electric Power Consumption","Oklahoma","OK",17991 +2017-05-01,"Electric Power Consumption","Michigan","MI",16840 +2017-05-01,"Electric Power Consumption","West Virginia","WV",454 +2017-05-01,"Electric Power Consumption","Tennessee","TN",3232 +2017-05-01,"Electric Power Consumption","South Dakota","SD",405 +2017-05-01,"Electric Power Consumption","North Carolina","NC",20911 +2017-05-01,"Electric Power Consumption","Arizona","AZ",19064 +2017-05-01,"Electric Power Consumption","California","CA",35197 +2017-05-01,"Electric Power Consumption","Arkansas","AR",12067 +2017-05-01,"Electric Power Consumption","New York","NY",26888 +2017-05-01,"Electric Power Consumption","Rhode Island","RI",3412 +2017-05-01,"Electric Power Consumption","Utah","UT",2494 +2017-05-01,"Electric Power Consumption","Minnesota","MN",3549 +2017-05-01,"Electric Power Consumption","Illinois","IL",8820 +2017-05-01,"Electric Power Consumption","Pennsylvania","PA",33817 +2017-05-01,"Electric Power Consumption","Mississippi","MS",29864 +2017-05-01,"Electric Power Consumption","Maryland","MD",2992 +2017-05-01,"Industrial Consumption","Hawaii","HI",7 +2017-05-01,"Industrial Consumption","Maine","ME",1257 +2017-05-01,"Industrial Consumption","Michigan","MI",12224 +2017-05-01,"Industrial Consumption","Kentucky","KY",9187 +2017-05-01,"Industrial Consumption","South Dakota","SD",3682 +2017-05-01,"Industrial Consumption","Kansas","KS",9325 +2017-05-01,"Industrial Consumption","Nevada","NV",1470 +2017-05-01,"Industrial Consumption","South Carolina","SC",7480 +2017-05-01,"Industrial Consumption","Nebraska","NE",6929 +2017-05-01,"Industrial Consumption","Wyoming","WY",4379 +2017-05-01,"Industrial Consumption","Florida","FL",8566 +2017-05-01,"Industrial Consumption","Maryland","MD",1236 +2017-05-01,"Industrial Consumption","Oklahoma","OK",16581 +2017-05-01,"Industrial Consumption","Missouri","MO",4682 +2017-05-01,"Industrial Consumption","Louisiana","LA",88967 +2017-05-01,"Industrial Consumption","Colorado","CO",6689 +2017-05-01,"Industrial Consumption","New York","NY",5520 +2017-05-01,"Industrial Consumption","Virginia","VA",7899 +2017-05-01,"Industrial Consumption","Wisconsin","WI",11085 +2017-05-01,"Industrial Consumption","New Jersey","NJ",4364 +2017-05-01,"Industrial Consumption","New Hampshire","NH",755 +2017-05-01,"Industrial Consumption","District of Columbia","DC",NA +2017-05-01,"Industrial Consumption","North Dakota","ND",2852 +2017-05-01,"Industrial Consumption","Massachusetts","MA",3263 +2017-05-01,"Industrial Consumption","New Mexico","NM",1278 +2017-05-01,"Industrial Consumption","Oregon","OR",4751 +2017-05-01,"Industrial Consumption","Connecticut","CT",1756 +2017-05-01,"Industrial Consumption","Georgia","GA",12597 +2017-05-01,"Industrial Consumption","Alaska","AK",374 +2017-05-01,"Industrial Consumption","Washington","WA",6065 +2017-05-01,"Industrial Consumption","Vermont","VT",158 +2017-05-01,"Industrial Consumption","Tennessee","TN",11029 +2017-05-01,"Industrial Consumption","Iowa","IA",19616 +2017-05-01,"Industrial Consumption","North Carolina","NC",8310 +2017-05-01,"Industrial Consumption","Ohio","OH",21225 +2017-05-01,"Industrial Consumption","California","CA",62367 +2017-05-01,"Industrial Consumption","Arkansas","AR",8219 +2017-05-01,"Industrial Consumption","Alabama","AL",16426 +2017-05-01,"Industrial Consumption","Delaware","DE",2316 +2017-05-01,"Industrial Consumption","Rhode Island","RI",666 +2017-05-01,"Industrial Consumption","Montana","MT",1166 +2017-05-01,"Industrial Consumption","Texas","TX",132867 +2017-05-01,"Industrial Consumption","Minnesota","MN",12861 +2017-05-01,"Industrial Consumption","Idaho","ID",2739 +2017-05-01,"Industrial Consumption","Illinois","IL",19184 +2017-05-01,"Industrial Consumption","Arizona","AZ",1560 +2017-05-01,"Industrial Consumption","Utah","UT",3247 +2017-05-01,"Industrial Consumption","U.S.","U.S.",628407 +2017-05-01,"Industrial Consumption","Pennsylvania","PA",16859 +2017-05-01,"Industrial Consumption","Mississippi","MS",10742 +2017-05-01,"Industrial Consumption","West Virginia","WV",2920 +2017-05-01,"Industrial Consumption","Indiana","IN",28710 +2017-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",131738 +2017-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",49723 +2017-05-01,"Residential Consumption","Ohio","OH",9987 +2017-05-01,"Residential Consumption","North Carolina","NC",1514 +2017-05-01,"Residential Consumption","Connecticut","CT",2231 +2017-05-01,"Residential Consumption","Virginia","VA",2501 +2017-05-01,"Residential Consumption","Maryland","MD",2993 +2017-05-01,"Residential Consumption","North Dakota","ND",347 +2017-05-01,"Residential Consumption","Idaho","ID",1114 +2017-05-01,"Residential Consumption","Arizona","AZ",1782 +2017-05-01,"Residential Consumption","South Carolina","SC",683 +2017-05-01,"Residential Consumption","Oregon","OR",2148 +2017-05-01,"Residential Consumption","Kentucky","KY",1188 +2017-05-01,"Residential Consumption","Alaska","AK",983 +2017-05-01,"Residential Consumption","Iowa","IA",2437 +2017-05-01,"Residential Consumption","Hawaii","HI",44 +2017-05-01,"Residential Consumption","Utah","UT",2890 +2017-05-01,"Residential Consumption","Minnesota","MN",5044 +2017-05-01,"Residential Consumption","Maine","ME",135 +2017-05-01,"Residential Consumption","Florida","FL",1060 +2017-05-01,"Residential Consumption","Colorado","CO",6264 +2017-05-01,"Residential Consumption","Alabama","AL",925 +2017-05-01,"Residential Consumption","Texas","TX",7747 +2017-05-01,"Residential Consumption","Rhode Island","RI",798 +2017-05-01,"Residential Consumption","Michigan","MI",13699 +2017-05-01,"Residential Consumption","Massachusetts","MA",5950 +2017-05-01,"Residential Consumption","New Hampshire","NH",338 +2017-05-01,"Residential Consumption","Kansas","KS",1777 +2017-05-01,"Residential Consumption","Oklahoma","OK",1879 +2017-05-01,"Residential Consumption","Delaware","DE",350 +2017-05-01,"Residential Consumption","Wyoming","WY",796 +2017-05-01,"Residential Consumption","Illinois","IL",16983 +2017-05-01,"Residential Consumption","Mississippi","MS",728 +2017-05-01,"Residential Consumption","Louisiana","LA",1430 +2017-05-01,"Residential Consumption","Nebraska","NE",1512 +2017-05-01,"Residential Consumption","Arkansas","AR",952 +2017-05-01,"Residential Consumption","California","CA",27253 +2017-05-01,"Residential Consumption","U.S.","U.S.",199486 +2017-05-01,"Residential Consumption","South Dakota","SD",482 +2017-05-01,"Residential Consumption","Georgia","GA",4933 +2017-05-01,"Residential Consumption","District of Columbia","DC",518 +2017-05-01,"Residential Consumption","New Mexico","NM",1409 +2017-05-01,"Residential Consumption","Montana","MT",902 +2017-05-01,"Residential Consumption","Missouri","MO",3319 +2017-05-01,"Residential Consumption","Wisconsin","WI",5967 +2017-05-01,"Residential Consumption","Tennessee","TN",1721 +2017-05-01,"Residential Consumption","Nevada","NV",2022 +2017-05-01,"Residential Consumption","New Jersey","NJ",9356 +2017-05-01,"Residential Consumption","New York","NY",20619 +2017-05-01,"Residential Consumption","Vermont","VT",187 +2017-05-01,"Residential Consumption","Pennsylvania","PA",9495 +2017-05-01,"Residential Consumption","Indiana","IN",5289 +2017-05-01,"Residential Consumption","Washington","WA",4046 +2017-05-01,"Residential Consumption","West Virginia","WV",758 +2017-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-05-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2017-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2017-05-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2017-05-01,"Vehicle Fuel Consumption","Kansas","KS",41 +2017-05-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2017-05-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-05-01,"Vehicle Fuel Consumption","California","CA",2129 +2017-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",4094 +2017-05-01,"Vehicle Fuel Consumption","Utah","UT",30 +2017-05-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2017-05-01,"Vehicle Fuel Consumption","New York","NY",86 +2017-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-05-01,"Vehicle Fuel Consumption","Colorado","CO",73 +2017-05-01,"Vehicle Fuel Consumption","Ohio","OH",45 +2017-05-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-05-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2017-05-01,"Vehicle Fuel Consumption","South Carolina","SC",15 +2017-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-05-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-05-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-05-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2017-05-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2017-05-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-05-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2017-05-01,"Vehicle Fuel Consumption","Florida","FL",314 +2017-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2017-05-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2017-05-01,"Vehicle Fuel Consumption","Indiana","IN",9 +2017-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-05-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2017-05-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-05-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2017-05-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2017-05-01,"Vehicle Fuel Consumption","Georgia","GA",171 +2017-05-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-05-01,"Vehicle Fuel Consumption","Illinois","IL",16 +2017-05-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",35 +2017-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",136 +2017-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",33 +2017-05-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2017-05-01,"Vehicle Fuel Consumption","Texas","TX",156 +2017-05-01,"Vehicle Fuel Consumption","North Carolina","NC",83 +2017-05-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-06-01,"Commercial Consumption","North Dakota","ND",320 +2017-06-01,"Commercial Consumption","Oregon","OR",1195 +2017-06-01,"Commercial Consumption","Montana","MT",753 +2017-06-01,"Commercial Consumption","Kentucky","KY",1101 +2017-06-01,"Commercial Consumption","Georgia","GA",2215 +2017-06-01,"Commercial Consumption","Florida","FL",4646 +2017-06-01,"Commercial Consumption","Ohio","OH",5036 +2017-06-01,"Commercial Consumption","Idaho","ID",719 +2017-06-01,"Commercial Consumption","Hawaii","HI",214 +2017-06-01,"Commercial Consumption","South Carolina","SC",1284 +2017-06-01,"Commercial Consumption","Minnesota","MN",3116 +2017-06-01,"Commercial Consumption","Utah","UT",1727 +2017-06-01,"Commercial Consumption","Pennsylvania","PA",5071 +2017-06-01,"Commercial Consumption","Maryland","MD",3035 +2017-06-01,"Commercial Consumption","New York","NY",14482 +2017-06-01,"Commercial Consumption","Mississippi","MS",903 +2017-06-01,"Commercial Consumption","Indiana","IN",2437 +2017-06-01,"Commercial Consumption","Illinois","IL",7561 +2017-06-01,"Commercial Consumption","West Virginia","WV",1017 +2017-06-01,"Commercial Consumption","North Carolina","NC",2394 +2017-06-01,"Commercial Consumption","Alabama","AL",1080 +2017-06-01,"Commercial Consumption","Delaware","DE",558 +2017-06-01,"Commercial Consumption","Arizona","AZ",1969 +2017-06-01,"Commercial Consumption","Wyoming","WY",520 +2017-06-01,"Commercial Consumption","Oklahoma","OK",1551 +2017-06-01,"Commercial Consumption","U.S.","U.S.",138039 +2017-06-01,"Commercial Consumption","Vermont","VT",194 +2017-06-01,"Commercial Consumption","Iowa","IA",1752 +2017-06-01,"Commercial Consumption","California","CA",14780 +2017-06-01,"Commercial Consumption","Virginia","VA",2988 +2017-06-01,"Commercial Consumption","Massachusetts","MA",3992 +2017-06-01,"Commercial Consumption","Maine","ME",306 +2017-06-01,"Commercial Consumption","Kansas","KS",1546 +2017-06-01,"Commercial Consumption","Rhode Island","RI",297 +2017-06-01,"Commercial Consumption","Alaska","AK",530 +2017-06-01,"Commercial Consumption","Nebraska","NE",1189 +2017-06-01,"Commercial Consumption","Nevada","NV",1908 +2017-06-01,"Commercial Consumption","Michigan","MI",5967 +2017-06-01,"Commercial Consumption","Washington","WA",2464 +2017-06-01,"Commercial Consumption","New Jersey","NJ",6463 +2017-06-01,"Commercial Consumption","Texas","TX",10164 +2017-06-01,"Commercial Consumption","District of Columbia","DC",847 +2017-06-01,"Commercial Consumption","Colorado","CO",1741 +2017-06-01,"Commercial Consumption","New Mexico","NM",997 +2017-06-01,"Commercial Consumption","Missouri","MO",2248 +2017-06-01,"Commercial Consumption","South Dakota","SD",341 +2017-06-01,"Commercial Consumption","New Hampshire","NH",239 +2017-06-01,"Commercial Consumption","Connecticut","CT",2313 +2017-06-01,"Commercial Consumption","Tennessee","TN",2122 +2017-06-01,"Commercial Consumption","Louisiana","LA",1926 +2017-06-01,"Commercial Consumption","Wisconsin","WI",3068 +2017-06-01,"Commercial Consumption","Arkansas","AR",2750 +2017-06-01,"Delivered to Consumers","U.S.","U.S.",1731387 +2017-06-01,"Delivered to Consumers","New Mexico","NM",11223 +2017-06-01,"Delivered to Consumers","Illinois","IL",49978 +2017-06-01,"Delivered to Consumers","Iowa","IA",24158 +2017-06-01,"Delivered to Consumers","Arkansas","AR",23464 +2017-06-01,"Delivered to Consumers","Wisconsin","WI",23977 +2017-06-01,"Delivered to Consumers","California","CA",147222 +2017-06-01,"Delivered to Consumers","District of Columbia","DC",1219 +2017-06-01,"Delivered to Consumers","Oregon","OR",9090 +2017-06-01,"Delivered to Consumers","Nevada","NV",24322 +2017-06-01,"Delivered to Consumers","Georgia","GA",51547 +2017-06-01,"Delivered to Consumers","North Dakota","ND",4303 +2017-06-01,"Delivered to Consumers","Florida","FL",120873 +2017-06-01,"Delivered to Consumers","Rhode Island","RI",5289 +2017-06-01,"Delivered to Consumers","Montana","MT",2986 +2017-06-01,"Delivered to Consumers","Oklahoma","OK",42803 +2017-06-01,"Delivered to Consumers","Connecticut","CT",13382 +2017-06-01,"Delivered to Consumers","Maine","ME",3072 +2017-06-01,"Delivered to Consumers","Washington","WA",12537 +2017-06-01,"Delivered to Consumers","Vermont","VT",485 +2017-06-01,"Delivered to Consumers","North Carolina","NC",34441 +2017-06-01,"Delivered to Consumers","New Hampshire","NH",3598 +2017-06-01,"Delivered to Consumers","Minnesota","MN",23730 +2017-06-01,"Delivered to Consumers","Wyoming","WY",5002 +2017-06-01,"Delivered to Consumers","Maryland","MD",10393 +2017-06-01,"Delivered to Consumers","Hawaii","HI",270 +2017-06-01,"Delivered to Consumers","Michigan","MI",41389 +2017-06-01,"Delivered to Consumers","Nebraska","NE",8916 +2017-06-01,"Delivered to Consumers","New Jersey","NJ",44358 +2017-06-01,"Delivered to Consumers","Arizona","AZ",32417 +2017-06-01,"Delivered to Consumers","Indiana","IN",41905 +2017-06-01,"Delivered to Consumers","Delaware","DE",8351 +2017-06-01,"Delivered to Consumers","Virginia","VA",44730 +2017-06-01,"Delivered to Consumers","Pennsylvania","PA",70849 +2017-06-01,"Delivered to Consumers","Mississippi","MS",41370 +2017-06-01,"Delivered to Consumers","Missouri","MO",13672 +2017-06-01,"Delivered to Consumers","Colorado","CO",18915 +2017-06-01,"Delivered to Consumers","Utah","UT",10729 +2017-06-01,"Delivered to Consumers","West Virginia","WV",5277 +2017-06-01,"Delivered to Consumers","New York","NY",71055 +2017-06-01,"Delivered to Consumers","Idaho","ID",4426 +2017-06-01,"Delivered to Consumers","Ohio","OH",45361 +2017-06-01,"Delivered to Consumers","Kentucky","KY",17948 +2017-06-01,"Delivered to Consumers","Alabama","AL",48967 +2017-06-01,"Delivered to Consumers","Texas","TX",301718 +2017-06-01,"Delivered to Consumers","South Carolina","SC",20558 +2017-06-01,"Delivered to Consumers","South Dakota","SD",4923 +2017-06-01,"Delivered to Consumers","Alaska","AK",3758 +2017-06-01,"Delivered to Consumers","Kansas","KS",15593 +2017-06-01,"Delivered to Consumers","Tennessee","TN",20852 +2017-06-01,"Delivered to Consumers","Massachusetts","MA",25689 +2017-06-01,"Delivered to Consumers","Louisiana","LA",118297 +2017-06-01,"Electric Power Consumption","Louisiana","LA",26740 +2017-06-01,"Electric Power Consumption","Vermont","VT",1 +2017-06-01,"Electric Power Consumption","North Carolina","NC",22821 +2017-06-01,"Electric Power Consumption","Missouri","MO",5176 +2017-06-01,"Electric Power Consumption","Illinois","IL",15881 +2017-06-01,"Electric Power Consumption","Wyoming","WY",92 +2017-06-01,"Electric Power Consumption","Montana","MT",279 +2017-06-01,"Electric Power Consumption","Connecticut","CT",7981 +2017-06-01,"Electric Power Consumption","Florida","FL",107190 +2017-06-01,"Electric Power Consumption","Virginia","VA",32025 +2017-06-01,"Electric Power Consumption","South Carolina","SC",11530 +2017-06-01,"Electric Power Consumption","New York","NY",37181 +2017-06-01,"Electric Power Consumption","West Virginia","WV",937 +2017-06-01,"Electric Power Consumption","Tennessee","TN",6903 +2017-06-01,"Electric Power Consumption","Hawaii","HI",NA +2017-06-01,"Electric Power Consumption","Delaware","DE",5162 +2017-06-01,"Electric Power Consumption","New Mexico","NM",8037 +2017-06-01,"Electric Power Consumption","Colorado","CO",8751 +2017-06-01,"Electric Power Consumption","Texas","TX",145864 +2017-06-01,"Electric Power Consumption","Kansas","KS",2527 +2017-06-01,"Electric Power Consumption","Pennsylvania","PA",44546 +2017-06-01,"Electric Power Consumption","Ohio","OH",16191 +2017-06-01,"Electric Power Consumption","New Hampshire","NH",2505 +2017-06-01,"Electric Power Consumption","Indiana","IN",9991 +2017-06-01,"Electric Power Consumption","Arizona","AZ",27646 +2017-06-01,"Electric Power Consumption","California","CA",49186 +2017-06-01,"Electric Power Consumption","Washington","WA",1878 +2017-06-01,"Electric Power Consumption","New Jersey","NJ",27193 +2017-06-01,"Electric Power Consumption","Minnesota","MN",4957 +2017-06-01,"Electric Power Consumption","South Dakota","SD",731 +2017-06-01,"Electric Power Consumption","Alabama","AL",31237 +2017-06-01,"Electric Power Consumption","Idaho","ID",651 +2017-06-01,"Electric Power Consumption","Arkansas","AR",12326 +2017-06-01,"Electric Power Consumption","Rhode Island","RI",3861 +2017-06-01,"Electric Power Consumption","Nevada","NV",19238 +2017-06-01,"Electric Power Consumption","U.S.","U.S.",851035 +2017-06-01,"Electric Power Consumption","Nebraska","NE",587 +2017-06-01,"Electric Power Consumption","Mississippi","MS",29832 +2017-06-01,"Electric Power Consumption","Kentucky","KY",7610 +2017-06-01,"Electric Power Consumption","Alaska","AK",2230 +2017-06-01,"Electric Power Consumption","Utah","UT",3635 +2017-06-01,"Electric Power Consumption","Michigan","MI",18713 +2017-06-01,"Electric Power Consumption","Massachusetts","MA",15683 +2017-06-01,"Electric Power Consumption","Maine","ME",1491 +2017-06-01,"Electric Power Consumption","Oklahoma","OK",23941 +2017-06-01,"Electric Power Consumption","Oregon","OR",2162 +2017-06-01,"Electric Power Consumption","Wisconsin","WI",8088 +2017-06-01,"Electric Power Consumption","Iowa","IA",2086 +2017-06-01,"Electric Power Consumption","North Dakota","ND",1041 +2017-06-01,"Electric Power Consumption","Maryland","MD",4239 +2017-06-01,"Electric Power Consumption","Georgia","GA",32482 +2017-06-01,"Industrial Consumption","Maryland","MD",1299 +2017-06-01,"Industrial Consumption","Washington","WA",5952 +2017-06-01,"Industrial Consumption","Ohio","OH",18754 +2017-06-01,"Industrial Consumption","Alabama","AL",15929 +2017-06-01,"Industrial Consumption","Florida","FL",7852 +2017-06-01,"Industrial Consumption","Georgia","GA",12581 +2017-06-01,"Industrial Consumption","Massachusetts","MA",2705 +2017-06-01,"Industrial Consumption","Louisiana","LA",88312 +2017-06-01,"Industrial Consumption","Colorado","CO",5397 +2017-06-01,"Industrial Consumption","New Mexico","NM",1221 +2017-06-01,"Industrial Consumption","New Jersey","NJ",4483 +2017-06-01,"Industrial Consumption","Texas","TX",139718 +2017-06-01,"Industrial Consumption","Virginia","VA",7849 +2017-06-01,"Industrial Consumption","Wisconsin","WI",9993 +2017-06-01,"Industrial Consumption","Tennessee","TN",10636 +2017-06-01,"Industrial Consumption","Idaho","ID",2453 +2017-06-01,"Industrial Consumption","North Carolina","NC",8108 +2017-06-01,"Industrial Consumption","District of Columbia","DC",NA +2017-06-01,"Industrial Consumption","South Dakota","SD",3586 +2017-06-01,"Industrial Consumption","Utah","UT",3112 +2017-06-01,"Industrial Consumption","South Carolina","SC",7182 +2017-06-01,"Industrial Consumption","Vermont","VT",158 +2017-06-01,"Industrial Consumption","Minnesota","MN",12624 +2017-06-01,"Industrial Consumption","Hawaii","HI",7 +2017-06-01,"Industrial Consumption","Mississippi","MS",10107 +2017-06-01,"Industrial Consumption","California","CA",60310 +2017-06-01,"Industrial Consumption","North Dakota","ND",2752 +2017-06-01,"Industrial Consumption","Oklahoma","OK",15879 +2017-06-01,"Industrial Consumption","Arizona","AZ",1348 +2017-06-01,"Industrial Consumption","U.S.","U.S.",614294 +2017-06-01,"Industrial Consumption","Pennsylvania","PA",16009 +2017-06-01,"Industrial Consumption","West Virginia","WV",2997 +2017-06-01,"Industrial Consumption","Michigan","MI",10652 +2017-06-01,"Industrial Consumption","Illinois","IL",17339 +2017-06-01,"Industrial Consumption","Kansas","KS",10251 +2017-06-01,"Industrial Consumption","New York","NY",5450 +2017-06-01,"Industrial Consumption","Arkansas","AR",7765 +2017-06-01,"Industrial Consumption","Wyoming","WY",4017 +2017-06-01,"Industrial Consumption","Indiana","IN",27053 +2017-06-01,"Industrial Consumption","Delaware","DE",2424 +2017-06-01,"Industrial Consumption","Rhode Island","RI",660 +2017-06-01,"Industrial Consumption","Alaska","AK",341 +2017-06-01,"Industrial Consumption","Montana","MT",1480 +2017-06-01,"Industrial Consumption","Missouri","MO",4330 +2017-06-01,"Industrial Consumption","Oregon","OR",4401 +2017-06-01,"Industrial Consumption","Nevada","NV",1482 +2017-06-01,"Industrial Consumption","Maine","ME",1200 +2017-06-01,"Industrial Consumption","Nebraska","NE",6271 +2017-06-01,"Industrial Consumption","New Hampshire","NH",678 +2017-06-01,"Industrial Consumption","Iowa","IA",19040 +2017-06-01,"Industrial Consumption","Connecticut","CT",1691 +2017-06-01,"Industrial Consumption","Kentucky","KY",8457 +2017-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",128725 +2017-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",50330 +2017-06-01,"Residential Consumption","Texas","TX",5821 +2017-06-01,"Residential Consumption","Ohio","OH",5336 +2017-06-01,"Residential Consumption","Virginia","VA",1798 +2017-06-01,"Residential Consumption","Maryland","MD",1789 +2017-06-01,"Residential Consumption","District of Columbia","DC",340 +2017-06-01,"Residential Consumption","New Mexico","NM",951 +2017-06-01,"Residential Consumption","Arkansas","AR",620 +2017-06-01,"Residential Consumption","Mississippi","MS",526 +2017-06-01,"Residential Consumption","Nevada","NV",1600 +2017-06-01,"Residential Consumption","Indiana","IN",2415 +2017-06-01,"Residential Consumption","Montana","MT",474 +2017-06-01,"Residential Consumption","Kentucky","KY",777 +2017-06-01,"Residential Consumption","Colorado","CO",2955 +2017-06-01,"Residential Consumption","Wyoming","WY",372 +2017-06-01,"Residential Consumption","West Virginia","WV",325 +2017-06-01,"Residential Consumption","Oregon","OR",1326 +2017-06-01,"Residential Consumption","Utah","UT",2227 +2017-06-01,"Residential Consumption","Washington","WA",2226 +2017-06-01,"Residential Consumption","Oklahoma","OK",1300 +2017-06-01,"Residential Consumption","Alaska","AK",656 +2017-06-01,"Residential Consumption","New York","NY",13858 +2017-06-01,"Residential Consumption","South Carolina","SC",547 +2017-06-01,"Residential Consumption","Connecticut","CT",1380 +2017-06-01,"Residential Consumption","Nebraska","NE",857 +2017-06-01,"Residential Consumption","Kansas","KS",1229 +2017-06-01,"Residential Consumption","Vermont","VT",131 +2017-06-01,"Residential Consumption","South Dakota","SD",265 +2017-06-01,"Residential Consumption","U.S.","U.S.",124057 +2017-06-01,"Residential Consumption","North Carolina","NC",1039 +2017-06-01,"Residential Consumption","Hawaii","HI",49 +2017-06-01,"Residential Consumption","Michigan","MI",6056 +2017-06-01,"Residential Consumption","Georgia","GA",4103 +2017-06-01,"Residential Consumption","Florida","FL",880 +2017-06-01,"Residential Consumption","New Hampshire","NH",176 +2017-06-01,"Residential Consumption","Alabama","AL",713 +2017-06-01,"Residential Consumption","Illinois","IL",9182 +2017-06-01,"Residential Consumption","Rhode Island","RI",462 +2017-06-01,"Residential Consumption","Wisconsin","WI",2795 +2017-06-01,"Residential Consumption","Maine","ME",76 +2017-06-01,"Residential Consumption","Massachusetts","MA",3299 +2017-06-01,"Residential Consumption","New Jersey","NJ",6185 +2017-06-01,"Residential Consumption","Missouri","MO",1904 +2017-06-01,"Residential Consumption","Delaware","DE",207 +2017-06-01,"Residential Consumption","Louisiana","LA",1288 +2017-06-01,"Residential Consumption","Iowa","IA",1276 +2017-06-01,"Residential Consumption","Tennessee","TN",1168 +2017-06-01,"Residential Consumption","Minnesota","MN",2997 +2017-06-01,"Residential Consumption","Pennsylvania","PA",5099 +2017-06-01,"Residential Consumption","North Dakota","ND",190 +2017-06-01,"Residential Consumption","Idaho","ID",599 +2017-06-01,"Residential Consumption","California","CA",20886 +2017-06-01,"Residential Consumption","Arizona","AZ",1325 +2017-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-06-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2017-06-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2017-06-01,"Vehicle Fuel Consumption","Florida","FL",304 +2017-06-01,"Vehicle Fuel Consumption","Missouri","MO",13 +2017-06-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2017-06-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-06-01,"Vehicle Fuel Consumption","North Carolina","NC",80 +2017-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-06-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",124 +2017-06-01,"Vehicle Fuel Consumption","Texas","TX",151 +2017-06-01,"Vehicle Fuel Consumption","Louisiana","LA",32 +2017-06-01,"Vehicle Fuel Consumption","Minnesota","MN",37 +2017-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-06-01,"Vehicle Fuel Consumption","Utah","UT",29 +2017-06-01,"Vehicle Fuel Consumption","Tennessee","TN",23 +2017-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",32 +2017-06-01,"Vehicle Fuel Consumption","Arizona","AZ",129 +2017-06-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2017-06-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2017-06-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2017-06-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-06-01,"Vehicle Fuel Consumption","Georgia","GA",166 +2017-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-06-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-06-01,"Vehicle Fuel Consumption","Virginia","VA",70 +2017-06-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2017-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-06-01,"Vehicle Fuel Consumption","South Carolina","SC",14 +2017-06-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-06-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",34 +2017-06-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-06-01,"Vehicle Fuel Consumption","Illinois","IL",15 +2017-06-01,"Vehicle Fuel Consumption","California","CA",2061 +2017-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",3962 +2017-06-01,"Vehicle Fuel Consumption","New Mexico","NM",17 +2017-06-01,"Vehicle Fuel Consumption","New York","NY",83 +2017-06-01,"Vehicle Fuel Consumption","Kansas","KS",40 +2017-06-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",33 +2017-06-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-06-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2017-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",131 +2017-06-01,"Vehicle Fuel Consumption","Colorado","CO",70 +2017-06-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-07-01,"Commercial Consumption","Minnesota","MN",2859 +2017-07-01,"Commercial Consumption","Colorado","CO",1640 +2017-07-01,"Commercial Consumption","Virginia","VA",3358 +2017-07-01,"Commercial Consumption","California","CA",15170 +2017-07-01,"Commercial Consumption","New York","NY",14117 +2017-07-01,"Commercial Consumption","Mississippi","MS",893 +2017-07-01,"Commercial Consumption","Michigan","MI",5046 +2017-07-01,"Commercial Consumption","Indiana","IN",2231 +2017-07-01,"Commercial Consumption","Kentucky","KY",1042 +2017-07-01,"Commercial Consumption","U.S.","U.S.",133651 +2017-07-01,"Commercial Consumption","Hawaii","HI",194 +2017-07-01,"Commercial Consumption","Arizona","AZ",1865 +2017-07-01,"Commercial Consumption","Massachusetts","MA",3872 +2017-07-01,"Commercial Consumption","South Dakota","SD",302 +2017-07-01,"Commercial Consumption","Nebraska","NE",1035 +2017-07-01,"Commercial Consumption","Oklahoma","OK",1449 +2017-07-01,"Commercial Consumption","New Hampshire","NH",192 +2017-07-01,"Commercial Consumption","Maryland","MD",3544 +2017-07-01,"Commercial Consumption","Idaho","ID",705 +2017-07-01,"Commercial Consumption","Nevada","NV",1758 +2017-07-01,"Commercial Consumption","New Mexico","NM",1048 +2017-07-01,"Commercial Consumption","New Jersey","NJ",5573 +2017-07-01,"Commercial Consumption","Maine","ME",289 +2017-07-01,"Commercial Consumption","Iowa","IA",1597 +2017-07-01,"Commercial Consumption","Illinois","IL",7683 +2017-07-01,"Commercial Consumption","North Carolina","NC",2628 +2017-07-01,"Commercial Consumption","Texas","TX",10416 +2017-07-01,"Commercial Consumption","Vermont","VT",292 +2017-07-01,"Commercial Consumption","Rhode Island","RI",262 +2017-07-01,"Commercial Consumption","Ohio","OH",4675 +2017-07-01,"Commercial Consumption","Arkansas","AR",2707 +2017-07-01,"Commercial Consumption","Louisiana","LA",1791 +2017-07-01,"Commercial Consumption","Wyoming","WY",409 +2017-07-01,"Commercial Consumption","West Virginia","WV",966 +2017-07-01,"Commercial Consumption","South Carolina","SC",1406 +2017-07-01,"Commercial Consumption","Utah","UT",1281 +2017-07-01,"Commercial Consumption","Missouri","MO",2089 +2017-07-01,"Commercial Consumption","Montana","MT",670 +2017-07-01,"Commercial Consumption","Georgia","GA",2165 +2017-07-01,"Commercial Consumption","Florida","FL",4395 +2017-07-01,"Commercial Consumption","Alabama","AL",1046 +2017-07-01,"Commercial Consumption","Delaware","DE",496 +2017-07-01,"Commercial Consumption","Tennessee","TN",2050 +2017-07-01,"Commercial Consumption","Washington","WA",2222 +2017-07-01,"Commercial Consumption","North Dakota","ND",307 +2017-07-01,"Commercial Consumption","Oregon","OR",890 +2017-07-01,"Commercial Consumption","Pennsylvania","PA",4816 +2017-07-01,"Commercial Consumption","Wisconsin","WI",2882 +2017-07-01,"Commercial Consumption","Kansas","KS",1552 +2017-07-01,"Commercial Consumption","Alaska","AK",500 +2017-07-01,"Commercial Consumption","Connecticut","CT",2437 +2017-07-01,"Commercial Consumption","District of Columbia","DC",835 +2017-07-01,"Delivered to Consumers","Vermont","VT",532 +2017-07-01,"Delivered to Consumers","Illinois","IL",56473 +2017-07-01,"Delivered to Consumers","Rhode Island","RI",7030 +2017-07-01,"Delivered to Consumers","New York","NY",77339 +2017-07-01,"Delivered to Consumers","Alaska","AK",3640 +2017-07-01,"Delivered to Consumers","Texas","TX",342023 +2017-07-01,"Delivered to Consumers","New Jersey","NJ",46435 +2017-07-01,"Delivered to Consumers","Washington","WA",19349 +2017-07-01,"Delivered to Consumers","New Hampshire","NH",3935 +2017-07-01,"Delivered to Consumers","U.S.","U.S.",1950510 +2017-07-01,"Delivered to Consumers","Hawaii","HI",244 +2017-07-01,"Delivered to Consumers","Connecticut","CT",16267 +2017-07-01,"Delivered to Consumers","Wisconsin","WI",28388 +2017-07-01,"Delivered to Consumers","Nebraska","NE",10949 +2017-07-01,"Delivered to Consumers","Wyoming","WY",4834 +2017-07-01,"Delivered to Consumers","South Dakota","SD",5236 +2017-07-01,"Delivered to Consumers","Maryland","MD",11948 +2017-07-01,"Delivered to Consumers","Iowa","IA",26158 +2017-07-01,"Delivered to Consumers","Alabama","AL",58939 +2017-07-01,"Delivered to Consumers","Missouri","MO",15339 +2017-07-01,"Delivered to Consumers","Massachusetts","MA",27329 +2017-07-01,"Delivered to Consumers","Oregon","OR",17357 +2017-07-01,"Delivered to Consumers","Nevada","NV",27545 +2017-07-01,"Delivered to Consumers","Maine","ME",3411 +2017-07-01,"Delivered to Consumers","Arizona","AZ",38717 +2017-07-01,"Delivered to Consumers","Ohio","OH",48501 +2017-07-01,"Delivered to Consumers","North Carolina","NC",37775 +2017-07-01,"Delivered to Consumers","Louisiana","LA",123998 +2017-07-01,"Delivered to Consumers","Idaho","ID",6517 +2017-07-01,"Delivered to Consumers","Michigan","MI",43331 +2017-07-01,"Delivered to Consumers","Mississippi","MS",49569 +2017-07-01,"Delivered to Consumers","New Mexico","NM",12233 +2017-07-01,"Delivered to Consumers","Montana","MT",3366 +2017-07-01,"Delivered to Consumers","Kansas","KS",17810 +2017-07-01,"Delivered to Consumers","Kentucky","KY",20685 +2017-07-01,"Delivered to Consumers","North Dakota","ND",3458 +2017-07-01,"Delivered to Consumers","Utah","UT",11208 +2017-07-01,"Delivered to Consumers","Indiana","IN",45742 +2017-07-01,"Delivered to Consumers","West Virginia","WV",5740 +2017-07-01,"Delivered to Consumers","Oklahoma","OK",53668 +2017-07-01,"Delivered to Consumers","Arkansas","AR",26921 +2017-07-01,"Delivered to Consumers","Virginia","VA",46923 +2017-07-01,"Delivered to Consumers","Pennsylvania","PA",82879 +2017-07-01,"Delivered to Consumers","California","CA",167736 +2017-07-01,"Delivered to Consumers","South Carolina","SC",22460 +2017-07-01,"Delivered to Consumers","Georgia","GA",55516 +2017-07-01,"Delivered to Consumers","District of Columbia","DC",1161 +2017-07-01,"Delivered to Consumers","Delaware","DE",8942 +2017-07-01,"Delivered to Consumers","Tennessee","TN",21801 +2017-07-01,"Delivered to Consumers","Colorado","CO",22110 +2017-07-01,"Delivered to Consumers","Minnesota","MN",24605 +2017-07-01,"Delivered to Consumers","Florida","FL",136438 +2017-07-01,"Electric Power Consumption","New Mexico","NM",9063 +2017-07-01,"Electric Power Consumption","Oklahoma","OK",35229 +2017-07-01,"Electric Power Consumption","Oregon","OR",11462 +2017-07-01,"Electric Power Consumption","Minnesota","MN",7185 +2017-07-01,"Electric Power Consumption","Mississippi","MS",38129 +2017-07-01,"Electric Power Consumption","Kentucky","KY",10924 +2017-07-01,"Electric Power Consumption","Hawaii","HI",NA +2017-07-01,"Electric Power Consumption","Delaware","DE",6024 +2017-07-01,"Electric Power Consumption","Alaska","AK",2389 +2017-07-01,"Electric Power Consumption","Washington","WA",9373 +2017-07-01,"Electric Power Consumption","New York","NY",46794 +2017-07-01,"Electric Power Consumption","Kansas","KS",3423 +2017-07-01,"Electric Power Consumption","South Dakota","SD",1132 +2017-07-01,"Electric Power Consumption","Nebraska","NE",1574 +2017-07-01,"Electric Power Consumption","Maine","ME",1769 +2017-07-01,"Electric Power Consumption","North Dakota","ND",490 +2017-07-01,"Electric Power Consumption","Arizona","AZ",34287 +2017-07-01,"Electric Power Consumption","Georgia","GA",37034 +2017-07-01,"Electric Power Consumption","Idaho","ID",2820 +2017-07-01,"Electric Power Consumption","Colorado","CO",12453 +2017-07-01,"Electric Power Consumption","Pennsylvania","PA",57900 +2017-07-01,"Electric Power Consumption","Missouri","MO",7268 +2017-07-01,"Electric Power Consumption","New Hampshire","NH",2923 +2017-07-01,"Electric Power Consumption","Montana","MT",524 +2017-07-01,"Electric Power Consumption","Connecticut","CT",10987 +2017-07-01,"Electric Power Consumption","Florida","FL",122741 +2017-07-01,"Electric Power Consumption","North Carolina","NC",26126 +2017-07-01,"Electric Power Consumption","Ohio","OH",19907 +2017-07-01,"Electric Power Consumption","Maryland","MD",5533 +2017-07-01,"Electric Power Consumption","Arkansas","AR",16036 +2017-07-01,"Electric Power Consumption","South Carolina","SC",13418 +2017-07-01,"Electric Power Consumption","Michigan","MI",22549 +2017-07-01,"Electric Power Consumption","Wisconsin","WI",12896 +2017-07-01,"Electric Power Consumption","Nevada","NV",22924 +2017-07-01,"Electric Power Consumption","Iowa","IA",4332 +2017-07-01,"Electric Power Consumption","Alabama","AL",41700 +2017-07-01,"Electric Power Consumption","U.S.","U.S.",1081826 +2017-07-01,"Electric Power Consumption","Indiana","IN",13027 +2017-07-01,"Electric Power Consumption","California","CA",67003 +2017-07-01,"Electric Power Consumption","Virginia","VA",35127 +2017-07-01,"Electric Power Consumption","Louisiana","LA",30508 +2017-07-01,"Electric Power Consumption","Texas","TX",182748 +2017-07-01,"Electric Power Consumption","Rhode Island","RI",5701 +2017-07-01,"Electric Power Consumption","Massachusetts","MA",18350 +2017-07-01,"Electric Power Consumption","Vermont","VT",0 +2017-07-01,"Electric Power Consumption","New Jersey","NJ",31871 +2017-07-01,"Electric Power Consumption","Utah","UT",5182 +2017-07-01,"Electric Power Consumption","Illinois","IL",23069 +2017-07-01,"Electric Power Consumption","West Virginia","WV",1437 +2017-07-01,"Electric Power Consumption","Wyoming","WY",239 +2017-07-01,"Electric Power Consumption","Tennessee","TN",8247 +2017-07-01,"Industrial Consumption","Maryland","MD",1188 +2017-07-01,"Industrial Consumption","Pennsylvania","PA",15838 +2017-07-01,"Industrial Consumption","Alabama","AL",15512 +2017-07-01,"Industrial Consumption","Tennessee","TN",10471 +2017-07-01,"Industrial Consumption","Michigan","MI",10612 +2017-07-01,"Industrial Consumption","Delaware","DE",2272 +2017-07-01,"Industrial Consumption","Kentucky","KY",7997 +2017-07-01,"Industrial Consumption","Alaska","AK",200 +2017-07-01,"Industrial Consumption","North Dakota","ND",2506 +2017-07-01,"Industrial Consumption","Massachusetts","MA",2490 +2017-07-01,"Industrial Consumption","Louisiana","LA",90435 +2017-07-01,"Industrial Consumption","California","CA",64341 +2017-07-01,"Industrial Consumption","West Virginia","WV",2980 +2017-07-01,"Industrial Consumption","Connecticut","CT",1750 +2017-07-01,"Industrial Consumption","Georgia","GA",12210 +2017-07-01,"Industrial Consumption","Arizona","AZ",1331 +2017-07-01,"Industrial Consumption","Mississippi","MS",10027 +2017-07-01,"Industrial Consumption","Arkansas","AR",7604 +2017-07-01,"Industrial Consumption","Texas","TX",142703 +2017-07-01,"Industrial Consumption","Virginia","VA",6707 +2017-07-01,"Industrial Consumption","Minnesota","MN",12246 +2017-07-01,"Industrial Consumption","Rhode Island","RI",644 +2017-07-01,"Industrial Consumption","Montana","MT",1829 +2017-07-01,"Industrial Consumption","Oklahoma","OK",15682 +2017-07-01,"Industrial Consumption","Colorado","CO",5288 +2017-07-01,"Industrial Consumption","Washington","WA",5934 +2017-07-01,"Industrial Consumption","South Dakota","SD",3606 +2017-07-01,"Industrial Consumption","U.S.","U.S.",623497 +2017-07-01,"Industrial Consumption","South Carolina","SC",7041 +2017-07-01,"Industrial Consumption","Iowa","IA",19197 +2017-07-01,"Industrial Consumption","Indiana","IN",28380 +2017-07-01,"Industrial Consumption","North Carolina","NC",7804 +2017-07-01,"Industrial Consumption","District of Columbia","DC",NA +2017-07-01,"Industrial Consumption","Missouri","MO",4370 +2017-07-01,"Industrial Consumption","New York","NY",5610 +2017-07-01,"Industrial Consumption","Nebraska","NE",7654 +2017-07-01,"Industrial Consumption","Wisconsin","WI",10269 +2017-07-01,"Industrial Consumption","Idaho","ID",2470 +2017-07-01,"Industrial Consumption","Ohio","OH",19163 +2017-07-01,"Industrial Consumption","Oregon","OR",4135 +2017-07-01,"Industrial Consumption","Vermont","VT",158 +2017-07-01,"Industrial Consumption","Wyoming","WY",3974 +2017-07-01,"Industrial Consumption","Illinois","IL",17032 +2017-07-01,"Industrial Consumption","Hawaii","HI",7 +2017-07-01,"Industrial Consumption","New Mexico","NM",1264 +2017-07-01,"Industrial Consumption","Kansas","KS",11783 +2017-07-01,"Industrial Consumption","Utah","UT",3035 +2017-07-01,"Industrial Consumption","Nevada","NV",1454 +2017-07-01,"Industrial Consumption","Maine","ME",1300 +2017-07-01,"Industrial Consumption","New Jersey","NJ",4100 +2017-07-01,"Industrial Consumption","New Hampshire","NH",682 +2017-07-01,"Industrial Consumption","Florida","FL",8208 +2017-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",134387 +2017-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",56698 +2017-07-01,"Residential Consumption","Ohio","OH",4711 +2017-07-01,"Residential Consumption","Vermont","VT",82 +2017-07-01,"Residential Consumption","Michigan","MI",5123 +2017-07-01,"Residential Consumption","Minnesota","MN",2276 +2017-07-01,"Residential Consumption","Georgia","GA",3936 +2017-07-01,"Residential Consumption","Arizona","AZ",1101 +2017-07-01,"Residential Consumption","Wyoming","WY",211 +2017-07-01,"Residential Consumption","West Virginia","WV",356 +2017-07-01,"Residential Consumption","Virginia","VA",1658 +2017-07-01,"Residential Consumption","Utah","UT",1680 +2017-07-01,"Residential Consumption","District of Columbia","DC",293 +2017-07-01,"Residential Consumption","Montana","MT",343 +2017-07-01,"Residential Consumption","Kentucky","KY",719 +2017-07-01,"Residential Consumption","U.S.","U.S.",107443 +2017-07-01,"Residential Consumption","New York","NY",10732 +2017-07-01,"Residential Consumption","South Carolina","SC",581 +2017-07-01,"Residential Consumption","Iowa","IA",1028 +2017-07-01,"Residential Consumption","Nebraska","NE",673 +2017-07-01,"Residential Consumption","Florida","FL",778 +2017-07-01,"Residential Consumption","New Jersey","NJ",4857 +2017-07-01,"Residential Consumption","Wisconsin","WI",2306 +2017-07-01,"Residential Consumption","Maryland","MD",1651 +2017-07-01,"Residential Consumption","New Mexico","NM",839 +2017-07-01,"Residential Consumption","Idaho","ID",518 +2017-07-01,"Residential Consumption","Kansas","KS",1010 +2017-07-01,"Residential Consumption","Oklahoma","OK",1172 +2017-07-01,"Residential Consumption","Rhode Island","RI",414 +2017-07-01,"Residential Consumption","Oregon","OR",866 +2017-07-01,"Residential Consumption","Mississippi","MS",518 +2017-07-01,"Residential Consumption","Tennessee","TN",1008 +2017-07-01,"Residential Consumption","Pennsylvania","PA",4196 +2017-07-01,"Residential Consumption","Arkansas","AR",570 +2017-07-01,"Residential Consumption","Colorado","CO",2657 +2017-07-01,"Residential Consumption","Missouri","MO",1597 +2017-07-01,"Residential Consumption","Delaware","DE",151 +2017-07-01,"Residential Consumption","California","CA",19094 +2017-07-01,"Residential Consumption","Alaska","AK",552 +2017-07-01,"Residential Consumption","Illinois","IL",8673 +2017-07-01,"Residential Consumption","Louisiana","LA",1232 +2017-07-01,"Residential Consumption","Connecticut","CT",1075 +2017-07-01,"Residential Consumption","Nevada","NV",1310 +2017-07-01,"Residential Consumption","North Dakota","ND",155 +2017-07-01,"Residential Consumption","Washington","WA",1802 +2017-07-01,"Residential Consumption","Texas","TX",6000 +2017-07-01,"Residential Consumption","Maine","ME",52 +2017-07-01,"Residential Consumption","Alabama","AL",674 +2017-07-01,"Residential Consumption","North Carolina","NC",1135 +2017-07-01,"Residential Consumption","Hawaii","HI",43 +2017-07-01,"Residential Consumption","South Dakota","SD",195 +2017-07-01,"Residential Consumption","Indiana","IN",2096 +2017-07-01,"Residential Consumption","Massachusetts","MA",2608 +2017-07-01,"Residential Consumption","New Hampshire","NH",137 +2017-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",136 +2017-07-01,"Vehicle Fuel Consumption","Indiana","IN",9 +2017-07-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-07-01,"Vehicle Fuel Consumption","North Carolina","NC",83 +2017-07-01,"Vehicle Fuel Consumption","Georgia","GA",171 +2017-07-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2017-07-01,"Vehicle Fuel Consumption","Utah","UT",30 +2017-07-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2017-07-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2017-07-01,"Vehicle Fuel Consumption","Colorado","CO",73 +2017-07-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-07-01,"Vehicle Fuel Consumption","Florida","FL",314 +2017-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2017-07-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2017-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-07-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2017-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-07-01,"Vehicle Fuel Consumption","Ohio","OH",45 +2017-07-01,"Vehicle Fuel Consumption","New York","NY",86 +2017-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2017-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2017-07-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2017-07-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2017-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2017-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2017-07-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-07-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-07-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-07-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-07-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-07-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-07-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-07-01,"Vehicle Fuel Consumption","South Carolina","SC",15 +2017-07-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-07-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-07-01,"Vehicle Fuel Consumption","California","CA",2129 +2017-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",4094 +2017-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",35 +2017-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",33 +2017-07-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2017-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-07-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-07-01,"Vehicle Fuel Consumption","Illinois","IL",16 +2017-07-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2017-07-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2017-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-07-01,"Vehicle Fuel Consumption","Kansas","KS",41 +2017-07-01,"Vehicle Fuel Consumption","Texas","TX",156 +2017-08-01,"Commercial Consumption","South Carolina","SC",1313 +2017-08-01,"Commercial Consumption","Oklahoma","OK",1566 +2017-08-01,"Commercial Consumption","Montana","MT",685 +2017-08-01,"Commercial Consumption","Idaho","ID",732 +2017-08-01,"Commercial Consumption","Connecticut","CT",2419 +2017-08-01,"Commercial Consumption","Delaware","DE",570 +2017-08-01,"Commercial Consumption","Indiana","IN",2390 +2017-08-01,"Commercial Consumption","Minnesota","MN",2865 +2017-08-01,"Commercial Consumption","Wisconsin","WI",3147 +2017-08-01,"Commercial Consumption","New Jersey","NJ",4869 +2017-08-01,"Commercial Consumption","Iowa","IA",1579 +2017-08-01,"Commercial Consumption","Alabama","AL",1108 +2017-08-01,"Commercial Consumption","New York","NY",14857 +2017-08-01,"Commercial Consumption","Nebraska","NE",804 +2017-08-01,"Commercial Consumption","North Dakota","ND",353 +2017-08-01,"Commercial Consumption","Pennsylvania","PA",4723 +2017-08-01,"Commercial Consumption","South Dakota","SD",309 +2017-08-01,"Commercial Consumption","Rhode Island","RI",256 +2017-08-01,"Commercial Consumption","Hawaii","HI",202 +2017-08-01,"Commercial Consumption","Arizona","AZ",1875 +2017-08-01,"Commercial Consumption","Louisiana","LA",1907 +2017-08-01,"Commercial Consumption","Illinois","IL",8052 +2017-08-01,"Commercial Consumption","Colorado","CO",1715 +2017-08-01,"Commercial Consumption","Missouri","MO",2290 +2017-08-01,"Commercial Consumption","California","CA",16202 +2017-08-01,"Commercial Consumption","Arkansas","AR",2900 +2017-08-01,"Commercial Consumption","Washington","WA",2172 +2017-08-01,"Commercial Consumption","Utah","UT",1197 +2017-08-01,"Commercial Consumption","Oregon","OR",851 +2017-08-01,"Commercial Consumption","Virginia","VA",3283 +2017-08-01,"Commercial Consumption","Kentucky","KY",1137 +2017-08-01,"Commercial Consumption","Vermont","VT",317 +2017-08-01,"Commercial Consumption","Michigan","MI",5410 +2017-08-01,"Commercial Consumption","District of Columbia","DC",825 +2017-08-01,"Commercial Consumption","Wyoming","WY",402 +2017-08-01,"Commercial Consumption","Maine","ME",290 +2017-08-01,"Commercial Consumption","U.S.","U.S.",137228 +2017-08-01,"Commercial Consumption","Texas","TX",10378 +2017-08-01,"Commercial Consumption","Maryland","MD",3266 +2017-08-01,"Commercial Consumption","Georgia","GA",2213 +2017-08-01,"Commercial Consumption","West Virginia","WV",1019 +2017-08-01,"Commercial Consumption","Kansas","KS",1716 +2017-08-01,"Commercial Consumption","Florida","FL",4400 +2017-08-01,"Commercial Consumption","Ohio","OH",5106 +2017-08-01,"Commercial Consumption","Alaska","AK",550 +2017-08-01,"Commercial Consumption","Mississippi","MS",979 +2017-08-01,"Commercial Consumption","North Carolina","NC",2709 +2017-08-01,"Commercial Consumption","New Mexico","NM",1120 +2017-08-01,"Commercial Consumption","Massachusetts","MA",4121 +2017-08-01,"Commercial Consumption","New Hampshire","NH",256 +2017-08-01,"Commercial Consumption","Tennessee","TN",2120 +2017-08-01,"Commercial Consumption","Nevada","NV",1704 +2017-08-01,"Delivered to Consumers","Wyoming","WY",5018 +2017-08-01,"Delivered to Consumers","Rhode Island","RI",6672 +2017-08-01,"Delivered to Consumers","Montana","MT",3650 +2017-08-01,"Delivered to Consumers","Maryland","MD",10676 +2017-08-01,"Delivered to Consumers","Oklahoma","OK",46650 +2017-08-01,"Delivered to Consumers","Kansas","KS",15975 +2017-08-01,"Delivered to Consumers","Michigan","MI",42448 +2017-08-01,"Delivered to Consumers","Arkansas","AR",22501 +2017-08-01,"Delivered to Consumers","South Carolina","SC",22251 +2017-08-01,"Delivered to Consumers","Wisconsin","WI",28474 +2017-08-01,"Delivered to Consumers","Nevada","NV",26896 +2017-08-01,"Delivered to Consumers","Maine","ME",3099 +2017-08-01,"Delivered to Consumers","Georgia","GA",57875 +2017-08-01,"Delivered to Consumers","U.S.","U.S.",1904112 +2017-08-01,"Delivered to Consumers","Virginia","VA",45335 +2017-08-01,"Delivered to Consumers","Missouri","MO",13101 +2017-08-01,"Delivered to Consumers","Texas","TX",322888 +2017-08-01,"Delivered to Consumers","District of Columbia","DC",1144 +2017-08-01,"Delivered to Consumers","New Mexico","NM",10714 +2017-08-01,"Delivered to Consumers","Delaware","DE",8118 +2017-08-01,"Delivered to Consumers","Alaska","AK",3770 +2017-08-01,"Delivered to Consumers","Iowa","IA",26008 +2017-08-01,"Delivered to Consumers","Alabama","AL",57029 +2017-08-01,"Delivered to Consumers","Pennsylvania","PA",79377 +2017-08-01,"Delivered to Consumers","California","CA",183337 +2017-08-01,"Delivered to Consumers","Washington","WA",22437 +2017-08-01,"Delivered to Consumers","Utah","UT",11786 +2017-08-01,"Delivered to Consumers","West Virginia","WV",5792 +2017-08-01,"Delivered to Consumers","Vermont","VT",561 +2017-08-01,"Delivered to Consumers","Tennessee","TN",21068 +2017-08-01,"Delivered to Consumers","North Carolina","NC",37877 +2017-08-01,"Delivered to Consumers","Massachusetts","MA",27825 +2017-08-01,"Delivered to Consumers","Arizona","AZ",35565 +2017-08-01,"Delivered to Consumers","New Hampshire","NH",4544 +2017-08-01,"Delivered to Consumers","Minnesota","MN",22426 +2017-08-01,"Delivered to Consumers","South Dakota","SD",4824 +2017-08-01,"Delivered to Consumers","New York","NY",74083 +2017-08-01,"Delivered to Consumers","Ohio","OH",49238 +2017-08-01,"Delivered to Consumers","Nebraska","NE",9529 +2017-08-01,"Delivered to Consumers","Louisiana","LA",124792 +2017-08-01,"Delivered to Consumers","Indiana","IN",44553 +2017-08-01,"Delivered to Consumers","Idaho","ID",6443 +2017-08-01,"Delivered to Consumers","Connecticut","CT",15964 +2017-08-01,"Delivered to Consumers","Mississippi","MS",46961 +2017-08-01,"Delivered to Consumers","Colorado","CO",20989 +2017-08-01,"Delivered to Consumers","Oregon","OR",20483 +2017-08-01,"Delivered to Consumers","North Dakota","ND",3456 +2017-08-01,"Delivered to Consumers","Florida","FL",140857 +2017-08-01,"Delivered to Consumers","Illinois","IL",48851 +2017-08-01,"Delivered to Consumers","Hawaii","HI",253 +2017-08-01,"Delivered to Consumers","Kentucky","KY",18968 +2017-08-01,"Delivered to Consumers","New Jersey","NJ",40980 +2017-08-01,"Electric Power Consumption","New Jersey","NJ",27969 +2017-08-01,"Electric Power Consumption","Idaho","ID",2918 +2017-08-01,"Electric Power Consumption","Texas","TX",166870 +2017-08-01,"Electric Power Consumption","West Virginia","WV",1375 +2017-08-01,"Electric Power Consumption","Vermont","VT",1 +2017-08-01,"Electric Power Consumption","Hawaii","HI",NA +2017-08-01,"Electric Power Consumption","Alabama","AL",39609 +2017-08-01,"Electric Power Consumption","Alaska","AK",2378 +2017-08-01,"Electric Power Consumption","Utah","UT",6182 +2017-08-01,"Electric Power Consumption","Nevada","NV",22362 +2017-08-01,"Electric Power Consumption","Wyoming","WY",203 +2017-08-01,"Electric Power Consumption","Delaware","DE",4898 +2017-08-01,"Electric Power Consumption","Washington","WA",12412 +2017-08-01,"Electric Power Consumption","Louisiana","LA",28721 +2017-08-01,"Electric Power Consumption","Colorado","CO",10935 +2017-08-01,"Electric Power Consumption","Arkansas","AR",11088 +2017-08-01,"Electric Power Consumption","Rhode Island","RI",5328 +2017-08-01,"Electric Power Consumption","Minnesota","MN",4106 +2017-08-01,"Electric Power Consumption","Iowa","IA",3910 +2017-08-01,"Electric Power Consumption","New Mexico","NM",7499 +2017-08-01,"Electric Power Consumption","Missouri","MO",4559 +2017-08-01,"Electric Power Consumption","Kentucky","KY",8658 +2017-08-01,"Electric Power Consumption","Indiana","IN",11341 +2017-08-01,"Electric Power Consumption","Georgia","GA",38970 +2017-08-01,"Electric Power Consumption","New York","NY",43154 +2017-08-01,"Electric Power Consumption","Illinois","IL",14545 +2017-08-01,"Electric Power Consumption","Pennsylvania","PA",54996 +2017-08-01,"Electric Power Consumption","Maine","ME",1527 +2017-08-01,"Electric Power Consumption","Ohio","OH",19560 +2017-08-01,"Electric Power Consumption","New Hampshire","NH",3468 +2017-08-01,"Electric Power Consumption","Montana","MT",673 +2017-08-01,"Electric Power Consumption","Virginia","VA",32949 +2017-08-01,"Electric Power Consumption","South Carolina","SC",12930 +2017-08-01,"Electric Power Consumption","Oregon","OR",14579 +2017-08-01,"Electric Power Consumption","Massachusetts","MA",18679 +2017-08-01,"Electric Power Consumption","Kansas","KS",1980 +2017-08-01,"Electric Power Consumption","U.S.","U.S.",1022019 +2017-08-01,"Electric Power Consumption","Maryland","MD",4915 +2017-08-01,"Electric Power Consumption","Connecticut","CT",10765 +2017-08-01,"Electric Power Consumption","Oklahoma","OK",27532 +2017-08-01,"Electric Power Consumption","Wisconsin","WI",11829 +2017-08-01,"Electric Power Consumption","Tennessee","TN",7053 +2017-08-01,"Electric Power Consumption","North Carolina","NC",25674 +2017-08-01,"Electric Power Consumption","Mississippi","MS",34809 +2017-08-01,"Electric Power Consumption","North Dakota","ND",435 +2017-08-01,"Electric Power Consumption","California","CA",77936 +2017-08-01,"Electric Power Consumption","Michigan","MI",19875 +2017-08-01,"Electric Power Consumption","South Dakota","SD",635 +2017-08-01,"Electric Power Consumption","Nebraska","NE",1001 +2017-08-01,"Electric Power Consumption","Arizona","AZ",31172 +2017-08-01,"Electric Power Consumption","Florida","FL",127055 +2017-08-01,"Industrial Consumption","Hawaii","HI",8 +2017-08-01,"Industrial Consumption","Louisiana","LA",92922 +2017-08-01,"Industrial Consumption","New Mexico","NM",1259 +2017-08-01,"Industrial Consumption","Florida","FL",8336 +2017-08-01,"Industrial Consumption","Maryland","MD",1137 +2017-08-01,"Industrial Consumption","South Dakota","SD",3659 +2017-08-01,"Industrial Consumption","Arizona","AZ",1373 +2017-08-01,"Industrial Consumption","Pennsylvania","PA",15651 +2017-08-01,"Industrial Consumption","New York","NY",5769 +2017-08-01,"Industrial Consumption","Arkansas","AR",7956 +2017-08-01,"Industrial Consumption","South Carolina","SC",7492 +2017-08-01,"Industrial Consumption","Vermont","VT",164 +2017-08-01,"Industrial Consumption","Tennessee","TN",10888 +2017-08-01,"Industrial Consumption","Connecticut","CT",1737 +2017-08-01,"Industrial Consumption","Kentucky","KY",8385 +2017-08-01,"Industrial Consumption","Rhode Island","RI",672 +2017-08-01,"Industrial Consumption","Georgia","GA",12477 +2017-08-01,"Industrial Consumption","Alaska","AK",241 +2017-08-01,"Industrial Consumption","North Dakota","ND",2491 +2017-08-01,"Industrial Consumption","Washington","WA",6087 +2017-08-01,"Industrial Consumption","U.S.","U.S.",636935 +2017-08-01,"Industrial Consumption","Minnesota","MN",12907 +2017-08-01,"Industrial Consumption","Michigan","MI",11754 +2017-08-01,"Industrial Consumption","Delaware","DE",2492 +2017-08-01,"Industrial Consumption","Utah","UT",2907 +2017-08-01,"Industrial Consumption","Alabama","AL",15654 +2017-08-01,"Industrial Consumption","Texas","TX",140049 +2017-08-01,"Industrial Consumption","Virginia","VA",7443 +2017-08-01,"Industrial Consumption","Wyoming","WY",4200 +2017-08-01,"Industrial Consumption","Iowa","IA",19411 +2017-08-01,"Industrial Consumption","Indiana","IN",28797 +2017-08-01,"Industrial Consumption","North Carolina","NC",8419 +2017-08-01,"Industrial Consumption","Oklahoma","OK",16118 +2017-08-01,"Industrial Consumption","Colorado","CO",5426 +2017-08-01,"Industrial Consumption","Ohio","OH",19487 +2017-08-01,"Industrial Consumption","California","CA",69043 +2017-08-01,"Industrial Consumption","Wisconsin","WI",10960 +2017-08-01,"Industrial Consumption","New Jersey","NJ",3831 +2017-08-01,"Industrial Consumption","Oregon","OR",4270 +2017-08-01,"Industrial Consumption","Illinois","IL",18146 +2017-08-01,"Industrial Consumption","Montana","MT",1943 +2017-08-01,"Industrial Consumption","Kansas","KS",11175 +2017-08-01,"Industrial Consumption","Nevada","NV",1581 +2017-08-01,"Industrial Consumption","Mississippi","MS",10619 +2017-08-01,"Industrial Consumption","Nebraska","NE",7278 +2017-08-01,"Industrial Consumption","West Virginia","WV",3092 +2017-08-01,"Industrial Consumption","New Hampshire","NH",662 +2017-08-01,"Industrial Consumption","Idaho","ID",2259 +2017-08-01,"Industrial Consumption","Massachusetts","MA",2518 +2017-08-01,"Industrial Consumption","Missouri","MO",4560 +2017-08-01,"Industrial Consumption","Maine","ME",1229 +2017-08-01,"Industrial Consumption","District of Columbia","DC",NA +2017-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",134312 +2017-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",55349 +2017-08-01,"Residential Consumption","Hawaii","HI",42 +2017-08-01,"Residential Consumption","Vermont","VT",78 +2017-08-01,"Residential Consumption","Virginia","VA",1587 +2017-08-01,"Residential Consumption","Minnesota","MN",2510 +2017-08-01,"Residential Consumption","North Dakota","ND",177 +2017-08-01,"Residential Consumption","Montana","MT",349 +2017-08-01,"Residential Consumption","Wyoming","WY",212 +2017-08-01,"Residential Consumption","Ohio","OH",5041 +2017-08-01,"Residential Consumption","Mississippi","MS",553 +2017-08-01,"Residential Consumption","Louisiana","LA",1208 +2017-08-01,"Residential Consumption","Nebraska","NE",434 +2017-08-01,"Residential Consumption","Maryland","MD",1326 +2017-08-01,"Residential Consumption","Kentucky","KY",784 +2017-08-01,"Residential Consumption","Kansas","KS",1064 +2017-08-01,"Residential Consumption","Tennessee","TN",983 +2017-08-01,"Residential Consumption","Michigan","MI",5408 +2017-08-01,"Residential Consumption","Pennsylvania","PA",3878 +2017-08-01,"Residential Consumption","New Mexico","NM",818 +2017-08-01,"Residential Consumption","Florida","FL",751 +2017-08-01,"Residential Consumption","Alaska","AK",601 +2017-08-01,"Residential Consumption","West Virginia","WV",304 +2017-08-01,"Residential Consumption","Iowa","IA",1105 +2017-08-01,"Residential Consumption","Connecticut","CT",1025 +2017-08-01,"Residential Consumption","Wisconsin","WI",2503 +2017-08-01,"Residential Consumption","Utah","UT",1471 +2017-08-01,"Residential Consumption","South Dakota","SD",221 +2017-08-01,"Residential Consumption","District of Columbia","DC",287 +2017-08-01,"Residential Consumption","Colorado","CO",2841 +2017-08-01,"Residential Consumption","Oklahoma","OK",1298 +2017-08-01,"Residential Consumption","Delaware","DE",158 +2017-08-01,"Residential Consumption","Alabama","AL",651 +2017-08-01,"Residential Consumption","U.S.","U.S.",103835 +2017-08-01,"Residential Consumption","Illinois","IL",8092 +2017-08-01,"Residential Consumption","South Carolina","SC",501 +2017-08-01,"Residential Consumption","Rhode Island","RI",407 +2017-08-01,"Residential Consumption","North Carolina","NC",994 +2017-08-01,"Residential Consumption","Maine","ME",54 +2017-08-01,"Residential Consumption","Massachusetts","MA",2497 +2017-08-01,"Residential Consumption","New Jersey","NJ",4276 +2017-08-01,"Residential Consumption","Missouri","MO",1678 +2017-08-01,"Residential Consumption","Nevada","NV",1153 +2017-08-01,"Residential Consumption","New Hampshire","NH",158 +2017-08-01,"Residential Consumption","Georgia","GA",4044 +2017-08-01,"Residential Consumption","Idaho","ID",530 +2017-08-01,"Residential Consumption","Washington","WA",1749 +2017-08-01,"Residential Consumption","California","CA",18027 +2017-08-01,"Residential Consumption","New York","NY",10217 +2017-08-01,"Residential Consumption","Texas","TX",5436 +2017-08-01,"Residential Consumption","Oregon","OR",778 +2017-08-01,"Residential Consumption","Indiana","IN",2016 +2017-08-01,"Residential Consumption","Arkansas","AR",553 +2017-08-01,"Residential Consumption","Arizona","AZ",1011 +2017-08-01,"Vehicle Fuel Consumption","Utah","UT",30 +2017-08-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2017-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2017-08-01,"Vehicle Fuel Consumption","Kansas","KS",41 +2017-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2017-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-08-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-08-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2017-08-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2017-08-01,"Vehicle Fuel Consumption","Florida","FL",314 +2017-08-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2017-08-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2017-08-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-08-01,"Vehicle Fuel Consumption","Georgia","GA",171 +2017-08-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2017-08-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-08-01,"Vehicle Fuel Consumption","Illinois","IL",16 +2017-08-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2017-08-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",35 +2017-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",136 +2017-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",33 +2017-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2017-08-01,"Vehicle Fuel Consumption","Texas","TX",156 +2017-08-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2017-08-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-08-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-08-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-08-01,"Vehicle Fuel Consumption","New York","NY",86 +2017-08-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-08-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-08-01,"Vehicle Fuel Consumption","North Carolina","NC",83 +2017-08-01,"Vehicle Fuel Consumption","Ohio","OH",45 +2017-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-08-01,"Vehicle Fuel Consumption","Indiana","IN",9 +2017-08-01,"Vehicle Fuel Consumption","Colorado","CO",73 +2017-08-01,"Vehicle Fuel Consumption","South Carolina","SC",15 +2017-08-01,"Vehicle Fuel Consumption","California","CA",2129 +2017-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",4094 +2017-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-08-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2017-08-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2017-08-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2017-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-08-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-08-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2017-09-01,"Commercial Consumption","Virginia","VA",3453 +2017-09-01,"Commercial Consumption","Missouri","MO",2361 +2017-09-01,"Commercial Consumption","Texas","TX",10261 +2017-09-01,"Commercial Consumption","New York","NY",14706 +2017-09-01,"Commercial Consumption","Nebraska","NE",1005 +2017-09-01,"Commercial Consumption","Delaware","DE",648 +2017-09-01,"Commercial Consumption","District of Columbia","DC",815 +2017-09-01,"Commercial Consumption","Wyoming","WY",443 +2017-09-01,"Commercial Consumption","North Carolina","NC",2763 +2017-09-01,"Commercial Consumption","Minnesota","MN",3065 +2017-09-01,"Commercial Consumption","Oklahoma","OK",1581 +2017-09-01,"Commercial Consumption","Massachusetts","MA",4291 +2017-09-01,"Commercial Consumption","Maine","ME",299 +2017-09-01,"Commercial Consumption","Maryland","MD",3251 +2017-09-01,"Commercial Consumption","Hawaii","HI",198 +2017-09-01,"Commercial Consumption","South Dakota","SD",367 +2017-09-01,"Commercial Consumption","New Jersey","NJ",6616 +2017-09-01,"Commercial Consumption","Montana","MT",1010 +2017-09-01,"Commercial Consumption","U.S.","U.S.",144828 +2017-09-01,"Commercial Consumption","Kansas","KS",1655 +2017-09-01,"Commercial Consumption","Alabama","AL",1239 +2017-09-01,"Commercial Consumption","Mississippi","MS",1011 +2017-09-01,"Commercial Consumption","Arizona","AZ",1917 +2017-09-01,"Commercial Consumption","Michigan","MI",5954 +2017-09-01,"Commercial Consumption","Indiana","IN",2765 +2017-09-01,"Commercial Consumption","Washington","WA",2514 +2017-09-01,"Commercial Consumption","Colorado","CO",1872 +2017-09-01,"Commercial Consumption","New Mexico","NM",1131 +2017-09-01,"Commercial Consumption","New Hampshire","NH",244 +2017-09-01,"Commercial Consumption","Georgia","GA",2232 +2017-09-01,"Commercial Consumption","Rhode Island","RI",252 +2017-09-01,"Commercial Consumption","Ohio","OH",5499 +2017-09-01,"Commercial Consumption","Arkansas","AR",2920 +2017-09-01,"Commercial Consumption","South Carolina","SC",1326 +2017-09-01,"Commercial Consumption","North Dakota","ND",461 +2017-09-01,"Commercial Consumption","Utah","UT",1435 +2017-09-01,"Commercial Consumption","Wisconsin","WI",3025 +2017-09-01,"Commercial Consumption","Kentucky","KY",1379 +2017-09-01,"Commercial Consumption","Florida","FL",4393 +2017-09-01,"Commercial Consumption","Vermont","VT",342 +2017-09-01,"Commercial Consumption","California","CA",16068 +2017-09-01,"Commercial Consumption","West Virginia","WV",1078 +2017-09-01,"Commercial Consumption","Pennsylvania","PA",4991 +2017-09-01,"Commercial Consumption","Idaho","ID",944 +2017-09-01,"Commercial Consumption","Alaska","AK",709 +2017-09-01,"Commercial Consumption","Tennessee","TN",2387 +2017-09-01,"Commercial Consumption","Louisiana","LA",1796 +2017-09-01,"Commercial Consumption","Illinois","IL",8816 +2017-09-01,"Commercial Consumption","Oregon","OR",1147 +2017-09-01,"Commercial Consumption","Connecticut","CT",2489 +2017-09-01,"Commercial Consumption","Nevada","NV",1902 +2017-09-01,"Commercial Consumption","Iowa","IA",1802 +2017-09-01,"Delivered to Consumers","Delaware","DE",7824 +2017-09-01,"Delivered to Consumers","Ohio","OH",48305 +2017-09-01,"Delivered to Consumers","Kentucky","KY",17332 +2017-09-01,"Delivered to Consumers","Alabama","AL",51603 +2017-09-01,"Delivered to Consumers","North Carolina","NC",35871 +2017-09-01,"Delivered to Consumers","Louisiana","LA",119284 +2017-09-01,"Delivered to Consumers","Washington","WA",20554 +2017-09-01,"Delivered to Consumers","New Hampshire","NH",4402 +2017-09-01,"Delivered to Consumers","District of Columbia","DC",1146 +2017-09-01,"Delivered to Consumers","Utah","UT",9864 +2017-09-01,"Delivered to Consumers","Iowa","IA",25308 +2017-09-01,"Delivered to Consumers","Connecticut","CT",13570 +2017-09-01,"Delivered to Consumers","Virginia","VA",42469 +2017-09-01,"Delivered to Consumers","California","CA",166203 +2017-09-01,"Delivered to Consumers","Florida","FL",124175 +2017-09-01,"Delivered to Consumers","U.S.","U.S.",1737701 +2017-09-01,"Delivered to Consumers","Illinois","IL",49296 +2017-09-01,"Delivered to Consumers","Montana","MT",4223 +2017-09-01,"Delivered to Consumers","Maine","ME",2387 +2017-09-01,"Delivered to Consumers","North Dakota","ND",3114 +2017-09-01,"Delivered to Consumers","Wyoming","WY",5008 +2017-09-01,"Delivered to Consumers","Alaska","AK",3963 +2017-09-01,"Delivered to Consumers","Nebraska","NE",8892 +2017-09-01,"Delivered to Consumers","South Carolina","SC",21965 +2017-09-01,"Delivered to Consumers","Nevada","NV",22606 +2017-09-01,"Delivered to Consumers","Minnesota","MN",21103 +2017-09-01,"Delivered to Consumers","New Mexico","NM",9707 +2017-09-01,"Delivered to Consumers","West Virginia","WV",6692 +2017-09-01,"Delivered to Consumers","South Dakota","SD",4539 +2017-09-01,"Delivered to Consumers","Rhode Island","RI",6745 +2017-09-01,"Delivered to Consumers","New York","NY",67680 +2017-09-01,"Delivered to Consumers","Hawaii","HI",250 +2017-09-01,"Delivered to Consumers","Mississippi","MS",40834 +2017-09-01,"Delivered to Consumers","New Jersey","NJ",39322 +2017-09-01,"Delivered to Consumers","Oklahoma","OK",39181 +2017-09-01,"Delivered to Consumers","Arkansas","AR",22070 +2017-09-01,"Delivered to Consumers","Massachusetts","MA",24628 +2017-09-01,"Delivered to Consumers","Oregon","OR",18674 +2017-09-01,"Delivered to Consumers","Georgia","GA",49061 +2017-09-01,"Delivered to Consumers","Vermont","VT",588 +2017-09-01,"Delivered to Consumers","Tennessee","TN",20333 +2017-09-01,"Delivered to Consumers","Michigan","MI",41900 +2017-09-01,"Delivered to Consumers","Wisconsin","WI",26745 +2017-09-01,"Delivered to Consumers","Missouri","MO",13105 +2017-09-01,"Delivered to Consumers","Colorado","CO",19688 +2017-09-01,"Delivered to Consumers","Arizona","AZ",29423 +2017-09-01,"Delivered to Consumers","Indiana","IN",46194 +2017-09-01,"Delivered to Consumers","Maryland","MD",11937 +2017-09-01,"Delivered to Consumers","Kansas","KS",14825 +2017-09-01,"Delivered to Consumers","Idaho","ID",7089 +2017-09-01,"Delivered to Consumers","Pennsylvania","PA",77842 +2017-09-01,"Delivered to Consumers","Texas","TX",268180 +2017-09-01,"Electric Power Consumption","Louisiana","LA",26882 +2017-09-01,"Electric Power Consumption","South Carolina","SC",12960 +2017-09-01,"Electric Power Consumption","West Virginia","WV",2069 +2017-09-01,"Electric Power Consumption","Tennessee","TN",6271 +2017-09-01,"Electric Power Consumption","North Carolina","NC",23776 +2017-09-01,"Electric Power Consumption","Maryland","MD",5711 +2017-09-01,"Electric Power Consumption","Indiana","IN",11635 +2017-09-01,"Electric Power Consumption","Alabama","AL",34365 +2017-09-01,"Electric Power Consumption","New Mexico","NM",6476 +2017-09-01,"Electric Power Consumption","New Jersey","NJ",24790 +2017-09-01,"Electric Power Consumption","New York","NY",36218 +2017-09-01,"Electric Power Consumption","Oklahoma","OK",19856 +2017-09-01,"Electric Power Consumption","Kansas","KS",1579 +2017-09-01,"Electric Power Consumption","Pennsylvania","PA",52112 +2017-09-01,"Electric Power Consumption","Vermont","VT",1 +2017-09-01,"Electric Power Consumption","South Dakota","SD",357 +2017-09-01,"Electric Power Consumption","Washington","WA",9295 +2017-09-01,"Electric Power Consumption","Arkansas","AR",10771 +2017-09-01,"Electric Power Consumption","Minnesota","MN",3098 +2017-09-01,"Electric Power Consumption","Wisconsin","WI",10480 +2017-09-01,"Electric Power Consumption","Nevada","NV",17604 +2017-09-01,"Electric Power Consumption","Wyoming","WY",104 +2017-09-01,"Electric Power Consumption","Nebraska","NE",531 +2017-09-01,"Electric Power Consumption","New Hampshire","NH",3324 +2017-09-01,"Electric Power Consumption","Connecticut","CT",8307 +2017-09-01,"Electric Power Consumption","Missouri","MO",4624 +2017-09-01,"Electric Power Consumption","Mississippi","MS",28768 +2017-09-01,"Electric Power Consumption","Montana","MT",474 +2017-09-01,"Electric Power Consumption","Georgia","GA",32193 +2017-09-01,"Electric Power Consumption","Utah","UT",3531 +2017-09-01,"Electric Power Consumption","Maine","ME",739 +2017-09-01,"Electric Power Consumption","Kentucky","KY",6788 +2017-09-01,"Electric Power Consumption","California","CA",62939 +2017-09-01,"Electric Power Consumption","Rhode Island","RI",5426 +2017-09-01,"Electric Power Consumption","Illinois","IL",14253 +2017-09-01,"Electric Power Consumption","Massachusetts","MA",15113 +2017-09-01,"Electric Power Consumption","U.S.","U.S.",859260 +2017-09-01,"Electric Power Consumption","Ohio","OH",16594 +2017-09-01,"Electric Power Consumption","North Dakota","ND",623 +2017-09-01,"Electric Power Consumption","Florida","FL",111400 +2017-09-01,"Electric Power Consumption","Alaska","AK",2146 +2017-09-01,"Electric Power Consumption","Virginia","VA",29699 +2017-09-01,"Electric Power Consumption","Idaho","ID",2605 +2017-09-01,"Electric Power Consumption","Colorado","CO",9090 +2017-09-01,"Electric Power Consumption","Texas","TX",121368 +2017-09-01,"Electric Power Consumption","Michigan","MI",17625 +2017-09-01,"Electric Power Consumption","Delaware","DE",4076 +2017-09-01,"Electric Power Consumption","Oregon","OR",11970 +2017-09-01,"Electric Power Consumption","Iowa","IA",3799 +2017-09-01,"Electric Power Consumption","Hawaii","HI",NA +2017-09-01,"Electric Power Consumption","Arizona","AZ",24844 +2017-09-01,"Industrial Consumption","Alabama","AL",15252 +2017-09-01,"Industrial Consumption","Texas","TX",130515 +2017-09-01,"Industrial Consumption","West Virginia","WV",3059 +2017-09-01,"Industrial Consumption","Tennessee","TN",10399 +2017-09-01,"Industrial Consumption","Florida","FL",7255 +2017-09-01,"Industrial Consumption","Louisiana","LA",89354 +2017-09-01,"Industrial Consumption","Washington","WA",6286 +2017-09-01,"Industrial Consumption","South Dakota","SD",3572 +2017-09-01,"Industrial Consumption","Ohio","OH",20499 +2017-09-01,"Industrial Consumption","Nevada","NV",1530 +2017-09-01,"Industrial Consumption","Wisconsin","WI",10467 +2017-09-01,"Industrial Consumption","Idaho","ID",2701 +2017-09-01,"Industrial Consumption","Illinois","IL",18204 +2017-09-01,"Industrial Consumption","Oregon","OR",4361 +2017-09-01,"Industrial Consumption","Nebraska","NE",6726 +2017-09-01,"Industrial Consumption","Vermont","VT",158 +2017-09-01,"Industrial Consumption","Wyoming","WY",4193 +2017-09-01,"Industrial Consumption","District of Columbia","DC",NA +2017-09-01,"Industrial Consumption","Maryland","MD",1212 +2017-09-01,"Industrial Consumption","Oklahoma","OK",16353 +2017-09-01,"Industrial Consumption","Missouri","MO",4313 +2017-09-01,"Industrial Consumption","Arizona","AZ",1387 +2017-09-01,"Industrial Consumption","New York","NY",5716 +2017-09-01,"Industrial Consumption","Mississippi","MS",10431 +2017-09-01,"Industrial Consumption","North Carolina","NC",8157 +2017-09-01,"Industrial Consumption","Montana","MT",2102 +2017-09-01,"Industrial Consumption","New Mexico","NM",1216 +2017-09-01,"Industrial Consumption","Kansas","KS",10385 +2017-09-01,"Industrial Consumption","Pennsylvania","PA",16014 +2017-09-01,"Industrial Consumption","Virginia","VA",7556 +2017-09-01,"Industrial Consumption","Connecticut","CT",1665 +2017-09-01,"Industrial Consumption","Georgia","GA",10370 +2017-09-01,"Industrial Consumption","Alaska","AK",215 +2017-09-01,"Industrial Consumption","North Dakota","ND",1795 +2017-09-01,"Industrial Consumption","Hawaii","HI",8 +2017-09-01,"Industrial Consumption","Colorado","CO",5097 +2017-09-01,"Industrial Consumption","Utah","UT",3048 +2017-09-01,"Industrial Consumption","Maine","ME",1291 +2017-09-01,"Industrial Consumption","California","CA",67361 +2017-09-01,"Industrial Consumption","South Carolina","SC",7102 +2017-09-01,"Industrial Consumption","New Jersey","NJ",3546 +2017-09-01,"Industrial Consumption","New Hampshire","NH",679 +2017-09-01,"Industrial Consumption","Indiana","IN",29293 +2017-09-01,"Industrial Consumption","Delaware","DE",2927 +2017-09-01,"Industrial Consumption","Arkansas","AR",7790 +2017-09-01,"Industrial Consumption","Minnesota","MN",12347 +2017-09-01,"Industrial Consumption","Michigan","MI",11280 +2017-09-01,"Industrial Consumption","Massachusetts","MA",2520 +2017-09-01,"Industrial Consumption","U.S.","U.S.",615144 +2017-09-01,"Industrial Consumption","Iowa","IA",18576 +2017-09-01,"Industrial Consumption","Kentucky","KY",8187 +2017-09-01,"Industrial Consumption","Rhode Island","RI",673 +2017-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",132252 +2017-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",50513 +2017-09-01,"Residential Consumption","Wisconsin","WI",2739 +2017-09-01,"Residential Consumption","New Hampshire","NH",155 +2017-09-01,"Residential Consumption","Delaware","DE",172 +2017-09-01,"Residential Consumption","Illinois","IL",8007 +2017-09-01,"Residential Consumption","Oregon","OR",1191 +2017-09-01,"Residential Consumption","Maryland","MD",1732 +2017-09-01,"Residential Consumption","North Dakota","ND",235 +2017-09-01,"Residential Consumption","U.S.","U.S.",114508 +2017-09-01,"Residential Consumption","Ohio","OH",5670 +2017-09-01,"Residential Consumption","Mississippi","MS",622 +2017-09-01,"Residential Consumption","District of Columbia","DC",299 +2017-09-01,"Residential Consumption","Massachusetts","MA",2694 +2017-09-01,"Residential Consumption","Montana","MT",637 +2017-09-01,"Residential Consumption","Kentucky","KY",975 +2017-09-01,"Residential Consumption","Oklahoma","OK",1260 +2017-09-01,"Residential Consumption","Missouri","MO",1794 +2017-09-01,"Residential Consumption","Arizona","AZ",1146 +2017-09-01,"Residential Consumption","Wyoming","WY",266 +2017-09-01,"Residential Consumption","Texas","TX",5885 +2017-09-01,"Residential Consumption","Virginia","VA",1690 +2017-09-01,"Residential Consumption","Georgia","GA",4100 +2017-09-01,"Residential Consumption","New Jersey","NJ",4338 +2017-09-01,"Residential Consumption","Kansas","KS",1167 +2017-09-01,"Residential Consumption","Washington","WA",2441 +2017-09-01,"Residential Consumption","New York","NY",10956 +2017-09-01,"Residential Consumption","Hawaii","HI",44 +2017-09-01,"Residential Consumption","Tennessee","TN",1253 +2017-09-01,"Residential Consumption","South Dakota","SD",244 +2017-09-01,"Residential Consumption","Minnesota","MN",2556 +2017-09-01,"Residential Consumption","Pennsylvania","PA",4601 +2017-09-01,"Residential Consumption","Idaho","ID",836 +2017-09-01,"Residential Consumption","Alaska","AK",892 +2017-09-01,"Residential Consumption","Rhode Island","RI",386 +2017-09-01,"Residential Consumption","North Carolina","NC",1096 +2017-09-01,"Residential Consumption","Louisiana","LA",1221 +2017-09-01,"Residential Consumption","Vermont","VT",87 +2017-09-01,"Residential Consumption","Nebraska","NE",619 +2017-09-01,"Residential Consumption","New Mexico","NM",866 +2017-09-01,"Residential Consumption","Maine","ME",58 +2017-09-01,"Residential Consumption","Colorado","CO",3557 +2017-09-01,"Residential Consumption","California","CA",17775 +2017-09-01,"Residential Consumption","Alabama","AL",739 +2017-09-01,"Residential Consumption","West Virginia","WV",485 +2017-09-01,"Residential Consumption","Connecticut","CT",1091 +2017-09-01,"Residential Consumption","Utah","UT",1821 +2017-09-01,"Residential Consumption","Florida","FL",823 +2017-09-01,"Residential Consumption","Arkansas","AR",585 +2017-09-01,"Residential Consumption","South Carolina","SC",563 +2017-09-01,"Residential Consumption","Iowa","IA",1127 +2017-09-01,"Residential Consumption","Michigan","MI",7041 +2017-09-01,"Residential Consumption","Nevada","NV",1476 +2017-09-01,"Residential Consumption","Indiana","IN",2493 +2017-09-01,"Vehicle Fuel Consumption","New York","NY",83 +2017-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2017-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-09-01,"Vehicle Fuel Consumption","North Carolina","NC",80 +2017-09-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-09-01,"Vehicle Fuel Consumption","Utah","UT",29 +2017-09-01,"Vehicle Fuel Consumption","Tennessee","TN",23 +2017-09-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2017-09-01,"Vehicle Fuel Consumption","Louisiana","LA",32 +2017-09-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-09-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-09-01,"Vehicle Fuel Consumption","Illinois","IL",15 +2017-09-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-09-01,"Vehicle Fuel Consumption","Kansas","KS",40 +2017-09-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-09-01,"Vehicle Fuel Consumption","Georgia","GA",166 +2017-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-09-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-09-01,"Vehicle Fuel Consumption","Virginia","VA",70 +2017-09-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-09-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2017-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-09-01,"Vehicle Fuel Consumption","Arizona","AZ",129 +2017-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-09-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-09-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2017-09-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2017-09-01,"Vehicle Fuel Consumption","Florida","FL",304 +2017-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-09-01,"Vehicle Fuel Consumption","Texas","TX",151 +2017-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",33 +2017-09-01,"Vehicle Fuel Consumption","California","CA",2061 +2017-09-01,"Vehicle Fuel Consumption","New Mexico","NM",17 +2017-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",124 +2017-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",32 +2017-09-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2017-09-01,"Vehicle Fuel Consumption","South Carolina","SC",14 +2017-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",3962 +2017-09-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",34 +2017-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",131 +2017-09-01,"Vehicle Fuel Consumption","Missouri","MO",13 +2017-09-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2017-09-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2017-09-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-09-01,"Vehicle Fuel Consumption","Colorado","CO",70 +2017-09-01,"Vehicle Fuel Consumption","Minnesota","MN",37 +2017-09-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-10-01,"Commercial Consumption","Pennsylvania","PA",7822 +2017-10-01,"Commercial Consumption","New Jersey","NJ",8961 +2017-10-01,"Commercial Consumption","New Hampshire","NH",388 +2017-10-01,"Commercial Consumption","Montana","MT",1683 +2017-10-01,"Commercial Consumption","Texas","TX",12123 +2017-10-01,"Commercial Consumption","Idaho","ID",1495 +2017-10-01,"Commercial Consumption","California","CA",19397 +2017-10-01,"Commercial Consumption","Alabama","AL",1996 +2017-10-01,"Commercial Consumption","Vermont","VT",401 +2017-10-01,"Commercial Consumption","Iowa","IA",3597 +2017-10-01,"Commercial Consumption","Delaware","DE",831 +2017-10-01,"Commercial Consumption","Arizona","AZ",2167 +2017-10-01,"Commercial Consumption","District of Columbia","DC",1001 +2017-10-01,"Commercial Consumption","Washington","WA",4296 +2017-10-01,"Commercial Consumption","North Carolina","NC",3906 +2017-10-01,"Commercial Consumption","New Mexico","NM",1846 +2017-10-01,"Commercial Consumption","Oklahoma","OK",2110 +2017-10-01,"Commercial Consumption","South Carolina","SC",1799 +2017-10-01,"Commercial Consumption","Utah","UT",2792 +2017-10-01,"Commercial Consumption","Virginia","VA",4275 +2017-10-01,"Commercial Consumption","South Dakota","SD",705 +2017-10-01,"Commercial Consumption","Illinois","IL",13692 +2017-10-01,"Commercial Consumption","Kentucky","KY",2045 +2017-10-01,"Commercial Consumption","Georgia","GA",3325 +2017-10-01,"Commercial Consumption","Ohio","OH",9163 +2017-10-01,"Commercial Consumption","Arkansas","AR",3687 +2017-10-01,"Commercial Consumption","Tennessee","TN",3317 +2017-10-01,"Commercial Consumption","Maryland","MD",3865 +2017-10-01,"Commercial Consumption","Rhode Island","RI",447 +2017-10-01,"Commercial Consumption","Hawaii","HI",200 +2017-10-01,"Commercial Consumption","Michigan","MI",8274 +2017-10-01,"Commercial Consumption","Indiana","IN",4996 +2017-10-01,"Commercial Consumption","Louisiana","LA",2200 +2017-10-01,"Commercial Consumption","Colorado","CO",3781 +2017-10-01,"Commercial Consumption","Massachusetts","MA",5511 +2017-10-01,"Commercial Consumption","Maine","ME",382 +2017-10-01,"Commercial Consumption","Alaska","AK",1189 +2017-10-01,"Commercial Consumption","Connecticut","CT",2796 +2017-10-01,"Commercial Consumption","Nebraska","NE",1689 +2017-10-01,"Commercial Consumption","Nevada","NV",2300 +2017-10-01,"Commercial Consumption","Wyoming","WY",1021 +2017-10-01,"Commercial Consumption","West Virginia","WV",1386 +2017-10-01,"Commercial Consumption","North Dakota","ND",875 +2017-10-01,"Commercial Consumption","Minnesota","MN",5491 +2017-10-01,"Commercial Consumption","Oregon","OR",2158 +2017-10-01,"Commercial Consumption","Missouri","MO",2812 +2017-10-01,"Commercial Consumption","Wisconsin","WI",5179 +2017-10-01,"Commercial Consumption","U.S.","U.S.",200683 +2017-10-01,"Commercial Consumption","Kansas","KS",2298 +2017-10-01,"Commercial Consumption","Florida","FL",4857 +2017-10-01,"Commercial Consumption","New York","NY",16696 +2017-10-01,"Commercial Consumption","Mississippi","MS",1461 +2017-10-01,"Delivered to Consumers","Rhode Island","RI",7466 +2017-10-01,"Delivered to Consumers","Michigan","MI",55172 +2017-10-01,"Delivered to Consumers","Virginia","VA",34458 +2017-10-01,"Delivered to Consumers","Pennsylvania","PA",86401 +2017-10-01,"Delivered to Consumers","Mississippi","MS",37170 +2017-10-01,"Delivered to Consumers","California","CA",168754 +2017-10-01,"Delivered to Consumers","Arizona","AZ",27099 +2017-10-01,"Delivered to Consumers","Delaware","DE",7289 +2017-10-01,"Delivered to Consumers","Vermont","VT",679 +2017-10-01,"Delivered to Consumers","Illinois","IL",63887 +2017-10-01,"Delivered to Consumers","Montana","MT",6357 +2017-10-01,"Delivered to Consumers","Alabama","AL",50632 +2017-10-01,"Delivered to Consumers","Colorado","CO",25788 +2017-10-01,"Delivered to Consumers","District of Columbia","DC",1444 +2017-10-01,"Delivered to Consumers","Hawaii","HI",249 +2017-10-01,"Delivered to Consumers","Kansas","KS",16149 +2017-10-01,"Delivered to Consumers","Idaho","ID",8211 +2017-10-01,"Delivered to Consumers","Iowa","IA",28021 +2017-10-01,"Delivered to Consumers","Missouri","MO",13131 +2017-10-01,"Delivered to Consumers","Oregon","OR",22277 +2017-10-01,"Delivered to Consumers","Utah","UT",12247 +2017-10-01,"Delivered to Consumers","New Mexico","NM",10639 +2017-10-01,"Delivered to Consumers","Wyoming","WY",6434 +2017-10-01,"Delivered to Consumers","Oklahoma","OK",36849 +2017-10-01,"Delivered to Consumers","Tennessee","TN",21779 +2017-10-01,"Delivered to Consumers","Ohio","OH",58259 +2017-10-01,"Delivered to Consumers","Wisconsin","WI",33773 +2017-10-01,"Delivered to Consumers","Massachusetts","MA",26389 +2017-10-01,"Delivered to Consumers","South Carolina","SC",23359 +2017-10-01,"Delivered to Consumers","Louisiana","LA",123684 +2017-10-01,"Delivered to Consumers","Alaska","AK",5181 +2017-10-01,"Delivered to Consumers","North Carolina","NC",37168 +2017-10-01,"Delivered to Consumers","Washington","WA",27787 +2017-10-01,"Delivered to Consumers","Minnesota","MN",27504 +2017-10-01,"Delivered to Consumers","Florida","FL",122406 +2017-10-01,"Delivered to Consumers","South Dakota","SD",5270 +2017-10-01,"Delivered to Consumers","Maryland","MD",11358 +2017-10-01,"Delivered to Consumers","Kentucky","KY",16866 +2017-10-01,"Delivered to Consumers","Connecticut","CT",15457 +2017-10-01,"Delivered to Consumers","Arkansas","AR",23496 +2017-10-01,"Delivered to Consumers","Georgia","GA",51308 +2017-10-01,"Delivered to Consumers","U.S.","U.S.",1838965 +2017-10-01,"Delivered to Consumers","Nebraska","NE",11376 +2017-10-01,"Delivered to Consumers","Nevada","NV",22979 +2017-10-01,"Delivered to Consumers","New Jersey","NJ",45173 +2017-10-01,"Delivered to Consumers","Maine","ME",2904 +2017-10-01,"Delivered to Consumers","New Hampshire","NH",3038 +2017-10-01,"Delivered to Consumers","North Dakota","ND",4530 +2017-10-01,"Delivered to Consumers","Indiana","IN",50029 +2017-10-01,"Delivered to Consumers","West Virginia","WV",7694 +2017-10-01,"Delivered to Consumers","New York","NY",67677 +2017-10-01,"Delivered to Consumers","Texas","TX",265716 +2017-10-01,"Electric Power Consumption","New Mexico","NM",5931 +2017-10-01,"Electric Power Consumption","Oregon","OR",12075 +2017-10-01,"Electric Power Consumption","Michigan","MI",18701 +2017-10-01,"Electric Power Consumption","Kansas","KS",2092 +2017-10-01,"Electric Power Consumption","U.S.","U.S.",772543 +2017-10-01,"Electric Power Consumption","Missouri","MO",2891 +2017-10-01,"Electric Power Consumption","Delaware","DE",3562 +2017-10-01,"Electric Power Consumption","Washington","WA",9721 +2017-10-01,"Electric Power Consumption","Rhode Island","RI",5740 +2017-10-01,"Electric Power Consumption","Utah","UT",1950 +2017-10-01,"Electric Power Consumption","Wisconsin","WI",10103 +2017-10-01,"Electric Power Consumption","Pennsylvania","PA",52720 +2017-10-01,"Electric Power Consumption","Maine","ME",1041 +2017-10-01,"Electric Power Consumption","Georgia","GA",29342 +2017-10-01,"Electric Power Consumption","Virginia","VA",19668 +2017-10-01,"Electric Power Consumption","New Jersey","NJ",22428 +2017-10-01,"Electric Power Consumption","Louisiana","LA",26637 +2017-10-01,"Electric Power Consumption","Idaho","ID",1317 +2017-10-01,"Electric Power Consumption","Arkansas","AR",10164 +2017-10-01,"Electric Power Consumption","North Dakota","ND",330 +2017-10-01,"Electric Power Consumption","Nevada","NV",16809 +2017-10-01,"Electric Power Consumption","Iowa","IA",2545 +2017-10-01,"Electric Power Consumption","Kentucky","KY",3669 +2017-10-01,"Electric Power Consumption","Texas","TX",103598 +2017-10-01,"Electric Power Consumption","Oklahoma","OK",16087 +2017-10-01,"Electric Power Consumption","Massachusetts","MA",13901 +2017-10-01,"Electric Power Consumption","West Virginia","WV",2100 +2017-10-01,"Electric Power Consumption","Vermont","VT",0 +2017-10-01,"Electric Power Consumption","Ohio","OH",15517 +2017-10-01,"Electric Power Consumption","Alabama","AL",31595 +2017-10-01,"Electric Power Consumption","Alaska","AK",2174 +2017-10-01,"Electric Power Consumption","Illinois","IL",11470 +2017-10-01,"Electric Power Consumption","South Dakota","SD",335 +2017-10-01,"Electric Power Consumption","North Carolina","NC",21626 +2017-10-01,"Electric Power Consumption","Hawaii","HI",NA +2017-10-01,"Electric Power Consumption","New Hampshire","NH",1668 +2017-10-01,"Electric Power Consumption","Montana","MT",402 +2017-10-01,"Electric Power Consumption","Maryland","MD",3776 +2017-10-01,"Electric Power Consumption","Connecticut","CT",9549 +2017-10-01,"Electric Power Consumption","Florida","FL",107333 +2017-10-01,"Electric Power Consumption","New York","NY",28819 +2017-10-01,"Electric Power Consumption","Tennessee","TN",6059 +2017-10-01,"Electric Power Consumption","Nebraska","NE",398 +2017-10-01,"Electric Power Consumption","Colorado","CO",6312 +2017-10-01,"Electric Power Consumption","South Carolina","SC",12565 +2017-10-01,"Electric Power Consumption","Minnesota","MN",2559 +2017-10-01,"Electric Power Consumption","Wyoming","WY",71 +2017-10-01,"Electric Power Consumption","Mississippi","MS",24374 +2017-10-01,"Electric Power Consumption","Indiana","IN",10124 +2017-10-01,"Electric Power Consumption","Arizona","AZ",21725 +2017-10-01,"Electric Power Consumption","California","CA",58968 +2017-10-01,"Industrial Consumption","Massachusetts","MA",2853 +2017-10-01,"Industrial Consumption","New Mexico","NM",1328 +2017-10-01,"Industrial Consumption","Arkansas","AR",8710 +2017-10-01,"Industrial Consumption","Illinois","IL",20883 +2017-10-01,"Industrial Consumption","District of Columbia","DC",NA +2017-10-01,"Industrial Consumption","Alaska","AK",239 +2017-10-01,"Industrial Consumption","Maryland","MD",1259 +2017-10-01,"Industrial Consumption","Louisiana","LA",93278 +2017-10-01,"Industrial Consumption","South Dakota","SD",3546 +2017-10-01,"Industrial Consumption","Alabama","AL",15844 +2017-10-01,"Industrial Consumption","South Carolina","SC",8112 +2017-10-01,"Industrial Consumption","Tennessee","TN",10480 +2017-10-01,"Industrial Consumption","Idaho","ID",3248 +2017-10-01,"Industrial Consumption","Indiana","IN",29357 +2017-10-01,"Industrial Consumption","Montana","MT",2686 +2017-10-01,"Industrial Consumption","Ohio","OH",21331 +2017-10-01,"Industrial Consumption","Utah","UT",2947 +2017-10-01,"Industrial Consumption","Pennsylvania","PA",17855 +2017-10-01,"Industrial Consumption","Connecticut","CT",1664 +2017-10-01,"Industrial Consumption","Delaware","DE",2647 +2017-10-01,"Industrial Consumption","Mississippi","MS",10452 +2017-10-01,"Industrial Consumption","Maine","ME",1396 +2017-10-01,"Industrial Consumption","West Virginia","WV",3192 +2017-10-01,"Industrial Consumption","Wisconsin","WI",12176 +2017-10-01,"Industrial Consumption","Georgia","GA",11754 +2017-10-01,"Industrial Consumption","Hawaii","HI",7 +2017-10-01,"Industrial Consumption","Washington","WA",7289 +2017-10-01,"Industrial Consumption","California","CA",64589 +2017-10-01,"Industrial Consumption","Virginia","VA",7585 +2017-10-01,"Industrial Consumption","Vermont","VT",166 +2017-10-01,"Industrial Consumption","Wyoming","WY",4389 +2017-10-01,"Industrial Consumption","Iowa","IA",18925 +2017-10-01,"Industrial Consumption","Rhode Island","RI",641 +2017-10-01,"Industrial Consumption","North Carolina","NC",9443 +2017-10-01,"Industrial Consumption","North Dakota","ND",2656 +2017-10-01,"Industrial Consumption","Oklahoma","OK",17005 +2017-10-01,"Industrial Consumption","Kansas","KS",9479 +2017-10-01,"Industrial Consumption","Nevada","NV",1737 +2017-10-01,"Industrial Consumption","Nebraska","NE",7873 +2017-10-01,"Industrial Consumption","Florida","FL",8979 +2017-10-01,"Industrial Consumption","Kentucky","KY",9129 +2017-10-01,"Industrial Consumption","Colorado","CO",6932 +2017-10-01,"Industrial Consumption","U.S.","U.S.",656558 +2017-10-01,"Industrial Consumption","Oregon","OR",4889 +2017-10-01,"Industrial Consumption","Texas","TX",142070 +2017-10-01,"Industrial Consumption","Minnesota","MN",12890 +2017-10-01,"Industrial Consumption","Michigan","MI",13685 +2017-10-01,"Industrial Consumption","Missouri","MO",5103 +2017-10-01,"Industrial Consumption","Arizona","AZ",1573 +2017-10-01,"Industrial Consumption","New York","NY",6619 +2017-10-01,"Industrial Consumption","New Jersey","NJ",4943 +2017-10-01,"Industrial Consumption","New Hampshire","NH",724 +2017-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",139089 +2017-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",53456 +2017-10-01,"Residential Consumption","Oregon","OR",3149 +2017-10-01,"Residential Consumption","Virginia","VA",2857 +2017-10-01,"Residential Consumption","Minnesota","MN",6526 +2017-10-01,"Residential Consumption","Idaho","ID",2147 +2017-10-01,"Residential Consumption","Kentucky","KY",2019 +2017-10-01,"Residential Consumption","Missouri","MO",2311 +2017-10-01,"Residential Consumption","Illinois","IL",17826 +2017-10-01,"Residential Consumption","Texas","TX",7769 +2017-10-01,"Residential Consumption","Rhode Island","RI",628 +2017-10-01,"Residential Consumption","Hawaii","HI",43 +2017-10-01,"Residential Consumption","Michigan","MI",14512 +2017-10-01,"Residential Consumption","Maryland","MD",2426 +2017-10-01,"Residential Consumption","New York","NY",15457 +2017-10-01,"Residential Consumption","Louisiana","LA",1537 +2017-10-01,"Residential Consumption","Connecticut","CT",1430 +2017-10-01,"Residential Consumption","District of Columbia","DC",410 +2017-10-01,"Residential Consumption","Pennsylvania","PA",7875 +2017-10-01,"Residential Consumption","New Mexico","NM",1517 +2017-10-01,"Residential Consumption","Colorado","CO",8691 +2017-10-01,"Residential Consumption","Kansas","KS",2239 +2017-10-01,"Residential Consumption","Wyoming","WY",951 +2017-10-01,"Residential Consumption","U.S.","U.S.",205087 +2017-10-01,"Residential Consumption","South Carolina","SC",868 +2017-10-01,"Residential Consumption","Vermont","VT",111 +2017-10-01,"Residential Consumption","Georgia","GA",6715 +2017-10-01,"Residential Consumption","Arkansas","AR",931 +2017-10-01,"Residential Consumption","New Jersey","NJ",8807 +2017-10-01,"Residential Consumption","New Hampshire","NH",257 +2017-10-01,"Residential Consumption","Washington","WA",6464 +2017-10-01,"Residential Consumption","Utah","UT",4527 +2017-10-01,"Residential Consumption","Indiana","IN",5543 +2017-10-01,"Residential Consumption","Oklahoma","OK",1511 +2017-10-01,"Residential Consumption","Mississippi","MS",882 +2017-10-01,"Residential Consumption","South Dakota","SD",684 +2017-10-01,"Residential Consumption","Nevada","NV",2035 +2017-10-01,"Residential Consumption","Maine","ME",85 +2017-10-01,"Residential Consumption","Florida","FL",924 +2017-10-01,"Residential Consumption","Massachusetts","MA",4115 +2017-10-01,"Residential Consumption","Arizona","AZ",1501 +2017-10-01,"Residential Consumption","Alabama","AL",1190 +2017-10-01,"Residential Consumption","Ohio","OH",12203 +2017-10-01,"Residential Consumption","Iowa","IA",2952 +2017-10-01,"Residential Consumption","Tennessee","TN",1899 +2017-10-01,"Residential Consumption","Nebraska","NE",1404 +2017-10-01,"Residential Consumption","Montana","MT",1587 +2017-10-01,"Residential Consumption","California","CA",23670 +2017-10-01,"Residential Consumption","West Virginia","WV",1014 +2017-10-01,"Residential Consumption","North Carolina","NC",2110 +2017-10-01,"Residential Consumption","Wisconsin","WI",6281 +2017-10-01,"Residential Consumption","North Dakota","ND",669 +2017-10-01,"Residential Consumption","Delaware","DE",249 +2017-10-01,"Residential Consumption","Alaska","AK",1579 +2017-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",136 +2017-10-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2017-10-01,"Vehicle Fuel Consumption","Texas","TX",156 +2017-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-10-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-10-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2017-10-01,"Vehicle Fuel Consumption","Utah","UT",30 +2017-10-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2017-10-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-10-01,"Vehicle Fuel Consumption","Kansas","KS",41 +2017-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",33 +2017-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-10-01,"Vehicle Fuel Consumption","North Carolina","NC",83 +2017-10-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",35 +2017-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2017-10-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-10-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-10-01,"Vehicle Fuel Consumption","New York","NY",86 +2017-10-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2017-10-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2017-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2017-10-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2017-10-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",4094 +2017-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-10-01,"Vehicle Fuel Consumption","Ohio","OH",45 +2017-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2017-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2017-10-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2017-10-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-10-01,"Vehicle Fuel Consumption","Florida","FL",314 +2017-10-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-10-01,"Vehicle Fuel Consumption","California","CA",2129 +2017-10-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2017-10-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-10-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2017-10-01,"Vehicle Fuel Consumption","Indiana","IN",9 +2017-10-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-10-01,"Vehicle Fuel Consumption","Georgia","GA",171 +2017-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-10-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2017-10-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2017-10-01,"Vehicle Fuel Consumption","Colorado","CO",73 +2017-10-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-10-01,"Vehicle Fuel Consumption","South Carolina","SC",15 +2017-10-01,"Vehicle Fuel Consumption","Illinois","IL",16 +2017-11-01,"Commercial Consumption","U.S.","U.S.",322432 +2017-11-01,"Commercial Consumption","California","CA",21743 +2017-11-01,"Commercial Consumption","Arizona","AZ",2551 +2017-11-01,"Commercial Consumption","Tennessee","TN",5610 +2017-11-01,"Commercial Consumption","West Virginia","WV",2283 +2017-11-01,"Commercial Consumption","Minnesota","MN",11139 +2017-11-01,"Commercial Consumption","Oklahoma","OK",3547 +2017-11-01,"Commercial Consumption","Missouri","MO",5864 +2017-11-01,"Commercial Consumption","Massachusetts","MA",11715 +2017-11-01,"Commercial Consumption","South Dakota","SD",1179 +2017-11-01,"Commercial Consumption","Rhode Island","RI",1154 +2017-11-01,"Commercial Consumption","Hawaii","HI",204 +2017-11-01,"Commercial Consumption","Arkansas","AR",4355 +2017-11-01,"Commercial Consumption","New Hampshire","NH",1034 +2017-11-01,"Commercial Consumption","Montana","MT",2643 +2017-11-01,"Commercial Consumption","Nebraska","NE",3037 +2017-11-01,"Commercial Consumption","Delaware","DE",1455 +2017-11-01,"Commercial Consumption","Nevada","NV",2658 +2017-11-01,"Commercial Consumption","District of Columbia","DC",1383 +2017-11-01,"Commercial Consumption","North Carolina","NC",5821 +2017-11-01,"Commercial Consumption","Colorado","CO",5386 +2017-11-01,"Commercial Consumption","New Mexico","NM",2295 +2017-11-01,"Commercial Consumption","Georgia","GA",5224 +2017-11-01,"Commercial Consumption","Florida","FL",5266 +2017-11-01,"Commercial Consumption","Idaho","ID",1924 +2017-11-01,"Commercial Consumption","Alaska","AK",1831 +2017-11-01,"Commercial Consumption","New York","NY",31367 +2017-11-01,"Commercial Consumption","Mississippi","MS",1758 +2017-11-01,"Commercial Consumption","Washington","WA",6197 +2017-11-01,"Commercial Consumption","Kansas","KS",3338 +2017-11-01,"Commercial Consumption","Alabama","AL",2604 +2017-11-01,"Commercial Consumption","Illinois","IL",22288 +2017-11-01,"Commercial Consumption","Kentucky","KY",3761 +2017-11-01,"Commercial Consumption","Texas","TX",13914 +2017-11-01,"Commercial Consumption","Ohio","OH",17577 +2017-11-01,"Commercial Consumption","Indiana","IN",8404 +2017-11-01,"Commercial Consumption","Wyoming","WY",1321 +2017-11-01,"Commercial Consumption","South Carolina","SC",2383 +2017-11-01,"Commercial Consumption","North Dakota","ND",1594 +2017-11-01,"Commercial Consumption","Oregon","OR",3172 +2017-11-01,"Commercial Consumption","Pennsylvania","PA",17266 +2017-11-01,"Commercial Consumption","Wisconsin","WI",10017 +2017-11-01,"Commercial Consumption","New Jersey","NJ",13262 +2017-11-01,"Commercial Consumption","Vermont","VT",752 +2017-11-01,"Commercial Consumption","Iowa","IA",5820 +2017-11-01,"Commercial Consumption","Connecticut","CT",5236 +2017-11-01,"Commercial Consumption","Utah","UT",4406 +2017-11-01,"Commercial Consumption","Virginia","VA",6914 +2017-11-01,"Commercial Consumption","Maine","ME",939 +2017-11-01,"Commercial Consumption","Maryland","MD",7296 +2017-11-01,"Commercial Consumption","Michigan","MI",16897 +2017-11-01,"Commercial Consumption","Louisiana","LA",2647 +2017-11-01,"Delivered to Consumers","Vermont","VT",1257 +2017-11-01,"Delivered to Consumers","Alaska","AK",7406 +2017-11-01,"Delivered to Consumers","Michigan","MI",85615 +2017-11-01,"Delivered to Consumers","Iowa","IA",37090 +2017-11-01,"Delivered to Consumers","District of Columbia","DC",2348 +2017-11-01,"Delivered to Consumers","Utah","UT",16754 +2017-11-01,"Delivered to Consumers","New Mexico","NM",11371 +2017-11-01,"Delivered to Consumers","Wyoming","WY",7348 +2017-11-01,"Delivered to Consumers","Illinois","IL",97921 +2017-11-01,"Delivered to Consumers","Rhode Island","RI",8536 +2017-11-01,"Delivered to Consumers","Kansas","KS",23070 +2017-11-01,"Delivered to Consumers","Maine","ME",3216 +2017-11-01,"Delivered to Consumers","U.S.","U.S.",2155805 +2017-11-01,"Delivered to Consumers","Indiana","IN",66560 +2017-11-01,"Delivered to Consumers","Delaware","DE",6827 +2017-11-01,"Delivered to Consumers","Hawaii","HI",257 +2017-11-01,"Delivered to Consumers","Tennessee","TN",28290 +2017-11-01,"Delivered to Consumers","Kentucky","KY",26328 +2017-11-01,"Delivered to Consumers","Arkansas","AR",21280 +2017-11-01,"Delivered to Consumers","Massachusetts","MA",38033 +2017-11-01,"Delivered to Consumers","California","CA",168321 +2017-11-01,"Delivered to Consumers","New York","NY",107803 +2017-11-01,"Delivered to Consumers","Montana","MT",8010 +2017-11-01,"Delivered to Consumers","Virginia","VA",48853 +2017-11-01,"Delivered to Consumers","Oregon","OR",24091 +2017-11-01,"Delivered to Consumers","Nevada","NV",21426 +2017-11-01,"Delivered to Consumers","Arizona","AZ",19207 +2017-11-01,"Delivered to Consumers","Idaho","ID",11140 +2017-11-01,"Delivered to Consumers","Ohio","OH",95274 +2017-11-01,"Delivered to Consumers","Alabama","AL",52343 +2017-11-01,"Delivered to Consumers","Mississippi","MS",39988 +2017-11-01,"Delivered to Consumers","Texas","TX",258233 +2017-11-01,"Delivered to Consumers","New Jersey","NJ",55931 +2017-11-01,"Delivered to Consumers","Louisiana","LA",117233 +2017-11-01,"Delivered to Consumers","Florida","FL",101363 +2017-11-01,"Delivered to Consumers","Maryland","MD",23738 +2017-11-01,"Delivered to Consumers","Oklahoma","OK",38115 +2017-11-01,"Delivered to Consumers","Wisconsin","WI",49484 +2017-11-01,"Delivered to Consumers","Nebraska","NE",15114 +2017-11-01,"Delivered to Consumers","Missouri","MO",24599 +2017-11-01,"Delivered to Consumers","Colorado","CO",32409 +2017-11-01,"Delivered to Consumers","South Carolina","SC",25184 +2017-11-01,"Delivered to Consumers","Georgia","GA",57430 +2017-11-01,"Delivered to Consumers","Washington","WA",31083 +2017-11-01,"Delivered to Consumers","New Hampshire","NH",4493 +2017-11-01,"Delivered to Consumers","Minnesota","MN",44230 +2017-11-01,"Delivered to Consumers","West Virginia","WV",9110 +2017-11-01,"Delivered to Consumers","South Dakota","SD",6943 +2017-11-01,"Delivered to Consumers","Connecticut","CT",22784 +2017-11-01,"Delivered to Consumers","Pennsylvania","PA",99443 +2017-11-01,"Delivered to Consumers","North Carolina","NC",46755 +2017-11-01,"Delivered to Consumers","North Dakota","ND",6170 +2017-11-01,"Electric Power Consumption","Utah","UT",1967 +2017-11-01,"Electric Power Consumption","Iowa","IA",3252 +2017-11-01,"Electric Power Consumption","U.S.","U.S.",666156 +2017-11-01,"Electric Power Consumption","Missouri","MO",2743 +2017-11-01,"Electric Power Consumption","Maine","ME",260 +2017-11-01,"Electric Power Consumption","Connecticut","CT",10392 +2017-11-01,"Electric Power Consumption","Alaska","AK",2656 +2017-11-01,"Electric Power Consumption","Colorado","CO",6616 +2017-11-01,"Electric Power Consumption","New York","NY",25286 +2017-11-01,"Electric Power Consumption","Minnesota","MN",3276 +2017-11-01,"Electric Power Consumption","Illinois","IL",6234 +2017-11-01,"Electric Power Consumption","Kansas","KS",1608 +2017-11-01,"Electric Power Consumption","West Virginia","WV",783 +2017-11-01,"Electric Power Consumption","Wisconsin","WI",9128 +2017-11-01,"Electric Power Consumption","Hawaii","HI",NA +2017-11-01,"Electric Power Consumption","Maryland","MD",6149 +2017-11-01,"Electric Power Consumption","Florida","FL",85618 +2017-11-01,"Electric Power Consumption","California","CA",48472 +2017-11-01,"Electric Power Consumption","Alabama","AL",30617 +2017-11-01,"Electric Power Consumption","Louisiana","LA",16597 +2017-11-01,"Electric Power Consumption","Rhode Island","RI",4614 +2017-11-01,"Electric Power Consumption","Massachusetts","MA",10032 +2017-11-01,"Electric Power Consumption","Nevada","NV",14055 +2017-11-01,"Electric Power Consumption","Vermont","VT",1 +2017-11-01,"Electric Power Consumption","North Carolina","NC",22625 +2017-11-01,"Electric Power Consumption","Mississippi","MS",25003 +2017-11-01,"Electric Power Consumption","New Hampshire","NH",1850 +2017-11-01,"Electric Power Consumption","Georgia","GA",26727 +2017-11-01,"Electric Power Consumption","Virginia","VA",25477 +2017-11-01,"Electric Power Consumption","Arkansas","AR",5858 +2017-11-01,"Electric Power Consumption","South Carolina","SC",11107 +2017-11-01,"Electric Power Consumption","Oregon","OR",10802 +2017-11-01,"Electric Power Consumption","Pennsylvania","PA",39113 +2017-11-01,"Electric Power Consumption","North Dakota","ND",591 +2017-11-01,"Electric Power Consumption","New Mexico","NM",4883 +2017-11-01,"Electric Power Consumption","New Jersey","NJ",16931 +2017-11-01,"Electric Power Consumption","Oklahoma","OK",13169 +2017-11-01,"Electric Power Consumption","Kentucky","KY",7153 +2017-11-01,"Electric Power Consumption","Indiana","IN",10803 +2017-11-01,"Electric Power Consumption","Arizona","AZ",12898 +2017-11-01,"Electric Power Consumption","Washington","WA",7292 +2017-11-01,"Electric Power Consumption","Texas","TX",84931 +2017-11-01,"Electric Power Consumption","Ohio","OH",21253 +2017-11-01,"Electric Power Consumption","Wyoming","WY",110 +2017-11-01,"Electric Power Consumption","Delaware","DE",1885 +2017-11-01,"Electric Power Consumption","Idaho","ID",2816 +2017-11-01,"Electric Power Consumption","Michigan","MI",16325 +2017-11-01,"Electric Power Consumption","Tennessee","TN",5112 +2017-11-01,"Electric Power Consumption","South Dakota","SD",476 +2017-11-01,"Electric Power Consumption","Nebraska","NE",297 +2017-11-01,"Electric Power Consumption","Montana","MT",314 +2017-11-01,"Industrial Consumption","Louisiana","LA",95296 +2017-11-01,"Industrial Consumption","Utah","UT",3380 +2017-11-01,"Industrial Consumption","Oregon","OR",4786 +2017-11-01,"Industrial Consumption","Maine","ME",1752 +2017-11-01,"Industrial Consumption","California","CA",62096 +2017-11-01,"Industrial Consumption","Arkansas","AR",8522 +2017-11-01,"Industrial Consumption","Nebraska","NE",7796 +2017-11-01,"Industrial Consumption","Washington","WA",6995 +2017-11-01,"Industrial Consumption","South Dakota","SD",4006 +2017-11-01,"Industrial Consumption","Ohio","OH",25226 +2017-11-01,"Industrial Consumption","U.S.","U.S.",695526 +2017-11-01,"Industrial Consumption","Texas","TX",146006 +2017-11-01,"Industrial Consumption","Virginia","VA",8299 +2017-11-01,"Industrial Consumption","New Jersey","NJ",4086 +2017-11-01,"Industrial Consumption","Minnesota","MN",14746 +2017-11-01,"Industrial Consumption","Iowa","IA",21361 +2017-11-01,"Industrial Consumption","Florida","FL",8949 +2017-11-01,"Industrial Consumption","Michigan","MI",15358 +2017-11-01,"Industrial Consumption","Indiana","IN",32908 +2017-11-01,"Industrial Consumption","Georgia","GA",13212 +2017-11-01,"Industrial Consumption","Maryland","MD",1543 +2017-11-01,"Industrial Consumption","Mississippi","MS",11238 +2017-11-01,"Industrial Consumption","New Hampshire","NH",822 +2017-11-01,"Industrial Consumption","Idaho","ID",3326 +2017-11-01,"Industrial Consumption","Delaware","DE",2534 +2017-11-01,"Industrial Consumption","North Carolina","NC",10190 +2017-11-01,"Industrial Consumption","Montana","MT",2518 +2017-11-01,"Industrial Consumption","Massachusetts","MA",4127 +2017-11-01,"Industrial Consumption","Hawaii","HI",7 +2017-11-01,"Industrial Consumption","New Mexico","NM",1304 +2017-11-01,"Industrial Consumption","New York","NY",8395 +2017-11-01,"Industrial Consumption","Wisconsin","WI",14971 +2017-11-01,"Industrial Consumption","Illinois","IL",25242 +2017-11-01,"Industrial Consumption","Alaska","AK",305 +2017-11-01,"Industrial Consumption","North Dakota","ND",2596 +2017-11-01,"Industrial Consumption","Oklahoma","OK",16342 +2017-11-01,"Industrial Consumption","Arizona","AZ",1498 +2017-11-01,"Industrial Consumption","Tennessee","TN",10713 +2017-11-01,"Industrial Consumption","Missouri","MO",5616 +2017-11-01,"Industrial Consumption","Kansas","KS",11413 +2017-11-01,"Industrial Consumption","Pennsylvania","PA",20087 +2017-11-01,"Industrial Consumption","Nevada","NV",1646 +2017-11-01,"Industrial Consumption","West Virginia","WV",3432 +2017-11-01,"Industrial Consumption","Vermont","VT",204 +2017-11-01,"Industrial Consumption","Connecticut","CT",2348 +2017-11-01,"Industrial Consumption","Rhode Island","RI",709 +2017-11-01,"Industrial Consumption","Colorado","CO",7821 +2017-11-01,"Industrial Consumption","Alabama","AL",16472 +2017-11-01,"Industrial Consumption","South Carolina","SC",8584 +2017-11-01,"Industrial Consumption","Wyoming","WY",4634 +2017-11-01,"Industrial Consumption","Kentucky","KY",10106 +2017-11-01,"Industrial Consumption","District of Columbia","DC",NA +2017-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",138792 +2017-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",62661 +2017-11-01,"Residential Consumption","Oregon","OR",5326 +2017-11-01,"Residential Consumption","Connecticut","CT",4790 +2017-11-01,"Residential Consumption","South Dakota","SD",1282 +2017-11-01,"Residential Consumption","Pennsylvania","PA",22852 +2017-11-01,"Residential Consumption","Delaware","DE",953 +2017-11-01,"Residential Consumption","Alabama","AL",2642 +2017-11-01,"Residential Consumption","New York","NY",42671 +2017-11-01,"Residential Consumption","Texas","TX",13231 +2017-11-01,"Residential Consumption","Rhode Island","RI",2051 +2017-11-01,"Residential Consumption","Ohio","OH",31175 +2017-11-01,"Residential Consumption","Utah","UT",6973 +2017-11-01,"Residential Consumption","Kentucky","KY",5305 +2017-11-01,"Residential Consumption","South Carolina","SC",3095 +2017-11-01,"Residential Consumption","Louisiana","LA",2661 +2017-11-01,"Residential Consumption","Vermont","VT",301 +2017-11-01,"Residential Consumption","Nebraska","NE",3973 +2017-11-01,"Residential Consumption","Michigan","MI",37035 +2017-11-01,"Residential Consumption","New Mexico","NM",2871 +2017-11-01,"Residential Consumption","Florida","FL",1226 +2017-11-01,"Residential Consumption","Arkansas","AR",2542 +2017-11-01,"Residential Consumption","Montana","MT",2535 +2017-11-01,"Residential Consumption","California","CA",33950 +2017-11-01,"Residential Consumption","Maryland","MD",8718 +2017-11-01,"Residential Consumption","Nevada","NV",2973 +2017-11-01,"Residential Consumption","Minnesota","MN",15032 +2017-11-01,"Residential Consumption","Washington","WA",10582 +2017-11-01,"Residential Consumption","U.S.","U.S.",467729 +2017-11-01,"Residential Consumption","North Dakota","ND",1388 +2017-11-01,"Residential Consumption","Colorado","CO",12514 +2017-11-01,"Residential Consumption","Illinois","IL",44142 +2017-11-01,"Residential Consumption","Wisconsin","WI",15335 +2017-11-01,"Residential Consumption","Virginia","VA",8093 +2017-11-01,"Residential Consumption","Georgia","GA",12100 +2017-11-01,"Residential Consumption","Massachusetts","MA",12151 +2017-11-01,"Residential Consumption","Idaho","ID",3069 +2017-11-01,"Residential Consumption","New Jersey","NJ",21619 +2017-11-01,"Residential Consumption","Oklahoma","OK",4925 +2017-11-01,"Residential Consumption","Alaska","AK",2613 +2017-11-01,"Residential Consumption","Wyoming","WY",1281 +2017-11-01,"Residential Consumption","North Carolina","NC",8039 +2017-11-01,"Residential Consumption","Mississippi","MS",1988 +2017-11-01,"Residential Consumption","Iowa","IA",6654 +2017-11-01,"Residential Consumption","Tennessee","TN",6831 +2017-11-01,"Residential Consumption","District of Columbia","DC",934 +2017-11-01,"Residential Consumption","Maine","ME",264 +2017-11-01,"Residential Consumption","New Hampshire","NH",787 +2017-11-01,"Residential Consumption","Arizona","AZ",2130 +2017-11-01,"Residential Consumption","West Virginia","WV",2610 +2017-11-01,"Residential Consumption","Hawaii","HI",47 +2017-11-01,"Residential Consumption","Indiana","IN",14437 +2017-11-01,"Residential Consumption","Kansas","KS",6672 +2017-11-01,"Residential Consumption","Missouri","MO",10363 +2017-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2017-11-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-11-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-11-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-11-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-11-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2017-11-01,"Vehicle Fuel Consumption","New York","NY",83 +2017-11-01,"Vehicle Fuel Consumption","Colorado","CO",70 +2017-11-01,"Vehicle Fuel Consumption","Minnesota","MN",37 +2017-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-11-01,"Vehicle Fuel Consumption","Tennessee","TN",23 +2017-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",131 +2017-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2017-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-11-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2017-11-01,"Vehicle Fuel Consumption","South Carolina","SC",14 +2017-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2017-11-01,"Vehicle Fuel Consumption","California","CA",2061 +2017-11-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-11-01,"Vehicle Fuel Consumption","Virginia","VA",70 +2017-11-01,"Vehicle Fuel Consumption","Kansas","KS",40 +2017-11-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-11-01,"Vehicle Fuel Consumption","Missouri","MO",13 +2017-11-01,"Vehicle Fuel Consumption","Louisiana","LA",32 +2017-11-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-11-01,"Vehicle Fuel Consumption","Utah","UT",29 +2017-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",124 +2017-11-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2017-11-01,"Vehicle Fuel Consumption","Florida","FL",304 +2017-11-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2017-11-01,"Vehicle Fuel Consumption","Arizona","AZ",129 +2017-11-01,"Vehicle Fuel Consumption","Texas","TX",151 +2017-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",33 +2017-11-01,"Vehicle Fuel Consumption","Indiana","IN",8 +2017-11-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-11-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-11-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-11-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",34 +2017-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",32 +2017-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-11-01,"Vehicle Fuel Consumption","Illinois","IL",15 +2017-11-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-11-01,"Vehicle Fuel Consumption","New Mexico","NM",17 +2017-11-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2017-11-01,"Vehicle Fuel Consumption","North Carolina","NC",80 +2017-11-01,"Vehicle Fuel Consumption","Georgia","GA",166 +2017-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",3962 +2017-12-01,"Commercial Consumption","West Virginia","WV",3532 +2017-12-01,"Commercial Consumption","South Carolina","SC",3116 +2017-12-01,"Commercial Consumption","Pennsylvania","PA",22255 +2017-12-01,"Commercial Consumption","Missouri","MO",10274 +2017-12-01,"Commercial Consumption","New Jersey","NJ",24084 +2017-12-01,"Commercial Consumption","Kentucky","KY",6256 +2017-12-01,"Commercial Consumption","Idaho","ID",2924 +2017-12-01,"Commercial Consumption","District of Columbia","DC",2671 +2017-12-01,"Commercial Consumption","North Carolina","NC",8508 +2017-12-01,"Commercial Consumption","Virginia","VA",10467 +2017-12-01,"Commercial Consumption","Massachusetts","MA",17852 +2017-12-01,"Commercial Consumption","Maine","ME",1518 +2017-12-01,"Commercial Consumption","Arkansas","AR",6403 +2017-12-01,"Commercial Consumption","Illinois","IL",35923 +2017-12-01,"Commercial Consumption","Washington","WA",8464 +2017-12-01,"Commercial Consumption","Wisconsin","WI",14817 +2017-12-01,"Commercial Consumption","Texas","TX",19309 +2017-12-01,"Commercial Consumption","Rhode Island","RI",2161 +2017-12-01,"Commercial Consumption","California","CA",28182 +2017-12-01,"Commercial Consumption","Delaware","DE",2310 +2017-12-01,"Commercial Consumption","Michigan","MI",26443 +2017-12-01,"Commercial Consumption","North Dakota","ND",2012 +2017-12-01,"Commercial Consumption","U.S.","U.S.",486806 +2017-12-01,"Commercial Consumption","Florida","FL",6026 +2017-12-01,"Commercial Consumption","Indiana","IN",13712 +2017-12-01,"Commercial Consumption","New Hampshire","NH",1685 +2017-12-01,"Commercial Consumption","Connecticut","CT",7412 +2017-12-01,"Commercial Consumption","Alabama","AL",3930 +2017-12-01,"Commercial Consumption","New York","NY",45967 +2017-12-01,"Commercial Consumption","Arizona","AZ",3681 +2017-12-01,"Commercial Consumption","Colorado","CO",8628 +2017-12-01,"Commercial Consumption","Utah","UT",7489 +2017-12-01,"Commercial Consumption","New Mexico","NM",3968 +2017-12-01,"Commercial Consumption","Oregon","OR",4918 +2017-12-01,"Commercial Consumption","Montana","MT",3524 +2017-12-01,"Commercial Consumption","Hawaii","HI",203 +2017-12-01,"Commercial Consumption","Mississippi","MS",2697 +2017-12-01,"Commercial Consumption","Wyoming","WY",1818 +2017-12-01,"Commercial Consumption","Oklahoma","OK",6831 +2017-12-01,"Commercial Consumption","Maryland","MD",11513 +2017-12-01,"Commercial Consumption","Kansas","KS",5348 +2017-12-01,"Commercial Consumption","Vermont","VT",932 +2017-12-01,"Commercial Consumption","Louisiana","LA",3928 +2017-12-01,"Commercial Consumption","Minnesota","MN",16760 +2017-12-01,"Commercial Consumption","South Dakota","SD",1755 +2017-12-01,"Commercial Consumption","Georgia","GA",8535 +2017-12-01,"Commercial Consumption","Ohio","OH",28916 +2017-12-01,"Commercial Consumption","Iowa","IA",7870 +2017-12-01,"Commercial Consumption","Alaska","AK",1977 +2017-12-01,"Commercial Consumption","Nebraska","NE",4389 +2017-12-01,"Commercial Consumption","Tennessee","TN",8867 +2017-12-01,"Commercial Consumption","Nevada","NV",4043 +2017-12-01,"Delivered to Consumers","Wyoming","WY",9277 +2017-12-01,"Delivered to Consumers","Maryland","MD",33279 +2017-12-01,"Delivered to Consumers","Virginia","VA",61779 +2017-12-01,"Delivered to Consumers","Pennsylvania","PA",128572 +2017-12-01,"Delivered to Consumers","Florida","FL",104469 +2017-12-01,"Delivered to Consumers","Utah","UT",28190 +2017-12-01,"Delivered to Consumers","Indiana","IN",95324 +2017-12-01,"Delivered to Consumers","Delaware","DE",9314 +2017-12-01,"Delivered to Consumers","West Virginia","WV",11959 +2017-12-01,"Delivered to Consumers","Rhode Island","RI",9933 +2017-12-01,"Delivered to Consumers","Alaska","AK",7583 +2017-12-01,"Delivered to Consumers","Oklahoma","OK",56590 +2017-12-01,"Delivered to Consumers","Ohio","OH",135756 +2017-12-01,"Delivered to Consumers","Arkansas","AR",34245 +2017-12-01,"Delivered to Consumers","Mississippi","MS",50008 +2017-12-01,"Delivered to Consumers","South Carolina","SC",27907 +2017-12-01,"Delivered to Consumers","Louisiana","LA",132581 +2017-12-01,"Delivered to Consumers","New Hampshire","NH",5484 +2017-12-01,"Delivered to Consumers","Idaho","ID",14678 +2017-12-01,"Delivered to Consumers","Iowa","IA",45789 +2017-12-01,"Delivered to Consumers","Connecticut","CT",28638 +2017-12-01,"Delivered to Consumers","Alabama","AL",58956 +2017-12-01,"Delivered to Consumers","Nebraska","NE",19012 +2017-12-01,"Delivered to Consumers","California","CA",210260 +2017-12-01,"Delivered to Consumers","Arizona","AZ",25909 +2017-12-01,"Delivered to Consumers","Minnesota","MN",59057 +2017-12-01,"Delivered to Consumers","Montana","MT",10347 +2017-12-01,"Delivered to Consumers","Kansas","KS",30209 +2017-12-01,"Delivered to Consumers","Tennessee","TN",42605 +2017-12-01,"Delivered to Consumers","Oregon","OR",32882 +2017-12-01,"Delivered to Consumers","Maine","ME",4217 +2017-12-01,"Delivered to Consumers","Washington","WA",41255 +2017-12-01,"Delivered to Consumers","District of Columbia","DC",5087 +2017-12-01,"Delivered to Consumers","New Mexico","NM",17187 +2017-12-01,"Delivered to Consumers","Vermont","VT",1746 +2017-12-01,"Delivered to Consumers","Illinois","IL",145755 +2017-12-01,"Delivered to Consumers","South Dakota","SD",8656 +2017-12-01,"Delivered to Consumers","Massachusetts","MA",58012 +2017-12-01,"Delivered to Consumers","Hawaii","HI",259 +2017-12-01,"Delivered to Consumers","Missouri","MO",41080 +2017-12-01,"Delivered to Consumers","Nevada","NV",27073 +2017-12-01,"Delivered to Consumers","Georgia","GA",77082 +2017-12-01,"Delivered to Consumers","U.S.","U.S.",2858509 +2017-12-01,"Delivered to Consumers","New York","NY",160948 +2017-12-01,"Delivered to Consumers","Wisconsin","WI",68747 +2017-12-01,"Delivered to Consumers","North Carolina","NC",60579 +2017-12-01,"Delivered to Consumers","Colorado","CO",47906 +2017-12-01,"Delivered to Consumers","New Jersey","NJ",92817 +2017-12-01,"Delivered to Consumers","North Dakota","ND",7756 +2017-12-01,"Delivered to Consumers","Michigan","MI",124221 +2017-12-01,"Delivered to Consumers","Kentucky","KY",36591 +2017-12-01,"Delivered to Consumers","Texas","TX",310944 +2017-12-01,"Electric Power Consumption","Louisiana","LA",22690 +2017-12-01,"Electric Power Consumption","Utah","UT",3773 +2017-12-01,"Electric Power Consumption","Oregon","OR",14483 +2017-12-01,"Electric Power Consumption","Michigan","MI",20398 +2017-12-01,"Electric Power Consumption","Wyoming","WY",174 +2017-12-01,"Electric Power Consumption","Mississippi","MS",31330 +2017-12-01,"Electric Power Consumption","North Dakota","ND",563 +2017-12-01,"Electric Power Consumption","California","CA",51344 +2017-12-01,"Electric Power Consumption","New Mexico","NM",6270 +2017-12-01,"Electric Power Consumption","Colorado","CO",8928 +2017-12-01,"Electric Power Consumption","Iowa","IA",3617 +2017-12-01,"Electric Power Consumption","U.S.","U.S.",785029 +2017-12-01,"Electric Power Consumption","Nebraska","NE",318 +2017-12-01,"Electric Power Consumption","Kentucky","KY",8987 +2017-12-01,"Electric Power Consumption","Arizona","AZ",15827 +2017-12-01,"Electric Power Consumption","Georgia","GA",32250 +2017-12-01,"Electric Power Consumption","Washington","WA",10093 +2017-12-01,"Electric Power Consumption","Arkansas","AR",12625 +2017-12-01,"Electric Power Consumption","South Carolina","SC",10381 +2017-12-01,"Electric Power Consumption","Pennsylvania","PA",41869 +2017-12-01,"Electric Power Consumption","Maine","ME",287 +2017-12-01,"Electric Power Consumption","Ohio","OH",24868 +2017-12-01,"Electric Power Consumption","Indiana","IN",15855 +2017-12-01,"Electric Power Consumption","Delaware","DE",2485 +2017-12-01,"Electric Power Consumption","Alaska","AK",2686 +2017-12-01,"Electric Power Consumption","Rhode Island","RI",3506 +2017-12-01,"Electric Power Consumption","West Virginia","WV",352 +2017-12-01,"Electric Power Consumption","Missouri","MO",4713 +2017-12-01,"Electric Power Consumption","Hawaii","HI",NA +2017-12-01,"Electric Power Consumption","Connecticut","CT",10315 +2017-12-01,"Electric Power Consumption","Alabama","AL",30413 +2017-12-01,"Electric Power Consumption","Virginia","VA",26930 +2017-12-01,"Electric Power Consumption","New Jersey","NJ",20760 +2017-12-01,"Electric Power Consumption","Texas","TX",110440 +2017-12-01,"Electric Power Consumption","Vermont","VT",1 +2017-12-01,"Electric Power Consumption","New Hampshire","NH",1429 +2017-12-01,"Electric Power Consumption","Maryland","MD",5051 +2017-12-01,"Electric Power Consumption","Florida","FL",86656 +2017-12-01,"Electric Power Consumption","Oklahoma","OK",20018 +2017-12-01,"Electric Power Consumption","Illinois","IL",11066 +2017-12-01,"Electric Power Consumption","Massachusetts","MA",11524 +2017-12-01,"Electric Power Consumption","Tennessee","TN",6642 +2017-12-01,"Electric Power Consumption","South Dakota","SD",477 +2017-12-01,"Electric Power Consumption","Montana","MT",420 +2017-12-01,"Electric Power Consumption","Idaho","ID",2984 +2017-12-01,"Electric Power Consumption","New York","NY",30028 +2017-12-01,"Electric Power Consumption","Minnesota","MN",4787 +2017-12-01,"Electric Power Consumption","Kansas","KS",1601 +2017-12-01,"Electric Power Consumption","Wisconsin","WI",11233 +2017-12-01,"Electric Power Consumption","Nevada","NV",14784 +2017-12-01,"Electric Power Consumption","North Carolina","NC",26801 +2017-12-01,"Industrial Consumption","Montana","MT",2776 +2017-12-01,"Industrial Consumption","Louisiana","LA",99676 +2017-12-01,"Industrial Consumption","Arizona","AZ",1999 +2017-12-01,"Industrial Consumption","Pennsylvania","PA",22021 +2017-12-01,"Industrial Consumption","New York","NY",9130 +2017-12-01,"Industrial Consumption","Nevada","NV",1832 +2017-12-01,"Industrial Consumption","Alabama","AL",18414 +2017-12-01,"Industrial Consumption","New Hampshire","NH",941 +2017-12-01,"Industrial Consumption","Rhode Island","RI",773 +2017-12-01,"Industrial Consumption","District of Columbia","DC",NA +2017-12-01,"Industrial Consumption","North Dakota","ND",3243 +2017-12-01,"Industrial Consumption","Massachusetts","MA",5723 +2017-12-01,"Industrial Consumption","Kansas","KS",12448 +2017-12-01,"Industrial Consumption","Mississippi","MS",11836 +2017-12-01,"Industrial Consumption","Nebraska","NE",8326 +2017-12-01,"Industrial Consumption","Tennessee","TN",12989 +2017-12-01,"Industrial Consumption","New Jersey","NJ",4842 +2017-12-01,"Industrial Consumption","Iowa","IA",23014 +2017-12-01,"Industrial Consumption","North Carolina","NC",10728 +2017-12-01,"Industrial Consumption","Oklahoma","OK",17610 +2017-12-01,"Industrial Consumption","Colorado","CO",9222 +2017-12-01,"Industrial Consumption","Oregon","OR",5262 +2017-12-01,"Industrial Consumption","Vermont","VT",226 +2017-12-01,"Industrial Consumption","Kentucky","KY",11400 +2017-12-01,"Industrial Consumption","Indiana","IN",39283 +2017-12-01,"Industrial Consumption","Georgia","GA",13800 +2017-12-01,"Industrial Consumption","Hawaii","HI",5 +2017-12-01,"Industrial Consumption","Missouri","MO",6836 +2017-12-01,"Industrial Consumption","South Dakota","SD",4248 +2017-12-01,"Industrial Consumption","Ohio","OH",28889 +2017-12-01,"Industrial Consumption","California","CA",66075 +2017-12-01,"Industrial Consumption","Virginia","VA",8235 +2017-12-01,"Industrial Consumption","Connecticut","CT",2604 +2017-12-01,"Industrial Consumption","Illinois","IL",29217 +2017-12-01,"Industrial Consumption","Maryland","MD",1543 +2017-12-01,"Industrial Consumption","Utah","UT",3874 +2017-12-01,"Industrial Consumption","Maine","ME",1892 +2017-12-01,"Industrial Consumption","Florida","FL",9658 +2017-12-01,"Industrial Consumption","Wyoming","WY",5482 +2017-12-01,"Industrial Consumption","Wisconsin","WI",17452 +2017-12-01,"Industrial Consumption","Michigan","MI",19356 +2017-12-01,"Industrial Consumption","Alaska","AK",395 +2017-12-01,"Industrial Consumption","U.S.","U.S.",760689 +2017-12-01,"Industrial Consumption","Arkansas","AR",9497 +2017-12-01,"Industrial Consumption","Texas","TX",155380 +2017-12-01,"Industrial Consumption","South Carolina","SC",8316 +2017-12-01,"Industrial Consumption","Minnesota","MN",15411 +2017-12-01,"Industrial Consumption","Washington","WA",7721 +2017-12-01,"Industrial Consumption","New Mexico","NM",1487 +2017-12-01,"Industrial Consumption","West Virginia","WV",3601 +2017-12-01,"Industrial Consumption","Idaho","ID",3492 +2017-12-01,"Industrial Consumption","Delaware","DE",2511 +2017-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",144427 +2017-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",83080 +2017-12-01,"Residential Consumption","Michigan","MI",58024 +2017-12-01,"Residential Consumption","New Mexico","NM",5445 +2017-12-01,"Residential Consumption","Idaho","ID",5273 +2017-12-01,"Residential Consumption","Alaska","AK",2525 +2017-12-01,"Residential Consumption","Illinois","IL",69533 +2017-12-01,"Residential Consumption","South Carolina","SC",6078 +2017-12-01,"Residential Consumption","North Carolina","NC",14460 +2017-12-01,"Residential Consumption","Iowa","IA",11284 +2017-12-01,"Residential Consumption","District of Columbia","DC",2383 +2017-12-01,"Residential Consumption","Pennsylvania","PA",42299 +2017-12-01,"Residential Consumption","Indiana","IN",26465 +2017-12-01,"Residential Consumption","Florida","FL",1816 +2017-12-01,"Residential Consumption","Kentucky","KY",9945 +2017-12-01,"Residential Consumption","California","CA",62530 +2017-12-01,"Residential Consumption","Vermont","VT",587 +2017-12-01,"Residential Consumption","Virginia","VA",16076 +2017-12-01,"Residential Consumption","Massachusetts","MA",22904 +2017-12-01,"Residential Consumption","Montana","MT",3627 +2017-12-01,"Residential Consumption","Missouri","MO",19243 +2017-12-01,"Residential Consumption","Wyoming","WY",1801 +2017-12-01,"Residential Consumption","Oregon","OR",8214 +2017-12-01,"Residential Consumption","New Hampshire","NH",1428 +2017-12-01,"Residential Consumption","Colorado","CO",21055 +2017-12-01,"Residential Consumption","Kansas","KS",10771 +2017-12-01,"Residential Consumption","Delaware","DE",2007 +2017-12-01,"Residential Consumption","West Virginia","WV",4473 +2017-12-01,"Residential Consumption","U.S.","U.S.",821890 +2017-12-01,"Residential Consumption","New York","NY",75737 +2017-12-01,"Residential Consumption","Hawaii","HI",50 +2017-12-01,"Residential Consumption","Wisconsin","WI",25210 +2017-12-01,"Residential Consumption","South Dakota","SD",2176 +2017-12-01,"Residential Consumption","North Dakota","ND",1938 +2017-12-01,"Residential Consumption","Texas","TX",25659 +2017-12-01,"Residential Consumption","Washington","WA",14960 +2017-12-01,"Residential Consumption","Arizona","AZ",4269 +2017-12-01,"Residential Consumption","Rhode Island","RI",3485 +2017-12-01,"Residential Consumption","Mississippi","MS",4142 +2017-12-01,"Residential Consumption","Louisiana","LA",6254 +2017-12-01,"Residential Consumption","Nebraska","NE",5967 +2017-12-01,"Residential Consumption","Maryland","MD",15141 +2017-12-01,"Residential Consumption","Minnesota","MN",22061 +2017-12-01,"Residential Consumption","Maine","ME",520 +2017-12-01,"Residential Consumption","Arkansas","AR",5716 +2017-12-01,"Residential Consumption","New Jersey","NJ",43097 +2017-12-01,"Residential Consumption","Alabama","AL",6192 +2017-12-01,"Residential Consumption","Ohio","OH",53038 +2017-12-01,"Residential Consumption","Connecticut","CT",8288 +2017-12-01,"Residential Consumption","Tennessee","TN",14083 +2017-12-01,"Residential Consumption","Utah","UT",13023 +2017-12-01,"Residential Consumption","Nevada","NV",6316 +2017-12-01,"Residential Consumption","Georgia","GA",22326 +2017-12-01,"Residential Consumption","Oklahoma","OK",11996 +2017-12-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2017-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",33 +2017-12-01,"Vehicle Fuel Consumption","Texas","TX",156 +2017-12-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2017-12-01,"Vehicle Fuel Consumption","Mississippi","MS",2 +2017-12-01,"Vehicle Fuel Consumption","Tennessee","TN",24 +2017-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2017-12-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2017-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2017-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2017-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2017-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",35 +2017-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",136 +2017-12-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2017-12-01,"Vehicle Fuel Consumption","Kansas","KS",41 +2017-12-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2017-12-01,"Vehicle Fuel Consumption","Indiana","IN",9 +2017-12-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2017-12-01,"Vehicle Fuel Consumption","California","CA",2129 +2017-12-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2017-12-01,"Vehicle Fuel Consumption","Kentucky","KY",4 +2017-12-01,"Vehicle Fuel Consumption","Washington","WA",17 +2017-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2017-12-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2017-12-01,"Vehicle Fuel Consumption","South Carolina","SC",15 +2017-12-01,"Vehicle Fuel Consumption","Illinois","IL",16 +2017-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2017-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2017-12-01,"Vehicle Fuel Consumption","Utah","UT",30 +2017-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2017-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2017-12-01,"Vehicle Fuel Consumption","Colorado","CO",73 +2017-12-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2017-12-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2017-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",4094 +2017-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2017-12-01,"Vehicle Fuel Consumption","Ohio","OH",45 +2017-12-01,"Vehicle Fuel Consumption","Florida","FL",314 +2017-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2017-12-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2017-12-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2017-12-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2017-12-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2017-12-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2017-12-01,"Vehicle Fuel Consumption","North Carolina","NC",83 +2017-12-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2017-12-01,"Vehicle Fuel Consumption","New York","NY",86 +2017-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2017-12-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2017-12-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2017-12-01,"Vehicle Fuel Consumption","Georgia","GA",171 +2017-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-01-01,"Commercial Consumption","North Dakota","ND",2083 +2018-01-01,"Commercial Consumption","Colorado","CO",8797 +2018-01-01,"Commercial Consumption","Wisconsin","WI",16782 +2018-01-01,"Commercial Consumption","Montana","MT",3685 +2018-01-01,"Commercial Consumption","Louisiana","LA",4953 +2018-01-01,"Commercial Consumption","South Carolina","SC",3995 +2018-01-01,"Commercial Consumption","Massachusetts","MA",18782 +2018-01-01,"Commercial Consumption","Georgia","GA",11453 +2018-01-01,"Commercial Consumption","Wyoming","WY",2007 +2018-01-01,"Commercial Consumption","New Mexico","NM",3908 +2018-01-01,"Commercial Consumption","Oklahoma","OK",8504 +2018-01-01,"Commercial Consumption","Maryland","MD",11205 +2018-01-01,"Commercial Consumption","Idaho","ID",2627 +2018-01-01,"Commercial Consumption","Iowa","IA",9679 +2018-01-01,"Commercial Consumption","Indiana","IN",15957 +2018-01-01,"Commercial Consumption","South Dakota","SD",2025 +2018-01-01,"Commercial Consumption","New Jersey","NJ",27835 +2018-01-01,"Commercial Consumption","Kansas","KS",6242 +2018-01-01,"Commercial Consumption","Illinois","IL",39391 +2018-01-01,"Commercial Consumption","Minnesota","MN",18203 +2018-01-01,"Commercial Consumption","Pennsylvania","PA",29439 +2018-01-01,"Commercial Consumption","Missouri","MO",12483 +2018-01-01,"Commercial Consumption","U.S.","U.S.",553970 +2018-01-01,"Commercial Consumption","Florida","FL",7020 +2018-01-01,"Commercial Consumption","Vermont","VT",998 +2018-01-01,"Commercial Consumption","Alaska","AK",2021 +2018-01-01,"Commercial Consumption","California","CA",25305 +2018-01-01,"Commercial Consumption","Nebraska","NE",5587 +2018-01-01,"Commercial Consumption","Mississippi","MS",4244 +2018-01-01,"Commercial Consumption","Delaware","DE",2152 +2018-01-01,"Commercial Consumption","Nevada","NV",3797 +2018-01-01,"Commercial Consumption","Utah","UT",6175 +2018-01-01,"Commercial Consumption","New Hampshire","NH",1934 +2018-01-01,"Commercial Consumption","Texas","TX",32926 +2018-01-01,"Commercial Consumption","Rhode Island","RI",2391 +2018-01-01,"Commercial Consumption","Alabama","AL",5216 +2018-01-01,"Commercial Consumption","Tennessee","TN",11381 +2018-01-01,"Commercial Consumption","District of Columbia","DC",2324 +2018-01-01,"Commercial Consumption","West Virginia","WV",3959 +2018-01-01,"Commercial Consumption","Washington","WA",7494 +2018-01-01,"Commercial Consumption","Virginia","VA",12978 +2018-01-01,"Commercial Consumption","Ohio","OH",32581 +2018-01-01,"Commercial Consumption","Connecticut","CT",8741 +2018-01-01,"Commercial Consumption","Arkansas","AR",8136 +2018-01-01,"Commercial Consumption","North Carolina","NC",10627 +2018-01-01,"Commercial Consumption","Oregon","OR",3957 +2018-01-01,"Commercial Consumption","Maine","ME",1591 +2018-01-01,"Commercial Consumption","Kentucky","KY",7862 +2018-01-01,"Commercial Consumption","Hawaii","HI",243 +2018-01-01,"Commercial Consumption","New York","NY",48575 +2018-01-01,"Commercial Consumption","Arizona","AZ",3711 +2018-01-01,"Commercial Consumption","Michigan","MI",30008 +2018-01-01,"Delivered to Consumers","West Virginia","WV",13804 +2018-01-01,"Delivered to Consumers","Rhode Island","RI",9985 +2018-01-01,"Delivered to Consumers","New York","NY",177724 +2018-01-01,"Delivered to Consumers","Alaska","AK",7886 +2018-01-01,"Delivered to Consumers","Iowa","IA",50302 +2018-01-01,"Delivered to Consumers","Pennsylvania","PA",142427 +2018-01-01,"Delivered to Consumers","Missouri","MO",49476 +2018-01-01,"Delivered to Consumers","Massachusetts","MA",61282 +2018-01-01,"Delivered to Consumers","South Carolina","SC",32108 +2018-01-01,"Delivered to Consumers","Utah","UT",24454 +2018-01-01,"Delivered to Consumers","Michigan","MI",132122 +2018-01-01,"Delivered to Consumers","Wisconsin","WI",71988 +2018-01-01,"Delivered to Consumers","Virginia","VA",71001 +2018-01-01,"Delivered to Consumers","Georgia","GA",89206 +2018-01-01,"Delivered to Consumers","Arizona","AZ",23446 +2018-01-01,"Delivered to Consumers","U.S.","U.S.",3107734 +2018-01-01,"Delivered to Consumers","Indiana","IN",102503 +2018-01-01,"Delivered to Consumers","Tennessee","TN",54653 +2018-01-01,"Delivered to Consumers","Arkansas","AR",38505 +2018-01-01,"Delivered to Consumers","Nevada","NV",27128 +2018-01-01,"Delivered to Consumers","Delaware","DE",9980 +2018-01-01,"Delivered to Consumers","Vermont","VT",1995 +2018-01-01,"Delivered to Consumers","South Dakota","SD",9394 +2018-01-01,"Delivered to Consumers","Kentucky","KY",47093 +2018-01-01,"Delivered to Consumers","California","CA",196195 +2018-01-01,"Delivered to Consumers","Louisiana","LA",138962 +2018-01-01,"Delivered to Consumers","North Dakota","ND",7746 +2018-01-01,"Delivered to Consumers","Minnesota","MN",65270 +2018-01-01,"Delivered to Consumers","New Mexico","NM",17368 +2018-01-01,"Delivered to Consumers","Montana","MT",10103 +2018-01-01,"Delivered to Consumers","Hawaii","HI",309 +2018-01-01,"Delivered to Consumers","Connecticut","CT",31112 +2018-01-01,"Delivered to Consumers","Alabama","AL",69163 +2018-01-01,"Delivered to Consumers","Texas","TX",375409 +2018-01-01,"Delivered to Consumers","Washington","WA",32215 +2018-01-01,"Delivered to Consumers","Oklahoma","OK",59480 +2018-01-01,"Delivered to Consumers","Nebraska","NE",21962 +2018-01-01,"Delivered to Consumers","Colorado","CO",50367 +2018-01-01,"Delivered to Consumers","New Jersey","NJ",99365 +2018-01-01,"Delivered to Consumers","New Hampshire","NH",5508 +2018-01-01,"Delivered to Consumers","Florida","FL",110801 +2018-01-01,"Delivered to Consumers","Wyoming","WY",9582 +2018-01-01,"Delivered to Consumers","Illinois","IL",163402 +2018-01-01,"Delivered to Consumers","Maryland","MD",34065 +2018-01-01,"Delivered to Consumers","Idaho","ID",12270 +2018-01-01,"Delivered to Consumers","Mississippi","MS",59859 +2018-01-01,"Delivered to Consumers","Oregon","OR",25827 +2018-01-01,"Delivered to Consumers","Maine","ME",4586 +2018-01-01,"Delivered to Consumers","Kansas","KS",34317 +2018-01-01,"Delivered to Consumers","Ohio","OH",153347 +2018-01-01,"Delivered to Consumers","North Carolina","NC",65653 +2018-01-01,"Delivered to Consumers","District of Columbia","DC",5030 +2018-01-01,"Electric Power Consumption","Virginia","VA",28221 +2018-01-01,"Electric Power Consumption","South Carolina","SC",11714 +2018-01-01,"Electric Power Consumption","Texas","TX",123323 +2018-01-01,"Electric Power Consumption","U.S.","U.S.",786001 +2018-01-01,"Electric Power Consumption","Alabama","AL",34239 +2018-01-01,"Electric Power Consumption","Utah","UT",3801 +2018-01-01,"Electric Power Consumption","Pennsylvania","PA",37650 +2018-01-01,"Electric Power Consumption","Georgia","GA",32719 +2018-01-01,"Electric Power Consumption","Alaska","AK",2598 +2018-01-01,"Electric Power Consumption","New Mexico","NM",5619 +2018-01-01,"Electric Power Consumption","New Jersey","NJ",14497 +2018-01-01,"Electric Power Consumption","Michigan","MI",22730 +2018-01-01,"Electric Power Consumption","Ohio","OH",27291 +2018-01-01,"Electric Power Consumption","Delaware","DE",1774 +2018-01-01,"Electric Power Consumption","Arizona","AZ",11913 +2018-01-01,"Electric Power Consumption","Louisiana","LA",25206 +2018-01-01,"Electric Power Consumption","Colorado","CO",10504 +2018-01-01,"Electric Power Consumption","Rhode Island","RI",2614 +2018-01-01,"Electric Power Consumption","Oklahoma","OK",17781 +2018-01-01,"Electric Power Consumption","Nevada","NV",14748 +2018-01-01,"Electric Power Consumption","Iowa","IA",2915 +2018-01-01,"Electric Power Consumption","Vermont","VT",NA +2018-01-01,"Electric Power Consumption","South Dakota","SD",470 +2018-01-01,"Electric Power Consumption","Kentucky","KY",14698 +2018-01-01,"Electric Power Consumption","North Dakota","ND",586 +2018-01-01,"Electric Power Consumption","Montana","MT",359 +2018-01-01,"Electric Power Consumption","Wyoming","WY",61 +2018-01-01,"Electric Power Consumption","Missouri","MO",5259 +2018-01-01,"Electric Power Consumption","Indiana","IN",16437 +2018-01-01,"Electric Power Consumption","Arkansas","AR",11635 +2018-01-01,"Electric Power Consumption","Oregon","OR",10389 +2018-01-01,"Electric Power Consumption","Kansas","KS",1429 +2018-01-01,"Electric Power Consumption","Maine","ME",498 +2018-01-01,"Electric Power Consumption","Mississippi","MS",36461 +2018-01-01,"Electric Power Consumption","Maryland","MD",3287 +2018-01-01,"Electric Power Consumption","California","CA",46910 +2018-01-01,"Electric Power Consumption","Washington","WA",4845 +2018-01-01,"Electric Power Consumption","New York","NY",27781 +2018-01-01,"Electric Power Consumption","Minnesota","MN",3914 +2018-01-01,"Electric Power Consumption","West Virginia","WV",504 +2018-01-01,"Electric Power Consumption","Wisconsin","WI",10881 +2018-01-01,"Electric Power Consumption","Tennessee","TN",9481 +2018-01-01,"Electric Power Consumption","Nebraska","NE",282 +2018-01-01,"Electric Power Consumption","North Carolina","NC",24328 +2018-01-01,"Electric Power Consumption","New Hampshire","NH",916 +2018-01-01,"Electric Power Consumption","Connecticut","CT",9029 +2018-01-01,"Electric Power Consumption","Idaho","ID",1865 +2018-01-01,"Electric Power Consumption","Illinois","IL",10632 +2018-01-01,"Electric Power Consumption","Massachusetts","MA",10938 +2018-01-01,"Electric Power Consumption","Hawaii","HI",NA +2018-01-01,"Electric Power Consumption","Florida","FL",90270 +2018-01-01,"Industrial Consumption","Arizona","AZ",1867 +2018-01-01,"Industrial Consumption","U.S.","U.S.",782206 +2018-01-01,"Industrial Consumption","Oregon","OR",5243 +2018-01-01,"Industrial Consumption","Arkansas","AR",10401 +2018-01-01,"Industrial Consumption","Texas","TX",161055 +2018-01-01,"Industrial Consumption","West Virginia","WV",3819 +2018-01-01,"Industrial Consumption","Vermont","VT",224 +2018-01-01,"Industrial Consumption","Missouri","MO",7052 +2018-01-01,"Industrial Consumption","Louisiana","LA",98627 +2018-01-01,"Industrial Consumption","Nevada","NV",1823 +2018-01-01,"Industrial Consumption","Alabama","AL",20161 +2018-01-01,"Industrial Consumption","Minnesota","MN",16705 +2018-01-01,"Industrial Consumption","Georgia","GA",14141 +2018-01-01,"Industrial Consumption","North Dakota","ND",2974 +2018-01-01,"Industrial Consumption","Oklahoma","OK",18387 +2018-01-01,"Industrial Consumption","Kansas","KS",13112 +2018-01-01,"Industrial Consumption","Virginia","VA",8239 +2018-01-01,"Industrial Consumption","Idaho","ID",3525 +2018-01-01,"Industrial Consumption","Montana","MT",2346 +2018-01-01,"Industrial Consumption","Utah","UT",3953 +2018-01-01,"Industrial Consumption","Pennsylvania","PA",22907 +2018-01-01,"Industrial Consumption","California","CA",64340 +2018-01-01,"Industrial Consumption","Wyoming","WY",5538 +2018-01-01,"Industrial Consumption","New Jersey","NJ",5849 +2018-01-01,"Industrial Consumption","Connecticut","CT",2744 +2018-01-01,"Industrial Consumption","Indiana","IN",40509 +2018-01-01,"Industrial Consumption","Illinois","IL",28786 +2018-01-01,"Industrial Consumption","Delaware","DE",3632 +2018-01-01,"Industrial Consumption","Rhode Island","RI",842 +2018-01-01,"Industrial Consumption","North Carolina","NC",11762 +2018-01-01,"Industrial Consumption","Maryland","MD",1780 +2018-01-01,"Industrial Consumption","Ohio","OH",33298 +2018-01-01,"Industrial Consumption","New York","NY",9592 +2018-01-01,"Industrial Consumption","Nebraska","NE",7834 +2018-01-01,"Industrial Consumption","Kentucky","KY",12439 +2018-01-01,"Industrial Consumption","Alaska","AK",558 +2018-01-01,"Industrial Consumption","Massachusetts","MA",5993 +2018-01-01,"Industrial Consumption","Washington","WA",7624 +2018-01-01,"Industrial Consumption","Maine","ME",1904 +2018-01-01,"Industrial Consumption","District of Columbia","DC",NA +2018-01-01,"Industrial Consumption","New Mexico","NM",1617 +2018-01-01,"Industrial Consumption","Mississippi","MS",12042 +2018-01-01,"Industrial Consumption","Wisconsin","WI",18073 +2018-01-01,"Industrial Consumption","Tennessee","TN",13945 +2018-01-01,"Industrial Consumption","New Hampshire","NH",1022 +2018-01-01,"Industrial Consumption","Florida","FL",10038 +2018-01-01,"Industrial Consumption","Michigan","MI",18764 +2018-01-01,"Industrial Consumption","Hawaii","HI",8 +2018-01-01,"Industrial Consumption","Colorado","CO",9743 +2018-01-01,"Industrial Consumption","South Dakota","SD",4295 +2018-01-01,"Industrial Consumption","South Carolina","SC",7498 +2018-01-01,"Industrial Consumption","Iowa","IA",23574 +2018-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",134390 +2018-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",98811 +2018-01-01,"Residential Consumption","Wisconsin","WI",26214 +2018-01-01,"Residential Consumption","Nebraska","NE",8245 +2018-01-01,"Residential Consumption","Minnesota","MN",26409 +2018-01-01,"Residential Consumption","New Mexico","NM",6205 +2018-01-01,"Residential Consumption","Oklahoma","OK",14670 +2018-01-01,"Residential Consumption","Wyoming","WY",1975 +2018-01-01,"Residential Consumption","North Carolina","NC",18821 +2018-01-01,"Residential Consumption","Iowa","IA",14130 +2018-01-01,"Residential Consumption","Hawaii","HI",58 +2018-01-01,"Residential Consumption","Tennessee","TN",19824 +2018-01-01,"Residential Consumption","California","CA",57512 +2018-01-01,"Residential Consumption","U.S.","U.S.",981276 +2018-01-01,"Residential Consumption","New York","NY",91695 +2018-01-01,"Residential Consumption","Virginia","VA",21489 +2018-01-01,"Residential Consumption","Nevada","NV",6655 +2018-01-01,"Residential Consumption","Maine","ME",592 +2018-01-01,"Residential Consumption","Massachusetts","MA",25559 +2018-01-01,"Residential Consumption","Idaho","ID",4249 +2018-01-01,"Residential Consumption","Montana","MT",3712 +2018-01-01,"Residential Consumption","Delaware","DE",2421 +2018-01-01,"Residential Consumption","West Virginia","WV",5522 +2018-01-01,"Residential Consumption","Vermont","VT",773 +2018-01-01,"Residential Consumption","District of Columbia","DC",2669 +2018-01-01,"Residential Consumption","Arkansas","AR",8329 +2018-01-01,"Residential Consumption","New Jersey","NJ",51148 +2018-01-01,"Residential Consumption","New Hampshire","NH",1636 +2018-01-01,"Residential Consumption","Missouri","MO",24647 +2018-01-01,"Residential Consumption","Arizona","AZ",5815 +2018-01-01,"Residential Consumption","Pennsylvania","PA",52279 +2018-01-01,"Residential Consumption","Indiana","IN",29599 +2018-01-01,"Residential Consumption","North Dakota","ND",2102 +2018-01-01,"Residential Consumption","Kentucky","KY",12087 +2018-01-01,"Residential Consumption","Alabama","AL",9540 +2018-01-01,"Residential Consumption","Louisiana","LA",10140 +2018-01-01,"Residential Consumption","Michigan","MI",60620 +2018-01-01,"Residential Consumption","Maryland","MD",17761 +2018-01-01,"Residential Consumption","Colorado","CO",21216 +2018-01-01,"Residential Consumption","Kansas","KS",13476 +2018-01-01,"Residential Consumption","Texas","TX",57953 +2018-01-01,"Residential Consumption","Georgia","GA",30720 +2018-01-01,"Residential Consumption","Florida","FL",3108 +2018-01-01,"Residential Consumption","Washington","WA",12237 +2018-01-01,"Residential Consumption","South Carolina","SC",8891 +2018-01-01,"Residential Consumption","Rhode Island","RI",4130 +2018-01-01,"Residential Consumption","Oregon","OR",6233 +2018-01-01,"Residential Consumption","Ohio","OH",60134 +2018-01-01,"Residential Consumption","Mississippi","MS",7110 +2018-01-01,"Residential Consumption","Connecticut","CT",10580 +2018-01-01,"Residential Consumption","Utah","UT",10495 +2018-01-01,"Residential Consumption","South Dakota","SD",2604 +2018-01-01,"Residential Consumption","Alaska","AK",2708 +2018-01-01,"Residential Consumption","Illinois","IL",84581 +2018-01-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2018-01-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-01-01,"Vehicle Fuel Consumption","Florida","FL",365 +2018-01-01,"Vehicle Fuel Consumption","Utah","UT",30 +2018-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2018-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-01-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2018-01-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2018-01-01,"Vehicle Fuel Consumption","Colorado","CO",108 +2018-01-01,"Vehicle Fuel Consumption","North Carolina","NC",116 +2018-01-01,"Vehicle Fuel Consumption","Georgia","GA",173 +2018-01-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-01-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-01-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-01-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2018-01-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2018-01-01,"Vehicle Fuel Consumption","Texas","TX",152 +2018-01-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2018-01-01,"Vehicle Fuel Consumption","Missouri","MO",34 +2018-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2018-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",4282 +2018-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-01-01,"Vehicle Fuel Consumption","New York","NY",82 +2018-01-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2018-01-01,"Vehicle Fuel Consumption","Kansas","KS",58 +2018-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-01-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-01-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-01-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2018-01-01,"Vehicle Fuel Consumption","California","CA",2128 +2018-01-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",153 +2018-01-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-01-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-01-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-01-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-01-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2018-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-01-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-01-01,"Vehicle Fuel Consumption","Iowa","IA",4 +2018-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-01-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-01-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2018-01-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",138 +2018-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2018-01-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2018-01-01,"Vehicle Fuel Consumption","Louisiana","LA",36 +2018-02-01,"Commercial Consumption","Wyoming","WY",1908 +2018-02-01,"Commercial Consumption","Virginia","VA",7803 +2018-02-01,"Commercial Consumption","Pennsylvania","PA",19791 +2018-02-01,"Commercial Consumption","Massachusetts","MA",17003 +2018-02-01,"Commercial Consumption","Montana","MT",3758 +2018-02-01,"Commercial Consumption","Kentucky","KY",4686 +2018-02-01,"Commercial Consumption","Georgia","GA",5117 +2018-02-01,"Commercial Consumption","Delaware","DE",1698 +2018-02-01,"Commercial Consumption","Louisiana","LA",2624 +2018-02-01,"Commercial Consumption","Nebraska","NE",5102 +2018-02-01,"Commercial Consumption","Arizona","AZ",3337 +2018-02-01,"Commercial Consumption","Utah","UT",5146 +2018-02-01,"Commercial Consumption","Oklahoma","OK",7165 +2018-02-01,"Commercial Consumption","Texas","TX",24249 +2018-02-01,"Commercial Consumption","Vermont","VT",710 +2018-02-01,"Commercial Consumption","Alaska","AK",1968 +2018-02-01,"Commercial Consumption","Mississippi","MS",1989 +2018-02-01,"Commercial Consumption","Tennessee","TN",6317 +2018-02-01,"Commercial Consumption","Michigan","MI",23818 +2018-02-01,"Commercial Consumption","West Virginia","WV",2854 +2018-02-01,"Commercial Consumption","New Mexico","NM",2678 +2018-02-01,"Commercial Consumption","New Jersey","NJ",20716 +2018-02-01,"Commercial Consumption","Maine","ME",1175 +2018-02-01,"Commercial Consumption","Idaho","ID",2449 +2018-02-01,"Commercial Consumption","Hawaii","HI",203 +2018-02-01,"Commercial Consumption","District of Columbia","DC",1865 +2018-02-01,"Commercial Consumption","Colorado","CO",8092 +2018-02-01,"Commercial Consumption","Oregon","OR",3828 +2018-02-01,"Commercial Consumption","Maryland","MD",8194 +2018-02-01,"Commercial Consumption","Alabama","AL",2187 +2018-02-01,"Commercial Consumption","North Dakota","ND",2129 +2018-02-01,"Commercial Consumption","Connecticut","CT",6483 +2018-02-01,"Commercial Consumption","California","CA",24163 +2018-02-01,"Commercial Consumption","Arkansas","AR",6098 +2018-02-01,"Commercial Consumption","Nevada","NV",3626 +2018-02-01,"Commercial Consumption","Indiana","IN",11042 +2018-02-01,"Commercial Consumption","North Carolina","NC",5830 +2018-02-01,"Commercial Consumption","Wisconsin","WI",14056 +2018-02-01,"Commercial Consumption","U.S.","U.S.",424203 +2018-02-01,"Commercial Consumption","Kansas","KS",5280 +2018-02-01,"Commercial Consumption","Washington","WA",7243 +2018-02-01,"Commercial Consumption","South Carolina","SC",2285 +2018-02-01,"Commercial Consumption","Minnesota","MN",17065 +2018-02-01,"Commercial Consumption","Missouri","MO",9946 +2018-02-01,"Commercial Consumption","South Dakota","SD",1872 +2018-02-01,"Commercial Consumption","New Hampshire","NH",1269 +2018-02-01,"Commercial Consumption","Florida","FL",5498 +2018-02-01,"Commercial Consumption","Rhode Island","RI",1582 +2018-02-01,"Commercial Consumption","Ohio","OH",22244 +2018-02-01,"Commercial Consumption","Iowa","IA",7931 +2018-02-01,"Commercial Consumption","New York","NY",37166 +2018-02-01,"Commercial Consumption","Illinois","IL",32965 +2018-02-01,"Delivered to Consumers","U.S.","U.S.",2507085 +2018-02-01,"Delivered to Consumers","Wyoming","WY",9228 +2018-02-01,"Delivered to Consumers","New York","NY",134842 +2018-02-01,"Delivered to Consumers","South Carolina","SC",20603 +2018-02-01,"Delivered to Consumers","Vermont","VT",1497 +2018-02-01,"Delivered to Consumers","Connecticut","CT",24603 +2018-02-01,"Delivered to Consumers","Nebraska","NE",20020 +2018-02-01,"Delivered to Consumers","Minnesota","MN",59360 +2018-02-01,"Delivered to Consumers","Illinois","IL",128765 +2018-02-01,"Delivered to Consumers","Rhode Island","RI",7863 +2018-02-01,"Delivered to Consumers","Kansas","KS",29422 +2018-02-01,"Delivered to Consumers","Ohio","OH",114699 +2018-02-01,"Delivered to Consumers","Virginia","VA",56811 +2018-02-01,"Delivered to Consumers","Mississippi","MS",41659 +2018-02-01,"Delivered to Consumers","Arizona","AZ",22323 +2018-02-01,"Delivered to Consumers","Delaware","DE",8574 +2018-02-01,"Delivered to Consumers","Alaska","AK",7394 +2018-02-01,"Delivered to Consumers","Oklahoma","OK",54438 +2018-02-01,"Delivered to Consumers","Wisconsin","WI",63856 +2018-02-01,"Delivered to Consumers","Missouri","MO",37778 +2018-02-01,"Delivered to Consumers","Texas","TX",303251 +2018-02-01,"Delivered to Consumers","Nevada","NV",24569 +2018-02-01,"Delivered to Consumers","West Virginia","WV",10069 +2018-02-01,"Delivered to Consumers","Idaho","ID",10828 +2018-02-01,"Delivered to Consumers","Kentucky","KY",29194 +2018-02-01,"Delivered to Consumers","Alabama","AL",48373 +2018-02-01,"Delivered to Consumers","Colorado","CO",46962 +2018-02-01,"Delivered to Consumers","New Jersey","NJ",75957 +2018-02-01,"Delivered to Consumers","Maine","ME",3583 +2018-02-01,"Delivered to Consumers","Georgia","GA",58135 +2018-02-01,"Delivered to Consumers","North Dakota","ND",7548 +2018-02-01,"Delivered to Consumers","South Dakota","SD",9137 +2018-02-01,"Delivered to Consumers","Montana","MT",10006 +2018-02-01,"Delivered to Consumers","California","CA",180118 +2018-02-01,"Delivered to Consumers","Oregon","OR",22527 +2018-02-01,"Delivered to Consumers","Louisiana","LA",117581 +2018-02-01,"Delivered to Consumers","Utah","UT",20645 +2018-02-01,"Delivered to Consumers","Maryland","MD",26266 +2018-02-01,"Delivered to Consumers","Tennessee","TN",33976 +2018-02-01,"Delivered to Consumers","Arkansas","AR",31566 +2018-02-01,"Delivered to Consumers","North Carolina","NC",46369 +2018-02-01,"Delivered to Consumers","Florida","FL",98331 +2018-02-01,"Delivered to Consumers","District of Columbia","DC",3712 +2018-02-01,"Delivered to Consumers","New Mexico","NM",14725 +2018-02-01,"Delivered to Consumers","Indiana","IN",82188 +2018-02-01,"Delivered to Consumers","Hawaii","HI",261 +2018-02-01,"Delivered to Consumers","Michigan","MI",105909 +2018-02-01,"Delivered to Consumers","Iowa","IA",43291 +2018-02-01,"Delivered to Consumers","Pennsylvania","PA",109965 +2018-02-01,"Delivered to Consumers","Massachusetts","MA",53895 +2018-02-01,"Delivered to Consumers","Washington","WA",30868 +2018-02-01,"Delivered to Consumers","New Hampshire","NH",3543 +2018-02-01,"Electric Power Consumption","Maryland","MD",5265 +2018-02-01,"Electric Power Consumption","Delaware","DE",2556 +2018-02-01,"Electric Power Consumption","Arizona","AZ",11957 +2018-02-01,"Electric Power Consumption","Georgia","GA",28617 +2018-02-01,"Electric Power Consumption","Oregon","OR",7733 +2018-02-01,"Electric Power Consumption","Pennsylvania","PA",37278 +2018-02-01,"Electric Power Consumption","Missouri","MO",4186 +2018-02-01,"Electric Power Consumption","North Dakota","ND",592 +2018-02-01,"Electric Power Consumption","Utah","UT",3266 +2018-02-01,"Electric Power Consumption","Massachusetts","MA",10576 +2018-02-01,"Electric Power Consumption","Wisconsin","WI",11126 +2018-02-01,"Electric Power Consumption","Ohio","OH",23791 +2018-02-01,"Electric Power Consumption","Alaska","AK",2256 +2018-02-01,"Electric Power Consumption","Washington","WA",3998 +2018-02-01,"Electric Power Consumption","Virginia","VA",29317 +2018-02-01,"Electric Power Consumption","Colorado","CO",10025 +2018-02-01,"Electric Power Consumption","Oklahoma","OK",18014 +2018-02-01,"Electric Power Consumption","Michigan","MI",18304 +2018-02-01,"Electric Power Consumption","Kansas","KS",1646 +2018-02-01,"Electric Power Consumption","Wyoming","WY",170 +2018-02-01,"Electric Power Consumption","South Dakota","SD",692 +2018-02-01,"Electric Power Consumption","Nebraska","NE",250 +2018-02-01,"Electric Power Consumption","California","CA",41978 +2018-02-01,"Electric Power Consumption","New Mexico","NM",6008 +2018-02-01,"Electric Power Consumption","Idaho","ID",1205 +2018-02-01,"Electric Power Consumption","Rhode Island","RI",2909 +2018-02-01,"Electric Power Consumption","Illinois","IL",7007 +2018-02-01,"Electric Power Consumption","Tennessee","TN",5583 +2018-02-01,"Electric Power Consumption","Mississippi","MS",26359 +2018-02-01,"Electric Power Consumption","Kentucky","KY",6841 +2018-02-01,"Electric Power Consumption","Nevada","NV",13050 +2018-02-01,"Electric Power Consumption","U.S.","U.S.",690022 +2018-02-01,"Electric Power Consumption","North Carolina","NC",23145 +2018-02-01,"Electric Power Consumption","Maine","ME",356 +2018-02-01,"Electric Power Consumption","Alabama","AL",25181 +2018-02-01,"Electric Power Consumption","Minnesota","MN",3981 +2018-02-01,"Electric Power Consumption","Vermont","VT",1 +2018-02-01,"Electric Power Consumption","Hawaii","HI",NA +2018-02-01,"Electric Power Consumption","Connecticut","CT",8891 +2018-02-01,"Electric Power Consumption","New Jersey","NJ",18773 +2018-02-01,"Electric Power Consumption","Louisiana","LA",19124 +2018-02-01,"Electric Power Consumption","Arkansas","AR",11405 +2018-02-01,"Electric Power Consumption","South Carolina","SC",7360 +2018-02-01,"Electric Power Consumption","New York","NY",23914 +2018-02-01,"Electric Power Consumption","Texas","TX",105899 +2018-02-01,"Electric Power Consumption","West Virginia","WV",242 +2018-02-01,"Electric Power Consumption","Iowa","IA",2575 +2018-02-01,"Electric Power Consumption","New Hampshire","NH",223 +2018-02-01,"Electric Power Consumption","Montana","MT",334 +2018-02-01,"Electric Power Consumption","Indiana","IN",13439 +2018-02-01,"Electric Power Consumption","Florida","FL",82625 +2018-02-01,"Industrial Consumption","Oklahoma","OK",17413 +2018-02-01,"Industrial Consumption","Washington","WA",7533 +2018-02-01,"Industrial Consumption","Utah","UT",3813 +2018-02-01,"Industrial Consumption","Rhode Island","RI",843 +2018-02-01,"Industrial Consumption","Colorado","CO",9224 +2018-02-01,"Industrial Consumption","Maine","ME",1641 +2018-02-01,"Industrial Consumption","West Virginia","WV",3330 +2018-02-01,"Industrial Consumption","New Hampshire","NH",1002 +2018-02-01,"Industrial Consumption","Connecticut","CT",2312 +2018-02-01,"Industrial Consumption","Georgia","GA",11987 +2018-02-01,"Industrial Consumption","U.S.","U.S.",699106 +2018-02-01,"Industrial Consumption","Nebraska","NE",7544 +2018-02-01,"Industrial Consumption","Wyoming","WY",5253 +2018-02-01,"Industrial Consumption","Idaho","ID",3096 +2018-02-01,"Industrial Consumption","Missouri","MO",6839 +2018-02-01,"Industrial Consumption","New Mexico","NM",1419 +2018-02-01,"Industrial Consumption","Oregon","OR",4626 +2018-02-01,"Industrial Consumption","Nevada","NV",1675 +2018-02-01,"Industrial Consumption","Alabama","AL",17255 +2018-02-01,"Industrial Consumption","North Dakota","ND",2865 +2018-02-01,"Industrial Consumption","Massachusetts","MA",5231 +2018-02-01,"Industrial Consumption","Hawaii","HI",7 +2018-02-01,"Industrial Consumption","Louisiana","LA",91759 +2018-02-01,"Industrial Consumption","Kansas","KS",11403 +2018-02-01,"Industrial Consumption","Arizona","AZ",1678 +2018-02-01,"Industrial Consumption","New York","NY",8779 +2018-02-01,"Industrial Consumption","Mississippi","MS",10686 +2018-02-01,"Industrial Consumption","California","CA",57500 +2018-02-01,"Industrial Consumption","Tennessee","TN",12280 +2018-02-01,"Industrial Consumption","Michigan","MI",19641 +2018-02-01,"Industrial Consumption","South Dakota","SD",4273 +2018-02-01,"Industrial Consumption","Pennsylvania","PA",19535 +2018-02-01,"Industrial Consumption","Arkansas","AR",8844 +2018-02-01,"Industrial Consumption","Iowa","IA",21379 +2018-02-01,"Industrial Consumption","Indiana","IN",37664 +2018-02-01,"Industrial Consumption","Delaware","DE",2665 +2018-02-01,"Industrial Consumption","Texas","TX",138219 +2018-02-01,"Industrial Consumption","Virginia","VA",8245 +2018-02-01,"Industrial Consumption","New Jersey","NJ",4883 +2018-02-01,"Industrial Consumption","Minnesota","MN",15435 +2018-02-01,"Industrial Consumption","Kentucky","KY",11001 +2018-02-01,"Industrial Consumption","Illinois","IL",23730 +2018-02-01,"Industrial Consumption","District of Columbia","DC",NA +2018-02-01,"Industrial Consumption","Alaska","AK",549 +2018-02-01,"Industrial Consumption","Montana","MT",2261 +2018-02-01,"Industrial Consumption","Maryland","MD",1418 +2018-02-01,"Industrial Consumption","Ohio","OH",29304 +2018-02-01,"Industrial Consumption","South Carolina","SC",7633 +2018-02-01,"Industrial Consumption","Vermont","VT",204 +2018-02-01,"Industrial Consumption","Wisconsin","WI",16008 +2018-02-01,"Industrial Consumption","Florida","FL",7823 +2018-02-01,"Industrial Consumption","North Carolina","NC",9401 +2018-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",123921 +2018-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",79713 +2018-02-01,"Residential Consumption","South Carolina","SC",3316 +2018-02-01,"Residential Consumption","North Carolina","NC",7889 +2018-02-01,"Residential Consumption","Utah","UT",8393 +2018-02-01,"Residential Consumption","Michigan","MI",44146 +2018-02-01,"Residential Consumption","Florida","FL",2054 +2018-02-01,"Residential Consumption","Kentucky","KY",6660 +2018-02-01,"Residential Consumption","Washington","WA",12079 +2018-02-01,"Residential Consumption","Mississippi","MS",2622 +2018-02-01,"Residential Consumption","Iowa","IA",11403 +2018-02-01,"Residential Consumption","Tennessee","TN",9777 +2018-02-01,"Residential Consumption","Virginia","VA",11379 +2018-02-01,"Residential Consumption","Georgia","GA",12259 +2018-02-01,"Residential Consumption","Massachusetts","MA",21076 +2018-02-01,"Residential Consumption","Arkansas","AR",5216 +2018-02-01,"Residential Consumption","Delaware","DE",1655 +2018-02-01,"Residential Consumption","Arizona","AZ",5225 +2018-02-01,"Residential Consumption","Oregon","OR",6335 +2018-02-01,"Residential Consumption","Hawaii","HI",51 +2018-02-01,"Residential Consumption","Maryland","MD",11360 +2018-02-01,"Residential Consumption","Idaho","ID",4074 +2018-02-01,"Residential Consumption","U.S.","U.S.",689887 +2018-02-01,"Residential Consumption","New York","NY",64908 +2018-02-01,"Residential Consumption","Rhode Island","RI",2521 +2018-02-01,"Residential Consumption","Vermont","VT",582 +2018-02-01,"Residential Consumption","Nebraska","NE",7113 +2018-02-01,"Residential Consumption","New Mexico","NM",4603 +2018-02-01,"Residential Consumption","Alabama","AL",3744 +2018-02-01,"Residential Consumption","Wyoming","WY",1896 +2018-02-01,"Residential Consumption","West Virginia","WV",3644 +2018-02-01,"Residential Consumption","Texas","TX",34748 +2018-02-01,"Residential Consumption","Ohio","OH",39323 +2018-02-01,"Residential Consumption","Connecticut","CT",6900 +2018-02-01,"Residential Consumption","Nevada","NV",6123 +2018-02-01,"Residential Consumption","Minnesota","MN",22845 +2018-02-01,"Residential Consumption","Maine","ME",411 +2018-02-01,"Residential Consumption","North Dakota","ND",1962 +2018-02-01,"Residential Consumption","New Jersey","NJ",31553 +2018-02-01,"Residential Consumption","New Hampshire","NH",1048 +2018-02-01,"Residential Consumption","California","CA",54556 +2018-02-01,"Residential Consumption","District of Columbia","DC",1813 +2018-02-01,"Residential Consumption","Pennsylvania","PA",33224 +2018-02-01,"Residential Consumption","Indiana","IN",20043 +2018-02-01,"Residential Consumption","Colorado","CO",19524 +2018-02-01,"Residential Consumption","Kansas","KS",11040 +2018-02-01,"Residential Consumption","Oklahoma","OK",11721 +2018-02-01,"Residential Consumption","Missouri","MO",16776 +2018-02-01,"Residential Consumption","Louisiana","LA",4041 +2018-02-01,"Residential Consumption","Wisconsin","WI",22632 +2018-02-01,"Residential Consumption","Montana","MT",3652 +2018-02-01,"Residential Consumption","South Dakota","SD",2300 +2018-02-01,"Residential Consumption","Alaska","AK",2620 +2018-02-01,"Residential Consumption","Illinois","IL",65052 +2018-02-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-02-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-02-01,"Vehicle Fuel Consumption","Ohio","OH",38 +2018-02-01,"Vehicle Fuel Consumption","New York","NY",74 +2018-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",34 +2018-02-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2018-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-02-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2018-02-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-02-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-02-01,"Vehicle Fuel Consumption","Illinois","IL",10 +2018-02-01,"Vehicle Fuel Consumption","Tennessee","TN",19 +2018-02-01,"Vehicle Fuel Consumption","Virginia","VA",67 +2018-02-01,"Vehicle Fuel Consumption","Arizona","AZ",127 +2018-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",32 +2018-02-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-02-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2018-02-01,"Vehicle Fuel Consumption","North Carolina","NC",105 +2018-02-01,"Vehicle Fuel Consumption","Minnesota","MN",35 +2018-02-01,"Vehicle Fuel Consumption","New Mexico","NM",17 +2018-02-01,"Vehicle Fuel Consumption","Florida","FL",330 +2018-02-01,"Vehicle Fuel Consumption","Missouri","MO",31 +2018-02-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2018-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-02-01,"Vehicle Fuel Consumption","Kentucky","KY",6 +2018-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-02-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2018-02-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-02-01,"Vehicle Fuel Consumption","Utah","UT",27 +2018-02-01,"Vehicle Fuel Consumption","Kansas","KS",52 +2018-02-01,"Vehicle Fuel Consumption","Georgia","GA",156 +2018-02-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-02-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2018-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",125 +2018-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",34 +2018-02-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2018-02-01,"Vehicle Fuel Consumption","Texas","TX",137 +2018-02-01,"Vehicle Fuel Consumption","Colorado","CO",98 +2018-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",3867 +2018-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-02-01,"Vehicle Fuel Consumption","Washington","WA",14 +2018-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",138 +2018-02-01,"Vehicle Fuel Consumption","Maryland","MD",28 +2018-02-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2018-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-02-01,"Vehicle Fuel Consumption","California","CA",1922 +2018-02-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2018-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2018-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-03-01,"Commercial Consumption","West Virginia","WV",3263 +2018-03-01,"Commercial Consumption","Washington","WA",7092 +2018-03-01,"Commercial Consumption","North Dakota","ND",1851 +2018-03-01,"Commercial Consumption","Massachusetts","MA",15258 +2018-03-01,"Commercial Consumption","New Hampshire","NH",1370 +2018-03-01,"Commercial Consumption","Kentucky","KY",4713 +2018-03-01,"Commercial Consumption","Connecticut","CT",6779 +2018-03-01,"Commercial Consumption","Oregon","OR",3485 +2018-03-01,"Commercial Consumption","South Dakota","SD",1505 +2018-03-01,"Commercial Consumption","New Jersey","NJ",22546 +2018-03-01,"Commercial Consumption","Iowa","IA",6399 +2018-03-01,"Commercial Consumption","Hawaii","HI",214 +2018-03-01,"Commercial Consumption","Tennessee","TN",6250 +2018-03-01,"Commercial Consumption","Nevada","NV",3629 +2018-03-01,"Commercial Consumption","Michigan","MI",23451 +2018-03-01,"Commercial Consumption","Indiana","IN",10828 +2018-03-01,"Commercial Consumption","Wyoming","WY",1857 +2018-03-01,"Commercial Consumption","Colorado","CO",5940 +2018-03-01,"Commercial Consumption","Alaska","AK",1739 +2018-03-01,"Commercial Consumption","Mississippi","MS",1920 +2018-03-01,"Commercial Consumption","Arizona","AZ",3269 +2018-03-01,"Commercial Consumption","Florida","FL",5992 +2018-03-01,"Commercial Consumption","Arkansas","AR",5571 +2018-03-01,"Commercial Consumption","Louisiana","LA",2976 +2018-03-01,"Commercial Consumption","South Carolina","SC",3064 +2018-03-01,"Commercial Consumption","Minnesota","MN",13168 +2018-03-01,"Commercial Consumption","New Mexico","NM",2829 +2018-03-01,"Commercial Consumption","Wisconsin","WI",11691 +2018-03-01,"Commercial Consumption","Montana","MT",3344 +2018-03-01,"Commercial Consumption","Maine","ME",1162 +2018-03-01,"Commercial Consumption","Nebraska","NE",3838 +2018-03-01,"Commercial Consumption","Pennsylvania","PA",24115 +2018-03-01,"Commercial Consumption","U.S.","U.S.",417944 +2018-03-01,"Commercial Consumption","Maryland","MD",9651 +2018-03-01,"Commercial Consumption","Georgia","GA",6407 +2018-03-01,"Commercial Consumption","Alabama","AL",2832 +2018-03-01,"Commercial Consumption","New York","NY",39340 +2018-03-01,"Commercial Consumption","Delaware","DE",1874 +2018-03-01,"Commercial Consumption","North Carolina","NC",7814 +2018-03-01,"Commercial Consumption","Virginia","VA",10128 +2018-03-01,"Commercial Consumption","Missouri","MO",8107 +2018-03-01,"Commercial Consumption","Rhode Island","RI",1889 +2018-03-01,"Commercial Consumption","Idaho","ID",2086 +2018-03-01,"Commercial Consumption","California","CA",25288 +2018-03-01,"Commercial Consumption","Utah","UT",5707 +2018-03-01,"Commercial Consumption","Oklahoma","OK",4462 +2018-03-01,"Commercial Consumption","Texas","TX",22247 +2018-03-01,"Commercial Consumption","Kansas","KS",3787 +2018-03-01,"Commercial Consumption","Vermont","VT",783 +2018-03-01,"Commercial Consumption","Ohio","OH",24123 +2018-03-01,"Commercial Consumption","Illinois","IL",28302 +2018-03-01,"Commercial Consumption","District of Columbia","DC",2008 +2018-03-01,"Delivered to Consumers","Illinois","IL",118977 +2018-03-01,"Delivered to Consumers","Hawaii","HI",273 +2018-03-01,"Delivered to Consumers","Alabama","AL",56390 +2018-03-01,"Delivered to Consumers","New Mexico","NM",15139 +2018-03-01,"Delivered to Consumers","Delaware","DE",10757 +2018-03-01,"Delivered to Consumers","Vermont","VT",1538 +2018-03-01,"Delivered to Consumers","Iowa","IA",41286 +2018-03-01,"Delivered to Consumers","Nebraska","NE",16863 +2018-03-01,"Delivered to Consumers","Colorado","CO",36404 +2018-03-01,"Delivered to Consumers","Maine","ME",4359 +2018-03-01,"Delivered to Consumers","Louisiana","LA",119958 +2018-03-01,"Delivered to Consumers","North Dakota","ND",7140 +2018-03-01,"Delivered to Consumers","Florida","FL",109094 +2018-03-01,"Delivered to Consumers","Arkansas","AR",32366 +2018-03-01,"Delivered to Consumers","Virginia","VA",60146 +2018-03-01,"Delivered to Consumers","Pennsylvania","PA",126262 +2018-03-01,"Delivered to Consumers","Missouri","MO",32650 +2018-03-01,"Delivered to Consumers","Georgia","GA",64326 +2018-03-01,"Delivered to Consumers","U.S.","U.S.",2576005 +2018-03-01,"Delivered to Consumers","Rhode Island","RI",8799 +2018-03-01,"Delivered to Consumers","Alaska","AK",6761 +2018-03-01,"Delivered to Consumers","South Carolina","SC",26802 +2018-03-01,"Delivered to Consumers","New Jersey","NJ",88816 +2018-03-01,"Delivered to Consumers","Maryland","MD",31789 +2018-03-01,"Delivered to Consumers","Kansas","KS",24648 +2018-03-01,"Delivered to Consumers","Massachusetts","MA",50795 +2018-03-01,"Delivered to Consumers","California","CA",188187 +2018-03-01,"Delivered to Consumers","Texas","TX",308880 +2018-03-01,"Delivered to Consumers","Oregon","OR",25195 +2018-03-01,"Delivered to Consumers","Indiana","IN",84658 +2018-03-01,"Delivered to Consumers","Wyoming","WY",9202 +2018-03-01,"Delivered to Consumers","New York","NY",143131 +2018-03-01,"Delivered to Consumers","Montana","MT",8335 +2018-03-01,"Delivered to Consumers","Oklahoma","OK",45238 +2018-03-01,"Delivered to Consumers","Idaho","ID",10071 +2018-03-01,"Delivered to Consumers","Kentucky","KY",32066 +2018-03-01,"Delivered to Consumers","Mississippi","MS",42520 +2018-03-01,"Delivered to Consumers","Washington","WA",30798 +2018-03-01,"Delivered to Consumers","Minnesota","MN",50354 +2018-03-01,"Delivered to Consumers","South Dakota","SD",7681 +2018-03-01,"Delivered to Consumers","Tennessee","TN",34682 +2018-03-01,"Delivered to Consumers","Wisconsin","WI",57435 +2018-03-01,"Delivered to Consumers","North Carolina","NC",58187 +2018-03-01,"Delivered to Consumers","Nevada","NV",24861 +2018-03-01,"Delivered to Consumers","Utah","UT",21461 +2018-03-01,"Delivered to Consumers","West Virginia","WV",10909 +2018-03-01,"Delivered to Consumers","Ohio","OH",121743 +2018-03-01,"Delivered to Consumers","Michigan","MI",111549 +2018-03-01,"Delivered to Consumers","Connecticut","CT",27169 +2018-03-01,"Delivered to Consumers","Arizona","AZ",21706 +2018-03-01,"Delivered to Consumers","New Hampshire","NH",3675 +2018-03-01,"Delivered to Consumers","District of Columbia","DC",3975 +2018-03-01,"Electric Power Consumption","Arkansas","AR",13378 +2018-03-01,"Electric Power Consumption","New York","NY",26336 +2018-03-01,"Electric Power Consumption","Oklahoma","OK",16046 +2018-03-01,"Electric Power Consumption","Pennsylvania","PA",41243 +2018-03-01,"Electric Power Consumption","Nevada","NV",13553 +2018-03-01,"Electric Power Consumption","U.S.","U.S.",756528 +2018-03-01,"Electric Power Consumption","South Dakota","SD",394 +2018-03-01,"Electric Power Consumption","Maine","ME",1096 +2018-03-01,"Electric Power Consumption","Alabama","AL",31064 +2018-03-01,"Electric Power Consumption","New Hampshire","NH",242 +2018-03-01,"Electric Power Consumption","Georgia","GA",27811 +2018-03-01,"Electric Power Consumption","Florida","FL",91207 +2018-03-01,"Electric Power Consumption","South Carolina","SC",10714 +2018-03-01,"Electric Power Consumption","Mississippi","MS",26620 +2018-03-01,"Electric Power Consumption","Kentucky","KY",9025 +2018-03-01,"Electric Power Consumption","Delaware","DE",3456 +2018-03-01,"Electric Power Consumption","Alaska","AK",2344 +2018-03-01,"Electric Power Consumption","Virginia","VA",27803 +2018-03-01,"Electric Power Consumption","New Jersey","NJ",22598 +2018-03-01,"Electric Power Consumption","Wisconsin","WI",11498 +2018-03-01,"Electric Power Consumption","North Dakota","ND",777 +2018-03-01,"Electric Power Consumption","Utah","UT",3015 +2018-03-01,"Electric Power Consumption","Oregon","OR",11243 +2018-03-01,"Electric Power Consumption","Massachusetts","MA",11667 +2018-03-01,"Electric Power Consumption","Kansas","KS",2168 +2018-03-01,"Electric Power Consumption","Hawaii","HI",NA +2018-03-01,"Electric Power Consumption","Connecticut","CT",10459 +2018-03-01,"Electric Power Consumption","California","CA",43596 +2018-03-01,"Electric Power Consumption","Washington","WA",5907 +2018-03-01,"Electric Power Consumption","New Mexico","NM",6276 +2018-03-01,"Electric Power Consumption","Texas","TX",108287 +2018-03-01,"Electric Power Consumption","Illinois","IL",11164 +2018-03-01,"Electric Power Consumption","West Virginia","WV",251 +2018-03-01,"Electric Power Consumption","Wyoming","WY",51 +2018-03-01,"Electric Power Consumption","Tennessee","TN",7570 +2018-03-01,"Electric Power Consumption","Missouri","MO",4674 +2018-03-01,"Electric Power Consumption","Ohio","OH",25061 +2018-03-01,"Electric Power Consumption","Montana","MT",296 +2018-03-01,"Electric Power Consumption","Indiana","IN",14510 +2018-03-01,"Electric Power Consumption","Arizona","AZ",11912 +2018-03-01,"Electric Power Consumption","Michigan","MI",24925 +2018-03-01,"Electric Power Consumption","Iowa","IA",3422 +2018-03-01,"Electric Power Consumption","Vermont","VT",1 +2018-03-01,"Electric Power Consumption","North Carolina","NC",28303 +2018-03-01,"Electric Power Consumption","Maryland","MD",6623 +2018-03-01,"Electric Power Consumption","Louisiana","LA",19373 +2018-03-01,"Electric Power Consumption","Idaho","ID",1495 +2018-03-01,"Electric Power Consumption","Colorado","CO",8390 +2018-03-01,"Electric Power Consumption","Rhode Island","RI",3143 +2018-03-01,"Electric Power Consumption","Minnesota","MN",5105 +2018-03-01,"Electric Power Consumption","Nebraska","NE",439 +2018-03-01,"Industrial Consumption","Ohio","OH",29428 +2018-03-01,"Industrial Consumption","Nevada","NV",1851 +2018-03-01,"Industrial Consumption","Arkansas","AR",9076 +2018-03-01,"Industrial Consumption","South Carolina","SC",9038 +2018-03-01,"Industrial Consumption","Nebraska","NE",7519 +2018-03-01,"Industrial Consumption","Tennessee","TN",12423 +2018-03-01,"Industrial Consumption","Delaware","DE",3335 +2018-03-01,"Industrial Consumption","Alaska","AK",459 +2018-03-01,"Industrial Consumption","Hawaii","HI",7 +2018-03-01,"Industrial Consumption","Utah","UT",3374 +2018-03-01,"Industrial Consumption","Wyoming","WY",5543 +2018-03-01,"Industrial Consumption","North Dakota","ND",2854 +2018-03-01,"Industrial Consumption","Maryland","MD",1780 +2018-03-01,"Industrial Consumption","South Dakota","SD",3968 +2018-03-01,"Industrial Consumption","New Mexico","NM",1626 +2018-03-01,"Industrial Consumption","Mississippi","MS",11707 +2018-03-01,"Industrial Consumption","New Jersey","NJ",5351 +2018-03-01,"Industrial Consumption","New Hampshire","NH",919 +2018-03-01,"Industrial Consumption","Georgia","GA",14214 +2018-03-01,"Industrial Consumption","District of Columbia","DC",NA +2018-03-01,"Industrial Consumption","Oklahoma","OK",18122 +2018-03-01,"Industrial Consumption","Arizona","AZ",1698 +2018-03-01,"Industrial Consumption","U.S.","U.S.",737863 +2018-03-01,"Industrial Consumption","Pennsylvania","PA",21988 +2018-03-01,"Industrial Consumption","Alabama","AL",18742 +2018-03-01,"Industrial Consumption","Vermont","VT",219 +2018-03-01,"Industrial Consumption","Indiana","IN",39358 +2018-03-01,"Industrial Consumption","California","CA",64061 +2018-03-01,"Industrial Consumption","Texas","TX",153610 +2018-03-01,"Industrial Consumption","Virginia","VA",8261 +2018-03-01,"Industrial Consumption","Minnesota","MN",15028 +2018-03-01,"Industrial Consumption","Michigan","MI",17609 +2018-03-01,"Industrial Consumption","Washington","WA",6670 +2018-03-01,"Industrial Consumption","Oregon","OR",5052 +2018-03-01,"Industrial Consumption","West Virginia","WV",3152 +2018-03-01,"Industrial Consumption","Kentucky","KY",11408 +2018-03-01,"Industrial Consumption","North Carolina","NC",10959 +2018-03-01,"Industrial Consumption","Montana","MT",2101 +2018-03-01,"Industrial Consumption","Missouri","MO",6296 +2018-03-01,"Industrial Consumption","Kansas","KS",11502 +2018-03-01,"Industrial Consumption","New York","NY",8752 +2018-03-01,"Industrial Consumption","Maine","ME",1707 +2018-03-01,"Industrial Consumption","Idaho","ID",3267 +2018-03-01,"Industrial Consumption","Illinois","IL",24281 +2018-03-01,"Industrial Consumption","Rhode Island","RI",727 +2018-03-01,"Industrial Consumption","Massachusetts","MA",5205 +2018-03-01,"Industrial Consumption","Louisiana","LA",94591 +2018-03-01,"Industrial Consumption","Colorado","CO",8202 +2018-03-01,"Industrial Consumption","Wisconsin","WI",15747 +2018-03-01,"Industrial Consumption","Iowa","IA",22800 +2018-03-01,"Industrial Consumption","Florida","FL",9784 +2018-03-01,"Industrial Consumption","Connecticut","CT",2490 +2018-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",138799 +2018-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",81905 +2018-03-01,"Residential Consumption","Michigan","MI",45563 +2018-03-01,"Residential Consumption","Maine","ME",394 +2018-03-01,"Residential Consumption","Indiana","IN",19962 +2018-03-01,"Residential Consumption","Wisconsin","WI",18462 +2018-03-01,"Residential Consumption","District of Columbia","DC",1930 +2018-03-01,"Residential Consumption","Florida","FL",1745 +2018-03-01,"Residential Consumption","Colorado","CO",13764 +2018-03-01,"Residential Consumption","California","CA",53115 +2018-03-01,"Residential Consumption","Arizona","AZ",4686 +2018-03-01,"Residential Consumption","North Carolina","NC",10994 +2018-03-01,"Residential Consumption","Massachusetts","MA",18654 +2018-03-01,"Residential Consumption","New Hampshire","NH",1144 +2018-03-01,"Residential Consumption","Washington","WA",11113 +2018-03-01,"Residential Consumption","Ohio","OH",43089 +2018-03-01,"Residential Consumption","Virginia","VA",13881 +2018-03-01,"Residential Consumption","Utah","UT",9335 +2018-03-01,"Residential Consumption","Arkansas","AR",4337 +2018-03-01,"Residential Consumption","Montana","MT",2594 +2018-03-01,"Residential Consumption","Kentucky","KY",6913 +2018-03-01,"Residential Consumption","Alabama","AL",3745 +2018-03-01,"Residential Consumption","Iowa","IA",8661 +2018-03-01,"Residential Consumption","Maryland","MD",13703 +2018-03-01,"Residential Consumption","Nevada","NV",5723 +2018-03-01,"Residential Consumption","Pennsylvania","PA",38763 +2018-03-01,"Residential Consumption","Idaho","ID",3218 +2018-03-01,"Residential Consumption","New Jersey","NJ",38286 +2018-03-01,"Residential Consumption","Delaware","DE",2092 +2018-03-01,"Residential Consumption","West Virginia","WV",4242 +2018-03-01,"Residential Consumption","Illinois","IL",55219 +2018-03-01,"Residential Consumption","Tennessee","TN",8418 +2018-03-01,"Residential Consumption","Nebraska","NE",5055 +2018-03-01,"Residential Consumption","Georgia","GA",15721 +2018-03-01,"Residential Consumption","Oklahoma","OK",6469 +2018-03-01,"Residential Consumption","Wyoming","WY",1749 +2018-03-01,"Residential Consumption","U.S.","U.S.",659389 +2018-03-01,"Residential Consumption","New York","NY",68622 +2018-03-01,"Residential Consumption","South Carolina","SC",3977 +2018-03-01,"Residential Consumption","Rhode Island","RI",3031 +2018-03-01,"Residential Consumption","Hawaii","HI",52 +2018-03-01,"Residential Consumption","Vermont","VT",536 +2018-03-01,"Residential Consumption","South Dakota","SD",1814 +2018-03-01,"Residential Consumption","New Mexico","NM",4389 +2018-03-01,"Residential Consumption","Missouri","MO",13539 +2018-03-01,"Residential Consumption","Alaska","AK",2219 +2018-03-01,"Residential Consumption","Texas","TX",24585 +2018-03-01,"Residential Consumption","Oregon","OR",5408 +2018-03-01,"Residential Consumption","Mississippi","MS",2270 +2018-03-01,"Residential Consumption","Louisiana","LA",2982 +2018-03-01,"Residential Consumption","Connecticut","CT",7422 +2018-03-01,"Residential Consumption","Minnesota","MN",17014 +2018-03-01,"Residential Consumption","North Dakota","ND",1658 +2018-03-01,"Residential Consumption","Kansas","KS",7132 +2018-03-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2018-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-03-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2018-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",4282 +2018-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-03-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2018-03-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-03-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2018-03-01,"Vehicle Fuel Consumption","Utah","UT",30 +2018-03-01,"Vehicle Fuel Consumption","New York","NY",82 +2018-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",153 +2018-03-01,"Vehicle Fuel Consumption","Kansas","KS",58 +2018-03-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2018-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-03-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-03-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-03-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2018-03-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2018-03-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2018-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2018-03-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-03-01,"Vehicle Fuel Consumption","North Carolina","NC",116 +2018-03-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-03-01,"Vehicle Fuel Consumption","Florida","FL",365 +2018-03-01,"Vehicle Fuel Consumption","Texas","TX",152 +2018-03-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2018-03-01,"Vehicle Fuel Consumption","Georgia","GA",173 +2018-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",138 +2018-03-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2018-03-01,"Vehicle Fuel Consumption","Louisiana","LA",36 +2018-03-01,"Vehicle Fuel Consumption","Colorado","CO",108 +2018-03-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-03-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-03-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-03-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2018-03-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-03-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-03-01,"Vehicle Fuel Consumption","Iowa","IA",4 +2018-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2018-03-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-03-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2018-03-01,"Vehicle Fuel Consumption","Missouri","MO",34 +2018-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-03-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-03-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-03-01,"Vehicle Fuel Consumption","California","CA",2128 +2018-04-01,"Commercial Consumption","Pennsylvania","PA",14199 +2018-04-01,"Commercial Consumption","South Dakota","SD",1237 +2018-04-01,"Commercial Consumption","Alabama","AL",1902 +2018-04-01,"Commercial Consumption","Delaware","DE",1208 +2018-04-01,"Commercial Consumption","Arizona","AZ",2448 +2018-04-01,"Commercial Consumption","Indiana","IN",7551 +2018-04-01,"Commercial Consumption","North Dakota","ND",1410 +2018-04-01,"Commercial Consumption","Montana","MT",2355 +2018-04-01,"Commercial Consumption","Vermont","VT",623 +2018-04-01,"Commercial Consumption","Idaho","ID",1321 +2018-04-01,"Commercial Consumption","Arkansas","AR",4398 +2018-04-01,"Commercial Consumption","Utah","UT",2902 +2018-04-01,"Commercial Consumption","Wisconsin","WI",9889 +2018-04-01,"Commercial Consumption","Tennessee","TN",4623 +2018-04-01,"Commercial Consumption","District of Columbia","DC",1267 +2018-04-01,"Commercial Consumption","South Carolina","SC",1752 +2018-04-01,"Commercial Consumption","Texas","TX",15773 +2018-04-01,"Commercial Consumption","Kansas","KS",3523 +2018-04-01,"Commercial Consumption","Georgia","GA",3978 +2018-04-01,"Commercial Consumption","Florida","FL",5440 +2018-04-01,"Commercial Consumption","Rhode Island","RI",1187 +2018-04-01,"Commercial Consumption","Mississippi","MS",1480 +2018-04-01,"Commercial Consumption","Wyoming","WY",1368 +2018-04-01,"Commercial Consumption","Washington","WA",4579 +2018-04-01,"Commercial Consumption","Minnesota","MN",11054 +2018-04-01,"Commercial Consumption","Missouri","MO",6173 +2018-04-01,"Commercial Consumption","Massachusetts","MA",10388 +2018-04-01,"Commercial Consumption","New Jersey","NJ",16779 +2018-04-01,"Commercial Consumption","Maine","ME",832 +2018-04-01,"Commercial Consumption","Maryland","MD",6408 +2018-04-01,"Commercial Consumption","Ohio","OH",16493 +2018-04-01,"Commercial Consumption","Alaska","AK",1197 +2018-04-01,"Commercial Consumption","New York","NY",29197 +2018-04-01,"Commercial Consumption","Nebraska","NE",3265 +2018-04-01,"Commercial Consumption","Nevada","NV",2593 +2018-04-01,"Commercial Consumption","Michigan","MI",17926 +2018-04-01,"Commercial Consumption","Louisiana","LA",2636 +2018-04-01,"Commercial Consumption","West Virginia","WV",2224 +2018-04-01,"Commercial Consumption","North Carolina","NC",4621 +2018-04-01,"Commercial Consumption","New Mexico","NM",1433 +2018-04-01,"Commercial Consumption","Kentucky","KY",3043 +2018-04-01,"Commercial Consumption","U.S.","U.S.",301841 +2018-04-01,"Commercial Consumption","Iowa","IA",5194 +2018-04-01,"Commercial Consumption","Oklahoma","OK",3716 +2018-04-01,"Commercial Consumption","Hawaii","HI",216 +2018-04-01,"Commercial Consumption","Connecticut","CT",5257 +2018-04-01,"Commercial Consumption","California","CA",18730 +2018-04-01,"Commercial Consumption","Illinois","IL",23081 +2018-04-01,"Commercial Consumption","Colorado","CO",4338 +2018-04-01,"Commercial Consumption","Oregon","OR",2374 +2018-04-01,"Commercial Consumption","Virginia","VA",5366 +2018-04-01,"Commercial Consumption","New Hampshire","NH",895 +2018-04-01,"Delivered to Consumers","Wyoming","WY",8022 +2018-04-01,"Delivered to Consumers","Vermont","VT",1256 +2018-04-01,"Delivered to Consumers","Maryland","MD",22284 +2018-04-01,"Delivered to Consumers","Connecticut","CT",21289 +2018-04-01,"Delivered to Consumers","Mississippi","MS",46379 +2018-04-01,"Delivered to Consumers","Missouri","MO",24204 +2018-04-01,"Delivered to Consumers","Massachusetts","MA",34995 +2018-04-01,"Delivered to Consumers","California","CA",145864 +2018-04-01,"Delivered to Consumers","Louisiana","LA",119327 +2018-04-01,"Delivered to Consumers","Minnesota","MN",43165 +2018-04-01,"Delivered to Consumers","New Mexico","NM",12773 +2018-04-01,"Delivered to Consumers","Kansas","KS",23091 +2018-04-01,"Delivered to Consumers","Arkansas","AR",29593 +2018-04-01,"Delivered to Consumers","Pennsylvania","PA",94600 +2018-04-01,"Delivered to Consumers","Arizona","AZ",23881 +2018-04-01,"Delivered to Consumers","New Hampshire","NH",3153 +2018-04-01,"Delivered to Consumers","Michigan","MI",89080 +2018-04-01,"Delivered to Consumers","Texas","TX",281514 +2018-04-01,"Delivered to Consumers","South Carolina","SC",21091 +2018-04-01,"Delivered to Consumers","Maine","ME",3296 +2018-04-01,"Delivered to Consumers","North Dakota","ND",6485 +2018-04-01,"Delivered to Consumers","Utah","UT",14110 +2018-04-01,"Delivered to Consumers","South Dakota","SD",7396 +2018-04-01,"Delivered to Consumers","Montana","MT",6340 +2018-04-01,"Delivered to Consumers","Hawaii","HI",276 +2018-04-01,"Delivered to Consumers","Ohio","OH",97127 +2018-04-01,"Delivered to Consumers","Alabama","AL",55811 +2018-04-01,"Delivered to Consumers","North Carolina","NC",39488 +2018-04-01,"Delivered to Consumers","Florida","FL",111251 +2018-04-01,"Delivered to Consumers","Delaware","DE",8440 +2018-04-01,"Delivered to Consumers","Oklahoma","OK",47991 +2018-04-01,"Delivered to Consumers","Kentucky","KY",24354 +2018-04-01,"Delivered to Consumers","Oregon","OR",16733 +2018-04-01,"Delivered to Consumers","District of Columbia","DC",2297 +2018-04-01,"Delivered to Consumers","New York","NY",112274 +2018-04-01,"Delivered to Consumers","Idaho","ID",6691 +2018-04-01,"Delivered to Consumers","Nebraska","NE",15564 +2018-04-01,"Delivered to Consumers","New Jersey","NJ",67385 +2018-04-01,"Delivered to Consumers","U.S.","U.S.",2148089 +2018-04-01,"Delivered to Consumers","Indiana","IN",70882 +2018-04-01,"Delivered to Consumers","Illinois","IL",95040 +2018-04-01,"Delivered to Consumers","Alaska","AK",5006 +2018-04-01,"Delivered to Consumers","Tennessee","TN",29581 +2018-04-01,"Delivered to Consumers","Wisconsin","WI",45807 +2018-04-01,"Delivered to Consumers","Virginia","VA",39630 +2018-04-01,"Delivered to Consumers","Nevada","NV",20475 +2018-04-01,"Delivered to Consumers","Georgia","GA",48362 +2018-04-01,"Delivered to Consumers","West Virginia","WV",8553 +2018-04-01,"Delivered to Consumers","Rhode Island","RI",7600 +2018-04-01,"Delivered to Consumers","Iowa","IA",37604 +2018-04-01,"Delivered to Consumers","Colorado","CO",29250 +2018-04-01,"Delivered to Consumers","Washington","WA",21432 +2018-04-01,"Electric Power Consumption","Massachusetts","MA",7424 +2018-04-01,"Electric Power Consumption","Nevada","NV",13244 +2018-04-01,"Electric Power Consumption","Iowa","IA",4267 +2018-04-01,"Electric Power Consumption","Missouri","MO",2270 +2018-04-01,"Electric Power Consumption","Kentucky","KY",7011 +2018-04-01,"Electric Power Consumption","Ohio","OH",23560 +2018-04-01,"Electric Power Consumption","New Hampshire","NH",616 +2018-04-01,"Electric Power Consumption","Colorado","CO",7574 +2018-04-01,"Electric Power Consumption","New York","NY",26174 +2018-04-01,"Electric Power Consumption","West Virginia","WV",1091 +2018-04-01,"Electric Power Consumption","Pennsylvania","PA",36904 +2018-04-01,"Electric Power Consumption","Tennessee","TN",5800 +2018-04-01,"Electric Power Consumption","Connecticut","CT",8846 +2018-04-01,"Electric Power Consumption","New Mexico","NM",7766 +2018-04-01,"Electric Power Consumption","Texas","TX",101037 +2018-04-01,"Electric Power Consumption","Michigan","MI",23219 +2018-04-01,"Electric Power Consumption","U.S.","U.S.",703919 +2018-04-01,"Electric Power Consumption","North Carolina","NC",20485 +2018-04-01,"Electric Power Consumption","Mississippi","MS",31457 +2018-04-01,"Electric Power Consumption","Wisconsin","WI",6170 +2018-04-01,"Electric Power Consumption","Maine","ME",715 +2018-04-01,"Electric Power Consumption","Hawaii","HI",NA +2018-04-01,"Electric Power Consumption","Florida","FL",94955 +2018-04-01,"Electric Power Consumption","South Carolina","SC",9136 +2018-04-01,"Electric Power Consumption","Utah","UT",3253 +2018-04-01,"Electric Power Consumption","Oregon","OR",6282 +2018-04-01,"Electric Power Consumption","Minnesota","MN",4867 +2018-04-01,"Electric Power Consumption","Illinois","IL",6558 +2018-04-01,"Electric Power Consumption","Maryland","MD",7212 +2018-04-01,"Electric Power Consumption","California","CA",32377 +2018-04-01,"Electric Power Consumption","Alabama","AL",33626 +2018-04-01,"Electric Power Consumption","New Jersey","NJ",21481 +2018-04-01,"Electric Power Consumption","Arkansas","AR",13536 +2018-04-01,"Electric Power Consumption","Kansas","KS",2485 +2018-04-01,"Electric Power Consumption","South Dakota","SD",625 +2018-04-01,"Electric Power Consumption","Louisiana","LA",21399 +2018-04-01,"Electric Power Consumption","Wyoming","WY",138 +2018-04-01,"Electric Power Consumption","Vermont","VT",2 +2018-04-01,"Electric Power Consumption","North Dakota","ND",731 +2018-04-01,"Electric Power Consumption","Montana","MT",302 +2018-04-01,"Electric Power Consumption","Delaware","DE",3604 +2018-04-01,"Electric Power Consumption","Georgia","GA",22534 +2018-04-01,"Electric Power Consumption","Alaska","AK",1958 +2018-04-01,"Electric Power Consumption","Washington","WA",3294 +2018-04-01,"Electric Power Consumption","Virginia","VA",19806 +2018-04-01,"Electric Power Consumption","Idaho","ID",924 +2018-04-01,"Electric Power Consumption","Rhode Island","RI",3640 +2018-04-01,"Electric Power Consumption","Oklahoma","OK",20959 +2018-04-01,"Electric Power Consumption","Nebraska","NE",367 +2018-04-01,"Electric Power Consumption","Indiana","IN",14905 +2018-04-01,"Electric Power Consumption","Arizona","AZ",17335 +2018-04-01,"Industrial Consumption","Hawaii","HI",8 +2018-04-01,"Industrial Consumption","Ohio","OH",26922 +2018-04-01,"Industrial Consumption","Kansas","KS",11202 +2018-04-01,"Industrial Consumption","Arizona","AZ",1557 +2018-04-01,"Industrial Consumption","U.S.","U.S.",697338 +2018-04-01,"Industrial Consumption","South Carolina","SC",8243 +2018-04-01,"Industrial Consumption","Wisconsin","WI",14625 +2018-04-01,"Industrial Consumption","Illinois","IL",21501 +2018-04-01,"Industrial Consumption","North Carolina","NC",9756 +2018-04-01,"Industrial Consumption","North Dakota","ND",3111 +2018-04-01,"Industrial Consumption","Utah","UT",3463 +2018-04-01,"Industrial Consumption","Pennsylvania","PA",20235 +2018-04-01,"Industrial Consumption","Mississippi","MS",11880 +2018-04-01,"Industrial Consumption","Arkansas","AR",8967 +2018-04-01,"Industrial Consumption","Nebraska","NE",7705 +2018-04-01,"Industrial Consumption","Connecticut","CT",1883 +2018-04-01,"Industrial Consumption","Alaska","AK",367 +2018-04-01,"Industrial Consumption","New Mexico","NM",1535 +2018-04-01,"Industrial Consumption","California","CA",60659 +2018-04-01,"Industrial Consumption","Georgia","GA",12839 +2018-04-01,"Industrial Consumption","Oklahoma","OK",17675 +2018-04-01,"Industrial Consumption","New Jersey","NJ",5342 +2018-04-01,"Industrial Consumption","Idaho","ID",2538 +2018-04-01,"Industrial Consumption","Kentucky","KY",10066 +2018-04-01,"Industrial Consumption","District of Columbia","DC",NA +2018-04-01,"Industrial Consumption","Massachusetts","MA",4840 +2018-04-01,"Industrial Consumption","Colorado","CO",7493 +2018-04-01,"Industrial Consumption","Washington","WA",6219 +2018-04-01,"Industrial Consumption","Oregon","OR",4588 +2018-04-01,"Industrial Consumption","Virginia","VA",7619 +2018-04-01,"Industrial Consumption","Vermont","VT",193 +2018-04-01,"Industrial Consumption","Wyoming","WY",5261 +2018-04-01,"Industrial Consumption","Tennessee","TN",13050 +2018-04-01,"Industrial Consumption","Iowa","IA",21051 +2018-04-01,"Industrial Consumption","Michigan","MI",14810 +2018-04-01,"Industrial Consumption","Indiana","IN",34777 +2018-04-01,"Industrial Consumption","Delaware","DE",2451 +2018-04-01,"Industrial Consumption","Rhode Island","RI",809 +2018-04-01,"Industrial Consumption","Louisiana","LA",92901 +2018-04-01,"Industrial Consumption","New York","NY",8180 +2018-04-01,"Industrial Consumption","Alabama","AL",17775 +2018-04-01,"Industrial Consumption","West Virginia","WV",2798 +2018-04-01,"Industrial Consumption","Florida","FL",8927 +2018-04-01,"Industrial Consumption","Montana","MT",1746 +2018-04-01,"Industrial Consumption","Missouri","MO",5609 +2018-04-01,"Industrial Consumption","South Dakota","SD",4091 +2018-04-01,"Industrial Consumption","Maine","ME",1472 +2018-04-01,"Industrial Consumption","Maryland","MD",1285 +2018-04-01,"Industrial Consumption","Nevada","NV",1647 +2018-04-01,"Industrial Consumption","Texas","TX",151073 +2018-04-01,"Industrial Consumption","New Hampshire","NH",874 +2018-04-01,"Industrial Consumption","Minnesota","MN",13719 +2018-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",134093 +2018-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",68299 +2018-04-01,"Residential Consumption","Connecticut","CT",5285 +2018-04-01,"Residential Consumption","Wisconsin","WI",15087 +2018-04-01,"Residential Consumption","Kansas","KS",5824 +2018-04-01,"Residential Consumption","Alaska","AK",1483 +2018-04-01,"Residential Consumption","Virginia","VA",6767 +2018-04-01,"Residential Consumption","Georgia","GA",8844 +2018-04-01,"Residential Consumption","Indiana","IN",13648 +2018-04-01,"Residential Consumption","Florida","FL",1576 +2018-04-01,"Residential Consumption","New Hampshire","NH",768 +2018-04-01,"Residential Consumption","Montana","MT",1936 +2018-04-01,"Residential Consumption","West Virginia","WV",2439 +2018-04-01,"Residential Consumption","Rhode Island","RI",1956 +2018-04-01,"Residential Consumption","Michigan","MI",33126 +2018-04-01,"Residential Consumption","Maryland","MD",7349 +2018-04-01,"Residential Consumption","North Dakota","ND",1233 +2018-04-01,"Residential Consumption","Idaho","ID",1902 +2018-04-01,"Residential Consumption","Arizona","AZ",2404 +2018-04-01,"Residential Consumption","Wyoming","WY",1254 +2018-04-01,"Residential Consumption","Oregon","OR",3483 +2018-04-01,"Residential Consumption","Nevada","NV",2891 +2018-04-01,"Residential Consumption","Massachusetts","MA",12333 +2018-04-01,"Residential Consumption","New Jersey","NJ",23748 +2018-04-01,"Residential Consumption","Kentucky","KY",4229 +2018-04-01,"Residential Consumption","U.S.","U.S.",440848 +2018-04-01,"Residential Consumption","New York","NY",48644 +2018-04-01,"Residential Consumption","Minnesota","MN",13487 +2018-04-01,"Residential Consumption","District of Columbia","DC",994 +2018-04-01,"Residential Consumption","New Mexico","NM",2020 +2018-04-01,"Residential Consumption","Arkansas","AR",2688 +2018-04-01,"Residential Consumption","Washington","WA",7325 +2018-04-01,"Residential Consumption","Missouri","MO",10119 +2018-04-01,"Residential Consumption","Illinois","IL",43889 +2018-04-01,"Residential Consumption","Mississippi","MS",1558 +2018-04-01,"Residential Consumption","Vermont","VT",439 +2018-04-01,"Residential Consumption","Utah","UT",4463 +2018-04-01,"Residential Consumption","Nebraska","NE",4215 +2018-04-01,"Residential Consumption","Pennsylvania","PA",23113 +2018-04-01,"Residential Consumption","Maine","ME",277 +2018-04-01,"Residential Consumption","Delaware","DE",1178 +2018-04-01,"Residential Consumption","South Carolina","SC",1950 +2018-04-01,"Residential Consumption","North Carolina","NC",4514 +2018-04-01,"Residential Consumption","Louisiana","LA",2356 +2018-04-01,"Residential Consumption","Tennessee","TN",6088 +2018-04-01,"Residential Consumption","California","CA",32039 +2018-04-01,"Residential Consumption","Texas","TX",13484 +2018-04-01,"Residential Consumption","Ohio","OH",30110 +2018-04-01,"Residential Consumption","Iowa","IA",7088 +2018-04-01,"Residential Consumption","Hawaii","HI",52 +2018-04-01,"Residential Consumption","South Dakota","SD",1444 +2018-04-01,"Residential Consumption","Colorado","CO",9740 +2018-04-01,"Residential Consumption","Oklahoma","OK",5506 +2018-04-01,"Residential Consumption","Alabama","AL",2500 +2018-04-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-04-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2018-04-01,"Vehicle Fuel Consumption","Louisiana","LA",35 +2018-04-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-04-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2018-04-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2018-04-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-04-01,"Vehicle Fuel Consumption","Missouri","MO",33 +2018-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2018-04-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-04-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-04-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-04-01,"Vehicle Fuel Consumption","Arizona","AZ",136 +2018-04-01,"Vehicle Fuel Consumption","Florida","FL",353 +2018-04-01,"Vehicle Fuel Consumption","Colorado","CO",105 +2018-04-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",148 +2018-04-01,"Vehicle Fuel Consumption","North Carolina","NC",113 +2018-04-01,"Vehicle Fuel Consumption","Utah","UT",29 +2018-04-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-04-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2018-04-01,"Vehicle Fuel Consumption","Texas","TX",147 +2018-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",35 +2018-04-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-04-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-04-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2018-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-04-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-04-01,"Vehicle Fuel Consumption","Tennessee","TN",20 +2018-04-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",37 +2018-04-01,"Vehicle Fuel Consumption","Kansas","KS",56 +2018-04-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-04-01,"Vehicle Fuel Consumption","California","CA",2059 +2018-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",4144 +2018-04-01,"Vehicle Fuel Consumption","Virginia","VA",71 +2018-04-01,"Vehicle Fuel Consumption","New York","NY",79 +2018-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",36 +2018-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-04-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2018-04-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",134 +2018-04-01,"Vehicle Fuel Consumption","Nevada","NV",101 +2018-04-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2018-04-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-04-01,"Vehicle Fuel Consumption","Georgia","GA",167 +2018-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-05-01,"Commercial Consumption","Washington","WA",2861 +2018-05-01,"Commercial Consumption","New Mexico","NM",1143 +2018-05-01,"Commercial Consumption","Montana","MT",1245 +2018-05-01,"Commercial Consumption","Kentucky","KY",1366 +2018-05-01,"Commercial Consumption","Maryland","MD",4495 +2018-05-01,"Commercial Consumption","Ohio","OH",4954 +2018-05-01,"Commercial Consumption","Arkansas","AR",3058 +2018-05-01,"Commercial Consumption","U.S.","U.S.",163748 +2018-05-01,"Commercial Consumption","Hawaii","HI",209 +2018-05-01,"Commercial Consumption","Connecticut","CT",2569 +2018-05-01,"Commercial Consumption","Tennessee","TN",2622 +2018-05-01,"Commercial Consumption","Wisconsin","WI",3992 +2018-05-01,"Commercial Consumption","South Dakota","SD",564 +2018-05-01,"Commercial Consumption","Iowa","IA",2304 +2018-05-01,"Commercial Consumption","District of Columbia","DC",681 +2018-05-01,"Commercial Consumption","Oregon","OR",1362 +2018-05-01,"Commercial Consumption","Virginia","VA",3229 +2018-05-01,"Commercial Consumption","Kansas","KS",1734 +2018-05-01,"Commercial Consumption","Georgia","GA",2460 +2018-05-01,"Commercial Consumption","Florida","FL",5074 +2018-05-01,"Commercial Consumption","Delaware","DE",691 +2018-05-01,"Commercial Consumption","Arizona","AZ",2214 +2018-05-01,"Commercial Consumption","Indiana","IN",3094 +2018-05-01,"Commercial Consumption","Minnesota","MN",4263 +2018-05-01,"Commercial Consumption","Oklahoma","OK",1827 +2018-05-01,"Commercial Consumption","Massachusetts","MA",4347 +2018-05-01,"Commercial Consumption","Vermont","VT",262 +2018-05-01,"Commercial Consumption","Rhode Island","RI",315 +2018-05-01,"Commercial Consumption","Nebraska","NE",1724 +2018-05-01,"Commercial Consumption","Nevada","NV",2219 +2018-05-01,"Commercial Consumption","Wyoming","WY",797 +2018-05-01,"Commercial Consumption","North Carolina","NC",2338 +2018-05-01,"Commercial Consumption","Colorado","CO",2609 +2018-05-01,"Commercial Consumption","Utah","UT",1709 +2018-05-01,"Commercial Consumption","New Jersey","NJ",7109 +2018-05-01,"Commercial Consumption","New Hampshire","NH",304 +2018-05-01,"Commercial Consumption","Texas","TX",13464 +2018-05-01,"Commercial Consumption","California","CA",17524 +2018-05-01,"Commercial Consumption","Alabama","AL",1142 +2018-05-01,"Commercial Consumption","Illinois","IL",10255 +2018-05-01,"Commercial Consumption","North Dakota","ND",552 +2018-05-01,"Commercial Consumption","Alaska","AK",819 +2018-05-01,"Commercial Consumption","New York","NY",14963 +2018-05-01,"Commercial Consumption","Mississippi","MS",951 +2018-05-01,"Commercial Consumption","West Virginia","WV",1132 +2018-05-01,"Commercial Consumption","South Carolina","SC",1487 +2018-05-01,"Commercial Consumption","Pennsylvania","PA",5343 +2018-05-01,"Commercial Consumption","Missouri","MO",2622 +2018-05-01,"Commercial Consumption","Maine","ME",415 +2018-05-01,"Commercial Consumption","Idaho","ID",810 +2018-05-01,"Commercial Consumption","Michigan","MI",8384 +2018-05-01,"Commercial Consumption","Louisiana","LA",2139 +2018-05-01,"Delivered to Consumers","Indiana","IN",59921 +2018-05-01,"Delivered to Consumers","Wyoming","WY",5946 +2018-05-01,"Delivered to Consumers","Oklahoma","OK",55605 +2018-05-01,"Delivered to Consumers","Wisconsin","WI",27727 +2018-05-01,"Delivered to Consumers","Mississippi","MS",47130 +2018-05-01,"Delivered to Consumers","U.S.","U.S.",1855856 +2018-05-01,"Delivered to Consumers","Rhode Island","RI",5711 +2018-05-01,"Delivered to Consumers","Nebraska","NE",11426 +2018-05-01,"Delivered to Consumers","Louisiana","LA",130658 +2018-05-01,"Delivered to Consumers","Arizona","AZ",26258 +2018-05-01,"Delivered to Consumers","New Hampshire","NH",2173 +2018-05-01,"Delivered to Consumers","North Dakota","ND",4641 +2018-05-01,"Delivered to Consumers","Utah","UT",11100 +2018-05-01,"Delivered to Consumers","Vermont","VT",621 +2018-05-01,"Delivered to Consumers","New York","NY",70343 +2018-05-01,"Delivered to Consumers","Maryland","MD",19904 +2018-05-01,"Delivered to Consumers","Idaho","ID",4493 +2018-05-01,"Delivered to Consumers","Massachusetts","MA",19253 +2018-05-01,"Delivered to Consumers","Colorado","CO",24869 +2018-05-01,"Delivered to Consumers","Nevada","NV",20174 +2018-05-01,"Delivered to Consumers","Georgia","GA",52159 +2018-05-01,"Delivered to Consumers","Minnesota","MN",26940 +2018-05-01,"Delivered to Consumers","South Dakota","SD",6172 +2018-05-01,"Delivered to Consumers","Tennessee","TN",21542 +2018-05-01,"Delivered to Consumers","Michigan","MI",53854 +2018-05-01,"Delivered to Consumers","Maine","ME",2688 +2018-05-01,"Delivered to Consumers","Hawaii","HI",266 +2018-05-01,"Delivered to Consumers","Alabama","AL",59528 +2018-05-01,"Delivered to Consumers","Virginia","VA",40287 +2018-05-01,"Delivered to Consumers","Pennsylvania","PA",66683 +2018-05-01,"Delivered to Consumers","Missouri","MO",15891 +2018-05-01,"Delivered to Consumers","Oregon","OR",9239 +2018-05-01,"Delivered to Consumers","District of Columbia","DC",1096 +2018-05-01,"Delivered to Consumers","Illinois","IL",53221 +2018-05-01,"Delivered to Consumers","Alaska","AK",4368 +2018-05-01,"Delivered to Consumers","Kansas","KS",18882 +2018-05-01,"Delivered to Consumers","Kentucky","KY",20359 +2018-05-01,"Delivered to Consumers","North Carolina","NC",36642 +2018-05-01,"Delivered to Consumers","California","CA",138969 +2018-05-01,"Delivered to Consumers","Delaware","DE",6156 +2018-05-01,"Delivered to Consumers","West Virginia","WV",5349 +2018-05-01,"Delivered to Consumers","Montana","MT",4368 +2018-05-01,"Delivered to Consumers","Iowa","IA",28793 +2018-05-01,"Delivered to Consumers","Texas","TX",326264 +2018-05-01,"Delivered to Consumers","New Jersey","NJ",40388 +2018-05-01,"Delivered to Consumers","Florida","FL",118789 +2018-05-01,"Delivered to Consumers","New Mexico","NM",12964 +2018-05-01,"Delivered to Consumers","Ohio","OH",57892 +2018-05-01,"Delivered to Consumers","Connecticut","CT",14834 +2018-05-01,"Delivered to Consumers","Arkansas","AR",27622 +2018-05-01,"Delivered to Consumers","South Carolina","SC",21702 +2018-05-01,"Delivered to Consumers","Washington","WA",14000 +2018-05-01,"Electric Power Consumption","Texas","TX",150012 +2018-05-01,"Electric Power Consumption","Illinois","IL",12898 +2018-05-01,"Electric Power Consumption","West Virginia","WV",922 +2018-05-01,"Electric Power Consumption","New Hampshire","NH",850 +2018-05-01,"Electric Power Consumption","Delaware","DE",3222 +2018-05-01,"Electric Power Consumption","Florida","FL",103489 +2018-05-01,"Electric Power Consumption","Idaho","ID",410 +2018-05-01,"Electric Power Consumption","New York","NY",30309 +2018-05-01,"Electric Power Consumption","Utah","UT",3814 +2018-05-01,"Electric Power Consumption","Michigan","MI",24888 +2018-05-01,"Electric Power Consumption","Tennessee","TN",5163 +2018-05-01,"Electric Power Consumption","Maine","ME",1002 +2018-05-01,"Electric Power Consumption","Mississippi","MS",34006 +2018-05-01,"Electric Power Consumption","Virginia","VA",26834 +2018-05-01,"Electric Power Consumption","New Jersey","NJ",21210 +2018-05-01,"Electric Power Consumption","Colorado","CO",10469 +2018-05-01,"Electric Power Consumption","Rhode Island","RI",4170 +2018-05-01,"Electric Power Consumption","Oregon","OR",2024 +2018-05-01,"Electric Power Consumption","Minnesota","MN",6176 +2018-05-01,"Electric Power Consumption","Wisconsin","WI",7885 +2018-05-01,"Electric Power Consumption","Wyoming","WY",141 +2018-05-01,"Electric Power Consumption","Iowa","IA",5176 +2018-05-01,"Electric Power Consumption","Vermont","VT",0 +2018-05-01,"Electric Power Consumption","Hawaii","HI",NA +2018-05-01,"Electric Power Consumption","Ohio","OH",23222 +2018-05-01,"Electric Power Consumption","North Dakota","ND",1021 +2018-05-01,"Electric Power Consumption","Arizona","AZ",20670 +2018-05-01,"Electric Power Consumption","South Carolina","SC",11654 +2018-05-01,"Electric Power Consumption","Kansas","KS",4845 +2018-05-01,"Electric Power Consumption","South Dakota","SD",1363 +2018-05-01,"Electric Power Consumption","North Carolina","NC",23995 +2018-05-01,"Electric Power Consumption","Missouri","MO",6589 +2018-05-01,"Electric Power Consumption","Alaska","AK",2106 +2018-05-01,"Electric Power Consumption","Arkansas","AR",15356 +2018-05-01,"Electric Power Consumption","Massachusetts","MA",7301 +2018-05-01,"Electric Power Consumption","Nebraska","NE",1349 +2018-05-01,"Electric Power Consumption","Kentucky","KY",9058 +2018-05-01,"Electric Power Consumption","Montana","MT",343 +2018-05-01,"Electric Power Consumption","Maryland","MD",10708 +2018-05-01,"Electric Power Consumption","California","CA",28895 +2018-05-01,"Electric Power Consumption","Pennsylvania","PA",36867 +2018-05-01,"Electric Power Consumption","U.S.","U.S.",848085 +2018-05-01,"Electric Power Consumption","Indiana","IN",18545 +2018-05-01,"Electric Power Consumption","Washington","WA",2378 +2018-05-01,"Electric Power Consumption","New Mexico","NM",8953 +2018-05-01,"Electric Power Consumption","Louisiana","LA",28966 +2018-05-01,"Electric Power Consumption","Oklahoma","OK",34337 +2018-05-01,"Electric Power Consumption","Nevada","NV",14330 +2018-05-01,"Electric Power Consumption","Connecticut","CT",8641 +2018-05-01,"Electric Power Consumption","Georgia","GA",32021 +2018-05-01,"Electric Power Consumption","Alabama","AL",39503 +2018-05-01,"Industrial Consumption","Minnesota","MN",12085 +2018-05-01,"Industrial Consumption","Florida","FL",8706 +2018-05-01,"Industrial Consumption","Michigan","MI",11778 +2018-05-01,"Industrial Consumption","Louisiana","LA",97989 +2018-05-01,"Industrial Consumption","Arizona","AZ",1502 +2018-05-01,"Industrial Consumption","Connecticut","CT",1595 +2018-05-01,"Industrial Consumption","District of Columbia","DC",NA +2018-05-01,"Industrial Consumption","Utah","UT",3236 +2018-05-01,"Industrial Consumption","Maine","ME",1155 +2018-05-01,"Industrial Consumption","Texas","TX",154422 +2018-05-01,"Industrial Consumption","South Carolina","SC",7816 +2018-05-01,"Industrial Consumption","Vermont","VT",173 +2018-05-01,"Industrial Consumption","New Jersey","NJ",4129 +2018-05-01,"Industrial Consumption","New Hampshire","NH",781 +2018-05-01,"Industrial Consumption","Rhode Island","RI",741 +2018-05-01,"Industrial Consumption","North Carolina","NC",8886 +2018-05-01,"Industrial Consumption","Georgia","GA",12770 +2018-05-01,"Industrial Consumption","Alaska","AK",410 +2018-05-01,"Industrial Consumption","Hawaii","HI",8 +2018-05-01,"Industrial Consumption","Oklahoma","OK",17615 +2018-05-01,"Industrial Consumption","U.S.","U.S.",670722 +2018-05-01,"Industrial Consumption","Nevada","NV",1518 +2018-05-01,"Industrial Consumption","California","CA",63663 +2018-05-01,"Industrial Consumption","Alabama","AL",17760 +2018-05-01,"Industrial Consumption","Nebraska","NE",6795 +2018-05-01,"Industrial Consumption","Wisconsin","WI",11786 +2018-05-01,"Industrial Consumption","Colorado","CO",6145 +2018-05-01,"Industrial Consumption","Arkansas","AR",8216 +2018-05-01,"Industrial Consumption","West Virginia","WV",2703 +2018-05-01,"Industrial Consumption","North Dakota","ND",2469 +2018-05-01,"Industrial Consumption","Washington","WA",5914 +2018-05-01,"Industrial Consumption","Ohio","OH",23660 +2018-05-01,"Industrial Consumption","Pennsylvania","PA",17673 +2018-05-01,"Industrial Consumption","Mississippi","MS",11498 +2018-05-01,"Industrial Consumption","Virginia","VA",7834 +2018-05-01,"Industrial Consumption","Tennessee","TN",11519 +2018-05-01,"Industrial Consumption","Idaho","ID",2455 +2018-05-01,"Industrial Consumption","Iowa","IA",19468 +2018-05-01,"Industrial Consumption","Delaware","DE",1871 +2018-05-01,"Industrial Consumption","Montana","MT",1891 +2018-05-01,"Industrial Consumption","Maryland","MD",1260 +2018-05-01,"Industrial Consumption","Massachusetts","MA",3107 +2018-05-01,"Industrial Consumption","Oregon","OR",4329 +2018-05-01,"Industrial Consumption","New York","NY",5806 +2018-05-01,"Industrial Consumption","Missouri","MO",4352 +2018-05-01,"Industrial Consumption","South Dakota","SD",3615 +2018-05-01,"Industrial Consumption","New Mexico","NM",1731 +2018-05-01,"Industrial Consumption","Kansas","KS",10561 +2018-05-01,"Industrial Consumption","Wyoming","WY",4389 +2018-05-01,"Industrial Consumption","Kentucky","KY",8708 +2018-05-01,"Industrial Consumption","Indiana","IN",34594 +2018-05-01,"Industrial Consumption","Illinois","IL",17631 +2018-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",140156 +2018-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",59007 +2018-05-01,"Residential Consumption","Tennessee","TN",2217 +2018-05-01,"Residential Consumption","Arkansas","AR",987 +2018-05-01,"Residential Consumption","Alabama","AL",1116 +2018-05-01,"Residential Consumption","Wyoming","WY",617 +2018-05-01,"Residential Consumption","South Carolina","SC",735 +2018-05-01,"Residential Consumption","Ohio","OH",6013 +2018-05-01,"Residential Consumption","North Carolina","NC",1307 +2018-05-01,"Residential Consumption","Mississippi","MS",672 +2018-05-01,"Residential Consumption","Virginia","VA",2316 +2018-05-01,"Residential Consumption","Idaho","ID",812 +2018-05-01,"Residential Consumption","Kansas","KS",1683 +2018-05-01,"Residential Consumption","California","CA",26759 +2018-05-01,"Residential Consumption","Oregon","OR",1518 +2018-05-01,"Residential Consumption","Vermont","VT",185 +2018-05-01,"Residential Consumption","South Dakota","SD",630 +2018-05-01,"Residential Consumption","Maine","ME",116 +2018-05-01,"Residential Consumption","New Jersey","NJ",7904 +2018-05-01,"Residential Consumption","U.S.","U.S.",169019 +2018-05-01,"Residential Consumption","New York","NY",19184 +2018-05-01,"Residential Consumption","Texas","TX",8214 +2018-05-01,"Residential Consumption","Iowa","IA",1841 +2018-05-01,"Residential Consumption","Wisconsin","WI",4026 +2018-05-01,"Residential Consumption","Michigan","MI",8804 +2018-05-01,"Residential Consumption","New Mexico","NM",1117 +2018-05-01,"Residential Consumption","Arizona","AZ",1732 +2018-05-01,"Residential Consumption","West Virginia","WV",592 +2018-05-01,"Residential Consumption","Hawaii","HI",49 +2018-05-01,"Residential Consumption","Missouri","MO",2293 +2018-05-01,"Residential Consumption","Connecticut","CT",2010 +2018-05-01,"Residential Consumption","Nevada","NV",2003 +2018-05-01,"Residential Consumption","Indiana","IN",3687 +2018-05-01,"Residential Consumption","Massachusetts","MA",4488 +2018-05-01,"Residential Consumption","Montana","MT",889 +2018-05-01,"Residential Consumption","Colorado","CO",5539 +2018-05-01,"Residential Consumption","Washington","WA",2831 +2018-05-01,"Residential Consumption","Rhode Island","RI",476 +2018-05-01,"Residential Consumption","Utah","UT",2311 +2018-05-01,"Residential Consumption","Maryland","MD",3410 +2018-05-01,"Residential Consumption","Minnesota","MN",4376 +2018-05-01,"Residential Consumption","District of Columbia","DC",377 +2018-05-01,"Residential Consumption","Pennsylvania","PA",6648 +2018-05-01,"Residential Consumption","Florida","FL",1155 +2018-05-01,"Residential Consumption","North Dakota","ND",598 +2018-05-01,"Residential Consumption","Oklahoma","OK",1686 +2018-05-01,"Residential Consumption","Delaware","DE",372 +2018-05-01,"Residential Consumption","Louisiana","LA",1527 +2018-05-01,"Residential Consumption","Nebraska","NE",1545 +2018-05-01,"Residential Consumption","Georgia","GA",4736 +2018-05-01,"Residential Consumption","New Hampshire","NH",239 +2018-05-01,"Residential Consumption","Kentucky","KY",1220 +2018-05-01,"Residential Consumption","Alaska","AK",1032 +2018-05-01,"Residential Consumption","Illinois","IL",12425 +2018-05-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",153 +2018-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",138 +2018-05-01,"Vehicle Fuel Consumption","Iowa","IA",4 +2018-05-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2018-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2018-05-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2018-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-05-01,"Vehicle Fuel Consumption","California","CA",2128 +2018-05-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2018-05-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2018-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-05-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2018-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-05-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-05-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-05-01,"Vehicle Fuel Consumption","North Carolina","NC",116 +2018-05-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2018-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",4282 +2018-05-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-05-01,"Vehicle Fuel Consumption","Florida","FL",365 +2018-05-01,"Vehicle Fuel Consumption","Missouri","MO",34 +2018-05-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-05-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-05-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-05-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2018-05-01,"Vehicle Fuel Consumption","Utah","UT",30 +2018-05-01,"Vehicle Fuel Consumption","New York","NY",82 +2018-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2018-05-01,"Vehicle Fuel Consumption","Texas","TX",152 +2018-05-01,"Vehicle Fuel Consumption","Colorado","CO",108 +2018-05-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-05-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-05-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-05-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2018-05-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2018-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2018-05-01,"Vehicle Fuel Consumption","Kansas","KS",58 +2018-05-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2018-05-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-05-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-05-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2018-05-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-05-01,"Vehicle Fuel Consumption","Louisiana","LA",36 +2018-05-01,"Vehicle Fuel Consumption","Georgia","GA",173 +2018-05-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-06-01,"Commercial Consumption","Wyoming","WY",489 +2018-06-01,"Commercial Consumption","West Virginia","WV",1045 +2018-06-01,"Commercial Consumption","Massachusetts","MA",4043 +2018-06-01,"Commercial Consumption","Wisconsin","WI",2925 +2018-06-01,"Commercial Consumption","New Jersey","NJ",6318 +2018-06-01,"Commercial Consumption","Kansas","KS",1671 +2018-06-01,"Commercial Consumption","Ohio","OH",5143 +2018-06-01,"Commercial Consumption","Alaska","AK",593 +2018-06-01,"Commercial Consumption","Delaware","DE",684 +2018-06-01,"Commercial Consumption","Oregon","OR",1257 +2018-06-01,"Commercial Consumption","South Dakota","SD",346 +2018-06-01,"Commercial Consumption","U.S.","U.S.",142401 +2018-06-01,"Commercial Consumption","Maryland","MD",3924 +2018-06-01,"Commercial Consumption","Nebraska","NE",1277 +2018-06-01,"Commercial Consumption","Nevada","NV",1916 +2018-06-01,"Commercial Consumption","Indiana","IN",2221 +2018-06-01,"Commercial Consumption","Minnesota","MN",3126 +2018-06-01,"Commercial Consumption","Oklahoma","OK",1578 +2018-06-01,"Commercial Consumption","Idaho","ID",763 +2018-06-01,"Commercial Consumption","Virginia","VA",2971 +2018-06-01,"Commercial Consumption","Rhode Island","RI",291 +2018-06-01,"Commercial Consumption","Michigan","MI",5272 +2018-06-01,"Commercial Consumption","North Dakota","ND",369 +2018-06-01,"Commercial Consumption","Colorado","CO",1656 +2018-06-01,"Commercial Consumption","Pennsylvania","PA",5090 +2018-06-01,"Commercial Consumption","Kentucky","KY",1027 +2018-06-01,"Commercial Consumption","Texas","TX",10960 +2018-06-01,"Commercial Consumption","California","CA",16142 +2018-06-01,"Commercial Consumption","Arkansas","AR",2816 +2018-06-01,"Commercial Consumption","Alabama","AL",1101 +2018-06-01,"Commercial Consumption","New York","NY",14584 +2018-06-01,"Commercial Consumption","Washington","WA",2731 +2018-06-01,"Commercial Consumption","South Carolina","SC",1343 +2018-06-01,"Commercial Consumption","Missouri","MO",2150 +2018-06-01,"Commercial Consumption","New Hampshire","NH",267 +2018-06-01,"Commercial Consumption","Maine","ME",326 +2018-06-01,"Commercial Consumption","Florida","FL",4881 +2018-06-01,"Commercial Consumption","Tennessee","TN",2428 +2018-06-01,"Commercial Consumption","Utah","UT",1484 +2018-06-01,"Commercial Consumption","New Mexico","NM",1000 +2018-06-01,"Commercial Consumption","Georgia","GA",2149 +2018-06-01,"Commercial Consumption","Connecticut","CT",2474 +2018-06-01,"Commercial Consumption","Arizona","AZ",1977 +2018-06-01,"Commercial Consumption","District of Columbia","DC",873 +2018-06-01,"Commercial Consumption","North Carolina","NC",1996 +2018-06-01,"Commercial Consumption","Montana","MT",843 +2018-06-01,"Commercial Consumption","Vermont","VT",353 +2018-06-01,"Commercial Consumption","Iowa","IA",1893 +2018-06-01,"Commercial Consumption","Hawaii","HI",212 +2018-06-01,"Commercial Consumption","Mississippi","MS",916 +2018-06-01,"Commercial Consumption","Louisiana","LA",2011 +2018-06-01,"Commercial Consumption","Illinois","IL",8498 +2018-06-01,"Delivered to Consumers","Michigan","MI",42413 +2018-06-01,"Delivered to Consumers","Alabama","AL",57578 +2018-06-01,"Delivered to Consumers","New Jersey","NJ",40505 +2018-06-01,"Delivered to Consumers","Maine","ME",2873 +2018-06-01,"Delivered to Consumers","Georgia","GA",53793 +2018-06-01,"Delivered to Consumers","South Dakota","SD",5180 +2018-06-01,"Delivered to Consumers","Hawaii","HI",270 +2018-06-01,"Delivered to Consumers","Arkansas","AR",27517 +2018-06-01,"Delivered to Consumers","Nebraska","NE",9981 +2018-06-01,"Delivered to Consumers","New Mexico","NM",13370 +2018-06-01,"Delivered to Consumers","Texas","TX",326543 +2018-06-01,"Delivered to Consumers","Delaware","DE",5209 +2018-06-01,"Delivered to Consumers","Wyoming","WY",5541 +2018-06-01,"Delivered to Consumers","Oklahoma","OK",54835 +2018-06-01,"Delivered to Consumers","Tennessee","TN",24425 +2018-06-01,"Delivered to Consumers","Ohio","OH",57210 +2018-06-01,"Delivered to Consumers","Wisconsin","WI",26767 +2018-06-01,"Delivered to Consumers","Nevada","NV",24445 +2018-06-01,"Delivered to Consumers","Arizona","AZ",31851 +2018-06-01,"Delivered to Consumers","Kansas","KS",16943 +2018-06-01,"Delivered to Consumers","Colorado","CO",21697 +2018-06-01,"Delivered to Consumers","North Dakota","ND",4383 +2018-06-01,"Delivered to Consumers","Utah","UT",11186 +2018-06-01,"Delivered to Consumers","Indiana","IN",54471 +2018-06-01,"Delivered to Consumers","Illinois","IL",47911 +2018-06-01,"Delivered to Consumers","Rhode Island","RI",6456 +2018-06-01,"Delivered to Consumers","Montana","MT",3790 +2018-06-01,"Delivered to Consumers","Alaska","AK",3606 +2018-06-01,"Delivered to Consumers","Iowa","IA",26698 +2018-06-01,"Delivered to Consumers","South Carolina","SC",26101 +2018-06-01,"Delivered to Consumers","Oregon","OR",11670 +2018-06-01,"Delivered to Consumers","Florida","FL",132053 +2018-06-01,"Delivered to Consumers","District of Columbia","DC",1176 +2018-06-01,"Delivered to Consumers","U.S.","U.S.",1867447 +2018-06-01,"Delivered to Consumers","West Virginia","WV",4932 +2018-06-01,"Delivered to Consumers","Vermont","VT",624 +2018-06-01,"Delivered to Consumers","Maryland","MD",14656 +2018-06-01,"Delivered to Consumers","Virginia","VA",47885 +2018-06-01,"Delivered to Consumers","Missouri","MO",15080 +2018-06-01,"Delivered to Consumers","California","CA",143361 +2018-06-01,"Delivered to Consumers","Louisiana","LA",131324 +2018-06-01,"Delivered to Consumers","Washington","WA",15534 +2018-06-01,"Delivered to Consumers","New York","NY",69044 +2018-06-01,"Delivered to Consumers","Idaho","ID",4906 +2018-06-01,"Delivered to Consumers","Kentucky","KY",17786 +2018-06-01,"Delivered to Consumers","Connecticut","CT",16875 +2018-06-01,"Delivered to Consumers","Pennsylvania","PA",73078 +2018-06-01,"Delivered to Consumers","North Carolina","NC",40902 +2018-06-01,"Delivered to Consumers","Mississippi","MS",46460 +2018-06-01,"Delivered to Consumers","Massachusetts","MA",18904 +2018-06-01,"Delivered to Consumers","New Hampshire","NH",4181 +2018-06-01,"Delivered to Consumers","Minnesota","MN",23470 +2018-06-01,"Electric Power Consumption","South Carolina","SC",16625 +2018-06-01,"Electric Power Consumption","Rhode Island","RI",5077 +2018-06-01,"Electric Power Consumption","Oklahoma","OK",35943 +2018-06-01,"Electric Power Consumption","Utah","UT",4478 +2018-06-01,"Electric Power Consumption","Minnesota","MN",6401 +2018-06-01,"Electric Power Consumption","Missouri","MO",6714 +2018-06-01,"Electric Power Consumption","Maine","ME",1280 +2018-06-01,"Electric Power Consumption","Connecticut","CT",11424 +2018-06-01,"Electric Power Consumption","Oregon","OR",4921 +2018-06-01,"Electric Power Consumption","West Virginia","WV",791 +2018-06-01,"Electric Power Consumption","Nevada","NV",19281 +2018-06-01,"Electric Power Consumption","South Dakota","SD",982 +2018-06-01,"Electric Power Consumption","Nebraska","NE",1125 +2018-06-01,"Electric Power Consumption","North Carolina","NC",29061 +2018-06-01,"Electric Power Consumption","Montana","MT",328 +2018-06-01,"Electric Power Consumption","Maryland","MD",7891 +2018-06-01,"Electric Power Consumption","Florida","FL",117564 +2018-06-01,"Electric Power Consumption","California","CA",41128 +2018-06-01,"Electric Power Consumption","Idaho","ID",1232 +2018-06-01,"Electric Power Consumption","Pennsylvania","PA",46422 +2018-06-01,"Electric Power Consumption","Iowa","IA",4372 +2018-06-01,"Electric Power Consumption","Vermont","VT",2 +2018-06-01,"Electric Power Consumption","U.S.","U.S.",952554 +2018-06-01,"Electric Power Consumption","North Dakota","ND",1060 +2018-06-01,"Electric Power Consumption","Washington","WA",4572 +2018-06-01,"Electric Power Consumption","Colorado","CO",11965 +2018-06-01,"Electric Power Consumption","New York","NY",35538 +2018-06-01,"Electric Power Consumption","Illinois","IL",13746 +2018-06-01,"Electric Power Consumption","Michigan","MI",20289 +2018-06-01,"Electric Power Consumption","Tennessee","TN",9216 +2018-06-01,"Electric Power Consumption","Wyoming","WY",133 +2018-06-01,"Electric Power Consumption","Kentucky","KY",8104 +2018-06-01,"Electric Power Consumption","Ohio","OH",25148 +2018-06-01,"Electric Power Consumption","New Hampshire","NH",3043 +2018-06-01,"Electric Power Consumption","Indiana","IN",18351 +2018-06-01,"Electric Power Consumption","Delaware","DE",2332 +2018-06-01,"Electric Power Consumption","Georgia","GA",34627 +2018-06-01,"Electric Power Consumption","New Mexico","NM",9989 +2018-06-01,"Electric Power Consumption","New Jersey","NJ",23216 +2018-06-01,"Electric Power Consumption","Arkansas","AR",16404 +2018-06-01,"Electric Power Consumption","Kansas","KS",3616 +2018-06-01,"Electric Power Consumption","Wisconsin","WI",10701 +2018-06-01,"Electric Power Consumption","Hawaii","HI",NA +2018-06-01,"Electric Power Consumption","Arizona","AZ",27027 +2018-06-01,"Electric Power Consumption","Virginia","VA",35073 +2018-06-01,"Electric Power Consumption","Louisiana","LA",30696 +2018-06-01,"Electric Power Consumption","Texas","TX",160952 +2018-06-01,"Electric Power Consumption","Massachusetts","MA",9180 +2018-06-01,"Electric Power Consumption","Mississippi","MS",33962 +2018-06-01,"Electric Power Consumption","Alabama","AL",38610 +2018-06-01,"Electric Power Consumption","Alaska","AK",1962 +2018-06-01,"Industrial Consumption","North Dakota","ND",2719 +2018-06-01,"Industrial Consumption","Maryland","MD",951 +2018-06-01,"Industrial Consumption","Arkansas","AR",7650 +2018-06-01,"Industrial Consumption","Illinois","IL",16677 +2018-06-01,"Industrial Consumption","Delaware","DE",1993 +2018-06-01,"Industrial Consumption","Arizona","AZ",1381 +2018-06-01,"Industrial Consumption","Oregon","OR",4188 +2018-06-01,"Industrial Consumption","New York","NY",6320 +2018-06-01,"Industrial Consumption","Alabama","AL",17135 +2018-06-01,"Industrial Consumption","Wisconsin","WI",10446 +2018-06-01,"Industrial Consumption","Idaho","ID",2241 +2018-06-01,"Industrial Consumption","Georgia","GA",12869 +2018-06-01,"Industrial Consumption","South Dakota","SD",3601 +2018-06-01,"Industrial Consumption","U.S.","U.S.",649104 +2018-06-01,"Industrial Consumption","Pennsylvania","PA",16879 +2018-06-01,"Industrial Consumption","Nevada","NV",1535 +2018-06-01,"Industrial Consumption","South Carolina","SC",7614 +2018-06-01,"Industrial Consumption","Minnesota","MN",10972 +2018-06-01,"Industrial Consumption","Michigan","MI",11259 +2018-06-01,"Industrial Consumption","Rhode Island","RI",652 +2018-06-01,"Industrial Consumption","Hawaii","HI",8 +2018-06-01,"Industrial Consumption","New Mexico","NM",1565 +2018-06-01,"Industrial Consumption","California","CA",62227 +2018-06-01,"Industrial Consumption","Virginia","VA",8179 +2018-06-01,"Industrial Consumption","Vermont","VT",156 +2018-06-01,"Industrial Consumption","New Jersey","NJ",4803 +2018-06-01,"Industrial Consumption","Connecticut","CT",1676 +2018-06-01,"Industrial Consumption","District of Columbia","DC",NA +2018-06-01,"Industrial Consumption","Montana","MT",2046 +2018-06-01,"Industrial Consumption","Maine","ME",1192 +2018-06-01,"Industrial Consumption","Nebraska","NE",6776 +2018-06-01,"Industrial Consumption","New Hampshire","NH",691 +2018-06-01,"Industrial Consumption","Florida","FL",8262 +2018-06-01,"Industrial Consumption","Indiana","IN",31886 +2018-06-01,"Industrial Consumption","Ohio","OH",22186 +2018-06-01,"Industrial Consumption","Texas","TX",149036 +2018-06-01,"Industrial Consumption","Iowa","IA",19242 +2018-06-01,"Industrial Consumption","West Virginia","WV",2710 +2018-06-01,"Industrial Consumption","Kentucky","KY",7889 +2018-06-01,"Industrial Consumption","Alaska","AK",379 +2018-06-01,"Industrial Consumption","Massachusetts","MA",2835 +2018-06-01,"Industrial Consumption","Oklahoma","OK",16019 +2018-06-01,"Industrial Consumption","Missouri","MO",4396 +2018-06-01,"Industrial Consumption","Louisiana","LA",97377 +2018-06-01,"Industrial Consumption","Colorado","CO",5342 +2018-06-01,"Industrial Consumption","Washington","WA",5768 +2018-06-01,"Industrial Consumption","Kansas","KS",10273 +2018-06-01,"Industrial Consumption","Utah","UT",3165 +2018-06-01,"Industrial Consumption","Mississippi","MS",11086 +2018-06-01,"Industrial Consumption","Wyoming","WY",4595 +2018-06-01,"Industrial Consumption","Tennessee","TN",11544 +2018-06-01,"Industrial Consumption","North Carolina","NC",8718 +2018-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",136321 +2018-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",59376 +2018-06-01,"Residential Consumption","Nevada","NV",1612 +2018-06-01,"Residential Consumption","New Mexico","NM",798 +2018-06-01,"Residential Consumption","Idaho","ID",665 +2018-06-01,"Residential Consumption","New Jersey","NJ",6134 +2018-06-01,"Residential Consumption","Montana","MT",572 +2018-06-01,"Residential Consumption","Kansas","KS",1327 +2018-06-01,"Residential Consumption","Delaware","DE",200 +2018-06-01,"Residential Consumption","Alabama","AL",725 +2018-06-01,"Residential Consumption","West Virginia","WV",385 +2018-06-01,"Residential Consumption","Louisiana","LA",1204 +2018-06-01,"Residential Consumption","Virginia","VA",1591 +2018-06-01,"Residential Consumption","Utah","UT",2030 +2018-06-01,"Residential Consumption","Maryland","MD",1859 +2018-06-01,"Residential Consumption","Massachusetts","MA",2835 +2018-06-01,"Residential Consumption","Colorado","CO",2630 +2018-06-01,"Residential Consumption","South Carolina","SC",509 +2018-06-01,"Residential Consumption","Ohio","OH",4692 +2018-06-01,"Residential Consumption","North Carolina","NC",1015 +2018-06-01,"Residential Consumption","Tennessee","TN",1216 +2018-06-01,"Residential Consumption","Michigan","MI",5594 +2018-06-01,"Residential Consumption","North Dakota","ND",234 +2018-06-01,"Residential Consumption","Oregon","OR",1299 +2018-06-01,"Residential Consumption","Mississippi","MS",493 +2018-06-01,"Residential Consumption","District of Columbia","DC",267 +2018-06-01,"Residential Consumption","Kentucky","KY",759 +2018-06-01,"Residential Consumption","Alaska","AK",672 +2018-06-01,"Residential Consumption","Nebraska","NE",790 +2018-06-01,"Residential Consumption","South Dakota","SD",252 +2018-06-01,"Residential Consumption","Georgia","GA",3981 +2018-06-01,"Residential Consumption","Maine","ME",75 +2018-06-01,"Residential Consumption","Missouri","MO",1786 +2018-06-01,"Residential Consumption","Wyoming","WY",323 +2018-06-01,"Residential Consumption","U.S.","U.S.",119244 +2018-06-01,"Residential Consumption","Illinois","IL",8979 +2018-06-01,"Residential Consumption","Iowa","IA",1187 +2018-06-01,"Residential Consumption","California","CA",21806 +2018-06-01,"Residential Consumption","Arizona","AZ",1330 +2018-06-01,"Residential Consumption","New York","NY",12523 +2018-06-01,"Residential Consumption","Texas","TX",5448 +2018-06-01,"Residential Consumption","Rhode Island","RI",428 +2018-06-01,"Residential Consumption","Hawaii","HI",50 +2018-06-01,"Residential Consumption","Connecticut","CT",1283 +2018-06-01,"Residential Consumption","Minnesota","MN",2934 +2018-06-01,"Residential Consumption","Indiana","IN",2013 +2018-06-01,"Residential Consumption","Arkansas","AR",643 +2018-06-01,"Residential Consumption","Wisconsin","WI",2659 +2018-06-01,"Residential Consumption","Vermont","VT",113 +2018-06-01,"Residential Consumption","Pennsylvania","PA",4538 +2018-06-01,"Residential Consumption","Florida","FL",992 +2018-06-01,"Residential Consumption","New Hampshire","NH",181 +2018-06-01,"Residential Consumption","Washington","WA",2449 +2018-06-01,"Residential Consumption","Oklahoma","OK",1162 +2018-06-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-06-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2018-06-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2018-06-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-06-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2018-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-06-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",134 +2018-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2018-06-01,"Vehicle Fuel Consumption","Texas","TX",147 +2018-06-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-06-01,"Vehicle Fuel Consumption","New York","NY",79 +2018-06-01,"Vehicle Fuel Consumption","Arizona","AZ",136 +2018-06-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-06-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2018-06-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-06-01,"Vehicle Fuel Consumption","Tennessee","TN",20 +2018-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",37 +2018-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",148 +2018-06-01,"Vehicle Fuel Consumption","Nevada","NV",101 +2018-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-06-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-06-01,"Vehicle Fuel Consumption","Georgia","GA",167 +2018-06-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-06-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-06-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2018-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",35 +2018-06-01,"Vehicle Fuel Consumption","Louisiana","LA",35 +2018-06-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2018-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",4144 +2018-06-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2018-06-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-06-01,"Vehicle Fuel Consumption","Kansas","KS",56 +2018-06-01,"Vehicle Fuel Consumption","Missouri","MO",33 +2018-06-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-06-01,"Vehicle Fuel Consumption","Colorado","CO",105 +2018-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-06-01,"Vehicle Fuel Consumption","Virginia","VA",71 +2018-06-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-06-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-06-01,"Vehicle Fuel Consumption","Utah","UT",29 +2018-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",36 +2018-06-01,"Vehicle Fuel Consumption","Florida","FL",353 +2018-06-01,"Vehicle Fuel Consumption","North Carolina","NC",113 +2018-06-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-06-01,"Vehicle Fuel Consumption","California","CA",2059 +2018-06-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-07-01,"Commercial Consumption","Washington","WA",2167 +2018-07-01,"Commercial Consumption","Utah","UT",1286 +2018-07-01,"Commercial Consumption","Delaware","DE",687 +2018-07-01,"Commercial Consumption","West Virginia","WV",999 +2018-07-01,"Commercial Consumption","South Carolina","SC",1272 +2018-07-01,"Commercial Consumption","Iowa","IA",1659 +2018-07-01,"Commercial Consumption","Alaska","AK",438 +2018-07-01,"Commercial Consumption","Nebraska","NE",1281 +2018-07-01,"Commercial Consumption","District of Columbia","DC",771 +2018-07-01,"Commercial Consumption","Colorado","CO",1496 +2018-07-01,"Commercial Consumption","Oregon","OR",970 +2018-07-01,"Commercial Consumption","Pennsylvania","PA",4875 +2018-07-01,"Commercial Consumption","South Dakota","SD",300 +2018-07-01,"Commercial Consumption","New Hampshire","NH",223 +2018-07-01,"Commercial Consumption","Georgia","GA",2168 +2018-07-01,"Commercial Consumption","Hawaii","HI",223 +2018-07-01,"Commercial Consumption","Connecticut","CT",2573 +2018-07-01,"Commercial Consumption","Arkansas","AR",2881 +2018-07-01,"Commercial Consumption","Alabama","AL",1108 +2018-07-01,"Commercial Consumption","Wyoming","WY",376 +2018-07-01,"Commercial Consumption","North Carolina","NC",2104 +2018-07-01,"Commercial Consumption","Texas","TX",10399 +2018-07-01,"Commercial Consumption","Florida","FL",4576 +2018-07-01,"Commercial Consumption","Rhode Island","RI",292 +2018-07-01,"Commercial Consumption","Ohio","OH",4837 +2018-07-01,"Commercial Consumption","Idaho","ID",714 +2018-07-01,"Commercial Consumption","Minnesota","MN",2844 +2018-07-01,"Commercial Consumption","Virginia","VA",3410 +2018-07-01,"Commercial Consumption","Kentucky","KY",1034 +2018-07-01,"Commercial Consumption","Kansas","KS",1636 +2018-07-01,"Commercial Consumption","Vermont","VT",353 +2018-07-01,"Commercial Consumption","New York","NY",15045 +2018-07-01,"Commercial Consumption","Nevada","NV",1739 +2018-07-01,"Commercial Consumption","Michigan","MI",5171 +2018-07-01,"Commercial Consumption","Massachusetts","MA",3705 +2018-07-01,"Commercial Consumption","Wisconsin","WI",2896 +2018-07-01,"Commercial Consumption","U.S.","U.S.",137574 +2018-07-01,"Commercial Consumption","Arizona","AZ",1930 +2018-07-01,"Commercial Consumption","Tennessee","TN",2256 +2018-07-01,"Commercial Consumption","Illinois","IL",8606 +2018-07-01,"Commercial Consumption","North Dakota","ND",291 +2018-07-01,"Commercial Consumption","New Mexico","NM",867 +2018-07-01,"Commercial Consumption","Oklahoma","OK",1462 +2018-07-01,"Commercial Consumption","Montana","MT",749 +2018-07-01,"Commercial Consumption","Maine","ME",273 +2018-07-01,"Commercial Consumption","Maryland","MD",3417 +2018-07-01,"Commercial Consumption","California","CA",15507 +2018-07-01,"Commercial Consumption","Missouri","MO",2097 +2018-07-01,"Commercial Consumption","New Jersey","NJ",6293 +2018-07-01,"Commercial Consumption","Mississippi","MS",908 +2018-07-01,"Commercial Consumption","Indiana","IN",2299 +2018-07-01,"Commercial Consumption","Louisiana","LA",2113 +2018-07-01,"Delivered to Consumers","Vermont","VT",592 +2018-07-01,"Delivered to Consumers","Alaska","AK",3522 +2018-07-01,"Delivered to Consumers","Iowa","IA",29133 +2018-07-01,"Delivered to Consumers","West Virginia","WV",5745 +2018-07-01,"Delivered to Consumers","South Dakota","SD",5470 +2018-07-01,"Delivered to Consumers","Maryland","MD",16825 +2018-07-01,"Delivered to Consumers","Idaho","ID",6841 +2018-07-01,"Delivered to Consumers","Colorado","CO",23619 +2018-07-01,"Delivered to Consumers","Nevada","NV",30042 +2018-07-01,"Delivered to Consumers","North Dakota","ND",4556 +2018-07-01,"Delivered to Consumers","Minnesota","MN",25794 +2018-07-01,"Delivered to Consumers","Utah","UT",14113 +2018-07-01,"Delivered to Consumers","U.S.","U.S.",2139037 +2018-07-01,"Delivered to Consumers","New Mexico","NM",13736 +2018-07-01,"Delivered to Consumers","Rhode Island","RI",8101 +2018-07-01,"Delivered to Consumers","New York","NY",85895 +2018-07-01,"Delivered to Consumers","Oklahoma","OK",60385 +2018-07-01,"Delivered to Consumers","Kansas","KS",17665 +2018-07-01,"Delivered to Consumers","Kentucky","KY",20967 +2018-07-01,"Delivered to Consumers","Arkansas","AR",29035 +2018-07-01,"Delivered to Consumers","Virginia","VA",49533 +2018-07-01,"Delivered to Consumers","Pennsylvania","PA",83283 +2018-07-01,"Delivered to Consumers","California","CA",185992 +2018-07-01,"Delivered to Consumers","New Jersey","NJ",51045 +2018-07-01,"Delivered to Consumers","Georgia","GA",58016 +2018-07-01,"Delivered to Consumers","New Hampshire","NH",5241 +2018-07-01,"Delivered to Consumers","Indiana","IN",58259 +2018-07-01,"Delivered to Consumers","Delaware","DE",6660 +2018-07-01,"Delivered to Consumers","Nebraska","NE",11264 +2018-07-01,"Delivered to Consumers","Missouri","MO",15570 +2018-07-01,"Delivered to Consumers","Oregon","OR",20221 +2018-07-01,"Delivered to Consumers","Florida","FL",143663 +2018-07-01,"Delivered to Consumers","Illinois","IL",52597 +2018-07-01,"Delivered to Consumers","Montana","MT",3764 +2018-07-01,"Delivered to Consumers","Tennessee","TN",26057 +2018-07-01,"Delivered to Consumers","Alabama","AL",63110 +2018-07-01,"Delivered to Consumers","North Carolina","NC",48427 +2018-07-01,"Delivered to Consumers","Massachusetts","MA",26528 +2018-07-01,"Delivered to Consumers","South Carolina","SC",29776 +2018-07-01,"Delivered to Consumers","Maine","ME",3754 +2018-07-01,"Delivered to Consumers","Arizona","AZ",41250 +2018-07-01,"Delivered to Consumers","Hawaii","HI",277 +2018-07-01,"Delivered to Consumers","Ohio","OH",59963 +2018-07-01,"Delivered to Consumers","Mississippi","MS",51391 +2018-07-01,"Delivered to Consumers","Texas","TX",380917 +2018-07-01,"Delivered to Consumers","Washington","WA",22460 +2018-07-01,"Delivered to Consumers","District of Columbia","DC",1089 +2018-07-01,"Delivered to Consumers","Wyoming","WY",8119 +2018-07-01,"Delivered to Consumers","Michigan","MI",44414 +2018-07-01,"Delivered to Consumers","Connecticut","CT",19549 +2018-07-01,"Delivered to Consumers","Wisconsin","WI",30519 +2018-07-01,"Delivered to Consumers","Louisiana","LA",134296 +2018-07-01,"Electric Power Consumption","Colorado","CO",14105 +2018-07-01,"Electric Power Consumption","Michigan","MI",23241 +2018-07-01,"Electric Power Consumption","Massachusetts","MA",17816 +2018-07-01,"Electric Power Consumption","Nebraska","NE",1573 +2018-07-01,"Electric Power Consumption","Kentucky","KY",11058 +2018-07-01,"Electric Power Consumption","Ohio","OH",29115 +2018-07-01,"Electric Power Consumption","North Dakota","ND",1291 +2018-07-01,"Electric Power Consumption","California","CA",81991 +2018-07-01,"Electric Power Consumption","New Jersey","NJ",34987 +2018-07-01,"Electric Power Consumption","South Carolina","SC",20491 +2018-07-01,"Electric Power Consumption","Utah","UT",8251 +2018-07-01,"Electric Power Consumption","Nevada","NV",25113 +2018-07-01,"Electric Power Consumption","Iowa","IA",6082 +2018-07-01,"Electric Power Consumption","Missouri","MO",7352 +2018-07-01,"Electric Power Consumption","Hawaii","HI",NA +2018-07-01,"Electric Power Consumption","Idaho","ID",3284 +2018-07-01,"Electric Power Consumption","Wyoming","WY",257 +2018-07-01,"Electric Power Consumption","Tennessee","TN",11584 +2018-07-01,"Electric Power Consumption","U.S.","U.S.",1223514 +2018-07-01,"Electric Power Consumption","North Carolina","NC",36621 +2018-07-01,"Electric Power Consumption","Mississippi","MS",39516 +2018-07-01,"Electric Power Consumption","Montana","MT",520 +2018-07-01,"Electric Power Consumption","Alaska","AK",2149 +2018-07-01,"Electric Power Consumption","New Mexico","NM",10524 +2018-07-01,"Electric Power Consumption","Louisiana","LA",34918 +2018-07-01,"Electric Power Consumption","Rhode Island","RI",6792 +2018-07-01,"Electric Power Consumption","Oklahoma","OK",42485 +2018-07-01,"Electric Power Consumption","Wisconsin","WI",14857 +2018-07-01,"Electric Power Consumption","Vermont","VT",2 +2018-07-01,"Electric Power Consumption","South Dakota","SD",1407 +2018-07-01,"Electric Power Consumption","Georgia","GA",38986 +2018-07-01,"Electric Power Consumption","Alabama","AL",44173 +2018-07-01,"Electric Power Consumption","Kansas","KS",3202 +2018-07-01,"Electric Power Consumption","New Hampshire","NH",4186 +2018-07-01,"Electric Power Consumption","Indiana","IN",20088 +2018-07-01,"Electric Power Consumption","Washington","WA",12641 +2018-07-01,"Electric Power Consumption","Oregon","OR",14300 +2018-07-01,"Electric Power Consumption","West Virginia","WV",1347 +2018-07-01,"Electric Power Consumption","Maine","ME",1980 +2018-07-01,"Electric Power Consumption","Maryland","MD",10666 +2018-07-01,"Electric Power Consumption","Florida","FL",129387 +2018-07-01,"Electric Power Consumption","Minnesota","MN",9215 +2018-07-01,"Electric Power Consumption","Delaware","DE",3614 +2018-07-01,"Electric Power Consumption","Virginia","VA",36519 +2018-07-01,"Electric Power Consumption","Arkansas","AR",17779 +2018-07-01,"Electric Power Consumption","New York","NY",53471 +2018-07-01,"Electric Power Consumption","Texas","TX",208167 +2018-07-01,"Electric Power Consumption","Illinois","IL",18653 +2018-07-01,"Electric Power Consumption","Pennsylvania","PA",56927 +2018-07-01,"Electric Power Consumption","Connecticut","CT",14127 +2018-07-01,"Electric Power Consumption","Arizona","AZ",36701 +2018-07-01,"Industrial Consumption","North Dakota","ND",2818 +2018-07-01,"Industrial Consumption","Louisiana","LA",96058 +2018-07-01,"Industrial Consumption","Utah","UT",2953 +2018-07-01,"Industrial Consumption","U.S.","U.S.",667748 +2018-07-01,"Industrial Consumption","West Virginia","WV",3069 +2018-07-01,"Industrial Consumption","Wisconsin","WI",10402 +2018-07-01,"Industrial Consumption","Indiana","IN",33660 +2018-07-01,"Industrial Consumption","Montana","MT",2124 +2018-07-01,"Industrial Consumption","Massachusetts","MA",2511 +2018-07-01,"Industrial Consumption","Nevada","NV",1828 +2018-07-01,"Industrial Consumption","South Carolina","SC",7522 +2018-07-01,"Industrial Consumption","Vermont","VT",154 +2018-07-01,"Industrial Consumption","Wyoming","WY",7264 +2018-07-01,"Industrial Consumption","Minnesota","MN",11502 +2018-07-01,"Industrial Consumption","Kentucky","KY",8169 +2018-07-01,"Industrial Consumption","Colorado","CO",5403 +2018-07-01,"Industrial Consumption","Pennsylvania","PA",17162 +2018-07-01,"Industrial Consumption","Maine","ME",1451 +2018-07-01,"Industrial Consumption","Florida","FL",8517 +2018-07-01,"Industrial Consumption","Delaware","DE",2179 +2018-07-01,"Industrial Consumption","Rhode Island","RI",623 +2018-07-01,"Industrial Consumption","Alaska","AK",433 +2018-07-01,"Industrial Consumption","Texas","TX",157290 +2018-07-01,"Industrial Consumption","New Jersey","NJ",4785 +2018-07-01,"Industrial Consumption","Connecticut","CT",1764 +2018-07-01,"Industrial Consumption","Michigan","MI",10874 +2018-07-01,"Industrial Consumption","Missouri","MO",4422 +2018-07-01,"Industrial Consumption","New York","NY",6236 +2018-07-01,"Industrial Consumption","Mississippi","MS",10459 +2018-07-01,"Industrial Consumption","Iowa","IA",20430 +2018-07-01,"Industrial Consumption","Illinois","IL",17810 +2018-07-01,"Industrial Consumption","Oklahoma","OK",15238 +2018-07-01,"Industrial Consumption","South Dakota","SD",3554 +2018-07-01,"Industrial Consumption","Kansas","KS",11741 +2018-07-01,"Industrial Consumption","Idaho","ID",2282 +2018-07-01,"Industrial Consumption","Maryland","MD",1150 +2018-07-01,"Industrial Consumption","Washington","WA",5627 +2018-07-01,"Industrial Consumption","Ohio","OH",21185 +2018-07-01,"Industrial Consumption","New Mexico","NM",1538 +2018-07-01,"Industrial Consumption","California","CA",66583 +2018-07-01,"Industrial Consumption","Alabama","AL",17128 +2018-07-01,"Industrial Consumption","New Hampshire","NH",689 +2018-07-01,"Industrial Consumption","North Carolina","NC",8663 +2018-07-01,"Industrial Consumption","District of Columbia","DC",NA +2018-07-01,"Industrial Consumption","Hawaii","HI",8 +2018-07-01,"Industrial Consumption","Arizona","AZ",1356 +2018-07-01,"Industrial Consumption","Oregon","OR",4000 +2018-07-01,"Industrial Consumption","Arkansas","AR",7826 +2018-07-01,"Industrial Consumption","Nebraska","NE",7631 +2018-07-01,"Industrial Consumption","Virginia","VA",7825 +2018-07-01,"Industrial Consumption","Tennessee","TN",11090 +2018-07-01,"Industrial Consumption","Georgia","GA",12762 +2018-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",143671 +2018-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",68011 +2018-07-01,"Residential Consumption","Hawaii","HI",46 +2018-07-01,"Residential Consumption","North Dakota","ND",156 +2018-07-01,"Residential Consumption","Idaho","ID",555 +2018-07-01,"Residential Consumption","New Jersey","NJ",4944 +2018-07-01,"Residential Consumption","New Hampshire","NH",143 +2018-07-01,"Residential Consumption","West Virginia","WV",330 +2018-07-01,"Residential Consumption","Illinois","IL",7517 +2018-07-01,"Residential Consumption","Vermont","VT",83 +2018-07-01,"Residential Consumption","Nevada","NV",1256 +2018-07-01,"Residential Consumption","Minnesota","MN",2194 +2018-07-01,"Residential Consumption","Montana","MT",371 +2018-07-01,"Residential Consumption","Washington","WA",2010 +2018-07-01,"Residential Consumption","Oklahoma","OK",1061 +2018-07-01,"Residential Consumption","Delaware","DE",179 +2018-07-01,"Residential Consumption","U.S.","U.S.",105918 +2018-07-01,"Residential Consumption","Mississippi","MS",505 +2018-07-01,"Residential Consumption","Michigan","MI",5128 +2018-07-01,"Residential Consumption","Maryland","MD",1559 +2018-07-01,"Residential Consumption","Alabama","AL",694 +2018-07-01,"Residential Consumption","Wyoming","WY",221 +2018-07-01,"Residential Consumption","Texas","TX",4910 +2018-07-01,"Residential Consumption","South Carolina","SC",481 +2018-07-01,"Residential Consumption","Rhode Island","RI",386 +2018-07-01,"Residential Consumption","Utah","UT",1595 +2018-07-01,"Residential Consumption","Nebraska","NE",767 +2018-07-01,"Residential Consumption","South Dakota","SD",210 +2018-07-01,"Residential Consumption","Georgia","GA",3928 +2018-07-01,"Residential Consumption","Pennsylvania","PA",4166 +2018-07-01,"Residential Consumption","California","CA",19784 +2018-07-01,"Residential Consumption","New York","NY",11062 +2018-07-01,"Residential Consumption","Louisiana","LA",1170 +2018-07-01,"Residential Consumption","Tennessee","TN",1105 +2018-07-01,"Residential Consumption","Virginia","VA",1705 +2018-07-01,"Residential Consumption","District of Columbia","DC",281 +2018-07-01,"Residential Consumption","Massachusetts","MA",2486 +2018-07-01,"Residential Consumption","Kentucky","KY",700 +2018-07-01,"Residential Consumption","Colorado","CO",2507 +2018-07-01,"Residential Consumption","Kansas","KS",1028 +2018-07-01,"Residential Consumption","Missouri","MO",1665 +2018-07-01,"Residential Consumption","Oregon","OR",945 +2018-07-01,"Residential Consumption","Iowa","IA",958 +2018-07-01,"Residential Consumption","Arizona","AZ",1123 +2018-07-01,"Residential Consumption","North Carolina","NC",923 +2018-07-01,"Residential Consumption","Connecticut","CT",1066 +2018-07-01,"Residential Consumption","Wisconsin","WI",2325 +2018-07-01,"Residential Consumption","New Mexico","NM",788 +2018-07-01,"Residential Consumption","Indiana","IN",2210 +2018-07-01,"Residential Consumption","Florida","FL",818 +2018-07-01,"Residential Consumption","Arkansas","AR",545 +2018-07-01,"Residential Consumption","Ohio","OH",4783 +2018-07-01,"Residential Consumption","Maine","ME",50 +2018-07-01,"Residential Consumption","Alaska","AK",500 +2018-07-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2018-07-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-07-01,"Vehicle Fuel Consumption","New York","NY",82 +2018-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2018-07-01,"Vehicle Fuel Consumption","Louisiana","LA",36 +2018-07-01,"Vehicle Fuel Consumption","North Carolina","NC",116 +2018-07-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",4282 +2018-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-07-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-07-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-07-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-07-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2018-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-07-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2018-07-01,"Vehicle Fuel Consumption","Florida","FL",365 +2018-07-01,"Vehicle Fuel Consumption","Missouri","MO",34 +2018-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2018-07-01,"Vehicle Fuel Consumption","Texas","TX",152 +2018-07-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-07-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-07-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-07-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2018-07-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-07-01,"Vehicle Fuel Consumption","Utah","UT",30 +2018-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",138 +2018-07-01,"Vehicle Fuel Consumption","Kansas","KS",58 +2018-07-01,"Vehicle Fuel Consumption","Colorado","CO",108 +2018-07-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2018-07-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-07-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2018-07-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2018-07-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2018-07-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2018-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2018-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-07-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-07-01,"Vehicle Fuel Consumption","Iowa","IA",4 +2018-07-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-07-01,"Vehicle Fuel Consumption","Georgia","GA",173 +2018-07-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-07-01,"Vehicle Fuel Consumption","California","CA",2128 +2018-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",153 +2018-07-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-07-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2018-07-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2018-08-01,"Commercial Consumption","South Carolina","SC",1303 +2018-08-01,"Commercial Consumption","South Dakota","SD",296 +2018-08-01,"Commercial Consumption","Montana","MT",928 +2018-08-01,"Commercial Consumption","Kentucky","KY",1102 +2018-08-01,"Commercial Consumption","Connecticut","CT",2770 +2018-08-01,"Commercial Consumption","Wyoming","WY",348 +2018-08-01,"Commercial Consumption","North Carolina","NC",2077 +2018-08-01,"Commercial Consumption","Oregon","OR",993 +2018-08-01,"Commercial Consumption","New Hampshire","NH",248 +2018-08-01,"Commercial Consumption","Arkansas","AR",3071 +2018-08-01,"Commercial Consumption","Utah","UT",1223 +2018-08-01,"Commercial Consumption","New Jersey","NJ",6205 +2018-08-01,"Commercial Consumption","Arizona","AZ",1881 +2018-08-01,"Commercial Consumption","Indiana","IN",2317 +2018-08-01,"Commercial Consumption","Minnesota","MN",2827 +2018-08-01,"Commercial Consumption","Missouri","MO",2150 +2018-08-01,"Commercial Consumption","U.S.","U.S.",142976 +2018-08-01,"Commercial Consumption","Alabama","AL",1162 +2018-08-01,"Commercial Consumption","Nebraska","NE",1147 +2018-08-01,"Commercial Consumption","Mississippi","MS",995 +2018-08-01,"Commercial Consumption","Delaware","DE",766 +2018-08-01,"Commercial Consumption","Colorado","CO",1620 +2018-08-01,"Commercial Consumption","Oklahoma","OK",1577 +2018-08-01,"Commercial Consumption","Pennsylvania","PA",5164 +2018-08-01,"Commercial Consumption","Massachusetts","MA",4100 +2018-08-01,"Commercial Consumption","Vermont","VT",363 +2018-08-01,"Commercial Consumption","District of Columbia","DC",909 +2018-08-01,"Commercial Consumption","Virginia","VA",3253 +2018-08-01,"Commercial Consumption","Wisconsin","WI",2892 +2018-08-01,"Commercial Consumption","Kansas","KS",1833 +2018-08-01,"Commercial Consumption","Georgia","GA",2172 +2018-08-01,"Commercial Consumption","Florida","FL",4525 +2018-08-01,"Commercial Consumption","Alaska","AK",558 +2018-08-01,"Commercial Consumption","California","CA",16398 +2018-08-01,"Commercial Consumption","Nevada","NV",1733 +2018-08-01,"Commercial Consumption","Illinois","IL",8566 +2018-08-01,"Commercial Consumption","West Virginia","WV",1061 +2018-08-01,"Commercial Consumption","Washington","WA",2316 +2018-08-01,"Commercial Consumption","North Dakota","ND",322 +2018-08-01,"Commercial Consumption","New Mexico","NM",1122 +2018-08-01,"Commercial Consumption","Maine","ME",275 +2018-08-01,"Commercial Consumption","Texas","TX",11509 +2018-08-01,"Commercial Consumption","Maryland","MD",3586 +2018-08-01,"Commercial Consumption","Rhode Island","RI",287 +2018-08-01,"Commercial Consumption","Ohio","OH",5203 +2018-08-01,"Commercial Consumption","Idaho","ID",775 +2018-08-01,"Commercial Consumption","Iowa","IA",1744 +2018-08-01,"Commercial Consumption","Hawaii","HI",226 +2018-08-01,"Commercial Consumption","New York","NY",15077 +2018-08-01,"Commercial Consumption","Tennessee","TN",2077 +2018-08-01,"Commercial Consumption","Michigan","MI",5758 +2018-08-01,"Commercial Consumption","Louisiana","LA",2165 +2018-08-01,"Delivered to Consumers","Alaska","AK",3660 +2018-08-01,"Delivered to Consumers","Pennsylvania","PA",87136 +2018-08-01,"Delivered to Consumers","California","CA",178351 +2018-08-01,"Delivered to Consumers","Louisiana","LA",129966 +2018-08-01,"Delivered to Consumers","Vermont","VT",599 +2018-08-01,"Delivered to Consumers","Rhode Island","RI",9106 +2018-08-01,"Delivered to Consumers","Alabama","AL",61427 +2018-08-01,"Delivered to Consumers","Mississippi","MS",51043 +2018-08-01,"Delivered to Consumers","Colorado","CO",22095 +2018-08-01,"Delivered to Consumers","South Carolina","SC",29492 +2018-08-01,"Delivered to Consumers","New Jersey","NJ",49844 +2018-08-01,"Delivered to Consumers","Georgia","GA",56339 +2018-08-01,"Delivered to Consumers","Arizona","AZ",42730 +2018-08-01,"Delivered to Consumers","Utah","UT",13819 +2018-08-01,"Delivered to Consumers","Delaware","DE",8282 +2018-08-01,"Delivered to Consumers","Montana","MT",3967 +2018-08-01,"Delivered to Consumers","Arkansas","AR",28090 +2018-08-01,"Delivered to Consumers","North Carolina","NC",45746 +2018-08-01,"Delivered to Consumers","New Mexico","NM",13906 +2018-08-01,"Delivered to Consumers","Indiana","IN",55142 +2018-08-01,"Delivered to Consumers","Maryland","MD",17857 +2018-08-01,"Delivered to Consumers","Oklahoma","OK",56133 +2018-08-01,"Delivered to Consumers","Iowa","IA",28520 +2018-08-01,"Delivered to Consumers","Wisconsin","WI",31301 +2018-08-01,"Delivered to Consumers","Oregon","OR",21463 +2018-08-01,"Delivered to Consumers","District of Columbia","DC",1232 +2018-08-01,"Delivered to Consumers","U.S.","U.S.",2100482 +2018-08-01,"Delivered to Consumers","Washington","WA",23059 +2018-08-01,"Delivered to Consumers","North Dakota","ND",4313 +2018-08-01,"Delivered to Consumers","Florida","FL",143541 +2018-08-01,"Delivered to Consumers","Hawaii","HI",281 +2018-08-01,"Delivered to Consumers","Virginia","VA",49092 +2018-08-01,"Delivered to Consumers","Nebraska","NE",9629 +2018-08-01,"Delivered to Consumers","New Hampshire","NH",5238 +2018-08-01,"Delivered to Consumers","Wyoming","WY",5728 +2018-08-01,"Delivered to Consumers","South Dakota","SD",5143 +2018-08-01,"Delivered to Consumers","New York","NY",87870 +2018-08-01,"Delivered to Consumers","Kentucky","KY",21141 +2018-08-01,"Delivered to Consumers","Massachusetts","MA",28736 +2018-08-01,"Delivered to Consumers","Minnesota","MN",25021 +2018-08-01,"Delivered to Consumers","West Virginia","WV",5881 +2018-08-01,"Delivered to Consumers","Illinois","IL",51981 +2018-08-01,"Delivered to Consumers","Kansas","KS",15883 +2018-08-01,"Delivered to Consumers","Idaho","ID",6481 +2018-08-01,"Delivered to Consumers","Tennessee","TN",26071 +2018-08-01,"Delivered to Consumers","Ohio","OH",62753 +2018-08-01,"Delivered to Consumers","Michigan","MI",46593 +2018-08-01,"Delivered to Consumers","Connecticut","CT",20588 +2018-08-01,"Delivered to Consumers","Missouri","MO",14898 +2018-08-01,"Delivered to Consumers","Texas","TX",360546 +2018-08-01,"Delivered to Consumers","Nevada","NV",28560 +2018-08-01,"Delivered to Consumers","Maine","ME",4209 +2018-08-01,"Electric Power Consumption","New Jersey","NJ",34549 +2018-08-01,"Electric Power Consumption","Oklahoma","OK",36743 +2018-08-01,"Electric Power Consumption","Illinois","IL",17615 +2018-08-01,"Electric Power Consumption","West Virginia","WV",1396 +2018-08-01,"Electric Power Consumption","Maryland","MD",11689 +2018-08-01,"Electric Power Consumption","Virginia","VA",37580 +2018-08-01,"Electric Power Consumption","Texas","TX",189239 +2018-08-01,"Electric Power Consumption","Oregon","OR",15492 +2018-08-01,"Electric Power Consumption","Minnesota","MN",8454 +2018-08-01,"Electric Power Consumption","Michigan","MI",23924 +2018-08-01,"Electric Power Consumption","Wisconsin","WI",15031 +2018-08-01,"Electric Power Consumption","Tennessee","TN",11626 +2018-08-01,"Electric Power Consumption","U.S.","U.S.",1185530 +2018-08-01,"Electric Power Consumption","South Dakota","SD",989 +2018-08-01,"Electric Power Consumption","Nebraska","NE",1082 +2018-08-01,"Electric Power Consumption","Connecticut","CT",15046 +2018-08-01,"Electric Power Consumption","California","CA",74280 +2018-08-01,"Electric Power Consumption","Alabama","AL",42422 +2018-08-01,"Electric Power Consumption","Alaska","AK",2080 +2018-08-01,"Electric Power Consumption","New York","NY",56497 +2018-08-01,"Electric Power Consumption","Maine","ME",2419 +2018-08-01,"Electric Power Consumption","Montana","MT",628 +2018-08-01,"Electric Power Consumption","Indiana","IN",18788 +2018-08-01,"Electric Power Consumption","Georgia","GA",36694 +2018-08-01,"Electric Power Consumption","Arkansas","AR",15770 +2018-08-01,"Electric Power Consumption","Massachusetts","MA",19753 +2018-08-01,"Electric Power Consumption","Pennsylvania","PA",60399 +2018-08-01,"Electric Power Consumption","Nevada","NV",23829 +2018-08-01,"Electric Power Consumption","Vermont","VT",0 +2018-08-01,"Electric Power Consumption","Mississippi","MS",38441 +2018-08-01,"Electric Power Consumption","Kentucky","KY",10870 +2018-08-01,"Electric Power Consumption","Idaho","ID",2797 +2018-08-01,"Electric Power Consumption","South Carolina","SC",19933 +2018-08-01,"Electric Power Consumption","North Carolina","NC",33503 +2018-08-01,"Electric Power Consumption","Hawaii","HI",NA +2018-08-01,"Electric Power Consumption","New Mexico","NM",10391 +2018-08-01,"Electric Power Consumption","Louisiana","LA",31130 +2018-08-01,"Electric Power Consumption","Missouri","MO",6371 +2018-08-01,"Electric Power Consumption","Arizona","AZ",38223 +2018-08-01,"Electric Power Consumption","Florida","FL",129082 +2018-08-01,"Electric Power Consumption","Iowa","IA",4901 +2018-08-01,"Electric Power Consumption","Ohio","OH",31534 +2018-08-01,"Electric Power Consumption","North Dakota","ND",977 +2018-08-01,"Electric Power Consumption","Delaware","DE",5304 +2018-08-01,"Electric Power Consumption","Washington","WA",13307 +2018-08-01,"Electric Power Consumption","Colorado","CO",12209 +2018-08-01,"Electric Power Consumption","Rhode Island","RI",7761 +2018-08-01,"Electric Power Consumption","Utah","UT",8060 +2018-08-01,"Electric Power Consumption","Kansas","KS",2354 +2018-08-01,"Electric Power Consumption","Wyoming","WY",213 +2018-08-01,"Electric Power Consumption","New Hampshire","NH",4153 +2018-08-01,"Industrial Consumption","Montana","MT",2014 +2018-08-01,"Industrial Consumption","Missouri","MO",4681 +2018-08-01,"Industrial Consumption","Colorado","CO",5490 +2018-08-01,"Industrial Consumption","Mississippi","MS",11052 +2018-08-01,"Industrial Consumption","South Carolina","SC",7743 +2018-08-01,"Industrial Consumption","Nebraska","NE",6779 +2018-08-01,"Industrial Consumption","Wyoming","WY",4958 +2018-08-01,"Industrial Consumption","Wisconsin","WI",10997 +2018-08-01,"Industrial Consumption","Alaska","AK",430 +2018-08-01,"Industrial Consumption","Idaho","ID",2329 +2018-08-01,"Industrial Consumption","Michigan","MI",11032 +2018-08-01,"Industrial Consumption","Maryland","MD",1085 +2018-08-01,"Industrial Consumption","Massachusetts","MA",2508 +2018-08-01,"Industrial Consumption","Washington","WA",5837 +2018-08-01,"Industrial Consumption","New Mexico","NM",1526 +2018-08-01,"Industrial Consumption","Nevada","NV",1738 +2018-08-01,"Industrial Consumption","California","CA",70487 +2018-08-01,"Industrial Consumption","Arkansas","AR",8681 +2018-08-01,"Industrial Consumption","Virginia","VA",6639 +2018-08-01,"Industrial Consumption","Kentucky","KY",8407 +2018-08-01,"Industrial Consumption","North Dakota","ND",2844 +2018-08-01,"Industrial Consumption","Delaware","DE",2033 +2018-08-01,"Industrial Consumption","Rhode Island","RI",656 +2018-08-01,"Industrial Consumption","Oklahoma","OK",16558 +2018-08-01,"Industrial Consumption","West Virginia","WV",3126 +2018-08-01,"Industrial Consumption","Tennessee","TN",11416 +2018-08-01,"Industrial Consumption","New Jersey","NJ",4581 +2018-08-01,"Industrial Consumption","Connecticut","CT",1803 +2018-08-01,"Industrial Consumption","Indiana","IN",31926 +2018-08-01,"Industrial Consumption","Illinois","IL",18323 +2018-08-01,"Industrial Consumption","Kansas","KS",10517 +2018-08-01,"Industrial Consumption","Arizona","AZ",1435 +2018-08-01,"Industrial Consumption","Pennsylvania","PA",17300 +2018-08-01,"Industrial Consumption","Maine","ME",1460 +2018-08-01,"Industrial Consumption","New Hampshire","NH",681 +2018-08-01,"Industrial Consumption","Minnesota","MN",11244 +2018-08-01,"Industrial Consumption","Iowa","IA",20797 +2018-08-01,"Industrial Consumption","Florida","FL",8810 +2018-08-01,"Industrial Consumption","Georgia","GA",13195 +2018-08-01,"Industrial Consumption","District of Columbia","DC",NA +2018-08-01,"Industrial Consumption","Hawaii","HI",8 +2018-08-01,"Industrial Consumption","Louisiana","LA",95551 +2018-08-01,"Industrial Consumption","Ohio","OH",21246 +2018-08-01,"Industrial Consumption","New York","NY",6302 +2018-08-01,"Industrial Consumption","Texas","TX",154658 +2018-08-01,"Industrial Consumption","North Carolina","NC",9045 +2018-08-01,"Industrial Consumption","South Dakota","SD",3662 +2018-08-01,"Industrial Consumption","Utah","UT",2953 +2018-08-01,"Industrial Consumption","U.S.","U.S.",667914 +2018-08-01,"Industrial Consumption","Oregon","OR",4074 +2018-08-01,"Industrial Consumption","Alabama","AL",17134 +2018-08-01,"Industrial Consumption","Vermont","VT",161 +2018-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",146569 +2018-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",66785 +2018-08-01,"Residential Consumption","Louisiana","LA",1084 +2018-08-01,"Residential Consumption","Vermont","VT",75 +2018-08-01,"Residential Consumption","Massachusetts","MA",2364 +2018-08-01,"Residential Consumption","Oklahoma","OK",1116 +2018-08-01,"Residential Consumption","West Virginia","WV",297 +2018-08-01,"Residential Consumption","Texas","TX",4989 +2018-08-01,"Residential Consumption","Hawaii","HI",47 +2018-08-01,"Residential Consumption","Pennsylvania","PA",4120 +2018-08-01,"Residential Consumption","Indiana","IN",2110 +2018-08-01,"Residential Consumption","North Dakota","ND",171 +2018-08-01,"Residential Consumption","Colorado","CO",2667 +2018-08-01,"Residential Consumption","U.S.","U.S.",99781 +2018-08-01,"Residential Consumption","New York","NY",9912 +2018-08-01,"Residential Consumption","Rhode Island","RI",393 +2018-08-01,"Residential Consumption","Michigan","MI",5879 +2018-08-01,"Residential Consumption","Maryland","MD",1466 +2018-08-01,"Residential Consumption","Maine","ME",55 +2018-08-01,"Residential Consumption","Delaware","DE",179 +2018-08-01,"Residential Consumption","Iowa","IA",1073 +2018-08-01,"Residential Consumption","Virginia","VA",1547 +2018-08-01,"Residential Consumption","Nebraska","NE",608 +2018-08-01,"Residential Consumption","Minnesota","MN",2457 +2018-08-01,"Residential Consumption","Georgia","GA",4105 +2018-08-01,"Residential Consumption","District of Columbia","DC",286 +2018-08-01,"Residential Consumption","Florida","FL",758 +2018-08-01,"Residential Consumption","New Hampshire","NH",156 +2018-08-01,"Residential Consumption","Missouri","MO",1661 +2018-08-01,"Residential Consumption","Arizona","AZ",1050 +2018-08-01,"Residential Consumption","Oregon","OR",897 +2018-08-01,"Residential Consumption","Connecticut","CT",951 +2018-08-01,"Residential Consumption","Nevada","NV",1154 +2018-08-01,"Residential Consumption","Kentucky","KY",755 +2018-08-01,"Residential Consumption","Illinois","IL",7465 +2018-08-01,"Residential Consumption","North Carolina","NC",1005 +2018-08-01,"Residential Consumption","Mississippi","MS",552 +2018-08-01,"Residential Consumption","Utah","UT",1553 +2018-08-01,"Residential Consumption","South Dakota","SD",196 +2018-08-01,"Residential Consumption","New Mexico","NM",847 +2018-08-01,"Residential Consumption","Idaho","ID",575 +2018-08-01,"Residential Consumption","Arkansas","AR",564 +2018-08-01,"Residential Consumption","California","CA",15058 +2018-08-01,"Residential Consumption","Alabama","AL",701 +2018-08-01,"Residential Consumption","South Carolina","SC",503 +2018-08-01,"Residential Consumption","Wisconsin","WI",2343 +2018-08-01,"Residential Consumption","Tennessee","TN",931 +2018-08-01,"Residential Consumption","Alaska","AK",591 +2018-08-01,"Residential Consumption","Wyoming","WY",207 +2018-08-01,"Residential Consumption","Ohio","OH",4728 +2018-08-01,"Residential Consumption","New Jersey","NJ",4473 +2018-08-01,"Residential Consumption","Montana","MT",397 +2018-08-01,"Residential Consumption","Kansas","KS",1121 +2018-08-01,"Residential Consumption","Washington","WA",1585 +2018-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-08-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-08-01,"Vehicle Fuel Consumption","Missouri","MO",34 +2018-08-01,"Vehicle Fuel Consumption","Texas","TX",152 +2018-08-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2018-08-01,"Vehicle Fuel Consumption","Utah","UT",30 +2018-08-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2018-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2018-08-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2018-08-01,"Vehicle Fuel Consumption","Florida","FL",365 +2018-08-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-08-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-08-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-08-01,"Vehicle Fuel Consumption","New York","NY",82 +2018-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-08-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-08-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2018-08-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-08-01,"Vehicle Fuel Consumption","Kansas","KS",58 +2018-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2018-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2018-08-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2018-08-01,"Vehicle Fuel Consumption","Colorado","CO",108 +2018-08-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2018-08-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",153 +2018-08-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2018-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2018-08-01,"Vehicle Fuel Consumption","Georgia","GA",173 +2018-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",138 +2018-08-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2018-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-08-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2018-08-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-08-01,"Vehicle Fuel Consumption","Louisiana","LA",36 +2018-08-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-08-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-08-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-08-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2018-08-01,"Vehicle Fuel Consumption","Iowa","IA",4 +2018-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-08-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-08-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-08-01,"Vehicle Fuel Consumption","North Carolina","NC",116 +2018-08-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-08-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-08-01,"Vehicle Fuel Consumption","California","CA",2128 +2018-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",4282 +2018-09-01,"Commercial Consumption","Wyoming","WY",406 +2018-09-01,"Commercial Consumption","West Virginia","WV",1004 +2018-09-01,"Commercial Consumption","Pennsylvania","PA",5399 +2018-09-01,"Commercial Consumption","New Jersey","NJ",5670 +2018-09-01,"Commercial Consumption","Montana","MT",1171 +2018-09-01,"Commercial Consumption","Connecticut","CT",2676 +2018-09-01,"Commercial Consumption","Mississippi","MS",931 +2018-09-01,"Commercial Consumption","Delaware","DE",796 +2018-09-01,"Commercial Consumption","Tennessee","TN",2286 +2018-09-01,"Commercial Consumption","South Carolina","SC",1231 +2018-09-01,"Commercial Consumption","North Dakota","ND",346 +2018-09-01,"Commercial Consumption","Oklahoma","OK",1618 +2018-09-01,"Commercial Consumption","Missouri","MO",2299 +2018-09-01,"Commercial Consumption","Georgia","GA",2114 +2018-09-01,"Commercial Consumption","Nebraska","NE",1263 +2018-09-01,"Commercial Consumption","Nevada","NV",1873 +2018-09-01,"Commercial Consumption","Washington","WA",2570 +2018-09-01,"Commercial Consumption","New Mexico","NM",1031 +2018-09-01,"Commercial Consumption","Oregon","OR",1180 +2018-09-01,"Commercial Consumption","Massachusetts","MA",4439 +2018-09-01,"Commercial Consumption","Maine","ME",324 +2018-09-01,"Commercial Consumption","Alabama","AL",1091 +2018-09-01,"Commercial Consumption","Florida","FL",4681 +2018-09-01,"Commercial Consumption","Idaho","ID",938 +2018-09-01,"Commercial Consumption","Alaska","AK",636 +2018-09-01,"Commercial Consumption","Arkansas","AR",3032 +2018-09-01,"Commercial Consumption","New York","NY",15504 +2018-09-01,"Commercial Consumption","Arizona","AZ",1820 +2018-09-01,"Commercial Consumption","Louisiana","LA",2331 +2018-09-01,"Commercial Consumption","Illinois","IL",8852 +2018-09-01,"Commercial Consumption","Minnesota","MN",3252 +2018-09-01,"Commercial Consumption","Utah","UT",1357 +2018-09-01,"Commercial Consumption","South Dakota","SD",335 +2018-09-01,"Commercial Consumption","Vermont","VT",392 +2018-09-01,"Commercial Consumption","Indiana","IN",2828 +2018-09-01,"Commercial Consumption","North Carolina","NC",2373 +2018-09-01,"Commercial Consumption","Virginia","VA",3288 +2018-09-01,"Commercial Consumption","New Hampshire","NH",290 +2018-09-01,"Commercial Consumption","U.S.","U.S.",146602 +2018-09-01,"Commercial Consumption","Texas","TX",11513 +2018-09-01,"Commercial Consumption","Maryland","MD",3525 +2018-09-01,"Commercial Consumption","Ohio","OH",5324 +2018-09-01,"Commercial Consumption","Iowa","IA",1806 +2018-09-01,"Commercial Consumption","California","CA",16863 +2018-09-01,"Commercial Consumption","Wisconsin","WI",3205 +2018-09-01,"Commercial Consumption","Kansas","KS",1756 +2018-09-01,"Commercial Consumption","Rhode Island","RI",309 +2018-09-01,"Commercial Consumption","Hawaii","HI",204 +2018-09-01,"Commercial Consumption","Colorado","CO",1648 +2018-09-01,"Commercial Consumption","Kentucky","KY",1232 +2018-09-01,"Commercial Consumption","Michigan","MI",4896 +2018-09-01,"Commercial Consumption","District of Columbia","DC",693 +2018-09-01,"Delivered to Consumers","Alaska","AK",3914 +2018-09-01,"Delivered to Consumers","Connecticut","CT",17952 +2018-09-01,"Delivered to Consumers","Wisconsin","WI",28699 +2018-09-01,"Delivered to Consumers","North Dakota","ND",4429 +2018-09-01,"Delivered to Consumers","Rhode Island","RI",8324 +2018-09-01,"Delivered to Consumers","New York","NY",74016 +2018-09-01,"Delivered to Consumers","Maryland","MD",17315 +2018-09-01,"Delivered to Consumers","Mississippi","MS",45872 +2018-09-01,"Delivered to Consumers","California","CA",160657 +2018-09-01,"Delivered to Consumers","Oregon","OR",20732 +2018-09-01,"Delivered to Consumers","Maine","ME",3172 +2018-09-01,"Delivered to Consumers","Louisiana","LA",129810 +2018-09-01,"Delivered to Consumers","Georgia","GA",54730 +2018-09-01,"Delivered to Consumers","New Hampshire","NH",3414 +2018-09-01,"Delivered to Consumers","Delaware","DE",6817 +2018-09-01,"Delivered to Consumers","Wyoming","WY",5927 +2018-09-01,"Delivered to Consumers","South Dakota","SD",4755 +2018-09-01,"Delivered to Consumers","Oklahoma","OK",51438 +2018-09-01,"Delivered to Consumers","Arkansas","AR",23143 +2018-09-01,"Delivered to Consumers","North Carolina","NC",41613 +2018-09-01,"Delivered to Consumers","Missouri","MO",13686 +2018-09-01,"Delivered to Consumers","Texas","TX",318178 +2018-09-01,"Delivered to Consumers","U.S.","U.S.",1949898 +2018-09-01,"Delivered to Consumers","Idaho","ID",7401 +2018-09-01,"Delivered to Consumers","Pennsylvania","PA",79962 +2018-09-01,"Delivered to Consumers","Nebraska","NE",9463 +2018-09-01,"Delivered to Consumers","Minnesota","MN",23114 +2018-09-01,"Delivered to Consumers","Illinois","IL",50731 +2018-09-01,"Delivered to Consumers","Ohio","OH",59074 +2018-09-01,"Delivered to Consumers","Michigan","MI",43003 +2018-09-01,"Delivered to Consumers","Kentucky","KY",21388 +2018-09-01,"Delivered to Consumers","South Carolina","SC",30464 +2018-09-01,"Delivered to Consumers","New Jersey","NJ",45130 +2018-09-01,"Delivered to Consumers","New Mexico","NM",12477 +2018-09-01,"Delivered to Consumers","Montana","MT",4105 +2018-09-01,"Delivered to Consumers","Hawaii","HI",257 +2018-09-01,"Delivered to Consumers","Virginia","VA",49256 +2018-09-01,"Delivered to Consumers","Massachusetts","MA",22131 +2018-09-01,"Delivered to Consumers","Florida","FL",143684 +2018-09-01,"Delivered to Consumers","Utah","UT",12102 +2018-09-01,"Delivered to Consumers","Indiana","IN",50014 +2018-09-01,"Delivered to Consumers","West Virginia","WV",5936 +2018-09-01,"Delivered to Consumers","Kansas","KS",14100 +2018-09-01,"Delivered to Consumers","Tennessee","TN",26168 +2018-09-01,"Delivered to Consumers","Iowa","IA",27570 +2018-09-01,"Delivered to Consumers","Alabama","AL",61609 +2018-09-01,"Delivered to Consumers","Colorado","CO",21672 +2018-09-01,"Delivered to Consumers","Washington","WA",23521 +2018-09-01,"Delivered to Consumers","District of Columbia","DC",993 +2018-09-01,"Delivered to Consumers","Vermont","VT",642 +2018-09-01,"Delivered to Consumers","Nevada","NV",25361 +2018-09-01,"Delivered to Consumers","Arizona","AZ",39979 +2018-09-01,"Electric Power Consumption","Virginia","VA",34815 +2018-09-01,"Electric Power Consumption","New Hampshire","NH",2249 +2018-09-01,"Electric Power Consumption","Maryland","MD",11176 +2018-09-01,"Electric Power Consumption","Indiana","IN",15436 +2018-09-01,"Electric Power Consumption","Connecticut","CT",12458 +2018-09-01,"Electric Power Consumption","California","CA",54342 +2018-09-01,"Electric Power Consumption","New Mexico","NM",9086 +2018-09-01,"Electric Power Consumption","New York","NY",41507 +2018-09-01,"Electric Power Consumption","Oregon","OR",14148 +2018-09-01,"Electric Power Consumption","Illinois","IL",15149 +2018-09-01,"Electric Power Consumption","Massachusetts","MA",12540 +2018-09-01,"Electric Power Consumption","West Virginia","WV",1790 +2018-09-01,"Electric Power Consumption","Wyoming","WY",136 +2018-09-01,"Electric Power Consumption","Tennessee","TN",11717 +2018-09-01,"Electric Power Consumption","Alaska","AK",1992 +2018-09-01,"Electric Power Consumption","Arizona","AZ",35544 +2018-09-01,"Electric Power Consumption","Michigan","MI",20553 +2018-09-01,"Electric Power Consumption","Kansas","KS",1906 +2018-09-01,"Electric Power Consumption","Pennsylvania","PA",53313 +2018-09-01,"Electric Power Consumption","Nevada","NV",20338 +2018-09-01,"Electric Power Consumption","Vermont","VT",1 +2018-09-01,"Electric Power Consumption","North Carolina","NC",30175 +2018-09-01,"Electric Power Consumption","Mississippi","MS",33632 +2018-09-01,"Electric Power Consumption","Montana","MT",401 +2018-09-01,"Electric Power Consumption","Delaware","DE",3893 +2018-09-01,"Electric Power Consumption","Colorado","CO",11069 +2018-09-01,"Electric Power Consumption","Rhode Island","RI",6937 +2018-09-01,"Electric Power Consumption","Oklahoma","OK",31260 +2018-09-01,"Electric Power Consumption","Wisconsin","WI",11600 +2018-09-01,"Electric Power Consumption","U.S.","U.S.",1029799 +2018-09-01,"Electric Power Consumption","South Dakota","SD",554 +2018-09-01,"Electric Power Consumption","Nebraska","NE",437 +2018-09-01,"Electric Power Consumption","Georgia","GA",36328 +2018-09-01,"Electric Power Consumption","Florida","FL",129251 +2018-09-01,"Electric Power Consumption","Alabama","AL",42871 +2018-09-01,"Electric Power Consumption","New Jersey","NJ",29346 +2018-09-01,"Electric Power Consumption","Idaho","ID",3066 +2018-09-01,"Electric Power Consumption","Texas","TX",151010 +2018-09-01,"Electric Power Consumption","Utah","UT",6013 +2018-09-01,"Electric Power Consumption","Missouri","MO",5134 +2018-09-01,"Electric Power Consumption","North Dakota","ND",910 +2018-09-01,"Electric Power Consumption","Arkansas","AR",11207 +2018-09-01,"Electric Power Consumption","Minnesota","MN",6079 +2018-09-01,"Electric Power Consumption","Iowa","IA",4778 +2018-09-01,"Electric Power Consumption","Kentucky","KY",11342 +2018-09-01,"Electric Power Consumption","Hawaii","HI",NA +2018-09-01,"Electric Power Consumption","Washington","WA",12021 +2018-09-01,"Electric Power Consumption","Louisiana","LA",30324 +2018-09-01,"Electric Power Consumption","South Carolina","SC",21711 +2018-09-01,"Electric Power Consumption","Maine","ME",1187 +2018-09-01,"Electric Power Consumption","Ohio","OH",27066 +2018-09-01,"Industrial Consumption","Hawaii","HI",7 +2018-09-01,"Industrial Consumption","Ohio","OH",21538 +2018-09-01,"Industrial Consumption","California","CA",68239 +2018-09-01,"Industrial Consumption","Wyoming","WY",5125 +2018-09-01,"Industrial Consumption","New Jersey","NJ",5208 +2018-09-01,"Industrial Consumption","Idaho","ID",2649 +2018-09-01,"Industrial Consumption","Iowa","IA",19683 +2018-09-01,"Industrial Consumption","South Dakota","SD",3652 +2018-09-01,"Industrial Consumption","Arizona","AZ",1346 +2018-09-01,"Industrial Consumption","South Carolina","SC",7019 +2018-09-01,"Industrial Consumption","West Virginia","WV",2793 +2018-09-01,"Industrial Consumption","Vermont","VT",162 +2018-09-01,"Industrial Consumption","Wisconsin","WI",10914 +2018-09-01,"Industrial Consumption","Michigan","MI",11536 +2018-09-01,"Industrial Consumption","Illinois","IL",18650 +2018-09-01,"Industrial Consumption","Missouri","MO",4477 +2018-09-01,"Industrial Consumption","Louisiana","LA",95855 +2018-09-01,"Industrial Consumption","U.S.","U.S.",657035 +2018-09-01,"Industrial Consumption","Colorado","CO",5716 +2018-09-01,"Industrial Consumption","Oregon","OR",4165 +2018-09-01,"Industrial Consumption","Nevada","NV",1641 +2018-09-01,"Industrial Consumption","Maine","ME",1599 +2018-09-01,"Industrial Consumption","Arkansas","AR",8293 +2018-09-01,"Industrial Consumption","Virginia","VA",9416 +2018-09-01,"Industrial Consumption","Florida","FL",8553 +2018-09-01,"Industrial Consumption","Indiana","IN",29271 +2018-09-01,"Industrial Consumption","District of Columbia","DC",NA +2018-09-01,"Industrial Consumption","North Dakota","ND",2978 +2018-09-01,"Industrial Consumption","Maryland","MD",1063 +2018-09-01,"Industrial Consumption","New Mexico","NM",1534 +2018-09-01,"Industrial Consumption","Kansas","KS",8946 +2018-09-01,"Industrial Consumption","Utah","UT",3058 +2018-09-01,"Industrial Consumption","Mississippi","MS",10811 +2018-09-01,"Industrial Consumption","Rhode Island","RI",692 +2018-09-01,"Industrial Consumption","New York","NY",6208 +2018-09-01,"Industrial Consumption","New Hampshire","NH",696 +2018-09-01,"Industrial Consumption","Minnesota","MN",10920 +2018-09-01,"Industrial Consumption","Connecticut","CT",1747 +2018-09-01,"Industrial Consumption","Delaware","DE",1971 +2018-09-01,"Industrial Consumption","Georgia","GA",12227 +2018-09-01,"Industrial Consumption","Montana","MT",2049 +2018-09-01,"Industrial Consumption","Massachusetts","MA",2497 +2018-09-01,"Industrial Consumption","Washington","WA",6305 +2018-09-01,"Industrial Consumption","Kentucky","KY",7951 +2018-09-01,"Industrial Consumption","North Carolina","NC",7976 +2018-09-01,"Industrial Consumption","Alaska","AK",531 +2018-09-01,"Industrial Consumption","Oklahoma","OK",17229 +2018-09-01,"Industrial Consumption","Pennsylvania","PA",16711 +2018-09-01,"Industrial Consumption","Alabama","AL",16977 +2018-09-01,"Industrial Consumption","Texas","TX",150376 +2018-09-01,"Industrial Consumption","Nebraska","NE",7063 +2018-09-01,"Industrial Consumption","Tennessee","TN",11014 +2018-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",144167 +2018-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",61997 +2018-09-01,"Residential Consumption","Virginia","VA",1666 +2018-09-01,"Residential Consumption","New Mexico","NM",808 +2018-09-01,"Residential Consumption","Massachusetts","MA",2645 +2018-09-01,"Residential Consumption","Missouri","MO",1743 +2018-09-01,"Residential Consumption","Delaware","DE",157 +2018-09-01,"Residential Consumption","Iowa","IA",1299 +2018-09-01,"Residential Consumption","Vermont","VT",87 +2018-09-01,"Residential Consumption","Michigan","MI",6018 +2018-09-01,"Residential Consumption","South Dakota","SD",215 +2018-09-01,"Residential Consumption","Kentucky","KY",856 +2018-09-01,"Residential Consumption","California","CA",19154 +2018-09-01,"Residential Consumption","Connecticut","CT",1052 +2018-09-01,"Residential Consumption","District of Columbia","DC",264 +2018-09-01,"Residential Consumption","North Dakota","ND",194 +2018-09-01,"Residential Consumption","Arkansas","AR",607 +2018-09-01,"Residential Consumption","Arizona","AZ",1132 +2018-09-01,"Residential Consumption","Illinois","IL",8068 +2018-09-01,"Residential Consumption","Texas","TX",5132 +2018-09-01,"Residential Consumption","South Carolina","SC",494 +2018-09-01,"Residential Consumption","Hawaii","HI",45 +2018-09-01,"Residential Consumption","Utah","UT",1646 +2018-09-01,"Residential Consumption","Georgia","GA",3894 +2018-09-01,"Residential Consumption","Pennsylvania","PA",4390 +2018-09-01,"Residential Consumption","Florida","FL",845 +2018-09-01,"Residential Consumption","Kansas","KS",1436 +2018-09-01,"Residential Consumption","Alaska","AK",755 +2018-09-01,"Residential Consumption","West Virginia","WV",348 +2018-09-01,"Residential Consumption","New York","NY",10718 +2018-09-01,"Residential Consumption","Oregon","OR",1234 +2018-09-01,"Residential Consumption","Ohio","OH",5106 +2018-09-01,"Residential Consumption","Maryland","MD",1521 +2018-09-01,"Residential Consumption","Nevada","NV",1408 +2018-09-01,"Residential Consumption","Indiana","IN",2477 +2018-09-01,"Residential Consumption","Oklahoma","OK",1197 +2018-09-01,"Residential Consumption","Rhode Island","RI",377 +2018-09-01,"Residential Consumption","Wisconsin","WI",2943 +2018-09-01,"Residential Consumption","Nebraska","NE",687 +2018-09-01,"Residential Consumption","Minnesota","MN",2826 +2018-09-01,"Residential Consumption","Idaho","ID",745 +2018-09-01,"Residential Consumption","Colorado","CO",3134 +2018-09-01,"Residential Consumption","North Carolina","NC",977 +2018-09-01,"Residential Consumption","Mississippi","MS",495 +2018-09-01,"Residential Consumption","Louisiana","LA",1265 +2018-09-01,"Residential Consumption","Tennessee","TN",1130 +2018-09-01,"Residential Consumption","New Jersey","NJ",4872 +2018-09-01,"Residential Consumption","New Hampshire","NH",179 +2018-09-01,"Residential Consumption","Alabama","AL",663 +2018-09-01,"Residential Consumption","U.S.","U.S.",112317 +2018-09-01,"Residential Consumption","Maine","ME",61 +2018-09-01,"Residential Consumption","Montana","MT",484 +2018-09-01,"Residential Consumption","Washington","WA",2610 +2018-09-01,"Residential Consumption","Wyoming","WY",259 +2018-09-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2018-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",134 +2018-09-01,"Vehicle Fuel Consumption","Kansas","KS",56 +2018-09-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-09-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-09-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-09-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-09-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2018-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",35 +2018-09-01,"Vehicle Fuel Consumption","Louisiana","LA",35 +2018-09-01,"Vehicle Fuel Consumption","North Carolina","NC",113 +2018-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-09-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-09-01,"Vehicle Fuel Consumption","New York","NY",79 +2018-09-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2018-09-01,"Vehicle Fuel Consumption","Georgia","GA",167 +2018-09-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-09-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2018-09-01,"Vehicle Fuel Consumption","California","CA",2059 +2018-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",4144 +2018-09-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-09-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",37 +2018-09-01,"Vehicle Fuel Consumption","Missouri","MO",33 +2018-09-01,"Vehicle Fuel Consumption","Texas","TX",147 +2018-09-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2018-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",36 +2018-09-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2018-09-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-09-01,"Vehicle Fuel Consumption","Utah","UT",29 +2018-09-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-09-01,"Vehicle Fuel Consumption","Virginia","VA",71 +2018-09-01,"Vehicle Fuel Consumption","Nevada","NV",101 +2018-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-09-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-09-01,"Vehicle Fuel Consumption","Tennessee","TN",20 +2018-09-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2018-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",148 +2018-09-01,"Vehicle Fuel Consumption","Arizona","AZ",136 +2018-09-01,"Vehicle Fuel Consumption","Florida","FL",353 +2018-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-09-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-09-01,"Vehicle Fuel Consumption","Colorado","CO",105 +2018-09-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2018-09-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-09-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-10-01,"Commercial Consumption","Washington","WA",4251 +2018-10-01,"Commercial Consumption","Minnesota","MN",7360 +2018-10-01,"Commercial Consumption","Oklahoma","OK",2481 +2018-10-01,"Commercial Consumption","Pennsylvania","PA",11106 +2018-10-01,"Commercial Consumption","New Jersey","NJ",8526 +2018-10-01,"Commercial Consumption","New Hampshire","NH",451 +2018-10-01,"Commercial Consumption","Montana","MT",1861 +2018-10-01,"Commercial Consumption","Kentucky","KY",2453 +2018-10-01,"Commercial Consumption","U.S.","U.S.",237370 +2018-10-01,"Commercial Consumption","Alaska","AK",993 +2018-10-01,"Commercial Consumption","South Carolina","SC",1926 +2018-10-01,"Commercial Consumption","Florida","FL",4678 +2018-10-01,"Commercial Consumption","Hawaii","HI",220 +2018-10-01,"Commercial Consumption","Mississippi","MS",1450 +2018-10-01,"Commercial Consumption","Nevada","NV",2290 +2018-10-01,"Commercial Consumption","Louisiana","LA",2784 +2018-10-01,"Commercial Consumption","West Virginia","WV",1634 +2018-10-01,"Commercial Consumption","North Carolina","NC",3967 +2018-10-01,"Commercial Consumption","Wisconsin","WI",6488 +2018-10-01,"Commercial Consumption","Maine","ME",673 +2018-10-01,"Commercial Consumption","Rhode Island","RI",814 +2018-10-01,"Commercial Consumption","Connecticut","CT",4204 +2018-10-01,"Commercial Consumption","Illinois","IL",15973 +2018-10-01,"Commercial Consumption","Utah","UT",3055 +2018-10-01,"Commercial Consumption","Maryland","MD",5938 +2018-10-01,"Commercial Consumption","California","CA",20372 +2018-10-01,"Commercial Consumption","New York","NY",23421 +2018-10-01,"Commercial Consumption","Arizona","AZ",2163 +2018-10-01,"Commercial Consumption","Colorado","CO",3901 +2018-10-01,"Commercial Consumption","Oregon","OR",1957 +2018-10-01,"Commercial Consumption","Texas","TX",13865 +2018-10-01,"Commercial Consumption","Arkansas","AR",4104 +2018-10-01,"Commercial Consumption","Wyoming","WY",870 +2018-10-01,"Commercial Consumption","Missouri","MO",3988 +2018-10-01,"Commercial Consumption","South Dakota","SD",859 +2018-10-01,"Commercial Consumption","Kansas","KS",2761 +2018-10-01,"Commercial Consumption","Vermont","VT",626 +2018-10-01,"Commercial Consumption","Idaho","ID",1499 +2018-10-01,"Commercial Consumption","Iowa","IA",3962 +2018-10-01,"Commercial Consumption","Tennessee","TN",3537 +2018-10-01,"Commercial Consumption","Michigan","MI",10983 +2018-10-01,"Commercial Consumption","Indiana","IN",6007 +2018-10-01,"Commercial Consumption","District of Columbia","DC",1314 +2018-10-01,"Commercial Consumption","North Dakota","ND",1140 +2018-10-01,"Commercial Consumption","Virginia","VA",5389 +2018-10-01,"Commercial Consumption","Georgia","GA",3127 +2018-10-01,"Commercial Consumption","Ohio","OH",11733 +2018-10-01,"Commercial Consumption","Nebraska","NE",2272 +2018-10-01,"Commercial Consumption","Delaware","DE",1222 +2018-10-01,"Commercial Consumption","New Mexico","NM",2153 +2018-10-01,"Commercial Consumption","Massachusetts","MA",6862 +2018-10-01,"Commercial Consumption","Alabama","AL",1709 +2018-10-01,"Delivered to Consumers","Arkansas","AR",27654 +2018-10-01,"Delivered to Consumers","Minnesota","MN",31273 +2018-10-01,"Delivered to Consumers","Florida","FL",134703 +2018-10-01,"Delivered to Consumers","Rhode Island","RI",9207 +2018-10-01,"Delivered to Consumers","Pennsylvania","PA",90611 +2018-10-01,"Delivered to Consumers","Mississippi","MS",37065 +2018-10-01,"Delivered to Consumers","Washington","WA",23397 +2018-10-01,"Delivered to Consumers","Delaware","DE",8098 +2018-10-01,"Delivered to Consumers","West Virginia","WV",7606 +2018-10-01,"Delivered to Consumers","Illinois","IL",71261 +2018-10-01,"Delivered to Consumers","Nebraska","NE",13570 +2018-10-01,"Delivered to Consumers","Arizona","AZ",34652 +2018-10-01,"Delivered to Consumers","North Dakota","ND",6041 +2018-10-01,"Delivered to Consumers","Utah","UT",16568 +2018-10-01,"Delivered to Consumers","Alaska","AK",4477 +2018-10-01,"Delivered to Consumers","Oklahoma","OK",45137 +2018-10-01,"Delivered to Consumers","Iowa","IA",32760 +2018-10-01,"Delivered to Consumers","North Carolina","NC",45054 +2018-10-01,"Delivered to Consumers","Missouri","MO",20569 +2018-10-01,"Delivered to Consumers","New Mexico","NM",12378 +2018-10-01,"Delivered to Consumers","New York","NY",89402 +2018-10-01,"Delivered to Consumers","Maryland","MD",21292 +2018-10-01,"Delivered to Consumers","Kansas","KS",17221 +2018-10-01,"Delivered to Consumers","Tennessee","TN",27026 +2018-10-01,"Delivered to Consumers","South Carolina","SC",28217 +2018-10-01,"Delivered to Consumers","Nevada","NV",21241 +2018-10-01,"Delivered to Consumers","New Jersey","NJ",49491 +2018-10-01,"Delivered to Consumers","Georgia","GA",53277 +2018-10-01,"Delivered to Consumers","Vermont","VT",1004 +2018-10-01,"Delivered to Consumers","Hawaii","HI",272 +2018-10-01,"Delivered to Consumers","Ohio","OH",80273 +2018-10-01,"Delivered to Consumers","Michigan","MI",65653 +2018-10-01,"Delivered to Consumers","Connecticut","CT",20900 +2018-10-01,"Delivered to Consumers","Alabama","AL",58325 +2018-10-01,"Delivered to Consumers","Wisconsin","WI",39209 +2018-10-01,"Delivered to Consumers","Colorado","CO",29781 +2018-10-01,"Delivered to Consumers","Louisiana","LA",126183 +2018-10-01,"Delivered to Consumers","District of Columbia","DC",1879 +2018-10-01,"Delivered to Consumers","U.S.","U.S.",2069201 +2018-10-01,"Delivered to Consumers","Wyoming","WY",7663 +2018-10-01,"Delivered to Consumers","Virginia","VA",38160 +2018-10-01,"Delivered to Consumers","Massachusetts","MA",25868 +2018-10-01,"Delivered to Consumers","Texas","TX",297020 +2018-10-01,"Delivered to Consumers","Maine","ME",4547 +2018-10-01,"Delivered to Consumers","Indiana","IN",55325 +2018-10-01,"Delivered to Consumers","South Dakota","SD",5852 +2018-10-01,"Delivered to Consumers","Montana","MT",6196 +2018-10-01,"Delivered to Consumers","Idaho","ID",7752 +2018-10-01,"Delivered to Consumers","Kentucky","KY",23988 +2018-10-01,"Delivered to Consumers","California","CA",168809 +2018-10-01,"Delivered to Consumers","Oregon","OR",20589 +2018-10-01,"Delivered to Consumers","New Hampshire","NH",4704 +2018-10-01,"Electric Power Consumption","Virginia","VA",21233 +2018-10-01,"Electric Power Consumption","Idaho","ID",1151 +2018-10-01,"Electric Power Consumption","New York","NY",34837 +2018-10-01,"Electric Power Consumption","Texas","TX",126829 +2018-10-01,"Electric Power Consumption","Tennessee","TN",9675 +2018-10-01,"Electric Power Consumption","Nebraska","NE",1172 +2018-10-01,"Electric Power Consumption","Kentucky","KY",9602 +2018-10-01,"Electric Power Consumption","Montana","MT",418 +2018-10-01,"Electric Power Consumption","Maryland","MD",10513 +2018-10-01,"Electric Power Consumption","Delaware","DE",3911 +2018-10-01,"Electric Power Consumption","Arizona","AZ",29070 +2018-10-01,"Electric Power Consumption","Georgia","GA",30715 +2018-10-01,"Electric Power Consumption","Arkansas","AR",13280 +2018-10-01,"Electric Power Consumption","Oklahoma","OK",22372 +2018-10-01,"Electric Power Consumption","Nevada","NV",15190 +2018-10-01,"Electric Power Consumption","Maine","ME",1898 +2018-10-01,"Electric Power Consumption","Hawaii","HI",NA +2018-10-01,"Electric Power Consumption","Colorado","CO",9781 +2018-10-01,"Electric Power Consumption","Illinois","IL",8865 +2018-10-01,"Electric Power Consumption","West Virginia","WV",1464 +2018-10-01,"Electric Power Consumption","Vermont","VT",1 +2018-10-01,"Electric Power Consumption","South Dakota","SD",347 +2018-10-01,"Electric Power Consumption","Utah","UT",6035 +2018-10-01,"Electric Power Consumption","Mississippi","MS",23618 +2018-10-01,"Electric Power Consumption","New Hampshire","NH",3203 +2018-10-01,"Electric Power Consumption","Kansas","KS",1949 +2018-10-01,"Electric Power Consumption","Wyoming","WY",179 +2018-10-01,"Electric Power Consumption","Oregon","OR",11349 +2018-10-01,"Electric Power Consumption","Michigan","MI",18716 +2018-10-01,"Electric Power Consumption","Pennsylvania","PA",47756 +2018-10-01,"Electric Power Consumption","Alabama","AL",36929 +2018-10-01,"Electric Power Consumption","New Mexico","NM",6775 +2018-10-01,"Electric Power Consumption","New Jersey","NJ",23624 +2018-10-01,"Electric Power Consumption","Louisiana","LA",27389 +2018-10-01,"Electric Power Consumption","South Carolina","SC",16842 +2018-10-01,"Electric Power Consumption","Rhode Island","RI",6448 +2018-10-01,"Electric Power Consumption","Minnesota","MN",2894 +2018-10-01,"Electric Power Consumption","Wisconsin","WI",10424 +2018-10-01,"Electric Power Consumption","Iowa","IA",3031 +2018-10-01,"Electric Power Consumption","U.S.","U.S.",887814 +2018-10-01,"Electric Power Consumption","North Carolina","NC",28721 +2018-10-01,"Electric Power Consumption","North Dakota","ND",765 +2018-10-01,"Electric Power Consumption","Indiana","IN",14238 +2018-10-01,"Electric Power Consumption","Connecticut","CT",12239 +2018-10-01,"Electric Power Consumption","Florida","FL",119902 +2018-10-01,"Electric Power Consumption","California","CA",60861 +2018-10-01,"Electric Power Consumption","Washington","WA",6018 +2018-10-01,"Electric Power Consumption","Massachusetts","MA",10301 +2018-10-01,"Electric Power Consumption","Missouri","MO",5882 +2018-10-01,"Electric Power Consumption","Ohio","OH",27755 +2018-10-01,"Electric Power Consumption","Alaska","AK",1649 +2018-10-01,"Industrial Consumption","Montana","MT",2169 +2018-10-01,"Industrial Consumption","Massachusetts","MA",3566 +2018-10-01,"Industrial Consumption","Louisiana","LA",94256 +2018-10-01,"Industrial Consumption","Washington","WA",6993 +2018-10-01,"Industrial Consumption","Arizona","AZ",1604 +2018-10-01,"Industrial Consumption","Nevada","NV",1624 +2018-10-01,"Industrial Consumption","Iowa","IA",22015 +2018-10-01,"Industrial Consumption","Florida","FL",8903 +2018-10-01,"Industrial Consumption","Indiana","IN",27802 +2018-10-01,"Industrial Consumption","Illinois","IL",22921 +2018-10-01,"Industrial Consumption","Hawaii","HI",8 +2018-10-01,"Industrial Consumption","Utah","UT",2907 +2018-10-01,"Industrial Consumption","Oregon","OR",4637 +2018-10-01,"Industrial Consumption","Mississippi","MS",11063 +2018-10-01,"Industrial Consumption","Texas","TX",148106 +2018-10-01,"Industrial Consumption","Tennessee","TN",11736 +2018-10-01,"Industrial Consumption","New Hampshire","NH",780 +2018-10-01,"Industrial Consumption","South Dakota","SD",3713 +2018-10-01,"Industrial Consumption","Maine","ME",1805 +2018-10-01,"Industrial Consumption","Arkansas","AR",8974 +2018-10-01,"Industrial Consumption","Vermont","VT",195 +2018-10-01,"Industrial Consumption","Michigan","MI",14365 +2018-10-01,"Industrial Consumption","Rhode Island","RI",659 +2018-10-01,"Industrial Consumption","Alaska","AK",517 +2018-10-01,"Industrial Consumption","Maryland","MD",1217 +2018-10-01,"Industrial Consumption","U.S.","U.S.",684417 +2018-10-01,"Industrial Consumption","New York","NY",7755 +2018-10-01,"Industrial Consumption","Virginia","VA",8000 +2018-10-01,"Industrial Consumption","Wyoming","WY",5737 +2018-10-01,"Industrial Consumption","Georgia","GA",12943 +2018-10-01,"Industrial Consumption","Ohio","OH",23582 +2018-10-01,"Industrial Consumption","New Mexico","NM",1682 +2018-10-01,"Industrial Consumption","Alabama","AL",18667 +2018-10-01,"Industrial Consumption","Minnesota","MN",11930 +2018-10-01,"Industrial Consumption","Connecticut","CT",1925 +2018-10-01,"Industrial Consumption","District of Columbia","DC",NA +2018-10-01,"Industrial Consumption","North Dakota","ND",3192 +2018-10-01,"Industrial Consumption","Kansas","KS",9256 +2018-10-01,"Industrial Consumption","Pennsylvania","PA",18838 +2018-10-01,"Industrial Consumption","South Carolina","SC",8510 +2018-10-01,"Industrial Consumption","Wisconsin","WI",13480 +2018-10-01,"Industrial Consumption","Delaware","DE",2563 +2018-10-01,"Industrial Consumption","North Carolina","NC",9841 +2018-10-01,"Industrial Consumption","Oklahoma","OK",18294 +2018-10-01,"Industrial Consumption","Missouri","MO",5396 +2018-10-01,"Industrial Consumption","Colorado","CO",7373 +2018-10-01,"Industrial Consumption","Nebraska","NE",8000 +2018-10-01,"Industrial Consumption","West Virginia","WV",3197 +2018-10-01,"Industrial Consumption","Idaho","ID",3347 +2018-10-01,"Industrial Consumption","California","CA",62841 +2018-10-01,"Industrial Consumption","New Jersey","NJ",6167 +2018-10-01,"Industrial Consumption","Kentucky","KY",9367 +2018-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",150862 +2018-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",65791 +2018-10-01,"Residential Consumption","Rhode Island","RI",1278 +2018-10-01,"Residential Consumption","Pennsylvania","PA",12759 +2018-10-01,"Residential Consumption","North Dakota","ND",945 +2018-10-01,"Residential Consumption","Massachusetts","MA",5128 +2018-10-01,"Residential Consumption","New Hampshire","NH",270 +2018-10-01,"Residential Consumption","Alabama","AL",1014 +2018-10-01,"Residential Consumption","Oregon","OR",2639 +2018-10-01,"Residential Consumption","Ohio","OH",17160 +2018-10-01,"Residential Consumption","Vermont","VT",182 +2018-10-01,"Residential Consumption","Tennessee","TN",2056 +2018-10-01,"Residential Consumption","Maryland","MD",3593 +2018-10-01,"Residential Consumption","Nevada","NV",2031 +2018-10-01,"Residential Consumption","Georgia","GA",6319 +2018-10-01,"Residential Consumption","Indiana","IN",7278 +2018-10-01,"Residential Consumption","Arkansas","AR",1293 +2018-10-01,"Residential Consumption","Delaware","DE",402 +2018-10-01,"Residential Consumption","West Virginia","WV",1311 +2018-10-01,"Residential Consumption","Texas","TX",8068 +2018-10-01,"Residential Consumption","Virginia","VA",3464 +2018-10-01,"Residential Consumption","South Dakota","SD",934 +2018-10-01,"Residential Consumption","New York","NY",23307 +2018-10-01,"Residential Consumption","South Carolina","SC",929 +2018-10-01,"Residential Consumption","North Carolina","NC",2409 +2018-10-01,"Residential Consumption","Louisiana","LA",1717 +2018-10-01,"Residential Consumption","Connecticut","CT",2515 +2018-10-01,"Residential Consumption","Wisconsin","WI",8780 +2018-10-01,"Residential Consumption","Colorado","CO",8617 +2018-10-01,"Residential Consumption","Missouri","MO",5269 +2018-10-01,"Residential Consumption","New Jersey","NJ",11138 +2018-10-01,"Residential Consumption","Oklahoma","OK",1852 +2018-10-01,"Residential Consumption","Illinois","IL",23490 +2018-10-01,"Residential Consumption","Mississippi","MS",931 +2018-10-01,"Residential Consumption","Hawaii","HI",44 +2018-10-01,"Residential Consumption","Nebraska","NE",2114 +2018-10-01,"Residential Consumption","Idaho","ID",1750 +2018-10-01,"Residential Consumption","Montana","MT",1748 +2018-10-01,"Residential Consumption","Kansas","KS",3197 +2018-10-01,"Residential Consumption","California","CA",22607 +2018-10-01,"Residential Consumption","Wyoming","WY",875 +2018-10-01,"Residential Consumption","Iowa","IA",3749 +2018-10-01,"Residential Consumption","Michigan","MI",21590 +2018-10-01,"Residential Consumption","New Mexico","NM",1749 +2018-10-01,"Residential Consumption","Florida","FL",855 +2018-10-01,"Residential Consumption","Kentucky","KY",2558 +2018-10-01,"Residential Consumption","U.S.","U.S.",255318 +2018-10-01,"Residential Consumption","Utah","UT",4541 +2018-10-01,"Residential Consumption","Minnesota","MN",9051 +2018-10-01,"Residential Consumption","District of Columbia","DC",528 +2018-10-01,"Residential Consumption","Maine","ME",171 +2018-10-01,"Residential Consumption","Washington","WA",6120 +2018-10-01,"Residential Consumption","Arizona","AZ",1673 +2018-10-01,"Residential Consumption","Alaska","AK",1319 +2018-10-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2018-10-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-10-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-10-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2018-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-10-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2018-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-10-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-10-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2018-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-10-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-10-01,"Vehicle Fuel Consumption","North Carolina","NC",116 +2018-10-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2018-10-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2018-10-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-10-01,"Vehicle Fuel Consumption","Colorado","CO",108 +2018-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-10-01,"Vehicle Fuel Consumption","Kansas","KS",58 +2018-10-01,"Vehicle Fuel Consumption","Iowa","IA",4 +2018-10-01,"Vehicle Fuel Consumption","Texas","TX",152 +2018-10-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2018-10-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-10-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-10-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-10-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-10-01,"Vehicle Fuel Consumption","Utah","UT",30 +2018-10-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",153 +2018-10-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2018-10-01,"Vehicle Fuel Consumption","Florida","FL",365 +2018-10-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",138 +2018-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2018-10-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2018-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-10-01,"Vehicle Fuel Consumption","Louisiana","LA",36 +2018-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",4282 +2018-10-01,"Vehicle Fuel Consumption","New York","NY",82 +2018-10-01,"Vehicle Fuel Consumption","Missouri","MO",34 +2018-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-10-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-10-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-10-01,"Vehicle Fuel Consumption","California","CA",2128 +2018-10-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-10-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2018-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2018-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2018-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2018-10-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-10-01,"Vehicle Fuel Consumption","Georgia","GA",173 +2018-11-01,"Commercial Consumption","Washington","WA",6039 +2018-11-01,"Commercial Consumption","Pennsylvania","PA",18646 +2018-11-01,"Commercial Consumption","Vermont","VT",899 +2018-11-01,"Commercial Consumption","Connecticut","CT",6339 +2018-11-01,"Commercial Consumption","Indiana","IN",10311 +2018-11-01,"Commercial Consumption","Louisiana","LA",4252 +2018-11-01,"Commercial Consumption","New Mexico","NM",3036 +2018-11-01,"Commercial Consumption","Oklahoma","OK",5523 +2018-11-01,"Commercial Consumption","Wisconsin","WI",11818 +2018-11-01,"Commercial Consumption","South Dakota","SD",1416 +2018-11-01,"Commercial Consumption","District of Columbia","DC",1837 +2018-11-01,"Commercial Consumption","North Dakota","ND",1879 +2018-11-01,"Commercial Consumption","Massachusetts","MA",14351 +2018-11-01,"Commercial Consumption","Maryland","MD",7923 +2018-11-01,"Commercial Consumption","Arkansas","AR",5699 +2018-11-01,"Commercial Consumption","West Virginia","WV",2761 +2018-11-01,"Commercial Consumption","Utah","UT",5229 +2018-11-01,"Commercial Consumption","New Hampshire","NH",1316 +2018-11-01,"Commercial Consumption","Kentucky","KY",4775 +2018-11-01,"Commercial Consumption","Alaska","AK",1509 +2018-11-01,"Commercial Consumption","California","CA",23093 +2018-11-01,"Commercial Consumption","Delaware","DE",1839 +2018-11-01,"Commercial Consumption","South Carolina","SC",2955 +2018-11-01,"Commercial Consumption","Minnesota","MN",11941 +2018-11-01,"Commercial Consumption","Colorado","CO",6526 +2018-11-01,"Commercial Consumption","Missouri","MO",7899 +2018-11-01,"Commercial Consumption","Montana","MT",2825 +2018-11-01,"Commercial Consumption","Rhode Island","RI",1471 +2018-11-01,"Commercial Consumption","Ohio","OH",21890 +2018-11-01,"Commercial Consumption","Idaho","ID",2212 +2018-11-01,"Commercial Consumption","Illinois","IL",26568 +2018-11-01,"Commercial Consumption","New Jersey","NJ",16931 +2018-11-01,"Commercial Consumption","U.S.","U.S.",386256 +2018-11-01,"Commercial Consumption","Texas","TX",22097 +2018-11-01,"Commercial Consumption","Kansas","KS",4304 +2018-11-01,"Commercial Consumption","Georgia","GA",6912 +2018-11-01,"Commercial Consumption","Mississippi","MS",2487 +2018-11-01,"Commercial Consumption","Wyoming","WY",1448 +2018-11-01,"Commercial Consumption","Maine","ME",1169 +2018-11-01,"Commercial Consumption","Florida","FL",5224 +2018-11-01,"Commercial Consumption","Iowa","IA",6784 +2018-11-01,"Commercial Consumption","Alabama","AL",3528 +2018-11-01,"Commercial Consumption","New York","NY",37037 +2018-11-01,"Commercial Consumption","Nebraska","NE",3863 +2018-11-01,"Commercial Consumption","Nevada","NV",3191 +2018-11-01,"Commercial Consumption","North Carolina","NC",6696 +2018-11-01,"Commercial Consumption","Oregon","OR",3235 +2018-11-01,"Commercial Consumption","Virginia","VA",7077 +2018-11-01,"Commercial Consumption","Hawaii","HI",212 +2018-11-01,"Commercial Consumption","Arizona","AZ",3051 +2018-11-01,"Commercial Consumption","Tennessee","TN",6720 +2018-11-01,"Commercial Consumption","Michigan","MI",19513 +2018-11-01,"Delivered to Consumers","West Virginia","WV",9895 +2018-11-01,"Delivered to Consumers","Maryland","MD",25524 +2018-11-01,"Delivered to Consumers","Hawaii","HI",266 +2018-11-01,"Delivered to Consumers","Massachusetts","MA",39981 +2018-11-01,"Delivered to Consumers","Texas","TX",307654 +2018-11-01,"Delivered to Consumers","Oregon","OR",25699 +2018-11-01,"Delivered to Consumers","Georgia","GA",63172 +2018-11-01,"Delivered to Consumers","District of Columbia","DC",3485 +2018-11-01,"Delivered to Consumers","Utah","UT",22840 +2018-11-01,"Delivered to Consumers","Indiana","IN",83049 +2018-11-01,"Delivered to Consumers","Wyoming","WY",9299 +2018-11-01,"Delivered to Consumers","Kentucky","KY",31680 +2018-11-01,"Delivered to Consumers","California","CA",179877 +2018-11-01,"Delivered to Consumers","Louisiana","LA",118938 +2018-11-01,"Delivered to Consumers","Delaware","DE",7845 +2018-11-01,"Delivered to Consumers","New York","NY",131442 +2018-11-01,"Delivered to Consumers","Oklahoma","OK",53921 +2018-11-01,"Delivered to Consumers","Virginia","VA",51489 +2018-11-01,"Delivered to Consumers","Nevada","NV",22585 +2018-11-01,"Delivered to Consumers","Florida","FL",110974 +2018-11-01,"Delivered to Consumers","Alaska","AK",6303 +2018-11-01,"Delivered to Consumers","Michigan","MI",95082 +2018-11-01,"Delivered to Consumers","Iowa","IA",41281 +2018-11-01,"Delivered to Consumers","Alabama","AL",59098 +2018-11-01,"Delivered to Consumers","Pennsylvania","PA",110381 +2018-11-01,"Delivered to Consumers","New Mexico","NM",17096 +2018-11-01,"Delivered to Consumers","Vermont","VT",1547 +2018-11-01,"Delivered to Consumers","Idaho","ID",12434 +2018-11-01,"Delivered to Consumers","Nebraska","NE",17694 +2018-11-01,"Delivered to Consumers","Mississippi","MS",41221 +2018-11-01,"Delivered to Consumers","Missouri","MO",35927 +2018-11-01,"Delivered to Consumers","Maine","ME",4244 +2018-11-01,"Delivered to Consumers","Illinois","IL",120218 +2018-11-01,"Delivered to Consumers","Rhode Island","RI",8815 +2018-11-01,"Delivered to Consumers","Kansas","KS",26681 +2018-11-01,"Delivered to Consumers","Connecticut","CT",26888 +2018-11-01,"Delivered to Consumers","Colorado","CO",41173 +2018-11-01,"Delivered to Consumers","Arizona","AZ",29700 +2018-11-01,"Delivered to Consumers","Minnesota","MN",48156 +2018-11-01,"Delivered to Consumers","U.S.","U.S.",2488282 +2018-11-01,"Delivered to Consumers","South Dakota","SD",7900 +2018-11-01,"Delivered to Consumers","Montana","MT",8403 +2018-11-01,"Delivered to Consumers","Tennessee","TN",37472 +2018-11-01,"Delivered to Consumers","Arkansas","AR",26993 +2018-11-01,"Delivered to Consumers","North Carolina","NC",54774 +2018-11-01,"Delivered to Consumers","South Carolina","SC",32428 +2018-11-01,"Delivered to Consumers","North Dakota","ND",6901 +2018-11-01,"Delivered to Consumers","Ohio","OH",117760 +2018-11-01,"Delivered to Consumers","Wisconsin","WI",54672 +2018-11-01,"Delivered to Consumers","New Jersey","NJ",69445 +2018-11-01,"Delivered to Consumers","Washington","WA",23357 +2018-11-01,"Delivered to Consumers","New Hampshire","NH",4621 +2018-11-01,"Electric Power Consumption","Oklahoma","OK",21830 +2018-11-01,"Electric Power Consumption","Michigan","MI",16020 +2018-11-01,"Electric Power Consumption","Wyoming","WY",224 +2018-11-01,"Electric Power Consumption","Missouri","MO",5119 +2018-11-01,"Electric Power Consumption","Maine","ME",841 +2018-11-01,"Electric Power Consumption","Mississippi","MS",24243 +2018-11-01,"Electric Power Consumption","Connecticut","CT",12245 +2018-11-01,"Electric Power Consumption","Virginia","VA",27502 +2018-11-01,"Electric Power Consumption","Minnesota","MN",3289 +2018-11-01,"Electric Power Consumption","Wisconsin","WI",8411 +2018-11-01,"Electric Power Consumption","Arizona","AZ",21538 +2018-11-01,"Electric Power Consumption","New Jersey","NJ",19697 +2018-11-01,"Electric Power Consumption","Rhode Island","RI",4109 +2018-11-01,"Electric Power Consumption","West Virginia","WV",727 +2018-11-01,"Electric Power Consumption","Nevada","NV",13661 +2018-11-01,"Electric Power Consumption","Iowa","IA",2230 +2018-11-01,"Electric Power Consumption","California","CA",54987 +2018-11-01,"Electric Power Consumption","Colorado","CO",9776 +2018-11-01,"Electric Power Consumption","Texas","TX",105850 +2018-11-01,"Electric Power Consumption","Vermont","VT",1 +2018-11-01,"Electric Power Consumption","Ohio","OH",28504 +2018-11-01,"Electric Power Consumption","New Hampshire","NH",1380 +2018-11-01,"Electric Power Consumption","Delaware","DE",1429 +2018-11-01,"Electric Power Consumption","New Mexico","NM",7475 +2018-11-01,"Electric Power Consumption","Kansas","KS",1471 +2018-11-01,"Electric Power Consumption","Indiana","IN",15562 +2018-11-01,"Electric Power Consumption","Washington","WA",1433 +2018-11-01,"Electric Power Consumption","Arkansas","AR",7213 +2018-11-01,"Electric Power Consumption","Utah","UT",5317 +2018-11-01,"Electric Power Consumption","Oregon","OR",12460 +2018-11-01,"Electric Power Consumption","Hawaii","HI",NA +2018-11-01,"Electric Power Consumption","Florida","FL",94725 +2018-11-01,"Electric Power Consumption","Alaska","AK",2061 +2018-11-01,"Electric Power Consumption","New York","NY",29531 +2018-11-01,"Electric Power Consumption","Massachusetts","MA",7713 +2018-11-01,"Electric Power Consumption","Tennessee","TN",8332 +2018-11-01,"Electric Power Consumption","U.S.","U.S.",762951 +2018-11-01,"Electric Power Consumption","Nebraska","NE",762 +2018-11-01,"Electric Power Consumption","North Carolina","NC",26748 +2018-11-01,"Electric Power Consumption","Kentucky","KY",8876 +2018-11-01,"Electric Power Consumption","Maryland","MD",5810 +2018-11-01,"Electric Power Consumption","Georgia","GA",24793 +2018-11-01,"Electric Power Consumption","Alabama","AL",31598 +2018-11-01,"Electric Power Consumption","Louisiana","LA",16280 +2018-11-01,"Electric Power Consumption","Idaho","ID",2952 +2018-11-01,"Electric Power Consumption","South Carolina","SC",16343 +2018-11-01,"Electric Power Consumption","Illinois","IL",9717 +2018-11-01,"Electric Power Consumption","Pennsylvania","PA",40291 +2018-11-01,"Electric Power Consumption","South Dakota","SD",745 +2018-11-01,"Electric Power Consumption","North Dakota","ND",587 +2018-11-01,"Electric Power Consumption","Montana","MT",544 +2018-11-01,"Industrial Consumption","Montana","MT",2260 +2018-11-01,"Industrial Consumption","Massachusetts","MA",4033 +2018-11-01,"Industrial Consumption","Hawaii","HI",7 +2018-11-01,"Industrial Consumption","Colorado","CO",8783 +2018-11-01,"Industrial Consumption","California","CA",61488 +2018-11-01,"Industrial Consumption","Nebraska","NE",8184 +2018-11-01,"Industrial Consumption","North Carolina","NC",10737 +2018-11-01,"Industrial Consumption","Georgia","GA",14124 +2018-11-01,"Industrial Consumption","Mississippi","MS",11406 +2018-11-01,"Industrial Consumption","Texas","TX",156425 +2018-11-01,"Industrial Consumption","Indiana","IN",37710 +2018-11-01,"Industrial Consumption","South Dakota","SD",4206 +2018-11-01,"Industrial Consumption","Ohio","OH",26772 +2018-11-01,"Industrial Consumption","New Mexico","NM",1710 +2018-11-01,"Industrial Consumption","Kansas","KS",11638 +2018-11-01,"Industrial Consumption","Oregon","OR",4611 +2018-11-01,"Industrial Consumption","Virginia","VA",7948 +2018-11-01,"Industrial Consumption","Wisconsin","WI",15755 +2018-11-01,"Industrial Consumption","Minnesota","MN",15490 +2018-11-01,"Industrial Consumption","Connecticut","CT",2220 +2018-11-01,"Industrial Consumption","Oklahoma","OK",17316 +2018-11-01,"Industrial Consumption","Missouri","MO",6657 +2018-11-01,"Industrial Consumption","Arizona","AZ",1805 +2018-11-01,"Industrial Consumption","Arkansas","AR",9935 +2018-11-01,"Industrial Consumption","New Jersey","NJ",6196 +2018-11-01,"Industrial Consumption","Iowa","IA",23302 +2018-11-01,"Industrial Consumption","Florida","FL",9479 +2018-11-01,"Industrial Consumption","Rhode Island","RI",771 +2018-11-01,"Industrial Consumption","North Dakota","ND",2828 +2018-11-01,"Industrial Consumption","Louisiana","LA",93988 +2018-11-01,"Industrial Consumption","Pennsylvania","PA",20478 +2018-11-01,"Industrial Consumption","Maine","ME",1849 +2018-11-01,"Industrial Consumption","South Carolina","SC",8998 +2018-11-01,"Industrial Consumption","Wyoming","WY",6054 +2018-11-01,"Industrial Consumption","Michigan","MI",17266 +2018-11-01,"Industrial Consumption","Kentucky","KY",11087 +2018-11-01,"Industrial Consumption","Washington","WA",5818 +2018-11-01,"Industrial Consumption","Nevada","NV",1580 +2018-11-01,"Industrial Consumption","Vermont","VT",212 +2018-11-01,"Industrial Consumption","Idaho","ID",3473 +2018-11-01,"Industrial Consumption","District of Columbia","DC",NA +2018-11-01,"Industrial Consumption","Alaska","AK",636 +2018-11-01,"Industrial Consumption","Maryland","MD",1659 +2018-11-01,"Industrial Consumption","Utah","UT",3358 +2018-11-01,"Industrial Consumption","U.S.","U.S.",735954 +2018-11-01,"Industrial Consumption","New York","NY",8799 +2018-11-01,"Industrial Consumption","Alabama","AL",19840 +2018-11-01,"Industrial Consumption","West Virginia","WV",3272 +2018-11-01,"Industrial Consumption","Tennessee","TN",13713 +2018-11-01,"Industrial Consumption","New Hampshire","NH",876 +2018-11-01,"Industrial Consumption","Illinois","IL",25987 +2018-11-01,"Industrial Consumption","Delaware","DE",3215 +2018-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",148545 +2018-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",79115 +2018-11-01,"Residential Consumption","Iowa","IA",8960 +2018-11-01,"Residential Consumption","Utah","UT",8907 +2018-11-01,"Residential Consumption","New Hampshire","NH",1050 +2018-11-01,"Residential Consumption","West Virginia","WV",3135 +2018-11-01,"Residential Consumption","U.S.","U.S.",598977 +2018-11-01,"Residential Consumption","South Carolina","SC",4123 +2018-11-01,"Residential Consumption","Ohio","OH",40553 +2018-11-01,"Residential Consumption","Hawaii","HI",47 +2018-11-01,"Residential Consumption","Maine","ME",385 +2018-11-01,"Residential Consumption","Florida","FL",1193 +2018-11-01,"Residential Consumption","Arizona","AZ",3171 +2018-11-01,"Residential Consumption","Illinois","IL",57935 +2018-11-01,"Residential Consumption","Texas","TX",23135 +2018-11-01,"Residential Consumption","Wisconsin","WI",18652 +2018-11-01,"Residential Consumption","Colorado","CO",15984 +2018-11-01,"Residential Consumption","Virginia","VA",8890 +2018-11-01,"Residential Consumption","South Dakota","SD",1534 +2018-11-01,"Residential Consumption","Idaho","ID",3791 +2018-11-01,"Residential Consumption","Kansas","KS",9212 +2018-11-01,"Residential Consumption","New York","NY",55996 +2018-11-01,"Residential Consumption","Oregon","OR",5388 +2018-11-01,"Residential Consumption","Michigan","MI",42283 +2018-11-01,"Residential Consumption","Pennsylvania","PA",30818 +2018-11-01,"Residential Consumption","North Dakota","ND",1607 +2018-11-01,"Residential Consumption","Kentucky","KY",6936 +2018-11-01,"Residential Consumption","Missouri","MO",16219 +2018-11-01,"Residential Consumption","California","CA",38251 +2018-11-01,"Residential Consumption","Wyoming","WY",1572 +2018-11-01,"Residential Consumption","Rhode Island","RI",2456 +2018-11-01,"Residential Consumption","Vermont","VT",436 +2018-11-01,"Residential Consumption","Nebraska","NE",4872 +2018-11-01,"Residential Consumption","Maryland","MD",10100 +2018-11-01,"Residential Consumption","Nevada","NV",4052 +2018-11-01,"Residential Consumption","Minnesota","MN",17398 +2018-11-01,"Residential Consumption","Montana","MT",2773 +2018-11-01,"Residential Consumption","Delaware","DE",1362 +2018-11-01,"Residential Consumption","Louisiana","LA",4382 +2018-11-01,"Residential Consumption","Connecticut","CT",6067 +2018-11-01,"Residential Consumption","Tennessee","TN",8687 +2018-11-01,"Residential Consumption","District of Columbia","DC",1612 +2018-11-01,"Residential Consumption","New Mexico","NM",4857 +2018-11-01,"Residential Consumption","Indiana","IN",19465 +2018-11-01,"Residential Consumption","Arkansas","AR",4142 +2018-11-01,"Residential Consumption","New Jersey","NJ",26587 +2018-11-01,"Residential Consumption","Washington","WA",10052 +2018-11-01,"Residential Consumption","Oklahoma","OK",9118 +2018-11-01,"Residential Consumption","North Carolina","NC",10479 +2018-11-01,"Residential Consumption","Mississippi","MS",3082 +2018-11-01,"Residential Consumption","Georgia","GA",17176 +2018-11-01,"Residential Consumption","Massachusetts","MA",13875 +2018-11-01,"Residential Consumption","Alabama","AL",4124 +2018-11-01,"Residential Consumption","Alaska","AK",2096 +2018-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-11-01,"Vehicle Fuel Consumption","New York","NY",79 +2018-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",134 +2018-11-01,"Vehicle Fuel Consumption","Maryland","MD",31 +2018-11-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-11-01,"Vehicle Fuel Consumption","North Carolina","NC",113 +2018-11-01,"Vehicle Fuel Consumption","Virginia","VA",71 +2018-11-01,"Vehicle Fuel Consumption","Kansas","KS",56 +2018-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2018-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-11-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2018-11-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-11-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-11-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2018-11-01,"Vehicle Fuel Consumption","Missouri","MO",33 +2018-11-01,"Vehicle Fuel Consumption","Colorado","CO",105 +2018-11-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-11-01,"Vehicle Fuel Consumption","California","CA",2059 +2018-11-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2018-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-11-01,"Vehicle Fuel Consumption","Texas","TX",147 +2018-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",35 +2018-11-01,"Vehicle Fuel Consumption","Georgia","GA",167 +2018-11-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-11-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2018-11-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-11-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-11-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",148 +2018-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",4144 +2018-11-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",37 +2018-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",36 +2018-11-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2018-11-01,"Vehicle Fuel Consumption","Louisiana","LA",35 +2018-11-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-11-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-11-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-11-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-11-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-11-01,"Vehicle Fuel Consumption","Nevada","NV",101 +2018-11-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-11-01,"Vehicle Fuel Consumption","Florida","FL",353 +2018-11-01,"Vehicle Fuel Consumption","Utah","UT",29 +2018-11-01,"Vehicle Fuel Consumption","Tennessee","TN",20 +2018-11-01,"Vehicle Fuel Consumption","Ohio","OH",41 +2018-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-11-01,"Vehicle Fuel Consumption","Arizona","AZ",136 +2018-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-12-01,"Commercial Consumption","Georgia","GA",8483 +2018-12-01,"Commercial Consumption","Florida","FL",6217 +2018-12-01,"Commercial Consumption","Alaska","AK",2017 +2018-12-01,"Commercial Consumption","New York","NY",40303 +2018-12-01,"Commercial Consumption","Nebraska","NE",4730 +2018-12-01,"Commercial Consumption","California","CA",28627 +2018-12-01,"Commercial Consumption","Washington","WA",7672 +2018-12-01,"Commercial Consumption","North Carolina","NC",7544 +2018-12-01,"Commercial Consumption","Missouri","MO",9467 +2018-12-01,"Commercial Consumption","Ohio","OH",24468 +2018-12-01,"Commercial Consumption","Iowa","IA",7499 +2018-12-01,"Commercial Consumption","Arkansas","AR",6589 +2018-12-01,"Commercial Consumption","Nevada","NV",4165 +2018-12-01,"Commercial Consumption","Minnesota","MN",14923 +2018-12-01,"Commercial Consumption","Wisconsin","WI",13393 +2018-12-01,"Commercial Consumption","Louisiana","LA",3863 +2018-12-01,"Commercial Consumption","North Dakota","ND",2083 +2018-12-01,"Commercial Consumption","Utah","UT",7093 +2018-12-01,"Commercial Consumption","Oklahoma","OK",7047 +2018-12-01,"Commercial Consumption","Virginia","VA",9389 +2018-12-01,"Commercial Consumption","South Dakota","SD",1819 +2018-12-01,"Commercial Consumption","Kentucky","KY",5177 +2018-12-01,"Commercial Consumption","Maryland","MD",9043 +2018-12-01,"Commercial Consumption","Idaho","ID",2919 +2018-12-01,"Commercial Consumption","Pennsylvania","PA",21953 +2018-12-01,"Commercial Consumption","Montana","MT",3542 +2018-12-01,"Commercial Consumption","Kansas","KS",5721 +2018-12-01,"Commercial Consumption","Vermont","VT",994 +2018-12-01,"Commercial Consumption","Hawaii","HI",217 +2018-12-01,"Commercial Consumption","Illinois","IL",30916 +2018-12-01,"Commercial Consumption","District of Columbia","DC",2082 +2018-12-01,"Commercial Consumption","Wyoming","WY",1913 +2018-12-01,"Commercial Consumption","West Virginia","WV",3125 +2018-12-01,"Commercial Consumption","New Jersey","NJ",22422 +2018-12-01,"Commercial Consumption","Delaware","DE",1978 +2018-12-01,"Commercial Consumption","Tennessee","TN",8171 +2018-12-01,"Commercial Consumption","Indiana","IN",11733 +2018-12-01,"Commercial Consumption","South Carolina","SC",2939 +2018-12-01,"Commercial Consumption","Colorado","CO",9266 +2018-12-01,"Commercial Consumption","New Mexico","NM",4748 +2018-12-01,"Commercial Consumption","Oregon","OR",4399 +2018-12-01,"Commercial Consumption","Massachusetts","MA",15503 +2018-12-01,"Commercial Consumption","New Hampshire","NH",1561 +2018-12-01,"Commercial Consumption","Maine","ME",1370 +2018-12-01,"Commercial Consumption","U.S.","U.S.",459067 +2018-12-01,"Commercial Consumption","Texas","TX",25171 +2018-12-01,"Commercial Consumption","Rhode Island","RI",1904 +2018-12-01,"Commercial Consumption","Connecticut","CT",7318 +2018-12-01,"Commercial Consumption","Alabama","AL",3658 +2018-12-01,"Commercial Consumption","Mississippi","MS",2768 +2018-12-01,"Commercial Consumption","Arizona","AZ",4013 +2018-12-01,"Commercial Consumption","Michigan","MI",25154 +2018-12-01,"Delivered to Consumers","Alaska","AK",7487 +2018-12-01,"Delivered to Consumers","New Jersey","NJ",87450 +2018-12-01,"Delivered to Consumers","Georgia","GA",72230 +2018-12-01,"Delivered to Consumers","Washington","WA",33972 +2018-12-01,"Delivered to Consumers","Minnesota","MN",54636 +2018-12-01,"Delivered to Consumers","U.S.","U.S.",2759042 +2018-12-01,"Delivered to Consumers","New Mexico","NM",21885 +2018-12-01,"Delivered to Consumers","Delaware","DE",7962 +2018-12-01,"Delivered to Consumers","South Dakota","SD",8844 +2018-12-01,"Delivered to Consumers","Michigan","MI",108209 +2018-12-01,"Delivered to Consumers","Arkansas","AR",27751 +2018-12-01,"Delivered to Consumers","Wisconsin","WI",61118 +2018-12-01,"Delivered to Consumers","North Carolina","NC",56658 +2018-12-01,"Delivered to Consumers","Texas","TX",339066 +2018-12-01,"Delivered to Consumers","Indiana","IN",89356 +2018-12-01,"Delivered to Consumers","Illinois","IL",127534 +2018-12-01,"Delivered to Consumers","Maryland","MD",30199 +2018-12-01,"Delivered to Consumers","Iowa","IA",43711 +2018-12-01,"Delivered to Consumers","Pennsylvania","PA",125515 +2018-12-01,"Delivered to Consumers","Nebraska","NE",19155 +2018-12-01,"Delivered to Consumers","Colorado","CO",51971 +2018-12-01,"Delivered to Consumers","Oregon","OR",29430 +2018-12-01,"Delivered to Consumers","New Hampshire","NH",4291 +2018-12-01,"Delivered to Consumers","Rhode Island","RI",9466 +2018-12-01,"Delivered to Consumers","Oklahoma","OK",56359 +2018-12-01,"Delivered to Consumers","Idaho","ID",14932 +2018-12-01,"Delivered to Consumers","Connecticut","CT",30380 +2018-12-01,"Delivered to Consumers","Maine","ME",4333 +2018-12-01,"Delivered to Consumers","Virginia","VA",64712 +2018-12-01,"Delivered to Consumers","Arizona","AZ",34637 +2018-12-01,"Delivered to Consumers","Florida","FL",103208 +2018-12-01,"Delivered to Consumers","District of Columbia","DC",4209 +2018-12-01,"Delivered to Consumers","West Virginia","WV",10743 +2018-12-01,"Delivered to Consumers","Montana","MT",9924 +2018-12-01,"Delivered to Consumers","Tennessee","TN",42046 +2018-12-01,"Delivered to Consumers","Alabama","AL",60996 +2018-12-01,"Delivered to Consumers","Utah","UT",28828 +2018-12-01,"Delivered to Consumers","Wyoming","WY",10833 +2018-12-01,"Delivered to Consumers","Vermont","VT",1816 +2018-12-01,"Delivered to Consumers","New York","NY",147807 +2018-12-01,"Delivered to Consumers","Kansas","KS",29989 +2018-12-01,"Delivered to Consumers","Missouri","MO",37715 +2018-12-01,"Delivered to Consumers","California","CA",211736 +2018-12-01,"Delivered to Consumers","South Carolina","SC",28881 +2018-12-01,"Delivered to Consumers","Hawaii","HI",273 +2018-12-01,"Delivered to Consumers","Ohio","OH",130988 +2018-12-01,"Delivered to Consumers","Kentucky","KY",30621 +2018-12-01,"Delivered to Consumers","Mississippi","MS",37711 +2018-12-01,"Delivered to Consumers","Massachusetts","MA",48068 +2018-12-01,"Delivered to Consumers","Nevada","NV",26396 +2018-12-01,"Delivered to Consumers","Louisiana","LA",125100 +2018-12-01,"Delivered to Consumers","North Dakota","ND",7898 +2018-12-01,"Electric Power Consumption","Louisiana","LA",16112 +2018-12-01,"Electric Power Consumption","Kansas","KS",1208 +2018-12-01,"Electric Power Consumption","Hawaii","HI",NA +2018-12-01,"Electric Power Consumption","Washington","WA",6135 +2018-12-01,"Electric Power Consumption","New Mexico","NM",9575 +2018-12-01,"Electric Power Consumption","Massachusetts","MA",8503 +2018-12-01,"Electric Power Consumption","Tennessee","TN",7344 +2018-12-01,"Electric Power Consumption","Maine","ME",474 +2018-12-01,"Electric Power Consumption","Kentucky","KY",6173 +2018-12-01,"Electric Power Consumption","North Dakota","ND",576 +2018-12-01,"Electric Power Consumption","Connecticut","CT",12669 +2018-12-01,"Electric Power Consumption","Oklahoma","OK",19356 +2018-12-01,"Electric Power Consumption","Wisconsin","WI",10911 +2018-12-01,"Electric Power Consumption","U.S.","U.S.",762221 +2018-12-01,"Electric Power Consumption","Nebraska","NE",357 +2018-12-01,"Electric Power Consumption","Mississippi","MS",19540 +2018-12-01,"Electric Power Consumption","Indiana","IN",15919 +2018-12-01,"Electric Power Consumption","Delaware","DE",1233 +2018-12-01,"Electric Power Consumption","Arizona","AZ",22760 +2018-12-01,"Electric Power Consumption","Virginia","VA",32319 +2018-12-01,"Electric Power Consumption","Idaho","ID",3300 +2018-12-01,"Electric Power Consumption","South Carolina","SC",10995 +2018-12-01,"Electric Power Consumption","Oregon","OR",13025 +2018-12-01,"Electric Power Consumption","Nevada","NV",13504 +2018-12-01,"Electric Power Consumption","Iowa","IA",3321 +2018-12-01,"Electric Power Consumption","Vermont","VT",0 +2018-12-01,"Electric Power Consumption","Ohio","OH",30879 +2018-12-01,"Electric Power Consumption","Georgia","GA",27801 +2018-12-01,"Electric Power Consumption","Rhode Island","RI",3661 +2018-12-01,"Electric Power Consumption","South Dakota","SD",533 +2018-12-01,"Electric Power Consumption","Montana","MT",655 +2018-12-01,"Electric Power Consumption","Florida","FL",84364 +2018-12-01,"Electric Power Consumption","California","CA",53379 +2018-12-01,"Electric Power Consumption","Texas","TX",113249 +2018-12-01,"Electric Power Consumption","North Carolina","NC",25036 +2018-12-01,"Electric Power Consumption","Missouri","MO",3425 +2018-12-01,"Electric Power Consumption","Maryland","MD",6831 +2018-12-01,"Electric Power Consumption","Colorado","CO",10029 +2018-12-01,"Electric Power Consumption","Minnesota","MN",2736 +2018-12-01,"Electric Power Consumption","West Virginia","WV",201 +2018-12-01,"Electric Power Consumption","Pennsylvania","PA",43478 +2018-12-01,"Electric Power Consumption","Wyoming","WY",170 +2018-12-01,"Electric Power Consumption","New Hampshire","NH",502 +2018-12-01,"Electric Power Consumption","Alabama","AL",30691 +2018-12-01,"Electric Power Consumption","Alaska","AK",2238 +2018-12-01,"Electric Power Consumption","New Jersey","NJ",21319 +2018-12-01,"Electric Power Consumption","Arkansas","AR",5702 +2018-12-01,"Electric Power Consumption","New York","NY",29602 +2018-12-01,"Electric Power Consumption","Utah","UT",5858 +2018-12-01,"Electric Power Consumption","Illinois","IL",7044 +2018-12-01,"Electric Power Consumption","Michigan","MI",17529 +2018-12-01,"Industrial Consumption","Oklahoma","OK",18034 +2018-12-01,"Industrial Consumption","Ohio","OH",30060 +2018-12-01,"Industrial Consumption","Michigan","MI",17317 +2018-12-01,"Industrial Consumption","Montana","MT",2237 +2018-12-01,"Industrial Consumption","Maryland","MD",1578 +2018-12-01,"Industrial Consumption","Hawaii","HI",7 +2018-12-01,"Industrial Consumption","Arizona","AZ",1939 +2018-12-01,"Industrial Consumption","Pennsylvania","PA",22028 +2018-12-01,"Industrial Consumption","Wyoming","WY",6556 +2018-12-01,"Industrial Consumption","Iowa","IA",22288 +2018-12-01,"Industrial Consumption","Rhode Island","RI",803 +2018-12-01,"Industrial Consumption","Georgia","GA",14373 +2018-12-01,"Industrial Consumption","District of Columbia","DC",NA +2018-12-01,"Industrial Consumption","Alaska","AK",620 +2018-12-01,"Industrial Consumption","North Dakota","ND",3420 +2018-12-01,"Industrial Consumption","Massachusetts","MA",5197 +2018-12-01,"Industrial Consumption","Colorado","CO",9741 +2018-12-01,"Industrial Consumption","New York","NY",8700 +2018-12-01,"Industrial Consumption","Nevada","NV",1694 +2018-12-01,"Industrial Consumption","Maine","ME",1997 +2018-12-01,"Industrial Consumption","Alabama","AL",20481 +2018-12-01,"Industrial Consumption","Virginia","VA",8588 +2018-12-01,"Industrial Consumption","West Virginia","WV",3406 +2018-12-01,"Industrial Consumption","Tennessee","TN",13158 +2018-12-01,"Industrial Consumption","New Jersey","NJ",6875 +2018-12-01,"Industrial Consumption","New Hampshire","NH",906 +2018-12-01,"Industrial Consumption","Connecticut","CT",2404 +2018-12-01,"Industrial Consumption","Delaware","DE",2872 +2018-12-01,"Industrial Consumption","North Carolina","NC",11033 +2018-12-01,"Industrial Consumption","California","CA",64328 +2018-12-01,"Industrial Consumption","Vermont","VT",230 +2018-12-01,"Industrial Consumption","Minnesota","MN",16530 +2018-12-01,"Industrial Consumption","Florida","FL",10268 +2018-12-01,"Industrial Consumption","Mississippi","MS",11263 +2018-12-01,"Industrial Consumption","South Carolina","SC",8851 +2018-12-01,"Industrial Consumption","Kentucky","KY",11460 +2018-12-01,"Industrial Consumption","Indiana","IN",39990 +2018-12-01,"Industrial Consumption","Illinois","IL",25964 +2018-12-01,"Industrial Consumption","Washington","WA",6995 +2018-12-01,"Industrial Consumption","Utah","UT",3703 +2018-12-01,"Industrial Consumption","Oregon","OR",4754 +2018-12-01,"Industrial Consumption","Louisiana","LA",99119 +2018-12-01,"Industrial Consumption","South Dakota","SD",4344 +2018-12-01,"Industrial Consumption","U.S.","U.S.",767892 +2018-12-01,"Industrial Consumption","Arkansas","AR",9827 +2018-12-01,"Industrial Consumption","Texas","TX",164134 +2018-12-01,"Industrial Consumption","Nebraska","NE",7686 +2018-12-01,"Industrial Consumption","Wisconsin","WI",16380 +2018-12-01,"Industrial Consumption","Missouri","MO",6566 +2018-12-01,"Industrial Consumption","New Mexico","NM",1286 +2018-12-01,"Industrial Consumption","Kansas","KS",12344 +2018-12-01,"Industrial Consumption","Idaho","ID",3558 +2018-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",152744 +2018-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",87724 +2018-12-01,"Residential Consumption","Louisiana","LA",5969 +2018-12-01,"Residential Consumption","Iowa","IA",10599 +2018-12-01,"Residential Consumption","Virginia","VA",14342 +2018-12-01,"Residential Consumption","Georgia","GA",21401 +2018-12-01,"Residential Consumption","Maine","ME",492 +2018-12-01,"Residential Consumption","Florida","FL",1993 +2018-12-01,"Residential Consumption","Massachusetts","MA",18853 +2018-12-01,"Residential Consumption","Kentucky","KY",7804 +2018-12-01,"Residential Consumption","Colorado","CO",22828 +2018-12-01,"Residential Consumption","South Carolina","SC",6086 +2018-12-01,"Residential Consumption","Rhode Island","RI",3090 +2018-12-01,"Residential Consumption","Kansas","KS",10657 +2018-12-01,"Residential Consumption","Alaska","AK",2612 +2018-12-01,"Residential Consumption","New York","NY",69121 +2018-12-01,"Residential Consumption","Ohio","OH",45539 +2018-12-01,"Residential Consumption","Michigan","MI",48210 +2018-12-01,"Residential Consumption","North Dakota","ND",1819 +2018-12-01,"Residential Consumption","Idaho","ID",5150 +2018-12-01,"Residential Consumption","Oklahoma","OK",11782 +2018-12-01,"Residential Consumption","Missouri","MO",18222 +2018-12-01,"Residential Consumption","California","CA",63275 +2018-12-01,"Residential Consumption","U.S.","U.S.",765580 +2018-12-01,"Residential Consumption","Texas","TX",36361 +2018-12-01,"Residential Consumption","Connecticut","CT",7970 +2018-12-01,"Residential Consumption","Tennessee","TN",13352 +2018-12-01,"Residential Consumption","South Dakota","SD",2149 +2018-12-01,"Residential Consumption","New Jersey","NJ",36799 +2018-12-01,"Residential Consumption","North Carolina","NC",12929 +2018-12-01,"Residential Consumption","Mississippi","MS",4137 +2018-12-01,"Residential Consumption","Hawaii","HI",49 +2018-12-01,"Residential Consumption","West Virginia","WV",4011 +2018-12-01,"Residential Consumption","Wisconsin","WI",20397 +2018-12-01,"Residential Consumption","Utah","UT",12146 +2018-12-01,"Residential Consumption","Nebraska","NE",6370 +2018-12-01,"Residential Consumption","Maryland","MD",12717 +2018-12-01,"Residential Consumption","District of Columbia","DC",2091 +2018-12-01,"Residential Consumption","Pennsylvania","PA",37903 +2018-12-01,"Residential Consumption","Indiana","IN",21714 +2018-12-01,"Residential Consumption","Arkansas","AR",5629 +2018-12-01,"Residential Consumption","Alabama","AL",6159 +2018-12-01,"Residential Consumption","Wyoming","WY",2193 +2018-12-01,"Residential Consumption","Illinois","IL",63598 +2018-12-01,"Residential Consumption","Vermont","VT",592 +2018-12-01,"Residential Consumption","Nevada","NV",6929 +2018-12-01,"Residential Consumption","Minnesota","MN",20409 +2018-12-01,"Residential Consumption","Montana","MT",3491 +2018-12-01,"Residential Consumption","Washington","WA",13155 +2018-12-01,"Residential Consumption","Oregon","OR",7246 +2018-12-01,"Residential Consumption","New Mexico","NM",6257 +2018-12-01,"Residential Consumption","New Hampshire","NH",1321 +2018-12-01,"Residential Consumption","Delaware","DE",1879 +2018-12-01,"Residential Consumption","Arizona","AZ",5784 +2018-12-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2018-12-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2018-12-01,"Vehicle Fuel Consumption","Arkansas","AR",4 +2018-12-01,"Vehicle Fuel Consumption","Utah","UT",30 +2018-12-01,"Vehicle Fuel Consumption","Tennessee","TN",21 +2018-12-01,"Vehicle Fuel Consumption","Iowa","IA",4 +2018-12-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2018-12-01,"Vehicle Fuel Consumption","Missouri","MO",34 +2018-12-01,"Vehicle Fuel Consumption","Louisiana","LA",36 +2018-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2018-12-01,"Vehicle Fuel Consumption","Kentucky","KY",7 +2018-12-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2018-12-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2018-12-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2018-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2018-12-01,"Vehicle Fuel Consumption","Vermont","VT",0 +2018-12-01,"Vehicle Fuel Consumption","New York","NY",82 +2018-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2018-12-01,"Vehicle Fuel Consumption","Florida","FL",365 +2018-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2018-12-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2018-12-01,"Vehicle Fuel Consumption","Georgia","GA",173 +2018-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2018-12-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2018-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2018-12-01,"Vehicle Fuel Consumption","Maryland","MD",32 +2018-12-01,"Vehicle Fuel Consumption","Colorado","CO",108 +2018-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2018-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2018-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2018-12-01,"Vehicle Fuel Consumption","Indiana","IN",1 +2018-12-01,"Vehicle Fuel Consumption","Oregon","OR",6 +2018-12-01,"Vehicle Fuel Consumption","Mississippi","MS",3 +2018-12-01,"Vehicle Fuel Consumption","North Carolina","NC",116 +2018-12-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2018-12-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2018-12-01,"Vehicle Fuel Consumption","California","CA",2128 +2018-12-01,"Vehicle Fuel Consumption","New Mexico","NM",19 +2018-12-01,"Vehicle Fuel Consumption","Washington","WA",15 +2018-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",153 +2018-12-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2018-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2018-12-01,"Vehicle Fuel Consumption","Arizona","AZ",141 +2018-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",0 +2018-12-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2018-12-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2018-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",138 +2018-12-01,"Vehicle Fuel Consumption","Kansas","KS",58 +2018-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2018-12-01,"Vehicle Fuel Consumption","Texas","TX",152 +2018-12-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2018-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",4282 +2019-01-01,"Commercial Consumption","Washington","WA",8003 +2019-01-01,"Commercial Consumption","North Carolina","NC",9858 +2019-01-01,"Commercial Consumption","Utah","UT",7643 +2019-01-01,"Commercial Consumption","Kentucky","KY",6937 +2019-01-01,"Commercial Consumption","Idaho","ID",3007 +2019-01-01,"Commercial Consumption","California","CA",27444 +2019-01-01,"Commercial Consumption","West Virginia","WV",3719 +2019-01-01,"Commercial Consumption","Massachusetts","MA",20316 +2019-01-01,"Commercial Consumption","Maine","ME",1644 +2019-01-01,"Commercial Consumption","U.S.","U.S.",554325 +2019-01-01,"Commercial Consumption","Texas","TX",26819 +2019-01-01,"Commercial Consumption","Rhode Island","RI",2298 +2019-01-01,"Commercial Consumption","Tennessee","TN",10262 +2019-01-01,"Commercial Consumption","South Carolina","SC",3863 +2019-01-01,"Commercial Consumption","New Mexico","NM",4514 +2019-01-01,"Commercial Consumption","Pennsylvania","PA",31830 +2019-01-01,"Commercial Consumption","New Jersey","NJ",24878 +2019-01-01,"Commercial Consumption","Montana","MT",3595 +2019-01-01,"Commercial Consumption","Maryland","MD",12519 +2019-01-01,"Commercial Consumption","Illinois","IL",40527 +2019-01-01,"Commercial Consumption","District of Columbia","DC",2456 +2019-01-01,"Commercial Consumption","Wyoming","WY",1923 +2019-01-01,"Commercial Consumption","Minnesota","MN",18276 +2019-01-01,"Commercial Consumption","Oklahoma","OK",8449 +2019-01-01,"Commercial Consumption","South Dakota","SD",2156 +2019-01-01,"Commercial Consumption","Vermont","VT",1142 +2019-01-01,"Commercial Consumption","Ohio","OH",32716 +2019-01-01,"Commercial Consumption","Iowa","IA",9692 +2019-01-01,"Commercial Consumption","Connecticut","CT",8623 +2019-01-01,"Commercial Consumption","Alabama","AL",4868 +2019-01-01,"Commercial Consumption","Nebraska","NE",5527 +2019-01-01,"Commercial Consumption","Delaware","DE",2396 +2019-01-01,"Commercial Consumption","Arizona","AZ",4477 +2019-01-01,"Commercial Consumption","Missouri","MO",11989 +2019-01-01,"Commercial Consumption","Georgia","GA",9737 +2019-01-01,"Commercial Consumption","Kansas","KS",6460 +2019-01-01,"Commercial Consumption","Florida","FL",6633 +2019-01-01,"Commercial Consumption","Hawaii","HI",237 +2019-01-01,"Commercial Consumption","Alaska","AK",2111 +2019-01-01,"Commercial Consumption","Mississippi","MS",3327 +2019-01-01,"Commercial Consumption","Indiana","IN",16162 +2019-01-01,"Commercial Consumption","Louisiana","LA",4449 +2019-01-01,"Commercial Consumption","North Dakota","ND",2598 +2019-01-01,"Commercial Consumption","Colorado","CO",9638 +2019-01-01,"Commercial Consumption","Oregon","OR",4455 +2019-01-01,"Commercial Consumption","New York","NY",51352 +2019-01-01,"Commercial Consumption","Virginia","VA",12344 +2019-01-01,"Commercial Consumption","Wisconsin","WI",16963 +2019-01-01,"Commercial Consumption","New Hampshire","NH",1975 +2019-01-01,"Commercial Consumption","Arkansas","AR",7448 +2019-01-01,"Commercial Consumption","Nevada","NV",4553 +2019-01-01,"Commercial Consumption","Michigan","MI",29516 +2019-01-01,"Delivered to Consumers","Wyoming","WY",10639 +2019-01-01,"Delivered to Consumers","Oklahoma","OK",66353 +2019-01-01,"Delivered to Consumers","Ohio","OH",153966 +2019-01-01,"Delivered to Consumers","Iowa","IA",50464 +2019-01-01,"Delivered to Consumers","North Carolina","NC",62834 +2019-01-01,"Delivered to Consumers","Colorado","CO",53863 +2019-01-01,"Delivered to Consumers","Utah","UT",30972 +2019-01-01,"Delivered to Consumers","Michigan","MI",135875 +2019-01-01,"Delivered to Consumers","Alabama","AL",62410 +2019-01-01,"Delivered to Consumers","Virginia","VA",74538 +2019-01-01,"Delivered to Consumers","Missouri","MO",46869 +2019-01-01,"Delivered to Consumers","California","CA",211960 +2019-01-01,"Delivered to Consumers","Nevada","NV",29406 +2019-01-01,"Delivered to Consumers","North Dakota","ND",9058 +2019-01-01,"Delivered to Consumers","District of Columbia","DC",4594 +2019-01-01,"Delivered to Consumers","Indiana","IN",107163 +2019-01-01,"Delivered to Consumers","Maryland","MD",38299 +2019-01-01,"Delivered to Consumers","Kansas","KS",35309 +2019-01-01,"Delivered to Consumers","Kentucky","KY",40381 +2019-01-01,"Delivered to Consumers","Connecticut","CT",32475 +2019-01-01,"Delivered to Consumers","Nebraska","NE",21184 +2019-01-01,"Delivered to Consumers","Washington","WA",38647 +2019-01-01,"Delivered to Consumers","Vermont","VT",2156 +2019-01-01,"Delivered to Consumers","Alaska","AK",8210 +2019-01-01,"Delivered to Consumers","Idaho","ID",15491 +2019-01-01,"Delivered to Consumers","Wisconsin","WI",75871 +2019-01-01,"Delivered to Consumers","New Jersey","NJ",96187 +2019-01-01,"Delivered to Consumers","Georgia","GA",81967 +2019-01-01,"Delivered to Consumers","New Hampshire","NH",5805 +2019-01-01,"Delivered to Consumers","U.S.","U.S.",3161732 +2019-01-01,"Delivered to Consumers","West Virginia","WV",12607 +2019-01-01,"Delivered to Consumers","Rhode Island","RI",9646 +2019-01-01,"Delivered to Consumers","Montana","MT",9839 +2019-01-01,"Delivered to Consumers","Minnesota","MN",65925 +2019-01-01,"Delivered to Consumers","New Mexico","NM",22064 +2019-01-01,"Delivered to Consumers","Delaware","DE",9637 +2019-01-01,"Delivered to Consumers","South Dakota","SD",9699 +2019-01-01,"Delivered to Consumers","New York","NY",180750 +2019-01-01,"Delivered to Consumers","Tennessee","TN",50170 +2019-01-01,"Delivered to Consumers","Arkansas","AR",34404 +2019-01-01,"Delivered to Consumers","Massachusetts","MA",62226 +2019-01-01,"Delivered to Consumers","South Carolina","SC",32588 +2019-01-01,"Delivered to Consumers","Maine","ME",5354 +2019-01-01,"Delivered to Consumers","Arizona","AZ",36995 +2019-01-01,"Delivered to Consumers","Illinois","IL",167753 +2019-01-01,"Delivered to Consumers","Pennsylvania","PA",158322 +2019-01-01,"Delivered to Consumers","Mississippi","MS",45485 +2019-01-01,"Delivered to Consumers","Texas","TX",365667 +2019-01-01,"Delivered to Consumers","Oregon","OR",30896 +2019-01-01,"Delivered to Consumers","Louisiana","LA",138783 +2019-01-01,"Delivered to Consumers","Hawaii","HI",302 +2019-01-01,"Delivered to Consumers","Florida","FL",109672 +2019-01-01,"Electric Power Consumption","Massachusetts","MA",10648 +2019-01-01,"Electric Power Consumption","Kansas","KS",1570 +2019-01-01,"Electric Power Consumption","Ohio","OH",30221 +2019-01-01,"Electric Power Consumption","North Dakota","ND",867 +2019-01-01,"Electric Power Consumption","Connecticut","CT",11300 +2019-01-01,"Electric Power Consumption","California","CA",49576 +2019-01-01,"Electric Power Consumption","Alabama","AL",28621 +2019-01-01,"Electric Power Consumption","Colorado","CO",10251 +2019-01-01,"Electric Power Consumption","Texas","TX",128961 +2019-01-01,"Electric Power Consumption","Illinois","IL",11105 +2019-01-01,"Electric Power Consumption","U.S.","U.S.",848519 +2019-01-01,"Electric Power Consumption","New Mexico","NM",7732 +2019-01-01,"Electric Power Consumption","Arkansas","AR",10302 +2019-01-01,"Electric Power Consumption","South Dakota","SD",627 +2019-01-01,"Electric Power Consumption","Hawaii","HI",NA +2019-01-01,"Electric Power Consumption","Delaware","DE",1196 +2019-01-01,"Electric Power Consumption","Washington","WA",10228 +2019-01-01,"Electric Power Consumption","Idaho","ID",3645 +2019-01-01,"Electric Power Consumption","New York","NY",30637 +2019-01-01,"Electric Power Consumption","Pennsylvania","PA",52305 +2019-01-01,"Electric Power Consumption","Maine","ME",1034 +2019-01-01,"Electric Power Consumption","Montana","MT",515 +2019-01-01,"Electric Power Consumption","Maryland","MD",7157 +2019-01-01,"Electric Power Consumption","Georgia","GA",32684 +2019-01-01,"Electric Power Consumption","Florida","FL",89296 +2019-01-01,"Electric Power Consumption","Louisiana","LA",25474 +2019-01-01,"Electric Power Consumption","South Carolina","SC",12904 +2019-01-01,"Electric Power Consumption","Rhode Island","RI",2723 +2019-01-01,"Electric Power Consumption","Minnesota","MN",4246 +2019-01-01,"Electric Power Consumption","Wyoming","WY",162 +2019-01-01,"Electric Power Consumption","Vermont","VT",1 +2019-01-01,"Electric Power Consumption","Nebraska","NE",259 +2019-01-01,"Electric Power Consumption","New Hampshire","NH",1248 +2019-01-01,"Electric Power Consumption","Alaska","AK",2647 +2019-01-01,"Electric Power Consumption","Oregon","OR",13906 +2019-01-01,"Electric Power Consumption","West Virginia","WV",418 +2019-01-01,"Electric Power Consumption","North Carolina","NC",25607 +2019-01-01,"Electric Power Consumption","Mississippi","MS",25800 +2019-01-01,"Electric Power Consumption","Indiana","IN",19038 +2019-01-01,"Electric Power Consumption","Arizona","AZ",21865 +2019-01-01,"Electric Power Consumption","New Jersey","NJ",21310 +2019-01-01,"Electric Power Consumption","Oklahoma","OK",24652 +2019-01-01,"Electric Power Consumption","Michigan","MI",21874 +2019-01-01,"Electric Power Consumption","Wisconsin","WI",12089 +2019-01-01,"Electric Power Consumption","Nevada","NV",14501 +2019-01-01,"Electric Power Consumption","Iowa","IA",3379 +2019-01-01,"Electric Power Consumption","Kentucky","KY",9610 +2019-01-01,"Electric Power Consumption","Virginia","VA",35076 +2019-01-01,"Electric Power Consumption","Utah","UT",5501 +2019-01-01,"Electric Power Consumption","Tennessee","TN",9527 +2019-01-01,"Electric Power Consumption","Missouri","MO",4227 +2019-01-01,"Industrial Consumption","Missouri","MO",7488 +2019-01-01,"Industrial Consumption","New Mexico","NM",1578 +2019-01-01,"Industrial Consumption","Texas","TX",164545 +2019-01-01,"Industrial Consumption","Virginia","VA",8544 +2019-01-01,"Industrial Consumption","Vermont","VT",254 +2019-01-01,"Industrial Consumption","Alaska","AK",648 +2019-01-01,"Industrial Consumption","Massachusetts","MA",5823 +2019-01-01,"Industrial Consumption","Oklahoma","OK",18707 +2019-01-01,"Industrial Consumption","Louisiana","LA",101564 +2019-01-01,"Industrial Consumption","Washington","WA",7074 +2019-01-01,"Industrial Consumption","Mississippi","MS",11367 +2019-01-01,"Industrial Consumption","New Jersey","NJ",5415 +2019-01-01,"Industrial Consumption","Minnesota","MN",16897 +2019-01-01,"Industrial Consumption","Rhode Island","RI",835 +2019-01-01,"Industrial Consumption","Maryland","MD",1743 +2019-01-01,"Industrial Consumption","Pennsylvania","PA",23684 +2019-01-01,"Industrial Consumption","California","CA",65438 +2019-01-01,"Industrial Consumption","Alabama","AL",20939 +2019-01-01,"Industrial Consumption","Connecticut","CT",2734 +2019-01-01,"Industrial Consumption","Arizona","AZ",2044 +2019-01-01,"Industrial Consumption","Idaho","ID",3855 +2019-01-01,"Industrial Consumption","Florida","FL",10861 +2019-01-01,"Industrial Consumption","District of Columbia","DC",NA +2019-01-01,"Industrial Consumption","Kansas","KS",13194 +2019-01-01,"Industrial Consumption","Oregon","OR",5229 +2019-01-01,"Industrial Consumption","Nevada","NV",1724 +2019-01-01,"Industrial Consumption","Arkansas","AR",10016 +2019-01-01,"Industrial Consumption","New Hampshire","NH",942 +2019-01-01,"Industrial Consumption","Michigan","MI",20084 +2019-01-01,"Industrial Consumption","Kentucky","KY",13128 +2019-01-01,"Industrial Consumption","Delaware","DE",3530 +2019-01-01,"Industrial Consumption","North Carolina","NC",12025 +2019-01-01,"Industrial Consumption","Georgia","GA",14832 +2019-01-01,"Industrial Consumption","Colorado","CO",10231 +2019-01-01,"Industrial Consumption","Ohio","OH",33210 +2019-01-01,"Industrial Consumption","Utah","UT",3988 +2019-01-01,"Industrial Consumption","U.S.","U.S.",800585 +2019-01-01,"Industrial Consumption","Maine","ME",2110 +2019-01-01,"Industrial Consumption","South Carolina","SC",9015 +2019-01-01,"Industrial Consumption","Wyoming","WY",6337 +2019-01-01,"Industrial Consumption","Indiana","IN",42103 +2019-01-01,"Industrial Consumption","Montana","MT",2154 +2019-01-01,"Industrial Consumption","Hawaii","HI",8 +2019-01-01,"Industrial Consumption","Nebraska","NE",7817 +2019-01-01,"Industrial Consumption","Wisconsin","WI",17695 +2019-01-01,"Industrial Consumption","Tennessee","TN",14759 +2019-01-01,"Industrial Consumption","Iowa","IA",23113 +2019-01-01,"Industrial Consumption","North Dakota","ND",3202 +2019-01-01,"Industrial Consumption","South Dakota","SD",4259 +2019-01-01,"Industrial Consumption","New York","NY",9842 +2019-01-01,"Industrial Consumption","West Virginia","WV",3452 +2019-01-01,"Industrial Consumption","Illinois","IL",30549 +2019-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",148790 +2019-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",113780 +2019-01-01,"Residential Consumption","Texas","TX",45207 +2019-01-01,"Residential Consumption","Rhode Island","RI",3781 +2019-01-01,"Residential Consumption","Iowa","IA",14277 +2019-01-01,"Residential Consumption","Florida","FL",2460 +2019-01-01,"Residential Consumption","Massachusetts","MA",25429 +2019-01-01,"Residential Consumption","Kansas","KS",14024 +2019-01-01,"Residential Consumption","South Carolina","SC",6795 +2019-01-01,"Residential Consumption","Louisiana","LA",7262 +2019-01-01,"Residential Consumption","Vermont","VT",758 +2019-01-01,"Residential Consumption","Maryland","MD",16821 +2019-01-01,"Residential Consumption","Pennsylvania","PA",50360 +2019-01-01,"Residential Consumption","U.S.","U.S.",953787 +2019-01-01,"Residential Consumption","Oregon","OR",7302 +2019-01-01,"Residential Consumption","Tennessee","TN",15593 +2019-01-01,"Residential Consumption","Nebraska","NE",7568 +2019-01-01,"Residential Consumption","Nevada","NV",8520 +2019-01-01,"Residential Consumption","New Mexico","NM",8222 +2019-01-01,"Residential Consumption","Idaho","ID",4980 +2019-01-01,"Residential Consumption","Arkansas","AR",6631 +2019-01-01,"Residential Consumption","Colorado","CO",23587 +2019-01-01,"Residential Consumption","California","CA",67257 +2019-01-01,"Residential Consumption","Wyoming","WY",2215 +2019-01-01,"Residential Consumption","Mississippi","MS",4991 +2019-01-01,"Residential Consumption","Utah","UT",13813 +2019-01-01,"Residential Consumption","New Jersey","NJ",44555 +2019-01-01,"Residential Consumption","Washington","WA",13327 +2019-01-01,"Residential Consumption","Alaska","AK",2803 +2019-01-01,"Residential Consumption","New York","NY",88837 +2019-01-01,"Residential Consumption","Hawaii","HI",58 +2019-01-01,"Residential Consumption","Michigan","MI",64401 +2019-01-01,"Residential Consumption","South Dakota","SD",2657 +2019-01-01,"Residential Consumption","Georgia","GA",24561 +2019-01-01,"Residential Consumption","Alabama","AL",7973 +2019-01-01,"Residential Consumption","Ohio","OH",57776 +2019-01-01,"Residential Consumption","Connecticut","CT",9800 +2019-01-01,"Residential Consumption","Wisconsin","WI",29084 +2019-01-01,"Residential Consumption","Minnesota","MN",26464 +2019-01-01,"Residential Consumption","Maine","ME",566 +2019-01-01,"Residential Consumption","North Dakota","ND",2391 +2019-01-01,"Residential Consumption","New Hampshire","NH",1639 +2019-01-01,"Residential Consumption","Kentucky","KY",10700 +2019-01-01,"Residential Consumption","Missouri","MO",23133 +2019-01-01,"Residential Consumption","Delaware","DE",2515 +2019-01-01,"Residential Consumption","Illinois","IL",85562 +2019-01-01,"Residential Consumption","District of Columbia","DC",2101 +2019-01-01,"Residential Consumption","Indiana","IN",29860 +2019-01-01,"Residential Consumption","Montana","MT",3575 +2019-01-01,"Residential Consumption","Oklahoma","OK",14397 +2019-01-01,"Residential Consumption","West Virginia","WV",5016 +2019-01-01,"Residential Consumption","North Carolina","NC",15211 +2019-01-01,"Residential Consumption","Virginia","VA",18500 +2019-01-01,"Residential Consumption","Arizona","AZ",8471 +2019-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-01-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",143 +2019-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-01-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-01-01,"Vehicle Fuel Consumption","Arizona","AZ",138 +2019-01-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-01-01,"Vehicle Fuel Consumption","Louisiana","LA",34 +2019-01-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-01-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2019-01-01,"Vehicle Fuel Consumption","Missouri","MO",32 +2019-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-01-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-01-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-01-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",29 +2019-01-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2019-01-01,"Vehicle Fuel Consumption","Minnesota","MN",43 +2019-01-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-01-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2019-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2019-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",38 +2019-01-01,"Vehicle Fuel Consumption","Florida","FL",422 +2019-01-01,"Vehicle Fuel Consumption","Colorado","CO",156 +2019-01-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2019-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-01-01,"Vehicle Fuel Consumption","Utah","UT",27 +2019-01-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-01-01,"Vehicle Fuel Consumption","Texas","TX",135 +2019-01-01,"Vehicle Fuel Consumption","Maryland","MD",58 +2019-01-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-01-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-01-01,"Vehicle Fuel Consumption","California","CA",2244 +2019-01-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-01-01,"Vehicle Fuel Consumption","New York","NY",82 +2019-01-01,"Vehicle Fuel Consumption","Nevada","NV",108 +2019-01-01,"Vehicle Fuel Consumption","Georgia","GA",152 +2019-01-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-01-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2019-01-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-01-01,"Vehicle Fuel Consumption","Kansas","KS",62 +2019-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-01-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-01-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-01-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-01-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2019-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2019-02-01,"Commercial Consumption","Washington","WA",8649 +2019-02-01,"Commercial Consumption","South Carolina","SC",2552 +2019-02-01,"Commercial Consumption","Oregon","OR",4890 +2019-02-01,"Commercial Consumption","Wisconsin","WI",14753 +2019-02-01,"Commercial Consumption","Idaho","ID",2812 +2019-02-01,"Commercial Consumption","Mississippi","MS",2200 +2019-02-01,"Commercial Consumption","New Mexico","NM",3551 +2019-02-01,"Commercial Consumption","Georgia","GA",6135 +2019-02-01,"Commercial Consumption","Vermont","VT",911 +2019-02-01,"Commercial Consumption","Iowa","IA",8582 +2019-02-01,"Commercial Consumption","West Virginia","WV",2893 +2019-02-01,"Commercial Consumption","Missouri","MO",10638 +2019-02-01,"Commercial Consumption","South Dakota","SD",2263 +2019-02-01,"Commercial Consumption","Florida","FL",5815 +2019-02-01,"Commercial Consumption","Rhode Island","RI",1842 +2019-02-01,"Commercial Consumption","Connecticut","CT",7205 +2019-02-01,"Commercial Consumption","Delaware","DE",1871 +2019-02-01,"Commercial Consumption","Michigan","MI",27193 +2019-02-01,"Commercial Consumption","North Dakota","ND",2694 +2019-02-01,"Commercial Consumption","Minnesota","MN",17937 +2019-02-01,"Commercial Consumption","Massachusetts","MA",16787 +2019-02-01,"Commercial Consumption","Louisiana","LA",2894 +2019-02-01,"Commercial Consumption","Illinois","IL",34453 +2019-02-01,"Commercial Consumption","Wyoming","WY",1834 +2019-02-01,"Commercial Consumption","Kansas","KS",6332 +2019-02-01,"Commercial Consumption","Ohio","OH",25548 +2019-02-01,"Commercial Consumption","Arkansas","AR",6141 +2019-02-01,"Commercial Consumption","Alabama","AL",2268 +2019-02-01,"Commercial Consumption","Arizona","AZ",4086 +2019-02-01,"Commercial Consumption","North Carolina","NC",6619 +2019-02-01,"Commercial Consumption","Oklahoma","OK",7538 +2019-02-01,"Commercial Consumption","Virginia","VA",9555 +2019-02-01,"Commercial Consumption","U.S.","U.S.",472246 +2019-02-01,"Commercial Consumption","Hawaii","HI",210 +2019-02-01,"Commercial Consumption","Alaska","AK",2134 +2019-02-01,"Commercial Consumption","Indiana","IN",12754 +2019-02-01,"Commercial Consumption","Colorado","CO",8613 +2019-02-01,"Commercial Consumption","Utah","UT",6832 +2019-02-01,"Commercial Consumption","Pennsylvania","PA",23308 +2019-02-01,"Commercial Consumption","New Jersey","NJ",22350 +2019-02-01,"Commercial Consumption","New Hampshire","NH",1581 +2019-02-01,"Commercial Consumption","Kentucky","KY",5227 +2019-02-01,"Commercial Consumption","Texas","TX",24045 +2019-02-01,"Commercial Consumption","Maryland","MD",9295 +2019-02-01,"Commercial Consumption","California","CA",30619 +2019-02-01,"Commercial Consumption","New York","NY",41248 +2019-02-01,"Commercial Consumption","Nebraska","NE",5760 +2019-02-01,"Commercial Consumption","Nevada","NV",4323 +2019-02-01,"Commercial Consumption","District of Columbia","DC",2169 +2019-02-01,"Commercial Consumption","Montana","MT",4368 +2019-02-01,"Commercial Consumption","Maine","ME",1438 +2019-02-01,"Commercial Consumption","Tennessee","TN",6529 +2019-02-01,"Delivered to Consumers","Wyoming","WY",9850 +2019-02-01,"Delivered to Consumers","Illinois","IL",141687 +2019-02-01,"Delivered to Consumers","Arkansas","AR",33467 +2019-02-01,"Delivered to Consumers","Mississippi","MS",39688 +2019-02-01,"Delivered to Consumers","Louisiana","LA",122025 +2019-02-01,"Delivered to Consumers","District of Columbia","DC",4354 +2019-02-01,"Delivered to Consumers","New Mexico","NM",18917 +2019-02-01,"Delivered to Consumers","Vermont","VT",1822 +2019-02-01,"Delivered to Consumers","Connecticut","CT",27827 +2019-02-01,"Delivered to Consumers","Oregon","OR",30196 +2019-02-01,"Delivered to Consumers","Oklahoma","OK",57219 +2019-02-01,"Delivered to Consumers","Tennessee","TN",39397 +2019-02-01,"Delivered to Consumers","Ohio","OH",134218 +2019-02-01,"Delivered to Consumers","Texas","TX",313223 +2019-02-01,"Delivered to Consumers","New Jersey","NJ",87243 +2019-02-01,"Delivered to Consumers","Minnesota","MN",65208 +2019-02-01,"Delivered to Consumers","South Dakota","SD",10295 +2019-02-01,"Delivered to Consumers","Rhode Island","RI",7960 +2019-02-01,"Delivered to Consumers","Montana","MT",11876 +2019-02-01,"Delivered to Consumers","Maryland","MD",33609 +2019-02-01,"Delivered to Consumers","Hawaii","HI",268 +2019-02-01,"Delivered to Consumers","Alaska","AK",7170 +2019-02-01,"Delivered to Consumers","Kentucky","KY",29735 +2019-02-01,"Delivered to Consumers","Alabama","AL",52041 +2019-02-01,"Delivered to Consumers","Wisconsin","WI",67093 +2019-02-01,"Delivered to Consumers","Massachusetts","MA",52258 +2019-02-01,"Delivered to Consumers","South Carolina","SC",28247 +2019-02-01,"Delivered to Consumers","Maine","ME",4696 +2019-02-01,"Delivered to Consumers","Georgia","GA",63219 +2019-02-01,"Delivered to Consumers","New Hampshire","NH",4488 +2019-02-01,"Delivered to Consumers","Utah","UT",28038 +2019-02-01,"Delivered to Consumers","Indiana","IN",90599 +2019-02-01,"Delivered to Consumers","Delaware","DE",8236 +2019-02-01,"Delivered to Consumers","Iowa","IA",46369 +2019-02-01,"Delivered to Consumers","Washington","WA",35598 +2019-02-01,"Delivered to Consumers","Virginia","VA",67606 +2019-02-01,"Delivered to Consumers","Missouri","MO",41119 +2019-02-01,"Delivered to Consumers","West Virginia","WV",9985 +2019-02-01,"Delivered to Consumers","Nebraska","NE",21534 +2019-02-01,"Delivered to Consumers","Colorado","CO",50198 +2019-02-01,"Delivered to Consumers","Nevada","NV",27412 +2019-02-01,"Delivered to Consumers","Florida","FL",103110 +2019-02-01,"Delivered to Consumers","U.S.","U.S.",2783640 +2019-02-01,"Delivered to Consumers","New York","NY",151919 +2019-02-01,"Delivered to Consumers","Kansas","KS",33143 +2019-02-01,"Delivered to Consumers","Idaho","ID",14309 +2019-02-01,"Delivered to Consumers","Michigan","MI",114202 +2019-02-01,"Delivered to Consumers","Pennsylvania","PA",134240 +2019-02-01,"Delivered to Consumers","North Carolina","NC",53864 +2019-02-01,"Delivered to Consumers","California","CA",210904 +2019-02-01,"Delivered to Consumers","Arizona","AZ",32949 +2019-02-01,"Delivered to Consumers","North Dakota","ND",9013 +2019-02-01,"Electric Power Consumption","Massachusetts","MA",9198 +2019-02-01,"Electric Power Consumption","West Virginia","WV",286 +2019-02-01,"Electric Power Consumption","Nevada","NV",12978 +2019-02-01,"Electric Power Consumption","Iowa","IA",3281 +2019-02-01,"Electric Power Consumption","Maine","ME",837 +2019-02-01,"Electric Power Consumption","Washington","WA",4584 +2019-02-01,"Electric Power Consumption","New York","NY",27605 +2019-02-01,"Electric Power Consumption","Tennessee","TN",9235 +2019-02-01,"Electric Power Consumption","Nebraska","NE",664 +2019-02-01,"Electric Power Consumption","Ohio","OH",31748 +2019-02-01,"Electric Power Consumption","Georgia","GA",29285 +2019-02-01,"Electric Power Consumption","New Mexico","NM",7220 +2019-02-01,"Electric Power Consumption","Rhode Island","RI",2201 +2019-02-01,"Electric Power Consumption","Pennsylvania","PA",49011 +2019-02-01,"Electric Power Consumption","U.S.","U.S.",779310 +2019-02-01,"Electric Power Consumption","Hawaii","HI",NA +2019-02-01,"Electric Power Consumption","New Hampshire","NH",607 +2019-02-01,"Electric Power Consumption","North Dakota","ND",1007 +2019-02-01,"Electric Power Consumption","Indiana","IN",17580 +2019-02-01,"Electric Power Consumption","Connecticut","CT",10093 +2019-02-01,"Electric Power Consumption","Arkansas","AR",13344 +2019-02-01,"Electric Power Consumption","Minnesota","MN",6678 +2019-02-01,"Electric Power Consumption","Virginia","VA",34456 +2019-02-01,"Electric Power Consumption","Idaho","ID",3367 +2019-02-01,"Electric Power Consumption","Colorado","CO",10988 +2019-02-01,"Electric Power Consumption","South Carolina","SC",12847 +2019-02-01,"Electric Power Consumption","Utah","UT",5417 +2019-02-01,"Electric Power Consumption","Wyoming","WY",312 +2019-02-01,"Electric Power Consumption","Missouri","MO",3961 +2019-02-01,"Electric Power Consumption","Kentucky","KY",6144 +2019-02-01,"Electric Power Consumption","Montana","MT",680 +2019-02-01,"Electric Power Consumption","Delaware","DE",1410 +2019-02-01,"Electric Power Consumption","Arizona","AZ",19476 +2019-02-01,"Electric Power Consumption","Florida","FL",85458 +2019-02-01,"Electric Power Consumption","Alabama","AL",28043 +2019-02-01,"Electric Power Consumption","New Jersey","NJ",20845 +2019-02-01,"Electric Power Consumption","Louisiana","LA",20594 +2019-02-01,"Electric Power Consumption","Oregon","OR",12480 +2019-02-01,"Electric Power Consumption","Michigan","MI",18715 +2019-02-01,"Electric Power Consumption","Maryland","MD",8164 +2019-02-01,"Electric Power Consumption","Texas","TX",104462 +2019-02-01,"Electric Power Consumption","Illinois","IL",9699 +2019-02-01,"Electric Power Consumption","Vermont","VT",1 +2019-02-01,"Electric Power Consumption","South Dakota","SD",951 +2019-02-01,"Electric Power Consumption","California","CA",46738 +2019-02-01,"Electric Power Consumption","Alaska","AK",2214 +2019-02-01,"Electric Power Consumption","Oklahoma","OK",21002 +2019-02-01,"Electric Power Consumption","Kansas","KS",1430 +2019-02-01,"Electric Power Consumption","Wisconsin","WI",11149 +2019-02-01,"Electric Power Consumption","North Carolina","NC",26791 +2019-02-01,"Electric Power Consumption","Mississippi","MS",24078 +2019-02-01,"Industrial Consumption","North Dakota","ND",2776 +2019-02-01,"Industrial Consumption","Hawaii","HI",7 +2019-02-01,"Industrial Consumption","Louisiana","LA",93611 +2019-02-01,"Industrial Consumption","Kansas","KS",12410 +2019-02-01,"Industrial Consumption","U.S.","U.S.",718873 +2019-02-01,"Industrial Consumption","Alabama","AL",17930 +2019-02-01,"Industrial Consumption","West Virginia","WV",3129 +2019-02-01,"Industrial Consumption","North Carolina","NC",10390 +2019-02-01,"Industrial Consumption","Montana","MT",2085 +2019-02-01,"Industrial Consumption","Oklahoma","OK",16001 +2019-02-01,"Industrial Consumption","Pennsylvania","PA",21600 +2019-02-01,"Industrial Consumption","Maine","ME",1909 +2019-02-01,"Industrial Consumption","Wyoming","WY",5586 +2019-02-01,"Industrial Consumption","Rhode Island","RI",848 +2019-02-01,"Industrial Consumption","Massachusetts","MA",5884 +2019-02-01,"Industrial Consumption","Oregon","OR",4845 +2019-02-01,"Industrial Consumption","New Hampshire","NH",961 +2019-02-01,"Industrial Consumption","Iowa","IA",21893 +2019-02-01,"Industrial Consumption","Illinois","IL",25660 +2019-02-01,"Industrial Consumption","Delaware","DE",2871 +2019-02-01,"Industrial Consumption","Georgia","GA",12498 +2019-02-01,"Industrial Consumption","Utah","UT",4021 +2019-02-01,"Industrial Consumption","New York","NY",9303 +2019-02-01,"Industrial Consumption","California","CA",57327 +2019-02-01,"Industrial Consumption","Nebraska","NE",7306 +2019-02-01,"Industrial Consumption","Wisconsin","WI",16639 +2019-02-01,"Industrial Consumption","Minnesota","MN",15847 +2019-02-01,"Industrial Consumption","Connecticut","CT",2325 +2019-02-01,"Industrial Consumption","Kentucky","KY",10803 +2019-02-01,"Industrial Consumption","Washington","WA",6652 +2019-02-01,"Industrial Consumption","New Mexico","NM",1513 +2019-02-01,"Industrial Consumption","Arizona","AZ",1834 +2019-02-01,"Industrial Consumption","Nevada","NV",1937 +2019-02-01,"Industrial Consumption","New Jersey","NJ",5465 +2019-02-01,"Industrial Consumption","Missouri","MO",6701 +2019-02-01,"Industrial Consumption","South Dakota","SD",4317 +2019-02-01,"Industrial Consumption","Arkansas","AR",8849 +2019-02-01,"Industrial Consumption","Florida","FL",9279 +2019-02-01,"Industrial Consumption","Indiana","IN",36785 +2019-02-01,"Industrial Consumption","Maryland","MD",1445 +2019-02-01,"Industrial Consumption","Texas","TX",146425 +2019-02-01,"Industrial Consumption","Michigan","MI",16773 +2019-02-01,"Industrial Consumption","Alaska","AK",557 +2019-02-01,"Industrial Consumption","Colorado","CO",9591 +2019-02-01,"Industrial Consumption","Ohio","OH",29521 +2019-02-01,"Industrial Consumption","Mississippi","MS",10371 +2019-02-01,"Industrial Consumption","South Carolina","SC",8321 +2019-02-01,"Industrial Consumption","Virginia","VA",9113 +2019-02-01,"Industrial Consumption","Vermont","VT",229 +2019-02-01,"Industrial Consumption","Tennessee","TN",13300 +2019-02-01,"Industrial Consumption","Idaho","ID",3431 +2019-02-01,"Industrial Consumption","District of Columbia","DC",NA +2019-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",135307 +2019-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",100173 +2019-02-01,"Residential Consumption","Texas","TX",38169 +2019-02-01,"Residential Consumption","Oregon","OR",7977 +2019-02-01,"Residential Consumption","Hawaii","HI",51 +2019-02-01,"Residential Consumption","District of Columbia","DC",2150 +2019-02-01,"Residential Consumption","Pennsylvania","PA",40192 +2019-02-01,"Residential Consumption","Indiana","IN",23480 +2019-02-01,"Residential Consumption","Massachusetts","MA",20379 +2019-02-01,"Residential Consumption","New Hampshire","NH",1338 +2019-02-01,"Residential Consumption","Montana","MT",4742 +2019-02-01,"Residential Consumption","Colorado","CO",20865 +2019-02-01,"Residential Consumption","Washington","WA",15700 +2019-02-01,"Residential Consumption","Delaware","DE",2084 +2019-02-01,"Residential Consumption","California","CA",74192 +2019-02-01,"Residential Consumption","Wyoming","WY",2116 +2019-02-01,"Residential Consumption","Illinois","IL",71865 +2019-02-01,"Residential Consumption","Mississippi","MS",3039 +2019-02-01,"Residential Consumption","Wisconsin","WI",24516 +2019-02-01,"Residential Consumption","Minnesota","MN",24708 +2019-02-01,"Residential Consumption","Kentucky","KY",7556 +2019-02-01,"Residential Consumption","Louisiana","LA",4896 +2019-02-01,"Residential Consumption","Arizona","AZ",7428 +2019-02-01,"Residential Consumption","Alaska","AK",2265 +2019-02-01,"Residential Consumption","South Carolina","SC",4518 +2019-02-01,"Residential Consumption","Rhode Island","RI",3061 +2019-02-01,"Residential Consumption","Michigan","MI",51520 +2019-02-01,"Residential Consumption","Maryland","MD",14652 +2019-02-01,"Residential Consumption","Nevada","NV",8076 +2019-02-01,"Residential Consumption","Connecticut","CT",8189 +2019-02-01,"Residential Consumption","Vermont","VT",680 +2019-02-01,"Residential Consumption","Georgia","GA",15163 +2019-02-01,"Residential Consumption","Florida","FL",2177 +2019-02-01,"Residential Consumption","Idaho","ID",4695 +2019-02-01,"Residential Consumption","Kansas","KS",12915 +2019-02-01,"Residential Consumption","U.S.","U.S.",809132 +2019-02-01,"Residential Consumption","Virginia","VA",14417 +2019-02-01,"Residential Consumption","Utah","UT",11743 +2019-02-01,"Residential Consumption","Nebraska","NE",7792 +2019-02-01,"Residential Consumption","South Dakota","SD",2763 +2019-02-01,"Residential Consumption","North Dakota","ND",2536 +2019-02-01,"Residential Consumption","West Virginia","WV",3677 +2019-02-01,"Residential Consumption","Ohio","OH",47362 +2019-02-01,"Residential Consumption","Iowa","IA",12610 +2019-02-01,"Residential Consumption","Maine","ME",511 +2019-02-01,"Residential Consumption","Missouri","MO",19790 +2019-02-01,"Residential Consumption","Alabama","AL",3793 +2019-02-01,"Residential Consumption","North Carolina","NC",9943 +2019-02-01,"Residential Consumption","Tennessee","TN",10307 +2019-02-01,"Residential Consumption","New Mexico","NM",6616 +2019-02-01,"Residential Consumption","Arkansas","AR",5127 +2019-02-01,"Residential Consumption","New Jersey","NJ",38557 +2019-02-01,"Residential Consumption","Oklahoma","OK",12543 +2019-02-01,"Residential Consumption","New York","NY",73689 +2019-02-01,"Vehicle Fuel Consumption","Washington","WA",13 +2019-02-01,"Vehicle Fuel Consumption","Tennessee","TN",26 +2019-02-01,"Vehicle Fuel Consumption","Missouri","MO",29 +2019-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",10 +2019-02-01,"Vehicle Fuel Consumption","Georgia","GA",138 +2019-02-01,"Vehicle Fuel Consumption","California","CA",2027 +2019-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",135 +2019-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-02-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-02-01,"Vehicle Fuel Consumption","New York","NY",74 +2019-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",36 +2019-02-01,"Vehicle Fuel Consumption","Kansas","KS",56 +2019-02-01,"Vehicle Fuel Consumption","Arizona","AZ",124 +2019-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-02-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2019-02-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2019-02-01,"Vehicle Fuel Consumption","Arkansas","AR",5 +2019-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",4078 +2019-02-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-02-01,"Vehicle Fuel Consumption","Nevada","NV",98 +2019-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-02-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-02-01,"Vehicle Fuel Consumption","Colorado","CO",141 +2019-02-01,"Vehicle Fuel Consumption","Illinois","IL",10 +2019-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",34 +2019-02-01,"Vehicle Fuel Consumption","Florida","FL",381 +2019-02-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2019-02-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-02-01,"Vehicle Fuel Consumption","North Carolina","NC",121 +2019-02-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-02-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-02-01,"Vehicle Fuel Consumption","Maryland","MD",53 +2019-02-01,"Vehicle Fuel Consumption","South Carolina","SC",10 +2019-02-01,"Vehicle Fuel Consumption","New Mexico","NM",17 +2019-02-01,"Vehicle Fuel Consumption","Utah","UT",25 +2019-02-01,"Vehicle Fuel Consumption","Vermont","VT",1 +2019-02-01,"Vehicle Fuel Consumption","Ohio","OH",39 +2019-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2019-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",129 +2019-02-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2019-02-01,"Vehicle Fuel Consumption","Nebraska","NE",12 +2019-02-01,"Vehicle Fuel Consumption","Texas","TX",122 +2019-02-01,"Vehicle Fuel Consumption","Connecticut","CT",16 +2019-02-01,"Vehicle Fuel Consumption","Virginia","VA",67 +2019-02-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",7 +2019-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",26 +2019-02-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2019-03-01,"Commercial Consumption","Washington","WA",6810 +2019-03-01,"Commercial Consumption","Pennsylvania","PA",21378 +2019-03-01,"Commercial Consumption","Wisconsin","WI",13039 +2019-03-01,"Commercial Consumption","Maine","ME",1254 +2019-03-01,"Commercial Consumption","Kentucky","KY",4947 +2019-03-01,"Commercial Consumption","Texas","TX",22434 +2019-03-01,"Commercial Consumption","Connecticut","CT",6830 +2019-03-01,"Commercial Consumption","Arizona","AZ",3536 +2019-03-01,"Commercial Consumption","Illinois","IL",31298 +2019-03-01,"Commercial Consumption","West Virginia","WV",3039 +2019-03-01,"Commercial Consumption","North Carolina","NC",6767 +2019-03-01,"Commercial Consumption","Maryland","MD",9472 +2019-03-01,"Commercial Consumption","Rhode Island","RI",1731 +2019-03-01,"Commercial Consumption","Oregon","OR",3916 +2019-03-01,"Commercial Consumption","Virginia","VA",8681 +2019-03-01,"Commercial Consumption","U.S.","U.S.",424232 +2019-03-01,"Commercial Consumption","Kansas","KS",4785 +2019-03-01,"Commercial Consumption","Vermont","VT",820 +2019-03-01,"Commercial Consumption","Iowa","IA",7161 +2019-03-01,"Commercial Consumption","Alaska","AK",1334 +2019-03-01,"Commercial Consumption","New York","NY",39125 +2019-03-01,"Commercial Consumption","North Dakota","ND",2005 +2019-03-01,"Commercial Consumption","Massachusetts","MA",14714 +2019-03-01,"Commercial Consumption","New Jersey","NJ",19670 +2019-03-01,"Commercial Consumption","Colorado","CO",8339 +2019-03-01,"Commercial Consumption","Missouri","MO",8697 +2019-03-01,"Commercial Consumption","Montana","MT",3529 +2019-03-01,"Commercial Consumption","Florida","FL",5827 +2019-03-01,"Commercial Consumption","Arkansas","AR",6446 +2019-03-01,"Commercial Consumption","Nevada","NV",3745 +2019-03-01,"Commercial Consumption","Michigan","MI",24748 +2019-03-01,"Commercial Consumption","Louisiana","LA",3199 +2019-03-01,"Commercial Consumption","Minnesota","MN",14622 +2019-03-01,"Commercial Consumption","Utah","UT",5473 +2019-03-01,"Commercial Consumption","Oklahoma","OK",6094 +2019-03-01,"Commercial Consumption","South Dakota","SD",1701 +2019-03-01,"Commercial Consumption","New Hampshire","NH",1386 +2019-03-01,"Commercial Consumption","Georgia","GA",6151 +2019-03-01,"Commercial Consumption","Hawaii","HI",216 +2019-03-01,"Commercial Consumption","California","CA",23676 +2019-03-01,"Commercial Consumption","Mississippi","MS",2266 +2019-03-01,"Commercial Consumption","Delaware","DE",1826 +2019-03-01,"Commercial Consumption","District of Columbia","DC",1936 +2019-03-01,"Commercial Consumption","New Mexico","NM",2726 +2019-03-01,"Commercial Consumption","Alabama","AL",2841 +2019-03-01,"Commercial Consumption","Nebraska","NE",4460 +2019-03-01,"Commercial Consumption","Tennessee","TN",6683 +2019-03-01,"Commercial Consumption","Indiana","IN",11740 +2019-03-01,"Commercial Consumption","Wyoming","WY",1697 +2019-03-01,"Commercial Consumption","South Carolina","SC",2731 +2019-03-01,"Commercial Consumption","Ohio","OH",24505 +2019-03-01,"Commercial Consumption","Idaho","ID",2223 +2019-03-01,"Delivered to Consumers","U.S.","U.S.",2680848 +2019-03-01,"Delivered to Consumers","New York","NY",145130 +2019-03-01,"Delivered to Consumers","Alabama","AL",61453 +2019-03-01,"Delivered to Consumers","Texas","TX",326480 +2019-03-01,"Delivered to Consumers","Nevada","NV",25349 +2019-03-01,"Delivered to Consumers","Arizona","AZ",33949 +2019-03-01,"Delivered to Consumers","Washington","WA",30520 +2019-03-01,"Delivered to Consumers","Hawaii","HI",278 +2019-03-01,"Delivered to Consumers","Alaska","AK",6226 +2019-03-01,"Delivered to Consumers","Iowa","IA",42884 +2019-03-01,"Delivered to Consumers","Connecticut","CT",26372 +2019-03-01,"Delivered to Consumers","Arkansas","AR",32964 +2019-03-01,"Delivered to Consumers","Colorado","CO",47572 +2019-03-01,"Delivered to Consumers","North Dakota","ND",8059 +2019-03-01,"Delivered to Consumers","South Dakota","SD",8866 +2019-03-01,"Delivered to Consumers","Michigan","MI",110131 +2019-03-01,"Delivered to Consumers","Kentucky","KY",33849 +2019-03-01,"Delivered to Consumers","Pennsylvania","PA",129364 +2019-03-01,"Delivered to Consumers","Missouri","MO",36080 +2019-03-01,"Delivered to Consumers","New Hampshire","NH",5032 +2019-03-01,"Delivered to Consumers","District of Columbia","DC",3625 +2019-03-01,"Delivered to Consumers","Utah","UT",24540 +2019-03-01,"Delivered to Consumers","Rhode Island","RI",8870 +2019-03-01,"Delivered to Consumers","Tennessee","TN",41022 +2019-03-01,"Delivered to Consumers","Ohio","OH",129917 +2019-03-01,"Delivered to Consumers","Massachusetts","MA",48182 +2019-03-01,"Delivered to Consumers","Louisiana","LA",127179 +2019-03-01,"Delivered to Consumers","Minnesota","MN",54830 +2019-03-01,"Delivered to Consumers","Florida","FL",112890 +2019-03-01,"Delivered to Consumers","Vermont","VT",1630 +2019-03-01,"Delivered to Consumers","Kansas","KS",26865 +2019-03-01,"Delivered to Consumers","Virginia","VA",60831 +2019-03-01,"Delivered to Consumers","Mississippi","MS",41619 +2019-03-01,"Delivered to Consumers","Maine","ME",4384 +2019-03-01,"Delivered to Consumers","Wyoming","WY",8986 +2019-03-01,"Delivered to Consumers","Maryland","MD",33253 +2019-03-01,"Delivered to Consumers","Oklahoma","OK",55169 +2019-03-01,"Delivered to Consumers","Idaho","ID",11104 +2019-03-01,"Delivered to Consumers","Nebraska","NE",17973 +2019-03-01,"Delivered to Consumers","South Carolina","SC",27494 +2019-03-01,"Delivered to Consumers","Oregon","OR",28234 +2019-03-01,"Delivered to Consumers","Indiana","IN",91546 +2019-03-01,"Delivered to Consumers","Montana","MT",9136 +2019-03-01,"Delivered to Consumers","Wisconsin","WI",61313 +2019-03-01,"Delivered to Consumers","North Carolina","NC",53401 +2019-03-01,"Delivered to Consumers","California","CA",179996 +2019-03-01,"Delivered to Consumers","New Mexico","NM",16000 +2019-03-01,"Delivered to Consumers","Delaware","DE",8756 +2019-03-01,"Delivered to Consumers","West Virginia","WV",11008 +2019-03-01,"Delivered to Consumers","Illinois","IL",128870 +2019-03-01,"Delivered to Consumers","New Jersey","NJ",79718 +2019-03-01,"Delivered to Consumers","Georgia","GA",61951 +2019-03-01,"Electric Power Consumption","New Jersey","NJ",19815 +2019-03-01,"Electric Power Consumption","South Carolina","SC",11950 +2019-03-01,"Electric Power Consumption","Rhode Island","RI",3555 +2019-03-01,"Electric Power Consumption","South Dakota","SD",994 +2019-03-01,"Electric Power Consumption","Mississippi","MS",24500 +2019-03-01,"Electric Power Consumption","Kentucky","KY",9477 +2019-03-01,"Electric Power Consumption","Hawaii","HI",NA +2019-03-01,"Electric Power Consumption","New Hampshire","NH",1552 +2019-03-01,"Electric Power Consumption","Connecticut","CT",10090 +2019-03-01,"Electric Power Consumption","Florida","FL",94963 +2019-03-01,"Electric Power Consumption","Washington","WA",6217 +2019-03-01,"Electric Power Consumption","Oklahoma","OK",20491 +2019-03-01,"Electric Power Consumption","Oregon","OR",13344 +2019-03-01,"Electric Power Consumption","Minnesota","MN",6202 +2019-03-01,"Electric Power Consumption","West Virginia","WV",463 +2019-03-01,"Electric Power Consumption","Iowa","IA",3363 +2019-03-01,"Electric Power Consumption","Missouri","MO",5789 +2019-03-01,"Electric Power Consumption","Alabama","AL",35315 +2019-03-01,"Electric Power Consumption","Idaho","ID",1974 +2019-03-01,"Electric Power Consumption","Massachusetts","MA",8921 +2019-03-01,"Electric Power Consumption","Kansas","KS",1479 +2019-03-01,"Electric Power Consumption","Pennsylvania","PA",49607 +2019-03-01,"Electric Power Consumption","North Carolina","NC",25466 +2019-03-01,"Electric Power Consumption","New Mexico","NM",6978 +2019-03-01,"Electric Power Consumption","Michigan","MI",20294 +2019-03-01,"Electric Power Consumption","Nebraska","NE",695 +2019-03-01,"Electric Power Consumption","Ohio","OH",31789 +2019-03-01,"Electric Power Consumption","Maryland","MD",10321 +2019-03-01,"Electric Power Consumption","Georgia","GA",27148 +2019-03-01,"Electric Power Consumption","Virginia","VA",32635 +2019-03-01,"Electric Power Consumption","Louisiana","LA",22495 +2019-03-01,"Electric Power Consumption","Nevada","NV",13389 +2019-03-01,"Electric Power Consumption","Tennessee","TN",10678 +2019-03-01,"Electric Power Consumption","North Dakota","ND",1097 +2019-03-01,"Electric Power Consumption","Arkansas","AR",11326 +2019-03-01,"Electric Power Consumption","Utah","UT",6302 +2019-03-01,"Electric Power Consumption","Illinois","IL",11127 +2019-03-01,"Electric Power Consumption","U.S.","U.S.",813526 +2019-03-01,"Electric Power Consumption","Maine","ME",740 +2019-03-01,"Electric Power Consumption","Montana","MT",374 +2019-03-01,"Electric Power Consumption","Delaware","DE",2332 +2019-03-01,"Electric Power Consumption","Arizona","AZ",23035 +2019-03-01,"Electric Power Consumption","California","CA",39015 +2019-03-01,"Electric Power Consumption","Alaska","AK",2188 +2019-03-01,"Electric Power Consumption","New York","NY",26744 +2019-03-01,"Electric Power Consumption","Texas","TX",116536 +2019-03-01,"Electric Power Consumption","Wisconsin","WI",12123 +2019-03-01,"Electric Power Consumption","Colorado","CO",10287 +2019-03-01,"Electric Power Consumption","Wyoming","WY",255 +2019-03-01,"Electric Power Consumption","Vermont","VT",2 +2019-03-01,"Electric Power Consumption","Indiana","IN",18093 +2019-03-01,"Industrial Consumption","Louisiana","LA",97218 +2019-03-01,"Industrial Consumption","Utah","UT",3525 +2019-03-01,"Industrial Consumption","Iowa","IA",22317 +2019-03-01,"Industrial Consumption","Florida","FL",9993 +2019-03-01,"Industrial Consumption","Connecticut","CT",2233 +2019-03-01,"Industrial Consumption","Washington","WA",6970 +2019-03-01,"Industrial Consumption","U.S.","U.S.",750058 +2019-03-01,"Industrial Consumption","Pennsylvania","PA",22814 +2019-03-01,"Industrial Consumption","Maine","ME",1966 +2019-03-01,"Industrial Consumption","Alabama","AL",19316 +2019-03-01,"Industrial Consumption","Vermont","VT",233 +2019-03-01,"Industrial Consumption","Michigan","MI",18429 +2019-03-01,"Industrial Consumption","Missouri","MO",6063 +2019-03-01,"Industrial Consumption","New Mexico","NM",1661 +2019-03-01,"Industrial Consumption","South Carolina","SC",8938 +2019-03-01,"Industrial Consumption","Idaho","ID",3374 +2019-03-01,"Industrial Consumption","Oklahoma","OK",19006 +2019-03-01,"Industrial Consumption","South Dakota","SD",4067 +2019-03-01,"Industrial Consumption","Kansas","KS",11180 +2019-03-01,"Industrial Consumption","Texas","TX",154046 +2019-03-01,"Industrial Consumption","Virginia","VA",7755 +2019-03-01,"Industrial Consumption","New Jersey","NJ",5747 +2019-03-01,"Industrial Consumption","Illinois","IL",25555 +2019-03-01,"Industrial Consumption","North Carolina","NC",11533 +2019-03-01,"Industrial Consumption","Maryland","MD",1620 +2019-03-01,"Industrial Consumption","Massachusetts","MA",5097 +2019-03-01,"Industrial Consumption","Colorado","CO",9148 +2019-03-01,"Industrial Consumption","Ohio","OH",30356 +2019-03-01,"Industrial Consumption","West Virginia","WV",3663 +2019-03-01,"Industrial Consumption","Kentucky","KY",12266 +2019-03-01,"Industrial Consumption","Arkansas","AR",9472 +2019-03-01,"Industrial Consumption","Nebraska","NE",6610 +2019-03-01,"Industrial Consumption","Delaware","DE",2868 +2019-03-01,"Industrial Consumption","Rhode Island","RI",794 +2019-03-01,"Industrial Consumption","Hawaii","HI",7 +2019-03-01,"Industrial Consumption","Oregon","OR",5027 +2019-03-01,"Industrial Consumption","Mississippi","MS",11719 +2019-03-01,"Industrial Consumption","Wyoming","WY",5046 +2019-03-01,"Industrial Consumption","Wisconsin","WI",16414 +2019-03-01,"Industrial Consumption","North Dakota","ND",3192 +2019-03-01,"Industrial Consumption","Montana","MT",1901 +2019-03-01,"Industrial Consumption","Arizona","AZ",1602 +2019-03-01,"Industrial Consumption","New York","NY",9012 +2019-03-01,"Industrial Consumption","Nevada","NV",1783 +2019-03-01,"Industrial Consumption","California","CA",63355 +2019-03-01,"Industrial Consumption","Tennessee","TN",13645 +2019-03-01,"Industrial Consumption","New Hampshire","NH",963 +2019-03-01,"Industrial Consumption","Minnesota","MN",15280 +2019-03-01,"Industrial Consumption","Indiana","IN",40810 +2019-03-01,"Industrial Consumption","Georgia","GA",13890 +2019-03-01,"Industrial Consumption","District of Columbia","DC",NA +2019-03-01,"Industrial Consumption","Alaska","AK",579 +2019-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",150489 +2019-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",96474 +2019-03-01,"Residential Consumption","North Carolina","NC",9502 +2019-03-01,"Residential Consumption","Mississippi","MS",3133 +2019-03-01,"Residential Consumption","Iowa","IA",10039 +2019-03-01,"Residential Consumption","Tennessee","TN",9987 +2019-03-01,"Residential Consumption","Michigan","MI",46660 +2019-03-01,"Residential Consumption","Maryland","MD",11781 +2019-03-01,"Residential Consumption","New Jersey","NJ",34457 +2019-03-01,"Residential Consumption","Nebraska","NE",6194 +2019-03-01,"Residential Consumption","Nevada","NV",6324 +2019-03-01,"Residential Consumption","District of Columbia","DC",1651 +2019-03-01,"Residential Consumption","Florida","FL",1685 +2019-03-01,"Residential Consumption","Idaho","ID",3527 +2019-03-01,"Residential Consumption","New Hampshire","NH",1130 +2019-03-01,"Residential Consumption","California","CA",51706 +2019-03-01,"Residential Consumption","Arizona","AZ",5638 +2019-03-01,"Residential Consumption","New York","NY",70167 +2019-03-01,"Residential Consumption","South Carolina","SC",3864 +2019-03-01,"Residential Consumption","Louisiana","LA",4232 +2019-03-01,"Residential Consumption","Hawaii","HI",55 +2019-03-01,"Residential Consumption","Wisconsin","WI",19697 +2019-03-01,"Residential Consumption","North Dakota","ND",1764 +2019-03-01,"Residential Consumption","West Virginia","WV",3842 +2019-03-01,"Residential Consumption","Rhode Island","RI",2783 +2019-03-01,"Residential Consumption","Ohio","OH",43223 +2019-03-01,"Residential Consumption","Georgia","GA",14608 +2019-03-01,"Residential Consumption","Arkansas","AR",5714 +2019-03-01,"Residential Consumption","Colorado","CO",19642 +2019-03-01,"Residential Consumption","Utah","UT",9212 +2019-03-01,"Residential Consumption","Pennsylvania","PA",35422 +2019-03-01,"Residential Consumption","Maine","ME",423 +2019-03-01,"Residential Consumption","Delaware","DE",1730 +2019-03-01,"Residential Consumption","Alaska","AK",2125 +2019-03-01,"Residential Consumption","Wyoming","WY",1986 +2019-03-01,"Residential Consumption","U.S.","U.S.",688517 +2019-03-01,"Residential Consumption","Oregon","OR",5943 +2019-03-01,"Residential Consumption","Virginia","VA",11686 +2019-03-01,"Residential Consumption","Minnesota","MN",18683 +2019-03-01,"Residential Consumption","Kansas","KS",9360 +2019-03-01,"Residential Consumption","Connecticut","CT",7201 +2019-03-01,"Residential Consumption","New Mexico","NM",4615 +2019-03-01,"Residential Consumption","Kentucky","KY",7153 +2019-03-01,"Residential Consumption","Washington","WA",10509 +2019-03-01,"Residential Consumption","Oklahoma","OK",9429 +2019-03-01,"Residential Consumption","Texas","TX",33328 +2019-03-01,"Residential Consumption","Vermont","VT",573 +2019-03-01,"Residential Consumption","South Dakota","SD",2105 +2019-03-01,"Residential Consumption","Indiana","IN",20903 +2019-03-01,"Residential Consumption","Massachusetts","MA",19439 +2019-03-01,"Residential Consumption","Montana","MT",3332 +2019-03-01,"Residential Consumption","Missouri","MO",15499 +2019-03-01,"Residential Consumption","Alabama","AL",3973 +2019-03-01,"Residential Consumption","Illinois","IL",60879 +2019-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-03-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-03-01,"Vehicle Fuel Consumption","Utah","UT",27 +2019-03-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-03-01,"Vehicle Fuel Consumption","Arizona","AZ",138 +2019-03-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-03-01,"Vehicle Fuel Consumption","Maryland","MD",58 +2019-03-01,"Vehicle Fuel Consumption","Minnesota","MN",43 +2019-03-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-03-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",29 +2019-03-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2019-03-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2019-03-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-03-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2019-03-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2019-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",38 +2019-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-03-01,"Vehicle Fuel Consumption","New York","NY",82 +2019-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2019-03-01,"Vehicle Fuel Consumption","Nevada","NV",108 +2019-03-01,"Vehicle Fuel Consumption","Kansas","KS",62 +2019-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-03-01,"Vehicle Fuel Consumption","Missouri","MO",32 +2019-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-03-01,"Vehicle Fuel Consumption","Louisiana","LA",34 +2019-03-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2019-03-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2019-03-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-03-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2019-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",143 +2019-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-03-01,"Vehicle Fuel Consumption","Texas","TX",135 +2019-03-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-03-01,"Vehicle Fuel Consumption","Colorado","CO",156 +2019-03-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-03-01,"Vehicle Fuel Consumption","California","CA",2244 +2019-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-03-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-03-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-03-01,"Vehicle Fuel Consumption","Florida","FL",422 +2019-03-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-03-01,"Vehicle Fuel Consumption","Georgia","GA",152 +2019-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-03-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-03-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-03-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-03-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-04-01,"Commercial Consumption","Oregon","OR",2366 +2019-04-01,"Commercial Consumption","Rhode Island","RI",919 +2019-04-01,"Commercial Consumption","Iowa","IA",3748 +2019-04-01,"Commercial Consumption","California","CA",17595 +2019-04-01,"Commercial Consumption","Illinois","IL",18491 +2019-04-01,"Commercial Consumption","North Carolina","NC",3392 +2019-04-01,"Commercial Consumption","Minnesota","MN",9026 +2019-04-01,"Commercial Consumption","Oklahoma","OK",2950 +2019-04-01,"Commercial Consumption","Texas","TX",16434 +2019-04-01,"Commercial Consumption","Ohio","OH",12343 +2019-04-01,"Commercial Consumption","Hawaii","HI",221 +2019-04-01,"Commercial Consumption","Alaska","AK",1219 +2019-04-01,"Commercial Consumption","Michigan","MI",14439 +2019-04-01,"Commercial Consumption","Utah","UT",2660 +2019-04-01,"Commercial Consumption","New Mexico","NM",1739 +2019-04-01,"Commercial Consumption","South Dakota","SD",996 +2019-04-01,"Commercial Consumption","New Hampshire","NH",772 +2019-04-01,"Commercial Consumption","U.S.","U.S.",246547 +2019-04-01,"Commercial Consumption","Florida","FL",5292 +2019-04-01,"Commercial Consumption","Connecticut","CT",4033 +2019-04-01,"Commercial Consumption","New York","NY",22903 +2019-04-01,"Commercial Consumption","Louisiana","LA",2374 +2019-04-01,"Commercial Consumption","West Virginia","WV",1631 +2019-04-01,"Commercial Consumption","Washington","WA",4574 +2019-04-01,"Commercial Consumption","Pennsylvania","PA",10434 +2019-04-01,"Commercial Consumption","Kansas","KS",2014 +2019-04-01,"Commercial Consumption","Arkansas","AR",4074 +2019-04-01,"Commercial Consumption","Nebraska","NE",2214 +2019-04-01,"Commercial Consumption","Kentucky","KY",1959 +2019-04-01,"Commercial Consumption","Maryland","MD",4623 +2019-04-01,"Commercial Consumption","Georgia","GA",3268 +2019-04-01,"Commercial Consumption","Alabama","AL",1573 +2019-04-01,"Commercial Consumption","North Dakota","ND",1091 +2019-04-01,"Commercial Consumption","Missouri","MO",4082 +2019-04-01,"Commercial Consumption","Massachusetts","MA",9082 +2019-04-01,"Commercial Consumption","Wisconsin","WI",7747 +2019-04-01,"Commercial Consumption","New Jersey","NJ",10949 +2019-04-01,"Commercial Consumption","Maine","ME",811 +2019-04-01,"Commercial Consumption","Mississippi","MS",1291 +2019-04-01,"Commercial Consumption","Arizona","AZ",2630 +2019-04-01,"Commercial Consumption","Wyoming","WY",1081 +2019-04-01,"Commercial Consumption","South Carolina","SC",1765 +2019-04-01,"Commercial Consumption","Virginia","VA",4503 +2019-04-01,"Commercial Consumption","Montana","MT",2079 +2019-04-01,"Commercial Consumption","Delaware","DE",886 +2019-04-01,"Commercial Consumption","Indiana","IN",5289 +2019-04-01,"Commercial Consumption","District of Columbia","DC",998 +2019-04-01,"Commercial Consumption","Colorado","CO",4440 +2019-04-01,"Commercial Consumption","Vermont","VT",498 +2019-04-01,"Commercial Consumption","Idaho","ID",1346 +2019-04-01,"Commercial Consumption","Tennessee","TN",3116 +2019-04-01,"Commercial Consumption","Nevada","NV",2588 +2019-04-01,"Delivered to Consumers","Arkansas","AR",24592 +2019-04-01,"Delivered to Consumers","Pennsylvania","PA",77357 +2019-04-01,"Delivered to Consumers","Colorado","CO",30614 +2019-04-01,"Delivered to Consumers","Texas","TX",282466 +2019-04-01,"Delivered to Consumers","Oregon","OR",18615 +2019-04-01,"Delivered to Consumers","Washington","WA",21646 +2019-04-01,"Delivered to Consumers","West Virginia","WV",6593 +2019-04-01,"Delivered to Consumers","New York","NY",87971 +2019-04-01,"Delivered to Consumers","Maryland","MD",16638 +2019-04-01,"Delivered to Consumers","Hawaii","HI",279 +2019-04-01,"Delivered to Consumers","Kansas","KS",15819 +2019-04-01,"Delivered to Consumers","Michigan","MI",74319 +2019-04-01,"Delivered to Consumers","Massachusetts","MA",30029 +2019-04-01,"Delivered to Consumers","Delaware","DE",5783 +2019-04-01,"Delivered to Consumers","Illinois","IL",82394 +2019-04-01,"Delivered to Consumers","Montana","MT",5641 +2019-04-01,"Delivered to Consumers","Idaho","ID",7129 +2019-04-01,"Delivered to Consumers","Kentucky","KY",21306 +2019-04-01,"Delivered to Consumers","Mississippi","MS",38484 +2019-04-01,"Delivered to Consumers","Missouri","MO",18679 +2019-04-01,"Delivered to Consumers","Wyoming","WY",6635 +2019-04-01,"Delivered to Consumers","Vermont","VT",1079 +2019-04-01,"Delivered to Consumers","South Dakota","SD",6513 +2019-04-01,"Delivered to Consumers","Alaska","AK",5207 +2019-04-01,"Delivered to Consumers","Oklahoma","OK",44211 +2019-04-01,"Delivered to Consumers","Tennessee","TN",23025 +2019-04-01,"Delivered to Consumers","Wisconsin","WI",44518 +2019-04-01,"Delivered to Consumers","Nebraska","NE",11883 +2019-04-01,"Delivered to Consumers","South Carolina","SC",24107 +2019-04-01,"Delivered to Consumers","Maine","ME",2946 +2019-04-01,"Delivered to Consumers","Georgia","GA",54864 +2019-04-01,"Delivered to Consumers","Ohio","OH",84132 +2019-04-01,"Delivered to Consumers","Iowa","IA",30558 +2019-04-01,"Delivered to Consumers","Connecticut","CT",20460 +2019-04-01,"Delivered to Consumers","Alabama","AL",48155 +2019-04-01,"Delivered to Consumers","Louisiana","LA",129316 +2019-04-01,"Delivered to Consumers","Arizona","AZ",32855 +2019-04-01,"Delivered to Consumers","Utah","UT",14021 +2019-04-01,"Delivered to Consumers","U.S.","U.S.",1994279 +2019-04-01,"Delivered to Consumers","New Mexico","NM",13449 +2019-04-01,"Delivered to Consumers","Indiana","IN",64142 +2019-04-01,"Delivered to Consumers","North Carolina","NC",36285 +2019-04-01,"Delivered to Consumers","North Dakota","ND",6102 +2019-04-01,"Delivered to Consumers","Minnesota","MN",40315 +2019-04-01,"Delivered to Consumers","Florida","FL",119510 +2019-04-01,"Delivered to Consumers","District of Columbia","DC",1780 +2019-04-01,"Delivered to Consumers","Rhode Island","RI",6915 +2019-04-01,"Delivered to Consumers","Virginia","VA",41776 +2019-04-01,"Delivered to Consumers","California","CA",136590 +2019-04-01,"Delivered to Consumers","Nevada","NV",19699 +2019-04-01,"Delivered to Consumers","New Jersey","NJ",52742 +2019-04-01,"Delivered to Consumers","New Hampshire","NH",4136 +2019-04-01,"Electric Power Consumption","Virginia","VA",24775 +2019-04-01,"Electric Power Consumption","New Mexico","NM",7569 +2019-04-01,"Electric Power Consumption","Colorado","CO",8897 +2019-04-01,"Electric Power Consumption","Massachusetts","MA",6809 +2019-04-01,"Electric Power Consumption","Wisconsin","WI",12179 +2019-04-01,"Electric Power Consumption","Wyoming","WY",167 +2019-04-01,"Electric Power Consumption","Tennessee","TN",4379 +2019-04-01,"Electric Power Consumption","California","CA",26879 +2019-04-01,"Electric Power Consumption","Idaho","ID",1070 +2019-04-01,"Electric Power Consumption","New York","NY",23264 +2019-04-01,"Electric Power Consumption","Rhode Island","RI",3850 +2019-04-01,"Electric Power Consumption","Michigan","MI",21120 +2019-04-01,"Electric Power Consumption","West Virginia","WV",694 +2019-04-01,"Electric Power Consumption","Pennsylvania","PA",34832 +2019-04-01,"Electric Power Consumption","Nebraska","NE",850 +2019-04-01,"Electric Power Consumption","North Carolina","NC",19976 +2019-04-01,"Electric Power Consumption","Arizona","AZ",25868 +2019-04-01,"Electric Power Consumption","Arkansas","AR",10046 +2019-04-01,"Electric Power Consumption","South Carolina","SC",12648 +2019-04-01,"Electric Power Consumption","Utah","UT",3729 +2019-04-01,"Electric Power Consumption","Oregon","OR",8150 +2019-04-01,"Electric Power Consumption","New Jersey","NJ",22793 +2019-04-01,"Electric Power Consumption","Oklahoma","OK",20151 +2019-04-01,"Electric Power Consumption","Illinois","IL",13061 +2019-04-01,"Electric Power Consumption","Nevada","NV",12337 +2019-04-01,"Electric Power Consumption","Montana","MT",248 +2019-04-01,"Electric Power Consumption","Louisiana","LA",28824 +2019-04-01,"Electric Power Consumption","Texas","TX",105065 +2019-04-01,"Electric Power Consumption","Minnesota","MN",6721 +2019-04-01,"Electric Power Consumption","Kansas","KS",1596 +2019-04-01,"Electric Power Consumption","South Dakota","SD",700 +2019-04-01,"Electric Power Consumption","Hawaii","HI",NA +2019-04-01,"Electric Power Consumption","New Hampshire","NH",1876 +2019-04-01,"Electric Power Consumption","Delaware","DE",1756 +2019-04-01,"Electric Power Consumption","Washington","WA",4759 +2019-04-01,"Electric Power Consumption","Mississippi","MS",24231 +2019-04-01,"Electric Power Consumption","Kentucky","KY",7009 +2019-04-01,"Electric Power Consumption","Ohio","OH",28062 +2019-04-01,"Electric Power Consumption","Indiana","IN",14228 +2019-04-01,"Electric Power Consumption","Alaska","AK",2130 +2019-04-01,"Electric Power Consumption","Iowa","IA",2382 +2019-04-01,"Electric Power Consumption","Missouri","MO",4326 +2019-04-01,"Electric Power Consumption","North Dakota","ND",1018 +2019-04-01,"Electric Power Consumption","Maryland","MD",6643 +2019-04-01,"Electric Power Consumption","Alabama","AL",27244 +2019-04-01,"Electric Power Consumption","Vermont","VT",1 +2019-04-01,"Electric Power Consumption","U.S.","U.S.",739680 +2019-04-01,"Electric Power Consumption","Maine","ME",130 +2019-04-01,"Electric Power Consumption","Connecticut","CT",10842 +2019-04-01,"Electric Power Consumption","Georgia","GA",31964 +2019-04-01,"Electric Power Consumption","Florida","FL",101833 +2019-04-01,"Industrial Consumption","Ohio","OH",24648 +2019-04-01,"Industrial Consumption","Utah","UT",3635 +2019-04-01,"Industrial Consumption","Oregon","OR",4763 +2019-04-01,"Industrial Consumption","South Carolina","SC",7932 +2019-04-01,"Industrial Consumption","Vermont","VT",197 +2019-04-01,"Industrial Consumption","New Jersey","NJ",4134 +2019-04-01,"Industrial Consumption","Florida","FL",10414 +2019-04-01,"Industrial Consumption","Indiana","IN",35898 +2019-04-01,"Industrial Consumption","Massachusetts","MA",4135 +2019-04-01,"Industrial Consumption","U.S.","U.S.",675101 +2019-04-01,"Industrial Consumption","Nevada","NV",1647 +2019-04-01,"Industrial Consumption","Texas","TX",143845 +2019-04-01,"Industrial Consumption","West Virginia","WV",2912 +2019-04-01,"Industrial Consumption","Georgia","GA",12624 +2019-04-01,"Industrial Consumption","Oklahoma","OK",17484 +2019-04-01,"Industrial Consumption","Mississippi","MS",11731 +2019-04-01,"Industrial Consumption","Wyoming","WY",4214 +2019-04-01,"Industrial Consumption","Wisconsin","WI",13038 +2019-04-01,"Industrial Consumption","Tennessee","TN",12080 +2019-04-01,"Industrial Consumption","Connecticut","CT",1777 +2019-04-01,"Industrial Consumption","Michigan","MI",14144 +2019-04-01,"Industrial Consumption","Maryland","MD",1520 +2019-04-01,"Industrial Consumption","Louisiana","LA",95649 +2019-04-01,"Industrial Consumption","Kansas","KS",8889 +2019-04-01,"Industrial Consumption","Arizona","AZ",1478 +2019-04-01,"Industrial Consumption","New York","NY",7369 +2019-04-01,"Industrial Consumption","California","CA",59312 +2019-04-01,"Industrial Consumption","Alabama","AL",17426 +2019-04-01,"Industrial Consumption","Iowa","IA",19774 +2019-04-01,"Industrial Consumption","Alaska","AK",415 +2019-04-01,"Industrial Consumption","Arkansas","AR",8482 +2019-04-01,"Industrial Consumption","Nebraska","NE",6280 +2019-04-01,"Industrial Consumption","Minnesota","MN",14446 +2019-04-01,"Industrial Consumption","Idaho","ID",2817 +2019-04-01,"Industrial Consumption","Kentucky","KY",10068 +2019-04-01,"Industrial Consumption","Illinois","IL",20356 +2019-04-01,"Industrial Consumption","North Carolina","NC",9707 +2019-04-01,"Industrial Consumption","Colorado","CO",7445 +2019-04-01,"Industrial Consumption","Virginia","VA",7976 +2019-04-01,"Industrial Consumption","New Hampshire","NH",877 +2019-04-01,"Industrial Consumption","Delaware","DE",2452 +2019-04-01,"Industrial Consumption","Montana","MT",1733 +2019-04-01,"Industrial Consumption","Missouri","MO",4995 +2019-04-01,"Industrial Consumption","Pennsylvania","PA",17530 +2019-04-01,"Industrial Consumption","Rhode Island","RI",763 +2019-04-01,"Industrial Consumption","District of Columbia","DC",NA +2019-04-01,"Industrial Consumption","North Dakota","ND",3076 +2019-04-01,"Industrial Consumption","Hawaii","HI",8 +2019-04-01,"Industrial Consumption","Washington","WA",6094 +2019-04-01,"Industrial Consumption","South Dakota","SD",3673 +2019-04-01,"Industrial Consumption","New Mexico","NM",1492 +2019-04-01,"Industrial Consumption","Maine","ME",1746 +2019-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",146340 +2019-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",71767 +2019-04-01,"Residential Consumption","Texas","TX",16991 +2019-04-01,"Residential Consumption","Oregon","OR",3332 +2019-04-01,"Residential Consumption","Nevada","NV",3021 +2019-04-01,"Residential Consumption","Massachusetts","MA",9992 +2019-04-01,"Residential Consumption","Alaska","AK",1442 +2019-04-01,"Residential Consumption","Louisiana","LA",2436 +2019-04-01,"Residential Consumption","Virginia","VA",4451 +2019-04-01,"Residential Consumption","Utah","UT",3970 +2019-04-01,"Residential Consumption","Georgia","GA",6860 +2019-04-01,"Residential Consumption","Arkansas","AR",1984 +2019-04-01,"Residential Consumption","New Hampshire","NH",610 +2019-04-01,"Residential Consumption","Wyoming","WY",1171 +2019-04-01,"Residential Consumption","U.S.","U.S.",328581 +2019-04-01,"Residential Consumption","South Carolina","SC",1752 +2019-04-01,"Residential Consumption","Rhode Island","RI",1374 +2019-04-01,"Residential Consumption","Vermont","VT",383 +2019-04-01,"Residential Consumption","Michigan","MI",24615 +2019-04-01,"Residential Consumption","Minnesota","MN",10081 +2019-04-01,"Residential Consumption","Pennsylvania","PA",14423 +2019-04-01,"Residential Consumption","New Jersey","NJ",14838 +2019-04-01,"Residential Consumption","California","CA",30632 +2019-04-01,"Residential Consumption","Alabama","AL",1904 +2019-04-01,"Residential Consumption","Illinois","IL",30475 +2019-04-01,"Residential Consumption","Connecticut","CT",3792 +2019-04-01,"Residential Consumption","Idaho","ID",1891 +2019-04-01,"Residential Consumption","Colorado","CO",9680 +2019-04-01,"Residential Consumption","Delaware","DE",689 +2019-04-01,"Residential Consumption","West Virginia","WV",1355 +2019-04-01,"Residential Consumption","North Carolina","NC",3081 +2019-04-01,"Residential Consumption","Mississippi","MS",1230 +2019-04-01,"Residential Consumption","Iowa","IA",4652 +2019-04-01,"Residential Consumption","Tennessee","TN",3423 +2019-04-01,"Residential Consumption","Maryland","MD",3795 +2019-04-01,"Residential Consumption","Florida","FL",1562 +2019-04-01,"Residential Consumption","North Dakota","ND",917 +2019-04-01,"Residential Consumption","New York","NY",34355 +2019-04-01,"Residential Consumption","Wisconsin","WI",11515 +2019-04-01,"Residential Consumption","Nebraska","NE",2527 +2019-04-01,"Residential Consumption","Maine","ME",260 +2019-04-01,"Residential Consumption","Indiana","IN",8727 +2019-04-01,"Residential Consumption","Arizona","AZ",2746 +2019-04-01,"Residential Consumption","Ohio","OH",19037 +2019-04-01,"Residential Consumption","Hawaii","HI",51 +2019-04-01,"Residential Consumption","Kentucky","KY",2265 +2019-04-01,"Residential Consumption","Oklahoma","OK",3481 +2019-04-01,"Residential Consumption","South Dakota","SD",1144 +2019-04-01,"Residential Consumption","District of Columbia","DC",745 +2019-04-01,"Residential Consumption","New Mexico","NM",2632 +2019-04-01,"Residential Consumption","Montana","MT",1581 +2019-04-01,"Residential Consumption","Kansas","KS",3260 +2019-04-01,"Residential Consumption","Washington","WA",6205 +2019-04-01,"Residential Consumption","Missouri","MO",5246 +2019-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-04-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-04-01,"Vehicle Fuel Consumption","Illinois","IL",10 +2019-04-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-04-01,"Vehicle Fuel Consumption","Utah","UT",26 +2019-04-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-04-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2019-04-01,"Vehicle Fuel Consumption","New York","NY",80 +2019-04-01,"Vehicle Fuel Consumption","Florida","FL",408 +2019-04-01,"Vehicle Fuel Consumption","Maryland","MD",57 +2019-04-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2019-04-01,"Vehicle Fuel Consumption","California","CA",2172 +2019-04-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-04-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-04-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2019-04-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2019-04-01,"Vehicle Fuel Consumption","Colorado","CO",151 +2019-04-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-04-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2019-04-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2019-04-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-04-01,"Vehicle Fuel Consumption","Missouri","MO",31 +2019-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-04-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",138 +2019-04-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2019-04-01,"Vehicle Fuel Consumption","Kansas","KS",60 +2019-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-04-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-04-01,"Vehicle Fuel Consumption","Minnesota","MN",41 +2019-04-01,"Vehicle Fuel Consumption","Georgia","GA",148 +2019-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-04-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2019-04-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-04-01,"Vehicle Fuel Consumption","Texas","TX",130 +2019-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2019-04-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-04-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-04-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-04-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-04-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-04-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2019-04-01,"Vehicle Fuel Consumption","North Carolina","NC",129 +2019-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",4370 +2019-05-01,"Commercial Consumption","Colorado","CO",3632 +2019-05-01,"Commercial Consumption","Pennsylvania","PA",7083 +2019-05-01,"Commercial Consumption","Georgia","GA",2422 +2019-05-01,"Commercial Consumption","Tennessee","TN",2438 +2019-05-01,"Commercial Consumption","North Dakota","ND",703 +2019-05-01,"Commercial Consumption","Maine","ME",566 +2019-05-01,"Commercial Consumption","Alaska","AK",881 +2019-05-01,"Commercial Consumption","Louisiana","LA",2098 +2019-05-01,"Commercial Consumption","West Virginia","WV",1175 +2019-05-01,"Commercial Consumption","South Carolina","SC",1547 +2019-05-01,"Commercial Consumption","Utah","UT",3311 +2019-05-01,"Commercial Consumption","Kentucky","KY",1393 +2019-05-01,"Commercial Consumption","Ohio","OH",7456 +2019-05-01,"Commercial Consumption","New York","NY",16836 +2019-05-01,"Commercial Consumption","New Mexico","NM",1535 +2019-05-01,"Commercial Consumption","Virginia","VA",3566 +2019-05-01,"Commercial Consumption","Wisconsin","WI",4892 +2019-05-01,"Commercial Consumption","Montana","MT",1621 +2019-05-01,"Commercial Consumption","U.S.","U.S.",184887 +2019-05-01,"Commercial Consumption","Texas","TX",12138 +2019-05-01,"Commercial Consumption","Iowa","IA",2396 +2019-05-01,"Commercial Consumption","Hawaii","HI",221 +2019-05-01,"Commercial Consumption","Illinois","IL",12202 +2019-05-01,"Commercial Consumption","District of Columbia","DC",843 +2019-05-01,"Commercial Consumption","Oklahoma","OK",2228 +2019-05-01,"Commercial Consumption","South Dakota","SD",646 +2019-05-01,"Commercial Consumption","Florida","FL",4992 +2019-05-01,"Commercial Consumption","Alabama","AL",1356 +2019-05-01,"Commercial Consumption","Indiana","IN",3271 +2019-05-01,"Commercial Consumption","Wyoming","WY",841 +2019-05-01,"Commercial Consumption","Washington","WA",3098 +2019-05-01,"Commercial Consumption","Minnesota","MN",5024 +2019-05-01,"Commercial Consumption","Massachusetts","MA",6268 +2019-05-01,"Commercial Consumption","New Jersey","NJ",7408 +2019-05-01,"Commercial Consumption","Kansas","KS",1962 +2019-05-01,"Commercial Consumption","Rhode Island","RI",550 +2019-05-01,"Commercial Consumption","California","CA",18840 +2019-05-01,"Commercial Consumption","Arizona","AZ",2434 +2019-05-01,"Commercial Consumption","Nevada","NV",2331 +2019-05-01,"Commercial Consumption","Missouri","MO",2947 +2019-05-01,"Commercial Consumption","New Hampshire","NH",481 +2019-05-01,"Commercial Consumption","Maryland","MD",4074 +2019-05-01,"Commercial Consumption","Idaho","ID",988 +2019-05-01,"Commercial Consumption","Connecticut","CT",2996 +2019-05-01,"Commercial Consumption","Arkansas","AR",3489 +2019-05-01,"Commercial Consumption","Nebraska","NE",1865 +2019-05-01,"Commercial Consumption","Delaware","DE",808 +2019-05-01,"Commercial Consumption","Michigan","MI",9670 +2019-05-01,"Commercial Consumption","North Carolina","NC",2600 +2019-05-01,"Commercial Consumption","Oregon","OR",1495 +2019-05-01,"Commercial Consumption","Vermont","VT",321 +2019-05-01,"Commercial Consumption","Mississippi","MS",945 +2019-05-01,"Delivered to Consumers","Utah","UT",16490 +2019-05-01,"Delivered to Consumers","Indiana","IN",57332 +2019-05-01,"Delivered to Consumers","West Virginia","WV",5772 +2019-05-01,"Delivered to Consumers","Tennessee","TN",26268 +2019-05-01,"Delivered to Consumers","Michigan","MI",56251 +2019-05-01,"Delivered to Consumers","Virginia","VA",38625 +2019-05-01,"Delivered to Consumers","Colorado","CO",28500 +2019-05-01,"Delivered to Consumers","Nevada","NV",19028 +2019-05-01,"Delivered to Consumers","Maryland","MD",15925 +2019-05-01,"Delivered to Consumers","Kansas","KS",16409 +2019-05-01,"Delivered to Consumers","Idaho","ID",5485 +2019-05-01,"Delivered to Consumers","North Carolina","NC",35651 +2019-05-01,"Delivered to Consumers","Mississippi","MS",42930 +2019-05-01,"Delivered to Consumers","Minnesota","MN",29711 +2019-05-01,"Delivered to Consumers","Delaware","DE",5781 +2019-05-01,"Delivered to Consumers","New York","NY",67986 +2019-05-01,"Delivered to Consumers","Oklahoma","OK",44026 +2019-05-01,"Delivered to Consumers","Kentucky","KY",20110 +2019-05-01,"Delivered to Consumers","Iowa","IA",29109 +2019-05-01,"Delivered to Consumers","Maine","ME",2847 +2019-05-01,"Delivered to Consumers","Washington","WA",14605 +2019-05-01,"Delivered to Consumers","U.S.","U.S.",1912779 +2019-05-01,"Delivered to Consumers","New Mexico","NM",12731 +2019-05-01,"Delivered to Consumers","Hawaii","HI",279 +2019-05-01,"Delivered to Consumers","South Carolina","SC",25818 +2019-05-01,"Delivered to Consumers","Rhode Island","RI",6194 +2019-05-01,"Delivered to Consumers","Missouri","MO",17593 +2019-05-01,"Delivered to Consumers","Massachusetts","MA",22161 +2019-05-01,"Delivered to Consumers","Georgia","GA",55282 +2019-05-01,"Delivered to Consumers","Illinois","IL",62533 +2019-05-01,"Delivered to Consumers","South Dakota","SD",5773 +2019-05-01,"Delivered to Consumers","Alaska","AK",4143 +2019-05-01,"Delivered to Consumers","Connecticut","CT",17413 +2019-05-01,"Delivered to Consumers","Alabama","AL",57009 +2019-05-01,"Delivered to Consumers","New Jersey","NJ",42274 +2019-05-01,"Delivered to Consumers","Arizona","AZ",29782 +2019-05-01,"Delivered to Consumers","District of Columbia","DC",1276 +2019-05-01,"Delivered to Consumers","Wyoming","WY",6702 +2019-05-01,"Delivered to Consumers","Vermont","VT",735 +2019-05-01,"Delivered to Consumers","Ohio","OH",66867 +2019-05-01,"Delivered to Consumers","Arkansas","AR",25648 +2019-05-01,"Delivered to Consumers","Wisconsin","WI",33134 +2019-05-01,"Delivered to Consumers","Pennsylvania","PA",79360 +2019-05-01,"Delivered to Consumers","Nebraska","NE",12571 +2019-05-01,"Delivered to Consumers","Texas","TX",311077 +2019-05-01,"Delivered to Consumers","Louisiana","LA",135102 +2019-05-01,"Delivered to Consumers","North Dakota","ND",5672 +2019-05-01,"Delivered to Consumers","Florida","FL",141238 +2019-05-01,"Delivered to Consumers","Montana","MT",4840 +2019-05-01,"Delivered to Consumers","California","CA",138811 +2019-05-01,"Delivered to Consumers","Oregon","OR",9975 +2019-05-01,"Delivered to Consumers","New Hampshire","NH",1944 +2019-05-01,"Electric Power Consumption","New Mexico","NM",7861 +2019-05-01,"Electric Power Consumption","Colorado","CO",9610 +2019-05-01,"Electric Power Consumption","Rhode Island","RI",4065 +2019-05-01,"Electric Power Consumption","U.S.","U.S.",836087 +2019-05-01,"Electric Power Consumption","Hawaii","HI",NA +2019-05-01,"Electric Power Consumption","North Dakota","ND",1214 +2019-05-01,"Electric Power Consumption","Indiana","IN",14750 +2019-05-01,"Electric Power Consumption","Connecticut","CT",10430 +2019-05-01,"Electric Power Consumption","Virginia","VA",24904 +2019-05-01,"Electric Power Consumption","Louisiana","LA",32296 +2019-05-01,"Electric Power Consumption","Arkansas","AR",12115 +2019-05-01,"Electric Power Consumption","Pennsylvania","PA",47853 +2019-05-01,"Electric Power Consumption","New Hampshire","NH",272 +2019-05-01,"Electric Power Consumption","Alabama","AL",36268 +2019-05-01,"Electric Power Consumption","Oklahoma","OK",21435 +2019-05-01,"Electric Power Consumption","Oregon","OR",2337 +2019-05-01,"Electric Power Consumption","North Carolina","NC",22371 +2019-05-01,"Electric Power Consumption","Kentucky","KY",8257 +2019-05-01,"Electric Power Consumption","Florida","FL",124181 +2019-05-01,"Electric Power Consumption","Idaho","ID",643 +2019-05-01,"Electric Power Consumption","Illinois","IL",10896 +2019-05-01,"Electric Power Consumption","Kansas","KS",3148 +2019-05-01,"Electric Power Consumption","Nevada","NV",12740 +2019-05-01,"Electric Power Consumption","Vermont","VT",NA +2019-05-01,"Electric Power Consumption","Missouri","MO",6803 +2019-05-01,"Electric Power Consumption","Maine","ME",516 +2019-05-01,"Electric Power Consumption","Mississippi","MS",30033 +2019-05-01,"Electric Power Consumption","Maryland","MD",7779 +2019-05-01,"Electric Power Consumption","Minnesota","MN",5573 +2019-05-01,"Electric Power Consumption","Michigan","MI",20091 +2019-05-01,"Electric Power Consumption","Wyoming","WY",243 +2019-05-01,"Electric Power Consumption","Iowa","IA",2860 +2019-05-01,"Electric Power Consumption","Ohio","OH",26662 +2019-05-01,"Electric Power Consumption","Arizona","AZ",23595 +2019-05-01,"Electric Power Consumption","Georgia","GA",35443 +2019-05-01,"Electric Power Consumption","New Jersey","NJ",20324 +2019-05-01,"Electric Power Consumption","Wisconsin","WI",9429 +2019-05-01,"Electric Power Consumption","California","CA",23217 +2019-05-01,"Electric Power Consumption","Alaska","AK",1876 +2019-05-01,"Electric Power Consumption","New York","NY",22551 +2019-05-01,"Electric Power Consumption","Texas","TX",145840 +2019-05-01,"Electric Power Consumption","Montana","MT",289 +2019-05-01,"Electric Power Consumption","Delaware","DE",2004 +2019-05-01,"Electric Power Consumption","Washington","WA",2073 +2019-05-01,"Electric Power Consumption","South Carolina","SC",16000 +2019-05-01,"Electric Power Consumption","Utah","UT",5107 +2019-05-01,"Electric Power Consumption","Massachusetts","MA",5809 +2019-05-01,"Electric Power Consumption","West Virginia","WV",822 +2019-05-01,"Electric Power Consumption","Tennessee","TN",10894 +2019-05-01,"Electric Power Consumption","South Dakota","SD",827 +2019-05-01,"Electric Power Consumption","Nebraska","NE",1783 +2019-05-01,"Industrial Consumption","Montana","MT",1850 +2019-05-01,"Industrial Consumption","Massachusetts","MA",3695 +2019-05-01,"Industrial Consumption","Oklahoma","OK",18048 +2019-05-01,"Industrial Consumption","Ohio","OH",22421 +2019-05-01,"Industrial Consumption","Wyoming","WY",4750 +2019-05-01,"Industrial Consumption","New Hampshire","NH",814 +2019-05-01,"Industrial Consumption","Connecticut","CT",1691 +2019-05-01,"Industrial Consumption","Maryland","MD",1085 +2019-05-01,"Industrial Consumption","Kansas","KS",9325 +2019-05-01,"Industrial Consumption","Arizona","AZ",1531 +2019-05-01,"Industrial Consumption","California","CA",63860 +2019-05-01,"Industrial Consumption","South Carolina","SC",7647 +2019-05-01,"Industrial Consumption","Wisconsin","WI",11722 +2019-05-01,"Industrial Consumption","Kentucky","KY",9259 +2019-05-01,"Industrial Consumption","North Carolina","NC",9184 +2019-05-01,"Industrial Consumption","Washington","WA",6221 +2019-05-01,"Industrial Consumption","Hawaii","HI",8 +2019-05-01,"Industrial Consumption","Pennsylvania","PA",15839 +2019-05-01,"Industrial Consumption","Oregon","OR",4446 +2019-05-01,"Industrial Consumption","Arkansas","AR",8746 +2019-05-01,"Industrial Consumption","Vermont","VT",188 +2019-05-01,"Industrial Consumption","Tennessee","TN",11300 +2019-05-01,"Industrial Consumption","Minnesota","MN",12616 +2019-05-01,"Industrial Consumption","Michigan","MI",12976 +2019-05-01,"Industrial Consumption","Indiana","IN",34525 +2019-05-01,"Industrial Consumption","New Mexico","NM",1530 +2019-05-01,"Industrial Consumption","U.S.","U.S.",674882 +2019-05-01,"Industrial Consumption","Nevada","NV",1595 +2019-05-01,"Industrial Consumption","Georgia","GA",12660 +2019-05-01,"Industrial Consumption","Missouri","MO",4579 +2019-05-01,"Industrial Consumption","Alabama","AL",18233 +2019-05-01,"Industrial Consumption","Virginia","VA",8154 +2019-05-01,"Industrial Consumption","Idaho","ID",2710 +2019-05-01,"Industrial Consumption","Florida","FL",10450 +2019-05-01,"Industrial Consumption","Illinois","IL",20552 +2019-05-01,"Industrial Consumption","Alaska","AK",404 +2019-05-01,"Industrial Consumption","North Dakota","ND",3182 +2019-05-01,"Industrial Consumption","Louisiana","LA",99122 +2019-05-01,"Industrial Consumption","Colorado","CO",7405 +2019-05-01,"Industrial Consumption","South Dakota","SD",3565 +2019-05-01,"Industrial Consumption","Utah","UT",3338 +2019-05-01,"Industrial Consumption","New York","NY",6240 +2019-05-01,"Industrial Consumption","Mississippi","MS",11334 +2019-05-01,"Industrial Consumption","Maine","ME",1597 +2019-05-01,"Industrial Consumption","Texas","TX",145051 +2019-05-01,"Industrial Consumption","West Virginia","WV",3120 +2019-05-01,"Industrial Consumption","Delaware","DE",2606 +2019-05-01,"Industrial Consumption","Nebraska","NE",7164 +2019-05-01,"Industrial Consumption","New Jersey","NJ",4688 +2019-05-01,"Industrial Consumption","Iowa","IA",21140 +2019-05-01,"Industrial Consumption","Rhode Island","RI",712 +2019-05-01,"Industrial Consumption","District of Columbia","DC",NA +2019-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",152372 +2019-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",68834 +2019-05-01,"Residential Consumption","Louisiana","LA",1552 +2019-05-01,"Residential Consumption","Tennessee","TN",1608 +2019-05-01,"Residential Consumption","Georgia","GA",4604 +2019-05-01,"Residential Consumption","Kentucky","KY",1196 +2019-05-01,"Residential Consumption","Colorado","CO",7697 +2019-05-01,"Residential Consumption","Kansas","KS",1911 +2019-05-01,"Residential Consumption","U.S.","U.S.",212408 +2019-05-01,"Residential Consumption","Iowa","IA",2710 +2019-05-01,"Residential Consumption","Vermont","VT",224 +2019-05-01,"Residential Consumption","Nevada","NV",2254 +2019-05-01,"Residential Consumption","Minnesota","MN",6455 +2019-05-01,"Residential Consumption","West Virginia","WV",654 +2019-05-01,"Residential Consumption","New York","NY",22277 +2019-05-01,"Residential Consumption","South Carolina","SC",613 +2019-05-01,"Residential Consumption","Maryland","MD",2928 +2019-05-01,"Residential Consumption","Pennsylvania","PA",8443 +2019-05-01,"Residential Consumption","Arizona","AZ",2084 +2019-05-01,"Residential Consumption","Illinois","IL",18872 +2019-05-01,"Residential Consumption","Ohio","OH",10285 +2019-05-01,"Residential Consumption","Hawaii","HI",51 +2019-05-01,"Residential Consumption","Connecticut","CT",2278 +2019-05-01,"Residential Consumption","Utah","UT",4707 +2019-05-01,"Residential Consumption","North Dakota","ND",574 +2019-05-01,"Residential Consumption","Montana","MT",1079 +2019-05-01,"Residential Consumption","Alaska","AK",982 +2019-05-01,"Residential Consumption","Indiana","IN",4786 +2019-05-01,"Residential Consumption","Delaware","DE",363 +2019-05-01,"Residential Consumption","Alabama","AL",1144 +2019-05-01,"Residential Consumption","Rhode Island","RI",860 +2019-05-01,"Residential Consumption","North Carolina","NC",1363 +2019-05-01,"Residential Consumption","Mississippi","MS",617 +2019-05-01,"Residential Consumption","Wisconsin","WI",7050 +2019-05-01,"Residential Consumption","Virginia","VA",1926 +2019-05-01,"Residential Consumption","South Dakota","SD",734 +2019-05-01,"Residential Consumption","District of Columbia","DC",395 +2019-05-01,"Residential Consumption","New Mexico","NM",1786 +2019-05-01,"Residential Consumption","Maine","ME",167 +2019-05-01,"Residential Consumption","Florida","FL",1194 +2019-05-01,"Residential Consumption","Idaho","ID",1138 +2019-05-01,"Residential Consumption","Washington","WA",3199 +2019-05-01,"Residential Consumption","Missouri","MO",3231 +2019-05-01,"Residential Consumption","Wyoming","WY",866 +2019-05-01,"Residential Consumption","Nebraska","NE",1745 +2019-05-01,"Residential Consumption","Arkansas","AR",1292 +2019-05-01,"Residential Consumption","New Jersey","NJ",9825 +2019-05-01,"Residential Consumption","Texas","TX",7913 +2019-05-01,"Residential Consumption","Oregon","OR",1692 +2019-05-01,"Residential Consumption","Michigan","MI",13513 +2019-05-01,"Residential Consumption","Massachusetts","MA",6378 +2019-05-01,"Residential Consumption","New Hampshire","NH",375 +2019-05-01,"Residential Consumption","Oklahoma","OK",2165 +2019-05-01,"Residential Consumption","California","CA",30649 +2019-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-05-01,"Vehicle Fuel Consumption","Utah","UT",27 +2019-05-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-05-01,"Vehicle Fuel Consumption","Missouri","MO",32 +2019-05-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-05-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2019-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-05-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2019-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2019-05-01,"Vehicle Fuel Consumption","Florida","FL",422 +2019-05-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-05-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-05-01,"Vehicle Fuel Consumption","Maryland","MD",58 +2019-05-01,"Vehicle Fuel Consumption","Louisiana","LA",34 +2019-05-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2019-05-01,"Vehicle Fuel Consumption","Colorado","CO",156 +2019-05-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-05-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-05-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-05-01,"Vehicle Fuel Consumption","New York","NY",82 +2019-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-05-01,"Vehicle Fuel Consumption","Georgia","GA",152 +2019-05-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2019-05-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-05-01,"Vehicle Fuel Consumption","Nevada","NV",108 +2019-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",38 +2019-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",29 +2019-05-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2019-05-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-05-01,"Vehicle Fuel Consumption","Texas","TX",135 +2019-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-05-01,"Vehicle Fuel Consumption","Minnesota","MN",43 +2019-05-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-05-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",143 +2019-05-01,"Vehicle Fuel Consumption","Kansas","KS",62 +2019-05-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-05-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-05-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-05-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2019-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-05-01,"Vehicle Fuel Consumption","Arizona","AZ",138 +2019-05-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-05-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2019-05-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-05-01,"Vehicle Fuel Consumption","California","CA",2244 +2019-06-01,"Commercial Consumption","South Carolina","SC",1375 +2019-06-01,"Commercial Consumption","Maine","ME",338 +2019-06-01,"Commercial Consumption","Kentucky","KY",1251 +2019-06-01,"Commercial Consumption","Iowa","IA",1763 +2019-06-01,"Commercial Consumption","Alabama","AL",1270 +2019-06-01,"Commercial Consumption","New York","NY",13665 +2019-06-01,"Commercial Consumption","Michigan","MI",6101 +2019-06-01,"Commercial Consumption","Utah","UT",1513 +2019-06-01,"Commercial Consumption","Maryland","MD",3226 +2019-06-01,"Commercial Consumption","Kansas","KS",1817 +2019-06-01,"Commercial Consumption","Ohio","OH",5315 +2019-06-01,"Commercial Consumption","Delaware","DE",713 +2019-06-01,"Commercial Consumption","Louisiana","LA",1978 +2019-06-01,"Commercial Consumption","Wyoming","WY",558 +2019-06-01,"Commercial Consumption","Minnesota","MN",3265 +2019-06-01,"Commercial Consumption","Oklahoma","OK",1815 +2019-06-01,"Commercial Consumption","Pennsylvania","PA",5099 +2019-06-01,"Commercial Consumption","Missouri","MO",2215 +2019-06-01,"Commercial Consumption","South Dakota","SD",355 +2019-06-01,"Commercial Consumption","Vermont","VT",332 +2019-06-01,"Commercial Consumption","New Hampshire","NH",259 +2019-06-01,"Commercial Consumption","U.S.","U.S.",144653 +2019-06-01,"Commercial Consumption","Texas","TX",12154 +2019-06-01,"Commercial Consumption","Alaska","AK",539 +2019-06-01,"Commercial Consumption","California","CA",15505 +2019-06-01,"Commercial Consumption","Arkansas","AR",2870 +2019-06-01,"Commercial Consumption","Nevada","NV",1994 +2019-06-01,"Commercial Consumption","New Mexico","NM",1166 +2019-06-01,"Commercial Consumption","Montana","MT",1230 +2019-06-01,"Commercial Consumption","Georgia","GA",2182 +2019-06-01,"Commercial Consumption","Florida","FL",4703 +2019-06-01,"Commercial Consumption","Rhode Island","RI",300 +2019-06-01,"Commercial Consumption","Indiana","IN",2634 +2019-06-01,"Commercial Consumption","District of Columbia","DC",682 +2019-06-01,"Commercial Consumption","North Dakota","ND",343 +2019-06-01,"Commercial Consumption","Oregon","OR",1217 +2019-06-01,"Commercial Consumption","New Jersey","NJ",5365 +2019-06-01,"Commercial Consumption","Connecticut","CT",2328 +2019-06-01,"Commercial Consumption","West Virginia","WV",971 +2019-06-01,"Commercial Consumption","North Carolina","NC",2758 +2019-06-01,"Commercial Consumption","Colorado","CO",2190 +2019-06-01,"Commercial Consumption","Hawaii","HI",202 +2019-06-01,"Commercial Consumption","Arizona","AZ",2093 +2019-06-01,"Commercial Consumption","Washington","WA",2651 +2019-06-01,"Commercial Consumption","Virginia","VA",3141 +2019-06-01,"Commercial Consumption","Massachusetts","MA",3951 +2019-06-01,"Commercial Consumption","Wisconsin","WI",3332 +2019-06-01,"Commercial Consumption","Idaho","ID",792 +2019-06-01,"Commercial Consumption","Nebraska","NE",1288 +2019-06-01,"Commercial Consumption","Mississippi","MS",920 +2019-06-01,"Commercial Consumption","Tennessee","TN",2374 +2019-06-01,"Commercial Consumption","Illinois","IL",8556 +2019-06-01,"Delivered to Consumers","Utah","UT",12448 +2019-06-01,"Delivered to Consumers","New Mexico","NM",12274 +2019-06-01,"Delivered to Consumers","Montana","MT",4166 +2019-06-01,"Delivered to Consumers","Ohio","OH",59024 +2019-06-01,"Delivered to Consumers","Michigan","MI",44729 +2019-06-01,"Delivered to Consumers","Kentucky","KY",18729 +2019-06-01,"Delivered to Consumers","Texas","TX",333719 +2019-06-01,"Delivered to Consumers","New Hampshire","NH",3690 +2019-06-01,"Delivered to Consumers","Minnesota","MN",25875 +2019-06-01,"Delivered to Consumers","New York","NY",63217 +2019-06-01,"Delivered to Consumers","Idaho","ID",5781 +2019-06-01,"Delivered to Consumers","Tennessee","TN",26307 +2019-06-01,"Delivered to Consumers","Washington","WA",17516 +2019-06-01,"Delivered to Consumers","Illinois","IL",50933 +2019-06-01,"Delivered to Consumers","Mississippi","MS",41116 +2019-06-01,"Delivered to Consumers","Wyoming","WY",5835 +2019-06-01,"Delivered to Consumers","Rhode Island","RI",5590 +2019-06-01,"Delivered to Consumers","Wisconsin","WI",28834 +2019-06-01,"Delivered to Consumers","Virginia","VA",51555 +2019-06-01,"Delivered to Consumers","Pennsylvania","PA",83212 +2019-06-01,"Delivered to Consumers","North Carolina","NC",37536 +2019-06-01,"Delivered to Consumers","Massachusetts","MA",17660 +2019-06-01,"Delivered to Consumers","Colorado","CO",22334 +2019-06-01,"Delivered to Consumers","Oregon","OR",14852 +2019-06-01,"Delivered to Consumers","Arizona","AZ",38144 +2019-06-01,"Delivered to Consumers","Vermont","VT",633 +2019-06-01,"Delivered to Consumers","South Dakota","SD",5357 +2019-06-01,"Delivered to Consumers","Oklahoma","OK",53901 +2019-06-01,"Delivered to Consumers","Kansas","KS",16162 +2019-06-01,"Delivered to Consumers","Maine","ME",2401 +2019-06-01,"Delivered to Consumers","Georgia","GA",56951 +2019-06-01,"Delivered to Consumers","West Virginia","WV",5260 +2019-06-01,"Delivered to Consumers","Arkansas","AR",27702 +2019-06-01,"Delivered to Consumers","Alabama","AL",58803 +2019-06-01,"Delivered to Consumers","Nebraska","NE",10162 +2019-06-01,"Delivered to Consumers","South Carolina","SC",26770 +2019-06-01,"Delivered to Consumers","Nevada","NV",23473 +2019-06-01,"Delivered to Consumers","North Dakota","ND",5251 +2019-06-01,"Delivered to Consumers","Florida","FL",142458 +2019-06-01,"Delivered to Consumers","Delaware","DE",5820 +2019-06-01,"Delivered to Consumers","Hawaii","HI",253 +2019-06-01,"Delivered to Consumers","Iowa","IA",26620 +2019-06-01,"Delivered to Consumers","Missouri","MO",15368 +2019-06-01,"Delivered to Consumers","New Jersey","NJ",42008 +2019-06-01,"Delivered to Consumers","Louisiana","LA",132243 +2019-06-01,"Delivered to Consumers","U.S.","U.S.",1902995 +2019-06-01,"Delivered to Consumers","Indiana","IN",53105 +2019-06-01,"Delivered to Consumers","Maryland","MD",14239 +2019-06-01,"Delivered to Consumers","Alaska","AK",3165 +2019-06-01,"Delivered to Consumers","Connecticut","CT",16814 +2019-06-01,"Delivered to Consumers","California","CA",131992 +2019-06-01,"Delivered to Consumers","District of Columbia","DC",1010 +2019-06-01,"Electric Power Consumption","Virginia","VA",38686 +2019-06-01,"Electric Power Consumption","New Jersey","NJ",25107 +2019-06-01,"Electric Power Consumption","Oregon","OR",8277 +2019-06-01,"Electric Power Consumption","Michigan","MI",20711 +2019-06-01,"Electric Power Consumption","South Dakota","SD",910 +2019-06-01,"Electric Power Consumption","Mississippi","MS",29635 +2019-06-01,"Electric Power Consumption","North Dakota","ND",1393 +2019-06-01,"Electric Power Consumption","Arkansas","AR",15969 +2019-06-01,"Electric Power Consumption","Utah","UT",5595 +2019-06-01,"Electric Power Consumption","Minnesota","MN",7783 +2019-06-01,"Electric Power Consumption","Connecticut","CT",11542 +2019-06-01,"Electric Power Consumption","Arizona","AZ",33077 +2019-06-01,"Electric Power Consumption","Washington","WA",6770 +2019-06-01,"Electric Power Consumption","Louisiana","LA",36076 +2019-06-01,"Electric Power Consumption","New York","NY",30967 +2019-06-01,"Electric Power Consumption","Texas","TX",171990 +2019-06-01,"Electric Power Consumption","Oklahoma","OK",33248 +2019-06-01,"Electric Power Consumption","Kansas","KS",3051 +2019-06-01,"Electric Power Consumption","Maine","ME",605 +2019-06-01,"Electric Power Consumption","Kentucky","KY",8115 +2019-06-01,"Electric Power Consumption","Montana","MT",337 +2019-06-01,"Electric Power Consumption","Delaware","DE",2374 +2019-06-01,"Electric Power Consumption","Florida","FL",126998 +2019-06-01,"Electric Power Consumption","Idaho","ID",1634 +2019-06-01,"Electric Power Consumption","Colorado","CO",10036 +2019-06-01,"Electric Power Consumption","West Virginia","WV",1288 +2019-06-01,"Electric Power Consumption","New Hampshire","NH",2499 +2019-06-01,"Electric Power Consumption","California","CA",32720 +2019-06-01,"Electric Power Consumption","Alabama","AL",38809 +2019-06-01,"Electric Power Consumption","Pennsylvania","PA",57337 +2019-06-01,"Electric Power Consumption","Vermont","VT",3 +2019-06-01,"Electric Power Consumption","Georgia","GA",38424 +2019-06-01,"Electric Power Consumption","Alaska","AK",1708 +2019-06-01,"Electric Power Consumption","Illinois","IL",14708 +2019-06-01,"Electric Power Consumption","Wisconsin","WI",12224 +2019-06-01,"Electric Power Consumption","Wyoming","WY",217 +2019-06-01,"Electric Power Consumption","Tennessee","TN",11019 +2019-06-01,"Electric Power Consumption","Hawaii","HI",NA +2019-06-01,"Electric Power Consumption","Ohio","OH",31098 +2019-06-01,"Electric Power Consumption","New Mexico","NM",8551 +2019-06-01,"Electric Power Consumption","Rhode Island","RI",4173 +2019-06-01,"Electric Power Consumption","Nevada","NV",18012 +2019-06-01,"Electric Power Consumption","North Carolina","NC",24502 +2019-06-01,"Electric Power Consumption","Missouri","MO",6778 +2019-06-01,"Electric Power Consumption","Indiana","IN",17415 +2019-06-01,"Electric Power Consumption","South Carolina","SC",17306 +2019-06-01,"Electric Power Consumption","Massachusetts","MA",7732 +2019-06-01,"Electric Power Consumption","Iowa","IA",4023 +2019-06-01,"Electric Power Consumption","U.S.","U.S.",990562 +2019-06-01,"Electric Power Consumption","Nebraska","NE",1362 +2019-06-01,"Electric Power Consumption","Maryland","MD",7768 +2019-06-01,"Industrial Consumption","Utah","UT",3281 +2019-06-01,"Industrial Consumption","U.S.","U.S.",634196 +2019-06-01,"Industrial Consumption","Nevada","NV",1556 +2019-06-01,"Industrial Consumption","California","CA",60273 +2019-06-01,"Industrial Consumption","Vermont","VT",169 +2019-06-01,"Industrial Consumption","New Jersey","NJ",4864 +2019-06-01,"Industrial Consumption","North Carolina","NC",8708 +2019-06-01,"Industrial Consumption","North Dakota","ND",3280 +2019-06-01,"Industrial Consumption","Montana","MT",1771 +2019-06-01,"Industrial Consumption","Oregon","OR",4057 +2019-06-01,"Industrial Consumption","Maine","ME",1375 +2019-06-01,"Industrial Consumption","Washington","WA",5662 +2019-06-01,"Industrial Consumption","South Dakota","SD",3809 +2019-06-01,"Industrial Consumption","Kansas","KS",10055 +2019-06-01,"Industrial Consumption","West Virginia","WV",2686 +2019-06-01,"Industrial Consumption","District of Columbia","DC",NA +2019-06-01,"Industrial Consumption","New Mexico","NM",1431 +2019-06-01,"Industrial Consumption","Mississippi","MS",10057 +2019-06-01,"Industrial Consumption","Arkansas","AR",8236 +2019-06-01,"Industrial Consumption","Nebraska","NE",6598 +2019-06-01,"Industrial Consumption","Kentucky","KY",8447 +2019-06-01,"Industrial Consumption","Massachusetts","MA",2744 +2019-06-01,"Industrial Consumption","Oklahoma","OK",17183 +2019-06-01,"Industrial Consumption","Ohio","OH",17190 +2019-06-01,"Industrial Consumption","Alabama","AL",17864 +2019-06-01,"Industrial Consumption","Wisconsin","WI",10113 +2019-06-01,"Industrial Consumption","New Hampshire","NH",748 +2019-06-01,"Industrial Consumption","Iowa","IA",19447 +2019-06-01,"Industrial Consumption","Delaware","DE",2541 +2019-06-01,"Industrial Consumption","Rhode Island","RI",666 +2019-06-01,"Industrial Consumption","Alaska","AK",387 +2019-06-01,"Industrial Consumption","Hawaii","HI",7 +2019-06-01,"Industrial Consumption","Pennsylvania","PA",15785 +2019-06-01,"Industrial Consumption","New York","NY",6041 +2019-06-01,"Industrial Consumption","Connecticut","CT",1590 +2019-06-01,"Industrial Consumption","Michigan","MI",10841 +2019-06-01,"Industrial Consumption","Maryland","MD",1439 +2019-06-01,"Industrial Consumption","Louisiana","LA",92948 +2019-06-01,"Industrial Consumption","Arizona","AZ",1330 +2019-06-01,"Industrial Consumption","Virginia","VA",7842 +2019-06-01,"Industrial Consumption","Minnesota","MN",11675 +2019-06-01,"Industrial Consumption","Georgia","GA",12090 +2019-06-01,"Industrial Consumption","Missouri","MO",4404 +2019-06-01,"Industrial Consumption","Colorado","CO",6001 +2019-06-01,"Industrial Consumption","Texas","TX",142830 +2019-06-01,"Industrial Consumption","South Carolina","SC",7507 +2019-06-01,"Industrial Consumption","Wyoming","WY",4531 +2019-06-01,"Industrial Consumption","Tennessee","TN",11694 +2019-06-01,"Industrial Consumption","Idaho","ID",2621 +2019-06-01,"Industrial Consumption","Florida","FL",9421 +2019-06-01,"Industrial Consumption","Indiana","IN",30495 +2019-06-01,"Industrial Consumption","Illinois","IL",17905 +2019-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",147863 +2019-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",68482 +2019-06-01,"Residential Consumption","Indiana","IN",2560 +2019-06-01,"Residential Consumption","Alabama","AL",853 +2019-06-01,"Residential Consumption","West Virginia","WV",314 +2019-06-01,"Residential Consumption","Illinois","IL",9752 +2019-06-01,"Residential Consumption","South Carolina","SC",571 +2019-06-01,"Residential Consumption","South Dakota","SD",283 +2019-06-01,"Residential Consumption","Nevada","NV",1807 +2019-06-01,"Residential Consumption","Massachusetts","MA",3222 +2019-06-01,"Residential Consumption","Arkansas","AR",621 +2019-06-01,"Residential Consumption","Colorado","CO",3957 +2019-06-01,"Residential Consumption","Washington","WA",2419 +2019-06-01,"Residential Consumption","California","CA",21322 +2019-06-01,"Residential Consumption","U.S.","U.S.",129214 +2019-06-01,"Residential Consumption","New York","NY",12465 +2019-06-01,"Residential Consumption","Rhode Island","RI",444 +2019-06-01,"Residential Consumption","Iowa","IA",1383 +2019-06-01,"Residential Consumption","Virginia","VA",1813 +2019-06-01,"Residential Consumption","Michigan","MI",7075 +2019-06-01,"Residential Consumption","District of Columbia","DC",292 +2019-06-01,"Residential Consumption","Idaho","ID",730 +2019-06-01,"Residential Consumption","Kansas","KS",1178 +2019-06-01,"Residential Consumption","Arizona","AZ",1510 +2019-06-01,"Residential Consumption","Florida","FL",928 +2019-06-01,"Residential Consumption","New Hampshire","NH",182 +2019-06-01,"Residential Consumption","Montana","MT",829 +2019-06-01,"Residential Consumption","Missouri","MO",1940 +2019-06-01,"Residential Consumption","Alaska","AK",531 +2019-06-01,"Residential Consumption","Hawaii","HI",44 +2019-06-01,"Residential Consumption","Connecticut","CT",1338 +2019-06-01,"Residential Consumption","Tennessee","TN",1193 +2019-06-01,"Residential Consumption","Minnesota","MN",3111 +2019-06-01,"Residential Consumption","Pennsylvania","PA",4852 +2019-06-01,"Residential Consumption","New Jersey","NJ",6644 +2019-06-01,"Residential Consumption","Texas","TX",6614 +2019-06-01,"Residential Consumption","Oregon","OR",1297 +2019-06-01,"Residential Consumption","North Carolina","NC",1439 +2019-06-01,"Residential Consumption","Wisconsin","WI",3127 +2019-06-01,"Residential Consumption","Utah","UT",2032 +2019-06-01,"Residential Consumption","Maryland","MD",1749 +2019-06-01,"Residential Consumption","Maine","ME",83 +2019-06-01,"Residential Consumption","Wyoming","WY",528 +2019-06-01,"Residential Consumption","Ohio","OH",5378 +2019-06-01,"Residential Consumption","Mississippi","MS",502 +2019-06-01,"Residential Consumption","Louisiana","LA",1208 +2019-06-01,"Residential Consumption","Vermont","VT",128 +2019-06-01,"Residential Consumption","Georgia","GA",4109 +2019-06-01,"Residential Consumption","North Dakota","ND",234 +2019-06-01,"Residential Consumption","Oklahoma","OK",1511 +2019-06-01,"Residential Consumption","Delaware","DE",192 +2019-06-01,"Residential Consumption","Nebraska","NE",901 +2019-06-01,"Residential Consumption","New Mexico","NM",1108 +2019-06-01,"Residential Consumption","Kentucky","KY",911 +2019-06-01,"Vehicle Fuel Consumption","Utah","UT",26 +2019-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",138 +2019-06-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2019-06-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2019-06-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2019-06-01,"Vehicle Fuel Consumption","California","CA",2172 +2019-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",4370 +2019-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-06-01,"Vehicle Fuel Consumption","Missouri","MO",31 +2019-06-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-06-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-06-01,"Vehicle Fuel Consumption","Texas","TX",130 +2019-06-01,"Vehicle Fuel Consumption","Maryland","MD",57 +2019-06-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-06-01,"Vehicle Fuel Consumption","New York","NY",80 +2019-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-06-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2019-06-01,"Vehicle Fuel Consumption","Georgia","GA",148 +2019-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-06-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-06-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-06-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2019-06-01,"Vehicle Fuel Consumption","Florida","FL",408 +2019-06-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2019-06-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-06-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-06-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-06-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-06-01,"Vehicle Fuel Consumption","Colorado","CO",151 +2019-06-01,"Vehicle Fuel Consumption","Minnesota","MN",41 +2019-06-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-06-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-06-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-06-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2019-06-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-06-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2019-06-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2019-06-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2019-06-01,"Vehicle Fuel Consumption","Kansas","KS",60 +2019-06-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-06-01,"Vehicle Fuel Consumption","North Carolina","NC",129 +2019-06-01,"Vehicle Fuel Consumption","Illinois","IL",10 +2019-07-01,"Commercial Consumption","North Dakota","ND",325 +2019-07-01,"Commercial Consumption","New Mexico","NM",958 +2019-07-01,"Commercial Consumption","Massachusetts","MA",4133 +2019-07-01,"Commercial Consumption","Florida","FL",4539 +2019-07-01,"Commercial Consumption","Alabama","AL",1169 +2019-07-01,"Commercial Consumption","Nebraska","NE",1273 +2019-07-01,"Commercial Consumption","South Carolina","SC",1315 +2019-07-01,"Commercial Consumption","Virginia","VA",3073 +2019-07-01,"Commercial Consumption","Maine","ME",271 +2019-07-01,"Commercial Consumption","Georgia","GA",3442 +2019-07-01,"Commercial Consumption","Vermont","VT",360 +2019-07-01,"Commercial Consumption","Rhode Island","RI",228 +2019-07-01,"Commercial Consumption","Illinois","IL",8412 +2019-07-01,"Commercial Consumption","Ohio","OH",5186 +2019-07-01,"Commercial Consumption","Idaho","ID",782 +2019-07-01,"Commercial Consumption","Hawaii","HI",235 +2019-07-01,"Commercial Consumption","Alaska","AK",471 +2019-07-01,"Commercial Consumption","Arkansas","AR",3002 +2019-07-01,"Commercial Consumption","Utah","UT",1638 +2019-07-01,"Commercial Consumption","New Hampshire","NH",231 +2019-07-01,"Commercial Consumption","Kansas","KS",1776 +2019-07-01,"Commercial Consumption","Mississippi","MS",1008 +2019-07-01,"Commercial Consumption","Arizona","AZ",1949 +2019-07-01,"Commercial Consumption","Louisiana","LA",1976 +2019-07-01,"Commercial Consumption","District of Columbia","DC",665 +2019-07-01,"Commercial Consumption","West Virginia","WV",1003 +2019-07-01,"Commercial Consumption","Oklahoma","OK",1682 +2019-07-01,"Commercial Consumption","South Dakota","SD",335 +2019-07-01,"Commercial Consumption","New Jersey","NJ",7056 +2019-07-01,"Commercial Consumption","Montana","MT",1082 +2019-07-01,"Commercial Consumption","U.S.","U.S.",141950 +2019-07-01,"Commercial Consumption","Maryland","MD",3456 +2019-07-01,"Commercial Consumption","Connecticut","CT",2505 +2019-07-01,"Commercial Consumption","Michigan","MI",4922 +2019-07-01,"Commercial Consumption","Indiana","IN",2363 +2019-07-01,"Commercial Consumption","Wyoming","WY",387 +2019-07-01,"Commercial Consumption","Washington","WA",2343 +2019-07-01,"Commercial Consumption","North Carolina","NC",2145 +2019-07-01,"Commercial Consumption","Oregon","OR",1003 +2019-07-01,"Commercial Consumption","Missouri","MO",2201 +2019-07-01,"Commercial Consumption","Texas","TX",10964 +2019-07-01,"Commercial Consumption","Minnesota","MN",3036 +2019-07-01,"Commercial Consumption","Iowa","IA",1731 +2019-07-01,"Commercial Consumption","Delaware","DE",762 +2019-07-01,"Commercial Consumption","Nevada","NV",1839 +2019-07-01,"Commercial Consumption","Colorado","CO",864 +2019-07-01,"Commercial Consumption","Pennsylvania","PA",4890 +2019-07-01,"Commercial Consumption","Wisconsin","WI",2774 +2019-07-01,"Commercial Consumption","Kentucky","KY",1236 +2019-07-01,"Commercial Consumption","California","CA",15947 +2019-07-01,"Commercial Consumption","New York","NY",14673 +2019-07-01,"Commercial Consumption","Tennessee","TN",2336 +2019-07-01,"Delivered to Consumers","Vermont","VT",598 +2019-07-01,"Delivered to Consumers","Rhode Island","RI",8013 +2019-07-01,"Delivered to Consumers","Oregon","OR",20450 +2019-07-01,"Delivered to Consumers","North Dakota","ND",5367 +2019-07-01,"Delivered to Consumers","Florida","FL",146165 +2019-07-01,"Delivered to Consumers","New Mexico","NM",14355 +2019-07-01,"Delivered to Consumers","Kansas","KS",18138 +2019-07-01,"Delivered to Consumers","Idaho","ID",7351 +2019-07-01,"Delivered to Consumers","Ohio","OH",65787 +2019-07-01,"Delivered to Consumers","Connecticut","CT",22325 +2019-07-01,"Delivered to Consumers","Nebraska","NE",11069 +2019-07-01,"Delivered to Consumers","Mississippi","MS",52691 +2019-07-01,"Delivered to Consumers","California","CA",160404 +2019-07-01,"Delivered to Consumers","Utah","UT",14174 +2019-07-01,"Delivered to Consumers","U.S.","U.S.",2162450 +2019-07-01,"Delivered to Consumers","Wyoming","WY",5872 +2019-07-01,"Delivered to Consumers","Maryland","MD",17889 +2019-07-01,"Delivered to Consumers","Tennessee","TN",26697 +2019-07-01,"Delivered to Consumers","Alabama","AL",63400 +2019-07-01,"Delivered to Consumers","Wisconsin","WI",30147 +2019-07-01,"Delivered to Consumers","Georgia","GA",65576 +2019-07-01,"Delivered to Consumers","Indiana","IN",57707 +2019-07-01,"Delivered to Consumers","Montana","MT",3928 +2019-07-01,"Delivered to Consumers","North Carolina","NC",41818 +2019-07-01,"Delivered to Consumers","Missouri","MO",16222 +2019-07-01,"Delivered to Consumers","Louisiana","LA",133586 +2019-07-01,"Delivered to Consumers","District of Columbia","DC",931 +2019-07-01,"Delivered to Consumers","Hawaii","HI",290 +2019-07-01,"Delivered to Consumers","Alaska","AK",3426 +2019-07-01,"Delivered to Consumers","Arkansas","AR",29870 +2019-07-01,"Delivered to Consumers","New Jersey","NJ",50851 +2019-07-01,"Delivered to Consumers","Washington","WA",23714 +2019-07-01,"Delivered to Consumers","Illinois","IL",60405 +2019-07-01,"Delivered to Consumers","South Dakota","SD",5252 +2019-07-01,"Delivered to Consumers","Pennsylvania","PA",100087 +2019-07-01,"Delivered to Consumers","Massachusetts","MA",26964 +2019-07-01,"Delivered to Consumers","Texas","TX",366865 +2019-07-01,"Delivered to Consumers","South Carolina","SC",29963 +2019-07-01,"Delivered to Consumers","Maine","ME",3375 +2019-07-01,"Delivered to Consumers","Arizona","AZ",45416 +2019-07-01,"Delivered to Consumers","New York","NY",85836 +2019-07-01,"Delivered to Consumers","Kentucky","KY",22511 +2019-07-01,"Delivered to Consumers","Iowa","IA",27003 +2019-07-01,"Delivered to Consumers","Virginia","VA",59478 +2019-07-01,"Delivered to Consumers","Nevada","NV",26856 +2019-07-01,"Delivered to Consumers","Minnesota","MN",27597 +2019-07-01,"Delivered to Consumers","Delaware","DE",9077 +2019-07-01,"Delivered to Consumers","West Virginia","WV",6149 +2019-07-01,"Delivered to Consumers","Oklahoma","OK",61199 +2019-07-01,"Delivered to Consumers","Michigan","MI",51540 +2019-07-01,"Delivered to Consumers","Colorado","CO",22723 +2019-07-01,"Delivered to Consumers","New Hampshire","NH",5339 +2019-07-01,"Electric Power Consumption","Illinois","IL",25997 +2019-07-01,"Electric Power Consumption","Missouri","MO",7930 +2019-07-01,"Electric Power Consumption","Delaware","DE",5816 +2019-07-01,"Electric Power Consumption","Florida","FL",131563 +2019-07-01,"Electric Power Consumption","New Mexico","NM",10986 +2019-07-01,"Electric Power Consumption","South Carolina","SC",20142 +2019-07-01,"Electric Power Consumption","New York","NY",54647 +2019-07-01,"Electric Power Consumption","Texas","TX",201489 +2019-07-01,"Electric Power Consumption","Oklahoma","OK",41952 +2019-07-01,"Electric Power Consumption","South Dakota","SD",993 +2019-07-01,"Electric Power Consumption","Mississippi","MS",39948 +2019-07-01,"Electric Power Consumption","Hawaii","HI",NA +2019-07-01,"Electric Power Consumption","Arkansas","AR",17430 +2019-07-01,"Electric Power Consumption","Minnesota","MN",10146 +2019-07-01,"Electric Power Consumption","Pennsylvania","PA",75263 +2019-07-01,"Electric Power Consumption","Montana","MT",522 +2019-07-01,"Electric Power Consumption","Georgia","GA",43074 +2019-07-01,"Electric Power Consumption","Utah","UT",7480 +2019-07-01,"Electric Power Consumption","Vermont","VT",2 +2019-07-01,"Electric Power Consumption","U.S.","U.S.",1254667 +2019-07-01,"Electric Power Consumption","Ohio","OH",34661 +2019-07-01,"Electric Power Consumption","Arizona","AZ",40819 +2019-07-01,"Electric Power Consumption","Virginia","VA",46652 +2019-07-01,"Electric Power Consumption","Louisiana","LA",38523 +2019-07-01,"Electric Power Consumption","Wisconsin","WI",14713 +2019-07-01,"Electric Power Consumption","Wyoming","WY",388 +2019-07-01,"Electric Power Consumption","Tennessee","TN",12061 +2019-07-01,"Electric Power Consumption","Maine","ME",1686 +2019-07-01,"Electric Power Consumption","New Hampshire","NH",4249 +2019-07-01,"Electric Power Consumption","Maryland","MD",11091 +2019-07-01,"Electric Power Consumption","Connecticut","CT",17085 +2019-07-01,"Electric Power Consumption","Alaska","AK",2119 +2019-07-01,"Electric Power Consumption","Washington","WA",13495 +2019-07-01,"Electric Power Consumption","New Jersey","NJ",34282 +2019-07-01,"Electric Power Consumption","Idaho","ID",3416 +2019-07-01,"Electric Power Consumption","Oregon","OR",14326 +2019-07-01,"Electric Power Consumption","Michigan","MI",30117 +2019-07-01,"Electric Power Consumption","Massachusetts","MA",17940 +2019-07-01,"Electric Power Consumption","Nevada","NV",21706 +2019-07-01,"Electric Power Consumption","Nebraska","NE",1782 +2019-07-01,"Electric Power Consumption","Indiana","IN",21068 +2019-07-01,"Electric Power Consumption","Alabama","AL",43960 +2019-07-01,"Electric Power Consumption","Rhode Island","RI",6754 +2019-07-01,"Electric Power Consumption","Iowa","IA",6172 +2019-07-01,"Electric Power Consumption","Colorado","CO",15192 +2019-07-01,"Electric Power Consumption","Kansas","KS",3426 +2019-07-01,"Electric Power Consumption","West Virginia","WV",2013 +2019-07-01,"Electric Power Consumption","North Carolina","NC",29924 +2019-07-01,"Electric Power Consumption","Kentucky","KY",12038 +2019-07-01,"Electric Power Consumption","North Dakota","ND",1724 +2019-07-01,"Electric Power Consumption","California","CA",55908 +2019-07-01,"Industrial Consumption","Montana","MT",1804 +2019-07-01,"Industrial Consumption","Louisiana","LA",91998 +2019-07-01,"Industrial Consumption","New York","NY",6223 +2019-07-01,"Industrial Consumption","Virginia","VA",8205 +2019-07-01,"Industrial Consumption","New Jersey","NJ",4584 +2019-07-01,"Industrial Consumption","Minnesota","MN",12139 +2019-07-01,"Industrial Consumption","North Dakota","ND",3139 +2019-07-01,"Industrial Consumption","Kansas","KS",11707 +2019-07-01,"Industrial Consumption","Maine","ME",1369 +2019-07-01,"Industrial Consumption","Alabama","AL",17497 +2019-07-01,"Industrial Consumption","Texas","TX",148069 +2019-07-01,"Industrial Consumption","Vermont","VT",154 +2019-07-01,"Industrial Consumption","Iowa","IA",17994 +2019-07-01,"Industrial Consumption","Indiana","IN",32105 +2019-07-01,"Industrial Consumption","Hawaii","HI",8 +2019-07-01,"Industrial Consumption","New Mexico","NM",1387 +2019-07-01,"Industrial Consumption","California","CA",64900 +2019-07-01,"Industrial Consumption","West Virginia","WV",2801 +2019-07-01,"Industrial Consumption","Georgia","GA",12210 +2019-07-01,"Industrial Consumption","Maryland","MD",1710 +2019-07-01,"Industrial Consumption","Utah","UT",3023 +2019-07-01,"Industrial Consumption","South Carolina","SC",7965 +2019-07-01,"Industrial Consumption","Tennessee","TN",11164 +2019-07-01,"Industrial Consumption","Pennsylvania","PA",15781 +2019-07-01,"Industrial Consumption","Mississippi","MS",11191 +2019-07-01,"Industrial Consumption","Michigan","MI",10946 +2019-07-01,"Industrial Consumption","Delaware","DE",2314 +2019-07-01,"Industrial Consumption","North Carolina","NC",8641 +2019-07-01,"Industrial Consumption","Massachusetts","MA",2180 +2019-07-01,"Industrial Consumption","Colorado","CO",5483 +2019-07-01,"Industrial Consumption","Washington","WA",5885 +2019-07-01,"Industrial Consumption","Arkansas","AR",8805 +2019-07-01,"Industrial Consumption","Nebraska","NE",7235 +2019-07-01,"Industrial Consumption","New Hampshire","NH",708 +2019-07-01,"Industrial Consumption","Florida","FL",8825 +2019-07-01,"Industrial Consumption","Oklahoma","OK",16177 +2019-07-01,"Industrial Consumption","South Dakota","SD",3681 +2019-07-01,"Industrial Consumption","Ohio","OH",21042 +2019-07-01,"Industrial Consumption","Arizona","AZ",1303 +2019-07-01,"Industrial Consumption","Wyoming","WY",4836 +2019-07-01,"Industrial Consumption","Kentucky","KY",8438 +2019-07-01,"Industrial Consumption","District of Columbia","DC",NA +2019-07-01,"Industrial Consumption","Alaska","AK",423 +2019-07-01,"Industrial Consumption","Missouri","MO",4307 +2019-07-01,"Industrial Consumption","U.S.","U.S.",649556 +2019-07-01,"Industrial Consumption","Oregon","OR",4154 +2019-07-01,"Industrial Consumption","Nevada","NV",1750 +2019-07-01,"Industrial Consumption","Wisconsin","WI",10254 +2019-07-01,"Industrial Consumption","Idaho","ID",2570 +2019-07-01,"Industrial Consumption","Connecticut","CT",1693 +2019-07-01,"Industrial Consumption","Illinois","IL",18098 +2019-07-01,"Industrial Consumption","Rhode Island","RI",680 +2019-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",153635 +2019-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",77819 +2019-07-01,"Residential Consumption","North Carolina","NC",975 +2019-07-01,"Residential Consumption","Louisiana","LA",1055 +2019-07-01,"Residential Consumption","Vermont","VT",82 +2019-07-01,"Residential Consumption","Nevada","NV",1453 +2019-07-01,"Residential Consumption","Alabama","AL",765 +2019-07-01,"Residential Consumption","Utah","UT",2005 +2019-07-01,"Residential Consumption","Minnesota","MN",2234 +2019-07-01,"Residential Consumption","Arkansas","AR",627 +2019-07-01,"Residential Consumption","New Hampshire","NH",150 +2019-07-01,"Residential Consumption","Washington","WA",1977 +2019-07-01,"Residential Consumption","U.S.","U.S.",111761 +2019-07-01,"Residential Consumption","Wisconsin","WI",2366 +2019-07-01,"Residential Consumption","Michigan","MI",5554 +2019-07-01,"Residential Consumption","New Mexico","NM",1005 +2019-07-01,"Residential Consumption","Kansas","KS",1168 +2019-07-01,"Residential Consumption","California","CA",21403 +2019-07-01,"Residential Consumption","Ohio","OH",4855 +2019-07-01,"Residential Consumption","Nebraska","NE",767 +2019-07-01,"Residential Consumption","Florida","FL",816 +2019-07-01,"Residential Consumption","Alaska","AK",413 +2019-07-01,"Residential Consumption","West Virginia","WV",331 +2019-07-01,"Residential Consumption","New York","NY",10211 +2019-07-01,"Residential Consumption","South Carolina","SC",531 +2019-07-01,"Residential Consumption","Oregon","OR",962 +2019-07-01,"Residential Consumption","Iowa","IA",1102 +2019-07-01,"Residential Consumption","Hawaii","HI",47 +2019-07-01,"Residential Consumption","Maryland","MD",1573 +2019-07-01,"Residential Consumption","South Dakota","SD",244 +2019-07-01,"Residential Consumption","Idaho","ID",578 +2019-07-01,"Residential Consumption","New Jersey","NJ",4900 +2019-07-01,"Residential Consumption","Colorado","CO",1028 +2019-07-01,"Residential Consumption","Oklahoma","OK",1240 +2019-07-01,"Residential Consumption","Illinois","IL",7887 +2019-07-01,"Residential Consumption","Rhode Island","RI",342 +2019-07-01,"Residential Consumption","Virginia","VA",1475 +2019-07-01,"Residential Consumption","District of Columbia","DC",228 +2019-07-01,"Residential Consumption","Pennsylvania","PA",4011 +2019-07-01,"Residential Consumption","North Dakota","ND",179 +2019-07-01,"Residential Consumption","Delaware","DE",184 +2019-07-01,"Residential Consumption","Mississippi","MS",544 +2019-07-01,"Residential Consumption","Connecticut","CT",1025 +2019-07-01,"Residential Consumption","Tennessee","TN",1107 +2019-07-01,"Residential Consumption","Indiana","IN",2170 +2019-07-01,"Residential Consumption","Montana","MT",521 +2019-07-01,"Residential Consumption","Kentucky","KY",794 +2019-07-01,"Residential Consumption","Arizona","AZ",1208 +2019-07-01,"Residential Consumption","Texas","TX",6209 +2019-07-01,"Residential Consumption","Georgia","GA",6697 +2019-07-01,"Residential Consumption","Maine","ME",49 +2019-07-01,"Residential Consumption","Massachusetts","MA",2700 +2019-07-01,"Residential Consumption","Missouri","MO",1753 +2019-07-01,"Residential Consumption","Wyoming","WY",261 +2019-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-07-01,"Vehicle Fuel Consumption","Utah","UT",27 +2019-07-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2019-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",38 +2019-07-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-07-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-07-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2019-07-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",143 +2019-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",29 +2019-07-01,"Vehicle Fuel Consumption","Minnesota","MN",43 +2019-07-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2019-07-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-07-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2019-07-01,"Vehicle Fuel Consumption","New York","NY",82 +2019-07-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-07-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-07-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-07-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-07-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2019-07-01,"Vehicle Fuel Consumption","Arizona","AZ",138 +2019-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-07-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-07-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2019-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-07-01,"Vehicle Fuel Consumption","California","CA",2244 +2019-07-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2019-07-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-07-01,"Vehicle Fuel Consumption","Maryland","MD",58 +2019-07-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-07-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-07-01,"Vehicle Fuel Consumption","Georgia","GA",152 +2019-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-07-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-07-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-07-01,"Vehicle Fuel Consumption","Louisiana","LA",34 +2019-07-01,"Vehicle Fuel Consumption","Colorado","CO",156 +2019-07-01,"Vehicle Fuel Consumption","Nevada","NV",108 +2019-07-01,"Vehicle Fuel Consumption","Kansas","KS",62 +2019-07-01,"Vehicle Fuel Consumption","Texas","TX",135 +2019-07-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2019-07-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-07-01,"Vehicle Fuel Consumption","Florida","FL",422 +2019-07-01,"Vehicle Fuel Consumption","Missouri","MO",32 +2019-08-01,"Commercial Consumption","Washington","WA",2240 +2019-08-01,"Commercial Consumption","North Carolina","NC",2326 +2019-08-01,"Commercial Consumption","Minnesota","MN",2778 +2019-08-01,"Commercial Consumption","Missouri","MO",2208 +2019-08-01,"Commercial Consumption","Delaware","DE",744 +2019-08-01,"Commercial Consumption","Tennessee","TN",2171 +2019-08-01,"Commercial Consumption","Illinois","IL",8239 +2019-08-01,"Commercial Consumption","Oregon","OR",1039 +2019-08-01,"Commercial Consumption","Pennsylvania","PA",5066 +2019-08-01,"Commercial Consumption","U.S.","U.S.",140788 +2019-08-01,"Commercial Consumption","Arkansas","AR",2892 +2019-08-01,"Commercial Consumption","South Carolina","SC",1346 +2019-08-01,"Commercial Consumption","Massachusetts","MA",3907 +2019-08-01,"Commercial Consumption","Kentucky","KY",1187 +2019-08-01,"Commercial Consumption","Kansas","KS",1575 +2019-08-01,"Commercial Consumption","Georgia","GA",2164 +2019-08-01,"Commercial Consumption","Florida","FL",4669 +2019-08-01,"Commercial Consumption","Rhode Island","RI",238 +2019-08-01,"Commercial Consumption","North Dakota","ND",350 +2019-08-01,"Commercial Consumption","New Mexico","NM",1188 +2019-08-01,"Commercial Consumption","Oklahoma","OK",1607 +2019-08-01,"Commercial Consumption","Maine","ME",282 +2019-08-01,"Commercial Consumption","Vermont","VT",362 +2019-08-01,"Commercial Consumption","Wyoming","WY",330 +2019-08-01,"Commercial Consumption","Colorado","CO",1654 +2019-08-01,"Commercial Consumption","Wisconsin","WI",3070 +2019-08-01,"Commercial Consumption","Alabama","AL",1067 +2019-08-01,"Commercial Consumption","New York","NY",14698 +2019-08-01,"Commercial Consumption","District of Columbia","DC",845 +2019-08-01,"Commercial Consumption","Virginia","VA",3429 +2019-08-01,"Commercial Consumption","South Dakota","SD",345 +2019-08-01,"Commercial Consumption","Texas","TX",10540 +2019-08-01,"Commercial Consumption","Ohio","OH",5007 +2019-08-01,"Commercial Consumption","Iowa","IA",1757 +2019-08-01,"Commercial Consumption","California","CA",17132 +2019-08-01,"Commercial Consumption","Arizona","AZ",1887 +2019-08-01,"Commercial Consumption","West Virginia","WV",1039 +2019-08-01,"Commercial Consumption","New Jersey","NJ",5351 +2019-08-01,"Commercial Consumption","New Hampshire","NH",245 +2019-08-01,"Commercial Consumption","Montana","MT",941 +2019-08-01,"Commercial Consumption","Maryland","MD",3458 +2019-08-01,"Commercial Consumption","Alaska","AK",495 +2019-08-01,"Commercial Consumption","Connecticut","CT",2475 +2019-08-01,"Commercial Consumption","Nebraska","NE",1176 +2019-08-01,"Commercial Consumption","Louisiana","LA",2308 +2019-08-01,"Commercial Consumption","Utah","UT",1278 +2019-08-01,"Commercial Consumption","Idaho","ID",788 +2019-08-01,"Commercial Consumption","Hawaii","HI",230 +2019-08-01,"Commercial Consumption","Mississippi","MS",1022 +2019-08-01,"Commercial Consumption","Nevada","NV",1783 +2019-08-01,"Commercial Consumption","Michigan","MI",5502 +2019-08-01,"Commercial Consumption","Indiana","IN",2358 +2019-08-01,"Delivered to Consumers","Vermont","VT",608 +2019-08-01,"Delivered to Consumers","South Dakota","SD",5098 +2019-08-01,"Delivered to Consumers","Montana","MT",3561 +2019-08-01,"Delivered to Consumers","Arkansas","AR",29394 +2019-08-01,"Delivered to Consumers","Mississippi","MS",54019 +2019-08-01,"Delivered to Consumers","Missouri","MO",16316 +2019-08-01,"Delivered to Consumers","Texas","TX",395153 +2019-08-01,"Delivered to Consumers","Oregon","OR",22479 +2019-08-01,"Delivered to Consumers","New Hampshire","NH",4962 +2019-08-01,"Delivered to Consumers","Delaware","DE",8075 +2019-08-01,"Delivered to Consumers","Wyoming","WY",5603 +2019-08-01,"Delivered to Consumers","New York","NY",76655 +2019-08-01,"Delivered to Consumers","Iowa","IA",29277 +2019-08-01,"Delivered to Consumers","District of Columbia","DC",1155 +2019-08-01,"Delivered to Consumers","Oklahoma","OK",65246 +2019-08-01,"Delivered to Consumers","Tennessee","TN",26819 +2019-08-01,"Delivered to Consumers","Kentucky","KY",21676 +2019-08-01,"Delivered to Consumers","Pennsylvania","PA",103830 +2019-08-01,"Delivered to Consumers","Nebraska","NE",11502 +2019-08-01,"Delivered to Consumers","North Dakota","ND",5459 +2019-08-01,"Delivered to Consumers","Florida","FL",150091 +2019-08-01,"Delivered to Consumers","West Virginia","WV",6538 +2019-08-01,"Delivered to Consumers","Illinois","IL",55356 +2019-08-01,"Delivered to Consumers","Hawaii","HI",282 +2019-08-01,"Delivered to Consumers","Alaska","AK",3280 +2019-08-01,"Delivered to Consumers","Idaho","ID",7599 +2019-08-01,"Delivered to Consumers","Ohio","OH",65704 +2019-08-01,"Delivered to Consumers","North Carolina","NC",41919 +2019-08-01,"Delivered to Consumers","South Carolina","SC",29182 +2019-08-01,"Delivered to Consumers","New Jersey","NJ",47933 +2019-08-01,"Delivered to Consumers","Washington","WA",24654 +2019-08-01,"Delivered to Consumers","Kansas","KS",18034 +2019-08-01,"Delivered to Consumers","Michigan","MI",51708 +2019-08-01,"Delivered to Consumers","Connecticut","CT",20133 +2019-08-01,"Delivered to Consumers","Alabama","AL",63535 +2019-08-01,"Delivered to Consumers","California","CA",174664 +2019-08-01,"Delivered to Consumers","Louisiana","LA",135032 +2019-08-01,"Delivered to Consumers","Minnesota","MN",26878 +2019-08-01,"Delivered to Consumers","Utah","UT",13089 +2019-08-01,"Delivered to Consumers","U.S.","U.S.",2197474 +2019-08-01,"Delivered to Consumers","Massachusetts","MA",22503 +2019-08-01,"Delivered to Consumers","Colorado","CO",24237 +2019-08-01,"Delivered to Consumers","Nevada","NV",28384 +2019-08-01,"Delivered to Consumers","New Mexico","NM",16188 +2019-08-01,"Delivered to Consumers","Indiana","IN",58335 +2019-08-01,"Delivered to Consumers","Rhode Island","RI",8389 +2019-08-01,"Delivered to Consumers","Maryland","MD",15980 +2019-08-01,"Delivered to Consumers","Wisconsin","WI",30287 +2019-08-01,"Delivered to Consumers","Virginia","VA",58502 +2019-08-01,"Delivered to Consumers","Maine","ME",2689 +2019-08-01,"Delivered to Consumers","Georgia","GA",62726 +2019-08-01,"Delivered to Consumers","Arizona","AZ",46755 +2019-08-01,"Electric Power Consumption","Idaho","ID",3565 +2019-08-01,"Electric Power Consumption","Montana","MT",636 +2019-08-01,"Electric Power Consumption","Georgia","GA",44328 +2019-08-01,"Electric Power Consumption","New Mexico","NM",12527 +2019-08-01,"Electric Power Consumption","Arkansas","AR",18330 +2019-08-01,"Electric Power Consumption","Oregon","OR",16107 +2019-08-01,"Electric Power Consumption","Kansas","KS",3650 +2019-08-01,"Electric Power Consumption","Wisconsin","WI",14398 +2019-08-01,"Electric Power Consumption","Maine","ME",965 +2019-08-01,"Electric Power Consumption","Arizona","AZ",42354 +2019-08-01,"Electric Power Consumption","California","CA",67181 +2019-08-01,"Electric Power Consumption","South Carolina","SC",19554 +2019-08-01,"Electric Power Consumption","New York","NY",45729 +2019-08-01,"Electric Power Consumption","Minnesota","MN",10088 +2019-08-01,"Electric Power Consumption","Illinois","IL",20922 +2019-08-01,"Electric Power Consumption","Iowa","IA",6401 +2019-08-01,"Electric Power Consumption","South Dakota","SD",949 +2019-08-01,"Electric Power Consumption","Hawaii","HI",NA +2019-08-01,"Electric Power Consumption","North Dakota","ND",1770 +2019-08-01,"Electric Power Consumption","Virginia","VA",44765 +2019-08-01,"Electric Power Consumption","Louisiana","LA",38278 +2019-08-01,"Electric Power Consumption","Utah","UT",7357 +2019-08-01,"Electric Power Consumption","Michigan","MI",29898 +2019-08-01,"Electric Power Consumption","Indiana","IN",20753 +2019-08-01,"Electric Power Consumption","Vermont","VT",0 +2019-08-01,"Electric Power Consumption","Tennessee","TN",12292 +2019-08-01,"Electric Power Consumption","U.S.","U.S.",1277904 +2019-08-01,"Electric Power Consumption","Mississippi","MS",41277 +2019-08-01,"Electric Power Consumption","Maryland","MD",9845 +2019-08-01,"Electric Power Consumption","Florida","FL",134517 +2019-08-01,"Electric Power Consumption","Colorado","CO",14143 +2019-08-01,"Electric Power Consumption","Texas","TX",230057 +2019-08-01,"Electric Power Consumption","West Virginia","WV",2372 +2019-08-01,"Electric Power Consumption","Wyoming","WY",376 +2019-08-01,"Electric Power Consumption","Kentucky","KY",10410 +2019-08-01,"Electric Power Consumption","New Jersey","NJ",31751 +2019-08-01,"Electric Power Consumption","Pennsylvania","PA",72530 +2019-08-01,"Electric Power Consumption","North Carolina","NC",29220 +2019-08-01,"Electric Power Consumption","Connecticut","CT",14916 +2019-08-01,"Electric Power Consumption","Alabama","AL",44599 +2019-08-01,"Electric Power Consumption","Washington","WA",14645 +2019-08-01,"Electric Power Consumption","Rhode Island","RI",7093 +2019-08-01,"Electric Power Consumption","Oklahoma","OK",45722 +2019-08-01,"Electric Power Consumption","Massachusetts","MA",12879 +2019-08-01,"Electric Power Consumption","Nevada","NV",23476 +2019-08-01,"Electric Power Consumption","Nebraska","NE",2089 +2019-08-01,"Electric Power Consumption","Missouri","MO",8051 +2019-08-01,"Electric Power Consumption","Ohio","OH",34658 +2019-08-01,"Electric Power Consumption","New Hampshire","NH",3855 +2019-08-01,"Electric Power Consumption","Delaware","DE",4684 +2019-08-01,"Electric Power Consumption","Alaska","AK",1944 +2019-08-01,"Industrial Consumption","Oklahoma","OK",16650 +2019-08-01,"Industrial Consumption","Missouri","MO",4357 +2019-08-01,"Industrial Consumption","Louisiana","LA",93167 +2019-08-01,"Industrial Consumption","Kansas","KS",11722 +2019-08-01,"Industrial Consumption","U.S.","U.S.",672373 +2019-08-01,"Industrial Consumption","New York","NY",6410 +2019-08-01,"Industrial Consumption","New Hampshire","NH",710 +2019-08-01,"Industrial Consumption","Georgia","GA",12132 +2019-08-01,"Industrial Consumption","Washington","WA",6048 +2019-08-01,"Industrial Consumption","Minnesota","MN",11685 +2019-08-01,"Industrial Consumption","Kentucky","KY",9308 +2019-08-01,"Industrial Consumption","Delaware","DE",2480 +2019-08-01,"Industrial Consumption","Colorado","CO",5535 +2019-08-01,"Industrial Consumption","New Mexico","NM",1393 +2019-08-01,"Industrial Consumption","Pennsylvania","PA",22163 +2019-08-01,"Industrial Consumption","Alabama","AL",17207 +2019-08-01,"Industrial Consumption","Wisconsin","WI",10430 +2019-08-01,"Industrial Consumption","Florida","FL",9659 +2019-08-01,"Industrial Consumption","Maryland","MD",1130 +2019-08-01,"Industrial Consumption","Hawaii","HI",8 +2019-08-01,"Industrial Consumption","Nevada","NV",1706 +2019-08-01,"Industrial Consumption","Maine","ME",1393 +2019-08-01,"Industrial Consumption","Texas","TX",149207 +2019-08-01,"Industrial Consumption","Rhode Island","RI",690 +2019-08-01,"Industrial Consumption","South Dakota","SD",3590 +2019-08-01,"Industrial Consumption","Utah","UT",2875 +2019-08-01,"Industrial Consumption","California","CA",69610 +2019-08-01,"Industrial Consumption","Arkansas","AR",7625 +2019-08-01,"Industrial Consumption","Nebraska","NE",7521 +2019-08-01,"Industrial Consumption","Virginia","VA",8748 +2019-08-01,"Industrial Consumption","New Jersey","NJ",6595 +2019-08-01,"Industrial Consumption","Idaho","ID",2688 +2019-08-01,"Industrial Consumption","Connecticut","CT",1792 +2019-08-01,"Industrial Consumption","North Carolina","NC",9224 +2019-08-01,"Industrial Consumption","Vermont","VT",163 +2019-08-01,"Industrial Consumption","Tennessee","TN",11413 +2019-08-01,"Industrial Consumption","Indiana","IN",33212 +2019-08-01,"Industrial Consumption","Illinois","IL",18852 +2019-08-01,"Industrial Consumption","Alaska","AK",385 +2019-08-01,"Industrial Consumption","Oregon","OR",4370 +2019-08-01,"Industrial Consumption","West Virginia","WV",2783 +2019-08-01,"Industrial Consumption","North Dakota","ND",3154 +2019-08-01,"Industrial Consumption","Montana","MT",1715 +2019-08-01,"Industrial Consumption","Massachusetts","MA",3106 +2019-08-01,"Industrial Consumption","Ohio","OH",21691 +2019-08-01,"Industrial Consumption","Arizona","AZ",1287 +2019-08-01,"Industrial Consumption","Mississippi","MS",11168 +2019-08-01,"Industrial Consumption","South Carolina","SC",7755 +2019-08-01,"Industrial Consumption","Wyoming","WY",4682 +2019-08-01,"Industrial Consumption","Iowa","IA",20003 +2019-08-01,"Industrial Consumption","Michigan","MI",11179 +2019-08-01,"Industrial Consumption","District of Columbia","DC",NA +2019-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",157370 +2019-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",79079 +2019-08-01,"Residential Consumption","Ohio","OH",4306 +2019-08-01,"Residential Consumption","Iowa","IA",1114 +2019-08-01,"Residential Consumption","Connecticut","CT",933 +2019-08-01,"Residential Consumption","Maryland","MD",1488 +2019-08-01,"Residential Consumption","South Dakota","SD",214 +2019-08-01,"Residential Consumption","Kentucky","KY",766 +2019-08-01,"Residential Consumption","Alaska","AK",456 +2019-08-01,"Residential Consumption","Wyoming","WY",212 +2019-08-01,"Residential Consumption","New York","NY",9735 +2019-08-01,"Residential Consumption","Oregon","OR",959 +2019-08-01,"Residential Consumption","Mississippi","MS",552 +2019-08-01,"Residential Consumption","North Dakota","ND",186 +2019-08-01,"Residential Consumption","New Hampshire","NH",150 +2019-08-01,"Residential Consumption","Kansas","KS",1025 +2019-08-01,"Residential Consumption","Washington","WA",1707 +2019-08-01,"Residential Consumption","South Carolina","SC",515 +2019-08-01,"Residential Consumption","Virginia","VA",1486 +2019-08-01,"Residential Consumption","New Mexico","NM",1062 +2019-08-01,"Residential Consumption","Florida","FL",824 +2019-08-01,"Residential Consumption","Alabama","AL",656 +2019-08-01,"Residential Consumption","U.S.","U.S.",101894 +2019-08-01,"Residential Consumption","Illinois","IL",7332 +2019-08-01,"Residential Consumption","Louisiana","LA",1246 +2019-08-01,"Residential Consumption","Hawaii","HI",44 +2019-08-01,"Residential Consumption","Vermont","VT",81 +2019-08-01,"Residential Consumption","Tennessee","TN",915 +2019-08-01,"Residential Consumption","Pennsylvania","PA",3928 +2019-08-01,"Residential Consumption","Maine","ME",49 +2019-08-01,"Residential Consumption","Idaho","ID",552 +2019-08-01,"Residential Consumption","New Jersey","NJ",4207 +2019-08-01,"Residential Consumption","Missouri","MO",1668 +2019-08-01,"Residential Consumption","Rhode Island","RI",360 +2019-08-01,"Residential Consumption","Nebraska","NE",703 +2019-08-01,"Residential Consumption","Minnesota","MN",2285 +2019-08-01,"Residential Consumption","District of Columbia","DC",272 +2019-08-01,"Residential Consumption","Oklahoma","OK",1118 +2019-08-01,"Residential Consumption","California","CA",18498 +2019-08-01,"Residential Consumption","Michigan","MI",5128 +2019-08-01,"Residential Consumption","Nevada","NV",1310 +2019-08-01,"Residential Consumption","Montana","MT",269 +2019-08-01,"Residential Consumption","Colorado","CO",2749 +2019-08-01,"Residential Consumption","Delaware","DE",168 +2019-08-01,"Residential Consumption","Arizona","AZ",1088 +2019-08-01,"Residential Consumption","Texas","TX",5214 +2019-08-01,"Residential Consumption","North Carolina","NC",1015 +2019-08-01,"Residential Consumption","Wisconsin","WI",2350 +2019-08-01,"Residential Consumption","Utah","UT",1552 +2019-08-01,"Residential Consumption","Georgia","GA",3950 +2019-08-01,"Residential Consumption","Indiana","IN",2013 +2019-08-01,"Residential Consumption","Massachusetts","MA",2600 +2019-08-01,"Residential Consumption","Arkansas","AR",541 +2019-08-01,"Residential Consumption","West Virginia","WV",343 +2019-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-08-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2019-08-01,"Vehicle Fuel Consumption","Kansas","KS",62 +2019-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-08-01,"Vehicle Fuel Consumption","Arizona","AZ",138 +2019-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-08-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2019-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2019-08-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-08-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2019-08-01,"Vehicle Fuel Consumption","Minnesota","MN",43 +2019-08-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-08-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-08-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-08-01,"Vehicle Fuel Consumption","Florida","FL",422 +2019-08-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-08-01,"Vehicle Fuel Consumption","Missouri","MO",32 +2019-08-01,"Vehicle Fuel Consumption","Maryland","MD",58 +2019-08-01,"Vehicle Fuel Consumption","Georgia","GA",152 +2019-08-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-08-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-08-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-08-01,"Vehicle Fuel Consumption","Texas","TX",135 +2019-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",29 +2019-08-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-08-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",143 +2019-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2019-08-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-08-01,"Vehicle Fuel Consumption","Colorado","CO",156 +2019-08-01,"Vehicle Fuel Consumption","Utah","UT",27 +2019-08-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2019-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-08-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2019-08-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-08-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-08-01,"Vehicle Fuel Consumption","California","CA",2244 +2019-08-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-08-01,"Vehicle Fuel Consumption","New York","NY",82 +2019-08-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-08-01,"Vehicle Fuel Consumption","Louisiana","LA",34 +2019-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-08-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2019-08-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-08-01,"Vehicle Fuel Consumption","Nevada","NV",108 +2019-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",38 +2019-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-08-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-09-01,"Commercial Consumption","North Carolina","NC",2478 +2019-09-01,"Commercial Consumption","Minnesota","MN",3027 +2019-09-01,"Commercial Consumption","Vermont","VT",375 +2019-09-01,"Commercial Consumption","Arkansas","AR",2916 +2019-09-01,"Commercial Consumption","Arizona","AZ",1911 +2019-09-01,"Commercial Consumption","Nevada","NV",1876 +2019-09-01,"Commercial Consumption","New Jersey","NJ",5606 +2019-09-01,"Commercial Consumption","Ohio","OH",5246 +2019-09-01,"Commercial Consumption","Iowa","IA",1742 +2019-09-01,"Commercial Consumption","Hawaii","HI",214 +2019-09-01,"Commercial Consumption","Wyoming","WY",294 +2019-09-01,"Commercial Consumption","West Virginia","WV",975 +2019-09-01,"Commercial Consumption","South Carolina","SC",1335 +2019-09-01,"Commercial Consumption","Utah","UT",1574 +2019-09-01,"Commercial Consumption","Alabama","AL",1152 +2019-09-01,"Commercial Consumption","New York","NY",14663 +2019-09-01,"Commercial Consumption","Delaware","DE",758 +2019-09-01,"Commercial Consumption","Tennessee","TN",2404 +2019-09-01,"Commercial Consumption","Massachusetts","MA",5015 +2019-09-01,"Commercial Consumption","Wisconsin","WI",3034 +2019-09-01,"Commercial Consumption","Texas","TX",10249 +2019-09-01,"Commercial Consumption","Florida","FL",4697 +2019-09-01,"Commercial Consumption","Rhode Island","RI",288 +2019-09-01,"Commercial Consumption","Louisiana","LA",2018 +2019-09-01,"Commercial Consumption","New Hampshire","NH",307 +2019-09-01,"Commercial Consumption","Montana","MT",1143 +2019-09-01,"Commercial Consumption","Kansas","KS",1907 +2019-09-01,"Commercial Consumption","Connecticut","CT",2541 +2019-09-01,"Commercial Consumption","Colorado","CO",1703 +2019-09-01,"Commercial Consumption","New Mexico","NM",1157 +2019-09-01,"Commercial Consumption","South Dakota","SD",374 +2019-09-01,"Commercial Consumption","U.S.","U.S.",143158 +2019-09-01,"Commercial Consumption","Maryland","MD",3341 +2019-09-01,"Commercial Consumption","Idaho","ID",1023 +2019-09-01,"Commercial Consumption","Illinois","IL",8344 +2019-09-01,"Commercial Consumption","Washington","WA",2636 +2019-09-01,"Commercial Consumption","Oklahoma","OK",1615 +2019-09-01,"Commercial Consumption","Virginia","VA",3032 +2019-09-01,"Commercial Consumption","Missouri","MO",2130 +2019-09-01,"Commercial Consumption","Georgia","GA",2011 +2019-09-01,"Commercial Consumption","Nebraska","NE",1063 +2019-09-01,"Commercial Consumption","Michigan","MI",5222 +2019-09-01,"Commercial Consumption","Indiana","IN",2761 +2019-09-01,"Commercial Consumption","District of Columbia","DC",736 +2019-09-01,"Commercial Consumption","North Dakota","ND",379 +2019-09-01,"Commercial Consumption","Oregon","OR",1341 +2019-09-01,"Commercial Consumption","Pennsylvania","PA",5308 +2019-09-01,"Commercial Consumption","Maine","ME",332 +2019-09-01,"Commercial Consumption","Kentucky","KY",1219 +2019-09-01,"Commercial Consumption","Alaska","AK",721 +2019-09-01,"Commercial Consumption","California","CA",16093 +2019-09-01,"Commercial Consumption","Mississippi","MS",873 +2019-09-01,"Delivered to Consumers","South Dakota","SD",4476 +2019-09-01,"Delivered to Consumers","Alabama","AL",61460 +2019-09-01,"Delivered to Consumers","North Carolina","NC",39745 +2019-09-01,"Delivered to Consumers","California","CA",162908 +2019-09-01,"Delivered to Consumers","Maine","ME",2764 +2019-09-01,"Delivered to Consumers","North Dakota","ND",4861 +2019-09-01,"Delivered to Consumers","Wyoming","WY",5320 +2019-09-01,"Delivered to Consumers","Rhode Island","RI",5919 +2019-09-01,"Delivered to Consumers","Tennessee","TN",26410 +2019-09-01,"Delivered to Consumers","New Hampshire","NH",3448 +2019-09-01,"Delivered to Consumers","Florida","FL",145085 +2019-09-01,"Delivered to Consumers","Indiana","IN",55276 +2019-09-01,"Delivered to Consumers","Vermont","VT",623 +2019-09-01,"Delivered to Consumers","Kentucky","KY",21567 +2019-09-01,"Delivered to Consumers","Nevada","NV",23313 +2019-09-01,"Delivered to Consumers","Arizona","AZ",40971 +2019-09-01,"Delivered to Consumers","Minnesota","MN",24915 +2019-09-01,"Delivered to Consumers","Utah","UT",11689 +2019-09-01,"Delivered to Consumers","New Mexico","NM",13254 +2019-09-01,"Delivered to Consumers","Montana","MT",3948 +2019-09-01,"Delivered to Consumers","Connecticut","CT",16850 +2019-09-01,"Delivered to Consumers","Pennsylvania","PA",93410 +2019-09-01,"Delivered to Consumers","Mississippi","MS",49647 +2019-09-01,"Delivered to Consumers","Massachusetts","MA",18225 +2019-09-01,"Delivered to Consumers","Georgia","GA",57394 +2019-09-01,"Delivered to Consumers","Delaware","DE",5986 +2019-09-01,"Delivered to Consumers","West Virginia","WV",6547 +2019-09-01,"Delivered to Consumers","Hawaii","HI",265 +2019-09-01,"Delivered to Consumers","Idaho","ID",8016 +2019-09-01,"Delivered to Consumers","Arkansas","AR",25763 +2019-09-01,"Delivered to Consumers","Missouri","MO",15714 +2019-09-01,"Delivered to Consumers","U.S.","U.S.",1982049 +2019-09-01,"Delivered to Consumers","New York","NY",62731 +2019-09-01,"Delivered to Consumers","Kansas","KS",15984 +2019-09-01,"Delivered to Consumers","Ohio","OH",61896 +2019-09-01,"Delivered to Consumers","Michigan","MI",44366 +2019-09-01,"Delivered to Consumers","Iowa","IA",25854 +2019-09-01,"Delivered to Consumers","Virginia","VA",50012 +2019-09-01,"Delivered to Consumers","Texas","TX",345113 +2019-09-01,"Delivered to Consumers","South Carolina","SC",26986 +2019-09-01,"Delivered to Consumers","Oregon","OR",22172 +2019-09-01,"Delivered to Consumers","Washington","WA",24835 +2019-09-01,"Delivered to Consumers","District of Columbia","DC",1025 +2019-09-01,"Delivered to Consumers","Alaska","AK",3539 +2019-09-01,"Delivered to Consumers","Nebraska","NE",9575 +2019-09-01,"Delivered to Consumers","Colorado","CO",20663 +2019-09-01,"Delivered to Consumers","Illinois","IL",47034 +2019-09-01,"Delivered to Consumers","Maryland","MD",14025 +2019-09-01,"Delivered to Consumers","Oklahoma","OK",53578 +2019-09-01,"Delivered to Consumers","Wisconsin","WI",28122 +2019-09-01,"Delivered to Consumers","New Jersey","NJ",41416 +2019-09-01,"Delivered to Consumers","Louisiana","LA",127351 +2019-09-01,"Electric Power Consumption","Washington","WA",12999 +2019-09-01,"Electric Power Consumption","New Mexico","NM",9692 +2019-09-01,"Electric Power Consumption","Oklahoma","OK",34236 +2019-09-01,"Electric Power Consumption","Minnesota","MN",7641 +2019-09-01,"Electric Power Consumption","Alabama","AL",43266 +2019-09-01,"Electric Power Consumption","Rhode Island","RI",4530 +2019-09-01,"Electric Power Consumption","Kansas","KS",2782 +2019-09-01,"Electric Power Consumption","Missouri","MO",7437 +2019-09-01,"Electric Power Consumption","Delaware","DE",2495 +2019-09-01,"Electric Power Consumption","Arkansas","AR",14529 +2019-09-01,"Electric Power Consumption","New York","NY",31647 +2019-09-01,"Electric Power Consumption","Oregon","OR",14937 +2019-09-01,"Electric Power Consumption","Wyoming","WY",225 +2019-09-01,"Electric Power Consumption","Iowa","IA",4619 +2019-09-01,"Electric Power Consumption","Vermont","VT",NA +2019-09-01,"Electric Power Consumption","Tennessee","TN",11977 +2019-09-01,"Electric Power Consumption","Nebraska","NE",1060 +2019-09-01,"Electric Power Consumption","Kentucky","KY",11278 +2019-09-01,"Electric Power Consumption","Connecticut","CT",11540 +2019-09-01,"Electric Power Consumption","Colorado","CO",10192 +2019-09-01,"Electric Power Consumption","Illinois","IL",14229 +2019-09-01,"Electric Power Consumption","Maryland","MD",7656 +2019-09-01,"Electric Power Consumption","Louisiana","LA",32681 +2019-09-01,"Electric Power Consumption","South Carolina","SC",17776 +2019-09-01,"Electric Power Consumption","Michigan","MI",22203 +2019-09-01,"Electric Power Consumption","West Virginia","WV",2567 +2019-09-01,"Electric Power Consumption","Pennsylvania","PA",62586 +2019-09-01,"Electric Power Consumption","Mississippi","MS",37362 +2019-09-01,"Electric Power Consumption","New Hampshire","NH",2267 +2019-09-01,"Electric Power Consumption","North Dakota","ND",1401 +2019-09-01,"Electric Power Consumption","Arizona","AZ",36466 +2019-09-01,"Electric Power Consumption","Georgia","GA",39571 +2019-09-01,"Electric Power Consumption","New Jersey","NJ",25095 +2019-09-01,"Electric Power Consumption","Idaho","ID",3054 +2019-09-01,"Electric Power Consumption","Texas","TX",189553 +2019-09-01,"Electric Power Consumption","Utah","UT",5120 +2019-09-01,"Electric Power Consumption","Wisconsin","WI",12088 +2019-09-01,"Electric Power Consumption","Nevada","NV",18236 +2019-09-01,"Electric Power Consumption","Montana","MT",496 +2019-09-01,"Electric Power Consumption","Indiana","IN",19600 +2019-09-01,"Electric Power Consumption","California","CA",58171 +2019-09-01,"Electric Power Consumption","Massachusetts","MA",7532 +2019-09-01,"Electric Power Consumption","U.S.","U.S.",1080775 +2019-09-01,"Electric Power Consumption","North Carolina","NC",27442 +2019-09-01,"Electric Power Consumption","Maine","ME",857 +2019-09-01,"Electric Power Consumption","Florida","FL",130050 +2019-09-01,"Electric Power Consumption","Virginia","VA",37120 +2019-09-01,"Electric Power Consumption","South Dakota","SD",468 +2019-09-01,"Electric Power Consumption","Hawaii","HI",NA +2019-09-01,"Electric Power Consumption","Ohio","OH",30523 +2019-09-01,"Electric Power Consumption","Alaska","AK",1524 +2019-09-01,"Industrial Consumption","Maryland","MD",1427 +2019-09-01,"Industrial Consumption","Massachusetts","MA",2765 +2019-09-01,"Industrial Consumption","Oklahoma","OK",16514 +2019-09-01,"Industrial Consumption","Colorado","CO",5517 +2019-09-01,"Industrial Consumption","South Dakota","SD",3415 +2019-09-01,"Industrial Consumption","Nebraska","NE",6798 +2019-09-01,"Industrial Consumption","New Jersey","NJ",5686 +2019-09-01,"Industrial Consumption","New Mexico","NM",1417 +2019-09-01,"Industrial Consumption","Arizona","AZ",1290 +2019-09-01,"Industrial Consumption","Pennsylvania","PA",21167 +2019-09-01,"Industrial Consumption","Texas","TX",140135 +2019-09-01,"Industrial Consumption","Delaware","DE",2555 +2019-09-01,"Industrial Consumption","District of Columbia","DC",NA +2019-09-01,"Industrial Consumption","Ohio","OH",21212 +2019-09-01,"Industrial Consumption","U.S.","U.S.",643905 +2019-09-01,"Industrial Consumption","West Virginia","WV",2708 +2019-09-01,"Industrial Consumption","Minnesota","MN",11528 +2019-09-01,"Industrial Consumption","Illinois","IL",16582 +2019-09-01,"Industrial Consumption","Georgia","GA",11857 +2019-09-01,"Industrial Consumption","Hawaii","HI",8 +2019-09-01,"Industrial Consumption","Washington","WA",6560 +2019-09-01,"Industrial Consumption","Nevada","NV",1576 +2019-09-01,"Industrial Consumption","Vermont","VT",156 +2019-09-01,"Industrial Consumption","Wyoming","WY",4610 +2019-09-01,"Industrial Consumption","Iowa","IA",18406 +2019-09-01,"Industrial Consumption","Kentucky","KY",8321 +2019-09-01,"Industrial Consumption","Wisconsin","WI",10355 +2019-09-01,"Industrial Consumption","Connecticut","CT",1686 +2019-09-01,"Industrial Consumption","Michigan","MI",11267 +2019-09-01,"Industrial Consumption","Indiana","IN",30499 +2019-09-01,"Industrial Consumption","Missouri","MO",4506 +2019-09-01,"Industrial Consumption","Kansas","KS",9986 +2019-09-01,"Industrial Consumption","Utah","UT",3052 +2019-09-01,"Industrial Consumption","Oregon","OR",4485 +2019-09-01,"Industrial Consumption","Virginia","VA",8286 +2019-09-01,"Industrial Consumption","Tennessee","TN",10856 +2019-09-01,"Industrial Consumption","North Dakota","ND",2883 +2019-09-01,"Industrial Consumption","Montana","MT",1865 +2019-09-01,"Industrial Consumption","Louisiana","LA",91451 +2019-09-01,"Industrial Consumption","New York","NY",6067 +2019-09-01,"Industrial Consumption","Mississippi","MS",10968 +2019-09-01,"Industrial Consumption","California","CA",67982 +2019-09-01,"Industrial Consumption","Arkansas","AR",7747 +2019-09-01,"Industrial Consumption","New Hampshire","NH",686 +2019-09-01,"Industrial Consumption","Idaho","ID",3070 +2019-09-01,"Industrial Consumption","Florida","FL",9039 +2019-09-01,"Industrial Consumption","Rhode Island","RI",670 +2019-09-01,"Industrial Consumption","Maine","ME",1512 +2019-09-01,"Industrial Consumption","Alabama","AL",16330 +2019-09-01,"Industrial Consumption","South Carolina","SC",7302 +2019-09-01,"Industrial Consumption","North Carolina","NC",8674 +2019-09-01,"Industrial Consumption","Alaska","AK",470 +2019-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",152877 +2019-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",71327 +2019-09-01,"Residential Consumption","Iowa","IA",1084 +2019-09-01,"Residential Consumption","North Dakota","ND",198 +2019-09-01,"Residential Consumption","Massachusetts","MA",2902 +2019-09-01,"Residential Consumption","New Hampshire","NH",187 +2019-09-01,"Residential Consumption","Vermont","VT",90 +2019-09-01,"Residential Consumption","Michigan","MI",5674 +2019-09-01,"Residential Consumption","Maryland","MD",1544 +2019-09-01,"Residential Consumption","Georgia","GA",3809 +2019-09-01,"Residential Consumption","Indiana","IN",2416 +2019-09-01,"Residential Consumption","Idaho","ID",864 +2019-09-01,"Residential Consumption","Colorado","CO",3101 +2019-09-01,"Residential Consumption","Washington","WA",2626 +2019-09-01,"Residential Consumption","Oklahoma","OK",1069 +2019-09-01,"Residential Consumption","Delaware","DE",178 +2019-09-01,"Residential Consumption","Arizona","AZ",1170 +2019-09-01,"Residential Consumption","Illinois","IL",7868 +2019-09-01,"Residential Consumption","Hawaii","HI",43 +2019-09-01,"Residential Consumption","South Dakota","SD",220 +2019-09-01,"Residential Consumption","New Jersey","NJ",5000 +2019-09-01,"Residential Consumption","Texas","TX",5045 +2019-09-01,"Residential Consumption","Ohio","OH",4874 +2019-09-01,"Residential Consumption","Tennessee","TN",1146 +2019-09-01,"Residential Consumption","Pennsylvania","PA",4211 +2019-09-01,"Residential Consumption","Arkansas","AR",565 +2019-09-01,"Residential Consumption","Missouri","MO",1610 +2019-09-01,"Residential Consumption","Alaska","AK",823 +2019-09-01,"Residential Consumption","West Virginia","WV",297 +2019-09-01,"Residential Consumption","South Carolina","SC",562 +2019-09-01,"Residential Consumption","North Carolina","NC",1021 +2019-09-01,"Residential Consumption","Wisconsin","WI",2607 +2019-09-01,"Residential Consumption","Utah","UT",1916 +2019-09-01,"Residential Consumption","Minnesota","MN",2679 +2019-09-01,"Residential Consumption","District of Columbia","DC",253 +2019-09-01,"Residential Consumption","Rhode Island","RI",423 +2019-09-01,"Residential Consumption","Mississippi","MS",443 +2019-09-01,"Residential Consumption","Nebraska","NE",643 +2019-09-01,"Residential Consumption","Kansas","KS",1249 +2019-09-01,"Residential Consumption","Wyoming","WY",190 +2019-09-01,"Residential Consumption","Louisiana","LA",1168 +2019-09-01,"Residential Consumption","Nevada","NV",1520 +2019-09-01,"Residential Consumption","Florida","FL",889 +2019-09-01,"Residential Consumption","New York","NY",10275 +2019-09-01,"Residential Consumption","Oregon","OR",1405 +2019-09-01,"Residential Consumption","Connecticut","CT",1066 +2019-09-01,"Residential Consumption","Virginia","VA",1502 +2019-09-01,"Residential Consumption","New Mexico","NM",970 +2019-09-01,"Residential Consumption","Maine","ME",64 +2019-09-01,"Residential Consumption","Montana","MT",444 +2019-09-01,"Residential Consumption","Kentucky","KY",743 +2019-09-01,"Residential Consumption","California","CA",18490 +2019-09-01,"Residential Consumption","Alabama","AL",705 +2019-09-01,"Residential Consumption","U.S.","U.S.",109841 +2019-09-01,"Vehicle Fuel Consumption","Utah","UT",26 +2019-09-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-09-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-09-01,"Vehicle Fuel Consumption","Illinois","IL",10 +2019-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-09-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",138 +2019-09-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-09-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-09-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-09-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-09-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-09-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2019-09-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2019-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-09-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-09-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-09-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2019-09-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2019-09-01,"Vehicle Fuel Consumption","Missouri","MO",31 +2019-09-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2019-09-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-09-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-09-01,"Vehicle Fuel Consumption","California","CA",2172 +2019-09-01,"Vehicle Fuel Consumption","New York","NY",80 +2019-09-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2019-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-09-01,"Vehicle Fuel Consumption","Maryland","MD",57 +2019-09-01,"Vehicle Fuel Consumption","Colorado","CO",151 +2019-09-01,"Vehicle Fuel Consumption","North Carolina","NC",129 +2019-09-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-09-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",4370 +2019-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-09-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-09-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2019-09-01,"Vehicle Fuel Consumption","Kansas","KS",60 +2019-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-09-01,"Vehicle Fuel Consumption","Florida","FL",408 +2019-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2019-09-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-09-01,"Vehicle Fuel Consumption","Georgia","GA",148 +2019-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2019-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-09-01,"Vehicle Fuel Consumption","Texas","TX",130 +2019-09-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2019-09-01,"Vehicle Fuel Consumption","Minnesota","MN",41 +2019-10-01,"Commercial Consumption","New Hampshire","NH",404 +2019-10-01,"Commercial Consumption","Kansas","KS",2776 +2019-10-01,"Commercial Consumption","Georgia","GA",2777 +2019-10-01,"Commercial Consumption","Colorado","CO",4258 +2019-10-01,"Commercial Consumption","Michigan","MI",10427 +2019-10-01,"Commercial Consumption","Washington","WA",5460 +2019-10-01,"Commercial Consumption","South Carolina","SC",1683 +2019-10-01,"Commercial Consumption","New Mexico","NM",2618 +2019-10-01,"Commercial Consumption","South Dakota","SD",747 +2019-10-01,"Commercial Consumption","Alaska","AK",1109 +2019-10-01,"Commercial Consumption","Arkansas","AR",3691 +2019-10-01,"Commercial Consumption","Tennessee","TN",3242 +2019-10-01,"Commercial Consumption","Nevada","NV",2583 +2019-10-01,"Commercial Consumption","Indiana","IN",6239 +2019-10-01,"Commercial Consumption","Wyoming","WY",624 +2019-10-01,"Commercial Consumption","Minnesota","MN",6791 +2019-10-01,"Commercial Consumption","Oklahoma","OK",2665 +2019-10-01,"Commercial Consumption","Wisconsin","WI",6319 +2019-10-01,"Commercial Consumption","Vermont","VT",450 +2019-10-01,"Commercial Consumption","Idaho","ID",2180 +2019-10-01,"Commercial Consumption","Mississippi","MS",1384 +2019-10-01,"Commercial Consumption","Arizona","AZ",2378 +2019-10-01,"Commercial Consumption","Utah","UT",2867 +2019-10-01,"Commercial Consumption","Missouri","MO",4475 +2019-10-01,"Commercial Consumption","Montana","MT",1823 +2019-10-01,"Commercial Consumption","Kentucky","KY",1961 +2019-10-01,"Commercial Consumption","U.S.","U.S.",216141 +2019-10-01,"Commercial Consumption","Iowa","IA",4271 +2019-10-01,"Commercial Consumption","Connecticut","CT",3455 +2019-10-01,"Commercial Consumption","Alabama","AL",1672 +2019-10-01,"Commercial Consumption","New York","NY",16506 +2019-10-01,"Commercial Consumption","Delaware","DE",978 +2019-10-01,"Commercial Consumption","Illinois","IL",14881 +2019-10-01,"Commercial Consumption","Virginia","VA",3742 +2019-10-01,"Commercial Consumption","Pennsylvania","PA",7888 +2019-10-01,"Commercial Consumption","Massachusetts","MA",7099 +2019-10-01,"Commercial Consumption","Maine","ME",526 +2019-10-01,"Commercial Consumption","California","CA",20971 +2019-10-01,"Commercial Consumption","North Dakota","ND",766 +2019-10-01,"Commercial Consumption","North Carolina","NC",3350 +2019-10-01,"Commercial Consumption","Oregon","OR",2768 +2019-10-01,"Commercial Consumption","Maryland","MD",3816 +2019-10-01,"Commercial Consumption","Hawaii","HI",215 +2019-10-01,"Commercial Consumption","Louisiana","LA",2527 +2019-10-01,"Commercial Consumption","West Virginia","WV",1542 +2019-10-01,"Commercial Consumption","New Jersey","NJ",8040 +2019-10-01,"Commercial Consumption","Texas","TX",11985 +2019-10-01,"Commercial Consumption","Florida","FL",4814 +2019-10-01,"Commercial Consumption","Rhode Island","RI",582 +2019-10-01,"Commercial Consumption","Ohio","OH",9152 +2019-10-01,"Commercial Consumption","Nebraska","NE",1973 +2019-10-01,"Commercial Consumption","District of Columbia","DC",688 +2019-10-01,"Delivered to Consumers","Tennessee","TN",23855 +2019-10-01,"Delivered to Consumers","Ohio","OH",70647 +2019-10-01,"Delivered to Consumers","Wisconsin","WI",41168 +2019-10-01,"Delivered to Consumers","Virginia","VA",39609 +2019-10-01,"Delivered to Consumers","Pennsylvania","PA",97987 +2019-10-01,"Delivered to Consumers","South Carolina","SC",24887 +2019-10-01,"Delivered to Consumers","Nevada","NV",21649 +2019-10-01,"Delivered to Consumers","New Jersey","NJ",47526 +2019-10-01,"Delivered to Consumers","Maine","ME",3465 +2019-10-01,"Delivered to Consumers","Utah","UT",14130 +2019-10-01,"Delivered to Consumers","Wyoming","WY",6915 +2019-10-01,"Delivered to Consumers","West Virginia","WV",9767 +2019-10-01,"Delivered to Consumers","Maryland","MD",15342 +2019-10-01,"Delivered to Consumers","Alaska","AK",5039 +2019-10-01,"Delivered to Consumers","Oklahoma","OK",47679 +2019-10-01,"Delivered to Consumers","Iowa","IA",31951 +2019-10-01,"Delivered to Consumers","California","CA",172150 +2019-10-01,"Delivered to Consumers","U.S.","U.S.",2072599 +2019-10-01,"Delivered to Consumers","Connecticut","CT",16775 +2019-10-01,"Delivered to Consumers","Alabama","AL",54960 +2019-10-01,"Delivered to Consumers","Mississippi","MS",41731 +2019-10-01,"Delivered to Consumers","North Dakota","ND",4841 +2019-10-01,"Delivered to Consumers","Minnesota","MN",34752 +2019-10-01,"Delivered to Consumers","New Mexico","NM",14892 +2019-10-01,"Delivered to Consumers","New York","NY",66694 +2019-10-01,"Delivered to Consumers","North Carolina","NC",39823 +2019-10-01,"Delivered to Consumers","Arizona","AZ",39189 +2019-10-01,"Delivered to Consumers","New Hampshire","NH",4857 +2019-10-01,"Delivered to Consumers","Vermont","VT",783 +2019-10-01,"Delivered to Consumers","Montana","MT",5803 +2019-10-01,"Delivered to Consumers","Idaho","ID",10893 +2019-10-01,"Delivered to Consumers","Nebraska","NE",12092 +2019-10-01,"Delivered to Consumers","Colorado","CO",31335 +2019-10-01,"Delivered to Consumers","Illinois","IL",70035 +2019-10-01,"Delivered to Consumers","Kansas","KS",19083 +2019-10-01,"Delivered to Consumers","Michigan","MI",67683 +2019-10-01,"Delivered to Consumers","Texas","TX",306062 +2019-10-01,"Delivered to Consumers","Washington","WA",29817 +2019-10-01,"Delivered to Consumers","Indiana","IN",64843 +2019-10-01,"Delivered to Consumers","Delaware","DE",5865 +2019-10-01,"Delivered to Consumers","Rhode Island","RI",7823 +2019-10-01,"Delivered to Consumers","Hawaii","HI",269 +2019-10-01,"Delivered to Consumers","Kentucky","KY",24964 +2019-10-01,"Delivered to Consumers","Arkansas","AR",28303 +2019-10-01,"Delivered to Consumers","Missouri","MO",21011 +2019-10-01,"Delivered to Consumers","Massachusetts","MA",22869 +2019-10-01,"Delivered to Consumers","Louisiana","LA",124467 +2019-10-01,"Delivered to Consumers","Florida","FL",139297 +2019-10-01,"Delivered to Consumers","District of Columbia","DC",971 +2019-10-01,"Delivered to Consumers","South Dakota","SD",5003 +2019-10-01,"Delivered to Consumers","Oregon","OR",25026 +2019-10-01,"Delivered to Consumers","Georgia","GA",56021 +2019-10-01,"Electric Power Consumption","Utah","UT",4503 +2019-10-01,"Electric Power Consumption","Minnesota","MN",7455 +2019-10-01,"Electric Power Consumption","Indiana","IN",19162 +2019-10-01,"Electric Power Consumption","Arizona","AZ",33416 +2019-10-01,"Electric Power Consumption","Louisiana","LA",27833 +2019-10-01,"Electric Power Consumption","Michigan","MI",25418 +2019-10-01,"Electric Power Consumption","Massachusetts","MA",7643 +2019-10-01,"Electric Power Consumption","Kansas","KS",3024 +2019-10-01,"Electric Power Consumption","Nebraska","NE",364 +2019-10-01,"Electric Power Consumption","California","CA",56499 +2019-10-01,"Electric Power Consumption","Virginia","VA",25519 +2019-10-01,"Electric Power Consumption","New Mexico","NM",8500 +2019-10-01,"Electric Power Consumption","New Jersey","NJ",24491 +2019-10-01,"Electric Power Consumption","Idaho","ID",1926 +2019-10-01,"Electric Power Consumption","Oklahoma","OK",24827 +2019-10-01,"Electric Power Consumption","Vermont","VT",2 +2019-10-01,"Electric Power Consumption","Tennessee","TN",6692 +2019-10-01,"Electric Power Consumption","Georgia","GA",34728 +2019-10-01,"Electric Power Consumption","South Dakota","SD",407 +2019-10-01,"Electric Power Consumption","Ohio","OH",27024 +2019-10-01,"Electric Power Consumption","Connecticut","CT",9412 +2019-10-01,"Electric Power Consumption","Arkansas","AR",15138 +2019-10-01,"Electric Power Consumption","Texas","TX",141418 +2019-10-01,"Electric Power Consumption","West Virginia","WV",4177 +2019-10-01,"Electric Power Consumption","Iowa","IA",3296 +2019-10-01,"Electric Power Consumption","Maine","ME",961 +2019-10-01,"Electric Power Consumption","North Dakota","ND",1192 +2019-10-01,"Electric Power Consumption","Montana","MT",479 +2019-10-01,"Electric Power Consumption","Delaware","DE",1816 +2019-10-01,"Electric Power Consumption","Alabama","AL",35092 +2019-10-01,"Electric Power Consumption","Washington","WA",9014 +2019-10-01,"Electric Power Consumption","Colorado","CO",8872 +2019-10-01,"Electric Power Consumption","Rhode Island","RI",5639 +2019-10-01,"Electric Power Consumption","Nevada","NV",14877 +2019-10-01,"Electric Power Consumption","Wyoming","WY",229 +2019-10-01,"Electric Power Consumption","U.S.","U.S.",936668 +2019-10-01,"Electric Power Consumption","Missouri","MO",5439 +2019-10-01,"Electric Power Consumption","Florida","FL",123221 +2019-10-01,"Electric Power Consumption","North Carolina","NC",25086 +2019-10-01,"Electric Power Consumption","Mississippi","MS",29233 +2019-10-01,"Electric Power Consumption","Hawaii","HI",NA +2019-10-01,"Electric Power Consumption","Maryland","MD",7898 +2019-10-01,"Electric Power Consumption","South Carolina","SC",14211 +2019-10-01,"Electric Power Consumption","New York","NY",25922 +2019-10-01,"Electric Power Consumption","Oregon","OR",12708 +2019-10-01,"Electric Power Consumption","Illinois","IL",12076 +2019-10-01,"Electric Power Consumption","Wisconsin","WI",12849 +2019-10-01,"Electric Power Consumption","Pennsylvania","PA",60065 +2019-10-01,"Electric Power Consumption","Kentucky","KY",11556 +2019-10-01,"Electric Power Consumption","New Hampshire","NH",3430 +2019-10-01,"Electric Power Consumption","Alaska","AK",1932 +2019-10-01,"Industrial Consumption","Louisiana","LA",92571 +2019-10-01,"Industrial Consumption","Washington","WA",7239 +2019-10-01,"Industrial Consumption","Kansas","KS",9319 +2019-10-01,"Industrial Consumption","Alabama","AL",17208 +2019-10-01,"Industrial Consumption","West Virginia","WV",2958 +2019-10-01,"Industrial Consumption","New Hampshire","NH",768 +2019-10-01,"Industrial Consumption","Iowa","IA",20119 +2019-10-01,"Industrial Consumption","Illinois","IL",21826 +2019-10-01,"Industrial Consumption","District of Columbia","DC",NA +2019-10-01,"Industrial Consumption","Maryland","MD",1367 +2019-10-01,"Industrial Consumption","Colorado","CO",7606 +2019-10-01,"Industrial Consumption","South Dakota","SD",3084 +2019-10-01,"Industrial Consumption","Wyoming","WY",5470 +2019-10-01,"Industrial Consumption","Indiana","IN",32744 +2019-10-01,"Industrial Consumption","Missouri","MO",5567 +2019-10-01,"Industrial Consumption","U.S.","U.S.",683580 +2019-10-01,"Industrial Consumption","Oregon","OR",5223 +2019-10-01,"Industrial Consumption","Mississippi","MS",10281 +2019-10-01,"Industrial Consumption","California","CA",66872 +2019-10-01,"Industrial Consumption","South Carolina","SC",8227 +2019-10-01,"Industrial Consumption","Nebraska","NE",8144 +2019-10-01,"Industrial Consumption","Minnesota","MN",12178 +2019-10-01,"Industrial Consumption","Michigan","MI",13266 +2019-10-01,"Industrial Consumption","Delaware","DE",2783 +2019-10-01,"Industrial Consumption","Georgia","GA",12913 +2019-10-01,"Industrial Consumption","Massachusetts","MA",3198 +2019-10-01,"Industrial Consumption","Arizona","AZ",1458 +2019-10-01,"Industrial Consumption","Virginia","VA",8014 +2019-10-01,"Industrial Consumption","Florida","FL",9901 +2019-10-01,"Industrial Consumption","Nevada","NV",1654 +2019-10-01,"Industrial Consumption","Maine","ME",1836 +2019-10-01,"Industrial Consumption","North Carolina","NC",9487 +2019-10-01,"Industrial Consumption","North Dakota","ND",2283 +2019-10-01,"Industrial Consumption","Texas","TX",145196 +2019-10-01,"Industrial Consumption","Vermont","VT",190 +2019-10-01,"Industrial Consumption","New Jersey","NJ",6220 +2019-10-01,"Industrial Consumption","Connecticut","CT",1917 +2019-10-01,"Industrial Consumption","Kentucky","KY",9606 +2019-10-01,"Industrial Consumption","Oklahoma","OK",18413 +2019-10-01,"Industrial Consumption","Ohio","OH",22239 +2019-10-01,"Industrial Consumption","New Mexico","NM",1644 +2019-10-01,"Industrial Consumption","Pennsylvania","PA",21790 +2019-10-01,"Industrial Consumption","New York","NY",6628 +2019-10-01,"Industrial Consumption","Arkansas","AR",8547 +2019-10-01,"Industrial Consumption","Tennessee","TN",12191 +2019-10-01,"Industrial Consumption","Idaho","ID",3964 +2019-10-01,"Industrial Consumption","Alaska","AK",551 +2019-10-01,"Industrial Consumption","Montana","MT",2173 +2019-10-01,"Industrial Consumption","Hawaii","HI",9 +2019-10-01,"Industrial Consumption","Utah","UT",3122 +2019-10-01,"Industrial Consumption","Wisconsin","WI",12957 +2019-10-01,"Industrial Consumption","Rhode Island","RI",661 +2019-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",159359 +2019-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",74586 +2019-10-01,"Residential Consumption","Louisiana","LA",1503 +2019-10-01,"Residential Consumption","Nevada","NV",2427 +2019-10-01,"Residential Consumption","Iowa","IA",4263 +2019-10-01,"Residential Consumption","Maryland","MD",2203 +2019-10-01,"Residential Consumption","Maine","ME",141 +2019-10-01,"Residential Consumption","Arkansas","AR",921 +2019-10-01,"Residential Consumption","Arizona","AZ",1800 +2019-10-01,"Residential Consumption","Ohio","OH",12187 +2019-10-01,"Residential Consumption","Michigan","MI",18571 +2019-10-01,"Residential Consumption","Pennsylvania","PA",8102 +2019-10-01,"Residential Consumption","Indiana","IN",6698 +2019-10-01,"Residential Consumption","New Hampshire","NH",253 +2019-10-01,"Residential Consumption","Wisconsin","WI",9004 +2019-10-01,"Residential Consumption","Vermont","VT",140 +2019-10-01,"Residential Consumption","South Dakota","SD",765 +2019-10-01,"Residential Consumption","Florida","FL",939 +2019-10-01,"Residential Consumption","New Jersey","NJ",8747 +2019-10-01,"Residential Consumption","Missouri","MO",5498 +2019-10-01,"Residential Consumption","Alaska","AK",1447 +2019-10-01,"Residential Consumption","U.S.","U.S.",231696 +2019-10-01,"Residential Consumption","Utah","UT",3612 +2019-10-01,"Residential Consumption","Montana","MT",1328 +2019-10-01,"Residential Consumption","Kansas","KS",3903 +2019-10-01,"Residential Consumption","Rhode Island","RI",933 +2019-10-01,"Residential Consumption","North Carolina","NC",1766 +2019-10-01,"Residential Consumption","Connecticut","CT",1974 +2019-10-01,"Residential Consumption","Virginia","VA",2260 +2019-10-01,"Residential Consumption","Nebraska","NE",1597 +2019-10-01,"Residential Consumption","Minnesota","MN",8285 +2019-10-01,"Residential Consumption","New Mexico","NM",2112 +2019-10-01,"Residential Consumption","Massachusetts","MA",4918 +2019-10-01,"Residential Consumption","Oklahoma","OK",1624 +2019-10-01,"Residential Consumption","West Virginia","WV",1089 +2019-10-01,"Residential Consumption","New York","NY",17557 +2019-10-01,"Residential Consumption","Texas","TX",7328 +2019-10-01,"Residential Consumption","South Carolina","SC",755 +2019-10-01,"Residential Consumption","Mississippi","MS",833 +2019-10-01,"Residential Consumption","Georgia","GA",5450 +2019-10-01,"Residential Consumption","Idaho","ID",2818 +2019-10-01,"Residential Consumption","Kentucky","KY",1835 +2019-10-01,"Residential Consumption","Delaware","DE",288 +2019-10-01,"Residential Consumption","Wyoming","WY",590 +2019-10-01,"Residential Consumption","Oregon","OR",4322 +2019-10-01,"Residential Consumption","Hawaii","HI",45 +2019-10-01,"Residential Consumption","Tennessee","TN",1702 +2019-10-01,"Residential Consumption","District of Columbia","DC",246 +2019-10-01,"Residential Consumption","North Dakota","ND",600 +2019-10-01,"Residential Consumption","Colorado","CO",10443 +2019-10-01,"Residential Consumption","Washington","WA",8090 +2019-10-01,"Residential Consumption","California","CA",25563 +2019-10-01,"Residential Consumption","Alabama","AL",980 +2019-10-01,"Residential Consumption","Illinois","IL",21241 +2019-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-10-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-10-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-10-01,"Vehicle Fuel Consumption","Arizona","AZ",138 +2019-10-01,"Vehicle Fuel Consumption","Missouri","MO",32 +2019-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2019-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-10-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-10-01,"Vehicle Fuel Consumption","Louisiana","LA",34 +2019-10-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2019-10-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-10-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-10-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-10-01,"Vehicle Fuel Consumption","Minnesota","MN",43 +2019-10-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2019-10-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2019-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-10-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-10-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2019-10-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-10-01,"Vehicle Fuel Consumption","Maryland","MD",58 +2019-10-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-10-01,"Vehicle Fuel Consumption","California","CA",2244 +2019-10-01,"Vehicle Fuel Consumption","Utah","UT",27 +2019-10-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-10-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2019-10-01,"Vehicle Fuel Consumption","New York","NY",82 +2019-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2019-10-01,"Vehicle Fuel Consumption","Texas","TX",135 +2019-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",29 +2019-10-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-10-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-10-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-10-01,"Vehicle Fuel Consumption","Kansas","KS",62 +2019-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",38 +2019-10-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2019-10-01,"Vehicle Fuel Consumption","Georgia","GA",152 +2019-10-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-10-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",143 +2019-10-01,"Vehicle Fuel Consumption","Nevada","NV",108 +2019-10-01,"Vehicle Fuel Consumption","Florida","FL",422 +2019-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-10-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-10-01,"Vehicle Fuel Consumption","Colorado","CO",156 +2019-10-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-11-01,"Commercial Consumption","Montana","MT",2907 +2019-11-01,"Commercial Consumption","Kentucky","KY",4763 +2019-11-01,"Commercial Consumption","Florida","FL",5279 +2019-11-01,"Commercial Consumption","Ohio","OH",20364 +2019-11-01,"Commercial Consumption","Hawaii","HI",193 +2019-11-01,"Commercial Consumption","Alabama","AL",2442 +2019-11-01,"Commercial Consumption","New York","NY",35283 +2019-11-01,"Commercial Consumption","West Virginia","WV",2629 +2019-11-01,"Commercial Consumption","Colorado","CO",7215 +2019-11-01,"Commercial Consumption","Oklahoma","OK",5529 +2019-11-01,"Commercial Consumption","Missouri","MO",7255 +2019-11-01,"Commercial Consumption","Georgia","GA",6049 +2019-11-01,"Commercial Consumption","Rhode Island","RI",1487 +2019-11-01,"Commercial Consumption","Arizona","AZ",3122 +2019-11-01,"Commercial Consumption","Nevada","NV",3249 +2019-11-01,"Commercial Consumption","South Dakota","SD",1585 +2019-11-01,"Commercial Consumption","New Hampshire","NH",835 +2019-11-01,"Commercial Consumption","Kansas","KS",4495 +2019-11-01,"Commercial Consumption","Alaska","AK",1609 +2019-11-01,"Commercial Consumption","Mississippi","MS",2451 +2019-11-01,"Commercial Consumption","Indiana","IN",11066 +2019-11-01,"Commercial Consumption","Washington","WA",6552 +2019-11-01,"Commercial Consumption","Utah","UT",4963 +2019-11-01,"Commercial Consumption","New Mexico","NM",3640 +2019-11-01,"Commercial Consumption","Wisconsin","WI",12133 +2019-11-01,"Commercial Consumption","U.S.","U.S.",388823 +2019-11-01,"Commercial Consumption","Texas","TX",18799 +2019-11-01,"Commercial Consumption","Arkansas","AR",5745 +2019-11-01,"Commercial Consumption","Delaware","DE",1838 +2019-11-01,"Commercial Consumption","Illinois","IL",29799 +2019-11-01,"Commercial Consumption","South Carolina","SC",3163 +2019-11-01,"Commercial Consumption","Maryland","MD",8572 +2019-11-01,"Commercial Consumption","Vermont","VT",800 +2019-11-01,"Commercial Consumption","Idaho","ID",2271 +2019-11-01,"Commercial Consumption","Iowa","IA",7535 +2019-11-01,"Commercial Consumption","Connecticut","CT",6491 +2019-11-01,"Commercial Consumption","Tennessee","TN",7639 +2019-11-01,"Commercial Consumption","Michigan","MI",20007 +2019-11-01,"Commercial Consumption","District of Columbia","DC",1791 +2019-11-01,"Commercial Consumption","North Carolina","NC",7558 +2019-11-01,"Commercial Consumption","Minnesota","MN",12956 +2019-11-01,"Commercial Consumption","Massachusetts","MA",14040 +2019-11-01,"Commercial Consumption","New Jersey","NJ",16809 +2019-11-01,"Commercial Consumption","Maine","ME",1087 +2019-11-01,"Commercial Consumption","California","CA",26624 +2019-11-01,"Commercial Consumption","Oregon","OR",3626 +2019-11-01,"Commercial Consumption","Virginia","VA",7101 +2019-11-01,"Commercial Consumption","Pennsylvania","PA",16072 +2019-11-01,"Commercial Consumption","Wyoming","WY",1630 +2019-11-01,"Commercial Consumption","North Dakota","ND",1809 +2019-11-01,"Commercial Consumption","Nebraska","NE",4437 +2019-11-01,"Commercial Consumption","Louisiana","LA",3528 +2019-11-01,"Delivered to Consumers","Oklahoma","OK",53129 +2019-11-01,"Delivered to Consumers","Idaho","ID",13620 +2019-11-01,"Delivered to Consumers","Arkansas","AR",29380 +2019-11-01,"Delivered to Consumers","Pennsylvania","PA",115592 +2019-11-01,"Delivered to Consumers","Mississippi","MS",43827 +2019-11-01,"Delivered to Consumers","Georgia","GA",69796 +2019-11-01,"Delivered to Consumers","Alaska","AK",6213 +2019-11-01,"Delivered to Consumers","Kansas","KS",25427 +2019-11-01,"Delivered to Consumers","Tennessee","TN",41008 +2019-11-01,"Delivered to Consumers","Texas","TX",316328 +2019-11-01,"Delivered to Consumers","Louisiana","LA",121323 +2019-11-01,"Delivered to Consumers","Arizona","AZ",33056 +2019-11-01,"Delivered to Consumers","New Mexico","NM",17293 +2019-11-01,"Delivered to Consumers","Delaware","DE",7927 +2019-11-01,"Delivered to Consumers","Illinois","IL",122391 +2019-11-01,"Delivered to Consumers","Michigan","MI",102043 +2019-11-01,"Delivered to Consumers","Wisconsin","WI",58842 +2019-11-01,"Delivered to Consumers","Missouri","MO",30250 +2019-11-01,"Delivered to Consumers","Nevada","NV",23796 +2019-11-01,"Delivered to Consumers","North Dakota","ND",6933 +2019-11-01,"Delivered to Consumers","Indiana","IN",85735 +2019-11-01,"Delivered to Consumers","Montana","MT",8673 +2019-11-01,"Delivered to Consumers","California","CA",192479 +2019-11-01,"Delivered to Consumers","South Carolina","SC",28944 +2019-11-01,"Delivered to Consumers","New Jersey","NJ",73935 +2019-11-01,"Delivered to Consumers","Minnesota","MN",49649 +2019-11-01,"Delivered to Consumers","District of Columbia","DC",3308 +2019-11-01,"Delivered to Consumers","West Virginia","WV",10091 +2019-11-01,"Delivered to Consumers","Vermont","VT",1438 +2019-11-01,"Delivered to Consumers","New York","NY",124461 +2019-11-01,"Delivered to Consumers","Maryland","MD",26644 +2019-11-01,"Delivered to Consumers","Ohio","OH",108441 +2019-11-01,"Delivered to Consumers","Nebraska","NE",20445 +2019-11-01,"Delivered to Consumers","Washington","WA",32978 +2019-11-01,"Delivered to Consumers","Utah","UT",22297 +2019-11-01,"Delivered to Consumers","South Dakota","SD",7625 +2019-11-01,"Delivered to Consumers","Connecticut","CT",26720 +2019-11-01,"Delivered to Consumers","Alabama","AL",52910 +2019-11-01,"Delivered to Consumers","Massachusetts","MA",41163 +2019-11-01,"Delivered to Consumers","New Hampshire","NH",3939 +2019-11-01,"Delivered to Consumers","U.S.","U.S.",2535754 +2019-11-01,"Delivered to Consumers","Wyoming","WY",9255 +2019-11-01,"Delivered to Consumers","Hawaii","HI",243 +2019-11-01,"Delivered to Consumers","Kentucky","KY",32345 +2019-11-01,"Delivered to Consumers","Oregon","OR",26490 +2019-11-01,"Delivered to Consumers","Maine","ME",3868 +2019-11-01,"Delivered to Consumers","Florida","FL",105021 +2019-11-01,"Delivered to Consumers","Rhode Island","RI",8770 +2019-11-01,"Delivered to Consumers","Iowa","IA",41517 +2019-11-01,"Delivered to Consumers","Virginia","VA",51714 +2019-11-01,"Delivered to Consumers","North Carolina","NC",51745 +2019-11-01,"Delivered to Consumers","Colorado","CO",44735 +2019-11-01,"Electric Power Consumption","Illinois","IL",10725 +2019-11-01,"Electric Power Consumption","Michigan","MI",22215 +2019-11-01,"Electric Power Consumption","Kansas","KS",1498 +2019-11-01,"Electric Power Consumption","South Dakota","SD",481 +2019-11-01,"Electric Power Consumption","Missouri","MO",2530 +2019-11-01,"Electric Power Consumption","Maine","ME",385 +2019-11-01,"Electric Power Consumption","Georgia","GA",34455 +2019-11-01,"Electric Power Consumption","California","CA",56113 +2019-11-01,"Electric Power Consumption","Arkansas","AR",10094 +2019-11-01,"Electric Power Consumption","Rhode Island","RI",4162 +2019-11-01,"Electric Power Consumption","Oregon","OR",12046 +2019-11-01,"Electric Power Consumption","Massachusetts","MA",7235 +2019-11-01,"Electric Power Consumption","Nevada","NV",14706 +2019-11-01,"Electric Power Consumption","Tennessee","TN",10505 +2019-11-01,"Electric Power Consumption","Nebraska","NE",364 +2019-11-01,"Electric Power Consumption","New Hampshire","NH",1656 +2019-11-01,"Electric Power Consumption","Maryland","MD",5958 +2019-11-01,"Electric Power Consumption","Alabama","AL",29432 +2019-11-01,"Electric Power Consumption","New Jersey","NJ",23369 +2019-11-01,"Electric Power Consumption","Texas","TX",120458 +2019-11-01,"Electric Power Consumption","Wyoming","WY",324 +2019-11-01,"Electric Power Consumption","U.S.","U.S.",818868 +2019-11-01,"Electric Power Consumption","Kentucky","KY",9602 +2019-11-01,"Electric Power Consumption","Hawaii","HI",NA +2019-11-01,"Electric Power Consumption","Ohio","OH",25045 +2019-11-01,"Electric Power Consumption","Virginia","VA",27116 +2019-11-01,"Electric Power Consumption","South Carolina","SC",13091 +2019-11-01,"Electric Power Consumption","New York","NY",28034 +2019-11-01,"Electric Power Consumption","Vermont","VT",NA +2019-11-01,"Electric Power Consumption","Mississippi","MS",27032 +2019-11-01,"Electric Power Consumption","Montana","MT",459 +2019-11-01,"Electric Power Consumption","Louisiana","LA",19353 +2019-11-01,"Electric Power Consumption","Oklahoma","OK",21122 +2019-11-01,"Electric Power Consumption","Idaho","ID",3424 +2019-11-01,"Electric Power Consumption","Colorado","CO",11197 +2019-11-01,"Electric Power Consumption","Utah","UT",5336 +2019-11-01,"Electric Power Consumption","Wisconsin","WI",11462 +2019-11-01,"Electric Power Consumption","Iowa","IA",3129 +2019-11-01,"Electric Power Consumption","Arizona","AZ",25141 +2019-11-01,"Electric Power Consumption","Alaska","AK",2042 +2019-11-01,"Electric Power Consumption","Washington","WA",8274 +2019-11-01,"Electric Power Consumption","New Mexico","NM",6986 +2019-11-01,"Electric Power Consumption","Minnesota","MN",6034 +2019-11-01,"Electric Power Consumption","Connecticut","CT",11655 +2019-11-01,"Electric Power Consumption","Florida","FL",87836 +2019-11-01,"Electric Power Consumption","West Virginia","WV",1129 +2019-11-01,"Electric Power Consumption","Pennsylvania","PA",50744 +2019-11-01,"Electric Power Consumption","North Carolina","NC",23354 +2019-11-01,"Electric Power Consumption","North Dakota","ND",935 +2019-11-01,"Electric Power Consumption","Indiana","IN",19212 +2019-11-01,"Electric Power Consumption","Delaware","DE",1411 +2019-11-01,"Industrial Consumption","Massachusetts","MA",4886 +2019-11-01,"Industrial Consumption","Oregon","OR",5126 +2019-11-01,"Industrial Consumption","South Carolina","SC",8623 +2019-11-01,"Industrial Consumption","Montana","MT",2355 +2019-11-01,"Industrial Consumption","Maryland","MD",2258 +2019-11-01,"Industrial Consumption","Ohio","OH",26635 +2019-11-01,"Industrial Consumption","Kansas","KS",11321 +2019-11-01,"Industrial Consumption","Virginia","VA",8735 +2019-11-01,"Industrial Consumption","Minnesota","MN",13285 +2019-11-01,"Industrial Consumption","Michigan","MI",16362 +2019-11-01,"Industrial Consumption","Georgia","GA",14295 +2019-11-01,"Industrial Consumption","Hawaii","HI",8 +2019-11-01,"Industrial Consumption","Washington","WA",6842 +2019-11-01,"Industrial Consumption","Maine","ME",2042 +2019-11-01,"Industrial Consumption","West Virginia","WV",3161 +2019-11-01,"Industrial Consumption","Wisconsin","WI",16175 +2019-11-01,"Industrial Consumption","Florida","FL",10303 +2019-11-01,"Industrial Consumption","Kentucky","KY",11070 +2019-11-01,"Industrial Consumption","Oklahoma","OK",17725 +2019-11-01,"Industrial Consumption","New Mexico","NM",1615 +2019-11-01,"Industrial Consumption","Pennsylvania","PA",24914 +2019-11-01,"Industrial Consumption","Mississippi","MS",10958 +2019-11-01,"Industrial Consumption","Idaho","ID",3751 +2019-11-01,"Industrial Consumption","North Carolina","NC",10759 +2019-11-01,"Industrial Consumption","Arkansas","AR",9279 +2019-11-01,"Industrial Consumption","Wyoming","WY",5453 +2019-11-01,"Industrial Consumption","New Jersey","NJ",5498 +2019-11-01,"Industrial Consumption","Iowa","IA",22669 +2019-11-01,"Industrial Consumption","Missouri","MO",6196 +2019-11-01,"Industrial Consumption","Nebraska","NE",10252 +2019-11-01,"Industrial Consumption","Connecticut","CT",2416 +2019-11-01,"Industrial Consumption","Indiana","IN",36515 +2019-11-01,"Industrial Consumption","Delaware","DE",3412 +2019-11-01,"Industrial Consumption","North Dakota","ND",2647 +2019-11-01,"Industrial Consumption","Louisiana","LA",94297 +2019-11-01,"Industrial Consumption","Colorado","CO",8486 +2019-11-01,"Industrial Consumption","Utah","UT",3767 +2019-11-01,"Industrial Consumption","New York","NY",8435 +2019-11-01,"Industrial Consumption","Alabama","AL",18204 +2019-11-01,"Industrial Consumption","Texas","TX",152645 +2019-11-01,"Industrial Consumption","New Hampshire","NH",821 +2019-11-01,"Industrial Consumption","Rhode Island","RI",714 +2019-11-01,"Industrial Consumption","District of Columbia","DC",NA +2019-11-01,"Industrial Consumption","South Dakota","SD",3856 +2019-11-01,"Industrial Consumption","Arizona","AZ",1665 +2019-11-01,"Industrial Consumption","U.S.","U.S.",734619 +2019-11-01,"Industrial Consumption","Nevada","NV",1875 +2019-11-01,"Industrial Consumption","California","CA",63595 +2019-11-01,"Industrial Consumption","Vermont","VT",214 +2019-11-01,"Industrial Consumption","Tennessee","TN",12586 +2019-11-01,"Industrial Consumption","Illinois","IL",25330 +2019-11-01,"Industrial Consumption","Alaska","AK",583 +2019-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",156747 +2019-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",91253 +2019-11-01,"Residential Consumption","North Carolina","NC",9945 +2019-11-01,"Residential Consumption","Wisconsin","WI",19034 +2019-11-01,"Residential Consumption","Indiana","IN",18942 +2019-11-01,"Residential Consumption","Florida","FL",1194 +2019-11-01,"Residential Consumption","Idaho","ID",4169 +2019-11-01,"Residential Consumption","Montana","MT",2953 +2019-11-01,"Residential Consumption","Kansas","KS",8053 +2019-11-01,"Residential Consumption","Delaware","DE",1266 +2019-11-01,"Residential Consumption","Arizona","AZ",2994 +2019-11-01,"Residential Consumption","Wyoming","WY",1847 +2019-11-01,"Residential Consumption","Ohio","OH",36355 +2019-11-01,"Residential Consumption","Mississippi","MS",3385 +2019-11-01,"Residential Consumption","Tennessee","TN",10251 +2019-11-01,"Residential Consumption","Nebraska","NE",5380 +2019-11-01,"Residential Consumption","Colorado","CO",17685 +2019-11-01,"Residential Consumption","Missouri","MO",14237 +2019-11-01,"Residential Consumption","West Virginia","WV",3172 +2019-11-01,"Residential Consumption","Rhode Island","RI",2399 +2019-11-01,"Residential Consumption","Connecticut","CT",6140 +2019-11-01,"Residential Consumption","Georgia","GA",14849 +2019-11-01,"Residential Consumption","District of Columbia","DC",1481 +2019-11-01,"Residential Consumption","New Mexico","NM",5034 +2019-11-01,"Residential Consumption","Massachusetts","MA",14991 +2019-11-01,"Residential Consumption","New Jersey","NJ",28230 +2019-11-01,"Residential Consumption","Alabama","AL",2825 +2019-11-01,"Residential Consumption","Virginia","VA",8690 +2019-11-01,"Residential Consumption","South Dakota","SD",1703 +2019-11-01,"Residential Consumption","New Hampshire","NH",626 +2019-11-01,"Residential Consumption","U.S.","U.S.",589075 +2019-11-01,"Residential Consumption","Hawaii","HI",42 +2019-11-01,"Residential Consumption","Vermont","VT",422 +2019-11-01,"Residential Consumption","Michigan","MI",43458 +2019-11-01,"Residential Consumption","North Dakota","ND",1542 +2019-11-01,"Residential Consumption","South Carolina","SC",4057 +2019-11-01,"Residential Consumption","Oregon","OR",5687 +2019-11-01,"Residential Consumption","Minnesota","MN",17333 +2019-11-01,"Residential Consumption","Maine","ME",354 +2019-11-01,"Residential Consumption","New York","NY",52629 +2019-11-01,"Residential Consumption","Iowa","IA",8180 +2019-11-01,"Residential Consumption","Maryland","MD",9799 +2019-11-01,"Residential Consumption","Nevada","NV",3862 +2019-11-01,"Residential Consumption","Alaska","AK",1978 +2019-11-01,"Residential Consumption","Texas","TX",24295 +2019-11-01,"Residential Consumption","Louisiana","LA",4113 +2019-11-01,"Residential Consumption","Utah","UT",8205 +2019-11-01,"Residential Consumption","Pennsylvania","PA",23723 +2019-11-01,"Residential Consumption","Arkansas","AR",4256 +2019-11-01,"Residential Consumption","Kentucky","KY",6904 +2019-11-01,"Residential Consumption","Washington","WA",11296 +2019-11-01,"Residential Consumption","Oklahoma","OK",8608 +2019-11-01,"Residential Consumption","California","CA",43975 +2019-11-01,"Residential Consumption","Illinois","IL",56527 +2019-11-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-11-01,"Vehicle Fuel Consumption","Louisiana","LA",33 +2019-11-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-11-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-11-01,"Vehicle Fuel Consumption","Nevada","NV",105 +2019-11-01,"Vehicle Fuel Consumption","Florida","FL",408 +2019-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-11-01,"Vehicle Fuel Consumption","Maryland","MD",57 +2019-11-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-11-01,"Vehicle Fuel Consumption","North Carolina","NC",129 +2019-11-01,"Vehicle Fuel Consumption","California","CA",2172 +2019-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-11-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-11-01,"Vehicle Fuel Consumption","Utah","UT",26 +2019-11-01,"Vehicle Fuel Consumption","Ohio","OH",42 +2019-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",138 +2019-11-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",4370 +2019-11-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-11-01,"Vehicle Fuel Consumption","New York","NY",80 +2019-11-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-11-01,"Vehicle Fuel Consumption","Missouri","MO",31 +2019-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-11-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2019-11-01,"Vehicle Fuel Consumption","Minnesota","MN",41 +2019-11-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-11-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2019-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2019-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",37 +2019-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",28 +2019-11-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2019-11-01,"Vehicle Fuel Consumption","Kansas","KS",60 +2019-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-11-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-11-01,"Vehicle Fuel Consumption","Texas","TX",130 +2019-11-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-11-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-11-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-11-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-11-01,"Vehicle Fuel Consumption","Virginia","VA",72 +2019-11-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-11-01,"Vehicle Fuel Consumption","Illinois","IL",10 +2019-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-11-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-11-01,"Vehicle Fuel Consumption","Arizona","AZ",133 +2019-11-01,"Vehicle Fuel Consumption","Colorado","CO",151 +2019-11-01,"Vehicle Fuel Consumption","Georgia","GA",148 +2019-12-01,"Commercial Consumption","Washington","WA",7995 +2019-12-01,"Commercial Consumption","Alaska","AK",1947 +2019-12-01,"Commercial Consumption","California","CA",25534 +2019-12-01,"Commercial Consumption","Mississippi","MS",2721 +2019-12-01,"Commercial Consumption","Indiana","IN",11610 +2019-12-01,"Commercial Consumption","North Dakota","ND",2391 +2019-12-01,"Commercial Consumption","Utah","UT",7584 +2019-12-01,"Commercial Consumption","New Jersey","NJ",22024 +2019-12-01,"Commercial Consumption","Texas","TX",21498 +2019-12-01,"Commercial Consumption","Vermont","VT",972 +2019-12-01,"Commercial Consumption","Delaware","DE",2008 +2019-12-01,"Commercial Consumption","Tennessee","TN",7723 +2019-12-01,"Commercial Consumption","Oregon","OR",4263 +2019-12-01,"Commercial Consumption","Massachusetts","MA",16205 +2019-12-01,"Commercial Consumption","South Dakota","SD",1902 +2019-12-01,"Commercial Consumption","Kansas","KS",5421 +2019-12-01,"Commercial Consumption","Arizona","AZ",4183 +2019-12-01,"Commercial Consumption","Louisiana","LA",3575 +2019-12-01,"Commercial Consumption","Wyoming","WY",1796 +2019-12-01,"Commercial Consumption","Pennsylvania","PA",23266 +2019-12-01,"Commercial Consumption","New Hampshire","NH",1660 +2019-12-01,"Commercial Consumption","Maine","ME",1369 +2019-12-01,"Commercial Consumption","Kentucky","KY",5314 +2019-12-01,"Commercial Consumption","Georgia","GA",7271 +2019-12-01,"Commercial Consumption","Illinois","IL",32156 +2019-12-01,"Commercial Consumption","New Mexico","NM",4870 +2019-12-01,"Commercial Consumption","Wisconsin","WI",13521 +2019-12-01,"Commercial Consumption","Montana","MT",3472 +2019-12-01,"Commercial Consumption","U.S.","U.S.",456817 +2019-12-01,"Commercial Consumption","Florida","FL",6145 +2019-12-01,"Commercial Consumption","Idaho","ID",2760 +2019-12-01,"Commercial Consumption","Arkansas","AR",6384 +2019-12-01,"Commercial Consumption","South Carolina","SC",3030 +2019-12-01,"Commercial Consumption","Virginia","VA",9078 +2019-12-01,"Commercial Consumption","Ohio","OH",24590 +2019-12-01,"Commercial Consumption","Hawaii","HI",214 +2019-12-01,"Commercial Consumption","Alabama","AL",3198 +2019-12-01,"Commercial Consumption","Michigan","MI",24076 +2019-12-01,"Commercial Consumption","Minnesota","MN",16690 +2019-12-01,"Commercial Consumption","Connecticut","CT",8159 +2019-12-01,"Commercial Consumption","Nebraska","NE",4351 +2019-12-01,"Commercial Consumption","Nevada","NV",4326 +2019-12-01,"Commercial Consumption","District of Columbia","DC",2317 +2019-12-01,"Commercial Consumption","West Virginia","WV",2982 +2019-12-01,"Commercial Consumption","North Carolina","NC",7461 +2019-12-01,"Commercial Consumption","Colorado","CO",9209 +2019-12-01,"Commercial Consumption","Oklahoma","OK",6618 +2019-12-01,"Commercial Consumption","Missouri","MO",9092 +2019-12-01,"Commercial Consumption","Maryland","MD",10496 +2019-12-01,"Commercial Consumption","Rhode Island","RI",1953 +2019-12-01,"Commercial Consumption","Iowa","IA",7608 +2019-12-01,"Commercial Consumption","New York","NY",41826 +2019-12-01,"Delivered to Consumers","Michigan","MI",110939 +2019-12-01,"Delivered to Consumers","Alabama","AL",55418 +2019-12-01,"Delivered to Consumers","Wisconsin","WI",65172 +2019-12-01,"Delivered to Consumers","Pennsylvania","PA",148706 +2019-12-01,"Delivered to Consumers","North Carolina","NC",55019 +2019-12-01,"Delivered to Consumers","Massachusetts","MA",54040 +2019-12-01,"Delivered to Consumers","Oregon","OR",31774 +2019-12-01,"Delivered to Consumers","Louisiana","LA",129802 +2019-12-01,"Delivered to Consumers","Washington","WA",40939 +2019-12-01,"Delivered to Consumers","North Dakota","ND",8933 +2019-12-01,"Delivered to Consumers","U.S.","U.S.",2904407 +2019-12-01,"Delivered to Consumers","Wyoming","WY",10484 +2019-12-01,"Delivered to Consumers","Alaska","AK",7238 +2019-12-01,"Delivered to Consumers","Kentucky","KY",33099 +2019-12-01,"Delivered to Consumers","California","CA",210751 +2019-12-01,"Delivered to Consumers","Delaware","DE",8257 +2019-12-01,"Delivered to Consumers","Illinois","IL",135153 +2019-12-01,"Delivered to Consumers","Kansas","KS",29621 +2019-12-01,"Delivered to Consumers","Virginia","VA",69735 +2019-12-01,"Delivered to Consumers","Missouri","MO",36687 +2019-12-01,"Delivered to Consumers","South Carolina","SC",31578 +2019-12-01,"Delivered to Consumers","Montana","MT",9494 +2019-12-01,"Delivered to Consumers","Maryland","MD",31650 +2019-12-01,"Delivered to Consumers","Hawaii","HI",268 +2019-12-01,"Delivered to Consumers","Idaho","ID",15061 +2019-12-01,"Delivered to Consumers","New Jersey","NJ",90505 +2019-12-01,"Delivered to Consumers","Arizona","AZ",43265 +2019-12-01,"Delivered to Consumers","New Hampshire","NH",5847 +2019-12-01,"Delivered to Consumers","District of Columbia","DC",4606 +2019-12-01,"Delivered to Consumers","Utah","UT",30441 +2019-12-01,"Delivered to Consumers","Indiana","IN",93763 +2019-12-01,"Delivered to Consumers","New York","NY",152911 +2019-12-01,"Delivered to Consumers","Tennessee","TN",42045 +2019-12-01,"Delivered to Consumers","Connecticut","CT",33879 +2019-12-01,"Delivered to Consumers","Mississippi","MS",46247 +2019-12-01,"Delivered to Consumers","Texas","TX",352155 +2019-12-01,"Delivered to Consumers","Maine","ME",4648 +2019-12-01,"Delivered to Consumers","South Dakota","SD",9370 +2019-12-01,"Delivered to Consumers","Georgia","GA",75963 +2019-12-01,"Delivered to Consumers","Minnesota","MN",62034 +2019-12-01,"Delivered to Consumers","Vermont","VT",1776 +2019-12-01,"Delivered to Consumers","Oklahoma","OK",65381 +2019-12-01,"Delivered to Consumers","Nebraska","NE",18924 +2019-12-01,"Delivered to Consumers","Colorado","CO",51979 +2019-12-01,"Delivered to Consumers","New Mexico","NM",22638 +2019-12-01,"Delivered to Consumers","West Virginia","WV",10160 +2019-12-01,"Delivered to Consumers","Rhode Island","RI",8683 +2019-12-01,"Delivered to Consumers","Ohio","OH",129554 +2019-12-01,"Delivered to Consumers","Iowa","IA",44502 +2019-12-01,"Delivered to Consumers","Arkansas","AR",32213 +2019-12-01,"Delivered to Consumers","Nevada","NV",29881 +2019-12-01,"Delivered to Consumers","Florida","FL",111220 +2019-12-01,"Electric Power Consumption","Virginia","VA",37721 +2019-12-01,"Electric Power Consumption","Idaho","ID",3691 +2019-12-01,"Electric Power Consumption","Oklahoma","OK",28648 +2019-12-01,"Electric Power Consumption","Nevada","NV",16213 +2019-12-01,"Electric Power Consumption","Tennessee","TN",9467 +2019-12-01,"Electric Power Consumption","Indiana","IN",21185 +2019-12-01,"Electric Power Consumption","Texas","TX",131370 +2019-12-01,"Electric Power Consumption","Utah","UT",5939 +2019-12-01,"Electric Power Consumption","Illinois","IL",15903 +2019-12-01,"Electric Power Consumption","North Dakota","ND",1258 +2019-12-01,"Electric Power Consumption","Michigan","MI",23428 +2019-12-01,"Electric Power Consumption","Massachusetts","MA",10401 +2019-12-01,"Electric Power Consumption","Pennsylvania","PA",60375 +2019-12-01,"Electric Power Consumption","Vermont","VT",1 +2019-12-01,"Electric Power Consumption","Missouri","MO",4267 +2019-12-01,"Electric Power Consumption","Kentucky","KY",8873 +2019-12-01,"Electric Power Consumption","Montana","MT",461 +2019-12-01,"Electric Power Consumption","Delaware","DE",809 +2019-12-01,"Electric Power Consumption","Arizona","AZ",31195 +2019-12-01,"Electric Power Consumption","Washington","WA",12776 +2019-12-01,"Electric Power Consumption","New Mexico","NM",8828 +2019-12-01,"Electric Power Consumption","Kansas","KS",1578 +2019-12-01,"Electric Power Consumption","West Virginia","WV",223 +2019-12-01,"Electric Power Consumption","Wyoming","WY",373 +2019-12-01,"Electric Power Consumption","Hawaii","HI",NA +2019-12-01,"Electric Power Consumption","Ohio","OH",32472 +2019-12-01,"Electric Power Consumption","Louisiana","LA",19420 +2019-12-01,"Electric Power Consumption","Rhode Island","RI",2806 +2019-12-01,"Electric Power Consumption","Oregon","OR",15175 +2019-12-01,"Electric Power Consumption","U.S.","U.S.",911529 +2019-12-01,"Electric Power Consumption","Connecticut","CT",14545 +2019-12-01,"Electric Power Consumption","California","CA",56325 +2019-12-01,"Electric Power Consumption","New Jersey","NJ",23192 +2019-12-01,"Electric Power Consumption","Arkansas","AR",10909 +2019-12-01,"Electric Power Consumption","Minnesota","MN",8178 +2019-12-01,"Electric Power Consumption","Wisconsin","WI",13540 +2019-12-01,"Electric Power Consumption","Nebraska","NE",765 +2019-12-01,"Electric Power Consumption","North Carolina","NC",23954 +2019-12-01,"Electric Power Consumption","Maine","ME",643 +2019-12-01,"Electric Power Consumption","New Hampshire","NH",1950 +2019-12-01,"Electric Power Consumption","Georgia","GA",36039 +2019-12-01,"Electric Power Consumption","Alaska","AK",2077 +2019-12-01,"Electric Power Consumption","Colorado","CO",11111 +2019-12-01,"Electric Power Consumption","South Carolina","SC",14431 +2019-12-01,"Electric Power Consumption","Iowa","IA",3913 +2019-12-01,"Electric Power Consumption","Maryland","MD",5994 +2019-12-01,"Electric Power Consumption","Florida","FL",91154 +2019-12-01,"Electric Power Consumption","Alabama","AL",28282 +2019-12-01,"Electric Power Consumption","New York","NY",30821 +2019-12-01,"Electric Power Consumption","South Dakota","SD",794 +2019-12-01,"Electric Power Consumption","Mississippi","MS",28057 +2019-12-01,"Industrial Consumption","Illinois","IL",27221 +2019-12-01,"Industrial Consumption","North Dakota","ND",3280 +2019-12-01,"Industrial Consumption","Colorado","CO",9245 +2019-12-01,"Industrial Consumption","Ohio","OH",28007 +2019-12-01,"Industrial Consumption","Utah","UT",3720 +2019-12-01,"Industrial Consumption","Vermont","VT",223 +2019-12-01,"Industrial Consumption","Wyoming","WY",6239 +2019-12-01,"Industrial Consumption","Delaware","DE",3454 +2019-12-01,"Industrial Consumption","North Carolina","NC",10782 +2019-12-01,"Industrial Consumption","Georgia","GA",13992 +2019-12-01,"Industrial Consumption","Kansas","KS",12482 +2019-12-01,"Industrial Consumption","U.S.","U.S.",778934 +2019-12-01,"Industrial Consumption","Nevada","NV",1878 +2019-12-01,"Industrial Consumption","Mississippi","MS",11569 +2019-12-01,"Industrial Consumption","South Carolina","SC",8321 +2019-12-01,"Industrial Consumption","Nebraska","NE",7972 +2019-12-01,"Industrial Consumption","Virginia","VA",9236 +2019-12-01,"Industrial Consumption","Minnesota","MN",14863 +2019-12-01,"Industrial Consumption","Iowa","IA",23009 +2019-12-01,"Industrial Consumption","District of Columbia","DC",NA +2019-12-01,"Industrial Consumption","Alaska","AK",527 +2019-12-01,"Industrial Consumption","Hawaii","HI",8 +2019-12-01,"Industrial Consumption","South Dakota","SD",4698 +2019-12-01,"Industrial Consumption","Arizona","AZ",1803 +2019-12-01,"Industrial Consumption","California","CA",65665 +2019-12-01,"Industrial Consumption","Alabama","AL",18886 +2019-12-01,"Industrial Consumption","Florida","FL",11538 +2019-12-01,"Industrial Consumption","Missouri","MO",6289 +2019-12-01,"Industrial Consumption","Louisiana","LA",101508 +2019-12-01,"Industrial Consumption","New Mexico","NM",1700 +2019-12-01,"Industrial Consumption","Oregon","OR",5284 +2019-12-01,"Industrial Consumption","New York","NY",8759 +2019-12-01,"Industrial Consumption","West Virginia","WV",3197 +2019-12-01,"Industrial Consumption","Wisconsin","WI",16830 +2019-12-01,"Industrial Consumption","Indiana","IN",40716 +2019-12-01,"Industrial Consumption","Rhode Island","RI",786 +2019-12-01,"Industrial Consumption","Montana","MT",2282 +2019-12-01,"Industrial Consumption","Arkansas","AR",9475 +2019-12-01,"Industrial Consumption","Texas","TX",167322 +2019-12-01,"Industrial Consumption","Tennessee","TN",12970 +2019-12-01,"Industrial Consumption","Idaho","ID",3745 +2019-12-01,"Industrial Consumption","Maryland","MD",1591 +2019-12-01,"Industrial Consumption","Massachusetts","MA",5257 +2019-12-01,"Industrial Consumption","Washington","WA",7242 +2019-12-01,"Industrial Consumption","Maine","ME",2170 +2019-12-01,"Industrial Consumption","New Jersey","NJ",6166 +2019-12-01,"Industrial Consumption","Kentucky","KY",10954 +2019-12-01,"Industrial Consumption","Oklahoma","OK",19260 +2019-12-01,"Industrial Consumption","Pennsylvania","PA",25958 +2019-12-01,"Industrial Consumption","New Hampshire","NH",838 +2019-12-01,"Industrial Consumption","Connecticut","CT",2667 +2019-12-01,"Industrial Consumption","Michigan","MI",17350 +2019-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",161790 +2019-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",104519 +2019-12-01,"Residential Consumption","Texas","TX",31830 +2019-12-01,"Residential Consumption","Louisiana","LA",5265 +2019-12-01,"Residential Consumption","Utah","UT",13171 +2019-12-01,"Residential Consumption","Georgia","GA",18509 +2019-12-01,"Residential Consumption","District of Columbia","DC",2251 +2019-12-01,"Residential Consumption","Maine","ME",467 +2019-12-01,"Residential Consumption","Indiana","IN",20252 +2019-12-01,"Residential Consumption","Florida","FL",1960 +2019-12-01,"Residential Consumption","Arizona","AZ",5947 +2019-12-01,"Residential Consumption","Wyoming","WY",2074 +2019-12-01,"Residential Consumption","Connecticut","CT",8492 +2019-12-01,"Residential Consumption","Tennessee","TN",11857 +2019-12-01,"Residential Consumption","New Mexico","NM",7222 +2019-12-01,"Residential Consumption","North Dakota","ND",2004 +2019-12-01,"Residential Consumption","New Jersey","NJ",39094 +2019-12-01,"Residential Consumption","Alabama","AL",5044 +2019-12-01,"Residential Consumption","U.S.","U.S.",752613 +2019-12-01,"Residential Consumption","Iowa","IA",9970 +2019-12-01,"Residential Consumption","Vermont","VT",578 +2019-12-01,"Residential Consumption","Nevada","NV",7356 +2019-12-01,"Residential Consumption","Idaho","ID",4861 +2019-12-01,"Residential Consumption","Kentucky","KY",7953 +2019-12-01,"Residential Consumption","California","CA",60983 +2019-12-01,"Residential Consumption","Alaska","AK",2686 +2019-12-01,"Residential Consumption","Ohio","OH",44442 +2019-12-01,"Residential Consumption","Virginia","VA",13627 +2019-12-01,"Residential Consumption","Michigan","MI",46084 +2019-12-01,"Residential Consumption","Montana","MT",3279 +2019-12-01,"Residential Consumption","Washington","WA",12912 +2019-12-01,"Residential Consumption","Missouri","MO",17007 +2019-12-01,"Residential Consumption","Oregon","OR",7047 +2019-12-01,"Residential Consumption","North Carolina","NC",12688 +2019-12-01,"Residential Consumption","Wisconsin","WI",21241 +2019-12-01,"Residential Consumption","Arkansas","AR",5438 +2019-12-01,"Residential Consumption","Oklahoma","OK",10706 +2019-12-01,"Residential Consumption","West Virginia","WV",3758 +2019-12-01,"Residential Consumption","Delaware","DE",1986 +2019-12-01,"Residential Consumption","Mississippi","MS",3900 +2019-12-01,"Residential Consumption","Maryland","MD",13510 +2019-12-01,"Residential Consumption","South Dakota","SD",1976 +2019-12-01,"Residential Consumption","Massachusetts","MA",22166 +2019-12-01,"Residential Consumption","Colorado","CO",22258 +2019-12-01,"Residential Consumption","Illinois","IL",59862 +2019-12-01,"Residential Consumption","South Carolina","SC",5785 +2019-12-01,"Residential Consumption","Rhode Island","RI",3130 +2019-12-01,"Residential Consumption","Hawaii","HI",46 +2019-12-01,"Residential Consumption","Nebraska","NE",5822 +2019-12-01,"Residential Consumption","Minnesota","MN",22261 +2019-12-01,"Residential Consumption","Pennsylvania","PA",38964 +2019-12-01,"Residential Consumption","New Hampshire","NH",1396 +2019-12-01,"Residential Consumption","Kansas","KS",10077 +2019-12-01,"Residential Consumption","New York","NY",71422 +2019-12-01,"Vehicle Fuel Consumption","Utah","UT",27 +2019-12-01,"Vehicle Fuel Consumption","Virginia","VA",74 +2019-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2019-12-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2019-12-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2019-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2019-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2019-12-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2019-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2019-12-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2019-12-01,"Vehicle Fuel Consumption","New Mexico","NM",18 +2019-12-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2019-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2019-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2019-12-01,"Vehicle Fuel Consumption","Florida","FL",422 +2019-12-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2019-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",11 +2019-12-01,"Vehicle Fuel Consumption","Texas","TX",135 +2019-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2019-12-01,"Vehicle Fuel Consumption","Louisiana","LA",34 +2019-12-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2019-12-01,"Vehicle Fuel Consumption","Kentucky","KY",5 +2019-12-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2019-12-01,"Vehicle Fuel Consumption","New York","NY",82 +2019-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2019-12-01,"Vehicle Fuel Consumption","Ohio","OH",43 +2019-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2019-12-01,"Vehicle Fuel Consumption","Nevada","NV",108 +2019-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2019-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",38 +2019-12-01,"Vehicle Fuel Consumption","Arizona","AZ",138 +2019-12-01,"Vehicle Fuel Consumption","Alabama","AL",8 +2019-12-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2019-12-01,"Vehicle Fuel Consumption","Colorado","CO",156 +2019-12-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2019-12-01,"Vehicle Fuel Consumption","Georgia","GA",152 +2019-12-01,"Vehicle Fuel Consumption","South Carolina","SC",11 +2019-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2019-12-01,"Vehicle Fuel Consumption","Washington","WA",14 +2019-12-01,"Vehicle Fuel Consumption","Wyoming","WY",2 +2019-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",29 +2019-12-01,"Vehicle Fuel Consumption","Maryland","MD",58 +2019-12-01,"Vehicle Fuel Consumption","Illinois","IL",11 +2019-12-01,"Vehicle Fuel Consumption","California","CA",2244 +2019-12-01,"Vehicle Fuel Consumption","Tennessee","TN",28 +2019-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",143 +2019-12-01,"Vehicle Fuel Consumption","Kansas","KS",62 +2019-12-01,"Vehicle Fuel Consumption","Missouri","MO",32 +2019-12-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2019-12-01,"Vehicle Fuel Consumption","Minnesota","MN",43 +2019-12-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2019-12-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2020-01-01,"Commercial Consumption","Minnesota","MN",18888 +2020-01-01,"Commercial Consumption","Utah","UT",7508 +2020-01-01,"Commercial Consumption","Pennsylvania","PA",25025 +2020-01-01,"Commercial Consumption","Missouri","MO",10768 +2020-01-01,"Commercial Consumption","New Jersey","NJ",24925 +2020-01-01,"Commercial Consumption","Hawaii","HI",219 +2020-01-01,"Commercial Consumption","Alaska","AK",2653 +2020-01-01,"Commercial Consumption","Montana","MT",3660 +2020-01-01,"Commercial Consumption","Maine","ME",1446 +2020-01-01,"Commercial Consumption","U.S.","U.S.",490633 +2020-01-01,"Commercial Consumption","Rhode Island","RI",1895 +2020-01-01,"Commercial Consumption","Arkansas","AR",7347 +2020-01-01,"Commercial Consumption","Delaware","DE",2049 +2020-01-01,"Commercial Consumption","West Virginia","WV",3191 +2020-01-01,"Commercial Consumption","Oklahoma","OK",7188 +2020-01-01,"Commercial Consumption","Virginia","VA",10694 +2020-01-01,"Commercial Consumption","Texas","TX",23395 +2020-01-01,"Commercial Consumption","Georgia","GA",8310 +2020-01-01,"Commercial Consumption","Alabama","AL",3496 +2020-01-01,"Commercial Consumption","Michigan","MI",26095 +2020-01-01,"Commercial Consumption","Illinois","IL",34265 +2020-01-01,"Commercial Consumption","Wyoming","WY",1751 +2020-01-01,"Commercial Consumption","South Carolina","SC",3376 +2020-01-01,"Commercial Consumption","Colorado","CO",9233 +2020-01-01,"Commercial Consumption","Iowa","IA",8282 +2020-01-01,"Commercial Consumption","California","CA",27770 +2020-01-01,"Commercial Consumption","Nebraska","NE",5268 +2020-01-01,"Commercial Consumption","Arizona","AZ",4472 +2020-01-01,"Commercial Consumption","Indiana","IN",13574 +2020-01-01,"Commercial Consumption","New Mexico","NM",3889 +2020-01-01,"Commercial Consumption","Massachusetts","MA",17217 +2020-01-01,"Commercial Consumption","Wisconsin","WI",14730 +2020-01-01,"Commercial Consumption","New Hampshire","NH",1688 +2020-01-01,"Commercial Consumption","Connecticut","CT",7811 +2020-01-01,"Commercial Consumption","Mississippi","MS",2727 +2020-01-01,"Commercial Consumption","Nevada","NV",3875 +2020-01-01,"Commercial Consumption","District of Columbia","DC",2345 +2020-01-01,"Commercial Consumption","North Dakota","ND",2567 +2020-01-01,"Commercial Consumption","Maryland","MD",10673 +2020-01-01,"Commercial Consumption","Kansas","KS",5997 +2020-01-01,"Commercial Consumption","Florida","FL",6649 +2020-01-01,"Commercial Consumption","Vermont","VT",999 +2020-01-01,"Commercial Consumption","Ohio","OH",26521 +2020-01-01,"Commercial Consumption","Washington","WA",8139 +2020-01-01,"Commercial Consumption","South Dakota","SD",2194 +2020-01-01,"Commercial Consumption","Idaho","ID",2845 +2020-01-01,"Commercial Consumption","Tennessee","TN",8616 +2020-01-01,"Commercial Consumption","Louisiana","LA",3203 +2020-01-01,"Commercial Consumption","North Carolina","NC",8651 +2020-01-01,"Commercial Consumption","Oregon","OR",4272 +2020-01-01,"Commercial Consumption","Kentucky","KY",5996 +2020-01-01,"Commercial Consumption","New York","NY",42286 +2020-01-01,"Delivered to Consumers","U.S.","U.S.",3048809 +2020-01-01,"Delivered to Consumers","Oklahoma","OK",69207 +2020-01-01,"Delivered to Consumers","North Carolina","NC",62439 +2020-01-01,"Delivered to Consumers","South Carolina","SC",33052 +2020-01-01,"Delivered to Consumers","Georgia","GA",79876 +2020-01-01,"Delivered to Consumers","New Hampshire","NH",5974 +2020-01-01,"Delivered to Consumers","Florida","FL",117489 +2020-01-01,"Delivered to Consumers","West Virginia","WV",11326 +2020-01-01,"Delivered to Consumers","Rhode Island","RI",9175 +2020-01-01,"Delivered to Consumers","Iowa","IA",48200 +2020-01-01,"Delivered to Consumers","Connecticut","CT",32144 +2020-01-01,"Delivered to Consumers","Idaho","ID",15037 +2020-01-01,"Delivered to Consumers","Tennessee","TN",45405 +2020-01-01,"Delivered to Consumers","Ohio","OH",138155 +2020-01-01,"Delivered to Consumers","Alabama","AL",59114 +2020-01-01,"Delivered to Consumers","Virginia","VA",76015 +2020-01-01,"Delivered to Consumers","Mississippi","MS",50728 +2020-01-01,"Delivered to Consumers","Vermont","VT",1887 +2020-01-01,"Delivered to Consumers","Kansas","KS",33446 +2020-01-01,"Delivered to Consumers","Kentucky","KY",35637 +2020-01-01,"Delivered to Consumers","California","CA",212211 +2020-01-01,"Delivered to Consumers","Oregon","OR",30506 +2020-01-01,"Delivered to Consumers","Louisiana","LA",133394 +2020-01-01,"Delivered to Consumers","Washington","WA",37902 +2020-01-01,"Delivered to Consumers","Indiana","IN",99021 +2020-01-01,"Delivered to Consumers","Wyoming","WY",10014 +2020-01-01,"Delivered to Consumers","South Dakota","SD",10427 +2020-01-01,"Delivered to Consumers","Montana","MT",9746 +2020-01-01,"Delivered to Consumers","Alaska","AK",9360 +2020-01-01,"Delivered to Consumers","Wisconsin","WI",70936 +2020-01-01,"Delivered to Consumers","Pennsylvania","PA",157888 +2020-01-01,"Delivered to Consumers","Colorado","CO",50851 +2020-01-01,"Delivered to Consumers","Maine","ME",4918 +2020-01-01,"Delivered to Consumers","New Mexico","NM",20565 +2020-01-01,"Delivered to Consumers","Delaware","DE",9440 +2020-01-01,"Delivered to Consumers","Hawaii","HI",280 +2020-01-01,"Delivered to Consumers","Michigan","MI",124364 +2020-01-01,"Delivered to Consumers","Arkansas","AR",37111 +2020-01-01,"Delivered to Consumers","Missouri","MO",44935 +2020-01-01,"Delivered to Consumers","Nevada","NV",29775 +2020-01-01,"Delivered to Consumers","Minnesota","MN",69889 +2020-01-01,"Delivered to Consumers","Maryland","MD",33591 +2020-01-01,"Delivered to Consumers","Texas","TX",350917 +2020-01-01,"Delivered to Consumers","Utah","UT",30604 +2020-01-01,"Delivered to Consumers","Illinois","IL",154914 +2020-01-01,"Delivered to Consumers","New York","NY",156760 +2020-01-01,"Delivered to Consumers","Nebraska","NE",21967 +2020-01-01,"Delivered to Consumers","Massachusetts","MA",53713 +2020-01-01,"Delivered to Consumers","New Jersey","NJ",91809 +2020-01-01,"Delivered to Consumers","Arizona","AZ",42426 +2020-01-01,"Delivered to Consumers","North Dakota","ND",9921 +2020-01-01,"Delivered to Consumers","District of Columbia","DC",4349 +2020-01-01,"Electric Power Consumption","Rhode Island","RI",3257 +2020-01-01,"Electric Power Consumption","Maine","ME",601 +2020-01-01,"Electric Power Consumption","Florida","FL",96800 +2020-01-01,"Electric Power Consumption","California","CA",44002 +2020-01-01,"Electric Power Consumption","Virginia","VA",41833 +2020-01-01,"Electric Power Consumption","Arkansas","AR",13615 +2020-01-01,"Electric Power Consumption","Nevada","NV",15804 +2020-01-01,"Electric Power Consumption","Missouri","MO",6556 +2020-01-01,"Electric Power Consumption","Mississippi","MS",31328 +2020-01-01,"Electric Power Consumption","Maryland","MD",6338 +2020-01-01,"Electric Power Consumption","New Jersey","NJ",18367 +2020-01-01,"Electric Power Consumption","Colorado","CO",10316 +2020-01-01,"Electric Power Consumption","Texas","TX",129783 +2020-01-01,"Electric Power Consumption","Massachusetts","MA",10286 +2020-01-01,"Electric Power Consumption","Tennessee","TN",9993 +2020-01-01,"Electric Power Consumption","Ohio","OH",35659 +2020-01-01,"Electric Power Consumption","Arizona","AZ",27320 +2020-01-01,"Electric Power Consumption","Alaska","AK",2438 +2020-01-01,"Electric Power Consumption","Louisiana","LA",24579 +2020-01-01,"Electric Power Consumption","Minnesota","MN",10141 +2020-01-01,"Electric Power Consumption","Illinois","IL",23484 +2020-01-01,"Electric Power Consumption","Montana","MT",284 +2020-01-01,"Electric Power Consumption","Washington","WA",9480 +2020-01-01,"Electric Power Consumption","South Carolina","SC",14869 +2020-01-01,"Electric Power Consumption","Utah","UT",5996 +2020-01-01,"Electric Power Consumption","Wisconsin","WI",15135 +2020-01-01,"Electric Power Consumption","Pennsylvania","PA",70131 +2020-01-01,"Electric Power Consumption","Iowa","IA",3796 +2020-01-01,"Electric Power Consumption","Vermont","VT",1 +2020-01-01,"Electric Power Consumption","Nebraska","NE",1200 +2020-01-01,"Electric Power Consumption","Delaware","DE",1551 +2020-01-01,"Electric Power Consumption","Connecticut","CT",13503 +2020-01-01,"Electric Power Consumption","Idaho","ID",3667 +2020-01-01,"Electric Power Consumption","U.S.","U.S.",948931 +2020-01-01,"Electric Power Consumption","North Carolina","NC",29124 +2020-01-01,"Electric Power Consumption","Hawaii","HI",NA +2020-01-01,"Electric Power Consumption","Indiana","IN",21558 +2020-01-01,"Electric Power Consumption","Alabama","AL",30368 +2020-01-01,"Electric Power Consumption","New Mexico","NM",8212 +2020-01-01,"Electric Power Consumption","New York","NY",31081 +2020-01-01,"Electric Power Consumption","Oregon","OR",13995 +2020-01-01,"Electric Power Consumption","Michigan","MI",30178 +2020-01-01,"Electric Power Consumption","Kansas","KS",1714 +2020-01-01,"Electric Power Consumption","South Dakota","SD",942 +2020-01-01,"Electric Power Consumption","New Hampshire","NH",2004 +2020-01-01,"Electric Power Consumption","Georgia","GA",35734 +2020-01-01,"Electric Power Consumption","Oklahoma","OK",30457 +2020-01-01,"Electric Power Consumption","West Virginia","WV",656 +2020-01-01,"Electric Power Consumption","Wyoming","WY",416 +2020-01-01,"Electric Power Consumption","Kentucky","KY",8919 +2020-01-01,"Electric Power Consumption","North Dakota","ND",1459 +2020-01-01,"Industrial Consumption","Ohio","OH",30014 +2020-01-01,"Industrial Consumption","Utah","UT",3968 +2020-01-01,"Industrial Consumption","Virginia","VA",8886 +2020-01-01,"Industrial Consumption","Vermont","VT",232 +2020-01-01,"Industrial Consumption","New Jersey","NJ",4182 +2020-01-01,"Industrial Consumption","Louisiana","LA",100824 +2020-01-01,"Industrial Consumption","New Mexico","NM",1743 +2020-01-01,"Industrial Consumption","U.S.","U.S.",780197 +2020-01-01,"Industrial Consumption","Pennsylvania","PA",22449 +2020-01-01,"Industrial Consumption","Maine","ME",2353 +2020-01-01,"Industrial Consumption","Texas","TX",159002 +2020-01-01,"Industrial Consumption","Florida","FL",11350 +2020-01-01,"Industrial Consumption","Connecticut","CT",2571 +2020-01-01,"Industrial Consumption","Georgia","GA",14621 +2020-01-01,"Industrial Consumption","Montana","MT",2301 +2020-01-01,"Industrial Consumption","Oklahoma","OK",19587 +2020-01-01,"Industrial Consumption","Missouri","MO",6819 +2020-01-01,"Industrial Consumption","New Hampshire","NH",910 +2020-01-01,"Industrial Consumption","Minnesota","MN",15577 +2020-01-01,"Industrial Consumption","Kentucky","KY",12091 +2020-01-01,"Industrial Consumption","Rhode Island","RI",830 +2020-01-01,"Industrial Consumption","South Dakota","SD",4668 +2020-01-01,"Industrial Consumption","Oregon","OR",5419 +2020-01-01,"Industrial Consumption","New York","NY",9016 +2020-01-01,"Industrial Consumption","Mississippi","MS",12798 +2020-01-01,"Industrial Consumption","Alabama","AL",19571 +2020-01-01,"Industrial Consumption","West Virginia","WV",3216 +2020-01-01,"Industrial Consumption","Tennessee","TN",14008 +2020-01-01,"Industrial Consumption","Iowa","IA",23705 +2020-01-01,"Industrial Consumption","Michigan","MI",17686 +2020-01-01,"Industrial Consumption","Indiana","IN",40072 +2020-01-01,"Industrial Consumption","Delaware","DE",3721 +2020-01-01,"Industrial Consumption","North Carolina","NC",11446 +2020-01-01,"Industrial Consumption","Kansas","KS",13256 +2020-01-01,"Industrial Consumption","Arizona","AZ",1902 +2020-01-01,"Industrial Consumption","Nevada","NV",1659 +2020-01-01,"Industrial Consumption","California","CA",68655 +2020-01-01,"Industrial Consumption","Wisconsin","WI",17732 +2020-01-01,"Industrial Consumption","District of Columbia","DC",NA +2020-01-01,"Industrial Consumption","North Dakota","ND",3619 +2020-01-01,"Industrial Consumption","Massachusetts","MA",5813 +2020-01-01,"Industrial Consumption","Colorado","CO",9139 +2020-01-01,"Industrial Consumption","Arkansas","AR",9905 +2020-01-01,"Industrial Consumption","Nebraska","NE",8286 +2020-01-01,"Industrial Consumption","Wyoming","WY",5831 +2020-01-01,"Industrial Consumption","Alaska","AK",612 +2020-01-01,"Industrial Consumption","Hawaii","HI",6 +2020-01-01,"Industrial Consumption","Washington","WA",7000 +2020-01-01,"Industrial Consumption","Maryland","MD",1106 +2020-01-01,"Industrial Consumption","South Carolina","SC",9012 +2020-01-01,"Industrial Consumption","Idaho","ID",3803 +2020-01-01,"Industrial Consumption","Illinois","IL",27228 +2020-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",159651 +2020-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",112092 +2020-01-01,"Residential Consumption","Mississippi","MS",3875 +2020-01-01,"Residential Consumption","Connecticut","CT",8240 +2020-01-01,"Residential Consumption","Vermont","VT",654 +2020-01-01,"Residential Consumption","Tennessee","TN",12756 +2020-01-01,"Residential Consumption","Utah","UT",13109 +2020-01-01,"Residential Consumption","Georgia","GA",21077 +2020-01-01,"Residential Consumption","Kansas","KS",12414 +2020-01-01,"Residential Consumption","New York","NY",74300 +2020-01-01,"Residential Consumption","Rhode Island","RI",3185 +2020-01-01,"Residential Consumption","Nevada","NV",8342 +2020-01-01,"Residential Consumption","Indiana","IN",23817 +2020-01-01,"Residential Consumption","Massachusetts","MA",20390 +2020-01-01,"Residential Consumption","U.S.","U.S.",824886 +2020-01-01,"Residential Consumption","Ohio","OH",45865 +2020-01-01,"Residential Consumption","Michigan","MI",50406 +2020-01-01,"Residential Consumption","South Dakota","SD",2623 +2020-01-01,"Residential Consumption","North Dakota","ND",2276 +2020-01-01,"Residential Consumption","New Hampshire","NH",1371 +2020-01-01,"Residential Consumption","Montana","MT",3501 +2020-01-01,"Residential Consumption","Oklahoma","OK",11836 +2020-01-01,"Residential Consumption","Texas","TX",38642 +2020-01-01,"Residential Consumption","Maryland","MD",15451 +2020-01-01,"Residential Consumption","Idaho","ID",4718 +2020-01-01,"Residential Consumption","Missouri","MO",20777 +2020-01-01,"Residential Consumption","Delaware","DE",2118 +2020-01-01,"Residential Consumption","West Virginia","WV",4261 +2020-01-01,"Residential Consumption","Oregon","OR",6816 +2020-01-01,"Residential Consumption","North Carolina","NC",13080 +2020-01-01,"Residential Consumption","Virginia","VA",14549 +2020-01-01,"Residential Consumption","Nebraska","NE",7200 +2020-01-01,"Residential Consumption","Minnesota","MN",25247 +2020-01-01,"Residential Consumption","District of Columbia","DC",1986 +2020-01-01,"Residential Consumption","New Mexico","NM",6689 +2020-01-01,"Residential Consumption","Florida","FL",2246 +2020-01-01,"Residential Consumption","Arkansas","AR",6237 +2020-01-01,"Residential Consumption","Washington","WA",13273 +2020-01-01,"Residential Consumption","Alaska","AK",3657 +2020-01-01,"Residential Consumption","Louisiana","LA",4683 +2020-01-01,"Residential Consumption","Colorado","CO",22083 +2020-01-01,"Residential Consumption","Illinois","IL",69929 +2020-01-01,"Residential Consumption","South Carolina","SC",5786 +2020-01-01,"Residential Consumption","Hawaii","HI",54 +2020-01-01,"Residential Consumption","Wisconsin","WI",23300 +2020-01-01,"Residential Consumption","Maine","ME",517 +2020-01-01,"Residential Consumption","New Jersey","NJ",44312 +2020-01-01,"Residential Consumption","Iowa","IA",12415 +2020-01-01,"Residential Consumption","Pennsylvania","PA",40148 +2020-01-01,"Residential Consumption","Kentucky","KY",8627 +2020-01-01,"Residential Consumption","California","CA",69802 +2020-01-01,"Residential Consumption","Arizona","AZ",8560 +2020-01-01,"Residential Consumption","Alabama","AL",5673 +2020-01-01,"Residential Consumption","Wyoming","WY",2015 +2020-01-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2020-01-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-01-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-01-01,"Vehicle Fuel Consumption","Ohio","OH",97 +2020-01-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-01-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-01-01,"Vehicle Fuel Consumption","Colorado","CO",80 +2020-01-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2020-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-01-01,"Vehicle Fuel Consumption","Virginia","VA",53 +2020-01-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-01-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-01-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2020-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",4162 +2020-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",135 +2020-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",139 +2020-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",19 +2020-01-01,"Vehicle Fuel Consumption","North Carolina","NC",138 +2020-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-01-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-01-01,"Vehicle Fuel Consumption","New York","NY",78 +2020-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2020-01-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-01-01,"Vehicle Fuel Consumption","Louisiana","LA",104 +2020-01-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-01-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2020-01-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2020-01-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2020-01-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2020-01-01,"Vehicle Fuel Consumption","Kansas","KS",65 +2020-01-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-01-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-01-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2020-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-01-01,"Vehicle Fuel Consumption","Texas","TX",94 +2020-01-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2020-01-01,"Vehicle Fuel Consumption","Georgia","GA",134 +2020-01-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-01-01,"Vehicle Fuel Consumption","Utah","UT",23 +2020-01-01,"Vehicle Fuel Consumption","Nevada","NV",96 +2020-01-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2020-01-01,"Vehicle Fuel Consumption","Florida","FL",443 +2020-01-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-01-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-01-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-01-01,"Vehicle Fuel Consumption","California","CA",1981 +2020-02-01,"Commercial Consumption","Virginia","VA",8477 +2020-02-01,"Commercial Consumption","Iowa","IA",7732 +2020-02-01,"Commercial Consumption","Pennsylvania","PA",22812 +2020-02-01,"Commercial Consumption","Missouri","MO",9924 +2020-02-01,"Commercial Consumption","Ohio","OH",25934 +2020-02-01,"Commercial Consumption","Connecticut","CT",6997 +2020-02-01,"Commercial Consumption","Mississippi","MS",2559 +2020-02-01,"Commercial Consumption","Indiana","IN",12940 +2020-02-01,"Commercial Consumption","North Dakota","ND",2151 +2020-02-01,"Commercial Consumption","Colorado","CO",8709 +2020-02-01,"Commercial Consumption","New Mexico","NM",3171 +2020-02-01,"Commercial Consumption","Massachusetts","MA",15701 +2020-02-01,"Commercial Consumption","Wisconsin","WI",14287 +2020-02-01,"Commercial Consumption","New Hampshire","NH",1522 +2020-02-01,"Commercial Consumption","Montana","MT",3306 +2020-02-01,"Commercial Consumption","Idaho","ID",2662 +2020-02-01,"Commercial Consumption","New York","NY",39264 +2020-02-01,"Commercial Consumption","Arizona","AZ",3881 +2020-02-01,"Commercial Consumption","Tennessee","TN",8056 +2020-02-01,"Commercial Consumption","Nevada","NV",3350 +2020-02-01,"Commercial Consumption","Louisiana","LA",3253 +2020-02-01,"Commercial Consumption","District of Columbia","DC",1999 +2020-02-01,"Commercial Consumption","North Carolina","NC",7216 +2020-02-01,"Commercial Consumption","Kansas","KS",5584 +2020-02-01,"Commercial Consumption","Georgia","GA",7511 +2020-02-01,"Commercial Consumption","Rhode Island","RI",1765 +2020-02-01,"Commercial Consumption","Hawaii","HI",196 +2020-02-01,"Commercial Consumption","Arkansas","AR",6442 +2020-02-01,"Commercial Consumption","Maryland","MD",9224 +2020-02-01,"Commercial Consumption","Wyoming","WY",1790 +2020-02-01,"Commercial Consumption","Minnesota","MN",15816 +2020-02-01,"Commercial Consumption","U.S.","U.S.",447532 +2020-02-01,"Commercial Consumption","Florida","FL",6026 +2020-02-01,"Commercial Consumption","Nebraska","NE",4731 +2020-02-01,"Commercial Consumption","Delaware","DE",1817 +2020-02-01,"Commercial Consumption","Michigan","MI",25029 +2020-02-01,"Commercial Consumption","West Virginia","WV",3010 +2020-02-01,"Commercial Consumption","Washington","WA",7254 +2020-02-01,"Commercial Consumption","Utah","UT",6916 +2020-02-01,"Commercial Consumption","Maine","ME",1354 +2020-02-01,"Commercial Consumption","Vermont","VT",855 +2020-02-01,"Commercial Consumption","Alabama","AL",3201 +2020-02-01,"Commercial Consumption","South Carolina","SC",3179 +2020-02-01,"Commercial Consumption","Oregon","OR",4013 +2020-02-01,"Commercial Consumption","Oklahoma","OK",6855 +2020-02-01,"Commercial Consumption","South Dakota","SD",1845 +2020-02-01,"Commercial Consumption","New Jersey","NJ",17603 +2020-02-01,"Commercial Consumption","Kentucky","KY",5690 +2020-02-01,"Commercial Consumption","Texas","TX",22823 +2020-02-01,"Commercial Consumption","Alaska","AK",2216 +2020-02-01,"Commercial Consumption","California","CA",25218 +2020-02-01,"Commercial Consumption","Illinois","IL",33666 +2020-02-01,"Delivered to Consumers","Wyoming","WY",9715 +2020-02-01,"Delivered to Consumers","New York","NY",143724 +2020-02-01,"Delivered to Consumers","Ohio","OH",135289 +2020-02-01,"Delivered to Consumers","Massachusetts","MA",48595 +2020-02-01,"Delivered to Consumers","U.S.","U.S.",2806170 +2020-02-01,"Delivered to Consumers","Hawaii","HI",252 +2020-02-01,"Delivered to Consumers","Arkansas","AR",31217 +2020-02-01,"Delivered to Consumers","Nebraska","NE",20073 +2020-02-01,"Delivered to Consumers","Colorado","CO",50375 +2020-02-01,"Delivered to Consumers","Louisiana","LA",127228 +2020-02-01,"Delivered to Consumers","New Hampshire","NH",5175 +2020-02-01,"Delivered to Consumers","District of Columbia","DC",3867 +2020-02-01,"Delivered to Consumers","Delaware","DE",8240 +2020-02-01,"Delivered to Consumers","Illinois","IL",147079 +2020-02-01,"Delivered to Consumers","Michigan","MI",119619 +2020-02-01,"Delivered to Consumers","Iowa","IA",44906 +2020-02-01,"Delivered to Consumers","Wisconsin","WI",67236 +2020-02-01,"Delivered to Consumers","Virginia","VA",65024 +2020-02-01,"Delivered to Consumers","Mississippi","MS",50133 +2020-02-01,"Delivered to Consumers","New Jersey","NJ",70114 +2020-02-01,"Delivered to Consumers","Georgia","GA",76959 +2020-02-01,"Delivered to Consumers","Florida","FL",115175 +2020-02-01,"Delivered to Consumers","Utah","UT",28183 +2020-02-01,"Delivered to Consumers","Vermont","VT",1716 +2020-02-01,"Delivered to Consumers","Maryland","MD",31966 +2020-02-01,"Delivered to Consumers","Oklahoma","OK",64948 +2020-02-01,"Delivered to Consumers","Maine","ME",4433 +2020-02-01,"Delivered to Consumers","Washington","WA",33507 +2020-02-01,"Delivered to Consumers","North Dakota","ND",8739 +2020-02-01,"Delivered to Consumers","Minnesota","MN",57951 +2020-02-01,"Delivered to Consumers","Indiana","IN",91298 +2020-02-01,"Delivered to Consumers","Rhode Island","RI",9078 +2020-02-01,"Delivered to Consumers","Alaska","AK",7595 +2020-02-01,"Delivered to Consumers","Kansas","KS",29931 +2020-02-01,"Delivered to Consumers","Idaho","ID",13759 +2020-02-01,"Delivered to Consumers","Missouri","MO",40374 +2020-02-01,"Delivered to Consumers","Arizona","AZ",38342 +2020-02-01,"Delivered to Consumers","North Carolina","NC",58086 +2020-02-01,"Delivered to Consumers","California","CA",172586 +2020-02-01,"Delivered to Consumers","South Carolina","SC",31444 +2020-02-01,"Delivered to Consumers","Oregon","OR",26602 +2020-02-01,"Delivered to Consumers","Nevada","NV",25967 +2020-02-01,"Delivered to Consumers","South Dakota","SD",9173 +2020-02-01,"Delivered to Consumers","Pennsylvania","PA",144775 +2020-02-01,"Delivered to Consumers","New Mexico","NM",17905 +2020-02-01,"Delivered to Consumers","West Virginia","WV",11051 +2020-02-01,"Delivered to Consumers","Montana","MT",8864 +2020-02-01,"Delivered to Consumers","Tennessee","TN",44610 +2020-02-01,"Delivered to Consumers","Kentucky","KY",32758 +2020-02-01,"Delivered to Consumers","Connecticut","CT",30137 +2020-02-01,"Delivered to Consumers","Alabama","AL",57877 +2020-02-01,"Delivered to Consumers","Texas","TX",332521 +2020-02-01,"Electric Power Consumption","Virginia","VA",37319 +2020-02-01,"Electric Power Consumption","Oklahoma","OK",28266 +2020-02-01,"Electric Power Consumption","Illinois","IL",20658 +2020-02-01,"Electric Power Consumption","Tennessee","TN",10311 +2020-02-01,"Electric Power Consumption","North Dakota","ND",1303 +2020-02-01,"Electric Power Consumption","Georgia","GA",36444 +2020-02-01,"Electric Power Consumption","Rhode Island","RI",3666 +2020-02-01,"Electric Power Consumption","Utah","UT",5792 +2020-02-01,"Electric Power Consumption","Oregon","OR",11135 +2020-02-01,"Electric Power Consumption","Maine","ME",396 +2020-02-01,"Electric Power Consumption","Arizona","AZ",25511 +2020-02-01,"Electric Power Consumption","New Jersey","NJ",15918 +2020-02-01,"Electric Power Consumption","Arkansas","AR",10191 +2020-02-01,"Electric Power Consumption","Michigan","MI",26490 +2020-02-01,"Electric Power Consumption","West Virginia","WV",661 +2020-02-01,"Electric Power Consumption","Nevada","NV",14095 +2020-02-01,"Electric Power Consumption","Wyoming","WY",341 +2020-02-01,"Electric Power Consumption","Nebraska","NE",765 +2020-02-01,"Electric Power Consumption","Ohio","OH",32633 +2020-02-01,"Electric Power Consumption","New Hampshire","NH",1460 +2020-02-01,"Electric Power Consumption","Montana","MT",241 +2020-02-01,"Electric Power Consumption","Indiana","IN",19703 +2020-02-01,"Electric Power Consumption","Alabama","AL",30671 +2020-02-01,"Electric Power Consumption","Hawaii","HI",NA +2020-02-01,"Electric Power Consumption","Connecticut","CT",12562 +2020-02-01,"Electric Power Consumption","Alaska","AK",2004 +2020-02-01,"Electric Power Consumption","Minnesota","MN",7344 +2020-02-01,"Electric Power Consumption","Massachusetts","MA",8663 +2020-02-01,"Electric Power Consumption","Wisconsin","WI",13497 +2020-02-01,"Electric Power Consumption","South Dakota","SD",761 +2020-02-01,"Electric Power Consumption","North Carolina","NC",29362 +2020-02-01,"Electric Power Consumption","Kentucky","KY",6776 +2020-02-01,"Electric Power Consumption","Florida","FL",96651 +2020-02-01,"Electric Power Consumption","California","CA",39471 +2020-02-01,"Electric Power Consumption","Washington","WA",6865 +2020-02-01,"Electric Power Consumption","New Mexico","NM",7532 +2020-02-01,"Electric Power Consumption","Texas","TX",125705 +2020-02-01,"Electric Power Consumption","Vermont","VT",2 +2020-02-01,"Electric Power Consumption","U.S.","U.S.",893044 +2020-02-01,"Electric Power Consumption","Louisiana","LA",25679 +2020-02-01,"Electric Power Consumption","Colorado","CO",11808 +2020-02-01,"Electric Power Consumption","South Carolina","SC",14562 +2020-02-01,"Electric Power Consumption","Kansas","KS",1757 +2020-02-01,"Electric Power Consumption","Iowa","IA",4453 +2020-02-01,"Electric Power Consumption","Missouri","MO",5291 +2020-02-01,"Electric Power Consumption","Delaware","DE",1380 +2020-02-01,"Electric Power Consumption","Idaho","ID",2993 +2020-02-01,"Electric Power Consumption","New York","NY",28623 +2020-02-01,"Electric Power Consumption","Pennsylvania","PA",64268 +2020-02-01,"Electric Power Consumption","Mississippi","MS",31939 +2020-02-01,"Electric Power Consumption","Maryland","MD",9128 +2020-02-01,"Industrial Consumption","Massachusetts","MA",5853 +2020-02-01,"Industrial Consumption","New Mexico","NM",1650 +2020-02-01,"Industrial Consumption","Kansas","KS",12032 +2020-02-01,"Industrial Consumption","Utah","UT",3970 +2020-02-01,"Industrial Consumption","Pennsylvania","PA",21247 +2020-02-01,"Industrial Consumption","Nevada","NV",1683 +2020-02-01,"Industrial Consumption","Hawaii","HI",8 +2020-02-01,"Industrial Consumption","Ohio","OH",29266 +2020-02-01,"Industrial Consumption","Oregon","OR",5191 +2020-02-01,"Industrial Consumption","South Carolina","SC",8291 +2020-02-01,"Industrial Consumption","Wisconsin","WI",16501 +2020-02-01,"Industrial Consumption","Tennessee","TN",13785 +2020-02-01,"Industrial Consumption","Iowa","IA",21710 +2020-02-01,"Industrial Consumption","Connecticut","CT",2368 +2020-02-01,"Industrial Consumption","Rhode Island","RI",805 +2020-02-01,"Industrial Consumption","North Dakota","ND",3416 +2020-02-01,"Industrial Consumption","Delaware","DE",3213 +2020-02-01,"Industrial Consumption","Colorado","CO",8889 +2020-02-01,"Industrial Consumption","New York","NY",8980 +2020-02-01,"Industrial Consumption","Texas","TX",149147 +2020-02-01,"Industrial Consumption","West Virginia","WV",3357 +2020-02-01,"Industrial Consumption","Idaho","ID",3575 +2020-02-01,"Industrial Consumption","Florida","FL",9989 +2020-02-01,"Industrial Consumption","Michigan","MI",17450 +2020-02-01,"Industrial Consumption","Georgia","GA",13608 +2020-02-01,"Industrial Consumption","Montana","MT",2201 +2020-02-01,"Industrial Consumption","Maryland","MD",1394 +2020-02-01,"Industrial Consumption","Louisiana","LA",93525 +2020-02-01,"Industrial Consumption","South Dakota","SD",4377 +2020-02-01,"Industrial Consumption","Mississippi","MS",12054 +2020-02-01,"Industrial Consumption","Nebraska","NE",8170 +2020-02-01,"Industrial Consumption","Vermont","VT",219 +2020-02-01,"Industrial Consumption","Wyoming","WY",5530 +2020-02-01,"Industrial Consumption","New Hampshire","NH",910 +2020-02-01,"Industrial Consumption","Indiana","IN",35134 +2020-02-01,"Industrial Consumption","District of Columbia","DC",NA +2020-02-01,"Industrial Consumption","Missouri","MO",6654 +2020-02-01,"Industrial Consumption","Maine","ME",2205 +2020-02-01,"Industrial Consumption","Illinois","IL",26250 +2020-02-01,"Industrial Consumption","Washington","WA",8187 +2020-02-01,"Industrial Consumption","Alabama","AL",18695 +2020-02-01,"Industrial Consumption","Virginia","VA",7231 +2020-02-01,"Industrial Consumption","Minnesota","MN",14402 +2020-02-01,"Industrial Consumption","Kentucky","KY",11815 +2020-02-01,"Industrial Consumption","North Carolina","NC",10640 +2020-02-01,"Industrial Consumption","Alaska","AK",622 +2020-02-01,"Industrial Consumption","Oklahoma","OK",18506 +2020-02-01,"Industrial Consumption","Arizona","AZ",1788 +2020-02-01,"Industrial Consumption","U.S.","U.S.",724550 +2020-02-01,"Industrial Consumption","California","CA",53662 +2020-02-01,"Industrial Consumption","Arkansas","AR",9342 +2020-02-01,"Industrial Consumption","New Jersey","NJ",5054 +2020-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",149177 +2020-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",103171 +2020-02-01,"Residential Consumption","Texas","TX",34758 +2020-02-01,"Residential Consumption","South Carolina","SC",5404 +2020-02-01,"Residential Consumption","Connecticut","CT",8193 +2020-02-01,"Residential Consumption","Tennessee","TN",12428 +2020-02-01,"Residential Consumption","New Hampshire","NH",1281 +2020-02-01,"Residential Consumption","Illinois","IL",66498 +2020-02-01,"Residential Consumption","Virginia","VA",11947 +2020-02-01,"Residential Consumption","Nebraska","NE",6395 +2020-02-01,"Residential Consumption","Minnesota","MN",20355 +2020-02-01,"Residential Consumption","New Mexico","NM",5522 +2020-02-01,"Residential Consumption","Idaho","ID",4525 +2020-02-01,"Residential Consumption","Oklahoma","OK",11190 +2020-02-01,"Residential Consumption","Delaware","DE",1830 +2020-02-01,"Residential Consumption","North Carolina","NC",10739 +2020-02-01,"Residential Consumption","Iowa","IA",11010 +2020-02-01,"Residential Consumption","South Dakota","SD",2189 +2020-02-01,"Residential Consumption","Georgia","GA",19270 +2020-02-01,"Residential Consumption","Indiana","IN",23520 +2020-02-01,"Residential Consumption","Colorado","CO",20894 +2020-02-01,"Residential Consumption","Kansas","KS",10497 +2020-02-01,"Residential Consumption","Washington","WA",11192 +2020-02-01,"Residential Consumption","West Virginia","WV",4023 +2020-02-01,"Residential Consumption","North Dakota","ND",1869 +2020-02-01,"Residential Consumption","New Jersey","NJ",31518 +2020-02-01,"Residential Consumption","Wyoming","WY",2053 +2020-02-01,"Residential Consumption","Vermont","VT",639 +2020-02-01,"Residential Consumption","Maine","ME",478 +2020-02-01,"Residential Consumption","Montana","MT",3115 +2020-02-01,"Residential Consumption","Kentucky","KY",8473 +2020-02-01,"Residential Consumption","Missouri","MO",18491 +2020-02-01,"Residential Consumption","California","CA",52381 +2020-02-01,"Residential Consumption","Arizona","AZ",7001 +2020-02-01,"Residential Consumption","New York","NY",66783 +2020-02-01,"Residential Consumption","Oregon","OR",6260 +2020-02-01,"Residential Consumption","Louisiana","LA",4674 +2020-02-01,"Residential Consumption","Wisconsin","WI",22914 +2020-02-01,"Residential Consumption","Arkansas","AR",5236 +2020-02-01,"Residential Consumption","Alabama","AL",5304 +2020-02-01,"Residential Consumption","Rhode Island","RI",2834 +2020-02-01,"Residential Consumption","Ohio","OH",47366 +2020-02-01,"Residential Consumption","Mississippi","MS",3582 +2020-02-01,"Residential Consumption","Utah","UT",11484 +2020-02-01,"Residential Consumption","Michigan","MI",50650 +2020-02-01,"Residential Consumption","Maryland","MD",12199 +2020-02-01,"Residential Consumption","Nevada","NV",6749 +2020-02-01,"Residential Consumption","Pennsylvania","PA",36321 +2020-02-01,"Residential Consumption","Massachusetts","MA",18370 +2020-02-01,"Residential Consumption","Alaska","AK",2752 +2020-02-01,"Residential Consumption","Hawaii","HI",49 +2020-02-01,"Residential Consumption","District of Columbia","DC",1851 +2020-02-01,"Residential Consumption","Florida","FL",2094 +2020-02-01,"Residential Consumption","U.S.","U.S.",737150 +2020-02-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-02-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-02-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-02-01,"Vehicle Fuel Consumption","Vermont","VT",1 +2020-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-02-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-02-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2020-02-01,"Vehicle Fuel Consumption","Minnesota","MN",34 +2020-02-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2020-02-01,"Vehicle Fuel Consumption","Virginia","VA",50 +2020-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-02-01,"Vehicle Fuel Consumption","Kansas","KS",61 +2020-02-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",17 +2020-02-01,"Vehicle Fuel Consumption","Missouri","MO",14 +2020-02-01,"Vehicle Fuel Consumption","Maryland","MD",22 +2020-02-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-02-01,"Vehicle Fuel Consumption","Georgia","GA",126 +2020-02-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-02-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-02-01,"Vehicle Fuel Consumption","Utah","UT",22 +2020-02-01,"Vehicle Fuel Consumption","New York","NY",73 +2020-02-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2020-02-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-02-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-02-01,"Vehicle Fuel Consumption","California","CA",1853 +2020-02-01,"Vehicle Fuel Consumption","New Mexico","NM",30 +2020-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-02-01,"Vehicle Fuel Consumption","Tennessee","TN",30 +2020-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",130 +2020-02-01,"Vehicle Fuel Consumption","Florida","FL",415 +2020-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",37 +2020-02-01,"Vehicle Fuel Consumption","Nevada","NV",90 +2020-02-01,"Vehicle Fuel Consumption","Louisiana","LA",98 +2020-02-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-02-01,"Vehicle Fuel Consumption","North Carolina","NC",129 +2020-02-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2020-02-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2020-02-01,"Vehicle Fuel Consumption","Arizona","AZ",161 +2020-02-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2020-02-01,"Vehicle Fuel Consumption","Colorado","CO",75 +2020-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",3894 +2020-02-01,"Vehicle Fuel Consumption","Ohio","OH",90 +2020-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",126 +2020-02-01,"Vehicle Fuel Consumption","Texas","TX",88 +2020-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",22 +2020-03-01,"Commercial Consumption","Utah","UT",4678 +2020-03-01,"Commercial Consumption","New Mexico","NM",2813 +2020-03-01,"Commercial Consumption","Missouri","MO",6412 +2020-03-01,"Commercial Consumption","Kentucky","KY",3634 +2020-03-01,"Commercial Consumption","Florida","FL",5669 +2020-03-01,"Commercial Consumption","Vermont","VT",772 +2020-03-01,"Commercial Consumption","Nebraska","NE",3389 +2020-03-01,"Commercial Consumption","North Dakota","ND",1776 +2020-03-01,"Commercial Consumption","Oklahoma","OK",4287 +2020-03-01,"Commercial Consumption","New Hampshire","NH",1127 +2020-03-01,"Commercial Consumption","Montana","MT",2802 +2020-03-01,"Commercial Consumption","Texas","TX",16063 +2020-03-01,"Commercial Consumption","Georgia","GA",4623 +2020-03-01,"Commercial Consumption","Alabama","AL",1821 +2020-03-01,"Commercial Consumption","Colorado","CO",5536 +2020-03-01,"Commercial Consumption","Pennsylvania","PA",16368 +2020-03-01,"Commercial Consumption","Massachusetts","MA",11912 +2020-03-01,"Commercial Consumption","Tennessee","TN",4667 +2020-03-01,"Commercial Consumption","Michigan","MI",19745 +2020-03-01,"Commercial Consumption","Indiana","IN",8826 +2020-03-01,"Commercial Consumption","Wyoming","WY",1725 +2020-03-01,"Commercial Consumption","Minnesota","MN",11600 +2020-03-01,"Commercial Consumption","Oregon","OR",3613 +2020-03-01,"Commercial Consumption","Wisconsin","WI",10516 +2020-03-01,"Commercial Consumption","New Jersey","NJ",14467 +2020-03-01,"Commercial Consumption","Nevada","NV",3116 +2020-03-01,"Commercial Consumption","South Carolina","SC",2008 +2020-03-01,"Commercial Consumption","Idaho","ID",2035 +2020-03-01,"Commercial Consumption","Iowa","IA",5378 +2020-03-01,"Commercial Consumption","Alaska","AK",2045 +2020-03-01,"Commercial Consumption","Arkansas","AR",5488 +2020-03-01,"Commercial Consumption","Washington","WA",6660 +2020-03-01,"Commercial Consumption","Virginia","VA",5797 +2020-03-01,"Commercial Consumption","Maine","ME",1102 +2020-03-01,"Commercial Consumption","Rhode Island","RI",1317 +2020-03-01,"Commercial Consumption","Ohio","OH",18233 +2020-03-01,"Commercial Consumption","Hawaii","HI",191 +2020-03-01,"Commercial Consumption","Connecticut","CT",5655 +2020-03-01,"Commercial Consumption","New York","NY",30249 +2020-03-01,"Commercial Consumption","Mississippi","MS",1779 +2020-03-01,"Commercial Consumption","North Carolina","NC",4524 +2020-03-01,"Commercial Consumption","South Dakota","SD",1301 +2020-03-01,"Commercial Consumption","Maryland","MD",7242 +2020-03-01,"Commercial Consumption","California","CA",25755 +2020-03-01,"Commercial Consumption","Delaware","DE",1416 +2020-03-01,"Commercial Consumption","Louisiana","LA",2573 +2020-03-01,"Commercial Consumption","Illinois","IL",25111 +2020-03-01,"Commercial Consumption","District of Columbia","DC",1514 +2020-03-01,"Commercial Consumption","West Virginia","WV",2311 +2020-03-01,"Commercial Consumption","U.S.","U.S.",339067 +2020-03-01,"Commercial Consumption","Kansas","KS",4176 +2020-03-01,"Commercial Consumption","Arizona","AZ",3252 +2020-03-01,"Delivered to Consumers","Delaware","DE",6970 +2020-03-01,"Delivered to Consumers","North Carolina","NC",47015 +2020-03-01,"Delivered to Consumers","Mississippi","MS",41591 +2020-03-01,"Delivered to Consumers","Nevada","NV",25430 +2020-03-01,"Delivered to Consumers","U.S.","U.S.",2471374 +2020-03-01,"Delivered to Consumers","Indiana","IN",77021 +2020-03-01,"Delivered to Consumers","Tennessee","TN",32297 +2020-03-01,"Delivered to Consumers","Iowa","IA",35943 +2020-03-01,"Delivered to Consumers","Wisconsin","WI",56657 +2020-03-01,"Delivered to Consumers","Utah","UT",19470 +2020-03-01,"Delivered to Consumers","Hawaii","HI",251 +2020-03-01,"Delivered to Consumers","Idaho","ID",11751 +2020-03-01,"Delivered to Consumers","Alabama","AL",54129 +2020-03-01,"Delivered to Consumers","Massachusetts","MA",35380 +2020-03-01,"Delivered to Consumers","North Dakota","ND",7886 +2020-03-01,"Delivered to Consumers","Minnesota","MN",47627 +2020-03-01,"Delivered to Consumers","Oklahoma","OK",56261 +2020-03-01,"Delivered to Consumers","Pennsylvania","PA",124455 +2020-03-01,"Delivered to Consumers","Nebraska","NE",16015 +2020-03-01,"Delivered to Consumers","Missouri","MO",27757 +2020-03-01,"Delivered to Consumers","Texas","TX",314300 +2020-03-01,"Delivered to Consumers","New Jersey","NJ",59820 +2020-03-01,"Delivered to Consumers","Maine","ME",3722 +2020-03-01,"Delivered to Consumers","Florida","FL",129548 +2020-03-01,"Delivered to Consumers","New Mexico","NM",17205 +2020-03-01,"Delivered to Consumers","Rhode Island","RI",8292 +2020-03-01,"Delivered to Consumers","Montana","MT",7940 +2020-03-01,"Delivered to Consumers","Ohio","OH",111412 +2020-03-01,"Delivered to Consumers","Kentucky","KY",22730 +2020-03-01,"Delivered to Consumers","Arkansas","AR",29619 +2020-03-01,"Delivered to Consumers","Colorado","CO",38817 +2020-03-01,"Delivered to Consumers","South Carolina","SC",28408 +2020-03-01,"Delivered to Consumers","Vermont","VT",1421 +2020-03-01,"Delivered to Consumers","New York","NY",119396 +2020-03-01,"Delivered to Consumers","Oregon","OR",30223 +2020-03-01,"Delivered to Consumers","New Hampshire","NH",4235 +2020-03-01,"Delivered to Consumers","Wyoming","WY",8710 +2020-03-01,"Delivered to Consumers","West Virginia","WV",9288 +2020-03-01,"Delivered to Consumers","Alaska","AK",7145 +2020-03-01,"Delivered to Consumers","Connecticut","CT",25003 +2020-03-01,"Delivered to Consumers","Virginia","VA",61344 +2020-03-01,"Delivered to Consumers","Louisiana","LA",128382 +2020-03-01,"Delivered to Consumers","Arizona","AZ",30956 +2020-03-01,"Delivered to Consumers","District of Columbia","DC",2748 +2020-03-01,"Delivered to Consumers","Illinois","IL",117421 +2020-03-01,"Delivered to Consumers","South Dakota","SD",7928 +2020-03-01,"Delivered to Consumers","Maryland","MD",26033 +2020-03-01,"Delivered to Consumers","Kansas","KS",24034 +2020-03-01,"Delivered to Consumers","Michigan","MI",94742 +2020-03-01,"Delivered to Consumers","California","CA",182773 +2020-03-01,"Delivered to Consumers","Georgia","GA",56669 +2020-03-01,"Delivered to Consumers","Washington","WA",37207 +2020-03-01,"Electric Power Consumption","Texas","TX",124746 +2020-03-01,"Electric Power Consumption","Utah","UT",3974 +2020-03-01,"Electric Power Consumption","Illinois","IL",21580 +2020-03-01,"Electric Power Consumption","Iowa","IA",2017 +2020-03-01,"Electric Power Consumption","Kansas","KS",2569 +2020-03-01,"Electric Power Consumption","West Virginia","WV",1473 +2020-03-01,"Electric Power Consumption","Nevada","NV",15175 +2020-03-01,"Electric Power Consumption","Vermont","VT",1 +2020-03-01,"Electric Power Consumption","Missouri","MO",5254 +2020-03-01,"Electric Power Consumption","North Dakota","ND",1235 +2020-03-01,"Electric Power Consumption","Delaware","DE",1157 +2020-03-01,"Electric Power Consumption","Arizona","AZ",21062 +2020-03-01,"Electric Power Consumption","Rhode Island","RI",3986 +2020-03-01,"Electric Power Consumption","Massachusetts","MA",3634 +2020-03-01,"Electric Power Consumption","U.S.","U.S.",890784 +2020-03-01,"Electric Power Consumption","Mississippi","MS",26340 +2020-03-01,"Electric Power Consumption","Kentucky","KY",3937 +2020-03-01,"Electric Power Consumption","Ohio","OH",33757 +2020-03-01,"Electric Power Consumption","Louisiana","LA",28779 +2020-03-01,"Electric Power Consumption","New York","NY",27838 +2020-03-01,"Electric Power Consumption","South Dakota","SD",967 +2020-03-01,"Electric Power Consumption","New Mexico","NM",8077 +2020-03-01,"Electric Power Consumption","South Carolina","SC",15027 +2020-03-01,"Electric Power Consumption","Oregon","OR",15375 +2020-03-01,"Electric Power Consumption","Michigan","MI",23826 +2020-03-01,"Electric Power Consumption","Wisconsin","WI",14568 +2020-03-01,"Electric Power Consumption","Tennessee","TN",7900 +2020-03-01,"Electric Power Consumption","Hawaii","HI",NA +2020-03-01,"Electric Power Consumption","Maryland","MD",9046 +2020-03-01,"Electric Power Consumption","Connecticut","CT",11459 +2020-03-01,"Electric Power Consumption","California","CA",43888 +2020-03-01,"Electric Power Consumption","New Jersey","NJ",16144 +2020-03-01,"Electric Power Consumption","Wyoming","WY",446 +2020-03-01,"Electric Power Consumption","North Carolina","NC",26143 +2020-03-01,"Electric Power Consumption","Indiana","IN",18998 +2020-03-01,"Electric Power Consumption","Florida","FL",110875 +2020-03-01,"Electric Power Consumption","Alaska","AK",1937 +2020-03-01,"Electric Power Consumption","Washington","WA",11763 +2020-03-01,"Electric Power Consumption","Idaho","ID",2984 +2020-03-01,"Electric Power Consumption","Colorado","CO",12534 +2020-03-01,"Electric Power Consumption","Arkansas","AR",10986 +2020-03-01,"Electric Power Consumption","Oklahoma","OK",27069 +2020-03-01,"Electric Power Consumption","Minnesota","MN",7165 +2020-03-01,"Electric Power Consumption","Nebraska","NE",565 +2020-03-01,"Electric Power Consumption","Maine","ME",226 +2020-03-01,"Electric Power Consumption","New Hampshire","NH",1289 +2020-03-01,"Electric Power Consumption","Alabama","AL",32206 +2020-03-01,"Electric Power Consumption","Virginia","VA",38685 +2020-03-01,"Electric Power Consumption","Pennsylvania","PA",62427 +2020-03-01,"Electric Power Consumption","Montana","MT",301 +2020-03-01,"Electric Power Consumption","Georgia","GA",29393 +2020-03-01,"Industrial Consumption","Montana","MT",2126 +2020-03-01,"Industrial Consumption","Louisiana","LA",94003 +2020-03-01,"Industrial Consumption","U.S.","U.S.",710518 +2020-03-01,"Industrial Consumption","South Carolina","SC",8584 +2020-03-01,"Industrial Consumption","Kentucky","KY",10435 +2020-03-01,"Industrial Consumption","District of Columbia","DC",NA +2020-03-01,"Industrial Consumption","Alaska","AK",547 +2020-03-01,"Industrial Consumption","Maryland","MD",1408 +2020-03-01,"Industrial Consumption","South Dakota","SD",4104 +2020-03-01,"Industrial Consumption","Pennsylvania","PA",19943 +2020-03-01,"Industrial Consumption","Alabama","AL",17461 +2020-03-01,"Industrial Consumption","Nebraska","NE",7675 +2020-03-01,"Industrial Consumption","Wyoming","WY",4602 +2020-03-01,"Industrial Consumption","New Mexico","NM",1678 +2020-03-01,"Industrial Consumption","Utah","UT",3424 +2020-03-01,"Industrial Consumption","Maine","ME",2009 +2020-03-01,"Industrial Consumption","California","CA",58702 +2020-03-01,"Industrial Consumption","Indiana","IN",33485 +2020-03-01,"Industrial Consumption","North Dakota","ND",3412 +2020-03-01,"Industrial Consumption","Hawaii","HI",8 +2020-03-01,"Industrial Consumption","Ohio","OH",27187 +2020-03-01,"Industrial Consumption","Kansas","KS",10512 +2020-03-01,"Industrial Consumption","Arkansas","AR",9105 +2020-03-01,"Industrial Consumption","Vermont","VT",208 +2020-03-01,"Industrial Consumption","New Hampshire","NH",885 +2020-03-01,"Industrial Consumption","Minnesota","MN",13893 +2020-03-01,"Industrial Consumption","Florida","FL",10740 +2020-03-01,"Industrial Consumption","Georgia","GA",11846 +2020-03-01,"Industrial Consumption","Tennessee","TN",12940 +2020-03-01,"Industrial Consumption","Oklahoma","OK",18561 +2020-03-01,"Industrial Consumption","Colorado","CO",8088 +2020-03-01,"Industrial Consumption","New York","NY",8137 +2020-03-01,"Industrial Consumption","Texas","TX",154441 +2020-03-01,"Industrial Consumption","Iowa","IA",21509 +2020-03-01,"Industrial Consumption","Connecticut","CT",2143 +2020-03-01,"Industrial Consumption","Michigan","MI",15342 +2020-03-01,"Industrial Consumption","Missouri","MO",5587 +2020-03-01,"Industrial Consumption","Washington","WA",7063 +2020-03-01,"Industrial Consumption","Arizona","AZ",1722 +2020-03-01,"Industrial Consumption","Oregon","OR",5378 +2020-03-01,"Industrial Consumption","Nevada","NV",1676 +2020-03-01,"Industrial Consumption","West Virginia","WV",2819 +2020-03-01,"Industrial Consumption","Idaho","ID",3521 +2020-03-01,"Industrial Consumption","Rhode Island","RI",733 +2020-03-01,"Industrial Consumption","North Carolina","NC",10419 +2020-03-01,"Industrial Consumption","Massachusetts","MA",4692 +2020-03-01,"Industrial Consumption","Mississippi","MS",11401 +2020-03-01,"Industrial Consumption","Virginia","VA",9240 +2020-03-01,"Industrial Consumption","Wisconsin","WI",15038 +2020-03-01,"Industrial Consumption","New Jersey","NJ",4660 +2020-03-01,"Industrial Consumption","Illinois","IL",24327 +2020-03-01,"Industrial Consumption","Delaware","DE",3098 +2020-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",159754 +2020-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",90862 +2020-03-01,"Residential Consumption","Michigan","MI",35828 +2020-03-01,"Residential Consumption","Indiana","IN",15712 +2020-03-01,"Residential Consumption","Arkansas","AR",4033 +2020-03-01,"Residential Consumption","Kentucky","KY",4721 +2020-03-01,"Residential Consumption","Hawaii","HI",51 +2020-03-01,"Residential Consumption","Virginia","VA",7568 +2020-03-01,"Residential Consumption","District of Columbia","DC",1215 +2020-03-01,"Residential Consumption","Kansas","KS",6712 +2020-03-01,"Residential Consumption","South Carolina","SC",2780 +2020-03-01,"Residential Consumption","Mississippi","MS",2071 +2020-03-01,"Residential Consumption","Missouri","MO",10488 +2020-03-01,"Residential Consumption","California","CA",52447 +2020-03-01,"Residential Consumption","Rhode Island","RI",2249 +2020-03-01,"Residential Consumption","Louisiana","LA",2922 +2020-03-01,"Residential Consumption","Connecticut","CT",5728 +2020-03-01,"Residential Consumption","Vermont","VT",439 +2020-03-01,"Residential Consumption","Maine","ME",384 +2020-03-01,"Residential Consumption","Oregon","OR",5853 +2020-03-01,"Residential Consumption","North Carolina","NC",5791 +2020-03-01,"Residential Consumption","South Dakota","SD",1555 +2020-03-01,"Residential Consumption","Minnesota","MN",14933 +2020-03-01,"Residential Consumption","Georgia","GA",10671 +2020-03-01,"Residential Consumption","North Dakota","ND",1463 +2020-03-01,"Residential Consumption","Alabama","AL",2635 +2020-03-01,"Residential Consumption","Alaska","AK",2614 +2020-03-01,"Residential Consumption","West Virginia","WV",2684 +2020-03-01,"Residential Consumption","New York","NY",53093 +2020-03-01,"Residential Consumption","Ohio","OH",32139 +2020-03-01,"Residential Consumption","Tennessee","TN",6759 +2020-03-01,"Residential Consumption","Maryland","MD",8315 +2020-03-01,"Residential Consumption","New Mexico","NM",4605 +2020-03-01,"Residential Consumption","New Jersey","NJ",24526 +2020-03-01,"Residential Consumption","Colorado","CO",12580 +2020-03-01,"Residential Consumption","Delaware","DE",1300 +2020-03-01,"Residential Consumption","Arizona","AZ",4749 +2020-03-01,"Residential Consumption","U.S.","U.S.",526843 +2020-03-01,"Residential Consumption","Wisconsin","WI",16496 +2020-03-01,"Residential Consumption","Nevada","NV",5367 +2020-03-01,"Residential Consumption","Pennsylvania","PA",25582 +2020-03-01,"Residential Consumption","Florida","FL",1820 +2020-03-01,"Residential Consumption","Massachusetts","MA",15135 +2020-03-01,"Residential Consumption","Idaho","ID",3206 +2020-03-01,"Residential Consumption","Washington","WA",11711 +2020-03-01,"Residential Consumption","Wyoming","WY",1937 +2020-03-01,"Residential Consumption","Illinois","IL",46395 +2020-03-01,"Residential Consumption","Texas","TX",18955 +2020-03-01,"Residential Consumption","Iowa","IA",7036 +2020-03-01,"Residential Consumption","Utah","UT",7370 +2020-03-01,"Residential Consumption","Nebraska","NE",4372 +2020-03-01,"Residential Consumption","New Hampshire","NH",932 +2020-03-01,"Residential Consumption","Montana","MT",2711 +2020-03-01,"Residential Consumption","Oklahoma","OK",6205 +2020-03-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-03-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2020-03-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2020-03-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-03-01,"Vehicle Fuel Consumption","Utah","UT",23 +2020-03-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2020-03-01,"Vehicle Fuel Consumption","Kansas","KS",65 +2020-03-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-03-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",4162 +2020-03-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-03-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2020-03-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2020-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-03-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2020-03-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-03-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-03-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",135 +2020-03-01,"Vehicle Fuel Consumption","Nevada","NV",96 +2020-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",19 +2020-03-01,"Vehicle Fuel Consumption","Florida","FL",443 +2020-03-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-03-01,"Vehicle Fuel Consumption","Georgia","GA",134 +2020-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-03-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-03-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-03-01,"Vehicle Fuel Consumption","Virginia","VA",53 +2020-03-01,"Vehicle Fuel Consumption","New York","NY",78 +2020-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",139 +2020-03-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-03-01,"Vehicle Fuel Consumption","North Carolina","NC",138 +2020-03-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-03-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-03-01,"Vehicle Fuel Consumption","Louisiana","LA",104 +2020-03-01,"Vehicle Fuel Consumption","Colorado","CO",80 +2020-03-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2020-03-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2020-03-01,"Vehicle Fuel Consumption","California","CA",1981 +2020-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-03-01,"Vehicle Fuel Consumption","Ohio","OH",97 +2020-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2020-03-01,"Vehicle Fuel Consumption","Texas","TX",94 +2020-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-03-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2020-03-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-03-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2020-04-01,"Commercial Consumption","Wyoming","WY",1640 +2020-04-01,"Commercial Consumption","South Carolina","SC",1474 +2020-04-01,"Commercial Consumption","Hawaii","HI",117 +2020-04-01,"Commercial Consumption","Alaska","AK",1275 +2020-04-01,"Commercial Consumption","Nevada","NV",1659 +2020-04-01,"Commercial Consumption","Michigan","MI",13332 +2020-04-01,"Commercial Consumption","Washington","WA",3974 +2020-04-01,"Commercial Consumption","Massachusetts","MA",9775 +2020-04-01,"Commercial Consumption","U.S.","U.S.",238092 +2020-04-01,"Commercial Consumption","Georgia","GA",3257 +2020-04-01,"Commercial Consumption","Illinois","IL",17495 +2020-04-01,"Commercial Consumption","West Virginia","WV",1588 +2020-04-01,"Commercial Consumption","South Dakota","SD",1032 +2020-04-01,"Commercial Consumption","Maryland","MD",5356 +2020-04-01,"Commercial Consumption","Kansas","KS",2987 +2020-04-01,"Commercial Consumption","Alabama","AL",1425 +2020-04-01,"Commercial Consumption","New Jersey","NJ",11193 +2020-04-01,"Commercial Consumption","Maine","ME",799 +2020-04-01,"Commercial Consumption","Vermont","VT",533 +2020-04-01,"Commercial Consumption","Arkansas","AR",3605 +2020-04-01,"Commercial Consumption","Mississippi","MS",1247 +2020-04-01,"Commercial Consumption","Delaware","DE",1155 +2020-04-01,"Commercial Consumption","Louisiana","LA",2154 +2020-04-01,"Commercial Consumption","North Carolina","NC",3071 +2020-04-01,"Commercial Consumption","New Hampshire","NH",792 +2020-04-01,"Commercial Consumption","California","CA",15085 +2020-04-01,"Commercial Consumption","New York","NY",24545 +2020-04-01,"Commercial Consumption","Tennessee","TN",3385 +2020-04-01,"Commercial Consumption","Virginia","VA",5087 +2020-04-01,"Commercial Consumption","Kentucky","KY",2282 +2020-04-01,"Commercial Consumption","Florida","FL",3936 +2020-04-01,"Commercial Consumption","Iowa","IA",3579 +2020-04-01,"Commercial Consumption","Nebraska","NE",2213 +2020-04-01,"Commercial Consumption","District of Columbia","DC",1137 +2020-04-01,"Commercial Consumption","North Dakota","ND",1220 +2020-04-01,"Commercial Consumption","Minnesota","MN",7000 +2020-04-01,"Commercial Consumption","Colorado","CO",4649 +2020-04-01,"Commercial Consumption","Utah","UT",2505 +2020-04-01,"Commercial Consumption","New Mexico","NM",1280 +2020-04-01,"Commercial Consumption","Oklahoma","OK",2776 +2020-04-01,"Commercial Consumption","Pennsylvania","PA",11740 +2020-04-01,"Commercial Consumption","Montana","MT",2080 +2020-04-01,"Commercial Consumption","Rhode Island","RI",1062 +2020-04-01,"Commercial Consumption","Ohio","OH",13186 +2020-04-01,"Commercial Consumption","Idaho","ID",1246 +2020-04-01,"Commercial Consumption","Connecticut","CT",4312 +2020-04-01,"Commercial Consumption","Oregon","OR",1910 +2020-04-01,"Commercial Consumption","Missouri","MO",4047 +2020-04-01,"Commercial Consumption","Wisconsin","WI",7192 +2020-04-01,"Commercial Consumption","Texas","TX",12388 +2020-04-01,"Commercial Consumption","Arizona","AZ",2124 +2020-04-01,"Commercial Consumption","Indiana","IN",5193 +2020-04-01,"Delivered to Consumers","Delaware","DE",7290 +2020-04-01,"Delivered to Consumers","Kansas","KS",19463 +2020-04-01,"Delivered to Consumers","Maine","ME",3499 +2020-04-01,"Delivered to Consumers","New Mexico","NM",12437 +2020-04-01,"Delivered to Consumers","West Virginia","WV",7458 +2020-04-01,"Delivered to Consumers","Vermont","VT",1109 +2020-04-01,"Delivered to Consumers","Michigan","MI",71712 +2020-04-01,"Delivered to Consumers","Iowa","IA",28401 +2020-04-01,"Delivered to Consumers","Wisconsin","WI",43721 +2020-04-01,"Delivered to Consumers","South Carolina","SC",25048 +2020-04-01,"Delivered to Consumers","Nevada","NV",20405 +2020-04-01,"Delivered to Consumers","District of Columbia","DC",2081 +2020-04-01,"Delivered to Consumers","Hawaii","HI",180 +2020-04-01,"Delivered to Consumers","Oklahoma","OK",46090 +2020-04-01,"Delivered to Consumers","Kentucky","KY",20934 +2020-04-01,"Delivered to Consumers","Arkansas","AR",21598 +2020-04-01,"Delivered to Consumers","Missouri","MO",19047 +2020-04-01,"Delivered to Consumers","Colorado","CO",34595 +2020-04-01,"Delivered to Consumers","Texas","TX",279213 +2020-04-01,"Delivered to Consumers","Idaho","ID",7865 +2020-04-01,"Delivered to Consumers","New Hampshire","NH",4017 +2020-04-01,"Delivered to Consumers","Minnesota","MN",34388 +2020-04-01,"Delivered to Consumers","Florida","FL",123870 +2020-04-01,"Delivered to Consumers","Utah","UT",14887 +2020-04-01,"Delivered to Consumers","Indiana","IN",60480 +2020-04-01,"Delivered to Consumers","Wyoming","WY",7865 +2020-04-01,"Delivered to Consumers","Maryland","MD",20022 +2020-04-01,"Delivered to Consumers","Alabama","AL",41041 +2020-04-01,"Delivered to Consumers","Pennsylvania","PA",97751 +2020-04-01,"Delivered to Consumers","Massachusetts","MA",30669 +2020-04-01,"Delivered to Consumers","Oregon","OR",22279 +2020-04-01,"Delivered to Consumers","Rhode Island","RI",7935 +2020-04-01,"Delivered to Consumers","New York","NY",93808 +2020-04-01,"Delivered to Consumers","Montana","MT",6063 +2020-04-01,"Delivered to Consumers","Alaska","AK",5005 +2020-04-01,"Delivered to Consumers","Mississippi","MS",41328 +2020-04-01,"Delivered to Consumers","California","CA",136500 +2020-04-01,"Delivered to Consumers","New Jersey","NJ",51053 +2020-04-01,"Delivered to Consumers","Washington","WA",26833 +2020-04-01,"Delivered to Consumers","North Dakota","ND",6460 +2020-04-01,"Delivered to Consumers","South Dakota","SD",6377 +2020-04-01,"Delivered to Consumers","Ohio","OH",89159 +2020-04-01,"Delivered to Consumers","Connecticut","CT",22870 +2020-04-01,"Delivered to Consumers","Nebraska","NE",12019 +2020-04-01,"Delivered to Consumers","Louisiana","LA",120919 +2020-04-01,"Delivered to Consumers","Georgia","GA",50255 +2020-04-01,"Delivered to Consumers","Arizona","AZ",32263 +2020-04-01,"Delivered to Consumers","U.S.","U.S.",2031617 +2020-04-01,"Delivered to Consumers","Illinois","IL",86280 +2020-04-01,"Delivered to Consumers","Tennessee","TN",25174 +2020-04-01,"Delivered to Consumers","Virginia","VA",51478 +2020-04-01,"Delivered to Consumers","North Carolina","NC",30424 +2020-04-01,"Electric Power Consumption","Virginia","VA",34813 +2020-04-01,"Electric Power Consumption","Colorado","CO",10772 +2020-04-01,"Electric Power Consumption","Texas","TX",114512 +2020-04-01,"Electric Power Consumption","Rhode Island","RI",4268 +2020-04-01,"Electric Power Consumption","Utah","UT",2910 +2020-04-01,"Electric Power Consumption","Michigan","MI",20393 +2020-04-01,"Electric Power Consumption","Kansas","KS",1517 +2020-04-01,"Electric Power Consumption","Nebraska","NE",487 +2020-04-01,"Electric Power Consumption","Mississippi","MS",28358 +2020-04-01,"Electric Power Consumption","California","CA",30233 +2020-04-01,"Electric Power Consumption","Minnesota","MN",6391 +2020-04-01,"Electric Power Consumption","Pennsylvania","PA",48487 +2020-04-01,"Electric Power Consumption","Wyoming","WY",268 +2020-04-01,"Electric Power Consumption","Kentucky","KY",6554 +2020-04-01,"Electric Power Consumption","Ohio","OH",28906 +2020-04-01,"Electric Power Consumption","New Hampshire","NH",1741 +2020-04-01,"Electric Power Consumption","Montana","MT",229 +2020-04-01,"Electric Power Consumption","Connecticut","CT",11774 +2020-04-01,"Electric Power Consumption","Alabama","AL",21932 +2020-04-01,"Electric Power Consumption","South Carolina","SC",14884 +2020-04-01,"Electric Power Consumption","Oregon","OR",12426 +2020-04-01,"Electric Power Consumption","Nevada","NV",13530 +2020-04-01,"Electric Power Consumption","U.S.","U.S.",777804 +2020-04-01,"Electric Power Consumption","Delaware","DE",2162 +2020-04-01,"Electric Power Consumption","Arizona","AZ",25226 +2020-04-01,"Electric Power Consumption","Massachusetts","MA",4270 +2020-04-01,"Electric Power Consumption","Hawaii","HI",NA +2020-04-01,"Electric Power Consumption","Maryland","MD",7548 +2020-04-01,"Electric Power Consumption","Georgia","GA",27440 +2020-04-01,"Electric Power Consumption","Washington","WA",10487 +2020-04-01,"Electric Power Consumption","New Jersey","NJ",14625 +2020-04-01,"Electric Power Consumption","Louisiana","LA",27116 +2020-04-01,"Electric Power Consumption","Tennessee","TN",5798 +2020-04-01,"Electric Power Consumption","North Carolina","NC",14793 +2020-04-01,"Electric Power Consumption","Missouri","MO",4062 +2020-04-01,"Electric Power Consumption","Indiana","IN",17217 +2020-04-01,"Electric Power Consumption","Idaho","ID",1609 +2020-04-01,"Electric Power Consumption","Arkansas","AR",7950 +2020-04-01,"Electric Power Consumption","New York","NY",21071 +2020-04-01,"Electric Power Consumption","Illinois","IL",15928 +2020-04-01,"Electric Power Consumption","West Virginia","WV",1542 +2020-04-01,"Electric Power Consumption","Wisconsin","WI",12243 +2020-04-01,"Electric Power Consumption","Iowa","IA",2129 +2020-04-01,"Electric Power Consumption","Vermont","VT",1 +2020-04-01,"Electric Power Consumption","South Dakota","SD",644 +2020-04-01,"Electric Power Consumption","Florida","FL",107515 +2020-04-01,"Electric Power Consumption","Alaska","AK",1641 +2020-04-01,"Electric Power Consumption","New Mexico","NM",7261 +2020-04-01,"Electric Power Consumption","Oklahoma","OK",20437 +2020-04-01,"Electric Power Consumption","Maine","ME",515 +2020-04-01,"Electric Power Consumption","North Dakota","ND",1192 +2020-04-01,"Industrial Consumption","Maryland","MD",1145 +2020-04-01,"Industrial Consumption","Louisiana","LA",89588 +2020-04-01,"Industrial Consumption","California","CA",52238 +2020-04-01,"Industrial Consumption","South Carolina","SC",7225 +2020-04-01,"Industrial Consumption","Virginia","VA",6417 +2020-04-01,"Industrial Consumption","New Hampshire","NH",788 +2020-04-01,"Industrial Consumption","Connecticut","CT",1987 +2020-04-01,"Industrial Consumption","Michigan","MI",11787 +2020-04-01,"Industrial Consumption","Kentucky","KY",8868 +2020-04-01,"Industrial Consumption","Arizona","AZ",1588 +2020-04-01,"Industrial Consumption","U.S.","U.S.",633625 +2020-04-01,"Industrial Consumption","Alabama","AL",16018 +2020-04-01,"Industrial Consumption","Wisconsin","WI",11887 +2020-04-01,"Industrial Consumption","Oregon","OR",4652 +2020-04-01,"Industrial Consumption","New York","NY",7015 +2020-04-01,"Industrial Consumption","Minnesota","MN",11376 +2020-04-01,"Industrial Consumption","Iowa","IA",17836 +2020-04-01,"Industrial Consumption","Indiana","IN",28179 +2020-04-01,"Industrial Consumption","Rhode Island","RI",734 +2020-04-01,"Industrial Consumption","Georgia","GA",12014 +2020-04-01,"Industrial Consumption","District of Columbia","DC",NA +2020-04-01,"Industrial Consumption","Alaska","AK",510 +2020-04-01,"Industrial Consumption","Washington","WA",5720 +2020-04-01,"Industrial Consumption","Nevada","NV",1533 +2020-04-01,"Industrial Consumption","Arkansas","AR",8204 +2020-04-01,"Industrial Consumption","Nebraska","NE",6563 +2020-04-01,"Industrial Consumption","West Virginia","WV",2379 +2020-04-01,"Industrial Consumption","Vermont","VT",188 +2020-04-01,"Industrial Consumption","New Jersey","NJ",4323 +2020-04-01,"Industrial Consumption","Montana","MT",2005 +2020-04-01,"Industrial Consumption","Massachusetts","MA",4222 +2020-04-01,"Industrial Consumption","Mississippi","MS",10594 +2020-04-01,"Industrial Consumption","Maine","ME",1892 +2020-04-01,"Industrial Consumption","Wyoming","WY",4180 +2020-04-01,"Industrial Consumption","Delaware","DE",2991 +2020-04-01,"Industrial Consumption","North Dakota","ND",3006 +2020-04-01,"Industrial Consumption","Hawaii","HI",6 +2020-04-01,"Industrial Consumption","Missouri","MO",4643 +2020-04-01,"Industrial Consumption","Colorado","CO",6885 +2020-04-01,"Industrial Consumption","Florida","FL",10545 +2020-04-01,"Industrial Consumption","Illinois","IL",19487 +2020-04-01,"Industrial Consumption","Oklahoma","OK",18362 +2020-04-01,"Industrial Consumption","South Dakota","SD",3450 +2020-04-01,"Industrial Consumption","Kansas","KS",10466 +2020-04-01,"Industrial Consumption","Texas","TX",141551 +2020-04-01,"Industrial Consumption","Tennessee","TN",11636 +2020-04-01,"Industrial Consumption","Ohio","OH",23562 +2020-04-01,"Industrial Consumption","New Mexico","NM",1495 +2020-04-01,"Industrial Consumption","Utah","UT",3164 +2020-04-01,"Industrial Consumption","Pennsylvania","PA",16941 +2020-04-01,"Industrial Consumption","Idaho","ID",2876 +2020-04-01,"Industrial Consumption","North Carolina","NC",8902 +2020-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",150538 +2020-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",74694 +2020-04-01,"Residential Consumption","Texas","TX",10671 +2020-04-01,"Residential Consumption","Maryland","MD",5951 +2020-04-01,"Residential Consumption","South Dakota","SD",1252 +2020-04-01,"Residential Consumption","Kentucky","KY",3229 +2020-04-01,"Residential Consumption","Washington","WA",6642 +2020-04-01,"Residential Consumption","Oklahoma","OK",4380 +2020-04-01,"Residential Consumption","Oregon","OR",3287 +2020-04-01,"Residential Consumption","Virginia","VA",5110 +2020-04-01,"Residential Consumption","Pennsylvania","PA",20452 +2020-04-01,"Residential Consumption","North Dakota","ND",1043 +2020-04-01,"Residential Consumption","Massachusetts","MA",12394 +2020-04-01,"Residential Consumption","New Jersey","NJ",20889 +2020-04-01,"Residential Consumption","Kansas","KS",4430 +2020-04-01,"Residential Consumption","Ohio","OH",23412 +2020-04-01,"Residential Consumption","Hawaii","HI",57 +2020-04-01,"Residential Consumption","Wisconsin","WI",12361 +2020-04-01,"Residential Consumption","Florida","FL",1445 +2020-04-01,"Residential Consumption","New Hampshire","NH",694 +2020-04-01,"Residential Consumption","Alaska","AK",1579 +2020-04-01,"Residential Consumption","Utah","UT",6285 +2020-04-01,"Residential Consumption","Michigan","MI",26201 +2020-04-01,"Residential Consumption","Minnesota","MN",9586 +2020-04-01,"Residential Consumption","Indiana","IN",9891 +2020-04-01,"Residential Consumption","Montana","MT",1749 +2020-04-01,"Residential Consumption","Rhode Island","RI",1863 +2020-04-01,"Residential Consumption","Mississippi","MS",1128 +2020-04-01,"Residential Consumption","Iowa","IA",4855 +2020-04-01,"Residential Consumption","Vermont","VT",385 +2020-04-01,"Residential Consumption","Nevada","NV",3590 +2020-04-01,"Residential Consumption","Maine","ME",293 +2020-04-01,"Residential Consumption","Colorado","CO",12212 +2020-04-01,"Residential Consumption","Delaware","DE",980 +2020-04-01,"Residential Consumption","California","CA",37026 +2020-04-01,"Residential Consumption","Arizona","AZ",3158 +2020-04-01,"Residential Consumption","South Carolina","SC",1456 +2020-04-01,"Residential Consumption","North Carolina","NC",3524 +2020-04-01,"Residential Consumption","Tennessee","TN",4325 +2020-04-01,"Residential Consumption","District of Columbia","DC",925 +2020-04-01,"Residential Consumption","Missouri","MO",6281 +2020-04-01,"Residential Consumption","Alabama","AL",1660 +2020-04-01,"Residential Consumption","U.S.","U.S.",378068 +2020-04-01,"Residential Consumption","Idaho","ID",2130 +2020-04-01,"Residential Consumption","Wyoming","WY",1776 +2020-04-01,"Residential Consumption","West Virginia","WV",1948 +2020-04-01,"Residential Consumption","Illinois","IL",33362 +2020-04-01,"Residential Consumption","Louisiana","LA",1961 +2020-04-01,"Residential Consumption","Connecticut","CT",4781 +2020-04-01,"Residential Consumption","Nebraska","NE",2742 +2020-04-01,"Residential Consumption","Georgia","GA",7414 +2020-04-01,"Residential Consumption","New Mexico","NM",2370 +2020-04-01,"Residential Consumption","Arkansas","AR",1833 +2020-04-01,"Residential Consumption","New York","NY",41101 +2020-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-04-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-04-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-04-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2020-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-04-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2020-04-01,"Vehicle Fuel Consumption","Georgia","GA",130 +2020-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",135 +2020-04-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-04-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2020-04-01,"Vehicle Fuel Consumption","California","CA",1917 +2020-04-01,"Vehicle Fuel Consumption","Vermont","VT",1 +2020-04-01,"Vehicle Fuel Consumption","Virginia","VA",51 +2020-04-01,"Vehicle Fuel Consumption","Nevada","NV",93 +2020-04-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-04-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-04-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-04-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2020-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",131 +2020-04-01,"Vehicle Fuel Consumption","Kansas","KS",63 +2020-04-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-04-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-04-01,"Vehicle Fuel Consumption","New Mexico","NM",31 +2020-04-01,"Vehicle Fuel Consumption","Florida","FL",429 +2020-04-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-04-01,"Vehicle Fuel Consumption","Texas","TX",91 +2020-04-01,"Vehicle Fuel Consumption","Maryland","MD",22 +2020-04-01,"Vehicle Fuel Consumption","Louisiana","LA",101 +2020-04-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-04-01,"Vehicle Fuel Consumption","Colorado","CO",77 +2020-04-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2020-04-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-04-01,"Vehicle Fuel Consumption","Minnesota","MN",35 +2020-04-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-04-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2020-04-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2020-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-04-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-04-01,"Vehicle Fuel Consumption","New York","NY",76 +2020-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2020-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",18 +2020-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",4028 +2020-04-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-04-01,"Vehicle Fuel Consumption","Utah","UT",22 +2020-04-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2020-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-04-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-05-01,"Commercial Consumption","Utah","UT",2088 +2020-05-01,"Commercial Consumption","Pennsylvania","PA",7117 +2020-05-01,"Commercial Consumption","U.S.","U.S.",162658 +2020-05-01,"Commercial Consumption","Texas","TX",9685 +2020-05-01,"Commercial Consumption","Idaho","ID",887 +2020-05-01,"Commercial Consumption","Arkansas","AR",3131 +2020-05-01,"Commercial Consumption","Alabama","AL",1065 +2020-05-01,"Commercial Consumption","Illinois","IL",11290 +2020-05-01,"Commercial Consumption","Washington","WA",2858 +2020-05-01,"Commercial Consumption","Colorado","CO",2467 +2020-05-01,"Commercial Consumption","Kentucky","KY",1415 +2020-05-01,"Commercial Consumption","Vermont","VT",340 +2020-05-01,"Commercial Consumption","Ohio","OH",7931 +2020-05-01,"Commercial Consumption","Louisiana","LA",1716 +2020-05-01,"Commercial Consumption","West Virginia","WV",1075 +2020-05-01,"Commercial Consumption","Georgia","GA",2664 +2020-05-01,"Commercial Consumption","Iowa","IA",2182 +2020-05-01,"Commercial Consumption","Mississippi","MS",924 +2020-05-01,"Commercial Consumption","North Carolina","NC",2421 +2020-05-01,"Commercial Consumption","Virginia","VA",3881 +2020-05-01,"Commercial Consumption","Missouri","MO",2742 +2020-05-01,"Commercial Consumption","Massachusetts","MA",5410 +2020-05-01,"Commercial Consumption","Maryland","MD",4132 +2020-05-01,"Commercial Consumption","Kansas","KS",1919 +2020-05-01,"Commercial Consumption","Hawaii","HI",104 +2020-05-01,"Commercial Consumption","Delaware","DE",800 +2020-05-01,"Commercial Consumption","North Dakota","ND",632 +2020-05-01,"Commercial Consumption","Montana","MT",1734 +2020-05-01,"Commercial Consumption","Alaska","AK",786 +2020-05-01,"Commercial Consumption","Nevada","NV",1106 +2020-05-01,"Commercial Consumption","Indiana","IN",3424 +2020-05-01,"Commercial Consumption","District of Columbia","DC",706 +2020-05-01,"Commercial Consumption","South Carolina","SC",1335 +2020-05-01,"Commercial Consumption","South Dakota","SD",532 +2020-05-01,"Commercial Consumption","New Jersey","NJ",6427 +2020-05-01,"Commercial Consumption","New Hampshire","NH",391 +2020-05-01,"Commercial Consumption","Maine","ME",483 +2020-05-01,"Commercial Consumption","Connecticut","CT",2872 +2020-05-01,"Commercial Consumption","Arizona","AZ",1642 +2020-05-01,"Commercial Consumption","Michigan","MI",7887 +2020-05-01,"Commercial Consumption","New Mexico","NM",865 +2020-05-01,"Commercial Consumption","Oklahoma","OK",1897 +2020-05-01,"Commercial Consumption","Wisconsin","WI",4479 +2020-05-01,"Commercial Consumption","Florida","FL",3590 +2020-05-01,"Commercial Consumption","Rhode Island","RI",481 +2020-05-01,"Commercial Consumption","Wyoming","WY",660 +2020-05-01,"Commercial Consumption","Minnesota","MN",4703 +2020-05-01,"Commercial Consumption","Oregon","OR",1328 +2020-05-01,"Commercial Consumption","California","CA",13972 +2020-05-01,"Commercial Consumption","New York","NY",16595 +2020-05-01,"Commercial Consumption","Nebraska","NE",1537 +2020-05-01,"Commercial Consumption","Tennessee","TN",2351 +2020-05-01,"Delivered to Consumers","West Virginia","WV",6931 +2020-05-01,"Delivered to Consumers","South Dakota","SD",4327 +2020-05-01,"Delivered to Consumers","Mississippi","MS",47085 +2020-05-01,"Delivered to Consumers","California","CA",125295 +2020-05-01,"Delivered to Consumers","Maine","ME",3361 +2020-05-01,"Delivered to Consumers","New Hampshire","NH",2613 +2020-05-01,"Delivered to Consumers","Utah","UT",12410 +2020-05-01,"Delivered to Consumers","Delaware","DE",5928 +2020-05-01,"Delivered to Consumers","Wyoming","WY",6059 +2020-05-01,"Delivered to Consumers","New York","NY",72658 +2020-05-01,"Delivered to Consumers","Idaho","ID",5178 +2020-05-01,"Delivered to Consumers","Nebraska","NE",9557 +2020-05-01,"Delivered to Consumers","Colorado","CO",22617 +2020-05-01,"Delivered to Consumers","Georgia","GA",56719 +2020-05-01,"Delivered to Consumers","Arizona","AZ",37849 +2020-05-01,"Delivered to Consumers","Washington","WA",14259 +2020-05-01,"Delivered to Consumers","U.S.","U.S.",1857567 +2020-05-01,"Delivered to Consumers","Illinois","IL",63851 +2020-05-01,"Delivered to Consumers","Hawaii","HI",160 +2020-05-01,"Delivered to Consumers","Oklahoma","OK",49523 +2020-05-01,"Delivered to Consumers","Connecticut","CT",17538 +2020-05-01,"Delivered to Consumers","New Jersey","NJ",35486 +2020-05-01,"Delivered to Consumers","Louisiana","LA",126132 +2020-05-01,"Delivered to Consumers","Indiana","IN",55697 +2020-05-01,"Delivered to Consumers","Vermont","VT",771 +2020-05-01,"Delivered to Consumers","Ohio","OH",70798 +2020-05-01,"Delivered to Consumers","Michigan","MI",54059 +2020-05-01,"Delivered to Consumers","Iowa","IA",26505 +2020-05-01,"Delivered to Consumers","Arkansas","AR",21930 +2020-05-01,"Delivered to Consumers","Missouri","MO",14277 +2020-05-01,"Delivered to Consumers","Oregon","OR",9702 +2020-05-01,"Delivered to Consumers","Florida","FL",125361 +2020-05-01,"Delivered to Consumers","New Mexico","NM",10690 +2020-05-01,"Delivered to Consumers","Rhode Island","RI",6206 +2020-05-01,"Delivered to Consumers","Alaska","AK",3943 +2020-05-01,"Delivered to Consumers","Tennessee","TN",22363 +2020-05-01,"Delivered to Consumers","Massachusetts","MA",17885 +2020-05-01,"Delivered to Consumers","South Carolina","SC",25732 +2020-05-01,"Delivered to Consumers","Kansas","KS",15340 +2020-05-01,"Delivered to Consumers","Kentucky","KY",20892 +2020-05-01,"Delivered to Consumers","Alabama","AL",48921 +2020-05-01,"Delivered to Consumers","Texas","TX",300318 +2020-05-01,"Delivered to Consumers","North Dakota","ND",4618 +2020-05-01,"Delivered to Consumers","Pennsylvania","PA",88490 +2020-05-01,"Delivered to Consumers","North Carolina","NC",35225 +2020-05-01,"Delivered to Consumers","Nevada","NV",19886 +2020-05-01,"Delivered to Consumers","Minnesota","MN",25090 +2020-05-01,"Delivered to Consumers","Montana","MT",5118 +2020-05-01,"Delivered to Consumers","Maryland","MD",14840 +2020-05-01,"Delivered to Consumers","Wisconsin","WI",33910 +2020-05-01,"Delivered to Consumers","Virginia","VA",52141 +2020-05-01,"Delivered to Consumers","District of Columbia","DC",1324 +2020-05-01,"Electric Power Consumption","New Mexico","NM",7253 +2020-05-01,"Electric Power Consumption","New Jersey","NJ",12570 +2020-05-01,"Electric Power Consumption","Tennessee","TN",6341 +2020-05-01,"Electric Power Consumption","Hawaii","HI",NA +2020-05-01,"Electric Power Consumption","Montana","MT",239 +2020-05-01,"Electric Power Consumption","Connecticut","CT",10414 +2020-05-01,"Electric Power Consumption","Alabama","AL",30958 +2020-05-01,"Electric Power Consumption","Colorado","CO",9020 +2020-05-01,"Electric Power Consumption","Pennsylvania","PA",52712 +2020-05-01,"Electric Power Consumption","Mississippi","MS",35379 +2020-05-01,"Electric Power Consumption","Virginia","VA",36252 +2020-05-01,"Electric Power Consumption","Louisiana","LA",29743 +2020-05-01,"Electric Power Consumption","Arkansas","AR",9555 +2020-05-01,"Electric Power Consumption","Kansas","KS",938 +2020-05-01,"Electric Power Consumption","Iowa","IA",3552 +2020-05-01,"Electric Power Consumption","Vermont","VT",2 +2020-05-01,"Electric Power Consumption","North Dakota","ND",967 +2020-05-01,"Electric Power Consumption","Rhode Island","RI",4134 +2020-05-01,"Electric Power Consumption","Minnesota","MN",5034 +2020-05-01,"Electric Power Consumption","West Virginia","WV",2206 +2020-05-01,"Electric Power Consumption","Ohio","OH",27529 +2020-05-01,"Electric Power Consumption","Maryland","MD",5660 +2020-05-01,"Electric Power Consumption","Arizona","AZ",32625 +2020-05-01,"Electric Power Consumption","Texas","TX",138805 +2020-05-01,"Electric Power Consumption","Oklahoma","OK",27312 +2020-05-01,"Electric Power Consumption","Massachusetts","MA",3087 +2020-05-01,"Electric Power Consumption","South Dakota","SD",516 +2020-05-01,"Electric Power Consumption","Nebraska","NE",504 +2020-05-01,"Electric Power Consumption","Maine","ME",730 +2020-05-01,"Electric Power Consumption","Indiana","IN",18370 +2020-05-01,"Electric Power Consumption","Utah","UT",4011 +2020-05-01,"Electric Power Consumption","Wisconsin","WI",12364 +2020-05-01,"Electric Power Consumption","Wyoming","WY",158 +2020-05-01,"Electric Power Consumption","U.S.","U.S.",837108 +2020-05-01,"Electric Power Consumption","North Carolina","NC",21294 +2020-05-01,"Electric Power Consumption","Washington","WA",1866 +2020-05-01,"Electric Power Consumption","South Carolina","SC",15829 +2020-05-01,"Electric Power Consumption","New York","NY",23837 +2020-05-01,"Electric Power Consumption","Oregon","OR",1887 +2020-05-01,"Electric Power Consumption","Illinois","IL",14155 +2020-05-01,"Electric Power Consumption","Michigan","MI",22018 +2020-05-01,"Electric Power Consumption","Nevada","NV",14827 +2020-05-01,"Electric Power Consumption","Kentucky","KY",9286 +2020-05-01,"Electric Power Consumption","Georgia","GA",36320 +2020-05-01,"Electric Power Consumption","California","CA",28749 +2020-05-01,"Electric Power Consumption","Alaska","AK",1708 +2020-05-01,"Electric Power Consumption","Idaho","ID",506 +2020-05-01,"Electric Power Consumption","Missouri","MO",3404 +2020-05-01,"Electric Power Consumption","New Hampshire","NH",1149 +2020-05-01,"Electric Power Consumption","Delaware","DE",1924 +2020-05-01,"Electric Power Consumption","Florida","FL",109405 +2020-05-01,"Industrial Consumption","Colorado","CO",5763 +2020-05-01,"Industrial Consumption","Washington","WA",5541 +2020-05-01,"Industrial Consumption","South Carolina","SC",7377 +2020-05-01,"Industrial Consumption","Nebraska","NE",5870 +2020-05-01,"Industrial Consumption","Wisconsin","WI",10559 +2020-05-01,"Industrial Consumption","Idaho","ID",2470 +2020-05-01,"Industrial Consumption","Georgia","GA",11829 +2020-05-01,"Industrial Consumption","Missouri","MO",4351 +2020-05-01,"Industrial Consumption","Ohio","OH",19848 +2020-05-01,"Industrial Consumption","Pennsylvania","PA",15483 +2020-05-01,"Industrial Consumption","Virginia","VA",7748 +2020-05-01,"Industrial Consumption","Connecticut","CT",1629 +2020-05-01,"Industrial Consumption","Delaware","DE",2627 +2020-05-01,"Industrial Consumption","North Dakota","ND",2544 +2020-05-01,"Industrial Consumption","Massachusetts","MA",3159 +2020-05-01,"Industrial Consumption","Louisiana","LA",92962 +2020-05-01,"Industrial Consumption","New Mexico","NM",1351 +2020-05-01,"Industrial Consumption","Arizona","AZ",1441 +2020-05-01,"Industrial Consumption","U.S.","U.S.",617048 +2020-05-01,"Industrial Consumption","Oregon","OR",4319 +2020-05-01,"Industrial Consumption","Mississippi","MS",10081 +2020-05-01,"Industrial Consumption","California","CA",52992 +2020-05-01,"Industrial Consumption","Wyoming","WY",4545 +2020-05-01,"Industrial Consumption","Florida","FL",10595 +2020-05-01,"Industrial Consumption","Michigan","MI",8094 +2020-05-01,"Industrial Consumption","Montana","MT",1865 +2020-05-01,"Industrial Consumption","Hawaii","HI",6 +2020-05-01,"Industrial Consumption","Oklahoma","OK",17852 +2020-05-01,"Industrial Consumption","Utah","UT",3284 +2020-05-01,"Industrial Consumption","Maine","ME",1977 +2020-05-01,"Industrial Consumption","Minnesota","MN",9817 +2020-05-01,"Industrial Consumption","Iowa","IA",18188 +2020-05-01,"Industrial Consumption","Indiana","IN",27844 +2020-05-01,"Industrial Consumption","North Carolina","NC",8708 +2020-05-01,"Industrial Consumption","District of Columbia","DC",NA +2020-05-01,"Industrial Consumption","Alaska","AK",523 +2020-05-01,"Industrial Consumption","Maryland","MD",1120 +2020-05-01,"Industrial Consumption","Arkansas","AR",7920 +2020-05-01,"Industrial Consumption","Alabama","AL",15674 +2020-05-01,"Industrial Consumption","Vermont","VT",178 +2020-05-01,"Industrial Consumption","Texas","TX",143305 +2020-05-01,"Industrial Consumption","Tennessee","TN",11020 +2020-05-01,"Industrial Consumption","Rhode Island","RI",693 +2020-05-01,"Industrial Consumption","South Dakota","SD",2724 +2020-05-01,"Industrial Consumption","Kansas","KS",10266 +2020-05-01,"Industrial Consumption","West Virginia","WV",2700 +2020-05-01,"Industrial Consumption","New Jersey","NJ",3602 +2020-05-01,"Industrial Consumption","New Hampshire","NH",720 +2020-05-01,"Industrial Consumption","Illinois","IL",18191 +2020-05-01,"Industrial Consumption","New York","NY",5803 +2020-05-01,"Industrial Consumption","Nevada","NV",1518 +2020-05-01,"Industrial Consumption","Kentucky","KY",8370 +2020-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",146299 +2020-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",68295 +2020-05-01,"Residential Consumption","Texas","TX",8429 +2020-05-01,"Residential Consumption","South Carolina","SC",1183 +2020-05-01,"Residential Consumption","North Carolina","NC",2662 +2020-05-01,"Residential Consumption","North Dakota","ND",474 +2020-05-01,"Residential Consumption","Massachusetts","MA",6221 +2020-05-01,"Residential Consumption","Kansas","KS",2152 +2020-05-01,"Residential Consumption","Missouri","MO",3764 +2020-05-01,"Residential Consumption","Delaware","DE",576 +2020-05-01,"Residential Consumption","Arizona","AZ",1969 +2020-05-01,"Residential Consumption","Alabama","AL",1219 +2020-05-01,"Residential Consumption","U.S.","U.S.",236591 +2020-05-01,"Residential Consumption","Rhode Island","RI",890 +2020-05-01,"Residential Consumption","Iowa","IA",2580 +2020-05-01,"Residential Consumption","Connecticut","CT",2605 +2020-05-01,"Residential Consumption","Vermont","VT",249 +2020-05-01,"Residential Consumption","Maryland","MD",3906 +2020-05-01,"Residential Consumption","Minnesota","MN",5500 +2020-05-01,"Residential Consumption","Washington","WA",3983 +2020-05-01,"Residential Consumption","New York","NY",26344 +2020-05-01,"Residential Consumption","Oregon","OR",2164 +2020-05-01,"Residential Consumption","Mississippi","MS",701 +2020-05-01,"Residential Consumption","Nebraska","NE",1632 +2020-05-01,"Residential Consumption","Nevada","NV",2339 +2020-05-01,"Residential Consumption","Pennsylvania","PA",13043 +2020-05-01,"Residential Consumption","Maine","ME",170 +2020-05-01,"Residential Consumption","Florida","FL",1327 +2020-05-01,"Residential Consumption","New Jersey","NJ",12865 +2020-05-01,"Residential Consumption","Montana","MT",1279 +2020-05-01,"Residential Consumption","Wyoming","WY",695 +2020-05-01,"Residential Consumption","Georgia","GA",5771 +2020-05-01,"Residential Consumption","New Mexico","NM",1188 +2020-05-01,"Residential Consumption","Idaho","ID",1309 +2020-05-01,"Residential Consumption","Oklahoma","OK",2323 +2020-05-01,"Residential Consumption","Wisconsin","WI",6469 +2020-05-01,"Residential Consumption","Tennessee","TN",2619 +2020-05-01,"Residential Consumption","Michigan","MI",16061 +2020-05-01,"Residential Consumption","New Hampshire","NH",351 +2020-05-01,"Residential Consumption","California","CA",27600 +2020-05-01,"Residential Consumption","Ohio","OH",15393 +2020-05-01,"Residential Consumption","Louisiana","LA",1607 +2020-05-01,"Residential Consumption","South Dakota","SD",555 +2020-05-01,"Residential Consumption","Indiana","IN",6059 +2020-05-01,"Residential Consumption","West Virginia","WV",949 +2020-05-01,"Residential Consumption","Illinois","IL",20206 +2020-05-01,"Residential Consumption","Virginia","VA",4207 +2020-05-01,"Residential Consumption","Utah","UT",3003 +2020-05-01,"Residential Consumption","Arkansas","AR",1319 +2020-05-01,"Residential Consumption","Colorado","CO",5287 +2020-05-01,"Residential Consumption","Alaska","AK",926 +2020-05-01,"Residential Consumption","Hawaii","HI",50 +2020-05-01,"Residential Consumption","District of Columbia","DC",600 +2020-05-01,"Residential Consumption","Kentucky","KY",1818 +2020-05-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-05-01,"Vehicle Fuel Consumption","Louisiana","LA",104 +2020-05-01,"Vehicle Fuel Consumption","California","CA",1981 +2020-05-01,"Vehicle Fuel Consumption","New York","NY",78 +2020-05-01,"Vehicle Fuel Consumption","Nevada","NV",96 +2020-05-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-05-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-05-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-05-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2020-05-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2020-05-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-05-01,"Vehicle Fuel Consumption","Florida","FL",443 +2020-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-05-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2020-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-05-01,"Vehicle Fuel Consumption","Utah","UT",23 +2020-05-01,"Vehicle Fuel Consumption","Ohio","OH",97 +2020-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",135 +2020-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",19 +2020-05-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2020-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-05-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-05-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-05-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2020-05-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-05-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2020-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",4162 +2020-05-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-05-01,"Vehicle Fuel Consumption","Virginia","VA",53 +2020-05-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-05-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-05-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-05-01,"Vehicle Fuel Consumption","Colorado","CO",80 +2020-05-01,"Vehicle Fuel Consumption","Georgia","GA",134 +2020-05-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2020-05-01,"Vehicle Fuel Consumption","Kansas","KS",65 +2020-05-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2020-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-05-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2020-05-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2020-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-05-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2020-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",139 +2020-05-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-05-01,"Vehicle Fuel Consumption","Texas","TX",94 +2020-05-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-05-01,"Vehicle Fuel Consumption","North Carolina","NC",138 +2020-06-01,"Commercial Consumption","Washington","WA",2499 +2020-06-01,"Commercial Consumption","North Carolina","NC",2407 +2020-06-01,"Commercial Consumption","Maine","ME",279 +2020-06-01,"Commercial Consumption","Kentucky","KY",851 +2020-06-01,"Commercial Consumption","Arizona","AZ",1887 +2020-06-01,"Commercial Consumption","Louisiana","LA",1993 +2020-06-01,"Commercial Consumption","Utah","UT",1981 +2020-06-01,"Commercial Consumption","Massachusetts","MA",3547 +2020-06-01,"Commercial Consumption","New Hampshire","NH",199 +2020-06-01,"Commercial Consumption","Mississippi","MS",844 +2020-06-01,"Commercial Consumption","Oregon","OR",1039 +2020-06-01,"Commercial Consumption","California","CA",13572 +2020-06-01,"Commercial Consumption","Pennsylvania","PA",5282 +2020-06-01,"Commercial Consumption","Missouri","MO",2277 +2020-06-01,"Commercial Consumption","Vermont","VT",314 +2020-06-01,"Commercial Consumption","Nevada","NV",1240 +2020-06-01,"Commercial Consumption","South Carolina","SC",1334 +2020-06-01,"Commercial Consumption","Colorado","CO",1587 +2020-06-01,"Commercial Consumption","Florida","FL",4065 +2020-06-01,"Commercial Consumption","Rhode Island","RI",265 +2020-06-01,"Commercial Consumption","Ohio","OH",5958 +2020-06-01,"Commercial Consumption","Hawaii","HI",118 +2020-06-01,"Commercial Consumption","New York","NY",12542 +2020-06-01,"Commercial Consumption","Michigan","MI",4725 +2020-06-01,"Commercial Consumption","Illinois","IL",7110 +2020-06-01,"Commercial Consumption","West Virginia","WV",1025 +2020-06-01,"Commercial Consumption","North Dakota","ND",310 +2020-06-01,"Commercial Consumption","New Mexico","NM",937 +2020-06-01,"Commercial Consumption","U.S.","U.S.",131784 +2020-06-01,"Commercial Consumption","Georgia","GA",2185 +2020-06-01,"Commercial Consumption","Iowa","IA",1823 +2020-06-01,"Commercial Consumption","Alabama","AL",909 +2020-06-01,"Commercial Consumption","Nebraska","NE",1356 +2020-06-01,"Commercial Consumption","Tennessee","TN",2181 +2020-06-01,"Commercial Consumption","Indiana","IN",2409 +2020-06-01,"Commercial Consumption","Wisconsin","WI",2681 +2020-06-01,"Commercial Consumption","South Dakota","SD",324 +2020-06-01,"Commercial Consumption","Montana","MT",1405 +2020-06-01,"Commercial Consumption","Texas","TX",7969 +2020-06-01,"Commercial Consumption","Connecticut","CT",2077 +2020-06-01,"Commercial Consumption","Arkansas","AR",2661 +2020-06-01,"Commercial Consumption","Delaware","DE",651 +2020-06-01,"Commercial Consumption","Wyoming","WY",402 +2020-06-01,"Commercial Consumption","Minnesota","MN",2803 +2020-06-01,"Commercial Consumption","Oklahoma","OK",1541 +2020-06-01,"Commercial Consumption","Virginia","VA",2881 +2020-06-01,"Commercial Consumption","New Jersey","NJ",8053 +2020-06-01,"Commercial Consumption","Maryland","MD",3573 +2020-06-01,"Commercial Consumption","Kansas","KS",1776 +2020-06-01,"Commercial Consumption","Idaho","ID",805 +2020-06-01,"Commercial Consumption","Alaska","AK",491 +2020-06-01,"Commercial Consumption","District of Columbia","DC",638 +2020-06-01,"Delivered to Consumers","Hawaii","HI",174 +2020-06-01,"Delivered to Consumers","Oklahoma","OK",53781 +2020-06-01,"Delivered to Consumers","Tennessee","TN",23801 +2020-06-01,"Delivered to Consumers","Iowa","IA",23514 +2020-06-01,"Delivered to Consumers","Massachusetts","MA",17947 +2020-06-01,"Delivered to Consumers","Oregon","OR",9444 +2020-06-01,"Delivered to Consumers","Wyoming","WY",5454 +2020-06-01,"Delivered to Consumers","Rhode Island","RI",7559 +2020-06-01,"Delivered to Consumers","Idaho","ID",4846 +2020-06-01,"Delivered to Consumers","Ohio","OH",59500 +2020-06-01,"Delivered to Consumers","Michigan","MI",45883 +2020-06-01,"Delivered to Consumers","Kentucky","KY",20869 +2020-06-01,"Delivered to Consumers","Virginia","VA",51790 +2020-06-01,"Delivered to Consumers","North Carolina","NC",37611 +2020-06-01,"Delivered to Consumers","California","CA",134540 +2020-06-01,"Delivered to Consumers","New Jersey","NJ",40311 +2020-06-01,"Delivered to Consumers","U.S.","U.S.",1913948 +2020-06-01,"Delivered to Consumers","Indiana","IN",52630 +2020-06-01,"Delivered to Consumers","South Dakota","SD",4493 +2020-06-01,"Delivered to Consumers","Mississippi","MS",47943 +2020-06-01,"Delivered to Consumers","Missouri","MO",15121 +2020-06-01,"Delivered to Consumers","Colorado","CO",23253 +2020-06-01,"Delivered to Consumers","Minnesota","MN",22606 +2020-06-01,"Delivered to Consumers","District of Columbia","DC",970 +2020-06-01,"Delivered to Consumers","Delaware","DE",6853 +2020-06-01,"Delivered to Consumers","West Virginia","WV",6595 +2020-06-01,"Delivered to Consumers","Illinois","IL",57896 +2020-06-01,"Delivered to Consumers","Texas","TX",319698 +2020-06-01,"Delivered to Consumers","Nevada","NV",22429 +2020-06-01,"Delivered to Consumers","North Dakota","ND",5104 +2020-06-01,"Delivered to Consumers","Utah","UT",13323 +2020-06-01,"Delivered to Consumers","New Mexico","NM",10837 +2020-06-01,"Delivered to Consumers","Alaska","AK",3332 +2020-06-01,"Delivered to Consumers","Arkansas","AR",24451 +2020-06-01,"Delivered to Consumers","Alabama","AL",56577 +2020-06-01,"Delivered to Consumers","Pennsylvania","PA",99645 +2020-06-01,"Delivered to Consumers","Louisiana","LA",130740 +2020-06-01,"Delivered to Consumers","Georgia","GA",59310 +2020-06-01,"Delivered to Consumers","Arizona","AZ",40192 +2020-06-01,"Delivered to Consumers","New York","NY",71456 +2020-06-01,"Delivered to Consumers","Kansas","KS",16087 +2020-06-01,"Delivered to Consumers","Connecticut","CT",19879 +2020-06-01,"Delivered to Consumers","Maryland","MD",14879 +2020-06-01,"Delivered to Consumers","Nebraska","NE",10546 +2020-06-01,"Delivered to Consumers","Washington","WA",12421 +2020-06-01,"Delivered to Consumers","New Hampshire","NH",3922 +2020-06-01,"Delivered to Consumers","Vermont","VT",604 +2020-06-01,"Delivered to Consumers","Montana","MT",4160 +2020-06-01,"Delivered to Consumers","Wisconsin","WI",28928 +2020-06-01,"Delivered to Consumers","South Carolina","SC",24055 +2020-06-01,"Delivered to Consumers","Maine","ME",3568 +2020-06-01,"Delivered to Consumers","Florida","FL",142420 +2020-06-01,"Electric Power Consumption","Virginia","VA",38604 +2020-06-01,"Electric Power Consumption","Louisiana","LA",32775 +2020-06-01,"Electric Power Consumption","Minnesota","MN",7857 +2020-06-01,"Electric Power Consumption","Illinois","IL",24158 +2020-06-01,"Electric Power Consumption","Massachusetts","MA",8701 +2020-06-01,"Electric Power Consumption","Pennsylvania","PA",72954 +2020-06-01,"Electric Power Consumption","Hawaii","HI",NA +2020-06-01,"Electric Power Consumption","Maryland","MD",8157 +2020-06-01,"Electric Power Consumption","Alabama","AL",39630 +2020-06-01,"Electric Power Consumption","Oregon","OR",2678 +2020-06-01,"Electric Power Consumption","Michigan","MI",26320 +2020-06-01,"Electric Power Consumption","Missouri","MO",6552 +2020-06-01,"Electric Power Consumption","Ohio","OH",29053 +2020-06-01,"Electric Power Consumption","Arizona","AZ",35315 +2020-06-01,"Electric Power Consumption","California","CA",41123 +2020-06-01,"Electric Power Consumption","Colorado","CO",12729 +2020-06-01,"Electric Power Consumption","Vermont","VT",1 +2020-06-01,"Electric Power Consumption","U.S.","U.S.",1041101 +2020-06-01,"Electric Power Consumption","Nebraska","NE",1407 +2020-06-01,"Electric Power Consumption","North Carolina","NC",25042 +2020-06-01,"Electric Power Consumption","Kentucky","KY",10868 +2020-06-01,"Electric Power Consumption","North Dakota","ND",1474 +2020-06-01,"Electric Power Consumption","Indiana","IN",21937 +2020-06-01,"Electric Power Consumption","Idaho","ID",478 +2020-06-01,"Electric Power Consumption","Oklahoma","OK",33648 +2020-06-01,"Electric Power Consumption","Utah","UT",5260 +2020-06-01,"Electric Power Consumption","Iowa","IA",4228 +2020-06-01,"Electric Power Consumption","Mississippi","MS",36334 +2020-06-01,"Electric Power Consumption","Montana","MT",234 +2020-06-01,"Electric Power Consumption","Connecticut","CT",14684 +2020-06-01,"Electric Power Consumption","Arkansas","AR",14311 +2020-06-01,"Electric Power Consumption","South Carolina","SC",15065 +2020-06-01,"Electric Power Consumption","West Virginia","WV",2357 +2020-06-01,"Electric Power Consumption","Georgia","GA",41421 +2020-06-01,"Electric Power Consumption","Florida","FL",127732 +2020-06-01,"Electric Power Consumption","Alaska","AK",1707 +2020-06-01,"Electric Power Consumption","Washington","WA",1604 +2020-06-01,"Electric Power Consumption","New Mexico","NM",7535 +2020-06-01,"Electric Power Consumption","New York","NY",39889 +2020-06-01,"Electric Power Consumption","Texas","TX",167442 +2020-06-01,"Electric Power Consumption","Rhode Island","RI",6214 +2020-06-01,"Electric Power Consumption","Wyoming","WY",284 +2020-06-01,"Electric Power Consumption","Tennessee","TN",9298 +2020-06-01,"Electric Power Consumption","New Jersey","NJ",21165 +2020-06-01,"Electric Power Consumption","Kansas","KS",2112 +2020-06-01,"Electric Power Consumption","South Dakota","SD",857 +2020-06-01,"Electric Power Consumption","Maine","ME",1428 +2020-06-01,"Electric Power Consumption","Delaware","DE",3567 +2020-06-01,"Electric Power Consumption","Wisconsin","WI",14411 +2020-06-01,"Electric Power Consumption","Nevada","NV",17632 +2020-06-01,"Electric Power Consumption","New Hampshire","NH",2871 +2020-06-01,"Industrial Consumption","Hawaii","HI",6 +2020-06-01,"Industrial Consumption","Washington","WA",5465 +2020-06-01,"Industrial Consumption","Arizona","AZ",1240 +2020-06-01,"Industrial Consumption","Nevada","NV",1491 +2020-06-01,"Industrial Consumption","Texas","TX",137100 +2020-06-01,"Industrial Consumption","Indiana","IN",25736 +2020-06-01,"Industrial Consumption","District of Columbia","DC",NA +2020-06-01,"Industrial Consumption","North Dakota","ND",3104 +2020-06-01,"Industrial Consumption","Maryland","MD",1077 +2020-06-01,"Industrial Consumption","Maine","ME",1787 +2020-06-01,"Industrial Consumption","Arkansas","AR",6904 +2020-06-01,"Industrial Consumption","Wyoming","WY",4427 +2020-06-01,"Industrial Consumption","New Jersey","NJ",4373 +2020-06-01,"Industrial Consumption","New Hampshire","NH",683 +2020-06-01,"Industrial Consumption","Delaware","DE",2388 +2020-06-01,"Industrial Consumption","Montana","MT",1740 +2020-06-01,"Industrial Consumption","Alabama","AL",15204 +2020-06-01,"Industrial Consumption","Nebraska","NE",6692 +2020-06-01,"Industrial Consumption","Vermont","VT",159 +2020-06-01,"Industrial Consumption","Florida","FL",9003 +2020-06-01,"Industrial Consumption","Michigan","MI",8515 +2020-06-01,"Industrial Consumption","Oklahoma","OK",17110 +2020-06-01,"Industrial Consumption","Mississippi","MS",10132 +2020-06-01,"Industrial Consumption","California","CA",55171 +2020-06-01,"Industrial Consumption","Virginia","VA",8236 +2020-06-01,"Industrial Consumption","Idaho","ID",2648 +2020-06-01,"Industrial Consumption","Illinois","IL",16836 +2020-06-01,"Industrial Consumption","Alaska","AK",521 +2020-06-01,"Industrial Consumption","Ohio","OH",18461 +2020-06-01,"Industrial Consumption","New Mexico","NM",1319 +2020-06-01,"Industrial Consumption","West Virginia","WV",2537 +2020-06-01,"Industrial Consumption","Tennessee","TN",10775 +2020-06-01,"Industrial Consumption","Rhode Island","RI",631 +2020-06-01,"Industrial Consumption","South Dakota","SD",3017 +2020-06-01,"Industrial Consumption","Connecticut","CT",1524 +2020-06-01,"Industrial Consumption","Kentucky","KY",8327 +2020-06-01,"Industrial Consumption","Massachusetts","MA",2330 +2020-06-01,"Industrial Consumption","Missouri","MO",4311 +2020-06-01,"Industrial Consumption","Louisiana","LA",94535 +2020-06-01,"Industrial Consumption","Colorado","CO",5369 +2020-06-01,"Industrial Consumption","Utah","UT",3008 +2020-06-01,"Industrial Consumption","Pennsylvania","PA",15551 +2020-06-01,"Industrial Consumption","Oregon","OR",4149 +2020-06-01,"Industrial Consumption","South Carolina","SC",6933 +2020-06-01,"Industrial Consumption","Wisconsin","WI",8956 +2020-06-01,"Industrial Consumption","Iowa","IA",16076 +2020-06-01,"Industrial Consumption","Georgia","GA",11281 +2020-06-01,"Industrial Consumption","Kansas","KS",10939 +2020-06-01,"Industrial Consumption","U.S.","U.S.",600908 +2020-06-01,"Industrial Consumption","New York","NY",5731 +2020-06-01,"Industrial Consumption","Minnesota","MN",8989 +2020-06-01,"Industrial Consumption","North Carolina","NC",8410 +2020-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",143598 +2020-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",70368 +2020-06-01,"Residential Consumption","Utah","UT",3051 +2020-06-01,"Residential Consumption","Minnesota","MN",2923 +2020-06-01,"Residential Consumption","Montana","MT",781 +2020-06-01,"Residential Consumption","Colorado","CO",3490 +2020-06-01,"Residential Consumption","Delaware","DE",247 +2020-06-01,"Residential Consumption","Wyoming","WY",340 +2020-06-01,"Residential Consumption","Rhode Island","RI",441 +2020-06-01,"Residential Consumption","District of Columbia","DC",314 +2020-06-01,"Residential Consumption","New Mexico","NM",1015 +2020-06-01,"Residential Consumption","New Jersey","NJ",6697 +2020-06-01,"Residential Consumption","Washington","WA",2843 +2020-06-01,"Residential Consumption","California","CA",22757 +2020-06-01,"Residential Consumption","South Carolina","SC",714 +2020-06-01,"Residential Consumption","Vermont","VT",128 +2020-06-01,"Residential Consumption","North Dakota","ND",216 +2020-06-01,"Residential Consumption","Idaho","ID",911 +2020-06-01,"Residential Consumption","Arkansas","AR",569 +2020-06-01,"Residential Consumption","New Hampshire","NH",168 +2020-06-01,"Residential Consumption","North Carolina","NC",1619 +2020-06-01,"Residential Consumption","Mississippi","MS",633 +2020-06-01,"Residential Consumption","Iowa","IA",1384 +2020-06-01,"Residential Consumption","Connecticut","CT",1577 +2020-06-01,"Residential Consumption","Wisconsin","WI",2842 +2020-06-01,"Residential Consumption","Nebraska","NE",1079 +2020-06-01,"Residential Consumption","Pennsylvania","PA",5728 +2020-06-01,"Residential Consumption","Indiana","IN",2548 +2020-06-01,"Residential Consumption","Texas","TX",7096 +2020-06-01,"Residential Consumption","Louisiana","LA",1336 +2020-06-01,"Residential Consumption","Virginia","VA",2017 +2020-06-01,"Residential Consumption","Nevada","NV",1972 +2020-06-01,"Residential Consumption","Massachusetts","MA",3361 +2020-06-01,"Residential Consumption","Arizona","AZ",1583 +2020-06-01,"Residential Consumption","Alabama","AL",828 +2020-06-01,"Residential Consumption","Hawaii","HI",50 +2020-06-01,"Residential Consumption","Michigan","MI",6322 +2020-06-01,"Residential Consumption","Georgia","GA",4292 +2020-06-01,"Residential Consumption","Maine","ME",74 +2020-06-01,"Residential Consumption","Kentucky","KY",822 +2020-06-01,"Residential Consumption","Missouri","MO",1966 +2020-06-01,"Residential Consumption","U.S.","U.S.",136127 +2020-06-01,"Residential Consumption","Illinois","IL",9784 +2020-06-01,"Residential Consumption","Tennessee","TN",1517 +2020-06-01,"Residential Consumption","Florida","FL",1190 +2020-06-01,"Residential Consumption","West Virginia","WV",675 +2020-06-01,"Residential Consumption","Oregon","OR",1574 +2020-06-01,"Residential Consumption","Ohio","OH",5935 +2020-06-01,"Residential Consumption","Maryland","MD",2049 +2020-06-01,"Residential Consumption","South Dakota","SD",295 +2020-06-01,"Residential Consumption","Kansas","KS",1198 +2020-06-01,"Residential Consumption","Oklahoma","OK",1347 +2020-06-01,"Residential Consumption","Alaska","AK",612 +2020-06-01,"Residential Consumption","New York","NY",13218 +2020-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-06-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-06-01,"Vehicle Fuel Consumption","Virginia","VA",51 +2020-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2020-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",135 +2020-06-01,"Vehicle Fuel Consumption","Louisiana","LA",101 +2020-06-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-06-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2020-06-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2020-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-06-01,"Vehicle Fuel Consumption","California","CA",1917 +2020-06-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-06-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-06-01,"Vehicle Fuel Consumption","Utah","UT",22 +2020-06-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2020-06-01,"Vehicle Fuel Consumption","New York","NY",76 +2020-06-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",131 +2020-06-01,"Vehicle Fuel Consumption","Kansas","KS",63 +2020-06-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-06-01,"Vehicle Fuel Consumption","Maryland","MD",22 +2020-06-01,"Vehicle Fuel Consumption","Minnesota","MN",35 +2020-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-06-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-06-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-06-01,"Vehicle Fuel Consumption","Georgia","GA",130 +2020-06-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2020-06-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2020-06-01,"Vehicle Fuel Consumption","Florida","FL",429 +2020-06-01,"Vehicle Fuel Consumption","Texas","TX",91 +2020-06-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-06-01,"Vehicle Fuel Consumption","New Mexico","NM",31 +2020-06-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-06-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-06-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2020-06-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-06-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-06-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2020-06-01,"Vehicle Fuel Consumption","Vermont","VT",1 +2020-06-01,"Vehicle Fuel Consumption","Nevada","NV",93 +2020-06-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-06-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-06-01,"Vehicle Fuel Consumption","Colorado","CO",77 +2020-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",4028 +2020-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",18 +2020-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-06-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2020-07-01,"Commercial Consumption","Oregon","OR",883 +2020-07-01,"Commercial Consumption","Oklahoma","OK",1521 +2020-07-01,"Commercial Consumption","U.S.","U.S.",129085 +2020-07-01,"Commercial Consumption","Maryland","MD",2935 +2020-07-01,"Commercial Consumption","Mississippi","MS",906 +2020-07-01,"Commercial Consumption","Delaware","DE",733 +2020-07-01,"Commercial Consumption","Pennsylvania","PA",4276 +2020-07-01,"Commercial Consumption","Rhode Island","RI",245 +2020-07-01,"Commercial Consumption","Tennessee","TN",2172 +2020-07-01,"Commercial Consumption","Nevada","NV",1496 +2020-07-01,"Commercial Consumption","Virginia","VA",3153 +2020-07-01,"Commercial Consumption","Massachusetts","MA",4499 +2020-07-01,"Commercial Consumption","Vermont","VT",362 +2020-07-01,"Commercial Consumption","Alaska","AK",470 +2020-07-01,"Commercial Consumption","Alabama","AL",961 +2020-07-01,"Commercial Consumption","New York","NY",12626 +2020-07-01,"Commercial Consumption","Nebraska","NE",1220 +2020-07-01,"Commercial Consumption","District of Columbia","DC",676 +2020-07-01,"Commercial Consumption","South Carolina","SC",1285 +2020-07-01,"Commercial Consumption","North Carolina","NC",2005 +2020-07-01,"Commercial Consumption","Utah","UT",1598 +2020-07-01,"Commercial Consumption","Kansas","KS",1848 +2020-07-01,"Commercial Consumption","Connecticut","CT",2460 +2020-07-01,"Commercial Consumption","Indiana","IN",2398 +2020-07-01,"Commercial Consumption","Wyoming","WY",376 +2020-07-01,"Commercial Consumption","Minnesota","MN",2301 +2020-07-01,"Commercial Consumption","Kentucky","KY",896 +2020-07-01,"Commercial Consumption","Arizona","AZ",1903 +2020-07-01,"Commercial Consumption","Louisiana","LA",1955 +2020-07-01,"Commercial Consumption","Colorado","CO",1480 +2020-07-01,"Commercial Consumption","South Dakota","SD",318 +2020-07-01,"Commercial Consumption","New Hampshire","NH",229 +2020-07-01,"Commercial Consumption","Maine","ME",254 +2020-07-01,"Commercial Consumption","California","CA",14698 +2020-07-01,"Commercial Consumption","Illinois","IL",6900 +2020-07-01,"Commercial Consumption","West Virginia","WV",858 +2020-07-01,"Commercial Consumption","Washington","WA",2182 +2020-07-01,"Commercial Consumption","Missouri","MO",1990 +2020-07-01,"Commercial Consumption","Montana","MT",920 +2020-07-01,"Commercial Consumption","Georgia","GA",2072 +2020-07-01,"Commercial Consumption","Idaho","ID",751 +2020-07-01,"Commercial Consumption","Iowa","IA",1860 +2020-07-01,"Commercial Consumption","Hawaii","HI",131 +2020-07-01,"Commercial Consumption","Michigan","MI",4509 +2020-07-01,"Commercial Consumption","North Dakota","ND",306 +2020-07-01,"Commercial Consumption","New Mexico","NM",944 +2020-07-01,"Commercial Consumption","Wisconsin","WI",2692 +2020-07-01,"Commercial Consumption","New Jersey","NJ",5478 +2020-07-01,"Commercial Consumption","Texas","TX",10520 +2020-07-01,"Commercial Consumption","Florida","FL",3993 +2020-07-01,"Commercial Consumption","Ohio","OH",5138 +2020-07-01,"Commercial Consumption","Arkansas","AR",2702 +2020-07-01,"Delivered to Consumers","New Mexico","NM",14532 +2020-07-01,"Delivered to Consumers","Kentucky","KY",24888 +2020-07-01,"Delivered to Consumers","Pennsylvania","PA",121303 +2020-07-01,"Delivered to Consumers","Colorado","CO",24357 +2020-07-01,"Delivered to Consumers","Oklahoma","OK",68663 +2020-07-01,"Delivered to Consumers","Virginia","VA",62373 +2020-07-01,"Delivered to Consumers","Nebraska","NE",12357 +2020-07-01,"Delivered to Consumers","Wyoming","WY",5989 +2020-07-01,"Delivered to Consumers","West Virginia","WV",6889 +2020-07-01,"Delivered to Consumers","Alabama","AL",64597 +2020-07-01,"Delivered to Consumers","Arizona","AZ",49322 +2020-07-01,"Delivered to Consumers","Washington","WA",16070 +2020-07-01,"Delivered to Consumers","Florida","FL",152276 +2020-07-01,"Delivered to Consumers","Indiana","IN",55781 +2020-07-01,"Delivered to Consumers","Alaska","AK",3237 +2020-07-01,"Delivered to Consumers","Tennessee","TN",27311 +2020-07-01,"Delivered to Consumers","Ohio","OH",65880 +2020-07-01,"Delivered to Consumers","Connecticut","CT",23238 +2020-07-01,"Delivered to Consumers","Missouri","MO",17824 +2020-07-01,"Delivered to Consumers","Texas","TX",378588 +2020-07-01,"Delivered to Consumers","Louisiana","LA",138469 +2020-07-01,"Delivered to Consumers","Vermont","VT",612 +2020-07-01,"Delivered to Consumers","South Dakota","SD",5336 +2020-07-01,"Delivered to Consumers","New York","NY",92023 +2020-07-01,"Delivered to Consumers","Idaho","ID",6635 +2020-07-01,"Delivered to Consumers","North Dakota","ND",5489 +2020-07-01,"Delivered to Consumers","District of Columbia","DC",963 +2020-07-01,"Delivered to Consumers","Utah","UT",14150 +2020-07-01,"Delivered to Consumers","Rhode Island","RI",7899 +2020-07-01,"Delivered to Consumers","Hawaii","HI",188 +2020-07-01,"Delivered to Consumers","Michigan","MI",55836 +2020-07-01,"Delivered to Consumers","Arkansas","AR",28662 +2020-07-01,"Delivered to Consumers","South Carolina","SC",29678 +2020-07-01,"Delivered to Consumers","Nevada","NV",26542 +2020-07-01,"Delivered to Consumers","Maine","ME",4207 +2020-07-01,"Delivered to Consumers","Minnesota","MN",24632 +2020-07-01,"Delivered to Consumers","U.S.","U.S.",2231051 +2020-07-01,"Delivered to Consumers","Montana","MT",3649 +2020-07-01,"Delivered to Consumers","Maryland","MD",18390 +2020-07-01,"Delivered to Consumers","Kansas","KS",18212 +2020-07-01,"Delivered to Consumers","North Carolina","NC",43802 +2020-07-01,"Delivered to Consumers","California","CA",157949 +2020-07-01,"Delivered to Consumers","Oregon","OR",15499 +2020-07-01,"Delivered to Consumers","Delaware","DE",9027 +2020-07-01,"Delivered to Consumers","Illinois","IL",68901 +2020-07-01,"Delivered to Consumers","Iowa","IA",27804 +2020-07-01,"Delivered to Consumers","Wisconsin","WI",29901 +2020-07-01,"Delivered to Consumers","Mississippi","MS",54970 +2020-07-01,"Delivered to Consumers","Massachusetts","MA",28098 +2020-07-01,"Delivered to Consumers","New Jersey","NJ",49924 +2020-07-01,"Delivered to Consumers","Georgia","GA",62602 +2020-07-01,"Delivered to Consumers","New Hampshire","NH",5529 +2020-07-01,"Electric Power Consumption","New Mexico","NM",11082 +2020-07-01,"Electric Power Consumption","New Jersey","NJ",32227 +2020-07-01,"Electric Power Consumption","Oklahoma","OK",48008 +2020-07-01,"Electric Power Consumption","Nevada","NV",21807 +2020-07-01,"Electric Power Consumption","Ohio","OH",35799 +2020-07-01,"Electric Power Consumption","New Hampshire","NH",4506 +2020-07-01,"Electric Power Consumption","Georgia","GA",44260 +2020-07-01,"Electric Power Consumption","California","CA",60779 +2020-07-01,"Electric Power Consumption","Alabama","AL",46973 +2020-07-01,"Electric Power Consumption","Arkansas","AR",17806 +2020-07-01,"Electric Power Consumption","South Carolina","SC",20582 +2020-07-01,"Electric Power Consumption","Wisconsin","WI",15126 +2020-07-01,"Electric Power Consumption","Wyoming","WY",736 +2020-07-01,"Electric Power Consumption","North Carolina","NC",32472 +2020-07-01,"Electric Power Consumption","Alaska","AK",1752 +2020-07-01,"Electric Power Consumption","Colorado","CO",14943 +2020-07-01,"Electric Power Consumption","New York","NY",61731 +2020-07-01,"Electric Power Consumption","Minnesota","MN",10710 +2020-07-01,"Electric Power Consumption","Illinois","IL",36152 +2020-07-01,"Electric Power Consumption","Pennsylvania","PA",97285 +2020-07-01,"Electric Power Consumption","Iowa","IA",6879 +2020-07-01,"Electric Power Consumption","Maryland","MD",11880 +2020-07-01,"Electric Power Consumption","Idaho","ID",2582 +2020-07-01,"Electric Power Consumption","Texas","TX",212107 +2020-07-01,"Electric Power Consumption","Utah","UT",7399 +2020-07-01,"Electric Power Consumption","Vermont","VT",1 +2020-07-01,"Electric Power Consumption","Delaware","DE",5698 +2020-07-01,"Electric Power Consumption","Washington","WA",6095 +2020-07-01,"Electric Power Consumption","Missouri","MO",9704 +2020-07-01,"Electric Power Consumption","Mississippi","MS",42753 +2020-07-01,"Electric Power Consumption","Kentucky","KY",15074 +2020-07-01,"Electric Power Consumption","Florida","FL",137344 +2020-07-01,"Electric Power Consumption","Virginia","VA",48813 +2020-07-01,"Electric Power Consumption","Rhode Island","RI",6588 +2020-07-01,"Electric Power Consumption","Tennessee","TN",13134 +2020-07-01,"Electric Power Consumption","U.S.","U.S.",1345797 +2020-07-01,"Electric Power Consumption","Nebraska","NE",1857 +2020-07-01,"Electric Power Consumption","North Dakota","ND",1962 +2020-07-01,"Electric Power Consumption","Louisiana","LA",40719 +2020-07-01,"Electric Power Consumption","Massachusetts","MA",18109 +2020-07-01,"Electric Power Consumption","Maine","ME",2260 +2020-07-01,"Electric Power Consumption","Montana","MT",292 +2020-07-01,"Electric Power Consumption","Indiana","IN",24016 +2020-07-01,"Electric Power Consumption","Oregon","OR",9292 +2020-07-01,"Electric Power Consumption","Michigan","MI",36547 +2020-07-01,"Electric Power Consumption","Kansas","KS",3237 +2020-07-01,"Electric Power Consumption","West Virginia","WV",3085 +2020-07-01,"Electric Power Consumption","South Dakota","SD",1436 +2020-07-01,"Electric Power Consumption","Hawaii","HI",NA +2020-07-01,"Electric Power Consumption","Connecticut","CT",17796 +2020-07-01,"Electric Power Consumption","Arizona","AZ",44402 +2020-07-01,"Industrial Consumption","Hawaii","HI",7 +2020-07-01,"Industrial Consumption","Ohio","OH",20060 +2020-07-01,"Industrial Consumption","U.S.","U.S.",633865 +2020-07-01,"Industrial Consumption","Vermont","VT",158 +2020-07-01,"Industrial Consumption","Wisconsin","WI",9532 +2020-07-01,"Industrial Consumption","Florida","FL",9578 +2020-07-01,"Industrial Consumption","Rhode Island","RI",624 +2020-07-01,"Industrial Consumption","Montana","MT",1884 +2020-07-01,"Industrial Consumption","Oklahoma","OK",17839 +2020-07-01,"Industrial Consumption","Arizona","AZ",1495 +2020-07-01,"Industrial Consumption","New York","NY",6259 +2020-07-01,"Industrial Consumption","Nevada","NV",1552 +2020-07-01,"Industrial Consumption","Arkansas","AR",7634 +2020-07-01,"Industrial Consumption","Virginia","VA",8545 +2020-07-01,"Industrial Consumption","Wyoming","WY",4638 +2020-07-01,"Industrial Consumption","Iowa","IA",17892 +2020-07-01,"Industrial Consumption","Washington","WA",5390 +2020-07-01,"Industrial Consumption","Oregon","OR",4150 +2020-07-01,"Industrial Consumption","Nebraska","NE",8438 +2020-07-01,"Industrial Consumption","New Hampshire","NH",620 +2020-07-01,"Industrial Consumption","North Carolina","NC",8277 +2020-07-01,"Industrial Consumption","Mississippi","MS",10734 +2020-07-01,"Industrial Consumption","California","CA",58056 +2020-07-01,"Industrial Consumption","West Virginia","WV",2620 +2020-07-01,"Industrial Consumption","Tennessee","TN",10805 +2020-07-01,"Industrial Consumption","Minnesota","MN",9101 +2020-07-01,"Industrial Consumption","Kentucky","KY",8145 +2020-07-01,"Industrial Consumption","Indiana","IN",27176 +2020-07-01,"Industrial Consumption","North Dakota","ND",3045 +2020-07-01,"Industrial Consumption","Missouri","MO",4335 +2020-07-01,"Industrial Consumption","New Mexico","NM",1432 +2020-07-01,"Industrial Consumption","Kansas","KS",11869 +2020-07-01,"Industrial Consumption","Idaho","ID",2689 +2020-07-01,"Industrial Consumption","Connecticut","CT",1727 +2020-07-01,"Industrial Consumption","Michigan","MI",9377 +2020-07-01,"Industrial Consumption","Delaware","DE",2400 +2020-07-01,"Industrial Consumption","Alaska","AK",515 +2020-07-01,"Industrial Consumption","Utah","UT",2877 +2020-07-01,"Industrial Consumption","South Carolina","SC",7261 +2020-07-01,"Industrial Consumption","Massachusetts","MA",2516 +2020-07-01,"Industrial Consumption","Louisiana","LA",94337 +2020-07-01,"Industrial Consumption","Colorado","CO",4919 +2020-07-01,"Industrial Consumption","South Dakota","SD",3368 +2020-07-01,"Industrial Consumption","Pennsylvania","PA",15800 +2020-07-01,"Industrial Consumption","Texas","TX",148774 +2020-07-01,"Industrial Consumption","New Jersey","NJ",5703 +2020-07-01,"Industrial Consumption","Illinois","IL",18290 +2020-07-01,"Industrial Consumption","Georgia","GA",12189 +2020-07-01,"Industrial Consumption","Maryland","MD",1659 +2020-07-01,"Industrial Consumption","Maine","ME",1637 +2020-07-01,"Industrial Consumption","Alabama","AL",15938 +2020-07-01,"Industrial Consumption","District of Columbia","DC",NA +2020-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",151012 +2020-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",82027 +2020-07-01,"Residential Consumption","Oregon","OR",1169 +2020-07-01,"Residential Consumption","Vermont","VT",89 +2020-07-01,"Residential Consumption","Tennessee","TN",1168 +2020-07-01,"Residential Consumption","Pennsylvania","PA",3807 +2020-07-01,"Residential Consumption","Maine","ME",56 +2020-07-01,"Residential Consumption","North Dakota","ND",177 +2020-07-01,"Residential Consumption","Idaho","ID",609 +2020-07-01,"Residential Consumption","Montana","MT",553 +2020-07-01,"Residential Consumption","Virginia","VA",1809 +2020-07-01,"Residential Consumption","Maryland","MD",1892 +2020-07-01,"Residential Consumption","South Dakota","SD",214 +2020-07-01,"Residential Consumption","Florida","FL",918 +2020-07-01,"Residential Consumption","Kansas","KS",1193 +2020-07-01,"Residential Consumption","West Virginia","WV",325 +2020-07-01,"Residential Consumption","Texas","TX",7092 +2020-07-01,"Residential Consumption","Nebraska","NE",829 +2020-07-01,"Residential Consumption","Nevada","NV",1592 +2020-07-01,"Residential Consumption","Minnesota","MN",2485 +2020-07-01,"Residential Consumption","New Mexico","NM",1043 +2020-07-01,"Residential Consumption","Indiana","IN",2192 +2020-07-01,"Residential Consumption","Arizona","AZ",1350 +2020-07-01,"Residential Consumption","Alabama","AL",720 +2020-07-01,"Residential Consumption","Rhode Island","RI",433 +2020-07-01,"Residential Consumption","North Carolina","NC",910 +2020-07-01,"Residential Consumption","Hawaii","HI",51 +2020-07-01,"Residential Consumption","District of Columbia","DC",268 +2020-07-01,"Residential Consumption","Colorado","CO",2935 +2020-07-01,"Residential Consumption","Alaska","AK",499 +2020-07-01,"Residential Consumption","Connecticut","CT",1237 +2020-07-01,"Residential Consumption","Utah","UT",2252 +2020-07-01,"Residential Consumption","Michigan","MI",5402 +2020-07-01,"Residential Consumption","Massachusetts","MA",2965 +2020-07-01,"Residential Consumption","Washington","WA",2393 +2020-07-01,"Residential Consumption","Wyoming","WY",239 +2020-07-01,"Residential Consumption","U.S.","U.S.",118141 +2020-07-01,"Residential Consumption","Illinois","IL",7550 +2020-07-01,"Residential Consumption","Louisiana","LA",1353 +2020-07-01,"Residential Consumption","Georgia","GA",3946 +2020-07-01,"Residential Consumption","Arkansas","AR",513 +2020-07-01,"Residential Consumption","South Carolina","SC",541 +2020-07-01,"Residential Consumption","Mississippi","MS",577 +2020-07-01,"Residential Consumption","Wisconsin","WI",2511 +2020-07-01,"Residential Consumption","New Hampshire","NH",172 +2020-07-01,"Residential Consumption","New York","NY",11330 +2020-07-01,"Residential Consumption","Ohio","OH",4786 +2020-07-01,"Residential Consumption","Iowa","IA",1170 +2020-07-01,"Residential Consumption","New Jersey","NJ",6493 +2020-07-01,"Residential Consumption","Kentucky","KY",770 +2020-07-01,"Residential Consumption","Oklahoma","OK",1156 +2020-07-01,"Residential Consumption","Missouri","MO",1779 +2020-07-01,"Residential Consumption","Delaware","DE",196 +2020-07-01,"Residential Consumption","California","CA",22434 +2020-07-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2020-07-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2020-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2020-07-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-07-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-07-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-07-01,"Vehicle Fuel Consumption","Virginia","VA",53 +2020-07-01,"Vehicle Fuel Consumption","New York","NY",78 +2020-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",135 +2020-07-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2020-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-07-01,"Vehicle Fuel Consumption","Georgia","GA",134 +2020-07-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2020-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-07-01,"Vehicle Fuel Consumption","Texas","TX",94 +2020-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-07-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-07-01,"Vehicle Fuel Consumption","Colorado","CO",80 +2020-07-01,"Vehicle Fuel Consumption","Utah","UT",23 +2020-07-01,"Vehicle Fuel Consumption","Ohio","OH",97 +2020-07-01,"Vehicle Fuel Consumption","Nevada","NV",96 +2020-07-01,"Vehicle Fuel Consumption","Kansas","KS",65 +2020-07-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-07-01,"Vehicle Fuel Consumption","Florida","FL",443 +2020-07-01,"Vehicle Fuel Consumption","California","CA",1981 +2020-07-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-07-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2020-07-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-07-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",19 +2020-07-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2020-07-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2020-07-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2020-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",139 +2020-07-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-07-01,"Vehicle Fuel Consumption","North Carolina","NC",138 +2020-07-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2020-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-07-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-07-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-07-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-07-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2020-07-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-07-01,"Vehicle Fuel Consumption","Louisiana","LA",104 +2020-07-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-07-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",4162 +2020-08-01,"Commercial Consumption","West Virginia","WV",937 +2020-08-01,"Commercial Consumption","Washington","WA",2141 +2020-08-01,"Commercial Consumption","South Dakota","SD",323 +2020-08-01,"Commercial Consumption","Montana","MT",949 +2020-08-01,"Commercial Consumption","U.S.","U.S.",131177 +2020-08-01,"Commercial Consumption","Florida","FL",4062 +2020-08-01,"Commercial Consumption","Rhode Island","RI",243 +2020-08-01,"Commercial Consumption","Idaho","ID",742 +2020-08-01,"Commercial Consumption","Alaska","AK",559 +2020-08-01,"Commercial Consumption","Arkansas","AR",2783 +2020-08-01,"Commercial Consumption","Mississippi","MS",918 +2020-08-01,"Commercial Consumption","Tennessee","TN",2262 +2020-08-01,"Commercial Consumption","Louisiana","LA",1958 +2020-08-01,"Commercial Consumption","South Carolina","SC",1077 +2020-08-01,"Commercial Consumption","North Dakota","ND",383 +2020-08-01,"Commercial Consumption","North Carolina","NC",2251 +2020-08-01,"Commercial Consumption","Utah","UT",1447 +2020-08-01,"Commercial Consumption","Virginia","VA",3163 +2020-08-01,"Commercial Consumption","New Hampshire","NH",204 +2020-08-01,"Commercial Consumption","Iowa","IA",1751 +2020-08-01,"Commercial Consumption","Connecticut","CT",2385 +2020-08-01,"Commercial Consumption","New York","NY",13254 +2020-08-01,"Commercial Consumption","Delaware","DE",745 +2020-08-01,"Commercial Consumption","Arizona","AZ",1805 +2020-08-01,"Commercial Consumption","New Mexico","NM",1026 +2020-08-01,"Commercial Consumption","Massachusetts","MA",4527 +2020-08-01,"Commercial Consumption","Nevada","NV",1223 +2020-08-01,"Commercial Consumption","Colorado","CO",1558 +2020-08-01,"Commercial Consumption","Kentucky","KY",944 +2020-08-01,"Commercial Consumption","Oklahoma","OK",1542 +2020-08-01,"Commercial Consumption","Maine","ME",267 +2020-08-01,"Commercial Consumption","Kansas","KS",1906 +2020-08-01,"Commercial Consumption","District of Columbia","DC",660 +2020-08-01,"Commercial Consumption","Wyoming","WY",244 +2020-08-01,"Commercial Consumption","Oregon","OR",889 +2020-08-01,"Commercial Consumption","Pennsylvania","PA",4793 +2020-08-01,"Commercial Consumption","Vermont","VT",409 +2020-08-01,"Commercial Consumption","California","CA",15037 +2020-08-01,"Commercial Consumption","Alabama","AL",989 +2020-08-01,"Commercial Consumption","Illinois","IL",6647 +2020-08-01,"Commercial Consumption","Minnesota","MN",2914 +2020-08-01,"Commercial Consumption","New Jersey","NJ",4605 +2020-08-01,"Commercial Consumption","Georgia","GA",2130 +2020-08-01,"Commercial Consumption","Ohio","OH",5205 +2020-08-01,"Commercial Consumption","Hawaii","HI",125 +2020-08-01,"Commercial Consumption","Nebraska","NE",1253 +2020-08-01,"Commercial Consumption","Indiana","IN",2498 +2020-08-01,"Commercial Consumption","Missouri","MO",2150 +2020-08-01,"Commercial Consumption","Wisconsin","WI",2820 +2020-08-01,"Commercial Consumption","Texas","TX",10000 +2020-08-01,"Commercial Consumption","Maryland","MD",3009 +2020-08-01,"Commercial Consumption","Michigan","MI",5462 +2020-08-01,"Delivered to Consumers","U.S.","U.S.",2169256 +2020-08-01,"Delivered to Consumers","Indiana","IN",54232 +2020-08-01,"Delivered to Consumers","Illinois","IL",56524 +2020-08-01,"Delivered to Consumers","Idaho","ID",7314 +2020-08-01,"Delivered to Consumers","Pennsylvania","PA",116363 +2020-08-01,"Delivered to Consumers","Nebraska","NE",11540 +2020-08-01,"Delivered to Consumers","Minnesota","MN",22452 +2020-08-01,"Delivered to Consumers","Kansas","KS",17195 +2020-08-01,"Delivered to Consumers","Ohio","OH",65212 +2020-08-01,"Delivered to Consumers","Kentucky","KY",21499 +2020-08-01,"Delivered to Consumers","Arkansas","AR",27415 +2020-08-01,"Delivered to Consumers","Oregon","OR",19168 +2020-08-01,"Delivered to Consumers","New Jersey","NJ",42459 +2020-08-01,"Delivered to Consumers","Georgia","GA",61828 +2020-08-01,"Delivered to Consumers","Arizona","AZ",49079 +2020-08-01,"Delivered to Consumers","New Hampshire","NH",4199 +2020-08-01,"Delivered to Consumers","Utah","UT",14984 +2020-08-01,"Delivered to Consumers","Oklahoma","OK",60277 +2020-08-01,"Delivered to Consumers","South Carolina","SC",27668 +2020-08-01,"Delivered to Consumers","New Mexico","NM",15035 +2020-08-01,"Delivered to Consumers","West Virginia","WV",6570 +2020-08-01,"Delivered to Consumers","Vermont","VT",651 +2020-08-01,"Delivered to Consumers","Michigan","MI",49049 +2020-08-01,"Delivered to Consumers","Virginia","VA",60703 +2020-08-01,"Delivered to Consumers","California","CA",179174 +2020-08-01,"Delivered to Consumers","Texas","TX",374072 +2020-08-01,"Delivered to Consumers","Nevada","NV",28415 +2020-08-01,"Delivered to Consumers","Washington","WA",20932 +2020-08-01,"Delivered to Consumers","Florida","FL",153571 +2020-08-01,"Delivered to Consumers","Delaware","DE",8979 +2020-08-01,"Delivered to Consumers","Alabama","AL",60474 +2020-08-01,"Delivered to Consumers","North Carolina","NC",41874 +2020-08-01,"Delivered to Consumers","District of Columbia","DC",916 +2020-08-01,"Delivered to Consumers","Mississippi","MS",53062 +2020-08-01,"Delivered to Consumers","North Dakota","ND",5285 +2020-08-01,"Delivered to Consumers","New York","NY",82962 +2020-08-01,"Delivered to Consumers","Alaska","AK",3351 +2020-08-01,"Delivered to Consumers","Iowa","IA",24808 +2020-08-01,"Delivered to Consumers","Connecticut","CT",20837 +2020-08-01,"Delivered to Consumers","Wisconsin","WI",32236 +2020-08-01,"Delivered to Consumers","Missouri","MO",16365 +2020-08-01,"Delivered to Consumers","Louisiana","LA",135573 +2020-08-01,"Delivered to Consumers","Wyoming","WY",6262 +2020-08-01,"Delivered to Consumers","South Dakota","SD",5533 +2020-08-01,"Delivered to Consumers","Rhode Island","RI",7699 +2020-08-01,"Delivered to Consumers","Montana","MT",3494 +2020-08-01,"Delivered to Consumers","Maryland","MD",15202 +2020-08-01,"Delivered to Consumers","Hawaii","HI",181 +2020-08-01,"Delivered to Consumers","Tennessee","TN",24271 +2020-08-01,"Delivered to Consumers","Massachusetts","MA",23320 +2020-08-01,"Delivered to Consumers","Colorado","CO",25673 +2020-08-01,"Delivered to Consumers","Maine","ME",3316 +2020-08-01,"Electric Power Consumption","Washington","WA",10777 +2020-08-01,"Electric Power Consumption","Louisiana","LA",35064 +2020-08-01,"Electric Power Consumption","Michigan","MI",28025 +2020-08-01,"Electric Power Consumption","Massachusetts","MA",14177 +2020-08-01,"Electric Power Consumption","Pennsylvania","PA",92111 +2020-08-01,"Electric Power Consumption","U.S.","U.S.",1276048 +2020-08-01,"Electric Power Consumption","Georgia","GA",42639 +2020-08-01,"Electric Power Consumption","California","CA",81134 +2020-08-01,"Electric Power Consumption","Iowa","IA",3892 +2020-08-01,"Electric Power Consumption","Vermont","VT",2 +2020-08-01,"Electric Power Consumption","Florida","FL",138090 +2020-08-01,"Electric Power Consumption","Oklahoma","OK",39742 +2020-08-01,"Electric Power Consumption","Minnesota","MN",7601 +2020-08-01,"Electric Power Consumption","North Carolina","NC",29532 +2020-08-01,"Electric Power Consumption","Maine","ME",1305 +2020-08-01,"Electric Power Consumption","New Hampshire","NH",3160 +2020-08-01,"Electric Power Consumption","Alabama","AL",41842 +2020-08-01,"Electric Power Consumption","Virginia","VA",45647 +2020-08-01,"Electric Power Consumption","Arkansas","AR",16615 +2020-08-01,"Electric Power Consumption","Texas","TX",208324 +2020-08-01,"Electric Power Consumption","Hawaii","HI",NA +2020-08-01,"Electric Power Consumption","Connecticut","CT",15733 +2020-08-01,"Electric Power Consumption","South Carolina","SC",18434 +2020-08-01,"Electric Power Consumption","New York","NY",53369 +2020-08-01,"Electric Power Consumption","West Virginia","WV",2380 +2020-08-01,"Electric Power Consumption","Missouri","MO",7775 +2020-08-01,"Electric Power Consumption","North Dakota","ND",1481 +2020-08-01,"Electric Power Consumption","Indiana","IN",20982 +2020-08-01,"Electric Power Consumption","Utah","UT",8442 +2020-08-01,"Electric Power Consumption","Oregon","OR",12996 +2020-08-01,"Electric Power Consumption","Illinois","IL",24428 +2020-08-01,"Electric Power Consumption","South Dakota","SD",1198 +2020-08-01,"Electric Power Consumption","Kentucky","KY",10686 +2020-08-01,"Electric Power Consumption","Delaware","DE",5588 +2020-08-01,"Electric Power Consumption","Alaska","AK",1683 +2020-08-01,"Electric Power Consumption","Idaho","ID",3387 +2020-08-01,"Electric Power Consumption","Colorado","CO",16079 +2020-08-01,"Electric Power Consumption","Kansas","KS",2434 +2020-08-01,"Electric Power Consumption","Nevada","NV",24034 +2020-08-01,"Electric Power Consumption","Wyoming","WY",1442 +2020-08-01,"Electric Power Consumption","Mississippi","MS",41639 +2020-08-01,"Electric Power Consumption","Ohio","OH",34419 +2020-08-01,"Electric Power Consumption","Montana","MT",329 +2020-08-01,"Electric Power Consumption","Arizona","AZ",44619 +2020-08-01,"Electric Power Consumption","New Mexico","NM",11505 +2020-08-01,"Electric Power Consumption","New Jersey","NJ",27992 +2020-08-01,"Electric Power Consumption","Rhode Island","RI",6377 +2020-08-01,"Electric Power Consumption","Wisconsin","WI",17183 +2020-08-01,"Electric Power Consumption","Tennessee","TN",9266 +2020-08-01,"Electric Power Consumption","Nebraska","NE",1162 +2020-08-01,"Electric Power Consumption","Maryland","MD",9322 +2020-08-01,"Industrial Consumption","South Dakota","SD",3800 +2020-08-01,"Industrial Consumption","Ohio","OH",20354 +2020-08-01,"Industrial Consumption","New York","NY",5895 +2020-08-01,"Industrial Consumption","Texas","TX",149305 +2020-08-01,"Industrial Consumption","Wisconsin","WI",9705 +2020-08-01,"Industrial Consumption","New Jersey","NJ",5195 +2020-08-01,"Industrial Consumption","Connecticut","CT",1667 +2020-08-01,"Industrial Consumption","District of Columbia","DC",NA +2020-08-01,"Industrial Consumption","Massachusetts","MA",2452 +2020-08-01,"Industrial Consumption","Oklahoma","OK",17562 +2020-08-01,"Industrial Consumption","New Mexico","NM",1506 +2020-08-01,"Industrial Consumption","Oregon","OR",4280 +2020-08-01,"Industrial Consumption","Nevada","NV",1740 +2020-08-01,"Industrial Consumption","Vermont","VT",157 +2020-08-01,"Industrial Consumption","Florida","FL",10075 +2020-08-01,"Industrial Consumption","Colorado","CO",5081 +2020-08-01,"Industrial Consumption","Utah","UT",3241 +2020-08-01,"Industrial Consumption","Mississippi","MS",9952 +2020-08-01,"Industrial Consumption","California","CA",61321 +2020-08-01,"Industrial Consumption","Alabama","AL",16944 +2020-08-01,"Industrial Consumption","Wyoming","WY",4406 +2020-08-01,"Industrial Consumption","Minnesota","MN",9403 +2020-08-01,"Industrial Consumption","Delaware","DE",2473 +2020-08-01,"Industrial Consumption","Georgia","GA",12904 +2020-08-01,"Industrial Consumption","Alaska","AK",558 +2020-08-01,"Industrial Consumption","North Dakota","ND",3227 +2020-08-01,"Industrial Consumption","Arizona","AZ",1330 +2020-08-01,"Industrial Consumption","U.S.","U.S.",649041 +2020-08-01,"Industrial Consumption","Maine","ME",1689 +2020-08-01,"Industrial Consumption","South Carolina","SC",7649 +2020-08-01,"Industrial Consumption","Kentucky","KY",9142 +2020-08-01,"Industrial Consumption","Virginia","VA",10189 +2020-08-01,"Industrial Consumption","West Virginia","WV",2933 +2020-08-01,"Industrial Consumption","Hawaii","HI",6 +2020-08-01,"Industrial Consumption","Missouri","MO",4583 +2020-08-01,"Industrial Consumption","Nebraska","NE",8353 +2020-08-01,"Industrial Consumption","New Hampshire","NH",685 +2020-08-01,"Industrial Consumption","Rhode Island","RI",638 +2020-08-01,"Industrial Consumption","Louisiana","LA",97251 +2020-08-01,"Industrial Consumption","Kansas","KS",11697 +2020-08-01,"Industrial Consumption","Pennsylvania","PA",15400 +2020-08-01,"Industrial Consumption","Arkansas","AR",7512 +2020-08-01,"Industrial Consumption","Tennessee","TN",11581 +2020-08-01,"Industrial Consumption","Idaho","ID",2571 +2020-08-01,"Industrial Consumption","Iowa","IA",18047 +2020-08-01,"Industrial Consumption","Indiana","IN",28515 +2020-08-01,"Industrial Consumption","Montana","MT",1807 +2020-08-01,"Industrial Consumption","Maryland","MD",1475 +2020-08-01,"Industrial Consumption","Washington","WA",5970 +2020-08-01,"Industrial Consumption","Michigan","MI",10233 +2020-08-01,"Industrial Consumption","Illinois","IL",17736 +2020-08-01,"Industrial Consumption","North Carolina","NC",8845 +2020-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",150524 +2020-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",79755 +2020-08-01,"Residential Consumption","Oregon","OR",999 +2020-08-01,"Residential Consumption","Iowa","IA",1115 +2020-08-01,"Residential Consumption","Nevada","NV",1323 +2020-08-01,"Residential Consumption","Wyoming","WY",169 +2020-08-01,"Residential Consumption","West Virginia","WV",318 +2020-08-01,"Residential Consumption","Mississippi","MS",553 +2020-08-01,"Residential Consumption","Wisconsin","WI",2489 +2020-08-01,"Residential Consumption","Tennessee","TN",1130 +2020-08-01,"Residential Consumption","Nebraska","NE",758 +2020-08-01,"Residential Consumption","Georgia","GA",4020 +2020-08-01,"Residential Consumption","Pennsylvania","PA",3924 +2020-08-01,"Residential Consumption","North Dakota","ND",194 +2020-08-01,"Residential Consumption","Missouri","MO",1841 +2020-08-01,"Residential Consumption","U.S.","U.S.",108827 +2020-08-01,"Residential Consumption","South Carolina","SC",498 +2020-08-01,"Residential Consumption","Rhode Island","RI",433 +2020-08-01,"Residential Consumption","Louisiana","LA",1197 +2020-08-01,"Residential Consumption","Massachusetts","MA",2158 +2020-08-01,"Residential Consumption","Ohio","OH",5137 +2020-08-01,"Residential Consumption","North Carolina","NC",1107 +2020-08-01,"Residential Consumption","Virginia","VA",1651 +2020-08-01,"Residential Consumption","South Dakota","SD",212 +2020-08-01,"Residential Consumption","Kentucky","KY",725 +2020-08-01,"Residential Consumption","Kansas","KS",1092 +2020-08-01,"Residential Consumption","New York","NY",10365 +2020-08-01,"Residential Consumption","Connecticut","CT",1034 +2020-08-01,"Residential Consumption","Utah","UT",1831 +2020-08-01,"Residential Consumption","Colorado","CO",2875 +2020-08-01,"Residential Consumption","Vermont","VT",82 +2020-08-01,"Residential Consumption","New Mexico","NM",966 +2020-08-01,"Residential Consumption","Idaho","ID",610 +2020-08-01,"Residential Consumption","New Hampshire","NH",149 +2020-08-01,"Residential Consumption","Oklahoma","OK",1291 +2020-08-01,"Residential Consumption","Illinois","IL",7704 +2020-08-01,"Residential Consumption","Michigan","MI",5328 +2020-08-01,"Residential Consumption","Maryland","MD",1373 +2020-08-01,"Residential Consumption","Maine","ME",55 +2020-08-01,"Residential Consumption","Indiana","IN",2236 +2020-08-01,"Residential Consumption","Montana","MT",409 +2020-08-01,"Residential Consumption","Washington","WA",2035 +2020-08-01,"Residential Consumption","Arizona","AZ",1153 +2020-08-01,"Residential Consumption","Alabama","AL",693 +2020-08-01,"Residential Consumption","Texas","TX",6348 +2020-08-01,"Residential Consumption","Hawaii","HI",50 +2020-08-01,"Residential Consumption","Minnesota","MN",2498 +2020-08-01,"Residential Consumption","District of Columbia","DC",237 +2020-08-01,"Residential Consumption","Florida","FL",900 +2020-08-01,"Residential Consumption","Arkansas","AR",498 +2020-08-01,"Residential Consumption","New Jersey","NJ",4644 +2020-08-01,"Residential Consumption","Delaware","DE",172 +2020-08-01,"Residential Consumption","California","CA",19700 +2020-08-01,"Residential Consumption","Alaska","AK",549 +2020-08-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-08-01,"Vehicle Fuel Consumption","Utah","UT",23 +2020-08-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-08-01,"Vehicle Fuel Consumption","Nevada","NV",96 +2020-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-08-01,"Vehicle Fuel Consumption","North Carolina","NC",138 +2020-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",139 +2020-08-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-08-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2020-08-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-08-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-08-01,"Vehicle Fuel Consumption","Georgia","GA",134 +2020-08-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2020-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-08-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-08-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2020-08-01,"Vehicle Fuel Consumption","Ohio","OH",97 +2020-08-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-08-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-08-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2020-08-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2020-08-01,"Vehicle Fuel Consumption","Kansas","KS",65 +2020-08-01,"Vehicle Fuel Consumption","Texas","TX",94 +2020-08-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-08-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-08-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2020-08-01,"Vehicle Fuel Consumption","Louisiana","LA",104 +2020-08-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-08-01,"Vehicle Fuel Consumption","Colorado","CO",80 +2020-08-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2020-08-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-08-01,"Vehicle Fuel Consumption","Virginia","VA",53 +2020-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",19 +2020-08-01,"Vehicle Fuel Consumption","Florida","FL",443 +2020-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-08-01,"Vehicle Fuel Consumption","California","CA",1981 +2020-08-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2020-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",4162 +2020-08-01,"Vehicle Fuel Consumption","New York","NY",78 +2020-08-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2020-08-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2020-08-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2020-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",135 +2020-08-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-08-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-09-01,"Commercial Consumption","Washington","WA",2193 +2020-09-01,"Commercial Consumption","North Carolina","NC",2687 +2020-09-01,"Commercial Consumption","Colorado","CO",2108 +2020-09-01,"Commercial Consumption","Massachusetts","MA",4390 +2020-09-01,"Commercial Consumption","New Jersey","NJ",5436 +2020-09-01,"Commercial Consumption","Montana","MT",1066 +2020-09-01,"Commercial Consumption","Georgia","GA",2204 +2020-09-01,"Commercial Consumption","Arkansas","AR",3008 +2020-09-01,"Commercial Consumption","South Carolina","SC",1424 +2020-09-01,"Commercial Consumption","New Mexico","NM",1250 +2020-09-01,"Commercial Consumption","Kentucky","KY",1178 +2020-09-01,"Commercial Consumption","Maryland","MD",3880 +2020-09-01,"Commercial Consumption","Vermont","VT",347 +2020-09-01,"Commercial Consumption","Alaska","AK",749 +2020-09-01,"Commercial Consumption","Mississippi","MS",934 +2020-09-01,"Commercial Consumption","Arizona","AZ",1856 +2020-09-01,"Commercial Consumption","West Virginia","WV",1039 +2020-09-01,"Commercial Consumption","New Hampshire","NH",286 +2020-09-01,"Commercial Consumption","Maine","ME",319 +2020-09-01,"Commercial Consumption","U.S.","U.S.",143702 +2020-09-01,"Commercial Consumption","Kansas","KS",1826 +2020-09-01,"Commercial Consumption","Nebraska","NE",1193 +2020-09-01,"Commercial Consumption","Nevada","NV",1326 +2020-09-01,"Commercial Consumption","Indiana","IN",3556 +2020-09-01,"Commercial Consumption","North Dakota","ND",409 +2020-09-01,"Commercial Consumption","Wisconsin","WI",3183 +2020-09-01,"Commercial Consumption","Iowa","IA",1941 +2020-09-01,"Commercial Consumption","Connecticut","CT",2354 +2020-09-01,"Commercial Consumption","Tennessee","TN",2333 +2020-09-01,"Commercial Consumption","Pennsylvania","PA",5518 +2020-09-01,"Commercial Consumption","District of Columbia","DC",990 +2020-09-01,"Commercial Consumption","Wyoming","WY",538 +2020-09-01,"Commercial Consumption","Virginia","VA",3331 +2020-09-01,"Commercial Consumption","New York","NY",13227 +2020-09-01,"Commercial Consumption","Delaware","DE",810 +2020-09-01,"Commercial Consumption","Michigan","MI",5817 +2020-09-01,"Commercial Consumption","Louisiana","LA",2183 +2020-09-01,"Commercial Consumption","Oklahoma","OK",1742 +2020-09-01,"Commercial Consumption","Missouri","MO",2357 +2020-09-01,"Commercial Consumption","Florida","FL",4085 +2020-09-01,"Commercial Consumption","Rhode Island","RI",282 +2020-09-01,"Commercial Consumption","Ohio","OH",4773 +2020-09-01,"Commercial Consumption","Hawaii","HI",118 +2020-09-01,"Commercial Consumption","Minnesota","MN",3122 +2020-09-01,"Commercial Consumption","Utah","UT",1473 +2020-09-01,"Commercial Consumption","Oregon","OR",948 +2020-09-01,"Commercial Consumption","South Dakota","SD",376 +2020-09-01,"Commercial Consumption","Texas","TX",10518 +2020-09-01,"Commercial Consumption","Idaho","ID",923 +2020-09-01,"Commercial Consumption","California","CA",15965 +2020-09-01,"Commercial Consumption","Alabama","AL",1695 +2020-09-01,"Commercial Consumption","Illinois","IL",8436 +2020-09-01,"Delivered to Consumers","U.S.","U.S.",1934240 +2020-09-01,"Delivered to Consumers","Hawaii","HI",169 +2020-09-01,"Delivered to Consumers","Pennsylvania","PA",103891 +2020-09-01,"Delivered to Consumers","Colorado","CO",24255 +2020-09-01,"Delivered to Consumers","Illinois","IL",52006 +2020-09-01,"Delivered to Consumers","Maryland","MD",14344 +2020-09-01,"Delivered to Consumers","Kentucky","KY",15733 +2020-09-01,"Delivered to Consumers","Connecticut","CT",18229 +2020-09-01,"Delivered to Consumers","Wisconsin","WI",27808 +2020-09-01,"Delivered to Consumers","California","CA",166985 +2020-09-01,"Delivered to Consumers","Maine","ME",2445 +2020-09-01,"Delivered to Consumers","Delaware","DE",5901 +2020-09-01,"Delivered to Consumers","Rhode Island","RI",7515 +2020-09-01,"Delivered to Consumers","Montana","MT",3591 +2020-09-01,"Delivered to Consumers","Oklahoma","OK",49564 +2020-09-01,"Delivered to Consumers","Michigan","MI",47177 +2020-09-01,"Delivered to Consumers","Alabama","AL",54759 +2020-09-01,"Delivered to Consumers","North Carolina","NC",36779 +2020-09-01,"Delivered to Consumers","Texas","TX",322206 +2020-09-01,"Delivered to Consumers","New Jersey","NJ",33698 +2020-09-01,"Delivered to Consumers","Arizona","AZ",43502 +2020-09-01,"Delivered to Consumers","Minnesota","MN",21218 +2020-09-01,"Delivered to Consumers","South Dakota","SD",4853 +2020-09-01,"Delivered to Consumers","Idaho","ID",8106 +2020-09-01,"Delivered to Consumers","Virginia","VA",53183 +2020-09-01,"Delivered to Consumers","Oregon","OR",20146 +2020-09-01,"Delivered to Consumers","Nevada","NV",25332 +2020-09-01,"Delivered to Consumers","Washington","WA",23118 +2020-09-01,"Delivered to Consumers","New Hampshire","NH",4217 +2020-09-01,"Delivered to Consumers","District of Columbia","DC",1335 +2020-09-01,"Delivered to Consumers","Wyoming","WY",5634 +2020-09-01,"Delivered to Consumers","Ohio","OH",59591 +2020-09-01,"Delivered to Consumers","Mississippi","MS",43144 +2020-09-01,"Delivered to Consumers","South Carolina","SC",25092 +2020-09-01,"Delivered to Consumers","Florida","FL",138354 +2020-09-01,"Delivered to Consumers","Utah","UT",13888 +2020-09-01,"Delivered to Consumers","Vermont","VT",618 +2020-09-01,"Delivered to Consumers","Alaska","AK",3771 +2020-09-01,"Delivered to Consumers","Missouri","MO",14822 +2020-09-01,"Delivered to Consumers","Massachusetts","MA",18231 +2020-09-01,"Delivered to Consumers","Georgia","GA",52014 +2020-09-01,"Delivered to Consumers","Indiana","IN",52119 +2020-09-01,"Delivered to Consumers","West Virginia","WV",5431 +2020-09-01,"Delivered to Consumers","New York","NY",70397 +2020-09-01,"Delivered to Consumers","Kansas","KS",14709 +2020-09-01,"Delivered to Consumers","Nebraska","NE",10745 +2020-09-01,"Delivered to Consumers","Louisiana","LA",127791 +2020-09-01,"Delivered to Consumers","New Mexico","NM",13489 +2020-09-01,"Delivered to Consumers","Tennessee","TN",23987 +2020-09-01,"Delivered to Consumers","Iowa","IA",24447 +2020-09-01,"Delivered to Consumers","Arkansas","AR",19198 +2020-09-01,"Delivered to Consumers","North Dakota","ND",4702 +2020-09-01,"Electric Power Consumption","Utah","UT",7107 +2020-09-01,"Electric Power Consumption","Oregon","OR",13976 +2020-09-01,"Electric Power Consumption","Wisconsin","WI",10906 +2020-09-01,"Electric Power Consumption","New Hampshire","NH",3044 +2020-09-01,"Electric Power Consumption","Louisiana","LA",29384 +2020-09-01,"Electric Power Consumption","Oklahoma","OK",28848 +2020-09-01,"Electric Power Consumption","Minnesota","MN",4505 +2020-09-01,"Electric Power Consumption","Nevada","NV",20614 +2020-09-01,"Electric Power Consumption","Iowa","IA",2779 +2020-09-01,"Electric Power Consumption","Hawaii","HI",NA +2020-09-01,"Electric Power Consumption","Indiana","IN",16410 +2020-09-01,"Electric Power Consumption","Idaho","ID",3332 +2020-09-01,"Electric Power Consumption","Rhode Island","RI",6091 +2020-09-01,"Electric Power Consumption","Michigan","MI",21886 +2020-09-01,"Electric Power Consumption","Massachusetts","MA",8158 +2020-09-01,"Electric Power Consumption","Tennessee","TN",8591 +2020-09-01,"Electric Power Consumption","U.S.","U.S.",1015907 +2020-09-01,"Electric Power Consumption","Nebraska","NE",745 +2020-09-01,"Electric Power Consumption","Missouri","MO",5682 +2020-09-01,"Electric Power Consumption","Ohio","OH",30324 +2020-09-01,"Electric Power Consumption","Delaware","DE",2493 +2020-09-01,"Electric Power Consumption","Alabama","AL",35648 +2020-09-01,"Electric Power Consumption","South Carolina","SC",15578 +2020-09-01,"Electric Power Consumption","Kansas","KS",1275 +2020-09-01,"Electric Power Consumption","Pennsylvania","PA",78356 +2020-09-01,"Electric Power Consumption","Wyoming","WY",541 +2020-09-01,"Electric Power Consumption","North Carolina","NC",23857 +2020-09-01,"Electric Power Consumption","North Dakota","ND",1108 +2020-09-01,"Electric Power Consumption","Arizona","AZ",38874 +2020-09-01,"Electric Power Consumption","California","CA",67755 +2020-09-01,"Electric Power Consumption","New Jersey","NJ",17601 +2020-09-01,"Electric Power Consumption","Arkansas","AR",7937 +2020-09-01,"Electric Power Consumption","Vermont","VT",1 +2020-09-01,"Electric Power Consumption","South Dakota","SD",466 +2020-09-01,"Electric Power Consumption","Connecticut","CT",13244 +2020-09-01,"Electric Power Consumption","Washington","WA",12301 +2020-09-01,"Electric Power Consumption","Colorado","CO",11752 +2020-09-01,"Electric Power Consumption","New York","NY",39594 +2020-09-01,"Electric Power Consumption","West Virginia","WV",1105 +2020-09-01,"Electric Power Consumption","Mississippi","MS",32277 +2020-09-01,"Electric Power Consumption","Alaska","AK",1582 +2020-09-01,"Electric Power Consumption","Virginia","VA",36344 +2020-09-01,"Electric Power Consumption","New Mexico","NM",9585 +2020-09-01,"Electric Power Consumption","Maine","ME",745 +2020-09-01,"Electric Power Consumption","Florida","FL",123513 +2020-09-01,"Electric Power Consumption","Texas","TX",159518 +2020-09-01,"Electric Power Consumption","Illinois","IL",14772 +2020-09-01,"Electric Power Consumption","Kentucky","KY",5181 +2020-09-01,"Electric Power Consumption","Montana","MT",307 +2020-09-01,"Electric Power Consumption","Maryland","MD",7189 +2020-09-01,"Electric Power Consumption","Georgia","GA",33025 +2020-09-01,"Industrial Consumption","Montana","MT",1746 +2020-09-01,"Industrial Consumption","Ohio","OH",18665 +2020-09-01,"Industrial Consumption","New Mexico","NM",1493 +2020-09-01,"Industrial Consumption","Alabama","AL",16411 +2020-09-01,"Industrial Consumption","Indiana","IN",29182 +2020-09-01,"Industrial Consumption","Rhode Island","RI",672 +2020-09-01,"Industrial Consumption","Alaska","AK",552 +2020-09-01,"Industrial Consumption","Colorado","CO",5815 +2020-09-01,"Industrial Consumption","U.S.","U.S.",644071 +2020-09-01,"Industrial Consumption","Texas","TX",145540 +2020-09-01,"Industrial Consumption","Minnesota","MN",10208 +2020-09-01,"Industrial Consumption","Iowa","IA",18169 +2020-09-01,"Industrial Consumption","New York","NY",6096 +2020-09-01,"Industrial Consumption","South Carolina","SC",7432 +2020-09-01,"Industrial Consumption","Maryland","MD",1463 +2020-09-01,"Industrial Consumption","Washington","WA",6264 +2020-09-01,"Industrial Consumption","Arizona","AZ",1333 +2020-09-01,"Industrial Consumption","Utah","UT",3266 +2020-09-01,"Industrial Consumption","Virginia","VA",11608 +2020-09-01,"Industrial Consumption","Florida","FL",9440 +2020-09-01,"Industrial Consumption","North Carolina","NC",8673 +2020-09-01,"Industrial Consumption","North Dakota","ND",2963 +2020-09-01,"Industrial Consumption","Hawaii","HI",6 +2020-09-01,"Industrial Consumption","Mississippi","MS",9372 +2020-09-01,"Industrial Consumption","West Virginia","WV",2782 +2020-09-01,"Industrial Consumption","Wisconsin","WI",10435 +2020-09-01,"Industrial Consumption","Tennessee","TN",11771 +2020-09-01,"Industrial Consumption","New Hampshire","NH",689 +2020-09-01,"Industrial Consumption","Idaho","ID",3031 +2020-09-01,"Industrial Consumption","Michigan","MI",11367 +2020-09-01,"Industrial Consumption","Illinois","IL",19746 +2020-09-01,"Industrial Consumption","Georgia","GA",12323 +2020-09-01,"Industrial Consumption","Missouri","MO",4662 +2020-09-01,"Industrial Consumption","South Dakota","SD",3736 +2020-09-01,"Industrial Consumption","Pennsylvania","PA",15294 +2020-09-01,"Industrial Consumption","Vermont","VT",162 +2020-09-01,"Industrial Consumption","Oklahoma","OK",17350 +2020-09-01,"Industrial Consumption","Louisiana","LA",94643 +2020-09-01,"Industrial Consumption","Kansas","KS",10121 +2020-09-01,"Industrial Consumption","Oregon","OR",4062 +2020-09-01,"Industrial Consumption","Nevada","NV",1758 +2020-09-01,"Industrial Consumption","Maine","ME",1311 +2020-09-01,"Industrial Consumption","California","CA",62461 +2020-09-01,"Industrial Consumption","Arkansas","AR",7674 +2020-09-01,"Industrial Consumption","Wyoming","WY",4178 +2020-09-01,"Industrial Consumption","New Jersey","NJ",5236 +2020-09-01,"Industrial Consumption","Connecticut","CT",1517 +2020-09-01,"Industrial Consumption","Kentucky","KY",8473 +2020-09-01,"Industrial Consumption","Delaware","DE",2389 +2020-09-01,"Industrial Consumption","District of Columbia","DC",NA +2020-09-01,"Industrial Consumption","Massachusetts","MA",2573 +2020-09-01,"Industrial Consumption","Nebraska","NE",7956 +2020-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",145826 +2020-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",71114 +2020-09-01,"Residential Consumption","Mississippi","MS",560 +2020-09-01,"Residential Consumption","Michigan","MI",8106 +2020-09-01,"Residential Consumption","District of Columbia","DC",327 +2020-09-01,"Residential Consumption","North Dakota","ND",223 +2020-09-01,"Residential Consumption","Massachusetts","MA",3102 +2020-09-01,"Residential Consumption","Colorado","CO",4503 +2020-09-01,"Residential Consumption","Oklahoma","OK",1490 +2020-09-01,"Residential Consumption","Nevada","NV",1541 +2020-09-01,"Residential Consumption","Georgia","GA",4332 +2020-09-01,"Residential Consumption","Missouri","MO",2107 +2020-09-01,"Residential Consumption","Delaware","DE",209 +2020-09-01,"Residential Consumption","California","CA",18887 +2020-09-01,"Residential Consumption","Arizona","AZ",1273 +2020-09-01,"Residential Consumption","U.S.","U.S.",126533 +2020-09-01,"Residential Consumption","Rhode Island","RI",462 +2020-09-01,"Residential Consumption","Vermont","VT",108 +2020-09-01,"Residential Consumption","Virginia","VA",1849 +2020-09-01,"Residential Consumption","Kansas","KS",1423 +2020-09-01,"Residential Consumption","Alabama","AL",999 +2020-09-01,"Residential Consumption","South Carolina","SC",648 +2020-09-01,"Residential Consumption","Ohio","OH",5735 +2020-09-01,"Residential Consumption","South Dakota","SD",276 +2020-09-01,"Residential Consumption","Minnesota","MN",3348 +2020-09-01,"Residential Consumption","Kentucky","KY",897 +2020-09-01,"Residential Consumption","New York","NY",11404 +2020-09-01,"Residential Consumption","Oregon","OR",1156 +2020-09-01,"Residential Consumption","Tennessee","TN",1262 +2020-09-01,"Residential Consumption","Nebraska","NE",838 +2020-09-01,"Residential Consumption","New Jersey","NJ",5402 +2020-09-01,"Residential Consumption","Wyoming","WY",376 +2020-09-01,"Residential Consumption","Iowa","IA",1556 +2020-09-01,"Residential Consumption","Wisconsin","WI",3246 +2020-09-01,"Residential Consumption","Maryland","MD",1789 +2020-09-01,"Residential Consumption","Maine","ME",69 +2020-09-01,"Residential Consumption","New Hampshire","NH",197 +2020-09-01,"Residential Consumption","Hawaii","HI",46 +2020-09-01,"Residential Consumption","Connecticut","CT",1097 +2020-09-01,"Residential Consumption","Utah","UT",2019 +2020-09-01,"Residential Consumption","Pennsylvania","PA",4592 +2020-09-01,"Residential Consumption","West Virginia","WV",505 +2020-09-01,"Residential Consumption","Texas","TX",6539 +2020-09-01,"Residential Consumption","North Carolina","NC",1427 +2020-09-01,"Residential Consumption","Louisiana","LA",1480 +2020-09-01,"Residential Consumption","New Mexico","NM",1130 +2020-09-01,"Residential Consumption","Indiana","IN",2970 +2020-09-01,"Residential Consumption","Florida","FL",887 +2020-09-01,"Residential Consumption","Idaho","ID",816 +2020-09-01,"Residential Consumption","Arkansas","AR",573 +2020-09-01,"Residential Consumption","Montana","MT",472 +2020-09-01,"Residential Consumption","Washington","WA",2350 +2020-09-01,"Residential Consumption","Alaska","AK",887 +2020-09-01,"Residential Consumption","Illinois","IL",9044 +2020-09-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-09-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2020-09-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2020-09-01,"Vehicle Fuel Consumption","Maryland","MD",22 +2020-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-09-01,"Vehicle Fuel Consumption","New Mexico","NM",31 +2020-09-01,"Vehicle Fuel Consumption","Vermont","VT",1 +2020-09-01,"Vehicle Fuel Consumption","New York","NY",76 +2020-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",135 +2020-09-01,"Vehicle Fuel Consumption","Kansas","KS",63 +2020-09-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-09-01,"Vehicle Fuel Consumption","Louisiana","LA",101 +2020-09-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-09-01,"Vehicle Fuel Consumption","California","CA",1917 +2020-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",4028 +2020-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",18 +2020-09-01,"Vehicle Fuel Consumption","Florida","FL",429 +2020-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-09-01,"Vehicle Fuel Consumption","Texas","TX",91 +2020-09-01,"Vehicle Fuel Consumption","Georgia","GA",130 +2020-09-01,"Vehicle Fuel Consumption","Utah","UT",22 +2020-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2020-09-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-09-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-09-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-09-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-09-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-09-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2020-09-01,"Vehicle Fuel Consumption","Virginia","VA",51 +2020-09-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-09-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2020-09-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-09-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-09-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-09-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2020-09-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2020-09-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",131 +2020-09-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-09-01,"Vehicle Fuel Consumption","Colorado","CO",77 +2020-09-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2020-09-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-09-01,"Vehicle Fuel Consumption","Nevada","NV",93 +2020-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-09-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2020-09-01,"Vehicle Fuel Consumption","Minnesota","MN",35 +2020-10-01,"Commercial Consumption","North Dakota","ND",1217 +2020-10-01,"Commercial Consumption","Indiana","IN",5942 +2020-10-01,"Commercial Consumption","District of Columbia","DC",807 +2020-10-01,"Commercial Consumption","Wyoming","WY",562 +2020-10-01,"Commercial Consumption","West Virginia","WV",1475 +2020-10-01,"Commercial Consumption","North Carolina","NC",2996 +2020-10-01,"Commercial Consumption","Utah","UT",1846 +2020-10-01,"Commercial Consumption","New Jersey","NJ",6884 +2020-10-01,"Commercial Consumption","Kentucky","KY",1946 +2020-10-01,"Commercial Consumption","New York","NY",16318 +2020-10-01,"Commercial Consumption","Missouri","MO",3294 +2020-10-01,"Commercial Consumption","Florida","FL",4469 +2020-10-01,"Commercial Consumption","Vermont","VT",475 +2020-10-01,"Commercial Consumption","Ohio","OH",8163 +2020-10-01,"Commercial Consumption","Alaska","AK",1340 +2020-10-01,"Commercial Consumption","Arizona","AZ",2093 +2020-10-01,"Commercial Consumption","Michigan","MI",10504 +2020-10-01,"Commercial Consumption","South Carolina","SC",1610 +2020-10-01,"Commercial Consumption","Minnesota","MN",7521 +2020-10-01,"Commercial Consumption","Maine","ME",490 +2020-10-01,"Commercial Consumption","Idaho","ID",1695 +2020-10-01,"Commercial Consumption","Hawaii","HI",128 +2020-10-01,"Commercial Consumption","Nebraska","NE",1891 +2020-10-01,"Commercial Consumption","Tennessee","TN",3007 +2020-10-01,"Commercial Consumption","Nevada","NV",1661 +2020-10-01,"Commercial Consumption","Oklahoma","OK",2531 +2020-10-01,"Commercial Consumption","Pennsylvania","PA",8011 +2020-10-01,"Commercial Consumption","Arkansas","AR",4190 +2020-10-01,"Commercial Consumption","New Mexico","NM",2024 +2020-10-01,"Commercial Consumption","Massachusetts","MA",7069 +2020-10-01,"Commercial Consumption","U.S.","U.S.",208764 +2020-10-01,"Commercial Consumption","Texas","TX",12978 +2020-10-01,"Commercial Consumption","Rhode Island","RI",318 +2020-10-01,"Commercial Consumption","Connecticut","CT",3700 +2020-10-01,"Commercial Consumption","Oregon","OR",1946 +2020-10-01,"Commercial Consumption","Virginia","VA",4772 +2020-10-01,"Commercial Consumption","Wisconsin","WI",7232 +2020-10-01,"Commercial Consumption","New Hampshire","NH",329 +2020-10-01,"Commercial Consumption","Montana","MT",1917 +2020-10-01,"Commercial Consumption","Maryland","MD",4598 +2020-10-01,"Commercial Consumption","Iowa","IA",4265 +2020-10-01,"Commercial Consumption","California","CA",17954 +2020-10-01,"Commercial Consumption","Alabama","AL",1591 +2020-10-01,"Commercial Consumption","Mississippi","MS",1159 +2020-10-01,"Commercial Consumption","Delaware","DE",1075 +2020-10-01,"Commercial Consumption","Illinois","IL",15674 +2020-10-01,"Commercial Consumption","Washington","WA",4188 +2020-10-01,"Commercial Consumption","Colorado","CO",4266 +2020-10-01,"Commercial Consumption","South Dakota","SD",705 +2020-10-01,"Commercial Consumption","Kansas","KS",2846 +2020-10-01,"Commercial Consumption","Georgia","GA",2677 +2020-10-01,"Commercial Consumption","Louisiana","LA",2414 +2020-10-01,"Delivered to Consumers","Hawaii","HI",182 +2020-10-01,"Delivered to Consumers","Oklahoma","OK",46453 +2020-10-01,"Delivered to Consumers","North Carolina","NC",36826 +2020-10-01,"Delivered to Consumers","New Hampshire","NH",3769 +2020-10-01,"Delivered to Consumers","Indiana","IN",62423 +2020-10-01,"Delivered to Consumers","Ohio","OH",65727 +2020-10-01,"Delivered to Consumers","Michigan","MI",70222 +2020-10-01,"Delivered to Consumers","Wisconsin","WI",44147 +2020-10-01,"Delivered to Consumers","New Jersey","NJ",39971 +2020-10-01,"Delivered to Consumers","North Dakota","ND",6375 +2020-10-01,"Delivered to Consumers","Florida","FL",138075 +2020-10-01,"Delivered to Consumers","Idaho","ID",9037 +2020-10-01,"Delivered to Consumers","Missouri","MO",17970 +2020-10-01,"Delivered to Consumers","Colorado","CO",32681 +2020-10-01,"Delivered to Consumers","California","CA",170666 +2020-10-01,"Delivered to Consumers","Georgia","GA",52101 +2020-10-01,"Delivered to Consumers","Minnesota","MN",34383 +2020-10-01,"Delivered to Consumers","Utah","UT",13068 +2020-10-01,"Delivered to Consumers","New Mexico","NM",13368 +2020-10-01,"Delivered to Consumers","Delaware","DE",5519 +2020-10-01,"Delivered to Consumers","New York","NY",72074 +2020-10-01,"Delivered to Consumers","Kentucky","KY",22217 +2020-10-01,"Delivered to Consumers","Connecticut","CT",19001 +2020-10-01,"Delivered to Consumers","Virginia","VA",48835 +2020-10-01,"Delivered to Consumers","Texas","TX",319233 +2020-10-01,"Delivered to Consumers","District of Columbia","DC",1188 +2020-10-01,"Delivered to Consumers","Illinois","IL",76127 +2020-10-01,"Delivered to Consumers","Rhode Island","RI",5918 +2020-10-01,"Delivered to Consumers","Tennessee","TN",24278 +2020-10-01,"Delivered to Consumers","Arkansas","AR",23715 +2020-10-01,"Delivered to Consumers","Arizona","AZ",41719 +2020-10-01,"Delivered to Consumers","Wyoming","WY",7671 +2020-10-01,"Delivered to Consumers","South Dakota","SD",5362 +2020-10-01,"Delivered to Consumers","Montana","MT",6140 +2020-10-01,"Delivered to Consumers","Maryland","MD",18441 +2020-10-01,"Delivered to Consumers","Kansas","KS",21799 +2020-10-01,"Delivered to Consumers","Massachusetts","MA",25741 +2020-10-01,"Delivered to Consumers","South Carolina","SC",23426 +2020-10-01,"Delivered to Consumers","Nevada","NV",22948 +2020-10-01,"Delivered to Consumers","U.S.","U.S.",2089532 +2020-10-01,"Delivered to Consumers","West Virginia","WV",8422 +2020-10-01,"Delivered to Consumers","Iowa","IA",31631 +2020-10-01,"Delivered to Consumers","Pennsylvania","PA",103487 +2020-10-01,"Delivered to Consumers","Nebraska","NE",14064 +2020-10-01,"Delivered to Consumers","Maine","ME",2927 +2020-10-01,"Delivered to Consumers","Louisiana","LA",132779 +2020-10-01,"Delivered to Consumers","Vermont","VT",802 +2020-10-01,"Delivered to Consumers","Alaska","AK",5061 +2020-10-01,"Delivered to Consumers","Alabama","AL",51251 +2020-10-01,"Delivered to Consumers","Mississippi","MS",41321 +2020-10-01,"Delivered to Consumers","Oregon","OR",22150 +2020-10-01,"Delivered to Consumers","Washington","WA",26843 +2020-10-01,"Electric Power Consumption","Oklahoma","OK",23665 +2020-10-01,"Electric Power Consumption","Wyoming","WY",518 +2020-10-01,"Electric Power Consumption","South Dakota","SD",291 +2020-10-01,"Electric Power Consumption","Maryland","MD",9024 +2020-10-01,"Electric Power Consumption","Connecticut","CT",11161 +2020-10-01,"Electric Power Consumption","Louisiana","LA",31351 +2020-10-01,"Electric Power Consumption","Maine","ME",545 +2020-10-01,"Electric Power Consumption","Hawaii","HI",NA +2020-10-01,"Electric Power Consumption","New Hampshire","NH",2433 +2020-10-01,"Electric Power Consumption","New York","NY",30882 +2020-10-01,"Electric Power Consumption","Texas","TX",141379 +2020-10-01,"Electric Power Consumption","Rhode Island","RI",4419 +2020-10-01,"Electric Power Consumption","U.S.","U.S.",948293 +2020-10-01,"Electric Power Consumption","Nebraska","NE",1111 +2020-10-01,"Electric Power Consumption","Kentucky","KY",8461 +2020-10-01,"Electric Power Consumption","Washington","WA",9172 +2020-10-01,"Electric Power Consumption","Idaho","ID",1871 +2020-10-01,"Electric Power Consumption","Colorado","CO",10951 +2020-10-01,"Electric Power Consumption","Wisconsin","WI",12866 +2020-10-01,"Electric Power Consumption","Vermont","VT",1 +2020-10-01,"Electric Power Consumption","Arizona","AZ",36227 +2020-10-01,"Electric Power Consumption","Georgia","GA",31621 +2020-10-01,"Electric Power Consumption","New Mexico","NM",8107 +2020-10-01,"Electric Power Consumption","South Carolina","SC",12656 +2020-10-01,"Electric Power Consumption","Minnesota","MN",6457 +2020-10-01,"Electric Power Consumption","Illinois","IL",15389 +2020-10-01,"Electric Power Consumption","Pennsylvania","PA",67873 +2020-10-01,"Electric Power Consumption","Iowa","IA",2985 +2020-10-01,"Electric Power Consumption","Tennessee","TN",6886 +2020-10-01,"Electric Power Consumption","Ohio","OH",22118 +2020-10-01,"Electric Power Consumption","Indiana","IN",17468 +2020-10-01,"Electric Power Consumption","Delaware","DE",1304 +2020-10-01,"Electric Power Consumption","Alabama","AL",30365 +2020-10-01,"Electric Power Consumption","Alaska","AK",1371 +2020-10-01,"Electric Power Consumption","New Jersey","NJ",19446 +2020-10-01,"Electric Power Consumption","Mississippi","MS",29778 +2020-10-01,"Electric Power Consumption","Virginia","VA",31850 +2020-10-01,"Electric Power Consumption","Utah","UT",5661 +2020-10-01,"Electric Power Consumption","Kansas","KS",3460 +2020-10-01,"Electric Power Consumption","West Virginia","WV",2883 +2020-10-01,"Electric Power Consumption","North Carolina","NC",21833 +2020-10-01,"Electric Power Consumption","Missouri","MO",5281 +2020-10-01,"Electric Power Consumption","Montana","MT",293 +2020-10-01,"Electric Power Consumption","Florida","FL",121615 +2020-10-01,"Electric Power Consumption","California","CA",70033 +2020-10-01,"Electric Power Consumption","Arkansas","AR",10062 +2020-10-01,"Electric Power Consumption","Oregon","OR",12544 +2020-10-01,"Electric Power Consumption","Michigan","MI",24164 +2020-10-01,"Electric Power Consumption","Massachusetts","MA",9904 +2020-10-01,"Electric Power Consumption","Nevada","NV",17393 +2020-10-01,"Electric Power Consumption","North Dakota","ND",1164 +2020-10-01,"Industrial Consumption","Mississippi","MS",9527 +2020-10-01,"Industrial Consumption","Maine","ME",1753 +2020-10-01,"Industrial Consumption","Arkansas","AR",8253 +2020-10-01,"Industrial Consumption","Wyoming","WY",6113 +2020-10-01,"Industrial Consumption","Alaska","AK",670 +2020-10-01,"Industrial Consumption","Pennsylvania","PA",17670 +2020-10-01,"Industrial Consumption","Tennessee","TN",12240 +2020-10-01,"Industrial Consumption","Florida","FL",10497 +2020-10-01,"Industrial Consumption","Connecticut","CT",1694 +2020-10-01,"Industrial Consumption","Indiana","IN",31359 +2020-10-01,"Industrial Consumption","Delaware","DE",2788 +2020-10-01,"Industrial Consumption","Rhode Island","RI",626 +2020-10-01,"Industrial Consumption","Georgia","GA",12170 +2020-10-01,"Industrial Consumption","North Dakota","ND",3060 +2020-10-01,"Industrial Consumption","Washington","WA",7039 +2020-10-01,"Industrial Consumption","Kansas","KS",10943 +2020-10-01,"Industrial Consumption","Utah","UT",2962 +2020-10-01,"Industrial Consumption","New York","NY",7125 +2020-10-01,"Industrial Consumption","Nebraska","NE",9447 +2020-10-01,"Industrial Consumption","New Jersey","NJ",4607 +2020-10-01,"Industrial Consumption","Iowa","IA",20209 +2020-10-01,"Industrial Consumption","Alabama","AL",18182 +2020-10-01,"Industrial Consumption","West Virginia","WV",2982 +2020-10-01,"Industrial Consumption","New Hampshire","NH",767 +2020-10-01,"Industrial Consumption","Illinois","IL",20770 +2020-10-01,"Industrial Consumption","Montana","MT",2289 +2020-10-01,"Industrial Consumption","Oklahoma","OK",18293 +2020-10-01,"Industrial Consumption","Louisiana","LA",96985 +2020-10-01,"Industrial Consumption","Colorado","CO",7160 +2020-10-01,"Industrial Consumption","South Dakota","SD",3711 +2020-10-01,"Industrial Consumption","Arizona","AZ",1531 +2020-10-01,"Industrial Consumption","California","CA",57694 +2020-10-01,"Industrial Consumption","South Carolina","SC",8214 +2020-10-01,"Industrial Consumption","Michigan","MI",13929 +2020-10-01,"Industrial Consumption","North Carolina","NC",9789 +2020-10-01,"Industrial Consumption","Maryland","MD",1511 +2020-10-01,"Industrial Consumption","Massachusetts","MA",3326 +2020-10-01,"Industrial Consumption","Hawaii","HI",7 +2020-10-01,"Industrial Consumption","Ohio","OH",22899 +2020-10-01,"Industrial Consumption","New Mexico","NM",1524 +2020-10-01,"Industrial Consumption","Nevada","NV",1743 +2020-10-01,"Industrial Consumption","Minnesota","MN",10973 +2020-10-01,"Industrial Consumption","Kentucky","KY",9711 +2020-10-01,"Industrial Consumption","U.S.","U.S.",686516 +2020-10-01,"Industrial Consumption","Oregon","OR",4747 +2020-10-01,"Industrial Consumption","Texas","TX",155502 +2020-10-01,"Industrial Consumption","Vermont","VT",168 +2020-10-01,"Industrial Consumption","Idaho","ID",3572 +2020-10-01,"Industrial Consumption","District of Columbia","DC",NA +2020-10-01,"Industrial Consumption","Missouri","MO",5484 +2020-10-01,"Industrial Consumption","Virginia","VA",8867 +2020-10-01,"Industrial Consumption","Wisconsin","WI",13432 +2020-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",149537 +2020-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",76824 +2020-10-01,"Residential Consumption","South Dakota","SD",655 +2020-10-01,"Residential Consumption","District of Columbia","DC",362 +2020-10-01,"Residential Consumption","Indiana","IN",7653 +2020-10-01,"Residential Consumption","Delaware","DE",351 +2020-10-01,"Residential Consumption","Alabama","AL",1107 +2020-10-01,"Residential Consumption","Wyoming","WY",478 +2020-10-01,"Residential Consumption","Iowa","IA",4170 +2020-10-01,"Residential Consumption","Massachusetts","MA",5435 +2020-10-01,"Residential Consumption","Arizona","AZ",1696 +2020-10-01,"Residential Consumption","Mississippi","MS",857 +2020-10-01,"Residential Consumption","Tennessee","TN",2113 +2020-10-01,"Residential Consumption","Maryland","MD",3284 +2020-10-01,"Residential Consumption","Nevada","NV",2056 +2020-10-01,"Residential Consumption","Minnesota","MN",9396 +2020-10-01,"Residential Consumption","Pennsylvania","PA",9798 +2020-10-01,"Residential Consumption","Idaho","ID",1895 +2020-10-01,"Residential Consumption","West Virginia","WV",1081 +2020-10-01,"Residential Consumption","Rhode Island","RI",547 +2020-10-01,"Residential Consumption","Washington","WA",6433 +2020-10-01,"Residential Consumption","California","CA",23004 +2020-10-01,"Residential Consumption","U.S.","U.S.",241797 +2020-10-01,"Residential Consumption","Ohio","OH",12450 +2020-10-01,"Residential Consumption","Connecticut","CT",2428 +2020-10-01,"Residential Consumption","Vermont","VT",156 +2020-10-01,"Residential Consumption","Michigan","MI",21624 +2020-10-01,"Residential Consumption","Arkansas","AR",1203 +2020-10-01,"Residential Consumption","New Jersey","NJ",9011 +2020-10-01,"Residential Consumption","Montana","MT",1640 +2020-10-01,"Residential Consumption","Missouri","MO",3895 +2020-10-01,"Residential Consumption","Alaska","AK",1679 +2020-10-01,"Residential Consumption","Texas","TX",9279 +2020-10-01,"Residential Consumption","Oregon","OR",2909 +2020-10-01,"Residential Consumption","Louisiana","LA",1924 +2020-10-01,"Residential Consumption","Wisconsin","WI",10578 +2020-10-01,"Residential Consumption","Virginia","VA",3293 +2020-10-01,"Residential Consumption","Utah","UT",2575 +2020-10-01,"Residential Consumption","Maine","ME",139 +2020-10-01,"Residential Consumption","Kentucky","KY",2097 +2020-10-01,"Residential Consumption","Kansas","KS",4484 +2020-10-01,"Residential Consumption","New York","NY",17671 +2020-10-01,"Residential Consumption","South Carolina","SC",937 +2020-10-01,"Residential Consumption","North Carolina","NC",2069 +2020-10-01,"Residential Consumption","New Mexico","NM",1681 +2020-10-01,"Residential Consumption","Illinois","IL",24285 +2020-10-01,"Residential Consumption","Hawaii","HI",48 +2020-10-01,"Residential Consumption","Nebraska","NE",1602 +2020-10-01,"Residential Consumption","Georgia","GA",5498 +2020-10-01,"Residential Consumption","Florida","FL",1050 +2020-10-01,"Residential Consumption","North Dakota","ND",934 +2020-10-01,"Residential Consumption","New Hampshire","NH",238 +2020-10-01,"Residential Consumption","Colorado","CO",10224 +2020-10-01,"Residential Consumption","Oklahoma","OK",1825 +2020-10-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2020-10-01,"Vehicle Fuel Consumption","Virginia","VA",53 +2020-10-01,"Vehicle Fuel Consumption","Ohio","OH",97 +2020-10-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-10-01,"Vehicle Fuel Consumption","Georgia","GA",134 +2020-10-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2020-10-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-10-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-10-01,"Vehicle Fuel Consumption","Texas","TX",94 +2020-10-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2020-10-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2020-10-01,"Vehicle Fuel Consumption","New York","NY",78 +2020-10-01,"Vehicle Fuel Consumption","Kansas","KS",65 +2020-10-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-10-01,"Vehicle Fuel Consumption","Florida","FL",443 +2020-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-10-01,"Vehicle Fuel Consumption","North Carolina","NC",138 +2020-10-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2020-10-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-10-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-10-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-10-01,"Vehicle Fuel Consumption","Louisiana","LA",104 +2020-10-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-10-01,"Vehicle Fuel Consumption","Utah","UT",23 +2020-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",135 +2020-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",19 +2020-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-10-01,"Vehicle Fuel Consumption","Colorado","CO",80 +2020-10-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2020-10-01,"Vehicle Fuel Consumption","Nevada","NV",96 +2020-10-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",4162 +2020-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2020-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",139 +2020-10-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-10-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2020-10-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-10-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-10-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2020-10-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2020-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-10-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-10-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2020-10-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-10-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-10-01,"Vehicle Fuel Consumption","California","CA",1981 +2020-11-01,"Commercial Consumption","Hawaii","HI",126 +2020-11-01,"Commercial Consumption","California","CA",22621 +2020-11-01,"Commercial Consumption","Nebraska","NE",2950 +2020-11-01,"Commercial Consumption","Delaware","DE",1376 +2020-11-01,"Commercial Consumption","Colorado","CO",6386 +2020-11-01,"Commercial Consumption","Massachusetts","MA",10097 +2020-11-01,"Commercial Consumption","South Dakota","SD",1174 +2020-11-01,"Commercial Consumption","Idaho","ID",2273 +2020-11-01,"Commercial Consumption","South Carolina","SC",2361 +2020-11-01,"Commercial Consumption","New Hampshire","NH",664 +2020-11-01,"Commercial Consumption","U.S.","U.S.",293544 +2020-11-01,"Commercial Consumption","Kansas","KS",3527 +2020-11-01,"Commercial Consumption","New York","NY",26812 +2020-11-01,"Commercial Consumption","Illinois","IL",19214 +2020-11-01,"Commercial Consumption","North Carolina","NC",5253 +2020-11-01,"Commercial Consumption","Virginia","VA",5710 +2020-11-01,"Commercial Consumption","Maine","ME",871 +2020-11-01,"Commercial Consumption","Rhode Island","RI",1040 +2020-11-01,"Commercial Consumption","Alabama","AL",2609 +2020-11-01,"Commercial Consumption","Nevada","NV",2434 +2020-11-01,"Commercial Consumption","Wyoming","WY",1169 +2020-11-01,"Commercial Consumption","Minnesota","MN",10874 +2020-11-01,"Commercial Consumption","New Mexico","NM",2813 +2020-11-01,"Commercial Consumption","Missouri","MO",5490 +2020-11-01,"Commercial Consumption","New Jersey","NJ",11069 +2020-11-01,"Commercial Consumption","Florida","FL",5143 +2020-11-01,"Commercial Consumption","Ohio","OH",15034 +2020-11-01,"Commercial Consumption","Alaska","AK",1897 +2020-11-01,"Commercial Consumption","Tennessee","TN",4704 +2020-11-01,"Commercial Consumption","West Virginia","WV",1974 +2020-11-01,"Commercial Consumption","Pennsylvania","PA",13117 +2020-11-01,"Commercial Consumption","Wisconsin","WI",9021 +2020-11-01,"Commercial Consumption","Montana","MT",2525 +2020-11-01,"Commercial Consumption","Texas","TX",13916 +2020-11-01,"Commercial Consumption","Georgia","GA",4387 +2020-11-01,"Commercial Consumption","Vermont","VT",676 +2020-11-01,"Commercial Consumption","Mississippi","MS",1706 +2020-11-01,"Commercial Consumption","Arizona","AZ",2809 +2020-11-01,"Commercial Consumption","Michigan","MI",14656 +2020-11-01,"Commercial Consumption","North Dakota","ND",1586 +2020-11-01,"Commercial Consumption","Utah","UT",3688 +2020-11-01,"Commercial Consumption","Oklahoma","OK",3826 +2020-11-01,"Commercial Consumption","Kentucky","KY",3086 +2020-11-01,"Commercial Consumption","Arkansas","AR",4702 +2020-11-01,"Commercial Consumption","Indiana","IN",7859 +2020-11-01,"Commercial Consumption","District of Columbia","DC",1311 +2020-11-01,"Commercial Consumption","Washington","WA",6154 +2020-11-01,"Commercial Consumption","Oregon","OR",3423 +2020-11-01,"Commercial Consumption","Maryland","MD",5904 +2020-11-01,"Commercial Consumption","Iowa","IA",4638 +2020-11-01,"Commercial Consumption","Connecticut","CT",4225 +2020-11-01,"Commercial Consumption","Louisiana","LA",2664 +2020-11-01,"Delivered to Consumers","Arkansas","AR",22517 +2020-11-01,"Delivered to Consumers","Virginia","VA",43998 +2020-11-01,"Delivered to Consumers","North Carolina","NC",42589 +2020-11-01,"Delivered to Consumers","Wyoming","WY",8080 +2020-11-01,"Delivered to Consumers","New York","NY",106137 +2020-11-01,"Delivered to Consumers","Iowa","IA",33183 +2020-11-01,"Delivered to Consumers","Alabama","AL",47353 +2020-11-01,"Delivered to Consumers","Nevada","NV",20456 +2020-11-01,"Delivered to Consumers","Arizona","AZ",35624 +2020-11-01,"Delivered to Consumers","North Dakota","ND",7242 +2020-11-01,"Delivered to Consumers","West Virginia","WV",9050 +2020-11-01,"Delivered to Consumers","Vermont","VT",1198 +2020-11-01,"Delivered to Consumers","Illinois","IL",86715 +2020-11-01,"Delivered to Consumers","South Dakota","SD",6955 +2020-11-01,"Delivered to Consumers","Oklahoma","OK",43593 +2020-11-01,"Delivered to Consumers","Kansas","KS",22088 +2020-11-01,"Delivered to Consumers","Tennessee","TN",29329 +2020-11-01,"Delivered to Consumers","Kentucky","KY",25095 +2020-11-01,"Delivered to Consumers","Washington","WA",29170 +2020-11-01,"Delivered to Consumers","Montana","MT",7524 +2020-11-01,"Delivered to Consumers","Mississippi","MS",40941 +2020-11-01,"Delivered to Consumers","California","CA",178428 +2020-11-01,"Delivered to Consumers","Maine","ME",3171 +2020-11-01,"Delivered to Consumers","Florida","FL",116002 +2020-11-01,"Delivered to Consumers","Utah","UT",17620 +2020-11-01,"Delivered to Consumers","Hawaii","HI",177 +2020-11-01,"Delivered to Consumers","Connecticut","CT",21933 +2020-11-01,"Delivered to Consumers","Oregon","OR",25723 +2020-11-01,"Delivered to Consumers","District of Columbia","DC",2316 +2020-11-01,"Delivered to Consumers","U.S.","U.S.",2211466 +2020-11-01,"Delivered to Consumers","Indiana","IN",67975 +2020-11-01,"Delivered to Consumers","Rhode Island","RI",9070 +2020-11-01,"Delivered to Consumers","Alaska","AK",7477 +2020-11-01,"Delivered to Consumers","Wisconsin","WI",44986 +2020-11-01,"Delivered to Consumers","Pennsylvania","PA",102844 +2020-11-01,"Delivered to Consumers","Missouri","MO",24660 +2020-11-01,"Delivered to Consumers","Colorado","CO",39691 +2020-11-01,"Delivered to Consumers","Texas","TX",295234 +2020-11-01,"Delivered to Consumers","New Jersey","NJ",52334 +2020-11-01,"Delivered to Consumers","Louisiana","LA",127666 +2020-11-01,"Delivered to Consumers","New Hampshire","NH",3593 +2020-11-01,"Delivered to Consumers","Delaware","DE",6742 +2020-11-01,"Delivered to Consumers","Idaho","ID",13750 +2020-11-01,"Delivered to Consumers","Michigan","MI",76449 +2020-11-01,"Delivered to Consumers","Nebraska","NE",15360 +2020-11-01,"Delivered to Consumers","Massachusetts","MA",31246 +2020-11-01,"Delivered to Consumers","South Carolina","SC",24951 +2020-11-01,"Delivered to Consumers","Minnesota","MN",42555 +2020-11-01,"Delivered to Consumers","New Mexico","NM",14522 +2020-11-01,"Delivered to Consumers","Maryland","MD",21445 +2020-11-01,"Delivered to Consumers","Ohio","OH",93262 +2020-11-01,"Delivered to Consumers","Georgia","GA",61448 +2020-11-01,"Electric Power Consumption","South Carolina","SC",12001 +2020-11-01,"Electric Power Consumption","Rhode Island","RI",5615 +2020-11-01,"Electric Power Consumption","Kansas","KS",1434 +2020-11-01,"Electric Power Consumption","Pennsylvania","PA",51524 +2020-11-01,"Electric Power Consumption","Nevada","NV",12541 +2020-11-01,"Electric Power Consumption","Tennessee","TN",7409 +2020-11-01,"Electric Power Consumption","Nebraska","NE",498 +2020-11-01,"Electric Power Consumption","Maine","ME",85 +2020-11-01,"Electric Power Consumption","New Hampshire","NH",1634 +2020-11-01,"Electric Power Consumption","Delaware","DE",1608 +2020-11-01,"Electric Power Consumption","New Jersey","NJ",17354 +2020-11-01,"Electric Power Consumption","Arkansas","AR",6059 +2020-11-01,"Electric Power Consumption","Missouri","MO",3586 +2020-11-01,"Electric Power Consumption","Indiana","IN",14359 +2020-11-01,"Electric Power Consumption","California","CA",51814 +2020-11-01,"Electric Power Consumption","Oregon","OR",11284 +2020-11-01,"Electric Power Consumption","Vermont","VT",1 +2020-11-01,"Electric Power Consumption","U.S.","U.S.",772059 +2020-11-01,"Electric Power Consumption","South Dakota","SD",233 +2020-11-01,"Electric Power Consumption","New York","NY",31693 +2020-11-01,"Electric Power Consumption","North Dakota","ND",1079 +2020-11-01,"Electric Power Consumption","Montana","MT",307 +2020-11-01,"Electric Power Consumption","Colorado","CO",9316 +2020-11-01,"Electric Power Consumption","Texas","TX",106204 +2020-11-01,"Electric Power Consumption","Oklahoma","OK",15089 +2020-11-01,"Electric Power Consumption","Illinois","IL",7131 +2020-11-01,"Electric Power Consumption","Ohio","OH",28513 +2020-11-01,"Electric Power Consumption","Maryland","MD",6981 +2020-11-01,"Electric Power Consumption","Connecticut","CT",12042 +2020-11-01,"Electric Power Consumption","Washington","WA",4885 +2020-11-01,"Electric Power Consumption","Idaho","ID",3456 +2020-11-01,"Electric Power Consumption","West Virginia","WV",1825 +2020-11-01,"Electric Power Consumption","Iowa","IA",2575 +2020-11-01,"Electric Power Consumption","Hawaii","HI",NA +2020-11-01,"Electric Power Consumption","Florida","FL",99331 +2020-11-01,"Electric Power Consumption","Alabama","AL",23650 +2020-11-01,"Electric Power Consumption","New Mexico","NM",6859 +2020-11-01,"Electric Power Consumption","Minnesota","MN",4850 +2020-11-01,"Electric Power Consumption","Michigan","MI",18412 +2020-11-01,"Electric Power Consumption","Massachusetts","MA",6545 +2020-11-01,"Electric Power Consumption","Wisconsin","WI",9357 +2020-11-01,"Electric Power Consumption","Wyoming","WY",380 +2020-11-01,"Electric Power Consumption","North Carolina","NC",21320 +2020-11-01,"Electric Power Consumption","Kentucky","KY",7809 +2020-11-01,"Electric Power Consumption","Alaska","AK",2413 +2020-11-01,"Electric Power Consumption","Virginia","VA",25244 +2020-11-01,"Electric Power Consumption","Louisiana","LA",25369 +2020-11-01,"Electric Power Consumption","Utah","UT",4374 +2020-11-01,"Electric Power Consumption","Mississippi","MS",25330 +2020-11-01,"Electric Power Consumption","Arizona","AZ",27920 +2020-11-01,"Electric Power Consumption","Georgia","GA",32761 +2020-11-01,"Industrial Consumption","Maryland","MD",1805 +2020-11-01,"Industrial Consumption","New Mexico","NM",1388 +2020-11-01,"Industrial Consumption","Utah","UT",3409 +2020-11-01,"Industrial Consumption","U.S.","U.S.",701977 +2020-11-01,"Industrial Consumption","Alabama","AL",18561 +2020-11-01,"Industrial Consumption","West Virginia","WV",3107 +2020-11-01,"Industrial Consumption","Idaho","ID",3634 +2020-11-01,"Industrial Consumption","Arizona","AZ",1687 +2020-11-01,"Industrial Consumption","Pennsylvania","PA",18882 +2020-11-01,"Industrial Consumption","Mississippi","MS",11884 +2020-11-01,"Industrial Consumption","Arkansas","AR",9229 +2020-11-01,"Industrial Consumption","New Hampshire","NH",774 +2020-11-01,"Industrial Consumption","Indiana","IN",32712 +2020-11-01,"Industrial Consumption","North Carolina","NC",9660 +2020-11-01,"Industrial Consumption","Missouri","MO",5696 +2020-11-01,"Industrial Consumption","Washington","WA",6969 +2020-11-01,"Industrial Consumption","California","CA",56710 +2020-11-01,"Industrial Consumption","Nebraska","NE",8463 +2020-11-01,"Industrial Consumption","Virginia","VA",6787 +2020-11-01,"Industrial Consumption","Wyoming","WY",5269 +2020-11-01,"Industrial Consumption","New Jersey","NJ",5625 +2020-11-01,"Industrial Consumption","District of Columbia","DC",NA +2020-11-01,"Industrial Consumption","Hawaii","HI",6 +2020-11-01,"Industrial Consumption","Louisiana","LA",96555 +2020-11-01,"Industrial Consumption","Nevada","NV",1490 +2020-11-01,"Industrial Consumption","Maine","ME",1927 +2020-11-01,"Industrial Consumption","South Carolina","SC",8268 +2020-11-01,"Industrial Consumption","Vermont","VT",185 +2020-11-01,"Industrial Consumption","Colorado","CO",7884 +2020-11-01,"Industrial Consumption","South Dakota","SD",4287 +2020-11-01,"Industrial Consumption","Ohio","OH",23740 +2020-11-01,"Industrial Consumption","Oregon","OR",4972 +2020-11-01,"Industrial Consumption","Michigan","MI",13886 +2020-11-01,"Industrial Consumption","Kansas","KS",11111 +2020-11-01,"Industrial Consumption","Texas","TX",158615 +2020-11-01,"Industrial Consumption","Iowa","IA",19986 +2020-11-01,"Industrial Consumption","Florida","FL",9763 +2020-11-01,"Industrial Consumption","Kentucky","KY",9785 +2020-11-01,"Industrial Consumption","Oklahoma","OK",18771 +2020-11-01,"Industrial Consumption","Tennessee","TN",11633 +2020-11-01,"Industrial Consumption","Minnesota","MN",12696 +2020-11-01,"Industrial Consumption","Connecticut","CT",1734 +2020-11-01,"Industrial Consumption","Illinois","IL",23896 +2020-11-01,"Industrial Consumption","North Dakota","ND",3249 +2020-11-01,"Industrial Consumption","Montana","MT",2342 +2020-11-01,"Industrial Consumption","Massachusetts","MA",3729 +2020-11-01,"Industrial Consumption","New York","NY",7802 +2020-11-01,"Industrial Consumption","Wisconsin","WI",13932 +2020-11-01,"Industrial Consumption","Delaware","DE",2881 +2020-11-01,"Industrial Consumption","Rhode Island","RI",643 +2020-11-01,"Industrial Consumption","Georgia","GA",13398 +2020-11-01,"Industrial Consumption","Alaska","AK",559 +2020-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",149172 +2020-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",81307 +2020-11-01,"Residential Consumption","Georgia","GA",10773 +2020-11-01,"Residential Consumption","Maine","ME",288 +2020-11-01,"Residential Consumption","Florida","FL",1336 +2020-11-01,"Residential Consumption","West Virginia","WV",2144 +2020-11-01,"Residential Consumption","U.S.","U.S.",439857 +2020-11-01,"Residential Consumption","New York","NY",39753 +2020-11-01,"Residential Consumption","South Carolina","SC",2311 +2020-11-01,"Residential Consumption","Michigan","MI",29495 +2020-11-01,"Residential Consumption","Nevada","NV",3899 +2020-11-01,"Residential Consumption","New Jersey","NJ",18263 +2020-11-01,"Residential Consumption","Kentucky","KY",4412 +2020-11-01,"Residential Consumption","Alabama","AL",2527 +2020-11-01,"Residential Consumption","Alaska","AK",2607 +2020-11-01,"Residential Consumption","Vermont","VT",334 +2020-11-01,"Residential Consumption","Tennessee","TN",5552 +2020-11-01,"Residential Consumption","Utah","UT",6127 +2020-11-01,"Residential Consumption","New Mexico","NM",3431 +2020-11-01,"Residential Consumption","New Hampshire","NH",521 +2020-11-01,"Residential Consumption","Oklahoma","OK",5772 +2020-11-01,"Residential Consumption","Rhode Island","RI",1764 +2020-11-01,"Residential Consumption","Oregon","OR",6040 +2020-11-01,"Residential Consumption","Connecticut","CT",3914 +2020-11-01,"Residential Consumption","Virginia","VA",6206 +2020-11-01,"Residential Consumption","Pennsylvania","PA",19191 +2020-11-01,"Residential Consumption","Colorado","CO",16027 +2020-11-01,"Residential Consumption","California","CA",45366 +2020-11-01,"Residential Consumption","Wyoming","WY",1260 +2020-11-01,"Residential Consumption","Iowa","IA",5982 +2020-11-01,"Residential Consumption","Idaho","ID",4383 +2020-11-01,"Residential Consumption","Illinois","IL",36466 +2020-11-01,"Residential Consumption","North Carolina","NC",6222 +2020-11-01,"Residential Consumption","Mississippi","MS",2020 +2020-11-01,"Residential Consumption","Nebraska","NE",3437 +2020-11-01,"Residential Consumption","Indiana","IN",13045 +2020-11-01,"Residential Consumption","Massachusetts","MA",10867 +2020-11-01,"Residential Consumption","Kansas","KS",5953 +2020-11-01,"Residential Consumption","Arizona","AZ",3042 +2020-11-01,"Residential Consumption","Texas","TX",16408 +2020-11-01,"Residential Consumption","Ohio","OH",25882 +2020-11-01,"Residential Consumption","Hawaii","HI",45 +2020-11-01,"Residential Consumption","Maryland","MD",6733 +2020-11-01,"Residential Consumption","South Dakota","SD",1261 +2020-11-01,"Residential Consumption","Washington","WA",11151 +2020-11-01,"Residential Consumption","Missouri","MO",9873 +2020-11-01,"Residential Consumption","Delaware","DE",877 +2020-11-01,"Residential Consumption","Louisiana","LA",2977 +2020-11-01,"Residential Consumption","Wisconsin","WI",12637 +2020-11-01,"Residential Consumption","Minnesota","MN",14100 +2020-11-01,"Residential Consumption","District of Columbia","DC",987 +2020-11-01,"Residential Consumption","North Dakota","ND",1329 +2020-11-01,"Residential Consumption","Arkansas","AR",2521 +2020-11-01,"Residential Consumption","Montana","MT",2350 +2020-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-11-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-11-01,"Vehicle Fuel Consumption","New York","NY",76 +2020-11-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-11-01,"Vehicle Fuel Consumption","Nevada","NV",93 +2020-11-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-11-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-11-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2020-11-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-11-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-11-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-11-01,"Vehicle Fuel Consumption","Minnesota","MN",35 +2020-11-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-11-01,"Vehicle Fuel Consumption","Utah","UT",22 +2020-11-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2020-11-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-11-01,"Vehicle Fuel Consumption","Texas","TX",91 +2020-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-11-01,"Vehicle Fuel Consumption","North Carolina","NC",134 +2020-11-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-11-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2020-11-01,"Vehicle Fuel Consumption","California","CA",1917 +2020-11-01,"Vehicle Fuel Consumption","Virginia","VA",51 +2020-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2020-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",131 +2020-11-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2020-11-01,"Vehicle Fuel Consumption","Maryland","MD",22 +2020-11-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-11-01,"Vehicle Fuel Consumption","New Mexico","NM",31 +2020-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",135 +2020-11-01,"Vehicle Fuel Consumption","Kansas","KS",63 +2020-11-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-11-01,"Vehicle Fuel Consumption","Colorado","CO",77 +2020-11-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2020-11-01,"Vehicle Fuel Consumption","Florida","FL",429 +2020-11-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",4028 +2020-11-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2020-11-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-11-01,"Vehicle Fuel Consumption","Vermont","VT",1 +2020-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",18 +2020-11-01,"Vehicle Fuel Consumption","Louisiana","LA",101 +2020-11-01,"Vehicle Fuel Consumption","Mississippi","MS",0 +2020-11-01,"Vehicle Fuel Consumption","Georgia","GA",130 +2020-11-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-12-01,"Commercial Consumption","North Carolina","NC",8701 +2020-12-01,"Commercial Consumption","Kansas","KS",5466 +2020-12-01,"Commercial Consumption","Alabama","AL",3144 +2020-12-01,"Commercial Consumption","Nebraska","NE",4599 +2020-12-01,"Commercial Consumption","Arizona","AZ",3882 +2020-12-01,"Commercial Consumption","Indiana","IN",12793 +2020-12-01,"Commercial Consumption","West Virginia","WV",3008 +2020-12-01,"Commercial Consumption","Oregon","OR",4086 +2020-12-01,"Commercial Consumption","Maine","ME",1268 +2020-12-01,"Commercial Consumption","Florida","FL",5637 +2020-12-01,"Commercial Consumption","Rhode Island","RI",1894 +2020-12-01,"Commercial Consumption","Hawaii","HI",156 +2020-12-01,"Commercial Consumption","Louisiana","LA",3691 +2020-12-01,"Commercial Consumption","Illinois","IL",29544 +2020-12-01,"Commercial Consumption","Nevada","NV",3351 +2020-12-01,"Commercial Consumption","Washington","WA",7306 +2020-12-01,"Commercial Consumption","South Carolina","SC",3412 +2020-12-01,"Commercial Consumption","Colorado","CO",9304 +2020-12-01,"Commercial Consumption","Pennsylvania","PA",24128 +2020-12-01,"Commercial Consumption","Montana","MT",3234 +2020-12-01,"Commercial Consumption","Kentucky","KY",6033 +2020-12-01,"Commercial Consumption","Connecticut","CT",7634 +2020-12-01,"Commercial Consumption","Mississippi","MS",2620 +2020-12-01,"Commercial Consumption","Wyoming","WY",1413 +2020-12-01,"Commercial Consumption","New Mexico","NM",4396 +2020-12-01,"Commercial Consumption","Oklahoma","OK",6695 +2020-12-01,"Commercial Consumption","Delaware","DE",2161 +2020-12-01,"Commercial Consumption","Utah","UT",8487 +2020-12-01,"Commercial Consumption","Virginia","VA",10584 +2020-12-01,"Commercial Consumption","New Hampshire","NH",1604 +2020-12-01,"Commercial Consumption","Texas","TX",22366 +2020-12-01,"Commercial Consumption","Idaho","ID",3136 +2020-12-01,"Commercial Consumption","Iowa","IA",7335 +2020-12-01,"Commercial Consumption","Alaska","AK",2116 +2020-12-01,"Commercial Consumption","New York","NY",41197 +2020-12-01,"Commercial Consumption","Minnesota","MN",13974 +2020-12-01,"Commercial Consumption","South Dakota","SD",1756 +2020-12-01,"Commercial Consumption","New Jersey","NJ",21966 +2020-12-01,"Commercial Consumption","Georgia","GA",8452 +2020-12-01,"Commercial Consumption","Ohio","OH",25953 +2020-12-01,"Commercial Consumption","California","CA",24994 +2020-12-01,"Commercial Consumption","Arkansas","AR",6639 +2020-12-01,"Commercial Consumption","Tennessee","TN",8832 +2020-12-01,"Commercial Consumption","District of Columbia","DC",2289 +2020-12-01,"Commercial Consumption","North Dakota","ND",2006 +2020-12-01,"Commercial Consumption","Missouri","MO",8965 +2020-12-01,"Commercial Consumption","Massachusetts","MA",15481 +2020-12-01,"Commercial Consumption","Wisconsin","WI",13115 +2020-12-01,"Commercial Consumption","U.S.","U.S.",453918 +2020-12-01,"Commercial Consumption","Maryland","MD",9499 +2020-12-01,"Commercial Consumption","Vermont","VT",892 +2020-12-01,"Commercial Consumption","Michigan","MI",22726 +2020-12-01,"Delivered to Consumers","U.S.","U.S.",2921052 +2020-12-01,"Delivered to Consumers","South Dakota","SD",8649 +2020-12-01,"Delivered to Consumers","Kentucky","KY",36280 +2020-12-01,"Delivered to Consumers","Nebraska","NE",20232 +2020-12-01,"Delivered to Consumers","Massachusetts","MA",49703 +2020-12-01,"Delivered to Consumers","Texas","TX",344230 +2020-12-01,"Delivered to Consumers","New Hampshire","NH",4571 +2020-12-01,"Delivered to Consumers","New Mexico","NM",19482 +2020-12-01,"Delivered to Consumers","West Virginia","WV",11569 +2020-12-01,"Delivered to Consumers","Connecticut","CT",31464 +2020-12-01,"Delivered to Consumers","Alabama","AL",60353 +2020-12-01,"Delivered to Consumers","Virginia","VA",70414 +2020-12-01,"Delivered to Consumers","Pennsylvania","PA",154892 +2020-12-01,"Delivered to Consumers","Louisiana","LA",139411 +2020-12-01,"Delivered to Consumers","Georgia","GA",82089 +2020-12-01,"Delivered to Consumers","Minnesota","MN",55324 +2020-12-01,"Delivered to Consumers","North Carolina","NC",63899 +2020-12-01,"Delivered to Consumers","South Carolina","SC",32581 +2020-12-01,"Delivered to Consumers","Delaware","DE",9012 +2020-12-01,"Delivered to Consumers","Illinois","IL",136873 +2020-12-01,"Delivered to Consumers","California","CA",210847 +2020-12-01,"Delivered to Consumers","District of Columbia","DC",4471 +2020-12-01,"Delivered to Consumers","Indiana","IN",93880 +2020-12-01,"Delivered to Consumers","Rhode Island","RI",9618 +2020-12-01,"Delivered to Consumers","Maryland","MD",30974 +2020-12-01,"Delivered to Consumers","Alaska","AK",8014 +2020-12-01,"Delivered to Consumers","Oklahoma","OK",61829 +2020-12-01,"Delivered to Consumers","Colorado","CO",51999 +2020-12-01,"Delivered to Consumers","Nevada","NV",27845 +2020-12-01,"Delivered to Consumers","Florida","FL",109824 +2020-12-01,"Delivered to Consumers","Utah","UT",33438 +2020-12-01,"Delivered to Consumers","New York","NY",155346 +2020-12-01,"Delivered to Consumers","Iowa","IA",43912 +2020-12-01,"Delivered to Consumers","Mississippi","MS",49095 +2020-12-01,"Delivered to Consumers","Vermont","VT",1654 +2020-12-01,"Delivered to Consumers","Kansas","KS",30675 +2020-12-01,"Delivered to Consumers","Tennessee","TN",46558 +2020-12-01,"Delivered to Consumers","Michigan","MI",110635 +2020-12-01,"Delivered to Consumers","Arkansas","AR",32802 +2020-12-01,"Delivered to Consumers","Missouri","MO",39126 +2020-12-01,"Delivered to Consumers","Oregon","OR",29815 +2020-12-01,"Delivered to Consumers","New Jersey","NJ",79659 +2020-12-01,"Delivered to Consumers","Maine","ME",4763 +2020-12-01,"Delivered to Consumers","Washington","WA",37308 +2020-12-01,"Delivered to Consumers","North Dakota","ND",8994 +2020-12-01,"Delivered to Consumers","Wyoming","WY",9890 +2020-12-01,"Delivered to Consumers","Montana","MT",9098 +2020-12-01,"Delivered to Consumers","Hawaii","HI",216 +2020-12-01,"Delivered to Consumers","Idaho","ID",16323 +2020-12-01,"Delivered to Consumers","Ohio","OH",136047 +2020-12-01,"Delivered to Consumers","Wisconsin","WI",63557 +2020-12-01,"Delivered to Consumers","Arizona","AZ",41811 +2020-12-01,"Electric Power Consumption","Missouri","MO",4913 +2020-12-01,"Electric Power Consumption","South Carolina","SC",13411 +2020-12-01,"Electric Power Consumption","New York","NY",33770 +2020-12-01,"Electric Power Consumption","Texas","TX",110236 +2020-12-01,"Electric Power Consumption","Rhode Island","RI",3805 +2020-12-01,"Electric Power Consumption","Iowa","IA",4180 +2020-12-01,"Electric Power Consumption","Tennessee","TN",10055 +2020-12-01,"Electric Power Consumption","Mississippi","MS",29741 +2020-12-01,"Electric Power Consumption","Hawaii","HI",NA +2020-12-01,"Electric Power Consumption","Indiana","IN",19431 +2020-12-01,"Electric Power Consumption","Alabama","AL",31923 +2020-12-01,"Electric Power Consumption","Louisiana","LA",25356 +2020-12-01,"Electric Power Consumption","Michigan","MI",22655 +2020-12-01,"Electric Power Consumption","West Virginia","WV",1103 +2020-12-01,"Electric Power Consumption","Wyoming","WY",196 +2020-12-01,"Electric Power Consumption","Kentucky","KY",9260 +2020-12-01,"Electric Power Consumption","Ohio","OH",34289 +2020-12-01,"Electric Power Consumption","Delaware","DE",929 +2020-12-01,"Electric Power Consumption","Arizona","AZ",29758 +2020-12-01,"Electric Power Consumption","Oklahoma","OK",23175 +2020-12-01,"Electric Power Consumption","Utah","UT",6300 +2020-12-01,"Electric Power Consumption","Minnesota","MN",7445 +2020-12-01,"Electric Power Consumption","North Carolina","NC",28589 +2020-12-01,"Electric Power Consumption","Maryland","MD",5214 +2020-12-01,"Electric Power Consumption","Connecticut","CT",13487 +2020-12-01,"Electric Power Consumption","Colorado","CO",10001 +2020-12-01,"Electric Power Consumption","Georgia","GA",35619 +2020-12-01,"Electric Power Consumption","Alaska","AK",2604 +2020-12-01,"Electric Power Consumption","New Mexico","NM",6831 +2020-12-01,"Electric Power Consumption","New Jersey","NJ",12767 +2020-12-01,"Electric Power Consumption","Illinois","IL",15851 +2020-12-01,"Electric Power Consumption","Kansas","KS",1859 +2020-12-01,"Electric Power Consumption","Wisconsin","WI",11856 +2020-12-01,"Electric Power Consumption","Vermont","VT",1 +2020-12-01,"Electric Power Consumption","U.S.","U.S.",884847 +2020-12-01,"Electric Power Consumption","California","CA",57272 +2020-12-01,"Electric Power Consumption","Washington","WA",9279 +2020-12-01,"Electric Power Consumption","Arkansas","AR",10287 +2020-12-01,"Electric Power Consumption","Oregon","OR",13082 +2020-12-01,"Electric Power Consumption","Nevada","NV",15736 +2020-12-01,"Electric Power Consumption","New Hampshire","NH",774 +2020-12-01,"Electric Power Consumption","North Dakota","ND",1370 +2020-12-01,"Electric Power Consumption","Montana","MT",369 +2020-12-01,"Electric Power Consumption","Virginia","VA",34217 +2020-12-01,"Electric Power Consumption","Idaho","ID",3626 +2020-12-01,"Electric Power Consumption","Massachusetts","MA",9185 +2020-12-01,"Electric Power Consumption","Pennsylvania","PA",70914 +2020-12-01,"Electric Power Consumption","South Dakota","SD",393 +2020-12-01,"Electric Power Consumption","Nebraska","NE",537 +2020-12-01,"Electric Power Consumption","Maine","ME",918 +2020-12-01,"Electric Power Consumption","Florida","FL",90279 +2020-12-01,"Industrial Consumption","Louisiana","LA",104276 +2020-12-01,"Industrial Consumption","Kansas","KS",12521 +2020-12-01,"Industrial Consumption","Utah","UT",3546 +2020-12-01,"Industrial Consumption","South Carolina","SC",8898 +2020-12-01,"Industrial Consumption","Illinois","IL",27058 +2020-12-01,"Industrial Consumption","Montana","MT",2291 +2020-12-01,"Industrial Consumption","California","CA",59505 +2020-12-01,"Industrial Consumption","Arkansas","AR",10102 +2020-12-01,"Industrial Consumption","Tennessee","TN",13662 +2020-12-01,"Industrial Consumption","Idaho","ID",4000 +2020-12-01,"Industrial Consumption","Michigan","MI",16483 +2020-12-01,"Industrial Consumption","Georgia","GA",15157 +2020-12-01,"Industrial Consumption","Hawaii","HI",7 +2020-12-01,"Industrial Consumption","Colorado","CO",9138 +2020-12-01,"Industrial Consumption","Alaska","AK",605 +2020-12-01,"Industrial Consumption","Washington","WA",7524 +2020-12-01,"Industrial Consumption","Ohio","OH",27946 +2020-12-01,"Industrial Consumption","Pennsylvania","PA",21004 +2020-12-01,"Industrial Consumption","Alabama","AL",20465 +2020-12-01,"Industrial Consumption","West Virginia","WV",3518 +2020-12-01,"Industrial Consumption","Wyoming","WY",6649 +2020-12-01,"Industrial Consumption","New Hampshire","NH",861 +2020-12-01,"Industrial Consumption","Indiana","IN",37519 +2020-12-01,"Industrial Consumption","Delaware","DE",3926 +2020-12-01,"Industrial Consumption","Rhode Island","RI",732 +2020-12-01,"Industrial Consumption","South Dakota","SD",4380 +2020-12-01,"Industrial Consumption","New Mexico","NM",1428 +2020-12-01,"Industrial Consumption","Oregon","OR",5382 +2020-12-01,"Industrial Consumption","Mississippi","MS",12679 +2020-12-01,"Industrial Consumption","Iowa","IA",21582 +2020-12-01,"Industrial Consumption","North Carolina","NC",11578 +2020-12-01,"Industrial Consumption","Maryland","MD",1906 +2020-12-01,"Industrial Consumption","U.S.","U.S.",778484 +2020-12-01,"Industrial Consumption","Nevada","NV",1421 +2020-12-01,"Industrial Consumption","Nebraska","NE",8967 +2020-12-01,"Industrial Consumption","Florida","FL",11351 +2020-12-01,"Industrial Consumption","Kentucky","KY",11616 +2020-12-01,"Industrial Consumption","Texas","TX",171284 +2020-12-01,"Industrial Consumption","Wisconsin","WI",16006 +2020-12-01,"Industrial Consumption","Minnesota","MN",14119 +2020-12-01,"Industrial Consumption","Connecticut","CT",2458 +2020-12-01,"Industrial Consumption","District of Columbia","DC",NA +2020-12-01,"Industrial Consumption","North Dakota","ND",3851 +2020-12-01,"Industrial Consumption","Massachusetts","MA",5094 +2020-12-01,"Industrial Consumption","Oklahoma","OK",19915 +2020-12-01,"Industrial Consumption","Missouri","MO",6511 +2020-12-01,"Industrial Consumption","Arizona","AZ",2019 +2020-12-01,"Industrial Consumption","New York","NY",8541 +2020-12-01,"Industrial Consumption","Maine","ME",2138 +2020-12-01,"Industrial Consumption","Virginia","VA",10501 +2020-12-01,"Industrial Consumption","Vermont","VT",214 +2020-12-01,"Industrial Consumption","New Jersey","NJ",6152 +2020-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",154379 +2020-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",107395 +2020-12-01,"Residential Consumption","Hawaii","HI",53 +2020-12-01,"Residential Consumption","Tennessee","TN",13978 +2020-12-01,"Residential Consumption","Alaska","AK",2689 +2020-12-01,"Residential Consumption","West Virginia","WV",3939 +2020-12-01,"Residential Consumption","New York","NY",71760 +2020-12-01,"Residential Consumption","Michigan","MI",48770 +2020-12-01,"Residential Consumption","Minnesota","MN",19750 +2020-12-01,"Residential Consumption","California","CA",67095 +2020-12-01,"Residential Consumption","Texas","TX",40249 +2020-12-01,"Residential Consumption","Vermont","VT",546 +2020-12-01,"Residential Consumption","Georgia","GA",22727 +2020-12-01,"Residential Consumption","Indiana","IN",24136 +2020-12-01,"Residential Consumption","North Dakota","ND",1768 +2020-12-01,"Residential Consumption","Arizona","AZ",5980 +2020-12-01,"Residential Consumption","Connecticut","CT",7867 +2020-12-01,"Residential Consumption","Virginia","VA",15059 +2020-12-01,"Residential Consumption","Florida","FL",2113 +2020-12-01,"Residential Consumption","Massachusetts","MA",19935 +2020-12-01,"Residential Consumption","Arkansas","AR",5768 +2020-12-01,"Residential Consumption","Montana","MT",3204 +2020-12-01,"Residential Consumption","Kansas","KS",10764 +2020-12-01,"Residential Consumption","Alabama","AL",4814 +2020-12-01,"Residential Consumption","U.S.","U.S.",799641 +2020-12-01,"Residential Consumption","Illinois","IL",64411 +2020-12-01,"Residential Consumption","Rhode Island","RI",3178 +2020-12-01,"Residential Consumption","Oregon","OR",7261 +2020-12-01,"Residential Consumption","Louisiana","LA",5983 +2020-12-01,"Residential Consumption","Nevada","NV",7241 +2020-12-01,"Residential Consumption","Pennsylvania","PA",38711 +2020-12-01,"Residential Consumption","Idaho","ID",5557 +2020-12-01,"Residential Consumption","New Jersey","NJ",38750 +2020-12-01,"Residential Consumption","Oklahoma","OK",11905 +2020-12-01,"Residential Consumption","South Carolina","SC",6851 +2020-12-01,"Residential Consumption","North Carolina","NC",14893 +2020-12-01,"Residential Consumption","Nebraska","NE",6115 +2020-12-01,"Residential Consumption","South Dakota","SD",2121 +2020-12-01,"Residential Consumption","Maine","ME",439 +2020-12-01,"Residential Consumption","New Hampshire","NH",1331 +2020-12-01,"Residential Consumption","Ohio","OH",47763 +2020-12-01,"Residential Consumption","Iowa","IA",10812 +2020-12-01,"Residential Consumption","Wisconsin","WI",22540 +2020-12-01,"Residential Consumption","Utah","UT",15084 +2020-12-01,"Residential Consumption","Maryland","MD",14332 +2020-12-01,"Residential Consumption","New Mexico","NM",6795 +2020-12-01,"Residential Consumption","Washington","WA",13190 +2020-12-01,"Residential Consumption","Missouri","MO",18722 +2020-12-01,"Residential Consumption","Delaware","DE",1995 +2020-12-01,"Residential Consumption","Wyoming","WY",1631 +2020-12-01,"Residential Consumption","Mississippi","MS",4054 +2020-12-01,"Residential Consumption","District of Columbia","DC",2163 +2020-12-01,"Residential Consumption","Kentucky","KY",9370 +2020-12-01,"Residential Consumption","Colorado","CO",23476 +2020-12-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2020-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2020-12-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2020-12-01,"Vehicle Fuel Consumption","Colorado","CO",80 +2020-12-01,"Vehicle Fuel Consumption","North Carolina","NC",138 +2020-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2020-12-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2020-12-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2020-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",135 +2020-12-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2020-12-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2020-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2020-12-01,"Vehicle Fuel Consumption","Louisiana","LA",104 +2020-12-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2020-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",4162 +2020-12-01,"Vehicle Fuel Consumption","Washington","WA",10 +2020-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",139 +2020-12-01,"Vehicle Fuel Consumption","Nevada","NV",96 +2020-12-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2020-12-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2020-12-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2020-12-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2020-12-01,"Vehicle Fuel Consumption","New York","NY",78 +2020-12-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2020-12-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2020-12-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2020-12-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2020-12-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2020-12-01,"Vehicle Fuel Consumption","Ohio","OH",97 +2020-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2020-12-01,"Vehicle Fuel Consumption","Georgia","GA",134 +2020-12-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2020-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2020-12-01,"Vehicle Fuel Consumption","Virginia","VA",53 +2020-12-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2020-12-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2020-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2020-12-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2020-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2020-12-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2020-12-01,"Vehicle Fuel Consumption","Utah","UT",23 +2020-12-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2020-12-01,"Vehicle Fuel Consumption","Texas","TX",94 +2020-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2020-12-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2020-12-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2020-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2020-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2020-12-01,"Vehicle Fuel Consumption","Kansas","KS",65 +2020-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",19 +2020-12-01,"Vehicle Fuel Consumption","Florida","FL",443 +2020-12-01,"Vehicle Fuel Consumption","California","CA",1981 +2021-01-01,"Commercial Consumption","Kentucky","KY",6767 +2021-01-01,"Commercial Consumption","Idaho","ID",3065 +2021-01-01,"Commercial Consumption","New York","NY",43043 +2021-01-01,"Commercial Consumption","Michigan","MI",26212 +2021-01-01,"Commercial Consumption","Utah","UT",7190 +2021-01-01,"Commercial Consumption","Kansas","KS",6139 +2021-01-01,"Commercial Consumption","Hawaii","HI",148 +2021-01-01,"Commercial Consumption","Mississippi","MS",3202 +2021-01-01,"Commercial Consumption","Delaware","DE",2248 +2021-01-01,"Commercial Consumption","Tennessee","TN",9933 +2021-01-01,"Commercial Consumption","Nevada","NV",4057 +2021-01-01,"Commercial Consumption","Wyoming","WY",1827 +2021-01-01,"Commercial Consumption","South Carolina","SC",3364 +2021-01-01,"Commercial Consumption","Wisconsin","WI",16069 +2021-01-01,"Commercial Consumption","South Dakota","SD",1745 +2021-01-01,"Commercial Consumption","Maryland","MD",9199 +2021-01-01,"Commercial Consumption","Iowa","IA",8103 +2021-01-01,"Commercial Consumption","Connecticut","CT",8523 +2021-01-01,"Commercial Consumption","Arkansas","AR",7779 +2021-01-01,"Commercial Consumption","Louisiana","LA",3848 +2021-01-01,"Commercial Consumption","North Dakota","ND",2223 +2021-01-01,"Commercial Consumption","North Carolina","NC",9537 +2021-01-01,"Commercial Consumption","Oregon","OR",4019 +2021-01-01,"Commercial Consumption","Missouri","MO",10910 +2021-01-01,"Commercial Consumption","Georgia","GA",9240 +2021-01-01,"Commercial Consumption","Alabama","AL",4316 +2021-01-01,"Commercial Consumption","Nebraska","NE",5122 +2021-01-01,"Commercial Consumption","New Mexico","NM",4218 +2021-01-01,"Commercial Consumption","New Hampshire","NH",1773 +2021-01-01,"Commercial Consumption","Ohio","OH",29318 +2021-01-01,"Commercial Consumption","West Virginia","WV",3504 +2021-01-01,"Commercial Consumption","Virginia","VA",11306 +2021-01-01,"Commercial Consumption","New Jersey","NJ",25590 +2021-01-01,"Commercial Consumption","Maine","ME",1485 +2021-01-01,"Commercial Consumption","U.S.","U.S.",497489 +2021-01-01,"Commercial Consumption","Florida","FL",6258 +2021-01-01,"Commercial Consumption","Vermont","VT",988 +2021-01-01,"Commercial Consumption","Arizona","AZ",4645 +2021-01-01,"Commercial Consumption","Indiana","IN",14529 +2021-01-01,"Commercial Consumption","District of Columbia","DC",2111 +2021-01-01,"Commercial Consumption","Washington","WA",7227 +2021-01-01,"Commercial Consumption","Minnesota","MN",16226 +2021-01-01,"Commercial Consumption","Colorado","CO",9302 +2021-01-01,"Commercial Consumption","Pennsylvania","PA",26557 +2021-01-01,"Commercial Consumption","Massachusetts","MA",16497 +2021-01-01,"Commercial Consumption","Texas","TX",24602 +2021-01-01,"Commercial Consumption","Rhode Island","RI",2063 +2021-01-01,"Commercial Consumption","Illinois","IL",34744 +2021-01-01,"Commercial Consumption","Oklahoma","OK",7781 +2021-01-01,"Commercial Consumption","Montana","MT",3375 +2021-01-01,"Commercial Consumption","Alaska","AK",1994 +2021-01-01,"Commercial Consumption","California","CA",23567 +2021-01-01,"Delivered to Consumers","Wyoming","WY",9065 +2021-01-01,"Delivered to Consumers","Illinois","IL",150579 +2021-01-01,"Delivered to Consumers","Tennessee","TN",52162 +2021-01-01,"Delivered to Consumers","Nebraska","NE",21921 +2021-01-01,"Delivered to Consumers","Massachusetts","MA",57478 +2021-01-01,"Delivered to Consumers","Oregon","OR",27791 +2021-01-01,"Delivered to Consumers","Georgia","GA",83740 +2021-01-01,"Delivered to Consumers","Arizona","AZ",43023 +2021-01-01,"Delivered to Consumers","North Dakota","ND",9342 +2021-01-01,"Delivered to Consumers","Minnesota","MN",60790 +2021-01-01,"Delivered to Consumers","Florida","FL",111773 +2021-01-01,"Delivered to Consumers","Oklahoma","OK",64385 +2021-01-01,"Delivered to Consumers","Idaho","ID",15461 +2021-01-01,"Delivered to Consumers","Texas","TX",359909 +2021-01-01,"Delivered to Consumers","Washington","WA",36042 +2021-01-01,"Delivered to Consumers","Hawaii","HI",212 +2021-01-01,"Delivered to Consumers","Connecticut","CT",33607 +2021-01-01,"Delivered to Consumers","Alabama","AL",65931 +2021-01-01,"Delivered to Consumers","Delaware","DE",8706 +2021-01-01,"Delivered to Consumers","Rhode Island","RI",10647 +2021-01-01,"Delivered to Consumers","Maryland","MD",33054 +2021-01-01,"Delivered to Consumers","Kansas","KS",31912 +2021-01-01,"Delivered to Consumers","North Carolina","NC",68387 +2021-01-01,"Delivered to Consumers","Missouri","MO",44707 +2021-01-01,"Delivered to Consumers","Utah","UT",30000 +2021-01-01,"Delivered to Consumers","U.S.","U.S.",3060020 +2021-01-01,"Delivered to Consumers","New Mexico","NM",19656 +2021-01-01,"Delivered to Consumers","Vermont","VT",1886 +2021-01-01,"Delivered to Consumers","Iowa","IA",44493 +2021-01-01,"Delivered to Consumers","Arkansas","AR",32956 +2021-01-01,"Delivered to Consumers","Wisconsin","WI",71165 +2021-01-01,"Delivered to Consumers","Virginia","VA",72513 +2021-01-01,"Delivered to Consumers","Pennsylvania","PA",168446 +2021-01-01,"Delivered to Consumers","Colorado","CO",51772 +2021-01-01,"Delivered to Consumers","California","CA",194472 +2021-01-01,"Delivered to Consumers","South Carolina","SC",33474 +2021-01-01,"Delivered to Consumers","Nevada","NV",29825 +2021-01-01,"Delivered to Consumers","Maine","ME",5326 +2021-01-01,"Delivered to Consumers","Indiana","IN",98809 +2021-01-01,"Delivered to Consumers","Montana","MT",9603 +2021-01-01,"Delivered to Consumers","Alaska","AK",7195 +2021-01-01,"Delivered to Consumers","Kentucky","KY",38650 +2021-01-01,"Delivered to Consumers","New Jersey","NJ",91901 +2021-01-01,"Delivered to Consumers","Mississippi","MS",54784 +2021-01-01,"Delivered to Consumers","New Hampshire","NH",6216 +2021-01-01,"Delivered to Consumers","District of Columbia","DC",4355 +2021-01-01,"Delivered to Consumers","West Virginia","WV",12964 +2021-01-01,"Delivered to Consumers","South Dakota","SD",8782 +2021-01-01,"Delivered to Consumers","New York","NY",170192 +2021-01-01,"Delivered to Consumers","Ohio","OH",147202 +2021-01-01,"Delivered to Consumers","Michigan","MI",119303 +2021-01-01,"Delivered to Consumers","Louisiana","LA",133456 +2021-01-01,"Electric Power Consumption","Hawaii","HI",NA +2021-01-01,"Electric Power Consumption","North Dakota","ND",1314 +2021-01-01,"Electric Power Consumption","Indiana","IN",19482 +2021-01-01,"Electric Power Consumption","Virginia","VA",32009 +2021-01-01,"Electric Power Consumption","Idaho","ID",2948 +2021-01-01,"Electric Power Consumption","Colorado","CO",9942 +2021-01-01,"Electric Power Consumption","Rhode Island","RI",4193 +2021-01-01,"Electric Power Consumption","Oklahoma","OK",22127 +2021-01-01,"Electric Power Consumption","Nevada","NV",15607 +2021-01-01,"Electric Power Consumption","Iowa","IA",2217 +2021-01-01,"Electric Power Consumption","U.S.","U.S.",872336 +2021-01-01,"Electric Power Consumption","Nebraska","NE",612 +2021-01-01,"Electric Power Consumption","Washington","WA",7868 +2021-01-01,"Electric Power Consumption","New York","NY",35460 +2021-01-01,"Electric Power Consumption","Oregon","OR",11309 +2021-01-01,"Electric Power Consumption","Illinois","IL",14013 +2021-01-01,"Electric Power Consumption","Tennessee","TN",10959 +2021-01-01,"Electric Power Consumption","Kentucky","KY",9018 +2021-01-01,"Electric Power Consumption","Florida","FL",90638 +2021-01-01,"Electric Power Consumption","Alabama","AL",33188 +2021-01-01,"Electric Power Consumption","New Mexico","NM",6918 +2021-01-01,"Electric Power Consumption","Texas","TX",117480 +2021-01-01,"Electric Power Consumption","West Virginia","WV",894 +2021-01-01,"Electric Power Consumption","Wisconsin","WI",13643 +2021-01-01,"Electric Power Consumption","Wyoming","WY",281 +2021-01-01,"Electric Power Consumption","South Dakota","SD",NA +2021-01-01,"Electric Power Consumption","Maine","ME",1121 +2021-01-01,"Electric Power Consumption","Connecticut","CT",12833 +2021-01-01,"Electric Power Consumption","Georgia","GA",34266 +2021-01-01,"Electric Power Consumption","Arkansas","AR",8213 +2021-01-01,"Electric Power Consumption","Massachusetts","MA",12654 +2021-01-01,"Electric Power Consumption","Montana","MT",221 +2021-01-01,"Electric Power Consumption","California","CA",44669 +2021-01-01,"Electric Power Consumption","Pennsylvania","PA",72945 +2021-01-01,"Electric Power Consumption","Vermont","VT",1 +2021-01-01,"Electric Power Consumption","Mississippi","MS",35549 +2021-01-01,"Electric Power Consumption","Maryland","MD",5334 +2021-01-01,"Electric Power Consumption","Louisiana","LA",20488 +2021-01-01,"Electric Power Consumption","South Carolina","SC",13158 +2021-01-01,"Electric Power Consumption","Utah","UT",5839 +2021-01-01,"Electric Power Consumption","Kansas","KS",1338 +2021-01-01,"Electric Power Consumption","North Carolina","NC",29439 +2021-01-01,"Electric Power Consumption","Ohio","OH",34487 +2021-01-01,"Electric Power Consumption","Delaware","DE",236 +2021-01-01,"Electric Power Consumption","Alaska","AK",1904 +2021-01-01,"Electric Power Consumption","New Jersey","NJ",12921 +2021-01-01,"Electric Power Consumption","Minnesota","MN",6733 +2021-01-01,"Electric Power Consumption","Michigan","MI",20833 +2021-01-01,"Electric Power Consumption","Missouri","MO",4921 +2021-01-01,"Electric Power Consumption","New Hampshire","NH",2041 +2021-01-01,"Electric Power Consumption","Arizona","AZ",27646 +2021-01-01,"Industrial Consumption","West Virginia","WV",3587 +2021-01-01,"Industrial Consumption","Vermont","VT",238 +2021-01-01,"Industrial Consumption","Wyoming","WY",4834 +2021-01-01,"Industrial Consumption","Tennessee","TN",14185 +2021-01-01,"Industrial Consumption","Michigan","MI",17621 +2021-01-01,"Industrial Consumption","Louisiana","LA",102003 +2021-01-01,"Industrial Consumption","South Dakota","SD",4509 +2021-01-01,"Industrial Consumption","Ohio","OH",30729 +2021-01-01,"Industrial Consumption","New Mexico","NM",1449 +2021-01-01,"Industrial Consumption","New York","NY",9051 +2021-01-01,"Industrial Consumption","Nebraska","NE",9066 +2021-01-01,"Industrial Consumption","Florida","FL",11369 +2021-01-01,"Industrial Consumption","Connecticut","CT",2501 +2021-01-01,"Industrial Consumption","Georgia","GA",15360 +2021-01-01,"Industrial Consumption","Alaska","AK",649 +2021-01-01,"Industrial Consumption","North Carolina","NC",12088 +2021-01-01,"Industrial Consumption","Washington","WA",7869 +2021-01-01,"Industrial Consumption","Oregon","OR",5467 +2021-01-01,"Industrial Consumption","Arkansas","AR",9525 +2021-01-01,"Industrial Consumption","New Hampshire","NH",905 +2021-01-01,"Industrial Consumption","Minnesota","MN",14765 +2021-01-01,"Industrial Consumption","Rhode Island","RI",808 +2021-01-01,"Industrial Consumption","Montana","MT",2426 +2021-01-01,"Industrial Consumption","Maryland","MD",2909 +2021-01-01,"Industrial Consumption","Colorado","CO",9198 +2021-01-01,"Industrial Consumption","Pennsylvania","PA",22950 +2021-01-01,"Industrial Consumption","Alabama","AL",20810 +2021-01-01,"Industrial Consumption","Wisconsin","WI",17023 +2021-01-01,"Industrial Consumption","Kentucky","KY",12739 +2021-01-01,"Industrial Consumption","Oklahoma","OK",20249 +2021-01-01,"Industrial Consumption","Arizona","AZ",2150 +2021-01-01,"Industrial Consumption","Nevada","NV",1613 +2021-01-01,"Industrial Consumption","Maine","ME",2161 +2021-01-01,"Industrial Consumption","Texas","TX",172585 +2021-01-01,"Industrial Consumption","New Jersey","NJ",6381 +2021-01-01,"Industrial Consumption","Indiana","IN",39053 +2021-01-01,"Industrial Consumption","Delaware","DE",3756 +2021-01-01,"Industrial Consumption","North Dakota","ND",3837 +2021-01-01,"Industrial Consumption","Massachusetts","MA",5691 +2021-01-01,"Industrial Consumption","Hawaii","HI",7 +2021-01-01,"Industrial Consumption","Kansas","KS",12597 +2021-01-01,"Industrial Consumption","Virginia","VA",11645 +2021-01-01,"Industrial Consumption","Missouri","MO",6900 +2021-01-01,"Industrial Consumption","Utah","UT",3877 +2021-01-01,"Industrial Consumption","U.S.","U.S.",790600 +2021-01-01,"Industrial Consumption","Mississippi","MS",11260 +2021-01-01,"Industrial Consumption","California","CA",56022 +2021-01-01,"Industrial Consumption","South Carolina","SC",9389 +2021-01-01,"Industrial Consumption","Idaho","ID",4064 +2021-01-01,"Industrial Consumption","Iowa","IA",22310 +2021-01-01,"Industrial Consumption","Illinois","IL",28419 +2021-01-01,"Industrial Consumption","District of Columbia","DC",NA +2021-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",158828 +2021-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",125080 +2021-01-01,"Residential Consumption","North Carolina","NC",17188 +2021-01-01,"Residential Consumption","Mississippi","MS",4772 +2021-01-01,"Residential Consumption","New Hampshire","NH",1495 +2021-01-01,"Residential Consumption","Wyoming","WY",2122 +2021-01-01,"Residential Consumption","South Carolina","SC",7556 +2021-01-01,"Residential Consumption","Wisconsin","WI",24390 +2021-01-01,"Residential Consumption","Georgia","GA",24746 +2021-01-01,"Residential Consumption","New Mexico","NM",7037 +2021-01-01,"Residential Consumption","Pennsylvania","PA",45848 +2021-01-01,"Residential Consumption","Oklahoma","OK",14079 +2021-01-01,"Residential Consumption","Louisiana","LA",7086 +2021-01-01,"Residential Consumption","Tennessee","TN",17052 +2021-01-01,"Residential Consumption","Michigan","MI",54637 +2021-01-01,"Residential Consumption","Maryland","MD",15588 +2021-01-01,"Residential Consumption","District of Columbia","DC",2221 +2021-01-01,"Residential Consumption","Maine","ME",559 +2021-01-01,"Residential Consumption","North Dakota","ND",1968 +2021-01-01,"Residential Consumption","Delaware","DE",2466 +2021-01-01,"Residential Consumption","Alaska","AK",2649 +2021-01-01,"Residential Consumption","West Virginia","WV",4978 +2021-01-01,"Residential Consumption","Texas","TX",45162 +2021-01-01,"Residential Consumption","Iowa","IA",11860 +2021-01-01,"Residential Consumption","Minnesota","MN",23019 +2021-01-01,"Residential Consumption","Indiana","IN",25580 +2021-01-01,"Residential Consumption","Idaho","ID",5378 +2021-01-01,"Residential Consumption","Colorado","CO",23180 +2021-01-01,"Residential Consumption","California","CA",68053 +2021-01-01,"Residential Consumption","Rhode Island","RI",3574 +2021-01-01,"Residential Consumption","Hawaii","HI",57 +2021-01-01,"Residential Consumption","South Dakota","SD",2101 +2021-01-01,"Residential Consumption","Massachusetts","MA",22628 +2021-01-01,"Residential Consumption","Arkansas","AR",7432 +2021-01-01,"Residential Consumption","Montana","MT",3580 +2021-01-01,"Residential Consumption","Kansas","KS",11761 +2021-01-01,"Residential Consumption","Washington","WA",13067 +2021-01-01,"Residential Consumption","Missouri","MO",21957 +2021-01-01,"Residential Consumption","Arizona","AZ",8407 +2021-01-01,"Residential Consumption","U.S.","U.S.",894969 +2021-01-01,"Residential Consumption","Ohio","OH",52574 +2021-01-01,"Residential Consumption","Connecticut","CT",9733 +2021-01-01,"Residential Consumption","Vermont","VT",656 +2021-01-01,"Residential Consumption","Virginia","VA",17495 +2021-01-01,"Residential Consumption","Nevada","NV",8451 +2021-01-01,"Residential Consumption","Florida","FL",3032 +2021-01-01,"Residential Consumption","Kentucky","KY",10125 +2021-01-01,"Residential Consumption","Alabama","AL",7610 +2021-01-01,"Residential Consumption","New York","NY",82542 +2021-01-01,"Residential Consumption","Oregon","OR",6992 +2021-01-01,"Residential Consumption","Utah","UT",13069 +2021-01-01,"Residential Consumption","Nebraska","NE",7085 +2021-01-01,"Residential Consumption","New Jersey","NJ",46971 +2021-01-01,"Residential Consumption","Illinois","IL",73398 +2021-01-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2021-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-01-01,"Vehicle Fuel Consumption","North Carolina","NC",135 +2021-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-01-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-01-01,"Vehicle Fuel Consumption","Utah","UT",25 +2021-01-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-01-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2021-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",4627 +2021-01-01,"Vehicle Fuel Consumption","New York","NY",96 +2021-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-01-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-01-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-01-01,"Vehicle Fuel Consumption","Minnesota","MN",47 +2021-01-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2021-01-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-01-01,"Vehicle Fuel Consumption","Missouri","MO",19 +2021-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-01-01,"Vehicle Fuel Consumption","California","CA",2161 +2021-01-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2021-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",145 +2021-01-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-01-01,"Vehicle Fuel Consumption","Georgia","GA",129 +2021-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-01-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-01-01,"Vehicle Fuel Consumption","Washington","WA",12 +2021-01-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-01-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2021-01-01,"Vehicle Fuel Consumption","Florida","FL",477 +2021-01-01,"Vehicle Fuel Consumption","Nebraska","NE",35 +2021-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-01-01,"Vehicle Fuel Consumption","Indiana","IN",164 +2021-01-01,"Vehicle Fuel Consumption","Colorado","CO",150 +2021-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-01-01,"Vehicle Fuel Consumption","Virginia","VA",57 +2021-01-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2021-01-01,"Vehicle Fuel Consumption","Kansas","KS",78 +2021-01-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-01-01,"Vehicle Fuel Consumption","Texas","TX",80 +2021-01-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-01-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-01-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2021-01-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2021-01-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-01-01,"Vehicle Fuel Consumption","Arizona","AZ",176 +2021-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",38 +2021-01-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2021-01-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-02-01,"Commercial Consumption","Wyoming","WY",1903 +2021-02-01,"Commercial Consumption","Virginia","VA",9903 +2021-02-01,"Commercial Consumption","Maine","ME",1342 +2021-02-01,"Commercial Consumption","Maryland","MD",8940 +2021-02-01,"Commercial Consumption","Iowa","IA",9438 +2021-02-01,"Commercial Consumption","Alaska","AK",2153 +2021-02-01,"Commercial Consumption","Arkansas","AR",7642 +2021-02-01,"Commercial Consumption","Delaware","DE",2105 +2021-02-01,"Commercial Consumption","Arizona","AZ",4108 +2021-02-01,"Commercial Consumption","Illinois","IL",39194 +2021-02-01,"Commercial Consumption","South Carolina","SC",3213 +2021-02-01,"Commercial Consumption","New Mexico","NM",3545 +2021-02-01,"Commercial Consumption","Ohio","OH",29865 +2021-02-01,"Commercial Consumption","California","CA",21556 +2021-02-01,"Commercial Consumption","Mississippi","MS",3149 +2021-02-01,"Commercial Consumption","West Virginia","WV",3272 +2021-02-01,"Commercial Consumption","Oklahoma","OK",8447 +2021-02-01,"Commercial Consumption","Montana","MT",3726 +2021-02-01,"Commercial Consumption","Nevada","NV",3502 +2021-02-01,"Commercial Consumption","North Dakota","ND",2187 +2021-02-01,"Commercial Consumption","Minnesota","MN",17275 +2021-02-01,"Commercial Consumption","Colorado","CO",8918 +2021-02-01,"Commercial Consumption","Utah","UT",6483 +2021-02-01,"Commercial Consumption","Massachusetts","MA",16242 +2021-02-01,"Commercial Consumption","New Hampshire","NH",1580 +2021-02-01,"Commercial Consumption","Texas","TX",25863 +2021-02-01,"Commercial Consumption","Georgia","GA",8068 +2021-02-01,"Commercial Consumption","Idaho","ID",2815 +2021-02-01,"Commercial Consumption","Indiana","IN",16078 +2021-02-01,"Commercial Consumption","Oregon","OR",4063 +2021-02-01,"Commercial Consumption","Missouri","MO",11762 +2021-02-01,"Commercial Consumption","Wisconsin","WI",16651 +2021-02-01,"Commercial Consumption","New Jersey","NJ",23311 +2021-02-01,"Commercial Consumption","New York","NY",41887 +2021-02-01,"Commercial Consumption","U.S.","U.S.",497284 +2021-02-01,"Commercial Consumption","Florida","FL",5848 +2021-02-01,"Commercial Consumption","Rhode Island","RI",1823 +2021-02-01,"Commercial Consumption","Connecticut","CT",7834 +2021-02-01,"Commercial Consumption","Alabama","AL",4049 +2021-02-01,"Commercial Consumption","Tennessee","TN",10321 +2021-02-01,"Commercial Consumption","Michigan","MI",27643 +2021-02-01,"Commercial Consumption","North Carolina","NC",8773 +2021-02-01,"Commercial Consumption","South Dakota","SD",1928 +2021-02-01,"Commercial Consumption","Kentucky","KY",6894 +2021-02-01,"Commercial Consumption","Kansas","KS",7127 +2021-02-01,"Commercial Consumption","Vermont","VT",894 +2021-02-01,"Commercial Consumption","Louisiana","LA",4195 +2021-02-01,"Commercial Consumption","District of Columbia","DC",2125 +2021-02-01,"Commercial Consumption","Washington","WA",7781 +2021-02-01,"Commercial Consumption","Pennsylvania","PA",23650 +2021-02-01,"Commercial Consumption","Hawaii","HI",140 +2021-02-01,"Commercial Consumption","Nebraska","NE",6071 +2021-02-01,"Delivered to Consumers","Illinois","IL",158271 +2021-02-01,"Delivered to Consumers","Iowa","IA",44590 +2021-02-01,"Delivered to Consumers","Indiana","IN",95520 +2021-02-01,"Delivered to Consumers","Idaho","ID",13867 +2021-02-01,"Delivered to Consumers","Arkansas","AR",30586 +2021-02-01,"Delivered to Consumers","North Carolina","NC",57626 +2021-02-01,"Delivered to Consumers","District of Columbia","DC",4320 +2021-02-01,"Delivered to Consumers","South Dakota","SD",9536 +2021-02-01,"Delivered to Consumers","New York","NY",161690 +2021-02-01,"Delivered to Consumers","Montana","MT",10193 +2021-02-01,"Delivered to Consumers","Alaska","AK",7347 +2021-02-01,"Delivered to Consumers","Oklahoma","OK",58377 +2021-02-01,"Delivered to Consumers","Ohio","OH",145044 +2021-02-01,"Delivered to Consumers","Virginia","VA",60299 +2021-02-01,"Delivered to Consumers","Colorado","CO",49350 +2021-02-01,"Delivered to Consumers","Washington","WA",35087 +2021-02-01,"Delivered to Consumers","Utah","UT",25375 +2021-02-01,"Delivered to Consumers","Delaware","DE",8615 +2021-02-01,"Delivered to Consumers","Hawaii","HI",200 +2021-02-01,"Delivered to Consumers","California","CA",163372 +2021-02-01,"Delivered to Consumers","U.S.","U.S.",2849867 +2021-02-01,"Delivered to Consumers","West Virginia","WV",11854 +2021-02-01,"Delivered to Consumers","Wisconsin","WI",70578 +2021-02-01,"Delivered to Consumers","Massachusetts","MA",54567 +2021-02-01,"Delivered to Consumers","South Carolina","SC",28314 +2021-02-01,"Delivered to Consumers","Oregon","OR",27188 +2021-02-01,"Delivered to Consumers","New Jersey","NJ",87498 +2021-02-01,"Delivered to Consumers","Wyoming","WY",9037 +2021-02-01,"Delivered to Consumers","Tennessee","TN",49030 +2021-02-01,"Delivered to Consumers","Connecticut","CT",30847 +2021-02-01,"Delivered to Consumers","Texas","TX",326753 +2021-02-01,"Delivered to Consumers","Arizona","AZ",29074 +2021-02-01,"Delivered to Consumers","Florida","FL",105244 +2021-02-01,"Delivered to Consumers","New Mexico","NM",16936 +2021-02-01,"Delivered to Consumers","Vermont","VT",1750 +2021-02-01,"Delivered to Consumers","Rhode Island","RI",9414 +2021-02-01,"Delivered to Consumers","Maryland","MD",31884 +2021-02-01,"Delivered to Consumers","Kansas","KS",34504 +2021-02-01,"Delivered to Consumers","Michigan","MI",125265 +2021-02-01,"Delivered to Consumers","Kentucky","KY",37512 +2021-02-01,"Delivered to Consumers","Pennsylvania","PA",156281 +2021-02-01,"Delivered to Consumers","Nebraska","NE",23598 +2021-02-01,"Delivered to Consumers","Mississippi","MS",47752 +2021-02-01,"Delivered to Consumers","Missouri","MO",46330 +2021-02-01,"Delivered to Consumers","Louisiana","LA",117068 +2021-02-01,"Delivered to Consumers","New Hampshire","NH",6145 +2021-02-01,"Delivered to Consumers","North Dakota","ND",8668 +2021-02-01,"Delivered to Consumers","Alabama","AL",56826 +2021-02-01,"Delivered to Consumers","Nevada","NV",25245 +2021-02-01,"Delivered to Consumers","Maine","ME",5581 +2021-02-01,"Delivered to Consumers","Georgia","GA",69662 +2021-02-01,"Delivered to Consumers","Minnesota","MN",60199 +2021-02-01,"Electric Power Consumption","Idaho","ID",2719 +2021-02-01,"Electric Power Consumption","Rhode Island","RI",3627 +2021-02-01,"Electric Power Consumption","Iowa","IA",1521 +2021-02-01,"Electric Power Consumption","Tennessee","TN",8035 +2021-02-01,"Electric Power Consumption","Mississippi","MS",28621 +2021-02-01,"Electric Power Consumption","Ohio","OH",29384 +2021-02-01,"Electric Power Consumption","Montana","MT",311 +2021-02-01,"Electric Power Consumption","Arizona","AZ",16415 +2021-02-01,"Electric Power Consumption","Washington","WA",7134 +2021-02-01,"Electric Power Consumption","Arkansas","AR",7148 +2021-02-01,"Electric Power Consumption","Utah","UT",4894 +2021-02-01,"Electric Power Consumption","Illinois","IL",14749 +2021-02-01,"Electric Power Consumption","Nevada","NV",13033 +2021-02-01,"Electric Power Consumption","North Carolina","NC",22218 +2021-02-01,"Electric Power Consumption","Hawaii","HI",NA +2021-02-01,"Electric Power Consumption","Maryland","MD",5691 +2021-02-01,"Electric Power Consumption","Delaware","DE",763 +2021-02-01,"Electric Power Consumption","Minnesota","MN",5686 +2021-02-01,"Electric Power Consumption","Wisconsin","WI",10616 +2021-02-01,"Electric Power Consumption","Vermont","VT",NA +2021-02-01,"Electric Power Consumption","Maine","ME",1591 +2021-02-01,"Electric Power Consumption","North Dakota","ND",1074 +2021-02-01,"Electric Power Consumption","Connecticut","CT",11937 +2021-02-01,"Electric Power Consumption","New Jersey","NJ",14366 +2021-02-01,"Electric Power Consumption","New York","NY",30223 +2021-02-01,"Electric Power Consumption","U.S.","U.S.",786959 +2021-02-01,"Electric Power Consumption","Missouri","MO",4447 +2021-02-01,"Electric Power Consumption","Kentucky","KY",8206 +2021-02-01,"Electric Power Consumption","Indiana","IN",17425 +2021-02-01,"Electric Power Consumption","Florida","FL",86538 +2021-02-01,"Electric Power Consumption","Alabama","AL",26638 +2021-02-01,"Electric Power Consumption","Colorado","CO",9207 +2021-02-01,"Electric Power Consumption","Georgia","GA",26804 +2021-02-01,"Electric Power Consumption","South Carolina","SC",10757 +2021-02-01,"Electric Power Consumption","Texas","TX",121660 +2021-02-01,"Electric Power Consumption","Oklahoma","OK",21190 +2021-02-01,"Electric Power Consumption","Kansas","KS",1619 +2021-02-01,"Electric Power Consumption","Pennsylvania","PA",65890 +2021-02-01,"Electric Power Consumption","South Dakota","SD",702 +2021-02-01,"Electric Power Consumption","New Hampshire","NH",2298 +2021-02-01,"Electric Power Consumption","Louisiana","LA",21533 +2021-02-01,"Electric Power Consumption","Oregon","OR",10958 +2021-02-01,"Electric Power Consumption","West Virginia","WV",744 +2021-02-01,"Electric Power Consumption","Nebraska","NE",1014 +2021-02-01,"Electric Power Consumption","Alaska","AK",1811 +2021-02-01,"Electric Power Consumption","Virginia","VA",26095 +2021-02-01,"Electric Power Consumption","New Mexico","NM",5921 +2021-02-01,"Electric Power Consumption","Michigan","MI",23590 +2021-02-01,"Electric Power Consumption","Massachusetts","MA",11296 +2021-02-01,"Electric Power Consumption","Wyoming","WY",336 +2021-02-01,"Electric Power Consumption","California","CA",38523 +2021-02-01,"Industrial Consumption","North Dakota","ND",3477 +2021-02-01,"Industrial Consumption","Montana","MT",2267 +2021-02-01,"Industrial Consumption","Alabama","AL",19122 +2021-02-01,"Industrial Consumption","Tennessee","TN",13082 +2021-02-01,"Industrial Consumption","Alaska","AK",586 +2021-02-01,"Industrial Consumption","Hawaii","HI",7 +2021-02-01,"Industrial Consumption","Oklahoma","OK",13726 +2021-02-01,"Industrial Consumption","Louisiana","LA",83661 +2021-02-01,"Industrial Consumption","Mississippi","MS",11210 +2021-02-01,"Industrial Consumption","California","CA",48945 +2021-02-01,"Industrial Consumption","Illinois","IL",24436 +2021-02-01,"Industrial Consumption","Delaware","DE",3409 +2021-02-01,"Industrial Consumption","Missouri","MO",7012 +2021-02-01,"Industrial Consumption","Oregon","OR",5094 +2021-02-01,"Industrial Consumption","Maine","ME",2146 +2021-02-01,"Industrial Consumption","Nebraska","NE",8225 +2021-02-01,"Industrial Consumption","Florida","FL",9910 +2021-02-01,"Industrial Consumption","Connecticut","CT",2262 +2021-02-01,"Industrial Consumption","Maryland","MD",2662 +2021-02-01,"Industrial Consumption","Massachusetts","MA",6214 +2021-02-01,"Industrial Consumption","South Dakota","SD",4465 +2021-02-01,"Industrial Consumption","Arizona","AZ",1848 +2021-02-01,"Industrial Consumption","Arkansas","AR",8129 +2021-02-01,"Industrial Consumption","South Carolina","SC",7769 +2021-02-01,"Industrial Consumption","West Virginia","WV",3124 +2021-02-01,"Industrial Consumption","Michigan","MI",17732 +2021-02-01,"Industrial Consumption","North Carolina","NC",11579 +2021-02-01,"Industrial Consumption","New Mexico","NM",1397 +2021-02-01,"Industrial Consumption","U.S.","U.S.",685706 +2021-02-01,"Industrial Consumption","Virginia","VA",9524 +2021-02-01,"Industrial Consumption","Vermont","VT",214 +2021-02-01,"Industrial Consumption","District of Columbia","DC",NA +2021-02-01,"Industrial Consumption","Washington","WA",6858 +2021-02-01,"Industrial Consumption","New York","NY",9245 +2021-02-01,"Industrial Consumption","Texas","TX",128784 +2021-02-01,"Industrial Consumption","Wyoming","WY",4582 +2021-02-01,"Industrial Consumption","Idaho","ID",3540 +2021-02-01,"Industrial Consumption","Kentucky","KY",11941 +2021-02-01,"Industrial Consumption","Georgia","GA",13618 +2021-02-01,"Industrial Consumption","Kansas","KS",11232 +2021-02-01,"Industrial Consumption","Pennsylvania","PA",24458 +2021-02-01,"Industrial Consumption","Nevada","NV",1428 +2021-02-01,"Industrial Consumption","Wisconsin","WI",17066 +2021-02-01,"Industrial Consumption","New Jersey","NJ",5741 +2021-02-01,"Industrial Consumption","Indiana","IN",35567 +2021-02-01,"Industrial Consumption","Colorado","CO",8699 +2021-02-01,"Industrial Consumption","Ohio","OH",31473 +2021-02-01,"Industrial Consumption","Utah","UT",3802 +2021-02-01,"Industrial Consumption","New Hampshire","NH",934 +2021-02-01,"Industrial Consumption","Minnesota","MN",12782 +2021-02-01,"Industrial Consumption","Iowa","IA",19915 +2021-02-01,"Industrial Consumption","Rhode Island","RI",812 +2021-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",132863 +2021-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",116490 +2021-02-01,"Residential Consumption","Oregon","OR",7070 +2021-02-01,"Residential Consumption","Virginia","VA",14726 +2021-02-01,"Residential Consumption","District of Columbia","DC",2174 +2021-02-01,"Residential Consumption","Indiana","IN",26302 +2021-02-01,"Residential Consumption","Idaho","ID",4788 +2021-02-01,"Residential Consumption","Arkansas","AR",7661 +2021-02-01,"Residential Consumption","Colorado","CO",22390 +2021-02-01,"Residential Consumption","New York","NY",80249 +2021-02-01,"Residential Consumption","Tennessee","TN",17563 +2021-02-01,"Residential Consumption","Nebraska","NE",8257 +2021-02-01,"Residential Consumption","Nevada","NV",7194 +2021-02-01,"Residential Consumption","Minnesota","MN",24414 +2021-02-01,"Residential Consumption","Florida","FL",2517 +2021-02-01,"Residential Consumption","New Jersey","NJ",44046 +2021-02-01,"Residential Consumption","Montana","MT",3889 +2021-02-01,"Residential Consumption","Kentucky","KY",10469 +2021-02-01,"Residential Consumption","Oklahoma","OK",14880 +2021-02-01,"Residential Consumption","Arizona","AZ",6545 +2021-02-01,"Residential Consumption","Vermont","VT",639 +2021-02-01,"Residential Consumption","Utah","UT",10174 +2021-02-01,"Residential Consumption","Michigan","MI",56300 +2021-02-01,"Residential Consumption","Georgia","GA",21056 +2021-02-01,"Residential Consumption","North Dakota","ND",1930 +2021-02-01,"Residential Consumption","Washington","WA",13304 +2021-02-01,"Residential Consumption","U.S.","U.S.",875739 +2021-02-01,"Residential Consumption","Iowa","IA",13713 +2021-02-01,"Residential Consumption","Maryland","MD",14569 +2021-02-01,"Residential Consumption","Massachusetts","MA",20809 +2021-02-01,"Residential Consumption","Wyoming","WY",2215 +2021-02-01,"Residential Consumption","South Carolina","SC",6568 +2021-02-01,"Residential Consumption","Ohio","OH",54238 +2021-02-01,"Residential Consumption","Wisconsin","WI",26209 +2021-02-01,"Residential Consumption","South Dakota","SD",2440 +2021-02-01,"Residential Consumption","Pennsylvania","PA",42152 +2021-02-01,"Residential Consumption","Maine","ME",502 +2021-02-01,"Residential Consumption","New Hampshire","NH",1331 +2021-02-01,"Residential Consumption","Missouri","MO",23092 +2021-02-01,"Residential Consumption","Texas","TX",50375 +2021-02-01,"Residential Consumption","Louisiana","LA",7650 +2021-02-01,"Residential Consumption","Hawaii","HI",52 +2021-02-01,"Residential Consumption","California","CA",52396 +2021-02-01,"Residential Consumption","Alabama","AL",7012 +2021-02-01,"Residential Consumption","Alaska","AK",2796 +2021-02-01,"Residential Consumption","Mississippi","MS",4771 +2021-02-01,"Residential Consumption","Connecticut","CT",8799 +2021-02-01,"Residential Consumption","Delaware","DE",2337 +2021-02-01,"Residential Consumption","Rhode Island","RI",3144 +2021-02-01,"Residential Consumption","North Carolina","NC",14934 +2021-02-01,"Residential Consumption","New Mexico","NM",6042 +2021-02-01,"Residential Consumption","Kansas","KS",14455 +2021-02-01,"Residential Consumption","West Virginia","WV",4714 +2021-02-01,"Residential Consumption","Illinois","IL",79886 +2021-02-01,"Vehicle Fuel Consumption","Utah","UT",22 +2021-02-01,"Vehicle Fuel Consumption","Florida","FL",431 +2021-02-01,"Vehicle Fuel Consumption","Maryland","MD",22 +2021-02-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",21 +2021-02-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-02-01,"Vehicle Fuel Consumption","Texas","TX",72 +2021-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-02-01,"Vehicle Fuel Consumption","New Mexico","NM",30 +2021-02-01,"Vehicle Fuel Consumption","Washington","WA",11 +2021-02-01,"Vehicle Fuel Consumption","Indiana","IN",148 +2021-02-01,"Vehicle Fuel Consumption","Georgia","GA",116 +2021-02-01,"Vehicle Fuel Consumption","Ohio","OH",85 +2021-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",131 +2021-02-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-02-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-02-01,"Vehicle Fuel Consumption","South Carolina","SC",7 +2021-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-02-01,"Vehicle Fuel Consumption","California","CA",1952 +2021-02-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-02-01,"Vehicle Fuel Consumption","Missouri","MO",17 +2021-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-02-01,"Vehicle Fuel Consumption","North Carolina","NC",122 +2021-02-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2021-02-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-02-01,"Vehicle Fuel Consumption","Kansas","KS",71 +2021-02-01,"Vehicle Fuel Consumption","Nebraska","NE",32 +2021-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-02-01,"Vehicle Fuel Consumption","Colorado","CO",135 +2021-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-02-01,"Vehicle Fuel Consumption","Tennessee","TN",29 +2021-02-01,"Vehicle Fuel Consumption","Virginia","VA",52 +2021-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",135 +2021-02-01,"Vehicle Fuel Consumption","Nevada","NV",88 +2021-02-01,"Vehicle Fuel Consumption","Arizona","AZ",159 +2021-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",6 +2021-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",34 +2021-02-01,"Vehicle Fuel Consumption","Louisiana","LA",28 +2021-02-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-02-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-02-01,"Vehicle Fuel Consumption","Illinois","IL",5 +2021-02-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2021-02-01,"Vehicle Fuel Consumption","Connecticut","CT",15 +2021-02-01,"Vehicle Fuel Consumption","New York","NY",87 +2021-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",36 +2021-02-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-02-01,"Vehicle Fuel Consumption","Minnesota","MN",42 +2021-02-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",4179 +2021-03-01,"Commercial Consumption","Virginia","VA",6869 +2021-03-01,"Commercial Consumption","Maine","ME",1111 +2021-03-01,"Commercial Consumption","Hawaii","HI",156 +2021-03-01,"Commercial Consumption","Connecticut","CT",6298 +2021-03-01,"Commercial Consumption","California","CA",22139 +2021-03-01,"Commercial Consumption","Nebraska","NE",3303 +2021-03-01,"Commercial Consumption","Mississippi","MS",2088 +2021-03-01,"Commercial Consumption","Massachusetts","MA",12097 +2021-03-01,"Commercial Consumption","Montana","MT",2507 +2021-03-01,"Commercial Consumption","Texas","TX",16965 +2021-03-01,"Commercial Consumption","Rhode Island","RI",1530 +2021-03-01,"Commercial Consumption","Iowa","IA",5375 +2021-03-01,"Commercial Consumption","Alabama","AL",2204 +2021-03-01,"Commercial Consumption","Delaware","DE",1543 +2021-03-01,"Commercial Consumption","Tennessee","TN",5433 +2021-03-01,"Commercial Consumption","Indiana","IN",9179 +2021-03-01,"Commercial Consumption","Illinois","IL",26171 +2021-03-01,"Commercial Consumption","West Virginia","WV",2459 +2021-03-01,"Commercial Consumption","North Carolina","NC",5690 +2021-03-01,"Commercial Consumption","Oregon","OR",3686 +2021-03-01,"Commercial Consumption","Pennsylvania","PA",16544 +2021-03-01,"Commercial Consumption","Alaska","AK",2118 +2021-03-01,"Commercial Consumption","Minnesota","MN",13349 +2021-03-01,"Commercial Consumption","Kentucky","KY",3877 +2021-03-01,"Commercial Consumption","Ohio","OH",19155 +2021-03-01,"Commercial Consumption","Idaho","ID",2236 +2021-03-01,"Commercial Consumption","Nevada","NV",3376 +2021-03-01,"Commercial Consumption","North Dakota","ND",1827 +2021-03-01,"Commercial Consumption","Oklahoma","OK",4631 +2021-03-01,"Commercial Consumption","Missouri","MO",6320 +2021-03-01,"Commercial Consumption","U.S.","U.S.",358117 +2021-03-01,"Commercial Consumption","Louisiana","LA",2998 +2021-03-01,"Commercial Consumption","New Mexico","NM",3146 +2021-03-01,"Commercial Consumption","New Jersey","NJ",17234 +2021-03-01,"Commercial Consumption","Maryland","MD",7558 +2021-03-01,"Commercial Consumption","Arkansas","AR",6764 +2021-03-01,"Commercial Consumption","New York","NY",32620 +2021-03-01,"Commercial Consumption","Michigan","MI",19438 +2021-03-01,"Commercial Consumption","Washington","WA",6518 +2021-03-01,"Commercial Consumption","Utah","UT",5150 +2021-03-01,"Commercial Consumption","Wisconsin","WI",12248 +2021-03-01,"Commercial Consumption","South Dakota","SD",1546 +2021-03-01,"Commercial Consumption","New Hampshire","NH",1240 +2021-03-01,"Commercial Consumption","Kansas","KS",4060 +2021-03-01,"Commercial Consumption","Florida","FL",5559 +2021-03-01,"Commercial Consumption","District of Columbia","DC",1596 +2021-03-01,"Commercial Consumption","Wyoming","WY",1354 +2021-03-01,"Commercial Consumption","South Carolina","SC",2280 +2021-03-01,"Commercial Consumption","Colorado","CO",7332 +2021-03-01,"Commercial Consumption","Georgia","GA",5093 +2021-03-01,"Commercial Consumption","Vermont","VT",768 +2021-03-01,"Commercial Consumption","Arizona","AZ",3379 +2021-03-01,"Delivered to Consumers","Utah","UT",22562 +2021-03-01,"Delivered to Consumers","Indiana","IN",74084 +2021-03-01,"Delivered to Consumers","Hawaii","HI",221 +2021-03-01,"Delivered to Consumers","Oklahoma","OK",45467 +2021-03-01,"Delivered to Consumers","Kansas","KS",23376 +2021-03-01,"Delivered to Consumers","Iowa","IA",33220 +2021-03-01,"Delivered to Consumers","Louisiana","LA",117291 +2021-03-01,"Delivered to Consumers","Delaware","DE",6088 +2021-03-01,"Delivered to Consumers","Rhode Island","RI",9012 +2021-03-01,"Delivered to Consumers","Alaska","AK",7277 +2021-03-01,"Delivered to Consumers","Arkansas","AR",32627 +2021-03-01,"Delivered to Consumers","Virginia","VA",60371 +2021-03-01,"Delivered to Consumers","California","CA",176519 +2021-03-01,"Delivered to Consumers","Texas","TX",283149 +2021-03-01,"Delivered to Consumers","Mississippi","MS",36181 +2021-03-01,"Delivered to Consumers","South Carolina","SC",24214 +2021-03-01,"Delivered to Consumers","Nevada","NV",25670 +2021-03-01,"Delivered to Consumers","New Mexico","NM",15805 +2021-03-01,"Delivered to Consumers","West Virginia","WV",9830 +2021-03-01,"Delivered to Consumers","Illinois","IL",108830 +2021-03-01,"Delivered to Consumers","South Dakota","SD",7727 +2021-03-01,"Delivered to Consumers","Ohio","OH",112753 +2021-03-01,"Delivered to Consumers","Kentucky","KY",28086 +2021-03-01,"Delivered to Consumers","Connecticut","CT",28350 +2021-03-01,"Delivered to Consumers","Wisconsin","WI",52349 +2021-03-01,"Delivered to Consumers","Pennsylvania","PA",131872 +2021-03-01,"Delivered to Consumers","North Dakota","ND",8363 +2021-03-01,"Delivered to Consumers","Montana","MT",7446 +2021-03-01,"Delivered to Consumers","Maryland","MD",25735 +2021-03-01,"Delivered to Consumers","Idaho","ID",12082 +2021-03-01,"Delivered to Consumers","North Carolina","NC",47126 +2021-03-01,"Delivered to Consumers","Missouri","MO",24607 +2021-03-01,"Delivered to Consumers","New Hampshire","NH",3940 +2021-03-01,"Delivered to Consumers","U.S.","U.S.",2391508 +2021-03-01,"Delivered to Consumers","Vermont","VT",1519 +2021-03-01,"Delivered to Consumers","Tennessee","TN",32254 +2021-03-01,"Delivered to Consumers","Alabama","AL",51133 +2021-03-01,"Delivered to Consumers","Oregon","OR",27118 +2021-03-01,"Delivered to Consumers","Maine","ME",4369 +2021-03-01,"Delivered to Consumers","Michigan","MI",82459 +2021-03-01,"Delivered to Consumers","Nebraska","NE",16059 +2021-03-01,"Delivered to Consumers","Washington","WA",34921 +2021-03-01,"Delivered to Consumers","Minnesota","MN",47563 +2021-03-01,"Delivered to Consumers","District of Columbia","DC",3055 +2021-03-01,"Delivered to Consumers","Wyoming","WY",7737 +2021-03-01,"Delivered to Consumers","New York","NY",130097 +2021-03-01,"Delivered to Consumers","Massachusetts","MA",41879 +2021-03-01,"Delivered to Consumers","Colorado","CO",40429 +2021-03-01,"Delivered to Consumers","New Jersey","NJ",64635 +2021-03-01,"Delivered to Consumers","Georgia","GA",57836 +2021-03-01,"Delivered to Consumers","Arizona","AZ",34171 +2021-03-01,"Delivered to Consumers","Florida","FL",112045 +2021-03-01,"Electric Power Consumption","New Mexico","NM",6009 +2021-03-01,"Electric Power Consumption","Texas","TX",94132 +2021-03-01,"Electric Power Consumption","Utah","UT",5084 +2021-03-01,"Electric Power Consumption","Oregon","OR",11943 +2021-03-01,"Electric Power Consumption","Vermont","VT",NA +2021-03-01,"Electric Power Consumption","Mississippi","MS",20703 +2021-03-01,"Electric Power Consumption","Alabama","AL",25203 +2021-03-01,"Electric Power Consumption","Alaska","AK",1745 +2021-03-01,"Electric Power Consumption","Washington","WA",9820 +2021-03-01,"Electric Power Consumption","Kentucky","KY",8320 +2021-03-01,"Electric Power Consumption","Ohio","OH",30588 +2021-03-01,"Electric Power Consumption","New Hampshire","NH",765 +2021-03-01,"Electric Power Consumption","North Dakota","ND",1302 +2021-03-01,"Electric Power Consumption","Louisiana","LA",24201 +2021-03-01,"Electric Power Consumption","Colorado","CO",7084 +2021-03-01,"Electric Power Consumption","South Carolina","SC",9481 +2021-03-01,"Electric Power Consumption","Wyoming","WY",357 +2021-03-01,"Electric Power Consumption","Iowa","IA",1390 +2021-03-01,"Electric Power Consumption","Tennessee","TN",6337 +2021-03-01,"Electric Power Consumption","Delaware","DE",402 +2021-03-01,"Electric Power Consumption","Rhode Island","RI",4213 +2021-03-01,"Electric Power Consumption","Minnesota","MN",4642 +2021-03-01,"Electric Power Consumption","Michigan","MI",15081 +2021-03-01,"Electric Power Consumption","West Virginia","WV",913 +2021-03-01,"Electric Power Consumption","Nevada","NV",14495 +2021-03-01,"Electric Power Consumption","California","CA",40972 +2021-03-01,"Electric Power Consumption","Nebraska","NE",NA +2021-03-01,"Electric Power Consumption","Maine","ME",765 +2021-03-01,"Electric Power Consumption","Montana","MT",268 +2021-03-01,"Electric Power Consumption","Indiana","IN",14704 +2021-03-01,"Electric Power Consumption","Georgia","GA",26486 +2021-03-01,"Electric Power Consumption","New Jersey","NJ",12964 +2021-03-01,"Electric Power Consumption","Arkansas","AR",10785 +2021-03-01,"Electric Power Consumption","Oklahoma","OK",14419 +2021-03-01,"Electric Power Consumption","Kansas","KS",1712 +2021-03-01,"Electric Power Consumption","South Dakota","SD",NA +2021-03-01,"Electric Power Consumption","North Carolina","NC",22635 +2021-03-01,"Electric Power Consumption","Connecticut","CT",13217 +2021-03-01,"Electric Power Consumption","Florida","FL",92166 +2021-03-01,"Electric Power Consumption","Virginia","VA",32961 +2021-03-01,"Electric Power Consumption","Wisconsin","WI",11394 +2021-03-01,"Electric Power Consumption","Pennsylvania","PA",64862 +2021-03-01,"Electric Power Consumption","Missouri","MO",2324 +2021-03-01,"Electric Power Consumption","Maryland","MD",7189 +2021-03-01,"Electric Power Consumption","Idaho","ID",2806 +2021-03-01,"Electric Power Consumption","New York","NY",28492 +2021-03-01,"Electric Power Consumption","Illinois","IL",15160 +2021-03-01,"Electric Power Consumption","Massachusetts","MA",7173 +2021-03-01,"Electric Power Consumption","U.S.","U.S.",751980 +2021-03-01,"Electric Power Consumption","Hawaii","HI",NA +2021-03-01,"Electric Power Consumption","Arizona","AZ",23270 +2021-03-01,"Industrial Consumption","U.S.","U.S.",702660 +2021-03-01,"Industrial Consumption","Pennsylvania","PA",22377 +2021-03-01,"Industrial Consumption","New York","NY",8364 +2021-03-01,"Industrial Consumption","Wyoming","WY",4463 +2021-03-01,"Industrial Consumption","Illinois","IL",22202 +2021-03-01,"Industrial Consumption","Oklahoma","OK",19482 +2021-03-01,"Industrial Consumption","Colorado","CO",8823 +2021-03-01,"Industrial Consumption","Nevada","NV",1666 +2021-03-01,"Industrial Consumption","Maine","ME",2086 +2021-03-01,"Industrial Consumption","Arkansas","AR",9002 +2021-03-01,"Industrial Consumption","Alabama","AL",20263 +2021-03-01,"Industrial Consumption","Texas","TX",145589 +2021-03-01,"Industrial Consumption","South Carolina","SC",8828 +2021-03-01,"Industrial Consumption","Idaho","ID",3529 +2021-03-01,"Industrial Consumption","Maryland","MD",1619 +2021-03-01,"Industrial Consumption","Missouri","MO",5514 +2021-03-01,"Industrial Consumption","Utah","UT",3385 +2021-03-01,"Industrial Consumption","Nebraska","NE",7713 +2021-03-01,"Industrial Consumption","Tennessee","TN",12725 +2021-03-01,"Industrial Consumption","Connecticut","CT",2039 +2021-03-01,"Industrial Consumption","Indiana","IN",35312 +2021-03-01,"Industrial Consumption","South Dakota","SD",3878 +2021-03-01,"Industrial Consumption","Ohio","OH",30015 +2021-03-01,"Industrial Consumption","New Mexico","NM",1477 +2021-03-01,"Industrial Consumption","New Hampshire","NH",904 +2021-03-01,"Industrial Consumption","Michigan","MI",15173 +2021-03-01,"Industrial Consumption","North Carolina","NC",10887 +2021-03-01,"Industrial Consumption","Alaska","AK",688 +2021-03-01,"Industrial Consumption","Hawaii","HI",10 +2021-03-01,"Industrial Consumption","Arizona","AZ",1865 +2021-03-01,"Industrial Consumption","Mississippi","MS",10682 +2021-03-01,"Industrial Consumption","Iowa","IA",19387 +2021-03-01,"Industrial Consumption","Kentucky","KY",10957 +2021-03-01,"Industrial Consumption","North Dakota","ND",3618 +2021-03-01,"Industrial Consumption","Massachusetts","MA",5271 +2021-03-01,"Industrial Consumption","Washington","WA",7788 +2021-03-01,"Industrial Consumption","West Virginia","WV",3457 +2021-03-01,"Industrial Consumption","Minnesota","MN",13248 +2021-03-01,"Industrial Consumption","Delaware","DE",2600 +2021-03-01,"Industrial Consumption","Louisiana","LA",85837 +2021-03-01,"Industrial Consumption","Kansas","KS",10844 +2021-03-01,"Industrial Consumption","Oregon","OR",5477 +2021-03-01,"Industrial Consumption","Virginia","VA",10097 +2021-03-01,"Industrial Consumption","Vermont","VT",211 +2021-03-01,"Industrial Consumption","Rhode Island","RI",750 +2021-03-01,"Industrial Consumption","Montana","MT",2037 +2021-03-01,"Industrial Consumption","California","CA",56759 +2021-03-01,"Industrial Consumption","Wisconsin","WI",13646 +2021-03-01,"Industrial Consumption","New Jersey","NJ",4504 +2021-03-01,"Industrial Consumption","Florida","FL",11827 +2021-03-01,"Industrial Consumption","Georgia","GA",13788 +2021-03-01,"Industrial Consumption","District of Columbia","DC",NA +2021-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",160131 +2021-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",97754 +2021-03-01,"Residential Consumption","North Carolina","NC",7778 +2021-03-01,"Residential Consumption","Vermont","VT",538 +2021-03-01,"Residential Consumption","Virginia","VA",10387 +2021-03-01,"Residential Consumption","Arkansas","AR",6069 +2021-03-01,"Residential Consumption","Wyoming","WY",1562 +2021-03-01,"Residential Consumption","Texas","TX",26383 +2021-03-01,"Residential Consumption","Maryland","MD",9345 +2021-03-01,"Residential Consumption","Georgia","GA",12340 +2021-03-01,"Residential Consumption","New Mexico","NM",5139 +2021-03-01,"Residential Consumption","North Dakota","ND",1617 +2021-03-01,"Residential Consumption","Massachusetts","MA",17331 +2021-03-01,"Residential Consumption","Kentucky","KY",4932 +2021-03-01,"Residential Consumption","Washington","WA",10784 +2021-03-01,"Residential Consumption","Delaware","DE",1543 +2021-03-01,"Residential Consumption","California","CA",54488 +2021-03-01,"Residential Consumption","New York","NY",60525 +2021-03-01,"Residential Consumption","South Carolina","SC",3617 +2021-03-01,"Residential Consumption","Hawaii","HI",54 +2021-03-01,"Residential Consumption","Utah","UT",8919 +2021-03-01,"Residential Consumption","Nebraska","NE",4405 +2021-03-01,"Residential Consumption","Idaho","ID",3506 +2021-03-01,"Residential Consumption","Ohio","OH",32900 +2021-03-01,"Residential Consumption","Connecticut","CT",6780 +2021-03-01,"Residential Consumption","Tennessee","TN",7726 +2021-03-01,"Residential Consumption","Michigan","MI",32766 +2021-03-01,"Residential Consumption","Nevada","NV",6036 +2021-03-01,"Residential Consumption","Oklahoma","OK",6786 +2021-03-01,"Residential Consumption","Alabama","AL",3457 +2021-03-01,"Residential Consumption","Alaska","AK",2725 +2021-03-01,"Residential Consumption","Illinois","IL",45292 +2021-03-01,"Residential Consumption","Rhode Island","RI",2512 +2021-03-01,"Residential Consumption","District of Columbia","DC",1436 +2021-03-01,"Residential Consumption","Colorado","CO",17040 +2021-03-01,"Residential Consumption","U.S.","U.S.",574124 +2021-03-01,"Residential Consumption","Mississippi","MS",2706 +2021-03-01,"Residential Consumption","Iowa","IA",7066 +2021-03-01,"Residential Consumption","Indiana","IN",14724 +2021-03-01,"Residential Consumption","Missouri","MO",10430 +2021-03-01,"Residential Consumption","Louisiana","LA",4223 +2021-03-01,"Residential Consumption","Wisconsin","WI",15022 +2021-03-01,"Residential Consumption","Minnesota","MN",16277 +2021-03-01,"Residential Consumption","Maine","ME",407 +2021-03-01,"Residential Consumption","Florida","FL",2017 +2021-03-01,"Residential Consumption","New Hampshire","NH",1030 +2021-03-01,"Residential Consumption","Montana","MT",2633 +2021-03-01,"Residential Consumption","Kansas","KS",6682 +2021-03-01,"Residential Consumption","Oregon","OR",6009 +2021-03-01,"Residential Consumption","South Dakota","SD",1860 +2021-03-01,"Residential Consumption","Pennsylvania","PA",27945 +2021-03-01,"Residential Consumption","New Jersey","NJ",29895 +2021-03-01,"Residential Consumption","Arizona","AZ",5480 +2021-03-01,"Residential Consumption","West Virginia","WV",3001 +2021-03-01,"Vehicle Fuel Consumption","Washington","WA",12 +2021-03-01,"Vehicle Fuel Consumption","Virginia","VA",57 +2021-03-01,"Vehicle Fuel Consumption","Texas","TX",80 +2021-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",38 +2021-03-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2021-03-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-03-01,"Vehicle Fuel Consumption","Utah","UT",25 +2021-03-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2021-03-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2021-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-03-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-03-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-03-01,"Vehicle Fuel Consumption","North Carolina","NC",135 +2021-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-03-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-03-01,"Vehicle Fuel Consumption","Arizona","AZ",176 +2021-03-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-03-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",145 +2021-03-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2021-03-01,"Vehicle Fuel Consumption","Nebraska","NE",35 +2021-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-03-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-03-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2021-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",4627 +2021-03-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2021-03-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-03-01,"Vehicle Fuel Consumption","New York","NY",96 +2021-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-03-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2021-03-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-03-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-03-01,"Vehicle Fuel Consumption","Florida","FL",477 +2021-03-01,"Vehicle Fuel Consumption","Indiana","IN",164 +2021-03-01,"Vehicle Fuel Consumption","Minnesota","MN",47 +2021-03-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-03-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2021-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2021-03-01,"Vehicle Fuel Consumption","Kansas","KS",78 +2021-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-03-01,"Vehicle Fuel Consumption","Colorado","CO",150 +2021-03-01,"Vehicle Fuel Consumption","Georgia","GA",129 +2021-03-01,"Vehicle Fuel Consumption","California","CA",2161 +2021-03-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-03-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-03-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-03-01,"Vehicle Fuel Consumption","Missouri","MO",19 +2021-04-01,"Commercial Consumption","West Virginia","WV",1812 +2021-04-01,"Commercial Consumption","Minnesota","MN",7860 +2021-04-01,"Commercial Consumption","Oklahoma","OK",3147 +2021-04-01,"Commercial Consumption","Massachusetts","MA",7971 +2021-04-01,"Commercial Consumption","Florida","FL",5443 +2021-04-01,"Commercial Consumption","Rhode Island","RI",910 +2021-04-01,"Commercial Consumption","Ohio","OH",12992 +2021-04-01,"Commercial Consumption","Alaska","AK",1426 +2021-04-01,"Commercial Consumption","Delaware","DE",1098 +2021-04-01,"Commercial Consumption","South Carolina","SC",2008 +2021-04-01,"Commercial Consumption","North Dakota","ND",1102 +2021-04-01,"Commercial Consumption","Oregon","OR",2204 +2021-04-01,"Commercial Consumption","Montana","MT",2164 +2021-04-01,"Commercial Consumption","Connecticut","CT",4324 +2021-04-01,"Commercial Consumption","Indiana","IN",5846 +2021-04-01,"Commercial Consumption","Illinois","IL",16847 +2021-04-01,"Commercial Consumption","Wyoming","WY",1070 +2021-04-01,"Commercial Consumption","Washington","WA",4308 +2021-04-01,"Commercial Consumption","Arkansas","AR",4340 +2021-04-01,"Commercial Consumption","Alabama","AL",1911 +2021-04-01,"Commercial Consumption","Tennessee","TN",4234 +2021-04-01,"Commercial Consumption","Colorado","CO",5037 +2021-04-01,"Commercial Consumption","New Mexico","NM",1649 +2021-04-01,"Commercial Consumption","Virginia","VA",5533 +2021-04-01,"Commercial Consumption","Missouri","MO",4415 +2021-04-01,"Commercial Consumption","South Dakota","SD",966 +2021-04-01,"Commercial Consumption","New Hampshire","NH",723 +2021-04-01,"Commercial Consumption","Kentucky","KY",2417 +2021-04-01,"Commercial Consumption","Georgia","GA",3747 +2021-04-01,"Commercial Consumption","Vermont","VT",546 +2021-04-01,"Commercial Consumption","Mississippi","MS",1360 +2021-04-01,"Commercial Consumption","Pennsylvania","PA",10971 +2021-04-01,"Commercial Consumption","Maine","ME",693 +2021-04-01,"Commercial Consumption","U.S.","U.S.",247546 +2021-04-01,"Commercial Consumption","Texas","TX",14224 +2021-04-01,"Commercial Consumption","Kansas","KS",3123 +2021-04-01,"Commercial Consumption","New York","NY",22750 +2021-04-01,"Commercial Consumption","Nevada","NV",2250 +2021-04-01,"Commercial Consumption","Louisiana","LA",2922 +2021-04-01,"Commercial Consumption","District of Columbia","DC",1145 +2021-04-01,"Commercial Consumption","Utah","UT",3318 +2021-04-01,"Commercial Consumption","Maryland","MD",5577 +2021-04-01,"Commercial Consumption","North Carolina","NC",3875 +2021-04-01,"Commercial Consumption","Wisconsin","WI",7116 +2021-04-01,"Commercial Consumption","New Jersey","NJ",10509 +2021-04-01,"Commercial Consumption","Idaho","ID",1515 +2021-04-01,"Commercial Consumption","Iowa","IA",3383 +2021-04-01,"Commercial Consumption","Hawaii","HI",177 +2021-04-01,"Commercial Consumption","California","CA",17649 +2021-04-01,"Commercial Consumption","Nebraska","NE",2099 +2021-04-01,"Commercial Consumption","Arizona","AZ",2467 +2021-04-01,"Commercial Consumption","Michigan","MI",12376 +2021-04-01,"Delivered to Consumers","Vermont","VT",1039 +2021-04-01,"Delivered to Consumers","South Carolina","SC",25815 +2021-04-01,"Delivered to Consumers","Mississippi","MS",41320 +2021-04-01,"Delivered to Consumers","Massachusetts","MA",27536 +2021-04-01,"Delivered to Consumers","Oregon","OR",21728 +2021-04-01,"Delivered to Consumers","District of Columbia","DC",2038 +2021-04-01,"Delivered to Consumers","Utah","UT",17890 +2021-04-01,"Delivered to Consumers","West Virginia","WV",8479 +2021-04-01,"Delivered to Consumers","New York","NY",89618 +2021-04-01,"Delivered to Consumers","Nebraska","NE",12018 +2021-04-01,"Delivered to Consumers","Arizona","AZ",35291 +2021-04-01,"Delivered to Consumers","Florida","FL",115467 +2021-04-01,"Delivered to Consumers","U.S.","U.S.",2026030 +2021-04-01,"Delivered to Consumers","Montana","MT",6301 +2021-04-01,"Delivered to Consumers","Maryland","MD",22427 +2021-04-01,"Delivered to Consumers","Alabama","AL",47317 +2021-04-01,"Delivered to Consumers","California","CA",147604 +2021-04-01,"Delivered to Consumers","Nevada","NV",20897 +2021-04-01,"Delivered to Consumers","Louisiana","LA",114452 +2021-04-01,"Delivered to Consumers","Washington","WA",26177 +2021-04-01,"Delivered to Consumers","New Hampshire","NH",3684 +2021-04-01,"Delivered to Consumers","Indiana","IN",61362 +2021-04-01,"Delivered to Consumers","South Dakota","SD",6964 +2021-04-01,"Delivered to Consumers","Hawaii","HI",247 +2021-04-01,"Delivered to Consumers","Ohio","OH",84616 +2021-04-01,"Delivered to Consumers","Michigan","MI",66375 +2021-04-01,"Delivered to Consumers","Missouri","MO",18801 +2021-04-01,"Delivered to Consumers","Colorado","CO",31478 +2021-04-01,"Delivered to Consumers","Maine","ME",3568 +2021-04-01,"Delivered to Consumers","Delaware","DE",5349 +2021-04-01,"Delivered to Consumers","Alaska","AK",5434 +2021-04-01,"Delivered to Consumers","Kentucky","KY",21627 +2021-04-01,"Delivered to Consumers","Arkansas","AR",27493 +2021-04-01,"Delivered to Consumers","Wisconsin","WI",40491 +2021-04-01,"Delivered to Consumers","Virginia","VA",49382 +2021-04-01,"Delivered to Consumers","Pennsylvania","PA",102067 +2021-04-01,"Delivered to Consumers","Texas","TX",292335 +2021-04-01,"Delivered to Consumers","Georgia","GA",56786 +2021-04-01,"Delivered to Consumers","Wyoming","WY",6688 +2021-04-01,"Delivered to Consumers","Rhode Island","RI",5263 +2021-04-01,"Delivered to Consumers","Oklahoma","OK",39500 +2021-04-01,"Delivered to Consumers","Kansas","KS",20409 +2021-04-01,"Delivered to Consumers","Idaho","ID",8087 +2021-04-01,"Delivered to Consumers","Tennessee","TN",25542 +2021-04-01,"Delivered to Consumers","North Dakota","ND",6532 +2021-04-01,"Delivered to Consumers","New Mexico","NM",11057 +2021-04-01,"Delivered to Consumers","Illinois","IL",75232 +2021-04-01,"Delivered to Consumers","Iowa","IA",28245 +2021-04-01,"Delivered to Consumers","Connecticut","CT",20150 +2021-04-01,"Delivered to Consumers","North Carolina","NC",35049 +2021-04-01,"Delivered to Consumers","New Jersey","NJ",46769 +2021-04-01,"Delivered to Consumers","Minnesota","MN",36035 +2021-04-01,"Electric Power Consumption","Texas","TX",112058 +2021-04-01,"Electric Power Consumption","Pennsylvania","PA",55815 +2021-04-01,"Electric Power Consumption","Georgia","GA",31118 +2021-04-01,"Electric Power Consumption","Alaska","AK",1634 +2021-04-01,"Electric Power Consumption","Virginia","VA",29677 +2021-04-01,"Electric Power Consumption","New York","NY",23697 +2021-04-01,"Electric Power Consumption","Oklahoma","OK",14152 +2021-04-01,"Electric Power Consumption","Minnesota","MN",4582 +2021-04-01,"Electric Power Consumption","South Dakota","SD",738 +2021-04-01,"Electric Power Consumption","Maine","ME",800 +2021-04-01,"Electric Power Consumption","Mississippi","MS",27781 +2021-04-01,"Electric Power Consumption","Tennessee","TN",4093 +2021-04-01,"Electric Power Consumption","Maryland","MD",8934 +2021-04-01,"Electric Power Consumption","Connecticut","CT",10292 +2021-04-01,"Electric Power Consumption","Arizona","AZ",28267 +2021-04-01,"Electric Power Consumption","Louisiana","LA",22962 +2021-04-01,"Electric Power Consumption","Idaho","ID",1327 +2021-04-01,"Electric Power Consumption","South Carolina","SC",14012 +2021-04-01,"Electric Power Consumption","Utah","UT",5309 +2021-04-01,"Electric Power Consumption","Oregon","OR",11554 +2021-04-01,"Electric Power Consumption","Nevada","NV",14077 +2021-04-01,"Electric Power Consumption","North Carolina","NC",17273 +2021-04-01,"Electric Power Consumption","Indiana","IN",13748 +2021-04-01,"Electric Power Consumption","Florida","FL",96204 +2021-04-01,"Electric Power Consumption","California","CA",38511 +2021-04-01,"Electric Power Consumption","Washington","WA",8700 +2021-04-01,"Electric Power Consumption","New Jersey","NJ",14111 +2021-04-01,"Electric Power Consumption","Rhode Island","RI",2177 +2021-04-01,"Electric Power Consumption","Massachusetts","MA",5120 +2021-04-01,"Electric Power Consumption","Wisconsin","WI",11384 +2021-04-01,"Electric Power Consumption","Hawaii","HI",NA +2021-04-01,"Electric Power Consumption","Montana","MT",340 +2021-04-01,"Electric Power Consumption","Delaware","DE",950 +2021-04-01,"Electric Power Consumption","Colorado","CO",7567 +2021-04-01,"Electric Power Consumption","Arkansas","AR",12281 +2021-04-01,"Electric Power Consumption","Wyoming","WY",824 +2021-04-01,"Electric Power Consumption","Vermont","VT",NA +2021-04-01,"Electric Power Consumption","New Hampshire","NH",1549 +2021-04-01,"Electric Power Consumption","North Dakota","ND",1160 +2021-04-01,"Electric Power Consumption","New Mexico","NM",5635 +2021-04-01,"Electric Power Consumption","Illinois","IL",12437 +2021-04-01,"Electric Power Consumption","Nebraska","NE",777 +2021-04-01,"Electric Power Consumption","Kentucky","KY",6082 +2021-04-01,"Electric Power Consumption","Alabama","AL",23713 +2021-04-01,"Electric Power Consumption","Michigan","MI",18677 +2021-04-01,"Electric Power Consumption","Kansas","KS",2199 +2021-04-01,"Electric Power Consumption","West Virginia","WV",1903 +2021-04-01,"Electric Power Consumption","Iowa","IA",1823 +2021-04-01,"Electric Power Consumption","U.S.","U.S.",755778 +2021-04-01,"Electric Power Consumption","Missouri","MO",2753 +2021-04-01,"Electric Power Consumption","Ohio","OH",25001 +2021-04-01,"Industrial Consumption","Mississippi","MS",10946 +2021-04-01,"Industrial Consumption","Arkansas","AR",8828 +2021-04-01,"Industrial Consumption","Montana","MT",1988 +2021-04-01,"Industrial Consumption","Massachusetts","MA",4451 +2021-04-01,"Industrial Consumption","Utah","UT",3598 +2021-04-01,"Industrial Consumption","New York","NY",7648 +2021-04-01,"Industrial Consumption","Alabama","AL",19501 +2021-04-01,"Industrial Consumption","West Virginia","WV",2843 +2021-04-01,"Industrial Consumption","Minnesota","MN",13734 +2021-04-01,"Industrial Consumption","Delaware","DE",2444 +2021-04-01,"Industrial Consumption","North Dakota","ND",3297 +2021-04-01,"Industrial Consumption","Washington","WA",6752 +2021-04-01,"Industrial Consumption","Kansas","KS",10664 +2021-04-01,"Industrial Consumption","Vermont","VT",159 +2021-04-01,"Industrial Consumption","Idaho","ID",3032 +2021-04-01,"Industrial Consumption","Connecticut","CT",1592 +2021-04-01,"Industrial Consumption","Michigan","MI",13280 +2021-04-01,"Industrial Consumption","Illinois","IL",18628 +2021-04-01,"Industrial Consumption","Rhode Island","RI",768 +2021-04-01,"Industrial Consumption","Alaska","AK",658 +2021-04-01,"Industrial Consumption","South Dakota","SD",4192 +2021-04-01,"Industrial Consumption","New Mexico","NM",1396 +2021-04-01,"Industrial Consumption","U.S.","U.S.",675905 +2021-04-01,"Industrial Consumption","Pennsylvania","PA",19169 +2021-04-01,"Industrial Consumption","Nevada","NV",1498 +2021-04-01,"Industrial Consumption","California","CA",55790 +2021-04-01,"Industrial Consumption","Wisconsin","WI",11896 +2021-04-01,"Industrial Consumption","New Hampshire","NH",819 +2021-04-01,"Industrial Consumption","District of Columbia","DC",NA +2021-04-01,"Industrial Consumption","Maryland","MD",1476 +2021-04-01,"Industrial Consumption","Hawaii","HI",10 +2021-04-01,"Industrial Consumption","Ohio","OH",26335 +2021-04-01,"Industrial Consumption","Arizona","AZ",1552 +2021-04-01,"Industrial Consumption","Wyoming","WY",3648 +2021-04-01,"Industrial Consumption","Iowa","IA",18847 +2021-04-01,"Industrial Consumption","Missouri","MO",5215 +2021-04-01,"Industrial Consumption","Oregon","OR",4851 +2021-04-01,"Industrial Consumption","Texas","TX",153653 +2021-04-01,"Industrial Consumption","Tennessee","TN",12891 +2021-04-01,"Industrial Consumption","Georgia","GA",13498 +2021-04-01,"Industrial Consumption","Colorado","CO",7480 +2021-04-01,"Industrial Consumption","Nebraska","NE",6728 +2021-04-01,"Industrial Consumption","Virginia","VA",8565 +2021-04-01,"Industrial Consumption","Kentucky","KY",10021 +2021-04-01,"Industrial Consumption","Indiana","IN",32733 +2021-04-01,"Industrial Consumption","Oklahoma","OK",17772 +2021-04-01,"Industrial Consumption","Louisiana","LA",85917 +2021-04-01,"Industrial Consumption","Maine","ME",1847 +2021-04-01,"Industrial Consumption","South Carolina","SC",7882 +2021-04-01,"Industrial Consumption","New Jersey","NJ",3810 +2021-04-01,"Industrial Consumption","Florida","FL",11564 +2021-04-01,"Industrial Consumption","North Carolina","NC",10040 +2021-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",156298 +2021-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",82815 +2021-04-01,"Residential Consumption","Oregon","OR",3116 +2021-04-01,"Residential Consumption","Connecticut","CT",3926 +2021-04-01,"Residential Consumption","Tennessee","TN",4294 +2021-04-01,"Residential Consumption","South Dakota","SD",1068 +2021-04-01,"Residential Consumption","Missouri","MO",6399 +2021-04-01,"Residential Consumption","Delaware","DE",856 +2021-04-01,"Residential Consumption","Arizona","AZ",2835 +2021-04-01,"Residential Consumption","Rhode Island","RI",1400 +2021-04-01,"Residential Consumption","Iowa","IA",4190 +2021-04-01,"Residential Consumption","Nebraska","NE",2381 +2021-04-01,"Residential Consumption","Georgia","GA",8299 +2021-04-01,"Residential Consumption","Pennsylvania","PA",15971 +2021-04-01,"Residential Consumption","New Hampshire","NH",592 +2021-04-01,"Residential Consumption","Colorado","CO",11249 +2021-04-01,"Residential Consumption","Wyoming","WY",1145 +2021-04-01,"Residential Consumption","Ohio","OH",20197 +2021-04-01,"Residential Consumption","North Carolina","NC",3730 +2021-04-01,"Residential Consumption","Mississippi","MS",1231 +2021-04-01,"Residential Consumption","Vermont","VT",332 +2021-04-01,"Residential Consumption","North Dakota","ND",973 +2021-04-01,"Residential Consumption","Oklahoma","OK",4285 +2021-04-01,"Residential Consumption","Alabama","AL",2186 +2021-04-01,"Residential Consumption","New York","NY",35429 +2021-04-01,"Residential Consumption","Utah","UT",5643 +2021-04-01,"Residential Consumption","Michigan","MI",22042 +2021-04-01,"Residential Consumption","Indiana","IN",8875 +2021-04-01,"Residential Consumption","Massachusetts","MA",9988 +2021-04-01,"Residential Consumption","Idaho","ID",2209 +2021-04-01,"Residential Consumption","Montana","MT",1810 +2021-04-01,"Residential Consumption","Kentucky","KY",3107 +2021-04-01,"Residential Consumption","Kansas","KS",4347 +2021-04-01,"Residential Consumption","South Carolina","SC",1905 +2021-04-01,"Residential Consumption","Louisiana","LA",2621 +2021-04-01,"Residential Consumption","Maryland","MD",6416 +2021-04-01,"Residential Consumption","New Mexico","NM",2344 +2021-04-01,"Residential Consumption","Florida","FL",1795 +2021-04-01,"Residential Consumption","Washington","WA",6405 +2021-04-01,"Residential Consumption","Alaska","AK",1715 +2021-04-01,"Residential Consumption","Hawaii","HI",60 +2021-04-01,"Residential Consumption","Virginia","VA",5551 +2021-04-01,"Residential Consumption","Nevada","NV",2979 +2021-04-01,"Residential Consumption","Arkansas","AR",2038 +2021-04-01,"Residential Consumption","California","CA",33563 +2021-04-01,"Residential Consumption","West Virginia","WV",1919 +2021-04-01,"Residential Consumption","Illinois","IL",27315 +2021-04-01,"Residential Consumption","Texas","TX",12322 +2021-04-01,"Residential Consumption","Wisconsin","WI",10056 +2021-04-01,"Residential Consumption","Minnesota","MN",9813 +2021-04-01,"Residential Consumption","District of Columbia","DC",870 +2021-04-01,"Residential Consumption","Maine","ME",229 +2021-04-01,"Residential Consumption","New Jersey","NJ",18302 +2021-04-01,"Residential Consumption","U.S.","U.S.",342324 +2021-04-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2021-04-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-04-01,"Vehicle Fuel Consumption","Florida","FL",462 +2021-04-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2021-04-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-04-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",4478 +2021-04-01,"Vehicle Fuel Consumption","Ohio","OH",91 +2021-04-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2021-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-04-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-04-01,"Vehicle Fuel Consumption","Colorado","CO",145 +2021-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-04-01,"Vehicle Fuel Consumption","Utah","UT",24 +2021-04-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2021-04-01,"Vehicle Fuel Consumption","Virginia","VA",55 +2021-04-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-04-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-04-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-04-01,"Vehicle Fuel Consumption","Texas","TX",77 +2021-04-01,"Vehicle Fuel Consumption","New York","NY",93 +2021-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",140 +2021-04-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2021-04-01,"Vehicle Fuel Consumption","Arizona","AZ",170 +2021-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-04-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2021-04-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2021-04-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-04-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-04-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-04-01,"Vehicle Fuel Consumption","North Carolina","NC",131 +2021-04-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-04-01,"Vehicle Fuel Consumption","Connecticut","CT",16 +2021-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-04-01,"Vehicle Fuel Consumption","Washington","WA",11 +2021-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-04-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2021-04-01,"Vehicle Fuel Consumption","Indiana","IN",159 +2021-04-01,"Vehicle Fuel Consumption","California","CA",2092 +2021-04-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-04-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2021-04-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2021-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2021-04-01,"Vehicle Fuel Consumption","Minnesota","MN",45 +2021-04-01,"Vehicle Fuel Consumption","Georgia","GA",125 +2021-04-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-05-01,"Commercial Consumption","West Virginia","WV",1285 +2021-05-01,"Commercial Consumption","Massachusetts","MA",4758 +2021-05-01,"Commercial Consumption","New Hampshire","NH",407 +2021-05-01,"Commercial Consumption","Kansas","KS",1995 +2021-05-01,"Commercial Consumption","California","CA",16285 +2021-05-01,"Commercial Consumption","Illinois","IL",11552 +2021-05-01,"Commercial Consumption","North Carolina","NC",2990 +2021-05-01,"Commercial Consumption","Oklahoma","OK",2198 +2021-05-01,"Commercial Consumption","Montana","MT",1582 +2021-05-01,"Commercial Consumption","Maine","ME",440 +2021-05-01,"Commercial Consumption","Maryland","MD",4964 +2021-05-01,"Commercial Consumption","Nebraska","NE",1499 +2021-05-01,"Commercial Consumption","North Dakota","ND",675 +2021-05-01,"Commercial Consumption","South Dakota","SD",589 +2021-05-01,"Commercial Consumption","U.S.","U.S.",182912 +2021-05-01,"Commercial Consumption","Connecticut","CT",2920 +2021-05-01,"Commercial Consumption","Mississippi","MS",984 +2021-05-01,"Commercial Consumption","Arizona","AZ",2356 +2021-05-01,"Commercial Consumption","Wyoming","WY",960 +2021-05-01,"Commercial Consumption","Utah","UT",1921 +2021-05-01,"Commercial Consumption","New Jersey","NJ",8098 +2021-05-01,"Commercial Consumption","Georgia","GA",2716 +2021-05-01,"Commercial Consumption","Idaho","ID",857 +2021-05-01,"Commercial Consumption","Alaska","AK",909 +2021-05-01,"Commercial Consumption","New York","NY",17051 +2021-05-01,"Commercial Consumption","New Mexico","NM",1308 +2021-05-01,"Commercial Consumption","Oregon","OR",1586 +2021-05-01,"Commercial Consumption","Pennsylvania","PA",7418 +2021-05-01,"Commercial Consumption","Alabama","AL",1437 +2021-05-01,"Commercial Consumption","Delaware","DE",828 +2021-05-01,"Commercial Consumption","Indiana","IN",4071 +2021-05-01,"Commercial Consumption","Minnesota","MN",4961 +2021-05-01,"Commercial Consumption","Missouri","MO",3221 +2021-05-01,"Commercial Consumption","Vermont","VT",420 +2021-05-01,"Commercial Consumption","Arkansas","AR",3571 +2021-05-01,"Commercial Consumption","Tennessee","TN",3162 +2021-05-01,"Commercial Consumption","District of Columbia","DC",740 +2021-05-01,"Commercial Consumption","Washington","WA",3297 +2021-05-01,"Commercial Consumption","Colorado","CO",3466 +2021-05-01,"Commercial Consumption","Virginia","VA",3520 +2021-05-01,"Commercial Consumption","Wisconsin","WI",5836 +2021-05-01,"Commercial Consumption","Kentucky","KY",1564 +2021-05-01,"Commercial Consumption","Florida","FL",5167 +2021-05-01,"Commercial Consumption","Rhode Island","RI",496 +2021-05-01,"Commercial Consumption","Ohio","OH",8642 +2021-05-01,"Commercial Consumption","Nevada","NV",2034 +2021-05-01,"Commercial Consumption","South Carolina","SC",1810 +2021-05-01,"Commercial Consumption","Texas","TX",10887 +2021-05-01,"Commercial Consumption","Iowa","IA",2397 +2021-05-01,"Commercial Consumption","Hawaii","HI",159 +2021-05-01,"Commercial Consumption","Michigan","MI",8681 +2021-05-01,"Commercial Consumption","Louisiana","LA",2243 +2021-05-01,"Delivered to Consumers","New Mexico","NM",11780 +2021-05-01,"Delivered to Consumers","Maryland","MD",16033 +2021-05-01,"Delivered to Consumers","Idaho","ID",6918 +2021-05-01,"Delivered to Consumers","Tennessee","TN",23712 +2021-05-01,"Delivered to Consumers","Alabama","AL",50639 +2021-05-01,"Delivered to Consumers","Nebraska","NE",10073 +2021-05-01,"Delivered to Consumers","Missouri","MO",14882 +2021-05-01,"Delivered to Consumers","Massachusetts","MA",19205 +2021-05-01,"Delivered to Consumers","South Carolina","SC",24905 +2021-05-01,"Delivered to Consumers","Nevada","NV",19530 +2021-05-01,"Delivered to Consumers","U.S.","U.S.",1879222 +2021-05-01,"Delivered to Consumers","Kansas","KS",14913 +2021-05-01,"Delivered to Consumers","Georgia","GA",53384 +2021-05-01,"Delivered to Consumers","Minnesota","MN",26545 +2021-05-01,"Delivered to Consumers","Delaware","DE",5264 +2021-05-01,"Delivered to Consumers","Hawaii","HI",215 +2021-05-01,"Delivered to Consumers","Iowa","IA",23539 +2021-05-01,"Delivered to Consumers","Wisconsin","WI",31261 +2021-05-01,"Delivered to Consumers","North Carolina","NC",36329 +2021-05-01,"Delivered to Consumers","Colorado","CO",25715 +2021-05-01,"Delivered to Consumers","Oregon","OR",14170 +2021-05-01,"Delivered to Consumers","Indiana","IN",55445 +2021-05-01,"Delivered to Consumers","Alaska","AK",3780 +2021-05-01,"Delivered to Consumers","Oklahoma","OK",40137 +2021-05-01,"Delivered to Consumers","California","CA",139449 +2021-05-01,"Delivered to Consumers","Arizona","AZ",38153 +2021-05-01,"Delivered to Consumers","West Virginia","WV",7470 +2021-05-01,"Delivered to Consumers","Illinois","IL",61041 +2021-05-01,"Delivered to Consumers","South Dakota","SD",5835 +2021-05-01,"Delivered to Consumers","Rhode Island","RI",5422 +2021-05-01,"Delivered to Consumers","Michigan","MI",49671 +2021-05-01,"Delivered to Consumers","Pennsylvania","PA",101317 +2021-05-01,"Delivered to Consumers","New Jersey","NJ",37666 +2021-05-01,"Delivered to Consumers","New Hampshire","NH",3627 +2021-05-01,"Delivered to Consumers","Florida","FL",132749 +2021-05-01,"Delivered to Consumers","Wyoming","WY",6293 +2021-05-01,"Delivered to Consumers","Vermont","VT",782 +2021-05-01,"Delivered to Consumers","Virginia","VA",40875 +2021-05-01,"Delivered to Consumers","North Dakota","ND",5299 +2021-05-01,"Delivered to Consumers","District of Columbia","DC",1269 +2021-05-01,"Delivered to Consumers","Utah","UT",14081 +2021-05-01,"Delivered to Consumers","New York","NY",77835 +2021-05-01,"Delivered to Consumers","Ohio","OH",74491 +2021-05-01,"Delivered to Consumers","Kentucky","KY",21227 +2021-05-01,"Delivered to Consumers","Connecticut","CT",18383 +2021-05-01,"Delivered to Consumers","Maine","ME",3395 +2021-05-01,"Delivered to Consumers","Montana","MT",4969 +2021-05-01,"Delivered to Consumers","Arkansas","AR",21946 +2021-05-01,"Delivered to Consumers","Mississippi","MS",42341 +2021-05-01,"Delivered to Consumers","Texas","TX",302401 +2021-05-01,"Delivered to Consumers","Louisiana","LA",115165 +2021-05-01,"Delivered to Consumers","Washington","WA",17693 +2021-05-01,"Electric Power Consumption","New Mexico","NM",7426 +2021-05-01,"Electric Power Consumption","Louisiana","LA",26228 +2021-05-01,"Electric Power Consumption","Oregon","OR",5843 +2021-05-01,"Electric Power Consumption","Pennsylvania","PA",65731 +2021-05-01,"Electric Power Consumption","Wisconsin","WI",9684 +2021-05-01,"Electric Power Consumption","Vermont","VT",1 +2021-05-01,"Electric Power Consumption","Maine","ME",1128 +2021-05-01,"Electric Power Consumption","Maryland","MD",6353 +2021-05-01,"Electric Power Consumption","Connecticut","CT",11512 +2021-05-01,"Electric Power Consumption","Alabama","AL",28622 +2021-05-01,"Electric Power Consumption","Alaska","AK",1243 +2021-05-01,"Electric Power Consumption","Minnesota","MN",4739 +2021-05-01,"Electric Power Consumption","Wyoming","WY",622 +2021-05-01,"Electric Power Consumption","California","CA",38581 +2021-05-01,"Electric Power Consumption","Michigan","MI",16248 +2021-05-01,"Electric Power Consumption","Nevada","NV",13488 +2021-05-01,"Electric Power Consumption","U.S.","U.S.",816084 +2021-05-01,"Electric Power Consumption","South Dakota","SD",645 +2021-05-01,"Electric Power Consumption","Missouri","MO",3009 +2021-05-01,"Electric Power Consumption","Hawaii","HI",NA +2021-05-01,"Electric Power Consumption","Indiana","IN",13733 +2021-05-01,"Electric Power Consumption","New Jersey","NJ",14964 +2021-05-01,"Electric Power Consumption","Idaho","ID",2212 +2021-05-01,"Electric Power Consumption","South Carolina","SC",13729 +2021-05-01,"Electric Power Consumption","Texas","TX",125446 +2021-05-01,"Electric Power Consumption","Illinois","IL",12014 +2021-05-01,"Electric Power Consumption","West Virginia","WV",2000 +2021-05-01,"Electric Power Consumption","Tennessee","TN",5728 +2021-05-01,"Electric Power Consumption","Mississippi","MS",28800 +2021-05-01,"Electric Power Consumption","Ohio","OH",29473 +2021-05-01,"Electric Power Consumption","New Hampshire","NH",2243 +2021-05-01,"Electric Power Consumption","Arizona","AZ",31797 +2021-05-01,"Electric Power Consumption","Arkansas","AR",7988 +2021-05-01,"Electric Power Consumption","Rhode Island","RI",3515 +2021-05-01,"Electric Power Consumption","Utah","UT",5827 +2021-05-01,"Electric Power Consumption","Kansas","KS",1123 +2021-05-01,"Electric Power Consumption","Florida","FL",114545 +2021-05-01,"Electric Power Consumption","Virginia","VA",25881 +2021-05-01,"Electric Power Consumption","Oklahoma","OK",17177 +2021-05-01,"Electric Power Consumption","Massachusetts","MA",5712 +2021-05-01,"Electric Power Consumption","Iowa","IA",1193 +2021-05-01,"Electric Power Consumption","Nebraska","NE",542 +2021-05-01,"Electric Power Consumption","North Carolina","NC",21467 +2021-05-01,"Electric Power Consumption","North Dakota","ND",837 +2021-05-01,"Electric Power Consumption","Delaware","DE",1479 +2021-05-01,"Electric Power Consumption","Washington","WA",3866 +2021-05-01,"Electric Power Consumption","Colorado","CO",9079 +2021-05-01,"Electric Power Consumption","New York","NY",31951 +2021-05-01,"Electric Power Consumption","Kentucky","KY",8229 +2021-05-01,"Electric Power Consumption","Montana","MT",241 +2021-05-01,"Electric Power Consumption","Georgia","GA",32192 +2021-05-01,"Industrial Consumption","Mississippi","MS",11759 +2021-05-01,"Industrial Consumption","California","CA",54842 +2021-05-01,"Industrial Consumption","Virginia","VA",8690 +2021-05-01,"Industrial Consumption","West Virginia","WV",3136 +2021-05-01,"Industrial Consumption","Vermont","VT",152 +2021-05-01,"Industrial Consumption","Wyoming","WY",3742 +2021-05-01,"Industrial Consumption","New Jersey","NJ",4361 +2021-05-01,"Industrial Consumption","Minnesota","MN",11413 +2021-05-01,"Industrial Consumption","Illinois","IL",18729 +2021-05-01,"Industrial Consumption","North Carolina","NC",9548 +2021-05-01,"Industrial Consumption","Maryland","MD",1204 +2021-05-01,"Industrial Consumption","Oregon","OR",4622 +2021-05-01,"Industrial Consumption","Arkansas","AR",9090 +2021-05-01,"Industrial Consumption","Connecticut","CT",1675 +2021-05-01,"Industrial Consumption","Delaware","DE",2524 +2021-05-01,"Industrial Consumption","Alaska","AK",628 +2021-05-01,"Industrial Consumption","Louisiana","LA",84933 +2021-05-01,"Industrial Consumption","Washington","WA",6333 +2021-05-01,"Industrial Consumption","Kansas","KS",9684 +2021-05-01,"Industrial Consumption","Nevada","NV",1393 +2021-05-01,"Industrial Consumption","New Hampshire","NH",655 +2021-05-01,"Industrial Consumption","Michigan","MI",11195 +2021-05-01,"Industrial Consumption","Indiana","IN",31810 +2021-05-01,"Industrial Consumption","Georgia","GA",12811 +2021-05-01,"Industrial Consumption","Hawaii","HI",7 +2021-05-01,"Industrial Consumption","South Dakota","SD",3958 +2021-05-01,"Industrial Consumption","Arizona","AZ",1593 +2021-05-01,"Industrial Consumption","South Carolina","SC",8413 +2021-05-01,"Industrial Consumption","Florida","FL",11190 +2021-05-01,"Industrial Consumption","Massachusetts","MA",3335 +2021-05-01,"Industrial Consumption","New Mexico","NM",1481 +2021-05-01,"Industrial Consumption","U.S.","U.S.",657795 +2021-05-01,"Industrial Consumption","Pennsylvania","PA",18266 +2021-05-01,"Industrial Consumption","Tennessee","TN",12229 +2021-05-01,"Industrial Consumption","Iowa","IA",17453 +2021-05-01,"Industrial Consumption","Rhode Island","RI",680 +2021-05-01,"Industrial Consumption","District of Columbia","DC",NA +2021-05-01,"Industrial Consumption","North Dakota","ND",3297 +2021-05-01,"Industrial Consumption","Alabama","AL",19283 +2021-05-01,"Industrial Consumption","Wisconsin","WI",9994 +2021-05-01,"Industrial Consumption","Idaho","ID",2758 +2021-05-01,"Industrial Consumption","Montana","MT",2023 +2021-05-01,"Industrial Consumption","Oklahoma","OK",18191 +2021-05-01,"Industrial Consumption","Colorado","CO",6070 +2021-05-01,"Industrial Consumption","Utah","UT",3242 +2021-05-01,"Industrial Consumption","Texas","TX",157215 +2021-05-01,"Industrial Consumption","Nebraska","NE",6574 +2021-05-01,"Industrial Consumption","Missouri","MO",4801 +2021-05-01,"Industrial Consumption","Ohio","OH",22854 +2021-05-01,"Industrial Consumption","New York","NY",6503 +2021-05-01,"Industrial Consumption","Maine","ME",1700 +2021-05-01,"Industrial Consumption","Kentucky","KY",9758 +2021-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",161366 +2021-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",76814 +2021-05-01,"Residential Consumption","Pennsylvania","PA",9756 +2021-05-01,"Residential Consumption","Alabama","AL",1291 +2021-05-01,"Residential Consumption","Alaska","AK",1001 +2021-05-01,"Residential Consumption","Oregon","OR",2116 +2021-05-01,"Residential Consumption","Utah","UT",3067 +2021-05-01,"Residential Consumption","Maryland","MD",3487 +2021-05-01,"Residential Consumption","Nevada","NV",2519 +2021-05-01,"Residential Consumption","Idaho","ID",1085 +2021-05-01,"Residential Consumption","New Hampshire","NH",320 +2021-05-01,"Residential Consumption","Montana","MT",1123 +2021-05-01,"Residential Consumption","Wyoming","WY",969 +2021-05-01,"Residential Consumption","U.S.","U.S.",217805 +2021-05-01,"Residential Consumption","Ohio","OH",13429 +2021-05-01,"Residential Consumption","Louisiana","LA",1730 +2021-05-01,"Residential Consumption","Tennessee","TN",2561 +2021-05-01,"Residential Consumption","Minnesota","MN",5385 +2021-05-01,"Residential Consumption","Indiana","IN",5667 +2021-05-01,"Residential Consumption","Kentucky","KY",1675 +2021-05-01,"Residential Consumption","Oklahoma","OK",2422 +2021-05-01,"Residential Consumption","South Carolina","SC",945 +2021-05-01,"Residential Consumption","Rhode Island","RI",722 +2021-05-01,"Residential Consumption","Vermont","VT",207 +2021-05-01,"Residential Consumption","Virginia","VA",2726 +2021-05-01,"Residential Consumption","Massachusetts","MA",5394 +2021-05-01,"Residential Consumption","Kansas","KS",2033 +2021-05-01,"Residential Consumption","Arizona","AZ",2231 +2021-05-01,"Residential Consumption","Texas","TX",8773 +2021-05-01,"Residential Consumption","Mississippi","MS",797 +2021-05-01,"Residential Consumption","Wisconsin","WI",5708 +2021-05-01,"Residential Consumption","Maine","ME",128 +2021-05-01,"Residential Consumption","West Virginia","WV",1050 +2021-05-01,"Residential Consumption","New York","NY",22235 +2021-05-01,"Residential Consumption","Michigan","MI",13547 +2021-05-01,"Residential Consumption","Florida","FL",1370 +2021-05-01,"Residential Consumption","Washington","WA",4185 +2021-05-01,"Residential Consumption","Illinois","IL",18739 +2021-05-01,"Residential Consumption","North Carolina","NC",2188 +2021-05-01,"Residential Consumption","Hawaii","HI",49 +2021-05-01,"Residential Consumption","Nebraska","NE",1423 +2021-05-01,"Residential Consumption","South Dakota","SD",644 +2021-05-01,"Residential Consumption","Georgia","GA",5536 +2021-05-01,"Residential Consumption","District of Columbia","DC",506 +2021-05-01,"Residential Consumption","Missouri","MO",3832 +2021-05-01,"Residential Consumption","Iowa","IA",2494 +2021-05-01,"Residential Consumption","Connecticut","CT",2260 +2021-05-01,"Residential Consumption","New Mexico","NM",1532 +2021-05-01,"Residential Consumption","North Dakota","ND",490 +2021-05-01,"Residential Consumption","Arkansas","AR",1289 +2021-05-01,"Residential Consumption","New Jersey","NJ",10205 +2021-05-01,"Residential Consumption","Colorado","CO",6951 +2021-05-01,"Residential Consumption","Delaware","DE",434 +2021-05-01,"Residential Consumption","California","CA",27579 +2021-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2021-05-01,"Vehicle Fuel Consumption","Arizona","AZ",176 +2021-05-01,"Vehicle Fuel Consumption","Indiana","IN",164 +2021-05-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-05-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-05-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-05-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-05-01,"Vehicle Fuel Consumption","New York","NY",96 +2021-05-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-05-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2021-05-01,"Vehicle Fuel Consumption","Minnesota","MN",47 +2021-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",4627 +2021-05-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-05-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-05-01,"Vehicle Fuel Consumption","Virginia","VA",57 +2021-05-01,"Vehicle Fuel Consumption","Kansas","KS",78 +2021-05-01,"Vehicle Fuel Consumption","Nebraska","NE",35 +2021-05-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2021-05-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-05-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-05-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-05-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2021-05-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-05-01,"Vehicle Fuel Consumption","Texas","TX",80 +2021-05-01,"Vehicle Fuel Consumption","Georgia","GA",129 +2021-05-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2021-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",145 +2021-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2021-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-05-01,"Vehicle Fuel Consumption","Missouri","MO",19 +2021-05-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-05-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2021-05-01,"Vehicle Fuel Consumption","Florida","FL",477 +2021-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-05-01,"Vehicle Fuel Consumption","California","CA",2161 +2021-05-01,"Vehicle Fuel Consumption","Washington","WA",12 +2021-05-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-05-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",38 +2021-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-05-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-05-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2021-05-01,"Vehicle Fuel Consumption","Utah","UT",25 +2021-05-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2021-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-05-01,"Vehicle Fuel Consumption","Colorado","CO",150 +2021-05-01,"Vehicle Fuel Consumption","North Carolina","NC",135 +2021-06-01,"Commercial Consumption","New Jersey","NJ",7147 +2021-06-01,"Commercial Consumption","Maine","ME",285 +2021-06-01,"Commercial Consumption","Hawaii","HI",184 +2021-06-01,"Commercial Consumption","Delaware","DE",819 +2021-06-01,"Commercial Consumption","District of Columbia","DC",632 +2021-06-01,"Commercial Consumption","South Carolina","SC",1652 +2021-06-01,"Commercial Consumption","Pennsylvania","PA",5254 +2021-06-01,"Commercial Consumption","South Dakota","SD",313 +2021-06-01,"Commercial Consumption","Kentucky","KY",1249 +2021-06-01,"Commercial Consumption","Vermont","VT",369 +2021-06-01,"Commercial Consumption","Idaho","ID",729 +2021-06-01,"Commercial Consumption","Connecticut","CT",2283 +2021-06-01,"Commercial Consumption","North Dakota","ND",349 +2021-06-01,"Commercial Consumption","New Mexico","NM",1176 +2021-06-01,"Commercial Consumption","Rhode Island","RI",281 +2021-06-01,"Commercial Consumption","Ohio","OH",5837 +2021-06-01,"Commercial Consumption","New York","NY",14234 +2021-06-01,"Commercial Consumption","Arizona","AZ",2102 +2021-06-01,"Commercial Consumption","Nevada","NV",1859 +2021-06-01,"Commercial Consumption","North Carolina","NC",2307 +2021-06-01,"Commercial Consumption","Colorado","CO",1850 +2021-06-01,"Commercial Consumption","Oregon","OR",1058 +2021-06-01,"Commercial Consumption","New Hampshire","NH",213 +2021-06-01,"Commercial Consumption","Iowa","IA",1931 +2021-06-01,"Commercial Consumption","Indiana","IN",2520 +2021-06-01,"Commercial Consumption","Utah","UT",1913 +2021-06-01,"Commercial Consumption","Oklahoma","OK",1668 +2021-06-01,"Commercial Consumption","Virginia","VA",3250 +2021-06-01,"Commercial Consumption","Massachusetts","MA",3271 +2021-06-01,"Commercial Consumption","Florida","FL",4719 +2021-06-01,"Commercial Consumption","Alaska","AK",563 +2021-06-01,"Commercial Consumption","Michigan","MI",5097 +2021-06-01,"Commercial Consumption","Louisiana","LA",2135 +2021-06-01,"Commercial Consumption","Illinois","IL",8305 +2021-06-01,"Commercial Consumption","Wisconsin","WI",2762 +2021-06-01,"Commercial Consumption","Montana","MT",871 +2021-06-01,"Commercial Consumption","U.S.","U.S.",143668 +2021-06-01,"Commercial Consumption","Texas","TX",10877 +2021-06-01,"Commercial Consumption","Georgia","GA",2273 +2021-06-01,"Commercial Consumption","Arkansas","AR",3094 +2021-06-01,"Commercial Consumption","Tennessee","TN",2596 +2021-06-01,"Commercial Consumption","Wyoming","WY",743 +2021-06-01,"Commercial Consumption","West Virginia","WV",847 +2021-06-01,"Commercial Consumption","Minnesota","MN",2590 +2021-06-01,"Commercial Consumption","Missouri","MO",2252 +2021-06-01,"Commercial Consumption","Alabama","AL",1180 +2021-06-01,"Commercial Consumption","Nebraska","NE",1587 +2021-06-01,"Commercial Consumption","Washington","WA",2389 +2021-06-01,"Commercial Consumption","Maryland","MD",3061 +2021-06-01,"Commercial Consumption","Kansas","KS",1997 +2021-06-01,"Commercial Consumption","California","CA",16057 +2021-06-01,"Commercial Consumption","Mississippi","MS",937 +2021-06-01,"Delivered to Consumers","Indiana","IN",52713 +2021-06-01,"Delivered to Consumers","Alaska","AK",3975 +2021-06-01,"Delivered to Consumers","Nebraska","NE",11989 +2021-06-01,"Delivered to Consumers","California","CA",154635 +2021-06-01,"Delivered to Consumers","West Virginia","WV",6339 +2021-06-01,"Delivered to Consumers","Vermont","VT",610 +2021-06-01,"Delivered to Consumers","Virginia","VA",51573 +2021-06-01,"Delivered to Consumers","North Carolina","NC",40972 +2021-06-01,"Delivered to Consumers","Mississippi","MS",47262 +2021-06-01,"Delivered to Consumers","Arizona","AZ",41956 +2021-06-01,"Delivered to Consumers","Florida","FL",136944 +2021-06-01,"Delivered to Consumers","Utah","UT",15222 +2021-06-01,"Delivered to Consumers","Rhode Island","RI",6625 +2021-06-01,"Delivered to Consumers","Hawaii","HI",245 +2021-06-01,"Delivered to Consumers","Ohio","OH",63258 +2021-06-01,"Delivered to Consumers","Connecticut","CT",20798 +2021-06-01,"Delivered to Consumers","Missouri","MO",16605 +2021-06-01,"Delivered to Consumers","New York","NY",81292 +2021-06-01,"Delivered to Consumers","Montana","MT",3550 +2021-06-01,"Delivered to Consumers","Maryland","MD",13350 +2021-06-01,"Delivered to Consumers","Oklahoma","OK",44975 +2021-06-01,"Delivered to Consumers","Tennessee","TN",26605 +2021-06-01,"Delivered to Consumers","Michigan","MI",45333 +2021-06-01,"Delivered to Consumers","Arkansas","AR",26591 +2021-06-01,"Delivered to Consumers","Maine","ME",3261 +2021-06-01,"Delivered to Consumers","North Dakota","ND",5082 +2021-06-01,"Delivered to Consumers","Minnesota","MN",26358 +2021-06-01,"Delivered to Consumers","Alabama","AL",57402 +2021-06-01,"Delivered to Consumers","Louisiana","LA",122417 +2021-06-01,"Delivered to Consumers","Georgia","GA",57666 +2021-06-01,"Delivered to Consumers","South Dakota","SD",5829 +2021-06-01,"Delivered to Consumers","Kansas","KS",16366 +2021-06-01,"Delivered to Consumers","Iowa","IA",25742 +2021-06-01,"Delivered to Consumers","Washington","WA",18953 +2021-06-01,"Delivered to Consumers","Wyoming","WY",5825 +2021-06-01,"Delivered to Consumers","Idaho","ID",6919 +2021-06-01,"Delivered to Consumers","Kentucky","KY",21733 +2021-06-01,"Delivered to Consumers","Wisconsin","WI",30233 +2021-06-01,"Delivered to Consumers","Colorado","CO",22058 +2021-06-01,"Delivered to Consumers","Texas","TX",346813 +2021-06-01,"Delivered to Consumers","Oregon","OR",16019 +2021-06-01,"Delivered to Consumers","New Hampshire","NH",4622 +2021-06-01,"Delivered to Consumers","U.S.","U.S.",2000940 +2021-06-01,"Delivered to Consumers","New Mexico","NM",12459 +2021-06-01,"Delivered to Consumers","Delaware","DE",6319 +2021-06-01,"Delivered to Consumers","Illinois","IL",56274 +2021-06-01,"Delivered to Consumers","Pennsylvania","PA",104653 +2021-06-01,"Delivered to Consumers","Massachusetts","MA",21564 +2021-06-01,"Delivered to Consumers","South Carolina","SC",25590 +2021-06-01,"Delivered to Consumers","Nevada","NV",25452 +2021-06-01,"Delivered to Consumers","New Jersey","NJ",40966 +2021-06-01,"Delivered to Consumers","District of Columbia","DC",949 +2021-06-01,"Electric Power Consumption","Arkansas","AR",14396 +2021-06-01,"Electric Power Consumption","New York","NY",46691 +2021-06-01,"Electric Power Consumption","Vermont","VT",1 +2021-06-01,"Electric Power Consumption","Kentucky","KY",10725 +2021-06-01,"Electric Power Consumption","California","CA",58365 +2021-06-01,"Electric Power Consumption","Alabama","AL",36698 +2021-06-01,"Electric Power Consumption","New Jersey","NJ",22026 +2021-06-01,"Electric Power Consumption","Rhode Island","RI",5257 +2021-06-01,"Electric Power Consumption","Kansas","KS",2481 +2021-06-01,"Electric Power Consumption","Wyoming","WY",1123 +2021-06-01,"Electric Power Consumption","Mississippi","MS",34456 +2021-06-01,"Electric Power Consumption","Hawaii","HI",NA +2021-06-01,"Electric Power Consumption","New Hampshire","NH",3582 +2021-06-01,"Electric Power Consumption","North Dakota","ND",1449 +2021-06-01,"Electric Power Consumption","Florida","FL",120121 +2021-06-01,"Electric Power Consumption","Virginia","VA",37415 +2021-06-01,"Electric Power Consumption","South Carolina","SC",15556 +2021-06-01,"Electric Power Consumption","Oklahoma","OK",27853 +2021-06-01,"Electric Power Consumption","West Virginia","WV",2301 +2021-06-01,"Electric Power Consumption","U.S.","U.S.",1084898 +2021-06-01,"Electric Power Consumption","Ohio","OH",29869 +2021-06-01,"Electric Power Consumption","Montana","MT",454 +2021-06-01,"Electric Power Consumption","Idaho","ID",3155 +2021-06-01,"Electric Power Consumption","Minnesota","MN",8769 +2021-06-01,"Electric Power Consumption","Illinois","IL",21424 +2021-06-01,"Electric Power Consumption","Michigan","MI",24126 +2021-06-01,"Electric Power Consumption","Pennsylvania","PA",76273 +2021-06-01,"Electric Power Consumption","Missouri","MO",7904 +2021-06-01,"Electric Power Consumption","Utah","UT",7773 +2021-06-01,"Electric Power Consumption","Oregon","OR",9576 +2021-06-01,"Electric Power Consumption","Massachusetts","MA",12403 +2021-06-01,"Electric Power Consumption","Wisconsin","WI",15796 +2021-06-01,"Electric Power Consumption","Maine","ME",1307 +2021-06-01,"Electric Power Consumption","Maryland","MD",7555 +2021-06-01,"Electric Power Consumption","Georgia","GA",38927 +2021-06-01,"Electric Power Consumption","Alaska","AK",2239 +2021-06-01,"Electric Power Consumption","Washington","WA",8062 +2021-06-01,"Electric Power Consumption","Louisiana","LA",33491 +2021-06-01,"Electric Power Consumption","Nevada","NV",20520 +2021-06-01,"Electric Power Consumption","Iowa","IA",4778 +2021-06-01,"Electric Power Consumption","Tennessee","TN",10546 +2021-06-01,"Electric Power Consumption","South Dakota","SD",1353 +2021-06-01,"Electric Power Consumption","North Carolina","NC",28432 +2021-06-01,"Electric Power Consumption","New Mexico","NM",8782 +2021-06-01,"Electric Power Consumption","Colorado","CO",11299 +2021-06-01,"Electric Power Consumption","Nebraska","NE",1511 +2021-06-01,"Electric Power Consumption","Indiana","IN",17780 +2021-06-01,"Electric Power Consumption","Arizona","AZ",36791 +2021-06-01,"Electric Power Consumption","Texas","TX",175027 +2021-06-01,"Electric Power Consumption","Delaware","DE",2971 +2021-06-01,"Electric Power Consumption","Connecticut","CT",15510 +2021-06-01,"Industrial Consumption","Montana","MT",1844 +2021-06-01,"Industrial Consumption","South Dakota","SD",3928 +2021-06-01,"Industrial Consumption","Kansas","KS",10727 +2021-06-01,"Industrial Consumption","Oregon","OR",4142 +2021-06-01,"Industrial Consumption","Mississippi","MS",11338 +2021-06-01,"Industrial Consumption","Maine","ME",1607 +2021-06-01,"Industrial Consumption","Virginia","VA",9037 +2021-06-01,"Industrial Consumption","Delaware","DE",2245 +2021-06-01,"Industrial Consumption","Alaska","AK",534 +2021-06-01,"Industrial Consumption","Maryland","MD",1064 +2021-06-01,"Industrial Consumption","Colorado","CO",5411 +2021-06-01,"Industrial Consumption","New Jersey","NJ",4682 +2021-06-01,"Industrial Consumption","Michigan","MI",10247 +2021-06-01,"Industrial Consumption","Illinois","IL",17552 +2021-06-01,"Industrial Consumption","Rhode Island","RI",652 +2021-06-01,"Industrial Consumption","North Carolina","NC",8975 +2021-06-01,"Industrial Consumption","District of Columbia","DC",NA +2021-06-01,"Industrial Consumption","Massachusetts","MA",2751 +2021-06-01,"Industrial Consumption","Washington","WA",6008 +2021-06-01,"Industrial Consumption","New Mexico","NM",1391 +2021-06-01,"Industrial Consumption","Pennsylvania","PA",17902 +2021-06-01,"Industrial Consumption","Wyoming","WY",3378 +2021-06-01,"Industrial Consumption","Minnesota","MN",12575 +2021-06-01,"Industrial Consumption","Iowa","IA",17697 +2021-06-01,"Industrial Consumption","Georgia","GA",11990 +2021-06-01,"Industrial Consumption","California","CA",56262 +2021-06-01,"Industrial Consumption","Wisconsin","WI",9124 +2021-06-01,"Industrial Consumption","Oklahoma","OK",13849 +2021-06-01,"Industrial Consumption","Louisiana","LA",85518 +2021-06-01,"Industrial Consumption","Vermont","VT",131 +2021-06-01,"Industrial Consumption","Idaho","ID",2348 +2021-06-01,"Industrial Consumption","Arkansas","AR",8493 +2021-06-01,"Industrial Consumption","Texas","TX",153930 +2021-06-01,"Industrial Consumption","South Carolina","SC",7550 +2021-06-01,"Industrial Consumption","Indiana","IN",29995 +2021-06-01,"Industrial Consumption","North Dakota","ND",3074 +2021-06-01,"Industrial Consumption","Hawaii","HI",10 +2021-06-01,"Industrial Consumption","Arizona","AZ",1403 +2021-06-01,"Industrial Consumption","New York","NY",5994 +2021-06-01,"Industrial Consumption","Nevada","NV",1323 +2021-06-01,"Industrial Consumption","Alabama","AL",18700 +2021-06-01,"Industrial Consumption","New Hampshire","NH",675 +2021-06-01,"Industrial Consumption","Florida","FL",10508 +2021-06-01,"Industrial Consumption","Missouri","MO",4357 +2021-06-01,"Industrial Consumption","Ohio","OH",21254 +2021-06-01,"Industrial Consumption","Utah","UT",3078 +2021-06-01,"Industrial Consumption","U.S.","U.S.",638298 +2021-06-01,"Industrial Consumption","Nebraska","NE",7745 +2021-06-01,"Industrial Consumption","West Virginia","WV",2876 +2021-06-01,"Industrial Consumption","Tennessee","TN",12047 +2021-06-01,"Industrial Consumption","Connecticut","CT",1547 +2021-06-01,"Industrial Consumption","Kentucky","KY",8832 +2021-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",155658 +2021-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",81790 +2021-06-01,"Residential Consumption","Texas","TX",6902 +2021-06-01,"Residential Consumption","North Carolina","NC",1127 +2021-06-01,"Residential Consumption","Mississippi","MS",529 +2021-06-01,"Residential Consumption","Hawaii","HI",50 +2021-06-01,"Residential Consumption","Nebraska","NE",1112 +2021-06-01,"Residential Consumption","Minnesota","MN",2379 +2021-06-01,"Residential Consumption","Oklahoma","OK",1461 +2021-06-01,"Residential Consumption","Alaska","AK",638 +2021-06-01,"Residential Consumption","Wyoming","WY",580 +2021-06-01,"Residential Consumption","Oregon","OR",1241 +2021-06-01,"Residential Consumption","Connecticut","CT",1442 +2021-06-01,"Residential Consumption","Vermont","VT",107 +2021-06-01,"Residential Consumption","Michigan","MI",5864 +2021-06-01,"Residential Consumption","Massachusetts","MA",3132 +2021-06-01,"Residential Consumption","Arizona","AZ",1490 +2021-06-01,"Residential Consumption","Alabama","AL",819 +2021-06-01,"Residential Consumption","Louisiana","LA",1243 +2021-06-01,"Residential Consumption","South Dakota","SD",234 +2021-06-01,"Residential Consumption","Nevada","NV",1656 +2021-06-01,"Residential Consumption","Indiana","IN",2260 +2021-06-01,"Residential Consumption","Idaho","ID",680 +2021-06-01,"Residential Consumption","Colorado","CO",3353 +2021-06-01,"Residential Consumption","Wisconsin","WI",2512 +2021-06-01,"Residential Consumption","Virginia","VA",1816 +2021-06-01,"Residential Consumption","North Dakota","ND",211 +2021-06-01,"Residential Consumption","Arkansas","AR",602 +2021-06-01,"Residential Consumption","Kentucky","KY",926 +2021-06-01,"Residential Consumption","Kansas","KS",1085 +2021-06-01,"Residential Consumption","Missouri","MO",2074 +2021-06-01,"Residential Consumption","Delaware","DE",284 +2021-06-01,"Residential Consumption","Iowa","IA",1335 +2021-06-01,"Residential Consumption","Pennsylvania","PA",5082 +2021-06-01,"Residential Consumption","Maine","ME",62 +2021-06-01,"Residential Consumption","New Jersey","NJ",7075 +2021-06-01,"Residential Consumption","Washington","WA",2484 +2021-06-01,"Residential Consumption","Ohio","OH",6208 +2021-06-01,"Residential Consumption","New Hampshire","NH",151 +2021-06-01,"Residential Consumption","Montana","MT",381 +2021-06-01,"Residential Consumption","U.S.","U.S.",129599 +2021-06-01,"Residential Consumption","Illinois","IL",8987 +2021-06-01,"Residential Consumption","Rhode Island","RI",427 +2021-06-01,"Residential Consumption","Utah","UT",2435 +2021-06-01,"Residential Consumption","Georgia","GA",4352 +2021-06-01,"Residential Consumption","New Mexico","NM",1076 +2021-06-01,"Residential Consumption","Florida","FL",1135 +2021-06-01,"Residential Consumption","West Virginia","WV",313 +2021-06-01,"Residential Consumption","South Carolina","SC",824 +2021-06-01,"Residential Consumption","Tennessee","TN",1385 +2021-06-01,"Residential Consumption","Maryland","MD",1646 +2021-06-01,"Residential Consumption","District of Columbia","DC",294 +2021-06-01,"Residential Consumption","California","CA",21860 +2021-06-01,"Residential Consumption","New York","NY",14280 +2021-06-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-06-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2021-06-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-06-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-06-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-06-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-06-01,"Vehicle Fuel Consumption","Arizona","AZ",170 +2021-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2021-06-01,"Vehicle Fuel Consumption","California","CA",2092 +2021-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2021-06-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-06-01,"Vehicle Fuel Consumption","Florida","FL",462 +2021-06-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2021-06-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-06-01,"Vehicle Fuel Consumption","Connecticut","CT",16 +2021-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",4478 +2021-06-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-06-01,"Vehicle Fuel Consumption","Washington","WA",11 +2021-06-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2021-06-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2021-06-01,"Vehicle Fuel Consumption","Indiana","IN",159 +2021-06-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2021-06-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2021-06-01,"Vehicle Fuel Consumption","Ohio","OH",91 +2021-06-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",140 +2021-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-06-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2021-06-01,"Vehicle Fuel Consumption","Minnesota","MN",45 +2021-06-01,"Vehicle Fuel Consumption","New York","NY",93 +2021-06-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-06-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2021-06-01,"Vehicle Fuel Consumption","Texas","TX",77 +2021-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-06-01,"Vehicle Fuel Consumption","Georgia","GA",125 +2021-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-06-01,"Vehicle Fuel Consumption","Utah","UT",24 +2021-06-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-06-01,"Vehicle Fuel Consumption","Virginia","VA",55 +2021-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2021-06-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-06-01,"Vehicle Fuel Consumption","Colorado","CO",145 +2021-06-01,"Vehicle Fuel Consumption","North Carolina","NC",131 +2021-06-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-06-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-06-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-07-01,"Commercial Consumption","Montana","MT",901 +2021-07-01,"Commercial Consumption","Vermont","VT",418 +2021-07-01,"Commercial Consumption","Rhode Island","RI",268 +2021-07-01,"Commercial Consumption","Virginia","VA",3180 +2021-07-01,"Commercial Consumption","Massachusetts","MA",4780 +2021-07-01,"Commercial Consumption","Kentucky","KY",916 +2021-07-01,"Commercial Consumption","Florida","FL",4572 +2021-07-01,"Commercial Consumption","Wisconsin","WI",2783 +2021-07-01,"Commercial Consumption","New Hampshire","NH",221 +2021-07-01,"Commercial Consumption","Ohio","OH",4999 +2021-07-01,"Commercial Consumption","Idaho","ID",670 +2021-07-01,"Commercial Consumption","Michigan","MI",4743 +2021-07-01,"Commercial Consumption","Colorado","CO",1767 +2021-07-01,"Commercial Consumption","Pennsylvania","PA",4781 +2021-07-01,"Commercial Consumption","Maine","ME",300 +2021-07-01,"Commercial Consumption","Maryland","MD",3236 +2021-07-01,"Commercial Consumption","Georgia","GA",2238 +2021-07-01,"Commercial Consumption","California","CA",17048 +2021-07-01,"Commercial Consumption","Arkansas","AR",3127 +2021-07-01,"Commercial Consumption","Delaware","DE",733 +2021-07-01,"Commercial Consumption","Louisiana","LA",2184 +2021-07-01,"Commercial Consumption","Illinois","IL",8188 +2021-07-01,"Commercial Consumption","District of Columbia","DC",589 +2021-07-01,"Commercial Consumption","Minnesota","MN",2936 +2021-07-01,"Commercial Consumption","Utah","UT",1784 +2021-07-01,"Commercial Consumption","New Mexico","NM",1225 +2021-07-01,"Commercial Consumption","Iowa","IA",1813 +2021-07-01,"Commercial Consumption","Alabama","AL",1173 +2021-07-01,"Commercial Consumption","New York","NY",14367 +2021-07-01,"Commercial Consumption","Indiana","IN",2755 +2021-07-01,"Commercial Consumption","Wyoming","WY",312 +2021-07-01,"Commercial Consumption","North Dakota","ND",342 +2021-07-01,"Commercial Consumption","Oregon","OR",920 +2021-07-01,"Commercial Consumption","New Jersey","NJ",6811 +2021-07-01,"Commercial Consumption","Hawaii","HI",179 +2021-07-01,"Commercial Consumption","Alaska","AK",491 +2021-07-01,"Commercial Consumption","Arizona","AZ",1959 +2021-07-01,"Commercial Consumption","Tennessee","TN",2464 +2021-07-01,"Commercial Consumption","West Virginia","WV",902 +2021-07-01,"Commercial Consumption","South Carolina","SC",1512 +2021-07-01,"Commercial Consumption","North Carolina","NC",2378 +2021-07-01,"Commercial Consumption","U.S.","U.S.",143065 +2021-07-01,"Commercial Consumption","Texas","TX",11525 +2021-07-01,"Commercial Consumption","Nebraska","NE",1258 +2021-07-01,"Commercial Consumption","Mississippi","MS",967 +2021-07-01,"Commercial Consumption","Washington","WA",2217 +2021-07-01,"Commercial Consumption","Oklahoma","OK",1615 +2021-07-01,"Commercial Consumption","Missouri","MO",2163 +2021-07-01,"Commercial Consumption","South Dakota","SD",326 +2021-07-01,"Commercial Consumption","Kansas","KS",1848 +2021-07-01,"Commercial Consumption","Connecticut","CT",2494 +2021-07-01,"Commercial Consumption","Nevada","NV",1689 +2021-07-01,"Delivered to Consumers","New York","NY",84143 +2021-07-01,"Delivered to Consumers","Montana","MT",3482 +2021-07-01,"Delivered to Consumers","Michigan","MI",46675 +2021-07-01,"Delivered to Consumers","Iowa","IA",25475 +2021-07-01,"Delivered to Consumers","Texas","TX",373124 +2021-07-01,"Delivered to Consumers","Nevada","NV",28160 +2021-07-01,"Delivered to Consumers","Louisiana","LA",136159 +2021-07-01,"Delivered to Consumers","Florida","FL",150839 +2021-07-01,"Delivered to Consumers","Utah","UT",15472 +2021-07-01,"Delivered to Consumers","New Mexico","NM",12980 +2021-07-01,"Delivered to Consumers","Indiana","IN",53939 +2021-07-01,"Delivered to Consumers","Wyoming","WY",5267 +2021-07-01,"Delivered to Consumers","South Dakota","SD",5920 +2021-07-01,"Delivered to Consumers","Maryland","MD",16247 +2021-07-01,"Delivered to Consumers","California","CA",181604 +2021-07-01,"Delivered to Consumers","U.S.","U.S.",2161740 +2021-07-01,"Delivered to Consumers","Alaska","AK",4242 +2021-07-01,"Delivered to Consumers","Kansas","KS",18163 +2021-07-01,"Delivered to Consumers","Idaho","ID",7261 +2021-07-01,"Delivered to Consumers","North Carolina","NC",53761 +2021-07-01,"Delivered to Consumers","Missouri","MO",16624 +2021-07-01,"Delivered to Consumers","Colorado","CO",23911 +2021-07-01,"Delivered to Consumers","Delaware","DE",6667 +2021-07-01,"Delivered to Consumers","Oklahoma","OK",51824 +2021-07-01,"Delivered to Consumers","Kentucky","KY",21996 +2021-07-01,"Delivered to Consumers","Rhode Island","RI",7522 +2021-07-01,"Delivered to Consumers","Ohio","OH",64408 +2021-07-01,"Delivered to Consumers","Alabama","AL",59422 +2021-07-01,"Delivered to Consumers","Nebraska","NE",12543 +2021-07-01,"Delivered to Consumers","Mississippi","MS",49836 +2021-07-01,"Delivered to Consumers","New Jersey","NJ",43310 +2021-07-01,"Delivered to Consumers","Maine","ME",3227 +2021-07-01,"Delivered to Consumers","North Dakota","ND",4900 +2021-07-01,"Delivered to Consumers","District of Columbia","DC",872 +2021-07-01,"Delivered to Consumers","West Virginia","WV",6326 +2021-07-01,"Delivered to Consumers","Vermont","VT",646 +2021-07-01,"Delivered to Consumers","Wisconsin","WI",31655 +2021-07-01,"Delivered to Consumers","Arizona","AZ",50442 +2021-07-01,"Delivered to Consumers","Washington","WA",21708 +2021-07-01,"Delivered to Consumers","New Hampshire","NH",5119 +2021-07-01,"Delivered to Consumers","Illinois","IL",58752 +2021-07-01,"Delivered to Consumers","Tennessee","TN",28268 +2021-07-01,"Delivered to Consumers","Arkansas","AR",26405 +2021-07-01,"Delivered to Consumers","Massachusetts","MA",22444 +2021-07-01,"Delivered to Consumers","South Carolina","SC",27270 +2021-07-01,"Delivered to Consumers","Oregon","OR",19973 +2021-07-01,"Delivered to Consumers","Minnesota","MN",26258 +2021-07-01,"Delivered to Consumers","Hawaii","HI",239 +2021-07-01,"Delivered to Consumers","Connecticut","CT",20982 +2021-07-01,"Delivered to Consumers","Virginia","VA",54028 +2021-07-01,"Delivered to Consumers","Pennsylvania","PA",110240 +2021-07-01,"Delivered to Consumers","Georgia","GA",61010 +2021-07-01,"Electric Power Consumption","Virginia","VA",40022 +2021-07-01,"Electric Power Consumption","New York","NY",51617 +2021-07-01,"Electric Power Consumption","Oklahoma","OK",32449 +2021-07-01,"Electric Power Consumption","Utah","UT",8825 +2021-07-01,"Electric Power Consumption","Illinois","IL",24459 +2021-07-01,"Electric Power Consumption","Massachusetts","MA",11840 +2021-07-01,"Electric Power Consumption","Ohio","OH",33023 +2021-07-01,"Electric Power Consumption","Florida","FL",133915 +2021-07-01,"Electric Power Consumption","California","CA",83690 +2021-07-01,"Electric Power Consumption","Washington","WA",11786 +2021-07-01,"Electric Power Consumption","New Jersey","NJ",26118 +2021-07-01,"Electric Power Consumption","Texas","TX",191994 +2021-07-01,"Electric Power Consumption","Oregon","OR",14070 +2021-07-01,"Electric Power Consumption","Michigan","MI",26450 +2021-07-01,"Electric Power Consumption","Iowa","IA",5678 +2021-07-01,"Electric Power Consumption","Vermont","VT",1 +2021-07-01,"Electric Power Consumption","Montana","MT",558 +2021-07-01,"Electric Power Consumption","New Mexico","NM",9328 +2021-07-01,"Electric Power Consumption","Colorado","CO",13930 +2021-07-01,"Electric Power Consumption","Arkansas","AR",14212 +2021-07-01,"Electric Power Consumption","Missouri","MO",8143 +2021-07-01,"Electric Power Consumption","Mississippi","MS",37324 +2021-07-01,"Electric Power Consumption","Indiana","IN",18697 +2021-07-01,"Electric Power Consumption","Connecticut","CT",15707 +2021-07-01,"Electric Power Consumption","Arizona","AZ",45551 +2021-07-01,"Electric Power Consumption","Louisiana","LA",34933 +2021-07-01,"Electric Power Consumption","Wisconsin","WI",17135 +2021-07-01,"Electric Power Consumption","Wyoming","WY",1151 +2021-07-01,"Electric Power Consumption","Nebraska","NE",1739 +2021-07-01,"Electric Power Consumption","Hawaii","HI",NA +2021-07-01,"Electric Power Consumption","Idaho","ID",3586 +2021-07-01,"Electric Power Consumption","South Carolina","SC",17243 +2021-07-01,"Electric Power Consumption","Alaska","AK",2712 +2021-07-01,"Electric Power Consumption","Rhode Island","RI",6185 +2021-07-01,"Electric Power Consumption","Pennsylvania","PA",84171 +2021-07-01,"Electric Power Consumption","Tennessee","TN",12369 +2021-07-01,"Electric Power Consumption","Maine","ME",1334 +2021-07-01,"Electric Power Consumption","Kentucky","KY",11495 +2021-07-01,"Electric Power Consumption","New Hampshire","NH",4056 +2021-07-01,"Electric Power Consumption","Georgia","GA",41850 +2021-07-01,"Electric Power Consumption","Kansas","KS",2908 +2021-07-01,"Electric Power Consumption","Nevada","NV",23523 +2021-07-01,"Electric Power Consumption","Delaware","DE",3415 +2021-07-01,"Electric Power Consumption","Alabama","AL",38276 +2021-07-01,"Electric Power Consumption","Minnesota","MN",10782 +2021-07-01,"Electric Power Consumption","West Virginia","WV",2169 +2021-07-01,"Electric Power Consumption","U.S.","U.S.",1235168 +2021-07-01,"Electric Power Consumption","South Dakota","SD",1702 +2021-07-01,"Electric Power Consumption","North Carolina","NC",41178 +2021-07-01,"Electric Power Consumption","North Dakota","ND",1440 +2021-07-01,"Electric Power Consumption","Maryland","MD",10428 +2021-07-01,"Industrial Consumption","New York","NY",6871 +2021-07-01,"Industrial Consumption","Texas","TX",162848 +2021-07-01,"Industrial Consumption","Wisconsin","WI",9228 +2021-07-01,"Industrial Consumption","Georgia","GA",12557 +2021-07-01,"Industrial Consumption","Vermont","VT",136 +2021-07-01,"Industrial Consumption","New Hampshire","NH",684 +2021-07-01,"Industrial Consumption","Alaska","AK",477 +2021-07-01,"Industrial Consumption","Oklahoma","OK",16288 +2021-07-01,"Industrial Consumption","Colorado","CO",5374 +2021-07-01,"Industrial Consumption","Kansas","KS",12224 +2021-07-01,"Industrial Consumption","West Virginia","WV",2991 +2021-07-01,"Industrial Consumption","Iowa","IA",16959 +2021-07-01,"Industrial Consumption","Michigan","MI",10194 +2021-07-01,"Industrial Consumption","Kentucky","KY",8900 +2021-07-01,"Industrial Consumption","North Dakota","ND",2958 +2021-07-01,"Industrial Consumption","Ohio","OH",21755 +2021-07-01,"Industrial Consumption","U.S.","U.S.",666031 +2021-07-01,"Industrial Consumption","Maine","ME",1536 +2021-07-01,"Industrial Consumption","Virginia","VA",9105 +2021-07-01,"Industrial Consumption","Tennessee","TN",12203 +2021-07-01,"Industrial Consumption","Connecticut","CT",1634 +2021-07-01,"Industrial Consumption","District of Columbia","DC",NA +2021-07-01,"Industrial Consumption","Hawaii","HI",9 +2021-07-01,"Industrial Consumption","South Dakota","SD",3685 +2021-07-01,"Industrial Consumption","Arizona","AZ",1516 +2021-07-01,"Industrial Consumption","Utah","UT",2839 +2021-07-01,"Industrial Consumption","Arkansas","AR",8436 +2021-07-01,"Industrial Consumption","Alabama","AL",19212 +2021-07-01,"Industrial Consumption","Wyoming","WY",3618 +2021-07-01,"Industrial Consumption","Minnesota","MN",9999 +2021-07-01,"Industrial Consumption","Florida","FL",10885 +2021-07-01,"Industrial Consumption","Rhode Island","RI",646 +2021-07-01,"Industrial Consumption","North Carolina","NC",8929 +2021-07-01,"Industrial Consumption","Washington","WA",5699 +2021-07-01,"Industrial Consumption","Nevada","NV",1367 +2021-07-01,"Industrial Consumption","Indiana","IN",30208 +2021-07-01,"Industrial Consumption","Delaware","DE",2330 +2021-07-01,"Industrial Consumption","Montana","MT",1775 +2021-07-01,"Industrial Consumption","Louisiana","LA",97630 +2021-07-01,"Industrial Consumption","New Mexico","NM",1549 +2021-07-01,"Industrial Consumption","Oregon","OR",4031 +2021-07-01,"Industrial Consumption","Mississippi","MS",11016 +2021-07-01,"Industrial Consumption","South Carolina","SC",7859 +2021-07-01,"Industrial Consumption","Nebraska","NE",8749 +2021-07-01,"Industrial Consumption","Idaho","ID",2425 +2021-07-01,"Industrial Consumption","Illinois","IL",18069 +2021-07-01,"Industrial Consumption","Maryland","MD",1058 +2021-07-01,"Industrial Consumption","Massachusetts","MA",2733 +2021-07-01,"Industrial Consumption","Missouri","MO",4463 +2021-07-01,"Industrial Consumption","Pennsylvania","PA",17225 +2021-07-01,"Industrial Consumption","California","CA",58075 +2021-07-01,"Industrial Consumption","New Jersey","NJ",5072 +2021-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",162083 +2021-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",88362 +2021-07-01,"Residential Consumption","Mississippi","MS",529 +2021-07-01,"Residential Consumption","South Dakota","SD",207 +2021-07-01,"Residential Consumption","Indiana","IN",2115 +2021-07-01,"Residential Consumption","Alaska","AK",562 +2021-07-01,"Residential Consumption","Massachusetts","MA",3084 +2021-07-01,"Residential Consumption","Kentucky","KY",685 +2021-07-01,"Residential Consumption","Arizona","AZ",1240 +2021-07-01,"Residential Consumption","West Virginia","WV",263 +2021-07-01,"Residential Consumption","South Carolina","SC",648 +2021-07-01,"Residential Consumption","Louisiana","LA",1381 +2021-07-01,"Residential Consumption","Connecticut","CT",1130 +2021-07-01,"Residential Consumption","Virginia","VA",1664 +2021-07-01,"Residential Consumption","Nebraska","NE",762 +2021-07-01,"Residential Consumption","Nevada","NV",1483 +2021-07-01,"Residential Consumption","New Hampshire","NH",156 +2021-07-01,"Residential Consumption","Iowa","IA",1023 +2021-07-01,"Residential Consumption","Wisconsin","WI",2469 +2021-07-01,"Residential Consumption","Missouri","MO",1837 +2021-07-01,"Residential Consumption","California","CA",20630 +2021-07-01,"Residential Consumption","Rhode Island","RI",415 +2021-07-01,"Residential Consumption","North Carolina","NC",1140 +2021-07-01,"Residential Consumption","Michigan","MI",5288 +2021-07-01,"Residential Consumption","Maryland","MD",1501 +2021-07-01,"Residential Consumption","Pennsylvania","PA",3916 +2021-07-01,"Residential Consumption","North Dakota","ND",160 +2021-07-01,"Residential Consumption","Idaho","ID",574 +2021-07-01,"Residential Consumption","Kansas","KS",1105 +2021-07-01,"Residential Consumption","Washington","WA",1995 +2021-07-01,"Residential Consumption","Oklahoma","OK",1323 +2021-07-01,"Residential Consumption","New York","NY",11191 +2021-07-01,"Residential Consumption","Texas","TX",6678 +2021-07-01,"Residential Consumption","Oregon","OR",949 +2021-07-01,"Residential Consumption","District of Columbia","DC",260 +2021-07-01,"Residential Consumption","Florida","FL",990 +2021-07-01,"Residential Consumption","Montana","MT",248 +2021-07-01,"Residential Consumption","Alabama","AL",755 +2021-07-01,"Residential Consumption","Wyoming","WY",186 +2021-07-01,"Residential Consumption","Ohio","OH",4537 +2021-07-01,"Residential Consumption","Tennessee","TN",1200 +2021-07-01,"Residential Consumption","Minnesota","MN",2494 +2021-07-01,"Residential Consumption","Georgia","GA",4235 +2021-07-01,"Residential Consumption","New Jersey","NJ",5270 +2021-07-01,"Residential Consumption","Colorado","CO",2690 +2021-07-01,"Residential Consumption","U.S.","U.S.",112848 +2021-07-01,"Residential Consumption","Illinois","IL",8030 +2021-07-01,"Residential Consumption","Hawaii","HI",51 +2021-07-01,"Residential Consumption","Vermont","VT",88 +2021-07-01,"Residential Consumption","Utah","UT",2000 +2021-07-01,"Residential Consumption","New Mexico","NM",844 +2021-07-01,"Residential Consumption","Maine","ME",56 +2021-07-01,"Residential Consumption","Arkansas","AR",623 +2021-07-01,"Residential Consumption","Delaware","DE",188 +2021-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2021-07-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-07-01,"Vehicle Fuel Consumption","Indiana","IN",164 +2021-07-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-07-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-07-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-07-01,"Vehicle Fuel Consumption","Arizona","AZ",176 +2021-07-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-07-01,"Vehicle Fuel Consumption","Texas","TX",80 +2021-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-07-01,"Vehicle Fuel Consumption","Minnesota","MN",47 +2021-07-01,"Vehicle Fuel Consumption","California","CA",2161 +2021-07-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-07-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2021-07-01,"Vehicle Fuel Consumption","Nebraska","NE",35 +2021-07-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-07-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2021-07-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2021-07-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2021-07-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2021-07-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2021-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2021-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",145 +2021-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-07-01,"Vehicle Fuel Consumption","Missouri","MO",19 +2021-07-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-07-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-07-01,"Vehicle Fuel Consumption","Kansas","KS",78 +2021-07-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2021-07-01,"Vehicle Fuel Consumption","Georgia","GA",129 +2021-07-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-07-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",4627 +2021-07-01,"Vehicle Fuel Consumption","Washington","WA",12 +2021-07-01,"Vehicle Fuel Consumption","Virginia","VA",57 +2021-07-01,"Vehicle Fuel Consumption","New York","NY",96 +2021-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",38 +2021-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-07-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-07-01,"Vehicle Fuel Consumption","Utah","UT",25 +2021-07-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-07-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-07-01,"Vehicle Fuel Consumption","Florida","FL",477 +2021-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-07-01,"Vehicle Fuel Consumption","Colorado","CO",150 +2021-07-01,"Vehicle Fuel Consumption","North Carolina","NC",135 +2021-08-01,"Commercial Consumption","Minnesota","MN",2992 +2021-08-01,"Commercial Consumption","Massachusetts","MA",3522 +2021-08-01,"Commercial Consumption","Montana","MT",1221 +2021-08-01,"Commercial Consumption","Maine","ME",287 +2021-08-01,"Commercial Consumption","Connecticut","CT",2626 +2021-08-01,"Commercial Consumption","New York","NY",13861 +2021-08-01,"Commercial Consumption","North Carolina","NC",2917 +2021-08-01,"Commercial Consumption","Colorado","CO",1645 +2021-08-01,"Commercial Consumption","Arkansas","AR",3146 +2021-08-01,"Commercial Consumption","Mississippi","MS",919 +2021-08-01,"Commercial Consumption","Michigan","MI",5302 +2021-08-01,"Commercial Consumption","Wyoming","WY",277 +2021-08-01,"Commercial Consumption","Utah","UT",1236 +2021-08-01,"Commercial Consumption","New Mexico","NM",1210 +2021-08-01,"Commercial Consumption","Virginia","VA",3246 +2021-08-01,"Commercial Consumption","Pennsylvania","PA",4935 +2021-08-01,"Commercial Consumption","U.S.","U.S.",141705 +2021-08-01,"Commercial Consumption","Vermont","VT",420 +2021-08-01,"Commercial Consumption","Rhode Island","RI",253 +2021-08-01,"Commercial Consumption","Arizona","AZ",1963 +2021-08-01,"Commercial Consumption","North Dakota","ND",398 +2021-08-01,"Commercial Consumption","Oregon","OR",958 +2021-08-01,"Commercial Consumption","New Jersey","NJ",6175 +2021-08-01,"Commercial Consumption","Idaho","ID",787 +2021-08-01,"Commercial Consumption","Tennessee","TN",2411 +2021-08-01,"Commercial Consumption","Washington","WA",2213 +2021-08-01,"Commercial Consumption","Missouri","MO",2204 +2021-08-01,"Commercial Consumption","South Dakota","SD",329 +2021-08-01,"Commercial Consumption","Kentucky","KY",1083 +2021-08-01,"Commercial Consumption","California","CA",16322 +2021-08-01,"Commercial Consumption","Nebraska","NE",1143 +2021-08-01,"Commercial Consumption","Oklahoma","OK",1660 +2021-08-01,"Commercial Consumption","New Hampshire","NH",240 +2021-08-01,"Commercial Consumption","Maryland","MD",3079 +2021-08-01,"Commercial Consumption","Kansas","KS",1980 +2021-08-01,"Commercial Consumption","Alaska","AK",616 +2021-08-01,"Commercial Consumption","Alabama","AL",1140 +2021-08-01,"Commercial Consumption","Louisiana","LA",1845 +2021-08-01,"Commercial Consumption","Illinois","IL",7897 +2021-08-01,"Commercial Consumption","District of Columbia","DC",752 +2021-08-01,"Commercial Consumption","South Carolina","SC",1569 +2021-08-01,"Commercial Consumption","Texas","TX",11344 +2021-08-01,"Commercial Consumption","Georgia","GA",2207 +2021-08-01,"Commercial Consumption","Delaware","DE",767 +2021-08-01,"Commercial Consumption","Nevada","NV",1610 +2021-08-01,"Commercial Consumption","Indiana","IN",2748 +2021-08-01,"Commercial Consumption","West Virginia","WV",1001 +2021-08-01,"Commercial Consumption","Wisconsin","WI",3683 +2021-08-01,"Commercial Consumption","Florida","FL",4443 +2021-08-01,"Commercial Consumption","Ohio","OH",5099 +2021-08-01,"Commercial Consumption","Iowa","IA",1822 +2021-08-01,"Commercial Consumption","Hawaii","HI",199 +2021-08-01,"Delivered to Consumers","New Mexico","NM",12602 +2021-08-01,"Delivered to Consumers","Vermont","VT",641 +2021-08-01,"Delivered to Consumers","Wisconsin","WI",33052 +2021-08-01,"Delivered to Consumers","Colorado","CO",23189 +2021-08-01,"Delivered to Consumers","New Jersey","NJ",43223 +2021-08-01,"Delivered to Consumers","New Hampshire","NH",5532 +2021-08-01,"Delivered to Consumers","North Dakota","ND",4993 +2021-08-01,"Delivered to Consumers","Wyoming","WY",5003 +2021-08-01,"Delivered to Consumers","Mississippi","MS",49408 +2021-08-01,"Delivered to Consumers","Massachusetts","MA",22355 +2021-08-01,"Delivered to Consumers","Georgia","GA",62166 +2021-08-01,"Delivered to Consumers","Rhode Island","RI",7852 +2021-08-01,"Delivered to Consumers","Montana","MT",4149 +2021-08-01,"Delivered to Consumers","Alaska","AK",4615 +2021-08-01,"Delivered to Consumers","North Carolina","NC",52777 +2021-08-01,"Delivered to Consumers","Missouri","MO",17747 +2021-08-01,"Delivered to Consumers","South Carolina","SC",28943 +2021-08-01,"Delivered to Consumers","Arizona","AZ",46343 +2021-08-01,"Delivered to Consumers","Washington","WA",22160 +2021-08-01,"Delivered to Consumers","Minnesota","MN",26188 +2021-08-01,"Delivered to Consumers","District of Columbia","DC",999 +2021-08-01,"Delivered to Consumers","Indiana","IN",55934 +2021-08-01,"Delivered to Consumers","Maryland","MD",16667 +2021-08-01,"Delivered to Consumers","Kansas","KS",19195 +2021-08-01,"Delivered to Consumers","Iowa","IA",25833 +2021-08-01,"Delivered to Consumers","Connecticut","CT",22529 +2021-08-01,"Delivered to Consumers","Utah","UT",13533 +2021-08-01,"Delivered to Consumers","West Virginia","WV",6468 +2021-08-01,"Delivered to Consumers","Hawaii","HI",255 +2021-08-01,"Delivered to Consumers","Oklahoma","OK",52218 +2021-08-01,"Delivered to Consumers","Idaho","ID",7596 +2021-08-01,"Delivered to Consumers","Kentucky","KY",22878 +2021-08-01,"Delivered to Consumers","Arkansas","AR",27044 +2021-08-01,"Delivered to Consumers","Alabama","AL",61512 +2021-08-01,"Delivered to Consumers","Louisiana","LA",126215 +2021-08-01,"Delivered to Consumers","Florida","FL",156896 +2021-08-01,"Delivered to Consumers","Delaware","DE",7335 +2021-08-01,"Delivered to Consumers","Ohio","OH",68350 +2021-08-01,"Delivered to Consumers","Michigan","MI",49080 +2021-08-01,"Delivered to Consumers","Virginia","VA",54276 +2021-08-01,"Delivered to Consumers","Pennsylvania","PA",111702 +2021-08-01,"Delivered to Consumers","Nebraska","NE",12404 +2021-08-01,"Delivered to Consumers","California","CA",174654 +2021-08-01,"Delivered to Consumers","Nevada","NV",26776 +2021-08-01,"Delivered to Consumers","New York","NY",88164 +2021-08-01,"Delivered to Consumers","Texas","TX",377110 +2021-08-01,"Delivered to Consumers","Maine","ME",3898 +2021-08-01,"Delivered to Consumers","U.S.","U.S.",2181818 +2021-08-01,"Delivered to Consumers","Illinois","IL",64370 +2021-08-01,"Delivered to Consumers","South Dakota","SD",5937 +2021-08-01,"Delivered to Consumers","Tennessee","TN",28120 +2021-08-01,"Delivered to Consumers","Oregon","OR",20934 +2021-08-01,"Electric Power Consumption","Oklahoma","OK",33127 +2021-08-01,"Electric Power Consumption","Wisconsin","WI",17276 +2021-08-01,"Electric Power Consumption","Wyoming","WY",992 +2021-08-01,"Electric Power Consumption","Tennessee","TN",12491 +2021-08-01,"Electric Power Consumption","Nebraska","NE",1961 +2021-08-01,"Electric Power Consumption","Delaware","DE",4023 +2021-08-01,"Electric Power Consumption","Connecticut","CT",17280 +2021-08-01,"Electric Power Consumption","Florida","FL",139306 +2021-08-01,"Electric Power Consumption","California","CA",74125 +2021-08-01,"Electric Power Consumption","Idaho","ID",3748 +2021-08-01,"Electric Power Consumption","Arkansas","AR",15054 +2021-08-01,"Electric Power Consumption","Oregon","OR",14769 +2021-08-01,"Electric Power Consumption","Minnesota","MN",10614 +2021-08-01,"Electric Power Consumption","Massachusetts","MA",13931 +2021-08-01,"Electric Power Consumption","West Virginia","WV",1994 +2021-08-01,"Electric Power Consumption","South Dakota","SD",1698 +2021-08-01,"Electric Power Consumption","North Carolina","NC",39067 +2021-08-01,"Electric Power Consumption","Mississippi","MS",36993 +2021-08-01,"Electric Power Consumption","Arizona","AZ",41549 +2021-08-01,"Electric Power Consumption","New Mexico","NM",9195 +2021-08-01,"Electric Power Consumption","Louisiana","LA",33738 +2021-08-01,"Electric Power Consumption","South Carolina","SC",18506 +2021-08-01,"Electric Power Consumption","Hawaii","HI",NA +2021-08-01,"Electric Power Consumption","Ohio","OH",36205 +2021-08-01,"Electric Power Consumption","North Dakota","ND",1510 +2021-08-01,"Electric Power Consumption","Alabama","AL",40341 +2021-08-01,"Electric Power Consumption","Washington","WA",12323 +2021-08-01,"Electric Power Consumption","Virginia","VA",40965 +2021-08-01,"Electric Power Consumption","Illinois","IL",31032 +2021-08-01,"Electric Power Consumption","Pennsylvania","PA",84092 +2021-08-01,"Electric Power Consumption","Alaska","AK",2844 +2021-08-01,"Electric Power Consumption","Utah","UT",7854 +2021-08-01,"Electric Power Consumption","Michigan","MI",28498 +2021-08-01,"Electric Power Consumption","Kansas","KS",3100 +2021-08-01,"Electric Power Consumption","Nevada","NV",22461 +2021-08-01,"Electric Power Consumption","New Jersey","NJ",27705 +2021-08-01,"Electric Power Consumption","New York","NY",56701 +2021-08-01,"Electric Power Consumption","Iowa","IA",5526 +2021-08-01,"Electric Power Consumption","Missouri","MO",9272 +2021-08-01,"Electric Power Consumption","Maine","ME",1944 +2021-08-01,"Electric Power Consumption","Colorado","CO",12935 +2021-08-01,"Electric Power Consumption","Vermont","VT",1 +2021-08-01,"Electric Power Consumption","New Hampshire","NH",4472 +2021-08-01,"Electric Power Consumption","Maryland","MD",11095 +2021-08-01,"Electric Power Consumption","Indiana","IN",21067 +2021-08-01,"Electric Power Consumption","Texas","TX",195581 +2021-08-01,"Electric Power Consumption","Rhode Island","RI",6547 +2021-08-01,"Electric Power Consumption","U.S.","U.S.",1260509 +2021-08-01,"Electric Power Consumption","Kentucky","KY",11887 +2021-08-01,"Electric Power Consumption","Montana","MT",668 +2021-08-01,"Electric Power Consumption","Georgia","GA",42448 +2021-08-01,"Industrial Consumption","Louisiana","LA",89500 +2021-08-01,"Industrial Consumption","South Dakota","SD",3706 +2021-08-01,"Industrial Consumption","Arizona","AZ",1390 +2021-08-01,"Industrial Consumption","Oregon","OR",4250 +2021-08-01,"Industrial Consumption","Texas","TX",163918 +2021-08-01,"Industrial Consumption","Tennessee","TN",12174 +2021-08-01,"Industrial Consumption","Illinois","IL",17916 +2021-08-01,"Industrial Consumption","North Carolina","NC",9361 +2021-08-01,"Industrial Consumption","Oklahoma","OK",15981 +2021-08-01,"Industrial Consumption","Utah","UT",2872 +2021-08-01,"Industrial Consumption","Nevada","NV",1345 +2021-08-01,"Industrial Consumption","California","CA",63392 +2021-08-01,"Industrial Consumption","Arkansas","AR",8335 +2021-08-01,"Industrial Consumption","New Hampshire","NH",652 +2021-08-01,"Industrial Consumption","Michigan","MI",9912 +2021-08-01,"Industrial Consumption","Alaska","AK",531 +2021-08-01,"Industrial Consumption","North Dakota","ND",2900 +2021-08-01,"Industrial Consumption","Maryland","MD",1113 +2021-08-01,"Industrial Consumption","Colorado","CO",5546 +2021-08-01,"Industrial Consumption","Washington","WA",5722 +2021-08-01,"Industrial Consumption","Nebraska","NE",8609 +2021-08-01,"Industrial Consumption","Vermont","VT",136 +2021-08-01,"Industrial Consumption","Rhode Island","RI",621 +2021-08-01,"Industrial Consumption","Hawaii","HI",9 +2021-08-01,"Industrial Consumption","Missouri","MO",4442 +2021-08-01,"Industrial Consumption","Maine","ME",1609 +2021-08-01,"Industrial Consumption","Alabama","AL",19309 +2021-08-01,"Industrial Consumption","Massachusetts","MA",2392 +2021-08-01,"Industrial Consumption","Kansas","KS",12976 +2021-08-01,"Industrial Consumption","South Carolina","SC",8175 +2021-08-01,"Industrial Consumption","Virginia","VA",8539 +2021-08-01,"Industrial Consumption","Wisconsin","WI",9728 +2021-08-01,"Industrial Consumption","New Jersey","NJ",4596 +2021-08-01,"Industrial Consumption","Idaho","ID",2412 +2021-08-01,"Industrial Consumption","Florida","FL",11763 +2021-08-01,"Industrial Consumption","Delaware","DE",2365 +2021-08-01,"Industrial Consumption","Ohio","OH",22577 +2021-08-01,"Industrial Consumption","West Virginia","WV",3171 +2021-08-01,"Industrial Consumption","Montana","MT",1853 +2021-08-01,"Industrial Consumption","New Mexico","NM",1347 +2021-08-01,"Industrial Consumption","U.S.","U.S.",668686 +2021-08-01,"Industrial Consumption","Pennsylvania","PA",18700 +2021-08-01,"Industrial Consumption","Mississippi","MS",11022 +2021-08-01,"Industrial Consumption","Wyoming","WY",3560 +2021-08-01,"Industrial Consumption","Minnesota","MN",9915 +2021-08-01,"Industrial Consumption","Iowa","IA",17519 +2021-08-01,"Industrial Consumption","Connecticut","CT",1594 +2021-08-01,"Industrial Consumption","Kentucky","KY",9173 +2021-08-01,"Industrial Consumption","Georgia","GA",13032 +2021-08-01,"Industrial Consumption","New York","NY",7205 +2021-08-01,"Industrial Consumption","Indiana","IN",29820 +2021-08-01,"Industrial Consumption","District of Columbia","DC",NA +2021-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",162798 +2021-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",89183 +2021-08-01,"Residential Consumption","Mississippi","MS",473 +2021-08-01,"Residential Consumption","Virginia","VA",1469 +2021-08-01,"Residential Consumption","Minnesota","MN",2620 +2021-08-01,"Residential Consumption","Massachusetts","MA",2503 +2021-08-01,"Residential Consumption","South Carolina","SC",684 +2021-08-01,"Residential Consumption","Iowa","IA",964 +2021-08-01,"Residential Consumption","Connecticut","CT",1013 +2021-08-01,"Residential Consumption","Michigan","MI",5368 +2021-08-01,"Residential Consumption","South Dakota","SD",204 +2021-08-01,"Residential Consumption","Idaho","ID",643 +2021-08-01,"Residential Consumption","Kansas","KS",1060 +2021-08-01,"Residential Consumption","Alabama","AL",716 +2021-08-01,"Residential Consumption","New York","NY",10301 +2021-08-01,"Residential Consumption","Illinois","IL",7519 +2021-08-01,"Residential Consumption","Texas","TX",6187 +2021-08-01,"Residential Consumption","Oregon","OR",953 +2021-08-01,"Residential Consumption","Ohio","OH",4375 +2021-08-01,"Residential Consumption","Wisconsin","WI",2325 +2021-08-01,"Residential Consumption","Utah","UT",1546 +2021-08-01,"Residential Consumption","Nevada","NV",1264 +2021-08-01,"Residential Consumption","North Dakota","ND",186 +2021-08-01,"Residential Consumption","Colorado","CO",2913 +2021-08-01,"Residential Consumption","Washington","WA",1890 +2021-08-01,"Residential Consumption","West Virginia","WV",301 +2021-08-01,"Residential Consumption","Louisiana","LA",1100 +2021-08-01,"Residential Consumption","Maine","ME",58 +2021-08-01,"Residential Consumption","Indiana","IN",2135 +2021-08-01,"Residential Consumption","New Hampshire","NH",167 +2021-08-01,"Residential Consumption","Wyoming","WY",173 +2021-08-01,"Residential Consumption","Vermont","VT",81 +2021-08-01,"Residential Consumption","District of Columbia","DC",224 +2021-08-01,"Residential Consumption","Pennsylvania","PA",3829 +2021-08-01,"Residential Consumption","Oklahoma","OK",1301 +2021-08-01,"Residential Consumption","California","CA",18652 +2021-08-01,"Residential Consumption","North Carolina","NC",1296 +2021-08-01,"Residential Consumption","Hawaii","HI",47 +2021-08-01,"Residential Consumption","Missouri","MO",1809 +2021-08-01,"Residential Consumption","U.S.","U.S.",106290 +2021-08-01,"Residential Consumption","New Mexico","NM",816 +2021-08-01,"Residential Consumption","New Jersey","NJ",4709 +2021-08-01,"Residential Consumption","Kentucky","KY",736 +2021-08-01,"Residential Consumption","Delaware","DE",180 +2021-08-01,"Residential Consumption","Rhode Island","RI",422 +2021-08-01,"Residential Consumption","Tennessee","TN",1012 +2021-08-01,"Residential Consumption","Nebraska","NE",656 +2021-08-01,"Residential Consumption","Maryland","MD",1356 +2021-08-01,"Residential Consumption","Georgia","GA",4350 +2021-08-01,"Residential Consumption","Florida","FL",907 +2021-08-01,"Residential Consumption","Arkansas","AR",501 +2021-08-01,"Residential Consumption","Montana","MT",406 +2021-08-01,"Residential Consumption","Arizona","AZ",1264 +2021-08-01,"Residential Consumption","Alaska","AK",625 +2021-08-01,"Vehicle Fuel Consumption","Washington","WA",12 +2021-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-08-01,"Vehicle Fuel Consumption","Nebraska","NE",35 +2021-08-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-08-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-08-01,"Vehicle Fuel Consumption","Minnesota","MN",47 +2021-08-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",4627 +2021-08-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-08-01,"Vehicle Fuel Consumption","Kansas","KS",78 +2021-08-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2021-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-08-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-08-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2021-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-08-01,"Vehicle Fuel Consumption","Florida","FL",477 +2021-08-01,"Vehicle Fuel Consumption","Missouri","MO",19 +2021-08-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2021-08-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-08-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2021-08-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2021-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2021-08-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-08-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-08-01,"Vehicle Fuel Consumption","Colorado","CO",150 +2021-08-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-08-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-08-01,"Vehicle Fuel Consumption","California","CA",2161 +2021-08-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2021-08-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2021-08-01,"Vehicle Fuel Consumption","Texas","TX",80 +2021-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",38 +2021-08-01,"Vehicle Fuel Consumption","Indiana","IN",164 +2021-08-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-08-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",145 +2021-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-08-01,"Vehicle Fuel Consumption","Georgia","GA",129 +2021-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-08-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-08-01,"Vehicle Fuel Consumption","New York","NY",96 +2021-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2021-08-01,"Vehicle Fuel Consumption","Arizona","AZ",176 +2021-08-01,"Vehicle Fuel Consumption","Utah","UT",25 +2021-08-01,"Vehicle Fuel Consumption","Virginia","VA",57 +2021-08-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-08-01,"Vehicle Fuel Consumption","North Carolina","NC",135 +2021-09-01,"Commercial Consumption","South Carolina","SC",1453 +2021-09-01,"Commercial Consumption","Minnesota","MN",3053 +2021-09-01,"Commercial Consumption","Oklahoma","OK",1743 +2021-09-01,"Commercial Consumption","Pennsylvania","PA",5196 +2021-09-01,"Commercial Consumption","New Jersey","NJ",5042 +2021-09-01,"Commercial Consumption","Kentucky","KY",1307 +2021-09-01,"Commercial Consumption","Texas","TX",11114 +2021-09-01,"Commercial Consumption","Kansas","KS",1829 +2021-09-01,"Commercial Consumption","New York","NY",14494 +2021-09-01,"Commercial Consumption","Nebraska","NE",1189 +2021-09-01,"Commercial Consumption","Mississippi","MS",977 +2021-09-01,"Commercial Consumption","Nevada","NV",1732 +2021-09-01,"Commercial Consumption","Oregon","OR",1159 +2021-09-01,"Commercial Consumption","Massachusetts","MA",4289 +2021-09-01,"Commercial Consumption","Ohio","OH",5391 +2021-09-01,"Commercial Consumption","Hawaii","HI",183 +2021-09-01,"Commercial Consumption","Connecticut","CT",2570 +2021-09-01,"Commercial Consumption","Indiana","IN",3277 +2021-09-01,"Commercial Consumption","Illinois","IL",9099 +2021-09-01,"Commercial Consumption","Wisconsin","WI",3461 +2021-09-01,"Commercial Consumption","Maryland","MD",3704 +2021-09-01,"Commercial Consumption","Rhode Island","RI",271 +2021-09-01,"Commercial Consumption","Tennessee","TN",2732 +2021-09-01,"Commercial Consumption","Washington","WA",2592 +2021-09-01,"Commercial Consumption","Florida","FL",4611 +2021-09-01,"Commercial Consumption","Arkansas","AR",3393 +2021-09-01,"Commercial Consumption","Alabama","AL",1243 +2021-09-01,"Commercial Consumption","Louisiana","LA",2200 +2021-09-01,"Commercial Consumption","North Dakota","ND",384 +2021-09-01,"Commercial Consumption","North Carolina","NC",2579 +2021-09-01,"Commercial Consumption","Colorado","CO",1858 +2021-09-01,"Commercial Consumption","New Mexico","NM",1333 +2021-09-01,"Commercial Consumption","Virginia","VA",3501 +2021-09-01,"Commercial Consumption","U.S.","U.S.",150406 +2021-09-01,"Commercial Consumption","Iowa","IA",1756 +2021-09-01,"Commercial Consumption","California","CA",19011 +2021-09-01,"Commercial Consumption","Delaware","DE",793 +2021-09-01,"Commercial Consumption","Arizona","AZ",1977 +2021-09-01,"Commercial Consumption","Michigan","MI",5203 +2021-09-01,"Commercial Consumption","West Virginia","WV",1122 +2021-09-01,"Commercial Consumption","Utah","UT",1539 +2021-09-01,"Commercial Consumption","South Dakota","SD",346 +2021-09-01,"Commercial Consumption","Montana","MT",1246 +2021-09-01,"Commercial Consumption","Maine","ME",320 +2021-09-01,"Commercial Consumption","Vermont","VT",396 +2021-09-01,"Commercial Consumption","District of Columbia","DC",675 +2021-09-01,"Commercial Consumption","New Hampshire","NH",267 +2021-09-01,"Commercial Consumption","Georgia","GA",2254 +2021-09-01,"Commercial Consumption","Wyoming","WY",305 +2021-09-01,"Commercial Consumption","Missouri","MO",2373 +2021-09-01,"Commercial Consumption","Idaho","ID",1001 +2021-09-01,"Commercial Consumption","Alaska","AK",857 +2021-09-01,"Delivered to Consumers","Idaho","ID",7907 +2021-09-01,"Delivered to Consumers","Arkansas","AR",25016 +2021-09-01,"Delivered to Consumers","Nebraska","NE",10423 +2021-09-01,"Delivered to Consumers","North Carolina","NC",44101 +2021-09-01,"Delivered to Consumers","Missouri","MO",14056 +2021-09-01,"Delivered to Consumers","Nevada","NV",23185 +2021-09-01,"Delivered to Consumers","New Jersey","NJ",36063 +2021-09-01,"Delivered to Consumers","Georgia","GA",53660 +2021-09-01,"Delivered to Consumers","U.S.","U.S.",1907140 +2021-09-01,"Delivered to Consumers","Oklahoma","OK",44111 +2021-09-01,"Delivered to Consumers","Maine","ME",3030 +2021-09-01,"Delivered to Consumers","Arizona","AZ",39749 +2021-09-01,"Delivered to Consumers","Utah","UT",12346 +2021-09-01,"Delivered to Consumers","Kansas","KS",15343 +2021-09-01,"Delivered to Consumers","Virginia","VA",44380 +2021-09-01,"Delivered to Consumers","Pennsylvania","PA",102293 +2021-09-01,"Delivered to Consumers","South Carolina","SC",26713 +2021-09-01,"Delivered to Consumers","New Mexico","NM",10697 +2021-09-01,"Delivered to Consumers","Indiana","IN",49202 +2021-09-01,"Delivered to Consumers","Delaware","DE",5045 +2021-09-01,"Delivered to Consumers","West Virginia","WV",5662 +2021-09-01,"Delivered to Consumers","Vermont","VT",618 +2021-09-01,"Delivered to Consumers","Ohio","OH",60866 +2021-09-01,"Delivered to Consumers","Iowa","IA",24365 +2021-09-01,"Delivered to Consumers","Colorado","CO",21194 +2021-09-01,"Delivered to Consumers","North Dakota","ND",4486 +2021-09-01,"Delivered to Consumers","South Dakota","SD",5066 +2021-09-01,"Delivered to Consumers","Alaska","AK",4530 +2021-09-01,"Delivered to Consumers","Tennessee","TN",25393 +2021-09-01,"Delivered to Consumers","Rhode Island","RI",6665 +2021-09-01,"Delivered to Consumers","Hawaii","HI",242 +2021-09-01,"Delivered to Consumers","Kentucky","KY",19208 +2021-09-01,"Delivered to Consumers","Massachusetts","MA",18277 +2021-09-01,"Delivered to Consumers","Texas","TX",337587 +2021-09-01,"Delivered to Consumers","District of Columbia","DC",955 +2021-09-01,"Delivered to Consumers","Montana","MT",4270 +2021-09-01,"Delivered to Consumers","Alabama","AL",54125 +2021-09-01,"Delivered to Consumers","California","CA",160555 +2021-09-01,"Delivered to Consumers","Oregon","OR",19729 +2021-09-01,"Delivered to Consumers","Louisiana","LA",101076 +2021-09-01,"Delivered to Consumers","Wyoming","WY",5183 +2021-09-01,"Delivered to Consumers","Illinois","IL",52614 +2021-09-01,"Delivered to Consumers","New York","NY",67784 +2021-09-01,"Delivered to Consumers","Maryland","MD",15539 +2021-09-01,"Delivered to Consumers","Michigan","MI",42102 +2021-09-01,"Delivered to Consumers","Connecticut","CT",19345 +2021-09-01,"Delivered to Consumers","Wisconsin","WI",27508 +2021-09-01,"Delivered to Consumers","Mississippi","MS",41066 +2021-09-01,"Delivered to Consumers","Washington","WA",22523 +2021-09-01,"Delivered to Consumers","New Hampshire","NH",4997 +2021-09-01,"Delivered to Consumers","Minnesota","MN",23619 +2021-09-01,"Delivered to Consumers","Florida","FL",142669 +2021-09-01,"Electric Power Consumption","Colorado","CO",10062 +2021-09-01,"Electric Power Consumption","Massachusetts","MA",8186 +2021-09-01,"Electric Power Consumption","Kansas","KS",1933 +2021-09-01,"Electric Power Consumption","Wyoming","WY",978 +2021-09-01,"Electric Power Consumption","Iowa","IA",3286 +2021-09-01,"Electric Power Consumption","Utah","UT",5740 +2021-09-01,"Electric Power Consumption","Wisconsin","WI",11639 +2021-09-01,"Electric Power Consumption","U.S.","U.S.",995184 +2021-09-01,"Electric Power Consumption","Kentucky","KY",8001 +2021-09-01,"Electric Power Consumption","Montana","MT",595 +2021-09-01,"Electric Power Consumption","Washington","WA",11055 +2021-09-01,"Electric Power Consumption","Rhode Island","RI",5331 +2021-09-01,"Electric Power Consumption","West Virginia","WV",1123 +2021-09-01,"Electric Power Consumption","Vermont","VT",1 +2021-09-01,"Electric Power Consumption","Nebraska","NE",896 +2021-09-01,"Electric Power Consumption","New Hampshire","NH",3908 +2021-09-01,"Electric Power Consumption","Florida","FL",126445 +2021-09-01,"Electric Power Consumption","Alaska","AK",2096 +2021-09-01,"Electric Power Consumption","New Jersey","NJ",20069 +2021-09-01,"Electric Power Consumption","Oklahoma","OK",23802 +2021-09-01,"Electric Power Consumption","Illinois","IL",17475 +2021-09-01,"Electric Power Consumption","Michigan","MI",20065 +2021-09-01,"Electric Power Consumption","South Dakota","SD",905 +2021-09-01,"Electric Power Consumption","North Dakota","ND",1090 +2021-09-01,"Electric Power Consumption","Connecticut","CT",13935 +2021-09-01,"Electric Power Consumption","South Carolina","SC",16677 +2021-09-01,"Electric Power Consumption","New York","NY",36468 +2021-09-01,"Electric Power Consumption","Ohio","OH",27889 +2021-09-01,"Electric Power Consumption","New Mexico","NM",7086 +2021-09-01,"Electric Power Consumption","Idaho","ID",3037 +2021-09-01,"Electric Power Consumption","Texas","TX",160005 +2021-09-01,"Electric Power Consumption","Minnesota","MN",7169 +2021-09-01,"Electric Power Consumption","Tennessee","TN",9243 +2021-09-01,"Electric Power Consumption","Indiana","IN",15187 +2021-09-01,"Electric Power Consumption","Delaware","DE",1601 +2021-09-01,"Electric Power Consumption","California","CA",61406 +2021-09-01,"Electric Power Consumption","Louisiana","LA",22698 +2021-09-01,"Electric Power Consumption","Nevada","NV",18444 +2021-09-01,"Electric Power Consumption","Missouri","MO",5338 +2021-09-01,"Electric Power Consumption","Mississippi","MS",28724 +2021-09-01,"Electric Power Consumption","Hawaii","HI",NA +2021-09-01,"Electric Power Consumption","Georgia","GA",34050 +2021-09-01,"Electric Power Consumption","Virginia","VA",30397 +2021-09-01,"Electric Power Consumption","Arkansas","AR",12697 +2021-09-01,"Electric Power Consumption","Oregon","OR",12923 +2021-09-01,"Electric Power Consumption","Pennsylvania","PA",76085 +2021-09-01,"Electric Power Consumption","North Carolina","NC",30991 +2021-09-01,"Electric Power Consumption","Maine","ME",1224 +2021-09-01,"Electric Power Consumption","Maryland","MD",9059 +2021-09-01,"Electric Power Consumption","Arizona","AZ",34906 +2021-09-01,"Electric Power Consumption","Alabama","AL",33263 +2021-09-01,"Industrial Consumption","Colorado","CO",5832 +2021-09-01,"Industrial Consumption","New Mexico","NM",1322 +2021-09-01,"Industrial Consumption","Mississippi","MS",10830 +2021-09-01,"Industrial Consumption","Alabama","AL",18877 +2021-09-01,"Industrial Consumption","South Carolina","SC",7892 +2021-09-01,"Industrial Consumption","New Jersey","NJ",5524 +2021-09-01,"Industrial Consumption","Idaho","ID",2981 +2021-09-01,"Industrial Consumption","Iowa","IA",18119 +2021-09-01,"Industrial Consumption","Kentucky","KY",9000 +2021-09-01,"Industrial Consumption","Indiana","IN",28080 +2021-09-01,"Industrial Consumption","Delaware","DE",2449 +2021-09-01,"Industrial Consumption","Rhode Island","RI",653 +2021-09-01,"Industrial Consumption","District of Columbia","DC",NA +2021-09-01,"Industrial Consumption","Missouri","MO",4386 +2021-09-01,"Industrial Consumption","Washington","WA",6197 +2021-09-01,"Industrial Consumption","Virginia","VA",8745 +2021-09-01,"Industrial Consumption","Vermont","VT",135 +2021-09-01,"Industrial Consumption","Wyoming","WY",3703 +2021-09-01,"Industrial Consumption","New Hampshire","NH",648 +2021-09-01,"Industrial Consumption","Michigan","MI",10917 +2021-09-01,"Industrial Consumption","Illinois","IL",17800 +2021-09-01,"Industrial Consumption","Alaska","AK",499 +2021-09-01,"Industrial Consumption","Ohio","OH",22422 +2021-09-01,"Industrial Consumption","Nevada","NV",1391 +2021-09-01,"Industrial Consumption","Georgia","GA",12800 +2021-09-01,"Industrial Consumption","Arkansas","AR",8360 +2021-09-01,"Industrial Consumption","Wisconsin","WI",9846 +2021-09-01,"Industrial Consumption","North Carolina","NC",9239 +2021-09-01,"Industrial Consumption","Utah","UT",3060 +2021-09-01,"Industrial Consumption","Oregon","OR",4362 +2021-09-01,"Industrial Consumption","New York","NY",6335 +2021-09-01,"Industrial Consumption","Texas","TX",160380 +2021-09-01,"Industrial Consumption","Maryland","MD",1115 +2021-09-01,"Industrial Consumption","Oklahoma","OK",17099 +2021-09-01,"Industrial Consumption","Arizona","AZ",1374 +2021-09-01,"Industrial Consumption","Maine","ME",1429 +2021-09-01,"Industrial Consumption","Nebraska","NE",7580 +2021-09-01,"Industrial Consumption","West Virginia","WV",2958 +2021-09-01,"Industrial Consumption","Florida","FL",10200 +2021-09-01,"Industrial Consumption","North Dakota","ND",2803 +2021-09-01,"Industrial Consumption","Montana","MT",1878 +2021-09-01,"Industrial Consumption","Kansas","KS",10308 +2021-09-01,"Industrial Consumption","U.S.","U.S.",638679 +2021-09-01,"Industrial Consumption","Pennsylvania","PA",16843 +2021-09-01,"Industrial Consumption","Minnesota","MN",10596 +2021-09-01,"Industrial Consumption","Massachusetts","MA",2858 +2021-09-01,"Industrial Consumption","Hawaii","HI",8 +2021-09-01,"Industrial Consumption","Louisiana","LA",74393 +2021-09-01,"Industrial Consumption","South Dakota","SD",3597 +2021-09-01,"Industrial Consumption","California","CA",57172 +2021-09-01,"Industrial Consumption","Tennessee","TN",12017 +2021-09-01,"Industrial Consumption","Connecticut","CT",1666 +2021-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",157214 +2021-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",77955 +2021-09-01,"Residential Consumption","Hawaii","HI",51 +2021-09-01,"Residential Consumption","South Dakota","SD",218 +2021-09-01,"Residential Consumption","Indiana","IN",2499 +2021-09-01,"Residential Consumption","Montana","MT",551 +2021-09-01,"Residential Consumption","Kentucky","KY",899 +2021-09-01,"Residential Consumption","Kansas","KS",1197 +2021-09-01,"Residential Consumption","Washington","WA",2668 +2021-09-01,"Residential Consumption","Illinois","IL",8234 +2021-09-01,"Residential Consumption","Virginia","VA",1682 +2021-09-01,"Residential Consumption","Alabama","AL",736 +2021-09-01,"Residential Consumption","Louisiana","LA",1755 +2021-09-01,"Residential Consumption","Iowa","IA",1202 +2021-09-01,"Residential Consumption","Nebraska","NE",723 +2021-09-01,"Residential Consumption","Michigan","MI",5916 +2021-09-01,"Residential Consumption","South Carolina","SC",684 +2021-09-01,"Residential Consumption","North Carolina","NC",1161 +2021-09-01,"Residential Consumption","Mississippi","MS",534 +2021-09-01,"Residential Consumption","North Dakota","ND",209 +2021-09-01,"Residential Consumption","New Hampshire","NH",172 +2021-09-01,"Residential Consumption","Oklahoma","OK",1322 +2021-09-01,"Residential Consumption","Delaware","DE",202 +2021-09-01,"Residential Consumption","Arizona","AZ",1322 +2021-09-01,"Residential Consumption","Rhode Island","RI",401 +2021-09-01,"Residential Consumption","Connecticut","CT",1157 +2021-09-01,"Residential Consumption","Utah","UT",1983 +2021-09-01,"Residential Consumption","Maryland","MD",1638 +2021-09-01,"Residential Consumption","Minnesota","MN",2756 +2021-09-01,"Residential Consumption","District of Columbia","DC",257 +2021-09-01,"Residential Consumption","Idaho","ID",883 +2021-09-01,"Residential Consumption","New Jersey","NJ",5391 +2021-09-01,"Residential Consumption","California","CA",20874 +2021-09-01,"Residential Consumption","Wyoming","WY",195 +2021-09-01,"Residential Consumption","New York","NY",10394 +2021-09-01,"Residential Consumption","Tennessee","TN",1370 +2021-09-01,"Residential Consumption","Georgia","GA",4431 +2021-09-01,"Residential Consumption","Missouri","MO",1940 +2021-09-01,"Residential Consumption","Wisconsin","WI",2523 +2021-09-01,"Residential Consumption","Pennsylvania","PA",4029 +2021-09-01,"Residential Consumption","Massachusetts","MA",2938 +2021-09-01,"Residential Consumption","Arkansas","AR",560 +2021-09-01,"Residential Consumption","Colorado","CO",3296 +2021-09-01,"Residential Consumption","Alaska","AK",1077 +2021-09-01,"Residential Consumption","Texas","TX",6011 +2021-09-01,"Residential Consumption","Oregon","OR",1282 +2021-09-01,"Residential Consumption","Ohio","OH",5074 +2021-09-01,"Residential Consumption","Vermont","VT",84 +2021-09-01,"Residential Consumption","Nevada","NV",1523 +2021-09-01,"Residential Consumption","New Mexico","NM",924 +2021-09-01,"Residential Consumption","Maine","ME",57 +2021-09-01,"Residential Consumption","Florida","FL",950 +2021-09-01,"Residential Consumption","West Virginia","WV",458 +2021-09-01,"Residential Consumption","U.S.","U.S.",118393 +2021-09-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2021-09-01,"Vehicle Fuel Consumption","Utah","UT",24 +2021-09-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-09-01,"Vehicle Fuel Consumption","Ohio","OH",91 +2021-09-01,"Vehicle Fuel Consumption","New York","NY",93 +2021-09-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2021-09-01,"Vehicle Fuel Consumption","Minnesota","MN",45 +2021-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-09-01,"Vehicle Fuel Consumption","Florida","FL",462 +2021-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-09-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2021-09-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2021-09-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2021-09-01,"Vehicle Fuel Consumption","Colorado","CO",145 +2021-09-01,"Vehicle Fuel Consumption","North Carolina","NC",131 +2021-09-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-09-01,"Vehicle Fuel Consumption","Indiana","IN",159 +2021-09-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-09-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2021-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",140 +2021-09-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2021-09-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-09-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",4478 +2021-09-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-09-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-09-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-09-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2021-09-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-09-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-09-01,"Vehicle Fuel Consumption","Washington","WA",11 +2021-09-01,"Vehicle Fuel Consumption","Virginia","VA",55 +2021-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-09-01,"Vehicle Fuel Consumption","Arizona","AZ",170 +2021-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2021-09-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-09-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-09-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2021-09-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2021-09-01,"Vehicle Fuel Consumption","Texas","TX",77 +2021-09-01,"Vehicle Fuel Consumption","Georgia","GA",125 +2021-09-01,"Vehicle Fuel Consumption","Connecticut","CT",16 +2021-09-01,"Vehicle Fuel Consumption","California","CA",2092 +2021-10-01,"Commercial Consumption","Wisconsin","WI",5548 +2021-10-01,"Commercial Consumption","Maine","ME",520 +2021-10-01,"Commercial Consumption","Texas","TX",12005 +2021-10-01,"Commercial Consumption","Florida","FL",4648 +2021-10-01,"Commercial Consumption","Idaho","ID",1578 +2021-10-01,"Commercial Consumption","Iowa","IA",3304 +2021-10-01,"Commercial Consumption","Arkansas","AR",3782 +2021-10-01,"Commercial Consumption","Nebraska","NE",1481 +2021-10-01,"Commercial Consumption","West Virginia","WV",1420 +2021-10-01,"Commercial Consumption","Washington","WA",4360 +2021-10-01,"Commercial Consumption","Minnesota","MN",5563 +2021-10-01,"Commercial Consumption","South Dakota","SD",686 +2021-10-01,"Commercial Consumption","Georgia","GA",3015 +2021-10-01,"Commercial Consumption","Ohio","OH",8367 +2021-10-01,"Commercial Consumption","Illinois","IL",12272 +2021-10-01,"Commercial Consumption","South Carolina","SC",1972 +2021-10-01,"Commercial Consumption","North Carolina","NC",3505 +2021-10-01,"Commercial Consumption","Alaska","AK",1316 +2021-10-01,"Commercial Consumption","California","CA",19258 +2021-10-01,"Commercial Consumption","New York","NY",16318 +2021-10-01,"Commercial Consumption","Mississippi","MS",1173 +2021-10-01,"Commercial Consumption","Louisiana","LA",2301 +2021-10-01,"Commercial Consumption","District of Columbia","DC",937 +2021-10-01,"Commercial Consumption","Wyoming","WY",457 +2021-10-01,"Commercial Consumption","Massachusetts","MA",5750 +2021-10-01,"Commercial Consumption","U.S.","U.S.",196571 +2021-10-01,"Commercial Consumption","Maryland","MD",3969 +2021-10-01,"Commercial Consumption","Vermont","VT",546 +2021-10-01,"Commercial Consumption","Rhode Island","RI",459 +2021-10-01,"Commercial Consumption","Connecticut","CT",3278 +2021-10-01,"Commercial Consumption","Utah","UT",2010 +2021-10-01,"Commercial Consumption","Virginia","VA",4382 +2021-10-01,"Commercial Consumption","Montana","MT",1766 +2021-10-01,"Commercial Consumption","Colorado","CO",3522 +2021-10-01,"Commercial Consumption","Oregon","OR",2304 +2021-10-01,"Commercial Consumption","New Jersey","NJ",7547 +2021-10-01,"Commercial Consumption","New Hampshire","NH",503 +2021-10-01,"Commercial Consumption","Hawaii","HI",174 +2021-10-01,"Commercial Consumption","Alabama","AL",1872 +2021-10-01,"Commercial Consumption","North Dakota","ND",912 +2021-10-01,"Commercial Consumption","Arizona","AZ",2269 +2021-10-01,"Commercial Consumption","Tennessee","TN",3621 +2021-10-01,"Commercial Consumption","Nevada","NV",2319 +2021-10-01,"Commercial Consumption","New Mexico","NM",2114 +2021-10-01,"Commercial Consumption","Oklahoma","OK",2215 +2021-10-01,"Commercial Consumption","Pennsylvania","PA",7659 +2021-10-01,"Commercial Consumption","Missouri","MO",3468 +2021-10-01,"Commercial Consumption","Kentucky","KY",1750 +2021-10-01,"Commercial Consumption","Kansas","KS",2213 +2021-10-01,"Commercial Consumption","Delaware","DE",958 +2021-10-01,"Commercial Consumption","Michigan","MI",7958 +2021-10-01,"Commercial Consumption","Indiana","IN",5249 +2021-10-01,"Delivered to Consumers","Iowa","IA",26974 +2021-10-01,"Delivered to Consumers","California","CA",163834 +2021-10-01,"Delivered to Consumers","Delaware","DE",4571 +2021-10-01,"Delivered to Consumers","Illinois","IL",66492 +2021-10-01,"Delivered to Consumers","Pennsylvania","PA",100781 +2021-10-01,"Delivered to Consumers","Missouri","MO",16917 +2021-10-01,"Delivered to Consumers","Georgia","GA",58468 +2021-10-01,"Delivered to Consumers","Washington","WA",28141 +2021-10-01,"Delivered to Consumers","Florida","FL",136034 +2021-10-01,"Delivered to Consumers","New Mexico","NM",10126 +2021-10-01,"Delivered to Consumers","Montana","MT",5719 +2021-10-01,"Delivered to Consumers","Idaho","ID",9341 +2021-10-01,"Delivered to Consumers","Colorado","CO",25591 +2021-10-01,"Delivered to Consumers","Texas","TX",315474 +2021-10-01,"Delivered to Consumers","District of Columbia","DC",1292 +2021-10-01,"Delivered to Consumers","Oklahoma","OK",40908 +2021-10-01,"Delivered to Consumers","Virginia","VA",42767 +2021-10-01,"Delivered to Consumers","Nebraska","NE",12253 +2021-10-01,"Delivered to Consumers","Louisiana","LA",123022 +2021-10-01,"Delivered to Consumers","Utah","UT",12399 +2021-10-01,"Delivered to Consumers","Vermont","VT",829 +2021-10-01,"Delivered to Consumers","Alaska","AK",5837 +2021-10-01,"Delivered to Consumers","Massachusetts","MA",22233 +2021-10-01,"Delivered to Consumers","Arizona","AZ",32632 +2021-10-01,"Delivered to Consumers","Tennessee","TN",22492 +2021-10-01,"Delivered to Consumers","Ohio","OH",76809 +2021-10-01,"Delivered to Consumers","Michigan","MI",54185 +2021-10-01,"Delivered to Consumers","Kentucky","KY",22471 +2021-10-01,"Delivered to Consumers","Alabama","AL",53983 +2021-10-01,"Delivered to Consumers","Mississippi","MS",39212 +2021-10-01,"Delivered to Consumers","Nevada","NV",19614 +2021-10-01,"Delivered to Consumers","Minnesota","MN",32196 +2021-10-01,"Delivered to Consumers","Indiana","IN",56932 +2021-10-01,"Delivered to Consumers","Wyoming","WY",5316 +2021-10-01,"Delivered to Consumers","Rhode Island","RI",7751 +2021-10-01,"Delivered to Consumers","Hawaii","HI",230 +2021-10-01,"Delivered to Consumers","Connecticut","CT",18887 +2021-10-01,"Delivered to Consumers","Arkansas","AR",27119 +2021-10-01,"Delivered to Consumers","South Carolina","SC",27890 +2021-10-01,"Delivered to Consumers","New Jersey","NJ",42035 +2021-10-01,"Delivered to Consumers","Maine","ME",4362 +2021-10-01,"Delivered to Consumers","U.S.","U.S.",2014942 +2021-10-01,"Delivered to Consumers","West Virginia","WV",7804 +2021-10-01,"Delivered to Consumers","South Dakota","SD",6181 +2021-10-01,"Delivered to Consumers","New York","NY",75496 +2021-10-01,"Delivered to Consumers","Maryland","MD",18041 +2021-10-01,"Delivered to Consumers","Kansas","KS",17009 +2021-10-01,"Delivered to Consumers","Wisconsin","WI",35967 +2021-10-01,"Delivered to Consumers","North Carolina","NC",45931 +2021-10-01,"Delivered to Consumers","Oregon","OR",23230 +2021-10-01,"Delivered to Consumers","New Hampshire","NH",5607 +2021-10-01,"Delivered to Consumers","North Dakota","ND",5561 +2021-10-01,"Electric Power Consumption","Idaho","ID",2405 +2021-10-01,"Electric Power Consumption","Nevada","NV",13351 +2021-10-01,"Electric Power Consumption","Nebraska","NE",1071 +2021-10-01,"Electric Power Consumption","Ohio","OH",35209 +2021-10-01,"Electric Power Consumption","Pennsylvania","PA",66665 +2021-10-01,"Electric Power Consumption","Vermont","VT",1 +2021-10-01,"Electric Power Consumption","Mississippi","MS",26544 +2021-10-01,"Electric Power Consumption","Indiana","IN",17404 +2021-10-01,"Electric Power Consumption","Florida","FL",119133 +2021-10-01,"Electric Power Consumption","Louisiana","LA",27333 +2021-10-01,"Electric Power Consumption","Minnesota","MN",9544 +2021-10-01,"Electric Power Consumption","Kansas","KS",1829 +2021-10-01,"Electric Power Consumption","South Dakota","SD",1210 +2021-10-01,"Electric Power Consumption","North Dakota","ND",1133 +2021-10-01,"Electric Power Consumption","Delaware","DE",1246 +2021-10-01,"Electric Power Consumption","Connecticut","CT",12203 +2021-10-01,"Electric Power Consumption","New Jersey","NJ",22476 +2021-10-01,"Electric Power Consumption","Utah","UT",4044 +2021-10-01,"Electric Power Consumption","Wyoming","WY",418 +2021-10-01,"Electric Power Consumption","Kentucky","KY",9444 +2021-10-01,"Electric Power Consumption","Montana","MT",558 +2021-10-01,"Electric Power Consumption","Arizona","AZ",26824 +2021-10-01,"Electric Power Consumption","Georgia","GA",35997 +2021-10-01,"Electric Power Consumption","Alaska","AK",2131 +2021-10-01,"Electric Power Consumption","South Carolina","SC",16635 +2021-10-01,"Electric Power Consumption","Oklahoma","OK",18152 +2021-10-01,"Electric Power Consumption","Wisconsin","WI",13934 +2021-10-01,"Electric Power Consumption","Iowa","IA",3712 +2021-10-01,"Electric Power Consumption","Tennessee","TN",5361 +2021-10-01,"Electric Power Consumption","North Carolina","NC",30453 +2021-10-01,"Electric Power Consumption","Colorado","CO",7076 +2021-10-01,"Electric Power Consumption","Oregon","OR",12443 +2021-10-01,"Electric Power Consumption","Illinois","IL",20242 +2021-10-01,"Electric Power Consumption","Missouri","MO",4730 +2021-10-01,"Electric Power Consumption","New Mexico","NM",4995 +2021-10-01,"Electric Power Consumption","New York","NY",36956 +2021-10-01,"Electric Power Consumption","Texas","TX",137374 +2021-10-01,"Electric Power Consumption","Rhode Island","RI",5919 +2021-10-01,"Electric Power Consumption","Michigan","MI",21383 +2021-10-01,"Electric Power Consumption","U.S.","U.S.",943648 +2021-10-01,"Electric Power Consumption","Hawaii","HI",NA +2021-10-01,"Electric Power Consumption","New Hampshire","NH",4106 +2021-10-01,"Electric Power Consumption","Maryland","MD",10610 +2021-10-01,"Electric Power Consumption","Washington","WA",9836 +2021-10-01,"Electric Power Consumption","Virginia","VA",27784 +2021-10-01,"Electric Power Consumption","Arkansas","AR",13756 +2021-10-01,"Electric Power Consumption","Massachusetts","MA",8591 +2021-10-01,"Electric Power Consumption","West Virginia","WV",2458 +2021-10-01,"Electric Power Consumption","Maine","ME",2034 +2021-10-01,"Electric Power Consumption","California","CA",55563 +2021-10-01,"Electric Power Consumption","Alabama","AL",31371 +2021-10-01,"Industrial Consumption","Hawaii","HI",8 +2021-10-01,"Industrial Consumption","New Mexico","NM",1430 +2021-10-01,"Industrial Consumption","California","CA",62102 +2021-10-01,"Industrial Consumption","Vermont","VT",147 +2021-10-01,"Industrial Consumption","Minnesota","MN",11740 +2021-10-01,"Industrial Consumption","Indiana","IN",29050 +2021-10-01,"Industrial Consumption","Delaware","DE",2127 +2021-10-01,"Industrial Consumption","Colorado","CO",7116 +2021-10-01,"Industrial Consumption","Washington","WA",6955 +2021-10-01,"Industrial Consumption","Utah","UT",3127 +2021-10-01,"Industrial Consumption","U.S.","U.S.",677443 +2021-10-01,"Industrial Consumption","Pennsylvania","PA",19265 +2021-10-01,"Industrial Consumption","West Virginia","WV",3096 +2021-10-01,"Industrial Consumption","Wyoming","WY",4067 +2021-10-01,"Industrial Consumption","New Jersey","NJ",4926 +2021-10-01,"Industrial Consumption","Idaho","ID",3384 +2021-10-01,"Industrial Consumption","Iowa","IA",17634 +2021-10-01,"Industrial Consumption","North Carolina","NC",9730 +2021-10-01,"Industrial Consumption","North Dakota","ND",2917 +2021-10-01,"Industrial Consumption","Ohio","OH",22958 +2021-10-01,"Industrial Consumption","New York","NY",6562 +2021-10-01,"Industrial Consumption","Kentucky","KY",9617 +2021-10-01,"Industrial Consumption","Oregon","OR",5012 +2021-10-01,"Industrial Consumption","Maine","ME",1684 +2021-10-01,"Industrial Consumption","Alabama","AL",19619 +2021-10-01,"Industrial Consumption","Nebraska","NE",8730 +2021-10-01,"Industrial Consumption","Florida","FL",10749 +2021-10-01,"Industrial Consumption","Michigan","MI",11489 +2021-10-01,"Industrial Consumption","Massachusetts","MA",3017 +2021-10-01,"Industrial Consumption","Kansas","KS",10471 +2021-10-01,"Industrial Consumption","Illinois","IL",20147 +2021-10-01,"Industrial Consumption","Missouri","MO",5265 +2021-10-01,"Industrial Consumption","Arizona","AZ",1521 +2021-10-01,"Industrial Consumption","Mississippi","MS",10713 +2021-10-01,"Industrial Consumption","South Carolina","SC",8244 +2021-10-01,"Industrial Consumption","Tennessee","TN",11527 +2021-10-01,"Industrial Consumption","New Hampshire","NH",675 +2021-10-01,"Industrial Consumption","Connecticut","CT",1599 +2021-10-01,"Industrial Consumption","Rhode Island","RI",640 +2021-10-01,"Industrial Consumption","Georgia","GA",13039 +2021-10-01,"Industrial Consumption","Montana","MT",2134 +2021-10-01,"Industrial Consumption","Maryland","MD",1300 +2021-10-01,"Industrial Consumption","Oklahoma","OK",18350 +2021-10-01,"Industrial Consumption","Arkansas","AR",8775 +2021-10-01,"Industrial Consumption","Virginia","VA",8054 +2021-10-01,"Industrial Consumption","Louisiana","LA",91587 +2021-10-01,"Industrial Consumption","South Dakota","SD",3781 +2021-10-01,"Industrial Consumption","Nevada","NV",1523 +2021-10-01,"Industrial Consumption","Texas","TX",158050 +2021-10-01,"Industrial Consumption","Wisconsin","WI",11150 +2021-10-01,"Industrial Consumption","District of Columbia","DC",NA +2021-10-01,"Industrial Consumption","Alaska","AK",640 +2021-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",165293 +2021-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",82362 +2021-10-01,"Residential Consumption","North Dakota","ND",598 +2021-10-01,"Residential Consumption","New Hampshire","NH",322 +2021-10-01,"Residential Consumption","Kansas","KS",2418 +2021-10-01,"Residential Consumption","Oklahoma","OK",2042 +2021-10-01,"Residential Consumption","West Virginia","WV",830 +2021-10-01,"Residential Consumption","U.S.","U.S.",192653 +2021-10-01,"Residential Consumption","Texas","TX",7965 +2021-10-01,"Residential Consumption","Hawaii","HI",48 +2021-10-01,"Residential Consumption","Maryland","MD",2138 +2021-10-01,"Residential Consumption","Georgia","GA",6289 +2021-10-01,"Residential Consumption","New Mexico","NM",1554 +2021-10-01,"Residential Consumption","Florida","FL",1027 +2021-10-01,"Residential Consumption","New Jersey","NJ",7048 +2021-10-01,"Residential Consumption","Kentucky","KY",1659 +2021-10-01,"Residential Consumption","Wyoming","WY",373 +2021-10-01,"Residential Consumption","New York","NY",15564 +2021-10-01,"Residential Consumption","Louisiana","LA",1769 +2021-10-01,"Residential Consumption","Connecticut","CT",1790 +2021-10-01,"Residential Consumption","Tennessee","TN",1950 +2021-10-01,"Residential Consumption","Utah","UT",3193 +2021-10-01,"Residential Consumption","District of Columbia","DC",331 +2021-10-01,"Residential Consumption","Missouri","MO",3435 +2021-10-01,"Residential Consumption","California","CA",24750 +2021-10-01,"Residential Consumption","North Carolina","NC",2108 +2021-10-01,"Residential Consumption","Vermont","VT",132 +2021-10-01,"Residential Consumption","Maine","ME",124 +2021-10-01,"Residential Consumption","Oregon","OR",3467 +2021-10-01,"Residential Consumption","Mississippi","MS",781 +2021-10-01,"Residential Consumption","Wisconsin","WI",5295 +2021-10-01,"Residential Consumption","Virginia","VA",2489 +2021-10-01,"Residential Consumption","South Dakota","SD",505 +2021-10-01,"Residential Consumption","Nevada","NV",2323 +2021-10-01,"Residential Consumption","Pennsylvania","PA",7046 +2021-10-01,"Residential Consumption","Arkansas","AR",799 +2021-10-01,"Residential Consumption","Delaware","DE",240 +2021-10-01,"Residential Consumption","Alaska","AK",1749 +2021-10-01,"Residential Consumption","Indiana","IN",5065 +2021-10-01,"Residential Consumption","Massachusetts","MA",4869 +2021-10-01,"Residential Consumption","Idaho","ID",1968 +2021-10-01,"Residential Consumption","Alabama","AL",1115 +2021-10-01,"Residential Consumption","Illinois","IL",13824 +2021-10-01,"Residential Consumption","South Carolina","SC",1031 +2021-10-01,"Residential Consumption","Nebraska","NE",937 +2021-10-01,"Residential Consumption","Washington","WA",6979 +2021-10-01,"Residential Consumption","Arizona","AZ",1841 +2021-10-01,"Residential Consumption","Rhode Island","RI",724 +2021-10-01,"Residential Consumption","Ohio","OH",10181 +2021-10-01,"Residential Consumption","Iowa","IA",2322 +2021-10-01,"Residential Consumption","Michigan","MI",13355 +2021-10-01,"Residential Consumption","Minnesota","MN",5303 +2021-10-01,"Residential Consumption","Montana","MT",1261 +2021-10-01,"Residential Consumption","Colorado","CO",7726 +2021-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-10-01,"Vehicle Fuel Consumption","Washington","WA",12 +2021-10-01,"Vehicle Fuel Consumption","Virginia","VA",57 +2021-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-10-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-10-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-10-01,"Vehicle Fuel Consumption","Colorado","CO",150 +2021-10-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",4627 +2021-10-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2021-10-01,"Vehicle Fuel Consumption","Utah","UT",25 +2021-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2021-10-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-10-01,"Vehicle Fuel Consumption","Florida","FL",477 +2021-10-01,"Vehicle Fuel Consumption","Nebraska","NE",35 +2021-10-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2021-10-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2021-10-01,"Vehicle Fuel Consumption","Indiana","IN",164 +2021-10-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-10-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-10-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-10-01,"Vehicle Fuel Consumption","Arizona","AZ",176 +2021-10-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-10-01,"Vehicle Fuel Consumption","Georgia","GA",129 +2021-10-01,"Vehicle Fuel Consumption","New York","NY",96 +2021-10-01,"Vehicle Fuel Consumption","Kansas","KS",78 +2021-10-01,"Vehicle Fuel Consumption","Missouri","MO",19 +2021-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-10-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2021-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",145 +2021-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",38 +2021-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-10-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-10-01,"Vehicle Fuel Consumption","North Carolina","NC",135 +2021-10-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-10-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-10-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2021-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-10-01,"Vehicle Fuel Consumption","Texas","TX",80 +2021-10-01,"Vehicle Fuel Consumption","Minnesota","MN",47 +2021-10-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-10-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-10-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2021-10-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2021-10-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2021-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-10-01,"Vehicle Fuel Consumption","California","CA",2161 +2021-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-11-01,"Commercial Consumption","Virginia","VA",8397 +2021-11-01,"Commercial Consumption","Missouri","MO",6245 +2021-11-01,"Commercial Consumption","Wisconsin","WI",11655 +2021-11-01,"Commercial Consumption","South Dakota","SD",1127 +2021-11-01,"Commercial Consumption","Texas","TX",15379 +2021-11-01,"Commercial Consumption","Mississippi","MS",1729 +2021-11-01,"Commercial Consumption","Tennessee","TN",5816 +2021-11-01,"Commercial Consumption","Wyoming","WY",1300 +2021-11-01,"Commercial Consumption","West Virginia","WV",2481 +2021-11-01,"Commercial Consumption","New Mexico","NM",2968 +2021-11-01,"Commercial Consumption","Pennsylvania","PA",18964 +2021-11-01,"Commercial Consumption","Kentucky","KY",4131 +2021-11-01,"Commercial Consumption","Florida","FL",5524 +2021-11-01,"Commercial Consumption","Idaho","ID",2088 +2021-11-01,"Commercial Consumption","California","CA",22436 +2021-11-01,"Commercial Consumption","Arkansas","AR",5211 +2021-11-01,"Commercial Consumption","Michigan","MI",17077 +2021-11-01,"Commercial Consumption","District of Columbia","DC",1826 +2021-11-01,"Commercial Consumption","South Carolina","SC",2902 +2021-11-01,"Commercial Consumption","North Carolina","NC",6853 +2021-11-01,"Commercial Consumption","Montana","MT",2371 +2021-11-01,"Commercial Consumption","Maine","ME",925 +2021-11-01,"Commercial Consumption","Vermont","VT",807 +2021-11-01,"Commercial Consumption","Iowa","IA",4994 +2021-11-01,"Commercial Consumption","Connecticut","CT",5080 +2021-11-01,"Commercial Consumption","Nevada","NV",2637 +2021-11-01,"Commercial Consumption","Georgia","GA",6249 +2021-11-01,"Commercial Consumption","New York","NY",30936 +2021-11-01,"Commercial Consumption","Arizona","AZ",2691 +2021-11-01,"Commercial Consumption","Illinois","IL",20234 +2021-11-01,"Commercial Consumption","Oklahoma","OK",3962 +2021-11-01,"Commercial Consumption","Maryland","MD",8154 +2021-11-01,"Commercial Consumption","Kansas","KS",3927 +2021-11-01,"Commercial Consumption","Rhode Island","RI",1242 +2021-11-01,"Commercial Consumption","Alaska","AK",2136 +2021-11-01,"Commercial Consumption","Delaware","DE",1786 +2021-11-01,"Commercial Consumption","Utah","UT",4667 +2021-11-01,"Commercial Consumption","Oregon","OR",3023 +2021-11-01,"Commercial Consumption","Massachusetts","MA",10744 +2021-11-01,"Commercial Consumption","New Jersey","NJ",14056 +2021-11-01,"Commercial Consumption","Hawaii","HI",175 +2021-11-01,"Commercial Consumption","Nebraska","NE",2945 +2021-11-01,"Commercial Consumption","North Dakota","ND",1607 +2021-11-01,"Commercial Consumption","Colorado","CO",5685 +2021-11-01,"Commercial Consumption","Washington","WA",6060 +2021-11-01,"Commercial Consumption","Minnesota","MN",10444 +2021-11-01,"Commercial Consumption","New Hampshire","NH",689 +2021-11-01,"Commercial Consumption","U.S.","U.S.",337736 +2021-11-01,"Commercial Consumption","Ohio","OH",18910 +2021-11-01,"Commercial Consumption","Alabama","AL",2517 +2021-11-01,"Commercial Consumption","Indiana","IN",10875 +2021-11-01,"Commercial Consumption","Louisiana","LA",3101 +2021-11-01,"Delivered to Consumers","U.S.","U.S.",2432387 +2021-11-01,"Delivered to Consumers","Delaware","DE",8195 +2021-11-01,"Delivered to Consumers","Ohio","OH",114607 +2021-11-01,"Delivered to Consumers","Alabama","AL",57134 +2021-11-01,"Delivered to Consumers","Maine","ME",4894 +2021-11-01,"Delivered to Consumers","Louisiana","LA",128555 +2021-11-01,"Delivered to Consumers","New Hampshire","NH",3557 +2021-11-01,"Delivered to Consumers","District of Columbia","DC",3233 +2021-11-01,"Delivered to Consumers","Utah","UT",21576 +2021-11-01,"Delivered to Consumers","Hawaii","HI",232 +2021-11-01,"Delivered to Consumers","Oklahoma","OK",41888 +2021-11-01,"Delivered to Consumers","Kansas","KS",22802 +2021-11-01,"Delivered to Consumers","Virginia","VA",55083 +2021-11-01,"Delivered to Consumers","Nevada","NV",20341 +2021-11-01,"Delivered to Consumers","Arizona","AZ",28173 +2021-11-01,"Delivered to Consumers","Florida","FL",110629 +2021-11-01,"Delivered to Consumers","Wyoming","WY",7711 +2021-11-01,"Delivered to Consumers","Maryland","MD",28888 +2021-11-01,"Delivered to Consumers","Alaska","AK",9540 +2021-11-01,"Delivered to Consumers","Idaho","ID",12245 +2021-11-01,"Delivered to Consumers","Kentucky","KY",31978 +2021-11-01,"Delivered to Consumers","Georgia","GA",74766 +2021-11-01,"Delivered to Consumers","West Virginia","WV",11096 +2021-11-01,"Delivered to Consumers","South Dakota","SD",7895 +2021-11-01,"Delivered to Consumers","Connecticut","CT",28627 +2021-11-01,"Delivered to Consumers","Wisconsin","WI",53236 +2021-11-01,"Delivered to Consumers","North Carolina","NC",65356 +2021-11-01,"Delivered to Consumers","North Dakota","ND",6768 +2021-11-01,"Delivered to Consumers","Rhode Island","RI",8734 +2021-11-01,"Delivered to Consumers","Tennessee","TN",33135 +2021-11-01,"Delivered to Consumers","Texas","TX",303920 +2021-11-01,"Delivered to Consumers","Pennsylvania","PA",134752 +2021-11-01,"Delivered to Consumers","Mississippi","MS",40823 +2021-11-01,"Delivered to Consumers","Colorado","CO",35751 +2021-11-01,"Delivered to Consumers","Minnesota","MN",47753 +2021-11-01,"Delivered to Consumers","New Mexico","NM",12670 +2021-11-01,"Delivered to Consumers","Indiana","IN",79084 +2021-11-01,"Delivered to Consumers","New York","NY",114890 +2021-11-01,"Delivered to Consumers","Montana","MT",7301 +2021-11-01,"Delivered to Consumers","Iowa","IA",36217 +2021-11-01,"Delivered to Consumers","Arkansas","AR",33714 +2021-11-01,"Delivered to Consumers","Missouri","MO",28208 +2021-11-01,"Delivered to Consumers","Massachusetts","MA",32946 +2021-11-01,"Delivered to Consumers","Oregon","OR",25809 +2021-11-01,"Delivered to Consumers","Washington","WA",31227 +2021-11-01,"Delivered to Consumers","Vermont","VT",1329 +2021-11-01,"Delivered to Consumers","Illinois","IL",105072 +2021-11-01,"Delivered to Consumers","Michigan","MI",90524 +2021-11-01,"Delivered to Consumers","Nebraska","NE",15872 +2021-11-01,"Delivered to Consumers","California","CA",163603 +2021-11-01,"Delivered to Consumers","South Carolina","SC",30928 +2021-11-01,"Delivered to Consumers","New Jersey","NJ",59120 +2021-11-01,"Electric Power Consumption","New York","NY",35306 +2021-11-01,"Electric Power Consumption","Kansas","KS",1455 +2021-11-01,"Electric Power Consumption","South Dakota","SD",1229 +2021-11-01,"Electric Power Consumption","Nebraska","NE",1305 +2021-11-01,"Electric Power Consumption","Missouri","MO",4824 +2021-11-01,"Electric Power Consumption","Ohio","OH",34854 +2021-11-01,"Electric Power Consumption","Connecticut","CT",16479 +2021-11-01,"Electric Power Consumption","Washington","WA",8693 +2021-11-01,"Electric Power Consumption","Utah","UT",6253 +2021-11-01,"Electric Power Consumption","Illinois","IL",19604 +2021-11-01,"Electric Power Consumption","Hawaii","HI",NA +2021-11-01,"Electric Power Consumption","New Jersey","NJ",19485 +2021-11-01,"Electric Power Consumption","Texas","TX",108138 +2021-11-01,"Electric Power Consumption","Oregon","OR",12777 +2021-11-01,"Electric Power Consumption","Michigan","MI",21333 +2021-11-01,"Electric Power Consumption","Wyoming","WY",535 +2021-11-01,"Electric Power Consumption","California","CA",50309 +2021-11-01,"Electric Power Consumption","Alaska","AK",2152 +2021-11-01,"Electric Power Consumption","New Mexico","NM",5221 +2021-11-01,"Electric Power Consumption","Louisiana","LA",25590 +2021-11-01,"Electric Power Consumption","Oklahoma","OK",14041 +2021-11-01,"Electric Power Consumption","Minnesota","MN",8753 +2021-11-01,"Electric Power Consumption","West Virginia","WV",2503 +2021-11-01,"Electric Power Consumption","Pennsylvania","PA",68570 +2021-11-01,"Electric Power Consumption","Nevada","NV",13072 +2021-11-01,"Electric Power Consumption","U.S.","U.S.",882127 +2021-11-01,"Electric Power Consumption","Idaho","ID",3069 +2021-11-01,"Electric Power Consumption","South Carolina","SC",15027 +2021-11-01,"Electric Power Consumption","Iowa","IA",4029 +2021-11-01,"Electric Power Consumption","Tennessee","TN",6414 +2021-11-01,"Electric Power Consumption","Maine","ME",1728 +2021-11-01,"Electric Power Consumption","Maryland","MD",9930 +2021-11-01,"Electric Power Consumption","Virginia","VA",29273 +2021-11-01,"Electric Power Consumption","Colorado","CO",8455 +2021-11-01,"Electric Power Consumption","Massachusetts","MA",6655 +2021-11-01,"Electric Power Consumption","North Dakota","ND",1151 +2021-11-01,"Electric Power Consumption","Montana","MT",373 +2021-11-01,"Electric Power Consumption","Indiana","IN",18068 +2021-11-01,"Electric Power Consumption","Delaware","DE",2180 +2021-11-01,"Electric Power Consumption","Arkansas","AR",16458 +2021-11-01,"Electric Power Consumption","Rhode Island","RI",4680 +2021-11-01,"Electric Power Consumption","Vermont","VT",0 +2021-11-01,"Electric Power Consumption","North Carolina","NC",37961 +2021-11-01,"Electric Power Consumption","Mississippi","MS",26317 +2021-11-01,"Electric Power Consumption","Wisconsin","WI",12573 +2021-11-01,"Electric Power Consumption","Kentucky","KY",10082 +2021-11-01,"Electric Power Consumption","New Hampshire","NH",1636 +2021-11-01,"Electric Power Consumption","Arizona","AZ",20954 +2021-11-01,"Electric Power Consumption","Georgia","GA",37290 +2021-11-01,"Electric Power Consumption","Florida","FL",92111 +2021-11-01,"Electric Power Consumption","Alabama","AL",33233 +2021-11-01,"Industrial Consumption","Nevada","NV",1404 +2021-11-01,"Industrial Consumption","Maine","ME",1948 +2021-11-01,"Industrial Consumption","Arkansas","AR",8963 +2021-11-01,"Industrial Consumption","West Virginia","WV",3299 +2021-11-01,"Industrial Consumption","Florida","FL",11010 +2021-11-01,"Industrial Consumption","Michigan","MI",14791 +2021-11-01,"Industrial Consumption","Rhode Island","RI",657 +2021-11-01,"Industrial Consumption","North Carolina","NC",10998 +2021-11-01,"Industrial Consumption","Alaska","AK",2273 +2021-11-01,"Industrial Consumption","Montana","MT",2175 +2021-11-01,"Industrial Consumption","Utah","UT",3254 +2021-11-01,"Industrial Consumption","Wisconsin","WI",13618 +2021-11-01,"Industrial Consumption","Iowa","IA",20869 +2021-11-01,"Industrial Consumption","California","CA",53948 +2021-11-01,"Industrial Consumption","South Carolina","SC",8883 +2021-11-01,"Industrial Consumption","Illinois","IL",23628 +2021-11-01,"Industrial Consumption","Maryland","MD",1524 +2021-11-01,"Industrial Consumption","Louisiana","LA",96755 +2021-11-01,"Industrial Consumption","Oregon","OR",5044 +2021-11-01,"Industrial Consumption","Minnesota","MN",14438 +2021-11-01,"Industrial Consumption","Connecticut","CT",2278 +2021-11-01,"Industrial Consumption","North Dakota","ND",2752 +2021-11-01,"Industrial Consumption","Massachusetts","MA",3549 +2021-11-01,"Industrial Consumption","South Dakota","SD",4386 +2021-11-01,"Industrial Consumption","U.S.","U.S.",725955 +2021-11-01,"Industrial Consumption","Pennsylvania","PA",21790 +2021-11-01,"Industrial Consumption","New York","NY",7830 +2021-11-01,"Industrial Consumption","Alabama","AL",19083 +2021-11-01,"Industrial Consumption","Nebraska","NE",8251 +2021-11-01,"Industrial Consumption","Virginia","VA",7677 +2021-11-01,"Industrial Consumption","Wyoming","WY",4506 +2021-11-01,"Industrial Consumption","Tennessee","TN",13973 +2021-11-01,"Industrial Consumption","Oklahoma","OK",17675 +2021-11-01,"Industrial Consumption","Missouri","MO",5754 +2021-11-01,"Industrial Consumption","Colorado","CO",8146 +2021-11-01,"Industrial Consumption","Kansas","KS",11456 +2021-11-01,"Industrial Consumption","Arizona","AZ",1718 +2021-11-01,"Industrial Consumption","Vermont","VT",177 +2021-11-01,"Industrial Consumption","Idaho","ID",3489 +2021-11-01,"Industrial Consumption","Kentucky","KY",11805 +2021-11-01,"Industrial Consumption","District of Columbia","DC",NA +2021-11-01,"Industrial Consumption","Hawaii","HI",9 +2021-11-01,"Industrial Consumption","Washington","WA",6772 +2021-11-01,"Industrial Consumption","Texas","TX",164190 +2021-11-01,"Industrial Consumption","New Jersey","NJ",5293 +2021-11-01,"Industrial Consumption","Indiana","IN",33172 +2021-11-01,"Industrial Consumption","Delaware","DE",3065 +2021-11-01,"Industrial Consumption","Georgia","GA",15191 +2021-11-01,"Industrial Consumption","Ohio","OH",29636 +2021-11-01,"Industrial Consumption","New Mexico","NM",1344 +2021-11-01,"Industrial Consumption","Mississippi","MS",10778 +2021-11-01,"Industrial Consumption","New Hampshire","NH",728 +2021-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",161450 +2021-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",99425 +2021-11-01,"Residential Consumption","Iowa","IA",6322 +2021-11-01,"Residential Consumption","Virginia","VA",9680 +2021-11-01,"Residential Consumption","New Jersey","NJ",20249 +2021-11-01,"Residential Consumption","Kentucky","KY",5960 +2021-11-01,"Residential Consumption","Colorado","CO",13320 +2021-11-01,"Residential Consumption","Delaware","DE",1164 +2021-11-01,"Residential Consumption","Illinois","IL",41600 +2021-11-01,"Residential Consumption","Nebraska","NE",3337 +2021-11-01,"Residential Consumption","Michigan","MI",37323 +2021-11-01,"Residential Consumption","Massachusetts","MA",11992 +2021-11-01,"Residential Consumption","Arizona","AZ",2639 +2021-11-01,"Residential Consumption","Wyoming","WY",1369 +2021-11-01,"Residential Consumption","South Carolina","SC",4108 +2021-11-01,"Residential Consumption","Hawaii","HI",48 +2021-11-01,"Residential Consumption","Utah","UT",7379 +2021-11-01,"Residential Consumption","Minnesota","MN",14074 +2021-11-01,"Residential Consumption","Georgia","GA",15911 +2021-11-01,"Residential Consumption","District of Columbia","DC",1385 +2021-11-01,"Residential Consumption","Pennsylvania","PA",25287 +2021-11-01,"Residential Consumption","California","CA",34818 +2021-11-01,"Residential Consumption","New York","NY",40725 +2021-11-01,"Residential Consumption","Rhode Island","RI",2146 +2021-11-01,"Residential Consumption","North Carolina","NC",9413 +2021-11-01,"Residential Consumption","Louisiana","LA",3079 +2021-11-01,"Residential Consumption","Connecticut","CT",4772 +2021-11-01,"Residential Consumption","New Mexico","NM",3104 +2021-11-01,"Residential Consumption","North Dakota","ND",1258 +2021-11-01,"Residential Consumption","Idaho","ID",3593 +2021-11-01,"Residential Consumption","Kansas","KS",5888 +2021-11-01,"Residential Consumption","Oklahoma","OK",6066 +2021-11-01,"Residential Consumption","Alabama","AL",2295 +2021-11-01,"Residential Consumption","Ohio","OH",31116 +2021-11-01,"Residential Consumption","Vermont","VT",343 +2021-11-01,"Residential Consumption","Maryland","MD",9256 +2021-11-01,"Residential Consumption","South Dakota","SD",1152 +2021-11-01,"Residential Consumption","Indiana","IN",16811 +2021-11-01,"Residential Consumption","Arkansas","AR",3075 +2021-11-01,"Residential Consumption","Oregon","OR",4961 +2021-11-01,"Residential Consumption","Tennessee","TN",6901 +2021-11-01,"Residential Consumption","Nevada","NV",3133 +2021-11-01,"Residential Consumption","Maine","ME",293 +2021-11-01,"Residential Consumption","New Hampshire","NH",502 +2021-11-01,"Residential Consumption","Montana","MT",2382 +2021-11-01,"Residential Consumption","U.S.","U.S.",482091 +2021-11-01,"Residential Consumption","Texas","TX",16137 +2021-11-01,"Residential Consumption","Mississippi","MS",1999 +2021-11-01,"Residential Consumption","Wisconsin","WI",15352 +2021-11-01,"Residential Consumption","Florida","FL",1522 +2021-11-01,"Residential Consumption","Washington","WA",9691 +2021-11-01,"Residential Consumption","Missouri","MO",11367 +2021-11-01,"Residential Consumption","Alaska","AK",2979 +2021-11-01,"Residential Consumption","West Virginia","WV",2811 +2021-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-11-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2021-11-01,"Vehicle Fuel Consumption","Ohio","OH",91 +2021-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2021-11-01,"Vehicle Fuel Consumption","Arizona","AZ",170 +2021-11-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2021-11-01,"Vehicle Fuel Consumption","Connecticut","CT",16 +2021-11-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-11-01,"Vehicle Fuel Consumption","Washington","WA",11 +2021-11-01,"Vehicle Fuel Consumption","Utah","UT",24 +2021-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",140 +2021-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-11-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2021-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-11-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2021-11-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-11-01,"Vehicle Fuel Consumption","Virginia","VA",55 +2021-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-11-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2021-11-01,"Vehicle Fuel Consumption","Texas","TX",77 +2021-11-01,"Vehicle Fuel Consumption","North Carolina","NC",131 +2021-11-01,"Vehicle Fuel Consumption","Minnesota","MN",45 +2021-11-01,"Vehicle Fuel Consumption","New York","NY",93 +2021-11-01,"Vehicle Fuel Consumption","Georgia","GA",125 +2021-11-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2021-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2021-11-01,"Vehicle Fuel Consumption","Indiana","IN",159 +2021-11-01,"Vehicle Fuel Consumption","Colorado","CO",145 +2021-11-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-11-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-11-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-11-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2021-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2021-11-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-11-01,"Vehicle Fuel Consumption","California","CA",2092 +2021-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-11-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2021-11-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-11-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-11-01,"Vehicle Fuel Consumption","Florida","FL",462 +2021-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-11-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-11-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-11-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",4478 +2021-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",144 +2021-11-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-11-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-11-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-12-01,"Commercial Consumption","Wyoming","WY",1787 +2021-12-01,"Commercial Consumption","New Mexico","NM",3050 +2021-12-01,"Commercial Consumption","Maine","ME",1326 +2021-12-01,"Commercial Consumption","New York","NY",36239 +2021-12-01,"Commercial Consumption","Nebraska","NE",4125 +2021-12-01,"Commercial Consumption","Delaware","DE",1745 +2021-12-01,"Commercial Consumption","District of Columbia","DC",1630 +2021-12-01,"Commercial Consumption","North Dakota","ND",1847 +2021-12-01,"Commercial Consumption","Texas","TX",16482 +2021-12-01,"Commercial Consumption","Georgia","GA",5983 +2021-12-01,"Commercial Consumption","Alaska","AK",2239 +2021-12-01,"Commercial Consumption","Arizona","AZ",3364 +2021-12-01,"Commercial Consumption","Washington","WA",8605 +2021-12-01,"Commercial Consumption","North Carolina","NC",5314 +2021-12-01,"Commercial Consumption","Montana","MT",2938 +2021-12-01,"Commercial Consumption","Florida","FL",5877 +2021-12-01,"Commercial Consumption","Rhode Island","RI",1639 +2021-12-01,"Commercial Consumption","South Carolina","SC",2119 +2021-12-01,"Commercial Consumption","Utah","UT",6759 +2021-12-01,"Commercial Consumption","U.S.","U.S.",401722 +2021-12-01,"Commercial Consumption","Vermont","VT",906 +2021-12-01,"Commercial Consumption","Iowa","IA",6602 +2021-12-01,"Commercial Consumption","Hawaii","HI",185 +2021-12-01,"Commercial Consumption","Minnesota","MN",14943 +2021-12-01,"Commercial Consumption","Oklahoma","OK",4708 +2021-12-01,"Commercial Consumption","Virginia","VA",8244 +2021-12-01,"Commercial Consumption","Pennsylvania","PA",22490 +2021-12-01,"Commercial Consumption","New Jersey","NJ",18564 +2021-12-01,"Commercial Consumption","New Hampshire","NH",1481 +2021-12-01,"Commercial Consumption","Kentucky","KY",4007 +2021-12-01,"Commercial Consumption","Maryland","MD",7613 +2021-12-01,"Commercial Consumption","Tennessee","TN",5841 +2021-12-01,"Commercial Consumption","Oregon","OR",4720 +2021-12-01,"Commercial Consumption","Massachusetts","MA",13335 +2021-12-01,"Commercial Consumption","Kansas","KS",4773 +2021-12-01,"Commercial Consumption","Idaho","ID",3045 +2021-12-01,"Commercial Consumption","Connecticut","CT",7014 +2021-12-01,"Commercial Consumption","California","CA",28692 +2021-12-01,"Commercial Consumption","Alabama","AL",2641 +2021-12-01,"Commercial Consumption","Mississippi","MS",1795 +2021-12-01,"Commercial Consumption","Illinois","IL",28402 +2021-12-01,"Commercial Consumption","Colorado","CO",8788 +2021-12-01,"Commercial Consumption","Wisconsin","WI",13094 +2021-12-01,"Commercial Consumption","Ohio","OH",20873 +2021-12-01,"Commercial Consumption","Michigan","MI",21669 +2021-12-01,"Commercial Consumption","Indiana","IN",11463 +2021-12-01,"Commercial Consumption","West Virginia","WV",2587 +2021-12-01,"Commercial Consumption","Missouri","MO",7132 +2021-12-01,"Commercial Consumption","South Dakota","SD",1560 +2021-12-01,"Commercial Consumption","Arkansas","AR",5211 +2021-12-01,"Commercial Consumption","Nevada","NV",3674 +2021-12-01,"Commercial Consumption","Louisiana","LA",2598 +2021-12-01,"Delivered to Consumers","New York","NY",141645 +2021-12-01,"Delivered to Consumers","Arkansas","AR",32104 +2021-12-01,"Delivered to Consumers","New Jersey","NJ",72342 +2021-12-01,"Delivered to Consumers","Arizona","AZ",34909 +2021-12-01,"Delivered to Consumers","Indiana","IN",83628 +2021-12-01,"Delivered to Consumers","Vermont","VT",1619 +2021-12-01,"Delivered to Consumers","South Dakota","SD",8688 +2021-12-01,"Delivered to Consumers","Connecticut","CT",30160 +2021-12-01,"Delivered to Consumers","Massachusetts","MA",44677 +2021-12-01,"Delivered to Consumers","Colorado","CO",47176 +2021-12-01,"Delivered to Consumers","Washington","WA",41671 +2021-12-01,"Delivered to Consumers","West Virginia","WV",10247 +2021-12-01,"Delivered to Consumers","Michigan","MI",100201 +2021-12-01,"Delivered to Consumers","Iowa","IA",40023 +2021-12-01,"Delivered to Consumers","Wisconsin","WI",61459 +2021-12-01,"Delivered to Consumers","Louisiana","LA",129210 +2021-12-01,"Delivered to Consumers","District of Columbia","DC",3218 +2021-12-01,"Delivered to Consumers","Maryland","MD",26829 +2021-12-01,"Delivered to Consumers","Alaska","AK",9847 +2021-12-01,"Delivered to Consumers","Ohio","OH",123508 +2021-12-01,"Delivered to Consumers","Nebraska","NE",18517 +2021-12-01,"Delivered to Consumers","South Carolina","SC",33113 +2021-12-01,"Delivered to Consumers","Nevada","NV",25994 +2021-12-01,"Delivered to Consumers","Florida","FL",115123 +2021-12-01,"Delivered to Consumers","Illinois","IL",125397 +2021-12-01,"Delivered to Consumers","Rhode Island","RI",9740 +2021-12-01,"Delivered to Consumers","Montana","MT",8648 +2021-12-01,"Delivered to Consumers","Alabama","AL",58677 +2021-12-01,"Delivered to Consumers","Pennsylvania","PA",158368 +2021-12-01,"Delivered to Consumers","North Carolina","NC",61132 +2021-12-01,"Delivered to Consumers","Mississippi","MS",42777 +2021-12-01,"Delivered to Consumers","Oregon","OR",30501 +2021-12-01,"Delivered to Consumers","Maine","ME",5050 +2021-12-01,"Delivered to Consumers","Utah","UT",29574 +2021-12-01,"Delivered to Consumers","Hawaii","HI",245 +2021-12-01,"Delivered to Consumers","Kansas","KS",26699 +2021-12-01,"Delivered to Consumers","Delaware","DE",9539 +2021-12-01,"Delivered to Consumers","Wyoming","WY",8706 +2021-12-01,"Delivered to Consumers","Virginia","VA",64827 +2021-12-01,"Delivered to Consumers","Texas","TX",320232 +2021-12-01,"Delivered to Consumers","Georgia","GA",72789 +2021-12-01,"Delivered to Consumers","New Hampshire","NH",4931 +2021-12-01,"Delivered to Consumers","U.S.","U.S.",2728530 +2021-12-01,"Delivered to Consumers","New Mexico","NM",14807 +2021-12-01,"Delivered to Consumers","Oklahoma","OK",45448 +2021-12-01,"Delivered to Consumers","Idaho","ID",15305 +2021-12-01,"Delivered to Consumers","Tennessee","TN",35285 +2021-12-01,"Delivered to Consumers","Kentucky","KY",30402 +2021-12-01,"Delivered to Consumers","Missouri","MO",30736 +2021-12-01,"Delivered to Consumers","California","CA",213480 +2021-12-01,"Delivered to Consumers","North Dakota","ND",7939 +2021-12-01,"Delivered to Consumers","Minnesota","MN",61386 +2021-12-01,"Electric Power Consumption","New Mexico","NM",5073 +2021-12-01,"Electric Power Consumption","Texas","TX",111745 +2021-12-01,"Electric Power Consumption","Oklahoma","OK",14234 +2021-12-01,"Electric Power Consumption","South Dakota","SD",665 +2021-12-01,"Electric Power Consumption","Missouri","MO",4018 +2021-12-01,"Electric Power Consumption","New York","NY",35059 +2021-12-01,"Electric Power Consumption","Michigan","MI",18799 +2021-12-01,"Electric Power Consumption","Kansas","KS",1404 +2021-12-01,"Electric Power Consumption","Tennessee","TN",6220 +2021-12-01,"Electric Power Consumption","Maine","ME",1150 +2021-12-01,"Electric Power Consumption","New Hampshire","NH",1447 +2021-12-01,"Electric Power Consumption","North Carolina","NC",34822 +2021-12-01,"Electric Power Consumption","Arizona","AZ",24825 +2021-12-01,"Electric Power Consumption","Alabama","AL",32809 +2021-12-01,"Electric Power Consumption","Nevada","NV",14330 +2021-12-01,"Electric Power Consumption","Nebraska","NE",664 +2021-12-01,"Electric Power Consumption","Mississippi","MS",27644 +2021-12-01,"Electric Power Consumption","Hawaii","HI",NA +2021-12-01,"Electric Power Consumption","California","CA",52669 +2021-12-01,"Electric Power Consumption","Alaska","AK",1846 +2021-12-01,"Electric Power Consumption","Idaho","ID",2829 +2021-12-01,"Electric Power Consumption","South Carolina","SC",17442 +2021-12-01,"Electric Power Consumption","Illinois","IL",16465 +2021-12-01,"Electric Power Consumption","Florida","FL",96375 +2021-12-01,"Electric Power Consumption","Washington","WA",9241 +2021-12-01,"Electric Power Consumption","Virginia","VA",32255 +2021-12-01,"Electric Power Consumption","New Jersey","NJ",15380 +2021-12-01,"Electric Power Consumption","Rhode Island","RI",4626 +2021-12-01,"Electric Power Consumption","Wisconsin","WI",11772 +2021-12-01,"Electric Power Consumption","Pennsylvania","PA",78182 +2021-12-01,"Electric Power Consumption","Iowa","IA",3030 +2021-12-01,"Electric Power Consumption","Vermont","VT",1 +2021-12-01,"Electric Power Consumption","Maryland","MD",7582 +2021-12-01,"Electric Power Consumption","Indiana","IN",17980 +2021-12-01,"Electric Power Consumption","Colorado","CO",8051 +2021-12-01,"Electric Power Consumption","Arkansas","AR",14688 +2021-12-01,"Electric Power Consumption","Minnesota","MN",7175 +2021-12-01,"Electric Power Consumption","Massachusetts","MA",7914 +2021-12-01,"Electric Power Consumption","West Virginia","WV",1010 +2021-12-01,"Electric Power Consumption","U.S.","U.S.",885883 +2021-12-01,"Electric Power Consumption","Kentucky","KY",10187 +2021-12-01,"Electric Power Consumption","Ohio","OH",36683 +2021-12-01,"Electric Power Consumption","North Dakota","ND",1002 +2021-12-01,"Electric Power Consumption","Montana","MT",423 +2021-12-01,"Electric Power Consumption","Delaware","DE",2653 +2021-12-01,"Electric Power Consumption","Georgia","GA",37232 +2021-12-01,"Electric Power Consumption","Louisiana","LA",23093 +2021-12-01,"Electric Power Consumption","Utah","UT",6955 +2021-12-01,"Electric Power Consumption","Oregon","OR",11980 +2021-12-01,"Electric Power Consumption","Wyoming","WY",362 +2021-12-01,"Electric Power Consumption","Connecticut","CT",13892 +2021-12-01,"Industrial Consumption","New Mexico","NM",1504 +2021-12-01,"Industrial Consumption","Pennsylvania","PA",21960 +2021-12-01,"Industrial Consumption","South Carolina","SC",8908 +2021-12-01,"Industrial Consumption","New Jersey","NJ",5296 +2021-12-01,"Industrial Consumption","Idaho","ID",3927 +2021-12-01,"Industrial Consumption","Indiana","IN",35067 +2021-12-01,"Industrial Consumption","Alaska","AK",2741 +2021-12-01,"Industrial Consumption","Massachusetts","MA",5277 +2021-12-01,"Industrial Consumption","Arkansas","AR",9051 +2021-12-01,"Industrial Consumption","Minnesota","MN",17172 +2021-12-01,"Industrial Consumption","Iowa","IA",21071 +2021-12-01,"Industrial Consumption","Michigan","MI",16098 +2021-12-01,"Industrial Consumption","Hawaii","HI",8 +2021-12-01,"Industrial Consumption","Louisiana","LA",100835 +2021-12-01,"Industrial Consumption","South Dakota","SD",4648 +2021-12-01,"Industrial Consumption","Illinois","IL",25153 +2021-12-01,"Industrial Consumption","Missouri","MO",6276 +2021-12-01,"Industrial Consumption","Colorado","CO",9006 +2021-12-01,"Industrial Consumption","Utah","UT",3614 +2021-12-01,"Industrial Consumption","Oregon","OR",5759 +2021-12-01,"Industrial Consumption","Mississippi","MS",11188 +2021-12-01,"Industrial Consumption","Texas","TX",173687 +2021-12-01,"Industrial Consumption","Wyoming","WY",4602 +2021-12-01,"Industrial Consumption","Rhode Island","RI",772 +2021-12-01,"Industrial Consumption","District of Columbia","DC",NA +2021-12-01,"Industrial Consumption","U.S.","U.S.",766924 +2021-12-01,"Industrial Consumption","New York","NY",8124 +2021-12-01,"Industrial Consumption","Vermont","VT",185 +2021-12-01,"Industrial Consumption","New Hampshire","NH",803 +2021-12-01,"Industrial Consumption","Florida","FL",10326 +2021-12-01,"Industrial Consumption","Delaware","DE",3512 +2021-12-01,"Industrial Consumption","North Dakota","ND",3532 +2021-12-01,"Industrial Consumption","Montana","MT",2444 +2021-12-01,"Industrial Consumption","Oklahoma","OK",18581 +2021-12-01,"Industrial Consumption","Arizona","AZ",2011 +2021-12-01,"Industrial Consumption","Maine","ME",2112 +2021-12-01,"Industrial Consumption","Wisconsin","WI",16047 +2021-12-01,"Industrial Consumption","California","CA",58312 +2021-12-01,"Industrial Consumption","Alabama","AL",19025 +2021-12-01,"Industrial Consumption","West Virginia","WV",3470 +2021-12-01,"Industrial Consumption","Tennessee","TN",14509 +2021-12-01,"Industrial Consumption","Connecticut","CT",2165 +2021-12-01,"Industrial Consumption","Kentucky","KY",10497 +2021-12-01,"Industrial Consumption","Maryland","MD",1676 +2021-12-01,"Industrial Consumption","Washington","WA",7757 +2021-12-01,"Industrial Consumption","Ohio","OH",28011 +2021-12-01,"Industrial Consumption","Kansas","KS",12331 +2021-12-01,"Industrial Consumption","Nevada","NV",1608 +2021-12-01,"Industrial Consumption","Nebraska","NE",8394 +2021-12-01,"Industrial Consumption","Virginia","VA",12694 +2021-12-01,"Industrial Consumption","North Carolina","NC",10857 +2021-12-01,"Industrial Consumption","Georgia","GA",14320 +2021-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",167264 +2021-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",111530 +2021-12-01,"Residential Consumption","Texas","TX",18238 +2021-12-01,"Residential Consumption","Tennessee","TN",8683 +2021-12-01,"Residential Consumption","Utah","UT",12221 +2021-12-01,"Residential Consumption","Michigan","MI",43634 +2021-12-01,"Residential Consumption","District of Columbia","DC",1564 +2021-12-01,"Residential Consumption","Florida","FL",2068 +2021-12-01,"Residential Consumption","North Dakota","ND",1557 +2021-12-01,"Residential Consumption","Idaho","ID",5497 +2021-12-01,"Residential Consumption","Arkansas","AR",3147 +2021-12-01,"Residential Consumption","Montana","MT",2842 +2021-12-01,"Residential Consumption","Alaska","AK",3021 +2021-12-01,"Residential Consumption","Louisiana","LA",2654 +2021-12-01,"Residential Consumption","Colorado","CO",21181 +2021-12-01,"Residential Consumption","West Virginia","WV",3179 +2021-12-01,"Residential Consumption","Illinois","IL",55370 +2021-12-01,"Residential Consumption","Oregon","OR",8039 +2021-12-01,"Residential Consumption","North Carolina","NC",10003 +2021-12-01,"Residential Consumption","Vermont","VT",525 +2021-12-01,"Residential Consumption","South Dakota","SD",1815 +2021-12-01,"Residential Consumption","Washington","WA",16056 +2021-12-01,"Residential Consumption","Georgia","GA",15126 +2021-12-01,"Residential Consumption","Pennsylvania","PA",35591 +2021-12-01,"Residential Consumption","New Mexico","NM",5147 +2021-12-01,"Residential Consumption","Oklahoma","OK",7776 +2021-12-01,"Residential Consumption","U.S.","U.S.",669374 +2021-12-01,"Residential Consumption","Mississippi","MS",2149 +2021-12-01,"Residential Consumption","Iowa","IA",9316 +2021-12-01,"Residential Consumption","Wisconsin","WI",20506 +2021-12-01,"Residential Consumption","Nebraska","NE",5299 +2021-12-01,"Residential Consumption","Maryland","MD",9934 +2021-12-01,"Residential Consumption","Nevada","NV",6285 +2021-12-01,"Residential Consumption","Minnesota","MN",22049 +2021-12-01,"Residential Consumption","New Jersey","NJ",33064 +2021-12-01,"Residential Consumption","Kansas","KS",8113 +2021-12-01,"Residential Consumption","Wyoming","WY",1954 +2021-12-01,"Residential Consumption","South Carolina","SC",4636 +2021-12-01,"Residential Consumption","Rhode Island","RI",2693 +2021-12-01,"Residential Consumption","Ohio","OH",37846 +2021-12-01,"Residential Consumption","Virginia","VA",11576 +2021-12-01,"Residential Consumption","Kentucky","KY",5710 +2021-12-01,"Residential Consumption","Missouri","MO",13292 +2021-12-01,"Residential Consumption","Delaware","DE",1629 +2021-12-01,"Residential Consumption","California","CA",71646 +2021-12-01,"Residential Consumption","Alabama","AL",4196 +2021-12-01,"Residential Consumption","Maine","ME",461 +2021-12-01,"Residential Consumption","Indiana","IN",18953 +2021-12-01,"Residential Consumption","Massachusetts","MA",18144 +2021-12-01,"Residential Consumption","New Hampshire","NH",1199 +2021-12-01,"Residential Consumption","Arizona","AZ",4534 +2021-12-01,"Residential Consumption","Hawaii","HI",52 +2021-12-01,"Residential Consumption","Connecticut","CT",7073 +2021-12-01,"Residential Consumption","New York","NY",62126 +2021-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2021-12-01,"Vehicle Fuel Consumption","Washington","WA",12 +2021-12-01,"Vehicle Fuel Consumption","New York","NY",96 +2021-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",40 +2021-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",149 +2021-12-01,"Vehicle Fuel Consumption","Arizona","AZ",176 +2021-12-01,"Vehicle Fuel Consumption","Texas","TX",80 +2021-12-01,"Vehicle Fuel Consumption","North Carolina","NC",135 +2021-12-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2021-12-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2021-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",4627 +2021-12-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2021-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2021-12-01,"Vehicle Fuel Consumption","Missouri","MO",19 +2021-12-01,"Vehicle Fuel Consumption","California","CA",2161 +2021-12-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2021-12-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2021-12-01,"Vehicle Fuel Consumption","Ohio","OH",94 +2021-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",145 +2021-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2021-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2021-12-01,"Vehicle Fuel Consumption","Louisiana","LA",31 +2021-12-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2021-12-01,"Vehicle Fuel Consumption","Utah","UT",25 +2021-12-01,"Vehicle Fuel Consumption","Virginia","VA",57 +2021-12-01,"Vehicle Fuel Consumption","Nebraska","NE",35 +2021-12-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2021-12-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2021-12-01,"Vehicle Fuel Consumption","Nevada","NV",97 +2021-12-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2021-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2021-12-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2021-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2021-12-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2021-12-01,"Vehicle Fuel Consumption","Kansas","KS",78 +2021-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2021-12-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2021-12-01,"Vehicle Fuel Consumption","Minnesota","MN",47 +2021-12-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2021-12-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2021-12-01,"Vehicle Fuel Consumption","Tennessee","TN",32 +2021-12-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2021-12-01,"Vehicle Fuel Consumption","Indiana","IN",164 +2021-12-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2021-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2021-12-01,"Vehicle Fuel Consumption","Florida","FL",477 +2021-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",38 +2021-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2021-12-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2021-12-01,"Vehicle Fuel Consumption","Colorado","CO",150 +2021-12-01,"Vehicle Fuel Consumption","Georgia","GA",129 +2021-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-01-01,"Commercial Consumption","New Jersey","NJ",23181 +2022-01-01,"Commercial Consumption","Ohio","OH",33735 +2022-01-01,"Commercial Consumption","Arkansas","AR",7304 +2022-01-01,"Commercial Consumption","Alabama","AL",5216 +2022-01-01,"Commercial Consumption","Delaware","DE",2086 +2022-01-01,"Commercial Consumption","Nevada","NV",4481 +2022-01-01,"Commercial Consumption","Indiana","IN",19433 +2022-01-01,"Commercial Consumption","Montana","MT",3734 +2022-01-01,"Commercial Consumption","Maryland","MD",11668 +2022-01-01,"Commercial Consumption","Vermont","VT",1143 +2022-01-01,"Commercial Consumption","Rhode Island","RI",2357 +2022-01-01,"Commercial Consumption","District of Columbia","DC",2524 +2022-01-01,"Commercial Consumption","West Virginia","WV",3795 +2022-01-01,"Commercial Consumption","Oregon","OR",4732 +2022-01-01,"Commercial Consumption","Wisconsin","WI",19725 +2022-01-01,"Commercial Consumption","Kentucky","KY",7490 +2022-01-01,"Commercial Consumption","Florida","FL",6521 +2022-01-01,"Commercial Consumption","Iowa","IA",9875 +2022-01-01,"Commercial Consumption","California","CA",26035 +2022-01-01,"Commercial Consumption","Colorado","CO",10073 +2022-01-01,"Commercial Consumption","New Mexico","NM",4127 +2022-01-01,"Commercial Consumption","Missouri","MO",12460 +2022-01-01,"Commercial Consumption","South Dakota","SD",2359 +2022-01-01,"Commercial Consumption","Connecticut","CT",8734 +2022-01-01,"Commercial Consumption","Tennessee","TN",11562 +2022-01-01,"Commercial Consumption","Wyoming","WY",2078 +2022-01-01,"Commercial Consumption","North Carolina","NC",11141 +2022-01-01,"Commercial Consumption","Oklahoma","OK",8247 +2022-01-01,"Commercial Consumption","Maine","ME",1772 +2022-01-01,"Commercial Consumption","U.S.","U.S.",552712 +2022-01-01,"Commercial Consumption","Alaska","AK",2435 +2022-01-01,"Commercial Consumption","New York","NY",46731 +2022-01-01,"Commercial Consumption","Arizona","AZ",4370 +2022-01-01,"Commercial Consumption","Michigan","MI",31908 +2022-01-01,"Commercial Consumption","North Dakota","ND",2959 +2022-01-01,"Commercial Consumption","Minnesota","MN",NA +2022-01-01,"Commercial Consumption","New Hampshire","NH",1969 +2022-01-01,"Commercial Consumption","Washington","WA",8860 +2022-01-01,"Commercial Consumption","South Carolina","SC",4177 +2022-01-01,"Commercial Consumption","Virginia","VA",12505 +2022-01-01,"Commercial Consumption","Massachusetts","MA",16407 +2022-01-01,"Commercial Consumption","Texas","TX",23460 +2022-01-01,"Commercial Consumption","Georgia","GA",10374 +2022-01-01,"Commercial Consumption","Hawaii","HI",196 +2022-01-01,"Commercial Consumption","Mississippi","MS",3103 +2022-01-01,"Commercial Consumption","Louisiana","LA",NA +2022-01-01,"Commercial Consumption","Utah","UT",6307 +2022-01-01,"Commercial Consumption","Pennsylvania","PA",28637 +2022-01-01,"Commercial Consumption","Kansas","KS",7174 +2022-01-01,"Commercial Consumption","Idaho","ID",3516 +2022-01-01,"Commercial Consumption","Nebraska","NE",5170 +2022-01-01,"Commercial Consumption","Illinois","IL",39733 +2022-01-01,"Delivered to Consumers","U.S.","U.S.",3296440 +2022-01-01,"Delivered to Consumers","New York","NY",170735 +2022-01-01,"Delivered to Consumers","Maryland","MD",36484 +2022-01-01,"Delivered to Consumers","Hawaii","HI",263 +2022-01-01,"Delivered to Consumers","Kansas","KS",34922 +2022-01-01,"Delivered to Consumers","Missouri","MO",49601 +2022-01-01,"Delivered to Consumers","Massachusetts","MA",56165 +2022-01-01,"Delivered to Consumers","Texas","TX",367838 +2022-01-01,"Delivered to Consumers","South Dakota","SD",10976 +2022-01-01,"Delivered to Consumers","Kentucky","KY",47759 +2022-01-01,"Delivered to Consumers","Iowa","IA",52441 +2022-01-01,"Delivered to Consumers","Arkansas","AR",NA +2022-01-01,"Delivered to Consumers","South Carolina","SC",34930 +2022-01-01,"Delivered to Consumers","Nevada","NV",29333 +2022-01-01,"Delivered to Consumers","Michigan","MI",146305 +2022-01-01,"Delivered to Consumers","Virginia","VA",72909 +2022-01-01,"Delivered to Consumers","Colorado","CO",55947 +2022-01-01,"Delivered to Consumers","Oregon","OR",31603 +2022-01-01,"Delivered to Consumers","Georgia","GA",86618 +2022-01-01,"Delivered to Consumers","Arizona","AZ",33909 +2022-01-01,"Delivered to Consumers","New Hampshire","NH",6076 +2022-01-01,"Delivered to Consumers","Illinois","IL",170441 +2022-01-01,"Delivered to Consumers","Oklahoma","OK",62487 +2022-01-01,"Delivered to Consumers","Idaho","ID",17695 +2022-01-01,"Delivered to Consumers","Alabama","AL",71862 +2022-01-01,"Delivered to Consumers","Nebraska","NE",21747 +2022-01-01,"Delivered to Consumers","Florida","FL",126766 +2022-01-01,"Delivered to Consumers","District of Columbia","DC",5285 +2022-01-01,"Delivered to Consumers","Rhode Island","RI",11917 +2022-01-01,"Delivered to Consumers","Connecticut","CT",34678 +2022-01-01,"Delivered to Consumers","Wisconsin","WI",83485 +2022-01-01,"Delivered to Consumers","California","CA",196375 +2022-01-01,"Delivered to Consumers","New Mexico","NM",NA +2022-01-01,"Delivered to Consumers","Delaware","DE",9449 +2022-01-01,"Delivered to Consumers","Wyoming","WY",10706 +2022-01-01,"Delivered to Consumers","Ohio","OH",169177 +2022-01-01,"Delivered to Consumers","Pennsylvania","PA",182050 +2022-01-01,"Delivered to Consumers","Washington","WA",40231 +2022-01-01,"Delivered to Consumers","Utah","UT",29339 +2022-01-01,"Delivered to Consumers","Indiana","IN",112977 +2022-01-01,"Delivered to Consumers","West Virginia","WV",13969 +2022-01-01,"Delivered to Consumers","Montana","MT",9904 +2022-01-01,"Delivered to Consumers","Alaska","AK",14666 +2022-01-01,"Delivered to Consumers","North Carolina","NC",77025 +2022-01-01,"Delivered to Consumers","North Dakota","ND",10514 +2022-01-01,"Delivered to Consumers","Vermont","VT",2163 +2022-01-01,"Delivered to Consumers","Tennessee","TN",57222 +2022-01-01,"Delivered to Consumers","Mississippi","MS",53424 +2022-01-01,"Delivered to Consumers","New Jersey","NJ",88368 +2022-01-01,"Delivered to Consumers","Maine","ME",6926 +2022-01-01,"Delivered to Consumers","Louisiana","LA",NA +2022-01-01,"Delivered to Consumers","Minnesota","MN",NA +2022-01-01,"Electric Power Consumption","New Jersey","NJ",14165 +2022-01-01,"Electric Power Consumption","Massachusetts","MA",10929 +2022-01-01,"Electric Power Consumption","North Carolina","NC",35815 +2022-01-01,"Electric Power Consumption","North Dakota","ND",1364 +2022-01-01,"Electric Power Consumption","Oregon","OR",13535 +2022-01-01,"Electric Power Consumption","Minnesota","MN",9245 +2022-01-01,"Electric Power Consumption","Illinois","IL",16911 +2022-01-01,"Electric Power Consumption","Pennsylvania","PA",78210 +2022-01-01,"Electric Power Consumption","Nevada","NV",14216 +2022-01-01,"Electric Power Consumption","Iowa","IA",3927 +2022-01-01,"Electric Power Consumption","Missouri","MO",5638 +2022-01-01,"Electric Power Consumption","Maryland","MD",4786 +2022-01-01,"Electric Power Consumption","Washington","WA",8773 +2022-01-01,"Electric Power Consumption","Idaho","ID",3611 +2022-01-01,"Electric Power Consumption","Rhode Island","RI",4639 +2022-01-01,"Electric Power Consumption","Mississippi","MS",34839 +2022-01-01,"Electric Power Consumption","Ohio","OH",44167 +2022-01-01,"Electric Power Consumption","Florida","FL",105094 +2022-01-01,"Electric Power Consumption","New Mexico","NM",5542 +2022-01-01,"Electric Power Consumption","New York","NY",37057 +2022-01-01,"Electric Power Consumption","Wisconsin","WI",15433 +2022-01-01,"Electric Power Consumption","Tennessee","TN",11401 +2022-01-01,"Electric Power Consumption","U.S.","U.S.",961269 +2022-01-01,"Electric Power Consumption","Hawaii","HI",NA +2022-01-01,"Electric Power Consumption","Georgia","GA",33260 +2022-01-01,"Electric Power Consumption","Louisiana","LA",28966 +2022-01-01,"Electric Power Consumption","Colorado","CO",9832 +2022-01-01,"Electric Power Consumption","Utah","UT",7045 +2022-01-01,"Electric Power Consumption","Wyoming","WY",335 +2022-01-01,"Electric Power Consumption","Indiana","IN",22509 +2022-01-01,"Electric Power Consumption","Delaware","DE",1521 +2022-01-01,"Electric Power Consumption","Alaska","AK",2597 +2022-01-01,"Electric Power Consumption","South Carolina","SC",14231 +2022-01-01,"Electric Power Consumption","Texas","TX",129750 +2022-01-01,"Electric Power Consumption","Oklahoma","OK",20045 +2022-01-01,"Electric Power Consumption","West Virginia","WV",1343 +2022-01-01,"Electric Power Consumption","Vermont","VT",1 +2022-01-01,"Electric Power Consumption","Connecticut","CT",13174 +2022-01-01,"Electric Power Consumption","Arizona","AZ",19690 +2022-01-01,"Electric Power Consumption","Alabama","AL",37868 +2022-01-01,"Electric Power Consumption","South Dakota","SD",904 +2022-01-01,"Electric Power Consumption","Nebraska","NE",849 +2022-01-01,"Electric Power Consumption","Maine","ME",2196 +2022-01-01,"Electric Power Consumption","Kentucky","KY",15385 +2022-01-01,"Electric Power Consumption","California","CA",45838 +2022-01-01,"Electric Power Consumption","Virginia","VA",28217 +2022-01-01,"Electric Power Consumption","Arkansas","AR",15597 +2022-01-01,"Electric Power Consumption","Michigan","MI",27436 +2022-01-01,"Electric Power Consumption","Kansas","KS",1385 +2022-01-01,"Electric Power Consumption","New Hampshire","NH",1562 +2022-01-01,"Electric Power Consumption","Montana","MT",435 +2022-01-01,"Industrial Consumption","North Dakota","ND",3551 +2022-01-01,"Industrial Consumption","Washington","WA",7929 +2022-01-01,"Industrial Consumption","Texas","TX",172648 +2022-01-01,"Industrial Consumption","Iowa","IA",24102 +2022-01-01,"Industrial Consumption","Kentucky","KY",13557 +2022-01-01,"Industrial Consumption","Colorado","CO",10249 +2022-01-01,"Industrial Consumption","Kansas","KS",13310 +2022-01-01,"Industrial Consumption","Pennsylvania","PA",26018 +2022-01-01,"Industrial Consumption","Oregon","OR",5623 +2022-01-01,"Industrial Consumption","Maine","ME",2310 +2022-01-01,"Industrial Consumption","Arkansas","AR",10143 +2022-01-01,"Industrial Consumption","South Carolina","SC",8415 +2022-01-01,"Industrial Consumption","Tennessee","TN",16642 +2022-01-01,"Industrial Consumption","New Hampshire","NH",937 +2022-01-01,"Industrial Consumption","Delaware","DE",3094 +2022-01-01,"Industrial Consumption","Georgia","GA",14975 +2022-01-01,"Industrial Consumption","Hawaii","HI",8 +2022-01-01,"Industrial Consumption","Ohio","OH",33421 +2022-01-01,"Industrial Consumption","New Mexico","NM",NA +2022-01-01,"Industrial Consumption","Utah","UT",3876 +2022-01-01,"Industrial Consumption","U.S.","U.S.",816696 +2022-01-01,"Industrial Consumption","New York","NY",8827 +2022-01-01,"Industrial Consumption","Alabama","AL",21248 +2022-01-01,"Industrial Consumption","New Jersey","NJ",5916 +2022-01-01,"Industrial Consumption","Montana","MT",2357 +2022-01-01,"Industrial Consumption","South Dakota","SD",4826 +2022-01-01,"Industrial Consumption","Arizona","AZ",1925 +2022-01-01,"Industrial Consumption","Nevada","NV",1594 +2022-01-01,"Industrial Consumption","Virginia","VA",12900 +2022-01-01,"Industrial Consumption","Wisconsin","WI",18259 +2022-01-01,"Industrial Consumption","Minnesota","MN",16905 +2022-01-01,"Industrial Consumption","Rhode Island","RI",800 +2022-01-01,"Industrial Consumption","Missouri","MO",6703 +2022-01-01,"Industrial Consumption","Louisiana","LA",103819 +2022-01-01,"Industrial Consumption","California","CA",55827 +2022-01-01,"Industrial Consumption","Nebraska","NE",8501 +2022-01-01,"Industrial Consumption","West Virginia","WV",3716 +2022-01-01,"Industrial Consumption","Idaho","ID",4259 +2022-01-01,"Industrial Consumption","Connecticut","CT",2525 +2022-01-01,"Industrial Consumption","Michigan","MI",18650 +2022-01-01,"Industrial Consumption","Illinois","IL",30252 +2022-01-01,"Industrial Consumption","Maryland","MD",1641 +2022-01-01,"Industrial Consumption","Vermont","VT",241 +2022-01-01,"Industrial Consumption","North Carolina","NC",12020 +2022-01-01,"Industrial Consumption","Alaska","AK",6369 +2022-01-01,"Industrial Consumption","Mississippi","MS",10828 +2022-01-01,"Industrial Consumption","District of Columbia","DC",0 +2022-01-01,"Industrial Consumption","Massachusetts","MA",5899 +2022-01-01,"Industrial Consumption","Oklahoma","OK",19568 +2022-01-01,"Industrial Consumption","Wyoming","WY",5897 +2022-01-01,"Industrial Consumption","Florida","FL",12039 +2022-01-01,"Industrial Consumption","Indiana","IN",40001 +2022-01-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",162949 +2022-01-01,"Pipeline Fuel Consumption","U.S.","U.S.",132302 +2022-01-01,"Residential Consumption","Mississippi","MS",4653 +2022-01-01,"Residential Consumption","Tennessee","TN",17582 +2022-01-01,"Residential Consumption","Maryland","MD",18364 +2022-01-01,"Residential Consumption","Massachusetts","MA",22922 +2022-01-01,"Residential Consumption","California","CA",66526 +2022-01-01,"Residential Consumption","Iowa","IA",14534 +2022-01-01,"Residential Consumption","Hawaii","HI",60 +2022-01-01,"Residential Consumption","North Dakota","ND",2639 +2022-01-01,"Residential Consumption","Arkansas","AR",NA +2022-01-01,"Residential Consumption","Kansas","KS",12982 +2022-01-01,"Residential Consumption","Delaware","DE",2747 +2022-01-01,"Residential Consumption","Wyoming","WY",2395 +2022-01-01,"Residential Consumption","New York","NY",78035 +2022-01-01,"Residential Consumption","Illinois","IL",83534 +2022-01-01,"Residential Consumption","North Carolina","NC",17899 +2022-01-01,"Residential Consumption","Connecticut","CT",10226 +2022-01-01,"Residential Consumption","Vermont","VT",777 +2022-01-01,"Residential Consumption","Michigan","MI",68310 +2022-01-01,"Residential Consumption","Montana","MT",3377 +2022-01-01,"Residential Consumption","South Carolina","SC",8097 +2022-01-01,"Residential Consumption","Wisconsin","WI",30026 +2022-01-01,"Residential Consumption","Virginia","VA",19229 +2022-01-01,"Residential Consumption","South Dakota","SD",2887 +2022-01-01,"Residential Consumption","Pennsylvania","PA",49038 +2022-01-01,"Residential Consumption","Indiana","IN",31034 +2022-01-01,"Residential Consumption","New Hampshire","NH",1605 +2022-01-01,"Residential Consumption","Kentucky","KY",11324 +2022-01-01,"Residential Consumption","Utah","UT",12085 +2022-01-01,"Residential Consumption","Georgia","GA",27862 +2022-01-01,"Residential Consumption","New Mexico","NM",6952 +2022-01-01,"Residential Consumption","Washington","WA",14658 +2022-01-01,"Residential Consumption","Alaska","AK",3265 +2022-01-01,"Residential Consumption","U.S.","U.S.",961248 +2022-01-01,"Residential Consumption","Oregon","OR",7708 +2022-01-01,"Residential Consumption","Minnesota","MN",29835 +2022-01-01,"Residential Consumption","Colorado","CO",25705 +2022-01-01,"Residential Consumption","Oklahoma","OK",14476 +2022-01-01,"Residential Consumption","Alabama","AL",7524 +2022-01-01,"Residential Consumption","Rhode Island","RI",4112 +2022-01-01,"Residential Consumption","Nebraska","NE",7213 +2022-01-01,"Residential Consumption","District of Columbia","DC",2741 +2022-01-01,"Residential Consumption","Maine","ME",648 +2022-01-01,"Residential Consumption","Florida","FL",2631 +2022-01-01,"Residential Consumption","New Jersey","NJ",45080 +2022-01-01,"Residential Consumption","Arizona","AZ",7738 +2022-01-01,"Residential Consumption","West Virginia","WV",5114 +2022-01-01,"Residential Consumption","Texas","TX",41880 +2022-01-01,"Residential Consumption","Ohio","OH",57749 +2022-01-01,"Residential Consumption","Louisiana","LA",8743 +2022-01-01,"Residential Consumption","Nevada","NV",8937 +2022-01-01,"Residential Consumption","Idaho","ID",6305 +2022-01-01,"Residential Consumption","Missouri","MO",24783 +2022-01-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-01-01,"Vehicle Fuel Consumption","Utah","UT",25 +2022-01-01,"Vehicle Fuel Consumption","Arizona","AZ",186 +2022-01-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2022-01-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2022-01-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-01-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-01-01,"Vehicle Fuel Consumption","Wisconsin","WI",43 +2022-01-01,"Vehicle Fuel Consumption","North Carolina","NC",150 +2022-01-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2022-01-01,"Vehicle Fuel Consumption","Ohio","OH",105 +2022-01-01,"Vehicle Fuel Consumption","Oklahoma","OK",151 +2022-01-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2022-01-01,"Vehicle Fuel Consumption","Maryland","MD",25 +2022-01-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-01-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2022-01-01,"Vehicle Fuel Consumption","New Mexico","NM",35 +2022-01-01,"Vehicle Fuel Consumption","New York","NY",85 +2022-01-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-01-01,"Vehicle Fuel Consumption","Nevada","NV",104 +2022-01-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2022-01-01,"Vehicle Fuel Consumption","Missouri","MO",17 +2022-01-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-01-01,"Vehicle Fuel Consumption","Louisiana","LA",113 +2022-01-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2022-01-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2022-01-01,"Vehicle Fuel Consumption","Illinois","IL",9 +2022-01-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-01-01,"Vehicle Fuel Consumption","Virginia","VA",58 +2022-01-01,"Vehicle Fuel Consumption","Florida","FL",481 +2022-01-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2022-01-01,"Vehicle Fuel Consumption","Nebraska","NE",15 +2022-01-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2022-01-01,"Vehicle Fuel Consumption","Colorado","CO",87 +2022-01-01,"Vehicle Fuel Consumption","Georgia","GA",146 +2022-01-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2022-01-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2022-01-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2022-01-01,"Vehicle Fuel Consumption","District of Columbia","DC",20 +2022-01-01,"Vehicle Fuel Consumption","California","CA",2149 +2022-01-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-01-01,"Vehicle Fuel Consumption","Pennsylvania","PA",147 +2022-01-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2022-01-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-01-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2022-01-01,"Vehicle Fuel Consumption","Tennessee","TN",34 +2022-01-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2022-01-01,"Vehicle Fuel Consumption","Kansas","KS",71 +2022-01-01,"Vehicle Fuel Consumption","Texas","TX",101 +2022-01-01,"Vehicle Fuel Consumption","New Jersey","NJ",25 +2022-01-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-01-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-02-01,"Commercial Consumption","West Virginia","WV",3150 +2022-02-01,"Commercial Consumption","Washington","WA",7550 +2022-02-01,"Commercial Consumption","Pennsylvania","PA",22815 +2022-02-01,"Commercial Consumption","New Jersey","NJ",20352 +2022-02-01,"Commercial Consumption","Georgia","GA",6888 +2022-02-01,"Commercial Consumption","Ohio","OH",26975 +2022-02-01,"Commercial Consumption","Alaska","AK",1831 +2022-02-01,"Commercial Consumption","Alabama","AL",3072 +2022-02-01,"Commercial Consumption","Indiana","IN",15205 +2022-02-01,"Commercial Consumption","Louisiana","LA",2885 +2022-02-01,"Commercial Consumption","South Dakota","SD",1845 +2022-02-01,"Commercial Consumption","New York","NY",37415 +2022-02-01,"Commercial Consumption","Arkansas","AR",7155 +2022-02-01,"Commercial Consumption","Minnesota","MN",19635 +2022-02-01,"Commercial Consumption","Colorado","CO",9324 +2022-02-01,"Commercial Consumption","Oregon","OR",3984 +2022-02-01,"Commercial Consumption","New Hampshire","NH",1495 +2022-02-01,"Commercial Consumption","Texas","TX",25196 +2022-02-01,"Commercial Consumption","Florida","FL",5932 +2022-02-01,"Commercial Consumption","Idaho","ID",2988 +2022-02-01,"Commercial Consumption","Michigan","MI",27602 +2022-02-01,"Commercial Consumption","Wyoming","WY",2003 +2022-02-01,"Commercial Consumption","North Dakota","ND",2661 +2022-02-01,"Commercial Consumption","Virginia","VA",9596 +2022-02-01,"Commercial Consumption","Wisconsin","WI",16813 +2022-02-01,"Commercial Consumption","Montana","MT",3440 +2022-02-01,"Commercial Consumption","U.S.","U.S.",465400 +2022-02-01,"Commercial Consumption","Tennessee","TN",8450 +2022-02-01,"Commercial Consumption","North Carolina","NC",6846 +2022-02-01,"Commercial Consumption","Oklahoma","OK",7663 +2022-02-01,"Commercial Consumption","Missouri","MO",10421 +2022-02-01,"Commercial Consumption","Kentucky","KY",5792 +2022-02-01,"Commercial Consumption","Kansas","KS",6473 +2022-02-01,"Commercial Consumption","Rhode Island","RI",1780 +2022-02-01,"Commercial Consumption","Nebraska","NE",4387 +2022-02-01,"Commercial Consumption","Illinois","IL",35670 +2022-02-01,"Commercial Consumption","District of Columbia","DC",1681 +2022-02-01,"Commercial Consumption","South Carolina","SC",2449 +2022-02-01,"Commercial Consumption","Utah","UT",5546 +2022-02-01,"Commercial Consumption","California","CA",23822 +2022-02-01,"Commercial Consumption","Mississippi","MS",2738 +2022-02-01,"Commercial Consumption","Delaware","DE",1374 +2022-02-01,"Commercial Consumption","Arizona","AZ",4014 +2022-02-01,"Commercial Consumption","Nevada","NV",3621 +2022-02-01,"Commercial Consumption","New Mexico","NM",3718 +2022-02-01,"Commercial Consumption","Massachusetts","MA",14730 +2022-02-01,"Commercial Consumption","Maine","ME",1380 +2022-02-01,"Commercial Consumption","Maryland","MD",8636 +2022-02-01,"Commercial Consumption","Vermont","VT",899 +2022-02-01,"Commercial Consumption","Iowa","IA",8035 +2022-02-01,"Commercial Consumption","Hawaii","HI",169 +2022-02-01,"Commercial Consumption","Connecticut","CT",7296 +2022-02-01,"Delivered to Consumers","Rhode Island","RI",10053 +2022-02-01,"Delivered to Consumers","Montana","MT",9368 +2022-02-01,"Delivered to Consumers","Virginia","VA",56781 +2022-02-01,"Delivered to Consumers","Arkansas","AR",30442 +2022-02-01,"Delivered to Consumers","Alabama","AL",53925 +2022-02-01,"Delivered to Consumers","Oregon","OR",26772 +2022-02-01,"Delivered to Consumers","Louisiana","LA",122405 +2022-02-01,"Delivered to Consumers","District of Columbia","DC",3892 +2022-02-01,"Delivered to Consumers","South Dakota","SD",9390 +2022-02-01,"Delivered to Consumers","New York","NY",153368 +2022-02-01,"Delivered to Consumers","Maryland","MD",27472 +2022-02-01,"Delivered to Consumers","Nebraska","NE",18673 +2022-02-01,"Delivered to Consumers","North Carolina","NC",66550 +2022-02-01,"Delivered to Consumers","Arizona","AZ",31807 +2022-02-01,"Delivered to Consumers","North Dakota","ND",9521 +2022-02-01,"Delivered to Consumers","Minnesota","MN",67214 +2022-02-01,"Delivered to Consumers","Hawaii","HI",227 +2022-02-01,"Delivered to Consumers","Alaska","AK",12153 +2022-02-01,"Delivered to Consumers","Kansas","KS",31311 +2022-02-01,"Delivered to Consumers","Iowa","IA",42737 +2022-02-01,"Delivered to Consumers","Wisconsin","WI",69544 +2022-02-01,"Delivered to Consumers","Massachusetts","MA",48698 +2022-02-01,"Delivered to Consumers","Washington","WA",34212 +2022-02-01,"Delivered to Consumers","New Mexico","NM",15961 +2022-02-01,"Delivered to Consumers","West Virginia","WV",11245 +2022-02-01,"Delivered to Consumers","Tennessee","TN",43616 +2022-02-01,"Delivered to Consumers","Michigan","MI",119047 +2022-02-01,"Delivered to Consumers","Kentucky","KY",35226 +2022-02-01,"Delivered to Consumers","Utah","UT",25066 +2022-02-01,"Delivered to Consumers","Indiana","IN",93816 +2022-02-01,"Delivered to Consumers","Vermont","VT",1786 +2022-02-01,"Delivered to Consumers","Illinois","IL",140927 +2022-02-01,"Delivered to Consumers","Idaho","ID",14739 +2022-02-01,"Delivered to Consumers","Connecticut","CT",29998 +2022-02-01,"Delivered to Consumers","California","CA",167329 +2022-02-01,"Delivered to Consumers","New Jersey","NJ",82370 +2022-02-01,"Delivered to Consumers","Maine","ME",5728 +2022-02-01,"Delivered to Consumers","Florida","FL",105792 +2022-02-01,"Delivered to Consumers","U.S.","U.S.",2802179 +2022-02-01,"Delivered to Consumers","Wyoming","WY",10044 +2022-02-01,"Delivered to Consumers","Oklahoma","OK",56033 +2022-02-01,"Delivered to Consumers","Mississippi","MS",43315 +2022-02-01,"Delivered to Consumers","South Carolina","SC",29511 +2022-02-01,"Delivered to Consumers","Georgia","GA",66149 +2022-02-01,"Delivered to Consumers","Delaware","DE",7571 +2022-02-01,"Delivered to Consumers","Ohio","OH",143252 +2022-02-01,"Delivered to Consumers","Pennsylvania","PA",153463 +2022-02-01,"Delivered to Consumers","Missouri","MO",39504 +2022-02-01,"Delivered to Consumers","Colorado","CO",51139 +2022-02-01,"Delivered to Consumers","Texas","TX",343648 +2022-02-01,"Delivered to Consumers","Nevada","NV",24279 +2022-02-01,"Delivered to Consumers","New Hampshire","NH",5109 +2022-02-01,"Electric Power Consumption","Washington","WA",7551 +2022-02-01,"Electric Power Consumption","New Mexico","NM",5100 +2022-02-01,"Electric Power Consumption","Idaho","ID",3167 +2022-02-01,"Electric Power Consumption","Rhode Island","RI",4380 +2022-02-01,"Electric Power Consumption","Illinois","IL",10372 +2022-02-01,"Electric Power Consumption","Nevada","NV",12583 +2022-02-01,"Electric Power Consumption","Kentucky","KY",9326 +2022-02-01,"Electric Power Consumption","New York","NY",33983 +2022-02-01,"Electric Power Consumption","Michigan","MI",21555 +2022-02-01,"Electric Power Consumption","Mississippi","MS",26870 +2022-02-01,"Electric Power Consumption","Georgia","GA",28022 +2022-02-01,"Electric Power Consumption","Alabama","AL",27085 +2022-02-01,"Electric Power Consumption","Louisiana","LA",24142 +2022-02-01,"Electric Power Consumption","Hawaii","HI",NA +2022-02-01,"Electric Power Consumption","Montana","MT",346 +2022-02-01,"Electric Power Consumption","Wisconsin","WI",13168 +2022-02-01,"Electric Power Consumption","Iowa","IA",3297 +2022-02-01,"Electric Power Consumption","U.S.","U.S.",814667 +2022-02-01,"Electric Power Consumption","Florida","FL",85874 +2022-02-01,"Electric Power Consumption","California","CA",37608 +2022-02-01,"Electric Power Consumption","Alaska","AK",2156 +2022-02-01,"Electric Power Consumption","New Jersey","NJ",16038 +2022-02-01,"Electric Power Consumption","Utah","UT",6125 +2022-02-01,"Electric Power Consumption","Oregon","OR",11556 +2022-02-01,"Electric Power Consumption","Massachusetts","MA",8909 +2022-02-01,"Electric Power Consumption","Wyoming","WY",NA +2022-02-01,"Electric Power Consumption","Vermont","VT",NA +2022-02-01,"Electric Power Consumption","Nebraska","NE",627 +2022-02-01,"Electric Power Consumption","Missouri","MO",3245 +2022-02-01,"Electric Power Consumption","North Dakota","ND",1217 +2022-02-01,"Electric Power Consumption","Kansas","KS",1401 +2022-02-01,"Electric Power Consumption","West Virginia","WV",590 +2022-02-01,"Electric Power Consumption","Ohio","OH",36354 +2022-02-01,"Electric Power Consumption","New Hampshire","NH",1464 +2022-02-01,"Electric Power Consumption","Maryland","MD",4427 +2022-02-01,"Electric Power Consumption","Delaware","DE",1626 +2022-02-01,"Electric Power Consumption","Colorado","CO",9318 +2022-02-01,"Electric Power Consumption","Arkansas","AR",7881 +2022-02-01,"Electric Power Consumption","South Carolina","SC",13101 +2022-02-01,"Electric Power Consumption","Minnesota","MN",6483 +2022-02-01,"Electric Power Consumption","Pennsylvania","PA",69606 +2022-02-01,"Electric Power Consumption","Connecticut","CT",12274 +2022-02-01,"Electric Power Consumption","Virginia","VA",25611 +2022-02-01,"Electric Power Consumption","Texas","TX",116909 +2022-02-01,"Electric Power Consumption","Oklahoma","OK",17726 +2022-02-01,"Electric Power Consumption","Tennessee","TN",9156 +2022-02-01,"Electric Power Consumption","South Dakota","SD",601 +2022-02-01,"Electric Power Consumption","North Carolina","NC",36990 +2022-02-01,"Electric Power Consumption","Maine","ME",1744 +2022-02-01,"Electric Power Consumption","Indiana","IN",18034 +2022-02-01,"Electric Power Consumption","Arizona","AZ",18898 +2022-02-01,"Industrial Consumption","Maryland","MD",1314 +2022-02-01,"Industrial Consumption","New York","NY",9237 +2022-02-01,"Industrial Consumption","New Hampshire","NH",890 +2022-02-01,"Industrial Consumption","Idaho","ID",3592 +2022-02-01,"Industrial Consumption","Rhode Island","RI",810 +2022-02-01,"Industrial Consumption","North Carolina","NC",10846 +2022-02-01,"Industrial Consumption","Georgia","GA",13035 +2022-02-01,"Industrial Consumption","District of Columbia","DC",0 +2022-02-01,"Industrial Consumption","Alaska","AK",5923 +2022-02-01,"Industrial Consumption","Hawaii","HI",8 +2022-02-01,"Industrial Consumption","Louisiana","LA",89764 +2022-02-01,"Industrial Consumption","Nevada","NV",1415 +2022-02-01,"Industrial Consumption","Mississippi","MS",9839 +2022-02-01,"Industrial Consumption","Maine","ME",2098 +2022-02-01,"Industrial Consumption","California","CA",50517 +2022-02-01,"Industrial Consumption","Virginia","VA",8026 +2022-02-01,"Industrial Consumption","Florida","FL",10819 +2022-02-01,"Industrial Consumption","Connecticut","CT",2150 +2022-02-01,"Industrial Consumption","Arkansas","AR",8991 +2022-02-01,"Industrial Consumption","Iowa","IA",20294 +2022-02-01,"Industrial Consumption","Illinois","IL",25613 +2022-02-01,"Industrial Consumption","Delaware","DE",2544 +2022-02-01,"Industrial Consumption","North Dakota","ND",3301 +2022-02-01,"Industrial Consumption","Montana","MT",2251 +2022-02-01,"Industrial Consumption","Washington","WA",6896 +2022-02-01,"Industrial Consumption","Ohio","OH",30492 +2022-02-01,"Industrial Consumption","Arizona","AZ",1713 +2022-02-01,"Industrial Consumption","Utah","UT",3893 +2022-02-01,"Industrial Consumption","West Virginia","WV",3221 +2022-02-01,"Industrial Consumption","Vermont","VT",216 +2022-02-01,"Industrial Consumption","Tennessee","TN",12218 +2022-02-01,"Industrial Consumption","Michigan","MI",17295 +2022-02-01,"Industrial Consumption","Kentucky","KY",11918 +2022-02-01,"Industrial Consumption","Massachusetts","MA",5716 +2022-02-01,"Industrial Consumption","U.S.","U.S.",721891 +2022-02-01,"Industrial Consumption","Wyoming","WY",5644 +2022-02-01,"Industrial Consumption","Kansas","KS",11601 +2022-02-01,"Industrial Consumption","Pennsylvania","PA",22171 +2022-02-01,"Industrial Consumption","Nebraska","NE",7369 +2022-02-01,"Industrial Consumption","Wisconsin","WI",15627 +2022-02-01,"Industrial Consumption","New Jersey","NJ",7792 +2022-02-01,"Industrial Consumption","Oklahoma","OK",17691 +2022-02-01,"Industrial Consumption","Missouri","MO",5911 +2022-02-01,"Industrial Consumption","Colorado","CO",9038 +2022-02-01,"Industrial Consumption","South Dakota","SD",4724 +2022-02-01,"Industrial Consumption","New Mexico","NM",858 +2022-02-01,"Industrial Consumption","Indiana","IN",36555 +2022-02-01,"Industrial Consumption","Oregon","OR",4941 +2022-02-01,"Industrial Consumption","Alabama","AL",18247 +2022-02-01,"Industrial Consumption","Texas","TX",153888 +2022-02-01,"Industrial Consumption","South Carolina","SC",8141 +2022-02-01,"Industrial Consumption","Minnesota","MN",14838 +2022-02-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",146186 +2022-02-01,"Pipeline Fuel Consumption","U.S.","U.S.",112758 +2022-02-01,"Residential Consumption","Texas","TX",47563 +2022-02-01,"Residential Consumption","Oregon","OR",6287 +2022-02-01,"Residential Consumption","Iowa","IA",11108 +2022-02-01,"Residential Consumption","North Dakota","ND",2342 +2022-02-01,"Residential Consumption","Arkansas","AR",6409 +2022-02-01,"Residential Consumption","Missouri","MO",19911 +2022-02-01,"Residential Consumption","Wyoming","WY",2226 +2022-02-01,"Residential Consumption","North Carolina","NC",11732 +2022-02-01,"Residential Consumption","Virginia","VA",13496 +2022-02-01,"Residential Consumption","Florida","FL",2732 +2022-02-01,"Residential Consumption","Montana","MT",3331 +2022-02-01,"Residential Consumption","Colorado","CO",23381 +2022-02-01,"Residential Consumption","Delaware","DE",2027 +2022-02-01,"Residential Consumption","Alabama","AL",5514 +2022-02-01,"Residential Consumption","Wisconsin","WI",23897 +2022-02-01,"Residential Consumption","Utah","UT",9479 +2022-02-01,"Residential Consumption","Pennsylvania","PA",38739 +2022-02-01,"Residential Consumption","New Mexico","NM",6253 +2022-02-01,"Residential Consumption","Maine","ME",507 +2022-02-01,"Residential Consumption","Massachusetts","MA",19335 +2022-02-01,"Residential Consumption","Rhode Island","RI",3076 +2022-02-01,"Residential Consumption","Mississippi","MS",3867 +2022-02-01,"Residential Consumption","Maryland","MD",13072 +2022-02-01,"Residential Consumption","Nevada","NV",6566 +2022-02-01,"Residential Consumption","Washington","WA",12205 +2022-02-01,"Residential Consumption","California","CA",53441 +2022-02-01,"Residential Consumption","Connecticut","CT",8261 +2022-02-01,"Residential Consumption","Michigan","MI",52595 +2022-02-01,"Residential Consumption","Minnesota","MN",26222 +2022-02-01,"Residential Consumption","West Virginia","WV",4283 +2022-02-01,"Residential Consumption","Illinois","IL",69264 +2022-02-01,"Residential Consumption","South Carolina","SC",5811 +2022-02-01,"Residential Consumption","Tennessee","TN",13760 +2022-02-01,"Residential Consumption","Indiana","IN",24022 +2022-02-01,"Residential Consumption","Kansas","KS",11773 +2022-02-01,"Residential Consumption","Alaska","AK",2242 +2022-02-01,"Residential Consumption","Hawaii","HI",50 +2022-02-01,"Residential Consumption","Nebraska","NE",6276 +2022-02-01,"Residential Consumption","New Jersey","NJ",38164 +2022-02-01,"Residential Consumption","New Hampshire","NH",1259 +2022-02-01,"Residential Consumption","Oklahoma","OK",12816 +2022-02-01,"Residential Consumption","Arizona","AZ",7014 +2022-02-01,"Residential Consumption","U.S.","U.S.",796143 +2022-02-01,"Residential Consumption","Ohio","OH",49337 +2022-02-01,"Residential Consumption","Louisiana","LA",5512 +2022-02-01,"Residential Consumption","Vermont","VT",669 +2022-02-01,"Residential Consumption","South Dakota","SD",2219 +2022-02-01,"Residential Consumption","Georgia","GA",18072 +2022-02-01,"Residential Consumption","District of Columbia","DC",2193 +2022-02-01,"Residential Consumption","Idaho","ID",4987 +2022-02-01,"Residential Consumption","Kentucky","KY",8188 +2022-02-01,"Residential Consumption","New York","NY",72656 +2022-02-01,"Vehicle Fuel Consumption","Washington","WA",10 +2022-02-01,"Vehicle Fuel Consumption","Nevada","NV",94 +2022-02-01,"Vehicle Fuel Consumption","District of Columbia","DC",18 +2022-02-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2022-02-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2022-02-01,"Vehicle Fuel Consumption","North Carolina","NC",136 +2022-02-01,"Vehicle Fuel Consumption","Illinois","IL",8 +2022-02-01,"Vehicle Fuel Consumption","California","CA",1941 +2022-02-01,"Vehicle Fuel Consumption","Wisconsin","WI",38 +2022-02-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-02-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2022-02-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2022-02-01,"Vehicle Fuel Consumption","Texas","TX",92 +2022-02-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-02-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-02-01,"Vehicle Fuel Consumption","Connecticut","CT",18 +2022-02-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2022-02-01,"Vehicle Fuel Consumption","Florida","FL",435 +2022-02-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2022-02-01,"Vehicle Fuel Consumption","Idaho","ID",4 +2022-02-01,"Vehicle Fuel Consumption","U.S.","U.S.",4078 +2022-02-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2022-02-01,"Vehicle Fuel Consumption","New Mexico","NM",31 +2022-02-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-02-01,"Vehicle Fuel Consumption","Utah","UT",23 +2022-02-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2022-02-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2022-02-01,"Vehicle Fuel Consumption","Pennsylvania","PA",132 +2022-02-01,"Vehicle Fuel Consumption","Arizona","AZ",168 +2022-02-01,"Vehicle Fuel Consumption","Missouri","MO",15 +2022-02-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-02-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2022-02-01,"Vehicle Fuel Consumption","Colorado","CO",78 +2022-02-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-02-01,"Vehicle Fuel Consumption","Arkansas","AR",6 +2022-02-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2022-02-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-02-01,"Vehicle Fuel Consumption","Oklahoma","OK",137 +2022-02-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-02-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2022-02-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2022-02-01,"Vehicle Fuel Consumption","Minnesota","MN",36 +2022-02-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-02-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-02-01,"Vehicle Fuel Consumption","Virginia","VA",52 +2022-02-01,"Vehicle Fuel Consumption","Ohio","OH",95 +2022-02-01,"Vehicle Fuel Consumption","New York","NY",77 +2022-02-01,"Vehicle Fuel Consumption","Kansas","KS",64 +2022-02-01,"Vehicle Fuel Consumption","Nebraska","NE",13 +2022-02-01,"Vehicle Fuel Consumption","New Jersey","NJ",23 +2022-02-01,"Vehicle Fuel Consumption","Louisiana","LA",102 +2022-02-01,"Vehicle Fuel Consumption","Georgia","GA",132 +2022-03-01,"Commercial Consumption","Washington","WA",6210 +2022-03-01,"Commercial Consumption","Virginia","VA",8513 +2022-03-01,"Commercial Consumption","Maine","ME",1172 +2022-03-01,"Commercial Consumption","U.S.","U.S.",387177 +2022-03-01,"Commercial Consumption","Hawaii","HI",182 +2022-03-01,"Commercial Consumption","New York","NY",35767 +2022-03-01,"Commercial Consumption","Arizona","AZ",3858 +2022-03-01,"Commercial Consumption","Nevada","NV",3644 +2022-03-01,"Commercial Consumption","Louisiana","LA",3183 +2022-03-01,"Commercial Consumption","Wyoming","WY",1884 +2022-03-01,"Commercial Consumption","South Carolina","SC",2380 +2022-03-01,"Commercial Consumption","New Hampshire","NH",1208 +2022-03-01,"Commercial Consumption","Vermont","VT",780 +2022-03-01,"Commercial Consumption","Iowa","IA",5948 +2022-03-01,"Commercial Consumption","New Mexico","NM",2857 +2022-03-01,"Commercial Consumption","Wisconsin","WI",14398 +2022-03-01,"Commercial Consumption","New Jersey","NJ",16905 +2022-03-01,"Commercial Consumption","Rhode Island","RI",1496 +2022-03-01,"Commercial Consumption","Idaho","ID",2203 +2022-03-01,"Commercial Consumption","Minnesota","MN",14828 +2022-03-01,"Commercial Consumption","Utah","UT",4739 +2022-03-01,"Commercial Consumption","Georgia","GA",5365 +2022-03-01,"Commercial Consumption","Ohio","OH",21048 +2022-03-01,"Commercial Consumption","Delaware","DE",1118 +2022-03-01,"Commercial Consumption","Tennessee","TN",6032 +2022-03-01,"Commercial Consumption","North Carolina","NC",5019 +2022-03-01,"Commercial Consumption","Oklahoma","OK",5237 +2022-03-01,"Commercial Consumption","Massachusetts","MA",11693 +2022-03-01,"Commercial Consumption","South Dakota","SD",1652 +2022-03-01,"Commercial Consumption","Montana","MT",2845 +2022-03-01,"Commercial Consumption","Kentucky","KY",3867 +2022-03-01,"Commercial Consumption","Texas","TX",19880 +2022-03-01,"Commercial Consumption","Connecticut","CT",6362 +2022-03-01,"Commercial Consumption","Nebraska","NE",3697 +2022-03-01,"Commercial Consumption","Mississippi","MS",2351 +2022-03-01,"Commercial Consumption","Illinois","IL",27845 +2022-03-01,"Commercial Consumption","West Virginia","WV",2688 +2022-03-01,"Commercial Consumption","North Dakota","ND",2426 +2022-03-01,"Commercial Consumption","Colorado","CO",7802 +2022-03-01,"Commercial Consumption","Oregon","OR",3284 +2022-03-01,"Commercial Consumption","Missouri","MO",7598 +2022-03-01,"Commercial Consumption","Maryland","MD",7268 +2022-03-01,"Commercial Consumption","Florida","FL",5903 +2022-03-01,"Commercial Consumption","Alaska","AK",1650 +2022-03-01,"Commercial Consumption","California","CA",21372 +2022-03-01,"Commercial Consumption","Pennsylvania","PA",21907 +2022-03-01,"Commercial Consumption","Kansas","KS",5276 +2022-03-01,"Commercial Consumption","Arkansas","AR",6407 +2022-03-01,"Commercial Consumption","Alabama","AL",2323 +2022-03-01,"Commercial Consumption","Michigan","MI",22523 +2022-03-01,"Commercial Consumption","Indiana","IN",10510 +2022-03-01,"Commercial Consumption","District of Columbia","DC",2073 +2022-03-01,"Delivered to Consumers","West Virginia","WV",9822 +2022-03-01,"Delivered to Consumers","Kansas","KS",26569 +2022-03-01,"Delivered to Consumers","Arkansas","AR",34660 +2022-03-01,"Delivered to Consumers","Pennsylvania","PA",148915 +2022-03-01,"Delivered to Consumers","California","CA",155511 +2022-03-01,"Delivered to Consumers","Florida","FL",119146 +2022-03-01,"Delivered to Consumers","New Mexico","NM",12968 +2022-03-01,"Delivered to Consumers","Vermont","VT",1531 +2022-03-01,"Delivered to Consumers","Kentucky","KY",26598 +2022-03-01,"Delivered to Consumers","Iowa","IA",37941 +2022-03-01,"Delivered to Consumers","Louisiana","LA",127753 +2022-03-01,"Delivered to Consumers","New Hampshire","NH",4976 +2022-03-01,"Delivered to Consumers","Minnesota","MN",52842 +2022-03-01,"Delivered to Consumers","Delaware","DE",6519 +2022-03-01,"Delivered to Consumers","New York","NY",134804 +2022-03-01,"Delivered to Consumers","Tennessee","TN",38283 +2022-03-01,"Delivered to Consumers","Michigan","MI",102206 +2022-03-01,"Delivered to Consumers","Virginia","VA",NA +2022-03-01,"Delivered to Consumers","Nebraska","NE",15798 +2022-03-01,"Delivered to Consumers","Massachusetts","MA",40972 +2022-03-01,"Delivered to Consumers","Alaska","AK",11162 +2022-03-01,"Delivered to Consumers","Idaho","ID",10824 +2022-03-01,"Delivered to Consumers","New Jersey","NJ",66552 +2022-03-01,"Delivered to Consumers","North Dakota","ND",8941 +2022-03-01,"Delivered to Consumers","District of Columbia","DC",3462 +2022-03-01,"Delivered to Consumers","U.S.","U.S.",2514765 +2022-03-01,"Delivered to Consumers","Indiana","IN",79099 +2022-03-01,"Delivered to Consumers","Illinois","IL",112088 +2022-03-01,"Delivered to Consumers","Rhode Island","RI",8881 +2022-03-01,"Delivered to Consumers","Maryland","MD",25403 +2022-03-01,"Delivered to Consumers","Ohio","OH",123473 +2022-03-01,"Delivered to Consumers","Connecticut","CT",28004 +2022-03-01,"Delivered to Consumers","Alabama","AL",55254 +2022-03-01,"Delivered to Consumers","Utah","UT",21519 +2022-03-01,"Delivered to Consumers","South Dakota","SD",8269 +2022-03-01,"Delivered to Consumers","Colorado","CO",43408 +2022-03-01,"Delivered to Consumers","Oregon","OR",23171 +2022-03-01,"Delivered to Consumers","Maine","ME",5484 +2022-03-01,"Delivered to Consumers","Wyoming","WY",9838 +2022-03-01,"Delivered to Consumers","Montana","MT",8021 +2022-03-01,"Delivered to Consumers","Hawaii","HI",243 +2022-03-01,"Delivered to Consumers","Oklahoma","OK",42896 +2022-03-01,"Delivered to Consumers","North Carolina","NC",52117 +2022-03-01,"Delivered to Consumers","Missouri","MO",28776 +2022-03-01,"Delivered to Consumers","Texas","TX",314842 +2022-03-01,"Delivered to Consumers","Wisconsin","WI",58120 +2022-03-01,"Delivered to Consumers","Mississippi","MS",42818 +2022-03-01,"Delivered to Consumers","South Carolina","SC",25583 +2022-03-01,"Delivered to Consumers","Nevada","NV",23678 +2022-03-01,"Delivered to Consumers","Georgia","GA",58334 +2022-03-01,"Delivered to Consumers","Arizona","AZ",32692 +2022-03-01,"Delivered to Consumers","Washington","WA",28313 +2022-03-01,"Electric Power Consumption","West Virginia","WV",704 +2022-03-01,"Electric Power Consumption","Mississippi","MS",26380 +2022-03-01,"Electric Power Consumption","Hawaii","HI",NA +2022-03-01,"Electric Power Consumption","Indiana","IN",15677 +2022-03-01,"Electric Power Consumption","Alaska","AK",1656 +2022-03-01,"Electric Power Consumption","New Jersey","NJ",15690 +2022-03-01,"Electric Power Consumption","Utah","UT",5233 +2022-03-01,"Electric Power Consumption","Michigan","MI",20981 +2022-03-01,"Electric Power Consumption","Wisconsin","WI",10258 +2022-03-01,"Electric Power Consumption","North Dakota","ND",876 +2022-03-01,"Electric Power Consumption","Montana","MT",292 +2022-03-01,"Electric Power Consumption","Florida","FL",98804 +2022-03-01,"Electric Power Consumption","South Carolina","SC",11269 +2022-03-01,"Electric Power Consumption","New York","NY",30220 +2022-03-01,"Electric Power Consumption","Texas","TX",92999 +2022-03-01,"Electric Power Consumption","Minnesota","MN",4823 +2022-03-01,"Electric Power Consumption","Illinois","IL",10061 +2022-03-01,"Electric Power Consumption","Massachusetts","MA",8040 +2022-03-01,"Electric Power Consumption","Kansas","KS",1404 +2022-03-01,"Electric Power Consumption","U.S.","U.S.",779245 +2022-03-01,"Electric Power Consumption","Alabama","AL",30200 +2022-03-01,"Electric Power Consumption","Washington","WA",5038 +2022-03-01,"Electric Power Consumption","Rhode Island","RI",4216 +2022-03-01,"Electric Power Consumption","Wyoming","WY",194 +2022-03-01,"Electric Power Consumption","Connecticut","CT",13179 +2022-03-01,"Electric Power Consumption","Arizona","AZ",21103 +2022-03-01,"Electric Power Consumption","Oregon","OR",9708 +2022-03-01,"Electric Power Consumption","Vermont","VT",2 +2022-03-01,"Electric Power Consumption","North Carolina","NC",30636 +2022-03-01,"Electric Power Consumption","Missouri","MO",2797 +2022-03-01,"Electric Power Consumption","Kentucky","KY",5681 +2022-03-01,"Electric Power Consumption","Maryland","MD",7631 +2022-03-01,"Electric Power Consumption","Virginia","VA",28599 +2022-03-01,"Electric Power Consumption","Ohio","OH",37814 +2022-03-01,"Electric Power Consumption","Idaho","ID",1857 +2022-03-01,"Electric Power Consumption","Colorado","CO",8928 +2022-03-01,"Electric Power Consumption","Oklahoma","OK",11145 +2022-03-01,"Electric Power Consumption","Pennsylvania","PA",71720 +2022-03-01,"Electric Power Consumption","Nebraska","NE",NA +2022-03-01,"Electric Power Consumption","New Hampshire","NH",1893 +2022-03-01,"Electric Power Consumption","Georgia","GA",26536 +2022-03-01,"Electric Power Consumption","California","CA",35419 +2022-03-01,"Electric Power Consumption","New Mexico","NM",4948 +2022-03-01,"Electric Power Consumption","Louisiana","LA",20756 +2022-03-01,"Electric Power Consumption","Arkansas","AR",13895 +2022-03-01,"Electric Power Consumption","Nevada","NV",12375 +2022-03-01,"Electric Power Consumption","Iowa","IA",2483 +2022-03-01,"Electric Power Consumption","Tennessee","TN",11391 +2022-03-01,"Electric Power Consumption","South Dakota","SD",NA +2022-03-01,"Electric Power Consumption","Maine","ME",1941 +2022-03-01,"Electric Power Consumption","Delaware","DE",1090 +2022-03-01,"Industrial Consumption","New Mexico","NM",693 +2022-03-01,"Industrial Consumption","Nevada","NV",1567 +2022-03-01,"Industrial Consumption","Maryland","MD",1437 +2022-03-01,"Industrial Consumption","Washington","WA",7782 +2022-03-01,"Industrial Consumption","Mississippi","MS",11261 +2022-03-01,"Industrial Consumption","California","CA",54342 +2022-03-01,"Industrial Consumption","Arkansas","AR",9346 +2022-03-01,"Industrial Consumption","Texas","TX",170021 +2022-03-01,"Industrial Consumption","Vermont","VT",208 +2022-03-01,"Industrial Consumption","New Jersey","NJ",5635 +2022-03-01,"Industrial Consumption","Idaho","ID",3362 +2022-03-01,"Industrial Consumption","Iowa","IA",21506 +2022-03-01,"Industrial Consumption","Ohio","OH",29326 +2022-03-01,"Industrial Consumption","Minnesota","MN",14185 +2022-03-01,"Industrial Consumption","Rhode Island","RI",768 +2022-03-01,"Industrial Consumption","Georgia","GA",13645 +2022-03-01,"Industrial Consumption","Alaska","AK",5756 +2022-03-01,"Industrial Consumption","Oregon","OR",5224 +2022-03-01,"Industrial Consumption","Illinois","IL",23837 +2022-03-01,"Industrial Consumption","North Dakota","ND",3484 +2022-03-01,"Industrial Consumption","Massachusetts","MA",5351 +2022-03-01,"Industrial Consumption","Missouri","MO",6535 +2022-03-01,"Industrial Consumption","Louisiana","LA",99132 +2022-03-01,"Industrial Consumption","Colorado","CO",8558 +2022-03-01,"Industrial Consumption","Pennsylvania","PA",22392 +2022-03-01,"Industrial Consumption","Virginia","VA",NA +2022-03-01,"Industrial Consumption","Wyoming","WY",5653 +2022-03-01,"Industrial Consumption","Tennessee","TN",12656 +2022-03-01,"Industrial Consumption","Delaware","DE",2793 +2022-03-01,"Industrial Consumption","District of Columbia","DC",0 +2022-03-01,"Industrial Consumption","Arizona","AZ",1825 +2022-03-01,"Industrial Consumption","U.S.","U.S.",752915 +2022-03-01,"Industrial Consumption","New York","NY",8339 +2022-03-01,"Industrial Consumption","Nebraska","NE",6696 +2022-03-01,"Industrial Consumption","West Virginia","WV",3306 +2022-03-01,"Industrial Consumption","Wisconsin","WI",14998 +2022-03-01,"Industrial Consumption","New Hampshire","NH",908 +2022-03-01,"Industrial Consumption","Connecticut","CT",1848 +2022-03-01,"Industrial Consumption","North Carolina","NC",11084 +2022-03-01,"Industrial Consumption","Hawaii","HI",9 +2022-03-01,"Industrial Consumption","Oklahoma","OK",18489 +2022-03-01,"Industrial Consumption","Maine","ME",1965 +2022-03-01,"Industrial Consumption","Alabama","AL",19374 +2022-03-01,"Industrial Consumption","South Carolina","SC",8878 +2022-03-01,"Industrial Consumption","Florida","FL",11872 +2022-03-01,"Industrial Consumption","Michigan","MI",17369 +2022-03-01,"Industrial Consumption","Montana","MT",2293 +2022-03-01,"Industrial Consumption","South Dakota","SD",4286 +2022-03-01,"Industrial Consumption","Kansas","KS",11826 +2022-03-01,"Industrial Consumption","Utah","UT",3450 +2022-03-01,"Industrial Consumption","Kentucky","KY",11786 +2022-03-01,"Industrial Consumption","Indiana","IN",36273 +2022-03-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",164267 +2022-03-01,"Pipeline Fuel Consumption","U.S.","U.S.",102458 +2022-03-01,"Residential Consumption","Tennessee","TN",8169 +2022-03-01,"Residential Consumption","Georgia","GA",12643 +2022-03-01,"Residential Consumption","District of Columbia","DC",1369 +2022-03-01,"Residential Consumption","Indiana","IN",16638 +2022-03-01,"Residential Consumption","Florida","FL",2086 +2022-03-01,"Residential Consumption","Delaware","DE",1517 +2022-03-01,"Residential Consumption","Rhode Island","RI",2392 +2022-03-01,"Residential Consumption","Ohio","OH",35180 +2022-03-01,"Residential Consumption","North Carolina","NC",5228 +2022-03-01,"Residential Consumption","Connecticut","CT",6596 +2022-03-01,"Residential Consumption","Maryland","MD",9042 +2022-03-01,"Residential Consumption","South Dakota","SD",1976 +2022-03-01,"Residential Consumption","Arkansas","AR",5004 +2022-03-01,"Residential Consumption","New Hampshire","NH",966 +2022-03-01,"Residential Consumption","West Virginia","WV",3123 +2022-03-01,"Residential Consumption","Hawaii","HI",51 +2022-03-01,"Residential Consumption","Nebraska","NE",5044 +2022-03-01,"Residential Consumption","Nevada","NV",5988 +2022-03-01,"Residential Consumption","Minnesota","MN",18967 +2022-03-01,"Residential Consumption","Pennsylvania","PA",32750 +2022-03-01,"Residential Consumption","Massachusetts","MA",15880 +2022-03-01,"Residential Consumption","Idaho","ID",3397 +2022-03-01,"Residential Consumption","California","CA",42228 +2022-03-01,"Residential Consumption","Illinois","IL",50335 +2022-03-01,"Residential Consumption","Texas","TX",31841 +2022-03-01,"Residential Consumption","South Carolina","SC",3047 +2022-03-01,"Residential Consumption","Louisiana","LA",4570 +2022-03-01,"Residential Consumption","Wisconsin","WI",18424 +2022-03-01,"Residential Consumption","North Dakota","ND",2155 +2022-03-01,"Residential Consumption","New York","NY",60393 +2022-03-01,"Residential Consumption","Oregon","OR",4951 +2022-03-01,"Residential Consumption","New Mexico","NM",4435 +2022-03-01,"Residential Consumption","Kansas","KS",7992 +2022-03-01,"Residential Consumption","Alabama","AL",3351 +2022-03-01,"Residential Consumption","Mississippi","MS",2826 +2022-03-01,"Residential Consumption","Montana","MT",2591 +2022-03-01,"Residential Consumption","Colorado","CO",18032 +2022-03-01,"Residential Consumption","Alaska","AK",2100 +2022-03-01,"Residential Consumption","U.S.","U.S.",590914 +2022-03-01,"Residential Consumption","Utah","UT",8071 +2022-03-01,"Residential Consumption","Maine","ME",406 +2022-03-01,"Residential Consumption","New Jersey","NJ",28297 +2022-03-01,"Residential Consumption","Oklahoma","OK",7875 +2022-03-01,"Residential Consumption","Arizona","AZ",5720 +2022-03-01,"Residential Consumption","Wyoming","WY",2107 +2022-03-01,"Residential Consumption","Iowa","IA",8000 +2022-03-01,"Residential Consumption","Vermont","VT",539 +2022-03-01,"Residential Consumption","Virginia","VA",8928 +2022-03-01,"Residential Consumption","Michigan","MI",41333 +2022-03-01,"Residential Consumption","Kentucky","KY",5261 +2022-03-01,"Residential Consumption","Washington","WA",9272 +2022-03-01,"Residential Consumption","Missouri","MO",11830 +2022-03-01,"Vehicle Fuel Consumption","Wisconsin","WI",43 +2022-03-01,"Vehicle Fuel Consumption","Pennsylvania","PA",147 +2022-03-01,"Vehicle Fuel Consumption","Oklahoma","OK",151 +2022-03-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2022-03-01,"Vehicle Fuel Consumption","Texas","TX",101 +2022-03-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2022-03-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2022-03-01,"Vehicle Fuel Consumption","New York","NY",85 +2022-03-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2022-03-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2022-03-01,"Vehicle Fuel Consumption","North Carolina","NC",150 +2022-03-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2022-03-01,"Vehicle Fuel Consumption","California","CA",2149 +2022-03-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2022-03-01,"Vehicle Fuel Consumption","Nevada","NV",104 +2022-03-01,"Vehicle Fuel Consumption","Arizona","AZ",186 +2022-03-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-03-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2022-03-01,"Vehicle Fuel Consumption","Florida","FL",481 +2022-03-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-03-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2022-03-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-03-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-03-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-03-01,"Vehicle Fuel Consumption","District of Columbia","DC",20 +2022-03-01,"Vehicle Fuel Consumption","Missouri","MO",17 +2022-03-01,"Vehicle Fuel Consumption","New Jersey","NJ",25 +2022-03-01,"Vehicle Fuel Consumption","Colorado","CO",87 +2022-03-01,"Vehicle Fuel Consumption","Illinois","IL",9 +2022-03-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2022-03-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-03-01,"Vehicle Fuel Consumption","Louisiana","LA",113 +2022-03-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-03-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2022-03-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2022-03-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-03-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-03-01,"Vehicle Fuel Consumption","Utah","UT",25 +2022-03-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2022-03-01,"Vehicle Fuel Consumption","Ohio","OH",105 +2022-03-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2022-03-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-03-01,"Vehicle Fuel Consumption","New Mexico","NM",35 +2022-03-01,"Vehicle Fuel Consumption","Tennessee","TN",34 +2022-03-01,"Vehicle Fuel Consumption","Virginia","VA",58 +2022-03-01,"Vehicle Fuel Consumption","Kansas","KS",71 +2022-03-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2022-03-01,"Vehicle Fuel Consumption","Nebraska","NE",15 +2022-03-01,"Vehicle Fuel Consumption","Maryland","MD",25 +2022-03-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2022-03-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-03-01,"Vehicle Fuel Consumption","Georgia","GA",146 +2022-04-01,"Commercial Consumption","Utah","UT",3666 +2022-04-01,"Commercial Consumption","Missouri","MO",4843 +2022-04-01,"Commercial Consumption","Montana","MT",2459 +2022-04-01,"Commercial Consumption","Vermont","VT",582 +2022-04-01,"Commercial Consumption","Iowa","IA",4606 +2022-04-01,"Commercial Consumption","Delaware","DE",763 +2022-04-01,"Commercial Consumption","Illinois","IL",21168 +2022-04-01,"Commercial Consumption","Massachusetts","MA",7562 +2022-04-01,"Commercial Consumption","New Jersey","NJ",12054 +2022-04-01,"Commercial Consumption","Texas","TX",13760 +2022-04-01,"Commercial Consumption","Rhode Island","RI",853 +2022-04-01,"Commercial Consumption","Ohio","OH",14096 +2022-04-01,"Commercial Consumption","Nebraska","NE",2504 +2022-04-01,"Commercial Consumption","Washington","WA",5592 +2022-04-01,"Commercial Consumption","New Hampshire","NH",742 +2022-04-01,"Commercial Consumption","Kentucky","KY",2519 +2022-04-01,"Commercial Consumption","Georgia","GA",3668 +2022-04-01,"Commercial Consumption","Idaho","ID",1803 +2022-04-01,"Commercial Consumption","Hawaii","HI",195 +2022-04-01,"Commercial Consumption","Tennessee","TN",4129 +2022-04-01,"Commercial Consumption","Michigan","MI",16596 +2022-04-01,"Commercial Consumption","West Virginia","WV",1840 +2022-04-01,"Commercial Consumption","Florida","FL",5154 +2022-04-01,"Commercial Consumption","California","CA",18637 +2022-04-01,"Commercial Consumption","Arizona","AZ",2761 +2022-04-01,"Commercial Consumption","North Carolina","NC",3430 +2022-04-01,"Commercial Consumption","Minnesota","MN",11265 +2022-04-01,"Commercial Consumption","Wisconsin","WI",9761 +2022-04-01,"Commercial Consumption","South Dakota","SD",1196 +2022-04-01,"Commercial Consumption","Maryland","MD",6511 +2022-04-01,"Commercial Consumption","Connecticut","CT",4280 +2022-04-01,"Commercial Consumption","New York","NY",23629 +2022-04-01,"Commercial Consumption","Mississippi","MS",1491 +2022-04-01,"Commercial Consumption","Nevada","NV",2658 +2022-04-01,"Commercial Consumption","Louisiana","LA",2462 +2022-04-01,"Commercial Consumption","District of Columbia","DC",1152 +2022-04-01,"Commercial Consumption","South Carolina","SC",1883 +2022-04-01,"Commercial Consumption","North Dakota","ND",1641 +2022-04-01,"Commercial Consumption","Oregon","OR",3062 +2022-04-01,"Commercial Consumption","Kansas","KS",3494 +2022-04-01,"Commercial Consumption","Arkansas","AR",4443 +2022-04-01,"Commercial Consumption","Wyoming","WY",1339 +2022-04-01,"Commercial Consumption","Colorado","CO",5326 +2022-04-01,"Commercial Consumption","New Mexico","NM",1450 +2022-04-01,"Commercial Consumption","Oklahoma","OK",2950 +2022-04-01,"Commercial Consumption","Virginia","VA",6244 +2022-04-01,"Commercial Consumption","Maine","ME",753 +2022-04-01,"Commercial Consumption","U.S.","U.S.",277050 +2022-04-01,"Commercial Consumption","Alaska","AK",1289 +2022-04-01,"Commercial Consumption","Alabama","AL",1736 +2022-04-01,"Commercial Consumption","Pennsylvania","PA",13816 +2022-04-01,"Commercial Consumption","Indiana","IN",7240 +2022-04-01,"Delivered to Consumers","Iowa","IA",30990 +2022-04-01,"Delivered to Consumers","Montana","MT",6992 +2022-04-01,"Delivered to Consumers","Hawaii","HI",257 +2022-04-01,"Delivered to Consumers","Missouri","MO",20878 +2022-04-01,"Delivered to Consumers","Massachusetts","MA",NA +2022-04-01,"Delivered to Consumers","Oregon","OR",23087 +2022-04-01,"Delivered to Consumers","New Mexico","NM",8559 +2022-04-01,"Delivered to Consumers","Vermont","VT",1135 +2022-04-01,"Delivered to Consumers","Maryland","MD",22749 +2022-04-01,"Delivered to Consumers","Idaho","ID",9273 +2022-04-01,"Delivered to Consumers","Michigan","MI",79714 +2022-04-01,"Delivered to Consumers","Connecticut","CT",20863 +2022-04-01,"Delivered to Consumers","Virginia","VA",32276 +2022-04-01,"Delivered to Consumers","Nebraska","NE",12518 +2022-04-01,"Delivered to Consumers","North Carolina","NC",37344 +2022-04-01,"Delivered to Consumers","Mississippi","MS",39095 +2022-04-01,"Delivered to Consumers","California","CA",NA +2022-04-01,"Delivered to Consumers","Florida","FL",117581 +2022-04-01,"Delivered to Consumers","District of Columbia","DC",2132 +2022-04-01,"Delivered to Consumers","Utah","UT",18271 +2022-04-01,"Delivered to Consumers","U.S.","U.S.",2119726 +2022-04-01,"Delivered to Consumers","Illinois","IL",84698 +2022-04-01,"Delivered to Consumers","Alaska","AK",9163 +2022-04-01,"Delivered to Consumers","Oklahoma","OK",36954 +2022-04-01,"Delivered to Consumers","Kansas","KS",20660 +2022-04-01,"Delivered to Consumers","Tennessee","TN",29521 +2022-04-01,"Delivered to Consumers","Arkansas","AR",28255 +2022-04-01,"Delivered to Consumers","Texas","TX",290443 +2022-04-01,"Delivered to Consumers","New Hampshire","NH",5092 +2022-04-01,"Delivered to Consumers","Indiana","IN",68333 +2022-04-01,"Delivered to Consumers","New York","NY",100664 +2022-04-01,"Delivered to Consumers","Pennsylvania","PA",110459 +2022-04-01,"Delivered to Consumers","South Carolina","SC",22169 +2022-04-01,"Delivered to Consumers","Nevada","NV",19824 +2022-04-01,"Delivered to Consumers","Arizona","AZ",32248 +2022-04-01,"Delivered to Consumers","Washington","WA",28479 +2022-04-01,"Delivered to Consumers","Ohio","OH",93350 +2022-04-01,"Delivered to Consumers","Colorado","CO",32540 +2022-04-01,"Delivered to Consumers","Minnesota","MN",44626 +2022-04-01,"Delivered to Consumers","West Virginia","WV",7488 +2022-04-01,"Delivered to Consumers","Rhode Island","RI",6099 +2022-04-01,"Delivered to Consumers","Kentucky","KY",23716 +2022-04-01,"Delivered to Consumers","Wisconsin","WI",47696 +2022-04-01,"Delivered to Consumers","New Jersey","NJ",56324 +2022-04-01,"Delivered to Consumers","Maine","ME",3901 +2022-04-01,"Delivered to Consumers","Louisiana","LA",127742 +2022-04-01,"Delivered to Consumers","Georgia","GA",51611 +2022-04-01,"Delivered to Consumers","North Dakota","ND",7474 +2022-04-01,"Delivered to Consumers","Delaware","DE",6621 +2022-04-01,"Delivered to Consumers","Wyoming","WY",8528 +2022-04-01,"Delivered to Consumers","South Dakota","SD",7355 +2022-04-01,"Delivered to Consumers","Alabama","AL",52437 +2022-04-01,"Electric Power Consumption","Louisiana","LA",27435 +2022-04-01,"Electric Power Consumption","Utah","UT",5287 +2022-04-01,"Electric Power Consumption","Illinois","IL",8451 +2022-04-01,"Electric Power Consumption","Kansas","KS",1242 +2022-04-01,"Electric Power Consumption","Tennessee","TN",8096 +2022-04-01,"Electric Power Consumption","Nebraska","NE",515 +2022-04-01,"Electric Power Consumption","Mississippi","MS",25006 +2022-04-01,"Electric Power Consumption","Delaware","DE",2021 +2022-04-01,"Electric Power Consumption","Florida","FL",100035 +2022-04-01,"Electric Power Consumption","Alaska","AK",1759 +2022-04-01,"Electric Power Consumption","West Virginia","WV",1064 +2022-04-01,"Electric Power Consumption","Nevada","NV",12312 +2022-04-01,"Electric Power Consumption","South Dakota","SD",NA +2022-04-01,"Electric Power Consumption","Missouri","MO",3297 +2022-04-01,"Electric Power Consumption","Kentucky","KY",7130 +2022-04-01,"Electric Power Consumption","North Dakota","ND",1062 +2022-04-01,"Electric Power Consumption","California","CA",36975 +2022-04-01,"Electric Power Consumption","Colorado","CO",7113 +2022-04-01,"Electric Power Consumption","Michigan","MI",19053 +2022-04-01,"Electric Power Consumption","Wisconsin","WI",11798 +2022-04-01,"Electric Power Consumption","Iowa","IA",1407 +2022-04-01,"Electric Power Consumption","Vermont","VT",NA +2022-04-01,"Electric Power Consumption","Georgia","GA",27085 +2022-04-01,"Electric Power Consumption","Washington","WA",6808 +2022-04-01,"Electric Power Consumption","New Mexico","NM",4364 +2022-04-01,"Electric Power Consumption","Arkansas","AR",12790 +2022-04-01,"Electric Power Consumption","Texas","TX",99596 +2022-04-01,"Electric Power Consumption","North Carolina","NC",20996 +2022-04-01,"Electric Power Consumption","Oregon","OR",10236 +2022-04-01,"Electric Power Consumption","Minnesota","MN",5049 +2022-04-01,"Electric Power Consumption","Pennsylvania","PA",56660 +2022-04-01,"Electric Power Consumption","Wyoming","WY",691 +2022-04-01,"Electric Power Consumption","Maine","ME",1211 +2022-04-01,"Electric Power Consumption","Oklahoma","OK",12966 +2022-04-01,"Electric Power Consumption","Massachusetts","MA",8107 +2022-04-01,"Electric Power Consumption","Arizona","AZ",24935 +2022-04-01,"Electric Power Consumption","Virginia","VA",15048 +2022-04-01,"Electric Power Consumption","Idaho","ID",1510 +2022-04-01,"Electric Power Consumption","South Carolina","SC",9735 +2022-04-01,"Electric Power Consumption","New York","NY",30924 +2022-04-01,"Electric Power Consumption","Hawaii","HI",NA +2022-04-01,"Electric Power Consumption","Ohio","OH",28997 +2022-04-01,"Electric Power Consumption","Indiana","IN",17732 +2022-04-01,"Electric Power Consumption","New Jersey","NJ",16729 +2022-04-01,"Electric Power Consumption","Rhode Island","RI",3088 +2022-04-01,"Electric Power Consumption","U.S.","U.S.",748335 +2022-04-01,"Electric Power Consumption","New Hampshire","NH",2936 +2022-04-01,"Electric Power Consumption","Montana","MT",313 +2022-04-01,"Electric Power Consumption","Maryland","MD",7851 +2022-04-01,"Electric Power Consumption","Connecticut","CT",10654 +2022-04-01,"Electric Power Consumption","Alabama","AL",29814 +2022-04-01,"Industrial Consumption","Oklahoma","OK",17370 +2022-04-01,"Industrial Consumption","Louisiana","LA",95364 +2022-04-01,"Industrial Consumption","West Virginia","WV",2636 +2022-04-01,"Industrial Consumption","Michigan","MI",14720 +2022-04-01,"Industrial Consumption","Kentucky","KY",10863 +2022-04-01,"Industrial Consumption","Indiana","IN",32097 +2022-04-01,"Industrial Consumption","Montana","MT",2097 +2022-04-01,"Industrial Consumption","Maryland","MD",1277 +2022-04-01,"Industrial Consumption","Missouri","MO",5453 +2022-04-01,"Industrial Consumption","New York","NY",8084 +2022-04-01,"Industrial Consumption","Arkansas","AR",8471 +2022-04-01,"Industrial Consumption","Wisconsin","WI",12146 +2022-04-01,"Industrial Consumption","North Carolina","NC",9965 +2022-04-01,"Industrial Consumption","District of Columbia","DC",0 +2022-04-01,"Industrial Consumption","Mississippi","MS",11065 +2022-04-01,"Industrial Consumption","Alabama","AL",18749 +2022-04-01,"Industrial Consumption","Virginia","VA",6502 +2022-04-01,"Industrial Consumption","Tennessee","TN",12608 +2022-04-01,"Industrial Consumption","New Hampshire","NH",817 +2022-04-01,"Industrial Consumption","Idaho","ID",2998 +2022-04-01,"Industrial Consumption","Illinois","IL",18767 +2022-04-01,"Industrial Consumption","Georgia","GA",12555 +2022-04-01,"Industrial Consumption","Utah","UT",3585 +2022-04-01,"Industrial Consumption","California","CA",NA +2022-04-01,"Industrial Consumption","South Carolina","SC",8708 +2022-04-01,"Industrial Consumption","Rhode Island","RI",784 +2022-04-01,"Industrial Consumption","Washington","WA",7244 +2022-04-01,"Industrial Consumption","Ohio","OH",25801 +2022-04-01,"Industrial Consumption","New Mexico","NM",586 +2022-04-01,"Industrial Consumption","Nevada","NV",1420 +2022-04-01,"Industrial Consumption","Minnesota","MN",14556 +2022-04-01,"Industrial Consumption","Hawaii","HI",8 +2022-04-01,"Industrial Consumption","South Dakota","SD",4373 +2022-04-01,"Industrial Consumption","Pennsylvania","PA",20298 +2022-04-01,"Industrial Consumption","Wyoming","WY",5026 +2022-04-01,"Industrial Consumption","New Jersey","NJ",5917 +2022-04-01,"Industrial Consumption","Florida","FL",10293 +2022-04-01,"Industrial Consumption","North Dakota","ND",3428 +2022-04-01,"Industrial Consumption","Massachusetts","MA",NA +2022-04-01,"Industrial Consumption","Colorado","CO",7285 +2022-04-01,"Industrial Consumption","Arizona","AZ",1480 +2022-04-01,"Industrial Consumption","Oregon","OR",5049 +2022-04-01,"Industrial Consumption","Vermont","VT",183 +2022-04-01,"Industrial Consumption","Iowa","IA",19243 +2022-04-01,"Industrial Consumption","Connecticut","CT",1758 +2022-04-01,"Industrial Consumption","Delaware","DE",2877 +2022-04-01,"Industrial Consumption","Kansas","KS",11619 +2022-04-01,"Industrial Consumption","U.S.","U.S.",700098 +2022-04-01,"Industrial Consumption","Maine","ME",1692 +2022-04-01,"Industrial Consumption","Texas","TX",162878 +2022-04-01,"Industrial Consumption","Nebraska","NE",6392 +2022-04-01,"Industrial Consumption","Alaska","AK",4608 +2022-04-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",160523 +2022-04-01,"Pipeline Fuel Consumption","U.S.","U.S.",87207 +2022-04-01,"Residential Consumption","Hawaii","HI",54 +2022-04-01,"Residential Consumption","Wisconsin","WI",13949 +2022-04-01,"Residential Consumption","Nebraska","NE",3092 +2022-04-01,"Residential Consumption","South Dakota","SD",1337 +2022-04-01,"Residential Consumption","Pennsylvania","PA",19544 +2022-04-01,"Residential Consumption","Arkansas","AR",2544 +2022-04-01,"Residential Consumption","Montana","MT",2123 +2022-04-01,"Residential Consumption","Oklahoma","OK",3522 +2022-04-01,"Residential Consumption","Delaware","DE",959 +2022-04-01,"Residential Consumption","Illinois","IL",36304 +2022-04-01,"Residential Consumption","Mississippi","MS",1532 +2022-04-01,"Residential Consumption","Louisiana","LA",2371 +2022-04-01,"Residential Consumption","Iowa","IA",5732 +2022-04-01,"Residential Consumption","Vermont","VT",369 +2022-04-01,"Residential Consumption","Nevada","NV",3334 +2022-04-01,"Residential Consumption","Rhode Island","RI",1366 +2022-04-01,"Residential Consumption","Maine","ME",246 +2022-04-01,"Residential Consumption","Washington","WA",8826 +2022-04-01,"Residential Consumption","Alabama","AL",2131 +2022-04-01,"Residential Consumption","Wyoming","WY",1470 +2022-04-01,"Residential Consumption","South Carolina","SC",1834 +2022-04-01,"Residential Consumption","Connecticut","CT",4153 +2022-04-01,"Residential Consumption","Georgia","GA",8162 +2022-04-01,"Residential Consumption","North Dakota","ND",1343 +2022-04-01,"Residential Consumption","Idaho","ID",2958 +2022-04-01,"Residential Consumption","Kentucky","KY",3201 +2022-04-01,"Residential Consumption","Colorado","CO",12732 +2022-04-01,"Residential Consumption","Kansas","KS",4237 +2022-04-01,"Residential Consumption","California","CA",NA +2022-04-01,"Residential Consumption","New York","NY",37945 +2022-04-01,"Residential Consumption","Virginia","VA",4426 +2022-04-01,"Residential Consumption","Michigan","MI",29345 +2022-04-01,"Residential Consumption","New Mexico","NM",2125 +2022-04-01,"Residential Consumption","Oregon","OR",4734 +2022-04-01,"Residential Consumption","North Carolina","NC",2808 +2022-04-01,"Residential Consumption","Massachusetts","MA",8662 +2022-04-01,"Residential Consumption","Alaska","AK",1507 +2022-04-01,"Residential Consumption","Texas","TX",14112 +2022-04-01,"Residential Consumption","Ohio","OH",24354 +2022-04-01,"Residential Consumption","Tennessee","TN",4655 +2022-04-01,"Residential Consumption","Minnesota","MN",13718 +2022-04-01,"Residential Consumption","District of Columbia","DC",960 +2022-04-01,"Residential Consumption","Florida","FL",1633 +2022-04-01,"Residential Consumption","West Virginia","WV",1947 +2022-04-01,"Residential Consumption","U.S.","U.S.",389874 +2022-04-01,"Residential Consumption","Utah","UT",5709 +2022-04-01,"Residential Consumption","Maryland","MD",7085 +2022-04-01,"Residential Consumption","Indiana","IN",11264 +2022-04-01,"Residential Consumption","New Jersey","NJ",21599 +2022-04-01,"Residential Consumption","New Hampshire","NH",595 +2022-04-01,"Residential Consumption","Missouri","MO",7269 +2022-04-01,"Residential Consumption","Arizona","AZ",2892 +2022-04-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2022-04-01,"Vehicle Fuel Consumption","Tennessee","TN",33 +2022-04-01,"Vehicle Fuel Consumption","Ohio","OH",101 +2022-04-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2022-04-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-04-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2022-04-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-04-01,"Vehicle Fuel Consumption","U.S.","U.S.",4369 +2022-04-01,"Vehicle Fuel Consumption","Utah","UT",24 +2022-04-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-04-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-04-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2022-04-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2022-04-01,"Vehicle Fuel Consumption","Kansas","KS",69 +2022-04-01,"Vehicle Fuel Consumption","Arizona","AZ",180 +2022-04-01,"Vehicle Fuel Consumption","Florida","FL",466 +2022-04-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2022-04-01,"Vehicle Fuel Consumption","Texas","TX",98 +2022-04-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2022-04-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-04-01,"Vehicle Fuel Consumption","North Carolina","NC",145 +2022-04-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2022-04-01,"Vehicle Fuel Consumption","Oklahoma","OK",146 +2022-04-01,"Vehicle Fuel Consumption","Nebraska","NE",14 +2022-04-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-04-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2022-04-01,"Vehicle Fuel Consumption","Georgia","GA",141 +2022-04-01,"Vehicle Fuel Consumption","Wisconsin","WI",41 +2022-04-01,"Vehicle Fuel Consumption","Louisiana","LA",109 +2022-04-01,"Vehicle Fuel Consumption","Illinois","IL",9 +2022-04-01,"Vehicle Fuel Consumption","Pennsylvania","PA",142 +2022-04-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-04-01,"Vehicle Fuel Consumption","Missouri","MO",16 +2022-04-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-04-01,"Vehicle Fuel Consumption","California","CA",2080 +2022-04-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-04-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-04-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2022-04-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2022-04-01,"Vehicle Fuel Consumption","District of Columbia","DC",20 +2022-04-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2022-04-01,"Vehicle Fuel Consumption","New Jersey","NJ",25 +2022-04-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2022-04-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-04-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2022-04-01,"Vehicle Fuel Consumption","New York","NY",82 +2022-04-01,"Vehicle Fuel Consumption","Nevada","NV",101 +2022-04-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2022-04-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2022-04-01,"Vehicle Fuel Consumption","Colorado","CO",84 +2022-04-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2022-04-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-05-01,"Commercial Consumption","South Carolina","SC",1627 +2022-05-01,"Commercial Consumption","Virginia","VA",4053 +2022-05-01,"Commercial Consumption","Arkansas","AR",3198 +2022-05-01,"Commercial Consumption","Nevada","NV",2395 +2022-05-01,"Commercial Consumption","Wyoming","WY",852 +2022-05-01,"Commercial Consumption","Colorado","CO",2955 +2022-05-01,"Commercial Consumption","Wisconsin","WI",5539 +2022-05-01,"Commercial Consumption","Hawaii","HI",191 +2022-05-01,"Commercial Consumption","Connecticut","CT",2814 +2022-05-01,"Commercial Consumption","Louisiana","LA",1995 +2022-05-01,"Commercial Consumption","Massachusetts","MA",4923 +2022-05-01,"Commercial Consumption","New Hampshire","NH",315 +2022-05-01,"Commercial Consumption","Vermont","VT",288 +2022-05-01,"Commercial Consumption","Delaware","DE",478 +2022-05-01,"Commercial Consumption","Utah","UT",2606 +2022-05-01,"Commercial Consumption","Maryland","MD",3729 +2022-05-01,"Commercial Consumption","Georgia","GA",2582 +2022-05-01,"Commercial Consumption","Arizona","AZ",2397 +2022-05-01,"Commercial Consumption","Tennessee","TN",2712 +2022-05-01,"Commercial Consumption","District of Columbia","DC",833 +2022-05-01,"Commercial Consumption","Washington","WA",3999 +2022-05-01,"Commercial Consumption","North Dakota","ND",1028 +2022-05-01,"Commercial Consumption","North Carolina","NC",2790 +2022-05-01,"Commercial Consumption","Minnesota","MN",5485 +2022-05-01,"Commercial Consumption","Oklahoma","OK",2117 +2022-05-01,"Commercial Consumption","South Dakota","SD",583 +2022-05-01,"Commercial Consumption","Maine","ME",430 +2022-05-01,"Commercial Consumption","Kentucky","KY",1480 +2022-05-01,"Commercial Consumption","Iowa","IA",2292 +2022-05-01,"Commercial Consumption","Mississippi","MS",1074 +2022-05-01,"Commercial Consumption","Illinois","IL",11731 +2022-05-01,"Commercial Consumption","Kansas","KS",2750 +2022-05-01,"Commercial Consumption","Rhode Island","RI",469 +2022-05-01,"Commercial Consumption","New York","NY",16958 +2022-05-01,"Commercial Consumption","Indiana","IN",3481 +2022-05-01,"Commercial Consumption","West Virginia","WV",1042 +2022-05-01,"Commercial Consumption","Oregon","OR",2132 +2022-05-01,"Commercial Consumption","Pennsylvania","PA",7566 +2022-05-01,"Commercial Consumption","Missouri","MO",2948 +2022-05-01,"Commercial Consumption","Montana","MT",1655 +2022-05-01,"Commercial Consumption","Idaho","ID",1268 +2022-05-01,"Commercial Consumption","Alaska","AK",826 +2022-05-01,"Commercial Consumption","California","CA",17212 +2022-05-01,"Commercial Consumption","Nebraska","NE",1746 +2022-05-01,"Commercial Consumption","New Mexico","NM",1398 +2022-05-01,"Commercial Consumption","New Jersey","NJ",8949 +2022-05-01,"Commercial Consumption","U.S.","U.S.",183349 +2022-05-01,"Commercial Consumption","Texas","TX",12260 +2022-05-01,"Commercial Consumption","Florida","FL",4872 +2022-05-01,"Commercial Consumption","Ohio","OH",6944 +2022-05-01,"Commercial Consumption","Alabama","AL",1207 +2022-05-01,"Commercial Consumption","Michigan","MI",8174 +2022-05-01,"Delivered to Consumers","Utah","UT",15028 +2022-05-01,"Delivered to Consumers","Indiana","IN",56973 +2022-05-01,"Delivered to Consumers","South Dakota","SD",5582 +2022-05-01,"Delivered to Consumers","Michigan","MI",48372 +2022-05-01,"Delivered to Consumers","Alabama","AL",60920 +2022-05-01,"Delivered to Consumers","Texas","TX",333879 +2022-05-01,"Delivered to Consumers","Arizona","AZ",31685 +2022-05-01,"Delivered to Consumers","North Dakota","ND",6146 +2022-05-01,"Delivered to Consumers","U.S.","U.S.",1991912 +2022-05-01,"Delivered to Consumers","Montana","MT",4763 +2022-05-01,"Delivered to Consumers","Hawaii","HI",249 +2022-05-01,"Delivered to Consumers","Tennessee","TN",24230 +2022-05-01,"Delivered to Consumers","Arkansas","AR",25933 +2022-05-01,"Delivered to Consumers","Wisconsin","WI",32427 +2022-05-01,"Delivered to Consumers","Oregon","OR",15743 +2022-05-01,"Delivered to Consumers","District of Columbia","DC",1295 +2022-05-01,"Delivered to Consumers","Wyoming","WY",7363 +2022-05-01,"Delivered to Consumers","Rhode Island","RI",6599 +2022-05-01,"Delivered to Consumers","New York","NY",82414 +2022-05-01,"Delivered to Consumers","Kansas","KS",19151 +2022-05-01,"Delivered to Consumers","Ohio","OH",76244 +2022-05-01,"Delivered to Consumers","Colorado","CO",24512 +2022-05-01,"Delivered to Consumers","New Jersey","NJ",46889 +2022-05-01,"Delivered to Consumers","New Hampshire","NH",4990 +2022-05-01,"Delivered to Consumers","Florida","FL",141510 +2022-05-01,"Delivered to Consumers","Maryland","MD",15874 +2022-05-01,"Delivered to Consumers","Idaho","ID",7349 +2022-05-01,"Delivered to Consumers","Iowa","IA",27255 +2022-05-01,"Delivered to Consumers","Connecticut","CT",17942 +2022-05-01,"Delivered to Consumers","Missouri","MO",15575 +2022-05-01,"Delivered to Consumers","South Carolina","SC",27685 +2022-05-01,"Delivered to Consumers","Nevada","NV",19907 +2022-05-01,"Delivered to Consumers","Maine","ME",4454 +2022-05-01,"Delivered to Consumers","Georgia","GA",56755 +2022-05-01,"Delivered to Consumers","Washington","WA",19031 +2022-05-01,"Delivered to Consumers","New Mexico","NM",9854 +2022-05-01,"Delivered to Consumers","Kentucky","KY",22220 +2022-05-01,"Delivered to Consumers","Virginia","VA",35147 +2022-05-01,"Delivered to Consumers","Pennsylvania","PA",99067 +2022-05-01,"Delivered to Consumers","North Carolina","NC",45459 +2022-05-01,"Delivered to Consumers","Mississippi","MS",39792 +2022-05-01,"Delivered to Consumers","Vermont","VT",638 +2022-05-01,"Delivered to Consumers","Alaska","AK",7238 +2022-05-01,"Delivered to Consumers","California","CA",134224 +2022-05-01,"Delivered to Consumers","West Virginia","WV",5921 +2022-05-01,"Delivered to Consumers","Illinois","IL",62266 +2022-05-01,"Delivered to Consumers","Massachusetts","MA",22876 +2022-05-01,"Delivered to Consumers","Delaware","DE",5461 +2022-05-01,"Delivered to Consumers","Oklahoma","OK",45324 +2022-05-01,"Delivered to Consumers","Nebraska","NE",11321 +2022-05-01,"Delivered to Consumers","Louisiana","LA",132002 +2022-05-01,"Delivered to Consumers","Minnesota","MN",28379 +2022-05-01,"Electric Power Consumption","Washington","WA",2447 +2022-05-01,"Electric Power Consumption","Virginia","VA",22825 +2022-05-01,"Electric Power Consumption","Idaho","ID",1423 +2022-05-01,"Electric Power Consumption","Massachusetts","MA",9695 +2022-05-01,"Electric Power Consumption","Hawaii","HI",NA +2022-05-01,"Electric Power Consumption","Delaware","DE",1712 +2022-05-01,"Electric Power Consumption","Georgia","GA",36361 +2022-05-01,"Electric Power Consumption","Louisiana","LA",34310 +2022-05-01,"Electric Power Consumption","Colorado","CO",8858 +2022-05-01,"Electric Power Consumption","Oregon","OR",5784 +2022-05-01,"Electric Power Consumption","Illinois","IL",14513 +2022-05-01,"Electric Power Consumption","Pennsylvania","PA",63189 +2022-05-01,"Electric Power Consumption","Wyoming","WY",1005 +2022-05-01,"Electric Power Consumption","South Dakota","SD",616 +2022-05-01,"Electric Power Consumption","Mississippi","MS",27811 +2022-05-01,"Electric Power Consumption","New Hampshire","NH",3597 +2022-05-01,"Electric Power Consumption","Arizona","AZ",25841 +2022-05-01,"Electric Power Consumption","Florida","FL",124495 +2022-05-01,"Electric Power Consumption","Alaska","AK",1487 +2022-05-01,"Electric Power Consumption","South Carolina","SC",16680 +2022-05-01,"Electric Power Consumption","Minnesota","MN",4935 +2022-05-01,"Electric Power Consumption","Kentucky","KY",10102 +2022-05-01,"Electric Power Consumption","Ohio","OH",36212 +2022-05-01,"Electric Power Consumption","Indiana","IN",18317 +2022-05-01,"Electric Power Consumption","Alabama","AL",40260 +2022-05-01,"Electric Power Consumption","New Mexico","NM",6448 +2022-05-01,"Electric Power Consumption","Utah","UT",5264 +2022-05-01,"Electric Power Consumption","Michigan","MI",18112 +2022-05-01,"Electric Power Consumption","U.S.","U.S.",925471 +2022-05-01,"Electric Power Consumption","Missouri","MO",4713 +2022-05-01,"Electric Power Consumption","North Dakota","ND",922 +2022-05-01,"Electric Power Consumption","Tennessee","TN",7519 +2022-05-01,"Electric Power Consumption","California","CA",32962 +2022-05-01,"Electric Power Consumption","New York","NY",38107 +2022-05-01,"Electric Power Consumption","Rhode Island","RI",4720 +2022-05-01,"Electric Power Consumption","Oklahoma","OK",23376 +2022-05-01,"Electric Power Consumption","Kansas","KS",2397 +2022-05-01,"Electric Power Consumption","West Virginia","WV",1586 +2022-05-01,"Electric Power Consumption","Wisconsin","WI",11544 +2022-05-01,"Electric Power Consumption","North Carolina","NC",31827 +2022-05-01,"Electric Power Consumption","Montana","MT",287 +2022-05-01,"Electric Power Consumption","Connecticut","CT",11249 +2022-05-01,"Electric Power Consumption","New Jersey","NJ",19362 +2022-05-01,"Electric Power Consumption","Texas","TX",151154 +2022-05-01,"Electric Power Consumption","Maryland","MD",8320 +2022-05-01,"Electric Power Consumption","Arkansas","AR",13313 +2022-05-01,"Electric Power Consumption","Nevada","NV",13231 +2022-05-01,"Electric Power Consumption","Iowa","IA",3401 +2022-05-01,"Electric Power Consumption","Vermont","VT",1 +2022-05-01,"Electric Power Consumption","Nebraska","NE",821 +2022-05-01,"Electric Power Consumption","Maine","ME",2357 +2022-05-01,"Industrial Consumption","Montana","MT",1757 +2022-05-01,"Industrial Consumption","West Virginia","WV",2737 +2022-05-01,"Industrial Consumption","New Jersey","NJ",6862 +2022-05-01,"Industrial Consumption","Connecticut","CT",1536 +2022-05-01,"Industrial Consumption","Delaware","DE",2809 +2022-05-01,"Industrial Consumption","Washington","WA",6986 +2022-05-01,"Industrial Consumption","South Dakota","SD",3764 +2022-05-01,"Industrial Consumption","Kansas","KS",11898 +2022-05-01,"Industrial Consumption","Alabama","AL",18471 +2022-05-01,"Industrial Consumption","New Hampshire","NH",835 +2022-05-01,"Industrial Consumption","Maryland","MD",959 +2022-05-01,"Industrial Consumption","Oklahoma","OK",17628 +2022-05-01,"Industrial Consumption","Colorado","CO",6884 +2022-05-01,"Industrial Consumption","Oregon","OR",4825 +2022-05-01,"Industrial Consumption","Wisconsin","WI",10048 +2022-05-01,"Industrial Consumption","Hawaii","HI",9 +2022-05-01,"Industrial Consumption","Utah","UT",3294 +2022-05-01,"Industrial Consumption","U.S.","U.S.",677240 +2022-05-01,"Industrial Consumption","Pennsylvania","PA",19118 +2022-05-01,"Industrial Consumption","Maine","ME",1546 +2022-05-01,"Industrial Consumption","California","CA",55572 +2022-05-01,"Industrial Consumption","South Carolina","SC",8579 +2022-05-01,"Industrial Consumption","Nebraska","NE",6866 +2022-05-01,"Industrial Consumption","Vermont","VT",167 +2022-05-01,"Industrial Consumption","Tennessee","TN",12002 +2022-05-01,"Industrial Consumption","Iowa","IA",19340 +2022-05-01,"Industrial Consumption","Florida","FL",10317 +2022-05-01,"Industrial Consumption","Kentucky","KY",9405 +2022-05-01,"Industrial Consumption","Missouri","MO",4666 +2022-05-01,"Industrial Consumption","North Carolina","NC",9535 +2022-05-01,"Industrial Consumption","Georgia","GA",12461 +2022-05-01,"Industrial Consumption","Ohio","OH",22424 +2022-05-01,"Industrial Consumption","New York","NY",6254 +2022-05-01,"Industrial Consumption","Virginia","VA",5322 +2022-05-01,"Industrial Consumption","Minnesota","MN",12587 +2022-05-01,"Industrial Consumption","Indiana","IN",30363 +2022-05-01,"Industrial Consumption","Rhode Island","RI",697 +2022-05-01,"Industrial Consumption","District of Columbia","DC",0 +2022-05-01,"Industrial Consumption","Massachusetts","MA",3014 +2022-05-01,"Industrial Consumption","New Mexico","NM",587 +2022-05-01,"Industrial Consumption","Arizona","AZ",1432 +2022-05-01,"Industrial Consumption","Mississippi","MS",10293 +2022-05-01,"Industrial Consumption","Wyoming","WY",4674 +2022-05-01,"Industrial Consumption","Michigan","MI",11923 +2022-05-01,"Industrial Consumption","North Dakota","ND",3317 +2022-05-01,"Industrial Consumption","Louisiana","LA",94186 +2022-05-01,"Industrial Consumption","Nevada","NV",1486 +2022-05-01,"Industrial Consumption","Arkansas","AR",8660 +2022-05-01,"Industrial Consumption","Texas","TX",162819 +2022-05-01,"Industrial Consumption","Idaho","ID",2857 +2022-05-01,"Industrial Consumption","Illinois","IL",19495 +2022-05-01,"Industrial Consumption","Alaska","AK",3975 +2022-05-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",167868 +2022-05-01,"Pipeline Fuel Consumption","U.S.","U.S.",82599 +2022-05-01,"Residential Consumption","Texas","TX",7543 +2022-05-01,"Residential Consumption","Tennessee","TN",1962 +2022-05-01,"Residential Consumption","Massachusetts","MA",5235 +2022-05-01,"Residential Consumption","New Jersey","NJ",11690 +2022-05-01,"Residential Consumption","Washington","WA",5587 +2022-05-01,"Residential Consumption","Mississippi","MS",612 +2022-05-01,"Residential Consumption","District of Columbia","DC",442 +2022-05-01,"Residential Consumption","Florida","FL",1345 +2022-05-01,"Residential Consumption","Colorado","CO",5727 +2022-05-01,"Residential Consumption","Delaware","DE",462 +2022-05-01,"Residential Consumption","Nevada","NV",2690 +2022-05-01,"Residential Consumption","Georgia","GA",5206 +2022-05-01,"Residential Consumption","New Hampshire","NH",241 +2022-05-01,"Residential Consumption","West Virginia","WV",556 +2022-05-01,"Residential Consumption","Rhode Island","RI",705 +2022-05-01,"Residential Consumption","Hawaii","HI",49 +2022-05-01,"Residential Consumption","Indiana","IN",4812 +2022-05-01,"Residential Consumption","Idaho","ID",1796 +2022-05-01,"Residential Consumption","Oklahoma","OK",2053 +2022-05-01,"Residential Consumption","Arizona","AZ",1827 +2022-05-01,"Residential Consumption","Alaska","AK",950 +2022-05-01,"Residential Consumption","South Carolina","SC",789 +2022-05-01,"Residential Consumption","Louisiana","LA",1398 +2022-05-01,"Residential Consumption","Connecticut","CT",2324 +2022-05-01,"Residential Consumption","Vermont","VT",180 +2022-05-01,"Residential Consumption","Virginia","VA",2889 +2022-05-01,"Residential Consumption","Utah","UT",3839 +2022-05-01,"Residential Consumption","Nebraska","NE",1874 +2022-05-01,"Residential Consumption","Minnesota","MN",5332 +2022-05-01,"Residential Consumption","Pennsylvania","PA",9048 +2022-05-01,"Residential Consumption","North Dakota","ND",878 +2022-05-01,"Residential Consumption","Kentucky","KY",1229 +2022-05-01,"Residential Consumption","Kansas","KS",2035 +2022-05-01,"Residential Consumption","New York","NY",21011 +2022-05-01,"Residential Consumption","Illinois","IL",16518 +2022-05-01,"Residential Consumption","North Carolina","NC",1157 +2022-05-01,"Residential Consumption","Wisconsin","WI",5254 +2022-05-01,"Residential Consumption","Michigan","MI",10163 +2022-05-01,"Residential Consumption","New Mexico","NM",1385 +2022-05-01,"Residential Consumption","Arkansas","AR",754 +2022-05-01,"Residential Consumption","California","CA",26330 +2022-05-01,"Residential Consumption","U.S.","U.S.",201337 +2022-05-01,"Residential Consumption","Oregon","OR",2997 +2022-05-01,"Residential Consumption","Iowa","IA",2220 +2022-05-01,"Residential Consumption","Maine","ME",121 +2022-05-01,"Residential Consumption","Montana","MT",1064 +2022-05-01,"Residential Consumption","Ohio","OH",10559 +2022-05-01,"Residential Consumption","Maryland","MD",2840 +2022-05-01,"Residential Consumption","South Dakota","SD",620 +2022-05-01,"Residential Consumption","Missouri","MO",3232 +2022-05-01,"Residential Consumption","Alabama","AL",975 +2022-05-01,"Residential Consumption","Wyoming","WY",830 +2022-05-01,"Vehicle Fuel Consumption","District of Columbia","DC",20 +2022-05-01,"Vehicle Fuel Consumption","Nebraska","NE",15 +2022-05-01,"Vehicle Fuel Consumption","Missouri","MO",17 +2022-05-01,"Vehicle Fuel Consumption","Massachusetts","MA",9 +2022-05-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2022-05-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-05-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-05-01,"Vehicle Fuel Consumption","U.S.","U.S.",4515 +2022-05-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-05-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-05-01,"Vehicle Fuel Consumption","Utah","UT",25 +2022-05-01,"Vehicle Fuel Consumption","Oklahoma","OK",151 +2022-05-01,"Vehicle Fuel Consumption","Kansas","KS",71 +2022-05-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2022-05-01,"Vehicle Fuel Consumption","Arizona","AZ",186 +2022-05-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-05-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2022-05-01,"Vehicle Fuel Consumption","Maryland","MD",25 +2022-05-01,"Vehicle Fuel Consumption","Colorado","CO",87 +2022-05-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2022-05-01,"Vehicle Fuel Consumption","New York","NY",85 +2022-05-01,"Vehicle Fuel Consumption","Alabama","AL",7 +2022-05-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-05-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2022-05-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-05-01,"Vehicle Fuel Consumption","Minnesota","MN",39 +2022-05-01,"Vehicle Fuel Consumption","Georgia","GA",146 +2022-05-01,"Vehicle Fuel Consumption","Illinois","IL",9 +2022-05-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2022-05-01,"Vehicle Fuel Consumption","New Mexico","NM",35 +2022-05-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2022-05-01,"Vehicle Fuel Consumption","Ohio","OH",105 +2022-05-01,"Vehicle Fuel Consumption","Wisconsin","WI",43 +2022-05-01,"Vehicle Fuel Consumption","Pennsylvania","PA",147 +2022-05-01,"Vehicle Fuel Consumption","Louisiana","LA",113 +2022-05-01,"Vehicle Fuel Consumption","Oregon","OR",5 +2022-05-01,"Vehicle Fuel Consumption","North Carolina","NC",150 +2022-05-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-05-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2022-05-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-05-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-05-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2022-05-01,"Vehicle Fuel Consumption","Tennessee","TN",34 +2022-05-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-05-01,"Vehicle Fuel Consumption","Nevada","NV",104 +2022-05-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2022-05-01,"Vehicle Fuel Consumption","Texas","TX",102 +2022-05-01,"Vehicle Fuel Consumption","Virginia","VA",58 +2022-05-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2022-05-01,"Vehicle Fuel Consumption","Florida","FL",481 +2022-05-01,"Vehicle Fuel Consumption","New Jersey","NJ",25 +2022-05-01,"Vehicle Fuel Consumption","California","CA",2149 +2022-06-01,"Commercial Consumption","Washington","WA",2789 +2022-06-01,"Commercial Consumption","New Jersey","NJ",5507 +2022-06-01,"Commercial Consumption","Montana","MT",1089 +2022-06-01,"Commercial Consumption","Maine","ME",310 +2022-06-01,"Commercial Consumption","Hawaii","HI",204 +2022-06-01,"Commercial Consumption","Alaska","AK",498 +2022-06-01,"Commercial Consumption","Connecticut","CT",2360 +2022-06-01,"Commercial Consumption","Illinois","IL",7805 +2022-06-01,"Commercial Consumption","Louisiana","LA",2023 +2022-06-01,"Commercial Consumption","West Virginia","WV",886 +2022-06-01,"Commercial Consumption","Virginia","VA",3657 +2022-06-01,"Commercial Consumption","Massachusetts","MA",3621 +2022-06-01,"Commercial Consumption","Kentucky","KY",1241 +2022-06-01,"Commercial Consumption","Kansas","KS",2256 +2022-06-01,"Commercial Consumption","Georgia","GA",2278 +2022-06-01,"Commercial Consumption","California","CA",15466 +2022-06-01,"Commercial Consumption","Arizona","AZ",2216 +2022-06-01,"Commercial Consumption","Tennessee","TN",2489 +2022-06-01,"Commercial Consumption","Wyoming","WY",604 +2022-06-01,"Commercial Consumption","South Carolina","SC",1554 +2022-06-01,"Commercial Consumption","Minnesota","MN",3153 +2022-06-01,"Commercial Consumption","New Mexico","NM",1259 +2022-06-01,"Commercial Consumption","New Hampshire","NH",260 +2022-06-01,"Commercial Consumption","Florida","FL",4861 +2022-06-01,"Commercial Consumption","Iowa","IA",1697 +2022-06-01,"Commercial Consumption","Delaware","DE",417 +2022-06-01,"Commercial Consumption","North Carolina","NC",1990 +2022-06-01,"Commercial Consumption","Pennsylvania","PA",5635 +2022-06-01,"Commercial Consumption","Texas","TX",11419 +2022-06-01,"Commercial Consumption","Vermont","VT",393 +2022-06-01,"Commercial Consumption","Idaho","ID",831 +2022-06-01,"Commercial Consumption","New York","NY",14004 +2022-06-01,"Commercial Consumption","Mississippi","MS",946 +2022-06-01,"Commercial Consumption","Missouri","MO",2286 +2022-06-01,"Commercial Consumption","Maryland","MD",3216 +2022-06-01,"Commercial Consumption","Ohio","OH",6827 +2022-06-01,"Commercial Consumption","North Dakota","ND",548 +2022-06-01,"Commercial Consumption","Utah","UT",1546 +2022-06-01,"Commercial Consumption","Oklahoma","OK",1598 +2022-06-01,"Commercial Consumption","Wisconsin","WI",3894 +2022-06-01,"Commercial Consumption","South Dakota","SD",426 +2022-06-01,"Commercial Consumption","Alabama","AL",1139 +2022-06-01,"Commercial Consumption","Nebraska","NE",1354 +2022-06-01,"Commercial Consumption","Nevada","NV",1839 +2022-06-01,"Commercial Consumption","Indiana","IN",3099 +2022-06-01,"Commercial Consumption","Colorado","CO",1900 +2022-06-01,"Commercial Consumption","Oregon","OR",1336 +2022-06-01,"Commercial Consumption","U.S.","U.S.",146847 +2022-06-01,"Commercial Consumption","Rhode Island","RI",398 +2022-06-01,"Commercial Consumption","Arkansas","AR",3016 +2022-06-01,"Commercial Consumption","Michigan","MI",6090 +2022-06-01,"Commercial Consumption","District of Columbia","DC",619 +2022-06-01,"Delivered to Consumers","Delaware","DE",5667 +2022-06-01,"Delivered to Consumers","Ohio","OH",73739 +2022-06-01,"Delivered to Consumers","Iowa","IA",25771 +2022-06-01,"Delivered to Consumers","Alabama","AL",68884 +2022-06-01,"Delivered to Consumers","Wisconsin","WI",31928 +2022-06-01,"Delivered to Consumers","Nebraska","NE",10067 +2022-06-01,"Delivered to Consumers","Maine","ME",4091 +2022-06-01,"Delivered to Consumers","U.S.","U.S.",2068843 +2022-06-01,"Delivered to Consumers","South Dakota","SD",5595 +2022-06-01,"Delivered to Consumers","New York","NY",74969 +2022-06-01,"Delivered to Consumers","Alaska","AK",6443 +2022-06-01,"Delivered to Consumers","Arkansas","AR",30400 +2022-06-01,"Delivered to Consumers","South Carolina","SC",31252 +2022-06-01,"Delivered to Consumers","Oregon","OR",11621 +2022-06-01,"Delivered to Consumers","District of Columbia","DC",924 +2022-06-01,"Delivered to Consumers","North Carolina","NC",56653 +2022-06-01,"Delivered to Consumers","Missouri","MO",15621 +2022-06-01,"Delivered to Consumers","Massachusetts","MA",18162 +2022-06-01,"Delivered to Consumers","California","CA",139371 +2022-06-01,"Delivered to Consumers","North Dakota","ND",4913 +2022-06-01,"Delivered to Consumers","Rhode Island","RI",6838 +2022-06-01,"Delivered to Consumers","Montana","MT",3879 +2022-06-01,"Delivered to Consumers","Virginia","VA",49447 +2022-06-01,"Delivered to Consumers","New Jersey","NJ",42919 +2022-06-01,"Delivered to Consumers","New Mexico","NM",9891 +2022-06-01,"Delivered to Consumers","West Virginia","WV",5546 +2022-06-01,"Delivered to Consumers","Maryland","MD",17299 +2022-06-01,"Delivered to Consumers","Oklahoma","OK",47836 +2022-06-01,"Delivered to Consumers","Idaho","ID",6305 +2022-06-01,"Delivered to Consumers","Mississippi","MS",49027 +2022-06-01,"Delivered to Consumers","New Hampshire","NH",4860 +2022-06-01,"Delivered to Consumers","Minnesota","MN",22715 +2022-06-01,"Delivered to Consumers","Florida","FL",154581 +2022-06-01,"Delivered to Consumers","Wyoming","WY",6758 +2022-06-01,"Delivered to Consumers","Kentucky","KY",27997 +2022-06-01,"Delivered to Consumers","Texas","TX",363167 +2022-06-01,"Delivered to Consumers","Washington","WA",14823 +2022-06-01,"Delivered to Consumers","Utah","UT",12644 +2022-06-01,"Delivered to Consumers","Vermont","VT",653 +2022-06-01,"Delivered to Consumers","Hawaii","HI",262 +2022-06-01,"Delivered to Consumers","Kansas","KS",18110 +2022-06-01,"Delivered to Consumers","Tennessee","TN",29054 +2022-06-01,"Delivered to Consumers","Colorado","CO",21642 +2022-06-01,"Delivered to Consumers","Indiana","IN",54586 +2022-06-01,"Delivered to Consumers","Illinois","IL",55149 +2022-06-01,"Delivered to Consumers","Michigan","MI",50732 +2022-06-01,"Delivered to Consumers","Connecticut","CT",20070 +2022-06-01,"Delivered to Consumers","Pennsylvania","PA",102853 +2022-06-01,"Delivered to Consumers","Nevada","NV",21262 +2022-06-01,"Delivered to Consumers","Louisiana","LA",132582 +2022-06-01,"Delivered to Consumers","Georgia","GA",63743 +2022-06-01,"Delivered to Consumers","Arizona","AZ",35547 +2022-06-01,"Electric Power Consumption","Washington","WA",3174 +2022-06-01,"Electric Power Consumption","Louisiana","LA",40401 +2022-06-01,"Electric Power Consumption","South Carolina","SC",21005 +2022-06-01,"Electric Power Consumption","Utah","UT",5977 +2022-06-01,"Electric Power Consumption","South Dakota","SD",NA +2022-06-01,"Electric Power Consumption","Missouri","MO",7311 +2022-06-01,"Electric Power Consumption","Hawaii","HI",NA +2022-06-01,"Electric Power Consumption","Maryland","MD",10879 +2022-06-01,"Electric Power Consumption","California","CA",48126 +2022-06-01,"Electric Power Consumption","New Mexico","NM",6911 +2022-06-01,"Electric Power Consumption","Texas","TX",184017 +2022-06-01,"Electric Power Consumption","Massachusetts","MA",9097 +2022-06-01,"Electric Power Consumption","U.S.","U.S.",1145902 +2022-06-01,"Electric Power Consumption","Nebraska","NE",1012 +2022-06-01,"Electric Power Consumption","Alabama","AL",49476 +2022-06-01,"Electric Power Consumption","New Jersey","NJ",24464 +2022-06-01,"Electric Power Consumption","Arkansas","AR",18928 +2022-06-01,"Electric Power Consumption","New York","NY",42364 +2022-06-01,"Electric Power Consumption","Minnesota","MN",6570 +2022-06-01,"Electric Power Consumption","Ohio","OH",41136 +2022-06-01,"Electric Power Consumption","North Dakota","ND",NA +2022-06-01,"Electric Power Consumption","Montana","MT",NA +2022-06-01,"Electric Power Consumption","Virginia","VA",35244 +2022-06-01,"Electric Power Consumption","Colorado","CO",10624 +2022-06-01,"Electric Power Consumption","Michigan","MI",27770 +2022-06-01,"Electric Power Consumption","Kentucky","KY",16753 +2022-06-01,"Electric Power Consumption","Oklahoma","OK",29354 +2022-06-01,"Electric Power Consumption","Wisconsin","WI",15802 +2022-06-01,"Electric Power Consumption","Pennsylvania","PA",74491 +2022-06-01,"Electric Power Consumption","Vermont","VT",1 +2022-06-01,"Electric Power Consumption","North Carolina","NC",44403 +2022-06-01,"Electric Power Consumption","Mississippi","MS",36719 +2022-06-01,"Electric Power Consumption","Georgia","GA",44759 +2022-06-01,"Electric Power Consumption","Kansas","KS",3423 +2022-06-01,"Electric Power Consumption","Wyoming","WY",876 +2022-06-01,"Electric Power Consumption","Delaware","DE",2624 +2022-06-01,"Electric Power Consumption","Alaska","AK",1929 +2022-06-01,"Electric Power Consumption","Rhode Island","RI",5259 +2022-06-01,"Electric Power Consumption","West Virginia","WV",2173 +2022-06-01,"Electric Power Consumption","Nevada","NV",15992 +2022-06-01,"Electric Power Consumption","Maine","ME",2196 +2022-06-01,"Electric Power Consumption","New Hampshire","NH",3752 +2022-06-01,"Electric Power Consumption","Connecticut","CT",14843 +2022-06-01,"Electric Power Consumption","Arizona","AZ",30358 +2022-06-01,"Electric Power Consumption","Idaho","ID",1957 +2022-06-01,"Electric Power Consumption","Oregon","OR",4311 +2022-06-01,"Electric Power Consumption","Illinois","IL",20760 +2022-06-01,"Electric Power Consumption","Iowa","IA",4922 +2022-06-01,"Electric Power Consumption","Tennessee","TN",13365 +2022-06-01,"Electric Power Consumption","Indiana","IN",20086 +2022-06-01,"Electric Power Consumption","Florida","FL",138143 +2022-06-01,"Industrial Consumption","Hawaii","HI",8 +2022-06-01,"Industrial Consumption","South Carolina","SC",8056 +2022-06-01,"Industrial Consumption","Connecticut","CT",1594 +2022-06-01,"Industrial Consumption","Indiana","IN",28907 +2022-06-01,"Industrial Consumption","North Carolina","NC",9068 +2022-06-01,"Industrial Consumption","Iowa","IA",18001 +2022-06-01,"Industrial Consumption","Michigan","MI",9734 +2022-06-01,"Industrial Consumption","Washington","WA",6136 +2022-06-01,"Industrial Consumption","Ohio","OH",20207 +2022-06-01,"Industrial Consumption","Kansas","KS",11229 +2022-06-01,"Industrial Consumption","Arizona","AZ",1280 +2022-06-01,"Industrial Consumption","Pennsylvania","PA",18179 +2022-06-01,"Industrial Consumption","Nevada","NV",1423 +2022-06-01,"Industrial Consumption","Texas","TX",161192 +2022-06-01,"Industrial Consumption","Vermont","VT",153 +2022-06-01,"Industrial Consumption","Idaho","ID",2647 +2022-06-01,"Industrial Consumption","Florida","FL",10006 +2022-06-01,"Industrial Consumption","District of Columbia","DC",0 +2022-06-01,"Industrial Consumption","North Dakota","ND",2995 +2022-06-01,"Industrial Consumption","Montana","MT",1972 +2022-06-01,"Industrial Consumption","Oklahoma","OK",15450 +2022-06-01,"Industrial Consumption","Oregon","OR",4437 +2022-06-01,"Industrial Consumption","Arkansas","AR",7897 +2022-06-01,"Industrial Consumption","New Hampshire","NH",689 +2022-06-01,"Industrial Consumption","Illinois","IL",18080 +2022-06-01,"Industrial Consumption","Rhode Island","RI",640 +2022-06-01,"Industrial Consumption","Massachusetts","MA",2623 +2022-06-01,"Industrial Consumption","South Dakota","SD",3988 +2022-06-01,"Industrial Consumption","New Mexico","NM",585 +2022-06-01,"Industrial Consumption","New York","NY",5866 +2022-06-01,"Industrial Consumption","Mississippi","MS",10856 +2022-06-01,"Industrial Consumption","Wyoming","WY",4766 +2022-06-01,"Industrial Consumption","Wisconsin","WI",9554 +2022-06-01,"Industrial Consumption","Delaware","DE",2396 +2022-06-01,"Industrial Consumption","Georgia","GA",12164 +2022-06-01,"Industrial Consumption","Alaska","AK",3508 +2022-06-01,"Industrial Consumption","Maryland","MD",1369 +2022-06-01,"Industrial Consumption","Virginia","VA",8688 +2022-06-01,"Industrial Consumption","New Jersey","NJ",7401 +2022-06-01,"Industrial Consumption","Minnesota","MN",10188 +2022-06-01,"Industrial Consumption","Missouri","MO",4179 +2022-06-01,"Industrial Consumption","Louisiana","LA",88872 +2022-06-01,"Industrial Consumption","Colorado","CO",5709 +2022-06-01,"Industrial Consumption","U.S.","U.S.",647774 +2022-06-01,"Industrial Consumption","Nebraska","NE",6641 +2022-06-01,"Industrial Consumption","West Virginia","WV",2171 +2022-06-01,"Industrial Consumption","Tennessee","TN",12031 +2022-06-01,"Industrial Consumption","Utah","UT",3070 +2022-06-01,"Industrial Consumption","Maine","ME",1520 +2022-06-01,"Industrial Consumption","California","CA",52937 +2022-06-01,"Industrial Consumption","Alabama","AL",17559 +2022-06-01,"Industrial Consumption","Kentucky","KY",9153 +2022-06-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",163731 +2022-06-01,"Pipeline Fuel Consumption","U.S.","U.S.",85383 +2022-06-01,"Residential Consumption","Nebraska","NE",1046 +2022-06-01,"Residential Consumption","Minnesota","MN",2766 +2022-06-01,"Residential Consumption","Georgia","GA",4401 +2022-06-01,"Residential Consumption","Massachusetts","MA",2812 +2022-06-01,"Residential Consumption","Vermont","VT",105 +2022-06-01,"Residential Consumption","Maryland","MD",1810 +2022-06-01,"Residential Consumption","New Mexico","NM",1103 +2022-06-01,"Residential Consumption","New Jersey","NJ",5522 +2022-06-01,"Residential Consumption","Colorado","CO",3325 +2022-06-01,"Residential Consumption","Wyoming","WY",511 +2022-06-01,"Residential Consumption","Tennessee","TN",1135 +2022-06-01,"Residential Consumption","Florida","FL",1105 +2022-06-01,"Residential Consumption","New Hampshire","NH",157 +2022-06-01,"Residential Consumption","U.S.","U.S.",123951 +2022-06-01,"Residential Consumption","Illinois","IL",8495 +2022-06-01,"Residential Consumption","South Carolina","SC",628 +2022-06-01,"Residential Consumption","Hawaii","HI",50 +2022-06-01,"Residential Consumption","Wisconsin","WI",2637 +2022-06-01,"Residential Consumption","Virginia","VA",1802 +2022-06-01,"Residential Consumption","Nevada","NV",1906 +2022-06-01,"Residential Consumption","Oklahoma","OK",1288 +2022-06-01,"Residential Consumption","New York","NY",12652 +2022-06-01,"Residential Consumption","Rhode Island","RI",532 +2022-06-01,"Residential Consumption","Oregon","OR",1533 +2022-06-01,"Residential Consumption","Kentucky","KY",847 +2022-06-01,"Residential Consumption","Kansas","KS",1134 +2022-06-01,"Residential Consumption","Missouri","MO",1829 +2022-06-01,"Residential Consumption","Arizona","AZ",1512 +2022-06-01,"Residential Consumption","Ohio","OH",5467 +2022-06-01,"Residential Consumption","Utah","UT",2026 +2022-06-01,"Residential Consumption","Pennsylvania","PA",4407 +2022-06-01,"Residential Consumption","Maine","ME",65 +2022-06-01,"Residential Consumption","North Dakota","ND",362 +2022-06-01,"Residential Consumption","Idaho","ID",866 +2022-06-01,"Residential Consumption","Delaware","DE",229 +2022-06-01,"Residential Consumption","California","CA",20762 +2022-06-01,"Residential Consumption","Alaska","AK",508 +2022-06-01,"Residential Consumption","Iowa","IA",1149 +2022-06-01,"Residential Consumption","Michigan","MI",7137 +2022-06-01,"Residential Consumption","South Dakota","SD",343 +2022-06-01,"Residential Consumption","Indiana","IN",2494 +2022-06-01,"Residential Consumption","Washington","WA",2714 +2022-06-01,"Residential Consumption","Alabama","AL",704 +2022-06-01,"Residential Consumption","Texas","TX",6440 +2022-06-01,"Residential Consumption","North Carolina","NC",1047 +2022-06-01,"Residential Consumption","Mississippi","MS",506 +2022-06-01,"Residential Consumption","Louisiana","LA",1176 +2022-06-01,"Residential Consumption","Connecticut","CT",1254 +2022-06-01,"Residential Consumption","District of Columbia","DC",286 +2022-06-01,"Residential Consumption","Arkansas","AR",551 +2022-06-01,"Residential Consumption","Montana","MT",501 +2022-06-01,"Residential Consumption","West Virginia","WV",315 +2022-06-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-06-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-06-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-06-01,"Vehicle Fuel Consumption","New Jersey","NJ",25 +2022-06-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-06-01,"Vehicle Fuel Consumption","Idaho","ID",5 +2022-06-01,"Vehicle Fuel Consumption","Pennsylvania","PA",142 +2022-06-01,"Vehicle Fuel Consumption","Oklahoma","OK",146 +2022-06-01,"Vehicle Fuel Consumption","Rhode Island","RI",9 +2022-06-01,"Vehicle Fuel Consumption","Louisiana","LA",109 +2022-06-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-06-01,"Vehicle Fuel Consumption","Illinois","IL",9 +2022-06-01,"Vehicle Fuel Consumption","U.S.","U.S.",4369 +2022-06-01,"Vehicle Fuel Consumption","Ohio","OH",101 +2022-06-01,"Vehicle Fuel Consumption","New York","NY",82 +2022-06-01,"Vehicle Fuel Consumption","District of Columbia","DC",20 +2022-06-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-06-01,"Vehicle Fuel Consumption","New Hampshire","NH",2 +2022-06-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-06-01,"Vehicle Fuel Consumption","Nevada","NV",101 +2022-06-01,"Vehicle Fuel Consumption","Delaware","DE",1 +2022-06-01,"Vehicle Fuel Consumption","Texas","TX",99 +2022-06-01,"Vehicle Fuel Consumption","Minnesota","MN",38 +2022-06-01,"Vehicle Fuel Consumption","Georgia","GA",141 +2022-06-01,"Vehicle Fuel Consumption","West Virginia","WV",1 +2022-06-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2022-06-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-06-01,"Vehicle Fuel Consumption","Kansas","KS",69 +2022-06-01,"Vehicle Fuel Consumption","Massachusetts","MA",8 +2022-06-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2022-06-01,"Vehicle Fuel Consumption","Connecticut","CT",19 +2022-06-01,"Vehicle Fuel Consumption","California","CA",2080 +2022-06-01,"Vehicle Fuel Consumption","New Mexico","NM",34 +2022-06-01,"Vehicle Fuel Consumption","Wisconsin","WI",41 +2022-06-01,"Vehicle Fuel Consumption","Arizona","AZ",180 +2022-06-01,"Vehicle Fuel Consumption","Florida","FL",465 +2022-06-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-06-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-06-01,"Vehicle Fuel Consumption","Tennessee","TN",33 +2022-06-01,"Vehicle Fuel Consumption","Vermont","VT",2 +2022-06-01,"Vehicle Fuel Consumption","Nebraska","NE",14 +2022-06-01,"Vehicle Fuel Consumption","Indiana","IN",0 +2022-06-01,"Vehicle Fuel Consumption","Oregon","OR",4 +2022-06-01,"Vehicle Fuel Consumption","North Carolina","NC",145 +2022-06-01,"Vehicle Fuel Consumption","Kentucky","KY",3 +2022-06-01,"Vehicle Fuel Consumption","Utah","UT",24 +2022-06-01,"Vehicle Fuel Consumption","Iowa","IA",3 +2022-06-01,"Vehicle Fuel Consumption","Missouri","MO",16 +2022-06-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-06-01,"Vehicle Fuel Consumption","Colorado","CO",84 +2022-06-01,"Vehicle Fuel Consumption","South Carolina","SC",9 +2022-06-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-07-01,"Commercial Consumption","Washington","WA",2299 +2022-07-01,"Commercial Consumption","Oregon","OR",948 +2022-07-01,"Commercial Consumption","Maine","ME",269 +2022-07-01,"Commercial Consumption","Rhode Island","RI",268 +2022-07-01,"Commercial Consumption","Hawaii","HI",191 +2022-07-01,"Commercial Consumption","Arkansas","AR",2874 +2022-07-01,"Commercial Consumption","Oklahoma","OK",1522 +2022-07-01,"Commercial Consumption","Missouri","MO",2142 +2022-07-01,"Commercial Consumption","Wisconsin","WI",4151 +2022-07-01,"Commercial Consumption","Alaska","AK",484 +2022-07-01,"Commercial Consumption","Louisiana","LA",2001 +2022-07-01,"Commercial Consumption","South Carolina","SC",1506 +2022-07-01,"Commercial Consumption","Idaho","ID",633 +2022-07-01,"Commercial Consumption","Mississippi","MS",897 +2022-07-01,"Commercial Consumption","North Carolina","NC",2131 +2022-07-01,"Commercial Consumption","Colorado","CO",1743 +2022-07-01,"Commercial Consumption","Utah","UT",1624 +2022-07-01,"Commercial Consumption","Pennsylvania","PA",5094 +2022-07-01,"Commercial Consumption","Kentucky","KY",1104 +2022-07-01,"Commercial Consumption","Kansas","KS",2234 +2022-07-01,"Commercial Consumption","Georgia","GA",2202 +2022-07-01,"Commercial Consumption","Ohio","OH",5119 +2022-07-01,"Commercial Consumption","Nebraska","NE",1130 +2022-07-01,"Commercial Consumption","Illinois","IL",NA +2022-07-01,"Commercial Consumption","North Dakota","ND",379 +2022-07-01,"Commercial Consumption","South Dakota","SD",329 +2022-07-01,"Commercial Consumption","New Jersey","NJ",6933 +2022-07-01,"Commercial Consumption","U.S.","U.S.",144753 +2022-07-01,"Commercial Consumption","Florida","FL",4247 +2022-07-01,"Commercial Consumption","Vermont","VT",379 +2022-07-01,"Commercial Consumption","California","CA",16582 +2022-07-01,"Commercial Consumption","Delaware","DE",441 +2022-07-01,"Commercial Consumption","Minnesota","MN",2689 +2022-07-01,"Commercial Consumption","New Mexico","NM",1233 +2022-07-01,"Commercial Consumption","Texas","TX",11929 +2022-07-01,"Commercial Consumption","Maryland","MD",3347 +2022-07-01,"Commercial Consumption","Iowa","IA",1736 +2022-07-01,"Commercial Consumption","Arizona","AZ",1838 +2022-07-01,"Commercial Consumption","Nevada","NV",1671 +2022-07-01,"Commercial Consumption","Michigan","MI",5363 +2022-07-01,"Commercial Consumption","Indiana","IN",2872 +2022-07-01,"Commercial Consumption","Wyoming","WY",503 +2022-07-01,"Commercial Consumption","West Virginia","WV",905 +2022-07-01,"Commercial Consumption","Connecticut","CT",2503 +2022-07-01,"Commercial Consumption","Alabama","AL",1114 +2022-07-01,"Commercial Consumption","New York","NY",15944 +2022-07-01,"Commercial Consumption","Tennessee","TN",2338 +2022-07-01,"Commercial Consumption","District of Columbia","DC",827 +2022-07-01,"Commercial Consumption","Virginia","VA",3310 +2022-07-01,"Commercial Consumption","Massachusetts","MA",3432 +2022-07-01,"Commercial Consumption","New Hampshire","NH",235 +2022-07-01,"Commercial Consumption","Montana","MT",1074 +2022-07-01,"Delivered to Consumers","Indiana","IN",56299 +2022-07-01,"Delivered to Consumers","Ohio","OH",77329 +2022-07-01,"Delivered to Consumers","Alabama","AL",71109 +2022-07-01,"Delivered to Consumers","Wisconsin","WI",34836 +2022-07-01,"Delivered to Consumers","New Jersey","NJ",54574 +2022-07-01,"Delivered to Consumers","Alaska","AK",7280 +2022-07-01,"Delivered to Consumers","Iowa","IA",27357 +2022-07-01,"Delivered to Consumers","Virginia","VA",NA +2022-07-01,"Delivered to Consumers","California","CA",158959 +2022-07-01,"Delivered to Consumers","Maine","ME",4639 +2022-07-01,"Delivered to Consumers","Utah","UT",13954 +2022-07-01,"Delivered to Consumers","Montana","MT",4135 +2022-07-01,"Delivered to Consumers","Pennsylvania","PA",113806 +2022-07-01,"Delivered to Consumers","Oregon","OR",15741 +2022-07-01,"Delivered to Consumers","New Hampshire","NH",5197 +2022-07-01,"Delivered to Consumers","Minnesota","MN",24822 +2022-07-01,"Delivered to Consumers","South Dakota","SD",5500 +2022-07-01,"Delivered to Consumers","Idaho","ID",7408 +2022-07-01,"Delivered to Consumers","Kentucky","KY",27988 +2022-07-01,"Delivered to Consumers","Arkansas","AR",32179 +2022-07-01,"Delivered to Consumers","North Carolina","NC",65234 +2022-07-01,"Delivered to Consumers","District of Columbia","DC",1105 +2022-07-01,"Delivered to Consumers","Vermont","VT",611 +2022-07-01,"Delivered to Consumers","Michigan","MI",58466 +2022-07-01,"Delivered to Consumers","Nebraska","NE",11527 +2022-07-01,"Delivered to Consumers","Mississippi","MS",55452 +2022-07-01,"Delivered to Consumers","New Mexico","NM",13051 +2022-07-01,"Delivered to Consumers","Illinois","IL",NA +2022-07-01,"Delivered to Consumers","Maryland","MD",17233 +2022-07-01,"Delivered to Consumers","Hawaii","HI",245 +2022-07-01,"Delivered to Consumers","Kansas","KS",21945 +2022-07-01,"Delivered to Consumers","Tennessee","TN",29175 +2022-07-01,"Delivered to Consumers","Connecticut","CT",23165 +2022-07-01,"Delivered to Consumers","Missouri","MO",18998 +2022-07-01,"Delivered to Consumers","Colorado","CO",24403 +2022-07-01,"Delivered to Consumers","Nevada","NV",26181 +2022-07-01,"Delivered to Consumers","Georgia","GA",68511 +2022-07-01,"Delivered to Consumers","Washington","WA",19296 +2022-07-01,"Delivered to Consumers","Wyoming","WY",6680 +2022-07-01,"Delivered to Consumers","New York","NY",95740 +2022-07-01,"Delivered to Consumers","Massachusetts","MA",24307 +2022-07-01,"Delivered to Consumers","Louisiana","LA",141170 +2022-07-01,"Delivered to Consumers","Arizona","AZ",43307 +2022-07-01,"Delivered to Consumers","North Dakota","ND",5046 +2022-07-01,"Delivered to Consumers","U.S.","U.S.",2318173 +2022-07-01,"Delivered to Consumers","Delaware","DE",8187 +2022-07-01,"Delivered to Consumers","West Virginia","WV",6363 +2022-07-01,"Delivered to Consumers","Rhode Island","RI",8130 +2022-07-01,"Delivered to Consumers","Oklahoma","OK",63693 +2022-07-01,"Delivered to Consumers","Texas","TX",402620 +2022-07-01,"Delivered to Consumers","South Carolina","SC",33332 +2022-07-01,"Delivered to Consumers","Florida","FL",165586 +2022-07-01,"Electric Power Consumption","Virginia","VA",42272 +2022-07-01,"Electric Power Consumption","New Jersey","NJ",34203 +2022-07-01,"Electric Power Consumption","Michigan","MI",36199 +2022-07-01,"Electric Power Consumption","Iowa","IA",6527 +2022-07-01,"Electric Power Consumption","Mississippi","MS",43045 +2022-07-01,"Electric Power Consumption","Hawaii","HI",NA +2022-07-01,"Electric Power Consumption","Montana","MT",526 +2022-07-01,"Electric Power Consumption","Colorado","CO",13951 +2022-07-01,"Electric Power Consumption","New Hampshire","NH",4199 +2022-07-01,"Electric Power Consumption","Rhode Island","RI",6783 +2022-07-01,"Electric Power Consumption","Illinois","IL",27599 +2022-07-01,"Electric Power Consumption","Indiana","IN",22417 +2022-07-01,"Electric Power Consumption","Georgia","GA",49464 +2022-07-01,"Electric Power Consumption","Louisiana","LA",46746 +2022-07-01,"Electric Power Consumption","Arkansas","AR",21622 +2022-07-01,"Electric Power Consumption","Texas","TX",219242 +2022-07-01,"Electric Power Consumption","Oregon","OR",9761 +2022-07-01,"Electric Power Consumption","Vermont","VT",NA +2022-07-01,"Electric Power Consumption","Washington","WA",9430 +2022-07-01,"Electric Power Consumption","Oklahoma","OK",43966 +2022-07-01,"Electric Power Consumption","Nevada","NV",21462 +2022-07-01,"Electric Power Consumption","Missouri","MO",11202 +2022-07-01,"Electric Power Consumption","Kentucky","KY",17152 +2022-07-01,"Electric Power Consumption","North Dakota","ND",1455 +2022-07-01,"Electric Power Consumption","Connecticut","CT",18118 +2022-07-01,"Electric Power Consumption","Idaho","ID",3829 +2022-07-01,"Electric Power Consumption","Utah","UT",7464 +2022-07-01,"Electric Power Consumption","Pennsylvania","PA",88956 +2022-07-01,"Electric Power Consumption","Wyoming","WY",1275 +2022-07-01,"Electric Power Consumption","South Dakota","SD",1252 +2022-07-01,"Electric Power Consumption","Maryland","MD",11121 +2022-07-01,"Electric Power Consumption","Arizona","AZ",38904 +2022-07-01,"Electric Power Consumption","California","CA",64917 +2022-07-01,"Electric Power Consumption","New Mexico","NM",10096 +2022-07-01,"Electric Power Consumption","Massachusetts","MA",16011 +2022-07-01,"Electric Power Consumption","West Virginia","WV",2635 +2022-07-01,"Electric Power Consumption","Nebraska","NE",1800 +2022-07-01,"Electric Power Consumption","Maine","ME",2774 +2022-07-01,"Electric Power Consumption","Ohio","OH",47377 +2022-07-01,"Electric Power Consumption","Florida","FL",149933 +2022-07-01,"Electric Power Consumption","Alabama","AL",51547 +2022-07-01,"Electric Power Consumption","Alaska","AK",2842 +2022-07-01,"Electric Power Consumption","South Carolina","SC",23101 +2022-07-01,"Electric Power Consumption","New York","NY",61301 +2022-07-01,"Electric Power Consumption","Minnesota","MN",9508 +2022-07-01,"Electric Power Consumption","Kansas","KS",4915 +2022-07-01,"Electric Power Consumption","Wisconsin","WI",18314 +2022-07-01,"Electric Power Consumption","Tennessee","TN",14437 +2022-07-01,"Electric Power Consumption","U.S.","U.S.",1400013 +2022-07-01,"Electric Power Consumption","North Carolina","NC",52898 +2022-07-01,"Electric Power Consumption","Delaware","DE",5468 +2022-07-01,"Industrial Consumption","North Dakota","ND",3071 +2022-07-01,"Industrial Consumption","New Mexico","NM",736 +2022-07-01,"Industrial Consumption","Kansas","KS",13512 +2022-07-01,"Industrial Consumption","Oregon","OR",4067 +2022-07-01,"Industrial Consumption","District of Columbia","DC",0 +2022-07-01,"Industrial Consumption","Hawaii","HI",7 +2022-07-01,"Industrial Consumption","Colorado","CO",5703 +2022-07-01,"Industrial Consumption","Nebraska","NE",7891 +2022-07-01,"Industrial Consumption","Montana","MT",2050 +2022-07-01,"Industrial Consumption","Mississippi","MS",11044 +2022-07-01,"Industrial Consumption","Tennessee","TN",11300 +2022-07-01,"Industrial Consumption","New Jersey","NJ",8524 +2022-07-01,"Industrial Consumption","Minnesota","MN",10340 +2022-07-01,"Industrial Consumption","Iowa","IA",18044 +2022-07-01,"Industrial Consumption","Rhode Island","RI",635 +2022-07-01,"Industrial Consumption","North Carolina","NC",9095 +2022-07-01,"Industrial Consumption","Massachusetts","MA",2578 +2022-07-01,"Industrial Consumption","Oklahoma","OK",16918 +2022-07-01,"Industrial Consumption","Missouri","MO",3938 +2022-07-01,"Industrial Consumption","Alabama","AL",17802 +2022-07-01,"Industrial Consumption","Virginia","VA",NA +2022-07-01,"Industrial Consumption","Florida","FL",10057 +2022-07-01,"Industrial Consumption","Kentucky","KY",9013 +2022-07-01,"Industrial Consumption","Illinois","IL",NA +2022-07-01,"Industrial Consumption","Alaska","AK",3441 +2022-07-01,"Industrial Consumption","Washington","WA",5725 +2022-07-01,"Industrial Consumption","Ohio","OH",20207 +2022-07-01,"Industrial Consumption","Arkansas","AR",7249 +2022-07-01,"Industrial Consumption","South Carolina","SC",8085 +2022-07-01,"Industrial Consumption","New Hampshire","NH",607 +2022-07-01,"Industrial Consumption","Delaware","DE",2089 +2022-07-01,"Industrial Consumption","Louisiana","LA",91217 +2022-07-01,"Industrial Consumption","South Dakota","SD",3705 +2022-07-01,"Industrial Consumption","Pennsylvania","PA",15797 +2022-07-01,"Industrial Consumption","California","CA",55923 +2022-07-01,"Industrial Consumption","Michigan","MI",10864 +2022-07-01,"Industrial Consumption","Indiana","IN",28772 +2022-07-01,"Industrial Consumption","Arizona","AZ",1320 +2022-07-01,"Industrial Consumption","New York","NY",5816 +2022-07-01,"Industrial Consumption","Nevada","NV",1455 +2022-07-01,"Industrial Consumption","West Virginia","WV",2490 +2022-07-01,"Industrial Consumption","Vermont","VT",144 +2022-07-01,"Industrial Consumption","Idaho","ID",2348 +2022-07-01,"Industrial Consumption","Maryland","MD",1167 +2022-07-01,"Industrial Consumption","Utah","UT",2819 +2022-07-01,"Industrial Consumption","U.S.","U.S.",658405 +2022-07-01,"Industrial Consumption","Maine","ME",1546 +2022-07-01,"Industrial Consumption","Texas","TX",165040 +2022-07-01,"Industrial Consumption","Wyoming","WY",4659 +2022-07-01,"Industrial Consumption","Wisconsin","WI",9433 +2022-07-01,"Industrial Consumption","Connecticut","CT",1439 +2022-07-01,"Industrial Consumption","Georgia","GA",12404 +2022-07-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",169630 +2022-07-01,"Pipeline Fuel Consumption","U.S.","U.S.",95144 +2022-07-01,"Residential Consumption","Oregon","OR",961 +2022-07-01,"Residential Consumption","Vermont","VT",85 +2022-07-01,"Residential Consumption","Tennessee","TN",1069 +2022-07-01,"Residential Consumption","Nevada","NV",1498 +2022-07-01,"Residential Consumption","Georgia","GA",4316 +2022-07-01,"Residential Consumption","Pennsylvania","PA",3817 +2022-07-01,"Residential Consumption","Indiana","IN",2077 +2022-07-01,"Residential Consumption","Massachusetts","MA",2279 +2022-07-01,"Residential Consumption","Arkansas","AR",427 +2022-07-01,"Residential Consumption","Alaska","AK",513 +2022-07-01,"Residential Consumption","West Virginia","WV",334 +2022-07-01,"Residential Consumption","Mississippi","MS",465 +2022-07-01,"Residential Consumption","Louisiana","LA",1176 +2022-07-01,"Residential Consumption","Michigan","MI",6040 +2022-07-01,"Residential Consumption","Maine","ME",50 +2022-07-01,"Residential Consumption","North Dakota","ND",142 +2022-07-01,"Residential Consumption","New Jersey","NJ",4877 +2022-07-01,"Residential Consumption","Alabama","AL",640 +2022-07-01,"Residential Consumption","Virginia","VA",1476 +2022-07-01,"Residential Consumption","Utah","UT",2024 +2022-07-01,"Residential Consumption","New Mexico","NM",954 +2022-07-01,"Residential Consumption","Kansas","KS",1208 +2022-07-01,"Residential Consumption","Illinois","IL",7226 +2022-07-01,"Residential Consumption","South Carolina","SC",633 +2022-07-01,"Residential Consumption","Wisconsin","WI",2899 +2022-07-01,"Residential Consumption","Maryland","MD",1574 +2022-07-01,"Residential Consumption","Oklahoma","OK",1142 +2022-07-01,"Residential Consumption","Arizona","AZ",1074 +2022-07-01,"Residential Consumption","Rhode Island","RI",436 +2022-07-01,"Residential Consumption","North Carolina","NC",977 +2022-07-01,"Residential Consumption","Iowa","IA",1048 +2022-07-01,"Residential Consumption","Hawaii","HI",47 +2022-07-01,"Residential Consumption","Connecticut","CT",1089 +2022-07-01,"Residential Consumption","Florida","FL",883 +2022-07-01,"Residential Consumption","Idaho","ID",592 +2022-07-01,"Residential Consumption","Kentucky","KY",719 +2022-07-01,"Residential Consumption","Washington","WA",1831 +2022-07-01,"Residential Consumption","California","CA",19429 +2022-07-01,"Residential Consumption","New York","NY",12585 +2022-07-01,"Residential Consumption","District of Columbia","DC",255 +2022-07-01,"Residential Consumption","Wyoming","WY",243 +2022-07-01,"Residential Consumption","U.S.","U.S.",110488 +2022-07-01,"Residential Consumption","Nebraska","NE",673 +2022-07-01,"Residential Consumption","Montana","MT",486 +2022-07-01,"Residential Consumption","Colorado","CO",2860 +2022-07-01,"Residential Consumption","Texas","TX",6331 +2022-07-01,"Residential Consumption","Ohio","OH",4535 +2022-07-01,"Residential Consumption","South Dakota","SD",213 +2022-07-01,"Residential Consumption","Minnesota","MN",2239 +2022-07-01,"Residential Consumption","New Hampshire","NH",155 +2022-07-01,"Residential Consumption","Missouri","MO",1698 +2022-07-01,"Residential Consumption","Delaware","DE",189 +2022-07-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-07-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-07-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-07-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2022-07-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-07-01,"Vehicle Fuel Consumption","Minnesota","MN",46 +2022-07-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-07-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2022-07-01,"Vehicle Fuel Consumption","California","CA",2109 +2022-07-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-07-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2022-07-01,"Vehicle Fuel Consumption","Pennsylvania","PA",142 +2022-07-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2022-07-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2022-07-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2022-07-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2022-07-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-07-01,"Vehicle Fuel Consumption","U.S.","U.S.",4514 +2022-07-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2022-07-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2022-07-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2022-07-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-07-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-07-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2022-07-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2022-07-01,"Vehicle Fuel Consumption","Oklahoma","OK",146 +2022-07-01,"Vehicle Fuel Consumption","Indiana","IN",160 +2022-07-01,"Vehicle Fuel Consumption","Utah","UT",24 +2022-07-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2022-07-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2022-07-01,"Vehicle Fuel Consumption","Colorado","CO",146 +2022-07-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2022-07-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2022-07-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2022-07-01,"Vehicle Fuel Consumption","Florida","FL",465 +2022-07-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2022-07-01,"Vehicle Fuel Consumption","Texas","TX",78 +2022-07-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-07-01,"Vehicle Fuel Consumption","Georgia","GA",126 +2022-07-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2022-07-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-07-01,"Vehicle Fuel Consumption","New York","NY",94 +2022-07-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2022-07-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2022-07-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2022-07-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2022-07-01,"Vehicle Fuel Consumption","North Carolina","NC",132 +2022-07-01,"Vehicle Fuel Consumption","Ohio","OH",92 +2022-07-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-07-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2022-07-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2022-07-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2022-08-01,"Commercial Consumption","New Mexico","NM",1370 +2022-08-01,"Commercial Consumption","U.S.","U.S.",141448 +2022-08-01,"Commercial Consumption","Alaska","AK",589 +2022-08-01,"Commercial Consumption","Alabama","AL",1216 +2022-08-01,"Commercial Consumption","South Carolina","SC",1512 +2022-08-01,"Commercial Consumption","Virginia","VA",3861 +2022-08-01,"Commercial Consumption","Kentucky","KY",1120 +2022-08-01,"Commercial Consumption","Kansas","KS",2284 +2022-08-01,"Commercial Consumption","Rhode Island","RI",239 +2022-08-01,"Commercial Consumption","Delaware","DE",420 +2022-08-01,"Commercial Consumption","District of Columbia","DC",812 +2022-08-01,"Commercial Consumption","North Carolina","NC",2398 +2022-08-01,"Commercial Consumption","Minnesota","MN",3156 +2022-08-01,"Commercial Consumption","Texas","TX",11362 +2022-08-01,"Commercial Consumption","Florida","FL",4444 +2022-08-01,"Commercial Consumption","Hawaii","HI",188 +2022-08-01,"Commercial Consumption","Nevada","NV",1627 +2022-08-01,"Commercial Consumption","Indiana","IN",3271 +2022-08-01,"Commercial Consumption","Washington","WA",2162 +2022-08-01,"Commercial Consumption","South Dakota","SD",329 +2022-08-01,"Commercial Consumption","New Hampshire","NH",253 +2022-08-01,"Commercial Consumption","Ohio","OH",4422 +2022-08-01,"Commercial Consumption","Idaho","ID",NA +2022-08-01,"Commercial Consumption","California","CA",15534 +2022-08-01,"Commercial Consumption","Arizona","AZ",1975 +2022-08-01,"Commercial Consumption","Tennessee","TN",2540 +2022-08-01,"Commercial Consumption","New Jersey","NJ",4119 +2022-08-01,"Commercial Consumption","Vermont","VT",408 +2022-08-01,"Commercial Consumption","Connecticut","CT",2634 +2022-08-01,"Commercial Consumption","Arkansas","AR",3010 +2022-08-01,"Commercial Consumption","Nebraska","NE",991 +2022-08-01,"Commercial Consumption","Utah","UT",1535 +2022-08-01,"Commercial Consumption","Pennsylvania","PA",5791 +2022-08-01,"Commercial Consumption","Maryland","MD",2943 +2022-08-01,"Commercial Consumption","Mississippi","MS",983 +2022-08-01,"Commercial Consumption","Michigan","MI",5012 +2022-08-01,"Commercial Consumption","Wyoming","WY",437 +2022-08-01,"Commercial Consumption","North Dakota","ND",422 +2022-08-01,"Commercial Consumption","Oregon","OR",925 +2022-08-01,"Commercial Consumption","Oklahoma","OK",1593 +2022-08-01,"Commercial Consumption","Massachusetts","MA",4287 +2022-08-01,"Commercial Consumption","Montana","MT",893 +2022-08-01,"Commercial Consumption","New York","NY",14130 +2022-08-01,"Commercial Consumption","Illinois","IL",7863 +2022-08-01,"Commercial Consumption","West Virginia","WV",903 +2022-08-01,"Commercial Consumption","Colorado","CO",1837 +2022-08-01,"Commercial Consumption","Missouri","MO",2286 +2022-08-01,"Commercial Consumption","Wisconsin","WI",4008 +2022-08-01,"Commercial Consumption","Maine","ME",278 +2022-08-01,"Commercial Consumption","Georgia","GA",2217 +2022-08-01,"Commercial Consumption","Iowa","IA",1804 +2022-08-01,"Commercial Consumption","Louisiana","LA",2066 +2022-08-01,"Delivered to Consumers","Utah","UT",13880 +2022-08-01,"Delivered to Consumers","Maryland","MD",17001 +2022-08-01,"Delivered to Consumers","California","CA",174245 +2022-08-01,"Delivered to Consumers","South Carolina","SC",33282 +2022-08-01,"Delivered to Consumers","Arizona","AZ",44337 +2022-08-01,"Delivered to Consumers","Wyoming","WY",7259 +2022-08-01,"Delivered to Consumers","West Virginia","WV",5938 +2022-08-01,"Delivered to Consumers","Connecticut","CT",23350 +2022-08-01,"Delivered to Consumers","Pennsylvania","PA",116325 +2022-08-01,"Delivered to Consumers","Missouri","MO",17793 +2022-08-01,"Delivered to Consumers","Massachusetts","MA",24098 +2022-08-01,"Delivered to Consumers","New Jersey","NJ",50661 +2022-08-01,"Delivered to Consumers","Georgia","GA",67298 +2022-08-01,"Delivered to Consumers","Minnesota","MN",26343 +2022-08-01,"Delivered to Consumers","Alaska","AK",7587 +2022-08-01,"Delivered to Consumers","Ohio","OH",75708 +2022-08-01,"Delivered to Consumers","Wisconsin","WI",33419 +2022-08-01,"Delivered to Consumers","District of Columbia","DC",1052 +2022-08-01,"Delivered to Consumers","U.S.","U.S.",2294629 +2022-08-01,"Delivered to Consumers","Michigan","MI",NA +2022-08-01,"Delivered to Consumers","Iowa","IA",27518 +2022-08-01,"Delivered to Consumers","Mississippi","MS",52512 +2022-08-01,"Delivered to Consumers","New Hampshire","NH",5733 +2022-08-01,"Delivered to Consumers","New Mexico","NM",NA +2022-08-01,"Delivered to Consumers","South Dakota","SD",5646 +2022-08-01,"Delivered to Consumers","New York","NY",87600 +2022-08-01,"Delivered to Consumers","Montana","MT",3940 +2022-08-01,"Delivered to Consumers","Kansas","KS",20536 +2022-08-01,"Delivered to Consumers","Tennessee","TN",28312 +2022-08-01,"Delivered to Consumers","Colorado","CO",24927 +2022-08-01,"Delivered to Consumers","Nevada","NV",25353 +2022-08-01,"Delivered to Consumers","Maine","ME",NA +2022-08-01,"Delivered to Consumers","Louisiana","LA",134337 +2022-08-01,"Delivered to Consumers","North Dakota","ND",5060 +2022-08-01,"Delivered to Consumers","Delaware","DE",8255 +2022-08-01,"Delivered to Consumers","Illinois","IL",58345 +2022-08-01,"Delivered to Consumers","Rhode Island","RI",7882 +2022-08-01,"Delivered to Consumers","Oklahoma","OK",58931 +2022-08-01,"Delivered to Consumers","Arkansas","AR",32375 +2022-08-01,"Delivered to Consumers","Virginia","VA",56430 +2022-08-01,"Delivered to Consumers","Indiana","IN",53928 +2022-08-01,"Delivered to Consumers","Vermont","VT",641 +2022-08-01,"Delivered to Consumers","Hawaii","HI",241 +2022-08-01,"Delivered to Consumers","Idaho","ID",NA +2022-08-01,"Delivered to Consumers","Kentucky","KY",25371 +2022-08-01,"Delivered to Consumers","Alabama","AL",68264 +2022-08-01,"Delivered to Consumers","Nebraska","NE",11923 +2022-08-01,"Delivered to Consumers","North Carolina","NC",64484 +2022-08-01,"Delivered to Consumers","Texas","TX",395731 +2022-08-01,"Delivered to Consumers","Oregon","OR",20445 +2022-08-01,"Delivered to Consumers","Washington","WA",21991 +2022-08-01,"Delivered to Consumers","Florida","FL",164458 +2022-08-01,"Electric Power Consumption","New Jersey","NJ",33158 +2022-08-01,"Electric Power Consumption","Texas","TX",215090 +2022-08-01,"Electric Power Consumption","Rhode Island","RI",6650 +2022-08-01,"Electric Power Consumption","Oklahoma","OK",39123 +2022-08-01,"Electric Power Consumption","Nevada","NV",20843 +2022-08-01,"Electric Power Consumption","Wyoming","WY",1394 +2022-08-01,"Electric Power Consumption","New Hampshire","NH",4687 +2022-08-01,"Electric Power Consumption","Arizona","AZ",39560 +2022-08-01,"Electric Power Consumption","Colorado","CO",14218 +2022-08-01,"Electric Power Consumption","Vermont","VT",1 +2022-08-01,"Electric Power Consumption","Mississippi","MS",40720 +2022-08-01,"Electric Power Consumption","Kentucky","KY",14044 +2022-08-01,"Electric Power Consumption","Connecticut","CT",18091 +2022-08-01,"Electric Power Consumption","Alabama","AL",48316 +2022-08-01,"Electric Power Consumption","Alaska","AK",3071 +2022-08-01,"Electric Power Consumption","Virginia","VA",41740 +2022-08-01,"Electric Power Consumption","Idaho","ID",4071 +2022-08-01,"Electric Power Consumption","West Virginia","WV",1755 +2022-08-01,"Electric Power Consumption","Maine","ME",2652 +2022-08-01,"Electric Power Consumption","Delaware","DE",5344 +2022-08-01,"Electric Power Consumption","Florida","FL",148530 +2022-08-01,"Electric Power Consumption","Louisiana","LA",38758 +2022-08-01,"Electric Power Consumption","Utah","UT",7917 +2022-08-01,"Electric Power Consumption","Pennsylvania","PA",87933 +2022-08-01,"Electric Power Consumption","Ohio","OH",45348 +2022-08-01,"Electric Power Consumption","North Dakota","ND",1541 +2022-08-01,"Electric Power Consumption","Georgia","GA",47564 +2022-08-01,"Electric Power Consumption","New Mexico","NM",10132 +2022-08-01,"Electric Power Consumption","South Carolina","SC",22977 +2022-08-01,"Electric Power Consumption","Kansas","KS",4088 +2022-08-01,"Electric Power Consumption","Tennessee","TN",12990 +2022-08-01,"Electric Power Consumption","Hawaii","HI",NA +2022-08-01,"Electric Power Consumption","Indiana","IN",21149 +2022-08-01,"Electric Power Consumption","Arkansas","AR",21125 +2022-08-01,"Electric Power Consumption","Illinois","IL",26263 +2022-08-01,"Electric Power Consumption","Iowa","IA",7098 +2022-08-01,"Electric Power Consumption","New York","NY",57591 +2022-08-01,"Electric Power Consumption","Oregon","OR",14512 +2022-08-01,"Electric Power Consumption","Minnesota","MN",9664 +2022-08-01,"Electric Power Consumption","Massachusetts","MA",15189 +2022-08-01,"Electric Power Consumption","U.S.","U.S.",1375253 +2022-08-01,"Electric Power Consumption","South Dakota","SD",1276 +2022-08-01,"Electric Power Consumption","Nebraska","NE",1699 +2022-08-01,"Electric Power Consumption","Montana","MT",832 +2022-08-01,"Electric Power Consumption","Washington","WA",11779 +2022-08-01,"Electric Power Consumption","Michigan","MI",34664 +2022-08-01,"Electric Power Consumption","Wisconsin","WI",17333 +2022-08-01,"Electric Power Consumption","North Carolina","NC",51325 +2022-08-01,"Electric Power Consumption","Missouri","MO",9437 +2022-08-01,"Electric Power Consumption","Maryland","MD",11677 +2022-08-01,"Electric Power Consumption","California","CA",80333 +2022-08-01,"Industrial Consumption","Colorado","CO",5674 +2022-08-01,"Industrial Consumption","New Mexico","NM",NA +2022-08-01,"Industrial Consumption","Oregon","OR",4144 +2022-08-01,"Industrial Consumption","Arkansas","AR",7818 +2022-08-01,"Industrial Consumption","West Virginia","WV",3006 +2022-08-01,"Industrial Consumption","Wyoming","WY",5177 +2022-08-01,"Industrial Consumption","Wisconsin","WI",9569 +2022-08-01,"Industrial Consumption","New Jersey","NJ",9239 +2022-08-01,"Industrial Consumption","Rhode Island","RI",624 +2022-08-01,"Industrial Consumption","Maryland","MD",1210 +2022-08-01,"Industrial Consumption","Washington","WA",6124 +2022-08-01,"Industrial Consumption","Arizona","AZ",1505 +2022-08-01,"Industrial Consumption","Pennsylvania","PA",18491 +2022-08-01,"Industrial Consumption","Nevada","NV",1451 +2022-08-01,"Industrial Consumption","Kentucky","KY",9534 +2022-08-01,"Industrial Consumption","North Carolina","NC",9560 +2022-08-01,"Industrial Consumption","Hawaii","HI",7 +2022-08-01,"Industrial Consumption","Missouri","MO",4324 +2022-08-01,"Industrial Consumption","Ohio","OH",21434 +2022-08-01,"Industrial Consumption","Maine","ME",1622 +2022-08-01,"Industrial Consumption","Vermont","VT",153 +2022-08-01,"Industrial Consumption","Connecticut","CT",1575 +2022-08-01,"Industrial Consumption","Georgia","GA",12977 +2022-08-01,"Industrial Consumption","Montana","MT",1865 +2022-08-01,"Industrial Consumption","Kansas","KS",13038 +2022-08-01,"Industrial Consumption","U.S.","U.S.",670158 +2022-08-01,"Industrial Consumption","Mississippi","MS",10315 +2022-08-01,"Industrial Consumption","Tennessee","TN",11621 +2022-08-01,"Industrial Consumption","Indiana","IN",26767 +2022-08-01,"Industrial Consumption","Oklahoma","OK",16921 +2022-08-01,"Industrial Consumption","California","CA",59350 +2022-08-01,"Industrial Consumption","South Carolina","SC",8173 +2022-08-01,"Industrial Consumption","Minnesota","MN",10742 +2022-08-01,"Industrial Consumption","Michigan","MI",NA +2022-08-01,"Industrial Consumption","Massachusetts","MA",2427 +2022-08-01,"Industrial Consumption","Nebraska","NE",8602 +2022-08-01,"Industrial Consumption","Idaho","ID",2497 +2022-08-01,"Industrial Consumption","Iowa","IA",17670 +2022-08-01,"Industrial Consumption","Florida","FL",10100 +2022-08-01,"Industrial Consumption","District of Columbia","DC",0 +2022-08-01,"Industrial Consumption","Louisiana","LA",92148 +2022-08-01,"Industrial Consumption","Utah","UT",2638 +2022-08-01,"Industrial Consumption","Alabama","AL",18048 +2022-08-01,"Industrial Consumption","Texas","TX",163664 +2022-08-01,"Industrial Consumption","Virginia","VA",9375 +2022-08-01,"Industrial Consumption","Illinois","IL",16681 +2022-08-01,"Industrial Consumption","Delaware","DE",2321 +2022-08-01,"Industrial Consumption","Alaska","AK",3267 +2022-08-01,"Industrial Consumption","North Dakota","ND",2875 +2022-08-01,"Industrial Consumption","South Dakota","SD",3838 +2022-08-01,"Industrial Consumption","New York","NY",6019 +2022-08-01,"Industrial Consumption","New Hampshire","NH",631 +2022-08-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",170596 +2022-08-01,"Pipeline Fuel Consumption","U.S.","U.S.",94281 +2022-08-01,"Residential Consumption","South Dakota","SD",204 +2022-08-01,"Residential Consumption","Minnesota","MN",2736 +2022-08-01,"Residential Consumption","North Dakota","ND",221 +2022-08-01,"Residential Consumption","Idaho","ID",NA +2022-08-01,"Residential Consumption","Kansas","KS",1049 +2022-08-01,"Residential Consumption","U.S.","U.S.",103255 +2022-08-01,"Residential Consumption","Ohio","OH",4412 +2022-08-01,"Residential Consumption","Mississippi","MS",492 +2022-08-01,"Residential Consumption","Virginia","VA",1399 +2022-08-01,"Residential Consumption","Nebraska","NE",596 +2022-08-01,"Residential Consumption","Maryland","MD",1148 +2022-08-01,"Residential Consumption","Massachusetts","MA",2189 +2022-08-01,"Residential Consumption","Colorado","CO",3051 +2022-08-01,"Residential Consumption","Wisconsin","WI",2471 +2022-08-01,"Residential Consumption","Utah","UT",1767 +2022-08-01,"Residential Consumption","Georgia","GA",4415 +2022-08-01,"Residential Consumption","Arkansas","AR",417 +2022-08-01,"Residential Consumption","Arizona","AZ",1126 +2022-08-01,"Residential Consumption","Alabama","AL",677 +2022-08-01,"Residential Consumption","Wyoming","WY",250 +2022-08-01,"Residential Consumption","Illinois","IL",7531 +2022-08-01,"Residential Consumption","Connecticut","CT",1033 +2022-08-01,"Residential Consumption","Vermont","VT",76 +2022-08-01,"Residential Consumption","Nevada","NV",1336 +2022-08-01,"Residential Consumption","Pennsylvania","PA",3968 +2022-08-01,"Residential Consumption","New Mexico","NM",1017 +2022-08-01,"Residential Consumption","Maine","ME",NA +2022-08-01,"Residential Consumption","Delaware","DE",169 +2022-08-01,"Residential Consumption","California","CA",16919 +2022-08-01,"Residential Consumption","West Virginia","WV",273 +2022-08-01,"Residential Consumption","Texas","TX",5537 +2022-08-01,"Residential Consumption","North Carolina","NC",1069 +2022-08-01,"Residential Consumption","Michigan","MI",5107 +2022-08-01,"Residential Consumption","Indiana","IN",2580 +2022-08-01,"Residential Consumption","Montana","MT",350 +2022-08-01,"Residential Consumption","Oklahoma","OK",1149 +2022-08-01,"Residential Consumption","Oregon","OR",860 +2022-08-01,"Residential Consumption","Iowa","IA",944 +2022-08-01,"Residential Consumption","District of Columbia","DC",217 +2022-08-01,"Residential Consumption","New Hampshire","NH",160 +2022-08-01,"Residential Consumption","Washington","WA",1915 +2022-08-01,"Residential Consumption","New York","NY",9766 +2022-08-01,"Residential Consumption","Hawaii","HI",45 +2022-08-01,"Residential Consumption","Tennessee","TN",1129 +2022-08-01,"Residential Consumption","South Carolina","SC",611 +2022-08-01,"Residential Consumption","Rhode Island","RI",360 +2022-08-01,"Residential Consumption","Louisiana","LA",1335 +2022-08-01,"Residential Consumption","Florida","FL",919 +2022-08-01,"Residential Consumption","New Jersey","NJ",4107 +2022-08-01,"Residential Consumption","Kentucky","KY",671 +2022-08-01,"Residential Consumption","Missouri","MO",1727 +2022-08-01,"Residential Consumption","Alaska","AK",660 +2022-08-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2022-08-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-08-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2022-08-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2022-08-01,"Vehicle Fuel Consumption","U.S.","U.S.",4514 +2022-08-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-08-01,"Vehicle Fuel Consumption","Utah","UT",24 +2022-08-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2022-08-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2022-08-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2022-08-01,"Vehicle Fuel Consumption","Indiana","IN",160 +2022-08-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-08-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2022-08-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2022-08-01,"Vehicle Fuel Consumption","Ohio","OH",92 +2022-08-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-08-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2022-08-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-08-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2022-08-01,"Vehicle Fuel Consumption","Texas","TX",78 +2022-08-01,"Vehicle Fuel Consumption","Colorado","CO",146 +2022-08-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2022-08-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2022-08-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-08-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2022-08-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-08-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2022-08-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2022-08-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2022-08-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2022-08-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-08-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2022-08-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2022-08-01,"Vehicle Fuel Consumption","North Carolina","NC",132 +2022-08-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-08-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-08-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-08-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2022-08-01,"Vehicle Fuel Consumption","Oklahoma","OK",146 +2022-08-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2022-08-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2022-08-01,"Vehicle Fuel Consumption","Minnesota","MN",46 +2022-08-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2022-08-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2022-08-01,"Vehicle Fuel Consumption","New York","NY",94 +2022-08-01,"Vehicle Fuel Consumption","Pennsylvania","PA",142 +2022-08-01,"Vehicle Fuel Consumption","Florida","FL",465 +2022-08-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2022-08-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2022-08-01,"Vehicle Fuel Consumption","Georgia","GA",126 +2022-08-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-08-01,"Vehicle Fuel Consumption","California","CA",2109 +2022-09-01,"Commercial Consumption","Washington","WA",2398 +2022-09-01,"Commercial Consumption","North Dakota","ND",374 +2022-09-01,"Commercial Consumption","Missouri","MO",2421 +2022-09-01,"Commercial Consumption","Kentucky","KY",1191 +2022-09-01,"Commercial Consumption","U.S.","U.S.",150170 +2022-09-01,"Commercial Consumption","Florida","FL",4493 +2022-09-01,"Commercial Consumption","North Carolina","NC",2620 +2022-09-01,"Commercial Consumption","Colorado","CO",1965 +2022-09-01,"Commercial Consumption","Oregon","OR",1088 +2022-09-01,"Commercial Consumption","Maryland","MD",3022 +2022-09-01,"Commercial Consumption","Kansas","KS",1946 +2022-09-01,"Commercial Consumption","Idaho","ID",963 +2022-09-01,"Commercial Consumption","California","CA",16620 +2022-09-01,"Commercial Consumption","Arkansas","AR",3138 +2022-09-01,"Commercial Consumption","Alabama","AL",1262 +2022-09-01,"Commercial Consumption","Tennessee","TN",2771 +2022-09-01,"Commercial Consumption","West Virginia","WV",1164 +2022-09-01,"Commercial Consumption","Oklahoma","OK",1650 +2022-09-01,"Commercial Consumption","Georgia","GA",2370 +2022-09-01,"Commercial Consumption","Vermont","VT",415 +2022-09-01,"Commercial Consumption","Arizona","AZ",1823 +2022-09-01,"Commercial Consumption","Michigan","MI",5764 +2022-09-01,"Commercial Consumption","New Mexico","NM",1601 +2022-09-01,"Commercial Consumption","Pennsylvania","PA",5838 +2022-09-01,"Commercial Consumption","Hawaii","HI",199 +2022-09-01,"Commercial Consumption","Delaware","DE",453 +2022-09-01,"Commercial Consumption","Virginia","VA",3928 +2022-09-01,"Commercial Consumption","South Dakota","SD",346 +2022-09-01,"Commercial Consumption","Rhode Island","RI",242 +2022-09-01,"Commercial Consumption","Alaska","AK",793 +2022-09-01,"Commercial Consumption","Indiana","IN",3323 +2022-09-01,"Commercial Consumption","Illinois","IL",9166 +2022-09-01,"Commercial Consumption","Wyoming","WY",436 +2022-09-01,"Commercial Consumption","Minnesota","MN",3312 +2022-09-01,"Commercial Consumption","Massachusetts","MA",5516 +2022-09-01,"Commercial Consumption","New Jersey","NJ",6258 +2022-09-01,"Commercial Consumption","New Hampshire","NH",301 +2022-09-01,"Commercial Consumption","Montana","MT",874 +2022-09-01,"Commercial Consumption","Maine","ME",324 +2022-09-01,"Commercial Consumption","Ohio","OH",5426 +2022-09-01,"Commercial Consumption","Nebraska","NE",949 +2022-09-01,"Commercial Consumption","Louisiana","LA",2177 +2022-09-01,"Commercial Consumption","Utah","UT",1230 +2022-09-01,"Commercial Consumption","Wisconsin","WI",4205 +2022-09-01,"Commercial Consumption","Texas","TX",11377 +2022-09-01,"Commercial Consumption","Nevada","NV",1721 +2022-09-01,"Commercial Consumption","South Carolina","SC",1621 +2022-09-01,"Commercial Consumption","Iowa","IA",1774 +2022-09-01,"Commercial Consumption","Connecticut","CT",2636 +2022-09-01,"Commercial Consumption","New York","NY",12995 +2022-09-01,"Commercial Consumption","Mississippi","MS",956 +2022-09-01,"Commercial Consumption","District of Columbia","DC",735 +2022-09-01,"Delivered to Consumers","Vermont","VT",652 +2022-09-01,"Delivered to Consumers","Oregon","OR",20220 +2022-09-01,"Delivered to Consumers","New Jersey","NJ",41932 +2022-09-01,"Delivered to Consumers","New Mexico","NM",12843 +2022-09-01,"Delivered to Consumers","Wyoming","WY",NA +2022-09-01,"Delivered to Consumers","Maryland","MD",15354 +2022-09-01,"Delivered to Consumers","Wisconsin","WI",28273 +2022-09-01,"Delivered to Consumers","Massachusetts","MA",18398 +2022-09-01,"Delivered to Consumers","Minnesota","MN",24237 +2022-09-01,"Delivered to Consumers","South Dakota","SD",5330 +2022-09-01,"Delivered to Consumers","New York","NY",65462 +2022-09-01,"Delivered to Consumers","Montana","MT",3844 +2022-09-01,"Delivered to Consumers","Oklahoma","OK",47773 +2022-09-01,"Delivered to Consumers","Kansas","KS",16060 +2022-09-01,"Delivered to Consumers","Idaho","ID",8067 +2022-09-01,"Delivered to Consumers","Iowa","IA",25782 +2022-09-01,"Delivered to Consumers","Pennsylvania","PA",105768 +2022-09-01,"Delivered to Consumers","California","CA",166707 +2022-09-01,"Delivered to Consumers","Texas","TX",350227 +2022-09-01,"Delivered to Consumers","Maine","ME",4585 +2022-09-01,"Delivered to Consumers","Georgia","GA",58305 +2022-09-01,"Delivered to Consumers","Florida","FL",146286 +2022-09-01,"Delivered to Consumers","District of Columbia","DC",1035 +2022-09-01,"Delivered to Consumers","Hawaii","HI",255 +2022-09-01,"Delivered to Consumers","Alaska","AK",7715 +2022-09-01,"Delivered to Consumers","Virginia","VA",46223 +2022-09-01,"Delivered to Consumers","South Carolina","SC",28452 +2022-09-01,"Delivered to Consumers","Washington","WA",22297 +2022-09-01,"Delivered to Consumers","Utah","UT",13153 +2022-09-01,"Delivered to Consumers","Delaware","DE",5454 +2022-09-01,"Delivered to Consumers","Illinois","IL",54505 +2022-09-01,"Delivered to Consumers","Connecticut","CT",20622 +2022-09-01,"Delivered to Consumers","Arkansas","AR",29603 +2022-09-01,"Delivered to Consumers","Alabama","AL",59612 +2022-09-01,"Delivered to Consumers","North Carolina","NC",51138 +2022-09-01,"Delivered to Consumers","Missouri","MO",14441 +2022-09-01,"Delivered to Consumers","Louisiana","LA",124743 +2022-09-01,"Delivered to Consumers","Michigan","MI",52856 +2022-09-01,"Delivered to Consumers","Kentucky","KY",21254 +2022-09-01,"Delivered to Consumers","Mississippi","MS",43224 +2022-09-01,"Delivered to Consumers","Nevada","NV",23622 +2022-09-01,"Delivered to Consumers","New Hampshire","NH",4148 +2022-09-01,"Delivered to Consumers","Indiana","IN",49388 +2022-09-01,"Delivered to Consumers","West Virginia","WV",6270 +2022-09-01,"Delivered to Consumers","Tennessee","TN",25413 +2022-09-01,"Delivered to Consumers","Ohio","OH",72728 +2022-09-01,"Delivered to Consumers","Colorado","CO",22662 +2022-09-01,"Delivered to Consumers","Arizona","AZ",41291 +2022-09-01,"Delivered to Consumers","North Dakota","ND",4859 +2022-09-01,"Delivered to Consumers","U.S.","U.S.",2037107 +2022-09-01,"Delivered to Consumers","Rhode Island","RI",6310 +2022-09-01,"Delivered to Consumers","Nebraska","NE",11275 +2022-09-01,"Electric Power Consumption","Illinois","IL",18930 +2022-09-01,"Electric Power Consumption","Kansas","KS",2431 +2022-09-01,"Electric Power Consumption","South Dakota","SD",971 +2022-09-01,"Electric Power Consumption","Maine","ME",2621 +2022-09-01,"Electric Power Consumption","Delaware","DE",2289 +2022-09-01,"Electric Power Consumption","Arizona","AZ",36794 +2022-09-01,"Electric Power Consumption","Alaska","AK",2463 +2022-09-01,"Electric Power Consumption","Virginia","VA",33450 +2022-09-01,"Electric Power Consumption","Louisiana","LA",28964 +2022-09-01,"Electric Power Consumption","South Carolina","SC",18675 +2022-09-01,"Electric Power Consumption","Oregon","OR",13979 +2022-09-01,"Electric Power Consumption","West Virginia","WV",1308 +2022-09-01,"Electric Power Consumption","Tennessee","TN",9447 +2022-09-01,"Electric Power Consumption","North Carolina","NC",37958 +2022-09-01,"Electric Power Consumption","Indiana","IN",16526 +2022-09-01,"Electric Power Consumption","Florida","FL",131363 +2022-09-01,"Electric Power Consumption","Wyoming","WY",944 +2022-09-01,"Electric Power Consumption","Nebraska","NE",1280 +2022-09-01,"Electric Power Consumption","Ohio","OH",39730 +2022-09-01,"Electric Power Consumption","New Mexico","NM",8713 +2022-09-01,"Electric Power Consumption","Idaho","ID",3430 +2022-09-01,"Electric Power Consumption","Arkansas","AR",18127 +2022-09-01,"Electric Power Consumption","Missouri","MO",5712 +2022-09-01,"Electric Power Consumption","California","CA",75320 +2022-09-01,"Electric Power Consumption","Alabama","AL",40749 +2022-09-01,"Electric Power Consumption","New Jersey","NJ",22812 +2022-09-01,"Electric Power Consumption","Iowa","IA",4808 +2022-09-01,"Electric Power Consumption","New Hampshire","NH",3007 +2022-09-01,"Electric Power Consumption","Montana","MT",792 +2022-09-01,"Electric Power Consumption","Colorado","CO",11577 +2022-09-01,"Electric Power Consumption","Texas","TX",178998 +2022-09-01,"Electric Power Consumption","Rhode Island","RI",5035 +2022-09-01,"Electric Power Consumption","Massachusetts","MA",7840 +2022-09-01,"Electric Power Consumption","Wisconsin","WI",11645 +2022-09-01,"Electric Power Consumption","Vermont","VT",NA +2022-09-01,"Electric Power Consumption","Kentucky","KY",9550 +2022-09-01,"Electric Power Consumption","Georgia","GA",39796 +2022-09-01,"Electric Power Consumption","Washington","WA",11992 +2022-09-01,"Electric Power Consumption","New York","NY",36143 +2022-09-01,"Electric Power Consumption","Utah","UT",7619 +2022-09-01,"Electric Power Consumption","Michigan","MI",28738 +2022-09-01,"Electric Power Consumption","Pennsylvania","PA",77407 +2022-09-01,"Electric Power Consumption","Nevada","NV",19043 +2022-09-01,"Electric Power Consumption","U.S.","U.S.",1121693 +2022-09-01,"Electric Power Consumption","North Dakota","ND",1246 +2022-09-01,"Electric Power Consumption","Connecticut","CT",15229 +2022-09-01,"Electric Power Consumption","Oklahoma","OK",28112 +2022-09-01,"Electric Power Consumption","Minnesota","MN",7911 +2022-09-01,"Electric Power Consumption","Mississippi","MS",30693 +2022-09-01,"Electric Power Consumption","Hawaii","HI",NA +2022-09-01,"Electric Power Consumption","Maryland","MD",9524 +2022-09-01,"Industrial Consumption","North Dakota","ND",3046 +2022-09-01,"Industrial Consumption","Louisiana","LA",92391 +2022-09-01,"Industrial Consumption","Arizona","AZ",1420 +2022-09-01,"Industrial Consumption","Michigan","MI",11353 +2022-09-01,"Industrial Consumption","Utah","UT",2711 +2022-09-01,"Industrial Consumption","Mississippi","MS",11055 +2022-09-01,"Industrial Consumption","Wisconsin","WI",9423 +2022-09-01,"Industrial Consumption","New Jersey","NJ",7829 +2022-09-01,"Industrial Consumption","Georgia","GA",11394 +2022-09-01,"Industrial Consumption","Montana","MT",1786 +2022-09-01,"Industrial Consumption","Maryland","MD",1183 +2022-09-01,"Industrial Consumption","Washington","WA",5725 +2022-09-01,"Industrial Consumption","Kansas","KS",10378 +2022-09-01,"Industrial Consumption","New York","NY",6366 +2022-09-01,"Industrial Consumption","Alaska","AK",3508 +2022-09-01,"Industrial Consumption","Nevada","NV",1355 +2022-09-01,"Industrial Consumption","Tennessee","TN",11818 +2022-09-01,"Industrial Consumption","Connecticut","CT",1530 +2022-09-01,"Industrial Consumption","Illinois","IL",17499 +2022-09-01,"Industrial Consumption","District of Columbia","DC",0 +2022-09-01,"Industrial Consumption","Massachusetts","MA",2619 +2022-09-01,"Industrial Consumption","Alabama","AL",16907 +2022-09-01,"Industrial Consumption","Texas","TX",153928 +2022-09-01,"Industrial Consumption","Nebraska","NE",8319 +2022-09-01,"Industrial Consumption","West Virginia","WV",3253 +2022-09-01,"Industrial Consumption","Vermont","VT",143 +2022-09-01,"Industrial Consumption","Wyoming","WY",NA +2022-09-01,"Industrial Consumption","New Hampshire","NH",651 +2022-09-01,"Industrial Consumption","Iowa","IA",18052 +2022-09-01,"Industrial Consumption","Indiana","IN",26310 +2022-09-01,"Industrial Consumption","Rhode Island","RI",633 +2022-09-01,"Industrial Consumption","Oklahoma","OK",16598 +2022-09-01,"Industrial Consumption","South Carolina","SC",7434 +2022-09-01,"Industrial Consumption","Virginia","VA",7043 +2022-09-01,"Industrial Consumption","Minnesota","MN",10209 +2022-09-01,"Industrial Consumption","Idaho","ID",2910 +2022-09-01,"Industrial Consumption","Florida","FL",9052 +2022-09-01,"Industrial Consumption","Delaware","DE",2525 +2022-09-01,"Industrial Consumption","North Carolina","NC",9174 +2022-09-01,"Industrial Consumption","Hawaii","HI",7 +2022-09-01,"Industrial Consumption","Colorado","CO",5379 +2022-09-01,"Industrial Consumption","Ohio","OH",22240 +2022-09-01,"Industrial Consumption","New Mexico","NM",1637 +2022-09-01,"Industrial Consumption","U.S.","U.S.",646379 +2022-09-01,"Industrial Consumption","Oregon","OR",4113 +2022-09-01,"Industrial Consumption","Maine","ME",1578 +2022-09-01,"Industrial Consumption","California","CA",55628 +2022-09-01,"Industrial Consumption","Arkansas","AR",7834 +2022-09-01,"Industrial Consumption","Missouri","MO",4367 +2022-09-01,"Industrial Consumption","South Dakota","SD",3801 +2022-09-01,"Industrial Consumption","Pennsylvania","PA",17711 +2022-09-01,"Industrial Consumption","Kentucky","KY",9748 +2022-09-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",167099 +2022-09-01,"Pipeline Fuel Consumption","U.S.","U.S.",84298 +2022-09-01,"Residential Consumption","South Carolina","SC",714 +2022-09-01,"Residential Consumption","Oregon","OR",1037 +2022-09-01,"Residential Consumption","Nebraska","NE",693 +2022-09-01,"Residential Consumption","Arkansas","AR",497 +2022-09-01,"Residential Consumption","New Jersey","NJ",4997 +2022-09-01,"Residential Consumption","Colorado","CO",3598 +2022-09-01,"Residential Consumption","Ohio","OH",5243 +2022-09-01,"Residential Consumption","North Carolina","NC",1259 +2022-09-01,"Residential Consumption","Vermont","VT",90 +2022-09-01,"Residential Consumption","South Dakota","SD",212 +2022-09-01,"Residential Consumption","Maine","ME",61 +2022-09-01,"Residential Consumption","New Hampshire","NH",189 +2022-09-01,"Residential Consumption","Kansas","KS",1230 +2022-09-01,"Residential Consumption","Missouri","MO",1924 +2022-09-01,"Residential Consumption","Arizona","AZ",1088 +2022-09-01,"Residential Consumption","Alabama","AL",688 +2022-09-01,"Residential Consumption","Wyoming","WY",270 +2022-09-01,"Residential Consumption","Texas","TX",5848 +2022-09-01,"Residential Consumption","Wisconsin","WI",2962 +2022-09-01,"Residential Consumption","Georgia","GA",4623 +2022-09-01,"Residential Consumption","Pennsylvania","PA",4676 +2022-09-01,"Residential Consumption","Washington","WA",2171 +2022-09-01,"Residential Consumption","West Virginia","WV",545 +2022-09-01,"Residential Consumption","New York","NY",9868 +2022-09-01,"Residential Consumption","Rhode Island","RI",393 +2022-09-01,"Residential Consumption","Louisiana","LA",1183 +2022-09-01,"Residential Consumption","Iowa","IA",1147 +2022-09-01,"Residential Consumption","Hawaii","HI",49 +2022-09-01,"Residential Consumption","Virginia","VA",1748 +2022-09-01,"Residential Consumption","District of Columbia","DC",278 +2022-09-01,"Residential Consumption","Idaho","ID",758 +2022-09-01,"Residential Consumption","Kentucky","KY",764 +2022-09-01,"Residential Consumption","Oklahoma","OK",1271 +2022-09-01,"Residential Consumption","Indiana","IN",3074 +2022-09-01,"Residential Consumption","Massachusetts","MA",2417 +2022-09-01,"Residential Consumption","Montana","MT",393 +2022-09-01,"Residential Consumption","Alaska","AK",951 +2022-09-01,"Residential Consumption","U.S.","U.S.",114497 +2022-09-01,"Residential Consumption","Mississippi","MS",518 +2022-09-01,"Residential Consumption","Utah","UT",1569 +2022-09-01,"Residential Consumption","Nevada","NV",1411 +2022-09-01,"Residential Consumption","Minnesota","MN",2760 +2022-09-01,"Residential Consumption","New Mexico","NM",861 +2022-09-01,"Residential Consumption","Florida","FL",927 +2022-09-01,"Residential Consumption","North Dakota","ND",193 +2022-09-01,"Residential Consumption","Delaware","DE",188 +2022-09-01,"Residential Consumption","Michigan","MI",7000 +2022-09-01,"Residential Consumption","Maryland","MD",1602 +2022-09-01,"Residential Consumption","Illinois","IL",8904 +2022-09-01,"Residential Consumption","Connecticut","CT",1211 +2022-09-01,"Residential Consumption","Tennessee","TN",1346 +2022-09-01,"Residential Consumption","California","CA",17099 +2022-09-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-09-01,"Vehicle Fuel Consumption","New York","NY",91 +2022-09-01,"Vehicle Fuel Consumption","Florida","FL",450 +2022-09-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-09-01,"Vehicle Fuel Consumption","Texas","TX",75 +2022-09-01,"Vehicle Fuel Consumption","Louisiana","LA",29 +2022-09-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2022-09-01,"Vehicle Fuel Consumption","Wisconsin","WI",37 +2022-09-01,"Vehicle Fuel Consumption","Oklahoma","OK",141 +2022-09-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2022-09-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2022-09-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2022-09-01,"Vehicle Fuel Consumption","North Carolina","NC",128 +2022-09-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-09-01,"Vehicle Fuel Consumption","Tennessee","TN",30 +2022-09-01,"Vehicle Fuel Consumption","Connecticut","CT",16 +2022-09-01,"Vehicle Fuel Consumption","California","CA",2041 +2022-09-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-09-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-09-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-09-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-09-01,"Vehicle Fuel Consumption","Colorado","CO",142 +2022-09-01,"Vehicle Fuel Consumption","Ohio","OH",89 +2022-09-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2022-09-01,"Vehicle Fuel Consumption","Massachusetts","MA",6 +2022-09-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2022-09-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2022-09-01,"Vehicle Fuel Consumption","Minnesota","MN",44 +2022-09-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-09-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2022-09-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-09-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2022-09-01,"Vehicle Fuel Consumption","Nevada","NV",92 +2022-09-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2022-09-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-09-01,"Vehicle Fuel Consumption","Georgia","GA",122 +2022-09-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2022-09-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-09-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2022-09-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2022-09-01,"Vehicle Fuel Consumption","Virginia","VA",54 +2022-09-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2022-09-01,"Vehicle Fuel Consumption","District of Columbia","DC",22 +2022-09-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2022-09-01,"Vehicle Fuel Consumption","Nebraska","NE",33 +2022-09-01,"Vehicle Fuel Consumption","Indiana","IN",155 +2022-09-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2022-09-01,"Vehicle Fuel Consumption","Utah","UT",23 +2022-09-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-09-01,"Vehicle Fuel Consumption","Pennsylvania","PA",137 +2022-09-01,"Vehicle Fuel Consumption","Kansas","KS",74 +2022-09-01,"Vehicle Fuel Consumption","U.S.","U.S.",4368 +2022-10-01,"Commercial Consumption","North Dakota","ND",702 +2022-10-01,"Commercial Consumption","Minnesota","MN",6611 +2022-10-01,"Commercial Consumption","New Mexico","NM",2995 +2022-10-01,"Commercial Consumption","Massachusetts","MA",6043 +2022-10-01,"Commercial Consumption","Maine","ME",NA +2022-10-01,"Commercial Consumption","Florida","FL",5063 +2022-10-01,"Commercial Consumption","Idaho","ID",1565 +2022-10-01,"Commercial Consumption","California","CA",19280 +2022-10-01,"Commercial Consumption","New York","NY",18489 +2022-10-01,"Commercial Consumption","Illinois","IL",15509 +2022-10-01,"Commercial Consumption","New Hampshire","NH",395 +2022-10-01,"Commercial Consumption","Maryland","MD",4804 +2022-10-01,"Commercial Consumption","Georgia","GA",3731 +2022-10-01,"Commercial Consumption","Iowa","IA",3860 +2022-10-01,"Commercial Consumption","Oklahoma","OK",NA +2022-10-01,"Commercial Consumption","Virginia","VA",6051 +2022-10-01,"Commercial Consumption","New Jersey","NJ",9278 +2022-10-01,"Commercial Consumption","U.S.","U.S.",223715 +2022-10-01,"Commercial Consumption","Rhode Island","RI",337 +2022-10-01,"Commercial Consumption","Connecticut","CT",3768 +2022-10-01,"Commercial Consumption","Arizona","AZ",2073 +2022-10-01,"Commercial Consumption","Tennessee","TN",4349 +2022-10-01,"Commercial Consumption","Utah","UT",2870 +2022-10-01,"Commercial Consumption","Wisconsin","WI",7138 +2022-10-01,"Commercial Consumption","Vermont","VT",511 +2022-10-01,"Commercial Consumption","Indiana","IN",6469 +2022-10-01,"Commercial Consumption","Washington","WA",3766 +2022-10-01,"Commercial Consumption","Missouri","MO",4001 +2022-10-01,"Commercial Consumption","Montana","MT",1394 +2022-10-01,"Commercial Consumption","South Carolina","SC",2117 +2022-10-01,"Commercial Consumption","North Carolina","NC",4145 +2022-10-01,"Commercial Consumption","Colorado","CO",3800 +2022-10-01,"Commercial Consumption","Pennsylvania","PA",10659 +2022-10-01,"Commercial Consumption","Ohio","OH",9251 +2022-10-01,"Commercial Consumption","Michigan","MI",10227 +2022-10-01,"Commercial Consumption","District of Columbia","DC",803 +2022-10-01,"Commercial Consumption","West Virginia","WV",1739 +2022-10-01,"Commercial Consumption","Oregon","OR",1779 +2022-10-01,"Commercial Consumption","Kentucky","KY",2210 +2022-10-01,"Commercial Consumption","Hawaii","HI",191 +2022-10-01,"Commercial Consumption","Alaska","AK",1293 +2022-10-01,"Commercial Consumption","Arkansas","AR",3524 +2022-10-01,"Commercial Consumption","Nebraska","NE",1655 +2022-10-01,"Commercial Consumption","Mississippi","MS",1339 +2022-10-01,"Commercial Consumption","Nevada","NV",2339 +2022-10-01,"Commercial Consumption","Wyoming","WY",749 +2022-10-01,"Commercial Consumption","South Dakota","SD",569 +2022-10-01,"Commercial Consumption","Texas","TX",13564 +2022-10-01,"Commercial Consumption","Kansas","KS",2832 +2022-10-01,"Commercial Consumption","Alabama","AL",1907 +2022-10-01,"Commercial Consumption","Delaware","DE",803 +2022-10-01,"Commercial Consumption","Louisiana","LA",2421 +2022-10-01,"Delivered to Consumers","Illinois","IL",73545 +2022-10-01,"Delivered to Consumers","New York","NY",80965 +2022-10-01,"Delivered to Consumers","Montana","MT",4949 +2022-10-01,"Delivered to Consumers","Hawaii","HI",241 +2022-10-01,"Delivered to Consumers","Connecticut","CT",20193 +2022-10-01,"Delivered to Consumers","Delaware","DE",6741 +2022-10-01,"Delivered to Consumers","Rhode Island","RI",5432 +2022-10-01,"Delivered to Consumers","Ohio","OH",79540 +2022-10-01,"Delivered to Consumers","Nebraska","NE",11359 +2022-10-01,"Delivered to Consumers","South Carolina","SC",27717 +2022-10-01,"Delivered to Consumers","Maine","ME",NA +2022-10-01,"Delivered to Consumers","Louisiana","LA",117939 +2022-10-01,"Delivered to Consumers","U.S.","U.S.",2105956 +2022-10-01,"Delivered to Consumers","Tennessee","TN",25292 +2022-10-01,"Delivered to Consumers","Michigan","MI",70984 +2022-10-01,"Delivered to Consumers","Pennsylvania","PA",113568 +2022-10-01,"Delivered to Consumers","Texas","TX",323960 +2022-10-01,"Delivered to Consumers","Arizona","AZ",38580 +2022-10-01,"Delivered to Consumers","New Mexico","NM",NA +2022-10-01,"Delivered to Consumers","Indiana","IN",62444 +2022-10-01,"Delivered to Consumers","West Virginia","WV",7917 +2022-10-01,"Delivered to Consumers","Iowa","IA",30921 +2022-10-01,"Delivered to Consumers","Virginia","VA",48201 +2022-10-01,"Delivered to Consumers","Mississippi","MS",37996 +2022-10-01,"Delivered to Consumers","Colorado","CO",29043 +2022-10-01,"Delivered to Consumers","Oregon","OR",20187 +2022-10-01,"Delivered to Consumers","New Jersey","NJ",43821 +2022-10-01,"Delivered to Consumers","Minnesota","MN",32417 +2022-10-01,"Delivered to Consumers","Vermont","VT",866 +2022-10-01,"Delivered to Consumers","Oklahoma","OK",NA +2022-10-01,"Delivered to Consumers","Kansas","KS",19314 +2022-10-01,"Delivered to Consumers","Kentucky","KY",23657 +2022-10-01,"Delivered to Consumers","Nevada","NV",22176 +2022-10-01,"Delivered to Consumers","North Dakota","ND",5408 +2022-10-01,"Delivered to Consumers","Wyoming","WY",NA +2022-10-01,"Delivered to Consumers","Alaska","AK",10065 +2022-10-01,"Delivered to Consumers","Arkansas","AR",26110 +2022-10-01,"Delivered to Consumers","North Carolina","NC",55356 +2022-10-01,"Delivered to Consumers","Missouri","MO",18634 +2022-10-01,"Delivered to Consumers","New Hampshire","NH",NA +2022-10-01,"Delivered to Consumers","Florida","FL",126559 +2022-10-01,"Delivered to Consumers","District of Columbia","DC",1253 +2022-10-01,"Delivered to Consumers","Maryland","MD",20092 +2022-10-01,"Delivered to Consumers","Wisconsin","WI",38666 +2022-10-01,"Delivered to Consumers","California","CA",162337 +2022-10-01,"Delivered to Consumers","Washington","WA",26487 +2022-10-01,"Delivered to Consumers","Utah","UT",16432 +2022-10-01,"Delivered to Consumers","South Dakota","SD",5364 +2022-10-01,"Delivered to Consumers","Idaho","ID",9272 +2022-10-01,"Delivered to Consumers","Alabama","AL",55822 +2022-10-01,"Delivered to Consumers","Massachusetts","MA",19578 +2022-10-01,"Delivered to Consumers","Georgia","GA",53714 +2022-10-01,"Electric Power Consumption","New Mexico","NM",8221 +2022-10-01,"Electric Power Consumption","Colorado","CO",9789 +2022-10-01,"Electric Power Consumption","Texas","TX",138409 +2022-10-01,"Electric Power Consumption","Minnesota","MN",6524 +2022-10-01,"Electric Power Consumption","Vermont","VT",NA +2022-10-01,"Electric Power Consumption","Tennessee","TN",5882 +2022-10-01,"Electric Power Consumption","Kentucky","KY",8366 +2022-10-01,"Electric Power Consumption","New Hampshire","NH",2535 +2022-10-01,"Electric Power Consumption","Montana","MT",820 +2022-10-01,"Electric Power Consumption","Georgia","GA",30715 +2022-10-01,"Electric Power Consumption","Oklahoma","OK",23121 +2022-10-01,"Electric Power Consumption","Nebraska","NE",743 +2022-10-01,"Electric Power Consumption","Alabama","AL",34387 +2022-10-01,"Electric Power Consumption","Washington","WA",11848 +2022-10-01,"Electric Power Consumption","South Carolina","SC",15760 +2022-10-01,"Electric Power Consumption","North Carolina","NC",37034 +2022-10-01,"Electric Power Consumption","Ohio","OH",31473 +2022-10-01,"Electric Power Consumption","Delaware","DE",2828 +2022-10-01,"Electric Power Consumption","Arizona","AZ",33206 +2022-10-01,"Electric Power Consumption","Alaska","AK",2133 +2022-10-01,"Electric Power Consumption","Louisiana","LA",25227 +2022-10-01,"Electric Power Consumption","Rhode Island","RI",3984 +2022-10-01,"Electric Power Consumption","Massachusetts","MA",5662 +2022-10-01,"Electric Power Consumption","U.S.","U.S.",949669 +2022-10-01,"Electric Power Consumption","South Dakota","SD",681 +2022-10-01,"Electric Power Consumption","North Dakota","ND",1113 +2022-10-01,"Electric Power Consumption","Indiana","IN",20363 +2022-10-01,"Electric Power Consumption","West Virginia","WV",1240 +2022-10-01,"Electric Power Consumption","Pennsylvania","PA",71052 +2022-10-01,"Electric Power Consumption","Hawaii","HI",NA +2022-10-01,"Electric Power Consumption","Florida","FL",109848 +2022-10-01,"Electric Power Consumption","Virginia","VA",26673 +2022-10-01,"Electric Power Consumption","Oregon","OR",11595 +2022-10-01,"Electric Power Consumption","Wyoming","WY",1212 +2022-10-01,"Electric Power Consumption","Iowa","IA",3229 +2022-10-01,"Electric Power Consumption","Missouri","MO",4787 +2022-10-01,"Electric Power Consumption","New Jersey","NJ",18614 +2022-10-01,"Electric Power Consumption","Arkansas","AR",13150 +2022-10-01,"Electric Power Consumption","Maine","ME",1204 +2022-10-01,"Electric Power Consumption","Maryland","MD",10016 +2022-10-01,"Electric Power Consumption","Idaho","ID",2428 +2022-10-01,"Electric Power Consumption","New York","NY",34073 +2022-10-01,"Electric Power Consumption","Utah","UT",7059 +2022-10-01,"Electric Power Consumption","Illinois","IL",14652 +2022-10-01,"Electric Power Consumption","Michigan","MI",27260 +2022-10-01,"Electric Power Consumption","Kansas","KS",2754 +2022-10-01,"Electric Power Consumption","Wisconsin","WI",11478 +2022-10-01,"Electric Power Consumption","Nevada","NV",16046 +2022-10-01,"Electric Power Consumption","Mississippi","MS",24471 +2022-10-01,"Electric Power Consumption","Connecticut","CT",12159 +2022-10-01,"Electric Power Consumption","California","CA",63847 +2022-10-01,"Industrial Consumption","Utah","UT",2668 +2022-10-01,"Industrial Consumption","West Virginia","WV",3389 +2022-10-01,"Industrial Consumption","Oklahoma","OK",NA +2022-10-01,"Industrial Consumption","Missouri","MO",5160 +2022-10-01,"Industrial Consumption","South Carolina","SC",8360 +2022-10-01,"Industrial Consumption","Virginia","VA",11093 +2022-10-01,"Industrial Consumption","Vermont","VT",177 +2022-10-01,"Industrial Consumption","Minnesota","MN",12016 +2022-10-01,"Industrial Consumption","Iowa","IA",20631 +2022-10-01,"Industrial Consumption","Maryland","MD",1372 +2022-10-01,"Industrial Consumption","Pennsylvania","PA",19829 +2022-10-01,"Industrial Consumption","Montana","MT",2049 +2022-10-01,"Industrial Consumption","Washington","WA",6153 +2022-10-01,"Industrial Consumption","Kansas","KS",10761 +2022-10-01,"Industrial Consumption","Oregon","OR",4603 +2022-10-01,"Industrial Consumption","Maine","ME",1786 +2022-10-01,"Industrial Consumption","Nebraska","NE",7591 +2022-10-01,"Industrial Consumption","Connecticut","CT",1562 +2022-10-01,"Industrial Consumption","Georgia","GA",11030 +2022-10-01,"Industrial Consumption","District of Columbia","DC",0 +2022-10-01,"Industrial Consumption","North Dakota","ND",3157 +2022-10-01,"Industrial Consumption","Massachusetts","MA",2653 +2022-10-01,"Industrial Consumption","Louisiana","LA",88388 +2022-10-01,"Industrial Consumption","South Dakota","SD",3688 +2022-10-01,"Industrial Consumption","Arkansas","AR",8637 +2022-10-01,"Industrial Consumption","Alabama","AL",18270 +2022-10-01,"Industrial Consumption","Tennessee","TN",12108 +2022-10-01,"Industrial Consumption","New Jersey","NJ",5130 +2022-10-01,"Industrial Consumption","Indiana","IN",27876 +2022-10-01,"Industrial Consumption","Hawaii","HI",7 +2022-10-01,"Industrial Consumption","New Mexico","NM",NA +2022-10-01,"Industrial Consumption","Nevada","NV",1509 +2022-10-01,"Industrial Consumption","Wisconsin","WI",11717 +2022-10-01,"Industrial Consumption","Florida","FL",9944 +2022-10-01,"Industrial Consumption","Rhode Island","RI",568 +2022-10-01,"Industrial Consumption","Alaska","AK",4893 +2022-10-01,"Industrial Consumption","Ohio","OH",25295 +2022-10-01,"Industrial Consumption","U.S.","U.S.",685832 +2022-10-01,"Industrial Consumption","Mississippi","MS",11223 +2022-10-01,"Industrial Consumption","Delaware","DE",2609 +2022-10-01,"Industrial Consumption","Colorado","CO",7222 +2022-10-01,"Industrial Consumption","Arizona","AZ",1609 +2022-10-01,"Industrial Consumption","New York","NY",6461 +2022-10-01,"Industrial Consumption","California","CA",55668 +2022-10-01,"Industrial Consumption","Texas","TX",162445 +2022-10-01,"Industrial Consumption","Wyoming","WY",NA +2022-10-01,"Industrial Consumption","New Hampshire","NH",NA +2022-10-01,"Industrial Consumption","Idaho","ID",3635 +2022-10-01,"Industrial Consumption","Michigan","MI",13020 +2022-10-01,"Industrial Consumption","Kentucky","KY",10785 +2022-10-01,"Industrial Consumption","Illinois","IL",21908 +2022-10-01,"Industrial Consumption","North Carolina","NC",10457 +2022-10-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",172865 +2022-10-01,"Pipeline Fuel Consumption","U.S.","U.S.",87152 +2022-10-01,"Residential Consumption","Rhode Island","RI",535 +2022-10-01,"Residential Consumption","Iowa","IA",3199 +2022-10-01,"Residential Consumption","Idaho","ID",1639 +2022-10-01,"Residential Consumption","New Hampshire","NH",241 +2022-10-01,"Residential Consumption","Montana","MT",687 +2022-10-01,"Residential Consumption","Colorado","CO",8085 +2022-10-01,"Residential Consumption","Delaware","DE",501 +2022-10-01,"Residential Consumption","Arizona","AZ",1520 +2022-10-01,"Residential Consumption","New York","NY",21848 +2022-10-01,"Residential Consumption","North Carolina","NC",3589 +2022-10-01,"Residential Consumption","Nevada","NV",2187 +2022-10-01,"Residential Consumption","North Dakota","ND",437 +2022-10-01,"Residential Consumption","Washington","WA",4708 +2022-10-01,"Residential Consumption","Oklahoma","OK",2234 +2022-10-01,"Residential Consumption","Missouri","MO",4668 +2022-10-01,"Residential Consumption","California","CA",21433 +2022-10-01,"Residential Consumption","Alaska","AK",1745 +2022-10-01,"Residential Consumption","Wyoming","WY",573 +2022-10-01,"Residential Consumption","West Virginia","WV",1549 +2022-10-01,"Residential Consumption","Texas","TX",9464 +2022-10-01,"Residential Consumption","Nebraska","NE",1337 +2022-10-01,"Residential Consumption","U.S.","U.S.",242225 +2022-10-01,"Residential Consumption","Illinois","IL",21470 +2022-10-01,"Residential Consumption","Ohio","OH",13429 +2022-10-01,"Residential Consumption","Utah","UT",3812 +2022-10-01,"Residential Consumption","New Mexico","NM",1784 +2022-10-01,"Residential Consumption","Massachusetts","MA",5213 +2022-10-01,"Residential Consumption","New Jersey","NJ",10762 +2022-10-01,"Residential Consumption","Alabama","AL",1251 +2022-10-01,"Residential Consumption","South Carolina","SC",1472 +2022-10-01,"Residential Consumption","Hawaii","HI",43 +2022-10-01,"Residential Consumption","Vermont","VT",176 +2022-10-01,"Residential Consumption","South Dakota","SD",426 +2022-10-01,"Residential Consumption","Georgia","GA",8112 +2022-10-01,"Residential Consumption","Pennsylvania","PA",11886 +2022-10-01,"Residential Consumption","Kansas","KS",2890 +2022-10-01,"Residential Consumption","Mississippi","MS",961 +2022-10-01,"Residential Consumption","Wisconsin","WI",8294 +2022-10-01,"Residential Consumption","Tennessee","TN",2922 +2022-10-01,"Residential Consumption","Michigan","MI",20478 +2022-10-01,"Residential Consumption","Maryland","MD",3877 +2022-10-01,"Residential Consumption","District of Columbia","DC",428 +2022-10-01,"Residential Consumption","Oregon","OR",2207 +2022-10-01,"Residential Consumption","Connecticut","CT",2687 +2022-10-01,"Residential Consumption","Maine","ME",NA +2022-10-01,"Residential Consumption","Indiana","IN",7576 +2022-10-01,"Residential Consumption","Florida","FL",1238 +2022-10-01,"Residential Consumption","Louisiana","LA",1873 +2022-10-01,"Residential Consumption","Virginia","VA",4328 +2022-10-01,"Residential Consumption","Minnesota","MN",7221 +2022-10-01,"Residential Consumption","Arkansas","AR",793 +2022-10-01,"Residential Consumption","Kentucky","KY",2296 +2022-10-01,"Vehicle Fuel Consumption","New York","NY",94 +2022-10-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-10-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2022-10-01,"Vehicle Fuel Consumption","Oklahoma","OK",146 +2022-10-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2022-10-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-10-01,"Vehicle Fuel Consumption","Colorado","CO",146 +2022-10-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-10-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-10-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2022-10-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2022-10-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2022-10-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2022-10-01,"Vehicle Fuel Consumption","U.S.","U.S.",4514 +2022-10-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2022-10-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2022-10-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2022-10-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2022-10-01,"Vehicle Fuel Consumption","Florida","FL",465 +2022-10-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-10-01,"Vehicle Fuel Consumption","Indiana","IN",160 +2022-10-01,"Vehicle Fuel Consumption","California","CA",2109 +2022-10-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2022-10-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2022-10-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2022-10-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-10-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2022-10-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-10-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-10-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2022-10-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-10-01,"Vehicle Fuel Consumption","Utah","UT",24 +2022-10-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2022-10-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2022-10-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2022-10-01,"Vehicle Fuel Consumption","Pennsylvania","PA",142 +2022-10-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2022-10-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2022-10-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2022-10-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-10-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-10-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2022-10-01,"Vehicle Fuel Consumption","Ohio","OH",92 +2022-10-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2022-10-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2022-10-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2022-10-01,"Vehicle Fuel Consumption","Texas","TX",78 +2022-10-01,"Vehicle Fuel Consumption","North Carolina","NC",132 +2022-10-01,"Vehicle Fuel Consumption","Minnesota","MN",46 +2022-10-01,"Vehicle Fuel Consumption","Georgia","GA",126 +2022-10-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-10-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2022-11-01,"Commercial Consumption","Oklahoma","OK",4911 +2022-11-01,"Commercial Consumption","Michigan","MI",17615 +2022-11-01,"Commercial Consumption","Utah","UT",6386 +2022-11-01,"Commercial Consumption","New Mexico","NM",4652 +2022-11-01,"Commercial Consumption","Pennsylvania","PA",15572 +2022-11-01,"Commercial Consumption","Montana","MT",3203 +2022-11-01,"Commercial Consumption","Texas","TX",21175 +2022-11-01,"Commercial Consumption","Ohio","OH",20003 +2022-11-01,"Commercial Consumption","Tennessee","TN",6847 +2022-11-01,"Commercial Consumption","Washington","WA",7920 +2022-11-01,"Commercial Consumption","Oregon","OR",4277 +2022-11-01,"Commercial Consumption","New Jersey","NJ",13607 +2022-11-01,"Commercial Consumption","Vermont","VT",691 +2022-11-01,"Commercial Consumption","Alaska","AK",1881 +2022-11-01,"Commercial Consumption","Delaware","DE",1203 +2022-11-01,"Commercial Consumption","Nevada","NV",2975 +2022-11-01,"Commercial Consumption","Indiana","IN",10714 +2022-11-01,"Commercial Consumption","Missouri","MO",7180 +2022-11-01,"Commercial Consumption","Maine","ME",874 +2022-11-01,"Commercial Consumption","Kentucky","KY",3875 +2022-11-01,"Commercial Consumption","Rhode Island","RI",NA +2022-11-01,"Commercial Consumption","Idaho","ID",2914 +2022-11-01,"Commercial Consumption","Connecticut","CT",5490 +2022-11-01,"Commercial Consumption","California","CA",25943 +2022-11-01,"Commercial Consumption","Arkansas","AR",4043 +2022-11-01,"Commercial Consumption","Mississippi","MS",2122 +2022-11-01,"Commercial Consumption","South Carolina","SC",2662 +2022-11-01,"Commercial Consumption","Alabama","AL",2902 +2022-11-01,"Commercial Consumption","Wyoming","WY",1781 +2022-11-01,"Commercial Consumption","North Carolina","NC",5561 +2022-11-01,"Commercial Consumption","Wisconsin","WI",11584 +2022-11-01,"Commercial Consumption","New Hampshire","NH",683 +2022-11-01,"Commercial Consumption","U.S.","U.S.",356137 +2022-11-01,"Commercial Consumption","Maryland","MD",6808 +2022-11-01,"Commercial Consumption","Kansas","KS",NA +2022-11-01,"Commercial Consumption","Georgia","GA",5634 +2022-11-01,"Commercial Consumption","New York","NY",28888 +2022-11-01,"Commercial Consumption","Arizona","AZ",3187 +2022-11-01,"Commercial Consumption","Louisiana","LA",3340 +2022-11-01,"Commercial Consumption","North Dakota","ND",1454 +2022-11-01,"Commercial Consumption","Virginia","VA",8092 +2022-11-01,"Commercial Consumption","Massachusetts","MA",9926 +2022-11-01,"Commercial Consumption","South Dakota","SD",1063 +2022-11-01,"Commercial Consumption","Iowa","IA",5812 +2022-11-01,"Commercial Consumption","Nebraska","NE",3219 +2022-11-01,"Commercial Consumption","District of Columbia","DC",1546 +2022-11-01,"Commercial Consumption","West Virginia","WV",2160 +2022-11-01,"Commercial Consumption","Minnesota","MN",11617 +2022-11-01,"Commercial Consumption","Colorado","CO",7921 +2022-11-01,"Commercial Consumption","Florida","FL",5126 +2022-11-01,"Commercial Consumption","Hawaii","HI",203 +2022-11-01,"Commercial Consumption","Illinois","IL",23779 +2022-11-01,"Delivered to Consumers","Illinois","IL",104601 +2022-11-01,"Delivered to Consumers","Alaska","AK",11921 +2022-11-01,"Delivered to Consumers","Texas","TX",339044 +2022-11-01,"Delivered to Consumers","Oregon","OR",28949 +2022-11-01,"Delivered to Consumers","Louisiana","LA",127434 +2022-11-01,"Delivered to Consumers","North Dakota","ND",6469 +2022-11-01,"Delivered to Consumers","Florida","FL",NA +2022-11-01,"Delivered to Consumers","Utah","UT",28199 +2022-11-01,"Delivered to Consumers","U.S.","U.S.",2502868 +2022-11-01,"Delivered to Consumers","Montana","MT",9600 +2022-11-01,"Delivered to Consumers","Oklahoma","OK",49595 +2022-11-01,"Delivered to Consumers","Michigan","MI",90615 +2022-11-01,"Delivered to Consumers","Colorado","CO",47732 +2022-11-01,"Delivered to Consumers","California","CA",187539 +2022-11-01,"Delivered to Consumers","Delaware","DE",7414 +2022-11-01,"Delivered to Consumers","West Virginia","WV",9635 +2022-11-01,"Delivered to Consumers","South Dakota","SD",7098 +2022-11-01,"Delivered to Consumers","Mississippi","MS",42273 +2022-11-01,"Delivered to Consumers","Maine","ME",NA +2022-11-01,"Delivered to Consumers","New Hampshire","NH",2603 +2022-11-01,"Delivered to Consumers","Vermont","VT",1168 +2022-11-01,"Delivered to Consumers","Tennessee","TN",35115 +2022-11-01,"Delivered to Consumers","Arkansas","AR",29959 +2022-11-01,"Delivered to Consumers","Alabama","AL",56600 +2022-11-01,"Delivered to Consumers","Massachusetts","MA",31528 +2022-11-01,"Delivered to Consumers","Nevada","NV",22774 +2022-11-01,"Delivered to Consumers","Washington","WA",38338 +2022-11-01,"Delivered to Consumers","District of Columbia","DC",2708 +2022-11-01,"Delivered to Consumers","New Mexico","NM",NA +2022-11-01,"Delivered to Consumers","New York","NY",111023 +2022-11-01,"Delivered to Consumers","Kansas","KS",NA +2022-11-01,"Delivered to Consumers","Idaho","ID",15493 +2022-11-01,"Delivered to Consumers","Kentucky","KY",32257 +2022-11-01,"Delivered to Consumers","Nebraska","NE",15858 +2022-11-01,"Delivered to Consumers","South Carolina","SC",26154 +2022-11-01,"Delivered to Consumers","New Jersey","NJ",59605 +2022-11-01,"Delivered to Consumers","Arizona","AZ",32481 +2022-11-01,"Delivered to Consumers","Maryland","MD",22672 +2022-11-01,"Delivered to Consumers","Ohio","OH",118857 +2022-11-01,"Delivered to Consumers","Iowa","IA",37201 +2022-11-01,"Delivered to Consumers","Missouri","MO",29721 +2022-11-01,"Delivered to Consumers","Minnesota","MN",NA +2022-11-01,"Delivered to Consumers","Wyoming","WY",NA +2022-11-01,"Delivered to Consumers","Wisconsin","WI",48138 +2022-11-01,"Delivered to Consumers","Virginia","VA",52775 +2022-11-01,"Delivered to Consumers","North Carolina","NC",61622 +2022-11-01,"Delivered to Consumers","Indiana","IN",78061 +2022-11-01,"Delivered to Consumers","Rhode Island","RI",NA +2022-11-01,"Delivered to Consumers","Hawaii","HI",256 +2022-11-01,"Delivered to Consumers","Connecticut","CT",25304 +2022-11-01,"Delivered to Consumers","Pennsylvania","PA",122633 +2022-11-01,"Delivered to Consumers","Georgia","GA",63999 +2022-11-01,"Electric Power Consumption","Arkansas","AR",14472 +2022-11-01,"Electric Power Consumption","New York","NY",35455 +2022-11-01,"Electric Power Consumption","Oklahoma","OK",18274 +2022-11-01,"Electric Power Consumption","Tennessee","TN",7500 +2022-11-01,"Electric Power Consumption","North Carolina","NC",38212 +2022-11-01,"Electric Power Consumption","Indiana","IN",19130 +2022-11-01,"Electric Power Consumption","Kentucky","KY",10964 +2022-11-01,"Electric Power Consumption","Delaware","DE",2596 +2022-11-01,"Electric Power Consumption","Florida","FL",100702 +2022-11-01,"Electric Power Consumption","California","CA",57609 +2022-11-01,"Electric Power Consumption","Rhode Island","RI",4946 +2022-11-01,"Electric Power Consumption","Illinois","IL",14101 +2022-11-01,"Electric Power Consumption","Michigan","MI",23471 +2022-11-01,"Electric Power Consumption","Wyoming","WY",964 +2022-11-01,"Electric Power Consumption","Vermont","VT",2 +2022-11-01,"Electric Power Consumption","Maine","ME",1476 +2022-11-01,"Electric Power Consumption","Ohio","OH",38358 +2022-11-01,"Electric Power Consumption","New Hampshire","NH",885 +2022-11-01,"Electric Power Consumption","Alabama","AL",31877 +2022-11-01,"Electric Power Consumption","New Mexico","NM",8161 +2022-11-01,"Electric Power Consumption","Louisiana","LA",23652 +2022-11-01,"Electric Power Consumption","Utah","UT",7157 +2022-11-01,"Electric Power Consumption","Minnesota","MN",5367 +2022-11-01,"Electric Power Consumption","U.S.","U.S.",903112 +2022-11-01,"Electric Power Consumption","Mississippi","MS",27254 +2022-11-01,"Electric Power Consumption","North Dakota","ND",1049 +2022-11-01,"Electric Power Consumption","Alaska","AK",1923 +2022-11-01,"Electric Power Consumption","Texas","TX",128524 +2022-11-01,"Electric Power Consumption","Wisconsin","WI",8386 +2022-11-01,"Electric Power Consumption","Pennsylvania","PA",64992 +2022-11-01,"Electric Power Consumption","New Jersey","NJ",18393 +2022-11-01,"Electric Power Consumption","Kansas","KS",2416 +2022-11-01,"Electric Power Consumption","South Dakota","SD",643 +2022-11-01,"Electric Power Consumption","Montana","MT",775 +2022-11-01,"Electric Power Consumption","Connecticut","CT",13318 +2022-11-01,"Electric Power Consumption","Georgia","GA",31645 +2022-11-01,"Electric Power Consumption","Washington","WA",9951 +2022-11-01,"Electric Power Consumption","Virginia","VA",28088 +2022-11-01,"Electric Power Consumption","Colorado","CO",10438 +2022-11-01,"Electric Power Consumption","South Carolina","SC",12228 +2022-11-01,"Electric Power Consumption","Oregon","OR",12218 +2022-11-01,"Electric Power Consumption","Nevada","NV",14366 +2022-11-01,"Electric Power Consumption","Hawaii","HI",NA +2022-11-01,"Electric Power Consumption","Maryland","MD",6585 +2022-11-01,"Electric Power Consumption","Arizona","AZ",23658 +2022-11-01,"Electric Power Consumption","Idaho","ID",3102 +2022-11-01,"Electric Power Consumption","Massachusetts","MA",8643 +2022-11-01,"Electric Power Consumption","West Virginia","WV",1712 +2022-11-01,"Electric Power Consumption","Iowa","IA",2809 +2022-11-01,"Electric Power Consumption","Nebraska","NE",595 +2022-11-01,"Electric Power Consumption","Missouri","MO",4068 +2022-11-01,"Industrial Consumption","Washington","WA",7183 +2022-11-01,"Industrial Consumption","Oregon","OR",5045 +2022-11-01,"Industrial Consumption","Arkansas","AR",9411 +2022-11-01,"Industrial Consumption","Vermont","VT",184 +2022-11-01,"Industrial Consumption","Illinois","IL",24423 +2022-11-01,"Industrial Consumption","Montana","MT",2524 +2022-11-01,"Industrial Consumption","Hawaii","HI",7 +2022-11-01,"Industrial Consumption","Louisiana","LA",96527 +2022-11-01,"Industrial Consumption","Alabama","AL",18717 +2022-11-01,"Industrial Consumption","Texas","TX",162995 +2022-11-01,"Industrial Consumption","Nebraska","NE",8065 +2022-11-01,"Industrial Consumption","Virginia","VA",8200 +2022-11-01,"Industrial Consumption","Pennsylvania","PA",20180 +2022-11-01,"Industrial Consumption","Nevada","NV",1463 +2022-11-01,"Industrial Consumption","New Jersey","NJ",6967 +2022-11-01,"Industrial Consumption","New Hampshire","NH",578 +2022-11-01,"Industrial Consumption","North Carolina","NC",10415 +2022-11-01,"Industrial Consumption","District of Columbia","DC",0 +2022-11-01,"Industrial Consumption","Massachusetts","MA",3190 +2022-11-01,"Industrial Consumption","Wyoming","WY",NA +2022-11-01,"Industrial Consumption","Michigan","MI",14864 +2022-11-01,"Industrial Consumption","Delaware","DE",2606 +2022-11-01,"Industrial Consumption","Georgia","GA",12760 +2022-11-01,"Industrial Consumption","Mississippi","MS",10366 +2022-11-01,"Industrial Consumption","South Carolina","SC",7837 +2022-11-01,"Industrial Consumption","Idaho","ID",4021 +2022-11-01,"Industrial Consumption","Rhode Island","RI",654 +2022-11-01,"Industrial Consumption","Ohio","OH",27396 +2022-11-01,"Industrial Consumption","Utah","UT",3055 +2022-11-01,"Industrial Consumption","U.S.","U.S.",722834 +2022-11-01,"Industrial Consumption","New York","NY",7991 +2022-11-01,"Industrial Consumption","Maine","ME",1935 +2022-11-01,"Industrial Consumption","West Virginia","WV",3349 +2022-11-01,"Industrial Consumption","Wisconsin","WI",13295 +2022-11-01,"Industrial Consumption","Tennessee","TN",12526 +2022-11-01,"Industrial Consumption","South Dakota","SD",4340 +2022-11-01,"Industrial Consumption","New Mexico","NM",NA +2022-11-01,"Industrial Consumption","Kansas","KS",12119 +2022-11-01,"Industrial Consumption","California","CA",54494 +2022-11-01,"Industrial Consumption","Minnesota","MN",NA +2022-11-01,"Industrial Consumption","Iowa","IA",21560 +2022-11-01,"Industrial Consumption","Connecticut","CT",1850 +2022-11-01,"Industrial Consumption","Kentucky","KY",12004 +2022-11-01,"Industrial Consumption","Alaska","AK",5596 +2022-11-01,"Industrial Consumption","North Dakota","ND",2852 +2022-11-01,"Industrial Consumption","Maryland","MD",1427 +2022-11-01,"Industrial Consumption","Oklahoma","OK",18938 +2022-11-01,"Industrial Consumption","Missouri","MO",5628 +2022-11-01,"Industrial Consumption","Colorado","CO",9361 +2022-11-01,"Industrial Consumption","Arizona","AZ",1838 +2022-11-01,"Industrial Consumption","Florida","FL",NA +2022-11-01,"Industrial Consumption","Indiana","IN",32940 +2022-11-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",167934 +2022-11-01,"Pipeline Fuel Consumption","U.S.","U.S.",102143 +2022-11-01,"Residential Consumption","Iowa","IA",7017 +2022-11-01,"Residential Consumption","Vermont","VT",289 +2022-11-01,"Residential Consumption","Massachusetts","MA",9763 +2022-11-01,"Residential Consumption","Kentucky","KY",5413 +2022-11-01,"Residential Consumption","New York","NY",38598 +2022-11-01,"Residential Consumption","Oregon","OR",7405 +2022-11-01,"Residential Consumption","Maryland","MD",7829 +2022-11-01,"Residential Consumption","Ohio","OH",33012 +2022-11-01,"Residential Consumption","Hawaii","HI",46 +2022-11-01,"Residential Consumption","Tennessee","TN",8212 +2022-11-01,"Residential Consumption","Oklahoma","OK",7330 +2022-11-01,"Residential Consumption","West Virginia","WV",2414 +2022-11-01,"Residential Consumption","U.S.","U.S.",516416 +2022-11-01,"Residential Consumption","Louisiana","LA",3887 +2022-11-01,"Residential Consumption","Pennsylvania","PA",21751 +2022-11-01,"Residential Consumption","New Hampshire","NH",456 +2022-11-01,"Residential Consumption","Delaware","DE",1008 +2022-11-01,"Residential Consumption","Alabama","AL",3098 +2022-11-01,"Residential Consumption","Rhode Island","RI",NA +2022-11-01,"Residential Consumption","Mississippi","MS",2531 +2022-11-01,"Residential Consumption","Connecticut","CT",4629 +2022-11-01,"Residential Consumption","Nebraska","NE",3947 +2022-11-01,"Residential Consumption","Michigan","MI",34664 +2022-11-01,"Residential Consumption","District of Columbia","DC",1140 +2022-11-01,"Residential Consumption","Maine","ME",NA +2022-11-01,"Residential Consumption","North Dakota","ND",1114 +2022-11-01,"Residential Consumption","New Jersey","NJ",20603 +2022-11-01,"Residential Consumption","Kansas","KS",NA +2022-11-01,"Residential Consumption","Washington","WA",13273 +2022-11-01,"Residential Consumption","Alaska","AK",2520 +2022-11-01,"Residential Consumption","Wyoming","WY",1829 +2022-11-01,"Residential Consumption","Utah","UT",11576 +2022-11-01,"Residential Consumption","South Dakota","SD",1052 +2022-11-01,"Residential Consumption","Nevada","NV",3877 +2022-11-01,"Residential Consumption","Indiana","IN",15122 +2022-11-01,"Residential Consumption","Florida","FL",1395 +2022-11-01,"Residential Consumption","Idaho","ID",5451 +2022-11-01,"Residential Consumption","Arizona","AZ",3632 +2022-11-01,"Residential Consumption","South Carolina","SC",3419 +2022-11-01,"Residential Consumption","North Carolina","NC",7306 +2022-11-01,"Residential Consumption","Virginia","VA",8341 +2022-11-01,"Residential Consumption","Minnesota","MN",15123 +2022-11-01,"Residential Consumption","New Mexico","NM",5355 +2022-11-01,"Residential Consumption","Texas","TX",26274 +2022-11-01,"Residential Consumption","Wisconsin","WI",14835 +2022-11-01,"Residential Consumption","Georgia","GA",13838 +2022-11-01,"Residential Consumption","Arkansas","AR",2027 +2022-11-01,"Residential Consumption","Montana","MT",3098 +2022-11-01,"Residential Consumption","Colorado","CO",19871 +2022-11-01,"Residential Consumption","Missouri","MO",12828 +2022-11-01,"Residential Consumption","California","CA",47452 +2022-11-01,"Residential Consumption","Illinois","IL",42291 +2022-11-01,"Vehicle Fuel Consumption","Utah","UT",23 +2022-11-01,"Vehicle Fuel Consumption","Virginia","VA",54 +2022-11-01,"Vehicle Fuel Consumption","New York","NY",91 +2022-11-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-11-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-11-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-11-01,"Vehicle Fuel Consumption","Wisconsin","WI",37 +2022-11-01,"Vehicle Fuel Consumption","Oklahoma","OK",141 +2022-11-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-11-01,"Vehicle Fuel Consumption","New Jersey","NJ",36 +2022-11-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2022-11-01,"Vehicle Fuel Consumption","North Carolina","NC",128 +2022-11-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-11-01,"Vehicle Fuel Consumption","U.S.","U.S.",4368 +2022-11-01,"Vehicle Fuel Consumption","Tennessee","TN",30 +2022-11-01,"Vehicle Fuel Consumption","Nevada","NV",92 +2022-11-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2022-11-01,"Vehicle Fuel Consumption","District of Columbia","DC",22 +2022-11-01,"Vehicle Fuel Consumption","Texas","TX",75 +2022-11-01,"Vehicle Fuel Consumption","Indiana","IN",155 +2022-11-01,"Vehicle Fuel Consumption","Minnesota","MN",44 +2022-11-01,"Vehicle Fuel Consumption","Georgia","GA",122 +2022-11-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-11-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2022-11-01,"Vehicle Fuel Consumption","Ohio","OH",89 +2022-11-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-11-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2022-11-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-11-01,"Vehicle Fuel Consumption","Florida","FL",450 +2022-11-01,"Vehicle Fuel Consumption","Nebraska","NE",33 +2022-11-01,"Vehicle Fuel Consumption","Massachusetts","MA",6 +2022-11-01,"Vehicle Fuel Consumption","Arizona","AZ",166 +2022-11-01,"Vehicle Fuel Consumption","Colorado","CO",142 +2022-11-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-11-01,"Vehicle Fuel Consumption","Connecticut","CT",16 +2022-11-01,"Vehicle Fuel Consumption","California","CA",2041 +2022-11-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2022-11-01,"Vehicle Fuel Consumption","Maryland","MD",23 +2022-11-01,"Vehicle Fuel Consumption","Louisiana","LA",29 +2022-11-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-11-01,"Vehicle Fuel Consumption","New Mexico","NM",32 +2022-11-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2022-11-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2022-11-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2022-11-01,"Vehicle Fuel Consumption","Pennsylvania","PA",137 +2022-11-01,"Vehicle Fuel Consumption","Kansas","KS",74 +2022-11-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2022-11-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-11-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2022-11-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-11-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2022-11-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2022-12-01,"Commercial Consumption","New Mexico","NM",NA +2022-12-01,"Commercial Consumption","New Hampshire","NH",1256 +2022-12-01,"Commercial Consumption","Rhode Island","RI",1206 +2022-12-01,"Commercial Consumption","Tennessee","TN",8793 +2022-12-01,"Commercial Consumption","Wyoming","WY",2514 +2022-12-01,"Commercial Consumption","South Carolina","SC",3446 +2022-12-01,"Commercial Consumption","Colorado","CO",10333 +2022-12-01,"Commercial Consumption","Utah","UT",7675 +2022-12-01,"Commercial Consumption","South Dakota","SD",2336 +2022-12-01,"Commercial Consumption","New Jersey","NJ",22188 +2022-12-01,"Commercial Consumption","Florida","FL",NA +2022-12-01,"Commercial Consumption","Idaho","ID",3572 +2022-12-01,"Commercial Consumption","Connecticut","CT",7570 +2022-12-01,"Commercial Consumption","Mississippi","MS",2568 +2022-12-01,"Commercial Consumption","Virginia","VA",10347 +2022-12-01,"Commercial Consumption","Montana","MT",4328 +2022-12-01,"Commercial Consumption","Kentucky","KY",6069 +2022-12-01,"Commercial Consumption","Ohio","OH",29541 +2022-12-01,"Commercial Consumption","Minnesota","MN",NA +2022-12-01,"Commercial Consumption","Texas","TX",23238 +2022-12-01,"Commercial Consumption","California","CA",28096 +2022-12-01,"Commercial Consumption","Alabama","AL",3926 +2022-12-01,"Commercial Consumption","Nebraska","NE",5149 +2022-12-01,"Commercial Consumption","Louisiana","LA",3569 +2022-12-01,"Commercial Consumption","West Virginia","WV",3221 +2022-12-01,"Commercial Consumption","Pennsylvania","PA",29219 +2022-12-01,"Commercial Consumption","Michigan","MI",25574 +2022-12-01,"Commercial Consumption","Indiana","IN",15287 +2022-12-01,"Commercial Consumption","Oklahoma","OK",7047 +2022-12-01,"Commercial Consumption","Missouri","MO",10767 +2022-12-01,"Commercial Consumption","Maryland","MD",9600 +2022-12-01,"Commercial Consumption","Georgia","GA",8755 +2022-12-01,"Commercial Consumption","Hawaii","HI",195 +2022-12-01,"Commercial Consumption","Alaska","AK",2307 +2022-12-01,"Commercial Consumption","New York","NY",42020 +2022-12-01,"Commercial Consumption","North Carolina","NC",9122 +2022-12-01,"Commercial Consumption","Wisconsin","WI",16025 +2022-12-01,"Commercial Consumption","Maine","ME",1283 +2022-12-01,"Commercial Consumption","U.S.","U.S.",495846 +2022-12-01,"Commercial Consumption","Iowa","IA",8361 +2022-12-01,"Commercial Consumption","Arkansas","AR",5872 +2022-12-01,"Commercial Consumption","Illinois","IL",34609 +2022-12-01,"Commercial Consumption","District of Columbia","DC",2127 +2022-12-01,"Commercial Consumption","Washington","WA",9101 +2022-12-01,"Commercial Consumption","North Dakota","ND",2549 +2022-12-01,"Commercial Consumption","Oregon","OR",5226 +2022-12-01,"Commercial Consumption","Massachusetts","MA",14356 +2022-12-01,"Commercial Consumption","Kansas","KS",7167 +2022-12-01,"Commercial Consumption","Vermont","VT",863 +2022-12-01,"Commercial Consumption","Delaware","DE",1655 +2022-12-01,"Commercial Consumption","Arizona","AZ",4152 +2022-12-01,"Commercial Consumption","Nevada","NV",4218 +2022-12-01,"Delivered to Consumers","Utah","UT",32278 +2022-12-01,"Delivered to Consumers","Nebraska","NE",NA +2022-12-01,"Delivered to Consumers","Georgia","GA",78239 +2022-12-01,"Delivered to Consumers","Arizona","AZ",39005 +2022-12-01,"Delivered to Consumers","New Hampshire","NH",4960 +2022-12-01,"Delivered to Consumers","Florida","FL",NA +2022-12-01,"Delivered to Consumers","Wyoming","WY",NA +2022-12-01,"Delivered to Consumers","Vermont","VT",1589 +2022-12-01,"Delivered to Consumers","South Dakota","SD",10804 +2022-12-01,"Delivered to Consumers","Kansas","KS",34991 +2022-12-01,"Delivered to Consumers","Connecticut","CT",29226 +2022-12-01,"Delivered to Consumers","Wisconsin","WI",70177 +2022-12-01,"Delivered to Consumers","Pennsylvania","PA",170182 +2022-12-01,"Delivered to Consumers","Louisiana","LA",132395 +2022-12-01,"Delivered to Consumers","Washington","WA",43962 +2022-12-01,"Delivered to Consumers","Minnesota","MN",NA +2022-12-01,"Delivered to Consumers","Ohio","OH",153877 +2022-12-01,"Delivered to Consumers","California","CA",210298 +2022-12-01,"Delivered to Consumers","South Carolina","SC",29078 +2022-12-01,"Delivered to Consumers","New Jersey","NJ",NA +2022-12-01,"Delivered to Consumers","North Dakota","ND",9140 +2022-12-01,"Delivered to Consumers","U.S.","U.S.",3087829 +2022-12-01,"Delivered to Consumers","New Mexico","NM",NA +2022-12-01,"Delivered to Consumers","Virginia","VA",67932 +2022-12-01,"Delivered to Consumers","Mississippi","MS",50311 +2022-12-01,"Delivered to Consumers","West Virginia","WV",12797 +2022-12-01,"Delivered to Consumers","Rhode Island","RI",7927 +2022-12-01,"Delivered to Consumers","Hawaii","HI",254 +2022-12-01,"Delivered to Consumers","Alaska","AK",14960 +2022-12-01,"Delivered to Consumers","Idaho","ID",17468 +2022-12-01,"Delivered to Consumers","Iowa","IA",47053 +2022-12-01,"Delivered to Consumers","Arkansas","AR",36313 +2022-12-01,"Delivered to Consumers","North Carolina","NC",76918 +2022-12-01,"Delivered to Consumers","District of Columbia","DC",4216 +2022-12-01,"Delivered to Consumers","Delaware","DE",8142 +2022-12-01,"Delivered to Consumers","Maryland","MD",32417 +2022-12-01,"Delivered to Consumers","Tennessee","TN",46352 +2022-12-01,"Delivered to Consumers","Michigan","MI",124897 +2022-12-01,"Delivered to Consumers","Maine","ME",5407 +2022-12-01,"Delivered to Consumers","Kentucky","KY",40537 +2022-12-01,"Delivered to Consumers","Alabama","AL",63611 +2022-12-01,"Delivered to Consumers","Texas","TX",365642 +2022-12-01,"Delivered to Consumers","Indiana","IN",98686 +2022-12-01,"Delivered to Consumers","Illinois","IL",149229 +2022-12-01,"Delivered to Consumers","New York","NY",158173 +2022-12-01,"Delivered to Consumers","Montana","MT",12467 +2022-12-01,"Delivered to Consumers","Oklahoma","OK",61524 +2022-12-01,"Delivered to Consumers","Missouri","MO",43320 +2022-12-01,"Delivered to Consumers","Massachusetts","MA",46893 +2022-12-01,"Delivered to Consumers","Colorado","CO",58121 +2022-12-01,"Delivered to Consumers","Oregon","OR",33932 +2022-12-01,"Delivered to Consumers","Nevada","NV",26032 +2022-12-01,"Electric Power Consumption","South Carolina","SC",10834 +2022-12-01,"Electric Power Consumption","Illinois","IL",16178 +2022-12-01,"Electric Power Consumption","Nevada","NV",15288 +2022-12-01,"Electric Power Consumption","Wyoming","WY",1348 +2022-12-01,"Electric Power Consumption","Mississippi","MS",32567 +2022-12-01,"Electric Power Consumption","Arizona","AZ",26197 +2022-12-01,"Electric Power Consumption","Michigan","MI",28124 +2022-12-01,"Electric Power Consumption","Vermont","VT",1 +2022-12-01,"Electric Power Consumption","Tennessee","TN",11186 +2022-12-01,"Electric Power Consumption","Alaska","AK",2461 +2022-12-01,"Electric Power Consumption","Louisiana","LA",26098 +2022-12-01,"Electric Power Consumption","New York","NY",34992 +2022-12-01,"Electric Power Consumption","Rhode Island","RI",3936 +2022-12-01,"Electric Power Consumption","Utah","UT",7519 +2022-12-01,"Electric Power Consumption","Massachusetts","MA",10958 +2022-12-01,"Electric Power Consumption","Wisconsin","WI",13966 +2022-12-01,"Electric Power Consumption","Hawaii","HI",NA +2022-12-01,"Electric Power Consumption","Texas","TX",142708 +2022-12-01,"Electric Power Consumption","Oregon","OR",15158 +2022-12-01,"Electric Power Consumption","West Virginia","WV",1567 +2022-12-01,"Electric Power Consumption","U.S.","U.S.",993345 +2022-12-01,"Electric Power Consumption","Nebraska","NE",883 +2022-12-01,"Electric Power Consumption","Missouri","MO",5173 +2022-12-01,"Electric Power Consumption","Ohio","OH",39387 +2022-12-01,"Electric Power Consumption","Montana","MT",1372 +2022-12-01,"Electric Power Consumption","California","CA",63792 +2022-12-01,"Electric Power Consumption","New Jersey","NJ",16865 +2022-12-01,"Electric Power Consumption","Arkansas","AR",16703 +2022-12-01,"Electric Power Consumption","Oklahoma","OK",23194 +2022-12-01,"Electric Power Consumption","Iowa","IA",4244 +2022-12-01,"Electric Power Consumption","South Dakota","SD",904 +2022-12-01,"Electric Power Consumption","North Carolina","NC",40643 +2022-12-01,"Electric Power Consumption","Connecticut","CT",11335 +2022-12-01,"Electric Power Consumption","Washington","WA",11594 +2022-12-01,"Electric Power Consumption","Virginia","VA",32207 +2022-12-01,"Electric Power Consumption","New Mexico","NM",9610 +2022-12-01,"Electric Power Consumption","Kentucky","KY",12961 +2022-12-01,"Electric Power Consumption","Delaware","DE",1610 +2022-12-01,"Electric Power Consumption","Colorado","CO",12370 +2022-12-01,"Electric Power Consumption","Minnesota","MN",7110 +2022-12-01,"Electric Power Consumption","Maine","ME",1669 +2022-12-01,"Electric Power Consumption","Indiana","IN",22050 +2022-12-01,"Electric Power Consumption","Georgia","GA",32465 +2022-12-01,"Electric Power Consumption","Idaho","ID",3727 +2022-12-01,"Electric Power Consumption","Kansas","KS",1709 +2022-12-01,"Electric Power Consumption","Pennsylvania","PA",74045 +2022-12-01,"Electric Power Consumption","New Hampshire","NH",1465 +2022-12-01,"Electric Power Consumption","North Dakota","ND",1355 +2022-12-01,"Electric Power Consumption","Maryland","MD",6289 +2022-12-01,"Electric Power Consumption","Florida","FL",99840 +2022-12-01,"Electric Power Consumption","Alabama","AL",35685 +2022-12-01,"Industrial Consumption","Massachusetts","MA",4123 +2022-12-01,"Industrial Consumption","Missouri","MO",6495 +2022-12-01,"Industrial Consumption","South Dakota","SD",4636 +2022-12-01,"Industrial Consumption","Texas","TX",162241 +2022-12-01,"Industrial Consumption","South Carolina","SC",7643 +2022-12-01,"Industrial Consumption","West Virginia","WV",3740 +2022-12-01,"Industrial Consumption","Minnesota","MN",14873 +2022-12-01,"Industrial Consumption","Idaho","ID",3977 +2022-12-01,"Industrial Consumption","Kentucky","KY",12320 +2022-12-01,"Industrial Consumption","Montana","MT",2630 +2022-12-01,"Industrial Consumption","Maryland","MD",2011 +2022-12-01,"Industrial Consumption","Louisiana","LA",97110 +2022-12-01,"Industrial Consumption","Kansas","KS",13048 +2022-12-01,"Industrial Consumption","Arizona","AZ",1982 +2022-12-01,"Industrial Consumption","Pennsylvania","PA",22501 +2022-12-01,"Industrial Consumption","New Jersey","NJ",NA +2022-12-01,"Industrial Consumption","Iowa","IA",22268 +2022-12-01,"Industrial Consumption","Colorado","CO",10226 +2022-12-01,"Industrial Consumption","Ohio","OH",30729 +2022-12-01,"Industrial Consumption","Arkansas","AR",9323 +2022-12-01,"Industrial Consumption","Alabama","AL",18665 +2022-12-01,"Industrial Consumption","New Hampshire","NH",985 +2022-12-01,"Industrial Consumption","New Mexico","NM",2124 +2022-12-01,"Industrial Consumption","Maine","ME",1995 +2022-12-01,"Industrial Consumption","Tennessee","TN",13010 +2022-12-01,"Industrial Consumption","Michigan","MI",16807 +2022-12-01,"Industrial Consumption","Rhode Island","RI",757 +2022-12-01,"Industrial Consumption","Mississippi","MS",11598 +2022-12-01,"Industrial Consumption","California","CA",49871 +2022-12-01,"Industrial Consumption","Virginia","VA",9716 +2022-12-01,"Industrial Consumption","Wisconsin","WI",15375 +2022-12-01,"Industrial Consumption","Indiana","IN",36861 +2022-12-01,"Industrial Consumption","U.S.","U.S.",754368 +2022-12-01,"Industrial Consumption","Oregon","OR",4993 +2022-12-01,"Industrial Consumption","Florida","FL",NA +2022-12-01,"Industrial Consumption","Connecticut","CT",2213 +2022-12-01,"Industrial Consumption","Delaware","DE",2706 +2022-12-01,"Industrial Consumption","Alaska","AK",6960 +2022-12-01,"Industrial Consumption","North Dakota","ND",3037 +2022-12-01,"Industrial Consumption","Hawaii","HI",6 +2022-12-01,"Industrial Consumption","Washington","WA",7312 +2022-12-01,"Industrial Consumption","New York","NY",7925 +2022-12-01,"Industrial Consumption","Vermont","VT",201 +2022-12-01,"Industrial Consumption","Wyoming","WY",NA +2022-12-01,"Industrial Consumption","Illinois","IL",27871 +2022-12-01,"Industrial Consumption","Oklahoma","OK",19171 +2022-12-01,"Industrial Consumption","Utah","UT",3123 +2022-12-01,"Industrial Consumption","Nevada","NV",1614 +2022-12-01,"Industrial Consumption","Nebraska","NE",NA +2022-12-01,"Industrial Consumption","North Carolina","NC",11318 +2022-12-01,"Industrial Consumption","Georgia","GA",13756 +2022-12-01,"Industrial Consumption","District of Columbia","DC",0 +2022-12-01,"Lease and Plant Fuel Consumption","U.S.","U.S.",169191 +2022-12-01,"Pipeline Fuel Consumption","U.S.","U.S.",124563 +2022-12-01,"Residential Consumption","Oregon","OR",8552 +2022-12-01,"Residential Consumption","Vermont","VT",522 +2022-12-01,"Residential Consumption","Colorado","CO",25045 +2022-12-01,"Residential Consumption","Arizona","AZ",6502 +2022-12-01,"Residential Consumption","Alabama","AL",5329 +2022-12-01,"Residential Consumption","Illinois","IL",70565 +2022-12-01,"Residential Consumption","Utah","UT",13938 +2022-12-01,"Residential Consumption","South Dakota","SD",2927 +2022-12-01,"Residential Consumption","Georgia","GA",23137 +2022-12-01,"Residential Consumption","Pennsylvania","PA",44275 +2022-12-01,"Residential Consumption","Washington","WA",15944 +2022-12-01,"Residential Consumption","Texas","TX",37377 +2022-12-01,"Residential Consumption","Connecticut","CT",8091 +2022-12-01,"Residential Consumption","Virginia","VA",15605 +2022-12-01,"Residential Consumption","District of Columbia","DC",2066 +2022-12-01,"Residential Consumption","Idaho","ID",6186 +2022-12-01,"Residential Consumption","Maine","ME",460 +2022-12-01,"Residential Consumption","Arkansas","AR",4408 +2022-12-01,"Residential Consumption","New Jersey","NJ",40110 +2022-12-01,"Residential Consumption","Oklahoma","OK",11966 +2022-12-01,"Residential Consumption","Delaware","DE",2170 +2022-12-01,"Residential Consumption","West Virginia","WV",4268 +2022-12-01,"Residential Consumption","Hawaii","HI",54 +2022-12-01,"Residential Consumption","Florida","FL",1982 +2022-12-01,"Residential Consumption","Massachusetts","MA",17449 +2022-12-01,"Residential Consumption","New Hampshire","NH",1254 +2022-12-01,"Residential Consumption","Montana","MT",4137 +2022-12-01,"Residential Consumption","Kansas","KS",12990 +2022-12-01,"Residential Consumption","Ohio","OH",54128 +2022-12-01,"Residential Consumption","North Carolina","NC",15703 +2022-12-01,"Residential Consumption","Louisiana","LA",5587 +2022-12-01,"Residential Consumption","Minnesota","MN",NA +2022-12-01,"Residential Consumption","New Mexico","NM",6699 +2022-12-01,"Residential Consumption","Indiana","IN",24327 +2022-12-01,"Residential Consumption","North Dakota","ND",2199 +2022-12-01,"Residential Consumption","Kentucky","KY",9186 +2022-12-01,"Residential Consumption","California","CA",66431 +2022-12-01,"Residential Consumption","Alaska","AK",3232 +2022-12-01,"Residential Consumption","New York","NY",73142 +2022-12-01,"Residential Consumption","South Carolina","SC",7148 +2022-12-01,"Residential Consumption","Rhode Island","RI",2019 +2022-12-01,"Residential Consumption","Mississippi","MS",3578 +2022-12-01,"Residential Consumption","Nebraska","NE",7417 +2022-12-01,"Residential Consumption","Maryland","MD",14493 +2022-12-01,"Residential Consumption","U.S.","U.S.",839755 +2022-12-01,"Residential Consumption","Iowa","IA",12178 +2022-12-01,"Residential Consumption","Wisconsin","WI",24773 +2022-12-01,"Residential Consumption","Tennessee","TN",13330 +2022-12-01,"Residential Consumption","Michigan","MI",54391 +2022-12-01,"Residential Consumption","Nevada","NV",4817 +2022-12-01,"Residential Consumption","Missouri","MO",20867 +2022-12-01,"Residential Consumption","Wyoming","WY",2815 +2022-12-01,"Vehicle Fuel Consumption","West Virginia","WV",0 +2022-12-01,"Vehicle Fuel Consumption","Alabama","AL",6 +2022-12-01,"Vehicle Fuel Consumption","Rhode Island","RI",8 +2022-12-01,"Vehicle Fuel Consumption","Missouri","MO",18 +2022-12-01,"Vehicle Fuel Consumption","Indiana","IN",160 +2022-12-01,"Vehicle Fuel Consumption","Michigan","MI",0 +2022-12-01,"Vehicle Fuel Consumption","Montana","MT",0 +2022-12-01,"Vehicle Fuel Consumption","New Mexico","NM",33 +2022-12-01,"Vehicle Fuel Consumption","Washington","WA",11 +2022-12-01,"Vehicle Fuel Consumption","New York","NY",94 +2022-12-01,"Vehicle Fuel Consumption","Nevada","NV",95 +2022-12-01,"Vehicle Fuel Consumption","North Carolina","NC",132 +2022-12-01,"Vehicle Fuel Consumption","Connecticut","CT",17 +2022-12-01,"Vehicle Fuel Consumption","California","CA",2109 +2022-12-01,"Vehicle Fuel Consumption","North Dakota","ND",0 +2022-12-01,"Vehicle Fuel Consumption","Kentucky","KY",1 +2022-12-01,"Vehicle Fuel Consumption","Ohio","OH",92 +2022-12-01,"Vehicle Fuel Consumption","Florida","FL",465 +2022-12-01,"Vehicle Fuel Consumption","Minnesota","MN",46 +2022-12-01,"Vehicle Fuel Consumption","Illinois","IL",6 +2022-12-01,"Vehicle Fuel Consumption","South Dakota","SD",0 +2022-12-01,"Vehicle Fuel Consumption","Vermont","VT",3 +2022-12-01,"Vehicle Fuel Consumption","Virginia","VA",56 +2022-12-01,"Vehicle Fuel Consumption","Arizona","AZ",172 +2022-12-01,"Vehicle Fuel Consumption","Maine","ME",0 +2022-12-01,"Vehicle Fuel Consumption","Georgia","GA",126 +2022-12-01,"Vehicle Fuel Consumption","Utah","UT",24 +2022-12-01,"Vehicle Fuel Consumption","Tennessee","TN",31 +2022-12-01,"Vehicle Fuel Consumption","Oklahoma","OK",146 +2022-12-01,"Vehicle Fuel Consumption","Iowa","IA",2 +2022-12-01,"Vehicle Fuel Consumption","Delaware","DE",0 +2022-12-01,"Vehicle Fuel Consumption","Maryland","MD",24 +2022-12-01,"Vehicle Fuel Consumption","Louisiana","LA",30 +2022-12-01,"Vehicle Fuel Consumption","South Carolina","SC",8 +2022-12-01,"Vehicle Fuel Consumption","Arkansas","AR",7 +2022-12-01,"Vehicle Fuel Consumption","Wyoming","WY",1 +2022-12-01,"Vehicle Fuel Consumption","Wisconsin","WI",39 +2022-12-01,"Vehicle Fuel Consumption","New Jersey","NJ",37 +2022-12-01,"Vehicle Fuel Consumption","Oregon","OR",3 +2022-12-01,"Vehicle Fuel Consumption","Hawaii","HI",0 +2022-12-01,"Vehicle Fuel Consumption","Idaho","ID",6 +2022-12-01,"Vehicle Fuel Consumption","Pennsylvania","PA",142 +2022-12-01,"Vehicle Fuel Consumption","New Hampshire","NH",1 +2022-12-01,"Vehicle Fuel Consumption","Colorado","CO",146 +2022-12-01,"Vehicle Fuel Consumption","Alaska","AK",0 +2022-12-01,"Vehicle Fuel Consumption","Kansas","KS",76 +2022-12-01,"Vehicle Fuel Consumption","District of Columbia","DC",23 +2022-12-01,"Vehicle Fuel Consumption","Nebraska","NE",34 +2022-12-01,"Vehicle Fuel Consumption","Massachusetts","MA",7 +2022-12-01,"Vehicle Fuel Consumption","Texas","TX",78 +2022-12-01,"Vehicle Fuel Consumption","Mississippi","MS",1 +2022-12-01,"Vehicle Fuel Consumption","U.S.","U.S.",4514 diff --git a/data/us_residential.rda b/data/us_residential.rda index 91040d6..ffb235f 100644 Binary files a/data/us_residential.rda and b/data/us_residential.rda differ diff --git a/data/usgas.rda b/data/usgas.rda new file mode 100644 index 0000000..bcf2f6d Binary files /dev/null and b/data/usgas.rda differ diff --git a/data_raw/data_raw.R b/data_raw/data_raw.R index 434e58c..02b4bc2 100644 --- a/data_raw/data_raw.R +++ b/data_raw/data_raw.R @@ -1,104 +1,82 @@ -# Data pull -# API Details ---- -# API - https://www.eia.gov -# API call - http://api.eia.gov/series/?api_key=YOUR_API_KEY_HERE&series_id=SERIES_ID -# Parameters ---- -`%>%` <- magrittr::`%>%` -api_key <- Sys.getenv("eia_key") - -# US residential consumption ---- -category_details <- tsAPI::eia_query(api_key = api_key,category_id = 480585) -series_details <- category_details$category$childseries -series_details$f -monthly <- series_details$series_id[which(series_details$f == "M")] -monthly - - -us_residential <- lapply(1:length(monthly), function(i){ - id <- monthly[i] - series_name <- series_details$name[which(series_details$series_id == id)] - state <- substr(series_name, 1, regexpr("Natural Gas", text = series_name) - 2) - url <- paste("curl --location --request GET 'http://api.eia.gov/series/?api_key=", - api_key, - "&series_id=", - id, - "' | jq -r '.series[].data[] | [.[0], .[1]] | @tsv'", - sep = "") - - df <- data.table::fread(cmd = url, - na.strings= NULL, - col.names = c("date", "y")) %>% - as.data.frame %>% - dplyr::mutate(date = lubridate::ymd(paste(date, "01", sep = ""))) %>% - dplyr::mutate(state = state) %>% - dplyr::select(date, state, y) - -}) %>% - dplyr::bind_rows() %>% - dplyr::arrange(state, date) - -head(us_residential) -usethis::use_data(us_residential, overwrite = TRUE) -write.csv(us_residential, "csv/us_residential.csv", row.names = FALSE) - -# US total consumption ---- -category_details <- tsAPI::eia_query(api_key = api_key,category_id = 480324) -series_details <- category_details$category$childseries -series_details$f -annual <- series_details$series_id[which(series_details$f == "A")] -annual - -us_monthly <- series_details$series_id[which(series_details$f == "M")] - - -us_total <- lapply(1:length(annual), function(i){ - id <- annual[i] - series_name <- series_details$name[which(series_details$series_id == id)] - state <- substr(series_name, 1, regexpr("Natural Gas", text = series_name) - 2) - url <- paste("curl --location --request GET 'http://api.eia.gov/series/?api_key=", - api_key, - "&series_id=", - id, - "' | jq -r '.series[].data[] | [.[0], .[1]] | @tsv'", - sep = "") - - df <- data.table::fread(cmd = url, - na.strings= NULL, - col.names = c("year", "y")) %>% - as.data.frame %>% - dplyr::mutate(state = state) %>% - dplyr::select(year, state, y) - -}) %>% - dplyr::bind_rows() %>% - dplyr::arrange(state, year) - -head(us_total) -usethis::use_data(us_total, overwrite = TRUE) -write.csv(us_total, "csv/us_total.csv", row.names = FALSE) - - -# US total consumption ---- -id <- us_monthly -series_name <- series_details$name[which(series_details$series_id == id)] -state <- substr(series_name, 1, regexpr("Natural Gas", text = series_name) - 2) -url <- paste("curl --location --request GET 'http://api.eia.gov/series/?api_key=", - api_key, - "&series_id=", - id, - "' | jq -r '.series[].data[] | [.[0], .[1]] | @tsv'", - sep = "") - -us_monthly <- data.table::fread(cmd = url, - na.strings= NULL, - col.names = c("date", "y")) %>% - as.data.frame %>% - dplyr::mutate(date = lubridate::ymd(paste(date, "01", sep = ""))) %>% - dplyr::select(date, y) %>% - dplyr::arrange(date) -head(us_monthly) - -plot(x = us_monthly$date, y = us_monthly$y, type = "l") - -usethis::use_data(us_monthly, overwrite = TRUE) -write.csv(us_monthly, "csv/us_monthly.csv", row.names = FALSE) +# Pulling US Monthly Consumption of Natural Gas + +# Source: https://www.eia.gov/opendata/browser/natural-gas/cons/sum?frequency=monthly&data=value;&facets=product;process;&product=EPG0;&process=VRS;&end=2022-12&sortColumn=period;&sortDirection=desc; + +eia_key <- Sys.getenv("eia_key") + +years <- 1973:2022 + +url <- "https://api.eia.gov/v2/natural-gas/cons/sum/data/" + + +# US consumption by sector type + +usgas_raw <- lapply(years, function(i){ + print(i) + gas_meta <- EIAapi::eia_get(api_key = eia_key , + api_url = url, + format = "data.frame", + facets = list(process = c("VCS", + "VDV", + "VEU", + "VGL", + "VGP", + "VGT", + "VIN", + "VRS"), + product = "EPG0"), + start = paste(i, "-01", sep = ""), + end = paste(i + 1, "-01", sep = ""), + frequency = "monthly", + length = 5000, + offset = 0) + + return(gas_meta) + +}) |> dplyr::bind_rows() + +unique(usgas_raw$units) + +usgas_meta <- usgas_raw |> + dplyr::select(state_raw = `area-name`) |> + dplyr::distinct() |> + dplyr::mutate(state_abb = gsub(pattern = "USA-", replacement = "", x = state_raw), + state_abb = ifelse(state_abb == "CALIFORNIA", "CA", state_abb), + state_abb = ifelse(state_abb == "COLORADO", "CO", state_abb), + state_abb = ifelse(state_abb == "OHIO", "OH", state_abb), + state_abb = ifelse(state_abb == "NEW YORK", "NY", state_abb), + state_abb = ifelse(state_abb == "FLORIDA", "FL", state_abb), + state_abb = ifelse(state_abb == "MASSACHUSETTS", "MA", state_abb), + state_abb = ifelse(state_abb == "WASHINGTON", "WA", state_abb), + state_abb = ifelse(state_abb == "MINNESOTA", "MN", state_abb), + state_abb = ifelse(state_abb == "TEXAS", "TX", state_abb), + state_abb = ifelse(state_abb == "TEXAS", "TX", state_abb), + state_name = state.name[match(state_abb,state.abb)], + state_name = ifelse(state_abb == "DC", "District of Columbia", state_name), + state_name = ifelse(state_abb == "U.S.", "U.S.", state_name)) + + + +usgas <- usgas_raw |> + dplyr::mutate(date = as.Date(paste(period, "-01", sep = ""))) |> + dplyr::select(date, state_raw = `area-name`, + # process, + process = `process-name`, + y = value) |> + dplyr::left_join(usgas_meta |> + dplyr::select(state_raw, state = state_name, state_abb), + by = "state_raw") |> + dplyr::select(-state_raw) |> + dplyr::select(date, process, state, state_abb, y) |> + dplyr::arrange(date, process) + +head(usgas) + +attr(usgas, "units") <- "MMCF" +attr(usgas, "product_name") <- "Natural Gas" +attr(usgas, "source") <- "EIA API: https://www.eia.gov/opendata/browser/natural-gas" + +max(usgas$date) + +usethis::use_data(usgas, overwrite = TRUE) +write.csv(usgas, "./csv/usgas.csv", row.names = FALSE) diff --git a/docs/404.html b/docs/404.html index a66c9c8..f12c31b 100644 --- a/docs/404.html +++ b/docs/404.html @@ -1,66 +1,27 @@ - - - - + + + + - Page not found (404) • USgas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - - - - -
-
- + +
+ + + - - -
+
+
-
+ + - - diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index b291fdd..1b95cf2 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -1,66 +1,12 @@ - - - - - - - -License • USgas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -License • USgas - + + - - - -
-
- -
- -
+
+
-
- +
- - + + diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 9fdc0d8..10d58cd 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -1,66 +1,12 @@ - - - - - - - -MIT License • USgas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -MIT License • USgas - + + - - - -
-
- -
- -
+
+
-
- +
- - + + diff --git a/docs/articles/index.html b/docs/articles/index.html index f7d85ab..d85c93c 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -1,66 +1,12 @@ - - - - - - - -Articles • USgas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Articles • USgas - + + - - - -
-
- -
- -
+
+
Introduction
+
+
-
- +
- - + + diff --git a/docs/articles/introduction.html b/docs/articles/introduction.html index 4d502e6..715e16c 100644 --- a/docs/articles/introduction.html +++ b/docs/articles/introduction.html @@ -19,6 +19,8 @@ + +
-
+ + +
- -

The USgas package provides an overview of demand for natural gas in the US in a time-series format. That includes the following datasets:

+

The USgas package provides an overview of demand for +natural gas in the US in a time-series format. That includes the +following dataset: * usgas - The monthly consumption of +natural gas in the US/state level by end-use since 1973 for US level and +1989 for state level. It includes the following end-use categories: - +Commercial Consumption - Delivered to Consumers - Electric Power +Consumption - Industrial Consumption - Lease and Plant Fuel Consumption +- Pipeline Fuel Consumption - Residential Consumption - Vehicle Fuel +Consumption

+

The package also includes the following datasets, from previous +release:

  • -us_total - The US annual natural gas consumption by state-level between 1997 and 2019, and aggregate level between 1949 and 2019
  • +us_total - The US annual natural gas consumption by +state-level between 1997 and 2019, and aggregate level between 1949 and +2019
  • -us_monthly - The monthly demand for natural gas in the US between 2001 and 2020
  • +us_monthly - The monthly demand for natural gas in the +US between 2001 and 2020
  • -us_residential - The US monthly natural gas residential consumption by state and aggregate level between 1989 and 2020
  • +us_residential - The US monthly natural gas residential +consumption by state and aggregate level between 1989 and 2020
-

Data source: The US Energy Information Administration API

-
-

-us_total

-

The us_total provides an annual overview on the US total demand for natural gas by state and aggregated level. The dataset includes the following fields:

+

The us_total, us_monthly, and +us_residential can be derived out of the usgas +dataset. Therefore, those datasets in the process of deprication and +will be removed in the next release to CRAN.

+

Data source: The US Energy Information Administration API

+
+

The usgas dataset +

+

The usgas dataset provides a 313 time series focusing on +the consumption of natural gas by end use in the US (aggregated and +state level). It includes the following fields:

  • -year - An integer, the year of the observation
  • +date - A Date, the month and year of the observation +(the day set by default to 1st of the month)} +
  • +process - The process type description
  • -state - A character, the US state (or aggregate level) indicator
  • +state - The US state name
  • -y - A numeric, the corresponding yearly total natural gas consumption in a million cubic feet by state/US
  • +state_abb - The US state abbreviation +
  • +y - A numeric, the monthly natural gas residential +consumption in a million cubic feet
-
-data("us_total")
-
-head(us_total)
-#>   year   state      y
-#> 1 1997 Alabama 324158
-#> 2 1998 Alabama 329134
-#> 3 1999 Alabama 337270
-#> 4 2000 Alabama 353614
-#> 5 2001 Alabama 332693
-#> 6 2002 Alabama 379343
-
-

The dataset includes the state level and the US aggregate level (labeled under U.S.):

-
-unique(us_total$state)
-#>  [1] "Alabama"                            "Alaska"                            
-#>  [3] "Arizona"                            "Arkansas"                          
-#>  [5] "California"                         "Colorado"                          
-#>  [7] "Connecticut"                        "Delaware"                          
-#>  [9] "District of Columbia"               "Federal Offshore -- Gulf of Mexico"
-#> [11] "Florida"                            "Georgia"                           
-#> [13] "Hawaii"                             "Idaho"                             
-#> [15] "Illinois"                           "Indiana"                           
-#> [17] "Iowa"                               "Kansas"                            
-#> [19] "Kentucky"                           "Louisiana"                         
-#> [21] "Maine"                              "Maryland"                          
-#> [23] "Massachusetts"                      "Michigan"                          
-#> [25] "Minnesota"                          "Mississippi"                       
-#> [27] "Missouri"                           "Montana"                           
-#> [29] "Nebraska"                           "Nevada"                            
-#> [31] "New Hampshire"                      "New Jersey"                        
-#> [33] "New Mexico"                         "New York"                          
-#> [35] "North Carolina"                     "North Dakota"                      
-#> [37] "Ohio"                               "Oklahoma"                          
-#> [39] "Oregon"                             "Pennsylvania"                      
-#> [41] "Rhode Island"                       "South Carolina"                    
-#> [43] "South Dakota"                       "Tennessee"                         
-#> [45] "Texas"                              "U.S."                              
-#> [47] "Utah"                               "Vermont"                           
-#> [49] "Virginia"                           "Washington"                        
-#> [51] "West Virginia"                      "Wisconsin"                         
-#> [53] "Wyoming"
-
-

In the example below, we will subset the US aggregate level view:

-
-us_agg <- us_total[which(us_total$state == "U.S."),]
-
-us_agg <- us_agg[order(us_agg$year), ]
-
-head(us_agg)
-#>      year state       y
-#> 1034 1949  U.S. 4971152
-#> 1035 1950  U.S. 5766542
-#> 1036 1951  U.S. 6810162
-#> 1037 1952  U.S. 7294320
-#> 1038 1953  U.S. 7639270
-#> 1039 1954  U.S. 8048504
-
-

We can plot it with the plot function. We will add some customiztion to the plot:

-
-at_x <- seq(from = 1950,
-            to = 2020,
-            by = 10)
-
-at_y <- pretty(us_agg$y)[c(3, 5, 7)]
-
-plot(us_agg$year, us_agg$y,
-     col = "#1f77b4",
-     type = "l",
-     frame.plot = FALSE,
-     axes = FALSE,
-     panel.first = abline(h = at_y, col = "grey80"),
-     main = "US Total Natural Gas Consumption",
-     xlab = "Source: https://www.eia.gov/",
-     ylab = "Million Cubic Feet")
-
-mtext(side =1, text = format(at_x, nsmall=0), at = at_x,
-      col = "grey20", line = 1, cex = 0.8)
-
-mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y,
-      col = "grey20", line = 1, cex = 0.8)
-
-

-

Similarly, we can subset a couple of states and visualize them. For example, let’s visualize the annual consumption in New England states. We will start by subsetting the corresponding states in New England, transform the data.frame to wide format, and reorder by date:

-
-ne <- c("Connecticut", "Maine", "Massachusetts",
-        "New Hampshire", "Rhode Island", "Vermont")
-ne_gas <-  us_total[which(us_total$state %in% ne),]
-
-ne_wide <- reshape(ne_gas, v.names = "y", idvar = "year",
-                   timevar = "state", direction = "wide")
-ne_wide <- ne_wide[order(ne_wide$year), ]
-
-names(ne_wide) <- c("year",ne)
-
-

Set the y and x axis ticks:

-
-at_x <- seq(from = 2000, to = 2020, by = 5)
-
-at_y <- pretty(ne_gas$y)[c(2, 4, 6)]
-
-

Use the plot to plot the states natural gas consumption:

-
-# plot the first series
-plot(ne_wide$year, ne_wide$Connecticut,
-     type = "l",
-     col = "#073b4c",
-     frame.plot = FALSE,
-     axes = FALSE,
-     panel.first = abline(h = c(at_y), col = "grey80"),
-     main = "New England Annual Natural Gas Consumption by State",
-     cex.main = 1.2, font.main = 1, col.main = "black",
-     xlab = "Source: https://www.eia.gov/",
-     font.axis = 1, cex.lab= 1,
-     ylab = "Million Cubic Feet",
-     ylim = c(min(ne_gas$y, na.rm = TRUE), max(ne_gas$y, na.rm = TRUE)),
-     xlim = c(min(ne_gas$year), max(ne_gas$year) + 3))
-
-# Add the 5 other series
-lines(ne_wide$year, ne_wide$Maine, col = "#1f77b4")
-lines(ne_wide$year, ne_wide$Massachusetts, col = "#118ab2")
-lines(ne_wide$year, ne_wide$`New Hampshire`, col = "#06d6a0")
-lines(ne_wide$year, ne_wide$`Rhode Island`, col = "#ffd166")
-lines(ne_wide$year, ne_wide$Vermont, col = "#ef476f")
-
-# Add the y and x axis ticks
-
-mtext(side =1, text = format(at_x, nsmall=0), at = at_x,
-      col = "grey20", line = 1, cex = 0.8)
-
-mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y,
-      col = "grey20", line = 1, cex = 0.8)
-
-# Add text 
-text(max(ne_wide$year) + 2,
-     tail(ne_wide$Connecticut,1),
-     "Connecticut",
-     col = "#073b4c",
-     cex = 0.7)
-
-text(max(ne_wide$year) + 2,
-     tail(ne_wide$Maine,1) * 0.95,
-     "Maine",
-     col = "#1f77b4",
-     cex = 0.7)
-
-text(max(ne_wide$year) + 2,
-     tail(ne_wide$Massachusetts,1),
-     "Massachusetts",
-     col = "#118ab2",
-     cex = 0.7)
-
-text(max(ne_wide$year) + 2,
-     tail(ne_wide$`New Hampshire`,1) * 1.1,
-     "New Hampshire",
-     col = "#06d6a0",
-     cex = 0.7)
-
-text(max(ne_wide$year) + 2,
-     tail(ne_wide$`Rhode Island`,1) * 1.05,
-     "Rhode Island",
-     col = "#ffd166",
-     cex = 0.7)
-
-text(max(ne_wide$year) + 2,
-     tail(ne_wide$Vermont,1),
-     "Vermont",
-     col = "#ef476f",
-     cex = 0.7)
-
-

-
-
-

-us_monthly

-

The us_monthly dataset provides a monthly time series, representing the demand for natural gas in the US between 2001 and 2020:

-
-data("us_monthly")
-
-head(us_monthly)
-#>         date       y
-#> 1 2001-01-01 2676998
-#> 2 2001-02-01 2309464
-#> 3 2001-03-01 2246633
-#> 4 2001-04-01 1807170
-#> 5 2001-05-01 1522382
-#> 6 2001-06-01 1444378
-
-

We will use the plot function to visualize the series:

-
-at_x <- seq.Date(from = as.Date("2000-01-01"),
-                 to = as.Date("2020-01-01"),
-                 by = "5 years")
-
-at_y <- pretty(us_monthly$y)[c(2, 4, 6)]
-
-plot(us_monthly$date, us_monthly$y,
-     col = "#1f77b4",
-     type = "l",
-     frame.plot = FALSE,
-     axes = FALSE,
-     panel.first = abline(h = at_y, col = "grey80"),
-     main = "US Total Natural Gas Consumption",
-     xlab = "Source: https://www.eia.gov/",
-     ylab = "Million Cubic Feet")
-
-
-
-mtext(side =1, text = format(at_x, format = "%Y"), at = at_x,
-      col = "grey20", line = 1, cex = 0.8)
-
-mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y,
-      col = "grey20", line = 1, cex = 0.8)
-
-

-
-
-

-us_residential

-

The us_residentail dataset provides a monthly overview on the residential consumption of natural gas in the US by state and aggregate levels:

-
-data("us_residential")
-
-head(us_residential)
-#>         date   state    y
-#> 1 1989-01-01 Alabama 7406
-#> 2 1989-02-01 Alabama 7044
-#> 3 1989-03-01 Alabama 7392
-#> 4 1989-04-01 Alabama 4722
-#> 5 1989-05-01 Alabama 2856
-#> 6 1989-06-01 Alabama 1709
-
-

The dataset contains information about the residential consumption on all US states:

-
-unique(us_residential$state)
-#>  [1] "Alabama"              "Alaska"               "Arizona"             
-#>  [4] "Arkansas"             "California"           "Colorado"            
-#>  [7] "Connecticut"          "Delaware"             "District of Columbia"
-#> [10] "Florida"              "Georgia"              "Hawaii"              
-#> [13] "Idaho"                "Illinois"             "Indiana"             
-#> [16] "Iowa"                 "Kansas"               "Kentucky"            
-#> [19] "Louisiana"            "Maine"                "Maryland"            
-#> [22] "Massachusetts"        "Michigan"             "Minnesota"           
-#> [25] "Mississippi"          "Missouri"             "Montana"             
-#> [28] "Nebraska"             "Nevada"               "New Hampshire"       
-#> [31] "New Jersey"           "New Mexico"           "New York"            
-#> [34] "North Carolina"       "North Dakota"         "Ohio"                
-#> [37] "Oklahoma"             "Oregon"               "Pennsylvania"        
-#> [40] "Rhode Island"         "South Carolina"       "South Dakota"        
-#> [43] "Tennessee"            "Texas"                "U.S."                
-#> [46] "Utah"                 "Vermont"              "Virginia"            
-#> [49] "Washington"           "West Virginia"        "Wisconsin"           
-#> [52] "Wyoming"
-
-

Similarly, we can plot the monthly consumption on natural gas in the West Cost states:

-
-wc_gas <- us_residential[which(us_residential$state %in%
-                             c("Alaska", "California",
-                               "Oregon", "Washington")),]
-
-# Reshape to wide
-wc_wide <- reshape(wc_gas, v.names = "y", idvar = "date",
-                   timevar = "state", direction = "wide")
-
-names(wc_wide) <- c("date","Alaska", "California",
-                    "Oregon", "Washington")
-# Reorder the data
-wc_wide <- wc_wide[order(wc_wide$date), ]
-
-# Set the plot y and x axis ticks
-at_x <- seq.Date(from = as.Date("1990-01-01"),
-                 to = as.Date("2020-01-01"),
-                 length.out = 4)
-
-at_y <- pretty(wc_gas$y)[c(2, 4, 6)]
-
-# plot the first series
-plot(wc_wide$date, wc_wide$Alaska,
-     type = "l",
-     frame.plot = FALSE,
-     axes = FALSE,
-     panel.first = abline(h = c(at_y), col = "grey80"),
-     main = "West Cost Natural Gas Residential Consumption",
-     cex.main = 1.2, font.main = 1, col.main = "black",
-     xlab = "Source: https://www.eia.gov/",
-     font.axis = 1, cex.lab= 1,
-     ylab = "Million Cubic Feet",
-     ylim = c(min(wc_gas$y, na.rm = TRUE), max(wc_gas$y, na.rm = TRUE)))
-
-# Add the 3 other series
-lines(wc_wide$date, wc_wide$California, col = "#1f77b4")
-lines(wc_wide$date, wc_wide$Oregon, col = "#457b9d")
-lines(wc_wide$date, wc_wide$Washington, col = "#ef476f")
-
-# Add the y and x axis ticks
-mtext(side =1, text = format(at_x, format = "%Y %b"), at = at_x,
-      col = "grey20", line = 1, cex = 0.8)
-
-mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y,
-      col = "grey20", line = 1, cex = 0.8)
-
-text(tail(wc_wide$date, 10)[1],
-     max(wc_gas$y, na.rm = TRUE),
-     "California",
-     col = "#1f77b4",
-     cex = 0.6)
-
-text(tail(wc_wide$date, 10)[1],
-     max(wc_gas$y, na.rm = TRUE) - 5000,
-     "Washington",
-     col = "#ef476f",
-     cex = 0.6)
-
-text(tail(wc_wide$date, 10)[1],
-     max(wc_gas$y, na.rm = TRUE) - 10000,
-     "Oregon",
-     col = "#457b9d",
-     cex = 0.6)
-
-text(tail(wc_wide$date, 10)[1],
-     max(wc_gas$y, na.rm = TRUE) - 15000,
-     "Alaska",
-     col = "black",
-     cex = 0.6)
-
-

+
+library(USgas)
+
+data("usgas")
+
+str(usgas)
+#> 'data.frame':    92783 obs. of  5 variables:
+#>  $ date     : Date, format: "1973-01-01" "1973-01-01" ...
+#>  $ process  : chr  "Commercial Consumption" "Residential Consumption" "Commercial Consumption" "Residential Consumption" ...
+#>  $ state    : chr  "U.S." "U.S." "U.S." "U.S." ...
+#>  $ state_abb: chr  "U.S." "U.S." "U.S." "U.S." ...
+#>  $ y        : int  392315 843900 394281 747331 310799 648504 231943 465867 174258 326313 ...
+#>  - attr(*, "units")= chr "MMCF"
+#>  - attr(*, "product_name")= chr "Natural Gas"
+#>  - attr(*, "source")= chr "EIA API: https://www.eia.gov/opendata/browser/natural-gas"
+
+head(usgas)
+#>         date                 process state state_abb      y
+#> 1 1973-01-01  Commercial Consumption  U.S.      U.S. 392315
+#> 2 1973-01-01 Residential Consumption  U.S.      U.S. 843900
+#> 3 1973-02-01  Commercial Consumption  U.S.      U.S. 394281
+#> 4 1973-02-01 Residential Consumption  U.S.      U.S. 747331
+#> 5 1973-03-01  Commercial Consumption  U.S.      U.S. 310799
+#> 6 1973-03-01 Residential Consumption  U.S.      U.S. 648504
+

The dataset includes the state level and the US aggregate level +(labeled under U.S.):

+
+unique(usgas$state)
+#>  [1] "U.S."                 "Oregon"               "Virginia"            
+#>  [4] "Rhode Island"         "Arizona"              "Washington"          
+#>  [7] "South Dakota"         "New Jersey"           "Florida"             
+#> [10] "Alabama"              "Louisiana"            "Illinois"            
+#> [13] "Colorado"             "New Hampshire"        "Maine"               
+#> [16] "Iowa"                 "Alaska"               "California"          
+#> [19] "Michigan"             "West Virginia"        "North Dakota"        
+#> [22] "Utah"                 "Pennsylvania"         "Missouri"            
+#> [25] "Montana"              "Texas"                "Idaho"               
+#> [28] "Delaware"             "South Carolina"       "New Mexico"          
+#> [31] "Massachusetts"        "Georgia"              "Arkansas"            
+#> [34] "New York"             "Nebraska"             "Tennessee"           
+#> [37] "Indiana"              "District of Columbia" "Minnesota"           
+#> [40] "Wisconsin"            "Vermont"              "Hawaii"              
+#> [43] "Wyoming"              "Maryland"             "Kansas"              
+#> [46] "Ohio"                 "Mississippi"          "Nevada"              
+#> [49] "North Carolina"       "Oklahoma"             "Kentucky"            
+#> [52] "Connecticut"
+

In the example below, we will subset and plot the consumption by +end-use in the US:

+
+us_agg <- usgas[which(usgas$state == "U.S."),]
+
+head(us_agg)
+#>         date                 process state state_abb      y
+#> 1 1973-01-01  Commercial Consumption  U.S.      U.S. 392315
+#> 2 1973-01-01 Residential Consumption  U.S.      U.S. 843900
+#> 3 1973-02-01  Commercial Consumption  U.S.      U.S. 394281
+#> 4 1973-02-01 Residential Consumption  U.S.      U.S. 747331
+#> 5 1973-03-01  Commercial Consumption  U.S.      U.S. 310799
+#> 6 1973-03-01 Residential Consumption  U.S.      U.S. 648504
+

Let’s now use plotly to plot those series:

+
+library(plotly)
+
+plot_ly(data = us_agg,
+        x = ~ date,
+        y = ~ y,
+        color = ~ process,
+        type = "scatter",
+        mode = "line") |> 
+  layout(title = "US Monthly Consumption of Natural Gas by End Use",
+         yaxis = list(title = "MMCF"),
+         xaxis = list(title = "Source: EIA Website"),
+         legend = list(x = 0,
+                       y = 0.95))
+
+

Similarly, we can subset a couple of states and visualize them. For +example, let’s visualize the residential consumption in the New England +states. We will start by subsetting the corresponding states in New +England, transform the data.frame to wide format, and reorder by +date:

+
+ne <- c("Connecticut", "Maine", "Massachusetts",
+        "New Hampshire", "Rhode Island", "Vermont")
+ne_gas <-  usgas[which(usgas$state %in% ne),]
+
+head(ne_gas)
+#>           date                process         state state_abb    y
+#> 495 1989-01-01 Commercial Consumption  Rhode Island        RI 1032
+#> 505 1989-01-01 Commercial Consumption New Hampshire        NH  842
+#> 506 1989-01-01 Commercial Consumption         Maine        ME  229
+#> 523 1989-01-01 Commercial Consumption Massachusetts        MA 7394
+#> 533 1989-01-01 Commercial Consumption       Vermont        VT  315
+#> 544 1989-01-01 Commercial Consumption   Connecticut        CT 3909
+

Next, let’s use the process column to extract the +residential consumption and plot it:

+
+ne_gas[which(ne_gas$process == "Residential Consumption"),] |>
+  plot_ly(x = ~ date,
+          y = ~ y,
+          color = ~ state,
+          type = "scatter",
+          mode = "line") |> 
+  layout(title = "Monthly Residential Consumption of Natural Gas in New England",
+         yaxis = list(title = "MMCF"),
+         xaxis = list(title = "Source: EIA Website"),
+         legend = list(x = 0,
+                       y = 1))
+
+
+ +
-

Site built with pkgdown 1.6.1.

+

+

Site built with pkgdown 2.0.7.

@@ -469,5 +276,7 @@

+ + diff --git a/docs/articles/introduction_files/crosstalk-1.2.0/css/crosstalk.min.css b/docs/articles/introduction_files/crosstalk-1.2.0/css/crosstalk.min.css new file mode 100644 index 0000000..6b45382 --- /dev/null +++ b/docs/articles/introduction_files/crosstalk-1.2.0/css/crosstalk.min.css @@ -0,0 +1 @@ +.container-fluid.crosstalk-bscols{margin-left:-30px;margin-right:-30px;white-space:normal}body>.container-fluid.crosstalk-bscols{margin-left:auto;margin-right:auto}.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:inline-block;padding-right:12px;vertical-align:top}@media only screen and (max-width: 480px){.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column{display:block;padding-right:inherit}}.crosstalk-input{margin-bottom:15px}.crosstalk-input .control-label{margin-bottom:0;vertical-align:middle}.crosstalk-input input[type="checkbox"]{margin:4px 0 0;margin-top:1px;line-height:normal}.crosstalk-input .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.crosstalk-input .checkbox>label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.crosstalk-input .checkbox input[type="checkbox"],.crosstalk-input .checkbox-inline input[type="checkbox"]{position:absolute;margin-top:2px;margin-left:-20px}.crosstalk-input .checkbox+.checkbox{margin-top:-5px}.crosstalk-input .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.crosstalk-input .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px} diff --git a/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.js b/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.js new file mode 100644 index 0000000..fd9eb53 --- /dev/null +++ b/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.js @@ -0,0 +1,1474 @@ +(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o b) { + return 1; + } +} + +/** + * @private + */ + +var FilterSet = function () { + function FilterSet() { + _classCallCheck(this, FilterSet); + + this.reset(); + } + + _createClass(FilterSet, [{ + key: "reset", + value: function reset() { + // Key: handle ID, Value: array of selected keys, or null + this._handles = {}; + // Key: key string, Value: count of handles that include it + this._keys = {}; + this._value = null; + this._activeHandles = 0; + } + }, { + key: "update", + value: function update(handleId, keys) { + if (keys !== null) { + keys = keys.slice(0); // clone before sorting + keys.sort(naturalComparator); + } + + var _diffSortedLists = (0, _util.diffSortedLists)(this._handles[handleId], keys), + added = _diffSortedLists.added, + removed = _diffSortedLists.removed; + + this._handles[handleId] = keys; + + for (var i = 0; i < added.length; i++) { + this._keys[added[i]] = (this._keys[added[i]] || 0) + 1; + } + for (var _i = 0; _i < removed.length; _i++) { + this._keys[removed[_i]]--; + } + + this._updateValue(keys); + } + + /** + * @param {string[]} keys Sorted array of strings that indicate + * a superset of possible keys. + * @private + */ + + }, { + key: "_updateValue", + value: function _updateValue() { + var keys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._allKeys; + + var handleCount = Object.keys(this._handles).length; + if (handleCount === 0) { + this._value = null; + } else { + this._value = []; + for (var i = 0; i < keys.length; i++) { + var count = this._keys[keys[i]]; + if (count === handleCount) { + this._value.push(keys[i]); + } + } + } + } + }, { + key: "clear", + value: function clear(handleId) { + if (typeof this._handles[handleId] === "undefined") { + return; + } + + var keys = this._handles[handleId]; + if (!keys) { + keys = []; + } + + for (var i = 0; i < keys.length; i++) { + this._keys[keys[i]]--; + } + delete this._handles[handleId]; + + this._updateValue(); + } + }, { + key: "value", + get: function get() { + return this._value; + } + }, { + key: "_allKeys", + get: function get() { + var allKeys = Object.keys(this._keys); + allKeys.sort(naturalComparator); + return allKeys; + } + }]); + + return FilterSet; +}(); + +exports.default = FilterSet; + +},{"./util":11}],4:[function(require,module,exports){ +(function (global){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +exports.default = group; + +var _var2 = require("./var"); + +var _var3 = _interopRequireDefault(_var2); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +// Use a global so that multiple copies of crosstalk.js can be loaded and still +// have groups behave as singletons across all copies. +global.__crosstalk_groups = global.__crosstalk_groups || {}; +var groups = global.__crosstalk_groups; + +function group(groupName) { + if (groupName && typeof groupName === "string") { + if (!groups.hasOwnProperty(groupName)) { + groups[groupName] = new Group(groupName); + } + return groups[groupName]; + } else if ((typeof groupName === "undefined" ? "undefined" : _typeof(groupName)) === "object" && groupName._vars && groupName.var) { + // Appears to already be a group object + return groupName; + } else if (Array.isArray(groupName) && groupName.length == 1 && typeof groupName[0] === "string") { + return group(groupName[0]); + } else { + throw new Error("Invalid groupName argument"); + } +} + +var Group = function () { + function Group(name) { + _classCallCheck(this, Group); + + this.name = name; + this._vars = {}; + } + + _createClass(Group, [{ + key: "var", + value: function _var(name) { + if (!name || typeof name !== "string") { + throw new Error("Invalid var name"); + } + + if (!this._vars.hasOwnProperty(name)) this._vars[name] = new _var3.default(this, name); + return this._vars[name]; + } + }, { + key: "has", + value: function has(name) { + if (!name || typeof name !== "string") { + throw new Error("Invalid var name"); + } + + return this._vars.hasOwnProperty(name); + } + }]); + + return Group; +}(); + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) + +},{"./var":12}],5:[function(require,module,exports){ +(function (global){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _group = require("./group"); + +var _group2 = _interopRequireDefault(_group); + +var _selection = require("./selection"); + +var _filter = require("./filter"); + +var _input = require("./input"); + +require("./input_selectize"); + +require("./input_checkboxgroup"); + +require("./input_slider"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +var defaultGroup = (0, _group2.default)("default"); + +function var_(name) { + return defaultGroup.var(name); +} + +function has(name) { + return defaultGroup.has(name); +} + +if (global.Shiny) { + global.Shiny.addCustomMessageHandler("update-client-value", function (message) { + if (typeof message.group === "string") { + (0, _group2.default)(message.group).var(message.name).set(message.value); + } else { + var_(message.name).set(message.value); + } + }); +} + +var crosstalk = { + group: _group2.default, + var: var_, + has: has, + SelectionHandle: _selection.SelectionHandle, + FilterHandle: _filter.FilterHandle, + bind: _input.bind +}; + +/** + * @namespace crosstalk + */ +exports.default = crosstalk; + +global.crosstalk = crosstalk; + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) + +},{"./filter":2,"./group":4,"./input":6,"./input_checkboxgroup":7,"./input_selectize":8,"./input_slider":9,"./selection":10}],6:[function(require,module,exports){ +(function (global){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.register = register; +exports.bind = bind; +var $ = global.jQuery; + +var bindings = {}; + +function register(reg) { + bindings[reg.className] = reg; + if (global.document && global.document.readyState !== "complete") { + $(function () { + bind(); + }); + } else if (global.document) { + setTimeout(bind, 100); + } +} + +function bind() { + Object.keys(bindings).forEach(function (className) { + var binding = bindings[className]; + $("." + binding.className).not(".crosstalk-input-bound").each(function (i, el) { + bindInstance(binding, el); + }); + }); +} + +// Escape jQuery identifier +function $escape(val) { + return val.replace(/([!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~])/g, "\\$1"); +} + +function bindEl(el) { + var $el = $(el); + Object.keys(bindings).forEach(function (className) { + if ($el.hasClass(className) && !$el.hasClass("crosstalk-input-bound")) { + var binding = bindings[className]; + bindInstance(binding, el); + } + }); +} + +function bindInstance(binding, el) { + var jsonEl = $(el).find("script[type='application/json'][data-for='" + $escape(el.id) + "']"); + var data = JSON.parse(jsonEl[0].innerText); + + var instance = binding.factory(el, data); + $(el).data("crosstalk-instance", instance); + $(el).addClass("crosstalk-input-bound"); +} + +if (global.Shiny) { + var inputBinding = new global.Shiny.InputBinding(); + var _$ = global.jQuery; + _$.extend(inputBinding, { + find: function find(scope) { + return _$(scope).find(".crosstalk-input"); + }, + initialize: function initialize(el) { + if (!_$(el).hasClass("crosstalk-input-bound")) { + bindEl(el); + } + }, + getId: function getId(el) { + return el.id; + }, + getValue: function getValue(el) {}, + setValue: function setValue(el, value) {}, + receiveMessage: function receiveMessage(el, data) {}, + subscribe: function subscribe(el, callback) { + _$(el).data("crosstalk-instance").resume(); + }, + unsubscribe: function unsubscribe(el) { + _$(el).data("crosstalk-instance").suspend(); + } + }); + global.Shiny.inputBindings.register(inputBinding, "crosstalk.inputBinding"); +} + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) + +},{}],7:[function(require,module,exports){ +(function (global){ +"use strict"; + +var _input = require("./input"); + +var input = _interopRequireWildcard(_input); + +var _filter = require("./filter"); + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } + +var $ = global.jQuery; + +input.register({ + className: "crosstalk-input-checkboxgroup", + + factory: function factory(el, data) { + /* + * map: {"groupA": ["keyA", "keyB", ...], ...} + * group: "ct-groupname" + */ + var ctHandle = new _filter.FilterHandle(data.group); + + var lastKnownKeys = void 0; + var $el = $(el); + $el.on("change", "input[type='checkbox']", function () { + var checked = $el.find("input[type='checkbox']:checked"); + if (checked.length === 0) { + lastKnownKeys = null; + ctHandle.clear(); + } else { + var keys = {}; + checked.each(function () { + data.map[this.value].forEach(function (key) { + keys[key] = true; + }); + }); + var keyArray = Object.keys(keys); + keyArray.sort(); + lastKnownKeys = keyArray; + ctHandle.set(keyArray); + } + }); + + return { + suspend: function suspend() { + ctHandle.clear(); + }, + resume: function resume() { + if (lastKnownKeys) ctHandle.set(lastKnownKeys); + } + }; + } +}); + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) + +},{"./filter":2,"./input":6}],8:[function(require,module,exports){ +(function (global){ +"use strict"; + +var _input = require("./input"); + +var input = _interopRequireWildcard(_input); + +var _util = require("./util"); + +var util = _interopRequireWildcard(_util); + +var _filter = require("./filter"); + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } + +var $ = global.jQuery; + +input.register({ + className: "crosstalk-input-select", + + factory: function factory(el, data) { + /* + * items: {value: [...], label: [...]} + * map: {"groupA": ["keyA", "keyB", ...], ...} + * group: "ct-groupname" + */ + + var first = [{ value: "", label: "(All)" }]; + var items = util.dataframeToD3(data.items); + var opts = { + options: first.concat(items), + valueField: "value", + labelField: "label", + searchField: "label" + }; + + var select = $(el).find("select")[0]; + + var selectize = $(select).selectize(opts)[0].selectize; + + var ctHandle = new _filter.FilterHandle(data.group); + + var lastKnownKeys = void 0; + selectize.on("change", function () { + if (selectize.items.length === 0) { + lastKnownKeys = null; + ctHandle.clear(); + } else { + var keys = {}; + selectize.items.forEach(function (group) { + data.map[group].forEach(function (key) { + keys[key] = true; + }); + }); + var keyArray = Object.keys(keys); + keyArray.sort(); + lastKnownKeys = keyArray; + ctHandle.set(keyArray); + } + }); + + return { + suspend: function suspend() { + ctHandle.clear(); + }, + resume: function resume() { + if (lastKnownKeys) ctHandle.set(lastKnownKeys); + } + }; + } +}); + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) + +},{"./filter":2,"./input":6,"./util":11}],9:[function(require,module,exports){ +(function (global){ +"use strict"; + +var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); + +var _input = require("./input"); + +var input = _interopRequireWildcard(_input); + +var _filter = require("./filter"); + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } + +var $ = global.jQuery; +var strftime = global.strftime; + +input.register({ + className: "crosstalk-input-slider", + + factory: function factory(el, data) { + /* + * map: {"groupA": ["keyA", "keyB", ...], ...} + * group: "ct-groupname" + */ + var ctHandle = new _filter.FilterHandle(data.group); + + var opts = {}; + var $el = $(el).find("input"); + var dataType = $el.data("data-type"); + var timeFormat = $el.data("time-format"); + var round = $el.data("round"); + var timeFormatter = void 0; + + // Set up formatting functions + if (dataType === "date") { + timeFormatter = strftime.utc(); + opts.prettify = function (num) { + return timeFormatter(timeFormat, new Date(num)); + }; + } else if (dataType === "datetime") { + var timezone = $el.data("timezone"); + if (timezone) timeFormatter = strftime.timezone(timezone);else timeFormatter = strftime; + + opts.prettify = function (num) { + return timeFormatter(timeFormat, new Date(num)); + }; + } else if (dataType === "number") { + if (typeof round !== "undefined") opts.prettify = function (num) { + var factor = Math.pow(10, round); + return Math.round(num * factor) / factor; + }; + } + + $el.ionRangeSlider(opts); + + function getValue() { + var result = $el.data("ionRangeSlider").result; + + // Function for converting numeric value from slider to appropriate type. + var convert = void 0; + var dataType = $el.data("data-type"); + if (dataType === "date") { + convert = function convert(val) { + return formatDateUTC(new Date(+val)); + }; + } else if (dataType === "datetime") { + convert = function convert(val) { + // Convert ms to s + return +val / 1000; + }; + } else { + convert = function convert(val) { + return +val; + }; + } + + if ($el.data("ionRangeSlider").options.type === "double") { + return [convert(result.from), convert(result.to)]; + } else { + return convert(result.from); + } + } + + var lastKnownKeys = null; + + $el.on("change.crosstalkSliderInput", function (event) { + if (!$el.data("updating") && !$el.data("animating")) { + var _getValue = getValue(), + _getValue2 = _slicedToArray(_getValue, 2), + from = _getValue2[0], + to = _getValue2[1]; + + var keys = []; + for (var i = 0; i < data.values.length; i++) { + var val = data.values[i]; + if (val >= from && val <= to) { + keys.push(data.keys[i]); + } + } + keys.sort(); + ctHandle.set(keys); + lastKnownKeys = keys; + } + }); + + // let $el = $(el); + // $el.on("change", "input[type="checkbox"]", function() { + // let checked = $el.find("input[type="checkbox"]:checked"); + // if (checked.length === 0) { + // ctHandle.clear(); + // } else { + // let keys = {}; + // checked.each(function() { + // data.map[this.value].forEach(function(key) { + // keys[key] = true; + // }); + // }); + // let keyArray = Object.keys(keys); + // keyArray.sort(); + // ctHandle.set(keyArray); + // } + // }); + + return { + suspend: function suspend() { + ctHandle.clear(); + }, + resume: function resume() { + if (lastKnownKeys) ctHandle.set(lastKnownKeys); + } + }; + } +}); + +// Convert a number to a string with leading zeros +function padZeros(n, digits) { + var str = n.toString(); + while (str.length < digits) { + str = "0" + str; + }return str; +} + +// Given a Date object, return a string in yyyy-mm-dd format, using the +// UTC date. This may be a day off from the date in the local time zone. +function formatDateUTC(date) { + if (date instanceof Date) { + return date.getUTCFullYear() + "-" + padZeros(date.getUTCMonth() + 1, 2) + "-" + padZeros(date.getUTCDate(), 2); + } else { + return null; + } +} + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) + +},{"./filter":2,"./input":6}],10:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.SelectionHandle = undefined; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _events = require("./events"); + +var _events2 = _interopRequireDefault(_events); + +var _group = require("./group"); + +var _group2 = _interopRequireDefault(_group); + +var _util = require("./util"); + +var util = _interopRequireWildcard(_util); + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +/** + * Use this class to read and write (and listen for changes to) the selection + * for a Crosstalk group. This is intended to be used for linked brushing. + * + * If two (or more) `SelectionHandle` instances in the same webpage share the + * same group name, they will share the same state. Setting the selection using + * one `SelectionHandle` instance will result in the `value` property instantly + * changing across the others, and `"change"` event listeners on all instances + * (including the one that initiated the sending) will fire. + * + * @param {string} [group] - The name of the Crosstalk group, or if none, + * null or undefined (or any other falsy value). This can be changed later + * via the [SelectionHandle#setGroup](#setGroup) method. + * @param {Object} [extraInfo] - An object whose properties will be copied to + * the event object whenever an event is emitted. + */ +var SelectionHandle = exports.SelectionHandle = function () { + function SelectionHandle() { + var group = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var extraInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + + _classCallCheck(this, SelectionHandle); + + this._eventRelay = new _events2.default(); + this._emitter = new util.SubscriptionTracker(this._eventRelay); + + // Name of the group we're currently tracking, if any. Can change over time. + this._group = null; + // The Var we're currently tracking, if any. Can change over time. + this._var = null; + // The event handler subscription we currently have on var.on("change"). + this._varOnChangeSub = null; + + this._extraInfo = util.extend({ sender: this }, extraInfo); + + this.setGroup(group); + } + + /** + * Changes the Crosstalk group membership of this SelectionHandle. The group + * being switched away from (if any) will not have its selection value + * modified as a result of calling `setGroup`, even if this handle was the + * most recent handle to set the selection of the group. + * + * The group being switched to (if any) will also not have its selection value + * modified as a result of calling `setGroup`. If you want to set the + * selection value of the new group, call `set` explicitly. + * + * @param {string} group - The name of the Crosstalk group, or null (or + * undefined) to clear the group. + */ + + + _createClass(SelectionHandle, [{ + key: "setGroup", + value: function setGroup(group) { + var _this = this; + + // If group is unchanged, do nothing + if (this._group === group) return; + // Treat null, undefined, and other falsy values the same + if (!this._group && !group) return; + + if (this._var) { + this._var.off("change", this._varOnChangeSub); + this._var = null; + this._varOnChangeSub = null; + } + + this._group = group; + + if (group) { + this._var = (0, _group2.default)(group).var("selection"); + var sub = this._var.on("change", function (e) { + _this._eventRelay.trigger("change", e, _this); + }); + this._varOnChangeSub = sub; + } + } + + /** + * Retrieves the current selection for the group represented by this + * `SelectionHandle`. + * + * - If no selection is active, then this value will be falsy. + * - If a selection is active, but no data points are selected, then this + * value will be an empty array. + * - If a selection is active, and data points are selected, then the keys + * of the selected data points will be present in the array. + */ + + }, { + key: "_mergeExtraInfo", + + + /** + * Combines the given `extraInfo` (if any) with the handle's default + * `_extraInfo` (if any). + * @private + */ + value: function _mergeExtraInfo(extraInfo) { + // Important incidental effect: shallow clone is returned + return util.extend({}, this._extraInfo ? this._extraInfo : null, extraInfo ? extraInfo : null); + } + + /** + * Overwrites the current selection for the group, and raises the `"change"` + * event among all of the group's '`SelectionHandle` instances (including + * this one). + * + * @fires SelectionHandle#change + * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see + * {@link SelectionHandle#value}). + * @param {Object} [extraInfo] - Extra properties to be included on the event + * object that's passed to listeners (in addition to any options that were + * passed into the `SelectionHandle` constructor). + */ + + }, { + key: "set", + value: function set(selectedKeys, extraInfo) { + if (this._var) this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo)); + } + + /** + * Overwrites the current selection for the group, and raises the `"change"` + * event among all of the group's '`SelectionHandle` instances (including + * this one). + * + * @fires SelectionHandle#change + * @param {Object} [extraInfo] - Extra properties to be included on the event + * object that's passed to listeners (in addition to any that were passed + * into the `SelectionHandle` constructor). + */ + + }, { + key: "clear", + value: function clear(extraInfo) { + if (this._var) this.set(void 0, this._mergeExtraInfo(extraInfo)); + } + + /** + * Subscribes to events on this `SelectionHandle`. + * + * @param {string} eventType - Indicates the type of events to listen to. + * Currently, only `"change"` is supported. + * @param {SelectionHandle~listener} listener - The callback function that + * will be invoked when the event occurs. + * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel + * this subscription. + */ + + }, { + key: "on", + value: function on(eventType, listener) { + return this._emitter.on(eventType, listener); + } + + /** + * Cancels event subscriptions created by {@link SelectionHandle#on}. + * + * @param {string} eventType - The type of event to unsubscribe. + * @param {string|SelectionHandle~listener} listener - Either the callback + * function previously passed into {@link SelectionHandle#on}, or the + * string that was returned from {@link SelectionHandle#on}. + */ + + }, { + key: "off", + value: function off(eventType, listener) { + return this._emitter.off(eventType, listener); + } + + /** + * Shuts down the `SelectionHandle` object. + * + * Removes all event listeners that were added through this handle. + */ + + }, { + key: "close", + value: function close() { + this._emitter.removeAllListeners(); + this.setGroup(null); + } + }, { + key: "value", + get: function get() { + return this._var ? this._var.get() : null; + } + }]); + + return SelectionHandle; +}(); + +/** + * @callback SelectionHandle~listener + * @param {Object} event - An object containing details of the event. For + * `"change"` events, this includes the properties `value` (the new + * value of the selection, or `undefined` if no selection is active), + * `oldValue` (the previous value of the selection), and `sender` (the + * `SelectionHandle` instance that made the change). + */ + +/** + * @event SelectionHandle#change + * @type {object} + * @property {object} value - The new value of the selection, or `undefined` + * if no selection is active. + * @property {object} oldValue - The previous value of the selection. + * @property {SelectionHandle} sender - The `SelectionHandle` instance that + * changed the value. + */ + +},{"./events":1,"./group":4,"./util":11}],11:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +exports.extend = extend; +exports.checkSorted = checkSorted; +exports.diffSortedLists = diffSortedLists; +exports.dataframeToD3 = dataframeToD3; + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function extend(target) { + for (var _len = arguments.length, sources = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + sources[_key - 1] = arguments[_key]; + } + + for (var i = 0; i < sources.length; i++) { + var src = sources[i]; + if (typeof src === "undefined" || src === null) continue; + + for (var key in src) { + if (src.hasOwnProperty(key)) { + target[key] = src[key]; + } + } + } + return target; +} + +function checkSorted(list) { + for (var i = 1; i < list.length; i++) { + if (list[i] <= list[i - 1]) { + throw new Error("List is not sorted or contains duplicate"); + } + } +} + +function diffSortedLists(a, b) { + var i_a = 0; + var i_b = 0; + + if (!a) a = []; + if (!b) b = []; + + var a_only = []; + var b_only = []; + + checkSorted(a); + checkSorted(b); + + while (i_a < a.length && i_b < b.length) { + if (a[i_a] === b[i_b]) { + i_a++; + i_b++; + } else if (a[i_a] < b[i_b]) { + a_only.push(a[i_a++]); + } else { + b_only.push(b[i_b++]); + } + } + + if (i_a < a.length) a_only = a_only.concat(a.slice(i_a)); + if (i_b < b.length) b_only = b_only.concat(b.slice(i_b)); + return { + removed: a_only, + added: b_only + }; +} + +// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... } +// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ] +function dataframeToD3(df) { + var names = []; + var length = void 0; + for (var name in df) { + if (df.hasOwnProperty(name)) names.push(name); + if (_typeof(df[name]) !== "object" || typeof df[name].length === "undefined") { + throw new Error("All fields must be arrays"); + } else if (typeof length !== "undefined" && length !== df[name].length) { + throw new Error("All fields must be arrays of the same length"); + } + length = df[name].length; + } + var results = []; + var item = void 0; + for (var row = 0; row < length; row++) { + item = {}; + for (var col = 0; col < names.length; col++) { + item[names[col]] = df[names[col]][row]; + } + results.push(item); + } + return results; +} + +/** + * Keeps track of all event listener additions/removals and lets all active + * listeners be removed with a single operation. + * + * @private + */ + +var SubscriptionTracker = exports.SubscriptionTracker = function () { + function SubscriptionTracker(emitter) { + _classCallCheck(this, SubscriptionTracker); + + this._emitter = emitter; + this._subs = {}; + } + + _createClass(SubscriptionTracker, [{ + key: "on", + value: function on(eventType, listener) { + var sub = this._emitter.on(eventType, listener); + this._subs[sub] = eventType; + return sub; + } + }, { + key: "off", + value: function off(eventType, listener) { + var sub = this._emitter.off(eventType, listener); + if (sub) { + delete this._subs[sub]; + } + return sub; + } + }, { + key: "removeAllListeners", + value: function removeAllListeners() { + var _this = this; + + var current_subs = this._subs; + this._subs = {}; + Object.keys(current_subs).forEach(function (sub) { + _this._emitter.off(current_subs[sub], sub); + }); + } + }]); + + return SubscriptionTracker; +}(); + +},{}],12:[function(require,module,exports){ +(function (global){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); + +var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +var _events = require("./events"); + +var _events2 = _interopRequireDefault(_events); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +var Var = function () { + function Var(group, name, /*optional*/value) { + _classCallCheck(this, Var); + + this._group = group; + this._name = name; + this._value = value; + this._events = new _events2.default(); + } + + _createClass(Var, [{ + key: "get", + value: function get() { + return this._value; + } + }, { + key: "set", + value: function set(value, /*optional*/event) { + if (this._value === value) { + // Do nothing; the value hasn't changed + return; + } + var oldValue = this._value; + this._value = value; + // Alert JavaScript listeners that the value has changed + var evt = {}; + if (event && (typeof event === "undefined" ? "undefined" : _typeof(event)) === "object") { + for (var k in event) { + if (event.hasOwnProperty(k)) evt[k] = event[k]; + } + } + evt.oldValue = oldValue; + evt.value = value; + this._events.trigger("change", evt, this); + + // TODO: Make this extensible, to let arbitrary back-ends know that + // something has changed + if (global.Shiny && global.Shiny.onInputChange) { + global.Shiny.onInputChange(".clientValue-" + (this._group.name !== null ? this._group.name + "-" : "") + this._name, typeof value === "undefined" ? null : value); + } + } + }, { + key: "on", + value: function on(eventType, listener) { + return this._events.on(eventType, listener); + } + }, { + key: "off", + value: function off(eventType, listener) { + return this._events.off(eventType, listener); + } + }]); + + return Var; +}(); + +exports.default = Var; + +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) + +},{"./events":1}]},{},[5]) +//# sourceMappingURL=crosstalk.js.map diff --git a/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.js.map b/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.js.map new file mode 100644 index 0000000..cff94f0 --- /dev/null +++ b/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.js.map @@ -0,0 +1,37 @@ +{ + "version": 3, + "sources": [ + "node_modules/browser-pack/_prelude.js", + "javascript/src/events.js", + "javascript/src/filter.js", + "javascript/src/filterset.js", + "javascript/src/group.js", + "javascript/src/index.js", + "javascript/src/input.js", + "javascript/src/input_checkboxgroup.js", + "javascript/src/input_selectize.js", + "javascript/src/input_slider.js", + "javascript/src/selection.js", + "javascript/src/util.js", + "javascript/src/var.js" + ], + "names": [], + "mappings": "AAAA;;;;;;;;;;;ICAqB,M;AACnB,oBAAc;AAAA;;AACZ,SAAK,MAAL,GAAc,EAAd;AACA,SAAK,IAAL,GAAY,CAAZ;AACD;;;;uBAEE,S,EAAW,Q,EAAU;AACtB,UAAI,OAAO,KAAK,MAAL,CAAY,SAAZ,CAAX;AACA,UAAI,CAAC,IAAL,EAAW;AACT,eAAO,KAAK,MAAL,CAAY,SAAZ,IAAyB,EAAhC;AACD;AACD,UAAI,MAAM,QAAS,KAAK,IAAL,EAAnB;AACA,WAAK,GAAL,IAAY,QAAZ;AACA,aAAO,GAAP;AACD;;AAED;;;;wBACI,S,EAAW,Q,EAAU;AACvB,UAAI,OAAO,KAAK,MAAL,CAAY,SAAZ,CAAX;AACA,UAAI,OAAO,QAAP,KAAqB,UAAzB,EAAqC;AACnC,aAAK,IAAI,GAAT,IAAgB,IAAhB,EAAsB;AACpB,cAAI,KAAK,cAAL,CAAoB,GAApB,CAAJ,EAA8B;AAC5B,gBAAI,KAAK,GAAL,MAAc,QAAlB,EAA4B;AAC1B,qBAAO,KAAK,GAAL,CAAP;AACA,qBAAO,GAAP;AACD;AACF;AACF;AACD,eAAO,KAAP;AACD,OAVD,MAUO,IAAI,OAAO,QAAP,KAAqB,QAAzB,EAAmC;AACxC,YAAI,QAAQ,KAAK,QAAL,CAAZ,EAA4B;AAC1B,iBAAO,KAAK,QAAL,CAAP;AACA,iBAAO,QAAP;AACD;AACD,eAAO,KAAP;AACD,OANM,MAMA;AACL,cAAM,IAAI,KAAJ,CAAU,8BAAV,CAAN;AACD;AACF;;;4BAEO,S,EAAW,G,EAAK,O,EAAS;AAC/B,UAAI,OAAO,KAAK,MAAL,CAAY,SAAZ,CAAX;AACA,WAAK,IAAI,GAAT,IAAgB,IAAhB,EAAsB;AACpB,YAAI,KAAK,cAAL,CAAoB,GAApB,CAAJ,EAA8B;AAC5B,eAAK,GAAL,EAAU,IAAV,CAAe,OAAf,EAAwB,GAAxB;AACD;AACF;AACF;;;;;;kBA/CkB,M;;;;;;;;;;;;ACArB;;;;AACA;;;;AACA;;;;AACA;;IAAY,I;;;;;;;;AAEZ,SAAS,YAAT,CAAsB,KAAtB,EAA6B;AAC3B,MAAI,QAAQ,MAAM,GAAN,CAAU,WAAV,CAAZ;AACA,MAAI,SAAS,MAAM,GAAN,EAAb;AACA,MAAI,CAAC,MAAL,EAAa;AACX,aAAS,yBAAT;AACA,UAAM,GAAN,CAAU,MAAV;AACD;AACD,SAAO,MAAP;AACD;;AAED,IAAI,KAAK,CAAT;AACA,SAAS,MAAT,GAAkB;AAChB,SAAO,IAAP;AACD;;AAED;;;;;;;;;;;;;;;;;;;;;;;;;IAwBa,Y,WAAA,Y;AACX,wBAAY,KAAZ,EAAmB,SAAnB,EAA8B;AAAA;;AAC5B,SAAK,WAAL,GAAmB,sBAAnB;AACA,SAAK,QAAL,GAAgB,IAAI,KAAK,mBAAT,CAA6B,KAAK,WAAlC,CAAhB;;AAEA;AACA,SAAK,MAAL,GAAc,IAAd;AACA;AACA,SAAK,UAAL,GAAkB,IAAlB;AACA;AACA,SAAK,UAAL,GAAkB,IAAlB;AACA;AACA,SAAK,eAAL,GAAuB,IAAvB;;AAEA,SAAK,UAAL,GAAkB,KAAK,MAAL,CAAY,EAAE,QAAQ,IAAV,EAAZ,EAA8B,SAA9B,CAAlB;;AAEA,SAAK,GAAL,GAAW,WAAW,QAAtB;;AAEA,SAAK,QAAL,CAAc,KAAd;AACD;;AAED;;;;;;;;;;;;;;6BAUS,K,EAAO;AAAA;;AACd;AACA,UAAI,KAAK,MAAL,KAAgB,KAApB,EACE;AACF;AACA,UAAI,CAAC,KAAK,MAAN,IAAgB,CAAC,KAArB,EACE;;AAEF,UAAI,KAAK,UAAT,EAAqB;AACnB,aAAK,UAAL,CAAgB,GAAhB,CAAoB,QAApB,EAA8B,KAAK,eAAnC;AACA,aAAK,KAAL;AACA,aAAK,eAAL,GAAuB,IAAvB;AACA,aAAK,UAAL,GAAkB,IAAlB;AACA,aAAK,UAAL,GAAkB,IAAlB;AACD;;AAED,WAAK,MAAL,GAAc,KAAd;;AAEA,UAAI,KAAJ,EAAW;AACT,gBAAQ,qBAAI,KAAJ,CAAR;AACA,aAAK,UAAL,GAAkB,aAAa,KAAb,CAAlB;AACA,aAAK,UAAL,GAAkB,qBAAI,KAAJ,EAAW,GAAX,CAAe,QAAf,CAAlB;AACA,YAAI,MAAM,KAAK,UAAL,CAAgB,EAAhB,CAAmB,QAAnB,EAA6B,UAAC,CAAD,EAAO;AAC5C,gBAAK,WAAL,CAAiB,OAAjB,CAAyB,QAAzB,EAAmC,CAAnC;AACD,SAFS,CAAV;AAGA,aAAK,eAAL,GAAuB,GAAvB;AACD;AACF;;AAED;;;;;;;;oCAKgB,S,EAAW;AACzB,aAAO,KAAK,MAAL,CAAY,EAAZ,EACL,KAAK,UAAL,GAAkB,KAAK,UAAvB,GAAoC,IAD/B,EAEL,YAAY,SAAZ,GAAwB,IAFnB,CAAP;AAGD;;AAED;;;;;;;4BAIQ;AACN,WAAK,QAAL,CAAc,kBAAd;AACA,WAAK,KAAL;AACA,WAAK,QAAL,CAAc,IAAd;AACD;;AAED;;;;;;;;;;;;0BASM,S,EAAW;AACf,UAAI,CAAC,KAAK,UAAV,EACE;AACF,WAAK,UAAL,CAAgB,KAAhB,CAAsB,KAAK,GAA3B;AACA,WAAK,SAAL,CAAe,SAAf;AACD;;AAED;;;;;;;;;;;;;;;;;;;;wBAiBI,I,EAAM,S,EAAW;AACnB,UAAI,CAAC,KAAK,UAAV,EACE;AACF,WAAK,UAAL,CAAgB,MAAhB,CAAuB,KAAK,GAA5B,EAAiC,IAAjC;AACA,WAAK,SAAL,CAAe,SAAf;AACD;;AAED;;;;;;;;;;AASA;;;;;;;;;;uBAUG,S,EAAW,Q,EAAU;AACtB,aAAO,KAAK,QAAL,CAAc,EAAd,CAAiB,SAAjB,EAA4B,QAA5B,CAAP;AACD;;AAED;;;;;;;;;;;wBAQI,S,EAAW,Q,EAAU;AACvB,aAAO,KAAK,QAAL,CAAc,GAAd,CAAkB,SAAlB,EAA6B,QAA7B,CAAP;AACD;;;8BAES,S,EAAW;AACnB,UAAI,CAAC,KAAK,UAAV,EACE;AACF,WAAK,UAAL,CAAgB,GAAhB,CAAoB,KAAK,UAAL,CAAgB,KAApC,EAA2C,KAAK,eAAL,CAAqB,SAArB,CAA3C;AACD;;AAED;;;;;;;;;;;wBApCmB;AACjB,aAAO,KAAK,UAAL,GAAkB,KAAK,UAAL,CAAgB,KAAlC,GAA0C,IAAjD;AACD;;;;;;AA6CH;;;;;;;;;;;;;;;;;;;ACzNA;;;;AAEA,SAAS,iBAAT,CAA2B,CAA3B,EAA8B,CAA9B,EAAiC;AAC/B,MAAI,MAAM,CAAV,EAAa;AACX,WAAO,CAAP;AACD,GAFD,MAEO,IAAI,IAAI,CAAR,EAAW;AAChB,WAAO,CAAC,CAAR;AACD,GAFM,MAEA,IAAI,IAAI,CAAR,EAAW;AAChB,WAAO,CAAP;AACD;AACF;;AAED;;;;IAGqB,S;AACnB,uBAAc;AAAA;;AACZ,SAAK,KAAL;AACD;;;;4BAEO;AACN;AACA,WAAK,QAAL,GAAgB,EAAhB;AACA;AACA,WAAK,KAAL,GAAa,EAAb;AACA,WAAK,MAAL,GAAc,IAAd;AACA,WAAK,cAAL,GAAsB,CAAtB;AACD;;;2BAMM,Q,EAAU,I,EAAM;AACrB,UAAI,SAAS,IAAb,EAAmB;AACjB,eAAO,KAAK,KAAL,CAAW,CAAX,CAAP,CADiB,CACK;AACtB,aAAK,IAAL,CAAU,iBAAV;AACD;;AAJoB,6BAME,2BAAgB,KAAK,QAAL,CAAc,QAAd,CAAhB,EAAyC,IAAzC,CANF;AAAA,UAMhB,KANgB,oBAMhB,KANgB;AAAA,UAMT,OANS,oBAMT,OANS;;AAOrB,WAAK,QAAL,CAAc,QAAd,IAA0B,IAA1B;;AAEA,WAAK,IAAI,IAAI,CAAb,EAAgB,IAAI,MAAM,MAA1B,EAAkC,GAAlC,EAAuC;AACrC,aAAK,KAAL,CAAW,MAAM,CAAN,CAAX,IAAuB,CAAC,KAAK,KAAL,CAAW,MAAM,CAAN,CAAX,KAAwB,CAAzB,IAA8B,CAArD;AACD;AACD,WAAK,IAAI,KAAI,CAAb,EAAgB,KAAI,QAAQ,MAA5B,EAAoC,IAApC,EAAyC;AACvC,aAAK,KAAL,CAAW,QAAQ,EAAR,CAAX;AACD;;AAED,WAAK,YAAL,CAAkB,IAAlB;AACD;;AAED;;;;;;;;mCAKmC;AAAA,UAAtB,IAAsB,uEAAf,KAAK,QAAU;;AACjC,UAAI,cAAc,OAAO,IAAP,CAAY,KAAK,QAAjB,EAA2B,MAA7C;AACA,UAAI,gBAAgB,CAApB,EAAuB;AACrB,aAAK,MAAL,GAAc,IAAd;AACD,OAFD,MAEO;AACL,aAAK,MAAL,GAAc,EAAd;AACA,aAAK,IAAI,IAAI,CAAb,EAAgB,IAAI,KAAK,MAAzB,EAAiC,GAAjC,EAAsC;AACpC,cAAI,QAAQ,KAAK,KAAL,CAAW,KAAK,CAAL,CAAX,CAAZ;AACA,cAAI,UAAU,WAAd,EAA2B;AACzB,iBAAK,MAAL,CAAY,IAAZ,CAAiB,KAAK,CAAL,CAAjB;AACD;AACF;AACF;AACF;;;0BAEK,Q,EAAU;AACd,UAAI,OAAO,KAAK,QAAL,CAAc,QAAd,CAAP,KAAoC,WAAxC,EAAqD;AACnD;AACD;;AAED,UAAI,OAAO,KAAK,QAAL,CAAc,QAAd,CAAX;AACA,UAAI,CAAC,IAAL,EAAW;AACT,eAAO,EAAP;AACD;;AAED,WAAK,IAAI,IAAI,CAAb,EAAgB,IAAI,KAAK,MAAzB,EAAiC,GAAjC,EAAsC;AACpC,aAAK,KAAL,CAAW,KAAK,CAAL,CAAX;AACD;AACD,aAAO,KAAK,QAAL,CAAc,QAAd,CAAP;;AAEA,WAAK,YAAL;AACD;;;wBA3DW;AACV,aAAO,KAAK,MAAZ;AACD;;;wBA2Dc;AACb,UAAI,UAAU,OAAO,IAAP,CAAY,KAAK,KAAjB,CAAd;AACA,cAAQ,IAAR,CAAa,iBAAb;AACA,aAAO,OAAP;AACD;;;;;;kBA/EkB,S;;;;;;;;;;;;;;kBCRG,K;;AAPxB;;;;;;;;AAEA;AACA;AACA,OAAO,kBAAP,GAA4B,OAAO,kBAAP,IAA6B,EAAzD;AACA,IAAI,SAAS,OAAO,kBAApB;;AAEe,SAAS,KAAT,CAAe,SAAf,EAA0B;AACvC,MAAI,aAAa,OAAO,SAAP,KAAsB,QAAvC,EAAiD;AAC/C,QAAI,CAAC,OAAO,cAAP,CAAsB,SAAtB,CAAL,EAAuC;AACrC,aAAO,SAAP,IAAoB,IAAI,KAAJ,CAAU,SAAV,CAApB;AACD;AACD,WAAO,OAAO,SAAP,CAAP;AACD,GALD,MAKO,IAAI,QAAO,SAAP,yCAAO,SAAP,OAAsB,QAAtB,IAAkC,UAAU,KAA5C,IAAqD,UAAU,GAAnE,EAAwE;AAC7E;AACA,WAAO,SAAP;AACD,GAHM,MAGA,IAAI,MAAM,OAAN,CAAc,SAAd,KACP,UAAU,MAAV,IAAoB,CADb,IAEP,OAAO,UAAU,CAAV,CAAP,KAAyB,QAFtB,EAEgC;AACrC,WAAO,MAAM,UAAU,CAAV,CAAN,CAAP;AACD,GAJM,MAIA;AACL,UAAM,IAAI,KAAJ,CAAU,4BAAV,CAAN;AACD;AACF;;IAEK,K;AACJ,iBAAY,IAAZ,EAAkB;AAAA;;AAChB,SAAK,IAAL,GAAY,IAAZ;AACA,SAAK,KAAL,GAAa,EAAb;AACD;;;;yBAEG,I,EAAM;AACR,UAAI,CAAC,IAAD,IAAS,OAAO,IAAP,KAAiB,QAA9B,EAAwC;AACtC,cAAM,IAAI,KAAJ,CAAU,kBAAV,CAAN;AACD;;AAED,UAAI,CAAC,KAAK,KAAL,CAAW,cAAX,CAA0B,IAA1B,CAAL,EACE,KAAK,KAAL,CAAW,IAAX,IAAmB,kBAAQ,IAAR,EAAc,IAAd,CAAnB;AACF,aAAO,KAAK,KAAL,CAAW,IAAX,CAAP;AACD;;;wBAEG,I,EAAM;AACR,UAAI,CAAC,IAAD,IAAS,OAAO,IAAP,KAAiB,QAA9B,EAAwC;AACtC,cAAM,IAAI,KAAJ,CAAU,kBAAV,CAAN;AACD;;AAED,aAAO,KAAK,KAAL,CAAW,cAAX,CAA0B,IAA1B,CAAP;AACD;;;;;;;;;;;;;;;;AC/CH;;;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;;;AAEA,IAAM,eAAe,qBAAM,SAAN,CAArB;;AAEA,SAAS,IAAT,CAAc,IAAd,EAAoB;AAClB,SAAO,aAAa,GAAb,CAAiB,IAAjB,CAAP;AACD;;AAED,SAAS,GAAT,CAAa,IAAb,EAAmB;AACjB,SAAO,aAAa,GAAb,CAAiB,IAAjB,CAAP;AACD;;AAED,IAAI,OAAO,KAAX,EAAkB;AAChB,SAAO,KAAP,CAAa,uBAAb,CAAqC,qBAArC,EAA4D,UAAS,OAAT,EAAkB;AAC5E,QAAI,OAAO,QAAQ,KAAf,KAA0B,QAA9B,EAAwC;AACtC,2BAAM,QAAQ,KAAd,EAAqB,GAArB,CAAyB,QAAQ,IAAjC,EAAuC,GAAvC,CAA2C,QAAQ,KAAnD;AACD,KAFD,MAEO;AACL,WAAK,QAAQ,IAAb,EAAmB,GAAnB,CAAuB,QAAQ,KAA/B;AACD;AACF,GAND;AAOD;;AAED,IAAM,YAAY;AAChB,wBADgB;AAEhB,OAAK,IAFW;AAGhB,OAAK,GAHW;AAIhB,6CAJgB;AAKhB,oCALgB;AAMhB;AANgB,CAAlB;;AASA;;;kBAGe,S;;AACf,OAAO,SAAP,GAAmB,SAAnB;;;;;;;;;;;QCrCgB,Q,GAAA,Q;QAWA,I,GAAA,I;AAfhB,IAAI,IAAI,OAAO,MAAf;;AAEA,IAAI,WAAW,EAAf;;AAEO,SAAS,QAAT,CAAkB,GAAlB,EAAuB;AAC5B,WAAS,IAAI,SAAb,IAA0B,GAA1B;AACA,MAAI,OAAO,QAAP,IAAmB,OAAO,QAAP,CAAgB,UAAhB,KAA+B,UAAtD,EAAkE;AAChE,MAAE,YAAM;AACN;AACD,KAFD;AAGD,GAJD,MAIO,IAAI,OAAO,QAAX,EAAqB;AAC1B,eAAW,IAAX,EAAiB,GAAjB;AACD;AACF;;AAEM,SAAS,IAAT,GAAgB;AACrB,SAAO,IAAP,CAAY,QAAZ,EAAsB,OAAtB,CAA8B,UAAS,SAAT,EAAoB;AAChD,QAAI,UAAU,SAAS,SAAT,CAAd;AACA,MAAE,MAAM,QAAQ,SAAhB,EAA2B,GAA3B,CAA+B,wBAA/B,EAAyD,IAAzD,CAA8D,UAAS,CAAT,EAAY,EAAZ,EAAgB;AAC5E,mBAAa,OAAb,EAAsB,EAAtB;AACD,KAFD;AAGD,GALD;AAMD;;AAED;AACA,SAAS,OAAT,CAAiB,GAAjB,EAAsB;AACpB,SAAO,IAAI,OAAJ,CAAY,uCAAZ,EAAqD,MAArD,CAAP;AACD;;AAED,SAAS,MAAT,CAAgB,EAAhB,EAAoB;AAClB,MAAI,MAAM,EAAE,EAAF,CAAV;AACA,SAAO,IAAP,CAAY,QAAZ,EAAsB,OAAtB,CAA8B,UAAS,SAAT,EAAoB;AAChD,QAAI,IAAI,QAAJ,CAAa,SAAb,KAA2B,CAAC,IAAI,QAAJ,CAAa,uBAAb,CAAhC,EAAuE;AACrE,UAAI,UAAU,SAAS,SAAT,CAAd;AACA,mBAAa,OAAb,EAAsB,EAAtB;AACD;AACF,GALD;AAMD;;AAED,SAAS,YAAT,CAAsB,OAAtB,EAA+B,EAA/B,EAAmC;AACjC,MAAI,SAAS,EAAE,EAAF,EAAM,IAAN,CAAW,+CAA+C,QAAQ,GAAG,EAAX,CAA/C,GAAgE,IAA3E,CAAb;AACA,MAAI,OAAO,KAAK,KAAL,CAAW,OAAO,CAAP,EAAU,SAArB,CAAX;;AAEA,MAAI,WAAW,QAAQ,OAAR,CAAgB,EAAhB,EAAoB,IAApB,CAAf;AACA,IAAE,EAAF,EAAM,IAAN,CAAW,oBAAX,EAAiC,QAAjC;AACA,IAAE,EAAF,EAAM,QAAN,CAAe,uBAAf;AACD;;AAED,IAAI,OAAO,KAAX,EAAkB;AAChB,MAAI,eAAe,IAAI,OAAO,KAAP,CAAa,YAAjB,EAAnB;AACA,MAAI,KAAI,OAAO,MAAf;AACA,KAAE,MAAF,CAAS,YAAT,EAAuB;AACrB,UAAM,cAAS,KAAT,EAAgB;AACpB,aAAO,GAAE,KAAF,EAAS,IAAT,CAAc,kBAAd,CAAP;AACD,KAHoB;AAIrB,gBAAY,oBAAS,EAAT,EAAa;AACvB,UAAI,CAAC,GAAE,EAAF,EAAM,QAAN,CAAe,uBAAf,CAAL,EAA8C;AAC5C,eAAO,EAAP;AACD;AACF,KARoB;AASrB,WAAO,eAAS,EAAT,EAAa;AAClB,aAAO,GAAG,EAAV;AACD,KAXoB;AAYrB,cAAU,kBAAS,EAAT,EAAa,CAEtB,CAdoB;AAerB,cAAU,kBAAS,EAAT,EAAa,KAAb,EAAoB,CAE7B,CAjBoB;AAkBrB,oBAAgB,wBAAS,EAAT,EAAa,IAAb,EAAmB,CAElC,CApBoB;AAqBrB,eAAW,mBAAS,EAAT,EAAa,QAAb,EAAuB;AAChC,SAAE,EAAF,EAAM,IAAN,CAAW,oBAAX,EAAiC,MAAjC;AACD,KAvBoB;AAwBrB,iBAAa,qBAAS,EAAT,EAAa;AACxB,SAAE,EAAF,EAAM,IAAN,CAAW,oBAAX,EAAiC,OAAjC;AACD;AA1BoB,GAAvB;AA4BA,SAAO,KAAP,CAAa,aAAb,CAA2B,QAA3B,CAAoC,YAApC,EAAkD,wBAAlD;AACD;;;;;;;;AChFD;;IAAY,K;;AACZ;;;;AAEA,IAAI,IAAI,OAAO,MAAf;;AAEA,MAAM,QAAN,CAAe;AACb,aAAW,+BADE;;AAGb,WAAS,iBAAS,EAAT,EAAa,IAAb,EAAmB;AAC1B;;;;AAIA,QAAI,WAAW,yBAAiB,KAAK,KAAtB,CAAf;;AAEA,QAAI,sBAAJ;AACA,QAAI,MAAM,EAAE,EAAF,CAAV;AACA,QAAI,EAAJ,CAAO,QAAP,EAAiB,wBAAjB,EAA2C,YAAW;AACpD,UAAI,UAAU,IAAI,IAAJ,CAAS,gCAAT,CAAd;AACA,UAAI,QAAQ,MAAR,KAAmB,CAAvB,EAA0B;AACxB,wBAAgB,IAAhB;AACA,iBAAS,KAAT;AACD,OAHD,MAGO;AACL,YAAI,OAAO,EAAX;AACA,gBAAQ,IAAR,CAAa,YAAW;AACtB,eAAK,GAAL,CAAS,KAAK,KAAd,EAAqB,OAArB,CAA6B,UAAS,GAAT,EAAc;AACzC,iBAAK,GAAL,IAAY,IAAZ;AACD,WAFD;AAGD,SAJD;AAKA,YAAI,WAAW,OAAO,IAAP,CAAY,IAAZ,CAAf;AACA,iBAAS,IAAT;AACA,wBAAgB,QAAhB;AACA,iBAAS,GAAT,CAAa,QAAb;AACD;AACF,KAjBD;;AAmBA,WAAO;AACL,eAAS,mBAAW;AAClB,iBAAS,KAAT;AACD,OAHI;AAIL,cAAQ,kBAAW;AACjB,YAAI,aAAJ,EACE,SAAS,GAAT,CAAa,aAAb;AACH;AAPI,KAAP;AASD;AAxCY,CAAf;;;;;;;;ACLA;;IAAY,K;;AACZ;;IAAY,I;;AACZ;;;;AAEA,IAAI,IAAI,OAAO,MAAf;;AAEA,MAAM,QAAN,CAAe;AACb,aAAW,wBADE;;AAGb,WAAS,iBAAS,EAAT,EAAa,IAAb,EAAmB;AAC1B;;;;;;AAMA,QAAI,QAAQ,CAAC,EAAC,OAAO,EAAR,EAAY,OAAO,OAAnB,EAAD,CAAZ;AACA,QAAI,QAAQ,KAAK,aAAL,CAAmB,KAAK,KAAxB,CAAZ;AACA,QAAI,OAAO;AACT,eAAS,MAAM,MAAN,CAAa,KAAb,CADA;AAET,kBAAY,OAFH;AAGT,kBAAY,OAHH;AAIT,mBAAa;AAJJ,KAAX;;AAOA,QAAI,SAAS,EAAE,EAAF,EAAM,IAAN,CAAW,QAAX,EAAqB,CAArB,CAAb;;AAEA,QAAI,YAAY,EAAE,MAAF,EAAU,SAAV,CAAoB,IAApB,EAA0B,CAA1B,EAA6B,SAA7C;;AAEA,QAAI,WAAW,yBAAiB,KAAK,KAAtB,CAAf;;AAEA,QAAI,sBAAJ;AACA,cAAU,EAAV,CAAa,QAAb,EAAuB,YAAW;AAChC,UAAI,UAAU,KAAV,CAAgB,MAAhB,KAA2B,CAA/B,EAAkC;AAChC,wBAAgB,IAAhB;AACA,iBAAS,KAAT;AACD,OAHD,MAGO;AACL,YAAI,OAAO,EAAX;AACA,kBAAU,KAAV,CAAgB,OAAhB,CAAwB,UAAS,KAAT,EAAgB;AACtC,eAAK,GAAL,CAAS,KAAT,EAAgB,OAAhB,CAAwB,UAAS,GAAT,EAAc;AACpC,iBAAK,GAAL,IAAY,IAAZ;AACD,WAFD;AAGD,SAJD;AAKA,YAAI,WAAW,OAAO,IAAP,CAAY,IAAZ,CAAf;AACA,iBAAS,IAAT;AACA,wBAAgB,QAAhB;AACA,iBAAS,GAAT,CAAa,QAAb;AACD;AACF,KAhBD;;AAkBA,WAAO;AACL,eAAS,mBAAW;AAClB,iBAAS,KAAT;AACD,OAHI;AAIL,cAAQ,kBAAW;AACjB,YAAI,aAAJ,EACE,SAAS,GAAT,CAAa,aAAb;AACH;AAPI,KAAP;AASD;AArDY,CAAf;;;;;;;;;;ACNA;;IAAY,K;;AACZ;;;;AAEA,IAAI,IAAI,OAAO,MAAf;AACA,IAAI,WAAW,OAAO,QAAtB;;AAEA,MAAM,QAAN,CAAe;AACb,aAAW,wBADE;;AAGb,WAAS,iBAAS,EAAT,EAAa,IAAb,EAAmB;AAC1B;;;;AAIA,QAAI,WAAW,yBAAiB,KAAK,KAAtB,CAAf;;AAEA,QAAI,OAAO,EAAX;AACA,QAAI,MAAM,EAAE,EAAF,EAAM,IAAN,CAAW,OAAX,CAAV;AACA,QAAI,WAAW,IAAI,IAAJ,CAAS,WAAT,CAAf;AACA,QAAI,aAAa,IAAI,IAAJ,CAAS,aAAT,CAAjB;AACA,QAAI,QAAQ,IAAI,IAAJ,CAAS,OAAT,CAAZ;AACA,QAAI,sBAAJ;;AAEA;AACA,QAAI,aAAa,MAAjB,EAAyB;AACvB,sBAAgB,SAAS,GAAT,EAAhB;AACA,WAAK,QAAL,GAAgB,UAAS,GAAT,EAAc;AAC5B,eAAO,cAAc,UAAd,EAA0B,IAAI,IAAJ,CAAS,GAAT,CAA1B,CAAP;AACD,OAFD;AAID,KAND,MAMO,IAAI,aAAa,UAAjB,EAA6B;AAClC,UAAI,WAAW,IAAI,IAAJ,CAAS,UAAT,CAAf;AACA,UAAI,QAAJ,EACE,gBAAgB,SAAS,QAAT,CAAkB,QAAlB,CAAhB,CADF,KAGE,gBAAgB,QAAhB;;AAEF,WAAK,QAAL,GAAgB,UAAS,GAAT,EAAc;AAC5B,eAAO,cAAc,UAAd,EAA0B,IAAI,IAAJ,CAAS,GAAT,CAA1B,CAAP;AACD,OAFD;AAGD,KAVM,MAUA,IAAI,aAAa,QAAjB,EAA2B;AAChC,UAAI,OAAO,KAAP,KAAiB,WAArB,EACE,KAAK,QAAL,GAAgB,UAAS,GAAT,EAAc;AAC5B,YAAI,SAAS,KAAK,GAAL,CAAS,EAAT,EAAa,KAAb,CAAb;AACA,eAAO,KAAK,KAAL,CAAW,MAAM,MAAjB,IAA2B,MAAlC;AACD,OAHD;AAIH;;AAED,QAAI,cAAJ,CAAmB,IAAnB;;AAEA,aAAS,QAAT,GAAoB;AAClB,UAAI,SAAS,IAAI,IAAJ,CAAS,gBAAT,EAA2B,MAAxC;;AAEA;AACA,UAAI,gBAAJ;AACA,UAAI,WAAW,IAAI,IAAJ,CAAS,WAAT,CAAf;AACA,UAAI,aAAa,MAAjB,EAAyB;AACvB,kBAAU,iBAAS,GAAT,EAAc;AACtB,iBAAO,cAAc,IAAI,IAAJ,CAAS,CAAC,GAAV,CAAd,CAAP;AACD,SAFD;AAGD,OAJD,MAIO,IAAI,aAAa,UAAjB,EAA6B;AAClC,kBAAU,iBAAS,GAAT,EAAc;AACtB;AACA,iBAAO,CAAC,GAAD,GAAO,IAAd;AACD,SAHD;AAID,OALM,MAKA;AACL,kBAAU,iBAAS,GAAT,EAAc;AAAE,iBAAO,CAAC,GAAR;AAAc,SAAxC;AACD;;AAED,UAAI,IAAI,IAAJ,CAAS,gBAAT,EAA2B,OAA3B,CAAmC,IAAnC,KAA4C,QAAhD,EAA0D;AACxD,eAAO,CAAC,QAAQ,OAAO,IAAf,CAAD,EAAuB,QAAQ,OAAO,EAAf,CAAvB,CAAP;AACD,OAFD,MAEO;AACL,eAAO,QAAQ,OAAO,IAAf,CAAP;AACD;AACF;;AAED,QAAI,gBAAgB,IAApB;;AAEA,QAAI,EAAJ,CAAO,6BAAP,EAAsC,UAAS,KAAT,EAAgB;AACpD,UAAI,CAAC,IAAI,IAAJ,CAAS,UAAT,CAAD,IAAyB,CAAC,IAAI,IAAJ,CAAS,WAAT,CAA9B,EAAqD;AAAA,wBAClC,UADkC;AAAA;AAAA,YAC9C,IAD8C;AAAA,YACxC,EADwC;;AAEnD,YAAI,OAAO,EAAX;AACA,aAAK,IAAI,IAAI,CAAb,EAAgB,IAAI,KAAK,MAAL,CAAY,MAAhC,EAAwC,GAAxC,EAA6C;AAC3C,cAAI,MAAM,KAAK,MAAL,CAAY,CAAZ,CAAV;AACA,cAAI,OAAO,IAAP,IAAe,OAAO,EAA1B,EAA8B;AAC5B,iBAAK,IAAL,CAAU,KAAK,IAAL,CAAU,CAAV,CAAV;AACD;AACF;AACD,aAAK,IAAL;AACA,iBAAS,GAAT,CAAa,IAAb;AACA,wBAAgB,IAAhB;AACD;AACF,KAdD;;AAiBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,WAAO;AACL,eAAS,mBAAW;AAClB,iBAAS,KAAT;AACD,OAHI;AAIL,cAAQ,kBAAW;AACjB,YAAI,aAAJ,EACE,SAAS,GAAT,CAAa,aAAb;AACH;AAPI,KAAP;AASD;AApHY,CAAf;;AAwHA;AACA,SAAS,QAAT,CAAkB,CAAlB,EAAqB,MAArB,EAA6B;AAC3B,MAAI,MAAM,EAAE,QAAF,EAAV;AACA,SAAO,IAAI,MAAJ,GAAa,MAApB;AACE,UAAM,MAAM,GAAZ;AADF,GAEA,OAAO,GAAP;AACD;;AAED;AACA;AACA,SAAS,aAAT,CAAuB,IAAvB,EAA6B;AAC3B,MAAI,gBAAgB,IAApB,EAA0B;AACxB,WAAO,KAAK,cAAL,KAAwB,GAAxB,GACA,SAAS,KAAK,WAAL,KAAmB,CAA5B,EAA+B,CAA/B,CADA,GACoC,GADpC,GAEA,SAAS,KAAK,UAAL,EAAT,EAA4B,CAA5B,CAFP;AAID,GALD,MAKO;AACL,WAAO,IAAP;AACD;AACF;;;;;;;;;;;;;;ACjJD;;;;AACA;;;;AACA;;IAAY,I;;;;;;;;AAEZ;;;;;;;;;;;;;;;;IAgBa,e,WAAA,e;AAEX,6BAA4C;AAAA,QAAhC,KAAgC,uEAAxB,IAAwB;AAAA,QAAlB,SAAkB,uEAAN,IAAM;;AAAA;;AAC1C,SAAK,WAAL,GAAmB,sBAAnB;AACA,SAAK,QAAL,GAAgB,IAAI,KAAK,mBAAT,CAA6B,KAAK,WAAlC,CAAhB;;AAEA;AACA,SAAK,MAAL,GAAc,IAAd;AACA;AACA,SAAK,IAAL,GAAY,IAAZ;AACA;AACA,SAAK,eAAL,GAAuB,IAAvB;;AAEA,SAAK,UAAL,GAAkB,KAAK,MAAL,CAAY,EAAE,QAAQ,IAAV,EAAZ,EAA8B,SAA9B,CAAlB;;AAEA,SAAK,QAAL,CAAc,KAAd;AACD;;AAED;;;;;;;;;;;;;;;;;6BAaS,K,EAAO;AAAA;;AACd;AACA,UAAI,KAAK,MAAL,KAAgB,KAApB,EACE;AACF;AACA,UAAI,CAAC,KAAK,MAAN,IAAgB,CAAC,KAArB,EACE;;AAEF,UAAI,KAAK,IAAT,EAAe;AACb,aAAK,IAAL,CAAU,GAAV,CAAc,QAAd,EAAwB,KAAK,eAA7B;AACA,aAAK,IAAL,GAAY,IAAZ;AACA,aAAK,eAAL,GAAuB,IAAvB;AACD;;AAED,WAAK,MAAL,GAAc,KAAd;;AAEA,UAAI,KAAJ,EAAW;AACT,aAAK,IAAL,GAAY,qBAAI,KAAJ,EAAW,GAAX,CAAe,WAAf,CAAZ;AACA,YAAI,MAAM,KAAK,IAAL,CAAU,EAAV,CAAa,QAAb,EAAuB,UAAC,CAAD,EAAO;AACtC,gBAAK,WAAL,CAAiB,OAAjB,CAAyB,QAAzB,EAAmC,CAAnC;AACD,SAFS,CAAV;AAGA,aAAK,eAAL,GAAuB,GAAvB;AACD;AACF;;AAED;;;;;;;;;;;;;;;AAcA;;;;;oCAKgB,S,EAAW;AACzB;AACA,aAAO,KAAK,MAAL,CAAY,EAAZ,EACL,KAAK,UAAL,GAAkB,KAAK,UAAvB,GAAoC,IAD/B,EAEL,YAAY,SAAZ,GAAwB,IAFnB,CAAP;AAGD;;AAED;;;;;;;;;;;;;;;wBAYI,Y,EAAc,S,EAAW;AAC3B,UAAI,KAAK,IAAT,EACE,KAAK,IAAL,CAAU,GAAV,CAAc,YAAd,EAA4B,KAAK,eAAL,CAAqB,SAArB,CAA5B;AACH;;AAED;;;;;;;;;;;;;0BAUM,S,EAAW;AACf,UAAI,KAAK,IAAT,EACE,KAAK,GAAL,CAAS,KAAK,CAAd,EAAiB,KAAK,eAAL,CAAqB,SAArB,CAAjB;AACH;;AAED;;;;;;;;;;;;;uBAUG,S,EAAW,Q,EAAU;AACtB,aAAO,KAAK,QAAL,CAAc,EAAd,CAAiB,SAAjB,EAA4B,QAA5B,CAAP;AACD;;AAED;;;;;;;;;;;wBAQI,S,EAAW,Q,EAAU;AACvB,aAAO,KAAK,QAAL,CAAc,GAAd,CAAkB,SAAlB,EAA6B,QAA7B,CAAP;AACD;;AAED;;;;;;;;4BAKQ;AACN,WAAK,QAAL,CAAc,kBAAd;AACA,WAAK,QAAL,CAAc,IAAd;AACD;;;wBAlFW;AACV,aAAO,KAAK,IAAL,GAAY,KAAK,IAAL,CAAU,GAAV,EAAZ,GAA8B,IAArC;AACD;;;;;;AAmFH;;;;;;;;;AASA;;;;;;;;;;;;;;;;;;;;;QCpLgB,M,GAAA,M;QAeA,W,GAAA,W;QAQA,e,GAAA,e;QAoCA,a,GAAA,a;;;;AA3DT,SAAS,MAAT,CAAgB,MAAhB,EAAoC;AAAA,oCAAT,OAAS;AAAT,WAAS;AAAA;;AACzC,OAAK,IAAI,IAAI,CAAb,EAAgB,IAAI,QAAQ,MAA5B,EAAoC,GAApC,EAAyC;AACvC,QAAI,MAAM,QAAQ,CAAR,CAAV;AACA,QAAI,OAAO,GAAP,KAAgB,WAAhB,IAA+B,QAAQ,IAA3C,EACE;;AAEF,SAAK,IAAI,GAAT,IAAgB,GAAhB,EAAqB;AACnB,UAAI,IAAI,cAAJ,CAAmB,GAAnB,CAAJ,EAA6B;AAC3B,eAAO,GAAP,IAAc,IAAI,GAAJ,CAAd;AACD;AACF;AACF;AACD,SAAO,MAAP;AACD;;AAEM,SAAS,WAAT,CAAqB,IAArB,EAA2B;AAChC,OAAK,IAAI,IAAI,CAAb,EAAgB,IAAI,KAAK,MAAzB,EAAiC,GAAjC,EAAsC;AACpC,QAAI,KAAK,CAAL,KAAW,KAAK,IAAE,CAAP,CAAf,EAA0B;AACxB,YAAM,IAAI,KAAJ,CAAU,0CAAV,CAAN;AACD;AACF;AACF;;AAEM,SAAS,eAAT,CAAyB,CAAzB,EAA4B,CAA5B,EAA+B;AACpC,MAAI,MAAM,CAAV;AACA,MAAI,MAAM,CAAV;;AAEA,MAAI,CAAC,CAAL,EAAQ,IAAI,EAAJ;AACR,MAAI,CAAC,CAAL,EAAQ,IAAI,EAAJ;;AAER,MAAI,SAAS,EAAb;AACA,MAAI,SAAS,EAAb;;AAEA,cAAY,CAAZ;AACA,cAAY,CAAZ;;AAEA,SAAO,MAAM,EAAE,MAAR,IAAkB,MAAM,EAAE,MAAjC,EAAyC;AACvC,QAAI,EAAE,GAAF,MAAW,EAAE,GAAF,CAAf,EAAuB;AACrB;AACA;AACD,KAHD,MAGO,IAAI,EAAE,GAAF,IAAS,EAAE,GAAF,CAAb,EAAqB;AAC1B,aAAO,IAAP,CAAY,EAAE,KAAF,CAAZ;AACD,KAFM,MAEA;AACL,aAAO,IAAP,CAAY,EAAE,KAAF,CAAZ;AACD;AACF;;AAED,MAAI,MAAM,EAAE,MAAZ,EACE,SAAS,OAAO,MAAP,CAAc,EAAE,KAAF,CAAQ,GAAR,CAAd,CAAT;AACF,MAAI,MAAM,EAAE,MAAZ,EACE,SAAS,OAAO,MAAP,CAAc,EAAE,KAAF,CAAQ,GAAR,CAAd,CAAT;AACF,SAAO;AACL,aAAS,MADJ;AAEL,WAAO;AAFF,GAAP;AAID;;AAED;AACA;AACO,SAAS,aAAT,CAAuB,EAAvB,EAA2B;AAChC,MAAI,QAAQ,EAAZ;AACA,MAAI,eAAJ;AACA,OAAK,IAAI,IAAT,IAAiB,EAAjB,EAAqB;AACnB,QAAI,GAAG,cAAH,CAAkB,IAAlB,CAAJ,EACE,MAAM,IAAN,CAAW,IAAX;AACF,QAAI,QAAO,GAAG,IAAH,CAAP,MAAqB,QAArB,IAAiC,OAAO,GAAG,IAAH,EAAS,MAAhB,KAA4B,WAAjE,EAA8E;AAC5E,YAAM,IAAI,KAAJ,CAAU,2BAAV,CAAN;AACD,KAFD,MAEO,IAAI,OAAO,MAAP,KAAmB,WAAnB,IAAkC,WAAW,GAAG,IAAH,EAAS,MAA1D,EAAkE;AACvE,YAAM,IAAI,KAAJ,CAAU,8CAAV,CAAN;AACD;AACD,aAAS,GAAG,IAAH,EAAS,MAAlB;AACD;AACD,MAAI,UAAU,EAAd;AACA,MAAI,aAAJ;AACA,OAAK,IAAI,MAAM,CAAf,EAAkB,MAAM,MAAxB,EAAgC,KAAhC,EAAuC;AACrC,WAAO,EAAP;AACA,SAAK,IAAI,MAAM,CAAf,EAAkB,MAAM,MAAM,MAA9B,EAAsC,KAAtC,EAA6C;AAC3C,WAAK,MAAM,GAAN,CAAL,IAAmB,GAAG,MAAM,GAAN,CAAH,EAAe,GAAf,CAAnB;AACD;AACD,YAAQ,IAAR,CAAa,IAAb;AACD;AACD,SAAO,OAAP;AACD;;AAED;;;;;;;IAMa,mB,WAAA,mB;AACX,+BAAY,OAAZ,EAAqB;AAAA;;AACnB,SAAK,QAAL,GAAgB,OAAhB;AACA,SAAK,KAAL,GAAa,EAAb;AACD;;;;uBAEE,S,EAAW,Q,EAAU;AACtB,UAAI,MAAM,KAAK,QAAL,CAAc,EAAd,CAAiB,SAAjB,EAA4B,QAA5B,CAAV;AACA,WAAK,KAAL,CAAW,GAAX,IAAkB,SAAlB;AACA,aAAO,GAAP;AACD;;;wBAEG,S,EAAW,Q,EAAU;AACvB,UAAI,MAAM,KAAK,QAAL,CAAc,GAAd,CAAkB,SAAlB,EAA6B,QAA7B,CAAV;AACA,UAAI,GAAJ,EAAS;AACP,eAAO,KAAK,KAAL,CAAW,GAAX,CAAP;AACD;AACD,aAAO,GAAP;AACD;;;yCAEoB;AAAA;;AACnB,UAAI,eAAe,KAAK,KAAxB;AACA,WAAK,KAAL,GAAa,EAAb;AACA,aAAO,IAAP,CAAY,YAAZ,EAA0B,OAA1B,CAAkC,UAAC,GAAD,EAAS;AACzC,cAAK,QAAL,CAAc,GAAd,CAAkB,aAAa,GAAb,CAAlB,EAAqC,GAArC;AACD,OAFD;AAGD;;;;;;;;;;;;;;;;;;ACpHH;;;;;;;;IAEqB,G;AACnB,eAAY,KAAZ,EAAmB,IAAnB,EAAyB,YAAa,KAAtC,EAA6C;AAAA;;AAC3C,SAAK,MAAL,GAAc,KAAd;AACA,SAAK,KAAL,GAAa,IAAb;AACA,SAAK,MAAL,GAAc,KAAd;AACA,SAAK,OAAL,GAAe,sBAAf;AACD;;;;0BAEK;AACJ,aAAO,KAAK,MAAZ;AACD;;;wBAEG,K,EAAO,YAAa,K,EAAO;AAC7B,UAAI,KAAK,MAAL,KAAgB,KAApB,EAA2B;AACzB;AACA;AACD;AACD,UAAI,WAAW,KAAK,MAApB;AACA,WAAK,MAAL,GAAc,KAAd;AACA;AACA,UAAI,MAAM,EAAV;AACA,UAAI,SAAS,QAAO,KAAP,yCAAO,KAAP,OAAkB,QAA/B,EAAyC;AACvC,aAAK,IAAI,CAAT,IAAc,KAAd,EAAqB;AACnB,cAAI,MAAM,cAAN,CAAqB,CAArB,CAAJ,EACE,IAAI,CAAJ,IAAS,MAAM,CAAN,CAAT;AACH;AACF;AACD,UAAI,QAAJ,GAAe,QAAf;AACA,UAAI,KAAJ,GAAY,KAAZ;AACA,WAAK,OAAL,CAAa,OAAb,CAAqB,QAArB,EAA+B,GAA/B,EAAoC,IAApC;;AAEA;AACA;AACA,UAAI,OAAO,KAAP,IAAgB,OAAO,KAAP,CAAa,aAAjC,EAAgD;AAC9C,eAAO,KAAP,CAAa,aAAb,CACE,mBACG,KAAK,MAAL,CAAY,IAAZ,KAAqB,IAArB,GAA4B,KAAK,MAAL,CAAY,IAAZ,GAAmB,GAA/C,GAAqD,EADxD,IAEE,KAAK,KAHT,EAIE,OAAO,KAAP,KAAkB,WAAlB,GAAgC,IAAhC,GAAuC,KAJzC;AAMD;AACF;;;uBAEE,S,EAAW,Q,EAAU;AACtB,aAAO,KAAK,OAAL,CAAa,EAAb,CAAgB,SAAhB,EAA2B,QAA3B,CAAP;AACD;;;wBAEG,S,EAAW,Q,EAAU;AACvB,aAAO,KAAK,OAAL,CAAa,GAAb,CAAiB,SAAjB,EAA4B,QAA5B,CAAP;AACD;;;;;;kBAjDkB,G", + "file": "generated.js", + "sourceRoot": "", + "sourcesContent": [ + "(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o {\n this._eventRelay.trigger(\"change\", e, this);\n });\n this._varOnChangeSub = sub;\n }\n }\n\n /**\n * Combine the given `extraInfo` (if any) with the handle's default\n * `_extraInfo` (if any).\n * @private\n */\n _mergeExtraInfo(extraInfo) {\n return util.extend({},\n this._extraInfo ? this._extraInfo : null,\n extraInfo ? extraInfo : null);\n }\n\n /**\n * Close the handle. This clears this handle's contribution to the filter set,\n * and unsubscribes all event listeners.\n */\n close() {\n this._emitter.removeAllListeners();\n this.clear();\n this.setGroup(null);\n }\n\n /**\n * Clear this handle's contribution to the filter set.\n *\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any options that were\n * passed into the `FilterHandle` constructor).\n * \n * @fires FilterHandle#change\n */\n clear(extraInfo) {\n if (!this._filterSet)\n return;\n this._filterSet.clear(this._id);\n this._onChange(extraInfo);\n }\n\n /**\n * Set this handle's contribution to the filter set. This array should consist\n * of the keys of the rows that _should_ be displayed; any keys that are not\n * present in the array will be considered _filtered out_. Note that multiple\n * `FilterHandle` instances in the group may each contribute an array of keys,\n * and only those keys that appear in _all_ of the arrays make it through the\n * filter.\n *\n * @param {string[]} keys - Empty array, or array of keys. To clear the\n * filter, don't pass an empty array; instead, use the\n * {@link FilterHandle#clear} method.\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any options that were\n * passed into the `FilterHandle` constructor).\n * \n * @fires FilterHandle#change\n */\n set(keys, extraInfo) {\n if (!this._filterSet)\n return;\n this._filterSet.update(this._id, keys);\n this._onChange(extraInfo);\n }\n\n /**\n * @return {string[]|null} - Either: 1) an array of keys that made it through\n * all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n * is being applied (all data should be displayed).\n */\n get filteredKeys() {\n return this._filterSet ? this._filterSet.value : null;\n }\n\n /**\n * Subscribe to events on this `FilterHandle`.\n *\n * @param {string} eventType - Indicates the type of events to listen to.\n * Currently, only `\"change\"` is supported.\n * @param {FilterHandle~listener} listener - The callback function that\n * will be invoked when the event occurs.\n * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n * this subscription.\n */\n on(eventType, listener) {\n return this._emitter.on(eventType, listener);\n }\n\n /**\n * Cancel event subscriptions created by {@link FilterHandle#on}.\n *\n * @param {string} eventType - The type of event to unsubscribe.\n * @param {string|FilterHandle~listener} listener - Either the callback\n * function previously passed into {@link FilterHandle#on}, or the\n * string that was returned from {@link FilterHandle#on}.\n */\n off(eventType, listener) {\n return this._emitter.off(eventType, listener);\n }\n\n _onChange(extraInfo) {\n if (!this._filterSet)\n return;\n this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n }\n\n /**\n * @callback FilterHandle~listener\n * @param {Object} event - An object containing details of the event. For\n * `\"change\"` events, this includes the properties `value` (the new\n * value of the filter set, or `null` if no filter set is active),\n * `oldValue` (the previous value of the filter set), and `sender` (the\n * `FilterHandle` instance that made the change).\n */\n\n}\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n * if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n * changed the value.\n */\n", + "import { diffSortedLists } from \"./util\";\n\nfunction naturalComparator(a, b) {\n if (a === b) {\n return 0;\n } else if (a < b) {\n return -1;\n } else if (a > b) {\n return 1;\n }\n}\n\n/**\n * @private\n */\nexport default class FilterSet {\n constructor() {\n this.reset();\n }\n\n reset() {\n // Key: handle ID, Value: array of selected keys, or null\n this._handles = {};\n // Key: key string, Value: count of handles that include it\n this._keys = {};\n this._value = null;\n this._activeHandles = 0;\n }\n\n get value() {\n return this._value;\n }\n\n update(handleId, keys) {\n if (keys !== null) {\n keys = keys.slice(0); // clone before sorting\n keys.sort(naturalComparator);\n }\n\n let {added, removed} = diffSortedLists(this._handles[handleId], keys);\n this._handles[handleId] = keys;\n\n for (let i = 0; i < added.length; i++) {\n this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n }\n for (let i = 0; i < removed.length; i++) {\n this._keys[removed[i]]--;\n }\n\n this._updateValue(keys);\n }\n\n /**\n * @param {string[]} keys Sorted array of strings that indicate\n * a superset of possible keys.\n * @private\n */\n _updateValue(keys = this._allKeys) {\n let handleCount = Object.keys(this._handles).length;\n if (handleCount === 0) {\n this._value = null;\n } else {\n this._value = [];\n for (let i = 0; i < keys.length; i++) {\n let count = this._keys[keys[i]];\n if (count === handleCount) {\n this._value.push(keys[i]);\n }\n }\n }\n }\n\n clear(handleId) {\n if (typeof(this._handles[handleId]) === \"undefined\") {\n return;\n }\n\n let keys = this._handles[handleId];\n if (!keys) {\n keys = [];\n }\n\n for (let i = 0; i < keys.length; i++) {\n this._keys[keys[i]]--;\n }\n delete this._handles[handleId];\n\n this._updateValue();\n }\n\n get _allKeys() {\n let allKeys = Object.keys(this._keys);\n allKeys.sort(naturalComparator);\n return allKeys;\n }\n}\n", + "import Var from \"./var\";\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nlet groups = global.__crosstalk_groups;\n\nexport default function group(groupName) {\n if (groupName && typeof(groupName) === \"string\") {\n if (!groups.hasOwnProperty(groupName)) {\n groups[groupName] = new Group(groupName);\n }\n return groups[groupName];\n } else if (typeof(groupName) === \"object\" && groupName._vars && groupName.var) {\n // Appears to already be a group object\n return groupName;\n } else if (Array.isArray(groupName) &&\n groupName.length == 1 &&\n typeof(groupName[0]) === \"string\") {\n return group(groupName[0]);\n } else {\n throw new Error(\"Invalid groupName argument\");\n }\n}\n\nclass Group {\n constructor(name) {\n this.name = name;\n this._vars = {};\n }\n\n var(name) {\n if (!name || typeof(name) !== \"string\") {\n throw new Error(\"Invalid var name\");\n }\n\n if (!this._vars.hasOwnProperty(name))\n this._vars[name] = new Var(this, name);\n return this._vars[name];\n }\n\n has(name) {\n if (!name || typeof(name) !== \"string\") {\n throw new Error(\"Invalid var name\");\n }\n\n return this._vars.hasOwnProperty(name);\n }\n}\n", + "import group from \"./group\";\nimport { SelectionHandle } from \"./selection\";\nimport { FilterHandle } from \"./filter\";\nimport { bind } from \"./input\";\nimport \"./input_selectize\";\nimport \"./input_checkboxgroup\";\nimport \"./input_slider\";\n\nconst defaultGroup = group(\"default\");\n\nfunction var_(name) {\n return defaultGroup.var(name);\n}\n\nfunction has(name) {\n return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n global.Shiny.addCustomMessageHandler(\"update-client-value\", function(message) {\n if (typeof(message.group) === \"string\") {\n group(message.group).var(message.name).set(message.value);\n } else {\n var_(message.name).set(message.value);\n }\n });\n}\n\nconst crosstalk = {\n group: group,\n var: var_,\n has: has,\n SelectionHandle: SelectionHandle,\n FilterHandle: FilterHandle,\n bind: bind\n};\n\n/**\n * @namespace crosstalk\n */\nexport default crosstalk;\nglobal.crosstalk = crosstalk;\n", + "let $ = global.jQuery;\n\nlet bindings = {};\n\nexport function register(reg) {\n bindings[reg.className] = reg;\n if (global.document && global.document.readyState !== \"complete\") {\n $(() => {\n bind();\n });\n } else if (global.document) {\n setTimeout(bind, 100);\n }\n}\n\nexport function bind() {\n Object.keys(bindings).forEach(function(className) {\n let binding = bindings[className];\n $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function(i, el) {\n bindInstance(binding, el);\n });\n });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n let $el = $(el);\n Object.keys(bindings).forEach(function(className) {\n if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n let binding = bindings[className];\n bindInstance(binding, el);\n }\n });\n}\n\nfunction bindInstance(binding, el) {\n let jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n let data = JSON.parse(jsonEl[0].innerText);\n\n let instance = binding.factory(el, data);\n $(el).data(\"crosstalk-instance\", instance);\n $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n let inputBinding = new global.Shiny.InputBinding();\n let $ = global.jQuery;\n $.extend(inputBinding, {\n find: function(scope) {\n return $(scope).find(\".crosstalk-input\");\n },\n initialize: function(el) {\n if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n bindEl(el);\n }\n },\n getId: function(el) {\n return el.id;\n },\n getValue: function(el) {\n\n },\n setValue: function(el, value) {\n\n },\n receiveMessage: function(el, data) {\n\n },\n subscribe: function(el, callback) {\n $(el).data(\"crosstalk-instance\").resume();\n },\n unsubscribe: function(el) {\n $(el).data(\"crosstalk-instance\").suspend();\n }\n });\n global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n", + "import * as input from \"./input\";\nimport { FilterHandle } from \"./filter\";\n\nlet $ = global.jQuery;\n\ninput.register({\n className: \"crosstalk-input-checkboxgroup\",\n\n factory: function(el, data) {\n /*\n * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n * group: \"ct-groupname\"\n */\n let ctHandle = new FilterHandle(data.group);\n\n let lastKnownKeys;\n let $el = $(el);\n $el.on(\"change\", \"input[type='checkbox']\", function() {\n let checked = $el.find(\"input[type='checkbox']:checked\");\n if (checked.length === 0) {\n lastKnownKeys = null;\n ctHandle.clear();\n } else {\n let keys = {};\n checked.each(function() {\n data.map[this.value].forEach(function(key) {\n keys[key] = true;\n });\n });\n let keyArray = Object.keys(keys);\n keyArray.sort();\n lastKnownKeys = keyArray;\n ctHandle.set(keyArray);\n }\n });\n\n return {\n suspend: function() {\n ctHandle.clear();\n },\n resume: function() {\n if (lastKnownKeys)\n ctHandle.set(lastKnownKeys);\n }\n };\n }\n});\n", + "import * as input from \"./input\";\nimport * as util from \"./util\";\nimport { FilterHandle } from \"./filter\";\n\nlet $ = global.jQuery;\n\ninput.register({\n className: \"crosstalk-input-select\",\n\n factory: function(el, data) {\n /*\n * items: {value: [...], label: [...]}\n * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n * group: \"ct-groupname\"\n */\n\n let first = [{value: \"\", label: \"(All)\"}];\n let items = util.dataframeToD3(data.items);\n let opts = {\n options: first.concat(items),\n valueField: \"value\",\n labelField: \"label\",\n searchField: \"label\"\n };\n\n let select = $(el).find(\"select\")[0];\n\n let selectize = $(select).selectize(opts)[0].selectize;\n\n let ctHandle = new FilterHandle(data.group);\n\n let lastKnownKeys;\n selectize.on(\"change\", function() {\n if (selectize.items.length === 0) {\n lastKnownKeys = null;\n ctHandle.clear();\n } else {\n let keys = {};\n selectize.items.forEach(function(group) {\n data.map[group].forEach(function(key) {\n keys[key] = true;\n });\n });\n let keyArray = Object.keys(keys);\n keyArray.sort();\n lastKnownKeys = keyArray;\n ctHandle.set(keyArray);\n }\n });\n\n return {\n suspend: function() {\n ctHandle.clear();\n },\n resume: function() {\n if (lastKnownKeys)\n ctHandle.set(lastKnownKeys);\n }\n };\n }\n});\n", + "import * as input from \"./input\";\nimport { FilterHandle } from \"./filter\";\n\nlet $ = global.jQuery;\nlet strftime = global.strftime;\n\ninput.register({\n className: \"crosstalk-input-slider\",\n\n factory: function(el, data) {\n /*\n * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n * group: \"ct-groupname\"\n */\n let ctHandle = new FilterHandle(data.group);\n\n let opts = {};\n let $el = $(el).find(\"input\");\n let dataType = $el.data(\"data-type\");\n let timeFormat = $el.data(\"time-format\");\n let round = $el.data(\"round\");\n let timeFormatter;\n\n // Set up formatting functions\n if (dataType === \"date\") {\n timeFormatter = strftime.utc();\n opts.prettify = function(num) {\n return timeFormatter(timeFormat, new Date(num));\n };\n\n } else if (dataType === \"datetime\") {\n let timezone = $el.data(\"timezone\");\n if (timezone)\n timeFormatter = strftime.timezone(timezone);\n else\n timeFormatter = strftime;\n\n opts.prettify = function(num) {\n return timeFormatter(timeFormat, new Date(num));\n };\n } else if (dataType === \"number\") {\n if (typeof round !== \"undefined\")\n opts.prettify = function(num) {\n let factor = Math.pow(10, round);\n return Math.round(num * factor) / factor;\n };\n }\n\n $el.ionRangeSlider(opts);\n\n function getValue() {\n let result = $el.data(\"ionRangeSlider\").result;\n\n // Function for converting numeric value from slider to appropriate type.\n let convert;\n let dataType = $el.data(\"data-type\");\n if (dataType === \"date\") {\n convert = function(val) {\n return formatDateUTC(new Date(+val));\n };\n } else if (dataType === \"datetime\") {\n convert = function(val) {\n // Convert ms to s\n return +val / 1000;\n };\n } else {\n convert = function(val) { return +val; };\n }\n\n if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n return [convert(result.from), convert(result.to)];\n } else {\n return convert(result.from);\n }\n }\n\n let lastKnownKeys = null;\n\n $el.on(\"change.crosstalkSliderInput\", function(event) {\n if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n let [from, to] = getValue();\n let keys = [];\n for (let i = 0; i < data.values.length; i++) {\n let val = data.values[i];\n if (val >= from && val <= to) {\n keys.push(data.keys[i]);\n }\n }\n keys.sort();\n ctHandle.set(keys);\n lastKnownKeys = keys;\n }\n });\n\n\n // let $el = $(el);\n // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n // let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n // if (checked.length === 0) {\n // ctHandle.clear();\n // } else {\n // let keys = {};\n // checked.each(function() {\n // data.map[this.value].forEach(function(key) {\n // keys[key] = true;\n // });\n // });\n // let keyArray = Object.keys(keys);\n // keyArray.sort();\n // ctHandle.set(keyArray);\n // }\n // });\n\n return {\n suspend: function() {\n ctHandle.clear();\n },\n resume: function() {\n if (lastKnownKeys)\n ctHandle.set(lastKnownKeys);\n }\n };\n }\n});\n\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n let str = n.toString();\n while (str.length < digits)\n str = \"0\" + str;\n return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n if (date instanceof Date) {\n return date.getUTCFullYear() + \"-\" +\n padZeros(date.getUTCMonth()+1, 2) + \"-\" +\n padZeros(date.getUTCDate(), 2);\n\n } else {\n return null;\n }\n}\n", + "import Events from \"./events\";\nimport grp from \"./group\";\nimport * as util from \"./util\";\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n * null or undefined (or any other falsy value). This can be changed later\n * via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n * the event object whenever an event is emitted.\n */\nexport class SelectionHandle {\n\n constructor(group = null, extraInfo = null) {\n this._eventRelay = new Events();\n this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n // Name of the group we're currently tracking, if any. Can change over time.\n this._group = null;\n // The Var we're currently tracking, if any. Can change over time.\n this._var = null;\n // The event handler subscription we currently have on var.on(\"change\").\n this._varOnChangeSub = null;\n\n this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n this.setGroup(group);\n }\n\n /**\n * Changes the Crosstalk group membership of this SelectionHandle. The group\n * being switched away from (if any) will not have its selection value\n * modified as a result of calling `setGroup`, even if this handle was the\n * most recent handle to set the selection of the group.\n *\n * The group being switched to (if any) will also not have its selection value\n * modified as a result of calling `setGroup`. If you want to set the\n * selection value of the new group, call `set` explicitly.\n *\n * @param {string} group - The name of the Crosstalk group, or null (or\n * undefined) to clear the group.\n */\n setGroup(group) {\n // If group is unchanged, do nothing\n if (this._group === group)\n return;\n // Treat null, undefined, and other falsy values the same\n if (!this._group && !group)\n return;\n\n if (this._var) {\n this._var.off(\"change\", this._varOnChangeSub);\n this._var = null;\n this._varOnChangeSub = null;\n }\n\n this._group = group;\n\n if (group) {\n this._var = grp(group).var(\"selection\");\n let sub = this._var.on(\"change\", (e) => {\n this._eventRelay.trigger(\"change\", e, this);\n });\n this._varOnChangeSub = sub;\n }\n }\n\n /**\n * Retrieves the current selection for the group represented by this\n * `SelectionHandle`.\n *\n * - If no selection is active, then this value will be falsy.\n * - If a selection is active, but no data points are selected, then this\n * value will be an empty array.\n * - If a selection is active, and data points are selected, then the keys\n * of the selected data points will be present in the array.\n */\n get value() {\n return this._var ? this._var.get() : null;\n }\n\n /**\n * Combines the given `extraInfo` (if any) with the handle's default\n * `_extraInfo` (if any).\n * @private\n */\n _mergeExtraInfo(extraInfo) {\n // Important incidental effect: shallow clone is returned\n return util.extend({},\n this._extraInfo ? this._extraInfo : null,\n extraInfo ? extraInfo : null);\n }\n\n /**\n * Overwrites the current selection for the group, and raises the `\"change\"`\n * event among all of the group's '`SelectionHandle` instances (including\n * this one).\n *\n * @fires SelectionHandle#change\n * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n * {@link SelectionHandle#value}).\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any options that were\n * passed into the `SelectionHandle` constructor).\n */\n set(selectedKeys, extraInfo) {\n if (this._var)\n this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n }\n\n /**\n * Overwrites the current selection for the group, and raises the `\"change\"`\n * event among all of the group's '`SelectionHandle` instances (including\n * this one).\n *\n * @fires SelectionHandle#change\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any that were passed\n * into the `SelectionHandle` constructor).\n */\n clear(extraInfo) {\n if (this._var)\n this.set(void 0, this._mergeExtraInfo(extraInfo));\n }\n\n /**\n * Subscribes to events on this `SelectionHandle`.\n *\n * @param {string} eventType - Indicates the type of events to listen to.\n * Currently, only `\"change\"` is supported.\n * @param {SelectionHandle~listener} listener - The callback function that\n * will be invoked when the event occurs.\n * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n * this subscription.\n */\n on(eventType, listener) {\n return this._emitter.on(eventType, listener);\n }\n\n /**\n * Cancels event subscriptions created by {@link SelectionHandle#on}.\n *\n * @param {string} eventType - The type of event to unsubscribe.\n * @param {string|SelectionHandle~listener} listener - Either the callback\n * function previously passed into {@link SelectionHandle#on}, or the\n * string that was returned from {@link SelectionHandle#on}.\n */\n off(eventType, listener) {\n return this._emitter.off(eventType, listener);\n }\n\n /**\n * Shuts down the `SelectionHandle` object.\n *\n * Removes all event listeners that were added through this handle.\n */\n close() {\n this._emitter.removeAllListeners();\n this.setGroup(null);\n }\n}\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n * `\"change\"` events, this includes the properties `value` (the new\n * value of the selection, or `undefined` if no selection is active),\n * `oldValue` (the previous value of the selection), and `sender` (the\n * `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n * if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n * changed the value.\n */\n", + "export function extend(target, ...sources) {\n for (let i = 0; i < sources.length; i++) {\n let src = sources[i];\n if (typeof(src) === \"undefined\" || src === null)\n continue;\n\n for (let key in src) {\n if (src.hasOwnProperty(key)) {\n target[key] = src[key];\n }\n }\n }\n return target;\n}\n\nexport function checkSorted(list) {\n for (let i = 1; i < list.length; i++) {\n if (list[i] <= list[i-1]) {\n throw new Error(\"List is not sorted or contains duplicate\");\n }\n }\n}\n\nexport function diffSortedLists(a, b) {\n let i_a = 0;\n let i_b = 0;\n\n if (!a) a = [];\n if (!b) b = [];\n\n let a_only = [];\n let b_only = [];\n\n checkSorted(a);\n checkSorted(b);\n\n while (i_a < a.length && i_b < b.length) {\n if (a[i_a] === b[i_b]) {\n i_a++;\n i_b++;\n } else if (a[i_a] < b[i_b]) {\n a_only.push(a[i_a++]);\n } else {\n b_only.push(b[i_b++]);\n }\n }\n\n if (i_a < a.length)\n a_only = a_only.concat(a.slice(i_a));\n if (i_b < b.length)\n b_only = b_only.concat(b.slice(i_b));\n return {\n removed: a_only,\n added: b_only\n };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nexport function dataframeToD3(df) {\n let names = [];\n let length;\n for (let name in df) {\n if (df.hasOwnProperty(name))\n names.push(name);\n if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n throw new Error(\"All fields must be arrays\");\n } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n throw new Error(\"All fields must be arrays of the same length\");\n }\n length = df[name].length;\n }\n let results = [];\n let item;\n for (let row = 0; row < length; row++) {\n item = {};\n for (let col = 0; col < names.length; col++) {\n item[names[col]] = df[names[col]][row];\n }\n results.push(item);\n }\n return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\nexport class SubscriptionTracker {\n constructor(emitter) {\n this._emitter = emitter;\n this._subs = {};\n }\n\n on(eventType, listener) {\n let sub = this._emitter.on(eventType, listener);\n this._subs[sub] = eventType;\n return sub;\n }\n\n off(eventType, listener) {\n let sub = this._emitter.off(eventType, listener);\n if (sub) {\n delete this._subs[sub];\n }\n return sub;\n }\n\n removeAllListeners() {\n let current_subs = this._subs;\n this._subs = {};\n Object.keys(current_subs).forEach((sub) => {\n this._emitter.off(current_subs[sub], sub);\n });\n }\n}\n", + "import Events from \"./events\";\n\nexport default class Var {\n constructor(group, name, /*optional*/ value) {\n this._group = group;\n this._name = name;\n this._value = value;\n this._events = new Events();\n }\n\n get() {\n return this._value;\n }\n\n set(value, /*optional*/ event) {\n if (this._value === value) {\n // Do nothing; the value hasn't changed\n return;\n }\n let oldValue = this._value;\n this._value = value;\n // Alert JavaScript listeners that the value has changed\n let evt = {};\n if (event && typeof(event) === \"object\") {\n for (let k in event) {\n if (event.hasOwnProperty(k))\n evt[k] = event[k];\n }\n }\n evt.oldValue = oldValue;\n evt.value = value;\n this._events.trigger(\"change\", evt, this);\n\n // TODO: Make this extensible, to let arbitrary back-ends know that\n // something has changed\n if (global.Shiny && global.Shiny.onInputChange) {\n global.Shiny.onInputChange(\n \".clientValue-\" +\n (this._group.name !== null ? this._group.name + \"-\" : \"\") +\n this._name,\n typeof(value) === \"undefined\" ? null : value\n );\n }\n }\n\n on(eventType, listener) {\n return this._events.on(eventType, listener);\n }\n\n off(eventType, listener) {\n return this._events.off(eventType, listener);\n }\n}\n" + ] +} \ No newline at end of file diff --git a/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.min.js b/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.min.js new file mode 100644 index 0000000..b7ec0ac --- /dev/null +++ b/docs/articles/introduction_files/crosstalk-1.2.0/js/crosstalk.min.js @@ -0,0 +1,2 @@ +!function o(u,a,l){function s(n,e){if(!a[n]){if(!u[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(f)return f(n,!0);var r=new Error("Cannot find module '"+n+"'");throw r.code="MODULE_NOT_FOUND",r}var i=a[n]={exports:{}};u[n][0].call(i.exports,function(e){var t=u[n][1][e];return s(t||e)},i,i.exports,o,u,a,l)}return a[n].exports}for(var f="function"==typeof require&&require,e=0;e?@[\\\]^`{|}~])/g,"\\$1")+"']"),r=JSON.parse(n[0].innerText),i=e.factory(t,r);o(t).data("crosstalk-instance",i),o(t).addClass("crosstalk-input-bound")}if(t.Shiny){var e=new t.Shiny.InputBinding,u=t.jQuery;u.extend(e,{find:function(e){return u(e).find(".crosstalk-input")},initialize:function(e){var t,n;u(e).hasClass("crosstalk-input-bound")||(n=o(t=e),Object.keys(r).forEach(function(e){n.hasClass(e)&&!n.hasClass("crosstalk-input-bound")&&i(r[e],t)}))},getId:function(e){return e.id},getValue:function(e){},setValue:function(e,t){},receiveMessage:function(e,t){},subscribe:function(e,t){u(e).data("crosstalk-instance").resume()},unsubscribe:function(e){u(e).data("crosstalk-instance").suspend()}}),t.Shiny.inputBindings.register(e,"crosstalk.inputBinding")}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],7:[function(r,e,t){(function(e){"use strict";var t=function(e){{if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}}(r("./input")),n=r("./filter");var a=e.jQuery;t.register({className:"crosstalk-input-checkboxgroup",factory:function(e,r){var i=new n.FilterHandle(r.group),o=void 0,u=a(e);return u.on("change","input[type='checkbox']",function(){var e=u.find("input[type='checkbox']:checked");if(0===e.length)o=null,i.clear();else{var t={};e.each(function(){r.map[this.value].forEach(function(e){t[e]=!0})});var n=Object.keys(t);n.sort(),o=n,i.set(n)}}),{suspend:function(){i.clear()},resume:function(){o&&i.set(o)}}}})}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./filter":2,"./input":6}],8:[function(r,e,t){(function(e){"use strict";var t=n(r("./input")),l=n(r("./util")),s=r("./filter");function n(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}var f=e.jQuery;t.register({className:"crosstalk-input-select",factory:function(e,n){var t=l.dataframeToD3(n.items),r={options:[{value:"",label:"(All)"}].concat(t),valueField:"value",labelField:"label",searchField:"label"},i=f(e).find("select")[0],o=f(i).selectize(r)[0].selectize,u=new s.FilterHandle(n.group),a=void 0;return o.on("change",function(){if(0===o.items.length)a=null,u.clear();else{var t={};o.items.forEach(function(e){n.map[e].forEach(function(e){t[e]=!0})});var e=Object.keys(t);e.sort(),a=e,u.set(e)}}),{suspend:function(){u.clear()},resume:function(){a&&u.set(a)}}}})}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./filter":2,"./input":6,"./util":11}],9:[function(n,e,t){(function(e){"use strict";var d=function(e,t){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return function(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var u,a=e[Symbol.iterator]();!(r=(u=a.next()).done)&&(n.push(u.value),!t||n.length!==t);r=!0);}catch(e){i=!0,o=e}finally{try{!r&&a.return&&a.return()}finally{if(i)throw o}}return n}(e,t);throw new TypeError("Invalid attempt to destructure non-iterable instance")},t=function(e){{if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}}(n("./input")),a=n("./filter");var v=e.jQuery,p=e.strftime;function y(e,t){for(var n=e.toString();n.length {\n this._eventRelay.trigger(\"change\", e, this);\n });\n this._varOnChangeSub = sub;\n }\n }\n\n /**\n * Combine the given `extraInfo` (if any) with the handle's default\n * `_extraInfo` (if any).\n * @private\n */\n _mergeExtraInfo(extraInfo) {\n return util.extend({},\n this._extraInfo ? this._extraInfo : null,\n extraInfo ? extraInfo : null);\n }\n\n /**\n * Close the handle. This clears this handle's contribution to the filter set,\n * and unsubscribes all event listeners.\n */\n close() {\n this._emitter.removeAllListeners();\n this.clear();\n this.setGroup(null);\n }\n\n /**\n * Clear this handle's contribution to the filter set.\n *\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any options that were\n * passed into the `FilterHandle` constructor).\n * \n * @fires FilterHandle#change\n */\n clear(extraInfo) {\n if (!this._filterSet)\n return;\n this._filterSet.clear(this._id);\n this._onChange(extraInfo);\n }\n\n /**\n * Set this handle's contribution to the filter set. This array should consist\n * of the keys of the rows that _should_ be displayed; any keys that are not\n * present in the array will be considered _filtered out_. Note that multiple\n * `FilterHandle` instances in the group may each contribute an array of keys,\n * and only those keys that appear in _all_ of the arrays make it through the\n * filter.\n *\n * @param {string[]} keys - Empty array, or array of keys. To clear the\n * filter, don't pass an empty array; instead, use the\n * {@link FilterHandle#clear} method.\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any options that were\n * passed into the `FilterHandle` constructor).\n * \n * @fires FilterHandle#change\n */\n set(keys, extraInfo) {\n if (!this._filterSet)\n return;\n this._filterSet.update(this._id, keys);\n this._onChange(extraInfo);\n }\n\n /**\n * @return {string[]|null} - Either: 1) an array of keys that made it through\n * all of the `FilterHandle` instances, or, 2) `null`, which means no filter\n * is being applied (all data should be displayed).\n */\n get filteredKeys() {\n return this._filterSet ? this._filterSet.value : null;\n }\n\n /**\n * Subscribe to events on this `FilterHandle`.\n *\n * @param {string} eventType - Indicates the type of events to listen to.\n * Currently, only `\"change\"` is supported.\n * @param {FilterHandle~listener} listener - The callback function that\n * will be invoked when the event occurs.\n * @return {string} - A token to pass to {@link FilterHandle#off} to cancel\n * this subscription.\n */\n on(eventType, listener) {\n return this._emitter.on(eventType, listener);\n }\n\n /**\n * Cancel event subscriptions created by {@link FilterHandle#on}.\n *\n * @param {string} eventType - The type of event to unsubscribe.\n * @param {string|FilterHandle~listener} listener - Either the callback\n * function previously passed into {@link FilterHandle#on}, or the\n * string that was returned from {@link FilterHandle#on}.\n */\n off(eventType, listener) {\n return this._emitter.off(eventType, listener);\n }\n\n _onChange(extraInfo) {\n if (!this._filterSet)\n return;\n this._filterVar.set(this._filterSet.value, this._mergeExtraInfo(extraInfo));\n }\n\n /**\n * @callback FilterHandle~listener\n * @param {Object} event - An object containing details of the event. For\n * `\"change\"` events, this includes the properties `value` (the new\n * value of the filter set, or `null` if no filter set is active),\n * `oldValue` (the previous value of the filter set), and `sender` (the\n * `FilterHandle` instance that made the change).\n */\n\n}\n\n/**\n * @event FilterHandle#change\n * @type {object}\n * @property {object} value - The new value of the filter set, or `null`\n * if no filter set is active.\n * @property {object} oldValue - The previous value of the filter set.\n * @property {FilterHandle} sender - The `FilterHandle` instance that\n * changed the value.\n */\n","import { diffSortedLists } from \"./util\";\n\nfunction naturalComparator(a, b) {\n if (a === b) {\n return 0;\n } else if (a < b) {\n return -1;\n } else if (a > b) {\n return 1;\n }\n}\n\n/**\n * @private\n */\nexport default class FilterSet {\n constructor() {\n this.reset();\n }\n\n reset() {\n // Key: handle ID, Value: array of selected keys, or null\n this._handles = {};\n // Key: key string, Value: count of handles that include it\n this._keys = {};\n this._value = null;\n this._activeHandles = 0;\n }\n\n get value() {\n return this._value;\n }\n\n update(handleId, keys) {\n if (keys !== null) {\n keys = keys.slice(0); // clone before sorting\n keys.sort(naturalComparator);\n }\n\n let {added, removed} = diffSortedLists(this._handles[handleId], keys);\n this._handles[handleId] = keys;\n\n for (let i = 0; i < added.length; i++) {\n this._keys[added[i]] = (this._keys[added[i]] || 0) + 1;\n }\n for (let i = 0; i < removed.length; i++) {\n this._keys[removed[i]]--;\n }\n\n this._updateValue(keys);\n }\n\n /**\n * @param {string[]} keys Sorted array of strings that indicate\n * a superset of possible keys.\n * @private\n */\n _updateValue(keys = this._allKeys) {\n let handleCount = Object.keys(this._handles).length;\n if (handleCount === 0) {\n this._value = null;\n } else {\n this._value = [];\n for (let i = 0; i < keys.length; i++) {\n let count = this._keys[keys[i]];\n if (count === handleCount) {\n this._value.push(keys[i]);\n }\n }\n }\n }\n\n clear(handleId) {\n if (typeof(this._handles[handleId]) === \"undefined\") {\n return;\n }\n\n let keys = this._handles[handleId];\n if (!keys) {\n keys = [];\n }\n\n for (let i = 0; i < keys.length; i++) {\n this._keys[keys[i]]--;\n }\n delete this._handles[handleId];\n\n this._updateValue();\n }\n\n get _allKeys() {\n let allKeys = Object.keys(this._keys);\n allKeys.sort(naturalComparator);\n return allKeys;\n }\n}\n","import Var from \"./var\";\n\n// Use a global so that multiple copies of crosstalk.js can be loaded and still\n// have groups behave as singletons across all copies.\nglobal.__crosstalk_groups = global.__crosstalk_groups || {};\nlet groups = global.__crosstalk_groups;\n\nexport default function group(groupName) {\n if (groupName && typeof(groupName) === \"string\") {\n if (!groups.hasOwnProperty(groupName)) {\n groups[groupName] = new Group(groupName);\n }\n return groups[groupName];\n } else if (typeof(groupName) === \"object\" && groupName._vars && groupName.var) {\n // Appears to already be a group object\n return groupName;\n } else if (Array.isArray(groupName) &&\n groupName.length == 1 &&\n typeof(groupName[0]) === \"string\") {\n return group(groupName[0]);\n } else {\n throw new Error(\"Invalid groupName argument\");\n }\n}\n\nclass Group {\n constructor(name) {\n this.name = name;\n this._vars = {};\n }\n\n var(name) {\n if (!name || typeof(name) !== \"string\") {\n throw new Error(\"Invalid var name\");\n }\n\n if (!this._vars.hasOwnProperty(name))\n this._vars[name] = new Var(this, name);\n return this._vars[name];\n }\n\n has(name) {\n if (!name || typeof(name) !== \"string\") {\n throw new Error(\"Invalid var name\");\n }\n\n return this._vars.hasOwnProperty(name);\n }\n}\n","import group from \"./group\";\nimport { SelectionHandle } from \"./selection\";\nimport { FilterHandle } from \"./filter\";\nimport { bind } from \"./input\";\nimport \"./input_selectize\";\nimport \"./input_checkboxgroup\";\nimport \"./input_slider\";\n\nconst defaultGroup = group(\"default\");\n\nfunction var_(name) {\n return defaultGroup.var(name);\n}\n\nfunction has(name) {\n return defaultGroup.has(name);\n}\n\nif (global.Shiny) {\n global.Shiny.addCustomMessageHandler(\"update-client-value\", function(message) {\n if (typeof(message.group) === \"string\") {\n group(message.group).var(message.name).set(message.value);\n } else {\n var_(message.name).set(message.value);\n }\n });\n}\n\nconst crosstalk = {\n group: group,\n var: var_,\n has: has,\n SelectionHandle: SelectionHandle,\n FilterHandle: FilterHandle,\n bind: bind\n};\n\n/**\n * @namespace crosstalk\n */\nexport default crosstalk;\nglobal.crosstalk = crosstalk;\n","let $ = global.jQuery;\n\nlet bindings = {};\n\nexport function register(reg) {\n bindings[reg.className] = reg;\n if (global.document && global.document.readyState !== \"complete\") {\n $(() => {\n bind();\n });\n } else if (global.document) {\n setTimeout(bind, 100);\n }\n}\n\nexport function bind() {\n Object.keys(bindings).forEach(function(className) {\n let binding = bindings[className];\n $(\".\" + binding.className).not(\".crosstalk-input-bound\").each(function(i, el) {\n bindInstance(binding, el);\n });\n });\n}\n\n// Escape jQuery identifier\nfunction $escape(val) {\n return val.replace(/([!\"#$%&'()*+,./:;<=>?@[\\\\\\]^`{|}~])/g, \"\\\\$1\");\n}\n\nfunction bindEl(el) {\n let $el = $(el);\n Object.keys(bindings).forEach(function(className) {\n if ($el.hasClass(className) && !$el.hasClass(\"crosstalk-input-bound\")) {\n let binding = bindings[className];\n bindInstance(binding, el);\n }\n });\n}\n\nfunction bindInstance(binding, el) {\n let jsonEl = $(el).find(\"script[type='application/json'][data-for='\" + $escape(el.id) + \"']\");\n let data = JSON.parse(jsonEl[0].innerText);\n\n let instance = binding.factory(el, data);\n $(el).data(\"crosstalk-instance\", instance);\n $(el).addClass(\"crosstalk-input-bound\");\n}\n\nif (global.Shiny) {\n let inputBinding = new global.Shiny.InputBinding();\n let $ = global.jQuery;\n $.extend(inputBinding, {\n find: function(scope) {\n return $(scope).find(\".crosstalk-input\");\n },\n initialize: function(el) {\n if (!$(el).hasClass(\"crosstalk-input-bound\")) {\n bindEl(el);\n }\n },\n getId: function(el) {\n return el.id;\n },\n getValue: function(el) {\n\n },\n setValue: function(el, value) {\n\n },\n receiveMessage: function(el, data) {\n\n },\n subscribe: function(el, callback) {\n $(el).data(\"crosstalk-instance\").resume();\n },\n unsubscribe: function(el) {\n $(el).data(\"crosstalk-instance\").suspend();\n }\n });\n global.Shiny.inputBindings.register(inputBinding, \"crosstalk.inputBinding\");\n}\n","import * as input from \"./input\";\nimport { FilterHandle } from \"./filter\";\n\nlet $ = global.jQuery;\n\ninput.register({\n className: \"crosstalk-input-checkboxgroup\",\n\n factory: function(el, data) {\n /*\n * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n * group: \"ct-groupname\"\n */\n let ctHandle = new FilterHandle(data.group);\n\n let lastKnownKeys;\n let $el = $(el);\n $el.on(\"change\", \"input[type='checkbox']\", function() {\n let checked = $el.find(\"input[type='checkbox']:checked\");\n if (checked.length === 0) {\n lastKnownKeys = null;\n ctHandle.clear();\n } else {\n let keys = {};\n checked.each(function() {\n data.map[this.value].forEach(function(key) {\n keys[key] = true;\n });\n });\n let keyArray = Object.keys(keys);\n keyArray.sort();\n lastKnownKeys = keyArray;\n ctHandle.set(keyArray);\n }\n });\n\n return {\n suspend: function() {\n ctHandle.clear();\n },\n resume: function() {\n if (lastKnownKeys)\n ctHandle.set(lastKnownKeys);\n }\n };\n }\n});\n","import * as input from \"./input\";\nimport * as util from \"./util\";\nimport { FilterHandle } from \"./filter\";\n\nlet $ = global.jQuery;\n\ninput.register({\n className: \"crosstalk-input-select\",\n\n factory: function(el, data) {\n /*\n * items: {value: [...], label: [...]}\n * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n * group: \"ct-groupname\"\n */\n\n let first = [{value: \"\", label: \"(All)\"}];\n let items = util.dataframeToD3(data.items);\n let opts = {\n options: first.concat(items),\n valueField: \"value\",\n labelField: \"label\",\n searchField: \"label\"\n };\n\n let select = $(el).find(\"select\")[0];\n\n let selectize = $(select).selectize(opts)[0].selectize;\n\n let ctHandle = new FilterHandle(data.group);\n\n let lastKnownKeys;\n selectize.on(\"change\", function() {\n if (selectize.items.length === 0) {\n lastKnownKeys = null;\n ctHandle.clear();\n } else {\n let keys = {};\n selectize.items.forEach(function(group) {\n data.map[group].forEach(function(key) {\n keys[key] = true;\n });\n });\n let keyArray = Object.keys(keys);\n keyArray.sort();\n lastKnownKeys = keyArray;\n ctHandle.set(keyArray);\n }\n });\n\n return {\n suspend: function() {\n ctHandle.clear();\n },\n resume: function() {\n if (lastKnownKeys)\n ctHandle.set(lastKnownKeys);\n }\n };\n }\n});\n","import * as input from \"./input\";\nimport { FilterHandle } from \"./filter\";\n\nlet $ = global.jQuery;\nlet strftime = global.strftime;\n\ninput.register({\n className: \"crosstalk-input-slider\",\n\n factory: function(el, data) {\n /*\n * map: {\"groupA\": [\"keyA\", \"keyB\", ...], ...}\n * group: \"ct-groupname\"\n */\n let ctHandle = new FilterHandle(data.group);\n\n let opts = {};\n let $el = $(el).find(\"input\");\n let dataType = $el.data(\"data-type\");\n let timeFormat = $el.data(\"time-format\");\n let round = $el.data(\"round\");\n let timeFormatter;\n\n // Set up formatting functions\n if (dataType === \"date\") {\n timeFormatter = strftime.utc();\n opts.prettify = function(num) {\n return timeFormatter(timeFormat, new Date(num));\n };\n\n } else if (dataType === \"datetime\") {\n let timezone = $el.data(\"timezone\");\n if (timezone)\n timeFormatter = strftime.timezone(timezone);\n else\n timeFormatter = strftime;\n\n opts.prettify = function(num) {\n return timeFormatter(timeFormat, new Date(num));\n };\n } else if (dataType === \"number\") {\n if (typeof round !== \"undefined\")\n opts.prettify = function(num) {\n let factor = Math.pow(10, round);\n return Math.round(num * factor) / factor;\n };\n }\n\n $el.ionRangeSlider(opts);\n\n function getValue() {\n let result = $el.data(\"ionRangeSlider\").result;\n\n // Function for converting numeric value from slider to appropriate type.\n let convert;\n let dataType = $el.data(\"data-type\");\n if (dataType === \"date\") {\n convert = function(val) {\n return formatDateUTC(new Date(+val));\n };\n } else if (dataType === \"datetime\") {\n convert = function(val) {\n // Convert ms to s\n return +val / 1000;\n };\n } else {\n convert = function(val) { return +val; };\n }\n\n if ($el.data(\"ionRangeSlider\").options.type === \"double\") {\n return [convert(result.from), convert(result.to)];\n } else {\n return convert(result.from);\n }\n }\n\n let lastKnownKeys = null;\n\n $el.on(\"change.crosstalkSliderInput\", function(event) {\n if (!$el.data(\"updating\") && !$el.data(\"animating\")) {\n let [from, to] = getValue();\n let keys = [];\n for (let i = 0; i < data.values.length; i++) {\n let val = data.values[i];\n if (val >= from && val <= to) {\n keys.push(data.keys[i]);\n }\n }\n keys.sort();\n ctHandle.set(keys);\n lastKnownKeys = keys;\n }\n });\n\n\n // let $el = $(el);\n // $el.on(\"change\", \"input[type=\"checkbox\"]\", function() {\n // let checked = $el.find(\"input[type=\"checkbox\"]:checked\");\n // if (checked.length === 0) {\n // ctHandle.clear();\n // } else {\n // let keys = {};\n // checked.each(function() {\n // data.map[this.value].forEach(function(key) {\n // keys[key] = true;\n // });\n // });\n // let keyArray = Object.keys(keys);\n // keyArray.sort();\n // ctHandle.set(keyArray);\n // }\n // });\n\n return {\n suspend: function() {\n ctHandle.clear();\n },\n resume: function() {\n if (lastKnownKeys)\n ctHandle.set(lastKnownKeys);\n }\n };\n }\n});\n\n\n// Convert a number to a string with leading zeros\nfunction padZeros(n, digits) {\n let str = n.toString();\n while (str.length < digits)\n str = \"0\" + str;\n return str;\n}\n\n// Given a Date object, return a string in yyyy-mm-dd format, using the\n// UTC date. This may be a day off from the date in the local time zone.\nfunction formatDateUTC(date) {\n if (date instanceof Date) {\n return date.getUTCFullYear() + \"-\" +\n padZeros(date.getUTCMonth()+1, 2) + \"-\" +\n padZeros(date.getUTCDate(), 2);\n\n } else {\n return null;\n }\n}\n","import Events from \"./events\";\nimport grp from \"./group\";\nimport * as util from \"./util\";\n\n/**\n * Use this class to read and write (and listen for changes to) the selection\n * for a Crosstalk group. This is intended to be used for linked brushing.\n *\n * If two (or more) `SelectionHandle` instances in the same webpage share the\n * same group name, they will share the same state. Setting the selection using\n * one `SelectionHandle` instance will result in the `value` property instantly\n * changing across the others, and `\"change\"` event listeners on all instances\n * (including the one that initiated the sending) will fire.\n *\n * @param {string} [group] - The name of the Crosstalk group, or if none,\n * null or undefined (or any other falsy value). This can be changed later\n * via the [SelectionHandle#setGroup](#setGroup) method.\n * @param {Object} [extraInfo] - An object whose properties will be copied to\n * the event object whenever an event is emitted.\n */\nexport class SelectionHandle {\n\n constructor(group = null, extraInfo = null) {\n this._eventRelay = new Events();\n this._emitter = new util.SubscriptionTracker(this._eventRelay);\n\n // Name of the group we're currently tracking, if any. Can change over time.\n this._group = null;\n // The Var we're currently tracking, if any. Can change over time.\n this._var = null;\n // The event handler subscription we currently have on var.on(\"change\").\n this._varOnChangeSub = null;\n\n this._extraInfo = util.extend({ sender: this }, extraInfo);\n\n this.setGroup(group);\n }\n\n /**\n * Changes the Crosstalk group membership of this SelectionHandle. The group\n * being switched away from (if any) will not have its selection value\n * modified as a result of calling `setGroup`, even if this handle was the\n * most recent handle to set the selection of the group.\n *\n * The group being switched to (if any) will also not have its selection value\n * modified as a result of calling `setGroup`. If you want to set the\n * selection value of the new group, call `set` explicitly.\n *\n * @param {string} group - The name of the Crosstalk group, or null (or\n * undefined) to clear the group.\n */\n setGroup(group) {\n // If group is unchanged, do nothing\n if (this._group === group)\n return;\n // Treat null, undefined, and other falsy values the same\n if (!this._group && !group)\n return;\n\n if (this._var) {\n this._var.off(\"change\", this._varOnChangeSub);\n this._var = null;\n this._varOnChangeSub = null;\n }\n\n this._group = group;\n\n if (group) {\n this._var = grp(group).var(\"selection\");\n let sub = this._var.on(\"change\", (e) => {\n this._eventRelay.trigger(\"change\", e, this);\n });\n this._varOnChangeSub = sub;\n }\n }\n\n /**\n * Retrieves the current selection for the group represented by this\n * `SelectionHandle`.\n *\n * - If no selection is active, then this value will be falsy.\n * - If a selection is active, but no data points are selected, then this\n * value will be an empty array.\n * - If a selection is active, and data points are selected, then the keys\n * of the selected data points will be present in the array.\n */\n get value() {\n return this._var ? this._var.get() : null;\n }\n\n /**\n * Combines the given `extraInfo` (if any) with the handle's default\n * `_extraInfo` (if any).\n * @private\n */\n _mergeExtraInfo(extraInfo) {\n // Important incidental effect: shallow clone is returned\n return util.extend({},\n this._extraInfo ? this._extraInfo : null,\n extraInfo ? extraInfo : null);\n }\n\n /**\n * Overwrites the current selection for the group, and raises the `\"change\"`\n * event among all of the group's '`SelectionHandle` instances (including\n * this one).\n *\n * @fires SelectionHandle#change\n * @param {string[]} selectedKeys - Falsy, empty array, or array of keys (see\n * {@link SelectionHandle#value}).\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any options that were\n * passed into the `SelectionHandle` constructor).\n */\n set(selectedKeys, extraInfo) {\n if (this._var)\n this._var.set(selectedKeys, this._mergeExtraInfo(extraInfo));\n }\n\n /**\n * Overwrites the current selection for the group, and raises the `\"change\"`\n * event among all of the group's '`SelectionHandle` instances (including\n * this one).\n *\n * @fires SelectionHandle#change\n * @param {Object} [extraInfo] - Extra properties to be included on the event\n * object that's passed to listeners (in addition to any that were passed\n * into the `SelectionHandle` constructor).\n */\n clear(extraInfo) {\n if (this._var)\n this.set(void 0, this._mergeExtraInfo(extraInfo));\n }\n\n /**\n * Subscribes to events on this `SelectionHandle`.\n *\n * @param {string} eventType - Indicates the type of events to listen to.\n * Currently, only `\"change\"` is supported.\n * @param {SelectionHandle~listener} listener - The callback function that\n * will be invoked when the event occurs.\n * @return {string} - A token to pass to {@link SelectionHandle#off} to cancel\n * this subscription.\n */\n on(eventType, listener) {\n return this._emitter.on(eventType, listener);\n }\n\n /**\n * Cancels event subscriptions created by {@link SelectionHandle#on}.\n *\n * @param {string} eventType - The type of event to unsubscribe.\n * @param {string|SelectionHandle~listener} listener - Either the callback\n * function previously passed into {@link SelectionHandle#on}, or the\n * string that was returned from {@link SelectionHandle#on}.\n */\n off(eventType, listener) {\n return this._emitter.off(eventType, listener);\n }\n\n /**\n * Shuts down the `SelectionHandle` object.\n *\n * Removes all event listeners that were added through this handle.\n */\n close() {\n this._emitter.removeAllListeners();\n this.setGroup(null);\n }\n}\n\n/**\n * @callback SelectionHandle~listener\n * @param {Object} event - An object containing details of the event. For\n * `\"change\"` events, this includes the properties `value` (the new\n * value of the selection, or `undefined` if no selection is active),\n * `oldValue` (the previous value of the selection), and `sender` (the\n * `SelectionHandle` instance that made the change).\n */\n\n/**\n * @event SelectionHandle#change\n * @type {object}\n * @property {object} value - The new value of the selection, or `undefined`\n * if no selection is active.\n * @property {object} oldValue - The previous value of the selection.\n * @property {SelectionHandle} sender - The `SelectionHandle` instance that\n * changed the value.\n */\n","export function extend(target, ...sources) {\n for (let i = 0; i < sources.length; i++) {\n let src = sources[i];\n if (typeof(src) === \"undefined\" || src === null)\n continue;\n\n for (let key in src) {\n if (src.hasOwnProperty(key)) {\n target[key] = src[key];\n }\n }\n }\n return target;\n}\n\nexport function checkSorted(list) {\n for (let i = 1; i < list.length; i++) {\n if (list[i] <= list[i-1]) {\n throw new Error(\"List is not sorted or contains duplicate\");\n }\n }\n}\n\nexport function diffSortedLists(a, b) {\n let i_a = 0;\n let i_b = 0;\n\n if (!a) a = [];\n if (!b) b = [];\n\n let a_only = [];\n let b_only = [];\n\n checkSorted(a);\n checkSorted(b);\n\n while (i_a < a.length && i_b < b.length) {\n if (a[i_a] === b[i_b]) {\n i_a++;\n i_b++;\n } else if (a[i_a] < b[i_b]) {\n a_only.push(a[i_a++]);\n } else {\n b_only.push(b[i_b++]);\n }\n }\n\n if (i_a < a.length)\n a_only = a_only.concat(a.slice(i_a));\n if (i_b < b.length)\n b_only = b_only.concat(b.slice(i_b));\n return {\n removed: a_only,\n added: b_only\n };\n}\n\n// Convert from wide: { colA: [1,2,3], colB: [4,5,6], ... }\n// to long: [ {colA: 1, colB: 4}, {colA: 2, colB: 5}, ... ]\nexport function dataframeToD3(df) {\n let names = [];\n let length;\n for (let name in df) {\n if (df.hasOwnProperty(name))\n names.push(name);\n if (typeof(df[name]) !== \"object\" || typeof(df[name].length) === \"undefined\") {\n throw new Error(\"All fields must be arrays\");\n } else if (typeof(length) !== \"undefined\" && length !== df[name].length) {\n throw new Error(\"All fields must be arrays of the same length\");\n }\n length = df[name].length;\n }\n let results = [];\n let item;\n for (let row = 0; row < length; row++) {\n item = {};\n for (let col = 0; col < names.length; col++) {\n item[names[col]] = df[names[col]][row];\n }\n results.push(item);\n }\n return results;\n}\n\n/**\n * Keeps track of all event listener additions/removals and lets all active\n * listeners be removed with a single operation.\n *\n * @private\n */\nexport class SubscriptionTracker {\n constructor(emitter) {\n this._emitter = emitter;\n this._subs = {};\n }\n\n on(eventType, listener) {\n let sub = this._emitter.on(eventType, listener);\n this._subs[sub] = eventType;\n return sub;\n }\n\n off(eventType, listener) {\n let sub = this._emitter.off(eventType, listener);\n if (sub) {\n delete this._subs[sub];\n }\n return sub;\n }\n\n removeAllListeners() {\n let current_subs = this._subs;\n this._subs = {};\n Object.keys(current_subs).forEach((sub) => {\n this._emitter.off(current_subs[sub], sub);\n });\n }\n}\n","import Events from \"./events\";\n\nexport default class Var {\n constructor(group, name, /*optional*/ value) {\n this._group = group;\n this._name = name;\n this._value = value;\n this._events = new Events();\n }\n\n get() {\n return this._value;\n }\n\n set(value, /*optional*/ event) {\n if (this._value === value) {\n // Do nothing; the value hasn't changed\n return;\n }\n let oldValue = this._value;\n this._value = value;\n // Alert JavaScript listeners that the value has changed\n let evt = {};\n if (event && typeof(event) === \"object\") {\n for (let k in event) {\n if (event.hasOwnProperty(k))\n evt[k] = event[k];\n }\n }\n evt.oldValue = oldValue;\n evt.value = value;\n this._events.trigger(\"change\", evt, this);\n\n // TODO: Make this extensible, to let arbitrary back-ends know that\n // something has changed\n if (global.Shiny && global.Shiny.onInputChange) {\n global.Shiny.onInputChange(\n \".clientValue-\" +\n (this._group.name !== null ? this._group.name + \"-\" : \"\") +\n this._name,\n typeof(value) === \"undefined\" ? null : value\n );\n }\n }\n\n on(eventType, listener) {\n return this._events.on(eventType, listener);\n }\n\n off(eventType, listener) {\n return this._events.off(eventType, listener);\n }\n}\n"]} \ No newline at end of file diff --git a/docs/articles/introduction_files/crosstalk-1.2.0/scss/crosstalk.scss b/docs/articles/introduction_files/crosstalk-1.2.0/scss/crosstalk.scss new file mode 100644 index 0000000..3566561 --- /dev/null +++ b/docs/articles/introduction_files/crosstalk-1.2.0/scss/crosstalk.scss @@ -0,0 +1,75 @@ +/* Adjust margins outwards, so column contents line up with the edges of the + parent of container-fluid. */ +.container-fluid.crosstalk-bscols { + margin-left: -30px; + margin-right: -30px; + white-space: normal; +} + +/* But don't adjust the margins outwards if we're directly under the body, + i.e. we were the top-level of something at the console. */ +body > .container-fluid.crosstalk-bscols { + margin-left: auto; + margin-right: auto; +} + +.crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { + display: inline-block; + padding-right: 12px; + vertical-align: top; +} + +@media only screen and (max-width:480px) { + .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column { + display: block; + padding-right: inherit; + } +} + +/* Relevant BS3 styles to make filter_checkbox() look reasonable without Bootstrap */ +.crosstalk-input { + margin-bottom: 15px; /* a la .form-group */ + .control-label { + margin-bottom: 0; + vertical-align: middle; + } + input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px; + line-height: normal; + } + .checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px; + } + .checkbox > label{ + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + cursor: pointer; + } + .checkbox input[type="checkbox"], + .checkbox-inline input[type="checkbox"] { + position: absolute; + margin-top: 2px; + margin-left: -20px; + } + .checkbox + .checkbox { + margin-top: -5px; + } + .checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + vertical-align: middle; + cursor: pointer; + } + .checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; + } +} diff --git a/docs/articles/introduction_files/figure-html/unnamed-chunk-10-1.png b/docs/articles/introduction_files/figure-html/unnamed-chunk-10-1.png index 9f1eb29..23aca44 100644 Binary files a/docs/articles/introduction_files/figure-html/unnamed-chunk-10-1.png and b/docs/articles/introduction_files/figure-html/unnamed-chunk-10-1.png differ diff --git a/docs/articles/introduction_files/figure-html/unnamed-chunk-13-1.png b/docs/articles/introduction_files/figure-html/unnamed-chunk-13-1.png index 3b4b5f3..467a310 100644 Binary files a/docs/articles/introduction_files/figure-html/unnamed-chunk-13-1.png and b/docs/articles/introduction_files/figure-html/unnamed-chunk-13-1.png differ diff --git a/docs/articles/introduction_files/figure-html/unnamed-chunk-5-1.png b/docs/articles/introduction_files/figure-html/unnamed-chunk-5-1.png index 0b79275..77df83c 100644 Binary files a/docs/articles/introduction_files/figure-html/unnamed-chunk-5-1.png and b/docs/articles/introduction_files/figure-html/unnamed-chunk-5-1.png differ diff --git a/docs/articles/introduction_files/figure-html/unnamed-chunk-8-1.png b/docs/articles/introduction_files/figure-html/unnamed-chunk-8-1.png index a6f45ea..a8eea7f 100644 Binary files a/docs/articles/introduction_files/figure-html/unnamed-chunk-8-1.png and b/docs/articles/introduction_files/figure-html/unnamed-chunk-8-1.png differ diff --git a/docs/articles/introduction_files/htmlwidgets-1.5.4/htmlwidgets.js b/docs/articles/introduction_files/htmlwidgets-1.5.4/htmlwidgets.js new file mode 100644 index 0000000..da8b236 --- /dev/null +++ b/docs/articles/introduction_files/htmlwidgets-1.5.4/htmlwidgets.js @@ -0,0 +1,903 @@ +(function() { + // If window.HTMLWidgets is already defined, then use it; otherwise create a + // new object. This allows preceding code to set options that affect the + // initialization process (though none currently exist). + window.HTMLWidgets = window.HTMLWidgets || {}; + + // See if we're running in a viewer pane. If not, we're in a web browser. + var viewerMode = window.HTMLWidgets.viewerMode = + /\bviewer_pane=1\b/.test(window.location); + + // See if we're running in Shiny mode. If not, it's a static document. + // Note that static widgets can appear in both Shiny and static modes, but + // obviously, Shiny widgets can only appear in Shiny apps/documents. + var shinyMode = window.HTMLWidgets.shinyMode = + typeof(window.Shiny) !== "undefined" && !!window.Shiny.outputBindings; + + // We can't count on jQuery being available, so we implement our own + // version if necessary. + function querySelectorAll(scope, selector) { + if (typeof(jQuery) !== "undefined" && scope instanceof jQuery) { + return scope.find(selector); + } + if (scope.querySelectorAll) { + return scope.querySelectorAll(selector); + } + } + + function asArray(value) { + if (value === null) + return []; + if ($.isArray(value)) + return value; + return [value]; + } + + // Implement jQuery's extend + function extend(target /*, ... */) { + if (arguments.length == 1) { + return target; + } + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + for (var prop in source) { + if (source.hasOwnProperty(prop)) { + target[prop] = source[prop]; + } + } + } + return target; + } + + // IE8 doesn't support Array.forEach. + function forEach(values, callback, thisArg) { + if (values.forEach) { + values.forEach(callback, thisArg); + } else { + for (var i = 0; i < values.length; i++) { + callback.call(thisArg, values[i], i, values); + } + } + } + + // Replaces the specified method with the return value of funcSource. + // + // Note that funcSource should not BE the new method, it should be a function + // that RETURNS the new method. funcSource receives a single argument that is + // the overridden method, it can be called from the new method. The overridden + // method can be called like a regular function, it has the target permanently + // bound to it so "this" will work correctly. + function overrideMethod(target, methodName, funcSource) { + var superFunc = target[methodName] || function() {}; + var superFuncBound = function() { + return superFunc.apply(target, arguments); + }; + target[methodName] = funcSource(superFuncBound); + } + + // Add a method to delegator that, when invoked, calls + // delegatee.methodName. If there is no such method on + // the delegatee, but there was one on delegator before + // delegateMethod was called, then the original version + // is invoked instead. + // For example: + // + // var a = { + // method1: function() { console.log('a1'); } + // method2: function() { console.log('a2'); } + // }; + // var b = { + // method1: function() { console.log('b1'); } + // }; + // delegateMethod(a, b, "method1"); + // delegateMethod(a, b, "method2"); + // a.method1(); + // a.method2(); + // + // The output would be "b1", "a2". + function delegateMethod(delegator, delegatee, methodName) { + var inherited = delegator[methodName]; + delegator[methodName] = function() { + var target = delegatee; + var method = delegatee[methodName]; + + // The method doesn't exist on the delegatee. Instead, + // call the method on the delegator, if it exists. + if (!method) { + target = delegator; + method = inherited; + } + + if (method) { + return method.apply(target, arguments); + } + }; + } + + // Implement a vague facsimilie of jQuery's data method + function elementData(el, name, value) { + if (arguments.length == 2) { + return el["htmlwidget_data_" + name]; + } else if (arguments.length == 3) { + el["htmlwidget_data_" + name] = value; + return el; + } else { + throw new Error("Wrong number of arguments for elementData: " + + arguments.length); + } + } + + // http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex + function escapeRegExp(str) { + return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); + } + + function hasClass(el, className) { + var re = new RegExp("\\b" + escapeRegExp(className) + "\\b"); + return re.test(el.className); + } + + // elements - array (or array-like object) of HTML elements + // className - class name to test for + // include - if true, only return elements with given className; + // if false, only return elements *without* given className + function filterByClass(elements, className, include) { + var results = []; + for (var i = 0; i < elements.length; i++) { + if (hasClass(elements[i], className) == include) + results.push(elements[i]); + } + return results; + } + + function on(obj, eventName, func) { + if (obj.addEventListener) { + obj.addEventListener(eventName, func, false); + } else if (obj.attachEvent) { + obj.attachEvent(eventName, func); + } + } + + function off(obj, eventName, func) { + if (obj.removeEventListener) + obj.removeEventListener(eventName, func, false); + else if (obj.detachEvent) { + obj.detachEvent(eventName, func); + } + } + + // Translate array of values to top/right/bottom/left, as usual with + // the "padding" CSS property + // https://developer.mozilla.org/en-US/docs/Web/CSS/padding + function unpackPadding(value) { + if (typeof(value) === "number") + value = [value]; + if (value.length === 1) { + return {top: value[0], right: value[0], bottom: value[0], left: value[0]}; + } + if (value.length === 2) { + return {top: value[0], right: value[1], bottom: value[0], left: value[1]}; + } + if (value.length === 3) { + return {top: value[0], right: value[1], bottom: value[2], left: value[1]}; + } + if (value.length === 4) { + return {top: value[0], right: value[1], bottom: value[2], left: value[3]}; + } + } + + // Convert an unpacked padding object to a CSS value + function paddingToCss(paddingObj) { + return paddingObj.top + "px " + paddingObj.right + "px " + paddingObj.bottom + "px " + paddingObj.left + "px"; + } + + // Makes a number suitable for CSS + function px(x) { + if (typeof(x) === "number") + return x + "px"; + else + return x; + } + + // Retrieves runtime widget sizing information for an element. + // The return value is either null, or an object with fill, padding, + // defaultWidth, defaultHeight fields. + function sizingPolicy(el) { + var sizingEl = document.querySelector("script[data-for='" + el.id + "'][type='application/htmlwidget-sizing']"); + if (!sizingEl) + return null; + var sp = JSON.parse(sizingEl.textContent || sizingEl.text || "{}"); + if (viewerMode) { + return sp.viewer; + } else { + return sp.browser; + } + } + + // @param tasks Array of strings (or falsy value, in which case no-op). + // Each element must be a valid JavaScript expression that yields a + // function. Or, can be an array of objects with "code" and "data" + // properties; in this case, the "code" property should be a string + // of JS that's an expr that yields a function, and "data" should be + // an object that will be added as an additional argument when that + // function is called. + // @param target The object that will be "this" for each function + // execution. + // @param args Array of arguments to be passed to the functions. (The + // same arguments will be passed to all functions.) + function evalAndRun(tasks, target, args) { + if (tasks) { + forEach(tasks, function(task) { + var theseArgs = args; + if (typeof(task) === "object") { + theseArgs = theseArgs.concat([task.data]); + task = task.code; + } + var taskFunc = tryEval(task); + if (typeof(taskFunc) !== "function") { + throw new Error("Task must be a function! Source:\n" + task); + } + taskFunc.apply(target, theseArgs); + }); + } + } + + // Attempt eval() both with and without enclosing in parentheses. + // Note that enclosing coerces a function declaration into + // an expression that eval() can parse + // (otherwise, a SyntaxError is thrown) + function tryEval(code) { + var result = null; + try { + result = eval("(" + code + ")"); + } catch(error) { + if (!(error instanceof SyntaxError)) { + throw error; + } + try { + result = eval(code); + } catch(e) { + if (e instanceof SyntaxError) { + throw error; + } else { + throw e; + } + } + } + return result; + } + + function initSizing(el) { + var sizing = sizingPolicy(el); + if (!sizing) + return; + + var cel = document.getElementById("htmlwidget_container"); + if (!cel) + return; + + if (typeof(sizing.padding) !== "undefined") { + document.body.style.margin = "0"; + document.body.style.padding = paddingToCss(unpackPadding(sizing.padding)); + } + + if (sizing.fill) { + document.body.style.overflow = "hidden"; + document.body.style.width = "100%"; + document.body.style.height = "100%"; + document.documentElement.style.width = "100%"; + document.documentElement.style.height = "100%"; + if (cel) { + cel.style.position = "absolute"; + var pad = unpackPadding(sizing.padding); + cel.style.top = pad.top + "px"; + cel.style.right = pad.right + "px"; + cel.style.bottom = pad.bottom + "px"; + cel.style.left = pad.left + "px"; + el.style.width = "100%"; + el.style.height = "100%"; + } + + return { + getWidth: function() { return cel.offsetWidth; }, + getHeight: function() { return cel.offsetHeight; } + }; + + } else { + el.style.width = px(sizing.width); + el.style.height = px(sizing.height); + + return { + getWidth: function() { return el.offsetWidth; }, + getHeight: function() { return el.offsetHeight; } + }; + } + } + + // Default implementations for methods + var defaults = { + find: function(scope) { + return querySelectorAll(scope, "." + this.name); + }, + renderError: function(el, err) { + var $el = $(el); + + this.clearError(el); + + // Add all these error classes, as Shiny does + var errClass = "shiny-output-error"; + if (err.type !== null) { + // use the classes of the error condition as CSS class names + errClass = errClass + " " + $.map(asArray(err.type), function(type) { + return errClass + "-" + type; + }).join(" "); + } + errClass = errClass + " htmlwidgets-error"; + + // Is el inline or block? If inline or inline-block, just display:none it + // and add an inline error. + var display = $el.css("display"); + $el.data("restore-display-mode", display); + + if (display === "inline" || display === "inline-block") { + $el.hide(); + if (err.message !== "") { + var errorSpan = $("").addClass(errClass); + errorSpan.text(err.message); + $el.after(errorSpan); + } + } else if (display === "block") { + // If block, add an error just after the el, set visibility:none on the + // el, and position the error to be on top of the el. + // Mark it with a unique ID and CSS class so we can remove it later. + $el.css("visibility", "hidden"); + if (err.message !== "") { + var errorDiv = $("
").addClass(errClass).css("position", "absolute") + .css("top", el.offsetTop) + .css("left", el.offsetLeft) + // setting width can push out the page size, forcing otherwise + // unnecessary scrollbars to appear and making it impossible for + // the element to shrink; so use max-width instead + .css("maxWidth", el.offsetWidth) + .css("height", el.offsetHeight); + errorDiv.text(err.message); + $el.after(errorDiv); + + // Really dumb way to keep the size/position of the error in sync with + // the parent element as the window is resized or whatever. + var intId = setInterval(function() { + if (!errorDiv[0].parentElement) { + clearInterval(intId); + return; + } + errorDiv + .css("top", el.offsetTop) + .css("left", el.offsetLeft) + .css("maxWidth", el.offsetWidth) + .css("height", el.offsetHeight); + }, 500); + } + } + }, + clearError: function(el) { + var $el = $(el); + var display = $el.data("restore-display-mode"); + $el.data("restore-display-mode", null); + + if (display === "inline" || display === "inline-block") { + if (display) + $el.css("display", display); + $(el.nextSibling).filter(".htmlwidgets-error").remove(); + } else if (display === "block"){ + $el.css("visibility", "inherit"); + $(el.nextSibling).filter(".htmlwidgets-error").remove(); + } + }, + sizing: {} + }; + + // Called by widget bindings to register a new type of widget. The definition + // object can contain the following properties: + // - name (required) - A string indicating the binding name, which will be + // used by default as the CSS classname to look for. + // - initialize (optional) - A function(el) that will be called once per + // widget element; if a value is returned, it will be passed as the third + // value to renderValue. + // - renderValue (required) - A function(el, data, initValue) that will be + // called with data. Static contexts will cause this to be called once per + // element; Shiny apps will cause this to be called multiple times per + // element, as the data changes. + window.HTMLWidgets.widget = function(definition) { + if (!definition.name) { + throw new Error("Widget must have a name"); + } + if (!definition.type) { + throw new Error("Widget must have a type"); + } + // Currently we only support output widgets + if (definition.type !== "output") { + throw new Error("Unrecognized widget type '" + definition.type + "'"); + } + // TODO: Verify that .name is a valid CSS classname + + // Support new-style instance-bound definitions. Old-style class-bound + // definitions have one widget "object" per widget per type/class of + // widget; the renderValue and resize methods on such widget objects + // take el and instance arguments, because the widget object can't + // store them. New-style instance-bound definitions have one widget + // object per widget instance; the definition that's passed in doesn't + // provide renderValue or resize methods at all, just the single method + // factory(el, width, height) + // which returns an object that has renderValue(x) and resize(w, h). + // This enables a far more natural programming style for the widget + // author, who can store per-instance state using either OO-style + // instance fields or functional-style closure variables (I guess this + // is in contrast to what can only be called C-style pseudo-OO which is + // what we required before). + if (definition.factory) { + definition = createLegacyDefinitionAdapter(definition); + } + + if (!definition.renderValue) { + throw new Error("Widget must have a renderValue function"); + } + + // For static rendering (non-Shiny), use a simple widget registration + // scheme. We also use this scheme for Shiny apps/documents that also + // contain static widgets. + window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || []; + // Merge defaults into the definition; don't mutate the original definition. + var staticBinding = extend({}, defaults, definition); + overrideMethod(staticBinding, "find", function(superfunc) { + return function(scope) { + var results = superfunc(scope); + // Filter out Shiny outputs, we only want the static kind + return filterByClass(results, "html-widget-output", false); + }; + }); + window.HTMLWidgets.widgets.push(staticBinding); + + if (shinyMode) { + // Shiny is running. Register the definition with an output binding. + // The definition itself will not be the output binding, instead + // we will make an output binding object that delegates to the + // definition. This is because we foolishly used the same method + // name (renderValue) for htmlwidgets definition and Shiny bindings + // but they actually have quite different semantics (the Shiny + // bindings receive data that includes lots of metadata that it + // strips off before calling htmlwidgets renderValue). We can't + // just ignore the difference because in some widgets it's helpful + // to call this.renderValue() from inside of resize(), and if + // we're not delegating, then that call will go to the Shiny + // version instead of the htmlwidgets version. + + // Merge defaults with definition, without mutating either. + var bindingDef = extend({}, defaults, definition); + + // This object will be our actual Shiny binding. + var shinyBinding = new Shiny.OutputBinding(); + + // With a few exceptions, we'll want to simply use the bindingDef's + // version of methods if they are available, otherwise fall back to + // Shiny's defaults. NOTE: If Shiny's output bindings gain additional + // methods in the future, and we want them to be overrideable by + // HTMLWidget binding definitions, then we'll need to add them to this + // list. + delegateMethod(shinyBinding, bindingDef, "getId"); + delegateMethod(shinyBinding, bindingDef, "onValueChange"); + delegateMethod(shinyBinding, bindingDef, "onValueError"); + delegateMethod(shinyBinding, bindingDef, "renderError"); + delegateMethod(shinyBinding, bindingDef, "clearError"); + delegateMethod(shinyBinding, bindingDef, "showProgress"); + + // The find, renderValue, and resize are handled differently, because we + // want to actually decorate the behavior of the bindingDef methods. + + shinyBinding.find = function(scope) { + var results = bindingDef.find(scope); + + // Only return elements that are Shiny outputs, not static ones + var dynamicResults = results.filter(".html-widget-output"); + + // It's possible that whatever caused Shiny to think there might be + // new dynamic outputs, also caused there to be new static outputs. + // Since there might be lots of different htmlwidgets bindings, we + // schedule execution for later--no need to staticRender multiple + // times. + if (results.length !== dynamicResults.length) + scheduleStaticRender(); + + return dynamicResults; + }; + + // Wrap renderValue to handle initialization, which unfortunately isn't + // supported natively by Shiny at the time of this writing. + + shinyBinding.renderValue = function(el, data) { + Shiny.renderDependencies(data.deps); + // Resolve strings marked as javascript literals to objects + if (!(data.evals instanceof Array)) data.evals = [data.evals]; + for (var i = 0; data.evals && i < data.evals.length; i++) { + window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]); + } + if (!bindingDef.renderOnNullValue) { + if (data.x === null) { + el.style.visibility = "hidden"; + return; + } else { + el.style.visibility = "inherit"; + } + } + if (!elementData(el, "initialized")) { + initSizing(el); + + elementData(el, "initialized", true); + if (bindingDef.initialize) { + var result = bindingDef.initialize(el, el.offsetWidth, + el.offsetHeight); + elementData(el, "init_result", result); + } + } + bindingDef.renderValue(el, data.x, elementData(el, "init_result")); + evalAndRun(data.jsHooks.render, elementData(el, "init_result"), [el, data.x]); + }; + + // Only override resize if bindingDef implements it + if (bindingDef.resize) { + shinyBinding.resize = function(el, width, height) { + // Shiny can call resize before initialize/renderValue have been + // called, which doesn't make sense for widgets. + if (elementData(el, "initialized")) { + bindingDef.resize(el, width, height, elementData(el, "init_result")); + } + }; + } + + Shiny.outputBindings.register(shinyBinding, bindingDef.name); + } + }; + + var scheduleStaticRenderTimerId = null; + function scheduleStaticRender() { + if (!scheduleStaticRenderTimerId) { + scheduleStaticRenderTimerId = setTimeout(function() { + scheduleStaticRenderTimerId = null; + window.HTMLWidgets.staticRender(); + }, 1); + } + } + + // Render static widgets after the document finishes loading + // Statically render all elements that are of this widget's class + window.HTMLWidgets.staticRender = function() { + var bindings = window.HTMLWidgets.widgets || []; + forEach(bindings, function(binding) { + var matches = binding.find(document.documentElement); + forEach(matches, function(el) { + var sizeObj = initSizing(el, binding); + + if (hasClass(el, "html-widget-static-bound")) + return; + el.className = el.className + " html-widget-static-bound"; + + var initResult; + if (binding.initialize) { + initResult = binding.initialize(el, + sizeObj ? sizeObj.getWidth() : el.offsetWidth, + sizeObj ? sizeObj.getHeight() : el.offsetHeight + ); + elementData(el, "init_result", initResult); + } + + if (binding.resize) { + var lastSize = { + w: sizeObj ? sizeObj.getWidth() : el.offsetWidth, + h: sizeObj ? sizeObj.getHeight() : el.offsetHeight + }; + var resizeHandler = function(e) { + var size = { + w: sizeObj ? sizeObj.getWidth() : el.offsetWidth, + h: sizeObj ? sizeObj.getHeight() : el.offsetHeight + }; + if (size.w === 0 && size.h === 0) + return; + if (size.w === lastSize.w && size.h === lastSize.h) + return; + lastSize = size; + binding.resize(el, size.w, size.h, initResult); + }; + + on(window, "resize", resizeHandler); + + // This is needed for cases where we're running in a Shiny + // app, but the widget itself is not a Shiny output, but + // rather a simple static widget. One example of this is + // an rmarkdown document that has runtime:shiny and widget + // that isn't in a render function. Shiny only knows to + // call resize handlers for Shiny outputs, not for static + // widgets, so we do it ourselves. + if (window.jQuery) { + window.jQuery(document).on( + "shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets", + resizeHandler + ); + window.jQuery(document).on( + "hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets", + resizeHandler + ); + } + + // This is needed for the specific case of ioslides, which + // flips slides between display:none and display:block. + // Ideally we would not have to have ioslide-specific code + // here, but rather have ioslides raise a generic event, + // but the rmarkdown package just went to CRAN so the + // window to getting that fixed may be long. + if (window.addEventListener) { + // It's OK to limit this to window.addEventListener + // browsers because ioslides itself only supports + // such browsers. + on(document, "slideenter", resizeHandler); + on(document, "slideleave", resizeHandler); + } + } + + var scriptData = document.querySelector("script[data-for='" + el.id + "'][type='application/json']"); + if (scriptData) { + var data = JSON.parse(scriptData.textContent || scriptData.text); + // Resolve strings marked as javascript literals to objects + if (!(data.evals instanceof Array)) data.evals = [data.evals]; + for (var k = 0; data.evals && k < data.evals.length; k++) { + window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]); + } + binding.renderValue(el, data.x, initResult); + evalAndRun(data.jsHooks.render, initResult, [el, data.x]); + } + }); + }); + + invokePostRenderHandlers(); + } + + + function has_jQuery3() { + if (!window.jQuery) { + return false; + } + var $version = window.jQuery.fn.jquery; + var $major_version = parseInt($version.split(".")[0]); + return $major_version >= 3; + } + + /* + / Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's + / on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now + / really means $(setTimeout(fn)). + / https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous + / + / Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny + / one tick later than it did before, which means staticRender() is + / called renderValue() earlier than (advanced) widget authors might be expecting. + / https://github.com/rstudio/shiny/issues/2630 + / + / For a concrete example, leaflet has some methods (e.g., updateBounds) + / which reference Shiny methods registered in initShiny (e.g., setInputValue). + / Since leaflet is privy to this life-cycle, it knows to use setTimeout() to + / delay execution of those methods (until Shiny methods are ready) + / https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268 + / + / Ideally widget authors wouldn't need to use this setTimeout() hack that + / leaflet uses to call Shiny methods on a staticRender(). In the long run, + / the logic initShiny should be broken up so that method registration happens + / right away, but binding happens later. + */ + function maybeStaticRenderLater() { + if (shinyMode && has_jQuery3()) { + window.jQuery(window.HTMLWidgets.staticRender); + } else { + window.HTMLWidgets.staticRender(); + } + } + + if (document.addEventListener) { + document.addEventListener("DOMContentLoaded", function() { + document.removeEventListener("DOMContentLoaded", arguments.callee, false); + maybeStaticRenderLater(); + }, false); + } else if (document.attachEvent) { + document.attachEvent("onreadystatechange", function() { + if (document.readyState === "complete") { + document.detachEvent("onreadystatechange", arguments.callee); + maybeStaticRenderLater(); + } + }); + } + + + window.HTMLWidgets.getAttachmentUrl = function(depname, key) { + // If no key, default to the first item + if (typeof(key) === "undefined") + key = 1; + + var link = document.getElementById(depname + "-" + key + "-attachment"); + if (!link) { + throw new Error("Attachment " + depname + "/" + key + " not found in document"); + } + return link.getAttribute("href"); + }; + + window.HTMLWidgets.dataframeToD3 = function(df) { + var names = []; + var length; + for (var name in df) { + if (df.hasOwnProperty(name)) + names.push(name); + if (typeof(df[name]) !== "object" || typeof(df[name].length) === "undefined") { + throw new Error("All fields must be arrays"); + } else if (typeof(length) !== "undefined" && length !== df[name].length) { + throw new Error("All fields must be arrays of the same length"); + } + length = df[name].length; + } + var results = []; + var item; + for (var row = 0; row < length; row++) { + item = {}; + for (var col = 0; col < names.length; col++) { + item[names[col]] = df[names[col]][row]; + } + results.push(item); + } + return results; + }; + + window.HTMLWidgets.transposeArray2D = function(array) { + if (array.length === 0) return array; + var newArray = array[0].map(function(col, i) { + return array.map(function(row) { + return row[i] + }) + }); + return newArray; + }; + // Split value at splitChar, but allow splitChar to be escaped + // using escapeChar. Any other characters escaped by escapeChar + // will be included as usual (including escapeChar itself). + function splitWithEscape(value, splitChar, escapeChar) { + var results = []; + var escapeMode = false; + var currentResult = ""; + for (var pos = 0; pos < value.length; pos++) { + if (!escapeMode) { + if (value[pos] === splitChar) { + results.push(currentResult); + currentResult = ""; + } else if (value[pos] === escapeChar) { + escapeMode = true; + } else { + currentResult += value[pos]; + } + } else { + currentResult += value[pos]; + escapeMode = false; + } + } + if (currentResult !== "") { + results.push(currentResult); + } + return results; + } + // Function authored by Yihui/JJ Allaire + window.HTMLWidgets.evaluateStringMember = function(o, member) { + var parts = splitWithEscape(member, '.', '\\'); + for (var i = 0, l = parts.length; i < l; i++) { + var part = parts[i]; + // part may be a character or 'numeric' member name + if (o !== null && typeof o === "object" && part in o) { + if (i == (l - 1)) { // if we are at the end of the line then evalulate + if (typeof o[part] === "string") + o[part] = tryEval(o[part]); + } else { // otherwise continue to next embedded object + o = o[part]; + } + } + } + }; + + // Retrieve the HTMLWidget instance (i.e. the return value of an + // HTMLWidget binding's initialize() or factory() function) + // associated with an element, or null if none. + window.HTMLWidgets.getInstance = function(el) { + return elementData(el, "init_result"); + }; + + // Finds the first element in the scope that matches the selector, + // and returns the HTMLWidget instance (i.e. the return value of + // an HTMLWidget binding's initialize() or factory() function) + // associated with that element, if any. If no element matches the + // selector, or the first matching element has no HTMLWidget + // instance associated with it, then null is returned. + // + // The scope argument is optional, and defaults to window.document. + window.HTMLWidgets.find = function(scope, selector) { + if (arguments.length == 1) { + selector = scope; + scope = document; + } + + var el = scope.querySelector(selector); + if (el === null) { + return null; + } else { + return window.HTMLWidgets.getInstance(el); + } + }; + + // Finds all elements in the scope that match the selector, and + // returns the HTMLWidget instances (i.e. the return values of + // an HTMLWidget binding's initialize() or factory() function) + // associated with the elements, in an array. If elements that + // match the selector don't have an associated HTMLWidget + // instance, the returned array will contain nulls. + // + // The scope argument is optional, and defaults to window.document. + window.HTMLWidgets.findAll = function(scope, selector) { + if (arguments.length == 1) { + selector = scope; + scope = document; + } + + var nodes = scope.querySelectorAll(selector); + var results = []; + for (var i = 0; i < nodes.length; i++) { + results.push(window.HTMLWidgets.getInstance(nodes[i])); + } + return results; + }; + + var postRenderHandlers = []; + function invokePostRenderHandlers() { + while (postRenderHandlers.length) { + var handler = postRenderHandlers.shift(); + if (handler) { + handler(); + } + } + } + + // Register the given callback function to be invoked after the + // next time static widgets are rendered. + window.HTMLWidgets.addPostRenderHandler = function(callback) { + postRenderHandlers.push(callback); + }; + + // Takes a new-style instance-bound definition, and returns an + // old-style class-bound definition. This saves us from having + // to rewrite all the logic in this file to accomodate both + // types of definitions. + function createLegacyDefinitionAdapter(defn) { + var result = { + name: defn.name, + type: defn.type, + initialize: function(el, width, height) { + return defn.factory(el, width, height); + }, + renderValue: function(el, x, instance) { + return instance.renderValue(x); + }, + resize: function(el, width, height, instance) { + return instance.resize(width, height); + } + }; + + if (defn.find) + result.find = defn.find; + if (defn.renderError) + result.renderError = defn.renderError; + if (defn.clearError) + result.clearError = defn.clearError; + + return result; + } +})(); + diff --git a/docs/articles/introduction_files/plotly-binding-4.10.0/plotly.js b/docs/articles/introduction_files/plotly-binding-4.10.0/plotly.js new file mode 100644 index 0000000..aaca427 --- /dev/null +++ b/docs/articles/introduction_files/plotly-binding-4.10.0/plotly.js @@ -0,0 +1,939 @@ + +HTMLWidgets.widget({ + name: "plotly", + type: "output", + + initialize: function(el, width, height) { + return {}; + }, + + resize: function(el, width, height, instance) { + if (instance.autosize) { + var width = instance.width || width; + var height = instance.height || height; + Plotly.relayout(el.id, {width: width, height: height}); + } + }, + + renderValue: function(el, x, instance) { + + // Plotly.relayout() mutates the plot input object, so make sure to + // keep a reference to the user-supplied width/height *before* + // we call Plotly.plot(); + var lay = x.layout || {}; + instance.width = lay.width; + instance.height = lay.height; + instance.autosize = lay.autosize || true; + + /* + / 'inform the world' about highlighting options this is so other + / crosstalk libraries have a chance to respond to special settings + / such as persistent selection. + / AFAIK, leaflet is the only library with such intergration + / https://github.com/rstudio/leaflet/pull/346/files#diff-ad0c2d51ce5fdf8c90c7395b102f4265R154 + */ + var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set(x.highlight); + + if (typeof(window) !== "undefined") { + // make sure plots don't get created outside the network (for on-prem) + window.PLOTLYENV = window.PLOTLYENV || {}; + window.PLOTLYENV.BASE_URL = x.base_url; + + // Enable persistent selection when shift key is down + // https://stackoverflow.com/questions/1828613/check-if-a-key-is-down + var persistOnShift = function(e) { + if (!e) window.event; + if (e.shiftKey) { + x.highlight.persistent = true; + x.highlight.persistentShift = true; + } else { + x.highlight.persistent = false; + x.highlight.persistentShift = false; + } + }; + + // Only relevant if we haven't forced persistent mode at command line + if (!x.highlight.persistent) { + window.onmousemove = persistOnShift; + } + } + + var graphDiv = document.getElementById(el.id); + + // TODO: move the control panel injection strategy inside here... + HTMLWidgets.addPostRenderHandler(function() { + + // lower the z-index of the modebar to prevent it from highjacking hover + // (TODO: do this via CSS?) + // https://github.com/ropensci/plotly/issues/956 + // https://www.w3schools.com/jsref/prop_style_zindex.asp + var modebars = document.querySelectorAll(".js-plotly-plot .plotly .modebar"); + for (var i = 0; i < modebars.length; i++) { + modebars[i].style.zIndex = 1; + } + }); + + // inject a "control panel" holding selectize/dynamic color widget(s) + if ((x.selectize || x.highlight.dynamic) && !instance.plotly) { + var flex = document.createElement("div"); + flex.class = "plotly-crosstalk-control-panel"; + flex.style = "display: flex; flex-wrap: wrap"; + + // inject the colourpicker HTML container into the flexbox + if (x.highlight.dynamic) { + var pickerDiv = document.createElement("div"); + + var pickerInput = document.createElement("input"); + pickerInput.id = el.id + "-colourpicker"; + pickerInput.placeholder = "asdasd"; + + var pickerLabel = document.createElement("label"); + pickerLabel.for = pickerInput.id; + pickerLabel.innerHTML = "Brush color  "; + + pickerDiv.appendChild(pickerLabel); + pickerDiv.appendChild(pickerInput); + flex.appendChild(pickerDiv); + } + + // inject selectize HTML containers (one for every crosstalk group) + if (x.selectize) { + var ids = Object.keys(x.selectize); + + for (var i = 0; i < ids.length; i++) { + var container = document.createElement("div"); + container.id = ids[i]; + container.style = "width: 80%; height: 10%"; + container.class = "form-group crosstalk-input-plotly-highlight"; + + var label = document.createElement("label"); + label.for = ids[i]; + label.innerHTML = x.selectize[ids[i]].group; + label.class = "control-label"; + + var selectDiv = document.createElement("div"); + var select = document.createElement("select"); + select.multiple = true; + + selectDiv.appendChild(select); + container.appendChild(label); + container.appendChild(selectDiv); + flex.appendChild(container); + } + } + + // finally, insert the flexbox inside the htmlwidget container, + // but before the plotly graph div + graphDiv.parentElement.insertBefore(flex, graphDiv); + + if (x.highlight.dynamic) { + var picker = $("#" + pickerInput.id); + var colors = x.highlight.color || []; + // TODO: let users specify options? + var opts = { + value: colors[0], + showColour: "both", + palette: "limited", + allowedCols: colors.join(" "), + width: "20%", + height: "10%" + }; + picker.colourpicker({changeDelay: 0}); + picker.colourpicker("settings", opts); + picker.colourpicker("value", opts.value); + // inform crosstalk about a change in the current selection colour + var grps = x.highlight.ctGroups || []; + for (var i = 0; i < grps.length; i++) { + crosstalk.group(grps[i]).var('plotlySelectionColour') + .set(picker.colourpicker('value')); + } + picker.on("change", function() { + for (var i = 0; i < grps.length; i++) { + crosstalk.group(grps[i]).var('plotlySelectionColour') + .set(picker.colourpicker('value')); + } + }); + } + } + + // if no plot exists yet, create one with a particular configuration + if (!instance.plotly) { + + var plot = Plotly.newPlot(graphDiv, x); + instance.plotly = true; + + } else if (x.layout.transition) { + + var plot = Plotly.react(graphDiv, x); + + } else { + + // this is essentially equivalent to Plotly.newPlot(), but avoids creating + // a new webgl context + // https://github.com/plotly/plotly.js/blob/2b24f9def901831e61282076cf3f835598d56f0e/src/plot_api/plot_api.js#L531-L532 + + // TODO: restore crosstalk selections? + Plotly.purge(graphDiv); + // TODO: why is this necessary to get crosstalk working? + graphDiv.data = undefined; + graphDiv.layout = undefined; + var plot = Plotly.newPlot(graphDiv, x); + } + + // Trigger plotly.js calls defined via `plotlyProxy()` + plot.then(function() { + if (HTMLWidgets.shinyMode) { + Shiny.addCustomMessageHandler("plotly-calls", function(msg) { + var gd = document.getElementById(msg.id); + if (!gd) { + throw new Error("Couldn't find plotly graph with id: " + msg.id); + } + // This isn't an official plotly.js method, but it's the only current way to + // change just the configuration of a plot + // https://community.plot.ly/t/update-config-function/9057 + if (msg.method == "reconfig") { + Plotly.react(gd, gd.data, gd.layout, msg.args); + return; + } + if (!Plotly[msg.method]) { + throw new Error("Unknown method " + msg.method); + } + var args = [gd].concat(msg.args); + Plotly[msg.method].apply(null, args); + }); + } + + // plotly's mapbox API doesn't currently support setting bounding boxes + // https://www.mapbox.com/mapbox-gl-js/example/fitbounds/ + // so we do this manually... + // TODO: make sure this triggers on a redraw and relayout as well as on initial draw + var mapboxIDs = graphDiv._fullLayout._subplots.mapbox || []; + for (var i = 0; i < mapboxIDs.length; i++) { + var id = mapboxIDs[i]; + var mapOpts = x.layout[id] || {}; + var args = mapOpts._fitBounds || {}; + if (!args) { + continue; + } + var mapObj = graphDiv._fullLayout[id]._subplot.map; + mapObj.fitBounds(args.bounds, args.options); + } + + }); + + // Attach attributes (e.g., "key", "z") to plotly event data + function eventDataWithKey(eventData) { + if (eventData === undefined || !eventData.hasOwnProperty("points")) { + return null; + } + return eventData.points.map(function(pt) { + var obj = { + curveNumber: pt.curveNumber, + pointNumber: pt.pointNumber, + x: pt.x, + y: pt.y + }; + + // If 'z' is reported with the event data, then use it! + if (pt.hasOwnProperty("z")) { + obj.z = pt.z; + } + + if (pt.hasOwnProperty("customdata")) { + obj.customdata = pt.customdata; + } + + /* + TL;DR: (I think) we have to select the graph div (again) to attach keys... + + Why? Remember that crosstalk will dynamically add/delete traces + (see traceManager.prototype.updateSelection() below) + For this reason, we can't simply grab keys from x.data (like we did previously) + Moreover, we can't use _fullData, since that doesn't include + unofficial attributes. It's true that click/hover events fire with + pt.data, but drag events don't... + */ + var gd = document.getElementById(el.id); + var trace = gd.data[pt.curveNumber]; + + if (!trace._isSimpleKey) { + var attrsToAttach = ["key"]; + } else { + // simple keys fire the whole key + obj.key = trace.key; + var attrsToAttach = []; + } + + for (var i = 0; i < attrsToAttach.length; i++) { + var attr = trace[attrsToAttach[i]]; + if (Array.isArray(attr)) { + if (typeof pt.pointNumber === "number") { + obj[attrsToAttach[i]] = attr[pt.pointNumber]; + } else if (Array.isArray(pt.pointNumber)) { + obj[attrsToAttach[i]] = attr[pt.pointNumber[0]][pt.pointNumber[1]]; + } else if (Array.isArray(pt.pointNumbers)) { + obj[attrsToAttach[i]] = pt.pointNumbers.map(function(idx) { return attr[idx]; }); + } + } + } + return obj; + }); + } + + + var legendEventData = function(d) { + // if legendgroup is not relevant just return the trace + var trace = d.data[d.curveNumber]; + if (!trace.legendgroup) return trace; + + // if legendgroup was specified, return all traces that match the group + var legendgrps = d.data.map(function(trace){ return trace.legendgroup; }); + var traces = []; + for (i = 0; i < legendgrps.length; i++) { + if (legendgrps[i] == trace.legendgroup) { + traces.push(d.data[i]); + } + } + + return traces; + }; + + + // send user input event data to shiny + if (HTMLWidgets.shinyMode && Shiny.setInputValue) { + + // Some events clear other input values + // TODO: always register these? + var eventClearMap = { + plotly_deselect: ["plotly_selected", "plotly_selecting", "plotly_brushed", "plotly_brushing", "plotly_click"], + plotly_unhover: ["plotly_hover"], + plotly_doubleclick: ["plotly_click"] + }; + + Object.keys(eventClearMap).map(function(evt) { + graphDiv.on(evt, function() { + var inputsToClear = eventClearMap[evt]; + inputsToClear.map(function(input) { + Shiny.setInputValue(input + "-" + x.source, null, {priority: "event"}); + }); + }); + }); + + var eventDataFunctionMap = { + plotly_click: eventDataWithKey, + plotly_sunburstclick: eventDataWithKey, + plotly_hover: eventDataWithKey, + plotly_unhover: eventDataWithKey, + // If 'plotly_selected' has already been fired, and you click + // on the plot afterwards, this event fires `undefined`?!? + // That might be considered a plotly.js bug, but it doesn't make + // sense for this input change to occur if `d` is falsy because, + // even in the empty selection case, `d` is truthy (an object), + // and the 'plotly_deselect' event will reset this input + plotly_selected: function(d) { if (d) { return eventDataWithKey(d); } }, + plotly_selecting: function(d) { if (d) { return eventDataWithKey(d); } }, + plotly_brushed: function(d) { + if (d) { return d.range ? d.range : d.lassoPoints; } + }, + plotly_brushing: function(d) { + if (d) { return d.range ? d.range : d.lassoPoints; } + }, + plotly_legendclick: legendEventData, + plotly_legenddoubleclick: legendEventData, + plotly_clickannotation: function(d) { return d.fullAnnotation } + }; + + var registerShinyValue = function(event) { + var eventDataPreProcessor = eventDataFunctionMap[event] || function(d) { return d ? d : el.id }; + // some events are unique to the R package + var plotlyJSevent = (event == "plotly_brushed") ? "plotly_selected" : (event == "plotly_brushing") ? "plotly_selecting" : event; + // register the event + graphDiv.on(plotlyJSevent, function(d) { + Shiny.setInputValue( + event + "-" + x.source, + JSON.stringify(eventDataPreProcessor(d)), + {priority: "event"} + ); + }); + } + + var shinyEvents = x.shinyEvents || []; + shinyEvents.map(registerShinyValue); + } + + // Given an array of {curveNumber: x, pointNumber: y} objects, + // return a hash of { + // set1: {value: [key1, key2, ...], _isSimpleKey: false}, + // set2: {value: [key3, key4, ...], _isSimpleKey: false} + // } + function pointsToKeys(points) { + var keysBySet = {}; + for (var i = 0; i < points.length; i++) { + + var trace = graphDiv.data[points[i].curveNumber]; + if (!trace.key || !trace.set) { + continue; + } + + // set defaults for this keySet + // note that we don't track the nested property (yet) since we always + // emit the union -- http://cpsievert.github.io/talks/20161212b/#21 + keysBySet[trace.set] = keysBySet[trace.set] || { + value: [], + _isSimpleKey: trace._isSimpleKey + }; + + // Use pointNumber by default, but aggregated traces should emit pointNumbers + var ptNum = points[i].pointNumber; + var hasPtNum = typeof ptNum === "number"; + var ptNum = hasPtNum ? ptNum : points[i].pointNumbers; + + // selecting a point of a "simple" trace means: select the + // entire key attached to this trace, which is useful for, + // say clicking on a fitted line to select corresponding observations + var key = trace._isSimpleKey ? trace.key : Array.isArray(ptNum) ? ptNum.map(function(idx) { return trace.key[idx]; }) : trace.key[ptNum]; + // http://stackoverflow.com/questions/10865025/merge-flatten-an-array-of-arrays-in-javascript + var keyFlat = trace._isNestedKey ? [].concat.apply([], key) : key; + + // TODO: better to only add new values? + keysBySet[trace.set].value = keysBySet[trace.set].value.concat(keyFlat); + } + + return keysBySet; + } + + + x.highlight.color = x.highlight.color || []; + // make sure highlight color is an array + if (!Array.isArray(x.highlight.color)) { + x.highlight.color = [x.highlight.color]; + } + + var traceManager = new TraceManager(graphDiv, x.highlight); + + // Gather all *unique* sets. + var allSets = []; + for (var curveIdx = 0; curveIdx < x.data.length; curveIdx++) { + var newSet = x.data[curveIdx].set; + if (newSet) { + if (allSets.indexOf(newSet) === -1) { + allSets.push(newSet); + } + } + } + + // register event listeners for all sets + for (var i = 0; i < allSets.length; i++) { + + var set = allSets[i]; + var selection = new crosstalk.SelectionHandle(set); + var filter = new crosstalk.FilterHandle(set); + + var filterChange = function(e) { + removeBrush(el); + traceManager.updateFilter(set, e.value); + }; + filter.on("change", filterChange); + + + var selectionChange = function(e) { + + // Workaround for 'plotly_selected' now firing previously selected + // points (in addition to new ones) when holding shift key. In our case, + // we just want the new keys + if (x.highlight.on === "plotly_selected" && x.highlight.persistentShift) { + // https://stackoverflow.com/questions/1187518/how-to-get-the-difference-between-two-arrays-in-javascript + Array.prototype.diff = function(a) { + return this.filter(function(i) {return a.indexOf(i) < 0;}); + }; + e.value = e.value.diff(e.oldValue); + } + + // array of "event objects" tracking the selection history + // this is used to avoid adding redundant selections + var selectionHistory = crosstalk.var("plotlySelectionHistory").get() || []; + + // Construct an event object "defining" the current event. + var event = { + receiverID: traceManager.gd.id, + plotlySelectionColour: crosstalk.group(set).var("plotlySelectionColour").get() + }; + event[set] = e.value; + // TODO: is there a smarter way to check object equality? + if (selectionHistory.length > 0) { + var ev = JSON.stringify(event); + for (var i = 0; i < selectionHistory.length; i++) { + var sel = JSON.stringify(selectionHistory[i]); + if (sel == ev) { + return; + } + } + } + + // accumulate history for persistent selection + if (!x.highlight.persistent) { + selectionHistory = [event]; + } else { + selectionHistory.push(event); + } + crosstalk.var("plotlySelectionHistory").set(selectionHistory); + + // do the actual updating of traces, frames, and the selectize widget + traceManager.updateSelection(set, e.value); + // https://github.com/selectize/selectize.js/blob/master/docs/api.md#methods_items + if (x.selectize) { + if (!x.highlight.persistent || e.value === null) { + selectize.clear(true); + } + selectize.addItems(e.value, true); + selectize.close(); + } + } + selection.on("change", selectionChange); + + // Set a crosstalk variable selection value, triggering an update + var turnOn = function(e) { + if (e) { + var selectedKeys = pointsToKeys(e.points); + // Keys are group names, values are array of selected keys from group. + for (var set in selectedKeys) { + if (selectedKeys.hasOwnProperty(set)) { + selection.set(selectedKeys[set].value, {sender: el}); + } + } + } + }; + if (x.highlight.debounce > 0) { + turnOn = debounce(turnOn, x.highlight.debounce); + } + graphDiv.on(x.highlight.on, turnOn); + + graphDiv.on(x.highlight.off, function turnOff(e) { + // remove any visual clues + removeBrush(el); + // remove any selection history + crosstalk.var("plotlySelectionHistory").set(null); + // trigger the actual removal of selection traces + selection.set(null, {sender: el}); + }); + + // register a callback for selectize so that there is bi-directional + // communication between the widget and direct manipulation events + if (x.selectize) { + var selectizeID = Object.keys(x.selectize)[i]; + var items = x.selectize[selectizeID].items; + var first = [{value: "", label: "(All)"}]; + var opts = { + options: first.concat(items), + searchField: "label", + valueField: "value", + labelField: "label", + maxItems: 50 + }; + var select = $("#" + selectizeID).find("select")[0]; + var selectize = $(select).selectize(opts)[0].selectize; + // NOTE: this callback is triggered when *directly* altering + // dropdown items + selectize.on("change", function() { + var currentItems = traceManager.groupSelections[set] || []; + if (!x.highlight.persistent) { + removeBrush(el); + for (var i = 0; i < currentItems.length; i++) { + selectize.removeItem(currentItems[i], true); + } + } + var newItems = selectize.items.filter(function(idx) { + return currentItems.indexOf(idx) < 0; + }); + if (newItems.length > 0) { + traceManager.updateSelection(set, newItems); + } else { + // Item has been removed... + // TODO: this logic won't work for dynamically changing palette + traceManager.updateSelection(set, null); + traceManager.updateSelection(set, selectize.items); + } + }); + } + } // end of selectionChange + + } // end of renderValue +}); // end of widget definition + +/** + * @param graphDiv The Plotly graph div + * @param highlight An object with options for updating selection(s) + */ +function TraceManager(graphDiv, highlight) { + // The Plotly graph div + this.gd = graphDiv; + + // Preserve the original data. + // TODO: try using Lib.extendFlat() as done in + // https://github.com/plotly/plotly.js/pull/1136 + this.origData = JSON.parse(JSON.stringify(graphDiv.data)); + + // avoid doing this over and over + this.origOpacity = []; + for (var i = 0; i < this.origData.length; i++) { + this.origOpacity[i] = this.origData[i].opacity === 0 ? 0 : (this.origData[i].opacity || 1); + } + + // key: group name, value: null or array of keys representing the + // most recently received selection for that group. + this.groupSelections = {}; + + // selection parameters (e.g., transient versus persistent selection) + this.highlight = highlight; +} + +TraceManager.prototype.close = function() { + // TODO: Unhook all event handlers +}; + +TraceManager.prototype.updateFilter = function(group, keys) { + + if (typeof(keys) === "undefined" || keys === null) { + + this.gd.data = JSON.parse(JSON.stringify(this.origData)); + + } else { + + var traces = []; + for (var i = 0; i < this.origData.length; i++) { + var trace = this.origData[i]; + if (!trace.key || trace.set !== group) { + continue; + } + var matchFunc = getMatchFunc(trace); + var matches = matchFunc(trace.key, keys); + + if (matches.length > 0) { + if (!trace._isSimpleKey) { + // subsetArrayAttrs doesn't mutate trace (it makes a modified clone) + trace = subsetArrayAttrs(trace, matches); + } + traces.push(trace); + } + } + } + + this.gd.data = traces; + Plotly.redraw(this.gd); + + // NOTE: we purposely do _not_ restore selection(s), since on filter, + // axis likely will update, changing the pixel -> data mapping, leading + // to a likely mismatch in the brush outline and highlighted marks + +}; + +TraceManager.prototype.updateSelection = function(group, keys) { + + if (keys !== null && !Array.isArray(keys)) { + throw new Error("Invalid keys argument; null or array expected"); + } + + // if selection has been cleared, or if this is transient + // selection, delete the "selection traces" + var nNewTraces = this.gd.data.length - this.origData.length; + if (keys === null || !this.highlight.persistent && nNewTraces > 0) { + var tracesToRemove = []; + for (var i = 0; i < this.gd.data.length; i++) { + if (this.gd.data[i]._isCrosstalkTrace) tracesToRemove.push(i); + } + Plotly.deleteTraces(this.gd, tracesToRemove); + this.groupSelections[group] = keys; + } else { + // add to the groupSelection, rather than overwriting it + // TODO: can this be removed? + this.groupSelections[group] = this.groupSelections[group] || []; + for (var i = 0; i < keys.length; i++) { + var k = keys[i]; + if (this.groupSelections[group].indexOf(k) < 0) { + this.groupSelections[group].push(k); + } + } + } + + if (keys === null) { + + Plotly.restyle(this.gd, {"opacity": this.origOpacity}); + + } else if (keys.length >= 1) { + + // placeholder for new "selection traces" + var traces = []; + // this variable is set in R/highlight.R + var selectionColour = crosstalk.group(group).var("plotlySelectionColour").get() || + this.highlight.color[0]; + + for (var i = 0; i < this.origData.length; i++) { + // TODO: try using Lib.extendFlat() as done in + // https://github.com/plotly/plotly.js/pull/1136 + var trace = JSON.parse(JSON.stringify(this.gd.data[i])); + if (!trace.key || trace.set !== group) { + continue; + } + // Get sorted array of matching indices in trace.key + var matchFunc = getMatchFunc(trace); + var matches = matchFunc(trace.key, keys); + + if (matches.length > 0) { + // If this is a "simple" key, that means select the entire trace + if (!trace._isSimpleKey) { + trace = subsetArrayAttrs(trace, matches); + } + // reach into the full trace object so we can properly reflect the + // selection attributes in every view + var d = this.gd._fullData[i]; + + /* + / Recursively inherit selection attributes from various sources, + / in order of preference: + / (1) official plotly.js selected attribute + / (2) highlight(selected = attrs_selected(...)) + */ + // TODO: it would be neat to have a dropdown to dynamically specify these! + $.extend(true, trace, this.highlight.selected); + + // if it is defined, override color with the "dynamic brush color"" + if (d.marker) { + trace.marker = trace.marker || {}; + trace.marker.color = selectionColour || trace.marker.color || d.marker.color; + } + if (d.line) { + trace.line = trace.line || {}; + trace.line.color = selectionColour || trace.line.color || d.line.color; + } + if (d.textfont) { + trace.textfont = trace.textfont || {}; + trace.textfont.color = selectionColour || trace.textfont.color || d.textfont.color; + } + if (d.fillcolor) { + // TODO: should selectionColour inherit alpha from the existing fillcolor? + trace.fillcolor = selectionColour || trace.fillcolor || d.fillcolor; + } + // attach a sensible name/legendgroup + trace.name = trace.name || keys.join("
"); + trace.legendgroup = trace.legendgroup || keys.join("
"); + + // keep track of mapping between this new trace and the trace it targets + // (necessary for updating frames to reflect the selection traces) + trace._originalIndex = i; + trace._newIndex = this.gd._fullData.length + traces.length; + trace._isCrosstalkTrace = true; + traces.push(trace); + } + } + + if (traces.length > 0) { + + Plotly.addTraces(this.gd, traces).then(function(gd) { + // incrementally add selection traces to frames + // (this is heavily inspired by Plotly.Plots.modifyFrames() + // in src/plots/plots.js) + var _hash = gd._transitionData._frameHash; + var _frames = gd._transitionData._frames || []; + + for (var i = 0; i < _frames.length; i++) { + + // add to _frames[i].traces *if* this frame references selected trace(s) + var newIndices = []; + for (var j = 0; j < traces.length; j++) { + var tr = traces[j]; + if (_frames[i].traces.indexOf(tr._originalIndex) > -1) { + newIndices.push(tr._newIndex); + _frames[i].traces.push(tr._newIndex); + } + } + + // nothing to do... + if (newIndices.length === 0) { + continue; + } + + var ctr = 0; + var nFrameTraces = _frames[i].data.length; + + for (var j = 0; j < nFrameTraces; j++) { + var frameTrace = _frames[i].data[j]; + if (!frameTrace.key || frameTrace.set !== group) { + continue; + } + + var matchFunc = getMatchFunc(frameTrace); + var matches = matchFunc(frameTrace.key, keys); + + if (matches.length > 0) { + if (!trace._isSimpleKey) { + frameTrace = subsetArrayAttrs(frameTrace, matches); + } + var d = gd._fullData[newIndices[ctr]]; + if (d.marker) { + frameTrace.marker = d.marker; + } + if (d.line) { + frameTrace.line = d.line; + } + if (d.textfont) { + frameTrace.textfont = d.textfont; + } + ctr = ctr + 1; + _frames[i].data.push(frameTrace); + } + } + + // update gd._transitionData._frameHash + _hash[_frames[i].name] = _frames[i]; + } + + }); + + // dim traces that have a set matching the set of selection sets + var tracesToDim = [], + opacities = [], + sets = Object.keys(this.groupSelections), + n = this.origData.length; + + for (var i = 0; i < n; i++) { + var opacity = this.origOpacity[i] || 1; + // have we already dimmed this trace? Or is this even worth doing? + if (opacity !== this.gd._fullData[i].opacity || this.highlight.opacityDim === 1) { + continue; + } + // is this set an element of the set of selection sets? + var matches = findMatches(sets, [this.gd.data[i].set]); + if (matches.length) { + tracesToDim.push(i); + opacities.push(opacity * this.highlight.opacityDim); + } + } + + if (tracesToDim.length > 0) { + Plotly.restyle(this.gd, {"opacity": opacities}, tracesToDim); + // turn off the selected/unselected API + Plotly.restyle(this.gd, {"selectedpoints": null}); + } + + } + + } +}; + +/* +Note: in all of these match functions, we assume needleSet (i.e. the selected keys) +is a 1D (or flat) array. The real difference is the meaning of haystack. +findMatches() does the usual thing you'd expect for +linked brushing on a scatterplot matrix. findSimpleMatches() returns a match iff +haystack is a subset of the needleSet. findNestedMatches() returns +*/ + +function getMatchFunc(trace) { + return (trace._isNestedKey) ? findNestedMatches : + (trace._isSimpleKey) ? findSimpleMatches : findMatches; +} + +// find matches for "flat" keys +function findMatches(haystack, needleSet) { + var matches = []; + haystack.forEach(function(obj, i) { + if (obj === null || needleSet.indexOf(obj) >= 0) { + matches.push(i); + } + }); + return matches; +} + +// find matches for "simple" keys +function findSimpleMatches(haystack, needleSet) { + var match = haystack.every(function(val) { + return val === null || needleSet.indexOf(val) >= 0; + }); + // yes, this doesn't make much sense other than conforming + // to the output type of the other match functions + return (match) ? [0] : [] +} + +// find matches for a "nested" haystack (2D arrays) +function findNestedMatches(haystack, needleSet) { + var matches = []; + for (var i = 0; i < haystack.length; i++) { + var hay = haystack[i]; + var match = hay.every(function(val) { + return val === null || needleSet.indexOf(val) >= 0; + }); + if (match) { + matches.push(i); + } + } + return matches; +} + +function isPlainObject(obj) { + return ( + Object.prototype.toString.call(obj) === '[object Object]' && + Object.getPrototypeOf(obj) === Object.prototype + ); +} + +function subsetArrayAttrs(obj, indices) { + var newObj = {}; + Object.keys(obj).forEach(function(k) { + var val = obj[k]; + + if (k.charAt(0) === "_") { + newObj[k] = val; + } else if (k === "transforms" && Array.isArray(val)) { + newObj[k] = val.map(function(transform) { + return subsetArrayAttrs(transform, indices); + }); + } else if (k === "colorscale" && Array.isArray(val)) { + newObj[k] = val; + } else if (isPlainObject(val)) { + newObj[k] = subsetArrayAttrs(val, indices); + } else if (Array.isArray(val)) { + newObj[k] = subsetArray(val, indices); + } else { + newObj[k] = val; + } + }); + return newObj; +} + +function subsetArray(arr, indices) { + var result = []; + for (var i = 0; i < indices.length; i++) { + result.push(arr[indices[i]]); + } + return result; +} + +// Convenience function for removing plotly's brush +function removeBrush(el) { + var outlines = el.querySelectorAll(".select-outline"); + for (var i = 0; i < outlines.length; i++) { + outlines[i].remove(); + } +} + + +// https://davidwalsh.name/javascript-debounce-function + +// Returns a function, that, as long as it continues to be invoked, will not +// be triggered. The function will be called after it stops being called for +// N milliseconds. If `immediate` is passed, trigger the function on the +// leading edge, instead of the trailing. +function debounce(func, wait, immediate) { + var timeout; + return function() { + var context = this, args = arguments; + var later = function() { + timeout = null; + if (!immediate) func.apply(context, args); + }; + var callNow = immediate && !timeout; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + if (callNow) func.apply(context, args); + }; +}; diff --git a/docs/articles/introduction_files/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css b/docs/articles/introduction_files/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css new file mode 100644 index 0000000..f35906d --- /dev/null +++ b/docs/articles/introduction_files/plotly-htmlwidgets-css-2.5.1/plotly-htmlwidgets.css @@ -0,0 +1,9 @@ +/* +just here so that plotly works +correctly with ioslides. +see https://github.com/ropensci/plotly/issues/463 +*/ + +slide:not(.current) .plotly.html-widget{ + display: none; +} diff --git a/docs/articles/introduction_files/plotly-main-2.5.1/plotly-latest.min.js b/docs/articles/introduction_files/plotly-main-2.5.1/plotly-latest.min.js new file mode 100644 index 0000000..d6b2f17 --- /dev/null +++ b/docs/articles/introduction_files/plotly-main-2.5.1/plotly-latest.min.js @@ -0,0 +1,62 @@ +/** +* plotly.js v2.5.1 +* Copyright 2012-2021, Plotly, Inc. +* All rights reserved. +* Licensed under the MIT license +*/ +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).Plotly=t()}}((function(){return function t(e,r,n){function i(o,s){if(!r[o]){if(!e[o]){var l="function"==typeof require&&require;if(!s&&l)return l(o,!0);if(a)return a(o,!0);var c=new Error("Cannot find module '"+o+"'");throw c.code="MODULE_NOT_FOUND",c}var u=r[o]={exports:{}};e[o][0].call(u.exports,(function(t){return i(e[o][1][t]||t)}),u,u.exports,t,e,r,n)}return r[o].exports}for(var a="function"==typeof require&&require,o=0;o:not(.watermark)":"opacity:0;-webkit-transition:opacity .3s ease 0s;-moz-transition:opacity .3s ease 0s;-ms-transition:opacity .3s ease 0s;-o-transition:opacity .3s ease 0s;transition:opacity .3s ease 0s;","X:hover .modebar--hover .modebar-group":"opacity:1;","X .modebar-group":"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;","X .modebar-btn":"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;","X .modebar-btn svg":"position:relative;top:2px;","X .modebar.vertical":"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;","X .modebar.vertical svg":"top:-1px;","X .modebar.vertical .modebar-group":"display:block;float:none;padding-left:0px;padding-bottom:8px;","X .modebar.vertical .modebar-group .modebar-btn":"display:block;text-align:center;","X [data-title]:before,X [data-title]:after":"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;","X [data-title]:hover:before,X [data-title]:hover:after":"display:block;opacity:1;","X [data-title]:before":'content:"";position:absolute;background:transparent;border:6px solid transparent;z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;',"X [data-title]:after":"content:attr(data-title);background:#69738a;color:#fff;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;","X .vertical [data-title]:before,X .vertical [data-title]:after":"top:0%;right:200%;","X .vertical [data-title]:before":"border:6px solid transparent;border-left-color:#69738a;margin-top:8px;margin-right:-30px;","X .select-outline":"fill:none;stroke-width:1;shape-rendering:crispEdges;","X .select-outline-1":"stroke:#fff;","X .select-outline-2":"stroke:#000;stroke-dasharray:2px 2px;",Y:'font-family:"Open Sans",verdana,arial,sans-serif;position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;',"Y p":"margin:0;","Y .notifier-note":"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;","Y .notifier-close":"color:#fff;opacity:.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;","Y .notifier-close:hover":"color:#444;text-decoration:none;cursor:pointer;"};for(var a in i){var o=a.replace(/^,/," ,").replace(/X/g,".js-plotly-plot .plotly").replace(/Y/g,".plotly-notifier");n.addStyleRule(o,i[a])}},{"../src/lib":776}],2:[function(t,e,r){"use strict";e.exports=t("../src/transforms/aggregate")},{"../src/transforms/aggregate":1372}],3:[function(t,e,r){"use strict";e.exports=t("../src/traces/bar")},{"../src/traces/bar":922}],4:[function(t,e,r){"use strict";e.exports=t("../src/traces/barpolar")},{"../src/traces/barpolar":935}],5:[function(t,e,r){"use strict";e.exports=t("../src/traces/box")},{"../src/traces/box":945}],6:[function(t,e,r){"use strict";e.exports=t("../src/components/calendars")},{"../src/components/calendars":637}],7:[function(t,e,r){"use strict";e.exports=t("../src/traces/candlestick")},{"../src/traces/candlestick":954}],8:[function(t,e,r){"use strict";e.exports=t("../src/traces/carpet")},{"../src/traces/carpet":973}],9:[function(t,e,r){"use strict";e.exports=t("../src/traces/choropleth")},{"../src/traces/choropleth":987}],10:[function(t,e,r){"use strict";e.exports=t("../src/traces/choroplethmapbox")},{"../src/traces/choroplethmapbox":994}],11:[function(t,e,r){"use strict";e.exports=t("../src/traces/cone")},{"../src/traces/cone":1e3}],12:[function(t,e,r){"use strict";e.exports=t("../src/traces/contour")},{"../src/traces/contour":1015}],13:[function(t,e,r){"use strict";e.exports=t("../src/traces/contourcarpet")},{"../src/traces/contourcarpet":1026}],14:[function(t,e,r){"use strict";e.exports=t("../src/core")},{"../src/core":754}],15:[function(t,e,r){"use strict";e.exports=t("../src/traces/densitymapbox")},{"../src/traces/densitymapbox":1034}],16:[function(t,e,r){"use strict";e.exports=t("../src/transforms/filter")},{"../src/transforms/filter":1373}],17:[function(t,e,r){"use strict";e.exports=t("../src/traces/funnel")},{"../src/traces/funnel":1044}],18:[function(t,e,r){"use strict";e.exports=t("../src/traces/funnelarea")},{"../src/traces/funnelarea":1053}],19:[function(t,e,r){"use strict";e.exports=t("../src/transforms/groupby")},{"../src/transforms/groupby":1374}],20:[function(t,e,r){"use strict";e.exports=t("../src/traces/heatmap")},{"../src/traces/heatmap":1066}],21:[function(t,e,r){"use strict";e.exports=t("../src/traces/heatmapgl")},{"../src/traces/heatmapgl":1076}],22:[function(t,e,r){"use strict";e.exports=t("../src/traces/histogram")},{"../src/traces/histogram":1088}],23:[function(t,e,r){"use strict";e.exports=t("../src/traces/histogram2d")},{"../src/traces/histogram2d":1094}],24:[function(t,e,r){"use strict";e.exports=t("../src/traces/histogram2dcontour")},{"../src/traces/histogram2dcontour":1098}],25:[function(t,e,r){"use strict";e.exports=t("../src/traces/icicle")},{"../src/traces/icicle":1104}],26:[function(t,e,r){"use strict";e.exports=t("../src/traces/image")},{"../src/traces/image":1117}],27:[function(t,e,r){"use strict";var n=t("./core");n.register([t("./bar"),t("./box"),t("./heatmap"),t("./histogram"),t("./histogram2d"),t("./histogram2dcontour"),t("./contour"),t("./scatterternary"),t("./violin"),t("./funnel"),t("./waterfall"),t("./image"),t("./pie"),t("./sunburst"),t("./treemap"),t("./icicle"),t("./funnelarea"),t("./scatter3d"),t("./surface"),t("./isosurface"),t("./volume"),t("./mesh3d"),t("./cone"),t("./streamtube"),t("./scattergeo"),t("./choropleth"),t("./scattergl"),t("./splom"),t("./pointcloud"),t("./heatmapgl"),t("./parcoords"),t("./parcats"),t("./scattermapbox"),t("./choroplethmapbox"),t("./densitymapbox"),t("./sankey"),t("./indicator"),t("./table"),t("./carpet"),t("./scattercarpet"),t("./contourcarpet"),t("./ohlc"),t("./candlestick"),t("./scatterpolar"),t("./scatterpolargl"),t("./barpolar"),t("./aggregate"),t("./filter"),t("./groupby"),t("./sort"),t("./calendars")]),e.exports=n},{"./aggregate":2,"./bar":3,"./barpolar":4,"./box":5,"./calendars":6,"./candlestick":7,"./carpet":8,"./choropleth":9,"./choroplethmapbox":10,"./cone":11,"./contour":12,"./contourcarpet":13,"./core":14,"./densitymapbox":15,"./filter":16,"./funnel":17,"./funnelarea":18,"./groupby":19,"./heatmap":20,"./heatmapgl":21,"./histogram":22,"./histogram2d":23,"./histogram2dcontour":24,"./icicle":25,"./image":26,"./indicator":28,"./isosurface":29,"./mesh3d":30,"./ohlc":31,"./parcats":32,"./parcoords":33,"./pie":34,"./pointcloud":35,"./sankey":36,"./scatter3d":37,"./scattercarpet":38,"./scattergeo":39,"./scattergl":40,"./scattermapbox":41,"./scatterpolar":42,"./scatterpolargl":43,"./scatterternary":44,"./sort":45,"./splom":46,"./streamtube":47,"./sunburst":48,"./surface":49,"./table":50,"./treemap":51,"./violin":52,"./volume":53,"./waterfall":54}],28:[function(t,e,r){"use strict";e.exports=t("../src/traces/indicator")},{"../src/traces/indicator":1125}],29:[function(t,e,r){"use strict";e.exports=t("../src/traces/isosurface")},{"../src/traces/isosurface":1131}],30:[function(t,e,r){"use strict";e.exports=t("../src/traces/mesh3d")},{"../src/traces/mesh3d":1136}],31:[function(t,e,r){"use strict";e.exports=t("../src/traces/ohlc")},{"../src/traces/ohlc":1141}],32:[function(t,e,r){"use strict";e.exports=t("../src/traces/parcats")},{"../src/traces/parcats":1150}],33:[function(t,e,r){"use strict";e.exports=t("../src/traces/parcoords")},{"../src/traces/parcoords":1160}],34:[function(t,e,r){"use strict";e.exports=t("../src/traces/pie")},{"../src/traces/pie":1171}],35:[function(t,e,r){"use strict";e.exports=t("../src/traces/pointcloud")},{"../src/traces/pointcloud":1180}],36:[function(t,e,r){"use strict";e.exports=t("../src/traces/sankey")},{"../src/traces/sankey":1186}],37:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatter3d")},{"../src/traces/scatter3d":1224}],38:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattercarpet")},{"../src/traces/scattercarpet":1231}],39:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattergeo")},{"../src/traces/scattergeo":1239}],40:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattergl")},{"../src/traces/scattergl":1252}],41:[function(t,e,r){"use strict";e.exports=t("../src/traces/scattermapbox")},{"../src/traces/scattermapbox":1262}],42:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatterpolar")},{"../src/traces/scatterpolar":1270}],43:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatterpolargl")},{"../src/traces/scatterpolargl":1277}],44:[function(t,e,r){"use strict";e.exports=t("../src/traces/scatterternary")},{"../src/traces/scatterternary":1285}],45:[function(t,e,r){"use strict";e.exports=t("../src/transforms/sort")},{"../src/transforms/sort":1376}],46:[function(t,e,r){"use strict";e.exports=t("../src/traces/splom")},{"../src/traces/splom":1294}],47:[function(t,e,r){"use strict";e.exports=t("../src/traces/streamtube")},{"../src/traces/streamtube":1302}],48:[function(t,e,r){"use strict";e.exports=t("../src/traces/sunburst")},{"../src/traces/sunburst":1310}],49:[function(t,e,r){"use strict";e.exports=t("../src/traces/surface")},{"../src/traces/surface":1319}],50:[function(t,e,r){"use strict";e.exports=t("../src/traces/table")},{"../src/traces/table":1327}],51:[function(t,e,r){"use strict";e.exports=t("../src/traces/treemap")},{"../src/traces/treemap":1338}],52:[function(t,e,r){"use strict";e.exports=t("../src/traces/violin")},{"../src/traces/violin":1351}],53:[function(t,e,r){"use strict";e.exports=t("../src/traces/volume")},{"../src/traces/volume":1359}],54:[function(t,e,r){"use strict";e.exports=t("../src/traces/waterfall")},{"../src/traces/waterfall":1367}],55:[function(t,e,r){"use strict";e.exports=function(t){var e=(t=t||{}).eye||[0,0,1],r=t.center||[0,0,0],s=t.up||[0,1,0],l=t.distanceLimits||[0,1/0],c=t.mode||"turntable",u=n(),f=i(),h=a();return u.setDistanceLimits(l[0],l[1]),u.lookAt(0,e,r,s),f.setDistanceLimits(l[0],l[1]),f.lookAt(0,e,r,s),h.setDistanceLimits(l[0],l[1]),h.lookAt(0,e,r,s),new o({turntable:u,orbit:f,matrix:h},c)};var n=t("turntable-camera-controller"),i=t("orbit-camera-controller"),a=t("matrix-camera-controller");function o(t,e){this._controllerNames=Object.keys(t),this._controllerList=this._controllerNames.map((function(e){return t[e]})),this._mode=e,this._active=t[e],this._active||(this._mode="turntable",this._active=t.turntable),this.modes=this._controllerNames,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}var s=o.prototype;s.flush=function(t){for(var e=this._controllerList,r=0;r1||i>1)}function M(t,e,r){return t.sort(E),t.forEach((function(n,i){var a,o,s=0;if(q(n,r)&&A(n))n.circularPathData.verticalBuffer=s+n.width/2;else{for(var l=0;lo.source.column)){var c=t[l].circularPathData.verticalBuffer+t[l].width/2+e;s=c>s?c:s}n.circularPathData.verticalBuffer=s+n.width/2}})),t}function S(t,r,i,a){var o=e.min(t.links,(function(t){return t.source.y0}));t.links.forEach((function(t){t.circular&&(t.circularPathData={})})),M(t.links.filter((function(t){return"top"==t.circularLinkType})),r,a),M(t.links.filter((function(t){return"bottom"==t.circularLinkType})),r,a),t.links.forEach((function(e){if(e.circular){if(e.circularPathData.arcRadius=e.width+10,e.circularPathData.leftNodeBuffer=5,e.circularPathData.rightNodeBuffer=5,e.circularPathData.sourceWidth=e.source.x1-e.source.x0,e.circularPathData.sourceX=e.source.x0+e.circularPathData.sourceWidth,e.circularPathData.targetX=e.target.x0,e.circularPathData.sourceY=e.y0,e.circularPathData.targetY=e.y1,q(e,a)&&A(e))e.circularPathData.leftSmallArcRadius=10+e.width/2,e.circularPathData.leftLargeArcRadius=10+e.width/2,e.circularPathData.rightSmallArcRadius=10+e.width/2,e.circularPathData.rightLargeArcRadius=10+e.width/2,"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=e.source.y1+25+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=e.source.y0-25-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius);else{var s=e.source.column,l=e.circularLinkType,c=t.links.filter((function(t){return t.source.column==s&&t.circularLinkType==l}));"bottom"==e.circularLinkType?c.sort(C):c.sort(L);var u=0;c.forEach((function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.leftSmallArcRadius=10+e.width/2+u,e.circularPathData.leftLargeArcRadius=10+e.width/2+n*r+u),u+=t.width})),s=e.target.column,c=t.links.filter((function(t){return t.target.column==s&&t.circularLinkType==l})),"bottom"==e.circularLinkType?c.sort(I):c.sort(P),u=0,c.forEach((function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.rightSmallArcRadius=10+e.width/2+u,e.circularPathData.rightLargeArcRadius=10+e.width/2+n*r+u),u+=t.width})),"bottom"==e.circularLinkType?(e.circularPathData.verticalFullExtent=Math.max(i,e.source.y1,e.target.y1)+25+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=o-25-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius)}e.circularPathData.leftInnerExtent=e.circularPathData.sourceX+e.circularPathData.leftNodeBuffer,e.circularPathData.rightInnerExtent=e.circularPathData.targetX-e.circularPathData.rightNodeBuffer,e.circularPathData.leftFullExtent=e.circularPathData.sourceX+e.circularPathData.leftLargeArcRadius+e.circularPathData.leftNodeBuffer,e.circularPathData.rightFullExtent=e.circularPathData.targetX-e.circularPathData.rightLargeArcRadius-e.circularPathData.rightNodeBuffer}if(e.circular)e.path=function(t){var e="";e="top"==t.circularLinkType?"M"+t.circularPathData.sourceX+" "+t.circularPathData.sourceY+" L"+t.circularPathData.leftInnerExtent+" "+t.circularPathData.sourceY+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftSmallArcRadius+" 0 0 0 "+t.circularPathData.leftFullExtent+" "+(t.circularPathData.sourceY-t.circularPathData.leftSmallArcRadius)+" L"+t.circularPathData.leftFullExtent+" "+t.circularPathData.verticalLeftInnerExtent+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftLargeArcRadius+" 0 0 0 "+t.circularPathData.leftInnerExtent+" "+t.circularPathData.verticalFullExtent+" L"+t.circularPathData.rightInnerExtent+" "+t.circularPathData.verticalFullExtent+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightLargeArcRadius+" 0 0 0 "+t.circularPathData.rightFullExtent+" "+t.circularPathData.verticalRightInnerExtent+" L"+t.circularPathData.rightFullExtent+" "+(t.circularPathData.targetY-t.circularPathData.rightSmallArcRadius)+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightSmallArcRadius+" 0 0 0 "+t.circularPathData.rightInnerExtent+" "+t.circularPathData.targetY+" L"+t.circularPathData.targetX+" "+t.circularPathData.targetY:"M"+t.circularPathData.sourceX+" "+t.circularPathData.sourceY+" L"+t.circularPathData.leftInnerExtent+" "+t.circularPathData.sourceY+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftSmallArcRadius+" 0 0 1 "+t.circularPathData.leftFullExtent+" "+(t.circularPathData.sourceY+t.circularPathData.leftSmallArcRadius)+" L"+t.circularPathData.leftFullExtent+" "+t.circularPathData.verticalLeftInnerExtent+" A"+t.circularPathData.leftLargeArcRadius+" "+t.circularPathData.leftLargeArcRadius+" 0 0 1 "+t.circularPathData.leftInnerExtent+" "+t.circularPathData.verticalFullExtent+" L"+t.circularPathData.rightInnerExtent+" "+t.circularPathData.verticalFullExtent+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightLargeArcRadius+" 0 0 1 "+t.circularPathData.rightFullExtent+" "+t.circularPathData.verticalRightInnerExtent+" L"+t.circularPathData.rightFullExtent+" "+(t.circularPathData.targetY+t.circularPathData.rightSmallArcRadius)+" A"+t.circularPathData.rightLargeArcRadius+" "+t.circularPathData.rightSmallArcRadius+" 0 0 1 "+t.circularPathData.rightInnerExtent+" "+t.circularPathData.targetY+" L"+t.circularPathData.targetX+" "+t.circularPathData.targetY;return e}(e);else{var f=n.linkHorizontal().source((function(t){return[t.source.x0+(t.source.x1-t.source.x0),t.y0]})).target((function(t){return[t.target.x0,t.y1]}));e.path=f(e)}}))}function E(t,e){return O(t)==O(e)?"bottom"==t.circularLinkType?C(t,e):L(t,e):O(e)-O(t)}function L(t,e){return t.y0-e.y0}function C(t,e){return e.y0-t.y0}function P(t,e){return t.y1-e.y1}function I(t,e){return e.y1-t.y1}function O(t){return t.target.column-t.source.column}function z(t){return t.target.x0-t.source.x1}function D(t,e){var r=T(t),n=z(e)/Math.tan(r);return"up"==H(t)?t.y1+n:t.y1-n}function R(t,e){var r=T(t),n=z(e)/Math.tan(r);return"up"==H(t)?t.y1-n:t.y1+n}function F(t,e,r,n){t.links.forEach((function(i){if(!i.circular&&i.target.column-i.source.column>1){var a=i.source.column+1,o=i.target.column-1,s=1,l=o-a+1;for(s=1;a<=o;a++,s++)t.nodes.forEach((function(o){if(o.column==a){var c,u=s/(l+1),f=Math.pow(1-u,3),h=3*u*Math.pow(1-u,2),p=3*Math.pow(u,2)*(1-u),d=Math.pow(u,3),m=f*i.y0+h*i.y0+p*i.y1+d*i.y1,g=m-i.width/2,v=m+i.width/2;g>o.y0&&go.y0&&vo.y1)&&(c=v-o.y0+10,o=N(o,c,e,r),t.nodes.forEach((function(t){b(t,n)!=b(o,n)&&t.column==o.column&&t.y0o.y1&&N(t,c,e,r)})))}}))}}))}function B(t,e){return t.y0>e.y0&&t.y0e.y0&&t.y1e.y1)}function N(t,e,r,n){return t.y0+e>=r&&t.y1+e<=n&&(t.y0=t.y0+e,t.y1=t.y1+e,t.targetLinks.forEach((function(t){t.y1=t.y1+e})),t.sourceLinks.forEach((function(t){t.y0=t.y0+e}))),t}function j(t,e,r,n){t.nodes.forEach((function(i){n&&i.y+(i.y1-i.y0)>e&&(i.y=i.y-(i.y+(i.y1-i.y0)-e));var a=t.links.filter((function(t){return b(t.source,r)==b(i,r)})),o=a.length;o>1&&a.sort((function(t,e){if(!t.circular&&!e.circular){if(t.target.column==e.target.column)return t.y1-e.y1;if(!V(t,e))return t.y1-e.y1;if(t.target.column>e.target.column){var r=R(e,t);return t.y1-r}if(e.target.column>t.target.column)return R(t,e)-e.y1}return t.circular&&!e.circular?"top"==t.circularLinkType?-1:1:e.circular&&!t.circular?"top"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&"top"==t.circularLinkType?t.target.column===e.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:t.circularLinkType===e.circularLinkType&&"bottom"==t.circularLinkType?t.target.column===e.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:"top"==t.circularLinkType?-1:1:void 0}));var s=i.y0;a.forEach((function(t){t.y0=s+t.width/2,s+=t.width})),a.forEach((function(t,e){if("bottom"==t.circularLinkType){for(var r=e+1,n=0;r1&&n.sort((function(t,e){if(!t.circular&&!e.circular){if(t.source.column==e.source.column)return t.y0-e.y0;if(!V(t,e))return t.y0-e.y0;if(e.source.column0?"up":"down"}function q(t,e){return b(t.source,e)==b(t.target,e)}function G(t,r,n){var i=t.nodes,a=t.links,o=!1,s=!1;if(a.forEach((function(t){"top"==t.circularLinkType?o=!0:"bottom"==t.circularLinkType&&(s=!0)})),0==o||0==s){var l=e.min(i,(function(t){return t.y0})),c=(n-r)/(e.max(i,(function(t){return t.y1}))-l);i.forEach((function(t){var e=(t.y1-t.y0)*c;t.y0=(t.y0-l)*c,t.y1=t.y0+e})),a.forEach((function(t){t.y0=(t.y0-l)*c,t.y1=(t.y1-l)*c,t.width=t.width*c}))}}t.sankeyCircular=function(){var t,n,i=0,a=0,b=1,T=1,A=24,M=g,E=o,L=v,C=y,P=32,I=2,O=null;function z(){var t={nodes:L.apply(null,arguments),links:C.apply(null,arguments)};D(t),_(t,M,O),R(t),B(t),w(t,M),N(t,P,M),V(t);for(var e=4,r=0;r0?r+25+10:r,bottom:n=n>0?n+25+10:n,left:a=a>0?a+25+10:a,right:i=i>0?i+25+10:i}}(o),f=function(t,r){var n=e.max(t.nodes,(function(t){return t.column})),o=b-i,s=T-a,l=o/(o+r.right+r.left),c=s/(s+r.top+r.bottom);return i=i*l+r.left,b=0==r.right?b:b*l,a=a*c+r.top,T*=c,t.nodes.forEach((function(t){t.x0=i+t.column*((b-i-A)/n),t.x1=t.x0+A})),c}(o,u);l*=f,o.links.forEach((function(t){t.width=t.value*l})),c.forEach((function(t){var e=t.length;t.forEach((function(t,n){t.depth==c.length-1&&1==e||0==t.depth&&1==e?(t.y0=T/2-t.value*l,t.y1=t.y0+t.value*l):t.partOfCycle?0==k(t,r)?(t.y0=T/2+n,t.y1=t.y0+t.value*l):"top"==t.circularLinkType?(t.y0=a+n,t.y1=t.y0+t.value*l):(t.y0=T-t.value*l-n,t.y1=t.y0+t.value*l):0==u.top||0==u.bottom?(t.y0=(T-a)/e*n,t.y1=t.y0+t.value*l):(t.y0=(T-a)/2-e/2+n,t.y1=t.y0+t.value*l)}))}))}(l),y();for(var u=1,g=s;g>0;--g)v(u*=.99,l),y();function v(t,r){var n=c.length;c.forEach((function(i){var a=i.length,o=i[0].depth;i.forEach((function(i){var s;if(i.sourceLinks.length||i.targetLinks.length)if(i.partOfCycle&&k(i,r)>0);else if(0==o&&1==a)s=i.y1-i.y0,i.y0=T/2-s/2,i.y1=T/2+s/2;else if(o==n-1&&1==a)s=i.y1-i.y0,i.y0=T/2-s/2,i.y1=T/2+s/2;else{var l=e.mean(i.sourceLinks,m),c=e.mean(i.targetLinks,d),u=((l&&c?(l+c)/2:l||c)-p(i))*t;i.y0+=u,i.y1+=u}}))}))}function y(){c.forEach((function(e){var r,n,i,o=a,s=e.length;for(e.sort(f),i=0;i0&&(r.y0+=n,r.y1+=n),o=r.y1+t;if((n=o-t-T)>0)for(o=r.y0-=n,r.y1-=n,i=s-2;i>=0;--i)(n=(r=e[i]).y1+t-o)>0&&(r.y0-=n,r.y1-=n),o=r.y0}))}}function V(t){t.nodes.forEach((function(t){t.sourceLinks.sort(u),t.targetLinks.sort(c)})),t.nodes.forEach((function(t){var e=t.y0,r=e,n=t.y1,i=n;t.sourceLinks.forEach((function(t){t.circular?(t.y0=n-t.width/2,n-=t.width):(t.y0=e+t.width/2,e+=t.width)})),t.targetLinks.forEach((function(t){t.circular?(t.y1=i-t.width/2,i-=t.width):(t.y1=r+t.width/2,r+=t.width)}))}))}return z.nodeId=function(t){return arguments.length?(M="function"==typeof t?t:s(t),z):M},z.nodeAlign=function(t){return arguments.length?(E="function"==typeof t?t:s(t),z):E},z.nodeWidth=function(t){return arguments.length?(A=+t,z):A},z.nodePadding=function(e){return arguments.length?(t=+e,z):t},z.nodes=function(t){return arguments.length?(L="function"==typeof t?t:s(t),z):L},z.links=function(t){return arguments.length?(C="function"==typeof t?t:s(t),z):C},z.size=function(t){return arguments.length?(i=a=0,b=+t[0],T=+t[1],z):[b-i,T-a]},z.extent=function(t){return arguments.length?(i=+t[0][0],b=+t[1][0],a=+t[0][1],T=+t[1][1],z):[[i,a],[b,T]]},z.iterations=function(t){return arguments.length?(P=+t,z):P},z.circularLinkGap=function(t){return arguments.length?(I=+t,z):I},z.nodePaddingRatio=function(t){return arguments.length?(n=+t,z):n},z.sortNodes=function(t){return arguments.length?(O=t,z):O},z.update=function(t){return w(t,M),V(t),t.links.forEach((function(t){t.circular&&(t.circularLinkType=t.y0+t.y1a&&(b=a);var o=e.min(i,(function(t){return(y-n-(t.length-1)*b)/e.sum(t,u)}));i.forEach((function(t){t.forEach((function(t,e){t.y1=(t.y0=e)+t.value*o}))})),t.links.forEach((function(t){t.width=t.value*o}))}(),d();for(var a=1,o=A;o>0;--o)l(a*=.99),d(),s(a),d();function s(t){i.forEach((function(r){r.forEach((function(r){if(r.targetLinks.length){var n=(e.sum(r.targetLinks,h)/e.sum(r.targetLinks,u)-f(r))*t;r.y0+=n,r.y1+=n}}))}))}function l(t){i.slice().reverse().forEach((function(r){r.forEach((function(r){if(r.sourceLinks.length){var n=(e.sum(r.sourceLinks,p)/e.sum(r.sourceLinks,u)-f(r))*t;r.y0+=n,r.y1+=n}}))}))}function d(){i.forEach((function(t){var e,r,i,a=n,o=t.length;for(t.sort(c),i=0;i0&&(e.y0+=r,e.y1+=r),a=e.y1+b;if((r=a-b-y)>0)for(a=e.y0-=r,e.y1-=r,i=o-2;i>=0;--i)(r=(e=t[i]).y1+b-a)>0&&(e.y0-=r,e.y1-=r),a=e.y0}))}}function P(t){t.nodes.forEach((function(t){t.sourceLinks.sort(l),t.targetLinks.sort(s)})),t.nodes.forEach((function(t){var e=t.y0,r=e;t.sourceLinks.forEach((function(t){t.y0=e+t.width/2,e+=t.width})),t.targetLinks.forEach((function(t){t.y1=r+t.width/2,r+=t.width}))}))}return M.update=function(t){return P(t),t},M.nodeId=function(t){return arguments.length?(_="function"==typeof t?t:o(t),M):_},M.nodeAlign=function(t){return arguments.length?(w="function"==typeof t?t:o(t),M):w},M.nodeWidth=function(t){return arguments.length?(x=+t,M):x},M.nodePadding=function(t){return arguments.length?(b=+t,M):b},M.nodes=function(t){return arguments.length?(T="function"==typeof t?t:o(t),M):T},M.links=function(t){return arguments.length?(k="function"==typeof t?t:o(t),M):k},M.size=function(e){return arguments.length?(t=n=0,i=+e[0],y=+e[1],M):[i-t,y-n]},M.extent=function(e){return arguments.length?(t=+e[0][0],i=+e[1][0],n=+e[0][1],y=+e[1][1],M):[[t,n],[i,y]]},M.iterations=function(t){return arguments.length?(A=+t,M):A},M},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,i)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=a,t.sankeyLinkHorizontal=function(){return n.linkHorizontal().source(y).target(x)},Object.defineProperty(t,"__esModule",{value:!0})}))},{"d3-array":155,"d3-collection":156,"d3-shape":167}],58:[function(t,e,r){(function(){var t={version:"3.8.0"},r=[].slice,n=function(t){return r.call(t)},i=self.document;function a(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(i)try{n(i.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),i)try{i.createElement("DIV").style.setProperty("opacity",0,"")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,f=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+"")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+"")},u.setProperty=function(t,e,r){f.call(this,t,e+"",r)}}function h(t,e){return te?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function m(t){return{left:function(e,r,n,i){for(arguments.length<3&&(n=0),arguments.length<4&&(i=e.length);n>>1;t(e[a],r)<0?n=a+1:i=a}return n},right:function(e,r,n,i){for(arguments.length<3&&(n=0),arguments.length<4&&(i=e.length);n>>1;t(e[a],r)>0?i=a:n=a+1}return n}}}t.ascending=h,t.descending=function(t,e){return et?1:e>=t?0:NaN},t.min=function(t,e){var r,n,i=-1,a=t.length;if(1===arguments.length){for(;++i=n){r=n;break}for(;++in&&(r=n)}else{for(;++i=n){r=n;break}for(;++in&&(r=n)}return r},t.max=function(t,e){var r,n,i=-1,a=t.length;if(1===arguments.length){for(;++i=n){r=n;break}for(;++ir&&(r=n)}else{for(;++i=n){r=n;break}for(;++ir&&(r=n)}return r},t.extent=function(t,e){var r,n,i,a=-1,o=t.length;if(1===arguments.length){for(;++a=n){r=i=n;break}for(;++an&&(r=n),i=n){r=i=n;break}for(;++an&&(r=n),i1)return o/(l-1)},t.deviation=function(){var e=t.variance.apply(this,arguments);return e?Math.sqrt(e):e};var g=m(h);function v(t){return t.length}t.bisectLeft=g.left,t.bisect=t.bisectRight=g.right,t.bisector=function(t){return m(1===t.length?function(e,r){return h(t(e),r)}:t)},t.shuffle=function(t,e,r){(a=arguments.length)<3&&(r=t.length,a<2&&(e=0));for(var n,i,a=r-e;a;)i=Math.random()*a--|0,n=t[a+e],t[a+e]=t[i+e],t[i+e]=n;return t},t.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},t.pairs=function(t){for(var e=0,r=t.length-1,n=t[0],i=new Array(r<0?0:r);e=0;)for(e=(n=t[i]).length;--e>=0;)r[--o]=n[e];return r};var y=Math.abs;function x(t){for(var e=1;t*e%1;)e*=10;return e}function b(t,e){for(var r in e)Object.defineProperty(t.prototype,r,{value:e[r],enumerable:!1})}function _(){this._=Object.create(null)}t.range=function(t,e,r){if(arguments.length<3&&(r=1,arguments.length<2&&(e=t,t=0)),(e-t)/r==1/0)throw new Error("infinite range");var n,i=[],a=x(y(r)),o=-1;if(t*=a,e*=a,(r*=a)<0)for(;(n=t+r*++o)>e;)i.push(n/a);else for(;(n=t+r*++o)=i.length)return r?r.call(n,a):e?a.sort(e):a;for(var l,c,u,f,h=-1,p=a.length,d=i[s++],m=new _;++h=i.length)return e;var n=[],o=a[r++];return e.forEach((function(e,i){n.push({key:e,values:t(i,r)})})),o?n.sort((function(t,e){return o(t.key,e.key)})):n}(o(t.map,e,0),0)},n.key=function(t){return i.push(t),n},n.sortKeys=function(t){return a[i.length-1]=t,n},n.sortValues=function(t){return e=t,n},n.rollup=function(t){return r=t,n},n},t.set=function(t){var e=new L;if(t)for(var r=0,n=t.length;r=0&&(n=t.slice(r+1),t=t.slice(0,r)),t)return arguments.length<2?this[t].on(n):this[t].on(n,e);if(2===arguments.length){if(null==e)for(t in this)this.hasOwnProperty(t)&&this[t].on(n,null);return this}},t.event=null,t.requote=function(t){return t.replace(j,"\\$&")};var j=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,U={}.__proto__?function(t,e){t.__proto__=e}:function(t,e){for(var r in e)t[r]=e[r]};function V(t){return U(t,Y),t}var H=function(t,e){return e.querySelector(t)},q=function(t,e){return e.querySelectorAll(t)},G=function(t,e){var r=t.matches||t[I(t,"matchesSelector")];return(G=function(t,e){return r.call(t,e)})(t,e)};"function"==typeof Sizzle&&(H=function(t,e){return Sizzle(t,e)[0]||null},q=Sizzle,G=Sizzle.matchesSelector),t.selection=function(){return t.select(i.documentElement)};var Y=t.selection.prototype=[];function W(t){return"function"==typeof t?t:function(){return H(t,this)}}function X(t){return"function"==typeof t?t:function(){return q(t,this)}}Y.select=function(t){var e,r,n,i,a=[];t=W(t);for(var o=-1,s=this.length;++o=0&&"xmlns"!==(r=t.slice(0,e))&&(t=t.slice(e+1)),J.hasOwnProperty(r)?{space:J[r],local:t}:t}},Y.attr=function(e,r){if(arguments.length<2){if("string"==typeof e){var n=this.node();return(e=t.ns.qualify(e)).local?n.getAttributeNS(e.space,e.local):n.getAttribute(e)}for(r in e)this.each(K(r,e[r]));return this}return this.each(K(e,r))},Y.classed=function(t,e){if(arguments.length<2){if("string"==typeof t){var r=this.node(),n=(t=tt(t)).length,i=-1;if(e=r.classList){for(;++i=0;)(r=n[i])&&(a&&a!==r.nextSibling&&a.parentNode.insertBefore(r,a),a=r);return this},Y.sort=function(t){t=ct.apply(this,arguments);for(var e=-1,r=this.length;++e=e&&(e=i+1);!(o=s[e])&&++e0&&(e=e.slice(0,o));var l=mt.get(e);function c(){var t=this[a];t&&(this.removeEventListener(e,t,t.$),delete this[a])}return l&&(e=l,s=vt),o?r?function(){var t=s(r,n(arguments));c.call(this),this.addEventListener(e,this[a]=t,t.$=i),t._=r}:c:r?z:function(){var r,n=new RegExp("^__on([^.]+)"+t.requote(e)+"$");for(var i in this)if(r=i.match(n)){var a=this[i];this.removeEventListener(r[1],a,a.$),delete this[i]}}}t.selection.enter=ft,t.selection.enter.prototype=ht,ht.append=Y.append,ht.empty=Y.empty,ht.node=Y.node,ht.call=Y.call,ht.size=Y.size,ht.select=function(t){for(var e,r,n,i,a,o=[],s=-1,l=this.length;++s1?Et:t<-1?-Et:Math.asin(t)}function It(t){return((t=Math.exp(t))+1/t)/2}var Ot=Math.SQRT2;t.interpolateZoom=function(t,e){var r,n,i=t[0],a=t[1],o=t[2],s=e[0],l=e[1],c=e[2],u=s-i,f=l-a,h=u*u+f*f;if(h<1e-12)n=Math.log(c/o)/Ot,r=function(t){return[i+t*u,a+t*f,o*Math.exp(Ot*t*n)]};else{var p=Math.sqrt(h),d=(c*c-o*o+4*h)/(2*o*2*p),m=(c*c-o*o-4*h)/(2*c*2*p),g=Math.log(Math.sqrt(d*d+1)-d),v=Math.log(Math.sqrt(m*m+1)-m);n=(v-g)/Ot,r=function(t){var e,r=t*n,s=It(g),l=o/(2*p)*(s*(e=Ot*r+g,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(g));return[i+l*u,a+l*f,o*s/It(Ot*r+g)]}}return r.duration=1e3*n,r},t.behavior.zoom=function(){var e,r,n,a,s,l,c,u,f,h={x:0,y:0,k:1},p=[960,500],d=Rt,m=250,g=0,v="mousedown.zoom",y="mousemove.zoom",x="mouseup.zoom",b="touchstart.zoom",_=N(w,"zoomstart","zoom","zoomend");function w(t){t.on(v,P).on(Dt+".zoom",O).on("dblclick.zoom",z).on(b,I)}function T(t){return[(t[0]-h.x)/h.k,(t[1]-h.y)/h.k]}function k(t){h.k=Math.max(d[0],Math.min(d[1],t))}function A(t,e){e=function(t){return[t[0]*h.k+h.x,t[1]*h.k+h.y]}(e),h.x+=t[0]-e[0],h.y+=t[1]-e[1]}function M(e,n,i,a){e.__chart__={x:h.x,y:h.y,k:h.k},k(Math.pow(2,a)),A(r=n,i),e=t.select(e),m>0&&(e=e.transition().duration(m)),e.call(w.event)}function S(){c&&c.domain(l.range().map((function(t){return(t-h.x)/h.k})).map(l.invert)),f&&f.domain(u.range().map((function(t){return(t-h.y)/h.k})).map(u.invert))}function E(t){g++||t({type:"zoomstart"})}function L(t){S(),t({type:"zoom",scale:h.k,translate:[h.x,h.y]})}function C(t){--g||(t({type:"zoomend"}),r=null)}function P(){var e=this,r=_.of(e,arguments),n=0,i=t.select(o(e)).on(y,l).on(x,c),a=T(t.mouse(e)),s=bt(e);function l(){n=1,A(t.mouse(e),a),L(r)}function c(){i.on(y,null).on(x,null),s(n),C(r)}Di.call(e),E(r)}function I(){var e,r=this,n=_.of(r,arguments),i={},a=0,o=".zoom-"+t.event.changedTouches[0].identifier,l="touchmove"+o,c="touchend"+o,u=[],f=t.select(r),p=bt(r);function d(){var n=t.touches(r);return e=h.k,n.forEach((function(t){t.identifier in i&&(i[t.identifier]=T(t))})),n}function m(){var e=t.event.target;t.select(e).on(l,g).on(c,y),u.push(e);for(var n=t.event.changedTouches,o=0,f=n.length;o1){v=p[0];var x=p[1],b=v[0]-x[0],_=v[1]-x[1];a=b*b+_*_}}function g(){var o,l,c,u,f=t.touches(r);Di.call(r);for(var h=0,p=f.length;h360?t-=360:t<0&&(t+=360),t<60?n+(i-n)*t/60:t<180?i:t<240?n+(i-n)*(240-t)/60:n}(t))}return t=isNaN(t)?0:(t%=360)<0?t+360:t,e=isNaN(e)||e<0?0:e>1?1:e,n=2*(r=r<0?0:r>1?1:r)-(i=r<=.5?r*(1+e):r+e-r*e),new Qt(a(t+120),a(t),a(t-120))}function Ut(e,r,n){return this instanceof Ut?(this.h=+e,this.c=+r,void(this.l=+n)):arguments.length<2?e instanceof Ut?new Ut(e.h,e.c,e.l):Xt(e instanceof qt?e.l:(e=ae((e=t.rgb(e)).r,e.g,e.b)).l,e.a,e.b):new Ut(e,r,n)}Nt.brighter=function(t){return t=Math.pow(.7,arguments.length?t:1),new Bt(this.h,this.s,this.l/t)},Nt.darker=function(t){return t=Math.pow(.7,arguments.length?t:1),new Bt(this.h,this.s,t*this.l)},Nt.rgb=function(){return jt(this.h,this.s,this.l)},t.hcl=Ut;var Vt=Ut.prototype=new Ft;function Ht(t,e,r){return isNaN(t)&&(t=0),isNaN(e)&&(e=0),new qt(r,Math.cos(t*=Lt)*e,Math.sin(t)*e)}function qt(t,e,r){return this instanceof qt?(this.l=+t,this.a=+e,void(this.b=+r)):arguments.length<2?t instanceof qt?new qt(t.l,t.a,t.b):t instanceof Ut?Ht(t.h,t.c,t.l):ae((t=Qt(t)).r,t.g,t.b):new qt(t,e,r)}Vt.brighter=function(t){return new Ut(this.h,this.c,Math.min(100,this.l+Gt*(arguments.length?t:1)))},Vt.darker=function(t){return new Ut(this.h,this.c,Math.max(0,this.l-Gt*(arguments.length?t:1)))},Vt.rgb=function(){return Ht(this.h,this.c,this.l).rgb()},t.lab=qt;var Gt=18,Yt=qt.prototype=new Ft;function Wt(t,e,r){var n=(t+16)/116,i=n+e/500,a=n-r/200;return new Qt(Kt(3.2404542*(i=.95047*Zt(i))-1.5371385*(n=1*Zt(n))-.4985314*(a=1.08883*Zt(a))),Kt(-.969266*i+1.8760108*n+.041556*a),Kt(.0556434*i-.2040259*n+1.0572252*a))}function Xt(t,e,r){return t>0?new Ut(Math.atan2(r,e)*Ct,Math.sqrt(e*e+r*r),t):new Ut(NaN,NaN,t)}function Zt(t){return t>.206893034?t*t*t:(t-4/29)/7.787037}function Jt(t){return t>.008856?Math.pow(t,1/3):7.787037*t+4/29}function Kt(t){return Math.round(255*(t<=.00304?12.92*t:1.055*Math.pow(t,1/2.4)-.055))}function Qt(t,e,r){return this instanceof Qt?(this.r=~~t,this.g=~~e,void(this.b=~~r)):arguments.length<2?t instanceof Qt?new Qt(t.r,t.g,t.b):ne(""+t,Qt,jt):new Qt(t,e,r)}function $t(t){return new Qt(t>>16,t>>8&255,255&t)}function te(t){return $t(t)+""}Yt.brighter=function(t){return new qt(Math.min(100,this.l+Gt*(arguments.length?t:1)),this.a,this.b)},Yt.darker=function(t){return new qt(Math.max(0,this.l-Gt*(arguments.length?t:1)),this.a,this.b)},Yt.rgb=function(){return Wt(this.l,this.a,this.b)},t.rgb=Qt;var ee=Qt.prototype=new Ft;function re(t){return t<16?"0"+Math.max(0,t).toString(16):Math.min(255,t).toString(16)}function ne(t,e,r){var n,i,a,o=0,s=0,l=0;if(n=/([a-z]+)\((.*)\)/.exec(t=t.toLowerCase()))switch(i=n[2].split(","),n[1]){case"hsl":return r(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case"rgb":return e(se(i[0]),se(i[1]),se(i[2]))}return(a=le.get(t))?e(a.r,a.g,a.b):(null==t||"#"!==t.charAt(0)||isNaN(a=parseInt(t.slice(1),16))||(4===t.length?(o=(3840&a)>>4,o|=o>>4,s=240&a,s|=s>>4,l=15&a,l|=l<<4):7===t.length&&(o=(16711680&a)>>16,s=(65280&a)>>8,l=255&a)),e(o,s,l))}function ie(t,e,r){var n,i,a=Math.min(t/=255,e/=255,r/=255),o=Math.max(t,e,r),s=o-a,l=(o+a)/2;return s?(i=l<.5?s/(o+a):s/(2-o-a),n=t==o?(e-r)/s+(e0&&l<1?0:n),new Bt(n,i,l)}function ae(t,e,r){var n=Jt((.4124564*(t=oe(t))+.3575761*(e=oe(e))+.1804375*(r=oe(r)))/.95047),i=Jt((.2126729*t+.7151522*e+.072175*r)/1);return qt(116*i-16,500*(n-i),200*(i-Jt((.0193339*t+.119192*e+.9503041*r)/1.08883)))}function oe(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function se(t){var e=parseFloat(t);return"%"===t.charAt(t.length-1)?Math.round(2.55*e):e}ee.brighter=function(t){t=Math.pow(.7,arguments.length?t:1);var e=this.r,r=this.g,n=this.b,i=30;return e||r||n?(e&&e=200&&e<300||304===e){try{t=i.call(o,c)}catch(t){return void s.error.call(o,t)}s.load.call(o,t)}else s.error.call(o,c)}return self.XDomainRequest&&!("withCredentials"in c)&&/^(http(s)?:)?\/\//.test(e)&&(c=new XDomainRequest),"onload"in c?c.onload=c.onerror=f:c.onreadystatechange=function(){c.readyState>3&&f()},c.onprogress=function(e){var r=t.event;t.event=e;try{s.progress.call(o,c)}finally{t.event=r}},o.header=function(t,e){return t=(t+"").toLowerCase(),arguments.length<2?l[t]:(null==e?delete l[t]:l[t]=e+"",o)},o.mimeType=function(t){return arguments.length?(r=null==t?null:t+"",o):r},o.responseType=function(t){return arguments.length?(u=t,o):u},o.response=function(t){return i=t,o},["get","post"].forEach((function(t){o[t]=function(){return o.send.apply(o,[t].concat(n(arguments)))}})),o.send=function(t,n,i){if(2===arguments.length&&"function"==typeof n&&(i=n,n=null),c.open(t,e,!0),null==r||"accept"in l||(l.accept=r+",*/*"),c.setRequestHeader)for(var a in l)c.setRequestHeader(a,l[a]);return null!=r&&c.overrideMimeType&&c.overrideMimeType(r),null!=u&&(c.responseType=u),null!=i&&o.on("error",i).on("load",(function(t){i(null,t)})),s.beforesend.call(o,c),c.send(null==n?null:n),o},o.abort=function(){return c.abort(),o},t.rebind(o,s,"on"),null==a?o:o.get(function(t){return 1===t.length?function(e,r){t(null==e?r:null)}:t}(a))}le.forEach((function(t,e){le.set(t,$t(e))})),t.functor=ce,t.xhr=ue(C),t.dsv=function(t,e){var r=new RegExp('["'+t+"\n]"),n=t.charCodeAt(0);function i(t,r,n){arguments.length<3&&(n=r,r=null);var i=fe(t,e,null==r?a:o(r),n);return i.row=function(t){return arguments.length?i.response(null==(r=t)?a:o(t)):r},i}function a(t){return i.parse(t.responseText)}function o(t){return function(e){return i.parse(e.responseText,t)}}function s(e){return e.map(l).join(t)}function l(t){return r.test(t)?'"'+t.replace(/\"/g,'""')+'"':t}return i.parse=function(t,e){var r;return i.parseRows(t,(function(t,n){if(r)return r(t,n-1);var i=function(e){for(var r={},n=t.length,i=0;i=l)return o;if(i)return i=!1,a;var e=c;if(34===t.charCodeAt(e)){for(var r=e;r++24?(isFinite(e)&&(clearTimeout(me),me=setTimeout(ye,e)),de=0):(de=1,ge(ye))}function xe(){for(var t=Date.now(),e=he;e;)t>=e.t&&e.c(t-e.t)&&(e.c=null),e=e.n;return t}function be(){for(var t,e=he,r=1/0;e;)e.c?(e.t1&&(e=t[a[o-2]],r=t[a[o-1]],n=t[s],(r[0]-e[0])*(n[1]-e[1])-(r[1]-e[1])*(n[0]-e[0])<=0);)--o;a[o++]=s}return a.slice(0,o)}function ke(t,e){return t[0]-e[0]||t[1]-e[1]}t.timer=function(){ve.apply(this,arguments)},t.timer.flush=function(){xe(),be()},t.round=function(t,e){return e?Math.round(t*(e=Math.pow(10,e)))/e:Math.round(t)},t.geom={},t.geom.hull=function(t){var e=_e,r=we;if(arguments.length)return n(t);function n(t){if(t.length<3)return[];var n,i=ce(e),a=ce(r),o=t.length,s=[],l=[];for(n=0;n=0;--n)p.push(t[s[c[n]][2]]);for(n=+f;nkt)s=s.L;else{if(!((i=a-Ve(s,o))>kt)){n>-kt?(e=s.P,r=s):i>-kt?(e=s,r=s.N):e=r=s;break}if(!s.R){e=s;break}s=s.R}var l=Fe(t);if(Pe.insert(e,l),e||r){if(e===r)return We(e),r=Fe(e.site),Pe.insert(l,r),l.edge=r.edge=Je(e.site,l.site),Ye(e),void Ye(r);if(r){We(e),We(r);var c=e.site,u=c.x,f=c.y,h=t.x-u,p=t.y-f,d=r.site,m=d.x-u,g=d.y-f,v=2*(h*g-p*m),y=h*h+p*p,x=m*m+g*g,b={x:(g*y-p*x)/v+u,y:(h*x-m*y)/v+f};Qe(r.edge,c,d,b),l.edge=Je(c,t,null,b),r.edge=Je(t,d,null,b),Ye(e),Ye(r)}else l.edge=Je(e.site,l.site)}}function Ue(t,e){var r=t.site,n=r.x,i=r.y,a=i-e;if(!a)return n;var o=t.P;if(!o)return-1/0;var s=(r=o.site).x,l=r.y,c=l-e;if(!c)return s;var u=s-n,f=1/a-1/c,h=u/c;return f?(-h+Math.sqrt(h*h-2*f*(u*u/(-2*c)-l+c/2+i-a/2)))/f+n:(n+s)/2}function Ve(t,e){var r=t.N;if(r)return Ue(r,e);var n=t.site;return n.y===e?n.x:1/0}function He(t){this.site=t,this.edges=[]}function qe(t,e){return e.angle-t.angle}function Ge(){er(this),this.x=this.y=this.arc=this.site=this.cy=null}function Ye(t){var e=t.P,r=t.N;if(e&&r){var n=e.site,i=t.site,a=r.site;if(n!==a){var o=i.x,s=i.y,l=n.x-o,c=n.y-s,u=a.x-o,f=2*(l*(g=a.y-s)-c*u);if(!(f>=-1e-12)){var h=l*l+c*c,p=u*u+g*g,d=(g*h-c*p)/f,m=(l*p-u*h)/f,g=m+s,v=De.pop()||new Ge;v.arc=t,v.site=i,v.x=d+o,v.y=g+Math.sqrt(d*d+m*m),v.cy=g,t.circle=v;for(var y=null,x=Oe._;x;)if(v.y=s)return;if(h>d){if(a){if(a.y>=c)return}else a={x:g,y:l};r={x:g,y:c}}else{if(a){if(a.y1)if(h>d){if(a){if(a.y>=c)return}else a={x:(l-i)/n,y:l};r={x:(c-i)/n,y:c}}else{if(a){if(a.y=s)return}else a={x:o,y:n*o+i};r={x:s,y:n*s+i}}else{if(a){if(a.x0)){if(e/=h,h<0){if(e0){if(e>f)return;e>u&&(u=e)}if(e=i-l,h||!(e<0)){if(e/=h,h<0){if(e>f)return;e>u&&(u=e)}else if(h>0){if(e0)){if(e/=p,p<0){if(e0){if(e>f)return;e>u&&(u=e)}if(e=a-c,p||!(e<0)){if(e/=p,p<0){if(e>f)return;e>u&&(u=e)}else if(p>0){if(e0&&(t.a={x:l+u*h,y:c+u*p}),f<1&&(t.b={x:l+f*h,y:c+f*p}),t}}}}}),l=o.length;l--;)(!Xe(e=o[l],t)||!s(e)||y(e.a.x-e.b.x)kt||y(i-r)>kt)&&(s.splice(o,0,new $e(Ke(a.site,u,y(n-f)kt?{x:f,y:y(e-f)kt?{x:y(r-d)kt?{x:h,y:y(e-h)kt?{x:y(r-p)=r&&c.x<=i&&c.y>=n&&c.y<=o?[[r,o],[i,o],[i,n],[r,n]]:[]).point=t[s]})),e}function s(t){return t.map((function(t,e){return{x:Math.round(n(t,e)/kt)*kt,y:Math.round(i(t,e)/kt)*kt,i:e}}))}return o.links=function(t){return ar(s(t)).edges.filter((function(t){return t.l&&t.r})).map((function(e){return{source:t[e.l.i],target:t[e.r.i]}}))},o.triangles=function(t){var e=[];return ar(s(t)).cells.forEach((function(r,n){for(var i,a,o,s,l=r.site,c=r.edges.sort(qe),u=-1,f=c.length,h=c[f-1].edge,p=h.l===l?h.r:h.l;++ua||f>o||h=_)<<1|e>=b,T=w+4;wa&&(i=e.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:dr(r,n)})),a=vr.lastIndex;return am&&(m=l.x),l.y>g&&(g=l.y),c.push(l.x),u.push(l.y);else for(f=0;fm&&(m=b),_>g&&(g=_),c.push(b),u.push(_)}var w=m-p,T=g-d;function k(t,e,r,n,i,a,o,s){if(!isNaN(r)&&!isNaN(n))if(t.leaf){var l=t.x,c=t.y;if(null!=l)if(y(l-r)+y(c-n)<.01)A(t,e,r,n,i,a,o,s);else{var u=t.point;t.x=t.y=t.point=null,A(t,u,l,c,i,a,o,s),A(t,e,r,n,i,a,o,s)}else t.x=r,t.y=n,t.point=e}else A(t,e,r,n,i,a,o,s)}function A(t,e,r,n,i,a,o,s){var l=.5*(i+o),c=.5*(a+s),u=r>=l,f=n>=c,h=f<<1|u;t.leaf=!1,u?i=l:o=l,f?a=c:s=c,k(t=t.nodes[h]||(t.nodes[h]={leaf:!0,nodes:[],point:null,x:null,y:null}),e,r,n,i,a,o,s)}w>T?g=d+w:m=p+T;var M={leaf:!0,nodes:[],point:null,x:null,y:null,add:function(t){k(M,t,+v(t,++f),+x(t,f),p,d,m,g)},visit:function(t){ur(t,M,p,d,m,g)},find:function(t){return fr(M,t[0],t[1],p,d,m,g)}};if(f=-1,null==e){for(;++f=0&&!(n=t.interpolators[i](e,r)););return n}function xr(t,e){var r,n=[],i=[],a=t.length,o=e.length,s=Math.min(t.length,e.length);for(r=0;r=1?1:t(e)}}function kr(t){return function(e){return 1-t(1-e)}}function Ar(t){return function(e){return.5*(e<.5?t(2*e):2-t(2-2*e))}}function Mr(t){return t*t}function Sr(t){return t*t*t}function Er(t){if(t<=0)return 0;if(t>=1)return 1;var e=t*t,r=e*t;return 4*(t<.5?r:3*(t-e)+r-.75)}function Lr(t){return 1-Math.cos(t*Et)}function Cr(t){return Math.pow(2,10*(t-1))}function Pr(t){return 1-Math.sqrt(1-t*t)}function Ir(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}function Or(t,e){return e-=t,function(r){return Math.round(t+e*r)}}function zr(t){var e,r,n,i=[t.a,t.b],a=[t.c,t.d],o=Rr(i),s=Dr(i,a),l=Rr(((e=a)[0]+=(n=-s)*(r=i)[0],e[1]+=n*r[1],e))||0;i[0]*a[1]=0?t.slice(0,e):t,i=e>=0?t.slice(e+1):"in";return n=_r.get(n)||br,Tr((i=wr.get(i)||C)(n.apply(null,r.call(arguments,1))))},t.interpolateHcl=function(e,r){e=t.hcl(e),r=t.hcl(r);var n=e.h,i=e.c,a=e.l,o=r.h-n,s=r.c-i,l=r.l-a;isNaN(s)&&(s=0,i=isNaN(i)?r.c:i);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return Ht(n+o*t,i+s*t,a+l*t)+""}},t.interpolateHsl=function(e,r){e=t.hsl(e),r=t.hsl(r);var n=e.h,i=e.s,a=e.l,o=r.h-n,s=r.s-i,l=r.l-a;isNaN(s)&&(s=0,i=isNaN(i)?r.s:i);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return jt(n+o*t,i+s*t,a+l*t)+""}},t.interpolateLab=function(e,r){e=t.lab(e),r=t.lab(r);var n=e.l,i=e.a,a=e.b,o=r.l-n,s=r.a-i,l=r.b-a;return function(t){return Wt(n+o*t,i+s*t,a+l*t)+""}},t.interpolateRound=Or,t.transform=function(e){var r=i.createElementNS(t.ns.prefix.svg,"g");return(t.transform=function(t){if(null!=t){r.setAttribute("transform",t);var e=r.transform.baseVal.consolidate()}return new zr(e?e.matrix:Fr)})(e)},zr.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var Fr={a:1,b:0,c:0,d:1,e:0,f:0};function Br(t){return t.length?t.pop()+",":""}function Nr(e,r){var n=[],i=[];return e=t.transform(e),r=t.transform(r),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var i=r.push("translate(",null,",",null,")");n.push({i:i-4,x:dr(t[0],e[0])},{i:i-2,x:dr(t[1],e[1])})}else(e[0]||e[1])&&r.push("translate("+e+")")}(e.translate,r.translate,n,i),function(t,e,r,n){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),n.push({i:r.push(Br(r)+"rotate(",null,")")-2,x:dr(t,e)})):e&&r.push(Br(r)+"rotate("+e+")")}(e.rotate,r.rotate,n,i),function(t,e,r,n){t!==e?n.push({i:r.push(Br(r)+"skewX(",null,")")-2,x:dr(t,e)}):e&&r.push(Br(r)+"skewX("+e+")")}(e.skew,r.skew,n,i),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var i=r.push(Br(r)+"scale(",null,",",null,")");n.push({i:i-4,x:dr(t[0],e[0])},{i:i-2,x:dr(t[1],e[1])})}else 1===e[0]&&1===e[1]||r.push(Br(r)+"scale("+e+")")}(e.scale,r.scale,n,i),e=r=null,function(t){for(var e,r=-1,a=i.length;++r0?n=t:(e.c=null,e.t=NaN,e=null,l.end({type:"end",alpha:n=0})):t>0&&(l.start({type:"start",alpha:n=t}),e=ve(s.tick)),s):n},s.start=function(){var t,e,r,n=v.length,l=y.length,u=c[0],d=c[1];for(t=0;t=0;)r.push(i[n])}function $r(t,e){for(var r=[t],n=[];null!=(t=r.pop());)if(n.push(t),(a=t.children)&&(i=a.length))for(var i,a,o=-1;++o=0;)o.push(u=c[l]),u.parent=a,u.depth=a.depth+1;r&&(a.value=0),a.children=c}else r&&(a.value=+r.call(n,a,a.depth)||0),delete a.children;return $r(i,(function(e){var n,i;t&&(n=e.children)&&n.sort(t),r&&(i=e.parent)&&(i.value+=e.value)})),s}return n.sort=function(e){return arguments.length?(t=e,n):t},n.children=function(t){return arguments.length?(e=t,n):e},n.value=function(t){return arguments.length?(r=t,n):r},n.revalue=function(t){return r&&(Qr(t,(function(t){t.children&&(t.value=0)})),$r(t,(function(t){var e;t.children||(t.value=+r.call(n,t,t.depth)||0),(e=t.parent)&&(e.value+=t.value)}))),t},n},t.layout.partition=function(){var e=t.layout.hierarchy(),r=[1,1];function n(t,n){var i=e.call(this,t,n);return function t(e,r,n,i){var a=e.children;if(e.x=r,e.y=e.depth*i,e.dx=n,e.dy=i,a&&(o=a.length)){var o,s,l,c=-1;for(n=e.value?n/e.value:0;++cs&&(s=n),o.push(n)}for(r=0;ri&&(n=r,i=e);return n}function dn(t){return t.reduce(mn,0)}function mn(t,e){return t+e[1]}function gn(t,e){return vn(t,Math.ceil(Math.log(e.length)/Math.LN2+1))}function vn(t,e){for(var r=-1,n=+t[0],i=(t[1]-n)/e,a=[];++r<=e;)a[r]=i*r+n;return a}function yn(e){return[t.min(e),t.max(e)]}function xn(t,e){return t.value-e.value}function bn(t,e){var r=t._pack_next;t._pack_next=e,e._pack_prev=t,e._pack_next=r,r._pack_prev=e}function _n(t,e){t._pack_next=e,e._pack_prev=t}function wn(t,e){var r=e.x-t.x,n=e.y-t.y,i=t.r+e.r;return.999*i*i>r*r+n*n}function Tn(t){if((e=t.children)&&(l=e.length)){var e,r,n,i,a,o,s,l,c=1/0,u=-1/0,f=1/0,h=-1/0;if(e.forEach(kn),(r=e[0]).x=-r.r,r.y=0,x(r),l>1&&((n=e[1]).x=n.r,n.y=0,x(n),l>2))for(Mn(r,n,i=e[2]),x(i),bn(r,i),r._pack_prev=i,bn(i,n),n=r._pack_next,a=3;a0)for(o=-1;++o=f[0]&&l<=f[1]&&((s=c[t.bisect(h,l,1,d)-1]).y+=m,s.push(a[o]));return c}return a.value=function(t){return arguments.length?(r=t,a):r},a.range=function(t){return arguments.length?(n=ce(t),a):n},a.bins=function(t){return arguments.length?(i="number"==typeof t?function(e){return vn(e,t)}:ce(t),a):i},a.frequency=function(t){return arguments.length?(e=!!t,a):e},a},t.layout.pack=function(){var e,r=t.layout.hierarchy().sort(xn),n=0,i=[1,1];function a(t,a){var o=r.call(this,t,a),s=o[0],l=i[0],c=i[1],u=null==e?Math.sqrt:"function"==typeof e?e:function(){return e};if(s.x=s.y=0,$r(s,(function(t){t.r=+u(t.value)})),$r(s,Tn),n){var f=n*(e?1:Math.max(2*s.r/l,2*s.r/c))/2;$r(s,(function(t){t.r+=f})),$r(s,Tn),$r(s,(function(t){t.r-=f}))}return function t(e,r,n,i){var a=e.children;if(e.x=r+=i*e.x,e.y=n+=i*e.y,e.r*=i,a)for(var o=-1,s=a.length;++op.x&&(p=t),t.depth>d.depth&&(d=t)}));var m=r(h,p)/2-h.x,g=n[0]/(p.x+r(p,h)/2+m),v=n[1]/(d.depth||1);Qr(u,(function(t){t.x=(t.x+m)*g,t.y=t.depth*v}))}return c}function o(t){var e=t.children,n=t.parent.children,i=t.i?n[t.i-1]:null;if(e.length){!function(t){var e,r=0,n=0,i=t.children,a=i.length;for(;--a>=0;)(e=i[a]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(t);var a=(e[0].z+e[e.length-1].z)/2;i?(t.z=i.z+r(t._,i._),t.m=t.z-a):t.z=a}else i&&(t.z=i.z+r(t._,i._));t.parent.A=function(t,e,n){if(e){for(var i,a=t,o=t,s=e,l=a.parent.children[0],c=a.m,u=o.m,f=s.m,h=l.m;s=Ln(s),a=En(a),s&&a;)l=En(l),(o=Ln(o)).a=t,(i=s.z+f-a.z-c+r(s._,a._))>0&&(Cn(Pn(s,t,n),t,i),c+=i,u+=i),f+=s.m,c+=a.m,h+=l.m,u+=o.m;s&&!Ln(o)&&(o.t=s,o.m+=f-u),a&&!En(l)&&(l.t=a,l.m+=c-h,n=t)}return n}(t,i,t.parent.A||n[0])}function s(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function l(t){t.x*=n[0],t.y=t.depth*n[1]}return a.separation=function(t){return arguments.length?(r=t,a):r},a.size=function(t){return arguments.length?(i=null==(n=t)?l:null,a):i?null:n},a.nodeSize=function(t){return arguments.length?(i=null==(n=t)?null:l,a):i?n:null},Kr(a,e)},t.layout.cluster=function(){var e=t.layout.hierarchy().sort(null).value(null),r=Sn,n=[1,1],i=!1;function a(a,o){var s,l=e.call(this,a,o),c=l[0],u=0;$r(c,(function(e){var n=e.children;n&&n.length?(e.x=function(t){return t.reduce((function(t,e){return t+e.x}),0)/t.length}(n),e.y=function(e){return 1+t.max(e,(function(t){return t.y}))}(n)):(e.x=s?u+=r(e,s):0,e.y=0,s=e)}));var f=function t(e){var r=e.children;return r&&r.length?t(r[0]):e}(c),h=function t(e){var r,n=e.children;return n&&(r=n.length)?t(n[r-1]):e}(c),p=f.x-r(f,h)/2,d=h.x+r(h,f)/2;return $r(c,i?function(t){t.x=(t.x-c.x)*n[0],t.y=(c.y-t.y)*n[1]}:function(t){t.x=(t.x-p)/(d-p)*n[0],t.y=(1-(c.y?t.y/c.y:1))*n[1]}),l}return a.separation=function(t){return arguments.length?(r=t,a):r},a.size=function(t){return arguments.length?(i=null==(n=t),a):i?null:n},a.nodeSize=function(t){return arguments.length?(i=null!=(n=t),a):i?n:null},Kr(a,e)},t.layout.treemap=function(){var e,r=t.layout.hierarchy(),n=Math.round,i=[1,1],a=null,o=In,s=!1,l="squarify",c=.5*(1+Math.sqrt(5));function u(t,e){for(var r,n,i=-1,a=t.length;++i0;)s.push(r=c[i-1]),s.area+=r.area,"squarify"!==l||(n=p(s,m))<=h?(c.pop(),h=n):(s.area-=s.pop().area,d(s,m,a,!1),m=Math.min(a.dx,a.dy),s.length=s.area=0,h=1/0);s.length&&(d(s,m,a,!0),s.length=s.area=0),e.forEach(f)}}function h(t){var e=t.children;if(e&&e.length){var r,n=o(t),i=e.slice(),a=[];for(u(i,n.dx*n.dy/t.value),a.area=0;r=i.pop();)a.push(r),a.area+=r.area,null!=r.z&&(d(a,r.z?n.dx:n.dy,n,!i.length),a.length=a.area=0);e.forEach(h)}}function p(t,e){for(var r,n=t.area,i=0,a=1/0,o=-1,s=t.length;++oi&&(i=r));return e*=e,(n*=n)?Math.max(e*i*c/n,n/(e*a*c)):1/0}function d(t,e,r,i){var a,o=-1,s=t.length,l=r.x,c=r.y,u=e?n(t.area/e):0;if(e==r.dx){for((i||u>r.dy)&&(u=r.dy);++or.dx)&&(u=r.dx);++o1);return t+e*r*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(){var e=t.random.normal.apply(t,arguments);return function(){return Math.exp(e())}},bates:function(e){var r=t.random.irwinHall(e);return function(){return r()/e}},irwinHall:function(t){return function(){for(var e=0,r=0;r2?jn:Rn,s=i?Ur:jr;return a=t(e,r,s,n),o=t(r,e,s,yr),l}function l(t){return a(t)}return l.invert=function(t){return o(t)},l.domain=function(t){return arguments.length?(e=t.map(Number),s()):e},l.range=function(t){return arguments.length?(r=t,s()):r},l.rangeRound=function(t){return l.range(t).interpolate(Or)},l.clamp=function(t){return arguments.length?(i=t,s()):i},l.interpolate=function(t){return arguments.length?(n=t,s()):n},l.ticks=function(t){return qn(e,t)},l.tickFormat=function(t,r){return d3_scale_linearTickFormat(e,t,r)},l.nice=function(t){return Vn(e,t),s()},l.copy=function(){return t(e,r,n,i)},s()}([0,1],[0,1],yr,!1)};t.scale.log=function(){return function t(e,r,n,i){function a(t){return(n?Math.log(t<0?0:t):-Math.log(t>0?0:-t))/Math.log(r)}function o(t){return n?Math.pow(r,t):-Math.pow(r,-t)}function s(t){return e(a(t))}return s.invert=function(t){return o(e.invert(t))},s.domain=function(t){return arguments.length?(n=t[0]>=0,e.domain((i=t.map(Number)).map(a)),s):i},s.base=function(t){return arguments.length?(r=+t,e.domain(i.map(a)),s):r},s.nice=function(){var t=Fn(i.map(a),n?Math:Gn);return e.domain(t),i=t.map(o),s},s.ticks=function(){var t=zn(i),e=[],s=t[0],l=t[1],c=Math.floor(a(s)),u=Math.ceil(a(l)),f=r%1?2:r;if(isFinite(u-c)){if(n){for(;c0;h--)e.push(o(c)*h);for(c=0;e[c]l;u--);e=e.slice(c,u)}return e},s.copy=function(){return t(e.copy(),r,n,i)},Un(s,e)}(t.scale.linear().domain([0,1]),10,!0,[1,10])};var Gn={floor:function(t){return-Math.ceil(-t)},ceil:function(t){return-Math.floor(-t)}};function Yn(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}t.scale.pow=function(){return function t(e,r,n){var i=Yn(r),a=Yn(1/r);function o(t){return e(i(t))}return o.invert=function(t){return a(e.invert(t))},o.domain=function(t){return arguments.length?(e.domain((n=t.map(Number)).map(i)),o):n},o.ticks=function(t){return qn(n,t)},o.tickFormat=function(t,e){return d3_scale_linearTickFormat(n,t,e)},o.nice=function(t){return o.domain(Vn(n,t))},o.exponent=function(t){return arguments.length?(i=Yn(r=t),a=Yn(1/r),e.domain(n.map(i)),o):r},o.copy=function(){return t(e.copy(),r,n)},Un(o,e)}(t.scale.linear(),1,[0,1])},t.scale.sqrt=function(){return t.scale.pow().exponent(.5)},t.scale.ordinal=function(){return function e(r,n){var i,a,o;function s(t){return a[((i.get(t)||("range"===n.t?i.set(t,r.push(t)):NaN))-1)%a.length]}function l(e,n){return t.range(r.length).map((function(t){return e+n*t}))}return s.domain=function(t){if(!arguments.length)return r;r=[],i=new _;for(var e,a=-1,o=t.length;++a0?i[t-1]:r[0],tf?0:1;if(c=St)return l(c,p)+(s?l(s,1-p):"")+"Z";var d,m,g,v,y,x,b,_,w,T,k,A,M=0,S=0,E=[];if((v=(+o.apply(this,arguments)||0)/2)&&(g=n===Qn?Math.sqrt(s*s+c*c):+n.apply(this,arguments),p||(S*=-1),c&&(S=Pt(g/c*Math.sin(v))),s&&(M=Pt(g/s*Math.sin(v)))),c){y=c*Math.cos(u+S),x=c*Math.sin(u+S),b=c*Math.cos(f-S),_=c*Math.sin(f-S);var L=Math.abs(f-u-2*S)<=At?0:1;if(S&&ii(y,x,b,_)===p^L){var C=(u+f)/2;y=c*Math.cos(C),x=c*Math.sin(C),b=_=null}}else y=x=0;if(s){w=s*Math.cos(f-M),T=s*Math.sin(f-M),k=s*Math.cos(u+M),A=s*Math.sin(u+M);var P=Math.abs(u-f+2*M)<=At?0:1;if(M&&ii(w,T,k,A)===1-p^P){var I=(u+f)/2;w=s*Math.cos(I),T=s*Math.sin(I),k=A=null}}else w=T=0;if(h>kt&&(d=Math.min(Math.abs(c-s)/2,+r.apply(this,arguments)))>.001){m=s0?0:1}function ai(t,e,r,n,i){var a=t[0]-e[0],o=t[1]-e[1],s=(i?n:-n)/Math.sqrt(a*a+o*o),l=s*o,c=-s*a,u=t[0]+l,f=t[1]+c,h=e[0]+l,p=e[1]+c,d=(u+h)/2,m=(f+p)/2,g=h-u,v=p-f,y=g*g+v*v,x=r-n,b=u*p-h*f,_=(v<0?-1:1)*Math.sqrt(Math.max(0,x*x*y-b*b)),w=(b*v-g*_)/y,T=(-b*g-v*_)/y,k=(b*v+g*_)/y,A=(-b*g+v*_)/y,M=w-d,S=T-m,E=k-d,L=A-m;return M*M+S*S>E*E+L*L&&(w=k,T=A),[[w-l,T-c],[w*r/x,T*r/x]]}function oi(){return!0}function si(t){var e=_e,r=we,n=oi,i=ci,a=i.key,o=.7;function s(a){var s,l=[],c=[],u=-1,f=a.length,h=ce(e),p=ce(r);function d(){l.push("M",i(t(c),o))}for(;++u1&&i.push("H",n[0]);return i.join("")},"step-before":fi,"step-after":hi,basis:mi,"basis-open":function(t){if(t.length<4)return ci(t);var e,r=[],n=-1,i=t.length,a=[0],o=[0];for(;++n<3;)e=t[n],a.push(e[0]),o.push(e[1]);r.push(gi(xi,a)+","+gi(xi,o)),--n;for(;++n9&&(i=3*e/Math.sqrt(i),o[s]=i*r,o[s+1]=i*n));s=-1;for(;++s<=l;)i=(t[Math.min(l,s+1)][0]-t[Math.max(0,s-1)][0])/(6*(1+o[s]*o[s])),a.push([i||0,o[s]*i||0]);return a}(t))}});function ci(t){return t.length>1?t.join("L"):t+"Z"}function ui(t){return t.join("L")+"Z"}function fi(t){for(var e=0,r=t.length,n=t[0],i=[n[0],",",n[1]];++e1){s=e[1],a=t[l],l++,n+="C"+(i[0]+o[0])+","+(i[1]+o[1])+","+(a[0]-s[0])+","+(a[1]-s[1])+","+a[0]+","+a[1];for(var c=2;cAt)+",1 "+e}function l(t,e,r,n){return"Q 0,0 "+n}return a.radius=function(t){return arguments.length?(r=ce(t),a):r},a.source=function(e){return arguments.length?(t=ce(e),a):t},a.target=function(t){return arguments.length?(e=ce(t),a):e},a.startAngle=function(t){return arguments.length?(n=ce(t),a):n},a.endAngle=function(t){return arguments.length?(i=ce(t),a):i},a},t.svg.diagonal=function(){var t=ki,e=Ai,r=Si;function n(n,i){var a=t.call(this,n,i),o=e.call(this,n,i),s=(a.y+o.y)/2,l=[a,{x:a.x,y:s},{x:o.x,y:s},o];return"M"+(l=l.map(r))[0]+"C"+l[1]+" "+l[2]+" "+l[3]}return n.source=function(e){return arguments.length?(t=ce(e),n):t},n.target=function(t){return arguments.length?(e=ce(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},t.svg.diagonal.radial=function(){var e=t.svg.diagonal(),r=Si,n=e.projection;return e.projection=function(t){return arguments.length?n(Ei(r=t)):r},e},t.svg.symbol=function(){var t=Ci,e=Li;function r(r,n){return(Ii.get(t.call(this,r,n))||Pi)(e.call(this,r,n))}return r.type=function(e){return arguments.length?(t=ce(e),r):t},r.size=function(t){return arguments.length?(e=ce(t),r):e},r};var Ii=t.map({circle:Pi,cross:function(t){var e=Math.sqrt(t/5)/2;return"M"+-3*e+","+-e+"H"+-e+"V"+-3*e+"H"+e+"V"+-e+"H"+3*e+"V"+e+"H"+e+"V"+3*e+"H"+-e+"V"+e+"H"+-3*e+"Z"},diamond:function(t){var e=Math.sqrt(t/(2*zi)),r=e*zi;return"M0,"+-e+"L"+r+",0 0,"+e+" "+-r+",0Z"},square:function(t){var e=Math.sqrt(t)/2;return"M"+-e+","+-e+"L"+e+","+-e+" "+e+","+e+" "+-e+","+e+"Z"},"triangle-down":function(t){var e=Math.sqrt(t/Oi),r=e*Oi/2;return"M0,"+r+"L"+e+","+-r+" "+-e+","+-r+"Z"},"triangle-up":function(t){var e=Math.sqrt(t/Oi),r=e*Oi/2;return"M0,"+-r+"L"+e+","+r+" "+-e+","+r+"Z"}});t.svg.symbolTypes=Ii.keys();var Oi=Math.sqrt(3),zi=Math.tan(30*Lt);Y.transition=function(t){for(var e,r,n=Bi||++Ui,i=qi(t),a=[],o=Ni||{time:Date.now(),ease:Er,delay:0,duration:250},s=-1,l=this.length;++s0;)c[--h].call(t,o);if(a>=1)return f.event&&f.event.end.call(t,t.__data__,e),--u.count?delete u[n]:delete t[r],1}f||(a=i.time,o=ve((function(t){var e=f.delay;if(o.t=e+a,e<=t)return h(t-e);o.c=h}),0,a),f=u[n]={tween:new _,time:a,timer:o,delay:i.delay,duration:i.duration,ease:i.ease,index:e},i=null,++u.count)}ji.call=Y.call,ji.empty=Y.empty,ji.node=Y.node,ji.size=Y.size,t.transition=function(e,r){return e&&e.transition?Bi?e.transition(r):e:t.selection().transition(e)},t.transition.prototype=ji,ji.select=function(t){var e,r,n,i=this.id,a=this.namespace,o=[];t=W(t);for(var s=-1,l=this.length;++srect,.s>rect").attr("width",s[1]-s[0])}function m(t){t.select(".extent").attr("y",l[0]),t.selectAll(".extent,.e>rect,.w>rect").attr("height",l[1]-l[0])}function g(){var f,g,v=this,y=t.select(t.event.target),x=n.of(v,arguments),b=t.select(v),_=y.datum(),w=!/^(n|s)$/.test(_)&&i,T=!/^(e|w)$/.test(_)&&a,k=y.classed("extent"),A=bt(v),M=t.mouse(v),S=t.select(o(v)).on("keydown.brush",C).on("keyup.brush",P);if(t.event.changedTouches?S.on("touchmove.brush",I).on("touchend.brush",z):S.on("mousemove.brush",I).on("mouseup.brush",z),b.interrupt().selectAll("*").interrupt(),k)M[0]=s[0]-M[0],M[1]=l[0]-M[1];else if(_){var E=+/w$/.test(_),L=+/^n/.test(_);g=[s[1-E]-M[0],l[1-L]-M[1]],M[0]=s[E],M[1]=l[L]}else t.event.altKey&&(f=M.slice());function C(){32==t.event.keyCode&&(k||(f=null,M[0]-=s[1],M[1]-=l[1],k=2),F())}function P(){32==t.event.keyCode&&2==k&&(M[0]+=s[1],M[1]+=l[1],k=0,F())}function I(){var e=t.mouse(v),r=!1;g&&(e[0]+=g[0],e[1]+=g[1]),k||(t.event.altKey?(f||(f=[(s[0]+s[1])/2,(l[0]+l[1])/2]),M[0]=s[+(e[0]>>1;e.dtype||(e.dtype="array"),"string"==typeof e.dtype?d=new(f(e.dtype))(g):e.dtype&&(d=e.dtype,Array.isArray(d)&&(d.length=g));for(var v=0;vr||s>1073741824){for(var h=0;he+n||w>r+n||T=A||a===o)){var s=y[i];void 0===o&&(o=s.length);for(var l=a;l=d&&u<=g&&f>=m&&f<=v&&S.push(c)}var h=x[i],p=h[4*a+0],b=h[4*a+1],M=h[4*a+2],E=h[4*a+3],P=C(h,a+1),I=.5*n,O=i+1;L(e,r,I,O,p,b||M||E||P),L(e,r+I,I,O,b,M||E||P),L(e+I,r,I,O,M,E||P),L(e+I,r+I,I,O,E,P)}}function C(t,e){for(var r=null,n=0;null===r;)if(r=t[4*e+n],++n>t.length)return null;return r}return L(0,0,1,0,0,1),S},d;function E(t,e,r,i,a){for(var o=[],s=0;s0){e+=Math.abs(a(t[0]));for(var r=1;r2){for(s=0;st[0]&&(e[0]=t[0]),e[1]>t[1]&&(e[1]=t[1]),e[2]=0))throw new Error("precision must be a positive number");var r=Math.pow(10,e||0);return Math.round(t*r)/r},r.radiansToLength=f,r.lengthToRadians=h,r.lengthToDegrees=function(t,e){return p(h(t,e))},r.bearingToAzimuth=function(t){var e=t%360;return e<0&&(e+=360),e},r.radiansToDegrees=p,r.degreesToRadians=function(t){return t%360*Math.PI/180},r.convertLength=function(t,e,r){if(void 0===e&&(e="kilometers"),void 0===r&&(r="kilometers"),!(t>=0))throw new Error("length must be a positive number");return f(h(t,e),r)},r.convertArea=function(t,e,n){if(void 0===e&&(e="meters"),void 0===n&&(n="kilometers"),!(t>=0))throw new Error("area must be a positive number");var i=r.areaFactors[e];if(!i)throw new Error("invalid original units");var a=r.areaFactors[n];if(!a)throw new Error("invalid final units");return t/i*a},r.isNumber=d,r.isObject=function(t){return!!t&&t.constructor===Object},r.validateBBox=function(t){if(!t)throw new Error("bbox is required");if(!Array.isArray(t))throw new Error("bbox must be an Array");if(4!==t.length&&6!==t.length)throw new Error("bbox must be an Array of 4 or 6 numbers");t.forEach((function(t){if(!d(t))throw new Error("bbox must only contain numbers")}))},r.validateId=function(t){if(!t)throw new Error("id is required");if(-1===["string","number"].indexOf(typeof t))throw new Error("id must be a number or a string")}},{}],65:[function(t,e,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=t("@turf/helpers");function i(t,e,r){if(null!==t)for(var n,a,o,s,l,c,u,f,h=0,p=0,d=t.type,m="FeatureCollection"===d,g="Feature"===d,v=m?t.features.length:1,y=0;yc||p>u||d>f)return l=i,c=r,u=p,f=d,void(o=0);var m=n.lineString([l,i],t.properties);if(!1===e(m,r,a,d,o))return!1;o++,l=i}))&&void 0}}}))}function u(t,e){if(!t)throw new Error("geojson is required");l(t,(function(t,r,i){if(null!==t.geometry){var a=t.geometry.type,o=t.geometry.coordinates;switch(a){case"LineString":if(!1===e(t,r,i,0,0))return!1;break;case"Polygon":for(var s=0;si&&(i=t[o]),t[o] + * @license MIT + */function i(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,i=0,a=Math.min(r,n);i=0;c--)if(u[c]!==f[c])return!1;for(c=u.length-1;c>=0;c--)if(s=u[c],!x(t[s],e[s],r,n))return!1;return!0}(t,e,r,n))}return r?t===e:t==e}function b(t){return"[object Arguments]"==Object.prototype.toString.call(t)}function _(t,e){if(!t||!e)return!1;if("[object RegExp]"==Object.prototype.toString.call(e))return e.test(t);try{if(t instanceof e)return!0}catch(t){}return!Error.isPrototypeOf(e)&&!0===e.call({},t)}function w(t,e,r,n){var i;if("function"!=typeof e)throw new TypeError('"block" argument must be a function');"string"==typeof r&&(n=r,r=null),i=function(t){var e;try{t()}catch(t){e=t}return e}(e),n=(r&&r.name?" ("+r.name+").":".")+(n?" "+n:"."),t&&!i&&v(i,r,"Missing expected exception"+n);var a="string"==typeof n,s=!t&&i&&!r;if((!t&&o.isError(i)&&a&&_(i,r)||s)&&v(i,r,"Got unwanted exception"+n),t&&i&&r&&!_(i,r)||!t&&i)throw i}h.AssertionError=function(t){this.name="AssertionError",this.actual=t.actual,this.expected=t.expected,this.operator=t.operator,t.message?(this.message=t.message,this.generatedMessage=!1):(this.message=function(t){return m(g(t.actual),128)+" "+t.operator+" "+m(g(t.expected),128)}(this),this.generatedMessage=!0);var e=t.stackStartFunction||v;if(Error.captureStackTrace)Error.captureStackTrace(this,e);else{var r=new Error;if(r.stack){var n=r.stack,i=d(e),a=n.indexOf("\n"+i);if(a>=0){var o=n.indexOf("\n",a+1);n=n.substring(o+1)}this.stack=n}}},o.inherits(h.AssertionError,Error),h.fail=v,h.ok=y,h.equal=function(t,e,r){t!=e&&v(t,e,r,"==",h.equal)},h.notEqual=function(t,e,r){t==e&&v(t,e,r,"!=",h.notEqual)},h.deepEqual=function(t,e,r){x(t,e,!1)||v(t,e,r,"deepEqual",h.deepEqual)},h.deepStrictEqual=function(t,e,r){x(t,e,!0)||v(t,e,r,"deepStrictEqual",h.deepStrictEqual)},h.notDeepEqual=function(t,e,r){x(t,e,!1)&&v(t,e,r,"notDeepEqual",h.notDeepEqual)},h.notDeepStrictEqual=function t(e,r,n){x(e,r,!0)&&v(e,r,n,"notDeepStrictEqual",t)},h.strictEqual=function(t,e,r){t!==e&&v(t,e,r,"===",h.strictEqual)},h.notStrictEqual=function(t,e,r){t===e&&v(t,e,r,"!==",h.notStrictEqual)},h.throws=function(t,e,r){w(!0,t,e,r)},h.doesNotThrow=function(t,e,r){w(!1,t,e,r)},h.ifError=function(t){if(t)throw t},h.strict=n((function t(e,r){e||v(e,!0,r,"==",t)}),h,{equal:h.strictEqual,deepEqual:h.deepStrictEqual,notEqual:h.notStrictEqual,notDeepEqual:h.notDeepStrictEqual}),h.strict.strict=h.strict;var T=Object.keys||function(t){var e=[];for(var r in t)s.call(t,r)&&e.push(r);return e}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"object-assign":466,"util/":79}],77:[function(t,e,r){"function"==typeof Object.create?e.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}},{}],78:[function(t,e,r){e.exports=function(t){return t&&"object"==typeof t&&"function"==typeof t.copy&&"function"==typeof t.fill&&"function"==typeof t.readUInt8}},{}],79:[function(t,e,r){(function(e,n){(function(){var i=/%[sdj%]/g;r.format=function(t){if(!v(t)){for(var e=[],r=0;r=a)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}})),l=n[r];r=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),d(e)?n.showHidden=e:e&&r._extend(n,e),y(n.showHidden)&&(n.showHidden=!1),y(n.depth)&&(n.depth=2),y(n.colors)&&(n.colors=!1),y(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=l),u(n,t,n.depth)}function l(t,e){var r=s.styles[e];return r?"\x1b["+s.colors[r][0]+"m"+t+"\x1b["+s.colors[r][1]+"m":t}function c(t,e){return t}function u(t,e,n){if(t.customInspect&&e&&T(e.inspect)&&e.inspect!==r.inspect&&(!e.constructor||e.constructor.prototype!==e)){var i=e.inspect(n,t);return v(i)||(i=u(t,i,n)),i}var a=function(t,e){if(y(e))return t.stylize("undefined","undefined");if(v(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(g(e))return t.stylize(""+e,"number");if(d(e))return t.stylize(""+e,"boolean");if(m(e))return t.stylize("null","null")}(t,e);if(a)return a;var o=Object.keys(e),s=function(t){var e={};return t.forEach((function(t,r){e[t]=!0})),e}(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),w(e)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return f(e);if(0===o.length){if(T(e)){var l=e.name?": "+e.name:"";return t.stylize("[Function"+l+"]","special")}if(x(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(_(e))return t.stylize(Date.prototype.toString.call(e),"date");if(w(e))return f(e)}var c,b="",k=!1,A=["{","}"];(p(e)&&(k=!0,A=["[","]"]),T(e))&&(b=" [Function"+(e.name?": "+e.name:"")+"]");return x(e)&&(b=" "+RegExp.prototype.toString.call(e)),_(e)&&(b=" "+Date.prototype.toUTCString.call(e)),w(e)&&(b=" "+f(e)),0!==o.length||k&&0!=e.length?n<0?x(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special"):(t.seen.push(e),c=k?function(t,e,r,n,i){for(var a=[],o=0,s=e.length;o=0&&0,t+e.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60)return r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+r[1];return r[0]+e+" "+t.join(", ")+" "+r[1]}(c,b,A)):A[0]+b+A[1]}function f(t){return"["+Error.prototype.toString.call(t)+"]"}function h(t,e,r,n,i,a){var o,s,l;if((l=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]}).get?s=l.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):l.set&&(s=t.stylize("[Setter]","special")),E(n,i)||(o="["+i+"]"),s||(t.seen.indexOf(l.value)<0?(s=m(r)?u(t,l.value,null):u(t,l.value,r-1)).indexOf("\n")>-1&&(s=a?s.split("\n").map((function(t){return" "+t})).join("\n").substr(2):"\n"+s.split("\n").map((function(t){return" "+t})).join("\n")):s=t.stylize("[Circular]","special")),y(o)){if(a&&i.match(/^\d+$/))return s;(o=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(o=o.substr(1,o.length-2),o=t.stylize(o,"name")):(o=o.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),o=t.stylize(o,"string"))}return o+": "+s}function p(t){return Array.isArray(t)}function d(t){return"boolean"==typeof t}function m(t){return null===t}function g(t){return"number"==typeof t}function v(t){return"string"==typeof t}function y(t){return void 0===t}function x(t){return b(t)&&"[object RegExp]"===k(t)}function b(t){return"object"==typeof t&&null!==t}function _(t){return b(t)&&"[object Date]"===k(t)}function w(t){return b(t)&&("[object Error]"===k(t)||t instanceof Error)}function T(t){return"function"==typeof t}function k(t){return Object.prototype.toString.call(t)}function A(t){return t<10?"0"+t.toString(10):t.toString(10)}r.debuglog=function(t){if(y(a)&&(a=e.env.NODE_DEBUG||""),t=t.toUpperCase(),!o[t])if(new RegExp("\\b"+t+"\\b","i").test(a)){var n=e.pid;o[t]=function(){var e=r.format.apply(r,arguments);console.error("%s %d: %s",t,n,e)}}else o[t]=function(){};return o[t]},r.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},r.isArray=p,r.isBoolean=d,r.isNull=m,r.isNullOrUndefined=function(t){return null==t},r.isNumber=g,r.isString=v,r.isSymbol=function(t){return"symbol"==typeof t},r.isUndefined=y,r.isRegExp=x,r.isObject=b,r.isDate=_,r.isError=w,r.isFunction=T,r.isPrimitive=function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||void 0===t},r.isBuffer=t("./support/isBuffer");var M=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function S(){var t=new Date,e=[A(t.getHours()),A(t.getMinutes()),A(t.getSeconds())].join(":");return[t.getDate(),M[t.getMonth()],e].join(" ")}function E(t,e){return Object.prototype.hasOwnProperty.call(t,e)}r.log=function(){console.log("%s - %s",S(),r.format.apply(r,arguments))},r.inherits=t("inherits"),r._extend=function(t,e){if(!e||!b(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}}).call(this)}).call(this,t("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./support/isBuffer":78,_process:504,inherits:77}],80:[function(t,e,r){e.exports=function(t){return atob(t)}},{}],81:[function(t,e,r){"use strict";e.exports=function(t,e){for(var r=e.length,a=new Array(r+1),o=0;o0?o-4:o;for(r=0;r>16&255,l[u++]=e>>8&255,l[u++]=255&e;2===s&&(e=i[t.charCodeAt(r)]<<2|i[t.charCodeAt(r+1)]>>4,l[u++]=255&e);1===s&&(e=i[t.charCodeAt(r)]<<10|i[t.charCodeAt(r+1)]<<4|i[t.charCodeAt(r+2)]>>2,l[u++]=e>>8&255,l[u++]=255&e);return l},r.fromByteArray=function(t){for(var e,r=t.length,i=r%3,a=[],o=0,s=r-i;os?s:o+16383));1===i?(e=t[r-1],a.push(n[e>>2]+n[e<<4&63]+"==")):2===i&&(e=(t[r-2]<<8)+t[r-1],a.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"="));return a.join("")};for(var n=[],i=[],a="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,l=o.length;s0)throw new Error("Invalid string. Length must be a multiple of 4");var r=t.indexOf("=");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function u(t,e,r){for(var i,a,o=[],s=e;s>18&63]+n[a>>12&63]+n[a>>6&63]+n[63&a]);return o.join("")}i["-".charCodeAt(0)]=62,i["_".charCodeAt(0)]=63},{}],83:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[1]).add(e[0].mul(t[1])),t[1].mul(e[1]))}},{"./lib/rationalize":93}],84:[function(t,e,r){"use strict";e.exports=function(t,e){return t[0].mul(e[1]).cmp(e[0].mul(t[1]))}},{}],85:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[1]),t[1].mul(e[0]))}},{"./lib/rationalize":93}],86:[function(t,e,r){"use strict";var n=t("./is-rat"),i=t("./lib/is-bn"),a=t("./lib/num-to-bn"),o=t("./lib/str-to-bn"),s=t("./lib/rationalize"),l=t("./div");e.exports=function t(e,r){if(n(e))return r?l(e,t(r)):[e[0].clone(),e[1].clone()];var c,u,f=0;if(i(e))c=e.clone();else if("string"==typeof e)c=o(e);else{if(0===e)return[a(0),a(1)];if(e===Math.floor(e))c=a(e);else{for(;e!==Math.floor(e);)e*=Math.pow(2,256),f-=256;c=a(e)}}if(n(r))c.mul(r[1]),u=r[0].clone();else if(i(r))u=r.clone();else if("string"==typeof r)u=o(r);else if(r)if(r===Math.floor(r))u=a(r);else{for(;r!==Math.floor(r);)r*=Math.pow(2,256),f+=256;u=a(r)}else u=a(1);f>0?c=c.ushln(f):f<0&&(u=u.ushln(-f));return s(c,u)}},{"./div":85,"./is-rat":87,"./lib/is-bn":91,"./lib/num-to-bn":92,"./lib/rationalize":93,"./lib/str-to-bn":94}],87:[function(t,e,r){"use strict";var n=t("./lib/is-bn");e.exports=function(t){return Array.isArray(t)&&2===t.length&&n(t[0])&&n(t[1])}},{"./lib/is-bn":91}],88:[function(t,e,r){"use strict";var n=t("bn.js");e.exports=function(t){return t.cmp(new n(0))}},{"bn.js":96}],89:[function(t,e,r){"use strict";var n=t("./bn-sign");e.exports=function(t){var e=t.length,r=t.words,i=0;if(1===e)i=r[0];else if(2===e)i=r[0]+67108864*r[1];else for(var a=0;a20)return 52;return r+32}},{"bit-twiddle":101,"double-bits":174}],91:[function(t,e,r){"use strict";t("bn.js");e.exports=function(t){return t&&"object"==typeof t&&Boolean(t.words)}},{"bn.js":96}],92:[function(t,e,r){"use strict";var n=t("bn.js"),i=t("double-bits");e.exports=function(t){var e=i.exponent(t);return e<52?new n(t):new n(t*Math.pow(2,52-e)).ushln(e-52)}},{"bn.js":96,"double-bits":174}],93:[function(t,e,r){"use strict";var n=t("./num-to-bn"),i=t("./bn-sign");e.exports=function(t,e){var r=i(t),a=i(e);if(0===r)return[n(0),n(1)];if(0===a)return[n(0),n(0)];a<0&&(t=t.neg(),e=e.neg());var o=t.gcd(e);if(o.cmpn(1))return[t.div(o),e.div(o)];return[t,e]}},{"./bn-sign":88,"./num-to-bn":92}],94:[function(t,e,r){"use strict";var n=t("bn.js");e.exports=function(t){return new n(t)}},{"bn.js":96}],95:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[0]),t[1].mul(e[1]))}},{"./lib/rationalize":93}],96:[function(t,e,r){!function(e,r){"use strict";function n(t,e){if(!t)throw new Error(e||"Assertion failed")}function i(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}function a(t,e,r){if(a.isBN(t))return t;this.negative=0,this.words=null,this.length=0,this.red=null,null!==t&&("le"!==e&&"be"!==e||(r=e,e=10),this._init(t||0,e||10,r||"be"))}var o;"object"==typeof e?e.exports=a:r.BN=a,a.BN=a,a.wordSize=26;try{o="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:t("buffer").Buffer}catch(t){}function s(t,e){var r=t.charCodeAt(e);return r>=65&&r<=70?r-55:r>=97&&r<=102?r-87:r-48&15}function l(t,e,r){var n=s(t,r);return r-1>=e&&(n|=s(t,r-1)<<4),n}function c(t,e,r,n){for(var i=0,a=Math.min(t.length,r),o=e;o=49?s-49+10:s>=17?s-17+10:s}return i}a.isBN=function(t){return t instanceof a||null!==t&&"object"==typeof t&&t.constructor.wordSize===a.wordSize&&Array.isArray(t.words)},a.max=function(t,e){return t.cmp(e)>0?t:e},a.min=function(t,e){return t.cmp(e)<0?t:e},a.prototype._init=function(t,e,r){if("number"==typeof t)return this._initNumber(t,e,r);if("object"==typeof t)return this._initArray(t,e,r);"hex"===e&&(e=16),n(e===(0|e)&&e>=2&&e<=36);var i=0;"-"===(t=t.toString().replace(/\s+/g,""))[0]&&(i++,this.negative=1),i=0;i-=3)o=t[i]|t[i-1]<<8|t[i-2]<<16,this.words[a]|=o<>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);else if("le"===r)for(i=0,a=0;i>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);return this.strip()},a.prototype._parseHex=function(t,e,r){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var n=0;n=e;n-=2)i=l(t,e,n)<=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;else for(n=(t.length-e)%2==0?e+1:e;n=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;this.strip()},a.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,i=1;i<=67108863;i*=e)n++;n--,i=i/e|0;for(var a=t.length-r,o=a%n,s=Math.min(a,a-o)+r,l=0,u=r;u1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var u=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],f=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],h=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function p(t,e,r){r.negative=e.negative^t.negative;var n=t.length+e.length|0;r.length=n,n=n-1|0;var i=0|t.words[0],a=0|e.words[0],o=i*a,s=67108863&o,l=o/67108864|0;r.words[0]=s;for(var c=1;c>>26,f=67108863&l,h=Math.min(c,e.length-1),p=Math.max(0,c-t.length+1);p<=h;p++){var d=c-p|0;u+=(o=(i=0|t.words[d])*(a=0|e.words[p])+f)/67108864|0,f=67108863&o}r.words[c]=0|f,l=0|u}return 0!==l?r.words[c]=0|l:r.length--,r.strip()}a.prototype.toString=function(t,e){var r;if(e=0|e||1,16===(t=t||10)||"hex"===t){r="";for(var i=0,a=0,o=0;o>>24-i&16777215)||o!==this.length-1?u[6-l.length]+l+r:l+r,(i+=2)>=26&&(i-=26,o--)}for(0!==a&&(r=a.toString(16)+r);r.length%e!=0;)r="0"+r;return 0!==this.negative&&(r="-"+r),r}if(t===(0|t)&&t>=2&&t<=36){var c=f[t],p=h[t];r="";var d=this.clone();for(d.negative=0;!d.isZero();){var m=d.modn(p).toString(t);r=(d=d.idivn(p)).isZero()?m+r:u[c-m.length]+m+r}for(this.isZero()&&(r="0"+r);r.length%e!=0;)r="0"+r;return 0!==this.negative&&(r="-"+r),r}n(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var t=this.words[0];return 2===this.length?t+=67108864*this.words[1]:3===this.length&&1===this.words[2]?t+=4503599627370496+67108864*this.words[1]:this.length>2&&n(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-t:t},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(t,e){return n(void 0!==o),this.toArrayLike(o,t,e)},a.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},a.prototype.toArrayLike=function(t,e,r){var i=this.byteLength(),a=r||Math.max(1,i);n(i<=a,"byte array longer than desired length"),n(a>0,"Requested array length <= 0"),this.strip();var o,s,l="le"===e,c=new t(a),u=this.clone();if(l){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[s]=o;for(;s=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},a.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0==(8191&e)&&(r+=13,e>>>=13),0==(127&e)&&(r+=7,e>>>=7),0==(15&e)&&(r+=4,e>>>=4),0==(3&e)&&(r+=2,e>>>=2),0==(1&e)&&r++,r},a.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;et.length?this.clone().ior(t):t.clone().ior(this)},a.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},a.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var r=0;rt.length?this.clone().iand(t):t.clone().iand(this)},a.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},a.prototype.iuxor=function(t){var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;nt.length?this.clone().ixor(t):t.clone().ixor(this)},a.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},a.prototype.inotn=function(t){n("number"==typeof t&&t>=0);var e=0|Math.ceil(t/26),r=t%26;this._expand(e),r>0&&e--;for(var i=0;i0&&(this.words[i]=~this.words[i]&67108863>>26-r),this.strip()},a.prototype.notn=function(t){return this.clone().inotn(t)},a.prototype.setn=function(t,e){n("number"==typeof t&&t>=0);var r=t/26|0,i=t%26;return this._expand(r+1),this.words[r]=e?this.words[r]|1<t.length?(r=this,n=t):(r=t,n=this);for(var i=0,a=0;a>>26;for(;0!==i&&a>>26;if(this.length=r.length,0!==i)this.words[this.length]=i,this.length++;else if(r!==this)for(;at.length?this.clone().iadd(t):t.clone().iadd(this)},a.prototype.isub=function(t){if(0!==t.negative){t.negative=0;var e=this.iadd(t);return t.negative=1,e._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(t),this.negative=1,this._normSign();var r,n,i=this.cmp(t);if(0===i)return this.negative=0,this.length=1,this.words[0]=0,this;i>0?(r=this,n=t):(r=t,n=this);for(var a=0,o=0;o>26,this.words[o]=67108863&e;for(;0!==a&&o>26,this.words[o]=67108863&e;if(0===a&&o>>13,p=0|o[1],d=8191&p,m=p>>>13,g=0|o[2],v=8191&g,y=g>>>13,x=0|o[3],b=8191&x,_=x>>>13,w=0|o[4],T=8191&w,k=w>>>13,A=0|o[5],M=8191&A,S=A>>>13,E=0|o[6],L=8191&E,C=E>>>13,P=0|o[7],I=8191&P,O=P>>>13,z=0|o[8],D=8191&z,R=z>>>13,F=0|o[9],B=8191&F,N=F>>>13,j=0|s[0],U=8191&j,V=j>>>13,H=0|s[1],q=8191&H,G=H>>>13,Y=0|s[2],W=8191&Y,X=Y>>>13,Z=0|s[3],J=8191&Z,K=Z>>>13,Q=0|s[4],$=8191&Q,tt=Q>>>13,et=0|s[5],rt=8191&et,nt=et>>>13,it=0|s[6],at=8191&it,ot=it>>>13,st=0|s[7],lt=8191&st,ct=st>>>13,ut=0|s[8],ft=8191&ut,ht=ut>>>13,pt=0|s[9],dt=8191&pt,mt=pt>>>13;r.negative=t.negative^e.negative,r.length=19;var gt=(c+(n=Math.imul(f,U))|0)+((8191&(i=(i=Math.imul(f,V))+Math.imul(h,U)|0))<<13)|0;c=((a=Math.imul(h,V))+(i>>>13)|0)+(gt>>>26)|0,gt&=67108863,n=Math.imul(d,U),i=(i=Math.imul(d,V))+Math.imul(m,U)|0,a=Math.imul(m,V);var vt=(c+(n=n+Math.imul(f,q)|0)|0)+((8191&(i=(i=i+Math.imul(f,G)|0)+Math.imul(h,q)|0))<<13)|0;c=((a=a+Math.imul(h,G)|0)+(i>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(v,U),i=(i=Math.imul(v,V))+Math.imul(y,U)|0,a=Math.imul(y,V),n=n+Math.imul(d,q)|0,i=(i=i+Math.imul(d,G)|0)+Math.imul(m,q)|0,a=a+Math.imul(m,G)|0;var yt=(c+(n=n+Math.imul(f,W)|0)|0)+((8191&(i=(i=i+Math.imul(f,X)|0)+Math.imul(h,W)|0))<<13)|0;c=((a=a+Math.imul(h,X)|0)+(i>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(b,U),i=(i=Math.imul(b,V))+Math.imul(_,U)|0,a=Math.imul(_,V),n=n+Math.imul(v,q)|0,i=(i=i+Math.imul(v,G)|0)+Math.imul(y,q)|0,a=a+Math.imul(y,G)|0,n=n+Math.imul(d,W)|0,i=(i=i+Math.imul(d,X)|0)+Math.imul(m,W)|0,a=a+Math.imul(m,X)|0;var xt=(c+(n=n+Math.imul(f,J)|0)|0)+((8191&(i=(i=i+Math.imul(f,K)|0)+Math.imul(h,J)|0))<<13)|0;c=((a=a+Math.imul(h,K)|0)+(i>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(T,U),i=(i=Math.imul(T,V))+Math.imul(k,U)|0,a=Math.imul(k,V),n=n+Math.imul(b,q)|0,i=(i=i+Math.imul(b,G)|0)+Math.imul(_,q)|0,a=a+Math.imul(_,G)|0,n=n+Math.imul(v,W)|0,i=(i=i+Math.imul(v,X)|0)+Math.imul(y,W)|0,a=a+Math.imul(y,X)|0,n=n+Math.imul(d,J)|0,i=(i=i+Math.imul(d,K)|0)+Math.imul(m,J)|0,a=a+Math.imul(m,K)|0;var bt=(c+(n=n+Math.imul(f,$)|0)|0)+((8191&(i=(i=i+Math.imul(f,tt)|0)+Math.imul(h,$)|0))<<13)|0;c=((a=a+Math.imul(h,tt)|0)+(i>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(M,U),i=(i=Math.imul(M,V))+Math.imul(S,U)|0,a=Math.imul(S,V),n=n+Math.imul(T,q)|0,i=(i=i+Math.imul(T,G)|0)+Math.imul(k,q)|0,a=a+Math.imul(k,G)|0,n=n+Math.imul(b,W)|0,i=(i=i+Math.imul(b,X)|0)+Math.imul(_,W)|0,a=a+Math.imul(_,X)|0,n=n+Math.imul(v,J)|0,i=(i=i+Math.imul(v,K)|0)+Math.imul(y,J)|0,a=a+Math.imul(y,K)|0,n=n+Math.imul(d,$)|0,i=(i=i+Math.imul(d,tt)|0)+Math.imul(m,$)|0,a=a+Math.imul(m,tt)|0;var _t=(c+(n=n+Math.imul(f,rt)|0)|0)+((8191&(i=(i=i+Math.imul(f,nt)|0)+Math.imul(h,rt)|0))<<13)|0;c=((a=a+Math.imul(h,nt)|0)+(i>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(L,U),i=(i=Math.imul(L,V))+Math.imul(C,U)|0,a=Math.imul(C,V),n=n+Math.imul(M,q)|0,i=(i=i+Math.imul(M,G)|0)+Math.imul(S,q)|0,a=a+Math.imul(S,G)|0,n=n+Math.imul(T,W)|0,i=(i=i+Math.imul(T,X)|0)+Math.imul(k,W)|0,a=a+Math.imul(k,X)|0,n=n+Math.imul(b,J)|0,i=(i=i+Math.imul(b,K)|0)+Math.imul(_,J)|0,a=a+Math.imul(_,K)|0,n=n+Math.imul(v,$)|0,i=(i=i+Math.imul(v,tt)|0)+Math.imul(y,$)|0,a=a+Math.imul(y,tt)|0,n=n+Math.imul(d,rt)|0,i=(i=i+Math.imul(d,nt)|0)+Math.imul(m,rt)|0,a=a+Math.imul(m,nt)|0;var wt=(c+(n=n+Math.imul(f,at)|0)|0)+((8191&(i=(i=i+Math.imul(f,ot)|0)+Math.imul(h,at)|0))<<13)|0;c=((a=a+Math.imul(h,ot)|0)+(i>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(I,U),i=(i=Math.imul(I,V))+Math.imul(O,U)|0,a=Math.imul(O,V),n=n+Math.imul(L,q)|0,i=(i=i+Math.imul(L,G)|0)+Math.imul(C,q)|0,a=a+Math.imul(C,G)|0,n=n+Math.imul(M,W)|0,i=(i=i+Math.imul(M,X)|0)+Math.imul(S,W)|0,a=a+Math.imul(S,X)|0,n=n+Math.imul(T,J)|0,i=(i=i+Math.imul(T,K)|0)+Math.imul(k,J)|0,a=a+Math.imul(k,K)|0,n=n+Math.imul(b,$)|0,i=(i=i+Math.imul(b,tt)|0)+Math.imul(_,$)|0,a=a+Math.imul(_,tt)|0,n=n+Math.imul(v,rt)|0,i=(i=i+Math.imul(v,nt)|0)+Math.imul(y,rt)|0,a=a+Math.imul(y,nt)|0,n=n+Math.imul(d,at)|0,i=(i=i+Math.imul(d,ot)|0)+Math.imul(m,at)|0,a=a+Math.imul(m,ot)|0;var Tt=(c+(n=n+Math.imul(f,lt)|0)|0)+((8191&(i=(i=i+Math.imul(f,ct)|0)+Math.imul(h,lt)|0))<<13)|0;c=((a=a+Math.imul(h,ct)|0)+(i>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(D,U),i=(i=Math.imul(D,V))+Math.imul(R,U)|0,a=Math.imul(R,V),n=n+Math.imul(I,q)|0,i=(i=i+Math.imul(I,G)|0)+Math.imul(O,q)|0,a=a+Math.imul(O,G)|0,n=n+Math.imul(L,W)|0,i=(i=i+Math.imul(L,X)|0)+Math.imul(C,W)|0,a=a+Math.imul(C,X)|0,n=n+Math.imul(M,J)|0,i=(i=i+Math.imul(M,K)|0)+Math.imul(S,J)|0,a=a+Math.imul(S,K)|0,n=n+Math.imul(T,$)|0,i=(i=i+Math.imul(T,tt)|0)+Math.imul(k,$)|0,a=a+Math.imul(k,tt)|0,n=n+Math.imul(b,rt)|0,i=(i=i+Math.imul(b,nt)|0)+Math.imul(_,rt)|0,a=a+Math.imul(_,nt)|0,n=n+Math.imul(v,at)|0,i=(i=i+Math.imul(v,ot)|0)+Math.imul(y,at)|0,a=a+Math.imul(y,ot)|0,n=n+Math.imul(d,lt)|0,i=(i=i+Math.imul(d,ct)|0)+Math.imul(m,lt)|0,a=a+Math.imul(m,ct)|0;var kt=(c+(n=n+Math.imul(f,ft)|0)|0)+((8191&(i=(i=i+Math.imul(f,ht)|0)+Math.imul(h,ft)|0))<<13)|0;c=((a=a+Math.imul(h,ht)|0)+(i>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(B,U),i=(i=Math.imul(B,V))+Math.imul(N,U)|0,a=Math.imul(N,V),n=n+Math.imul(D,q)|0,i=(i=i+Math.imul(D,G)|0)+Math.imul(R,q)|0,a=a+Math.imul(R,G)|0,n=n+Math.imul(I,W)|0,i=(i=i+Math.imul(I,X)|0)+Math.imul(O,W)|0,a=a+Math.imul(O,X)|0,n=n+Math.imul(L,J)|0,i=(i=i+Math.imul(L,K)|0)+Math.imul(C,J)|0,a=a+Math.imul(C,K)|0,n=n+Math.imul(M,$)|0,i=(i=i+Math.imul(M,tt)|0)+Math.imul(S,$)|0,a=a+Math.imul(S,tt)|0,n=n+Math.imul(T,rt)|0,i=(i=i+Math.imul(T,nt)|0)+Math.imul(k,rt)|0,a=a+Math.imul(k,nt)|0,n=n+Math.imul(b,at)|0,i=(i=i+Math.imul(b,ot)|0)+Math.imul(_,at)|0,a=a+Math.imul(_,ot)|0,n=n+Math.imul(v,lt)|0,i=(i=i+Math.imul(v,ct)|0)+Math.imul(y,lt)|0,a=a+Math.imul(y,ct)|0,n=n+Math.imul(d,ft)|0,i=(i=i+Math.imul(d,ht)|0)+Math.imul(m,ft)|0,a=a+Math.imul(m,ht)|0;var At=(c+(n=n+Math.imul(f,dt)|0)|0)+((8191&(i=(i=i+Math.imul(f,mt)|0)+Math.imul(h,dt)|0))<<13)|0;c=((a=a+Math.imul(h,mt)|0)+(i>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(B,q),i=(i=Math.imul(B,G))+Math.imul(N,q)|0,a=Math.imul(N,G),n=n+Math.imul(D,W)|0,i=(i=i+Math.imul(D,X)|0)+Math.imul(R,W)|0,a=a+Math.imul(R,X)|0,n=n+Math.imul(I,J)|0,i=(i=i+Math.imul(I,K)|0)+Math.imul(O,J)|0,a=a+Math.imul(O,K)|0,n=n+Math.imul(L,$)|0,i=(i=i+Math.imul(L,tt)|0)+Math.imul(C,$)|0,a=a+Math.imul(C,tt)|0,n=n+Math.imul(M,rt)|0,i=(i=i+Math.imul(M,nt)|0)+Math.imul(S,rt)|0,a=a+Math.imul(S,nt)|0,n=n+Math.imul(T,at)|0,i=(i=i+Math.imul(T,ot)|0)+Math.imul(k,at)|0,a=a+Math.imul(k,ot)|0,n=n+Math.imul(b,lt)|0,i=(i=i+Math.imul(b,ct)|0)+Math.imul(_,lt)|0,a=a+Math.imul(_,ct)|0,n=n+Math.imul(v,ft)|0,i=(i=i+Math.imul(v,ht)|0)+Math.imul(y,ft)|0,a=a+Math.imul(y,ht)|0;var Mt=(c+(n=n+Math.imul(d,dt)|0)|0)+((8191&(i=(i=i+Math.imul(d,mt)|0)+Math.imul(m,dt)|0))<<13)|0;c=((a=a+Math.imul(m,mt)|0)+(i>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(B,W),i=(i=Math.imul(B,X))+Math.imul(N,W)|0,a=Math.imul(N,X),n=n+Math.imul(D,J)|0,i=(i=i+Math.imul(D,K)|0)+Math.imul(R,J)|0,a=a+Math.imul(R,K)|0,n=n+Math.imul(I,$)|0,i=(i=i+Math.imul(I,tt)|0)+Math.imul(O,$)|0,a=a+Math.imul(O,tt)|0,n=n+Math.imul(L,rt)|0,i=(i=i+Math.imul(L,nt)|0)+Math.imul(C,rt)|0,a=a+Math.imul(C,nt)|0,n=n+Math.imul(M,at)|0,i=(i=i+Math.imul(M,ot)|0)+Math.imul(S,at)|0,a=a+Math.imul(S,ot)|0,n=n+Math.imul(T,lt)|0,i=(i=i+Math.imul(T,ct)|0)+Math.imul(k,lt)|0,a=a+Math.imul(k,ct)|0,n=n+Math.imul(b,ft)|0,i=(i=i+Math.imul(b,ht)|0)+Math.imul(_,ft)|0,a=a+Math.imul(_,ht)|0;var St=(c+(n=n+Math.imul(v,dt)|0)|0)+((8191&(i=(i=i+Math.imul(v,mt)|0)+Math.imul(y,dt)|0))<<13)|0;c=((a=a+Math.imul(y,mt)|0)+(i>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(B,J),i=(i=Math.imul(B,K))+Math.imul(N,J)|0,a=Math.imul(N,K),n=n+Math.imul(D,$)|0,i=(i=i+Math.imul(D,tt)|0)+Math.imul(R,$)|0,a=a+Math.imul(R,tt)|0,n=n+Math.imul(I,rt)|0,i=(i=i+Math.imul(I,nt)|0)+Math.imul(O,rt)|0,a=a+Math.imul(O,nt)|0,n=n+Math.imul(L,at)|0,i=(i=i+Math.imul(L,ot)|0)+Math.imul(C,at)|0,a=a+Math.imul(C,ot)|0,n=n+Math.imul(M,lt)|0,i=(i=i+Math.imul(M,ct)|0)+Math.imul(S,lt)|0,a=a+Math.imul(S,ct)|0,n=n+Math.imul(T,ft)|0,i=(i=i+Math.imul(T,ht)|0)+Math.imul(k,ft)|0,a=a+Math.imul(k,ht)|0;var Et=(c+(n=n+Math.imul(b,dt)|0)|0)+((8191&(i=(i=i+Math.imul(b,mt)|0)+Math.imul(_,dt)|0))<<13)|0;c=((a=a+Math.imul(_,mt)|0)+(i>>>13)|0)+(Et>>>26)|0,Et&=67108863,n=Math.imul(B,$),i=(i=Math.imul(B,tt))+Math.imul(N,$)|0,a=Math.imul(N,tt),n=n+Math.imul(D,rt)|0,i=(i=i+Math.imul(D,nt)|0)+Math.imul(R,rt)|0,a=a+Math.imul(R,nt)|0,n=n+Math.imul(I,at)|0,i=(i=i+Math.imul(I,ot)|0)+Math.imul(O,at)|0,a=a+Math.imul(O,ot)|0,n=n+Math.imul(L,lt)|0,i=(i=i+Math.imul(L,ct)|0)+Math.imul(C,lt)|0,a=a+Math.imul(C,ct)|0,n=n+Math.imul(M,ft)|0,i=(i=i+Math.imul(M,ht)|0)+Math.imul(S,ft)|0,a=a+Math.imul(S,ht)|0;var Lt=(c+(n=n+Math.imul(T,dt)|0)|0)+((8191&(i=(i=i+Math.imul(T,mt)|0)+Math.imul(k,dt)|0))<<13)|0;c=((a=a+Math.imul(k,mt)|0)+(i>>>13)|0)+(Lt>>>26)|0,Lt&=67108863,n=Math.imul(B,rt),i=(i=Math.imul(B,nt))+Math.imul(N,rt)|0,a=Math.imul(N,nt),n=n+Math.imul(D,at)|0,i=(i=i+Math.imul(D,ot)|0)+Math.imul(R,at)|0,a=a+Math.imul(R,ot)|0,n=n+Math.imul(I,lt)|0,i=(i=i+Math.imul(I,ct)|0)+Math.imul(O,lt)|0,a=a+Math.imul(O,ct)|0,n=n+Math.imul(L,ft)|0,i=(i=i+Math.imul(L,ht)|0)+Math.imul(C,ft)|0,a=a+Math.imul(C,ht)|0;var Ct=(c+(n=n+Math.imul(M,dt)|0)|0)+((8191&(i=(i=i+Math.imul(M,mt)|0)+Math.imul(S,dt)|0))<<13)|0;c=((a=a+Math.imul(S,mt)|0)+(i>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(B,at),i=(i=Math.imul(B,ot))+Math.imul(N,at)|0,a=Math.imul(N,ot),n=n+Math.imul(D,lt)|0,i=(i=i+Math.imul(D,ct)|0)+Math.imul(R,lt)|0,a=a+Math.imul(R,ct)|0,n=n+Math.imul(I,ft)|0,i=(i=i+Math.imul(I,ht)|0)+Math.imul(O,ft)|0,a=a+Math.imul(O,ht)|0;var Pt=(c+(n=n+Math.imul(L,dt)|0)|0)+((8191&(i=(i=i+Math.imul(L,mt)|0)+Math.imul(C,dt)|0))<<13)|0;c=((a=a+Math.imul(C,mt)|0)+(i>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(B,lt),i=(i=Math.imul(B,ct))+Math.imul(N,lt)|0,a=Math.imul(N,ct),n=n+Math.imul(D,ft)|0,i=(i=i+Math.imul(D,ht)|0)+Math.imul(R,ft)|0,a=a+Math.imul(R,ht)|0;var It=(c+(n=n+Math.imul(I,dt)|0)|0)+((8191&(i=(i=i+Math.imul(I,mt)|0)+Math.imul(O,dt)|0))<<13)|0;c=((a=a+Math.imul(O,mt)|0)+(i>>>13)|0)+(It>>>26)|0,It&=67108863,n=Math.imul(B,ft),i=(i=Math.imul(B,ht))+Math.imul(N,ft)|0,a=Math.imul(N,ht);var Ot=(c+(n=n+Math.imul(D,dt)|0)|0)+((8191&(i=(i=i+Math.imul(D,mt)|0)+Math.imul(R,dt)|0))<<13)|0;c=((a=a+Math.imul(R,mt)|0)+(i>>>13)|0)+(Ot>>>26)|0,Ot&=67108863;var zt=(c+(n=Math.imul(B,dt))|0)+((8191&(i=(i=Math.imul(B,mt))+Math.imul(N,dt)|0))<<13)|0;return c=((a=Math.imul(N,mt))+(i>>>13)|0)+(zt>>>26)|0,zt&=67108863,l[0]=gt,l[1]=vt,l[2]=yt,l[3]=xt,l[4]=bt,l[5]=_t,l[6]=wt,l[7]=Tt,l[8]=kt,l[9]=At,l[10]=Mt,l[11]=St,l[12]=Et,l[13]=Lt,l[14]=Ct,l[15]=Pt,l[16]=It,l[17]=Ot,l[18]=zt,0!==c&&(l[19]=c,r.length++),r};function m(t,e,r){return(new g).mulp(t,e,r)}function g(t,e){this.x=t,this.y=e}Math.imul||(d=p),a.prototype.mulTo=function(t,e){var r=this.length+t.length;return 10===this.length&&10===t.length?d(this,t,e):r<63?p(this,t,e):r<1024?function(t,e,r){r.negative=e.negative^t.negative,r.length=t.length+e.length;for(var n=0,i=0,a=0;a>>26)|0)>>>26,o&=67108863}r.words[a]=s,n=o,o=i}return 0!==n?r.words[a]=n:r.length--,r.strip()}(this,t,e):m(this,t,e)},g.prototype.makeRBT=function(t){for(var e=new Array(t),r=a.prototype._countBits(t)-1,n=0;n>=1;return n},g.prototype.permute=function(t,e,r,n,i,a){for(var o=0;o>>=1)i++;return 1<>>=13,r[2*o+1]=8191&a,a>>>=13;for(o=2*e;o>=26,e+=i/67108864|0,e+=a>>>26,this.words[r]=67108863&a}return 0!==e&&(this.words[r]=e,this.length++),this},a.prototype.muln=function(t){return this.clone().imuln(t)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),r=0;r>>i}return e}(t);if(0===e.length)return new a(1);for(var r=this,n=0;n=0);var e,r=t%26,i=(t-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var o=0;for(e=0;e>>26-r}o&&(this.words[e]=o,this.length++)}if(0!==i){for(e=this.length-1;e>=0;e--)this.words[e+i]=this.words[e];for(e=0;e=0),i=e?(e-e%26)/26:0;var a=t%26,o=Math.min((t-a)/26,this.length),s=67108863^67108863>>>a<o)for(this.length-=o,c=0;c=0&&(0!==u||c>=i);c--){var f=0|this.words[c];this.words[c]=u<<26-a|f>>>a,u=f&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(t,e,r){return n(0===this.negative),this.iushrn(t,e,r)},a.prototype.shln=function(t){return this.clone().ishln(t)},a.prototype.ushln=function(t){return this.clone().iushln(t)},a.prototype.shrn=function(t){return this.clone().ishrn(t)},a.prototype.ushrn=function(t){return this.clone().iushrn(t)},a.prototype.testn=function(t){n("number"==typeof t&&t>=0);var e=t%26,r=(t-e)/26,i=1<=0);var e=t%26,r=(t-e)/26;if(n(0===this.negative,"imaskn works only with positive numbers"),this.length<=r)return this;if(0!==e&&r++,this.length=Math.min(r,this.length),0!==e){var i=67108863^67108863>>>e<=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},a.prototype.isubn=function(t){if(n("number"==typeof t),n(t<67108864),t<0)return this.iaddn(-t);if(0!==this.negative)return this.negative=0,this.iaddn(t),this.negative=1,this;if(this.words[0]-=t,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var e=0;e>26)-(l/67108864|0),this.words[i+r]=67108863&a}for(;i>26,this.words[i+r]=67108863&a;if(0===s)return this.strip();for(n(-1===s),s=0,i=0;i>26,this.words[i]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(t,e){var r=(this.length,t.length),n=this.clone(),i=t,o=0|i.words[i.length-1];0!==(r=26-this._countBits(o))&&(i=i.ushln(r),n.iushln(r),o=0|i.words[i.length-1]);var s,l=n.length-i.length;if("mod"!==e){(s=new a(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c=0;f--){var h=67108864*(0|n.words[i.length+f])+(0|n.words[i.length+f-1]);for(h=Math.min(h/o|0,67108863),n._ishlnsubmul(i,h,f);0!==n.negative;)h--,n.negative=0,n._ishlnsubmul(i,1,f),n.isZero()||(n.negative^=1);s&&(s.words[f]=h)}return s&&s.strip(),n.strip(),"div"!==e&&0!==r&&n.iushrn(r),{div:s||null,mod:n}},a.prototype.divmod=function(t,e,r){return n(!t.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===t.negative?(s=this.neg().divmod(t,e),"mod"!==e&&(i=s.div.neg()),"div"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.iadd(t)),{div:i,mod:o}):0===this.negative&&0!==t.negative?(s=this.divmod(t.neg(),e),"mod"!==e&&(i=s.div.neg()),{div:i,mod:s.mod}):0!=(this.negative&t.negative)?(s=this.neg().divmod(t.neg(),e),"div"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.isub(t)),{div:s.div,mod:o}):t.length>this.length||this.cmp(t)<0?{div:new a(0),mod:this}:1===t.length?"div"===e?{div:this.divn(t.words[0]),mod:null}:"mod"===e?{div:null,mod:new a(this.modn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new a(this.modn(t.words[0]))}:this._wordDiv(t,e);var i,o,s},a.prototype.div=function(t){return this.divmod(t,"div",!1).div},a.prototype.mod=function(t){return this.divmod(t,"mod",!1).mod},a.prototype.umod=function(t){return this.divmod(t,"mod",!0).mod},a.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var r=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),i=t.andln(1),a=r.cmp(n);return a<0||1===i&&0===a?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},a.prototype.modn=function(t){n(t<=67108863);for(var e=(1<<26)%t,r=0,i=this.length-1;i>=0;i--)r=(e*r+(0|this.words[i]))%t;return r},a.prototype.idivn=function(t){n(t<=67108863);for(var e=0,r=this.length-1;r>=0;r--){var i=(0|this.words[r])+67108864*e;this.words[r]=i/t|0,e=i%t}return this.strip()},a.prototype.divn=function(t){return this.clone().idivn(t)},a.prototype.egcd=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var i=new a(1),o=new a(0),s=new a(0),l=new a(1),c=0;e.isEven()&&r.isEven();)e.iushrn(1),r.iushrn(1),++c;for(var u=r.clone(),f=e.clone();!e.isZero();){for(var h=0,p=1;0==(e.words[0]&p)&&h<26;++h,p<<=1);if(h>0)for(e.iushrn(h);h-- >0;)(i.isOdd()||o.isOdd())&&(i.iadd(u),o.isub(f)),i.iushrn(1),o.iushrn(1);for(var d=0,m=1;0==(r.words[0]&m)&&d<26;++d,m<<=1);if(d>0)for(r.iushrn(d);d-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(f)),s.iushrn(1),l.iushrn(1);e.cmp(r)>=0?(e.isub(r),i.isub(s),o.isub(l)):(r.isub(e),s.isub(i),l.isub(o))}return{a:s,b:l,gcd:r.iushln(c)}},a.prototype._invmp=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var i,o=new a(1),s=new a(0),l=r.clone();e.cmpn(1)>0&&r.cmpn(1)>0;){for(var c=0,u=1;0==(e.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(e.iushrn(c);c-- >0;)o.isOdd()&&o.iadd(l),o.iushrn(1);for(var f=0,h=1;0==(r.words[0]&h)&&f<26;++f,h<<=1);if(f>0)for(r.iushrn(f);f-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);e.cmp(r)>=0?(e.isub(r),o.isub(s)):(r.isub(e),s.isub(o))}return(i=0===e.cmpn(1)?o:s).cmpn(0)<0&&i.iadd(t),i},a.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),r=t.clone();e.negative=0,r.negative=0;for(var n=0;e.isEven()&&r.isEven();n++)e.iushrn(1),r.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;r.isEven();)r.iushrn(1);var i=e.cmp(r);if(i<0){var a=e;e=r,r=a}else if(0===i||0===r.cmpn(1))break;e.isub(r)}return r.iushln(n)},a.prototype.invm=function(t){return this.egcd(t).a.umod(t)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(t){return this.words[0]&t},a.prototype.bincn=function(t){n("number"==typeof t);var e=t%26,r=(t-e)/26,i=1<>>26,s&=67108863,this.words[o]=s}return 0!==a&&(this.words[o]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(t){var e,r=t<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)e=1;else{r&&(t=-t),n(t<=67108863,"Number is too big");var i=0|this.words[0];e=i===t?0:it.length)return 1;if(this.length=0;r--){var n=0|this.words[r],i=0|t.words[r];if(n!==i){ni&&(e=1);break}}return e},a.prototype.gtn=function(t){return 1===this.cmpn(t)},a.prototype.gt=function(t){return 1===this.cmp(t)},a.prototype.gten=function(t){return this.cmpn(t)>=0},a.prototype.gte=function(t){return this.cmp(t)>=0},a.prototype.ltn=function(t){return-1===this.cmpn(t)},a.prototype.lt=function(t){return-1===this.cmp(t)},a.prototype.lten=function(t){return this.cmpn(t)<=0},a.prototype.lte=function(t){return this.cmp(t)<=0},a.prototype.eqn=function(t){return 0===this.cmpn(t)},a.prototype.eq=function(t){return 0===this.cmp(t)},a.red=function(t){return new T(t)},a.prototype.toRed=function(t){return n(!this.red,"Already a number in reduction context"),n(0===this.negative,"red works only with positives"),t.convertTo(this)._forceRed(t)},a.prototype.fromRed=function(){return n(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(t){return this.red=t,this},a.prototype.forceRed=function(t){return n(!this.red,"Already a number in reduction context"),this._forceRed(t)},a.prototype.redAdd=function(t){return n(this.red,"redAdd works only with red numbers"),this.red.add(this,t)},a.prototype.redIAdd=function(t){return n(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,t)},a.prototype.redSub=function(t){return n(this.red,"redSub works only with red numbers"),this.red.sub(this,t)},a.prototype.redISub=function(t){return n(this.red,"redISub works only with red numbers"),this.red.isub(this,t)},a.prototype.redShl=function(t){return n(this.red,"redShl works only with red numbers"),this.red.shl(this,t)},a.prototype.redMul=function(t){return n(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.mul(this,t)},a.prototype.redIMul=function(t){return n(this.red,"redMul works only with red numbers"),this.red._verify2(this,t),this.red.imul(this,t)},a.prototype.redSqr=function(){return n(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return n(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return n(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return n(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return n(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(t){return n(this.red&&!t.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,t)};var v={k256:null,p224:null,p192:null,p25519:null};function y(t,e){this.name=t,this.p=new a(e,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function x(){y.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function b(){y.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function _(){y.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function w(){y.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function T(t){if("string"==typeof t){var e=a._prime(t);this.m=e.p,this.prime=e}else n(t.gtn(1),"modulus must be greater than 1"),this.m=t,this.prime=null}function k(t){T.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}y.prototype._tmp=function(){var t=new a(null);return t.words=new Array(Math.ceil(this.n/13)),t},y.prototype.ireduce=function(t){var e,r=t;do{this.split(r,this.tmp),e=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},y.prototype.split=function(t,e){t.iushrn(this.n,0,e)},y.prototype.imulK=function(t){return t.imul(this.k)},i(x,y),x.prototype.split=function(t,e){for(var r=Math.min(t.length,9),n=0;n>>22,i=a}i>>>=22,t.words[n-10]=i,0===i&&t.length>10?t.length-=10:t.length-=9},x.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,r=0;r>>=26,t.words[r]=i,e=n}return 0!==e&&(t.words[t.length++]=e),t},a._prime=function(t){if(v[t])return v[t];var e;if("k256"===t)e=new x;else if("p224"===t)e=new b;else if("p192"===t)e=new _;else{if("p25519"!==t)throw new Error("Unknown prime "+t);e=new w}return v[t]=e,e},T.prototype._verify1=function(t){n(0===t.negative,"red works only with positives"),n(t.red,"red works only with red numbers")},T.prototype._verify2=function(t,e){n(0==(t.negative|e.negative),"red works only with positives"),n(t.red&&t.red===e.red,"red works only with red numbers")},T.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):t.umod(this.m)._forceRed(this)},T.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},T.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},T.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},T.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},T.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},T.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},T.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},T.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},T.prototype.isqr=function(t){return this.imul(t,t.clone())},T.prototype.sqr=function(t){return this.mul(t,t)},T.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(n(e%2==1),3===e){var r=this.m.add(new a(1)).iushrn(2);return this.pow(t,r)}for(var i=this.m.subn(1),o=0;!i.isZero()&&0===i.andln(1);)o++,i.iushrn(1);n(!i.isZero());var s=new a(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new a(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var f=this.pow(u,i),h=this.pow(t,i.addn(1).iushrn(1)),p=this.pow(t,i),d=o;0!==p.cmp(s);){for(var m=p,g=0;0!==m.cmp(s);g++)m=m.redSqr();n(g=0;n--){for(var c=e.words[n],u=l-1;u>=0;u--){var f=c>>u&1;i!==r[0]&&(i=this.sqr(i)),0!==f||0!==o?(o<<=1,o|=f,(4===++s||0===n&&0===u)&&(i=this.mul(i,r[o]),s=0,o=0)):s=0}l=26}return i},T.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},T.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},a.mont=function(t){return new k(t)},i(k,T),k.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},k.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},k.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).iushrn(this.shift),a=i;return i.cmp(this.m)>=0?a=i.isub(this.m):i.cmpn(0)<0&&(a=i.iadd(this.m)),a._forceRed(this)},k.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new a(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).iushrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},k.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}(void 0===e||e,this)},{buffer:111}],97:[function(t,e,r){"use strict";var n=t("./lib/bn-sign");e.exports=function(t){return n(t[0])*n(t[1])}},{"./lib/bn-sign":88}],98:[function(t,e,r){"use strict";var n=t("./lib/rationalize");e.exports=function(t,e){return n(t[0].mul(e[1]).sub(t[1].mul(e[0])),t[1].mul(e[1]))}},{"./lib/rationalize":93}],99:[function(t,e,r){"use strict";var n=t("./lib/bn-to-num"),i=t("./lib/ctz");e.exports=function(t){var e=t[0],r=t[1];if(0===e.cmpn(0))return 0;var a=e.abs().divmod(r.abs()),o=a.div,s=n(o),l=a.mod,c=e.negative!==r.negative?-1:1;if(0===l.cmpn(0))return c*s;if(s){var u=i(s)+4,f=n(l.ushln(u).divRound(r));return c*(s+f*Math.pow(2,-u))}var h=r.bitLength()-l.bitLength()+53;f=n(l.ushln(h).divRound(r));return h<1023?c*f*Math.pow(2,-h):(f*=Math.pow(2,-1023),c*f*Math.pow(2,1023-h))}},{"./lib/bn-to-num":89,"./lib/ctz":90}],100:[function(t,e,r){"use strict";function n(t,e,r,n,i){for(var a=i+1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)>=0?(a=o,i=o-1):n=o+1}return a}function i(t,e,r,n,i){for(var a=i+1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)>0?(a=o,i=o-1):n=o+1}return a}function a(t,e,r,n,i){for(var a=n-1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)<0?(a=o,n=o+1):i=o-1}return a}function o(t,e,r,n,i){for(var a=n-1;n<=i;){var o=n+i>>>1,s=t[o];(void 0!==r?r(s,e):s-e)<=0?(a=o,n=o+1):i=o-1}return a}function s(t,e,r,n,i){for(;n<=i;){var a=n+i>>>1,o=t[a],s=void 0!==r?r(o,e):o-e;if(0===s)return a;s<=0?n=a+1:i=a-1}return-1}function l(t,e,r,n,i,a){return"function"==typeof r?a(t,e,r,void 0===n?0:0|n,void 0===i?t.length-1:0|i):a(t,e,void 0,void 0===r?0:0|r,void 0===n?t.length-1:0|n)}e.exports={ge:function(t,e,r,i,a){return l(t,e,r,i,a,n)},gt:function(t,e,r,n,a){return l(t,e,r,n,a,i)},lt:function(t,e,r,n,i){return l(t,e,r,n,i,a)},le:function(t,e,r,n,i){return l(t,e,r,n,i,o)},eq:function(t,e,r,n,i){return l(t,e,r,n,i,s)}}},{}],101:[function(t,e,r){"use strict";function n(t){var e=32;return(t&=-t)&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}r.INT_BITS=32,r.INT_MAX=2147483647,r.INT_MIN=-1<<31,r.sign=function(t){return(t>0)-(t<0)},r.abs=function(t){var e=t>>31;return(t^e)-e},r.min=function(t,e){return e^(t^e)&-(t65535)<<4,e|=r=((t>>>=e)>255)<<3,e|=r=((t>>>=r)>15)<<2,(e|=r=((t>>>=r)>3)<<1)|(t>>>=r)>>1},r.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},r.popCount=function(t){return 16843009*((t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135)>>>24},r.countTrailingZeros=n,r.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)+1},r.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)-(t>>>1)},r.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,27030>>>(t&=15)&1};var i=new Array(256);!function(t){for(var e=0;e<256;++e){var r=e,n=e,i=7;for(r>>>=1;r;r>>>=1)n<<=1,n|=1&r,--i;t[e]=n<>>8&255]<<16|i[t>>>16&255]<<8|i[t>>>24&255]},r.interleave2=function(t,e){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))<<1},r.deinterleave2=function(t,e){return(t=65535&((t=16711935&((t=252645135&((t=858993459&((t=t>>>e&1431655765)|t>>>1))|t>>>2))|t>>>4))|t>>>16))<<16>>16},r.interleave3=function(t,e,r){return t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2),(t|=(e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2))<<1)|(r=1227133513&((r=3272356035&((r=251719695&((r=4278190335&((r&=1023)|r<<16))|r<<8))|r<<4))|r<<2))<<2},r.deinterleave3=function(t,e){return(t=1023&((t=4278190335&((t=251719695&((t=3272356035&((t=t>>>e&1227133513)|t>>>2))|t>>>4))|t>>>8))|t>>>16))<<22>>22},r.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>n(t)+1}},{}],102:[function(t,e,r){"use strict";var n=t("clamp");e.exports=function(t,e){e||(e={});var r,o,s,l,c,u,f,h,p,d,m,g=null==e.cutoff?.25:e.cutoff,v=null==e.radius?8:e.radius,y=e.channel||0;if(ArrayBuffer.isView(t)||Array.isArray(t)){if(!e.width||!e.height)throw Error("For raw data width and height should be provided by options");r=e.width,o=e.height,l=t,u=e.stride?e.stride:Math.floor(t.length/r/o)}else window.HTMLCanvasElement&&t instanceof window.HTMLCanvasElement?(f=(h=t).getContext("2d"),r=h.width,o=h.height,p=f.getImageData(0,0,r,o),l=p.data,u=4):window.CanvasRenderingContext2D&&t instanceof window.CanvasRenderingContext2D?(h=t.canvas,f=t,r=h.width,o=h.height,p=f.getImageData(0,0,r,o),l=p.data,u=4):window.ImageData&&t instanceof window.ImageData&&(p=t,r=t.width,o=t.height,l=p.data,u=4);if(s=Math.max(r,o),window.Uint8ClampedArray&&l instanceof window.Uint8ClampedArray||window.Uint8Array&&l instanceof window.Uint8Array)for(c=l,l=Array(r*o),d=0,m=c.length;d>>1;if(!(u<=0)){var f,h=i.mallocDouble(2*u*s),p=i.mallocInt32(s);if((s=l(t,u,h,p))>0){if(1===u&&n)a.init(s),f=a.sweepComplete(u,r,0,s,h,p,0,s,h,p);else{var d=i.mallocDouble(2*u*c),m=i.mallocInt32(c);(c=l(e,u,d,m))>0&&(a.init(s+c),f=1===u?a.sweepBipartite(u,r,0,s,h,p,0,c,d,m):o(u,r,n,s,h,p,c,d,m),i.free(d),i.free(m))}i.free(h),i.free(p)}return f}}}function u(t,e){n.push([t,e])}function f(t){return n=[],c(t,t,u,!0),n}function h(t,e){return n=[],c(t,e,u,!1),n}},{"./lib/intersect":106,"./lib/sweep":110,"typedarray-pool":590}],105:[function(t,e,r){"use strict";function n(t){return t?function(t,e,r,n,i,a,o,s,l,c,u){return i-n>l-s?function(t,e,r,n,i,a,o,s,l,c,u){for(var f=2*t,h=n,p=f*n;hc-l?n?function(t,e,r,n,i,a,o,s,l,c,u){for(var f=2*t,h=n,p=f*n;h0;){var L=6*(S-=1),C=v[L],P=v[L+1],I=v[L+2],O=v[L+3],z=v[L+4],D=v[L+5],R=2*S,F=y[R],B=y[R+1],N=1&D,j=!!(16&D),U=u,V=w,H=k,q=A;if(N&&(U=k,V=A,H=u,q=w),!(2&D&&(I=p(t,C,P,I,U,V,B),P>=I)||4&D&&(P=d(t,C,P,I,U,V,F))>=I)){var G=I-P,Y=z-O;if(j){if(t*G*(G+Y)<1<<22){if(void 0!==(M=l.scanComplete(t,C,e,P,I,U,V,O,z,H,q)))return M;continue}}else{if(t*Math.min(G,Y)<128){if(void 0!==(M=o(t,C,e,N,P,I,U,V,O,z,H,q)))return M;continue}if(t*G*Y<1<<22){if(void 0!==(M=l.scanBipartite(t,C,e,N,P,I,U,V,O,z,H,q)))return M;continue}}var W=f(t,C,P,I,U,V,F,B);if(P=p0)&&!(p1>=hi)"),h=u("lo===p0"),p=u("lo>>1,f=2*t,h=u,p=o[f*u+e];for(;l=y?(h=v,p=y):g>=b?(h=m,p=g):(h=x,p=b):y>=b?(h=v,p=y):b>=g?(h=m,p=g):(h=x,p=b);for(var _=f*(c-1),w=f*h,T=0;Tr&&i[f+e]>c;--u,f-=o){for(var h=f,p=f+o,d=0;dh;++h,l+=s){if(i[l+f]===o)if(u===h)u+=1,c+=s;else{for(var p=0;s>p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},"loh;++h,l+=s){if(i[l+f]p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},"lo<=p0":function(t,e,r,n,i,a,o){for(var s=2*t,l=s*r,c=l,u=r,f=t+e,h=r;n>h;++h,l+=s){if(i[l+f]<=o)if(u===h)u+=1,c+=s;else{for(var p=0;s>p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},"hi<=p0":function(t,e,r,n,i,a,o){for(var s=2*t,l=s*r,c=l,u=r,f=t+e,h=r;n>h;++h,l+=s){if(i[l+f]<=o)if(u===h)u+=1,c+=s;else{for(var p=0;s>p;++p){var d=i[l+p];i[l+p]=i[c],i[c++]=d}var m=a[h];a[h]=a[u],a[u++]=m}}return u},"lop;++p,l+=s){var d=i[l+f],m=i[l+h];if(dg;++g){var v=i[l+g];i[l+g]=i[c],i[c++]=v}var y=a[p];a[p]=a[u],a[u++]=y}}return u},"lo<=p0&&p0<=hi":function(t,e,r,n,i,a,o){for(var s=2*t,l=s*r,c=l,u=r,f=e,h=t+e,p=r;n>p;++p,l+=s){var d=i[l+f],m=i[l+h];if(d<=o&&o<=m)if(u===p)u+=1,c+=s;else{for(var g=0;s>g;++g){var v=i[l+g];i[l+g]=i[c],i[c++]=v}var y=a[p];a[p]=a[u],a[u++]=y}}return u},"!(lo>=p0)&&!(p1>=hi)":function(t,e,r,n,i,a,o,s){for(var l=2*t,c=l*r,u=c,f=r,h=e,p=t+e,d=r;n>d;++d,c+=l){var m=i[c+h],g=i[c+p];if(!(m>=o||s>=g))if(f===d)f+=1,u+=l;else{for(var v=0;l>v;++v){var y=i[c+v];i[c+v]=i[u],i[u++]=y}var x=a[d];a[d]=a[f],a[f++]=x}}return f}}},{}],109:[function(t,e,r){"use strict";e.exports=function(t,e){e<=128?n(0,e-1,t):function t(e,r,u){var f=(r-e+1)/6|0,h=e+f,p=r-f,d=e+r>>1,m=d-f,g=d+f,v=h,y=m,x=d,b=g,_=p,w=e+1,T=r-1,k=0;l(v,y,u)&&(k=v,v=y,y=k);l(b,_,u)&&(k=b,b=_,_=k);l(v,x,u)&&(k=v,v=x,x=k);l(y,x,u)&&(k=y,y=x,x=k);l(v,b,u)&&(k=v,v=b,b=k);l(x,b,u)&&(k=x,x=b,b=k);l(y,_,u)&&(k=y,y=_,_=k);l(y,x,u)&&(k=y,y=x,x=k);l(b,_,u)&&(k=b,b=_,_=k);for(var A=u[2*y],M=u[2*y+1],S=u[2*b],E=u[2*b+1],L=2*v,C=2*x,P=2*_,I=2*h,O=2*d,z=2*p,D=0;D<2;++D){var R=u[L+D],F=u[C+D],B=u[P+D];u[I+D]=R,u[O+D]=F,u[z+D]=B}a(m,e,u),a(g,r,u);for(var N=w;N<=T;++N)if(c(N,A,M,u))N!==w&&i(N,w,u),++w;else if(!c(N,S,E,u))for(;;){if(c(T,S,E,u)){c(T,A,M,u)?(o(N,w,T,u),++w,--T):(i(N,T,u),--T);break}if(--Tt;){var c=r[l-2],u=r[l-1];if(cr[e+1])}function c(t,e,r,n){var i=n[t*=2];return i>>1;a(h,M);var S=0,E=0;for(w=0;w=1<<28)p(l,c,E--,L=L-(1<<28)|0);else if(L>=0)p(o,s,S--,L);else if(L<=-(1<<28)){L=-L-(1<<28)|0;for(var C=0;C>>1;a(h,E);var L=0,C=0,P=0;for(k=0;k>1==h[2*k+3]>>1&&(O=2,k+=1),I<0){for(var z=-(I>>1)-1,D=0;D>1)-1;0===O?p(o,s,L--,z):1===O?p(l,c,C--,z):2===O&&p(u,f,P--,z)}}},scanBipartite:function(t,e,r,n,i,l,c,u,f,m,g,v){var y=0,x=2*t,b=e,_=e+t,w=1,T=1;n?T=1<<28:w=1<<28;for(var k=i;k>>1;a(h,E);var L=0;for(k=0;k=1<<28?(P=!n,A-=1<<28):(P=!!n,A-=1),P)d(o,s,L++,A);else{var I=v[A],O=x*A,z=g[O+e+1],D=g[O+e+1+t];t:for(var R=0;R>>1;a(h,w);var T=0;for(y=0;y=1<<28)o[T++]=x-(1<<28);else{var A=p[x-=1],M=m*x,S=f[M+e+1],E=f[M+e+1+t];t:for(var L=0;L=0;--L)if(o[L]===x){for(O=L+1;O + * @license MIT + */ +"use strict";var e=t("base64-js"),n=t("ieee754");r.Buffer=a,r.SlowBuffer=function(t){+t!=t&&(t=0);return a.alloc(+t)},r.INSPECT_MAX_BYTES=50;function i(t){if(t>2147483647)throw new RangeError('The value "'+t+'" is invalid for option "size"');var e=new Uint8Array(t);return e.__proto__=a.prototype,e}function a(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return l(t)}return o(t,e,r)}function o(t,e,r){if("string"==typeof t)return function(t,e){"string"==typeof e&&""!==e||(e="utf8");if(!a.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var r=0|f(t,e),n=i(r),o=n.write(t,e);o!==r&&(n=n.slice(0,o));return n}(t,e);if(ArrayBuffer.isView(t))return c(t);if(null==t)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(B(t,ArrayBuffer)||t&&B(t.buffer,ArrayBuffer))return function(t,e,r){if(e<0||t.byteLength=2147483647)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+2147483647..toString(16)+" bytes");return 0|t}function f(t,e){if(a.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||B(t,ArrayBuffer))return t.byteLength;if("string"!=typeof t)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var r=t.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(e){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return D(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return R(t).length;default:if(i)return n?-1:D(t).length;e=(""+e).toLowerCase(),i=!0}}function h(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return M(this,e,r);case"utf8":case"utf-8":return T(this,e,r);case"ascii":return k(this,e,r);case"latin1":case"binary":return A(this,e,r);case"base64":return w(this,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,e,r);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}function p(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function d(t,e,r,n,i){if(0===t.length)return-1;if("string"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),N(r=+r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0){if(!i)return-1;r=0}if("string"==typeof e&&(e=a.from(e,n)),a.isBuffer(e))return 0===e.length?-1:m(t,e,r,n,i);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):m(t,[e],r,n,i);throw new TypeError("val must be string, number or Buffer")}function m(t,e,r,n,i){var a,o=1,s=t.length,l=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(i){var u=-1;for(a=r;as&&(r=s-l),a=r;a>=0;a--){for(var f=!0,h=0;hi&&(n=i):n=i;var a=e.length;n>a/2&&(n=a/2);for(var o=0;o>8,i=r%256,a.push(i),a.push(n);return a}(e,t.length-r),t,r,n)}function w(t,r,n){return 0===r&&n===t.length?e.fromByteArray(t):e.fromByteArray(t.slice(r,n))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i239?4:c>223?3:c>191?2:1;if(i+f<=r)switch(f){case 1:c<128&&(u=c);break;case 2:128==(192&(a=t[i+1]))&&(l=(31&c)<<6|63&a)>127&&(u=l);break;case 3:a=t[i+1],o=t[i+2],128==(192&a)&&128==(192&o)&&(l=(15&c)<<12|(63&a)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:a=t[i+1],o=t[i+2],s=t[i+3],128==(192&a)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&a)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,f=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),i+=f}return function(t){var e=t.length;if(e<=4096)return String.fromCharCode.apply(String,t);var r="",n=0;for(;ne&&(t+=" ... "),""},a.prototype.compare=function(t,e,r,n,i){if(B(t,Uint8Array)&&(t=a.from(t,t.offset,t.byteLength)),!a.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),e<0||r>t.length||n<0||i>this.length)throw new RangeError("out of range index");if(n>=i&&e>=r)return 0;if(n>=i)return-1;if(e>=r)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(n>>>=0),s=(r>>>=0)-(e>>>=0),l=Math.min(o,s),c=this.slice(n,i),u=t.slice(e,r),f=0;f>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var i=this.length-e;if((void 0===r||r>i)&&(r=i),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var a=!1;;)switch(n){case"hex":return g(this,t,e,r);case"utf8":case"utf-8":return v(this,t,e,r);case"ascii":return y(this,t,e,r);case"latin1":case"binary":return x(this,t,e,r);case"base64":return b(this,t,e,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return _(this,t,e,r);default:if(a)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),a=!0}},a.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function k(t,e,r){var n="";r=Math.min(t.length,r);for(var i=e;in)&&(r=n);for(var i="",a=e;ar)throw new RangeError("Trying to access beyond buffer length")}function L(t,e,r,n,i,o){if(!a.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||et.length)throw new RangeError("Index out of range")}function C(t,e,r,n,i,a){if(r+n>t.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function P(t,e,r,i,a){return e=+e,r>>>=0,a||C(t,0,r,4),n.write(t,e,r,i,23,4),r+4}function I(t,e,r,i,a){return e=+e,r>>>=0,a||C(t,0,r,8),n.write(t,e,r,i,52,8),r+8}a.prototype.slice=function(t,e){var r=this.length;(t=~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),(e=void 0===e?r:~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),e>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t],i=1,a=0;++a>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t+--e],i=1;e>0&&(i*=256);)n+=this[t+--e]*i;return n},a.prototype.readUInt8=function(t,e){return t>>>=0,e||E(t,1,this.length),this[t]},a.prototype.readUInt16LE=function(t,e){return t>>>=0,e||E(t,2,this.length),this[t]|this[t+1]<<8},a.prototype.readUInt16BE=function(t,e){return t>>>=0,e||E(t,2,this.length),this[t]<<8|this[t+1]},a.prototype.readUInt32LE=function(t,e){return t>>>=0,e||E(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},a.prototype.readUInt32BE=function(t,e){return t>>>=0,e||E(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},a.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t],i=1,a=0;++a=(i*=128)&&(n-=Math.pow(2,8*e)),n},a.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=e,i=1,a=this[t+--n];n>0&&(i*=256);)a+=this[t+--n]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*e)),a},a.prototype.readInt8=function(t,e){return t>>>=0,e||E(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},a.prototype.readInt16LE=function(t,e){t>>>=0,e||E(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},a.prototype.readInt16BE=function(t,e){t>>>=0,e||E(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},a.prototype.readInt32LE=function(t,e){return t>>>=0,e||E(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},a.prototype.readInt32BE=function(t,e){return t>>>=0,e||E(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},a.prototype.readFloatLE=function(t,e){return t>>>=0,e||E(t,4,this.length),n.read(this,t,!0,23,4)},a.prototype.readFloatBE=function(t,e){return t>>>=0,e||E(t,4,this.length),n.read(this,t,!1,23,4)},a.prototype.readDoubleLE=function(t,e){return t>>>=0,e||E(t,8,this.length),n.read(this,t,!0,52,8)},a.prototype.readDoubleBE=function(t,e){return t>>>=0,e||E(t,8,this.length),n.read(this,t,!1,52,8)},a.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||L(this,t,e,r,Math.pow(2,8*r)-1,0);var i=1,a=0;for(this[e]=255&t;++a>>=0,r>>>=0,n)||L(this,t,e,r,Math.pow(2,8*r)-1,0);var i=r-1,a=1;for(this[e+i]=255&t;--i>=0&&(a*=256);)this[e+i]=t/a&255;return e+r},a.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,1,255,0),this[e]=255&t,e+1},a.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},a.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},a.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},a.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},a.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var i=Math.pow(2,8*r-1);L(this,t,e,r,i-1,-i)}var a=0,o=1,s=0;for(this[e]=255&t;++a>0)-s&255;return e+r},a.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var i=Math.pow(2,8*r-1);L(this,t,e,r,i-1,-i)}var a=r-1,o=1,s=0;for(this[e+a]=255&t;--a>=0&&(o*=256);)t<0&&0===s&&0!==this[e+a+1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+r},a.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},a.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},a.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},a.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},a.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||L(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},a.prototype.writeFloatLE=function(t,e,r){return P(this,t,e,!0,r)},a.prototype.writeFloatBE=function(t,e,r){return P(this,t,e,!1,r)},a.prototype.writeDoubleLE=function(t,e,r){return I(this,t,e,!0,r)},a.prototype.writeDoubleBE=function(t,e,r){return I(this,t,e,!1,r)},a.prototype.copy=function(t,e,r,n){if(!a.isBuffer(t))throw new TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-e=0;--o)t[o+e]=this[o+r];else Uint8Array.prototype.set.call(t,this.subarray(r,n),e);return i},a.prototype.fill=function(t,e,r,n){if("string"==typeof t){if("string"==typeof e?(n=e,e=0,r=this.length):"string"==typeof r&&(n=r,r=this.length),void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!a.isEncoding(n))throw new TypeError("Unknown encoding: "+n);if(1===t.length){var i=t.charCodeAt(0);("utf8"===n&&i<128||"latin1"===n)&&(t=i)}}else"number"==typeof t&&(t&=255);if(e<0||this.length>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),"number"==typeof t)for(o=e;o55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&a.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&a.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&a.push(239,191,189),i=r;continue}r=65536+(i-55296<<10|r-56320)}else i&&(e-=3)>-1&&a.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;a.push(r)}else if(r<2048){if((e-=2)<0)break;a.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;a.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;a.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return a}function R(t){return e.toByteArray(function(t){if((t=(t=t.split("=")[0]).trim().replace(O,"")).length<2)return"";for(;t.length%4!=0;)t+="=";return t}(t))}function F(t,e,r,n){for(var i=0;i=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function B(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function N(t){return t!=t}}).call(this)}).call(this,t("buffer").Buffer)},{"base64-js":82,buffer:112,ieee754:427}],113:[function(t,e,r){"use strict";var n=t("./lib/monotone"),i=t("./lib/triangulation"),a=t("./lib/delaunay"),o=t("./lib/filter");function s(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function l(t,e){return t[0]-e[0]||t[1]-e[1]}function c(t,e,r){return e in t?t[e]:r}e.exports=function(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var u=!!c(r,"delaunay",!0),f=!!c(r,"interior",!0),h=!!c(r,"exterior",!0),p=!!c(r,"infinity",!1);if(!f&&!h||0===t.length)return[];var d=n(t,e);if(u||f!==h||p){for(var m=i(t.length,function(t){return t.map(s).sort(l)}(e)),g=0;g0;){for(var p=r.pop(),d=(s=r.pop(),u=-1,f=-1,l=o[s],1);d=0||(e.flip(s,p),i(t,e,r,u,s,f),i(t,e,r,s,f,u),i(t,e,r,f,p,u),i(t,e,r,p,u,f)))}}},{"binary-search-bounds":100,"robust-in-sphere":522}],115:[function(t,e,r){"use strict";var n,i=t("binary-search-bounds");function a(t,e,r,n,i,a,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=i,this.next=a,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,i=0;i0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-i){c[p]=i;u[p];for(var d=0;d<3;++d){var m=h[3*p+d];m>=0&&0===c[m]&&(f[3*p+d]?l.push(m):(s.push(m),c[m]=i))}}}var g=l;l=s,s=g,l.length=0,i=-i}var v=function(t,e,r){for(var n=0,i=0;i1&&i(r[h[p-2]],r[h[p-1]],a)>0;)t.push([h[p-1],h[p-2],o]),p-=1;h.length=p,h.push(o);var d=f.upperIds;for(p=d.length;p>1&&i(r[d[p-2]],r[d[p-1]],a)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function u(t,e){var r;return(r=t.a[0]d[0]&&i.push(new o(d,p,2,l),new o(p,d,1,l))}i.sort(s);for(var m=i[0].a[0]-(1+Math.abs(i[0].a[0]))*Math.pow(2,-52),g=[new a([m,1],[m,0],-1,[],[],[],[])],v=[],y=(l=0,i.length);l=0}}(),a.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},a.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},a.opposite=function(t,e){for(var r=this.stars[e],n=1,i=r.length;nr?r:t:te?e:t}},{}],122:[function(t,e,r){"use strict";e.exports=function(t,e,r){var n;if(r){n=e;for(var i=new Array(e.length),a=0;ae[2]?1:0)}function v(t,e,r){if(0!==t.length){if(e)for(var n=0;n=0;--a){var x=e[u=(S=n[a])[0]],b=x[0],_=x[1],w=t[b],T=t[_];if((w[0]-T[0]||w[1]-T[1])<0){var k=b;b=_,_=k}x[0]=b;var A,M=x[1]=S[1];for(i&&(A=x[2]);a>0&&n[a-1][0]===u;){var S,E=(S=n[--a])[1];i?e.push([M,E,A]):e.push([M,E]),M=E}i?e.push([M,_,A]):e.push([M,_])}return h}(t,e,h,g,r));return v(e,y,r),!!y||(h.length>0||g.length>0)}},{"./lib/rat-seg-intersect":123,"big-rat":86,"big-rat/cmp":84,"big-rat/to-float":99,"box-intersect":104,nextafter:463,"rat-vec":508,"robust-segment-intersect":527,"union-find":591}],123:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var a=s(e,t),f=s(n,r),h=u(a,f);if(0===o(h))return null;var p=s(t,r),d=u(f,p),m=i(d,h),g=c(a,m);return l(t,g)};var n=t("big-rat/mul"),i=t("big-rat/div"),a=t("big-rat/sub"),o=t("big-rat/sign"),s=t("rat-vec/sub"),l=t("rat-vec/add"),c=t("rat-vec/muls");function u(t,e){return a(n(t[0],e[1]),n(t[1],e[0]))}},{"big-rat/div":85,"big-rat/mul":95,"big-rat/sign":97,"big-rat/sub":98,"rat-vec/add":507,"rat-vec/muls":509,"rat-vec/sub":510}],124:[function(t,e,r){"use strict";var n=t("clamp");function i(t,e){null==e&&(e=!0);var r=t[0],i=t[1],a=t[2],o=t[3];return null==o&&(o=e?1:255),e&&(r*=255,i*=255,a*=255,o*=255),16777216*(r=255&n(r,0,255))+((i=255&n(i,0,255))<<16)+((a=255&n(a,0,255))<<8)+(o=255&n(o,0,255))}e.exports=i,e.exports.to=i,e.exports.from=function(t,e){var r=(t=+t)>>>24,n=(16711680&t)>>>16,i=(65280&t)>>>8,a=255&t;return!1===e?[r,n,i,a]:[r/255,n/255,i/255,a/255]}},{clamp:121}],125:[function(t,e,r){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],126:[function(t,e,r){"use strict";var n=t("color-rgba"),i=t("clamp"),a=t("dtype");e.exports=function(t,e){"float"!==e&&e||(e="array"),"uint"===e&&(e="uint8"),"uint_clamped"===e&&(e="uint8_clamped");var r=new(a(e))(4),o="uint8"!==e&&"uint8_clamped"!==e;return t.length&&"string"!=typeof t||((t=n(t))[0]/=255,t[1]/=255,t[2]/=255),function(t){return t instanceof Uint8Array||t instanceof Uint8ClampedArray||!!(Array.isArray(t)&&(t[0]>1||0===t[0])&&(t[1]>1||0===t[1])&&(t[2]>1||0===t[2])&&(!t[3]||t[3]>1))}(t)?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:255,o&&(r[0]/=255,r[1]/=255,r[2]/=255,r[3]/=255),r):(o?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:1):(r[0]=i(Math.floor(255*t[0]),0,255),r[1]=i(Math.floor(255*t[1]),0,255),r[2]=i(Math.floor(255*t[2]),0,255),r[3]=null==t[3]?255:i(Math.floor(255*t[3]),0,255)),r)}},{clamp:121,"color-rgba":128,dtype:176}],127:[function(t,e,r){(function(r){(function(){"use strict";var n=t("color-name"),i=t("is-plain-obj"),a=t("defined");e.exports=function(t){var e,s,l=[],c=1;if("string"==typeof t)if(n[t])l=n[t].slice(),s="rgb";else if("transparent"===t)c=0,s="rgb",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(t)){var u=(p=t.slice(1)).length;c=1,u<=4?(l=[parseInt(p[0]+p[0],16),parseInt(p[1]+p[1],16),parseInt(p[2]+p[2],16)],4===u&&(c=parseInt(p[3]+p[3],16)/255)):(l=[parseInt(p[0]+p[1],16),parseInt(p[2]+p[3],16),parseInt(p[4]+p[5],16)],8===u&&(c=parseInt(p[6]+p[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s="rgb"}else if(e=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\s*\(([^\)]*)\)/.exec(t)){var f=e[1],h="rgb"===f,p=f.replace(/a$/,"");s=p;u="cmyk"===p?4:"gray"===p?1:3;l=e[2].trim().split(/\s*,\s*/).map((function(t,e){if(/%$/.test(t))return e===u?parseFloat(t)/100:"rgb"===p?255*parseFloat(t)/100:parseFloat(t);if("h"===p[e]){if(/deg$/.test(t))return parseFloat(t);if(void 0!==o[t])return o[t]}return parseFloat(t)})),f===p&&l.push(1),c=h||void 0===l[u]?1:l[u],l=l.slice(0,u)}else t.length>10&&/[0-9](?:\s|\/)/.test(t)&&(l=t.match(/([0-9]+)/g).map((function(t){return parseFloat(t)})),s=t.match(/([a-z])/gi).join("").toLowerCase());else if(isNaN(t))if(i(t)){var d=a(t.r,t.red,t.R,null);null!==d?(s="rgb",l=[d,a(t.g,t.green,t.G),a(t.b,t.blue,t.B)]):(s="hsl",l=[a(t.h,t.hue,t.H),a(t.s,t.saturation,t.S),a(t.l,t.lightness,t.L,t.b,t.brightness)]),c=a(t.a,t.alpha,t.opacity,1),null!=t.opacity&&(c/=100)}else(Array.isArray(t)||r.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(t))&&(l=[t[0],t[1],t[2]],s="rgb",c=4===t.length?t[3]:1);else s="rgb",l=[t>>>16,(65280&t)>>>8,255&t];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"color-name":125,defined:171,"is-plain-obj":437}],128:[function(t,e,r){"use strict";var n=t("color-parse"),i=t("color-space/hsl"),a=t("clamp");e.exports=function(t){var e,r=n(t);return r.space?((e=Array(3))[0]=a(r.values[0],0,255),e[1]=a(r.values[1],0,255),e[2]=a(r.values[2],0,255),"h"===r.space[0]&&(e=i.rgb(e)),e.push(a(r.alpha,0,1)),e):[]}},{clamp:121,"color-parse":127,"color-space/hsl":129}],129:[function(t,e,r){"use strict";var n=t("./rgb");e.exports={name:"hsl",min:[0,0,0],max:[360,100,100],channel:["hue","saturation","lightness"],alias:["HSL"],rgb:function(t){var e,r,n,i,a,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[a=255*l,a,a];e=2*l-(r=l<.5?l*(1+s):l+s-l*s),i=[0,0,0];for(var c=0;c<3;c++)(n=o+1/3*-(c-1))<0?n++:n>1&&n--,a=6*n<1?e+6*(r-e)*n:2*n<1?r:3*n<2?e+(r-e)*(2/3-n)*6:e,i[c]=255*a;return i}},n.hsl=function(t){var e,r,n=t[0]/255,i=t[1]/255,a=t[2]/255,o=Math.min(n,i,a),s=Math.max(n,i,a),l=s-o;return s===o?e=0:n===s?e=(i-a)/l:i===s?e=2+(a-n)/l:a===s&&(e=4+(n-i)/l),(e=Math.min(60*e,360))<0&&(e+=360),r=(o+s)/2,[e,100*(s===o?0:r<=.5?l/(s+o):l/(2-s-o)),100*r]}},{"./rgb":130}],130:[function(t,e,r){"use strict";e.exports={name:"rgb",min:[0,0,0],max:[255,255,255],channel:["red","green","blue"],alias:["RGB"]}},{}],131:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],"rainbow-soft":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],"freesurface-blue":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],"freesurface-red":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],"velocity-blue":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],"velocity-green":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],132:[function(t,e,r){"use strict";var n=t("./colorScale"),i=t("lerp");function a(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r="#",n=0;n<3;++n)r+=("00"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return"rgba("+t.join(",")+")"}e.exports=function(t){var e,r,l,c,u,f,h,p,d,m;t||(t={});p=(t.nshades||72)-1,h=t.format||"hex",(f=t.colormap)||(f="jet");if("string"==typeof f){if(f=f.toLowerCase(),!n[f])throw Error(f+" not a supported colorscale");u=n[f]}else{if(!Array.isArray(f))throw Error("unsupported colormap option",f);u=f.slice()}if(u.length>p+1)throw new Error(f+" map requires nshades to be at least size "+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():"number"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map((function(t){return Math.round(t.index*p)})),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var g=u.map((function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1||(n[3]=d[0]+(d[1]-d[0])*r),n})),v=[];for(m=0;m0||l(t,e,a)?-1:1:0===s?c>0||l(t,e,r)?1:-1:i(c-s)}var h=n(t,e,r);return h>0?o>0&&n(t,e,a)>0?1:-1:h<0?o>0||n(t,e,a)>0?1:-1:n(t,e,a)>0||l(t,e,r)?1:-1};var n=t("robust-orientation"),i=t("signum"),a=t("two-sum"),o=t("robust-product"),s=t("robust-sum");function l(t,e,r){var n=a(t[0],-e[0]),i=a(t[1],-e[1]),l=a(r[0],-e[0]),c=a(r[1],-e[1]),u=s(o(n,l),o(i,c));return u[u.length-1]>=0}},{"robust-orientation":524,"robust-product":525,"robust-sum":529,signum:134,"two-sum":578}],134:[function(t,e,r){"use strict";e.exports=function(t){return t<0?-1:t>0?1:0}},{}],135:[function(t,e,r){e.exports=function(t,e){var r=t.length,a=t.length-e.length;if(a)return a;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(a=o+t[2]-(s+e[2]))return a;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],f=t[1],h=t[2],p=t[3],d=e[0],m=e[1],g=e[2],v=e[3];return u+f+h+p-(d+m+g+v)||n(u,f,h,p)-n(d,m,g,v,d)||n(u+f,u+h,u+p,f+h,f+p,h+p)-n(d+m,d+g,d+v,m+g,m+v,g+v)||n(u+f+h,u+f+p,u+h+p,f+h+p)-n(d+m+g,d+m+v,d+g+v,m+g+v);default:for(var y=t.slice().sort(i),x=e.slice().sort(i),b=0;bt[r][0]&&(r=n);return er?[[r],[e]]:[[e]]}},{}],139:[function(t,e,r){"use strict";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var i=new Array(r),a=e[r-1],o=0;o=e[l]&&(s+=1);a[o]=s}}return t}(n(a,!0),r)}};var n=t("incremental-convex-hull"),i=t("affine-hull")},{"affine-hull":69,"incremental-convex-hull":428}],141:[function(t,e,r){e.exports={AFG:"afghan",ALA:"\\b\\wland",ALB:"albania",DZA:"algeria",ASM:"^(?=.*americ).*samoa",AND:"andorra",AGO:"angola",AIA:"anguill?a",ATA:"antarctica",ATG:"antigua",ARG:"argentin",ARM:"armenia",ABW:"^(?!.*bonaire).*\\baruba",AUS:"australia",AUT:"^(?!.*hungary).*austria|\\baustri.*\\bemp",AZE:"azerbaijan",BHS:"bahamas",BHR:"bahrain",BGD:"bangladesh|^(?=.*east).*paki?stan",BRB:"barbados",BLR:"belarus|byelo",BEL:"^(?!.*luxem).*belgium",BLZ:"belize|^(?=.*british).*honduras",BEN:"benin|dahome",BMU:"bermuda",BTN:"bhutan",BOL:"bolivia",BES:"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\bbes.?islands",BIH:"herzegovina|bosnia",BWA:"botswana|bechuana",BVT:"bouvet",BRA:"brazil",IOT:"british.?indian.?ocean",BRN:"brunei",BGR:"bulgaria",BFA:"burkina|\\bfaso|upper.?volta",BDI:"burundi",CPV:"verde",KHM:"cambodia|kampuchea|khmer",CMR:"cameroon",CAN:"canada",CYM:"cayman",CAF:"\\bcentral.african.republic",TCD:"\\bchad",CHL:"\\bchile",CHN:"^(?!.*\\bmac)(?!.*\\bhong)(?!.*\\btai)(?!.*\\brep).*china|^(?=.*peo)(?=.*rep).*china",CXR:"christmas",CCK:"\\bcocos|keeling",COL:"colombia",COM:"comoro",COG:"^(?!.*\\bdem)(?!.*\\bd[\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\bcongo",COK:"\\bcook",CRI:"costa.?rica",CIV:"ivoire|ivory",HRV:"croatia",CUB:"\\bcuba",CUW:"^(?!.*bonaire).*\\bcura(c|\xe7)ao",CYP:"cyprus",CSK:"czechoslovakia",CZE:"^(?=.*rep).*czech|czechia|bohemia",COD:"\\bdem.*congo|congo.*\\bdem|congo.*\\bd[\\.]?r|\\bd[\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc",DNK:"denmark",DJI:"djibouti",DMA:"dominica(?!n)",DOM:"dominican.rep",ECU:"ecuador",EGY:"egypt",SLV:"el.?salvador",GNQ:"guine.*eq|eq.*guine|^(?=.*span).*guinea",ERI:"eritrea",EST:"estonia",ETH:"ethiopia|abyssinia",FLK:"falkland|malvinas",FRO:"faroe|faeroe",FJI:"fiji",FIN:"finland",FRA:"^(?!.*\\bdep)(?!.*martinique).*france|french.?republic|\\bgaul",GUF:"^(?=.*french).*guiana",PYF:"french.?polynesia|tahiti",ATF:"french.?southern",GAB:"gabon",GMB:"gambia",GEO:"^(?!.*south).*georgia",DDR:"german.?democratic.?republic|democratic.?republic.*germany|east.germany",DEU:"^(?!.*east).*germany|^(?=.*\\bfed.*\\brep).*german",GHA:"ghana|gold.?coast",GIB:"gibraltar",GRC:"greece|hellenic|hellas",GRL:"greenland",GRD:"grenada",GLP:"guadeloupe",GUM:"\\bguam",GTM:"guatemala",GGY:"guernsey",GIN:"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea",GNB:"bissau|^(?=.*portu).*guinea",GUY:"guyana|british.?guiana",HTI:"haiti",HMD:"heard.*mcdonald",VAT:"holy.?see|vatican|papal.?st",HND:"^(?!.*brit).*honduras",HKG:"hong.?kong",HUN:"^(?!.*austr).*hungary",ISL:"iceland",IND:"india(?!.*ocea)",IDN:"indonesia",IRN:"\\biran|persia",IRQ:"\\biraq|mesopotamia",IRL:"(^ireland)|(^republic.*ireland)",IMN:"^(?=.*isle).*\\bman",ISR:"israel",ITA:"italy",JAM:"jamaica",JPN:"japan",JEY:"jersey",JOR:"jordan",KAZ:"kazak",KEN:"kenya|british.?east.?africa|east.?africa.?prot",KIR:"kiribati",PRK:"^(?=.*democrat|people|north|d.*p.*.r).*\\bkorea|dprk|korea.*(d.*p.*r)",KWT:"kuwait",KGZ:"kyrgyz|kirghiz",LAO:"\\blaos?\\b",LVA:"latvia",LBN:"lebanon",LSO:"lesotho|basuto",LBR:"liberia",LBY:"libya",LIE:"liechtenstein",LTU:"lithuania",LUX:"^(?!.*belg).*luxem",MAC:"maca(o|u)",MDG:"madagascar|malagasy",MWI:"malawi|nyasa",MYS:"malaysia",MDV:"maldive",MLI:"\\bmali\\b",MLT:"\\bmalta",MHL:"marshall",MTQ:"martinique",MRT:"mauritania",MUS:"mauritius",MYT:"\\bmayotte",MEX:"\\bmexic",FSM:"fed.*micronesia|micronesia.*fed",MCO:"monaco",MNG:"mongolia",MNE:"^(?!.*serbia).*montenegro",MSR:"montserrat",MAR:"morocco|\\bmaroc",MOZ:"mozambique",MMR:"myanmar|burma",NAM:"namibia",NRU:"nauru",NPL:"nepal",NLD:"^(?!.*\\bant)(?!.*\\bcarib).*netherlands",ANT:"^(?=.*\\bant).*(nether|dutch)",NCL:"new.?caledonia",NZL:"new.?zealand",NIC:"nicaragua",NER:"\\bniger(?!ia)",NGA:"nigeria",NIU:"niue",NFK:"norfolk",MNP:"mariana",NOR:"norway",OMN:"\\boman|trucial",PAK:"^(?!.*east).*paki?stan",PLW:"palau",PSE:"palestin|\\bgaza|west.?bank",PAN:"panama",PNG:"papua|new.?guinea",PRY:"paraguay",PER:"peru",PHL:"philippines",PCN:"pitcairn",POL:"poland",PRT:"portugal",PRI:"puerto.?rico",QAT:"qatar",KOR:"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\bkorea(?!.*d.*p.*r)",MDA:"moldov|b(a|e)ssarabia",REU:"r(e|\xe9)union",ROU:"r(o|u|ou)mania",RUS:"\\brussia|soviet.?union|u\\.?s\\.?s\\.?r|socialist.?republics",RWA:"rwanda",BLM:"barth(e|\xe9)lemy",SHN:"helena",KNA:"kitts|\\bnevis",LCA:"\\blucia",MAF:"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)",SPM:"miquelon",VCT:"vincent",WSM:"^(?!.*amer).*samoa",SMR:"san.?marino",STP:"\\bs(a|\xe3)o.?tom(e|\xe9)",SAU:"\\bsa\\w*.?arabia",SEN:"senegal",SRB:"^(?!.*monte).*serbia",SYC:"seychell",SLE:"sierra",SGP:"singapore",SXM:"^(?!.*martin)(?!.*saba).*maarten",SVK:"^(?!.*cze).*slovak",SVN:"slovenia",SLB:"solomon",SOM:"somali",ZAF:"south.africa|s\\\\..?africa",SGS:"south.?georgia|sandwich",SSD:"\\bs\\w*.?sudan",ESP:"spain",LKA:"sri.?lanka|ceylon",SDN:"^(?!.*\\bs(?!u)).*sudan",SUR:"surinam|dutch.?guiana",SJM:"svalbard",SWZ:"swaziland",SWE:"sweden",CHE:"switz|swiss",SYR:"syria",TWN:"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china",TJK:"tajik",THA:"thailand|\\bsiam",MKD:"macedonia|fyrom",TLS:"^(?=.*leste).*timor|^(?=.*east).*timor",TGO:"togo",TKL:"tokelau",TON:"tonga",TTO:"trinidad|tobago",TUN:"tunisia",TUR:"turkey",TKM:"turkmen",TCA:"turks",TUV:"tuvalu",UGA:"uganda",UKR:"ukrain",ARE:"emirates|^u\\.?a\\.?e\\.?$|united.?arab.?em",GBR:"united.?kingdom|britain|^u\\.?k\\.?$",TZA:"tanzania",USA:"united.?states\\b(?!.*islands)|\\bu\\.?s\\.?a\\.?\\b|^\\s*u\\.?s\\.?\\b(?!.*islands)",UMI:"minor.?outlying.?is",URY:"uruguay",UZB:"uzbek",VUT:"vanuatu|new.?hebrides",VEN:"venezuela",VNM:"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam",VGB:"^(?=.*\\bu\\.?\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin",VIR:"^(?=.*\\bu\\.?\\s?s).*virgin|^(?=.*states).*virgin",WLF:"futuna|wallis",ESH:"western.sahara",YEM:"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\bp\\.?d\\.?r).*yemen",YMD:"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\bp\\.?d\\.?r).*yemen",YUG:"yugoslavia",ZMB:"zambia|northern.?rhodesia",EAZ:"zanzibar",ZWE:"zimbabwe|^(?!.*northern).*rhodesia"}},{}],142:[function(t,e,r){e.exports=["xx-small","x-small","small","medium","large","x-large","xx-large","larger","smaller"]},{}],143:[function(t,e,r){e.exports=["normal","condensed","semi-condensed","extra-condensed","ultra-condensed","expanded","semi-expanded","extra-expanded","ultra-expanded"]},{}],144:[function(t,e,r){e.exports=["normal","italic","oblique"]},{}],145:[function(t,e,r){e.exports=["normal","bold","bolder","lighter","100","200","300","400","500","600","700","800","900"]},{}],146:[function(t,e,r){"use strict";e.exports={parse:t("./parse"),stringify:t("./stringify")}},{"./parse":148,"./stringify":149}],147:[function(t,e,r){"use strict";var n=t("css-font-size-keywords");e.exports={isSize:function(t){return/^[\d\.]/.test(t)||-1!==t.indexOf("/")||-1!==n.indexOf(t)}}},{"css-font-size-keywords":142}],148:[function(t,e,r){"use strict";var n=t("unquote"),i=t("css-global-keywords"),a=t("css-system-font-keywords"),o=t("css-font-weight-keywords"),s=t("css-font-style-keywords"),l=t("css-font-stretch-keywords"),c=t("string-split-by"),u=t("./lib/util").isSize;e.exports=h;var f=h.cache={};function h(t){if("string"!=typeof t)throw new Error("Font argument must be a string.");if(f[t])return f[t];if(""===t)throw new Error("Cannot parse an empty string.");if(-1!==a.indexOf(t))return f[t]={system:t};for(var e,r={style:"normal",variant:"normal",weight:"normal",stretch:"normal",lineHeight:"normal",size:"1rem",family:["serif"]},h=c(t,/\s+/);e=h.shift();){if(-1!==i.indexOf(e))return["style","variant","weight","stretch"].forEach((function(t){r[t]=e})),f[t]=r;if(-1===s.indexOf(e))if("normal"!==e&&"small-caps"!==e)if(-1===l.indexOf(e)){if(-1===o.indexOf(e)){if(u(e)){var d=c(e,"/");if(r.size=d[0],null!=d[1]?r.lineHeight=p(d[1]):"/"===h[0]&&(h.shift(),r.lineHeight=p(h.shift())),!h.length)throw new Error("Missing required font-family.");return r.family=c(h.join(" "),/\s*,\s*/).map(n),f[t]=r}throw new Error("Unknown or unsupported font token: "+e)}r.weight=e}else r.stretch=e;else r.variant=e;else r.style=e}throw new Error("Missing required font-size.")}function p(t){var e=parseFloat(t);return e.toString()===t?e:t}},{"./lib/util":147,"css-font-stretch-keywords":143,"css-font-style-keywords":144,"css-font-weight-keywords":145,"css-global-keywords":150,"css-system-font-keywords":151,"string-split-by":562,unquote:593}],149:[function(t,e,r){"use strict";var n=t("pick-by-alias"),i=t("./lib/util").isSize,a=m(t("css-global-keywords")),o=m(t("css-system-font-keywords")),s=m(t("css-font-weight-keywords")),l=m(t("css-font-style-keywords")),c=m(t("css-font-stretch-keywords")),u={normal:1,"small-caps":1},f={serif:1,"sans-serif":1,monospace:1,cursive:1,fantasy:1,"system-ui":1},h="1rem",p="serif";function d(t,e){if(t&&!e[t]&&!a[t])throw Error("Unknown keyword `"+t+"`");return t}function m(t){for(var e={},r=0;r=0;--p)a[p]=c*t[p]+u*e[p]+f*r[p]+h*n[p];return a}return c*t+u*e+f*r+h*n},e.exports.derivative=function(t,e,r,n,i,a){var o=6*i*i-6*i,s=3*i*i-4*i+1,l=-6*i*i+6*i,c=3*i*i-2*i;if(t.length){a||(a=new Array(t.length));for(var u=t.length-1;u>=0;--u)a[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return a}return o*t+s*e+l*r[u]+c*n}},{}],153:[function(t,e,r){"use strict";var n,i=t("type/value/is"),a=t("type/value/ensure"),o=t("type/plain-function/ensure"),s=t("es5-ext/object/copy"),l=t("es5-ext/object/normalize-options"),c=t("es5-ext/object/map"),u=Function.prototype.bind,f=Object.defineProperty,h=Object.prototype.hasOwnProperty;n=function(t,e,r){var n,i=a(e)&&o(e.value);return delete(n=s(e)).writable,delete n.value,n.get=function(){return!r.overwriteDefinition&&h.call(this,t)?i:(e.value=u.call(i,r.resolveContext?r.resolveContext(this):this),f(this,t,e),this[t])},n},e.exports=function(t){var e=l(arguments[1]);return i(e.resolveContext)&&o(e.resolveContext),c(t,(function(t,r){return n(r,t,e)}))}},{"es5-ext/object/copy":197,"es5-ext/object/map":205,"es5-ext/object/normalize-options":206,"type/plain-function/ensure":584,"type/value/ensure":588,"type/value/is":589}],154:[function(t,e,r){"use strict";var n=t("type/value/is"),i=t("type/plain-function/is"),a=t("es5-ext/object/assign"),o=t("es5-ext/object/normalize-options"),s=t("es5-ext/string/#/contains");(e.exports=function(t,e){var r,i,l,c,u;return arguments.length<2||"string"!=typeof t?(c=e,e=t,t=null):c=arguments[2],n(t)?(r=s.call(t,"c"),i=s.call(t,"e"),l=s.call(t,"w")):(r=l=!0,i=!1),u={value:e,configurable:r,enumerable:i,writable:l},c?a(o(c),u):u}).gs=function(t,e,r){var l,c,u,f;return"string"!=typeof t?(u=r,r=e,e=t,t=null):u=arguments[3],n(e)?i(e)?n(r)?i(r)||(u=r,r=void 0):r=void 0:(u=e,e=r=void 0):e=void 0,n(t)?(l=s.call(t,"c"),c=s.call(t,"e")):(l=!0,c=!1),f={get:e,set:r,configurable:l,enumerable:c},u?a(o(u),f):f}},{"es5-ext/object/assign":194,"es5-ext/object/normalize-options":206,"es5-ext/string/#/contains":213,"type/plain-function/is":585,"type/value/is":589}],155:[function(t,e,r){!function(t,n){n("object"==typeof r&&void 0!==e?r:t.d3=t.d3||{})}(this,(function(t){"use strict";function e(t,e){return te?1:t>=e?0:NaN}function r(t){var r;return 1===t.length&&(r=t,t=function(t,n){return e(r(t),n)}),{left:function(e,r,n,i){for(null==n&&(n=0),null==i&&(i=e.length);n>>1;t(e[a],r)<0?n=a+1:i=a}return n},right:function(e,r,n,i){for(null==n&&(n=0),null==i&&(i=e.length);n>>1;t(e[a],r)>0?i=a:n=a+1}return n}}}var n=r(e),i=n.right,a=n.left;function o(t,e){return[t,e]}function s(t){return null===t?NaN:+t}function l(t,e){var r,n,i=t.length,a=0,o=-1,l=0,c=0;if(null==e)for(;++o1)return c/(a-1)}function c(t,e){var r=l(t,e);return r?Math.sqrt(r):r}function u(t,e){var r,n,i,a=t.length,o=-1;if(null==e){for(;++o=r)for(n=i=r;++or&&(n=r),i=r)for(n=i=r;++or&&(n=r),i=0?(a>=v?10:a>=y?5:a>=x?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(a>=v?10:a>=y?5:a>=x?2:1)}function _(t,e,r){var n=Math.abs(e-t)/Math.max(0,r),i=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),a=n/i;return a>=v?i*=10:a>=y?i*=5:a>=x&&(i*=2),e=1)return+r(t[n-1],n-1,t);var n,i=(n-1)*e,a=Math.floor(i),o=+r(t[a],a,t);return o+(+r(t[a+1],a+1,t)-o)*(i-a)}}function k(t,e){var r,n,i=t.length,a=-1;if(null==e){for(;++a=r)for(n=r;++ar&&(n=r)}else for(;++a=r)for(n=r;++ar&&(n=r);return n}function A(t){if(!(i=t.length))return[];for(var e=-1,r=k(t,M),n=new Array(r);++et?1:e>=t?0:NaN},t.deviation=c,t.extent=u,t.histogram=function(){var t=m,e=u,r=w;function n(n){var a,o,s=n.length,l=new Array(s);for(a=0;af;)h.pop(),--p;var d,m=new Array(p+1);for(a=0;a<=p;++a)(d=m[a]=[]).x0=a>0?h[a-1]:u,d.x1=a=r)for(n=r;++an&&(n=r)}else for(;++a=r)for(n=r;++an&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,i=n,a=-1,o=0;if(null==e)for(;++a=0;)for(e=(n=t[i]).length;--e>=0;)r[--o]=n[e];return r},t.min=k,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,i=t[0],a=new Array(n<0?0:n);r0)return[t];if((n=e0)for(t=Math.ceil(t/o),e=Math.floor(e/o),a=new Array(i=Math.ceil(e-t+1));++s=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,f,h=-1,p=n.length,d=l[i++],m=r(),g=a();++hl.length)return r;var i,a=c[n-1];return null!=e&&n>=l.length?i=r.entries():(i=[],r.each((function(e,r){i.push({key:r,values:t(e,n)})}))),null!=a?i.sort((function(t,e){return a(t.key,e.key)})):i}(u(t,0,a,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,"__esModule",{value:!0})}))},{}],157:[function(t,e,r){!function(t,n){"object"==typeof r&&void 0!==e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){"use strict";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var i="\\s*([+-]?\\d+)\\s*",a="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",o="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",s=/^#([0-9a-f]{3,8})$/,l=new RegExp("^rgb\\("+[i,i,i]+"\\)$"),c=new RegExp("^rgb\\("+[o,o,o]+"\\)$"),u=new RegExp("^rgba\\("+[i,i,i,a]+"\\)$"),f=new RegExp("^rgba\\("+[o,o,o,a]+"\\)$"),h=new RegExp("^hsl\\("+[a,o,o]+"\\)$"),p=new RegExp("^hsla\\("+[a,o,o,a]+"\\)$"),d={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function m(){return this.rgb().formatHex()}function g(){return this.rgb().formatRgb()}function v(t){var e,r;return t=(t+"").trim().toLowerCase(),(e=s.exec(t))?(r=e[1].length,e=parseInt(e[1],16),6===r?y(e):3===r?new w(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===r?x(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===r?x(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=l.exec(t))?new w(e[1],e[2],e[3],1):(e=c.exec(t))?new w(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=u.exec(t))?x(e[1],e[2],e[3],e[4]):(e=f.exec(t))?x(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=h.exec(t))?M(e[1],e[2]/100,e[3]/100,1):(e=p.exec(t))?M(e[1],e[2]/100,e[3]/100,e[4]):d.hasOwnProperty(t)?y(d[t]):"transparent"===t?new w(NaN,NaN,NaN,0):null}function y(t){return new w(t>>16&255,t>>8&255,255&t,1)}function x(t,e,r,n){return n<=0&&(t=e=r=NaN),new w(t,e,r,n)}function b(t){return t instanceof n||(t=v(t)),t?new w((t=t.rgb()).r,t.g,t.b,t.opacity):new w}function _(t,e,r,n){return 1===arguments.length?b(t):new w(t,e,r,null==n?1:n)}function w(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function T(){return"#"+A(this.r)+A(this.g)+A(this.b)}function k(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function A(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function M(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new L(t,e,r,n)}function S(t){if(t instanceof L)return new L(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=v(t)),!t)return new L;if(t instanceof L)return t;var e=(t=t.rgb()).r/255,r=t.g/255,i=t.b/255,a=Math.min(e,r,i),o=Math.max(e,r,i),s=NaN,l=o-a,c=(o+a)/2;return l?(s=e===o?(r-i)/l+6*(r0&&c<1?0:s,new L(s,l,c,t.opacity)}function E(t,e,r,n){return 1===arguments.length?S(t):new L(t,e,r,null==n?1:n)}function L(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function C(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,v,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:m,formatHex:m,formatHsl:function(){return S(this).formatHsl()},formatRgb:g,toString:g}),e(w,_,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:T,formatHex:T,formatRgb:k,toString:k})),e(L,E,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new L(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new L(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,i=2*r-n;return new w(C(t>=240?t-240:t+120,i,n),C(t,i,n),C(t<120?t+240:t-120,i,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var P=Math.PI/180,I=180/Math.PI,O=6/29,z=3*O*O;function D(t){if(t instanceof F)return new F(t.l,t.a,t.b,t.opacity);if(t instanceof q)return G(t);t instanceof w||(t=b(t));var e,r,n=U(t.r),i=U(t.g),a=U(t.b),o=B((.2225045*n+.7168786*i+.0606169*a)/1);return n===i&&i===a?e=r=o:(e=B((.4360747*n+.3850649*i+.1430804*a)/.96422),r=B((.0139322*n+.0971045*i+.7141733*a)/.82521)),new F(116*o-16,500*(e-o),200*(o-r),t.opacity)}function R(t,e,r,n){return 1===arguments.length?D(t):new F(t,e,r,null==n?1:n)}function F(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function B(t){return t>.008856451679035631?Math.pow(t,1/3):t/z+4/29}function N(t){return t>O?t*t*t:z*(t-4/29)}function j(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function U(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function V(t){if(t instanceof q)return new q(t.h,t.c,t.l,t.opacity);if(t instanceof F||(t=D(t)),0===t.a&&0===t.b)return new q(NaN,0=0&&(r=t.slice(n+1),t=t.slice(0,n)),t&&!e.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:r}}))}function a(t,e){for(var r,n=0,i=t.length;n0)for(var r,n,i=new Array(r),a=0;ah+c||np+c||au.index){var f=h-s.x-s.vx,g=p-s.y-s.vy,v=f*f+g*g;vt.r&&(t.r=t[e].r)}function h(){if(r){var e,i,a=r.length;for(n=new Array(a),e=0;e=c)){(t.data!==r||t.next)&&(0===f&&(d+=(f=o())*f),0===h&&(d+=(h=o())*h),d1?(null==r?u.remove(t):u.set(t,v(r)),e):u.get(t)},find:function(e,r,n){var i,a,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c1?(h.on(t,r),e):h.on(t)}}},t.forceX=function(t){var e,r,n,i=a(.1);function o(t){for(var i,a=0,o=e.length;a1?n[0]+n.slice(2):n,+t.slice(r+1)]}function r(t){return(t=e(Math.abs(t)))?t[1]:NaN}var n,i=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function a(t){if(!(e=i.exec(t)))throw new Error("invalid format: "+t);var e;return new o({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function o(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}function s(t,r){var n=e(t,r);if(!n)return t+"";var i=n[0],a=n[1];return a<0?"0."+new Array(-a).join("0")+i:i.length>a+1?i.slice(0,a+1)+"."+i.slice(a+1):i+new Array(a-i.length+2).join("0")}a.prototype=o.prototype,o.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var l={"%":function(t,e){return(100*t).toFixed(e)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},g:function(t,e){return t.toPrecision(e)},o:function(t){return Math.round(t).toString(8)},p:function(t,e){return s(100*t,e)},r:s,s:function(t,r){var i=e(t,r);if(!i)return t+"";var a=i[0],o=i[1],s=o-(n=3*Math.max(-8,Math.min(8,Math.floor(o/3))))+1,l=a.length;return s===l?a:s>l?a+new Array(s-l+1).join("0"):s>0?a.slice(0,s)+"."+a.slice(s):"0."+new Array(1-s).join("0")+e(t,Math.max(0,r+s-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}};function c(t){return t}var u,f=Array.prototype.map,h=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function p(t){var e,i,o=void 0===t.grouping||void 0===t.thousands?c:(e=f.call(t.grouping,Number),i=t.thousands+"",function(t,r){for(var n=t.length,a=[],o=0,s=e[0],l=0;n>0&&s>0&&(l+s+1>r&&(s=Math.max(1,r-l)),a.push(t.substring(n-=s,n+s)),!((l+=s+1)>r));)s=e[o=(o+1)%e.length];return a.reverse().join(i)}),s=void 0===t.currency?"":t.currency[0]+"",u=void 0===t.currency?"":t.currency[1]+"",p=void 0===t.decimal?".":t.decimal+"",d=void 0===t.numerals?c:function(t){return function(e){return e.replace(/[0-9]/g,(function(e){return t[+e]}))}}(f.call(t.numerals,String)),m=void 0===t.percent?"%":t.percent+"",g=void 0===t.minus?"-":t.minus+"",v=void 0===t.nan?"NaN":t.nan+"";function y(t){var e=(t=a(t)).fill,r=t.align,i=t.sign,c=t.symbol,f=t.zero,y=t.width,x=t.comma,b=t.precision,_=t.trim,w=t.type;"n"===w?(x=!0,w="g"):l[w]||(void 0===b&&(b=12),_=!0,w="g"),(f||"0"===e&&"="===r)&&(f=!0,e="0",r="=");var T="$"===c?s:"#"===c&&/[boxX]/.test(w)?"0"+w.toLowerCase():"",k="$"===c?u:/[%p]/.test(w)?m:"",A=l[w],M=/[defgprs%]/.test(w);function S(t){var a,s,l,c=T,u=k;if("c"===w)u=A(t)+u,t="";else{var m=(t=+t)<0||1/t<0;if(t=isNaN(t)?v:A(Math.abs(t),b),_&&(t=function(t){t:for(var e,r=t.length,n=1,i=-1;n0&&(i=0)}return i>0?t.slice(0,i)+t.slice(e+1):t}(t)),m&&0==+t&&"+"!==i&&(m=!1),c=(m?"("===i?i:g:"-"===i||"("===i?"":i)+c,u=("s"===w?h[8+n/3]:"")+u+(m&&"("===i?")":""),M)for(a=-1,s=t.length;++a(l=t.charCodeAt(a))||l>57){u=(46===l?p+t.slice(a+1):t.slice(a))+u,t=t.slice(0,a);break}}x&&!f&&(t=o(t,1/0));var S=c.length+t.length+u.length,E=S>1)+c+t+u+E.slice(S);break;default:t=E+c+t+u}return d(t)}return b=void 0===b?6:/[gprs]/.test(w)?Math.max(1,Math.min(21,b)):Math.max(0,Math.min(20,b)),S.toString=function(){return t+""},S}return{format:y,formatPrefix:function(t,e){var n=y(((t=a(t)).type="f",t)),i=3*Math.max(-8,Math.min(8,Math.floor(r(e)/3))),o=Math.pow(10,-i),s=h[8+i/3];return function(t){return n(o*t)+s}}}}function d(e){return u=p(e),t.format=u.format,t.formatPrefix=u.formatPrefix,u}d({decimal:".",thousands:",",grouping:[3],currency:["$",""],minus:"-"}),t.FormatSpecifier=o,t.formatDefaultLocale=d,t.formatLocale=p,t.formatSpecifier=a,t.precisionFixed=function(t){return Math.max(0,-r(Math.abs(t)))},t.precisionPrefix=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(r(e)/3)))-r(Math.abs(t)))},t.precisionRound=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,r(e)-r(t))+1},Object.defineProperty(t,"__esModule",{value:!0})}))},{}],161:[function(t,e,r){!function(n,i){"object"==typeof r&&void 0!==e?i(r,t("d3-geo"),t("d3-array")):i(n.d3=n.d3||{},n.d3,n.d3)}(this,(function(t,e,r){"use strict";var n=Math.abs,i=Math.atan,a=Math.atan2,o=Math.cos,s=Math.exp,l=Math.floor,c=Math.log,u=Math.max,f=Math.min,h=Math.pow,p=Math.round,d=Math.sign||function(t){return t>0?1:t<0?-1:0},m=Math.sin,g=Math.tan,v=1e-6,y=Math.PI,x=y/2,b=y/4,_=Math.SQRT1_2,w=L(2),T=L(y),k=2*y,A=180/y,M=y/180;function S(t){return t>1?x:t<-1?-x:Math.asin(t)}function E(t){return t>1?0:t<-1?y:Math.acos(t)}function L(t){return t>0?Math.sqrt(t):0}function C(t){return(s(t)-s(-t))/2}function P(t){return(s(t)+s(-t))/2}function I(t){var e=g(t/2),r=2*c(o(t/2))/(e*e);function i(t,e){var n=o(t),i=o(e),a=m(e),s=i*n,l=-((1-s?c((1+s)/2)/(1-s):-.5)+r/(1+s));return[l*i*m(t),l*a]}return i.invert=function(e,i){var s,l=L(e*e+i*i),u=-t/2,f=50;if(!l)return[0,0];do{var h=u/2,p=o(h),d=m(h),g=d/p,y=-c(n(p));u-=s=(2/g*y-r*g-l)/(-y/(d*d)+1-r/(2*p*p))*(p<0?.7:1)}while(n(s)>v&&--f>0);var x=m(u);return[a(e*x,l*o(u)),S(i*x/l)]},i}function O(t,e){var r=o(e),n=function(t){return t?t/Math.sin(t):1}(E(r*o(t/=2)));return[2*r*m(t)*n,m(e)*n]}function z(t){var e=m(t),r=o(t),i=t>=0?1:-1,s=g(i*t),l=(1+e-r)/2;function c(t,n){var c=o(n),u=o(t/=2);return[(1+c)*m(t),(i*n>-a(u,s)-.001?0:10*-i)+l+m(n)*r-(1+c)*e*u]}return c.invert=function(t,c){var u=0,f=0,h=50;do{var p=o(u),d=m(u),g=o(f),y=m(f),x=1+g,b=x*d-t,_=l+y*r-x*e*p-c,w=x*p/2,T=-d*y,k=e*x*d/2,A=r*g+e*p*y,M=T*k-A*w,S=(_*T-b*A)/M/2,E=(b*k-_*w)/M;n(E)>2&&(E/=2),u-=S,f-=E}while((n(S)>v||n(E)>v)&&--h>0);return i*f>-a(o(u),s)-.001?[2*u,f]:null},c}function D(t,e){var r=g(e/2),n=L(1-r*r),i=1+n*o(t/=2),a=m(t)*n/i,s=r/i,l=a*a,c=s*s;return[4/3*a*(3+l-3*c),4/3*s*(3+3*l-c)]}O.invert=function(t,e){if(!(t*t+4*e*e>y*y+v)){var r=t,i=e,a=25;do{var s,l=m(r),c=m(r/2),u=o(r/2),f=m(i),h=o(i),p=m(2*i),d=f*f,g=h*h,x=c*c,b=1-g*u*u,_=b?E(h*u)*L(s=1/b):s=0,w=2*_*h*c-t,T=_*f-e,k=s*(g*x+_*h*u*d),A=s*(.5*l*p-2*_*f*c),M=.25*s*(p*c-_*f*g*l),S=s*(d*u+_*x*h),C=A*M-S*k;if(!C)break;var P=(T*A-w*S)/C,I=(w*M-T*k)/C;r-=P,i-=I}while((n(P)>v||n(I)>v)&&--a>0);return[r,i]}},D.invert=function(t,e){if(e*=3/8,!(t*=3/8)&&n(e)>1)return null;var r=1+t*t+e*e,i=L((r-L(r*r-4*e*e))/2),s=S(i)/3,l=i?function(t){return c(t+L(t*t-1))}(n(e/i))/3:function(t){return c(t+L(t*t+1))}(n(t))/3,u=o(s),f=P(l),h=f*f-u*u;return[2*d(t)*a(C(l)*u,.25-h),2*d(e)*a(f*m(s),.25+h)]};var R=L(8),F=c(1+w);function B(t,e){var r=n(e);return rx){var l=a(s[1],s[0]),c=L(s[0]*s[0]+s[1]*s[1]),u=r*p((l-x)/r)+x,f=a(m(l-=u),2-o(l));l=u+S(y/c*m(f))-f,s[0]=c*o(l),s[1]=c*m(l)}return s}return s.invert=function(t,n){var s=L(t*t+n*n);if(s>x){var l=a(n,t),c=r*p((l-x)/r)+x,u=l>c?-1:1,f=s*o(c-l),h=1/g(u*E((f-y)/L(y*(y-2*f)+s*s)));l=c+2*i((h+u*L(h*h-3))/3),t=s*o(l),n=s*m(l)}return e.geoAzimuthalEquidistantRaw.invert(t,n)},s}function j(t,r){if(arguments.length<2&&(r=t),1===r)return e.geoAzimuthalEqualAreaRaw;if(r===1/0)return U;function n(n,i){var a=e.geoAzimuthalEqualAreaRaw(n/r,i);return a[0]*=t,a}return n.invert=function(n,i){var a=e.geoAzimuthalEqualAreaRaw.invert(n/t,i);return a[0]*=r,a},n}function U(t,e){return[t*o(e)/o(e/=2),2*m(e)]}function V(t,e,r){var i,a,o,s=100;r=void 0===r?0:+r,e=+e;do{(a=t(r))===(o=t(r+v))&&(o=a+v),r-=i=-1*v*(a-e)/(a-o)}while(s-- >0&&n(i)>v);return s<0?NaN:r}function H(t,e,r){return void 0===e&&(e=40),void 0===r&&(r=1e-12),function(i,a,o,s){var l,c,u;o=void 0===o?0:+o,s=void 0===s?0:+s;for(var f=0;fl)o-=c/=2,s-=u/=2;else{l=m;var g=(o>0?-1:1)*r,v=(s>0?-1:1)*r,y=t(o+g,s),x=t(o,s+v),b=(y[0]-h[0])/g,_=(y[1]-h[1])/g,w=(x[0]-h[0])/v,T=(x[1]-h[1])/v,k=T*b-_*w,A=(n(k)<.5?.5:1)/k;if(o+=c=(d*w-p*T)*A,s+=u=(p*_-d*b)*A,n(c)0&&(i[1]*=1+a/1.5*i[0]*i[0]),i}return e.invert=H(e),e}function G(t,e){var r,i=t*m(e),a=30;do{e-=r=(e+m(e)-i)/(1+o(e))}while(n(r)>v&&--a>0);return e/2}function Y(t,e,r){function n(n,i){return[t*n*o(i=G(r,i)),e*m(i)]}return n.invert=function(n,i){return i=S(i/e),[n/(t*o(i)),S((2*i+m(2*i))/r)]},n}B.invert=function(t,e){if((a=n(e))1e-12&&--u>0);return[t/(o(l)*(R-1/m(l))),d(e)*l]},U.invert=function(t,e){var r=2*S(e/2);return[t*o(r/2)/o(r),r]};var W=Y(w/x,w,y);var X=2.00276,Z=1.11072;function J(t,e){var r=G(y,e);return[X*t/(1/o(e)+Z/o(r)),(e+w*m(r))/X]}function K(t){var r=0,n=e.geoProjectionMutator(t),i=n(r);return i.parallel=function(t){return arguments.length?n(r=t*M):r*A},i}function Q(t,e){return[t*o(e),e]}function $(t){if(!t)return Q;var e=1/g(t);function r(r,n){var i=e+t-n,a=i?r*o(n)/i:i;return[i*m(a),e-i*o(a)]}return r.invert=function(r,n){var i=L(r*r+(n=e-n)*n),s=e+t-i;return[i/o(s)*a(r,n),s]},r}function tt(t){function e(e,r){var n=x-r,i=n?e*t*m(n)/n:n;return[n*m(i)/t,x-n*o(i)]}return e.invert=function(e,r){var n=e*t,i=x-r,o=L(n*n+i*i),s=a(n,i);return[(o?o/m(o):1)*s/t,x-o]},e}J.invert=function(t,e){var r,i,a=X*e,s=e<0?-b:b,l=25;do{i=a-w*m(s),s-=r=(m(2*s)+2*s-y*m(i))/(2*o(2*s)+2+y*o(i)*w*o(s))}while(n(r)>v&&--l>0);return i=a-w*m(s),[t*(1/o(i)+Z/o(s))/X,i]},Q.invert=function(t,e){return[t/o(e),e]};var et=Y(1,4/y,y);function rt(t,e,r,i,s,l){var c,u=o(l);if(n(t)>1||n(l)>1)c=E(r*s+e*i*u);else{var f=m(t/2),h=m(l/2);c=2*S(L(f*f+e*i*h*h))}return n(c)>v?[c,a(i*m(l),e*s-r*i*u)]:[0,0]}function nt(t,e,r){return E((t*t+e*e-r*r)/(2*t*e))}function it(t){return t-2*y*l((t+y)/(2*y))}function at(t,e,r){for(var n,i=[[t[0],t[1],m(t[1]),o(t[1])],[e[0],e[1],m(e[1]),o(e[1])],[r[0],r[1],m(r[1]),o(r[1])]],a=i[2],s=0;s<3;++s,a=n)n=i[s],a.v=rt(n[1]-a[1],a[3],a[2],n[3],n[2],n[0]-a[0]),a.point=[0,0];var l=nt(i[0].v[0],i[2].v[0],i[1].v[0]),c=nt(i[0].v[0],i[1].v[0],i[2].v[0]),u=y-l;i[2].point[1]=0,i[0].point[0]=-(i[1].point[0]=i[0].v[0]/2);var f=[i[2].point[0]=i[0].point[0]+i[2].v[0]*o(l),2*(i[0].point[1]=i[1].point[1]=i[2].v[0]*m(l))];return function(t,e){var r,n=m(e),a=o(e),s=new Array(3);for(r=0;r<3;++r){var l=i[r];if(s[r]=rt(e-l[1],l[3],l[2],a,n,t-l[0]),!s[r][0])return l.point;s[r][1]=it(s[r][1]-l.v[1])}var h=f.slice();for(r=0;r<3;++r){var p=2==r?0:r+1,d=nt(i[r].v[0],s[r][0],s[p][0]);s[r][1]<0&&(d=-d),r?1==r?(d=c-d,h[0]-=s[r][0]*o(d),h[1]-=s[r][0]*m(d)):(d=u-d,h[0]+=s[r][0]*o(d),h[1]+=s[r][0]*m(d)):(h[0]+=s[r][0]*o(d),h[1]-=s[r][0]*m(d))}return h[0]/=3,h[1]/=3,h}}function ot(t){return t[0]*=M,t[1]*=M,t}function st(t,r,n){var i=e.geoCentroid({type:"MultiPoint",coordinates:[t,r,n]}),a=[-i[0],-i[1]],o=e.geoRotation(a),s=at(ot(o(t)),ot(o(r)),ot(o(n)));s.invert=H(s);var l=e.geoProjection(s).rotate(a),c=l.center;return delete l.rotate,l.center=function(t){return arguments.length?c(o(t)):o.invert(c())},l.clipAngle(90)}function lt(t,e){var r=L(1-m(e));return[2/T*t*r,T*(1-r)]}function ct(t){var e=g(t);function r(t,r){return[t,(t?t/m(t):1)*(m(r)*o(t)-e*o(r))]}return r.invert=e?function(t,r){t&&(r*=m(t)/t);var n=o(t);return[t,2*a(L(n*n+e*e-r*r)-n,e-r)]}:function(t,e){return[t,S(t?e*g(t)/t:e)]},r}lt.invert=function(t,e){var r=(r=e/T-1)*r;return[r>0?t*L(y/r)/2:0,S(1-r)]};var ut=L(3);function ft(t,e){return[ut*t*(2*o(2*e/3)-1)/T,ut*T*m(e/3)]}function ht(t){var e=o(t);function r(t,r){return[t*e,m(r)/e]}return r.invert=function(t,r){return[t/e,S(r*e)]},r}function pt(t){var e=o(t);function r(t,r){return[t*e,(1+e)*g(r/2)]}return r.invert=function(t,r){return[t/e,2*i(r/(1+e))]},r}function dt(t,e){var r=L(8/(3*y));return[r*t*(1-n(e)/y),r*e]}function mt(t,e){var r=L(4-3*m(n(e)));return[2/L(6*y)*t*r,d(e)*L(2*y/3)*(2-r)]}function gt(t,e){var r=L(y*(4+y));return[2/r*t*(1+L(1-4*e*e/(y*y))),4/r*e]}function vt(t,e){var r=(2+x)*m(e);e/=2;for(var i=0,a=1/0;i<10&&n(a)>v;i++){var s=o(e);e-=a=(e+m(e)*(s+2)-r)/(2*s*(1+s))}return[2/L(y*(4+y))*t*(1+o(e)),2*L(y/(4+y))*m(e)]}function yt(t,e){return[t*(1+o(e))/L(2+y),2*e/L(2+y)]}function xt(t,e){for(var r=(1+x)*m(e),i=0,a=1/0;i<10&&n(a)>v;i++)e-=a=(e+m(e)-r)/(1+o(e));return r=L(2+y),[t*(1+o(e))/r,2*e/r]}ft.invert=function(t,e){var r=3*S(e/(ut*T));return[T*t/(ut*(2*o(2*r/3)-1)),r]},dt.invert=function(t,e){var r=L(8/(3*y)),i=e/r;return[t/(r*(1-n(i)/y)),i]},mt.invert=function(t,e){var r=2-n(e)/L(2*y/3);return[t*L(6*y)/(2*r),d(e)*S((4-r*r)/3)]},gt.invert=function(t,e){var r=L(y*(4+y))/2;return[t*r/(1+L(1-e*e*(4+y)/(4*y))),e*r/2]},vt.invert=function(t,e){var r=e*L((4+y)/y)/2,n=S(r),i=o(n);return[t/(2/L(y*(4+y))*(1+i)),S((n+r*(i+2))/(2+x))]},yt.invert=function(t,e){var r=L(2+y),n=e*r/2;return[r*t/(1+o(n)),n]},xt.invert=function(t,e){var r=1+x,n=L(r/2);return[2*t*n/(1+o(e*=n)),S((e+m(e))/r)]};var bt=3+2*w;function _t(t,e){var r=m(t/=2),n=o(t),a=L(o(e)),s=o(e/=2),l=m(e)/(s+w*n*a),u=L(2/(1+l*l)),f=L((w*s+(n+r)*a)/(w*s+(n-r)*a));return[bt*(u*(f-1/f)-2*c(f)),bt*(u*l*(f+1/f)-2*i(l))]}_t.invert=function(t,e){if(!(r=D.invert(t/1.2,1.065*e)))return null;var r,a=r[0],s=r[1],l=20;t/=bt,e/=bt;do{var h=a/2,p=s/2,d=m(h),g=o(h),y=m(p),b=o(p),T=o(s),k=L(T),A=y/(b+w*g*k),M=A*A,S=L(2/(1+M)),E=(w*b+(g+d)*k)/(w*b+(g-d)*k),C=L(E),P=C-1/C,I=C+1/C,O=S*P-2*c(C)-t,z=S*A*I-2*i(A)-e,R=y&&_*k*d*M/y,F=(w*g*b+k)/(2*(b+w*g*k)*(b+w*g*k)*k),B=-.5*A*S*S*S,N=B*R,j=B*F,U=(U=2*b+w*k*(g-d))*U*C,V=(w*g*b*k+T)/U,H=-w*d*y/(k*U),q=P*N-2*V/C+S*(V+V/E),G=P*j-2*H/C+S*(H+H/E),Y=A*I*N-2*R/(1+M)+S*I*R+S*A*(V-V/E),W=A*I*j-2*F/(1+M)+S*I*F+S*A*(H-H/E),X=G*Y-W*q;if(!X)break;var Z=(z*G-O*W)/X,J=(O*Y-z*q)/X;a-=Z,s=u(-x,f(x,s-J))}while((n(Z)>v||n(J)>v)&&--l>0);return n(n(s)-x)s){var d=L(h),g=a(f,u),b=i*p(g/i),_=g-b,w=t*o(_),T=(t*m(_)-_*m(w))/(x-w),k=Lt(_,T),A=(y-t)/Ct(k,w,y);u=d;var M,S=50;do{u-=M=(t+Ct(k,w,u)*A-d)/(k(u)*A)}while(n(M)>v&&--S>0);f=_*m(u),us){var u=L(c),f=a(l,r),h=i*p(f/i),d=f-h;r=u*o(d),l=u*m(d);for(var g=r-x,v=m(r),b=l/v,_=rv||n(p)>v)&&--x>0);return[d,g]},u}Tt.invert=function(t,e){var r=e/(1+wt);return[t&&t/(wt*L(1-r*r)),2*i(r)]},kt.invert=function(t,e){var r=i(e/T),n=o(r),a=2*r;return[t*T/2/(o(a)*n*n),a]};var It=Pt(2.8284,-1.6988,.75432,-.18071,1.76003,-.38914,.042555);var Ot=Pt(2.583819,-.835827,.170354,-.038094,1.543313,-.411435,.082742);var zt=Pt(5/6*y,-.62636,-.0344,0,1.3493,-.05524,0,.045);function Dt(t,e){var r=t*t,n=e*e;return[t*(1-.162388*n)*(.87-952426e-9*r*r),e*(1+n/12)]}Dt.invert=function(t,e){var r,i=t,a=e,o=50;do{var s=a*a;a-=r=(a*(1+s/12)-e)/(1+s/4)}while(n(r)>v&&--o>0);o=50,t/=1-.162388*s;do{var l=(l=i*i)*l;i-=r=(i*(.87-952426e-9*l)-t)/(.87-.00476213*l)}while(n(r)>v&&--o>0);return[i,a]};var Rt=Pt(2.6516,-.76534,.19123,-.047094,1.36289,-.13965,.031762);function Ft(t){var e=t(x,0)[0]-t(-x,0)[0];function r(r,n){var i=r>0?-.5:.5,a=t(r+i*y,n);return a[0]-=i*e,a}return t.invert&&(r.invert=function(r,n){var i=r>0?-.5:.5,a=t.invert(r+i*e,n),o=a[0]-i*y;return o<-y?o+=2*y:o>y&&(o-=2*y),a[0]=o,a}),r}function Bt(t,e){var r=d(t),i=d(e),s=o(e),l=o(t)*s,c=m(t)*s,u=m(i*e);t=n(a(c,u)),e=S(l),n(t-x)>v&&(t%=x);var f=function(t,e){if(e===x)return[0,0];var r,i,a=m(e),s=a*a,l=s*s,c=1+l,u=1+3*l,f=1-l,h=S(1/L(c)),p=f+s*c*h,d=(1-a)/p,g=L(d),b=d*c,_=L(b),w=g*f;if(0===t)return[0,-(w+s*_)];var T,k=o(e),A=1/k,M=2*a*k,E=(-p*k-(-3*s+h*u)*M*(1-a))/(p*p),C=-A*M,P=-A*(s*c*E+d*u*M),I=-2*A*(f*(.5*E/g)-2*s*g*M),O=4*t/y;if(t>.222*y||e.175*y){if(r=(w+s*L(b*(1+l)-w*w))/(1+l),t>y/4)return[r,r];var z=r,D=.5*r;r=.5*(D+z),i=50;do{var R=L(b-r*r),F=r*(I+C*R)+P*S(r/_)-O;if(!F)break;F<0?D=r:z=r,r=.5*(D+z)}while(n(z-D)>v&&--i>0)}else{r=v,i=25;do{var B=r*r,N=L(b-B),j=I+C*N,U=r*j+P*S(r/_)-O,V=j+(P-C*B)/N;r-=T=N?U/V:0}while(n(T)>v&&--i>0)}return[r,-w-s*L(b-r*r)]}(t>y/4?x-t:t,e);return t>y/4&&(u=f[0],f[0]=-f[1],f[1]=-u),f[0]*=r,f[1]*=-i,f}function Nt(t,e){var r,a,l,c,u,f;if(e=1-v)return r=(1-e)/4,l=1/(a=P(t)),[(c=((f=s(2*(f=t)))-1)/(f+1))+r*((u=a*C(t))-t)/(a*a),l-r*c*l*(u-t),l+r*c*l*(u+t),2*i(s(t))-x+r*(u-t)/a];var h=[1,0,0,0,0,0,0,0,0],p=[L(e),0,0,0,0,0,0,0,0],d=0;for(a=L(1-e),u=1;n(p[d]/h[d])>v&&d<8;)r=h[d++],p[d]=(r-a)/2,h[d]=(r+a)/2,a=L(r*a),u*=2;l=u*h[d]*t;do{l=(S(c=p[d]*m(a=l)/h[d])+l)/2}while(--d);return[m(l),c=o(l),c/o(l-a),l]}function jt(t,e){if(!e)return t;if(1===e)return c(g(t/2+b));for(var r=1,a=L(1-e),o=L(e),s=0;n(o)>v;s++){if(t%y){var l=i(a*g(t)/r);l<0&&(l+=y),t+=l+~~(t/y)*y}else t+=t;o=(r+a)/2,a=L(r*a),o=((r=o)-a)/2}return t/(h(2,s)*r)}function Ut(t,e){var r=(w-1)/(w+1),l=L(1-r*r),u=jt(x,l*l),f=c(g(y/4+n(e)/2)),h=s(-1*f)/L(r),p=function(t,e){var r=t*t,n=e+1,i=1-r-e*e;return[.5*((t>=0?x:-x)-a(i,2*t)),-.25*c(i*i+4*r)+.5*c(n*n+r)]}(h*o(-1*t),h*m(-1*t)),v=function(t,e,r){var a=n(t),o=C(n(e));if(a){var s=1/m(a),l=1/(g(a)*g(a)),c=-(l+r*(o*o*s*s)-1+r),u=(-c+L(c*c-4*((r-1)*l)))/2;return[jt(i(1/L(u)),r)*d(t),jt(i(L((u/l-1)/r)),1-r)*d(e)]}return[0,jt(i(o),1-r)*d(e)]}(p[0],p[1],l*l);return[-v[1],(e>=0?1:-1)*(.5*u-v[0])]}function Vt(t){var e=m(t),r=o(t),i=Ht(t);function s(t,a){var s=i(t,a);t=s[0],a=s[1];var l=m(a),c=o(a),u=o(t),f=E(e*l+r*c*u),h=m(f),p=n(h)>v?f/h:1;return[p*r*m(t),(n(t)>x?p:-p)*(e*c-r*l*u)]}return i.invert=Ht(-t),s.invert=function(t,r){var n=L(t*t+r*r),s=-m(n),l=o(n),c=n*l,u=-r*s,f=n*e,h=L(c*c+u*u-f*f),p=a(c*f+u*h,u*f-c*h),d=(n>x?-1:1)*a(t*s,n*o(p)*l+r*m(p)*s);return i.invert(d,p)},s}function Ht(t){var e=m(t),r=o(t);return function(t,n){var i=o(n),s=o(t)*i,l=m(t)*i,c=m(n);return[a(l,s*r-c*e),S(c*r+s*e)]}}Bt.invert=function(t,e){n(t)>1&&(t=2*d(t)-t),n(e)>1&&(e=2*d(e)-e);var r=d(t),i=d(e),s=-r*t,l=-i*e,c=l/s<1,u=function(t,e){var r=0,i=1,a=.5,s=50;for(;;){var l=a*a,c=L(a),u=S(1/L(1+l)),f=1-l+a*(1+l)*u,h=(1-c)/f,p=L(h),d=h*(1+l),m=p*(1-l),g=L(d-t*t),v=e+m+a*g;if(n(i-r)<1e-12||0==--s||0===v)break;v>0?r=a:i=a,a=.5*(r+i)}if(!s)return null;var x=S(c),b=o(x),_=1/b,w=2*c*b,T=(-f*b-(-3*a+u*(1+3*l))*w*(1-c))/(f*f);return[y/4*(t*(-2*_*(.5*T/p*(1-l)-2*a*p*w)+-_*w*g)+-_*(a*(1+l)*T+h*(1+3*l)*w)*S(t/L(d))),x]}(c?l:s,c?s:l),f=u[0],h=u[1],p=o(h);return c&&(f=-x-f),[r*(a(m(f)*p,-m(h))+y),i*S(o(f)*p)]},Ut.invert=function(t,e){var r,n,o,l,u,f,h=(w-1)/(w+1),p=L(1-h*h),d=jt(x,p*p),m=(n=-t,o=p*p,(r=.5*d-e)?(l=Nt(r,o),n?(f=(u=Nt(n,1-o))[1]*u[1]+o*l[0]*l[0]*u[0]*u[0],[[l[0]*u[2]/f,l[1]*l[2]*u[0]*u[1]/f],[l[1]*u[1]/f,-l[0]*l[2]*u[0]*u[2]/f],[l[2]*u[1]*u[2]/f,-o*l[0]*l[1]*u[0]/f]]):[[l[0],0],[l[1],0],[l[2],0]]):[[0,(u=Nt(n,1-o))[0]/u[1]],[1/u[1],0],[u[2]/u[1],0]]),g=function(t,e){var r=e[0]*e[0]+e[1]*e[1];return[(t[0]*e[0]+t[1]*e[1])/r,(t[1]*e[0]-t[0]*e[1])/r]}(m[0],m[1]);return[a(g[1],g[0])/-1,2*i(s(-.5*c(h*g[0]*g[0]+h*g[1]*g[1])))-x]};var qt=S(1-1/3)*A,Gt=ht(0);function Yt(t){var e=qt*M,r=lt(y,e)[0]-lt(-y,e)[0],i=Gt(0,e)[1],a=lt(0,e)[1],o=T-a,s=k/t,c=4/k,h=i+o*o*4/k;function p(p,d){var m,g=n(d);if(g>e){var v=f(t-1,u(0,l((p+y)/s)));(m=lt(p+=y*(t-1)/t-v*s,g))[0]=m[0]*k/r-k*(t-1)/(2*t)+v*k/t,m[1]=i+4*(m[1]-a)*o/k,d<0&&(m[1]=-m[1])}else m=Gt(p,d);return m[0]*=c,m[1]/=h,m}return p.invert=function(e,p){e/=c;var d=n(p*=h);if(d>i){var m=f(t-1,u(0,l((e+y)/s)));e=(e+y*(t-1)/t-m*s)*r/k;var g=lt.invert(e,.25*(d-i)*k/o+a);return g[0]-=y*(t-1)/t-m*s,p<0&&(g[1]=-g[1]),g}return Gt.invert(e,p)},p}function Wt(t,e){return[t,1&e?90-v:qt]}function Xt(t,e){return[t,1&e?-90+v:-qt]}function Zt(t){return[t[0]*(1-v),t[1]]}function Jt(t){var e,r=1+t,i=S(m(1/r)),s=2*L(y/(e=y+4*i*r)),l=.5*s*(r+L(t*(2+t))),c=t*t,u=r*r;function f(f,h){var p,d,g=1-m(h);if(g&&g<2){var v,b=x-h,_=25;do{var w=m(b),T=o(b),k=i+a(w,r-T),A=1+u-2*r*T;b-=v=(b-c*i-r*w+A*k-.5*g*e)/(2*r*w*k)}while(n(v)>1e-12&&--_>0);p=s*L(A),d=f*k/y}else p=s*(t+g),d=f*i/y;return[p*m(d),l-p*o(d)]}return f.invert=function(t,n){var o=t*t+(n-=l)*n,f=(1+u-o/(s*s))/(2*r),h=E(f),p=m(h),d=i+a(p,r-f);return[S(t/L(o))*y/d,S(1-2*(h-c*i-r*p+(1+u-2*r*f)*d)/e)]},f}function Kt(t,e){return e>-.7109889596207567?((t=W(t,e))[1]+=.0528035274542,t):Q(t,e)}function Qt(t,e){return n(e)>.7109889596207567?((t=W(t,e))[1]-=e>0?.0528035274542:-.0528035274542,t):Q(t,e)}function $t(t,e,r,n){var i=L(4*y/(2*r+(1+t-e/2)*m(2*r)+(t+e)/2*m(4*r)+e/2*m(6*r))),a=L(n*m(r)*L((1+t*o(2*r)+e*o(4*r))/(1+t+e))),s=r*c(1);function l(r){return L(1+t*o(2*r)+e*o(4*r))}function c(n){var i=n*r;return(2*i+(1+t-e/2)*m(2*i)+(t+e)/2*m(4*i)+e/2*m(6*i))/r}function u(t){return l(t)*m(t)}var f=function(t,e){var n=r*V(c,s*m(e)/r,e/y);isNaN(n)&&(n=r*d(e));var u=i*l(n);return[u*a*t/y*o(n),u/a*m(n)]};return f.invert=function(t,e){var n=V(u,e*a/i);return[t*y/(o(n)*i*a*l(n)),S(r*c(n/r)/s)]},0===r&&(i=L(n/y),(f=function(t,e){return[t*i,m(e)/i]}).invert=function(t,e){return[t/i,S(e*i)]}),f}function te(t,e,r,n,i){void 0===n&&(n=1e-8),void 0===i&&(i=20);var a=t(e),o=t(.5*(e+r)),s=t(r);return function t(e,r,n,i,a,o,s,l,c,u,f){if(f.nanEncountered)return NaN;var h,p,d,m,g,v,y,x,b,_;if(p=e(r+.25*(h=n-r)),d=e(n-.25*h),isNaN(p))f.nanEncountered=!0;else{if(!isNaN(d))return _=((v=(m=h*(i+4*p+a)/12)+(g=h*(a+4*d+o)/12))-s)/15,u>c?(f.maxDepthCount++,v+_):Math.abs(_)t?r=n:e=n,n=e+r>>1}while(n>e);var i=c[n+1]-c[n];return i&&(i=(t-c[n+1])/i),(n+1+i)/s}var p=2*f(1)/y*o/r,g=function(t,e){var r=f(n(m(e))),a=i(r)*t;return r/=p,[a,e>=0?r:-r]};return g.invert=function(t,e){var r;return n(e*=p)<1&&(r=d(e)*S(a(n(e))*o)),[t/i(n(e)),r]},g}function re(t,e){return n(t[0]-e[0])=0;--l)n=(e=t[1][l])[0][0],i=e[0][1],a=e[1][1],o=e[2][0],s=e[2][1],c.push(ne([[o-v,s-v],[o-v,a+v],[n+v,a+v],[n+v,i-v]],30));return{type:"Polygon",coordinates:[r.merge(c)]}}function ae(t,r,n){var i,a;function o(e,n){for(var i=n<0?-1:1,a=r[+(n<0)],o=0,s=a.length-1;oa[o][2][0];++o);var l=t(e-a[o][1][0],n);return l[0]+=t(a[o][1][0],i*n>i*a[o][0][1]?a[o][0][1]:n)[0],l}n?o.invert=n(o):t.invert&&(o.invert=function(e,n){for(var i=a[+(n<0)],s=r[+(n<0)],l=0,c=i.length;lo&&(r=a,a=o,o=r),[[n,a],[i,o]]}))})),s):r.map((function(t){return t.map((function(t){return[[t[0][0]*A,t[0][1]*A],[t[1][0]*A,t[1][1]*A],[t[2][0]*A,t[2][1]*A]]}))}))},null!=r&&s.lobes(r),s}Kt.invert=function(t,e){return e>-.7109889596207567?W.invert(t,e-.0528035274542):Q.invert(t,e)},Qt.invert=function(t,e){return n(e)>.7109889596207567?W.invert(t,e+(e>0?.0528035274542:-.0528035274542)):Q.invert(t,e)};var oe=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];var se=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];var le=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];var ce=[[[[-180,0],[-90,90],[0,0]],[[0,0],[90,90],[180,0]]],[[[-180,0],[-90,-90],[0,0]],[[0,0],[90,-90],[180,0]]]];var ue=[[[[-180,35],[-30,90],[0,35]],[[0,35],[30,90],[180,35]]],[[[-180,-10],[-102,-90],[-65,-10]],[[-65,-10],[5,-90],[77,-10]],[[77,-10],[103,-90],[180,-10]]]];var fe=[[[[-180,0],[-110,90],[-40,0]],[[-40,0],[0,90],[40,0]],[[40,0],[110,90],[180,0]]],[[[-180,0],[-110,-90],[-40,0]],[[-40,0],[0,-90],[40,0]],[[40,0],[110,-90],[180,0]]]];function he(t,e){return[3/k*t*L(y*y/3-e*e),e]}function pe(t){function e(e,r){if(n(n(r)-x)2)return null;var o=(e/=2)*e,s=(r/=2)*r,l=2*r/(1+o+s);return l=h((1+l)/(1-l),1/t),[a(2*e,1-o-s)/t,S((l-1)/(l+1))]},e}he.invert=function(t,e){return[k/3*t/L(y*y/3-e*e),e]};var de=y/w;function me(t,e){return[t*(1+L(o(e)))/2,e/(o(e/2)*o(t/6))]}function ge(t,e){var r=t*t,n=e*e;return[t*(.975534+n*(-.0143059*r-.119161+-.0547009*n)),e*(1.00384+r*(.0802894+-.02855*n+199025e-9*r)+n*(.0998909+-.0491032*n))]}function ve(t,e){return[m(t)/o(e),g(e)*o(t)]}function ye(t){var e=o(t),r=g(b+t/2);function i(i,a){var o=a-t,s=n(o)=0;)h=(f=t[u])[0]+l*(i=h)-c*p,p=f[1]+l*p+c*i;return[h=l*(i=h)-c*p,p=l*p+c*i]}return r.invert=function(r,s){var l=20,c=r,u=s;do{for(var f,h=e,p=t[h],d=p[0],g=p[1],v=0,y=0;--h>=0;)v=d+c*(f=v)-u*y,y=g+c*y+u*f,d=(p=t[h])[0]+c*(f=d)-u*g,g=p[1]+c*g+u*f;var x,b,_=(v=d+c*(f=v)-u*y)*v+(y=g+c*y+u*f)*y;c-=x=((d=c*(f=d)-u*g-r)*v+(g=c*g+u*f-s)*y)/_,u-=b=(g*v-d*y)/_}while(n(x)+n(b)>1e-12&&--l>0);if(l){var w=L(c*c+u*u),T=2*i(.5*w),k=m(T);return[a(c*k,w*o(T)),w?S(u*k/w):0]}},r}me.invert=function(t,e){var r=n(t),i=n(e),a=v,s=x;iv||n(b)>v)&&--a>0);return a&&[r,i]},ve.invert=function(t,e){var r=t*t,n=e*e+1,i=r+n,a=t?_*L((i-L(i*i-4*r))/r):1/L(n);return[S(t*a),d(e)*E(a)]},xe.invert=function(t,e){return[t,2.5*i(s(.8*e))-.625*y]};var _e=[[.9972523,0],[.0052513,-.0041175],[.0074606,.0048125],[-.0153783,-.1968253],[.0636871,-.1408027],[.3660976,-.2937382]],we=[[.98879,0],[0,0],[-.050909,0],[0,0],[.075528,0]],Te=[[.984299,0],[.0211642,.0037608],[-.1036018,-.0575102],[-.0329095,-.0320119],[.0499471,.1223335],[.026046,.0899805],[7388e-7,-.1435792],[.0075848,-.1334108],[-.0216473,.0776645],[-.0225161,.0853673]],ke=[[.9245,0],[0,0],[.01943,0]],Ae=[[.721316,0],[0,0],[-.00881625,-.00617325]];function Me(t,r){var n=e.geoProjection(be(t)).rotate(r).clipAngle(90),i=e.geoRotation(r),a=n.center;return delete n.rotate,n.center=function(t){return arguments.length?a(i(t)):i.invert(a())},n}var Se=L(6),Ee=L(7);function Le(t,e){var r=S(7*m(e)/(3*Se));return[Se*t*(2*o(2*r/3)-1)/Ee,9*m(r/3)/Ee]}function Ce(t,e){for(var r,i=(1+_)*m(e),a=e,s=0;s<25&&(a-=r=(m(a/2)+m(a)-i)/(.5*o(a/2)+o(a)),!(n(r)1e-12&&--l>0);return[t/(.84719-.13063*(i=s*s)+(o=i*(a=i*i))*o*(.05494*i-.04515-.02326*a+.00331*o)),s]},Oe.invert=function(t,e){for(var r=e/2,i=0,a=1/0;i<10&&n(a)>v;++i){var s=o(e/2);e-=a=(e-g(e/2)-r)/(1-.5/(s*s))}return[2*t/(1+o(e)),e]};var ze=[[[[-180,0],[-90,90],[0,0]],[[0,0],[90,90],[180,0]]],[[[-180,0],[-90,-90],[0,0]],[[0,0],[90,-90],[180,0]]]];function De(t,e){var r=m(e),i=o(e),a=d(t);if(0===t||n(e)===x)return[0,e];if(0===e)return[t,0];if(n(t)===x)return[t*i,x*r];var s=y/(2*t)-2*t/y,l=2*e/y,c=(1-l*l)/(r-l),u=s*s,f=c*c,h=1+u/f,p=1+f/u,g=(s*r/c-s/2)/h,v=(f*r/u+c/2)/p,b=v*v-(f*r*r/u+c*r-1)/p;return[x*(g+L(g*g+i*i/h)*a),x*(v+L(b<0?0:b)*d(-e*s)*a)]}De.invert=function(t,e){var r=(t/=x)*t,n=r+(e/=x)*e,i=y*y;return[t?(n-1+L((1-n)*(1-n)+4*r))/(2*t)*x:0,V((function(t){return n*(y*m(t)-2*t)*y+4*t*t*(e-m(t))+2*y*t-i*e}),0)]};function Re(t,e){var r=e*e;return[t,e*(1.0148+r*r*(.23185+r*(.02406*r-.14499)))]}function Fe(t,e){if(n(e)=0;)if(n=e[s],r[0]===n[0]&&r[1]===n[1]){if(a)return[a,r];a=r}}}(e.face,r.face),i=Be(n.map(r.project),n.map(e.project));e.transform=r.transform?Ne(r.transform,i):i;for(var a=r.edges,o=0,s=a.length;o1.790857183?e=1.790857183:e<-1.790857183&&(e=-1.790857183);var r,i=e;do{var a=i*i;i-=r=(i*(1.0148+a*a*(.23185+a*(.02406*a-.14499)))-e)/(1.0148+a*a*(5*.23185+a*(.21654*a-1.01493)))}while(n(r)>v);return[t,i]},Fe.invert=function(t,e){if(n(e)v&&--s>0);return l=g(a),[(n(e)n^p>n&&r<(h-c)*(n-u)/(p-u)+c&&(i=!i)}return i}(t[0],r))return t.push(e),!0}))||t.push([e])})),nr=[],t.length?t.length>1?{type:"MultiPolygon",coordinates:t}:{type:"Polygon",coordinates:t[0]}:null}};function sr(t){var r=t(x,0)[0]-t(-x,0)[0];function i(e,i){var a=n(e)0?e-y:e+y,i),s=(o[0]-o[1])*_,l=(o[0]+o[1])*_;if(a)return[s,l];var c=r*_,u=s>0^l>0?-1:1;return[u*s-d(l)*c,u*l-d(s)*c]}return t.invert&&(i.invert=function(e,i){var a=(e+i)*_,o=(i-e)*_,s=n(a)<.5*r&&n(o)<.5*r;if(!s){var l=r*_,c=a>0^o>0?-1:1,u=-c*e+(o>0?1:-1)*l,f=-c*i+(a>0?1:-1)*l;a=(-u-f)*_,o=(u-f)*_}var h=t.invert(a,o);return s||(h[0]+=a>0?y:-y),h}),e.geoProjection(i).rotate([-90,-90,45]).clipAngle(179.999)}function lr(){return sr(Ut).scale(111.48)}function cr(t){var e=m(t);function r(r,n){var a=e?g(r*e/2)/e:r/2;if(!n)return[2*a,-t];var s=2*i(a*m(n)),l=1/g(n);return[m(s)*l,n+(1-o(s))*l-t]}return r.invert=function(r,a){if(n(a+=t)v&&--u>0);var d=r*(f=g(c)),x=g(n(a)0?x:-x)*(h+o*(d-c)/2+o*o*(d-2*h+c)/2)]}function hr(t,e){var r=function(t){function e(e,r){var n=o(r),i=(t-1)/(t-n*o(e));return[i*n*m(e),i*m(r)]}return e.invert=function(e,r){var n=e*e+r*r,i=L(n),o=(t-L(1-n*(t+1)/(t-1)))/((t-1)/i+i/(t-1));return[a(e*o,i*L(1-o*o)),i?S(r*o/i):0]},e}(t);if(!e)return r;var n=o(e),i=m(e);function s(e,a){var o=r(e,a),s=o[1],l=s*i/(t-1)+n;return[o[0]*n/l,s/l]}return s.invert=function(e,a){var o=(t-1)/(t-1-a*i);return r.invert(o*e,o*a*n)},s}ur.forEach((function(t){t[1]*=1.0144})),fr.invert=function(t,e){var r=e/x,i=90*r,a=f(18,n(i/5)),o=u(0,l(a));do{var s=ur[o][1],c=ur[o+1][1],h=ur[f(19,o+2)][1],p=h-s,d=h-2*c+s,m=2*(n(r)-c)/p,g=d/p,v=m*(1-g*m*(1-2*g*m));if(v>=0||1===o){i=(e>=0?5:-5)*(v+a);var y,b=50;do{v=(a=f(18,n(i)/5))-(o=l(a)),s=ur[o][1],c=ur[o+1][1],h=ur[f(19,o+2)][1],i-=(y=(e>=0?x:-x)*(c+v*(h-s)/2+v*v*(h-2*c+s)/2)-e)*A}while(n(y)>1e-12&&--b>0);break}}while(--o>=0);var _=ur[o][0],w=ur[o+1][0],T=ur[f(19,o+2)][0];return[t/(w+v*(T-_)/2+v*v*(T-2*w+_)/2),i*M]};var pr=-179.9999,dr=179.9999,mr=-89.9999;function gr(t){return t.length>0}function vr(t){return-90===t||90===t?[0,t]:[-180,(e=t,Math.floor(1e4*e)/1e4)];var e}function yr(t){var e=t[0],r=t[1],n=!1;return e<=pr?(e=-180,n=!0):e>=dr&&(e=180,n=!0),r<=mr?(r=-90,n=!0):r>=89.9999&&(r=90,n=!0),n?[e,r]:t}function xr(t){return t.map(yr)}function br(t,e,r){for(var n=0,i=t.length;n=dr||u<=mr||u>=89.9999){a[o]=yr(l);for(var f=o+1;fpr&&pmr&&d<89.9999)break}if(f===o+1)continue;if(o){var m={index:-1,polygon:e,ring:a.slice(0,o+1)};m.ring[m.ring.length-1]=vr(u),r[r.length-1]=m}else r.pop();if(f>=s)break;r.push({index:-1,polygon:e,ring:a=a.slice(f-1)}),a[0]=vr(a[0][1]),o=-1,s=a.length}}}}function _r(t){var e,r,n,i,a,o,s=t.length,l={},c={};for(e=0;e0?y-l:l)*A],u=e.geoProjection(t(s)).rotate(c),f=e.geoRotation(c),h=u.center;return delete u.rotate,u.center=function(t){return arguments.length?h(f(t)):f.invert(h())},u.clipAngle(90)}function Mr(t){var r=o(t);function n(t,n){var i=e.geoGnomonicRaw(t,n);return i[0]*=r,i}return n.invert=function(t,n){return e.geoGnomonicRaw.invert(t/r,n)},n}function Sr(t,e){return Ar(Mr,t,e)}function Er(t){if(!(t*=2))return e.geoAzimuthalEquidistantRaw;var r=-t/2,n=-r,i=t*t,s=g(n),l=.5/m(n);function c(e,a){var s=E(o(a)*o(e-r)),l=E(o(a)*o(e-n));return[((s*=s)-(l*=l))/(2*t),(a<0?-1:1)*L(4*i*l-(i-s+l)*(i-s+l))/(2*t)]}return c.invert=function(t,e){var i,c,u=e*e,f=o(L(u+(i=t+r)*i)),h=o(L(u+(i=t+n)*i));return[a(c=f-h,i=(f+h)*s),(e<0?-1:1)*E(L(i*i+c*c)*l)]},c}function Lr(t,e){return Ar(Er,t,e)}function Cr(t,e){if(n(e)v&&--l>0);return[d(t)*(L(a*a+4)+a)*y/4,x*s]};var Rr=4*y+3*L(3),Fr=2*L(2*y*L(3)/Rr),Br=Y(Fr*L(3)/y,Fr,Rr/6);function Nr(t,e){return[t*L(1-3*e*e/(y*y)),e]}function jr(t,e){var r=o(e),n=o(t)*r,i=1-n,s=o(t=a(m(t)*r,-m(e))),l=m(t);return[l*(r=L(1-n*n))-s*i,-s*r-l*i]}function Ur(t,e){var r=O(t,e);return[(r[0]+t/x)/2,(r[1]+e)/2]}Nr.invert=function(t,e){return[t/L(1-3*e*e/(y*y)),e]},jr.invert=function(t,e){var r=(t*t+e*e)/-2,n=L(-r*(2+r)),i=e*r+t*n,o=t*r-e*n,s=L(o*o+i*i);return[a(n*i,s*(1+r)),s?-S(n*o/s):0]},Ur.invert=function(t,e){var r=t,i=e,a=25;do{var s,l=o(i),c=m(i),u=m(2*i),f=c*c,h=l*l,p=m(r),d=o(r/2),g=m(r/2),y=g*g,b=1-h*d*d,_=b?E(l*d)*L(s=1/b):s=0,w=.5*(2*_*l*g+r/x)-t,T=.5*(_*c+i)-e,k=.5*s*(h*y+_*l*d*f)+.5/x,A=s*(p*u/4-_*c*g),M=.125*s*(u*g-_*c*h*p),S=.5*s*(f*d+_*y*l)+.5,C=A*M-S*k,P=(T*A-w*S)/C,I=(w*M-T*k)/C;r-=P,i-=I}while((n(P)>v||n(I)>v)&&--a>0);return[r,i]},t.geoNaturalEarth=e.geoNaturalEarth1,t.geoNaturalEarthRaw=e.geoNaturalEarth1Raw,t.geoAiry=function(){var t=x,r=e.geoProjectionMutator(I),n=r(t);return n.radius=function(e){return arguments.length?r(t=e*M):t*A},n.scale(179.976).clipAngle(147)},t.geoAiryRaw=I,t.geoAitoff=function(){return e.geoProjection(O).scale(152.63)},t.geoAitoffRaw=O,t.geoArmadillo=function(){var t=20*M,r=t>=0?1:-1,n=g(r*t),i=e.geoProjectionMutator(z),s=i(t),l=s.stream;return s.parallel=function(e){return arguments.length?(n=g((r=(t=e*M)>=0?1:-1)*t),i(t)):t*A},s.stream=function(e){var i=s.rotate(),c=l(e),u=(s.rotate([0,0]),l(e)),f=s.precision();return s.rotate(i),c.sphere=function(){u.polygonStart(),u.lineStart();for(var e=-180*r;r*e<180;e+=90*r)u.point(e,90*r);if(t)for(;r*(e-=3*r*f)>=-180;)u.point(e,r*-a(o(e*M/2),n)*A);u.lineEnd(),u.polygonEnd()},c},s.scale(218.695).center([0,28.0974])},t.geoArmadilloRaw=z,t.geoAugust=function(){return e.geoProjection(D).scale(66.1603)},t.geoAugustRaw=D,t.geoBaker=function(){return e.geoProjection(B).scale(112.314)},t.geoBakerRaw=B,t.geoBerghaus=function(){var t=5,r=e.geoProjectionMutator(N),n=r(t),i=n.stream,s=-o(.01*M),l=m(.01*M);return n.lobes=function(e){return arguments.length?r(t=+e):t},n.stream=function(e){var r=n.rotate(),c=i(e),u=(n.rotate([0,0]),i(e));return n.rotate(r),c.sphere=function(){u.polygonStart(),u.lineStart();for(var e=0,r=360/t,n=2*y/t,i=90-180/t,c=x;e=0;)t.point((e=r[i])[0],e[1]);t.lineEnd(),t.polygonEnd()},t},n.scale(79.4187).parallel(45).clipAngle(179.999)},t.geoHammerRetroazimuthalRaw=Vt,t.geoHealpix=function(){var t=4,n=e.geoProjectionMutator(Yt),i=n(t),a=i.stream;return i.lobes=function(e){return arguments.length?n(t=+e):t},i.stream=function(n){var o=i.rotate(),s=a(n),l=(i.rotate([0,0]),a(n));return i.rotate(o),s.sphere=function(){var n,i;e.geoStream((n=180/t,i=[].concat(r.range(-180,180+n/2,n).map(Wt),r.range(180,-180-n/2,-n).map(Xt)),{type:"Polygon",coordinates:[180===n?i.map(Zt):i]}),l)},s},i.scale(239.75)},t.geoHealpixRaw=Yt,t.geoHill=function(){var t=1,r=e.geoProjectionMutator(Jt),n=r(t);return n.ratio=function(e){return arguments.length?r(t=+e):t},n.scale(167.774).center([0,18.67])},t.geoHillRaw=Jt,t.geoHomolosine=function(){return e.geoProjection(Qt).scale(152.63)},t.geoHomolosineRaw=Qt,t.geoHufnagel=function(){var t=1,r=0,n=45*M,i=2,a=e.geoProjectionMutator($t),o=a(t,r,n,i);return o.a=function(e){return arguments.length?a(t=+e,r,n,i):t},o.b=function(e){return arguments.length?a(t,r=+e,n,i):r},o.psiMax=function(e){return arguments.length?a(t,r,n=+e*M,i):n*A},o.ratio=function(e){return arguments.length?a(t,r,n,i=+e):i},o.scale(180.739)},t.geoHufnagelRaw=$t,t.geoHyperelliptical=function(){var t=0,r=2.5,n=1.183136,i=e.geoProjectionMutator(ee),a=i(t,r,n);return a.alpha=function(e){return arguments.length?i(t=+e,r,n):t},a.k=function(e){return arguments.length?i(t,r=+e,n):r},a.gamma=function(e){return arguments.length?i(t,r,n=+e):n},a.scale(152.63)},t.geoHyperellipticalRaw=ee,t.geoInterrupt=ae,t.geoInterruptedBoggs=function(){return ae(J,oe).scale(160.857)},t.geoInterruptedHomolosine=function(){return ae(Qt,se).scale(152.63)},t.geoInterruptedMollweide=function(){return ae(W,le).scale(169.529)},t.geoInterruptedMollweideHemispheres=function(){return ae(W,ce).scale(169.529).rotate([20,0])},t.geoInterruptedSinuMollweide=function(){return ae(Kt,ue,H).rotate([-20,-55]).scale(164.263).center([0,-5.4036])},t.geoInterruptedSinusoidal=function(){return ae(Q,fe).scale(152.63).rotate([-20,0])},t.geoKavrayskiy7=function(){return e.geoProjection(he).scale(158.837)},t.geoKavrayskiy7Raw=he,t.geoLagrange=function(){var t=.5,r=e.geoProjectionMutator(pe),n=r(t);return n.spacing=function(e){return arguments.length?r(t=+e):t},n.scale(124.75)},t.geoLagrangeRaw=pe,t.geoLarrivee=function(){return e.geoProjection(me).scale(97.2672)},t.geoLarriveeRaw=me,t.geoLaskowski=function(){return e.geoProjection(ge).scale(139.98)},t.geoLaskowskiRaw=ge,t.geoLittrow=function(){return e.geoProjection(ve).scale(144.049).clipAngle(89.999)},t.geoLittrowRaw=ve,t.geoLoximuthal=function(){return K(ye).parallel(40).scale(158.837)},t.geoLoximuthalRaw=ye,t.geoMiller=function(){return e.geoProjection(xe).scale(108.318)},t.geoMillerRaw=xe,t.geoModifiedStereographic=Me,t.geoModifiedStereographicRaw=be,t.geoModifiedStereographicAlaska=function(){return Me(_e,[152,-64]).scale(1400).center([-160.908,62.4864]).clipAngle(30).angle(7.8)},t.geoModifiedStereographicGs48=function(){return Me(we,[95,-38]).scale(1e3).clipAngle(55).center([-96.5563,38.8675])},t.geoModifiedStereographicGs50=function(){return Me(Te,[120,-45]).scale(359.513).clipAngle(55).center([-117.474,53.0628])},t.geoModifiedStereographicMiller=function(){return Me(ke,[-20,-18]).scale(209.091).center([20,16.7214]).clipAngle(82)},t.geoModifiedStereographicLee=function(){return Me(Ae,[165,10]).scale(250).clipAngle(130).center([-165,-10])},t.geoMollweide=function(){return e.geoProjection(W).scale(169.529)},t.geoMollweideRaw=W,t.geoMtFlatPolarParabolic=function(){return e.geoProjection(Le).scale(164.859)},t.geoMtFlatPolarParabolicRaw=Le,t.geoMtFlatPolarQuartic=function(){return e.geoProjection(Ce).scale(188.209)},t.geoMtFlatPolarQuarticRaw=Ce,t.geoMtFlatPolarSinusoidal=function(){return e.geoProjection(Pe).scale(166.518)},t.geoMtFlatPolarSinusoidalRaw=Pe,t.geoNaturalEarth2=function(){return e.geoProjection(Ie).scale(175.295)},t.geoNaturalEarth2Raw=Ie,t.geoNellHammer=function(){return e.geoProjection(Oe).scale(152.63)},t.geoNellHammerRaw=Oe,t.geoInterruptedQuarticAuthalic=function(){return ae(j(1/0),ze).rotate([20,0]).scale(152.63)},t.geoNicolosi=function(){return e.geoProjection(De).scale(127.267)},t.geoNicolosiRaw=De,t.geoPatterson=function(){return e.geoProjection(Re).scale(139.319)},t.geoPattersonRaw=Re,t.geoPolyconic=function(){return e.geoProjection(Fe).scale(103.74)},t.geoPolyconicRaw=Fe,t.geoPolyhedral=Ve,t.geoPolyhedralButterfly=function(t){t=t||function(t){var r=e.geoCentroid({type:"MultiPoint",coordinates:t});return e.geoGnomonic().scale(1).translate([0,0]).rotate([-r[0],-r[1]])};var r=Ye.map((function(e){return{face:e,project:t(e)}}));return[-1,0,0,1,0,1,4,5].forEach((function(t,e){var n=r[t];n&&(n.children||(n.children=[])).push(r[e])})),Ve(r[0],(function(t,e){return r[t<-y/2?e<0?6:4:t<0?e<0?2:0:t0?[-r[0],0]:[180-r[0],180])};var r=Ye.map((function(e){return{face:e,project:t(e)}}));return[-1,0,0,1,0,1,4,5].forEach((function(t,e){var n=r[t];n&&(n.children||(n.children=[])).push(r[e])})),Ve(r[0],(function(t,e){return r[t<-y/2?e<0?6:4:t<0?e<0?2:0:t2||a[0]!=e[0]||a[1]!=e[1])&&(n.push(a),e=a)}return 1===n.length&&t.length>1&&n.push(r(t[t.length-1])),n}function a(t){return t.map(i)}function o(t){if(null==t)return t;var e;switch(t.type){case"GeometryCollection":e={type:"GeometryCollection",geometries:t.geometries.map(o)};break;case"Point":e={type:"Point",coordinates:r(t.coordinates)};break;case"MultiPoint":e={type:t.type,coordinates:n(t.coordinates)};break;case"LineString":e={type:t.type,coordinates:i(t.coordinates)};break;case"MultiLineString":case"Polygon":e={type:t.type,coordinates:a(t.coordinates)};break;case"MultiPolygon":e={type:"MultiPolygon",coordinates:t.coordinates.map(a)};break;default:return t}return null!=t.bbox&&(e.bbox=t.bbox),e}function s(t){var e={type:"Feature",properties:t.properties,geometry:o(t.geometry)};return null!=t.id&&(e.id=t.id),null!=t.bbox&&(e.bbox=t.bbox),e}if(null!=t)switch(t.type){case"Feature":return s(t);case"FeatureCollection":var l={type:"FeatureCollection",features:t.features.map(s)};return null!=t.bbox&&(l.bbox=t.bbox),l;default:return o(t)}return t},t.geoQuincuncial=sr,t.geoRectangularPolyconic=function(){return K(cr).scale(131.215)},t.geoRectangularPolyconicRaw=cr,t.geoRobinson=function(){return e.geoProjection(fr).scale(152.63)},t.geoRobinsonRaw=fr,t.geoSatellite=function(){var t=2,r=0,n=e.geoProjectionMutator(hr),i=n(t,r);return i.distance=function(e){return arguments.length?n(t=+e,r):t},i.tilt=function(e){return arguments.length?n(t,r=e*M):r*A},i.scale(432.147).clipAngle(E(1/t)*A-1e-6)},t.geoSatelliteRaw=hr,t.geoSinuMollweide=function(){return e.geoProjection(Kt).rotate([-20,-55]).scale(164.263).center([0,-5.4036])},t.geoSinuMollweideRaw=Kt,t.geoSinusoidal=function(){return e.geoProjection(Q).scale(152.63)},t.geoSinusoidalRaw=Q,t.geoStitch=function(t){if(null==t)return t;switch(t.type){case"Feature":return wr(t);case"FeatureCollection":var e={type:"FeatureCollection",features:t.features.map(wr)};return null!=t.bbox&&(e.bbox=t.bbox),e;default:return Tr(t)}},t.geoTimes=function(){return e.geoProjection(kr).scale(146.153)},t.geoTimesRaw=kr,t.geoTwoPointAzimuthal=Sr,t.geoTwoPointAzimuthalRaw=Mr,t.geoTwoPointAzimuthalUsa=function(){return Sr([-158,21.5],[-77,39]).clipAngle(60).scale(400)},t.geoTwoPointEquidistant=Lr,t.geoTwoPointEquidistantRaw=Er,t.geoTwoPointEquidistantUsa=function(){return Lr([-158,21.5],[-77,39]).clipAngle(130).scale(122.571)},t.geoVanDerGrinten=function(){return e.geoProjection(Cr).scale(79.4183)},t.geoVanDerGrintenRaw=Cr,t.geoVanDerGrinten2=function(){return e.geoProjection(Pr).scale(79.4183)},t.geoVanDerGrinten2Raw=Pr,t.geoVanDerGrinten3=function(){return e.geoProjection(Ir).scale(79.4183)},t.geoVanDerGrinten3Raw=Ir,t.geoVanDerGrinten4=function(){return e.geoProjection(Or).scale(127.16)},t.geoVanDerGrinten4Raw=Or,t.geoWagner=Dr,t.geoWagner7=function(){return Dr().poleline(65).parallels(60).inflation(0).ratio(200).scale(172.633)},t.geoWagnerRaw=zr,t.geoWagner4=function(){return e.geoProjection(Br).scale(176.84)},t.geoWagner4Raw=Br,t.geoWagner6=function(){return e.geoProjection(Nr).scale(152.63)},t.geoWagner6Raw=Nr,t.geoWiechel=function(){return e.geoProjection(jr).rotate([0,-90,45]).scale(124.75).clipAngle(179.999)},t.geoWiechelRaw=jr,t.geoWinkel3=function(){return e.geoProjection(Ur).scale(158.837)},t.geoWinkel3Raw=Ur,Object.defineProperty(t,"__esModule",{value:!0})}))},{"d3-array":155,"d3-geo":162}],162:[function(t,e,r){!function(n,i){"object"==typeof r&&void 0!==e?i(r,t("d3-array")):i((n=n||self).d3=n.d3||{},n.d3)}(this,(function(t,e){"use strict";function r(){return new n}function n(){this.reset()}n.prototype={constructor:n,reset:function(){this.s=this.t=0},add:function(t){a(i,t,this.t),a(this,i.s,this.s),this.s?this.t+=i.t:this.s=i.t},valueOf:function(){return this.s}};var i=new n;function a(t,e,r){var n=t.s=e+r,i=n-e,a=n-i;t.t=e-a+(r-i)}var o=1e-6,s=Math.PI,l=s/2,c=s/4,u=2*s,f=180/s,h=s/180,p=Math.abs,d=Math.atan,m=Math.atan2,g=Math.cos,v=Math.ceil,y=Math.exp,x=Math.log,b=Math.pow,_=Math.sin,w=Math.sign||function(t){return t>0?1:t<0?-1:0},T=Math.sqrt,k=Math.tan;function A(t){return t>1?0:t<-1?s:Math.acos(t)}function M(t){return t>1?l:t<-1?-l:Math.asin(t)}function S(t){return(t=_(t/2))*t}function E(){}function L(t,e){t&&P.hasOwnProperty(t.type)&&P[t.type](t,e)}var C={Feature:function(t,e){L(t.geometry,e)},FeatureCollection:function(t,e){for(var r=t.features,n=-1,i=r.length;++n=0?1:-1,i=n*r,a=g(e=(e*=h)/2+c),o=_(e),s=N*o,l=B*a+s*g(i),u=s*n*_(i);j.add(m(u,l)),F=t,B=a,N=o}function W(t){return[m(t[1],t[0]),M(t[2])]}function X(t){var e=t[0],r=t[1],n=g(r);return[n*g(e),n*_(e),_(r)]}function Z(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function J(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function K(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function Q(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function $(t){var e=T(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}var tt,et,rt,nt,it,at,ot,st,lt,ct,ut,ft,ht,pt,dt,mt,gt,vt,yt,xt,bt,_t,wt,Tt,kt,At,Mt=r(),St={point:Et,lineStart:Ct,lineEnd:Pt,polygonStart:function(){St.point=It,St.lineStart=Ot,St.lineEnd=zt,Mt.reset(),V.polygonStart()},polygonEnd:function(){V.polygonEnd(),St.point=Et,St.lineStart=Ct,St.lineEnd=Pt,j<0?(tt=-(rt=180),et=-(nt=90)):Mt>o?nt=90:Mt<-o&&(et=-90),ct[0]=tt,ct[1]=rt},sphere:function(){tt=-(rt=180),et=-(nt=90)}};function Et(t,e){lt.push(ct=[tt=t,rt=t]),ent&&(nt=e)}function Lt(t,e){var r=X([t*h,e*h]);if(st){var n=J(st,r),i=J([n[1],-n[0],0],n);$(i),i=W(i);var a,o=t-it,s=o>0?1:-1,l=i[0]*f*s,c=p(o)>180;c^(s*itnt&&(nt=a):c^(s*it<(l=(l+360)%360-180)&&lnt&&(nt=e)),c?tDt(tt,rt)&&(rt=t):Dt(t,rt)>Dt(tt,rt)&&(tt=t):rt>=tt?(trt&&(rt=t)):t>it?Dt(tt,t)>Dt(tt,rt)&&(rt=t):Dt(t,rt)>Dt(tt,rt)&&(tt=t)}else lt.push(ct=[tt=t,rt=t]);ent&&(nt=e),st=r,it=t}function Ct(){St.point=Lt}function Pt(){ct[0]=tt,ct[1]=rt,St.point=Et,st=null}function It(t,e){if(st){var r=t-it;Mt.add(p(r)>180?r+(r>0?360:-360):r)}else at=t,ot=e;V.point(t,e),Lt(t,e)}function Ot(){V.lineStart()}function zt(){It(at,ot),V.lineEnd(),p(Mt)>o&&(tt=-(rt=180)),ct[0]=tt,ct[1]=rt,st=null}function Dt(t,e){return(e-=t)<0?e+360:e}function Rt(t,e){return t[0]-e[0]}function Ft(t,e){return t[0]<=t[1]?t[0]<=e&&e<=t[1]:es?t+Math.round(-t/u)*u:t,e]}function Qt(t,e,r){return(t%=u)?e||r?Jt(te(t),ee(e,r)):te(t):e||r?ee(e,r):Kt}function $t(t){return function(e,r){return[(e+=t)>s?e-u:e<-s?e+u:e,r]}}function te(t){var e=$t(t);return e.invert=$t(-t),e}function ee(t,e){var r=g(t),n=_(t),i=g(e),a=_(e);function o(t,e){var o=g(e),s=g(t)*o,l=_(t)*o,c=_(e),u=c*r+s*n;return[m(l*i-u*a,s*r-c*n),M(u*i+l*a)]}return o.invert=function(t,e){var o=g(e),s=g(t)*o,l=_(t)*o,c=_(e),u=c*i-l*a;return[m(l*i+c*a,s*r+u*n),M(u*r-s*n)]},o}function re(t){function e(e){return(e=t(e[0]*h,e[1]*h))[0]*=f,e[1]*=f,e}return t=Qt(t[0]*h,t[1]*h,t.length>2?t[2]*h:0),e.invert=function(e){return(e=t.invert(e[0]*h,e[1]*h))[0]*=f,e[1]*=f,e},e}function ne(t,e,r,n,i,a){if(r){var o=g(e),s=_(e),l=n*r;null==i?(i=e+n*u,a=e-l/2):(i=ie(o,i),a=ie(o,a),(n>0?ia)&&(i+=n*u));for(var c,f=i;n>0?f>a:f1&&e.push(e.pop().concat(e.shift()))},result:function(){var r=e;return e=[],t=null,r}}}function oe(t,e){return p(t[0]-e[0])=0;--a)i.point((f=u[a])[0],f[1]);else n(p.x,p.p.x,-1,i);p=p.p}u=(p=p.o).z,d=!d}while(!p.v);i.lineEnd()}}}function ce(t){if(e=t.length){for(var e,r,n=0,i=t[0];++n=0?1:-1,z=O*I,D=z>s,R=T*C;if(ue.add(m(R*O*_(z),k*P+R*g(z))),f+=D?I+O*u:I,D^b>=r^E>=r){var F=J(X(x),X(S));$(F);var B=J(a,F);$(B);var N=(D^I>=0?-1:1)*M(B[2]);(n>N||n===N&&(F[0]||F[1]))&&(h+=D^I>=0?1:-1)}}return(f<-o||f0){for(h||(a.polygonStart(),h=!0),a.lineStart(),t=0;t1&&2&i&&c.push(c.pop().concat(c.shift())),s.push(c.filter(de))}return p}}function de(t){return t.length>1}function me(t,e){return((t=t.x)[0]<0?t[1]-l-o:l-t[1])-((e=e.x)[0]<0?e[1]-l-o:l-e[1])}var ge=pe((function(){return!0}),(function(t){var e,r=NaN,n=NaN,i=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(a,c){var u=a>0?s:-s,f=p(a-r);p(f-s)0?l:-l),t.point(i,n),t.lineEnd(),t.lineStart(),t.point(u,n),t.point(a,n),e=0):i!==u&&f>=s&&(p(r-i)o?d((_(e)*(a=g(n))*_(r)-_(n)*(i=g(e))*_(t))/(i*a*s)):(e+n)/2}(r,n,a,c),t.point(i,n),t.lineEnd(),t.lineStart(),t.point(u,n),e=0),t.point(r=a,n=c),i=u},lineEnd:function(){t.lineEnd(),r=n=NaN},clean:function(){return 2-e}}}),(function(t,e,r,n){var i;if(null==t)i=r*l,n.point(-s,i),n.point(0,i),n.point(s,i),n.point(s,0),n.point(s,-i),n.point(0,-i),n.point(-s,-i),n.point(-s,0),n.point(-s,i);else if(p(t[0]-e[0])>o){var a=t[0]0,i=p(e)>o;function a(t,r){return g(t)*g(r)>e}function l(t,r,n){var i=[1,0,0],a=J(X(t),X(r)),l=Z(a,a),c=a[0],u=l-c*c;if(!u)return!n&&t;var f=e*l/u,h=-e*c/u,d=J(i,a),m=Q(i,f);K(m,Q(a,h));var g=d,v=Z(m,g),y=Z(g,g),x=v*v-y*(Z(m,m)-1);if(!(x<0)){var b=T(x),_=Q(g,(-v-b)/y);if(K(_,m),_=W(_),!n)return _;var w,k=t[0],A=r[0],M=t[1],S=r[1];A0^_[1]<(p(_[0]-k)s^(k<=_[0]&&_[0]<=A)){var C=Q(g,(-v+b)/y);return K(C,m),[_,W(C)]}}}function c(e,r){var i=n?t:s-t,a=0;return e<-i?a|=1:e>i&&(a|=2),r<-i?a|=4:r>i&&(a|=8),a}return pe(a,(function(t){var e,r,o,u,f;return{lineStart:function(){u=o=!1,f=1},point:function(h,p){var d,m=[h,p],g=a(h,p),v=n?g?0:c(h,p):g?c(h+(h<0?s:-s),p):0;if(!e&&(u=o=g)&&t.lineStart(),g!==o&&(!(d=l(e,m))||oe(e,d)||oe(m,d))&&(m[2]=1),g!==o)f=0,g?(t.lineStart(),d=l(m,e),t.point(d[0],d[1])):(d=l(e,m),t.point(d[0],d[1],2),t.lineEnd()),e=d;else if(i&&e&&n^g){var y;v&r||!(y=l(m,e,!0))||(f=0,n?(t.lineStart(),t.point(y[0][0],y[0][1]),t.point(y[1][0],y[1][1]),t.lineEnd()):(t.point(y[1][0],y[1][1]),t.lineEnd(),t.lineStart(),t.point(y[0][0],y[0][1],3)))}!g||e&&oe(e,m)||t.point(m[0],m[1]),e=m,o=g,r=v},lineEnd:function(){o&&t.lineEnd(),e=null},clean:function(){return f|(u&&o)<<1}}}),(function(e,n,i,a){ne(a,t,r,i,e,n)}),n?[0,-t]:[-s,t-s])}function ye(t,r,n,i){function a(e,a){return t<=e&&e<=n&&r<=a&&a<=i}function s(e,a,o,s){var c=0,f=0;if(null==e||(c=l(e,o))!==(f=l(a,o))||u(e,a)<0^o>0)do{s.point(0===c||3===c?t:n,c>1?i:r)}while((c=(c+o+4)%4)!==f);else s.point(a[0],a[1])}function l(e,i){return p(e[0]-t)0?0:3:p(e[0]-n)0?2:1:p(e[1]-r)0?1:0:i>0?3:2}function c(t,e){return u(t.x,e.x)}function u(t,e){var r=l(t,1),n=l(e,1);return r!==n?r-n:0===r?e[1]-t[1]:1===r?t[0]-e[0]:2===r?t[1]-e[1]:e[0]-t[0]}return function(o){var l,u,f,h,p,d,m,g,v,y,x,b=o,_=ae(),w={point:T,lineStart:function(){w.point=k,u&&u.push(f=[]);y=!0,v=!1,m=g=NaN},lineEnd:function(){l&&(k(h,p),d&&v&&_.rejoin(),l.push(_.result()));w.point=T,v&&b.lineEnd()},polygonStart:function(){b=_,l=[],u=[],x=!0},polygonEnd:function(){var r=function(){for(var e=0,r=0,n=u.length;ri&&(h-a)*(i-o)>(p-o)*(t-a)&&++e:p<=i&&(h-a)*(i-o)<(p-o)*(t-a)&&--e;return e}(),n=x&&r,a=(l=e.merge(l)).length;(n||a)&&(o.polygonStart(),n&&(o.lineStart(),s(null,null,1,o),o.lineEnd()),a&&le(l,c,r,s,o),o.polygonEnd());b=o,l=u=f=null}};function T(t,e){a(t,e)&&b.point(t,e)}function k(e,o){var s=a(e,o);if(u&&f.push([e,o]),y)h=e,p=o,d=s,y=!1,s&&(b.lineStart(),b.point(e,o));else if(s&&v)b.point(e,o);else{var l=[m=Math.max(-1e9,Math.min(1e9,m)),g=Math.max(-1e9,Math.min(1e9,g))],c=[e=Math.max(-1e9,Math.min(1e9,e)),o=Math.max(-1e9,Math.min(1e9,o))];!function(t,e,r,n,i,a){var o,s=t[0],l=t[1],c=0,u=1,f=e[0]-s,h=e[1]-l;if(o=r-s,f||!(o>0)){if(o/=f,f<0){if(o0){if(o>u)return;o>c&&(c=o)}if(o=i-s,f||!(o<0)){if(o/=f,f<0){if(o>u)return;o>c&&(c=o)}else if(f>0){if(o0)){if(o/=h,h<0){if(o0){if(o>u)return;o>c&&(c=o)}if(o=a-l,h||!(o<0)){if(o/=h,h<0){if(o>u)return;o>c&&(c=o)}else if(h>0){if(o0&&(t[0]=s+c*f,t[1]=l+c*h),u<1&&(e[0]=s+u*f,e[1]=l+u*h),!0}}}}}(l,c,t,r,n,i)?s&&(b.lineStart(),b.point(e,o),x=!1):(v||(b.lineStart(),b.point(l[0],l[1])),b.point(c[0],c[1]),s||b.lineEnd(),x=!1)}m=e,g=o,v=s}return w}}var xe,be,_e,we=r(),Te={sphere:E,point:E,lineStart:function(){Te.point=Ae,Te.lineEnd=ke},lineEnd:E,polygonStart:E,polygonEnd:E};function ke(){Te.point=Te.lineEnd=E}function Ae(t,e){xe=t*=h,be=_(e*=h),_e=g(e),Te.point=Me}function Me(t,e){t*=h;var r=_(e*=h),n=g(e),i=p(t-xe),a=g(i),o=n*_(i),s=_e*r-be*n*a,l=be*r+_e*n*a;we.add(m(T(o*o+s*s),l)),xe=t,be=r,_e=n}function Se(t){return we.reset(),z(t,Te),+we}var Ee=[null,null],Le={type:"LineString",coordinates:Ee};function Ce(t,e){return Ee[0]=t,Ee[1]=e,Se(Le)}var Pe={Feature:function(t,e){return Oe(t.geometry,e)},FeatureCollection:function(t,e){for(var r=t.features,n=-1,i=r.length;++n0&&(i=Ce(t[a],t[a-1]))>0&&r<=i&&n<=i&&(r+n-i)*(1-Math.pow((r-n)/i,2))<1e-12*i)return!0;r=n}return!1}function Re(t,e){return!!he(t.map(Fe),Be(e))}function Fe(t){return(t=t.map(Be)).pop(),t}function Be(t){return[t[0]*h,t[1]*h]}function Ne(t,r,n){var i=e.range(t,r-o,n).concat(r);return function(t){return i.map((function(e){return[t,e]}))}}function je(t,r,n){var i=e.range(t,r-o,n).concat(r);return function(t){return i.map((function(e){return[e,t]}))}}function Ue(){var t,r,n,i,a,s,l,c,u,f,h,d,m=10,g=m,y=90,x=360,b=2.5;function _(){return{type:"MultiLineString",coordinates:w()}}function w(){return e.range(v(i/y)*y,n,y).map(h).concat(e.range(v(c/x)*x,l,x).map(d)).concat(e.range(v(r/m)*m,t,m).filter((function(t){return p(t%y)>o})).map(u)).concat(e.range(v(s/g)*g,a,g).filter((function(t){return p(t%x)>o})).map(f))}return _.lines=function(){return w().map((function(t){return{type:"LineString",coordinates:t}}))},_.outline=function(){return{type:"Polygon",coordinates:[h(i).concat(d(l).slice(1),h(n).reverse().slice(1),d(c).reverse().slice(1))]}},_.extent=function(t){return arguments.length?_.extentMajor(t).extentMinor(t):_.extentMinor()},_.extentMajor=function(t){return arguments.length?(i=+t[0][0],n=+t[1][0],c=+t[0][1],l=+t[1][1],i>n&&(t=i,i=n,n=t),c>l&&(t=c,c=l,l=t),_.precision(b)):[[i,c],[n,l]]},_.extentMinor=function(e){return arguments.length?(r=+e[0][0],t=+e[1][0],s=+e[0][1],a=+e[1][1],r>t&&(e=r,r=t,t=e),s>a&&(e=s,s=a,a=e),_.precision(b)):[[r,s],[t,a]]},_.step=function(t){return arguments.length?_.stepMajor(t).stepMinor(t):_.stepMinor()},_.stepMajor=function(t){return arguments.length?(y=+t[0],x=+t[1],_):[y,x]},_.stepMinor=function(t){return arguments.length?(m=+t[0],g=+t[1],_):[m,g]},_.precision=function(e){return arguments.length?(b=+e,u=Ne(s,a,90),f=je(r,t,b),h=Ne(c,l,90),d=je(i,n,b),_):b},_.extentMajor([[-180,-90+o],[180,90-o]]).extentMinor([[-180,-80-o],[180,80+o]])}function Ve(t){return t}var He,qe,Ge,Ye,We=r(),Xe=r(),Ze={point:E,lineStart:E,lineEnd:E,polygonStart:function(){Ze.lineStart=Je,Ze.lineEnd=$e},polygonEnd:function(){Ze.lineStart=Ze.lineEnd=Ze.point=E,We.add(p(Xe)),Xe.reset()},result:function(){var t=We/2;return We.reset(),t}};function Je(){Ze.point=Ke}function Ke(t,e){Ze.point=Qe,He=Ge=t,qe=Ye=e}function Qe(t,e){Xe.add(Ye*t-Ge*e),Ge=t,Ye=e}function $e(){Qe(He,qe)}var tr=1/0,er=tr,rr=-tr,nr=rr,ir={point:function(t,e){trr&&(rr=t);enr&&(nr=e)},lineStart:E,lineEnd:E,polygonStart:E,polygonEnd:E,result:function(){var t=[[tr,er],[rr,nr]];return rr=nr=-(er=tr=1/0),t}};var ar,or,sr,lr,cr=0,ur=0,fr=0,hr=0,pr=0,dr=0,mr=0,gr=0,vr=0,yr={point:xr,lineStart:br,lineEnd:Tr,polygonStart:function(){yr.lineStart=kr,yr.lineEnd=Ar},polygonEnd:function(){yr.point=xr,yr.lineStart=br,yr.lineEnd=Tr},result:function(){var t=vr?[mr/vr,gr/vr]:dr?[hr/dr,pr/dr]:fr?[cr/fr,ur/fr]:[NaN,NaN];return cr=ur=fr=hr=pr=dr=mr=gr=vr=0,t}};function xr(t,e){cr+=t,ur+=e,++fr}function br(){yr.point=_r}function _r(t,e){yr.point=wr,xr(sr=t,lr=e)}function wr(t,e){var r=t-sr,n=e-lr,i=T(r*r+n*n);hr+=i*(sr+t)/2,pr+=i*(lr+e)/2,dr+=i,xr(sr=t,lr=e)}function Tr(){yr.point=xr}function kr(){yr.point=Mr}function Ar(){Sr(ar,or)}function Mr(t,e){yr.point=Sr,xr(ar=sr=t,or=lr=e)}function Sr(t,e){var r=t-sr,n=e-lr,i=T(r*r+n*n);hr+=i*(sr+t)/2,pr+=i*(lr+e)/2,dr+=i,mr+=(i=lr*t-sr*e)*(sr+t),gr+=i*(lr+e),vr+=3*i,xr(sr=t,lr=e)}function Er(t){this._context=t}Er.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,e){switch(this._point){case 0:this._context.moveTo(t,e),this._point=1;break;case 1:this._context.lineTo(t,e);break;default:this._context.moveTo(t+this._radius,e),this._context.arc(t,e,this._radius,0,u)}},result:E};var Lr,Cr,Pr,Ir,Or,zr=r(),Dr={point:E,lineStart:function(){Dr.point=Rr},lineEnd:function(){Lr&&Fr(Cr,Pr),Dr.point=E},polygonStart:function(){Lr=!0},polygonEnd:function(){Lr=null},result:function(){var t=+zr;return zr.reset(),t}};function Rr(t,e){Dr.point=Fr,Cr=Ir=t,Pr=Or=e}function Fr(t,e){Ir-=t,Or-=e,zr.add(T(Ir*Ir+Or*Or)),Ir=t,Or=e}function Br(){this._string=[]}function Nr(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function jr(t){return function(e){var r=new Ur;for(var n in t)r[n]=t[n];return r.stream=e,r}}function Ur(){}function Vr(t,e,r){var n=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=n&&t.clipExtent(null),z(r,t.stream(ir)),e(ir.result()),null!=n&&t.clipExtent(n),t}function Hr(t,e,r){return Vr(t,(function(r){var n=e[1][0]-e[0][0],i=e[1][1]-e[0][1],a=Math.min(n/(r[1][0]-r[0][0]),i/(r[1][1]-r[0][1])),o=+e[0][0]+(n-a*(r[1][0]+r[0][0]))/2,s=+e[0][1]+(i-a*(r[1][1]+r[0][1]))/2;t.scale(150*a).translate([o,s])}),r)}function qr(t,e,r){return Hr(t,[[0,0],e],r)}function Gr(t,e,r){return Vr(t,(function(r){var n=+e,i=n/(r[1][0]-r[0][0]),a=(n-i*(r[1][0]+r[0][0]))/2,o=-i*r[0][1];t.scale(150*i).translate([a,o])}),r)}function Yr(t,e,r){return Vr(t,(function(r){var n=+e,i=n/(r[1][1]-r[0][1]),a=-i*r[0][0],o=(n-i*(r[1][1]+r[0][1]))/2;t.scale(150*i).translate([a,o])}),r)}Br.prototype={_radius:4.5,_circle:Nr(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,e){switch(this._point){case 0:this._string.push("M",t,",",e),this._point=1;break;case 1:this._string.push("L",t,",",e);break;default:null==this._circle&&(this._circle=Nr(this._radius)),this._string.push("M",t,",",e,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}},Ur.prototype={constructor:Ur,point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var Wr=g(30*h);function Xr(t,e){return+e?function(t,e){function r(n,i,a,s,l,c,u,f,h,d,g,v,y,x){var b=u-n,_=f-i,w=b*b+_*_;if(w>4*e&&y--){var k=s+d,A=l+g,S=c+v,E=T(k*k+A*A+S*S),L=M(S/=E),C=p(p(S)-1)e||p((b*z+_*D)/w-.5)>.3||s*d+l*g+c*v2?t[2]%360*h:0,I()):[y*f,x*f,b*f]},C.angle=function(t){return arguments.length?(_=t%360*h,I()):_*f},C.reflectX=function(t){return arguments.length?(w=t?-1:1,I()):w<0},C.reflectY=function(t){return arguments.length?(k=t?-1:1,I()):k<0},C.precision=function(t){return arguments.length?(o=Xr(s,L=t*t),O()):T(L)},C.fitExtent=function(t,e){return Hr(C,t,e)},C.fitSize=function(t,e){return qr(C,t,e)},C.fitWidth=function(t,e){return Gr(C,t,e)},C.fitHeight=function(t,e){return Yr(C,t,e)},function(){return e=t.apply(this,arguments),C.invert=e.invert&&P,I()}}function tn(t){var e=0,r=s/3,n=$r(t),i=n(e,r);return i.parallels=function(t){return arguments.length?n(e=t[0]*h,r=t[1]*h):[e*f,r*f]},i}function en(t,e){var r=_(t),n=(r+_(e))/2;if(p(n)0?e<-l+o&&(e=-l+o):e>l-o&&(e=l-o);var r=i/b(fn(e),n);return[r*_(n*t),i-r*g(n*t)]}return a.invert=function(t,e){var r=i-e,a=w(n)*T(t*t+r*r),o=m(t,p(r))*w(r);return r*n<0&&(o-=s*w(t)*w(r)),[o/n,2*d(b(i/a,1/n))-l]},a}function pn(t,e){return[t,e]}function dn(t,e){var r=g(t),n=t===e?_(t):(r-g(e))/(e-t),i=r/n+t;if(p(n)o&&--i>0);return[t/(.8707+(a=n*n)*(a*(a*a*a*(.003971-.001529*a)-.013791)-.131979)),n]},Tn.invert=on(M),kn.invert=on((function(t){return 2*d(t)})),An.invert=function(t,e){return[-e,2*d(y(t))-l]},t.geoAlbers=nn,t.geoAlbersUsa=function(){var t,e,r,n,i,a,s=nn(),l=rn().rotate([154,0]).center([-2,58.5]).parallels([55,65]),c=rn().rotate([157,0]).center([-3,19.9]).parallels([8,18]),u={point:function(t,e){a=[t,e]}};function f(t){var e=t[0],o=t[1];return a=null,r.point(e,o),a||(n.point(e,o),a)||(i.point(e,o),a)}function h(){return t=e=null,f}return f.invert=function(t){var e=s.scale(),r=s.translate(),n=(t[0]-r[0])/e,i=(t[1]-r[1])/e;return(i>=.12&&i<.234&&n>=-.425&&n<-.214?l:i>=.166&&i<.234&&n>=-.214&&n<-.115?c:s).invert(t)},f.stream=function(r){return t&&e===r?t:(n=[s.stream(e=r),l.stream(r),c.stream(r)],i=n.length,t={point:function(t,e){for(var r=-1;++rDt(n[0],n[1])&&(n[1]=i[1]),Dt(i[0],n[1])>Dt(n[0],n[1])&&(n[0]=i[0])):a.push(n=i);for(o=-1/0,e=0,n=a[r=a.length-1];e<=r;n=i,++e)i=a[e],(s=Dt(n[1],i[0]))>o&&(o=s,tt=i[0],rt=n[1])}return lt=ct=null,tt===1/0||et===1/0?[[NaN,NaN],[NaN,NaN]]:[[tt,et],[rt,nt]]},t.geoCentroid=function(t){ut=ft=ht=pt=dt=mt=gt=vt=yt=xt=bt=0,z(t,Bt);var e=yt,r=xt,n=bt,i=e*e+r*r+n*n;return i<1e-12&&(e=mt,r=gt,n=vt,ft2?t[2]+90:90]):[(t=r())[0],t[1],t[2]-90]},r([0,0,90]).scale(159.155)},t.geoTransverseMercatorRaw=An,Object.defineProperty(t,"__esModule",{value:!0})}))},{"d3-array":155}],163:[function(t,e,r){!function(t,n){"object"==typeof r&&void 0!==e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){"use strict";function e(t,e){return t.parent===e.parent?1:2}function r(t,e){return t+e.x}function n(t,e){return Math.max(t,e.y)}function i(t){var e=0,r=t.children,n=r&&r.length;if(n)for(;--n>=0;)e+=r[n].value;else e=1;t.value=e}function a(t,e){var r,n,i,a,s,u=new c(t),f=+t.value&&(u.value=t.value),h=[u];for(null==e&&(e=o);r=h.pop();)if(f&&(r.value=+r.data.value),(i=e(r.data))&&(s=i.length))for(r.children=new Array(s),a=s-1;a>=0;--a)h.push(n=r.children[a]=new c(i[a])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=a.prototype={constructor:c,count:function(){return this.eachAfter(i)},each:function(t){var e,r,n,i,a=this,o=[a];do{for(e=o.reverse(),o=[];a=e.pop();)if(t(a),r=a.children)for(n=0,i=r.length;n=0;--r)i.push(e[r]);return this},sum:function(t){return this.eachAfter((function(e){for(var r=+t(e.data)||0,n=e.children,i=n&&n.length;--i>=0;)r+=n[i].value;e.value=r}))},sort:function(t){return this.eachBefore((function(e){e.children&&e.children.sort(t)}))},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),i=null;t=r.pop(),e=n.pop();for(;t===e;)i=t,t=r.pop(),e=n.pop();return i}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var i=n.length;t!==r;)n.splice(i,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each((function(e){t.push(e)})),t},leaves:function(){var t=[];return this.eachBefore((function(e){e.children||t.push(e)})),t},links:function(){var t=this,e=[];return t.each((function(r){r!==t&&e.push({source:r.parent,target:r})})),e},copy:function(){return a(this).eachBefore(s)}};var u=Array.prototype.slice;function f(t){for(var e,r,n=0,i=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,a=[];n0&&r*r>n*n+i*i}function m(t,e){for(var r=0;r(o*=o)?(n=(c+o-i)/(2*c),a=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-a*l,r.y=t.y-n*l+a*s):(n=(c+i-o)/(2*c),a=Math.sqrt(Math.max(0,i/c-n*n)),r.x=e.x+n*s-a*l,r.y=e.y+n*l+a*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,i=e.y-t.y;return r>0&&r*r>n*n+i*i}function _(t){var e=t._,r=t.next._,n=e.r+r.r,i=(e.x*r.r+r.x*e.r)/n,a=(e.y*r.r+r.y*e.r)/n;return i*i+a*a}function w(t){this._=t,this.next=null,this.previous=null}function T(t){if(!(i=t.length))return 0;var e,r,n,i,a,o,s,l,c,u,h;if((e=t[0]).x=0,e.y=0,!(i>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(i>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;sh&&(h=s),g=u*u*m,(p=Math.max(h/g,g/f))>d){u-=s;break}d=p}v.push(o={value:u,dice:l1?e:1)},r}(G);var X=function t(e){function r(t,r,n,i,a){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,f=-1,h=o.length,p=t.value;++f1?e:1)},r}(G);t.cluster=function(){var t=e,i=1,a=1,o=!1;function s(e){var s,l=0;e.eachAfter((function(e){var i=e.children;i?(e.x=function(t){return t.reduce(r,0)/t.length}(i),e.y=function(t){return 1+t.reduce(n,0)}(i)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)}));var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),f=c.x-t(c,u)/2,h=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*i,t.y=(e.y-t.y)*a}:function(t){t.x=(t.x-f)/(h-f)*i,t.y=(1-(e.y?t.y/e.y:1))*a})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,i=+t[0],a=+t[1],s):o?null:[i,a]},s.nodeSize=function(t){return arguments.length?(o=!0,i=+t[0],a=+t[1],s):o?[i,a]:null},s},t.hierarchy=a,t.pack=function(){var t=null,e=1,r=1,n=M;function i(i){return i.x=e/2,i.y=r/2,t?i.eachBefore(L(t)).eachAfter(C(n,.5)).eachBefore(P(1)):i.eachBefore(L(E)).eachAfter(C(M,1)).eachAfter(C(n,i.r/Math.min(e,r))).eachBefore(P(Math.min(e,r)/(2*i.r))),i}return i.radius=function(e){return arguments.length?(t=k(e),i):t},i.size=function(t){return arguments.length?(e=+t[0],r=+t[1],i):[e,r]},i.padding=function(t){return arguments.length?(n="function"==typeof t?t:S(+t),i):n},i},t.packEnclose=f,t.packSiblings=function(t){return T(t),t},t.partition=function(){var t=1,e=1,r=0,n=!1;function i(i){var a=i.height+1;return i.x0=i.y0=r,i.x1=t,i.y1=e/a,i.eachBefore(function(t,e){return function(n){n.children&&O(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var i=n.x0,a=n.y0,o=n.x1-r,s=n.y1-r;o0)throw new Error("cycle");return a}return r.id=function(e){return arguments.length?(t=A(e),r):t},r.parentId=function(t){return arguments.length?(e=A(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function i(i){var l=function(t){for(var e,r,n,i,a,o=new H(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(a=n.length),i=a-1;i>=0;--i)s.push(r=e.children[i]=new H(n[i],i)),r.parent=e;return(o.parent=new H(null,0)).children=[o],o}(i);if(l.eachAfter(a),l.parent.m=-l.z,l.eachBefore(o),n)i.eachBefore(s);else{var c=i,u=i,f=i;i.eachBefore((function(t){t.xu.x&&(u=t),t.depth>f.depth&&(f=t)}));var h=c===u?1:t(c,u)/2,p=h-c.x,d=e/(u.x+h+p),m=r/(f.depth||1);i.eachBefore((function(t){t.x=(t.x+p)*d,t.y=t.depth*m}))}return i}function a(e){var r=e.children,n=e.parent.children,i=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,i=t.children,a=i.length;--a>=0;)(e=i[a]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var a=(r[0].z+r[r.length-1].z)/2;i?(e.z=i.z+t(e._,i._),e.m=e.z-a):e.z=a}else i&&(e.z=i.z+t(e._,i._));e.parent.A=function(e,r,n){if(r){for(var i,a=e,o=e,s=r,l=a.parent.children[0],c=a.m,u=o.m,f=s.m,h=l.m;s=j(s),a=N(a),s&&a;)l=N(l),(o=j(o)).a=e,(i=s.z+f-a.z-c+t(s._,a._))>0&&(U(V(s,e,n),e,i),c+=i,u+=i),f+=s.m,c+=a.m,h+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=f-u),a&&!N(l)&&(l.t=a,l.m+=c-h,n=e)}return n}(e,i,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],i):n?null:[e,r]},i.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],i):n?[e,r]:null},i},t.treemap=function(){var t=W,e=!1,r=1,n=1,i=[0],a=M,o=M,s=M,l=M,c=M;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(f),i=[0],e&&t.eachBefore(I),t}function f(e){var r=i[e.depth],n=e.x0+r,u=e.y0+r,f=e.x1-r,h=e.y1-r;f=r-1){var u=s[e];return u.x0=i,u.y0=a,u.x1=o,void(u.y1=l)}var f=c[e],h=n/2+f,p=e+1,d=r-1;for(;p>>1;c[m]l-a){var y=(i*v+o*g)/n;t(e,p,g,i,a,y,l),t(p,r,v,y,a,o,l)}else{var x=(a*v+l*g)/n;t(e,p,g,i,a,o,x),t(p,r,v,i,x,o,l)}}(0,l,t.value,e,r,n,i)},t.treemapDice=O,t.treemapResquarify=X,t.treemapSlice=q,t.treemapSliceDice=function(t,e,r,n,i){(1&t.depth?q:O)(t,e,r,n,i)},t.treemapSquarify=W,Object.defineProperty(t,"__esModule",{value:!0})}))},{}],164:[function(t,e,r){!function(n,i){"object"==typeof r&&void 0!==e?i(r,t("d3-color")):i((n=n||self).d3=n.d3||{},n.d3)}(this,(function(t,e){"use strict";function r(t,e,r,n,i){var a=t*t,o=a*t;return((1-3*t+3*a-o)*e+(4-6*a+3*o)*r+(1+3*t+3*a-3*o)*n+o*i)/6}function n(t){var e=t.length-1;return function(n){var i=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),a=t[i],o=t[i+1],s=i>0?t[i-1]:2*a-o,l=i180||r<-180?r-360*Math.round(r/360):r):a(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):a(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):a(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function i(t,r){var i=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),a=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=i(e),t.g=a(e),t.b=o(e),t.opacity=s(e),t+""}}return i.gamma=t,i}(1);function f(t){return function(r){var n,i,a=r.length,o=new Array(a),s=new Array(a),l=new Array(a);for(n=0;na&&(i=e.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:y(r,n)})),a=_.lastIndex;return a180?e+=360:e-t>180&&(t+=360),a.push({i:r.push(i(r)+"rotate(",null,n)-2,x:y(t,e)})):e&&r.push(i(r)+"rotate("+e+n)}(a.rotate,o.rotate,s,l),function(t,e,r,a){t!==e?a.push({i:r.push(i(r)+"skewX(",null,n)-2,x:y(t,e)}):e&&r.push(i(r)+"skewX("+e+n)}(a.skewX,o.skewX,s,l),function(t,e,r,n,a,o){if(t!==r||e!==n){var s=a.push(i(a)+"scale(",null,",",null,")");o.push({i:s-4,x:y(t,r)},{i:s-2,x:y(e,n)})}else 1===r&&1===n||a.push(i(a)+"scale("+r+","+n+")")}(a.scaleX,a.scaleY,o.scaleX,o.scaleY,s,l),a=o=null,function(t){for(var e,r=-1,n=l.length;++r1e-6)if(Math.abs(f*l-c*u)>1e-6&&a){var p=n-o,d=i-s,m=l*l+c*c,g=p*p+d*d,v=Math.sqrt(m),y=Math.sqrt(h),x=a*Math.tan((e-Math.acos((m+h-g)/(2*v*y)))/2),b=x/y,_=x/v;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(r+b*f)),this._+="A"+a+","+a+",0,0,"+ +(f*p>u*d)+","+(this._x1=t+_*l)+","+(this._y1=r+_*c)}else this._+="L"+(this._x1=t)+","+(this._y1=r);else;},arc:function(t,i,a,o,s,l){t=+t,i=+i,l=!!l;var c=(a=+a)*Math.cos(o),u=a*Math.sin(o),f=t+c,h=i+u,p=1^l,d=l?o-s:s-o;if(a<0)throw new Error("negative radius: "+a);null===this._x1?this._+="M"+f+","+h:(Math.abs(this._x1-f)>1e-6||Math.abs(this._y1-h)>1e-6)&&(this._+="L"+f+","+h),a&&(d<0&&(d=d%r+r),d>n?this._+="A"+a+","+a+",0,1,"+p+","+(t-c)+","+(i-u)+"A"+a+","+a+",0,1,"+p+","+(this._x1=f)+","+(this._y1=h):d>1e-6&&(this._+="A"+a+","+a+",0,"+ +(d>=e)+","+p+","+(this._x1=t+a*Math.cos(s))+","+(this._y1=i+a*Math.sin(s))))},rect:function(t,e,r,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +r+"v"+ +n+"h"+-r+"Z"},toString:function(){return this._}},t.path=a,Object.defineProperty(t,"__esModule",{value:!0})}))},{}],166:[function(t,e,r){!function(t,n){"object"==typeof r&&void 0!==e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){"use strict";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var i,a,o,s,l,c,u,f,h,p=t._root,d={data:n},m=t._x0,g=t._y0,v=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(a=(m+v)/2))?m=a:v=a,(u=r>=(o=(g+y)/2))?g=o:y=o,i=p,!(p=p[f=u<<1|c]))return i[f]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,i?i[f]=d:t._root=d,t;do{i=i?i[f]=new Array(4):t._root=new Array(4),(c=e>=(a=(m+v)/2))?m=a:v=a,(u=r>=(o=(g+y)/2))?g=o:y=o}while((f=u<<1|c)==(h=(l>=o)<<1|s>=a));return i[h]=p,i[f]=d,t}function r(t,e,r,n,i){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=i}function n(t){return t[0]}function i(t){return t[1]}function a(t,e,r){var a=new o(null==e?n:e,null==r?i:r,NaN,NaN,NaN,NaN);return null==t?a:a.addAll(t)}function o(t,e,r,n,i,a){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=i,this._y1=a,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=a.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var i=0;i<4;++i)(e=n.source[i])&&(e.length?t.push({source:e,target:n.target[i]=new Array(4)}):n.target[i]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,i,a,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,f=-1/0,h=-1/0;for(n=0;nf&&(f=i),ah&&(h=a));if(c>f||u>h)return this;for(this.cover(c,u).cover(f,h),n=0;nt||t>=i||n>e||e>=a;)switch(s=(ep||(o=c.y0)>d||(s=c.x1)=y)<<1|t>=v)&&(c=m[m.length-1],m[m.length-1]=m[m.length-1-u],m[m.length-1-u]=c)}else{var x=t-+this._x.call(null,g.data),b=e-+this._y.call(null,g.data),_=x*x+b*b;if(_=(s=(d+g)/2))?d=s:g=s,(u=o>=(l=(m+v)/2))?m=l:v=l,e=p,!(p=p[f=u<<1|c]))return this;if(!p.length)break;(e[f+1&3]||e[f+2&3]||e[f+3&3])&&(r=e,h=f)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(i=p.next)&&delete p.next,n?(i?n.next=i:delete n.next,this):e?(i?e[f]=i:delete e[f],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[h]=p:this._root=p),this):(this._root=i,this)},l.removeAll=function(t){for(var e=0,r=t.length;e1?0:t<-1?u:Math.acos(t)}function d(t){return t>=1?f:t<=-1?-f:Math.asin(t)}function m(t){return t.innerRadius}function g(t){return t.outerRadius}function v(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,i,a,o,s){var l=r-t,c=n-e,u=o-i,f=s-a,h=f*l-u*c;if(!(h*h<1e-12))return[t+(h=(u*(e-a)-f*(t-i))/h)*l,e+h*c]}function _(t,e,r,n,i,a,s){var l=t-r,u=e-n,f=(s?a:-a)/c(l*l+u*u),h=f*u,p=-f*l,d=t+h,m=e+p,g=r+h,v=n+p,y=(d+g)/2,x=(m+v)/2,b=g-d,_=v-m,w=b*b+_*_,T=i-a,k=d*v-g*m,A=(_<0?-1:1)*c(o(0,T*T*w-k*k)),M=(k*_-b*A)/w,S=(-k*b-_*A)/w,E=(k*_+b*A)/w,L=(-k*b+_*A)/w,C=M-y,P=S-x,I=E-y,O=L-x;return C*C+P*P>I*I+O*O&&(M=E,S=L),{cx:M,cy:S,x01:-h,y01:-p,x11:M*(i/T-1),y11:S*(i/T-1)}}function w(t){this._context=t}function T(t){return new w(t)}function k(t){return t[0]}function A(t){return t[1]}function M(){var t=k,n=A,i=r(!0),a=null,o=T,s=null;function l(r){var l,c,u,f=r.length,h=!1;for(null==a&&(s=o(u=e.path())),l=0;l<=f;++l)!(l=f;--h)c.point(v[h],y[h]);c.lineEnd(),c.areaEnd()}g&&(v[u]=+t(p,u,r),y[u]=+i(p,u,r),c.point(n?+n(p,u,r):v[u],a?+a(p,u,r):y[u]))}if(d)return c=null,d+""||null}function f(){return M().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),a=null,u):i},u.y0=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),u):i},u.y1=function(t){return arguments.length?(a=null==t?null:"function"==typeof t?t:r(+t),u):a},u.lineX0=u.lineY0=function(){return f().x(t).y(i)},u.lineY1=function(){return f().x(t).y(a)},u.lineX1=function(){return f().x(n).y(i)},u.defined=function(t){return arguments.length?(o="function"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function E(t,e){return et?1:e>=t?0:NaN}function L(t){return t}w.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var C=I(T);function P(t){this._curve=t}function I(t){function e(e){return new P(t(e))}return e._curve=t,e}function O(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(I(t)):e()._curve},t}function z(){return O(M().curve(C))}function D(){var t=S().curve(C),e=t.curve,r=t.lineX0,n=t.lineX1,i=t.lineY0,a=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return O(r())},delete t.lineX0,t.lineEndAngle=function(){return O(n())},delete t.lineX1,t.lineInnerRadius=function(){return O(i())},delete t.lineY0,t.lineOuterRadius=function(){return O(a())},delete t.lineY1,t.curve=function(t){return arguments.length?e(I(t)):e()._curve},t}function R(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}P.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var F=Array.prototype.slice;function B(t){return t.source}function N(t){return t.target}function j(t){var n=B,i=N,a=k,o=A,s=null;function l(){var r,l=F.call(arguments),c=n.apply(this,l),u=i.apply(this,l);if(s||(s=r=e.path()),t(s,+a.apply(this,(l[0]=c,l)),+o.apply(this,l),+a.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+""||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(i=t,l):i},l.x=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),l):a},l.y=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function U(t,e,r,n,i){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,i,n,i)}function V(t,e,r,n,i){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+i)/2,n,r,n,i)}function H(t,e,r,n,i){var a=R(e,r),o=R(e,r=(r+i)/2),s=R(n,r),l=R(n,i);t.moveTo(a[0],a[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var q={draw:function(t,e){var r=Math.sqrt(e/u);t.moveTo(r,0),t.arc(0,0,r,0,h)}},G={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},Y=Math.sqrt(1/3),W=2*Y,X={draw:function(t,e){var r=Math.sqrt(e/W),n=r*Y;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},Z=Math.sin(u/10)/Math.sin(7*u/10),J=Math.sin(h/10)*Z,K=-Math.cos(h/10)*Z,Q={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=J*r,i=K*r;t.moveTo(0,-r),t.lineTo(n,i);for(var a=1;a<5;++a){var o=h*a/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*i,l*n+s*i)}t.closePath()}},$={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},tt=Math.sqrt(3),et={draw:function(t,e){var r=-Math.sqrt(e/(3*tt));t.moveTo(0,2*r),t.lineTo(-tt*r,-r),t.lineTo(tt*r,-r),t.closePath()}},rt=-.5,nt=Math.sqrt(3)/2,it=1/Math.sqrt(12),at=3*(it/2+1),ot={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,i=r*it,a=n,o=r*it+r,s=-a,l=o;t.moveTo(n,i),t.lineTo(a,o),t.lineTo(s,l),t.lineTo(rt*n-nt*i,nt*n+rt*i),t.lineTo(rt*a-nt*o,nt*a+rt*o),t.lineTo(rt*s-nt*l,nt*s+rt*l),t.lineTo(rt*n+nt*i,rt*i-nt*n),t.lineTo(rt*a+nt*o,rt*o-nt*a),t.lineTo(rt*s+nt*l,rt*l-nt*s),t.closePath()}},st=[q,G,X,$,Q,et,ot];function lt(){}function ct(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ut(t){this._context=t}function ft(t){this._context=t}function ht(t){this._context=t}function pt(t,e){this._basis=new ut(t),this._beta=e}ut.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:ct(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:ct(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={areaStart:lt,areaEnd:lt,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:ct(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:ct(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},pt.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,i=t[0],a=e[0],o=t[r]-i,s=e[r]-a,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(i+n*o),this._beta*e[l]+(1-this._beta)*(a+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var dt=function t(e){function r(t){return 1===e?new ut(t):new pt(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function mt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function gt(t,e){this._context=t,this._k=(1-e)/6}gt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:mt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:mt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new gt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function yt(t,e){this._context=t,this._k=(1-e)/6}yt.prototype={areaStart:lt,areaEnd:lt,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:mt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var xt=function t(e){function r(t){return new yt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function bt(t,e){this._context=t,this._k=(1-e)/6}bt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:mt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var _t=function t(e){function r(t){return new bt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function wt(t,e,r){var n=t._x1,i=t._y1,a=t._x2,o=t._y2;if(t._l01_a>1e-12){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,i=(i*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>1e-12){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,u=3*t._l23_a*(t._l23_a+t._l12_a);a=(a*c+t._x1*t._l23_2a-e*t._l12_2a)/u,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/u}t._context.bezierCurveTo(n,i,a,o,t._x2,t._y2)}function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:wt(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new Tt(t,e):new gt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function At(t,e){this._context=t,this._alpha=e}At.prototype={areaStart:lt,areaEnd:lt,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:wt(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Mt=function t(e){function r(t){return e?new At(t,e):new yt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function St(t,e){this._context=t,this._alpha=e}St.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:wt(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Et=function t(e){function r(t){return e?new St(t,e):new bt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Lt(t){this._context=t}function Ct(t){return t<0?-1:1}function Pt(t,e,r){var n=t._x1-t._x0,i=e-t._x1,a=(t._y1-t._y0)/(n||i<0&&-0),o=(r-t._y1)/(i||n<0&&-0),s=(a*i+o*n)/(n+i);return(Ct(a)+Ct(o))*Math.min(Math.abs(a),Math.abs(o),.5*Math.abs(s))||0}function It(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function Ot(t,e,r){var n=t._x0,i=t._y0,a=t._x1,o=t._y1,s=(a-n)/3;t._context.bezierCurveTo(n+s,i+s*e,a-s,o-s*r,a,o)}function zt(t){this._context=t}function Dt(t){this._context=new Rt(t)}function Rt(t){this._context=t}function Ft(t){this._context=t}function Bt(t){var e,r,n=t.length-1,i=new Array(n),a=new Array(n),o=new Array(n);for(i[0]=0,a[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)i[e]=(o[e]-i[e+1])/a[e];for(a[n-1]=(t[n]+i[n-1])/2,e=0;e1)for(var r,n,i,a=1,o=t[e[0]],s=o.length;a=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function Ht(t){var e=t.map(qt);return Ut(t).sort((function(t,r){return e[t]-e[r]}))}function qt(t){for(var e,r=-1,n=0,i=t.length,a=-1/0;++ra&&(a=e,n=r);return n}function Gt(t){var e=t.map(Yt);return Ut(t).sort((function(t,r){return e[t]-e[r]}))}function Yt(t){for(var e,r=0,n=-1,i=t.length;++n=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=m,o=g,w=r(0),T=null,k=v,A=y,M=x,S=null;function E(){var r,m,g=+t.apply(this,arguments),v=+o.apply(this,arguments),y=k.apply(this,arguments)-f,x=A.apply(this,arguments)-f,E=n(x-y),L=x>y;if(S||(S=r=e.path()),v1e-12)if(E>h-1e-12)S.moveTo(v*a(y),v*l(y)),S.arc(0,0,v,y,x,!L),g>1e-12&&(S.moveTo(g*a(x),g*l(x)),S.arc(0,0,g,x,y,L));else{var C,P,I=y,O=x,z=y,D=x,R=E,F=E,B=M.apply(this,arguments)/2,N=B>1e-12&&(T?+T.apply(this,arguments):c(g*g+v*v)),j=s(n(v-g)/2,+w.apply(this,arguments)),U=j,V=j;if(N>1e-12){var H=d(N/g*l(B)),q=d(N/v*l(B));(R-=2*H)>1e-12?(z+=H*=L?1:-1,D-=H):(R=0,z=D=(y+x)/2),(F-=2*q)>1e-12?(I+=q*=L?1:-1,O-=q):(F=0,I=O=(y+x)/2)}var G=v*a(I),Y=v*l(I),W=g*a(D),X=g*l(D);if(j>1e-12){var Z,J=v*a(O),K=v*l(O),Q=g*a(z),$=g*l(z);if(E1e-12?V>1e-12?(C=_(Q,$,G,Y,v,V,L),P=_(J,K,W,X,v,V,L),S.moveTo(C.cx+C.x01,C.cy+C.y01),V1e-12&&R>1e-12?U>1e-12?(C=_(W,X,J,K,g,-U,L),P=_(G,Y,Q,$,g,-U,L),S.lineTo(C.cx+C.x01,C.cy+C.y01),U0&&(d+=f);for(null!=e?m.sort((function(t,r){return e(g[t],g[r])})):null!=n&&m.sort((function(t,e){return n(r[t],r[e])})),s=0,c=d?(y-p*b)/d:0;s0?f*c:0)+b,g[l]={data:r[l],index:s,value:f,startAngle:v,endAngle:u,padAngle:x};return g}return s.value=function(e){return arguments.length?(t="function"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(i="function"==typeof t?t:r(+t),s):i},s.endAngle=function(t){return arguments.length?(a="function"==typeof t?t:r(+t),s):a},s.padAngle=function(t){return arguments.length?(o="function"==typeof t?t:r(+t),s):o},s},t.pointRadial=R,t.radialArea=D,t.radialLine=z,t.stack=function(){var t=r([]),e=Ut,n=jt,i=Vt;function a(r){var a,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(a=0;a0)for(var r,n,i,a,o,s,l=0,c=t[e[0]].length;l0?(n[0]=a,n[1]=a+=i):i<0?(n[1]=o,n[0]=o+=i):(n[0]=0,n[1]=i)},t.stackOffsetExpand=function(t,e){if((n=t.length)>0){for(var r,n,i,a=0,o=t[0].length;a0){for(var r,n=0,i=t[e[0]],a=i.length;n0&&(n=(r=t[e[0]]).length)>0){for(var r,n,i,a=0,o=1;o=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:wt,s:Tt,S:H,u:q,U:G,V:W,w:X,W:Z,x:null,X:null,y:J,Y:Q,Z:tt,"%":_t},zt={a:function(t){return f[t.getUTCDay()]},A:function(t){return u[t.getUTCDay()]},b:function(t){return Y[t.getUTCMonth()]},B:function(t){return h[t.getUTCMonth()]},c:null,d:et,e:et,f:ot,g:vt,G:xt,H:rt,I:nt,j:it,L:at,m:st,M:lt,p:function(t){return c[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:wt,s:Tt,S:ct,u:ut,U:ft,V:pt,w:dt,W:mt,x:null,X:null,y:gt,Y:yt,Z:bt,"%":_t},Dt={a:function(t,e,r){var n=St.exec(e.slice(r));return n?(t.w=Et[n[0].toLowerCase()],r+n[0].length):-1},A:function(t,e,r){var n=At.exec(e.slice(r));return n?(t.w=Mt[n[0].toLowerCase()],r+n[0].length):-1},b:function(t,e,r){var n=Pt.exec(e.slice(r));return n?(t.m=It[n[0].toLowerCase()],r+n[0].length):-1},B:function(t,e,r){var n=Lt.exec(e.slice(r));return n?(t.m=Ct[n[0].toLowerCase()],r+n[0].length):-1},c:function(t,e,r){return Bt(t,a,e,r)},d:A,e:A,f:P,g:_,G:b,H:S,I:S,j:M,L:C,m:k,M:E,p:function(t,e,r){var n=ht.exec(e.slice(r));return n?(t.p=kt[n[0].toLowerCase()],r+n[0].length):-1},q:T,Q:O,s:z,S:L,u:g,U:v,V:y,w:m,W:x,x:function(t,e,r){return Bt(t,o,e,r)},X:function(t,e,r){return Bt(t,l,e,r)},y:_,Y:b,Z:w,"%":I};function Rt(t,e){return function(r){var n,i,a,o=[],l=-1,c=0,u=t.length;for(r instanceof Date||(r=new Date(+r));++l53)return null;"w"in c||(c.w=1),"Z"in c?(l=(s=n(i(c.y,0,1))).getUTCDay(),s=l>4||0===l?e.utcMonday.ceil(s):e.utcMonday(s),s=e.utcDay.offset(s,7*(c.V-1)),c.y=s.getUTCFullYear(),c.m=s.getUTCMonth(),c.d=s.getUTCDate()+(c.w+6)%7):(l=(s=r(i(c.y,0,1))).getDay(),s=l>4||0===l?e.timeMonday.ceil(s):e.timeMonday(s),s=e.timeDay.offset(s,7*(c.V-1)),c.y=s.getFullYear(),c.m=s.getMonth(),c.d=s.getDate()+(c.w+6)%7)}else("W"in c||"U"in c)&&("w"in c||(c.w="u"in c?c.u%7:"W"in c?1:0),l="Z"in c?n(i(c.y,0,1)).getUTCDay():r(i(c.y,0,1)).getDay(),c.m=0,c.d="W"in c?(c.w+6)%7+7*c.W-(l+5)%7:c.w+7*c.U-(l+6)%7);return"Z"in c?(c.H+=c.Z/100|0,c.M+=c.Z%100,n(c)):r(c)}}function Bt(t,e,r,n){for(var i,a,o=0,l=e.length,c=r.length;o=c)return-1;if(37===(i=e.charCodeAt(o++))){if(i=e.charAt(o++),!(a=Dt[i in s?e.charAt(o++):i])||(n=a(t,r,n))<0)return-1}else if(i!=r.charCodeAt(n++))return-1}return n}return Ot.x=Rt(o,Ot),Ot.X=Rt(l,Ot),Ot.c=Rt(a,Ot),zt.x=Rt(o,zt),zt.X=Rt(l,zt),zt.c=Rt(a,zt),{format:function(t){var e=Rt(t+="",Ot);return e.toString=function(){return t},e},parse:function(t){var e=Ft(t+="",!1);return e.toString=function(){return t},e},utcFormat:function(t){var e=Rt(t+="",zt);return e.toString=function(){return t},e},utcParse:function(t){var e=Ft(t+="",!0);return e.toString=function(){return t},e}}}var o,s={"-":"",_:" ",0:"0"},l=/^\s*\d+/,c=/^%/,u=/[\\^$*+?|[\]().{}]/g;function f(t,e,r){var n=t<0?"-":"",i=(n?-t:t)+"",a=i.length;return n+(a68?1900:2e3),r+n[0].length):-1}function w(t,e,r){var n=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(r,r+6));return n?(t.Z=n[1]?0:-(n[2]+(n[3]||"00")),r+n[0].length):-1}function T(t,e,r){var n=l.exec(e.slice(r,r+1));return n?(t.q=3*n[0]-3,r+n[0].length):-1}function k(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.m=n[0]-1,r+n[0].length):-1}function A(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.d=+n[0],r+n[0].length):-1}function M(t,e,r){var n=l.exec(e.slice(r,r+3));return n?(t.m=0,t.d=+n[0],r+n[0].length):-1}function S(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.H=+n[0],r+n[0].length):-1}function E(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.M=+n[0],r+n[0].length):-1}function L(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.S=+n[0],r+n[0].length):-1}function C(t,e,r){var n=l.exec(e.slice(r,r+3));return n?(t.L=+n[0],r+n[0].length):-1}function P(t,e,r){var n=l.exec(e.slice(r,r+6));return n?(t.L=Math.floor(n[0]/1e3),r+n[0].length):-1}function I(t,e,r){var n=c.exec(e.slice(r,r+1));return n?r+n[0].length:-1}function O(t,e,r){var n=l.exec(e.slice(r));return n?(t.Q=+n[0],r+n[0].length):-1}function z(t,e,r){var n=l.exec(e.slice(r));return n?(t.s=+n[0],r+n[0].length):-1}function D(t,e){return f(t.getDate(),e,2)}function R(t,e){return f(t.getHours(),e,2)}function F(t,e){return f(t.getHours()%12||12,e,2)}function B(t,r){return f(1+e.timeDay.count(e.timeYear(t),t),r,3)}function N(t,e){return f(t.getMilliseconds(),e,3)}function j(t,e){return N(t,e)+"000"}function U(t,e){return f(t.getMonth()+1,e,2)}function V(t,e){return f(t.getMinutes(),e,2)}function H(t,e){return f(t.getSeconds(),e,2)}function q(t){var e=t.getDay();return 0===e?7:e}function G(t,r){return f(e.timeSunday.count(e.timeYear(t)-1,t),r,2)}function Y(t){var r=t.getDay();return r>=4||0===r?e.timeThursday(t):e.timeThursday.ceil(t)}function W(t,r){return t=Y(t),f(e.timeThursday.count(e.timeYear(t),t)+(4===e.timeYear(t).getDay()),r,2)}function X(t){return t.getDay()}function Z(t,r){return f(e.timeMonday.count(e.timeYear(t)-1,t),r,2)}function J(t,e){return f(t.getFullYear()%100,e,2)}function K(t,e){return f((t=Y(t)).getFullYear()%100,e,2)}function Q(t,e){return f(t.getFullYear()%1e4,e,4)}function $(t,r){var n=t.getDay();return f((t=n>=4||0===n?e.timeThursday(t):e.timeThursday.ceil(t)).getFullYear()%1e4,r,4)}function tt(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+f(e/60|0,"0",2)+f(e%60,"0",2)}function et(t,e){return f(t.getUTCDate(),e,2)}function rt(t,e){return f(t.getUTCHours(),e,2)}function nt(t,e){return f(t.getUTCHours()%12||12,e,2)}function it(t,r){return f(1+e.utcDay.count(e.utcYear(t),t),r,3)}function at(t,e){return f(t.getUTCMilliseconds(),e,3)}function ot(t,e){return at(t,e)+"000"}function st(t,e){return f(t.getUTCMonth()+1,e,2)}function lt(t,e){return f(t.getUTCMinutes(),e,2)}function ct(t,e){return f(t.getUTCSeconds(),e,2)}function ut(t){var e=t.getUTCDay();return 0===e?7:e}function ft(t,r){return f(e.utcSunday.count(e.utcYear(t)-1,t),r,2)}function ht(t){var r=t.getUTCDay();return r>=4||0===r?e.utcThursday(t):e.utcThursday.ceil(t)}function pt(t,r){return t=ht(t),f(e.utcThursday.count(e.utcYear(t),t)+(4===e.utcYear(t).getUTCDay()),r,2)}function dt(t){return t.getUTCDay()}function mt(t,r){return f(e.utcMonday.count(e.utcYear(t)-1,t),r,2)}function gt(t,e){return f(t.getUTCFullYear()%100,e,2)}function vt(t,e){return f((t=ht(t)).getUTCFullYear()%100,e,2)}function yt(t,e){return f(t.getUTCFullYear()%1e4,e,4)}function xt(t,r){var n=t.getUTCDay();return f((t=n>=4||0===n?e.utcThursday(t):e.utcThursday.ceil(t)).getUTCFullYear()%1e4,r,4)}function bt(){return"+0000"}function _t(){return"%"}function wt(t){return+t}function Tt(t){return Math.floor(+t/1e3)}function kt(e){return o=a(e),t.timeFormat=o.format,t.timeParse=o.parse,t.utcFormat=o.utcFormat,t.utcParse=o.utcParse,o}kt({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var At=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat("%Y-%m-%dT%H:%M:%S.%LZ");var Mt=+new Date("2000-01-01T00:00:00.000Z")?function(t){var e=new Date(t);return isNaN(e)?null:e}:t.utcParse("%Y-%m-%dT%H:%M:%S.%LZ");t.isoFormat=At,t.isoParse=Mt,t.timeFormatDefaultLocale=kt,t.timeFormatLocale=a,Object.defineProperty(t,"__esModule",{value:!0})}))},{"d3-time":169}],169:[function(t,e,r){!function(t,n){"object"==typeof r&&void 0!==e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){"use strict";var e=new Date,r=new Date;function n(t,i,a,o){function s(e){return t(e=0===arguments.length?new Date:new Date(+e)),e}return s.floor=function(e){return t(e=new Date(+e)),e},s.ceil=function(e){return t(e=new Date(e-1)),i(e,1),t(e),e},s.round=function(t){var e=s(t),r=s.ceil(t);return t-e0))return o;do{o.push(a=new Date(+e)),i(e,n),t(e)}while(a=r)for(;t(r),!e(r);)r.setTime(r-1)}),(function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;i(t,-1),!e(t););else for(;--r>=0;)for(;i(t,1),!e(t););}))},a&&(s.count=function(n,i){return e.setTime(+n),r.setTime(+i),t(e),t(r),Math.floor(a(e,r))},s.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?s.filter(o?function(e){return o(e)%t==0}:function(e){return s.count(0,e)%t==0}):s:null}),s}var i=n((function(){}),(function(t,e){t.setTime(+t+e)}),(function(t,e){return e-t}));i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?n((function(e){e.setTime(Math.floor(e/t)*t)}),(function(e,r){e.setTime(+e+r*t)}),(function(e,r){return(r-e)/t})):i:null};var a=i.range,o=n((function(t){t.setTime(t-t.getMilliseconds())}),(function(t,e){t.setTime(+t+1e3*e)}),(function(t,e){return(e-t)/1e3}),(function(t){return t.getUTCSeconds()})),s=o.range,l=n((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds())}),(function(t,e){t.setTime(+t+6e4*e)}),(function(t,e){return(e-t)/6e4}),(function(t){return t.getMinutes()})),c=l.range,u=n((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds()-6e4*t.getMinutes())}),(function(t,e){t.setTime(+t+36e5*e)}),(function(t,e){return(e-t)/36e5}),(function(t){return t.getHours()})),f=u.range,h=n((function(t){t.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/864e5}),(function(t){return t.getDate()-1})),p=h.range;function d(t){return n((function(e){e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+7*e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/6048e5}))}var m=d(0),g=d(1),v=d(2),y=d(3),x=d(4),b=d(5),_=d(6),w=m.range,T=g.range,k=v.range,A=y.range,M=x.range,S=b.range,E=_.range,L=n((function(t){t.setDate(1),t.setHours(0,0,0,0)}),(function(t,e){t.setMonth(t.getMonth()+e)}),(function(t,e){return e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())}),(function(t){return t.getMonth()})),C=L.range,P=n((function(t){t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,e){t.setFullYear(t.getFullYear()+e)}),(function(t,e){return e.getFullYear()-t.getFullYear()}),(function(t){return t.getFullYear()}));P.every=function(t){return isFinite(t=Math.floor(t))&&t>0?n((function(e){e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)}),(function(e,r){e.setFullYear(e.getFullYear()+r*t)})):null};var I=P.range,O=n((function(t){t.setUTCSeconds(0,0)}),(function(t,e){t.setTime(+t+6e4*e)}),(function(t,e){return(e-t)/6e4}),(function(t){return t.getUTCMinutes()})),z=O.range,D=n((function(t){t.setUTCMinutes(0,0,0)}),(function(t,e){t.setTime(+t+36e5*e)}),(function(t,e){return(e-t)/36e5}),(function(t){return t.getUTCHours()})),R=D.range,F=n((function(t){t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+e)}),(function(t,e){return(e-t)/864e5}),(function(t){return t.getUTCDate()-1})),B=F.range;function N(t){return n((function(e){e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+7*e)}),(function(t,e){return(e-t)/6048e5}))}var j=N(0),U=N(1),V=N(2),H=N(3),q=N(4),G=N(5),Y=N(6),W=j.range,X=U.range,Z=V.range,J=H.range,K=q.range,Q=G.range,$=Y.range,tt=n((function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCMonth(t.getUTCMonth()+e)}),(function(t,e){return e.getUTCMonth()-t.getUTCMonth()+12*(e.getUTCFullYear()-t.getUTCFullYear())}),(function(t){return t.getUTCMonth()})),et=tt.range,rt=n((function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCFullYear(t.getUTCFullYear()+e)}),(function(t,e){return e.getUTCFullYear()-t.getUTCFullYear()}),(function(t){return t.getUTCFullYear()}));rt.every=function(t){return isFinite(t=Math.floor(t))&&t>0?n((function(e){e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,r){e.setUTCFullYear(e.getUTCFullYear()+r*t)})):null};var nt=rt.range;t.timeDay=h,t.timeDays=p,t.timeFriday=b,t.timeFridays=S,t.timeHour=u,t.timeHours=f,t.timeInterval=n,t.timeMillisecond=i,t.timeMilliseconds=a,t.timeMinute=l,t.timeMinutes=c,t.timeMonday=g,t.timeMondays=T,t.timeMonth=L,t.timeMonths=C,t.timeSaturday=_,t.timeSaturdays=E,t.timeSecond=o,t.timeSeconds=s,t.timeSunday=m,t.timeSundays=w,t.timeThursday=x,t.timeThursdays=M,t.timeTuesday=v,t.timeTuesdays=k,t.timeWednesday=y,t.timeWednesdays=A,t.timeWeek=m,t.timeWeeks=w,t.timeYear=P,t.timeYears=I,t.utcDay=F,t.utcDays=B,t.utcFriday=G,t.utcFridays=Q,t.utcHour=D,t.utcHours=R,t.utcMillisecond=i,t.utcMilliseconds=a,t.utcMinute=O,t.utcMinutes=z,t.utcMonday=U,t.utcMondays=X,t.utcMonth=tt,t.utcMonths=et,t.utcSaturday=Y,t.utcSaturdays=$,t.utcSecond=o,t.utcSeconds=s,t.utcSunday=j,t.utcSundays=W,t.utcThursday=q,t.utcThursdays=K,t.utcTuesday=V,t.utcTuesdays=Z,t.utcWednesday=H,t.utcWednesdays=J,t.utcWeek=j,t.utcWeeks=W,t.utcYear=rt,t.utcYears=nt,Object.defineProperty(t,"__esModule",{value:!0})}))},{}],170:[function(t,e,r){!function(t,n){"object"==typeof r&&void 0!==e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){"use strict";var e,r,n=0,i=0,a=0,o=0,s=0,l=0,c="object"==typeof performance&&performance.now?performance:Date,u="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function f(){return s||(u(h),s=c.now()+l)}function h(){s=0}function p(){this._call=this._time=this._next=null}function d(t,e,r){var n=new p;return n.restart(t,e,r),n}function m(){f(),++n;for(var t,r=e;r;)(t=s-r._time)>=0&&r._call.call(null,t),r=r._next;--n}function g(){s=(o=c.now())+l,n=i=0;try{m()}finally{n=0,function(){var t,n,i=e,a=1/0;for(;i;)i._call?(a>i._time&&(a=i._time),t=i,i=i._next):(n=i._next,i._next=null,i=t?t._next=n:e=n);r=t,y(a)}(),s=0}}function v(){var t=c.now(),e=t-o;e>1e3&&(l-=e,o=t)}function y(t){n||(i&&(i=clearTimeout(i)),t-s>24?(t<1/0&&(i=setTimeout(g,t-c.now()-l)),a&&(a=clearInterval(a))):(a||(o=c.now(),a=setInterval(v,1e3)),n=1,u(g)))}p.prototype=d.prototype={constructor:p,restart:function(t,n,i){if("function"!=typeof t)throw new TypeError("callback is not a function");i=(null==i?f():+i)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=i,y()},stop:function(){this._call&&(this._call=null,this._time=1/0,y())}},t.interval=function(t,e,r){var n=new p,i=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart((function a(o){o+=i,n.restart(a,i+=e,r),t(o)}),e,r),n)},t.now=f,t.timeout=function(t,e,r){var n=new p;return e=null==e?0:+e,n.restart((function(r){n.stop(),t(r+e)}),e,r),n},t.timer=d,t.timerFlush=m,Object.defineProperty(t,"__esModule",{value:!0})}))},{}],171:[function(t,e,r){e.exports=function(){for(var t=0;t=2)return!1;t[r]=n}return!0})):_.filter((function(t){for(var e=0;e<=s;++e){var r=v[t[e]];if(r<0)return!1;t[e]=r}return!0}));if(1&s)for(u=0;u<_.length;++u){h=(b=_[u])[0];b[0]=b[1],b[1]=h}return _}},{"incremental-convex-hull":428,uniq:592}],173:[function(t,e,r){"use strict";e.exports=a;var n=(a.canvas=document.createElement("canvas")).getContext("2d"),i=o([32,126]);function a(t,e){Array.isArray(t)&&(t=t.join(", "));var r,a={},s=16,l=.05;e&&(2===e.length&&"number"==typeof e[0]?r=o(e):Array.isArray(e)?r=e:(e.o?r=o(e.o):e.pairs&&(r=e.pairs),e.fontSize&&(s=e.fontSize),null!=e.threshold&&(l=e.threshold))),r||(r=i),n.font=s+"px "+t;for(var c=0;cs*l){var p=(h-f)/s;a[u]=1e3*p}}return a}function o(t){for(var e=[],r=t[0];r<=t[1];r++)for(var n=String.fromCharCode(r),i=t[0];i>>31},e.exports.exponent=function(t){return(e.exports.hi(t)<<1>>>21)-1023},e.exports.fraction=function(t){var r=e.exports.lo(t),n=e.exports.hi(t),i=1048575&n;return 2146435072&n&&(i+=1<<20),[r,i]},e.exports.denormalized=function(t){return!(2146435072&e.exports.hi(t))}}).call(this)}).call(this,t("buffer").Buffer)},{buffer:112}],175:[function(t,e,r){var n=t("abs-svg-path"),i=t("normalize-svg-path"),a={M:"moveTo",C:"bezierCurveTo"};e.exports=function(t,e){t.beginPath(),i(n(e)).forEach((function(e){var r=e[0],n=e.slice(1);t[a[r]].apply(t,n)})),t.closePath()}},{"abs-svg-path":67,"normalize-svg-path":464}],176:[function(t,e,r){e.exports=function(t){switch(t){case"int8":return Int8Array;case"int16":return Int16Array;case"int32":return Int32Array;case"uint8":return Uint8Array;case"uint16":return Uint16Array;case"uint32":return Uint32Array;case"float32":return Float32Array;case"float64":return Float64Array;case"array":return Array;case"uint8_clamped":return Uint8ClampedArray}}},{}],177:[function(t,e,r){"use strict";e.exports=function(t,e){switch(void 0===e&&(e=0),typeof t){case"number":if(t>0)return function(t,e){var r,n;for(r=new Array(t),n=0;n80*r){n=l=t[0],s=c=t[1];for(var b=r;bl&&(l=u),p>c&&(c=p);d=0!==(d=Math.max(l-n,c-s))?1/d:0}return o(y,x,r,n,s,d),x}function i(t,e,r,n,i){var a,o;if(i===E(t,e,r,n)>0)for(a=e;a=e;a-=n)o=A(a,t[a],t[a+1],o);return o&&x(o,o.next)&&(M(o),o=o.next),o}function a(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!x(n,n.next)&&0!==y(n.prev,n,n.next))n=n.next;else{if(M(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function o(t,e,r,n,i,f,h){if(t){!h&&f&&function(t,e,r,n){var i=t;do{null===i.z&&(i.z=d(i.x,i.y,e,r,n)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next}while(i!==t);i.prevZ.nextZ=null,i.prevZ=null,function(t){var e,r,n,i,a,o,s,l,c=1;do{for(r=t,t=null,a=null,o=0;r;){for(o++,n=r,s=0,e=0;e0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(i=r,r=r.nextZ,s--):(i=n,n=n.nextZ,l--),a?a.nextZ=i:t=i,i.prevZ=a,a=i;r=n}a.nextZ=null,c*=2}while(o>1)}(i)}(t,n,i,f);for(var p,m,g=t;t.prev!==t.next;)if(p=t.prev,m=t.next,f?l(t,n,i,f):s(t))e.push(p.i/r),e.push(t.i/r),e.push(m.i/r),M(t),t=m.next,g=m.next;else if((t=m)===g){h?1===h?o(t=c(a(t),e,r),e,r,n,i,f,2):2===h&&u(t,e,r,n,i,f):o(a(t),e,r,n,i,f,1);break}}}function s(t){var e=t.prev,r=t,n=t.next;if(y(e,r,n)>=0)return!1;for(var i=t.next.next;i!==t.prev;){if(g(e.x,e.y,r.x,r.y,n.x,n.y,i.x,i.y)&&y(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function l(t,e,r,n){var i=t.prev,a=t,o=t.next;if(y(i,a,o)>=0)return!1;for(var s=i.xa.x?i.x>o.x?i.x:o.x:a.x>o.x?a.x:o.x,u=i.y>a.y?i.y>o.y?i.y:o.y:a.y>o.y?a.y:o.y,f=d(s,l,e,r,n),h=d(c,u,e,r,n),p=t.prevZ,m=t.nextZ;p&&p.z>=f&&m&&m.z<=h;){if(p!==t.prev&&p!==t.next&&g(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&y(p.prev,p,p.next)>=0)return!1;if(p=p.prevZ,m!==t.prev&&m!==t.next&&g(i.x,i.y,a.x,a.y,o.x,o.y,m.x,m.y)&&y(m.prev,m,m.next)>=0)return!1;m=m.nextZ}for(;p&&p.z>=f;){if(p!==t.prev&&p!==t.next&&g(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&y(p.prev,p,p.next)>=0)return!1;p=p.prevZ}for(;m&&m.z<=h;){if(m!==t.prev&&m!==t.next&&g(i.x,i.y,a.x,a.y,o.x,o.y,m.x,m.y)&&y(m.prev,m,m.next)>=0)return!1;m=m.nextZ}return!0}function c(t,e,r){var n=t;do{var i=n.prev,o=n.next.next;!x(i,o)&&b(i,n,n.next,o)&&T(i,o)&&T(o,i)&&(e.push(i.i/r),e.push(n.i/r),e.push(o.i/r),M(n),M(n.next),n=t=o),n=n.next}while(n!==t);return a(n)}function u(t,e,r,n,i,s){var l=t;do{for(var c=l.next.next;c!==l.prev;){if(l.i!==c.i&&v(l,c)){var u=k(l,c);return l=a(l,l.next),u=a(u,u.next),o(l,e,r,n,i,s),void o(u,e,r,n,i,s)}c=c.next}l=l.next}while(l!==t)}function f(t,e){return t.x-e.x}function h(t,e){var r=function(t,e){var r,n=e,i=t.x,a=t.y,o=-1/0;do{if(a<=n.y&&a>=n.next.y&&n.next.y!==n.y){var s=n.x+(a-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=i&&s>o){if(o=s,s===i){if(a===n.y)return n;if(a===n.next.y)return n.next}r=n.x=n.x&&n.x>=u&&i!==n.x&&g(ar.x||n.x===r.x&&p(r,n)))&&(r=n,h=l)),n=n.next}while(n!==c);return r}(t,e);if(!r)return e;var n=k(r,t),i=a(r,r.next);return a(n,n.next),e===r?i:e}function p(t,e){return y(t.prev,t,e.prev)<0&&y(e.next,t,t.next)<0}function d(t,e,r,n,i){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*i)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*i)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function m(t){var e=t,r=t;do{(e.x=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(a-s)-(i-o)*(n-s)>=0}function v(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&b(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&(T(t,e)&&T(e,t)&&function(t,e){var r=t,n=!1,i=(t.x+e.x)/2,a=(t.y+e.y)/2;do{r.y>a!=r.next.y>a&&r.next.y!==r.y&&i<(r.next.x-r.x)*(a-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)&&(y(t.prev,t,e.prev)||y(t,e.prev,e))||x(t,e)&&y(t.prev,t,t.next)>0&&y(e.prev,e,e.next)>0)}function y(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function x(t,e){return t.x===e.x&&t.y===e.y}function b(t,e,r,n){var i=w(y(t,e,r)),a=w(y(t,e,n)),o=w(y(r,n,t)),s=w(y(r,n,e));return i!==a&&o!==s||(!(0!==i||!_(t,r,e))||(!(0!==a||!_(t,n,e))||(!(0!==o||!_(r,t,n))||!(0!==s||!_(r,e,n)))))}function _(t,e,r){return e.x<=Math.max(t.x,r.x)&&e.x>=Math.min(t.x,r.x)&&e.y<=Math.max(t.y,r.y)&&e.y>=Math.min(t.y,r.y)}function w(t){return t>0?1:t<0?-1:0}function T(t,e){return y(t.prev,t,t.next)<0?y(t,e,t.next)>=0&&y(t,t.prev,e)>=0:y(t,e,t.prev)<0||y(t,t.next,e)<0}function k(t,e){var r=new S(t.i,t.x,t.y),n=new S(e.i,e.x,e.y),i=t.next,a=e.prev;return t.next=e,e.prev=t,r.next=i,i.prev=r,n.next=r,r.prev=n,a.next=n,n.prev=a,n}function A(t,e,r,n){var i=new S(t,e,r);return n?(i.next=n.next,i.prev=n,n.next.prev=i,n.next=i):(i.prev=i,i.next=i),i}function M(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function S(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function E(t,e,r,n){for(var i=0,a=e,o=r-n;a0&&(n+=t[i-1].length,r.holes.push(n))}return r}},{}],179:[function(t,e,r){"use strict";e.exports=function(t,e){var r=t.length;if("number"!=typeof e){e=0;for(var i=0;i=e}))}(e);for(var r,i=n(t).components.filter((function(t){return t.length>1})),a=1/0,o=0;o=55296&&y<=56319&&(w+=t[++r]),w=T?h.call(T,k,w,m):w,e?(p.value=w,d(g,m,p)):g[m]=w,++m;v=m}if(void 0===v)for(v=o(t.length),e&&(g=new e(v)),r=0;r0?1:-1}},{}],191:[function(t,e,r){"use strict";var n=t("../math/sign"),i=Math.abs,a=Math.floor;e.exports=function(t){return isNaN(t)?0:0!==(t=Number(t))&&isFinite(t)?n(t)*a(i(t)):t}},{"../math/sign":188}],192:[function(t,e,r){"use strict";var n=t("./to-integer"),i=Math.max;e.exports=function(t){return i(0,n(t))}},{"./to-integer":191}],193:[function(t,e,r){"use strict";var n=t("./valid-callable"),i=t("./valid-value"),a=Function.prototype.bind,o=Function.prototype.call,s=Object.keys,l=Object.prototype.propertyIsEnumerable;e.exports=function(t,e){return function(r,c){var u,f=arguments[2],h=arguments[3];return r=Object(i(r)),n(c),u=s(r),h&&u.sort("function"==typeof h?a.call(h,r):void 0),"function"!=typeof t&&(t=u[t]),o.call(t,u,(function(t,n){return l.call(r,t)?o.call(c,f,r[t],t,r,n):e}))}}},{"./valid-callable":210,"./valid-value":212}],194:[function(t,e,r){"use strict";e.exports=t("./is-implemented")()?Object.assign:t("./shim")},{"./is-implemented":195,"./shim":196}],195:[function(t,e,r){"use strict";e.exports=function(){var t,e=Object.assign;return"function"==typeof e&&(e(t={foo:"raz"},{bar:"dwa"},{trzy:"trzy"}),t.foo+t.bar+t.trzy==="razdwatrzy")}},{}],196:[function(t,e,r){"use strict";var n=t("../keys"),i=t("../valid-value"),a=Math.max;e.exports=function(t,e){var r,o,s,l=a(arguments.length,2);for(t=Object(i(t)),s=function(n){try{t[n]=e[n]}catch(t){r||(r=t)}},o=1;o-1}},{}],216:[function(t,e,r){"use strict";var n=Object.prototype.toString,i=n.call("");e.exports=function(t){return"string"==typeof t||t&&"object"==typeof t&&(t instanceof String||n.call(t)===i)||!1}},{}],217:[function(t,e,r){"use strict";var n=Object.create(null),i=Math.random;e.exports=function(){var t;do{t=i().toString(36).slice(2)}while(n[t]);return t}},{}],218:[function(t,e,r){"use strict";var n,i=t("es5-ext/object/set-prototype-of"),a=t("es5-ext/string/#/contains"),o=t("d"),s=t("es6-symbol"),l=t("./"),c=Object.defineProperty;n=e.exports=function(t,e){if(!(this instanceof n))throw new TypeError("Constructor requires 'new'");l.call(this,t),e=e?a.call(e,"key+value")?"key+value":a.call(e,"key")?"key":"value":"value",c(this,"__kind__",o("",e))},i&&i(n,l),delete n.prototype.constructor,n.prototype=Object.create(l.prototype,{_resolve:o((function(t){return"value"===this.__kind__?this.__list__[t]:"key+value"===this.__kind__?[t,this.__list__[t]]:t}))}),c(n.prototype,s.toStringTag,o("c","Array Iterator"))},{"./":221,d:154,"es5-ext/object/set-prototype-of":207,"es5-ext/string/#/contains":213,"es6-symbol":225}],219:[function(t,e,r){"use strict";var n=t("es5-ext/function/is-arguments"),i=t("es5-ext/object/valid-callable"),a=t("es5-ext/string/is-string"),o=t("./get"),s=Array.isArray,l=Function.prototype.call,c=Array.prototype.some;e.exports=function(t,e){var r,u,f,h,p,d,m,g,v=arguments[2];if(s(t)||n(t)?r="array":a(t)?r="string":t=o(t),i(e),f=function(){h=!0},"array"!==r)if("string"!==r)for(u=t.next();!u.done;){if(l.call(e,v,u.value,f),h)return;u=t.next()}else for(d=t.length,p=0;p=55296&&g<=56319&&(m+=t[++p]),l.call(e,v,m,f),!h);++p);else c.call(t,(function(t){return l.call(e,v,t,f),h}))}},{"./get":220,"es5-ext/function/is-arguments":185,"es5-ext/object/valid-callable":210,"es5-ext/string/is-string":216}],220:[function(t,e,r){"use strict";var n=t("es5-ext/function/is-arguments"),i=t("es5-ext/string/is-string"),a=t("./array"),o=t("./string"),s=t("./valid-iterable"),l=t("es6-symbol").iterator;e.exports=function(t){return"function"==typeof s(t)[l]?t[l]():n(t)?new a(t):i(t)?new o(t):new a(t)}},{"./array":218,"./string":223,"./valid-iterable":224,"es5-ext/function/is-arguments":185,"es5-ext/string/is-string":216,"es6-symbol":225}],221:[function(t,e,r){"use strict";var n,i=t("es5-ext/array/#/clear"),a=t("es5-ext/object/assign"),o=t("es5-ext/object/valid-callable"),s=t("es5-ext/object/valid-value"),l=t("d"),c=t("d/auto-bind"),u=t("es6-symbol"),f=Object.defineProperty,h=Object.defineProperties;e.exports=n=function(t,e){if(!(this instanceof n))throw new TypeError("Constructor requires 'new'");h(this,{__list__:l("w",s(t)),__context__:l("w",e),__nextIndex__:l("w",0)}),e&&(o(e.on),e.on("_add",this._onAdd),e.on("_delete",this._onDelete),e.on("_clear",this._onClear))},delete n.prototype.constructor,h(n.prototype,a({_next:l((function(){var t;if(this.__list__)return this.__redo__&&void 0!==(t=this.__redo__.shift())?t:this.__nextIndex__=this.__nextIndex__||(++this.__nextIndex__,this.__redo__?(this.__redo__.forEach((function(e,r){e>=t&&(this.__redo__[r]=++e)}),this),this.__redo__.push(t)):f(this,"__redo__",l("c",[t])))})),_onDelete:l((function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach((function(e,r){e>t&&(this.__redo__[r]=--e)}),this)))})),_onClear:l((function(){this.__redo__&&i.call(this.__redo__),this.__nextIndex__=0}))}))),f(n.prototype,u.iterator,l((function(){return this})))},{d:154,"d/auto-bind":153,"es5-ext/array/#/clear":181,"es5-ext/object/assign":194,"es5-ext/object/valid-callable":210,"es5-ext/object/valid-value":212,"es6-symbol":225}],222:[function(t,e,r){"use strict";var n=t("es5-ext/function/is-arguments"),i=t("es5-ext/object/is-value"),a=t("es5-ext/string/is-string"),o=t("es6-symbol").iterator,s=Array.isArray;e.exports=function(t){return!!i(t)&&(!!s(t)||(!!a(t)||(!!n(t)||"function"==typeof t[o])))}},{"es5-ext/function/is-arguments":185,"es5-ext/object/is-value":201,"es5-ext/string/is-string":216,"es6-symbol":225}],223:[function(t,e,r){"use strict";var n,i=t("es5-ext/object/set-prototype-of"),a=t("d"),o=t("es6-symbol"),s=t("./"),l=Object.defineProperty;n=e.exports=function(t){if(!(this instanceof n))throw new TypeError("Constructor requires 'new'");t=String(t),s.call(this,t),l(this,"__length__",a("",t.length))},i&&i(n,s),delete n.prototype.constructor,n.prototype=Object.create(s.prototype,{_next:a((function(){if(this.__list__)return this.__nextIndex__=55296&&e<=56319?r+this.__list__[this.__nextIndex__++]:r}))}),l(n.prototype,o.toStringTag,a("c","String Iterator"))},{"./":221,d:154,"es5-ext/object/set-prototype-of":207,"es6-symbol":225}],224:[function(t,e,r){"use strict";var n=t("./is-iterable");e.exports=function(t){if(!n(t))throw new TypeError(t+" is not iterable");return t}},{"./is-iterable":222}],225:[function(t,e,r){"use strict";e.exports=t("./is-implemented")()?t("ext/global-this").Symbol:t("./polyfill")},{"./is-implemented":226,"./polyfill":231,"ext/global-this":239}],226:[function(t,e,r){"use strict";var n=t("ext/global-this"),i={object:!0,symbol:!0};e.exports=function(){var t,e=n.Symbol;if("function"!=typeof e)return!1;t=e("test symbol");try{String(t)}catch(t){return!1}return!!i[typeof e.iterator]&&(!!i[typeof e.toPrimitive]&&!!i[typeof e.toStringTag])}},{"ext/global-this":239}],227:[function(t,e,r){"use strict";e.exports=function(t){return!!t&&("symbol"==typeof t||!!t.constructor&&("Symbol"===t.constructor.name&&"Symbol"===t[t.constructor.toStringTag]))}},{}],228:[function(t,e,r){"use strict";var n=t("d"),i=Object.create,a=Object.defineProperty,o=Object.prototype,s=i(null);e.exports=function(t){for(var e,r,i=0;s[t+(i||"")];)++i;return s[t+=i||""]=!0,a(o,e="@@"+t,n.gs(null,(function(t){r||(r=!0,a(this,e,n(t)),r=!1)}))),e}},{d:154}],229:[function(t,e,r){"use strict";var n=t("d"),i=t("ext/global-this").Symbol;e.exports=function(t){return Object.defineProperties(t,{hasInstance:n("",i&&i.hasInstance||t("hasInstance")),isConcatSpreadable:n("",i&&i.isConcatSpreadable||t("isConcatSpreadable")),iterator:n("",i&&i.iterator||t("iterator")),match:n("",i&&i.match||t("match")),replace:n("",i&&i.replace||t("replace")),search:n("",i&&i.search||t("search")),species:n("",i&&i.species||t("species")),split:n("",i&&i.split||t("split")),toPrimitive:n("",i&&i.toPrimitive||t("toPrimitive")),toStringTag:n("",i&&i.toStringTag||t("toStringTag")),unscopables:n("",i&&i.unscopables||t("unscopables"))})}},{d:154,"ext/global-this":239}],230:[function(t,e,r){"use strict";var n=t("d"),i=t("../../../validate-symbol"),a=Object.create(null);e.exports=function(t){return Object.defineProperties(t,{for:n((function(e){return a[e]?a[e]:a[e]=t(String(e))})),keyFor:n((function(t){var e;for(e in i(t),a)if(a[e]===t)return e}))})}},{"../../../validate-symbol":232,d:154}],231:[function(t,e,r){"use strict";var n,i,a,o=t("d"),s=t("./validate-symbol"),l=t("ext/global-this").Symbol,c=t("./lib/private/generate-name"),u=t("./lib/private/setup/standard-symbols"),f=t("./lib/private/setup/symbol-registry"),h=Object.create,p=Object.defineProperties,d=Object.defineProperty;if("function"==typeof l)try{String(l()),a=!0}catch(t){}else l=null;i=function(t){if(this instanceof i)throw new TypeError("Symbol is not a constructor");return n(t)},e.exports=n=function t(e){var r;if(this instanceof t)throw new TypeError("Symbol is not a constructor");return a?l(e):(r=h(i.prototype),e=void 0===e?"":String(e),p(r,{__description__:o("",e),__name__:o("",c(e))}))},u(n),f(n),p(i.prototype,{constructor:o(n),toString:o("",(function(){return this.__name__}))}),p(n.prototype,{toString:o((function(){return"Symbol ("+s(this).__description__+")"})),valueOf:o((function(){return s(this)}))}),d(n.prototype,n.toPrimitive,o("",(function(){var t=s(this);return"symbol"==typeof t?t:t.toString()}))),d(n.prototype,n.toStringTag,o("c","Symbol")),d(i.prototype,n.toStringTag,o("c",n.prototype[n.toStringTag])),d(i.prototype,n.toPrimitive,o("c",n.prototype[n.toPrimitive]))},{"./lib/private/generate-name":228,"./lib/private/setup/standard-symbols":229,"./lib/private/setup/symbol-registry":230,"./validate-symbol":232,d:154,"ext/global-this":239}],232:[function(t,e,r){"use strict";var n=t("./is-symbol");e.exports=function(t){if(!n(t))throw new TypeError(t+" is not a symbol");return t}},{"./is-symbol":227}],233:[function(t,e,r){"use strict";e.exports=t("./is-implemented")()?WeakMap:t("./polyfill")},{"./is-implemented":234,"./polyfill":236}],234:[function(t,e,r){"use strict";e.exports=function(){var t,e;if("function"!=typeof WeakMap)return!1;try{t=new WeakMap([[e={},"one"],[{},"two"],[{},"three"]])}catch(t){return!1}return"[object WeakMap]"===String(t)&&("function"==typeof t.set&&(t.set({},1)===t&&("function"==typeof t.delete&&("function"==typeof t.has&&"one"===t.get(e)))))}},{}],235:[function(t,e,r){"use strict";e.exports="function"==typeof WeakMap&&"[object WeakMap]"===Object.prototype.toString.call(new WeakMap)},{}],236:[function(t,e,r){"use strict";var n,i=t("es5-ext/object/is-value"),a=t("es5-ext/object/set-prototype-of"),o=t("es5-ext/object/valid-object"),s=t("es5-ext/object/valid-value"),l=t("es5-ext/string/random-uniq"),c=t("d"),u=t("es6-iterator/get"),f=t("es6-iterator/for-of"),h=t("es6-symbol").toStringTag,p=t("./is-native-implemented"),d=Array.isArray,m=Object.defineProperty,g=Object.prototype.hasOwnProperty,v=Object.getPrototypeOf;e.exports=n=function(){var t,e=arguments[0];if(!(this instanceof n))throw new TypeError("Constructor requires 'new'");return t=p&&a&&WeakMap!==n?a(new WeakMap,v(this)):this,i(e)&&(d(e)||(e=u(e))),m(t,"__weakMapData__",c("c","$weakMap$"+l())),e?(f(e,(function(e){s(e),t.set(e[0],e[1])})),t):t},p&&(a&&a(n,WeakMap),n.prototype=Object.create(WeakMap.prototype,{constructor:c(n)})),Object.defineProperties(n.prototype,{delete:c((function(t){return!!g.call(o(t),this.__weakMapData__)&&(delete t[this.__weakMapData__],!0)})),get:c((function(t){if(g.call(o(t),this.__weakMapData__))return t[this.__weakMapData__]})),has:c((function(t){return g.call(o(t),this.__weakMapData__)})),set:c((function(t,e){return m(o(t),this.__weakMapData__,c("c",e)),this})),toString:c((function(){return"[object WeakMap]"}))}),m(n.prototype,h,c("c","WeakMap"))},{"./is-native-implemented":235,d:154,"es5-ext/object/is-value":201,"es5-ext/object/set-prototype-of":207,"es5-ext/object/valid-object":211,"es5-ext/object/valid-value":212,"es5-ext/string/random-uniq":217,"es6-iterator/for-of":219,"es6-iterator/get":220,"es6-symbol":225}],237:[function(t,e,r){"use strict";var n,i="object"==typeof Reflect?Reflect:null,a=i&&"function"==typeof i.apply?i.apply:function(t,e,r){return Function.prototype.apply.call(t,e,r)};n=i&&"function"==typeof i.ownKeys?i.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var o=Number.isNaN||function(t){return t!=t};function s(){s.init.call(this)}e.exports=s,e.exports.once=function(t,e){return new Promise((function(r,n){function i(r){t.removeListener(e,a),n(r)}function a(){"function"==typeof t.removeListener&&t.removeListener("error",i),r([].slice.call(arguments))}v(t,e,a,{once:!0}),"error"!==e&&function(t,e,r){"function"==typeof t.on&&v(t,"error",e,r)}(t,i,{once:!0})}))},s.EventEmitter=s,s.prototype._events=void 0,s.prototype._eventsCount=0,s.prototype._maxListeners=void 0;var l=10;function c(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function u(t){return void 0===t._maxListeners?s.defaultMaxListeners:t._maxListeners}function f(t,e,r,n){var i,a,o,s;if(c(r),void 0===(a=t._events)?(a=t._events=Object.create(null),t._eventsCount=0):(void 0!==a.newListener&&(t.emit("newListener",e,r.listener?r.listener:r),a=t._events),o=a[e]),void 0===o)o=a[e]=r,++t._eventsCount;else if("function"==typeof o?o=a[e]=n?[r,o]:[o,r]:n?o.unshift(r):o.push(r),(i=u(t))>0&&o.length>i&&!o.warned){o.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+o.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=t,l.type=e,l.count=o.length,s=l,console&&console.warn&&console.warn(s)}return t}function h(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function p(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=h.bind(n);return i.listener=r,n.wrapFn=i,i}function d(t,e,r){var n=t._events;if(void 0===n)return[];var i=n[e];return void 0===i?[]:"function"==typeof i?r?[i.listener||i]:[i]:r?function(t){for(var e=new Array(t.length),r=0;r0&&(o=e[0]),o instanceof Error)throw o;var s=new Error("Unhandled error."+(o?" ("+o.message+")":""));throw s.context=o,s}var l=i[t];if(void 0===l)return!1;if("function"==typeof l)a(l,this,e);else{var c=l.length,u=g(l,c);for(r=0;r=0;a--)if(r[a]===e||r[a].listener===e){o=r[a].listener,i=a;break}if(i<0)return this;0===i?r.shift():function(t,e){for(;e+1=0;n--)this.removeListener(t,e[n]);return this},s.prototype.listeners=function(t){return d(this,t,!0)},s.prototype.rawListeners=function(t){return d(this,t,!1)},s.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):m.call(t,e)},s.prototype.listenerCount=m,s.prototype.eventNames=function(){return this._eventsCount>0?n(this._events):[]}},{}],238:[function(t,e,r){var n=function(){if("object"==typeof self&&self)return self;if("object"==typeof window&&window)return window;throw new Error("Unable to resolve global `this`")};e.exports=function(){if(this)return this;try{Object.defineProperty(Object.prototype,"__global__",{get:function(){return this},configurable:!0})}catch(t){return n()}try{return __global__||n()}finally{delete Object.prototype.__global__}}()},{}],239:[function(t,e,r){"use strict";e.exports=t("./is-implemented")()?globalThis:t("./implementation")},{"./implementation":238,"./is-implemented":240}],240:[function(t,e,r){"use strict";e.exports=function(){return"object"==typeof globalThis&&(!!globalThis&&globalThis.Array===Array)}},{}],241:[function(t,e,r){"use strict";e.exports=function(t,e,r){var n=e||0,i=r||1;return[[t[12]+t[0],t[13]+t[1],t[14]+t[2],t[15]+t[3]],[t[12]-t[0],t[13]-t[1],t[14]-t[2],t[15]-t[3]],[t[12]+t[4],t[13]+t[5],t[14]+t[6],t[15]+t[7]],[t[12]-t[4],t[13]-t[5],t[14]-t[6],t[15]-t[7]],[n*t[12]+t[8],n*t[13]+t[9],n*t[14]+t[10],n*t[15]+t[11]],[i*t[12]-t[8],i*t[13]-t[9],i*t[14]-t[10],i*t[15]-t[11]]]}},{}],242:[function(t,e,r){"use strict";var n=t("is-string-blank");e.exports=function(t){var e=typeof t;if("string"===e){var r=t;if(0===(t=+t)&&n(r))return!1}else if("number"!==e)return!1;return t-t<1}},{"is-string-blank":438}],243:[function(t,e,r){"use strict";e.exports=function(t,e,r){switch(arguments.length){case 0:return new o([0],[0],0);case 1:return"number"==typeof t?new o(n=l(t),n,0):new o(t,l(t.length),0);case 2:if("number"==typeof e){var n=l(t.length);return new o(t,n,+e)}r=0;case 3:if(t.length!==e.length)throw new Error("state and velocity lengths must match");return new o(t,e,r)}};var n=t("cubic-hermite"),i=t("binary-search-bounds");function a(t,e,r){return Math.min(e,Math.max(t,r))}function o(t,e,r){this.dimension=t.length,this.bounds=[new Array(this.dimension),new Array(this.dimension)];for(var n=0;n=r-1){h=l.length-1;var d=t-e[r-1];for(p=0;p=r-1)for(var u=s.length-1,f=(e[r-1],0);f=0;--r)if(t[--e])return!1;return!0},s.jump=function(t){var e=this.lastT(),r=this.dimension;if(!(t0;--f)n.push(a(l[f-1],c[f-1],arguments[f])),i.push(0)}},s.push=function(t){var e=this.lastT(),r=this.dimension;if(!(t1e-6?1/s:0;this._time.push(t);for(var h=r;h>0;--h){var p=a(c[h-1],u[h-1],arguments[h]);n.push(p),i.push((p-n[o++])*f)}}},s.set=function(t){var e=this.dimension;if(!(t0;--l)r.push(a(o[l-1],s[l-1],arguments[l])),n.push(0)}},s.move=function(t){var e=this.lastT(),r=this.dimension;if(!(t<=e||arguments.length!==r+1)){var n=this._state,i=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1],u=t-e,f=u>1e-6?1/u:0;this._time.push(t);for(var h=r;h>0;--h){var p=arguments[h];n.push(a(l[h-1],c[h-1],n[o++]+p)),i.push(p*f)}}},s.idle=function(t){var e=this.lastT();if(!(t=0;--f)n.push(a(l[f],c[f],n[o]+u*i[o])),i.push(0),o+=1}}},{"binary-search-bounds":100,"cubic-hermite":152}],244:[function(t,e,r){var n=t("dtype");e.exports=function(t,e,r){if(!t)throw new TypeError("must specify data as first parameter");if(r=0|+(r||0),Array.isArray(t)&&t[0]&&"number"==typeof t[0][0]){var i,a,o,s,l=t[0].length,c=t.length*l;e&&"string"!=typeof e||(e=new(n(e||"float32"))(c+r));var u=e.length-r;if(c!==u)throw new Error("source length "+c+" ("+l+"x"+t.length+") does not match destination length "+u);for(i=0,o=r;ie[0]-o[0]/2&&(h=o[0]/2,p+=o[1]);return r}},{"css-font/stringify":149}],246:[function(t,e,r){"use strict";function n(t,e){e||(e={}),("string"==typeof t||Array.isArray(t))&&(e.family=t);var r=Array.isArray(e.family)?e.family.join(", "):e.family;if(!r)throw Error("`family` must be defined");var s=e.size||e.fontSize||e.em||48,l=e.weight||e.fontWeight||"",c=(t=[e.style||e.fontStyle||"",l,s].join(" ")+"px "+r,e.origin||"top");if(n.cache[r]&&s<=n.cache[r].em)return i(n.cache[r],c);var u=e.canvas||n.canvas,f=u.getContext("2d"),h={upper:void 0!==e.upper?e.upper:"H",lower:void 0!==e.lower?e.lower:"x",descent:void 0!==e.descent?e.descent:"p",ascent:void 0!==e.ascent?e.ascent:"h",tittle:void 0!==e.tittle?e.tittle:"i",overshoot:void 0!==e.overshoot?e.overshoot:"O"},p=Math.ceil(1.5*s);u.height=p,u.width=.5*p,f.font=t;var d={top:0};f.clearRect(0,0,p,p),f.textBaseline="top",f.fillStyle="black",f.fillText("H",0,0);var m=a(f.getImageData(0,0,p,p));f.clearRect(0,0,p,p),f.textBaseline="bottom",f.fillText("H",0,p);var g=a(f.getImageData(0,0,p,p));d.lineHeight=d.bottom=p-g+m,f.clearRect(0,0,p,p),f.textBaseline="alphabetic",f.fillText("H",0,p);var v=p-a(f.getImageData(0,0,p,p))-1+m;d.baseline=d.alphabetic=v,f.clearRect(0,0,p,p),f.textBaseline="middle",f.fillText("H",0,.5*p);var y=a(f.getImageData(0,0,p,p));d.median=d.middle=p-y-1+m-.5*p,f.clearRect(0,0,p,p),f.textBaseline="hanging",f.fillText("H",0,.5*p);var x=a(f.getImageData(0,0,p,p));d.hanging=p-x-1+m-.5*p,f.clearRect(0,0,p,p),f.textBaseline="ideographic",f.fillText("H",0,p);var b=a(f.getImageData(0,0,p,p));if(d.ideographic=p-b-1+m,h.upper&&(f.clearRect(0,0,p,p),f.textBaseline="top",f.fillText(h.upper,0,0),d.upper=a(f.getImageData(0,0,p,p)),d.capHeight=d.baseline-d.upper),h.lower&&(f.clearRect(0,0,p,p),f.textBaseline="top",f.fillText(h.lower,0,0),d.lower=a(f.getImageData(0,0,p,p)),d.xHeight=d.baseline-d.lower),h.tittle&&(f.clearRect(0,0,p,p),f.textBaseline="top",f.fillText(h.tittle,0,0),d.tittle=a(f.getImageData(0,0,p,p))),h.ascent&&(f.clearRect(0,0,p,p),f.textBaseline="top",f.fillText(h.ascent,0,0),d.ascent=a(f.getImageData(0,0,p,p))),h.descent&&(f.clearRect(0,0,p,p),f.textBaseline="top",f.fillText(h.descent,0,0),d.descent=o(f.getImageData(0,0,p,p))),h.overshoot){f.clearRect(0,0,p,p),f.textBaseline="top",f.fillText(h.overshoot,0,0);var _=o(f.getImageData(0,0,p,p));d.overshoot=_-v}for(var w in d)d[w]/=s;return d.em=s,n.cache[r]=d,i(d,c)}function i(t,e){var r={};for(var n in"string"==typeof e&&(e=t[e]),t)"em"!==n&&(r[n]=t[n]-e);return r}function a(t){for(var e=t.height,r=t.data,n=3;n0;n-=4)if(0!==r[n])return Math.floor(.25*(n-3)/e)}e.exports=n,n.canvas=document.createElement("canvas"),n.cache={}},{}],247:[function(t,e,r){"use strict";e.exports=function(t){return new s(t||m,null)};function n(t,e,r,n,i,a){this._color=t,this.key=e,this.value=r,this.left=n,this.right=i,this._count=a}function i(t){return new n(t._color,t.key,t.value,t.left,t.right,t._count)}function a(t,e){return new n(t,e.key,e.value,e.left,e.right,e._count)}function o(t){t._count=1+(t.left?t.left._count:0)+(t.right?t.right._count:0)}function s(t,e){this._compare=t,this.root=e}var l=s.prototype;function c(t,e){var r;if(e.left&&(r=c(t,e.left)))return r;return(r=t(e.key,e.value))||(e.right?c(t,e.right):void 0)}function u(t,e,r,n){if(e(t,n.key)<=0){var i;if(n.left)if(i=u(t,e,r,n.left))return i;if(i=r(n.key,n.value))return i}if(n.right)return u(t,e,r,n.right)}function f(t,e,r,n,i){var a,o=r(t,i.key),s=r(e,i.key);if(o<=0){if(i.left&&(a=f(t,e,r,n,i.left)))return a;if(s>0&&(a=n(i.key,i.value)))return a}if(s>0&&i.right)return f(t,e,r,n,i.right)}function h(t,e){this.tree=t,this._stack=e}Object.defineProperty(l,"keys",{get:function(){var t=[];return this.forEach((function(e,r){t.push(e)})),t}}),Object.defineProperty(l,"values",{get:function(){var t=[];return this.forEach((function(e,r){t.push(r)})),t}}),Object.defineProperty(l,"length",{get:function(){return this.root?this.root._count:0}}),l.insert=function(t,e){for(var r=this._compare,i=this.root,l=[],c=[];i;){var u=r(t,i.key);l.push(i),c.push(u),i=u<=0?i.left:i.right}l.push(new n(0,t,e,null,null,1));for(var f=l.length-2;f>=0;--f){i=l[f];c[f]<=0?l[f]=new n(i._color,i.key,i.value,l[f+1],i.right,i._count+1):l[f]=new n(i._color,i.key,i.value,i.left,l[f+1],i._count+1)}for(f=l.length-1;f>1;--f){var h=l[f-1];i=l[f];if(1===h._color||1===i._color)break;var p=l[f-2];if(p.left===h)if(h.left===i){if(!(d=p.right)||0!==d._color){if(p._color=0,p.left=h.right,h._color=1,h.right=p,l[f-2]=h,l[f-1]=i,o(p),o(h),f>=3)(m=l[f-3]).left===p?m.left=h:m.right=h;break}h._color=1,p.right=a(1,d),p._color=0,f-=1}else{if(!(d=p.right)||0!==d._color){if(h.right=i.left,p._color=0,p.left=i.right,i._color=1,i.left=h,i.right=p,l[f-2]=i,l[f-1]=h,o(p),o(h),o(i),f>=3)(m=l[f-3]).left===p?m.left=i:m.right=i;break}h._color=1,p.right=a(1,d),p._color=0,f-=1}else if(h.right===i){if(!(d=p.left)||0!==d._color){if(p._color=0,p.right=h.left,h._color=1,h.left=p,l[f-2]=h,l[f-1]=i,o(p),o(h),f>=3)(m=l[f-3]).right===p?m.right=h:m.left=h;break}h._color=1,p.left=a(1,d),p._color=0,f-=1}else{var d;if(!(d=p.left)||0!==d._color){var m;if(h.left=i.right,p._color=0,p.right=i.left,i._color=1,i.right=h,i.left=p,l[f-2]=i,l[f-1]=h,o(p),o(h),o(i),f>=3)(m=l[f-3]).right===p?m.right=i:m.left=i;break}h._color=1,p.left=a(1,d),p._color=0,f-=1}}return l[0]._color=1,new s(r,l[0])},l.forEach=function(t,e,r){if(this.root)switch(arguments.length){case 1:return c(t,this.root);case 2:return u(e,this._compare,t,this.root);case 3:if(this._compare(e,r)>=0)return;return f(e,r,this._compare,t,this.root)}},Object.defineProperty(l,"begin",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.left;return new h(this,t)}}),Object.defineProperty(l,"end",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.right;return new h(this,t)}}),l.at=function(t){if(t<0)return new h(this,[]);for(var e=this.root,r=[];;){if(r.push(e),e.left){if(t=e.right._count)break;e=e.right}return new h(this,[])},l.ge=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a<=0&&(i=n.length),r=a<=0?r.left:r.right}return n.length=i,new h(this,n)},l.gt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a<0&&(i=n.length),r=a<0?r.left:r.right}return n.length=i,new h(this,n)},l.lt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a>0&&(i=n.length),r=a<=0?r.left:r.right}return n.length=i,new h(this,n)},l.le=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a>=0&&(i=n.length),r=a<0?r.left:r.right}return n.length=i,new h(this,n)},l.find=function(t){for(var e=this._compare,r=this.root,n=[];r;){var i=e(t,r.key);if(n.push(r),0===i)return new h(this,n);r=i<=0?r.left:r.right}return new h(this,[])},l.remove=function(t){var e=this.find(t);return e?e.remove():this},l.get=function(t){for(var e=this._compare,r=this.root;r;){var n=e(t,r.key);if(0===n)return r.value;r=n<=0?r.left:r.right}};var p=h.prototype;function d(t,e){t.key=e.key,t.value=e.value,t.left=e.left,t.right=e.right,t._color=e._color,t._count=e._count}function m(t,e){return te?1:0}Object.defineProperty(p,"valid",{get:function(){return this._stack.length>0}}),Object.defineProperty(p,"node",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1]:null},enumerable:!0}),p.clone=function(){return new h(this.tree,this._stack.slice())},p.remove=function(){var t=this._stack;if(0===t.length)return this.tree;var e=new Array(t.length),r=t[t.length-1];e[e.length-1]=new n(r._color,r.key,r.value,r.left,r.right,r._count);for(var l=t.length-2;l>=0;--l){(r=t[l]).left===t[l+1]?e[l]=new n(r._color,r.key,r.value,e[l+1],r.right,r._count):e[l]=new n(r._color,r.key,r.value,r.left,e[l+1],r._count)}if((r=e[e.length-1]).left&&r.right){var c=e.length;for(r=r.left;r.right;)e.push(r),r=r.right;var u=e[c-1];e.push(new n(r._color,u.key,u.value,r.left,r.right,r._count)),e[c-1].key=r.key,e[c-1].value=r.value;for(l=e.length-2;l>=c;--l)r=e[l],e[l]=new n(r._color,r.key,r.value,r.left,e[l+1],r._count);e[c-1].left=e[c]}if(0===(r=e[e.length-1])._color){var f=e[e.length-2];f.left===r?f.left=null:f.right===r&&(f.right=null),e.pop();for(l=0;l=0;--l){if(e=t[l],0===l)return void(e._color=1);if((r=t[l-1]).left===e){if((n=r.right).right&&0===n.right._color){if(s=(n=r.right=i(n)).right=i(n.right),r.right=n.left,n.left=r,n.right=s,n._color=r._color,e._color=1,r._color=1,s._color=1,o(r),o(n),l>1)(c=t[l-2]).left===r?c.left=n:c.right=n;return void(t[l-1]=n)}if(n.left&&0===n.left._color){if(s=(n=r.right=i(n)).left=i(n.left),r.right=s.left,n.left=s.right,s.left=r,s.right=n,s._color=r._color,r._color=1,n._color=1,e._color=1,o(r),o(n),o(s),l>1)(c=t[l-2]).left===r?c.left=s:c.right=s;return void(t[l-1]=s)}if(1===n._color){if(0===r._color)return r._color=1,void(r.right=a(0,n));r.right=a(0,n);continue}n=i(n),r.right=n.left,n.left=r,n._color=r._color,r._color=0,o(r),o(n),l>1&&((c=t[l-2]).left===r?c.left=n:c.right=n),t[l-1]=n,t[l]=r,l+11)(c=t[l-2]).right===r?c.right=n:c.left=n;return void(t[l-1]=n)}if(n.right&&0===n.right._color){if(s=(n=r.left=i(n)).right=i(n.right),r.left=s.right,n.right=s.left,s.right=r,s.left=n,s._color=r._color,r._color=1,n._color=1,e._color=1,o(r),o(n),o(s),l>1)(c=t[l-2]).right===r?c.right=s:c.left=s;return void(t[l-1]=s)}if(1===n._color){if(0===r._color)return r._color=1,void(r.left=a(0,n));r.left=a(0,n);continue}var c;n=i(n),r.left=n.right,n.right=r,n._color=r._color,r._color=0,o(r),o(n),l>1&&((c=t[l-2]).right===r?c.right=n:c.left=n),t[l-1]=n,t[l]=r,l+10)return this._stack[this._stack.length-1].key},enumerable:!0}),Object.defineProperty(p,"value",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].value},enumerable:!0}),Object.defineProperty(p,"index",{get:function(){var t=0,e=this._stack;if(0===e.length){var r=this.tree.root;return r?r._count:0}e[e.length-1].left&&(t=e[e.length-1].left._count);for(var n=e.length-2;n>=0;--n)e[n+1]===e[n].right&&(++t,e[n].left&&(t+=e[n].left._count));return t},enumerable:!0}),p.next=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.right)for(e=e.right;e;)t.push(e),e=e.left;else for(t.pop();t.length>0&&t[t.length-1].right===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(p,"hasNext",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].right)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].left===t[e])return!0;return!1}}),p.update=function(t){var e=this._stack;if(0===e.length)throw new Error("Can't update empty node!");var r=new Array(e.length),i=e[e.length-1];r[r.length-1]=new n(i._color,i.key,t,i.left,i.right,i._count);for(var a=e.length-2;a>=0;--a)(i=e[a]).left===e[a+1]?r[a]=new n(i._color,i.key,i.value,r[a+1],i.right,i._count):r[a]=new n(i._color,i.key,i.value,i.left,r[a+1],i._count);return new s(this.tree._compare,r[0])},p.prev=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.left)for(e=e.left;e;)t.push(e),e=e.right;else for(t.pop();t.length>0&&t[t.length-1].left===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(p,"hasPrev",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].left)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].right===t[e])return!0;return!1}})},{}],248:[function(t,e,r){e.exports=function(t,e){if("string"!=typeof t)throw new TypeError("must specify type string");if(e=e||{},"undefined"==typeof document&&!e.canvas)return null;var r=e.canvas||document.createElement("canvas");"number"==typeof e.width&&(r.width=e.width);"number"==typeof e.height&&(r.height=e.height);var n,i=e;try{var a=[t];0===t.indexOf("webgl")&&a.push("experimental-"+t);for(var o=0;o0?(p[u]=-1,d[u]=0):(p[u]=0,d[u]=1)}}var m=[0,0,0],g={model:l,view:l,projection:l,_ortho:!1};f.isOpaque=function(){return!0},f.isTransparent=function(){return!1},f.drawTransparent=function(t){};var v=[0,0,0],y=[0,0,0],x=[0,0,0];f.draw=function(t){t=t||g;for(var e=this.gl,r=t.model||l,n=t.view||l,i=t.projection||l,a=this.bounds,s=t._ortho||!1,u=o(r,n,i,a,s),f=u.cubeEdges,h=u.axis,b=n[12],_=n[13],w=n[14],T=n[15],k=(s?2:1)*this.pixelRatio*(i[3]*b+i[7]*_+i[11]*w+i[15]*T)/e.drawingBufferHeight,A=0;A<3;++A)this.lastCubeProps.cubeEdges[A]=f[A],this.lastCubeProps.axis[A]=h[A];var M=p;for(A=0;A<3;++A)d(p[A],A,this.bounds,f,h);e=this.gl;var S,E=m;for(A=0;A<3;++A)this.backgroundEnable[A]?E[A]=h[A]:E[A]=0;this._background.draw(r,n,i,a,E,this.backgroundColor),this._lines.bind(r,n,i,this);for(A=0;A<3;++A){var L=[0,0,0];h[A]>0?L[A]=a[1][A]:L[A]=a[0][A];for(var C=0;C<2;++C){var P=(A+1+C)%3,I=(A+1+(1^C))%3;this.gridEnable[P]&&this._lines.drawGrid(P,I,this.bounds,L,this.gridColor[P],this.gridWidth[P]*this.pixelRatio)}for(C=0;C<2;++C){P=(A+1+C)%3,I=(A+1+(1^C))%3;this.zeroEnable[I]&&Math.min(a[0][I],a[1][I])<=0&&Math.max(a[0][I],a[1][I])>=0&&this._lines.drawZero(P,I,this.bounds,L,this.zeroLineColor[I],this.zeroLineWidth[I]*this.pixelRatio)}}for(A=0;A<3;++A){this.lineEnable[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].primalOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio),this.lineMirror[A]&&this._lines.drawAxisLine(A,this.bounds,M[A].mirrorOffset,this.lineColor[A],this.lineWidth[A]*this.pixelRatio);var O=c(v,M[A].primalMinor),z=c(y,M[A].mirrorMinor),D=this.lineTickLength;for(C=0;C<3;++C){var R=k/r[5*C];O[C]*=D[C]*R,z[C]*=D[C]*R}this.lineTickEnable[A]&&this._lines.drawAxisTicks(A,M[A].primalOffset,O,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio),this.lineTickMirror[A]&&this._lines.drawAxisTicks(A,M[A].mirrorOffset,z,this.lineTickColor[A],this.lineTickWidth[A]*this.pixelRatio)}this._lines.unbind(),this._text.bind(r,n,i,this.pixelRatio);var F,B;function N(t){(B=[0,0,0])[t]=1}function j(t,e,r){var n=(t+1)%3,i=(t+2)%3,a=e[n],o=e[i],s=r[n],l=r[i];a>0&&l>0||a>0&&l<0||a<0&&l>0||a<0&&l<0?N(n):(o>0&&s>0||o>0&&s<0||o<0&&s>0||o<0&&s<0)&&N(i)}for(A=0;A<3;++A){var U=M[A].primalMinor,V=M[A].mirrorMinor,H=c(x,M[A].primalOffset);for(C=0;C<3;++C)this.lineTickEnable[A]&&(H[C]+=k*U[C]*Math.max(this.lineTickLength[C],0)/r[5*C]);var q=[0,0,0];if(q[A]=1,this.tickEnable[A]){-3600===this.tickAngle[A]?(this.tickAngle[A]=0,this.tickAlign[A]="auto"):this.tickAlign[A]=-1,F=1,"auto"===(S=[this.tickAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(""+S[0]),B=[0,0,0],j(A,U,V);for(C=0;C<3;++C)H[C]+=k*U[C]*this.tickPad[C]/r[5*C];this._text.drawTicks(A,this.tickSize[A],this.tickAngle[A],H,this.tickColor[A],q,B,S)}if(this.labelEnable[A]){F=0,B=[0,0,0],this.labels[A].length>4&&(N(A),F=1),"auto"===(S=[this.labelAlign[A],.5,F])[0]?S[0]=0:S[0]=parseInt(""+S[0]);for(C=0;C<3;++C)H[C]+=k*U[C]*this.labelPad[C]/r[5*C];H[A]+=.5*(a[0][A]+a[1][A]),this._text.drawLabel(A,this.labelSize[A],this.labelAngle[A],H,this.labelColor[A],[0,0,0],B,S)}}this._text.unbind()},f.dispose=function(){this._text.dispose(),this._lines.dispose(),this._background.dispose(),this._lines=null,this._text=null,this._background=null,this.gl=null}},{"./lib/background.js":250,"./lib/cube.js":251,"./lib/lines.js":252,"./lib/text.js":254,"./lib/ticks.js":255}],250:[function(t,e,r){"use strict";e.exports=function(t){for(var e=[],r=[],s=0,l=0;l<3;++l)for(var c=(l+1)%3,u=(l+2)%3,f=[0,0,0],h=[0,0,0],p=-1;p<=1;p+=2){r.push(s,s+2,s+1,s+1,s+2,s+3),f[l]=p,h[l]=p;for(var d=-1;d<=1;d+=2){f[c]=d;for(var m=-1;m<=1;m+=2)f[u]=m,e.push(f[0],f[1],f[2],h[0],h[1],h[2]),s+=1}var g=c;c=u,u=g}var v=n(t,new Float32Array(e)),y=n(t,new Uint16Array(r),t.ELEMENT_ARRAY_BUFFER),x=i(t,[{buffer:v,type:t.FLOAT,size:3,offset:0,stride:24},{buffer:v,type:t.FLOAT,size:3,offset:12,stride:24}],y),b=a(t);return b.attributes.position.location=0,b.attributes.normal.location=1,new o(t,v,x,b)};var n=t("gl-buffer"),i=t("gl-vao"),a=t("./shaders").bg;function o(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n}var s=o.prototype;s.draw=function(t,e,r,n,i,a){for(var o=!1,s=0;s<3;++s)o=o||i[s];if(o){var l=this.gl;l.enable(l.POLYGON_OFFSET_FILL),l.polygonOffset(1,2),this.shader.bind(),this.shader.uniforms={model:t,view:e,projection:r,bounds:n,enable:i,colors:a},this.vao.bind(),this.vao.draw(this.gl.TRIANGLES,36),this.vao.unbind(),l.disable(l.POLYGON_OFFSET_FILL)}},s.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{"./shaders":253,"gl-buffer":257,"gl-vao":343}],251:[function(t,e,r){"use strict";e.exports=function(t,e,r,a,p){i(s,e,t),i(s,r,s);for(var y=0,x=0;x<2;++x){u[2]=a[x][2];for(var b=0;b<2;++b){u[1]=a[b][1];for(var _=0;_<2;++_)u[0]=a[_][0],h(l[y],u,s),y+=1}}var w=-1;for(x=0;x<8;++x){for(var T=l[x][3],k=0;k<3;++k)c[x][k]=l[x][k]/T;p&&(c[x][2]*=-1),T<0&&(w<0||c[x][2]E&&(w|=1<E&&(w|=1<c[x][1])&&(R=x);var F=-1;for(x=0;x<3;++x){if((N=R^1<c[B][0]&&(B=N)}var j=m;j[0]=j[1]=j[2]=0,j[n.log2(F^R)]=R&F,j[n.log2(R^B)]=R&B;var U=7^B;U===w||U===D?(U=7^F,j[n.log2(B^U)]=U&B):j[n.log2(F^U)]=U&F;var V=g,H=w;for(A=0;A<3;++A)V[A]=H&1< HALF_PI) && (b <= ONE_AND_HALF_PI)) ?\n b - PI :\n b;\n}\n\nfloat look_horizontal_or_vertical(float a, float ratio) {\n // ratio controls the ratio between being horizontal to (vertical + horizontal)\n // if ratio is set to 0.5 then it is 50%, 50%.\n // when using a higher ratio e.g. 0.75 the result would\n // likely be more horizontal than vertical.\n\n float b = positive_angle(a);\n\n return\n (b < ( ratio) * HALF_PI) ? 0.0 :\n (b < (2.0 - ratio) * HALF_PI) ? -HALF_PI :\n (b < (2.0 + ratio) * HALF_PI) ? 0.0 :\n (b < (4.0 - ratio) * HALF_PI) ? HALF_PI :\n 0.0;\n}\n\nfloat roundTo(float a, float b) {\n return float(b * floor((a + 0.5 * b) / b));\n}\n\nfloat look_round_n_directions(float a, int n) {\n float b = positive_angle(a);\n float div = TWO_PI / float(n);\n float c = roundTo(b, div);\n return look_upwards(c);\n}\n\nfloat applyAlignOption(float rawAngle, float delta) {\n return\n (option > 2) ? look_round_n_directions(rawAngle + delta, option) : // option 3-n: round to n directions\n (option == 2) ? look_horizontal_or_vertical(rawAngle + delta, hv_ratio) : // horizontal or vertical\n (option == 1) ? rawAngle + delta : // use free angle, and flip to align with one direction of the axis\n (option == 0) ? look_upwards(rawAngle) : // use free angle, and stay upwards\n (option ==-1) ? 0.0 : // useful for backward compatibility, all texts remains horizontal\n rawAngle; // otherwise return back raw input angle\n}\n\nbool isAxisTitle = (axis.x == 0.0) &&\n (axis.y == 0.0) &&\n (axis.z == 0.0);\n\nvoid main() {\n //Compute world offset\n float axisDistance = position.z;\n vec3 dataPosition = axisDistance * axis + offset;\n\n float beta = angle; // i.e. user defined attributes for each tick\n\n float axisAngle;\n float clipAngle;\n float flip;\n\n if (enableAlign) {\n axisAngle = (isAxisTitle) ? HALF_PI :\n computeViewAngle(dataPosition, dataPosition + axis);\n clipAngle = computeViewAngle(dataPosition, dataPosition + alignDir);\n\n axisAngle += (sin(axisAngle) < 0.0) ? PI : 0.0;\n clipAngle += (sin(clipAngle) < 0.0) ? PI : 0.0;\n\n flip = (dot(vec2(cos(axisAngle), sin(axisAngle)),\n vec2(sin(clipAngle),-cos(clipAngle))) > 0.0) ? 1.0 : 0.0;\n\n beta += applyAlignOption(clipAngle, flip * PI);\n }\n\n //Compute plane offset\n vec2 planeCoord = position.xy * pixelScale;\n\n mat2 planeXform = scale * mat2(\n cos(beta), sin(beta),\n -sin(beta), cos(beta)\n );\n\n vec2 viewOffset = 2.0 * planeXform * planeCoord / resolution;\n\n //Compute clip position\n vec3 clipPosition = project(dataPosition);\n\n //Apply text offset in clip coordinates\n clipPosition += vec3(viewOffset, 0.0);\n\n //Done\n gl_Position = vec4(clipPosition, 1.0);\n}"]),l=n(["precision highp float;\n#define GLSLIFY 1\n\nuniform vec4 color;\nvoid main() {\n gl_FragColor = color;\n}"]);r.text=function(t){return i(t,s,l,null,[{name:"position",type:"vec3"}])};var c=n(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\nattribute vec3 normal;\n\nuniform mat4 model, view, projection;\nuniform vec3 enable;\nuniform vec3 bounds[2];\n\nvarying vec3 colorChannel;\n\nvoid main() {\n\n vec3 signAxis = sign(bounds[1] - bounds[0]);\n\n vec3 realNormal = signAxis * normal;\n\n if(dot(realNormal, enable) > 0.0) {\n vec3 minRange = min(bounds[0], bounds[1]);\n vec3 maxRange = max(bounds[0], bounds[1]);\n vec3 nPosition = mix(minRange, maxRange, 0.5 * (position + 1.0));\n gl_Position = projection * view * model * vec4(nPosition, 1.0);\n } else {\n gl_Position = vec4(0,0,0,0);\n }\n\n colorChannel = abs(realNormal);\n}"]),u=n(["precision highp float;\n#define GLSLIFY 1\n\nuniform vec4 colors[3];\n\nvarying vec3 colorChannel;\n\nvoid main() {\n gl_FragColor = colorChannel.x * colors[0] +\n colorChannel.y * colors[1] +\n colorChannel.z * colors[2];\n}"]);r.bg=function(t){return i(t,c,u,null,[{name:"position",type:"vec3"},{name:"normal",type:"vec3"}])}},{"gl-shader":323,glslify:424}],254:[function(t,e,r){(function(r){(function(){"use strict";e.exports=function(t,e,r,a,s,l){var u=n(t),f=i(t,[{buffer:u,size:3}]),h=o(t);h.attributes.position.location=0;var p=new c(t,h,u,f);return p.update(e,r,a,s,l),p};var n=t("gl-buffer"),i=t("gl-vao"),a=t("vectorize-text"),o=t("./shaders").text,s=window||r.global||{},l=s.__TEXT_CACHE||{};s.__TEXT_CACHE={};function c(t,e,r,n){this.gl=t,this.shader=e,this.buffer=r,this.vao=n,this.tickOffset=this.tickCount=this.labelOffset=this.labelCount=null}var u=c.prototype,f=[0,0];u.bind=function(t,e,r,n){this.vao.bind(),this.shader.bind();var i=this.shader.uniforms;i.model=t,i.view=e,i.projection=r,i.pixelScale=n,f[0]=this.gl.drawingBufferWidth,f[1]=this.gl.drawingBufferHeight,this.shader.uniforms.resolution=f},u.unbind=function(){this.vao.unbind()},u.update=function(t,e,r,n,i){var o=[];function s(t,e,r,n,i,s){var c=l[r];c||(c=l[r]={});var u=c[e];u||(u=c[e]=function(t,e){try{return a(t,e)}catch(e){return console.warn('error vectorizing text:"'+t+'" error:',e),{cells:[],positions:[]}}}(e,{triangles:!0,font:r,textAlign:"center",textBaseline:"middle",lineSpacing:i,styletags:s}));for(var f=(n||12)/12,h=u.positions,p=u.cells,d=0,m=p.length;d=0;--v){var y=h[g[v]];o.push(f*y[0],-f*y[1],t)}}for(var c=[0,0,0],u=[0,0,0],f=[0,0,0],h=[0,0,0],p={breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},d=0;d<3;++d){f[d]=o.length/3|0,s(.5*(t[0][d]+t[1][d]),e[d],r[d],12,1.25,p),h[d]=(o.length/3|0)-f[d],c[d]=o.length/3|0;for(var m=0;m=0&&(i=r.length-n-1);var a=Math.pow(10,i),o=Math.round(t*e*a),s=o+"";if(s.indexOf("e")>=0)return s;var l=o/a,c=o%a;o<0?(l=0|-Math.ceil(l),c=0|-c):(l=0|Math.floor(l),c|=0);var u=""+l;if(o<0&&(u="-"+u),i){for(var f=""+c;f.length=t[0][i];--o)a.push({x:o*e[i],text:n(e[i],o)});r.push(a)}return r},r.equal=function(t,e){for(var r=0;r<3;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;nr)throw new Error("gl-buffer: If resizing buffer, must not specify offset");return t.bufferSubData(e,a,i),r}function u(t,e){for(var r=n.malloc(t.length,e),i=t.length,a=0;a=0;--n){if(e[n]!==r)return!1;r*=t[n]}return!0}(t.shape,t.stride))0===t.offset&&t.data.length===t.shape[0]?this.length=c(this.gl,this.type,this.length,this.usage,t.data,e):this.length=c(this.gl,this.type,this.length,this.usage,t.data.subarray(t.offset,t.shape[0]),e);else{var s=n.malloc(t.size,r),l=a(s,t.shape);i.assign(l,t),this.length=c(this.gl,this.type,this.length,this.usage,e<0?s:s.subarray(0,t.size),e),n.free(s)}}else if(Array.isArray(t)){var f;f=this.type===this.gl.ELEMENT_ARRAY_BUFFER?u(t,"uint16"):u(t,"float32"),this.length=c(this.gl,this.type,this.length,this.usage,e<0?f:f.subarray(0,t.length),e),n.free(f)}else if("object"==typeof t&&"number"==typeof t.length)this.length=c(this.gl,this.type,this.length,this.usage,t,e);else{if("number"!=typeof t&&void 0!==t)throw new Error("gl-buffer: Invalid data type");if(e>=0)throw new Error("gl-buffer: Cannot specify offset when resizing buffer");(t|=0)<=0&&(t=1),this.gl.bufferData(this.type,0|t,this.usage),this.length=t}},e.exports=function(t,e,r,n){if(r=r||t.ARRAY_BUFFER,n=n||t.DYNAMIC_DRAW,r!==t.ARRAY_BUFFER&&r!==t.ELEMENT_ARRAY_BUFFER)throw new Error("gl-buffer: Invalid type for webgl buffer, must be either gl.ARRAY_BUFFER or gl.ELEMENT_ARRAY_BUFFER");if(n!==t.DYNAMIC_DRAW&&n!==t.STATIC_DRAW&&n!==t.STREAM_DRAW)throw new Error("gl-buffer: Invalid usage for buffer, must be either gl.DYNAMIC_DRAW, gl.STATIC_DRAW or gl.STREAM_DRAW");var i=t.createBuffer(),a=new s(t,r,i,0,n);return a.update(e),a}},{ndarray:462,"ndarray-ops":457,"typedarray-pool":590}],258:[function(t,e,r){"use strict";var n=t("gl-vec3");e.exports=function(t,e){var r=t.positions,i=t.vectors,a={positions:[],vertexIntensity:[],vertexIntensityBounds:t.vertexIntensityBounds,vectors:[],cells:[],coneOffset:t.coneOffset,colormap:t.colormap};if(0===t.positions.length)return e&&(e[0]=[0,0,0],e[1]=[0,0,0]),a;for(var o=0,s=1/0,l=-1/0,c=1/0,u=-1/0,f=1/0,h=-1/0,p=null,d=null,m=[],g=1/0,v=!1,y=0;yo&&(o=n.length(b)),y){var _=2*n.distance(p,x)/(n.length(d)+n.length(b));_?(g=Math.min(g,_),v=!1):v=!0}v||(p=x,d=b),m.push(b)}var w=[s,c,f],T=[l,u,h];e&&(e[0]=w,e[1]=T),0===o&&(o=1);var k=1/o;isFinite(g)||(g=1),a.vectorScale=g;var A=t.coneSize||.5;t.absoluteConeSize&&(A=t.absoluteConeSize*k),a.coneScale=A;y=0;for(var M=0;y=1},p.isTransparent=function(){return this.opacity<1},p.pickSlots=1,p.setPickBase=function(t){this.pickId=t},p.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,"lightPosition"in t&&(this.lightPosition=t.lightPosition),"opacity"in t&&(this.opacity=t.opacity),"ambient"in t&&(this.ambientLight=t.ambient),"diffuse"in t&&(this.diffuseLight=t.diffuse),"specular"in t&&(this.specularLight=t.specular),"roughness"in t&&(this.roughness=t.roughness),"fresnel"in t&&(this.fresnel=t.fresnel),void 0!==t.tubeScale&&(this.tubeScale=t.tubeScale),void 0!==t.vectorScale&&(this.vectorScale=t.vectorScale),void 0!==t.coneScale&&(this.coneScale=t.coneScale),void 0!==t.coneOffset&&(this.coneOffset=t.coneOffset),t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t){for(var e=u({colormap:t,nshades:256,format:"rgba"}),r=new Uint8Array(1024),n=0;n<256;++n){for(var i=e[n],a=0;a<3;++a)r[4*n+a]=i[a];r[4*n+3]=255*i[3]}return c(r,[256,256,4],[4,0,1])}(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions,i=t.vectors;if(n&&r&&i){var a=[],o=[],s=[],l=[],f=[];this.cells=r,this.positions=n,this.vectors=i;var h=t.meshColor||[1,1,1,1],p=t.vertexIntensity,d=1/0,m=-1/0;if(p)if(t.vertexIntensityBounds)d=+t.vertexIntensityBounds[0],m=+t.vertexIntensityBounds[1];else for(var g=0;g0){var m=this.triShader;m.bind(),m.uniforms=c,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},p.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||f,n=t.view||f,i=t.projection||f,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(i),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:i,clipBounds:a,tubeScale:this.tubeScale,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind())},p.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions[r[1]].slice(0,3),i={position:n,dataCoordinate:n,index:Math.floor(r[1]/48)};return"cone"===this.traceType?i.index=Math.floor(r[1]/48):"streamtube"===this.traceType&&(i.intensity=this.intensity[r[1]],i.velocity=this.vectors[r[1]].slice(0,3),i.divergence=this.vectors[r[1]][3],i.index=e),i},p.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleIds.dispose()},e.exports=function(t,e,r){var n=r.shaders;1===arguments.length&&(t=(e=t).gl);var s=d(t,n),l=m(t,n),u=o(t,c(new Uint8Array([255,255,255,255]),[1,1,4]));u.generateMipmap(),u.minFilter=t.LINEAR_MIPMAP_LINEAR,u.magFilter=t.LINEAR;var f=i(t),p=i(t),g=i(t),v=i(t),y=i(t),x=a(t,[{buffer:f,type:t.FLOAT,size:4},{buffer:y,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:g,type:t.FLOAT,size:4},{buffer:v,type:t.FLOAT,size:2},{buffer:p,type:t.FLOAT,size:4}]),b=new h(t,u,s,l,f,p,y,g,v,x,r.traceType||"cone");return b.update(e),b}},{colormap:132,"gl-buffer":257,"gl-mat4/invert":287,"gl-mat4/multiply":289,"gl-shader":323,"gl-texture2d":338,"gl-vao":343,ndarray:462}],260:[function(t,e,r){var n=t("glslify"),i=n(["precision highp float;\n\nprecision highp float;\n#define GLSLIFY 1\n\nvec3 getOrthogonalVector(vec3 v) {\n // Return up-vector for only-z vector.\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the cone vertex and normal at the given index.\n//\n// The returned vertex is for a cone with its top at origin and height of 1.0,\n// pointing in the direction of the vector attribute.\n//\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\n// These vertices are used to make up the triangles of the cone by the following:\n// segment + 0 top vertex\n// segment + 1 perimeter vertex a+1\n// segment + 2 perimeter vertex a\n// segment + 3 center base vertex\n// segment + 4 perimeter vertex a\n// segment + 5 perimeter vertex a+1\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\n// To go from index to segment, floor(index / 6)\n// To go from segment to angle, 2*pi * (segment/segmentCount)\n// To go from index to segment index, index - (segment*6)\n//\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\n\n const float segmentCount = 8.0;\n\n float index = rawIndex - floor(rawIndex /\n (segmentCount * 6.0)) *\n (segmentCount * 6.0);\n\n float segment = floor(0.001 + index/6.0);\n float segmentIndex = index - (segment*6.0);\n\n normal = -normalize(d);\n\n if (segmentIndex > 2.99 && segmentIndex < 3.01) {\n return mix(vec3(0.0), -d, coneOffset);\n }\n\n float nextAngle = (\n (segmentIndex > 0.99 && segmentIndex < 1.01) ||\n (segmentIndex > 4.99 && segmentIndex < 5.01)\n ) ? 1.0 : 0.0;\n float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\n\n vec3 v1 = mix(d, vec3(0.0), coneOffset);\n vec3 v2 = v1 - d;\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d)*0.25;\n vec3 y = v * sin(angle) * length(d)*0.25;\n vec3 v3 = v2 + x + y;\n if (segmentIndex < 3.0) {\n vec3 tx = u * sin(angle);\n vec3 ty = v * -cos(angle);\n vec3 tangent = tx + ty;\n normal = normalize(cross(v3 - v1, tangent));\n }\n\n if (segmentIndex == 0.0) {\n return mix(d, vec3(0.0), coneOffset);\n }\n return v3;\n}\n\nattribute vec3 vector;\nattribute vec4 color, position;\nattribute vec2 uv;\n\nuniform float vectorScale, coneScale, coneOffset;\nuniform mat4 model, view, projection, inverseModel;\nuniform vec3 eyePosition, lightPosition;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n // Scale the vector magnitude to stay constant with\n // model & view changes.\n vec3 normal;\n vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\n vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * conePosition;\n cameraCoordinate.xyz /= cameraCoordinate.w;\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\n\n // vec4 m_position = model * vec4(conePosition, 1.0);\n vec4 t_position = view * conePosition;\n gl_Position = projection * t_position;\n\n f_color = color;\n f_data = conePosition.xyz;\n f_position = position.xyz;\n f_uv = uv;\n}\n"]),a=n(["#extension GL_OES_standard_derivatives : enable\n\nprecision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat cookTorranceSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness,\n float fresnel) {\n\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\n\n //Half angle vector\n vec3 H = normalize(lightDirection + viewDirection);\n\n //Geometric term\n float NdotH = max(dot(surfaceNormal, H), 0.0);\n float VdotH = max(dot(viewDirection, H), 0.000001);\n float LdotH = max(dot(lightDirection, H), 0.000001);\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\n float G = min(1.0, min(G1, G2));\n \n //Distribution term\n float D = beckmannDistribution(NdotH, roughness);\n\n //Fresnel term\n float F = pow(1.0 - VdotN, fresnel);\n\n //Multiply terms and done\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\nuniform sampler2D texture;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n vec3 N = normalize(f_normal);\n vec3 L = normalize(f_lightDirection);\n vec3 V = normalize(f_eyeDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n vec4 surfaceColor = f_color * texture2D(texture, f_uv);\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = litColor * opacity;\n}\n"]),o=n(["precision highp float;\n\nprecision highp float;\n#define GLSLIFY 1\n\nvec3 getOrthogonalVector(vec3 v) {\n // Return up-vector for only-z vector.\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the cone vertex and normal at the given index.\n//\n// The returned vertex is for a cone with its top at origin and height of 1.0,\n// pointing in the direction of the vector attribute.\n//\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\n// These vertices are used to make up the triangles of the cone by the following:\n// segment + 0 top vertex\n// segment + 1 perimeter vertex a+1\n// segment + 2 perimeter vertex a\n// segment + 3 center base vertex\n// segment + 4 perimeter vertex a\n// segment + 5 perimeter vertex a+1\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\n// To go from index to segment, floor(index / 6)\n// To go from segment to angle, 2*pi * (segment/segmentCount)\n// To go from index to segment index, index - (segment*6)\n//\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\n\n const float segmentCount = 8.0;\n\n float index = rawIndex - floor(rawIndex /\n (segmentCount * 6.0)) *\n (segmentCount * 6.0);\n\n float segment = floor(0.001 + index/6.0);\n float segmentIndex = index - (segment*6.0);\n\n normal = -normalize(d);\n\n if (segmentIndex > 2.99 && segmentIndex < 3.01) {\n return mix(vec3(0.0), -d, coneOffset);\n }\n\n float nextAngle = (\n (segmentIndex > 0.99 && segmentIndex < 1.01) ||\n (segmentIndex > 4.99 && segmentIndex < 5.01)\n ) ? 1.0 : 0.0;\n float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\n\n vec3 v1 = mix(d, vec3(0.0), coneOffset);\n vec3 v2 = v1 - d;\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d)*0.25;\n vec3 y = v * sin(angle) * length(d)*0.25;\n vec3 v3 = v2 + x + y;\n if (segmentIndex < 3.0) {\n vec3 tx = u * sin(angle);\n vec3 ty = v * -cos(angle);\n vec3 tangent = tx + ty;\n normal = normalize(cross(v3 - v1, tangent));\n }\n\n if (segmentIndex == 0.0) {\n return mix(d, vec3(0.0), coneOffset);\n }\n return v3;\n}\n\nattribute vec4 vector;\nattribute vec4 position;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform float vectorScale, coneScale, coneOffset;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n vec3 normal;\n vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector.xyz), position.w, coneOffset, normal);\n vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n gl_Position = projection * view * conePosition;\n f_id = id;\n f_position = position.xyz;\n}\n"]),s=n(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n\n gl_FragColor = vec4(pickId, f_id.xyz);\n}"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:"position",type:"vec4"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"},{name:"vector",type:"vec3"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:"position",type:"vec4"},{name:"id",type:"vec4"},{name:"vector",type:"vec3"}]}},{glslify:424}],261:[function(t,e,r){e.exports={0:"NONE",1:"ONE",2:"LINE_LOOP",3:"LINE_STRIP",4:"TRIANGLES",5:"TRIANGLE_STRIP",6:"TRIANGLE_FAN",256:"DEPTH_BUFFER_BIT",512:"NEVER",513:"LESS",514:"EQUAL",515:"LEQUAL",516:"GREATER",517:"NOTEQUAL",518:"GEQUAL",519:"ALWAYS",768:"SRC_COLOR",769:"ONE_MINUS_SRC_COLOR",770:"SRC_ALPHA",771:"ONE_MINUS_SRC_ALPHA",772:"DST_ALPHA",773:"ONE_MINUS_DST_ALPHA",774:"DST_COLOR",775:"ONE_MINUS_DST_COLOR",776:"SRC_ALPHA_SATURATE",1024:"STENCIL_BUFFER_BIT",1028:"FRONT",1029:"BACK",1032:"FRONT_AND_BACK",1280:"INVALID_ENUM",1281:"INVALID_VALUE",1282:"INVALID_OPERATION",1285:"OUT_OF_MEMORY",1286:"INVALID_FRAMEBUFFER_OPERATION",2304:"CW",2305:"CCW",2849:"LINE_WIDTH",2884:"CULL_FACE",2885:"CULL_FACE_MODE",2886:"FRONT_FACE",2928:"DEPTH_RANGE",2929:"DEPTH_TEST",2930:"DEPTH_WRITEMASK",2931:"DEPTH_CLEAR_VALUE",2932:"DEPTH_FUNC",2960:"STENCIL_TEST",2961:"STENCIL_CLEAR_VALUE",2962:"STENCIL_FUNC",2963:"STENCIL_VALUE_MASK",2964:"STENCIL_FAIL",2965:"STENCIL_PASS_DEPTH_FAIL",2966:"STENCIL_PASS_DEPTH_PASS",2967:"STENCIL_REF",2968:"STENCIL_WRITEMASK",2978:"VIEWPORT",3024:"DITHER",3042:"BLEND",3088:"SCISSOR_BOX",3089:"SCISSOR_TEST",3106:"COLOR_CLEAR_VALUE",3107:"COLOR_WRITEMASK",3317:"UNPACK_ALIGNMENT",3333:"PACK_ALIGNMENT",3379:"MAX_TEXTURE_SIZE",3386:"MAX_VIEWPORT_DIMS",3408:"SUBPIXEL_BITS",3410:"RED_BITS",3411:"GREEN_BITS",3412:"BLUE_BITS",3413:"ALPHA_BITS",3414:"DEPTH_BITS",3415:"STENCIL_BITS",3553:"TEXTURE_2D",4352:"DONT_CARE",4353:"FASTEST",4354:"NICEST",5120:"BYTE",5121:"UNSIGNED_BYTE",5122:"SHORT",5123:"UNSIGNED_SHORT",5124:"INT",5125:"UNSIGNED_INT",5126:"FLOAT",5386:"INVERT",5890:"TEXTURE",6401:"STENCIL_INDEX",6402:"DEPTH_COMPONENT",6406:"ALPHA",6407:"RGB",6408:"RGBA",6409:"LUMINANCE",6410:"LUMINANCE_ALPHA",7680:"KEEP",7681:"REPLACE",7682:"INCR",7683:"DECR",7936:"VENDOR",7937:"RENDERER",7938:"VERSION",9728:"NEAREST",9729:"LINEAR",9984:"NEAREST_MIPMAP_NEAREST",9985:"LINEAR_MIPMAP_NEAREST",9986:"NEAREST_MIPMAP_LINEAR",9987:"LINEAR_MIPMAP_LINEAR",10240:"TEXTURE_MAG_FILTER",10241:"TEXTURE_MIN_FILTER",10242:"TEXTURE_WRAP_S",10243:"TEXTURE_WRAP_T",10497:"REPEAT",10752:"POLYGON_OFFSET_UNITS",16384:"COLOR_BUFFER_BIT",32769:"CONSTANT_COLOR",32770:"ONE_MINUS_CONSTANT_COLOR",32771:"CONSTANT_ALPHA",32772:"ONE_MINUS_CONSTANT_ALPHA",32773:"BLEND_COLOR",32774:"FUNC_ADD",32777:"BLEND_EQUATION_RGB",32778:"FUNC_SUBTRACT",32779:"FUNC_REVERSE_SUBTRACT",32819:"UNSIGNED_SHORT_4_4_4_4",32820:"UNSIGNED_SHORT_5_5_5_1",32823:"POLYGON_OFFSET_FILL",32824:"POLYGON_OFFSET_FACTOR",32854:"RGBA4",32855:"RGB5_A1",32873:"TEXTURE_BINDING_2D",32926:"SAMPLE_ALPHA_TO_COVERAGE",32928:"SAMPLE_COVERAGE",32936:"SAMPLE_BUFFERS",32937:"SAMPLES",32938:"SAMPLE_COVERAGE_VALUE",32939:"SAMPLE_COVERAGE_INVERT",32968:"BLEND_DST_RGB",32969:"BLEND_SRC_RGB",32970:"BLEND_DST_ALPHA",32971:"BLEND_SRC_ALPHA",33071:"CLAMP_TO_EDGE",33170:"GENERATE_MIPMAP_HINT",33189:"DEPTH_COMPONENT16",33306:"DEPTH_STENCIL_ATTACHMENT",33635:"UNSIGNED_SHORT_5_6_5",33648:"MIRRORED_REPEAT",33901:"ALIASED_POINT_SIZE_RANGE",33902:"ALIASED_LINE_WIDTH_RANGE",33984:"TEXTURE0",33985:"TEXTURE1",33986:"TEXTURE2",33987:"TEXTURE3",33988:"TEXTURE4",33989:"TEXTURE5",33990:"TEXTURE6",33991:"TEXTURE7",33992:"TEXTURE8",33993:"TEXTURE9",33994:"TEXTURE10",33995:"TEXTURE11",33996:"TEXTURE12",33997:"TEXTURE13",33998:"TEXTURE14",33999:"TEXTURE15",34e3:"TEXTURE16",34001:"TEXTURE17",34002:"TEXTURE18",34003:"TEXTURE19",34004:"TEXTURE20",34005:"TEXTURE21",34006:"TEXTURE22",34007:"TEXTURE23",34008:"TEXTURE24",34009:"TEXTURE25",34010:"TEXTURE26",34011:"TEXTURE27",34012:"TEXTURE28",34013:"TEXTURE29",34014:"TEXTURE30",34015:"TEXTURE31",34016:"ACTIVE_TEXTURE",34024:"MAX_RENDERBUFFER_SIZE",34041:"DEPTH_STENCIL",34055:"INCR_WRAP",34056:"DECR_WRAP",34067:"TEXTURE_CUBE_MAP",34068:"TEXTURE_BINDING_CUBE_MAP",34069:"TEXTURE_CUBE_MAP_POSITIVE_X",34070:"TEXTURE_CUBE_MAP_NEGATIVE_X",34071:"TEXTURE_CUBE_MAP_POSITIVE_Y",34072:"TEXTURE_CUBE_MAP_NEGATIVE_Y",34073:"TEXTURE_CUBE_MAP_POSITIVE_Z",34074:"TEXTURE_CUBE_MAP_NEGATIVE_Z",34076:"MAX_CUBE_MAP_TEXTURE_SIZE",34338:"VERTEX_ATTRIB_ARRAY_ENABLED",34339:"VERTEX_ATTRIB_ARRAY_SIZE",34340:"VERTEX_ATTRIB_ARRAY_STRIDE",34341:"VERTEX_ATTRIB_ARRAY_TYPE",34342:"CURRENT_VERTEX_ATTRIB",34373:"VERTEX_ATTRIB_ARRAY_POINTER",34466:"NUM_COMPRESSED_TEXTURE_FORMATS",34467:"COMPRESSED_TEXTURE_FORMATS",34660:"BUFFER_SIZE",34661:"BUFFER_USAGE",34816:"STENCIL_BACK_FUNC",34817:"STENCIL_BACK_FAIL",34818:"STENCIL_BACK_PASS_DEPTH_FAIL",34819:"STENCIL_BACK_PASS_DEPTH_PASS",34877:"BLEND_EQUATION_ALPHA",34921:"MAX_VERTEX_ATTRIBS",34922:"VERTEX_ATTRIB_ARRAY_NORMALIZED",34930:"MAX_TEXTURE_IMAGE_UNITS",34962:"ARRAY_BUFFER",34963:"ELEMENT_ARRAY_BUFFER",34964:"ARRAY_BUFFER_BINDING",34965:"ELEMENT_ARRAY_BUFFER_BINDING",34975:"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING",35040:"STREAM_DRAW",35044:"STATIC_DRAW",35048:"DYNAMIC_DRAW",35632:"FRAGMENT_SHADER",35633:"VERTEX_SHADER",35660:"MAX_VERTEX_TEXTURE_IMAGE_UNITS",35661:"MAX_COMBINED_TEXTURE_IMAGE_UNITS",35663:"SHADER_TYPE",35664:"FLOAT_VEC2",35665:"FLOAT_VEC3",35666:"FLOAT_VEC4",35667:"INT_VEC2",35668:"INT_VEC3",35669:"INT_VEC4",35670:"BOOL",35671:"BOOL_VEC2",35672:"BOOL_VEC3",35673:"BOOL_VEC4",35674:"FLOAT_MAT2",35675:"FLOAT_MAT3",35676:"FLOAT_MAT4",35678:"SAMPLER_2D",35680:"SAMPLER_CUBE",35712:"DELETE_STATUS",35713:"COMPILE_STATUS",35714:"LINK_STATUS",35715:"VALIDATE_STATUS",35716:"INFO_LOG_LENGTH",35717:"ATTACHED_SHADERS",35718:"ACTIVE_UNIFORMS",35719:"ACTIVE_UNIFORM_MAX_LENGTH",35720:"SHADER_SOURCE_LENGTH",35721:"ACTIVE_ATTRIBUTES",35722:"ACTIVE_ATTRIBUTE_MAX_LENGTH",35724:"SHADING_LANGUAGE_VERSION",35725:"CURRENT_PROGRAM",36003:"STENCIL_BACK_REF",36004:"STENCIL_BACK_VALUE_MASK",36005:"STENCIL_BACK_WRITEMASK",36006:"FRAMEBUFFER_BINDING",36007:"RENDERBUFFER_BINDING",36048:"FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE",36049:"FRAMEBUFFER_ATTACHMENT_OBJECT_NAME",36050:"FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL",36051:"FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE",36053:"FRAMEBUFFER_COMPLETE",36054:"FRAMEBUFFER_INCOMPLETE_ATTACHMENT",36055:"FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT",36057:"FRAMEBUFFER_INCOMPLETE_DIMENSIONS",36061:"FRAMEBUFFER_UNSUPPORTED",36064:"COLOR_ATTACHMENT0",36096:"DEPTH_ATTACHMENT",36128:"STENCIL_ATTACHMENT",36160:"FRAMEBUFFER",36161:"RENDERBUFFER",36162:"RENDERBUFFER_WIDTH",36163:"RENDERBUFFER_HEIGHT",36164:"RENDERBUFFER_INTERNAL_FORMAT",36168:"STENCIL_INDEX8",36176:"RENDERBUFFER_RED_SIZE",36177:"RENDERBUFFER_GREEN_SIZE",36178:"RENDERBUFFER_BLUE_SIZE",36179:"RENDERBUFFER_ALPHA_SIZE",36180:"RENDERBUFFER_DEPTH_SIZE",36181:"RENDERBUFFER_STENCIL_SIZE",36194:"RGB565",36336:"LOW_FLOAT",36337:"MEDIUM_FLOAT",36338:"HIGH_FLOAT",36339:"LOW_INT",36340:"MEDIUM_INT",36341:"HIGH_INT",36346:"SHADER_COMPILER",36347:"MAX_VERTEX_UNIFORM_VECTORS",36348:"MAX_VARYING_VECTORS",36349:"MAX_FRAGMENT_UNIFORM_VECTORS",37440:"UNPACK_FLIP_Y_WEBGL",37441:"UNPACK_PREMULTIPLY_ALPHA_WEBGL",37442:"CONTEXT_LOST_WEBGL",37443:"UNPACK_COLORSPACE_CONVERSION_WEBGL",37444:"BROWSER_DEFAULT_WEBGL"}},{}],262:[function(t,e,r){var n=t("./1.0/numbers");e.exports=function(t){return n[t]}},{"./1.0/numbers":261}],263:[function(t,e,r){"use strict";e.exports=function(t){var e=t.gl,r=n(e),o=i(e,[{buffer:r,type:e.FLOAT,size:3,offset:0,stride:40},{buffer:r,type:e.FLOAT,size:4,offset:12,stride:40},{buffer:r,type:e.FLOAT,size:3,offset:28,stride:40}]),l=a(e);l.attributes.position.location=0,l.attributes.color.location=1,l.attributes.offset.location=2;var c=new s(e,r,o,l);return c.update(t),c};var n=t("gl-buffer"),i=t("gl-vao"),a=t("./shaders/index"),o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.shader=n,this.buffer=e,this.vao=r,this.pixelRatio=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lineWidth=[1,1,1],this.capSize=[10,10,10],this.lineCount=[0,0,0],this.lineOffset=[0,0,0],this.opacity=1,this.hasAlpha=!1}var l=s.prototype;function c(t,e){for(var r=0;r<3;++r)t[0][r]=Math.min(t[0][r],e[r]),t[1][r]=Math.max(t[1][r],e[r])}l.isOpaque=function(){return!this.hasAlpha},l.isTransparent=function(){return this.hasAlpha},l.drawTransparent=l.draw=function(t){var e=this.gl,r=this.shader.uniforms;this.shader.bind();var n=r.view=t.view||o,i=r.projection=t.projection||o;r.model=t.model||o,r.clipBounds=this.clipBounds,r.opacity=this.opacity;var a=n[12],s=n[13],l=n[14],c=n[15],u=(t._ortho||!1?2:1)*this.pixelRatio*(i[3]*a+i[7]*s+i[11]*l+i[15]*c)/e.drawingBufferHeight;this.vao.bind();for(var f=0;f<3;++f)e.lineWidth(this.lineWidth[f]*this.pixelRatio),r.capSize=this.capSize[f]*u,this.lineCount[f]&&e.drawArrays(e.LINES,this.lineOffset[f],this.lineCount[f]);this.vao.unbind()};var u=function(){for(var t=new Array(3),e=0;e<3;++e){for(var r=[],n=1;n<=2;++n)for(var i=-1;i<=1;i+=2){var a=[0,0,0];a[(n+e)%3]=i,r.push(a)}t[e]=r}return t}();function f(t,e,r,n){for(var i=u[n],a=0;a0)(m=u.slice())[s]+=p[1][s],i.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,m[0],m[1],m[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,m),o+=2+f(i,m,d,s)}}this.lineCount[s]=o-this.lineOffset[s]}this.buffer.update(i)}},l.dispose=function(){this.shader.dispose(),this.buffer.dispose(),this.vao.dispose()}},{"./shaders/index":264,"gl-buffer":257,"gl-vao":343}],264:[function(t,e,r){"use strict";var n=t("glslify"),i=t("gl-shader"),a=n(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position, offset;\nattribute vec4 color;\nuniform mat4 model, view, projection;\nuniform float capSize;\nvarying vec4 fragColor;\nvarying vec3 fragPosition;\n\nvoid main() {\n vec4 worldPosition = model * vec4(position, 1.0);\n worldPosition = (worldPosition / worldPosition.w) + vec4(capSize * offset, 0.0);\n gl_Position = projection * view * worldPosition;\n fragColor = color;\n fragPosition = position;\n}"]),o=n(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float opacity;\nvarying vec3 fragPosition;\nvarying vec4 fragColor;\n\nvoid main() {\n if (\n outOfRange(clipBounds[0], clipBounds[1], fragPosition) ||\n fragColor.a * opacity == 0.\n ) discard;\n\n gl_FragColor = opacity * fragColor;\n}"]);e.exports=function(t){return i(t,a,o,null,[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"offset",type:"vec3"}])}},{"gl-shader":323,glslify:424}],265:[function(t,e,r){"use strict";var n=t("gl-texture2d");e.exports=function(t,e,r,n){i||(i=t.FRAMEBUFFER_UNSUPPORTED,a=t.FRAMEBUFFER_INCOMPLETE_ATTACHMENT,o=t.FRAMEBUFFER_INCOMPLETE_DIMENSIONS,s=t.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT);var c=t.getExtension("WEBGL_draw_buffers");!l&&c&&function(t,e){var r=t.getParameter(e.MAX_COLOR_ATTACHMENTS_WEBGL);l=new Array(r+1);for(var n=0;n<=r;++n){for(var i=new Array(r),a=0;au||r<0||r>u)throw new Error("gl-fbo: Parameters are too large for FBO");var f=1;if("color"in(n=n||{})){if((f=Math.max(0|n.color,0))<0)throw new Error("gl-fbo: Must specify a nonnegative number of colors");if(f>1){if(!c)throw new Error("gl-fbo: Multiple draw buffer extension not supported");if(f>t.getParameter(c.MAX_COLOR_ATTACHMENTS_WEBGL))throw new Error("gl-fbo: Context does not support "+f+" draw buffers")}}var h=t.UNSIGNED_BYTE,p=t.getExtension("OES_texture_float");if(n.float&&f>0){if(!p)throw new Error("gl-fbo: Context does not support floating point textures");h=t.FLOAT}else n.preferFloat&&f>0&&p&&(h=t.FLOAT);var m=!0;"depth"in n&&(m=!!n.depth);var g=!1;"stencil"in n&&(g=!!n.stencil);return new d(t,e,r,h,f,m,g,c)};var i,a,o,s,l=null;function c(t){return[t.getParameter(t.FRAMEBUFFER_BINDING),t.getParameter(t.RENDERBUFFER_BINDING),t.getParameter(t.TEXTURE_BINDING_2D)]}function u(t,e){t.bindFramebuffer(t.FRAMEBUFFER,e[0]),t.bindRenderbuffer(t.RENDERBUFFER,e[1]),t.bindTexture(t.TEXTURE_2D,e[2])}function f(t){switch(t){case i:throw new Error("gl-fbo: Framebuffer unsupported");case a:throw new Error("gl-fbo: Framebuffer incomplete attachment");case o:throw new Error("gl-fbo: Framebuffer incomplete dimensions");case s:throw new Error("gl-fbo: Framebuffer incomplete missing attachment");default:throw new Error("gl-fbo: Framebuffer failed for unspecified reason")}}function h(t,e,r,i,a,o){if(!i)return null;var s=n(t,e,r,a,i);return s.magFilter=t.NEAREST,s.minFilter=t.NEAREST,s.mipSamples=1,s.bind(),t.framebufferTexture2D(t.FRAMEBUFFER,o,t.TEXTURE_2D,s.handle,0),s}function p(t,e,r,n,i){var a=t.createRenderbuffer();return t.bindRenderbuffer(t.RENDERBUFFER,a),t.renderbufferStorage(t.RENDERBUFFER,n,e,r),t.framebufferRenderbuffer(t.FRAMEBUFFER,i,t.RENDERBUFFER,a),a}function d(t,e,r,n,i,a,o,s){this.gl=t,this._shape=[0|e,0|r],this._destroyed=!1,this._ext=s,this.color=new Array(i);for(var d=0;d1&&s.drawBuffersWEBGL(l[o]);var y=r.getExtension("WEBGL_depth_texture");y?d?t.depth=h(r,i,a,y.UNSIGNED_INT_24_8_WEBGL,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):m&&(t.depth=h(r,i,a,r.UNSIGNED_SHORT,r.DEPTH_COMPONENT,r.DEPTH_ATTACHMENT)):m&&d?t._depth_rb=p(r,i,a,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):m?t._depth_rb=p(r,i,a,r.DEPTH_COMPONENT16,r.DEPTH_ATTACHMENT):d&&(t._depth_rb=p(r,i,a,r.STENCIL_INDEX,r.STENCIL_ATTACHMENT));var x=r.checkFramebufferStatus(r.FRAMEBUFFER);if(x!==r.FRAMEBUFFER_COMPLETE){t._destroyed=!0,r.bindFramebuffer(r.FRAMEBUFFER,null),r.deleteFramebuffer(t.handle),t.handle=null,t.depth&&(t.depth.dispose(),t.depth=null),t._depth_rb&&(r.deleteRenderbuffer(t._depth_rb),t._depth_rb=null);for(v=0;vi||r<0||r>i)throw new Error("gl-fbo: Can't resize FBO, invalid dimensions");t._shape[0]=e,t._shape[1]=r;for(var a=c(n),o=0;o>8*p&255;this.pickOffset=r,i.bind();var d=i.uniforms;d.viewTransform=t,d.pickOffset=e,d.shape=this.shape;var m=i.attributes;return this.positionBuffer.bind(),m.position.pointer(),this.weightBuffer.bind(),m.weight.pointer(s.UNSIGNED_BYTE,!1),this.idBuffer.bind(),m.pickId.pointer(s.UNSIGNED_BYTE,!1),s.drawArrays(s.TRIANGLES,0,o),r+this.shape[0]*this.shape[1]}}}(),f.pick=function(t,e,r){var n=this.pickOffset,i=this.shape[0]*this.shape[1];if(r=n+i)return null;var a=r-n,o=this.xData,s=this.yData;return{object:this,pointId:a,dataCoord:[o[a%this.shape[0]],s[a/this.shape[0]|0]]}},f.update=function(t){var e=(t=t||{}).shape||[0,0],r=t.x||i(e[0]),o=t.y||i(e[1]),s=t.z||new Float32Array(e[0]*e[1]),l=!1!==t.zsmooth;this.xData=r,this.yData=o;var c,u,f,p,d=t.colorLevels||[0],m=t.colorValues||[0,0,0,1],g=d.length,v=this.bounds;l?(c=v[0]=r[0],u=v[1]=o[0],f=v[2]=r[r.length-1],p=v[3]=o[o.length-1]):(c=v[0]=r[0]+(r[1]-r[0])/2,u=v[1]=o[0]+(o[1]-o[0])/2,f=v[2]=r[r.length-1]+(r[r.length-1]-r[r.length-2])/2,p=v[3]=o[o.length-1]+(o[o.length-1]-o[o.length-2])/2);var y=1/(f-c),x=1/(p-u),b=e[0],_=e[1];this.shape=[b,_];var w=(l?(b-1)*(_-1):b*_)*(h.length>>>1);this.numVertices=w;for(var T=a.mallocUint8(4*w),k=a.mallocFloat32(2*w),A=a.mallocUint8(2*w),M=a.mallocUint32(w),S=0,E=l?b-1:b,L=l?_-1:_,C=0;C max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform sampler2D dashTexture;\nuniform float dashScale;\nuniform float opacity;\n\nvarying vec3 worldPosition;\nvarying float pixelArcLength;\nvarying vec4 fragColor;\n\nvoid main() {\n if (\n outOfRange(clipBounds[0], clipBounds[1], worldPosition) ||\n fragColor.a * opacity == 0.\n ) discard;\n\n float dashWeight = texture2D(dashTexture, vec2(dashScale * pixelArcLength, 0)).r;\n if(dashWeight < 0.5) {\n discard;\n }\n gl_FragColor = fragColor * opacity;\n}\n"]),s=n(["precision highp float;\n#define GLSLIFY 1\n\n#define FLOAT_MAX 1.70141184e38\n#define FLOAT_MIN 1.17549435e-38\n\n// https://github.com/mikolalysenko/glsl-read-float/blob/master/index.glsl\nvec4 packFloat(float v) {\n float av = abs(v);\n\n //Handle special cases\n if(av < FLOAT_MIN) {\n return vec4(0.0, 0.0, 0.0, 0.0);\n } else if(v > FLOAT_MAX) {\n return vec4(127.0, 128.0, 0.0, 0.0) / 255.0;\n } else if(v < -FLOAT_MAX) {\n return vec4(255.0, 128.0, 0.0, 0.0) / 255.0;\n }\n\n vec4 c = vec4(0,0,0,0);\n\n //Compute exponent and mantissa\n float e = floor(log2(av));\n float m = av * pow(2.0, -e) - 1.0;\n\n //Unpack mantissa\n c[1] = floor(128.0 * m);\n m -= c[1] / 128.0;\n c[2] = floor(32768.0 * m);\n m -= c[2] / 32768.0;\n c[3] = floor(8388608.0 * m);\n\n //Unpack exponent\n float ebias = e + 127.0;\n c[0] = floor(ebias / 2.0);\n ebias -= c[0] * 2.0;\n c[1] += floor(ebias) * 128.0;\n\n //Unpack sign bit\n c[0] += 128.0 * step(0.0, -v);\n\n //Scale back to range\n return c / 255.0;\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform float pickId;\nuniform vec3 clipBounds[2];\n\nvarying vec3 worldPosition;\nvarying float pixelArcLength;\nvarying vec4 fragColor;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], worldPosition)) discard;\n\n gl_FragColor = vec4(pickId/255.0, packFloat(pixelArcLength).xyz);\n}"]),l=[{name:"position",type:"vec3"},{name:"nextPosition",type:"vec3"},{name:"arcLength",type:"float"},{name:"lineWidth",type:"float"},{name:"color",type:"vec4"}];r.createShader=function(t){return i(t,a,o,null,l)},r.createPickShader=function(t){return i(t,a,s,null,l)}},{"gl-shader":323,glslify:424}],270:[function(t,e,r){"use strict";e.exports=function(t){var e=t.gl||t.scene&&t.scene.gl,r=f(e);r.attributes.position.location=0,r.attributes.nextPosition.location=1,r.attributes.arcLength.location=2,r.attributes.lineWidth.location=3,r.attributes.color.location=4;var o=h(e);o.attributes.position.location=0,o.attributes.nextPosition.location=1,o.attributes.arcLength.location=2,o.attributes.lineWidth.location=3,o.attributes.color.location=4;for(var s=n(e),l=i(e,[{buffer:s,size:3,offset:0,stride:48},{buffer:s,size:3,offset:12,stride:48},{buffer:s,size:1,offset:24,stride:48},{buffer:s,size:1,offset:28,stride:48},{buffer:s,size:4,offset:32,stride:48}]),u=c(new Array(1024),[256,1,4]),p=0;p<1024;++p)u.data[p]=255;var d=a(e,u);d.wrap=e.REPEAT;var m=new v(e,r,o,s,l,d);return m.update(t),m};var n=t("gl-buffer"),i=t("gl-vao"),a=t("gl-texture2d"),o=new Uint8Array(4),s=new Float32Array(o.buffer);var l=t("binary-search-bounds"),c=t("ndarray"),u=t("./lib/shaders"),f=u.createShader,h=u.createPickShader,p=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function d(t,e){for(var r=0,n=0;n<3;++n){var i=t[n]-e[n];r+=i*i}return Math.sqrt(r)}function m(t){for(var e=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],r=0;r<3;++r)e[0][r]=Math.max(t[0][r],e[0][r]),e[1][r]=Math.min(t[1][r],e[1][r]);return e}function g(t,e,r,n){this.arcLength=t,this.position=e,this.index=r,this.dataCoordinate=n}function v(t,e,r,n,i,a){this.gl=t,this.shader=e,this.pickShader=r,this.buffer=n,this.vao=i,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.points=[],this.arcLength=[],this.vertexCount=0,this.bounds=[[0,0,0],[0,0,0]],this.pickId=0,this.lineWidth=1,this.texture=a,this.dashScale=1,this.opacity=1,this.hasAlpha=!1,this.dirty=!0,this.pixelRatio=1}var y=v.prototype;y.isTransparent=function(){return this.hasAlpha},y.isOpaque=function(){return!this.hasAlpha},y.pickSlots=1,y.setPickBase=function(t){this.pickId=t},y.drawTransparent=y.draw=function(t){if(this.vertexCount){var e=this.gl,r=this.shader,n=this.vao;r.bind(),r.uniforms={model:t.model||p,view:t.view||p,projection:t.projection||p,clipBounds:m(this.clipBounds),dashTexture:this.texture.bind(),dashScale:this.dashScale/this.arcLength[this.arcLength.length-1],opacity:this.opacity,screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},y.drawPick=function(t){if(this.vertexCount){var e=this.gl,r=this.pickShader,n=this.vao;r.bind(),r.uniforms={model:t.model||p,view:t.view||p,projection:t.projection||p,pickId:this.pickId,clipBounds:m(this.clipBounds),screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},y.update=function(t){var e,r;this.dirty=!0;var n=!!t.connectGaps;"dashScale"in t&&(this.dashScale=t.dashScale),this.hasAlpha=!1,"opacity"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var i=[],a=[],o=[],s=0,u=0,f=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],h=t.position||t.positions;if(h){var p=t.color||t.colors||[0,0,0,1],m=t.lineWidth||1,g=!1;t:for(e=1;e0){for(var w=0;w<24;++w)i.push(i[i.length-12]);u+=2,g=!0}continue t}f[0][r]=Math.min(f[0][r],b[r],_[r]),f[1][r]=Math.max(f[1][r],b[r],_[r])}Array.isArray(p[0])?(v=p.length>e-1?p[e-1]:p.length>0?p[p.length-1]:[0,0,0,1],y=p.length>e?p[e]:p.length>0?p[p.length-1]:[0,0,0,1]):v=y=p,3===v.length&&(v=[v[0],v[1],v[2],1]),3===y.length&&(y=[y[0],y[1],y[2],1]),!this.hasAlpha&&v[3]<1&&(this.hasAlpha=!0),x=Array.isArray(m)?m.length>e-1?m[e-1]:m.length>0?m[m.length-1]:[0,0,0,1]:m;var T=s;if(s+=d(b,_),g){for(r=0;r<2;++r)i.push(b[0],b[1],b[2],_[0],_[1],_[2],T,x,v[0],v[1],v[2],v[3]);u+=2,g=!1}i.push(b[0],b[1],b[2],_[0],_[1],_[2],T,x,v[0],v[1],v[2],v[3],b[0],b[1],b[2],_[0],_[1],_[2],T,-x,v[0],v[1],v[2],v[3],_[0],_[1],_[2],b[0],b[1],b[2],s,-x,y[0],y[1],y[2],y[3],_[0],_[1],_[2],b[0],b[1],b[2],s,x,y[0],y[1],y[2],y[3]),u+=4}}if(this.buffer.update(i),a.push(s),o.push(h[h.length-1].slice()),this.bounds=f,this.vertexCount=u,this.points=o,this.arcLength=a,"dashes"in t){var k=t.dashes.slice();for(k.unshift(0),e=1;e1.0001)return null;v+=g[f]}if(Math.abs(v-1)>.001)return null;return[h,s(t,g),g]}},{barycentric:81,"polytope-closest-point/lib/closest_point_2d.js":488}],302:[function(t,e,r){var n=t("glslify"),i=n(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position, normal;\nattribute vec4 color;\nattribute vec2 uv;\n\nuniform mat4 model\n , view\n , projection\n , inverseModel;\nuniform vec3 eyePosition\n , lightPosition;\n\nvarying vec3 f_normal\n , f_lightDirection\n , f_eyeDirection\n , f_data;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvec4 project(vec3 p) {\n return projection * view * model * vec4(p, 1.0);\n}\n\nvoid main() {\n gl_Position = project(position);\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * vec4(position , 1.0);\n cameraCoordinate.xyz /= cameraCoordinate.w;\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\n\n f_color = color;\n f_data = position;\n f_uv = uv;\n}\n"]),a=n(["#extension GL_OES_standard_derivatives : enable\n\nprecision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat cookTorranceSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness,\n float fresnel) {\n\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\n\n //Half angle vector\n vec3 H = normalize(lightDirection + viewDirection);\n\n //Geometric term\n float NdotH = max(dot(surfaceNormal, H), 0.0);\n float VdotH = max(dot(viewDirection, H), 0.000001);\n float LdotH = max(dot(lightDirection, H), 0.000001);\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\n float G = min(1.0, min(G1, G2));\n \n //Distribution term\n float D = beckmannDistribution(NdotH, roughness);\n\n //Fresnel term\n float F = pow(1.0 - VdotN, fresnel);\n\n //Multiply terms and done\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\n}\n\n//#pragma glslify: beckmann = require(glsl-specular-beckmann) // used in gl-surface3d\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float roughness\n , fresnel\n , kambient\n , kdiffuse\n , kspecular;\nuniform sampler2D texture;\n\nvarying vec3 f_normal\n , f_lightDirection\n , f_eyeDirection\n , f_data;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (f_color.a == 0.0 ||\n outOfRange(clipBounds[0], clipBounds[1], f_data)\n ) discard;\n\n vec3 N = normalize(f_normal);\n vec3 L = normalize(f_lightDirection);\n vec3 V = normalize(f_eyeDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\n //float specular = max(0.0, beckmann(L, V, N, roughness)); // used in gl-surface3d\n\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n vec4 surfaceColor = vec4(f_color.rgb, 1.0) * texture2D(texture, f_uv);\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = litColor * f_color.a;\n}\n"]),o=n(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 uv;\n\nuniform mat4 model, view, projection;\n\nvarying vec4 f_color;\nvarying vec3 f_data;\nvarying vec2 f_uv;\n\nvoid main() {\n gl_Position = projection * view * model * vec4(position, 1.0);\n f_color = color;\n f_data = position;\n f_uv = uv;\n}"]),s=n(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform sampler2D texture;\nuniform float opacity;\n\nvarying vec4 f_color;\nvarying vec3 f_data;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_data)) discard;\n\n gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\n}"]),l=n(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 uv;\nattribute float pointSize;\n\nuniform mat4 model, view, projection;\nuniform vec3 clipBounds[2];\n\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0.0, 0.0 ,0.0 ,0.0);\n } else {\n gl_Position = projection * view * model * vec4(position, 1.0);\n }\n gl_PointSize = pointSize;\n f_color = color;\n f_uv = uv;\n}"]),c=n(["precision highp float;\n#define GLSLIFY 1\n\nuniform sampler2D texture;\nuniform float opacity;\n\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n vec2 pointR = gl_PointCoord.xy - vec2(0.5, 0.5);\n if(dot(pointR, pointR) > 0.25) {\n discard;\n }\n gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\n}"]),u=n(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n gl_Position = projection * view * model * vec4(position, 1.0);\n f_id = id;\n f_position = position;\n}"]),f=n(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n\n gl_FragColor = vec4(pickId, f_id.xyz);\n}"]),h=n(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute float pointSize;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform vec3 clipBounds[2];\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0.0, 0.0, 0.0, 0.0);\n } else {\n gl_Position = projection * view * model * vec4(position, 1.0);\n gl_PointSize = pointSize;\n }\n f_id = id;\n f_position = position;\n}"]),p=n(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\n\nuniform mat4 model, view, projection;\n\nvoid main() {\n gl_Position = projection * view * model * vec4(position, 1.0);\n}"]),d=n(["precision highp float;\n#define GLSLIFY 1\n\nuniform vec3 contourColor;\n\nvoid main() {\n gl_FragColor = vec4(contourColor, 1.0);\n}\n"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:"position",type:"vec3"},{name:"normal",type:"vec3"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"}]},r.wireShader={vertex:o,fragment:s,attributes:[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"}]},r.pointShader={vertex:l,fragment:c,attributes:[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"},{name:"pointSize",type:"float"}]},r.pickShader={vertex:u,fragment:f,attributes:[{name:"position",type:"vec3"},{name:"id",type:"vec4"}]},r.pointPickShader={vertex:h,fragment:f,attributes:[{name:"position",type:"vec3"},{name:"pointSize",type:"float"},{name:"id",type:"vec4"}]},r.contourShader={vertex:p,fragment:d,attributes:[{name:"position",type:"vec3"}]}},{glslify:424}],303:[function(t,e,r){"use strict";var n=t("gl-shader"),i=t("gl-buffer"),a=t("gl-vao"),o=t("gl-texture2d"),s=t("normals"),l=t("gl-mat4/multiply"),c=t("gl-mat4/invert"),u=t("ndarray"),f=t("colormap"),h=t("simplicial-complex-contour"),p=t("typedarray-pool"),d=t("./lib/shaders"),m=t("./lib/closest-point"),g=d.meshShader,v=d.wireShader,y=d.pointShader,x=d.pickShader,b=d.pointPickShader,_=d.contourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function T(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g,v,y,x,b,_,T,k,A,M,S){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.lineShader=n,this.pointShader=i,this.pickShader=a,this.pointPickShader=o,this.contourShader=s,this.trianglePositions=l,this.triangleColors=u,this.triangleNormals=h,this.triangleUVs=f,this.triangleIds=c,this.triangleVAO=p,this.triangleCount=0,this.lineWidth=1,this.edgePositions=d,this.edgeColors=g,this.edgeUVs=v,this.edgeIds=m,this.edgeVAO=y,this.edgeCount=0,this.pointPositions=x,this.pointColors=_,this.pointUVs=T,this.pointSizes=k,this.pointIds=b,this.pointVAO=A,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=M,this.contourVAO=S,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickVertex=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.hasAlpha=!1,this.opacityscale=!1,this._model=w,this._view=w,this._projection=w,this._resolution=[1,1]}var k=T.prototype;function A(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;rt&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}function M(t){var e=n(t,g.vertex,g.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.normal.location=4,e}function S(t){var e=n(t,v.vertex,v.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e}function E(t){var e=n(t,y.vertex,y.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.pointSize.location=4,e}function L(t){var e=n(t,x.vertex,x.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e}function C(t){var e=n(t,b.vertex,b.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.pointSize.location=4,e}function P(t){var e=n(t,_.vertex,_.fragment);return e.attributes.position.location=0,e}k.isOpaque=function(){return!this.hasAlpha},k.isTransparent=function(){return this.hasAlpha},k.pickSlots=1,k.setPickBase=function(t){this.pickId=t},k.highlight=function(t){if(t&&this.contourEnable){for(var e=h(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,i=e.vertexWeights,a=r.length,o=p.mallocFloat32(6*a),s=0,l=0;l0&&((f=this.triShader).bind(),f.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind());this.edgeCount>0&&this.lineWidth>0&&((f=this.lineShader).bind(),f.uniforms=s,this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind());this.pointCount>0&&((f=this.pointShader).bind(),f.uniforms=s,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind());this.contourEnable&&this.contourCount>0&&this.contourLineWidth>0&&((f=this.contourShader).bind(),f.uniforms=s,this.contourVAO.bind(),e.drawArrays(e.LINES,0,this.contourCount),this.contourVAO.unbind())},k.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,i=t.projection||w,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(i),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s,l={model:r,view:n,projection:i,clipBounds:a,pickId:this.pickId/255};((s=this.pickShader).bind(),s.uniforms=l,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0)&&((s=this.pointPickShader).bind(),s.uniforms=l,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind())},k.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;for(var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions,i=new Array(r.length),a=0;ai[k]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=g[t],r.uniforms.angle=v[t],a.drawArrays(a.TRIANGLES,i[k],i[A]-i[k]))),y[t]&&T&&(u[1^t]-=M*p*x[t],r.uniforms.dataAxis=f,r.uniforms.screenOffset=u,r.uniforms.color=b[t],r.uniforms.angle=_[t],a.drawArrays(a.TRIANGLES,w,T)),u[1^t]=M*s[2+(1^t)]-1,d[t+2]&&(u[1^t]+=M*p*m[t+2],ki[k]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=g[t+2],r.uniforms.angle=v[t+2],a.drawArrays(a.TRIANGLES,i[k],i[A]-i[k]))),y[t+2]&&T&&(u[1^t]+=M*p*x[t+2],r.uniforms.dataAxis=f,r.uniforms.screenOffset=u,r.uniforms.color=b[t+2],r.uniforms.angle=_[t+2],a.drawArrays(a.TRIANGLES,w,T))}),m.drawTitle=function(){var t=[0,0],e=[0,0];return function(){var r=this.plot,n=this.shader,i=r.gl,a=r.screenBox,o=r.titleCenter,s=r.titleAngle,l=r.titleColor,c=r.pixelRatio;if(this.titleCount){for(var u=0;u<2;++u)e[u]=2*(o[u]*c-a[u])/(a[2+u]-a[u])-1;n.bind(),n.uniforms.dataAxis=t,n.uniforms.screenOffset=e,n.uniforms.angle=s,n.uniforms.color=l,i.drawArrays(i.TRIANGLES,this.titleOffset,this.titleCount)}}}(),m.bind=(h=[0,0],p=[0,0],d=[0,0],function(){var t=this.plot,e=this.shader,r=t._tickBounds,n=t.dataBox,i=t.screenBox,a=t.viewBox;e.bind();for(var o=0;o<2;++o){var s=r[o],l=r[o+2]-s,c=.5*(n[o+2]+n[o]),u=n[o+2]-n[o],f=a[o],m=a[o+2]-f,g=i[o],v=i[o+2]-g;p[o]=2*l/u*m/v,h[o]=2*(s-c)/u*m/v}d[1]=2*t.pixelRatio/(i[3]-i[1]),d[0]=d[1]*(i[3]-i[1])/(i[2]-i[0]),e.uniforms.dataScale=p,e.uniforms.dataShift=h,e.uniforms.textScale=d,this.vbo.bind(),e.attributes.textCoordinate.pointer()}),m.update=function(t){var e,r,n,i,o,s=[],l=t.ticks,c=t.bounds;for(o=0;o<2;++o){var u=[Math.floor(s.length/3)],f=[-1/0],h=l[o];for(e=0;e=0){var m=e[d]-n[d]*(e[d+2]-e[d])/(n[d+2]-n[d]);0===d?o.drawLine(m,e[1],m,e[3],p[d],h[d]):o.drawLine(e[0],m,e[2],m,p[d],h[d])}}for(d=0;d=0;--t)this.objects[t].dispose();this.objects.length=0;for(t=this.overlays.length-1;t>=0;--t)this.overlays[t].dispose();this.overlays.length=0,this.gl=null},c.addObject=function(t){this.objects.indexOf(t)<0&&(this.objects.push(t),this.setDirty())},c.removeObject=function(t){for(var e=this.objects,r=0;rMath.abs(e))c.rotate(a,0,0,-t*r*Math.PI*d.rotateSpeed/window.innerWidth);else if(!d._ortho){var o=-d.zoomSpeed*i*e/window.innerHeight*(a-c.lastT())/20;c.pan(a,0,0,f*(Math.exp(o)-1))}}}),!0)},d.enableMouseListeners(),d};var n=t("right-now"),i=t("3d-view"),a=t("mouse-change"),o=t("mouse-wheel"),s=t("mouse-event-offset"),l=t("has-passive-events")},{"3d-view":55,"has-passive-events":426,"mouse-change":449,"mouse-event-offset":450,"mouse-wheel":452,"right-now":518}],311:[function(t,e,r){var n=t("glslify"),i=t("gl-shader"),a=n(["precision mediump float;\n#define GLSLIFY 1\nattribute vec2 position;\nvarying vec2 uv;\nvoid main() {\n uv = position;\n gl_Position = vec4(position, 0, 1);\n}"]),o=n(["precision mediump float;\n#define GLSLIFY 1\n\nuniform sampler2D accumBuffer;\nvarying vec2 uv;\n\nvoid main() {\n vec4 accum = texture2D(accumBuffer, 0.5 * (uv + 1.0));\n gl_FragColor = min(vec4(1,1,1,1), accum);\n}"]);e.exports=function(t){return i(t,a,o,null,[{name:"position",type:"vec2"}])}},{"gl-shader":323,glslify:424}],312:[function(t,e,r){"use strict";var n=t("./camera.js"),i=t("gl-axes3d"),a=t("gl-axes3d/properties"),o=t("gl-spikes3d"),s=t("gl-select-static"),l=t("gl-fbo"),c=t("a-big-triangle"),u=t("mouse-change"),f=t("gl-mat4/perspective"),h=t("gl-mat4/ortho"),p=t("./lib/shader"),d=t("is-mobile")({tablet:!0,featureDetect:!0});function m(){this.mouse=[-1,-1],this.screen=null,this.distance=1/0,this.index=null,this.dataCoordinate=null,this.dataPosition=null,this.object=null,this.data=null}function g(t){var e=Math.round(Math.log(Math.abs(t))/Math.log(10));if(e<0){var r=Math.round(Math.pow(10,-e));return Math.ceil(t*r)/r}if(e>0){r=Math.round(Math.pow(10,e));return Math.ceil(t/r)*r}return Math.ceil(t)}function v(t){return"boolean"!=typeof t||t}e.exports={createScene:function(t){(t=t||{}).camera=t.camera||{};var e=t.canvas;if(!e){if(e=document.createElement("canvas"),t.container)t.container.appendChild(e);else document.body.appendChild(e)}var r=t.gl;r||(t.glOptions&&(d=!!t.glOptions.preserveDrawingBuffer),r=function(t,e){var r=null;try{(r=t.getContext("webgl",e))||(r=t.getContext("experimental-webgl",e))}catch(t){return null}return r}(e,t.glOptions||{premultipliedAlpha:!0,antialias:!0,preserveDrawingBuffer:d}));if(!r)throw new Error("webgl not supported");var y=t.bounds||[[-10,-10,-10],[10,10,10]],x=new m,b=l(r,r.drawingBufferWidth,r.drawingBufferHeight,{preferFloat:!d}),_=p(r),w=t.cameraObject&&!0===t.cameraObject._ortho||t.camera.projection&&"orthographic"===t.camera.projection.type||!1,T={eye:t.camera.eye||[2,0,0],center:t.camera.center||[0,0,0],up:t.camera.up||[0,1,0],zoomMin:t.camera.zoomMax||.1,zoomMax:t.camera.zoomMin||100,mode:t.camera.mode||"turntable",_ortho:w},k=t.axes||{},A=i(r,k);A.enable=!k.disable;var M=t.spikes||{},S=o(r,M),E=[],L=[],C=[],P=[],I=!0,O=!0,z=new Array(16),D=new Array(16),R={view:null,projection:z,model:D,_ortho:!1},F=(O=!0,[r.drawingBufferWidth,r.drawingBufferHeight]),B=t.cameraObject||n(e,T),N={gl:r,contextLost:!1,pixelRatio:t.pixelRatio||1,canvas:e,selection:x,camera:B,axes:A,axesPixels:null,spikes:S,bounds:y,objects:E,shape:F,aspect:t.aspectRatio||[1,1,1],pickRadius:t.pickRadius||10,zNear:t.zNear||.01,zFar:t.zFar||1e3,fovy:t.fovy||Math.PI/4,clearColor:t.clearColor||[0,0,0,0],autoResize:v(t.autoResize),autoBounds:v(t.autoBounds),autoScale:!!t.autoScale,autoCenter:v(t.autoCenter),clipToBounds:v(t.clipToBounds),snapToData:!!t.snapToData,onselect:t.onselect||null,onrender:t.onrender||null,onclick:t.onclick||null,cameraParams:R,oncontextloss:null,mouseListener:null,_stopped:!1,getAspectratio:function(){return{x:this.aspect[0],y:this.aspect[1],z:this.aspect[2]}},setAspectratio:function(t){this.aspect[0]=t.x,this.aspect[1]=t.y,this.aspect[2]=t.z,O=!0},setBounds:function(t,e){this.bounds[0][t]=e.min,this.bounds[1][t]=e.max},setClearColor:function(t){this.clearColor=t},clearRGBA:function(){this.gl.clearColor(this.clearColor[0],this.clearColor[1],this.clearColor[2],this.clearColor[3]),this.gl.clear(this.gl.COLOR_BUFFER_BIT|this.gl.DEPTH_BUFFER_BIT)}},j=[r.drawingBufferWidth/N.pixelRatio|0,r.drawingBufferHeight/N.pixelRatio|0];function U(){if(!N._stopped&&N.autoResize){var t=e.parentNode,r=1,n=1;t&&t!==document.body?(r=t.clientWidth,n=t.clientHeight):(r=window.innerWidth,n=window.innerHeight);var i=0|Math.ceil(r*N.pixelRatio),a=0|Math.ceil(n*N.pixelRatio);if(i!==e.width||a!==e.height){e.width=i,e.height=a;var o=e.style;o.position=o.position||"absolute",o.left="0px",o.top="0px",o.width=r+"px",o.height=n+"px",I=!0}}}N.autoResize&&U();function V(){for(var t=E.length,e=P.length,n=0;n0&&0===C[e-1];)C.pop(),P.pop().dispose()}function H(){if(N.contextLost)return!0;r.isContextLost()&&(N.contextLost=!0,N.mouseListener.enabled=!1,N.selection.object=null,N.oncontextloss&&N.oncontextloss())}window.addEventListener("resize",U),N.update=function(t){N._stopped||(t=t||{},I=!0,O=!0)},N.add=function(t){N._stopped||(t.axes=A,E.push(t),L.push(-1),I=!0,O=!0,V())},N.remove=function(t){if(!N._stopped){var e=E.indexOf(t);e<0||(E.splice(e,1),L.pop(),I=!0,O=!0,V())}},N.dispose=function(){if(!N._stopped&&(N._stopped=!0,window.removeEventListener("resize",U),e.removeEventListener("webglcontextlost",H),N.mouseListener.enabled=!1,!N.contextLost)){A.dispose(),S.dispose();for(var t=0;tx.distance)continue;for(var c=0;c 1.0) {\n discard;\n }\n baseColor = mix(borderColor, color, step(radius, centerFraction));\n gl_FragColor = vec4(baseColor.rgb * baseColor.a, baseColor.a);\n }\n}\n"]),r.pickVertex=n(["precision mediump float;\n#define GLSLIFY 1\n\nattribute vec2 position;\nattribute vec4 pickId;\n\nuniform mat3 matrix;\nuniform float pointSize;\nuniform vec4 pickOffset;\n\nvarying vec4 fragId;\n\nvoid main() {\n vec3 hgPosition = matrix * vec3(position, 1);\n gl_Position = vec4(hgPosition.xy, 0, hgPosition.z);\n gl_PointSize = pointSize;\n\n vec4 id = pickId + pickOffset;\n id.y += floor(id.x / 256.0);\n id.x -= floor(id.x / 256.0) * 256.0;\n\n id.z += floor(id.y / 256.0);\n id.y -= floor(id.y / 256.0) * 256.0;\n\n id.w += floor(id.z / 256.0);\n id.z -= floor(id.z / 256.0) * 256.0;\n\n fragId = id;\n}\n"]),r.pickFragment=n(["precision mediump float;\n#define GLSLIFY 1\n\nvarying vec4 fragId;\n\nvoid main() {\n float radius = length(2.0 * gl_PointCoord.xy - 1.0);\n if(radius > 1.0) {\n discard;\n }\n gl_FragColor = fragId / 255.0;\n}\n"])},{glslify:424}],314:[function(t,e,r){"use strict";var n=t("gl-shader"),i=t("gl-buffer"),a=t("typedarray-pool"),o=t("./lib/shader");function s(t,e,r,n,i){this.plot=t,this.offsetBuffer=e,this.pickBuffer=r,this.shader=n,this.pickShader=i,this.sizeMin=.5,this.sizeMinCap=2,this.sizeMax=20,this.areaRatio=1,this.pointCount=0,this.color=[1,0,0,1],this.borderColor=[0,0,0,1],this.blend=!1,this.pickOffset=0,this.points=null}e.exports=function(t,e){var r=t.gl,a=i(r),l=i(r),c=n(r,o.pointVertex,o.pointFragment),u=n(r,o.pickVertex,o.pickFragment),f=new s(t,a,l,c,u);return f.update(e),t.addObject(f),f};var l,c,u=s.prototype;u.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.offsetBuffer.dispose(),this.pickBuffer.dispose(),this.plot.removeObject(this)},u.update=function(t){var e;function r(e,r){return e in t?t[e]:r}t=t||{},this.sizeMin=r("sizeMin",.5),this.sizeMax=r("sizeMax",20),this.color=r("color",[1,0,0,1]).slice(),this.areaRatio=r("areaRatio",1),this.borderColor=r("borderColor",[0,0,0,1]).slice(),this.blend=r("blend",!1);var n=t.positions.length>>>1,i=t.positions instanceof Float32Array,o=t.idToIndex instanceof Int32Array&&t.idToIndex.length>=n,s=t.positions,l=i?s:a.mallocFloat32(s.length),c=o?t.idToIndex:a.mallocInt32(n);if(i||l.set(s),!o)for(l.set(s),e=0;e>>1;for(r=0;r=e[0]&&a<=e[2]&&o>=e[1]&&o<=e[3]&&n++}return n}(this.points,i),u=this.plot.pickPixelRatio*Math.max(Math.min(this.sizeMinCap,this.sizeMin),Math.min(this.sizeMax,this.sizeMax/Math.pow(s,.33333)));l[0]=2/a,l[4]=2/o,l[6]=-2*i[0]/a-1,l[7]=-2*i[1]/o-1,this.offsetBuffer.bind(),r.bind(),r.attributes.position.pointer(),r.uniforms.matrix=l,r.uniforms.color=this.color,r.uniforms.borderColor=this.borderColor,r.uniforms.pointCloud=u<5,r.uniforms.pointSize=u,r.uniforms.centerFraction=Math.min(1,Math.max(0,Math.sqrt(1-this.areaRatio))),e&&(c[0]=255&t,c[1]=t>>8&255,c[2]=t>>16&255,c[3]=t>>24&255,this.pickBuffer.bind(),r.attributes.pickId.pointer(n.UNSIGNED_BYTE),r.uniforms.pickOffset=c,this.pickOffset=t);var f=n.getParameter(n.BLEND),h=n.getParameter(n.DITHER);return f&&!this.blend&&n.disable(n.BLEND),h&&n.disable(n.DITHER),n.drawArrays(n.POINTS,0,this.pointCount),f&&!this.blend&&n.enable(n.BLEND),h&&n.enable(n.DITHER),t+this.pointCount}),u.draw=u.unifiedDraw,u.drawPick=u.unifiedDraw,u.pick=function(t,e,r){var n=this.pickOffset,i=this.pointCount;if(r=n+i)return null;var a=r-n,o=this.points;return{object:this,pointId:a,dataCoord:[o[2*a],o[2*a+1]]}}},{"./lib/shader":313,"gl-buffer":257,"gl-shader":323,"typedarray-pool":590}],315:[function(t,e,r){e.exports=function(t,e,r,n){var i,a,o,s,l,c=e[0],u=e[1],f=e[2],h=e[3],p=r[0],d=r[1],m=r[2],g=r[3];(a=c*p+u*d+f*m+h*g)<0&&(a=-a,p=-p,d=-d,m=-m,g=-g);1-a>1e-6?(i=Math.acos(a),o=Math.sin(i),s=Math.sin((1-n)*i)/o,l=Math.sin(n*i)/o):(s=1-n,l=n);return t[0]=s*c+l*p,t[1]=s*u+l*d,t[2]=s*f+l*m,t[3]=s*h+l*g,t}},{}],316:[function(t,e,r){"use strict";e.exports=function(t){return t||0===t?t.toString():""}},{}],317:[function(t,e,r){"use strict";var n=t("vectorize-text");e.exports=function(t,e,r){var a=i[e];a||(a=i[e]={});if(t in a)return a[t];var o={textAlign:"center",textBaseline:"middle",lineHeight:1,font:e,lineSpacing:1.25,styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},triangles:!0},s=n(t,o);o.triangles=!1;var l,c,u=n(t,o);if(r&&1!==r){for(l=0;l max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 glyph;\nattribute vec4 id;\n\nuniform vec4 highlightId;\nuniform float highlightScale;\nuniform mat4 model, view, projection;\nuniform vec3 clipBounds[2];\n\nvarying vec4 interpColor;\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0,0,0,0);\n } else {\n float scale = 1.0;\n if(distance(highlightId, id) < 0.0001) {\n scale = highlightScale;\n }\n\n vec4 worldPosition = model * vec4(position, 1);\n vec4 viewPosition = view * worldPosition;\n viewPosition = viewPosition / viewPosition.w;\n vec4 clipPosition = projection * (viewPosition + scale * vec4(glyph.x, -glyph.y, 0, 0));\n\n gl_Position = clipPosition;\n interpColor = color;\n pickId = id;\n dataCoordinate = position;\n }\n}"]),o=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 glyph;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform vec2 screenSize;\nuniform vec3 clipBounds[2];\nuniform float highlightScale, pixelRatio;\nuniform vec4 highlightId;\n\nvarying vec4 interpColor;\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0,0,0,0);\n } else {\n float scale = pixelRatio;\n if(distance(highlightId.bgr, id.bgr) < 0.001) {\n scale *= highlightScale;\n }\n\n vec4 worldPosition = model * vec4(position, 1.0);\n vec4 viewPosition = view * worldPosition;\n vec4 clipPosition = projection * viewPosition;\n clipPosition /= clipPosition.w;\n\n gl_Position = clipPosition + vec4(screenSize * scale * vec2(glyph.x, -glyph.y), 0.0, 0.0);\n interpColor = color;\n pickId = id;\n dataCoordinate = position;\n }\n}"]),s=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 glyph;\nattribute vec4 id;\n\nuniform float highlightScale;\nuniform vec4 highlightId;\nuniform vec3 axes[2];\nuniform mat4 model, view, projection;\nuniform vec2 screenSize;\nuniform vec3 clipBounds[2];\nuniform float scale, pixelRatio;\n\nvarying vec4 interpColor;\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0,0,0,0);\n } else {\n float lscale = pixelRatio * scale;\n if(distance(highlightId, id) < 0.0001) {\n lscale *= highlightScale;\n }\n\n vec4 clipCenter = projection * view * model * vec4(position, 1);\n vec3 dataPosition = position + 0.5*lscale*(axes[0] * glyph.x + axes[1] * glyph.y) * clipCenter.w * screenSize.y;\n vec4 clipPosition = projection * view * model * vec4(dataPosition, 1);\n\n gl_Position = clipPosition;\n interpColor = color;\n pickId = id;\n dataCoordinate = dataPosition;\n }\n}\n"]),l=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 fragClipBounds[2];\nuniform float opacity;\n\nvarying vec4 interpColor;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (\n outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate) ||\n interpColor.a * opacity == 0.\n ) discard;\n gl_FragColor = interpColor * opacity;\n}\n"]),c=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 fragClipBounds[2];\nuniform float pickGroup;\n\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate)) discard;\n\n gl_FragColor = vec4(pickGroup, pickId.bgr);\n}"]),u=[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"glyph",type:"vec2"},{name:"id",type:"vec4"}],f={vertex:a,fragment:l,attributes:u},h={vertex:o,fragment:l,attributes:u},p={vertex:s,fragment:l,attributes:u},d={vertex:a,fragment:c,attributes:u},m={vertex:o,fragment:c,attributes:u},g={vertex:s,fragment:c,attributes:u};function v(t,e){var r=n(t,e),i=r.attributes;return i.position.location=0,i.color.location=1,i.glyph.location=2,i.id.location=3,r}r.createPerspective=function(t){return v(t,f)},r.createOrtho=function(t){return v(t,h)},r.createProject=function(t){return v(t,p)},r.createPickPerspective=function(t){return v(t,d)},r.createPickOrtho=function(t){return v(t,m)},r.createPickProject=function(t){return v(t,g)}},{"gl-shader":323,glslify:424}],319:[function(t,e,r){"use strict";var n=t("is-string-blank"),i=t("gl-buffer"),a=t("gl-vao"),o=t("typedarray-pool"),s=t("gl-mat4/multiply"),l=t("./lib/shaders"),c=t("./lib/glyphs"),u=t("./lib/get-simple-string"),f=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function h(t,e){var r=t[0],n=t[1],i=t[2],a=t[3];return t[0]=e[0]*r+e[4]*n+e[8]*i+e[12]*a,t[1]=e[1]*r+e[5]*n+e[9]*i+e[13]*a,t[2]=e[2]*r+e[6]*n+e[10]*i+e[14]*a,t[3]=e[3]*r+e[7]*n+e[11]*i+e[15]*a,t}function p(t,e,r,n){return h(n,n),h(n,n),h(n,n)}function d(t,e){this.index=t,this.dataCoordinate=this.position=e}function m(t){return!0===t||t>1?1:t}function g(t,e,r,n,i,a,o,s,l,c,u,f){this.gl=t,this.pixelRatio=1,this.shader=e,this.orthoShader=r,this.projectShader=n,this.pointBuffer=i,this.colorBuffer=a,this.glyphBuffer=o,this.idBuffer=s,this.vao=l,this.vertexCount=0,this.lineVertexCount=0,this.opacity=1,this.hasAlpha=!1,this.lineWidth=0,this.projectScale=[2/3,2/3,2/3],this.projectOpacity=[1,1,1],this.projectHasAlpha=!1,this.pickId=0,this.pickPerspectiveShader=c,this.pickOrthoShader=u,this.pickProjectShader=f,this.points=[],this._selectResult=new d(0,[0,0,0]),this.useOrtho=!0,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.axesProject=[!0,!0,!0],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.highlightId=[1,1,1,1],this.highlightScale=2,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.dirty=!0}e.exports=function(t){var e=t.gl,r=l.createPerspective(e),n=l.createOrtho(e),o=l.createProject(e),s=l.createPickPerspective(e),c=l.createPickOrtho(e),u=l.createPickProject(e),f=i(e),h=i(e),p=i(e),d=i(e),m=a(e,[{buffer:f,size:3,type:e.FLOAT},{buffer:h,size:4,type:e.FLOAT},{buffer:p,size:2,type:e.FLOAT},{buffer:d,size:4,type:e.UNSIGNED_BYTE,normalized:!0}]),v=new g(e,r,n,o,f,h,p,d,m,s,c,u);return v.update(t),v};var v=g.prototype;v.pickSlots=1,v.setPickBase=function(t){this.pickId=t},v.isTransparent=function(){if(this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&this.projectHasAlpha)return!0;return!1},v.isOpaque=function(){if(!this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&!this.projectHasAlpha)return!0;return!1};var y=[0,0],x=[0,0,0],b=[0,0,0],_=[0,0,0,1],w=[0,0,0,1],T=f.slice(),k=[0,0,0],A=[[0,0,0],[0,0,0]];function M(t){return t[0]=t[1]=t[2]=0,t}function S(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=1,t}function E(t,e,r,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[r]=n,t}function L(t,e,r,n){var i,a=e.axesProject,o=e.gl,l=t.uniforms,c=r.model||f,u=r.view||f,h=r.projection||f,d=e.axesBounds,m=function(t){for(var e=A,r=0;r<2;++r)for(var n=0;n<3;++n)e[r][n]=Math.max(Math.min(t[r][n],1e8),-1e8);return e}(e.clipBounds);i=e.axes&&e.axes.lastCubeProps?e.axes.lastCubeProps.axis:[1,1,1],y[0]=2/o.drawingBufferWidth,y[1]=2/o.drawingBufferHeight,t.bind(),l.view=u,l.projection=h,l.screenSize=y,l.highlightId=e.highlightId,l.highlightScale=e.highlightScale,l.clipBounds=m,l.pickGroup=e.pickId/255,l.pixelRatio=n;for(var g=0;g<3;++g)if(a[g]){l.scale=e.projectScale[g],l.opacity=e.projectOpacity[g];for(var v=T,L=0;L<16;++L)v[L]=0;for(L=0;L<4;++L)v[5*L]=1;v[5*g]=0,i[g]<0?v[12+g]=d[0][g]:v[12+g]=d[1][g],s(v,c,v),l.model=v;var C=(g+1)%3,P=(g+2)%3,I=M(x),O=M(b);I[C]=1,O[P]=1;var z=p(0,0,0,S(_,I)),D=p(0,0,0,S(w,O));if(Math.abs(z[1])>Math.abs(D[1])){var R=z;z=D,D=R,R=I,I=O,O=R;var F=C;C=P,P=F}z[0]<0&&(I[C]=-1),D[1]>0&&(O[P]=-1);var B=0,N=0;for(L=0;L<4;++L)B+=Math.pow(c[4*C+L],2),N+=Math.pow(c[4*P+L],2);I[C]/=Math.sqrt(B),O[P]/=Math.sqrt(N),l.axes[0]=I,l.axes[1]=O,l.fragClipBounds[0]=E(k,m[0],g,-1e8),l.fragClipBounds[1]=E(k,m[1],g,1e8),e.vao.bind(),e.vao.draw(o.TRIANGLES,e.vertexCount),e.lineWidth>0&&(o.lineWidth(e.lineWidth*n),e.vao.draw(o.LINES,e.lineVertexCount,e.vertexCount)),e.vao.unbind()}}var C=[[-1e8,-1e8,-1e8],[1e8,1e8,1e8]];function P(t,e,r,n,i,a,o){var s=r.gl;if((a===r.projectHasAlpha||o)&&L(e,r,n,i),a===r.hasAlpha||o){t.bind();var l=t.uniforms;l.model=n.model||f,l.view=n.view||f,l.projection=n.projection||f,y[0]=2/s.drawingBufferWidth,y[1]=2/s.drawingBufferHeight,l.screenSize=y,l.highlightId=r.highlightId,l.highlightScale=r.highlightScale,l.fragClipBounds=C,l.clipBounds=r.axes.bounds,l.opacity=r.opacity,l.pickGroup=r.pickId/255,l.pixelRatio=i,r.vao.bind(),r.vao.draw(s.TRIANGLES,r.vertexCount),r.lineWidth>0&&(s.lineWidth(r.lineWidth*i),r.vao.draw(s.LINES,r.lineVertexCount,r.vertexCount)),r.vao.unbind()}}function I(t,e,r,i){var a;a=Array.isArray(t)?e=this.pointCount||e<0)return null;var r=this.points[e],n=this._selectResult;n.index=e;for(var i=0;i<3;++i)n.position[i]=n.dataCoordinate[i]=r[i];return n},v.highlight=function(t){if(t){var e=t.index,r=255&e,n=e>>8&255,i=e>>16&255;this.highlightId=[r/255,n/255,i/255,0]}else this.highlightId=[1,1,1,1]},v.update=function(t){if("perspective"in(t=t||{})&&(this.useOrtho=!t.perspective),"orthographic"in t&&(this.useOrtho=!!t.orthographic),"lineWidth"in t&&(this.lineWidth=t.lineWidth),"project"in t)if(Array.isArray(t.project))this.axesProject=t.project;else{var e=!!t.project;this.axesProject=[e,e,e]}if("projectScale"in t)if(Array.isArray(t.projectScale))this.projectScale=t.projectScale.slice();else{var r=+t.projectScale;this.projectScale=[r,r,r]}if(this.projectHasAlpha=!1,"projectOpacity"in t){if(Array.isArray(t.projectOpacity))this.projectOpacity=t.projectOpacity.slice();else{r=+t.projectOpacity;this.projectOpacity=[r,r,r]}for(var n=0;n<3;++n)this.projectOpacity[n]=m(this.projectOpacity[n]),this.projectOpacity[n]<1&&(this.projectHasAlpha=!0)}this.hasAlpha=!1,"opacity"in t&&(this.opacity=m(t.opacity),this.opacity<1&&(this.hasAlpha=!0)),this.dirty=!0;var i,a,s=t.position,l=t.font||"normal",c=t.alignment||[0,0];if(2===c.length)i=c[0],a=c[1];else{i=[],a=[];for(n=0;n0){var O=0,z=x,D=[0,0,0,1],R=[0,0,0,1],F=Array.isArray(p)&&Array.isArray(p[0]),B=Array.isArray(v)&&Array.isArray(v[0]);t:for(n=0;n<_;++n){y+=1;for(w=s[n],T=0;T<3;++T){if(isNaN(w[T])||!isFinite(w[T]))continue t;f[T]=Math.max(f[T],w[T]),u[T]=Math.min(u[T],w[T])}k=(N=I(h,n,l,this.pixelRatio)).mesh,A=N.lines,M=N.bounds;var N,j=N.visible;if(j)if(Array.isArray(p)){if(3===(U=F?n0?1-M[0][0]:Y<0?1+M[1][0]:1,W*=W>0?1-M[0][1]:W<0?1+M[1][1]:1],Z=k.cells||[],J=k.positions||[];for(T=0;T0){var v=r*u;o.drawBox(f-v,h-v,p+v,h+v,a),o.drawBox(f-v,d-v,p+v,d+v,a),o.drawBox(f-v,h-v,f+v,d+v,a),o.drawBox(p-v,h-v,p+v,d+v,a)}}}},s.update=function(t){t=t||{},this.innerFill=!!t.innerFill,this.outerFill=!!t.outerFill,this.innerColor=(t.innerColor||[0,0,0,.5]).slice(),this.outerColor=(t.outerColor||[0,0,0,.5]).slice(),this.borderColor=(t.borderColor||[0,0,0,1]).slice(),this.borderWidth=t.borderWidth||0,this.selectBox=(t.selectBox||this.selectBox).slice()},s.dispose=function(){this.boxBuffer.dispose(),this.boxShader.dispose(),this.plot.removeOverlay(this)}},{"./lib/shaders":320,"gl-buffer":257,"gl-shader":323}],322:[function(t,e,r){"use strict";e.exports=function(t,e){var r=e[0],a=e[1],o=n(t,r,a,{}),s=i.mallocUint8(r*a*4);return new l(t,o,s)};var n=t("gl-fbo"),i=t("typedarray-pool"),a=t("ndarray"),o=t("bit-twiddle").nextPow2;function s(t,e,r,n,i){this.coord=[t,e],this.id=r,this.value=n,this.distance=i}function l(t,e,r){this.gl=t,this.fbo=e,this.buffer=r,this._readTimeout=null;var n=this;this._readCallback=function(){n.gl&&(e.bind(),t.readPixels(0,0,e.shape[0],e.shape[1],t.RGBA,t.UNSIGNED_BYTE,n.buffer),n._readTimeout=null)}}var c=l.prototype;Object.defineProperty(c,"shape",{get:function(){return this.gl?this.fbo.shape.slice():[0,0]},set:function(t){if(this.gl){this.fbo.shape=t;var e=this.fbo.shape[0],r=this.fbo.shape[1];if(r*e*4>this.buffer.length){i.free(this.buffer);for(var n=this.buffer=i.mallocUint8(o(r*e*4)),a=0;ar)for(t=r;te)for(t=e;t=0){for(var T=0|w.type.charAt(w.type.length-1),k=new Array(T),A=0;A=0;)M+=1;_[y]=M}var S=new Array(r.length);function E(){h.program=o.program(p,h._vref,h._fref,b,_);for(var t=0;t=0){if((d=h.charCodeAt(h.length-1)-48)<2||d>4)throw new n("","Invalid data type for attribute "+f+": "+h);s(t,e,p[0],i,d,a,f)}else{if(!(h.indexOf("mat")>=0))throw new n("","Unknown data type for attribute "+f+": "+h);var d;if((d=h.charCodeAt(h.length-1)-48)<2||d>4)throw new n("","Invalid data type for attribute "+f+": "+h);l(t,e,p,i,d,a,f)}}}return a};var n=t("./GLError");function i(t,e,r,n,i,a){this._gl=t,this._wrapper=e,this._index=r,this._locations=n,this._dimension=i,this._constFunc=a}var a=i.prototype;a.pointer=function(t,e,r,n){var i=this._gl,a=this._locations[this._index];i.vertexAttribPointer(a,this._dimension,t||i.FLOAT,!!e,r||0,n||0),i.enableVertexAttribArray(a)},a.set=function(t,e,r,n){return this._constFunc(this._locations[this._index],t,e,r,n)},Object.defineProperty(a,"location",{get:function(){return this._locations[this._index]},set:function(t){return t!==this._locations[this._index]&&(this._locations[this._index]=0|t,this._wrapper.program=null),0|t}});var o=[function(t,e,r){return void 0===r.length?t.vertexAttrib1f(e,r):t.vertexAttrib1fv(e,r)},function(t,e,r,n){return void 0===r.length?t.vertexAttrib2f(e,r,n):t.vertexAttrib2fv(e,r)},function(t,e,r,n,i){return void 0===r.length?t.vertexAttrib3f(e,r,n,i):t.vertexAttrib3fv(e,r)},function(t,e,r,n,i,a){return void 0===r.length?t.vertexAttrib4f(e,r,n,i,a):t.vertexAttrib4fv(e,r)}];function s(t,e,r,n,a,s,l){var c=o[a],u=new i(t,e,r,n,a,c);Object.defineProperty(s,l,{set:function(e){return t.disableVertexAttribArray(n[r]),c(t,n[r],e),e},get:function(){return u},enumerable:!0})}function l(t,e,r,n,i,a,o){for(var l=new Array(i),c=new Array(i),u=0;u4)throw new i("","Invalid uniform dimension type for matrix "+name+": "+v);t["uniformMatrix"+g+"fv"](s[u],!1,f);break}throw new i("","Unknown uniform data type for "+name+": "+v)}if((g=v.charCodeAt(v.length-1)-48)<2||g>4)throw new i("","Invalid data type");switch(v.charAt(0)){case"b":case"i":t["uniform"+g+"iv"](s[u],f);break;case"v":t["uniform"+g+"fv"](s[u],f);break;default:throw new i("","Unrecognized data type for vector "+name+": "+v)}}}}}}function c(t,e,n){if("object"==typeof n){var c=u(n);Object.defineProperty(t,e,{get:a(c),set:l(n),enumerable:!0,configurable:!1})}else s[n]?Object.defineProperty(t,e,{get:(f=n,function(t,e,r){return t.getUniform(e.program,r[f])}),set:l(n),enumerable:!0,configurable:!1}):t[e]=function(t){switch(t){case"bool":return!1;case"int":case"sampler2D":case"samplerCube":case"float":return 0;default:var e=t.indexOf("vec");if(0<=e&&e<=1&&t.length===4+e){if((r=t.charCodeAt(t.length-1)-48)<2||r>4)throw new i("","Invalid data type");return"b"===t.charAt(0)?o(r,!1):o(r,0)}if(0===t.indexOf("mat")&&4===t.length){var r;if((r=t.charCodeAt(t.length-1)-48)<2||r>4)throw new i("","Invalid uniform dimension type for matrix "+name+": "+t);return o(r*r,0)}throw new i("","Unknown uniform data type for "+name+": "+t)}}(r[n].type);var f}function u(t){var e;if(Array.isArray(t)){e=new Array(t.length);for(var r=0;r1){s[0]in a||(a[s[0]]=[]),a=a[s[0]];for(var l=1;l1)for(var l=0;l 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the tube vertex and normal at the given index.\n//\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\n//\n// Each tube segment is made up of a ring of vertices.\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\n// The indexes of tube segments run from 0 to 8.\n//\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\n float segmentCount = 8.0;\n\n float angle = 2.0 * 3.14159 * (index / segmentCount);\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d);\n vec3 y = v * sin(angle) * length(d);\n vec3 v3 = x + y;\n\n normal = normalize(v3);\n\n return v3;\n}\n\nattribute vec4 vector;\nattribute vec4 color, position;\nattribute vec2 uv;\n\nuniform float vectorScale, tubeScale;\nuniform mat4 model, view, projection, inverseModel;\nuniform vec3 eyePosition, lightPosition;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n // Scale the vector magnitude to stay constant with\n // model & view changes.\n vec3 normal;\n vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\n vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * tubePosition;\n cameraCoordinate.xyz /= cameraCoordinate.w;\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\n\n // vec4 m_position = model * vec4(tubePosition, 1.0);\n vec4 t_position = view * tubePosition;\n gl_Position = projection * t_position;\n\n f_color = color;\n f_data = tubePosition.xyz;\n f_position = position.xyz;\n f_uv = uv;\n}\n"]),a=n(["#extension GL_OES_standard_derivatives : enable\n\nprecision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat cookTorranceSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness,\n float fresnel) {\n\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\n\n //Half angle vector\n vec3 H = normalize(lightDirection + viewDirection);\n\n //Geometric term\n float NdotH = max(dot(surfaceNormal, H), 0.0);\n float VdotH = max(dot(viewDirection, H), 0.000001);\n float LdotH = max(dot(lightDirection, H), 0.000001);\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\n float G = min(1.0, min(G1, G2));\n \n //Distribution term\n float D = beckmannDistribution(NdotH, roughness);\n\n //Fresnel term\n float F = pow(1.0 - VdotN, fresnel);\n\n //Multiply terms and done\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\nuniform sampler2D texture;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n vec3 N = normalize(f_normal);\n vec3 L = normalize(f_lightDirection);\n vec3 V = normalize(f_eyeDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n vec4 surfaceColor = f_color * texture2D(texture, f_uv);\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = litColor * opacity;\n}\n"]),o=n(["precision highp float;\n\nprecision highp float;\n#define GLSLIFY 1\n\nvec3 getOrthogonalVector(vec3 v) {\n // Return up-vector for only-z vector.\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the tube vertex and normal at the given index.\n//\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\n//\n// Each tube segment is made up of a ring of vertices.\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\n// The indexes of tube segments run from 0 to 8.\n//\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\n float segmentCount = 8.0;\n\n float angle = 2.0 * 3.14159 * (index / segmentCount);\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d);\n vec3 y = v * sin(angle) * length(d);\n vec3 v3 = x + y;\n\n normal = normalize(v3);\n\n return v3;\n}\n\nattribute vec4 vector;\nattribute vec4 position;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform float tubeScale;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n vec3 normal;\n vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\n vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n\n gl_Position = projection * view * tubePosition;\n f_id = id;\n f_position = position.xyz;\n}\n"]),s=n(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n\n gl_FragColor = vec4(pickId, f_id.xyz);\n}"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:"position",type:"vec4"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"},{name:"vector",type:"vec4"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:"position",type:"vec4"},{name:"id",type:"vec4"},{name:"vector",type:"vec4"}]}},{glslify:424}],334:[function(t,e,r){"use strict";var n=t("gl-vec3"),i=t("gl-vec4"),a=["xyz","xzy","yxz","yzx","zxy","zyx"],o=function(t,e,r,a){for(var o=0,s=0;s0)for(T=0;T<8;T++){var k=(T+1)%8;c.push(h[T],p[T],p[k],p[k],h[k],h[T]),f.push(y,v,v,v,y,y),d.push(m,g,g,g,m,m);var A=c.length;u.push([A-6,A-5,A-4],[A-3,A-2,A-1])}var M=h;h=p,p=M;var S=y;y=v,v=S;var E=m;m=g,g=E}return{positions:c,cells:u,vectors:f,vertexIntensity:d}}(t,r,a,o)})),f=[],h=[],p=[],d=[];for(s=0;se)return r-1}return r},l=function(t,e,r){return tr?r:t},c=function(t){var e=1/0;t.sort((function(t,e){return t-e}));for(var r=t.length,n=1;nf-1||y>h-1||x>p-1)return n.create();var b,_,w,T,k,A,M=a[0][d],S=a[0][v],E=a[1][m],L=a[1][y],C=a[2][g],P=(o-M)/(S-M),I=(c-E)/(L-E),O=(u-C)/(a[2][x]-C);switch(isFinite(P)||(P=.5),isFinite(I)||(I=.5),isFinite(O)||(O=.5),r.reversedX&&(d=f-1-d,v=f-1-v),r.reversedY&&(m=h-1-m,y=h-1-y),r.reversedZ&&(g=p-1-g,x=p-1-x),r.filled){case 5:k=g,A=x,w=m*p,T=y*p,b=d*p*h,_=v*p*h;break;case 4:k=g,A=x,b=d*p,_=v*p,w=m*p*f,T=y*p*f;break;case 3:w=m,T=y,k=g*h,A=x*h,b=d*h*p,_=v*h*p;break;case 2:w=m,T=y,b=d*h,_=v*h,k=g*h*f,A=x*h*f;break;case 1:b=d,_=v,k=g*f,A=x*f,w=m*f*p,T=y*f*p;break;default:b=d,_=v,w=m*f,T=y*f,k=g*f*h,A=x*f*h}var z=i[b+w+k],D=i[b+w+A],R=i[b+T+k],F=i[b+T+A],B=i[_+w+k],N=i[_+w+A],j=i[_+T+k],U=i[_+T+A],V=n.create(),H=n.create(),q=n.create(),G=n.create();n.lerp(V,z,B,P),n.lerp(H,D,N,P),n.lerp(q,R,j,P),n.lerp(G,F,U,P);var Y=n.create(),W=n.create();n.lerp(Y,V,q,I),n.lerp(W,H,G,I);var X=n.create();return n.lerp(X,Y,W,O),X}(e,t,p)},m=t.getDivergence||function(t,e){var r=n.create(),i=1e-4;n.add(r,t,[i,0,0]);var a=d(r);n.subtract(a,a,e),n.scale(a,a,1/i),n.add(r,t,[0,i,0]);var o=d(r);n.subtract(o,o,e),n.scale(o,o,1/i),n.add(r,t,[0,0,i]);var s=d(r);return n.subtract(s,s,e),n.scale(s,s,1/i),n.add(r,a,o),n.add(r,r,s),r},g=[],v=e[0][0],y=e[0][1],x=e[0][2],b=e[1][0],_=e[1][1],w=e[1][2],T=function(t){var e=t[0],r=t[1],n=t[2];return!(eb||r_||nw)},k=10*n.distance(e[0],e[1])/i,A=k*k,M=1,S=0,E=r.length;E>1&&(M=function(t){for(var e=[],r=[],n=[],i={},a={},o={},s=t.length,l=0;lS&&(S=F),D.push(F),g.push({points:P,velocities:I,divergences:D});for(var B=0;B<100*i&&P.lengthA&&n.scale(N,N,k/Math.sqrt(j)),n.add(N,N,C),O=d(N),n.squaredDistance(z,N)-A>-1e-4*A){P.push(N),z=N,I.push(O);R=m(N,O),F=n.length(R);isFinite(F)&&F>S&&(S=F),D.push(F)}C=N}}var U=o(g,t.colormap,S,M);return f?U.tubeScale=f:(0===S&&(S=1),U.tubeScale=.5*u*M/S),U};var u=t("./lib/shaders"),f=t("gl-cone3d").createMesh;e.exports.createTubeMesh=function(t,e){return f(t,e,{shaders:u,traceType:"streamtube"})}},{"./lib/shaders":333,"gl-cone3d":258,"gl-vec3":362,"gl-vec4":398}],335:[function(t,e,r){var n=t("gl-shader"),i=t("glslify"),a=i(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec4 uv;\nattribute vec3 f;\nattribute vec3 normal;\n\nuniform vec3 objectOffset;\nuniform mat4 model, view, projection, inverseModel;\nuniform vec3 lightPosition, eyePosition;\nuniform sampler2D colormap;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec2 planeCoordinate;\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\nvarying vec4 vColor;\n\nvoid main() {\n vec3 localCoordinate = vec3(uv.zw, f.x);\n worldCoordinate = objectOffset + localCoordinate;\n vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\n vec4 clipPosition = projection * view * worldPosition;\n gl_Position = clipPosition;\n kill = f.y;\n value = f.z;\n planeCoordinate = uv.xy;\n\n vColor = texture2D(colormap, vec2(value, value));\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * worldPosition;\n cameraCoordinate.xyz /= cameraCoordinate.w;\n lightDirection = lightPosition - cameraCoordinate.xyz;\n eyeDirection = eyePosition - cameraCoordinate.xyz;\n surfaceNormal = normalize((vec4(normal,0) * inverseModel).xyz);\n}\n"]),o=i(["precision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat beckmannSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness) {\n return beckmannDistribution(dot(surfaceNormal, normalize(lightDirection + viewDirection)), roughness);\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 lowerBound, upperBound;\nuniform float contourTint;\nuniform vec4 contourColor;\nuniform sampler2D colormap;\nuniform vec3 clipBounds[2];\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\nuniform float vertexColor;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\nvarying vec4 vColor;\n\nvoid main() {\n if (\n kill > 0.0 ||\n vColor.a == 0.0 ||\n outOfRange(clipBounds[0], clipBounds[1], worldCoordinate)\n ) discard;\n\n vec3 N = normalize(surfaceNormal);\n vec3 V = normalize(eyeDirection);\n vec3 L = normalize(lightDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = max(beckmannSpecular(L, V, N, roughness), 0.);\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n //decide how to interpolate color \u2014 in vertex or in fragment\n vec4 surfaceColor =\n step(vertexColor, .5) * texture2D(colormap, vec2(value, value)) +\n step(.5, vertexColor) * vColor;\n\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = mix(litColor, contourColor, contourTint) * opacity;\n}\n"]),s=i(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec4 uv;\nattribute float f;\n\nuniform vec3 objectOffset;\nuniform mat3 permutation;\nuniform mat4 model, view, projection;\nuniform float height, zOffset;\nuniform sampler2D colormap;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec2 planeCoordinate;\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\nvarying vec4 vColor;\n\nvoid main() {\n vec3 dataCoordinate = permutation * vec3(uv.xy, height);\n worldCoordinate = objectOffset + dataCoordinate;\n vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\n\n vec4 clipPosition = projection * view * worldPosition;\n clipPosition.z += zOffset;\n\n gl_Position = clipPosition;\n value = f + objectOffset.z;\n kill = -1.0;\n planeCoordinate = uv.zw;\n\n vColor = texture2D(colormap, vec2(value, value));\n\n //Don't do lighting for contours\n surfaceNormal = vec3(1,0,0);\n eyeDirection = vec3(0,1,0);\n lightDirection = vec3(0,0,1);\n}\n"]),l=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec2 shape;\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec2 planeCoordinate;\nvarying vec3 surfaceNormal;\n\nvec2 splitFloat(float v) {\n float vh = 255.0 * v;\n float upper = floor(vh);\n float lower = fract(vh);\n return vec2(upper / 255.0, floor(lower * 16.0) / 16.0);\n}\n\nvoid main() {\n if ((kill > 0.0) ||\n (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\n\n vec2 ux = splitFloat(planeCoordinate.x / shape.x);\n vec2 uy = splitFloat(planeCoordinate.y / shape.y);\n gl_FragColor = vec4(pickId, ux.x, uy.x, ux.y + (uy.y/16.0));\n}\n"]);r.createShader=function(t){var e=n(t,a,o,null,[{name:"uv",type:"vec4"},{name:"f",type:"vec3"},{name:"normal",type:"vec3"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createPickShader=function(t){var e=n(t,a,l,null,[{name:"uv",type:"vec4"},{name:"f",type:"vec3"},{name:"normal",type:"vec3"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createContourShader=function(t){var e=n(t,s,o,null,[{name:"uv",type:"vec4"},{name:"f",type:"float"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e},r.createPickContourShader=function(t){var e=n(t,s,l,null,[{name:"uv",type:"vec4"},{name:"f",type:"float"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e}},{"gl-shader":323,glslify:424}],336:[function(t,e,r){"use strict";e.exports=function(t){var e=t.gl,r=y(e),n=b(e),s=x(e),l=_(e),c=i(e),u=a(e,[{buffer:c,size:4,stride:40,offset:0},{buffer:c,size:3,stride:40,offset:16},{buffer:c,size:3,stride:40,offset:28}]),f=i(e),h=a(e,[{buffer:f,size:4,stride:20,offset:0},{buffer:f,size:1,stride:20,offset:16}]),p=i(e),d=a(e,[{buffer:p,size:2,type:e.FLOAT}]),m=o(e,1,256,e.RGBA,e.UNSIGNED_BYTE);m.minFilter=e.LINEAR,m.magFilter=e.LINEAR;var g=new M(e,[0,0],[[0,0,0],[0,0,0]],r,n,c,u,m,s,l,f,h,p,d,[0,0,0]),v={levels:[[],[],[]]};for(var w in t)v[w]=t[w];return v.colormap=v.colormap||"jet",g.update(v),g};var n=t("bit-twiddle"),i=t("gl-buffer"),a=t("gl-vao"),o=t("gl-texture2d"),s=t("typedarray-pool"),l=t("colormap"),c=t("ndarray-ops"),u=t("ndarray-pack"),f=t("ndarray"),h=t("surface-nets"),p=t("gl-mat4/multiply"),d=t("gl-mat4/invert"),m=t("binary-search-bounds"),g=t("ndarray-gradient"),v=t("./lib/shaders"),y=v.createShader,x=v.createContourShader,b=v.createPickShader,_=v.createPickContourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],T=[[0,0],[0,1],[1,0],[1,1],[1,0],[0,1]],k=[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]];function A(t,e,r,n,i){this.position=t,this.index=e,this.uv=r,this.level=n,this.dataCoordinate=i}!function(){for(var t=0;t<3;++t){var e=k[t],r=(t+2)%3;e[(t+1)%3+0]=1,e[r+3]=1,e[t+6]=1}}();function M(t,e,r,n,i,a,o,l,c,u,h,p,d,m,g){this.gl=t,this.shape=e,this.bounds=r,this.objectOffset=g,this.intensityBounds=[],this._shader=n,this._pickShader=i,this._coordinateBuffer=a,this._vao=o,this._colorMap=l,this._contourShader=c,this._contourPickShader=u,this._contourBuffer=h,this._contourVAO=p,this._contourOffsets=[[],[],[]],this._contourCounts=[[],[],[]],this._vertexCount=0,this._pickResult=new A([0,0,0],[0,0],[0,0],[0,0,0],[0,0,0]),this._dynamicBuffer=d,this._dynamicVAO=m,this._dynamicOffsets=[0,0,0],this._dynamicCounts=[0,0,0],this.contourWidth=[1,1,1],this.contourLevels=[[1],[1],[1]],this.contourTint=[0,0,0],this.contourColor=[[.5,.5,.5,1],[.5,.5,.5,1],[.5,.5,.5,1]],this.showContour=!0,this.showSurface=!0,this.enableHighlight=[!0,!0,!0],this.highlightColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.highlightTint=[1,1,1],this.highlightLevel=[-1,-1,-1],this.enableDynamic=[!0,!0,!0],this.dynamicLevel=[NaN,NaN,NaN],this.dynamicColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.dynamicTint=[1,1,1],this.dynamicWidth=[1,1,1],this.axesBounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.surfaceProject=[!1,!1,!1],this.contourProject=[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],this.colorBounds=[!1,!1],this._field=[f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0])],this.pickId=1,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.snapToData=!1,this.pixelRatio=1,this.opacity=1,this.lightPosition=[10,1e4,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.vertexColor=0,this.dirty=!0}var S=M.prototype;S.genColormap=function(t,e){var r=!1,n=u([l({colormap:t,nshades:256,format:"rgba"}).map((function(t,n){var i=e?function(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;rt&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}(n/255,e):t[3];return i<1&&(r=!0),[t[0],t[1],t[2],255*i]}))]);return c.divseq(n,255),this.hasAlphaScale=r,n},S.isTransparent=function(){return this.opacity<1||this.hasAlphaScale},S.isOpaque=function(){return!this.isTransparent()},S.pickSlots=1,S.setPickBase=function(t){this.pickId=t};var E=[0,0,0],L={showSurface:!1,showContour:!1,projections:[w.slice(),w.slice(),w.slice()],clipBounds:[[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]]]};function C(t,e){var r,n,i,a=e.axes&&e.axes.lastCubeProps.axis||E,o=e.showSurface,s=e.showContour;for(r=0;r<3;++r)for(o=o||e.surfaceProject[r],n=0;n<3;++n)s=s||e.contourProject[r][n];for(r=0;r<3;++r){var l=L.projections[r];for(n=0;n<16;++n)l[n]=0;for(n=0;n<4;++n)l[5*n]=1;l[5*r]=0,l[12+r]=e.axesBounds[+(a[r]>0)][r],p(l,t.model,l);var c=L.clipBounds[r];for(i=0;i<2;++i)for(n=0;n<3;++n)c[i][n]=t.clipBounds[i][n];c[0][r]=-1e8,c[1][r]=1e8}return L.showSurface=o,L.showContour=s,L}var P={model:w,view:w,projection:w,inverseModel:w.slice(),lowerBound:[0,0,0],upperBound:[0,0,0],colorMap:0,clipBounds:[[0,0,0],[0,0,0]],height:0,contourTint:0,contourColor:[0,0,0,1],permutation:[1,0,0,0,1,0,0,0,1],zOffset:-1e-4,objectOffset:[0,0,0],kambient:1,kdiffuse:1,kspecular:1,lightPosition:[1e3,1e3,1e3],eyePosition:[0,0,0],roughness:1,fresnel:1,opacity:1,vertexColor:0},I=w.slice(),O=[1,0,0,0,1,0,0,0,1];function z(t,e){t=t||{};var r=this.gl;r.disable(r.CULL_FACE),this._colorMap.bind(0);var n=P;n.model=t.model||w,n.view=t.view||w,n.projection=t.projection||w,n.lowerBound=[this.bounds[0][0],this.bounds[0][1],this.colorBounds[0]||this.bounds[0][2]],n.upperBound=[this.bounds[1][0],this.bounds[1][1],this.colorBounds[1]||this.bounds[1][2]],n.objectOffset=this.objectOffset,n.contourColor=this.contourColor[0],n.inverseModel=d(n.inverseModel,n.model);for(var i=0;i<2;++i)for(var a=n.clipBounds[i],o=0;o<3;++o)a[o]=Math.min(Math.max(this.clipBounds[i][o],-1e8),1e8);n.kambient=this.ambientLight,n.kdiffuse=this.diffuseLight,n.kspecular=this.specularLight,n.roughness=this.roughness,n.fresnel=this.fresnel,n.opacity=this.opacity,n.height=0,n.permutation=O,n.vertexColor=this.vertexColor;var s=I;for(p(s,n.view,n.model),p(s,n.projection,s),d(s,s),i=0;i<3;++i)n.eyePosition[i]=s[12+i]/s[15];var l=s[15];for(i=0;i<3;++i)l+=this.lightPosition[i]*s[4*i+3];for(i=0;i<3;++i){var c=s[12+i];for(o=0;o<3;++o)c+=s[4*o+i]*this.lightPosition[o];n.lightPosition[i]=c/l}var u=C(n,this);if(u.showSurface){for(this._shader.bind(),this._shader.uniforms=n,this._vao.bind(),this.showSurface&&this._vertexCount&&this._vao.draw(r.TRIANGLES,this._vertexCount),i=0;i<3;++i)this.surfaceProject[i]&&this.vertexCount&&(this._shader.uniforms.model=u.projections[i],this._shader.uniforms.clipBounds=u.clipBounds[i],this._vao.draw(r.TRIANGLES,this._vertexCount));this._vao.unbind()}if(u.showContour){var f=this._contourShader;n.kambient=1,n.kdiffuse=0,n.kspecular=0,n.opacity=1,f.bind(),f.uniforms=n;var h=this._contourVAO;for(h.bind(),i=0;i<3;++i)for(f.uniforms.permutation=k[i],r.lineWidth(this.contourWidth[i]*this.pixelRatio),o=0;o>4)/16)/255,i=Math.floor(n),a=n-i,o=e[1]*(t.value[1]+(15&t.value[2])/16)/255,s=Math.floor(o),l=o-s;i+=1,s+=1;var c=r.position;c[0]=c[1]=c[2]=0;for(var u=0;u<2;++u)for(var f=u?a:1-a,h=0;h<2;++h)for(var p=i+u,d=s+h,g=f*(h?l:1-l),v=0;v<3;++v)c[v]+=this._field[v].get(p,d)*g;for(var y=this._pickResult.level,x=0;x<3;++x)if(y[x]=m.le(this.contourLevels[x],c[x]),y[x]<0)this.contourLevels[x].length>0&&(y[x]=0);else if(y[x]Math.abs(_-c[x])&&(y[x]+=1)}for(r.index[0]=a<.5?i:i+1,r.index[1]=l<.5?s:s+1,r.uv[0]=n/e[0],r.uv[1]=o/e[1],v=0;v<3;++v)r.dataCoordinate[v]=this._field[v].get(r.index[0],r.index[1]);return r},S.padField=function(t,e){var r=e.shape.slice(),n=t.shape.slice();c.assign(t.lo(1,1).hi(r[0],r[1]),e),c.assign(t.lo(1).hi(r[0],1),e.hi(r[0],1)),c.assign(t.lo(1,n[1]-1).hi(r[0],1),e.lo(0,r[1]-1).hi(r[0],1)),c.assign(t.lo(0,1).hi(1,r[1]),e.hi(1)),c.assign(t.lo(n[0]-1,1).hi(1,r[1]),e.lo(r[0]-1)),t.set(0,0,e.get(0,0)),t.set(0,n[1]-1,e.get(0,r[1]-1)),t.set(n[0]-1,0,e.get(r[0]-1,0)),t.set(n[0]-1,n[1]-1,e.get(r[0]-1,r[1]-1))},S.update=function(t){t=t||{},this.objectOffset=t.objectOffset||this.objectOffset,this.dirty=!0,"contourWidth"in t&&(this.contourWidth=R(t.contourWidth,Number)),"showContour"in t&&(this.showContour=R(t.showContour,Boolean)),"showSurface"in t&&(this.showSurface=!!t.showSurface),"contourTint"in t&&(this.contourTint=R(t.contourTint,Boolean)),"contourColor"in t&&(this.contourColor=B(t.contourColor)),"contourProject"in t&&(this.contourProject=R(t.contourProject,(function(t){return R(t,Boolean)}))),"surfaceProject"in t&&(this.surfaceProject=t.surfaceProject),"dynamicColor"in t&&(this.dynamicColor=B(t.dynamicColor)),"dynamicTint"in t&&(this.dynamicTint=R(t.dynamicTint,Number)),"dynamicWidth"in t&&(this.dynamicWidth=R(t.dynamicWidth,Number)),"opacity"in t&&(this.opacity=t.opacity),"opacityscale"in t&&(this.opacityscale=t.opacityscale),"colorBounds"in t&&(this.colorBounds=t.colorBounds),"vertexColor"in t&&(this.vertexColor=t.vertexColor?1:0),"colormap"in t&&this._colorMap.setPixels(this.genColormap(t.colormap,this.opacityscale));var e=t.field||t.coords&&t.coords[2]||null,r=!1;if(e||(e=this._field[2].shape[0]||this._field[2].shape[2]?this._field[2].lo(1,1).hi(this._field[2].shape[0]-2,this._field[2].shape[1]-2):this._field[2].hi(0,0)),"field"in t||"coords"in t){var i=(e.shape[0]+2)*(e.shape[1]+2);i>this._field[2].data.length&&(s.freeFloat(this._field[2].data),this._field[2].data=s.mallocFloat(n.nextPow2(i))),this._field[2]=f(this._field[2].data,[e.shape[0]+2,e.shape[1]+2]),this.padField(this._field[2],e),this.shape=e.shape.slice();for(var a=this.shape,o=0;o<2;++o)this._field[2].size>this._field[o].data.length&&(s.freeFloat(this._field[o].data),this._field[o].data=s.mallocFloat(this._field[2].size)),this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2]);if(t.coords){var l=t.coords;if(!Array.isArray(l)||3!==l.length)throw new Error("gl-surface: invalid coordinates for x/y");for(o=0;o<2;++o){var c=l[o];for(v=0;v<2;++v)if(c.shape[v]!==a[v])throw new Error("gl-surface: coords have incorrect shape");this.padField(this._field[o],c)}}else if(t.ticks){var u=t.ticks;if(!Array.isArray(u)||2!==u.length)throw new Error("gl-surface: invalid ticks");for(o=0;o<2;++o){var p=u[o];if((Array.isArray(p)||p.length)&&(p=f(p)),p.shape[0]!==a[o])throw new Error("gl-surface: invalid tick length");var d=f(p.data,a);d.stride[o]=p.stride[0],d.stride[1^o]=0,this.padField(this._field[o],d)}}else{for(o=0;o<2;++o){var m=[0,0];m[o]=1,this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2],m,0)}this._field[0].set(0,0,0);for(var v=0;v0){for(var xt=0;xt<5;++xt)Q.pop();U-=1}continue t}Q.push(nt[0],nt[1],ot[0],ot[1],nt[2]),U+=1}}rt.push(U)}this._contourOffsets[$]=et,this._contourCounts[$]=rt}var bt=s.mallocFloat(Q.length);for(o=0;o halfCharStep + halfCharWidth ||\n\t\t\t\t\tfloor(uv.x) < halfCharStep - halfCharWidth) return;\n\n\t\t\t\tuv += charId * charStep;\n\t\t\t\tuv = uv / atlasSize;\n\n\t\t\t\tvec4 color = fontColor;\n\t\t\t\tvec4 mask = texture2D(atlas, uv);\n\n\t\t\t\tfloat maskY = lightness(mask);\n\t\t\t\t// float colorY = lightness(color);\n\t\t\t\tcolor.a *= maskY;\n\t\t\t\tcolor.a *= opacity;\n\n\t\t\t\t// color.a += .1;\n\n\t\t\t\t// antialiasing, see yiq color space y-channel formula\n\t\t\t\t// color.rgb += (1. - color.rgb) * (1. - mask.rgb);\n\n\t\t\t\tgl_FragColor = color;\n\t\t\t}"});return{regl:t,draw:e,atlas:{}}},T.prototype.update=function(t){var e=this;if("string"==typeof t)t={text:t};else if(!t)return;null!=(t=i(t,{position:"position positions coord coords coordinates",font:"font fontFace fontface typeface cssFont css-font family fontFamily",fontSize:"fontSize fontsize size font-size",text:"text texts chars characters value values symbols",align:"align alignment textAlign textbaseline",baseline:"baseline textBaseline textbaseline",direction:"dir direction textDirection",color:"color colour fill fill-color fillColor textColor textcolor",kerning:"kerning kern",range:"range dataBox",viewport:"vp viewport viewBox viewbox viewPort",opacity:"opacity alpha transparency visible visibility opaque",offset:"offset positionOffset padding shift indent indentation"},!0)).opacity&&(Array.isArray(t.opacity)?this.opacity=t.opacity.map((function(t){return parseFloat(t)})):this.opacity=parseFloat(t.opacity)),null!=t.viewport&&(this.viewport=f(t.viewport),this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null==this.viewport&&(this.viewport={x:0,y:0,width:this.gl.drawingBufferWidth,height:this.gl.drawingBufferHeight},this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null!=t.kerning&&(this.kerning=t.kerning),null!=t.offset&&("number"==typeof t.offset&&(t.offset=[t.offset,0]),this.positionOffset=y(t.offset)),t.direction&&(this.direction=t.direction),t.range&&(this.range=t.range,this.scale=[1/(t.range[2]-t.range[0]),1/(t.range[3]-t.range[1])],this.translate=[-t.range[0],-t.range[1]]),t.scale&&(this.scale=t.scale),t.translate&&(this.translate=t.translate),this.scale||(this.scale=[1/this.viewport.width,1/this.viewport.height]),this.translate||(this.translate=[0,0]),this.font.length||t.font||(t.font=T.baseFontSize+"px sans-serif");var r,a=!1,o=!1;if(t.font&&(Array.isArray(t.font)?t.font:[t.font]).forEach((function(t,r){if("string"==typeof t)try{t=n.parse(t)}catch(e){t=n.parse(T.baseFontSize+"px "+t)}else t=n.parse(n.stringify(t));var i=n.stringify({size:T.baseFontSize,family:t.family,stretch:_?t.stretch:void 0,variant:t.variant,weight:t.weight,style:t.style}),s=p(t.size),l=Math.round(s[0]*d(s[1]));if(l!==e.fontSize[r]&&(o=!0,e.fontSize[r]=l),!(e.font[r]&&i==e.font[r].baseString||(a=!0,e.font[r]=T.fonts[i],e.font[r]))){var c=t.family.join(", "),u=[t.style];t.style!=t.variant&&u.push(t.variant),t.variant!=t.weight&&u.push(t.weight),_&&t.weight!=t.stretch&&u.push(t.stretch),e.font[r]={baseString:i,family:c,weight:t.weight,stretch:t.stretch,style:t.style,variant:t.variant,width:{},kerning:{},metrics:v(c,{origin:"top",fontSize:T.baseFontSize,fontStyle:u.join(" ")})},T.fonts[i]=e.font[r]}})),(a||o)&&this.font.forEach((function(r,i){var a=n.stringify({size:e.fontSize[i],family:r.family,stretch:_?r.stretch:void 0,variant:r.variant,weight:r.weight,style:r.style});if(e.fontAtlas[i]=e.shader.atlas[a],!e.fontAtlas[i]){var o=r.metrics;e.shader.atlas[a]=e.fontAtlas[i]={fontString:a,step:2*Math.ceil(e.fontSize[i]*o.bottom*.5),em:e.fontSize[i],cols:0,rows:0,height:0,width:0,chars:[],ids:{},texture:e.regl.texture()}}null==t.text&&(t.text=e.text)})),"string"==typeof t.text&&t.position&&t.position.length>2){for(var s=Array(.5*t.position.length),h=0;h2){for(var w=!t.position[0].length,k=u.mallocFloat(2*this.count),A=0,M=0;A1?e.align[r]:e.align[0]:e.align;if("number"==typeof n)return n;switch(n){case"right":case"end":return-t;case"center":case"centre":case"middle":return.5*-t}return 0}))),null==this.baseline&&null==t.baseline&&(t.baseline=0),null!=t.baseline&&(this.baseline=t.baseline,Array.isArray(this.baseline)||(this.baseline=[this.baseline]),this.baselineOffset=this.baseline.map((function(t,r){var n=(e.font[r]||e.font[0]).metrics,i=0;return i+=.5*n.bottom,i+="number"==typeof t?t-n.baseline:-n[t],i*=-1}))),null!=t.color)if(t.color||(t.color="transparent"),"string"!=typeof t.color&&isNaN(t.color)){var q;if("number"==typeof t.color[0]&&t.color.length>this.counts.length){var G=t.color.length;q=u.mallocUint8(G);for(var Y=(t.color.subarray||t.color.slice).bind(t.color),W=0;W4||this.baselineOffset.length>1||this.align&&this.align.length>1||this.fontAtlas.length>1||this.positionOffset.length>2){var J=Math.max(.5*this.position.length||0,.25*this.color.length||0,this.baselineOffset.length||0,this.alignOffset.length||0,this.font.length||0,this.opacity.length||0,.5*this.positionOffset.length||0);this.batch=Array(J);for(var K=0;K1?this.counts[K]:this.counts[0],offset:this.textOffsets.length>1?this.textOffsets[K]:this.textOffsets[0],color:this.color?this.color.length<=4?this.color:this.color.subarray(4*K,4*K+4):[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[K]:this.opacity,baseline:null!=this.baselineOffset[K]?this.baselineOffset[K]:this.baselineOffset[0],align:this.align?null!=this.alignOffset[K]?this.alignOffset[K]:this.alignOffset[0]:0,atlas:this.fontAtlas[K]||this.fontAtlas[0],positionOffset:this.positionOffset.length>2?this.positionOffset.subarray(2*K,2*K+2):this.positionOffset}}else this.count?this.batch=[{count:this.count,offset:0,color:this.color||[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[0]:this.opacity,baseline:this.baselineOffset[0],align:this.alignOffset?this.alignOffset[0]:0,atlas:this.fontAtlas[0],positionOffset:this.positionOffset}]:this.batch=[]},T.prototype.destroy=function(){},T.prototype.kerning=!0,T.prototype.position={constant:new Float32Array(2)},T.prototype.translate=null,T.prototype.scale=null,T.prototype.font=null,T.prototype.text="",T.prototype.positionOffset=[0,0],T.prototype.opacity=1,T.prototype.color=new Uint8Array([0,0,0,255]),T.prototype.alignOffset=[0,0],T.maxAtlasSize=1024,T.atlasCanvas=document.createElement("canvas"),T.atlasContext=T.atlasCanvas.getContext("2d",{alpha:!1}),T.baseFontSize=64,T.fonts={},e.exports=T},{"bit-twiddle":101,"color-normalize":126,"css-font":146,"detect-kerning":173,"es6-weak-map":233,"flatten-vertex-data":244,"font-atlas":245,"font-measure":246,"gl-util/context":339,"is-plain-obj":437,"object-assign":466,"parse-rect":471,"parse-unit":473,"pick-by-alias":475,regl:516,"to-px":574,"typedarray-pool":590}],338:[function(t,e,r){"use strict";var n=t("ndarray"),i=t("ndarray-ops"),a=t("typedarray-pool");e.exports=function(t){if(arguments.length<=1)throw new Error("gl-texture2d: Missing arguments for texture2d constructor");o||c(t);if("number"==typeof arguments[1])return v(t,arguments[1],arguments[2],arguments[3]||t.RGBA,arguments[4]||t.UNSIGNED_BYTE);if(Array.isArray(arguments[1]))return v(t,0|arguments[1][0],0|arguments[1][1],arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if("object"==typeof arguments[1]){var e=arguments[1],r=u(e)?e:e.raw;if(r)return y(t,r,0|e.width,0|e.height,arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(e.shape&&e.data&&e.stride)return x(t,e)}throw new Error("gl-texture2d: Invalid arguments for texture2d constructor")};var o=null,s=null,l=null;function c(t){o=[t.LINEAR,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_NEAREST],s=[t.NEAREST,t.LINEAR,t.NEAREST_MIPMAP_NEAREST,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_LINEAR],l=[t.REPEAT,t.CLAMP_TO_EDGE,t.MIRRORED_REPEAT]}function u(t){return"undefined"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement||"undefined"!=typeof HTMLImageElement&&t instanceof HTMLImageElement||"undefined"!=typeof HTMLVideoElement&&t instanceof HTMLVideoElement||"undefined"!=typeof ImageData&&t instanceof ImageData}var f=function(t,e){i.muls(t,e,255)};function h(t,e,r){var n=t.gl,i=n.getParameter(n.MAX_TEXTURE_SIZE);if(e<0||e>i||r<0||r>i)throw new Error("gl-texture2d: Invalid texture size");return t._shape=[e,r],t.bind(),n.texImage2D(n.TEXTURE_2D,0,t.format,e,r,0,t.format,t.type,null),t._mipLevels=[0],t}function p(t,e,r,n,i,a){this.gl=t,this.handle=e,this.format=i,this.type=a,this._shape=[r,n],this._mipLevels=[0],this._magFilter=t.NEAREST,this._minFilter=t.NEAREST,this._wrapS=t.CLAMP_TO_EDGE,this._wrapT=t.CLAMP_TO_EDGE,this._anisoSamples=1;var o=this,s=[this._wrapS,this._wrapT];Object.defineProperties(s,[{get:function(){return o._wrapS},set:function(t){return o.wrapS=t}},{get:function(){return o._wrapT},set:function(t){return o.wrapT=t}}]),this._wrapVector=s;var l=[this._shape[0],this._shape[1]];Object.defineProperties(l,[{get:function(){return o._shape[0]},set:function(t){return o.width=t}},{get:function(){return o._shape[1]},set:function(t){return o.height=t}}]),this._shapeVector=l}var d=p.prototype;function m(t,e){return 3===t.length?1===e[2]&&e[1]===t[0]*t[2]&&e[0]===t[2]:1===e[0]&&e[1]===t[0]}function g(t){var e=t.createTexture();return t.bindTexture(t.TEXTURE_2D,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),e}function v(t,e,r,n,i){var a=t.getParameter(t.MAX_TEXTURE_SIZE);if(e<0||e>a||r<0||r>a)throw new Error("gl-texture2d: Invalid texture shape");if(i===t.FLOAT&&!t.getExtension("OES_texture_float"))throw new Error("gl-texture2d: Floating point textures not supported on this platform");var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,n,e,r,0,n,i,null),new p(t,o,e,r,n,i)}function y(t,e,r,n,i,a){var o=g(t);return t.texImage2D(t.TEXTURE_2D,0,i,i,a,e),new p(t,o,r,n,i,a)}function x(t,e){var r=e.dtype,o=e.shape.slice(),s=t.getParameter(t.MAX_TEXTURE_SIZE);if(o[0]<0||o[0]>s||o[1]<0||o[1]>s)throw new Error("gl-texture2d: Invalid texture size");var l=m(o,e.stride.slice()),c=0;"float32"===r?c=t.FLOAT:"float64"===r?(c=t.FLOAT,l=!1,r="float32"):"uint8"===r?c=t.UNSIGNED_BYTE:(c=t.UNSIGNED_BYTE,l=!1,r="uint8");var u,h,d=0;if(2===o.length)d=t.LUMINANCE,o=[o[0],o[1],1],e=n(e.data,o,[e.stride[0],e.stride[1],1],e.offset);else{if(3!==o.length)throw new Error("gl-texture2d: Invalid shape for texture");if(1===o[2])d=t.ALPHA;else if(2===o[2])d=t.LUMINANCE_ALPHA;else if(3===o[2])d=t.RGB;else{if(4!==o[2])throw new Error("gl-texture2d: Invalid shape for pixel coords");d=t.RGBA}}c!==t.FLOAT||t.getExtension("OES_texture_float")||(c=t.UNSIGNED_BYTE,l=!1);var v=e.size;if(l)u=0===e.offset&&e.data.length===v?e.data:e.data.subarray(e.offset,e.offset+v);else{var y=[o[2],o[2]*o[0],1];h=a.malloc(v,r);var x=n(h,o,y,0);"float32"!==r&&"float64"!==r||c!==t.UNSIGNED_BYTE?i.assign(x,e):f(x,e),u=h.subarray(0,v)}var b=g(t);return t.texImage2D(t.TEXTURE_2D,0,d,o[0],o[1],0,d,c,u),l||a.free(h),new p(t,b,o[0],o[1],d,c)}Object.defineProperties(d,{minFilter:{get:function(){return this._minFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension("OES_texture_float_linear")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error("gl-texture2d: Unknown filter mode "+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,t),this._minFilter=t}},magFilter:{get:function(){return this._magFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension("OES_texture_float_linear")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error("gl-texture2d: Unknown filter mode "+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,t),this._magFilter=t}},mipSamples:{get:function(){return this._anisoSamples},set:function(t){var e=this._anisoSamples;if(this._anisoSamples=0|Math.max(t,1),e!==this._anisoSamples){var r=this.gl.getExtension("EXT_texture_filter_anisotropic");r&&this.gl.texParameterf(this.gl.TEXTURE_2D,r.TEXTURE_MAX_ANISOTROPY_EXT,this._anisoSamples)}return this._anisoSamples}},wrapS:{get:function(){return this._wrapS},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error("gl-texture2d: Unknown wrap mode "+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,t),this._wrapS=t}},wrapT:{get:function(){return this._wrapT},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error("gl-texture2d: Unknown wrap mode "+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,t),this._wrapT=t}},wrap:{get:function(){return this._wrapVector},set:function(t){if(Array.isArray(t)||(t=[t,t]),2!==t.length)throw new Error("gl-texture2d: Must specify wrap mode for rows and columns");for(var e=0;e<2;++e)if(l.indexOf(t[e])<0)throw new Error("gl-texture2d: Unknown wrap mode "+t);this._wrapS=t[0],this._wrapT=t[1];var r=this.gl;return this.bind(),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,this._wrapS),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,this._wrapT),t}},shape:{get:function(){return this._shapeVector},set:function(t){if(Array.isArray(t)){if(2!==t.length)throw new Error("gl-texture2d: Invalid texture shape")}else t=[0|t,0|t];return h(this,0|t[0],0|t[1]),[0|t[0],0|t[1]]}},width:{get:function(){return this._shape[0]},set:function(t){return h(this,t|=0,this._shape[1]),t}},height:{get:function(){return this._shape[1]},set:function(t){return t|=0,h(this,this._shape[0],t),t}}}),d.bind=function(t){var e=this.gl;return void 0!==t&&e.activeTexture(e.TEXTURE0+(0|t)),e.bindTexture(e.TEXTURE_2D,this.handle),void 0!==t?0|t:e.getParameter(e.ACTIVE_TEXTURE)-e.TEXTURE0},d.dispose=function(){this.gl.deleteTexture(this.handle)},d.generateMipmap=function(){this.bind(),this.gl.generateMipmap(this.gl.TEXTURE_2D);for(var t=Math.min(this._shape[0],this._shape[1]),e=0;t>0;++e,t>>>=1)this._mipLevels.indexOf(e)<0&&this._mipLevels.push(e)},d.setPixels=function(t,e,r,o){var s=this.gl;this.bind(),Array.isArray(e)?(o=r,r=0|e[1],e=0|e[0]):(e=e||0,r=r||0),o=o||0;var l=u(t)?t:t.raw;if(l){this._mipLevels.indexOf(o)<0?(s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,this.type,l),this._mipLevels.push(o)):s.texSubImage2D(s.TEXTURE_2D,o,e,r,this.format,this.type,l)}else{if(!(t.shape&&t.stride&&t.data))throw new Error("gl-texture2d: Unsupported data type");if(t.shape.length<2||e+t.shape[1]>this._shape[1]>>>o||r+t.shape[0]>this._shape[0]>>>o||e<0||r<0)throw new Error("gl-texture2d: Texture dimensions are out of bounds");!function(t,e,r,o,s,l,c,u){var h=u.dtype,p=u.shape.slice();if(p.length<2||p.length>3)throw new Error("gl-texture2d: Invalid ndarray, must be 2d or 3d");var d=0,g=0,v=m(p,u.stride.slice());"float32"===h?d=t.FLOAT:"float64"===h?(d=t.FLOAT,v=!1,h="float32"):"uint8"===h?d=t.UNSIGNED_BYTE:(d=t.UNSIGNED_BYTE,v=!1,h="uint8");if(2===p.length)g=t.LUMINANCE,p=[p[0],p[1],1],u=n(u.data,p,[u.stride[0],u.stride[1],1],u.offset);else{if(3!==p.length)throw new Error("gl-texture2d: Invalid shape for texture");if(1===p[2])g=t.ALPHA;else if(2===p[2])g=t.LUMINANCE_ALPHA;else if(3===p[2])g=t.RGB;else{if(4!==p[2])throw new Error("gl-texture2d: Invalid shape for pixel coords");g=t.RGBA}p[2]}g!==t.LUMINANCE&&g!==t.ALPHA||s!==t.LUMINANCE&&s!==t.ALPHA||(g=s);if(g!==s)throw new Error("gl-texture2d: Incompatible texture format for setPixels");var y=u.size,x=c.indexOf(o)<0;x&&c.push(o);if(d===l&&v)0===u.offset&&u.data.length===y?x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,u.data):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,u.data):x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,u.data.subarray(u.offset,u.offset+y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,u.data.subarray(u.offset,u.offset+y));else{var b;b=l===t.FLOAT?a.mallocFloat32(y):a.mallocUint8(y);var _=n(b,p,[p[2],p[2]*p[0],1]);d===t.FLOAT&&l===t.UNSIGNED_BYTE?f(_,u):i.assign(_,u),x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,b.subarray(0,y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,b.subarray(0,y)),l===t.FLOAT?a.freeFloat32(b):a.freeUint8(b)}}(s,e,r,o,this.format,this.type,this._mipLevels,t)}}},{ndarray:462,"ndarray-ops":457,"typedarray-pool":590}],339:[function(t,e,r){(function(r){(function(){"use strict";var n=t("pick-by-alias");function i(t){if(t.container)if(t.container==document.body)document.body.style.width||(t.canvas.width=t.width||t.pixelRatio*r.innerWidth),document.body.style.height||(t.canvas.height=t.height||t.pixelRatio*r.innerHeight);else{var e=t.container.getBoundingClientRect();t.canvas.width=t.width||e.right-e.left,t.canvas.height=t.height||e.bottom-e.top}}function a(t){return"function"==typeof t.getContext&&"width"in t&&"height"in t}function o(){var t=document.createElement("canvas");return t.style.position="absolute",t.style.top=0,t.style.left=0,t}e.exports=function(t){var e;if(t?"string"==typeof t&&(t={container:t}):t={},a(t)?t={container:t}:t="string"==typeof(e=t).nodeName&&"function"==typeof e.appendChild&&"function"==typeof e.getBoundingClientRect?{container:t}:function(t){return"function"==typeof t.drawArrays||"function"==typeof t.drawElements}(t)?{gl:t}:n(t,{container:"container target element el canvas holder parent parentNode wrapper use ref root node",gl:"gl context webgl glContext",attrs:"attributes attrs contextAttributes",pixelRatio:"pixelRatio pxRatio px ratio pxratio pixelratio",width:"w width",height:"h height"},!0),t.pixelRatio||(t.pixelRatio=r.pixelRatio||1),t.gl)return t.gl;if(t.canvas&&(t.container=t.canvas.parentNode),t.container){if("string"==typeof t.container){var s=document.querySelector(t.container);if(!s)throw Error("Element "+t.container+" is not found");t.container=s}a(t.container)?(t.canvas=t.container,t.container=t.canvas.parentNode):t.canvas||(t.canvas=o(),t.container.appendChild(t.canvas),i(t))}else if(!t.canvas){if("undefined"==typeof document)throw Error("Not DOM environment. Use headless-gl.");t.container=document.body||document.documentElement,t.canvas=o(),t.container.appendChild(t.canvas),i(t)}return t.gl||["webgl","experimental-webgl","webgl-experimental"].some((function(e){try{t.gl=t.canvas.getContext(e,t.attrs)}catch(t){}return t.gl})),t.gl}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"pick-by-alias":475}],340:[function(t,e,r){"use strict";e.exports=function(t,e,r){e?e.bind():t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,null);var n=0|t.getParameter(t.MAX_VERTEX_ATTRIBS);if(r){if(r.length>n)throw new Error("gl-vao: Too many vertex attributes");for(var i=0;i1?0:Math.acos(s)};var n=t("./fromValues"),i=t("./normalize"),a=t("./dot")},{"./dot":355,"./fromValues":361,"./normalize":372}],346:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.ceil(e[0]),t[1]=Math.ceil(e[1]),t[2]=Math.ceil(e[2]),t}},{}],347:[function(t,e,r){e.exports=function(t){var e=new Float32Array(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}},{}],348:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}},{}],349:[function(t,e,r){e.exports=function(){var t=new Float32Array(3);return t[0]=0,t[1]=0,t[2]=0,t}},{}],350:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2];return t[0]=i*l-a*s,t[1]=a*o-n*l,t[2]=n*s-i*o,t}},{}],351:[function(t,e,r){e.exports=t("./distance")},{"./distance":352}],352:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2];return Math.sqrt(r*r+n*n+i*i)}},{}],353:[function(t,e,r){e.exports=t("./divide")},{"./divide":354}],354:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t}},{}],355:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}},{}],356:[function(t,e,r){e.exports=1e-6},{}],357:[function(t,e,r){e.exports=function(t,e){var r=t[0],i=t[1],a=t[2],o=e[0],s=e[1],l=e[2];return Math.abs(r-o)<=n*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(i-s)<=n*Math.max(1,Math.abs(i),Math.abs(s))&&Math.abs(a-l)<=n*Math.max(1,Math.abs(a),Math.abs(l))};var n=t("./epsilon")},{"./epsilon":356}],358:[function(t,e,r){e.exports=function(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}},{}],359:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.floor(e[0]),t[1]=Math.floor(e[1]),t[2]=Math.floor(e[2]),t}},{}],360:[function(t,e,r){e.exports=function(t,e,r,i,a,o){var s,l;e||(e=3);r||(r=0);l=i?Math.min(i*e+r,t.length):t.length;for(s=r;s0&&(a=1/Math.sqrt(a),t[0]=e[0]*a,t[1]=e[1]*a,t[2]=e[2]*a);return t}},{}],373:[function(t,e,r){e.exports=function(t,e){e=e||1;var r=2*Math.random()*Math.PI,n=2*Math.random()-1,i=Math.sqrt(1-n*n)*e;return t[0]=Math.cos(r)*i,t[1]=Math.sin(r)*i,t[2]=n*e,t}},{}],374:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[1],a=r[2],o=e[1]-i,s=e[2]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=e[0],t[1]=i+o*c-s*l,t[2]=a+o*l+s*c,t}},{}],375:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[0],a=r[2],o=e[0]-i,s=e[2]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=i+s*l+o*c,t[1]=e[1],t[2]=a+s*c-o*l,t}},{}],376:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[0],a=r[1],o=e[0]-i,s=e[1]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=i+o*c-s*l,t[1]=a+o*l+s*c,t[2]=e[2],t}},{}],377:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.round(e[0]),t[1]=Math.round(e[1]),t[2]=Math.round(e[2]),t}},{}],378:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t}},{}],379:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t}},{}],380:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e,t[1]=r,t[2]=n,t}},{}],381:[function(t,e,r){e.exports=t("./squaredDistance")},{"./squaredDistance":383}],382:[function(t,e,r){e.exports=t("./squaredLength")},{"./squaredLength":384}],383:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2];return r*r+n*n+i*i}},{}],384:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return e*e+r*r+n*n}},{}],385:[function(t,e,r){e.exports=t("./subtract")},{"./subtract":386}],386:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t}},{}],387:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2];return t[0]=n*r[0]+i*r[3]+a*r[6],t[1]=n*r[1]+i*r[4]+a*r[7],t[2]=n*r[2]+i*r[5]+a*r[8],t}},{}],388:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[3]*n+r[7]*i+r[11]*a+r[15];return o=o||1,t[0]=(r[0]*n+r[4]*i+r[8]*a+r[12])/o,t[1]=(r[1]*n+r[5]*i+r[9]*a+r[13])/o,t[2]=(r[2]*n+r[6]*i+r[10]*a+r[14])/o,t}},{}],389:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*a-l*i,f=c*i+l*n-o*a,h=c*a+o*i-s*n,p=-o*n-s*i-l*a;return t[0]=u*c+p*-o+f*-l-h*-s,t[1]=f*c+p*-s+h*-o-u*-l,t[2]=h*c+p*-l+u*-s-f*-o,t}},{}],390:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t[3]=e[3]+r[3],t}},{}],391:[function(t,e,r){e.exports=function(t){var e=new Float32Array(4);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}},{}],392:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}},{}],393:[function(t,e,r){e.exports=function(){var t=new Float32Array(4);return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t}},{}],394:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2],a=e[3]-t[3];return Math.sqrt(r*r+n*n+i*i+a*a)}},{}],395:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t[3]=e[3]/r[3],t}},{}],396:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}},{}],397:[function(t,e,r){e.exports=function(t,e,r,n){var i=new Float32Array(4);return i[0]=t,i[1]=e,i[2]=r,i[3]=n,i}},{}],398:[function(t,e,r){e.exports={create:t("./create"),clone:t("./clone"),fromValues:t("./fromValues"),copy:t("./copy"),set:t("./set"),add:t("./add"),subtract:t("./subtract"),multiply:t("./multiply"),divide:t("./divide"),min:t("./min"),max:t("./max"),scale:t("./scale"),scaleAndAdd:t("./scaleAndAdd"),distance:t("./distance"),squaredDistance:t("./squaredDistance"),length:t("./length"),squaredLength:t("./squaredLength"),negate:t("./negate"),inverse:t("./inverse"),normalize:t("./normalize"),dot:t("./dot"),lerp:t("./lerp"),random:t("./random"),transformMat4:t("./transformMat4"),transformQuat:t("./transformQuat")}},{"./add":390,"./clone":391,"./copy":392,"./create":393,"./distance":394,"./divide":395,"./dot":396,"./fromValues":397,"./inverse":399,"./length":400,"./lerp":401,"./max":402,"./min":403,"./multiply":404,"./negate":405,"./normalize":406,"./random":407,"./scale":408,"./scaleAndAdd":409,"./set":410,"./squaredDistance":411,"./squaredLength":412,"./subtract":413,"./transformMat4":414,"./transformQuat":415}],399:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t[3]=1/e[3],t}},{}],400:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],i=t[3];return Math.sqrt(e*e+r*r+n*n+i*i)}},{}],401:[function(t,e,r){e.exports=function(t,e,r,n){var i=e[0],a=e[1],o=e[2],s=e[3];return t[0]=i+n*(r[0]-i),t[1]=a+n*(r[1]-a),t[2]=o+n*(r[2]-o),t[3]=s+n*(r[3]-s),t}},{}],402:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t[3]=Math.max(e[3],r[3]),t}},{}],403:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t[3]=Math.min(e[3],r[3]),t}},{}],404:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t[3]=e[3]*r[3],t}},{}],405:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t[3]=-e[3],t}},{}],406:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=r*r+n*n+i*i+a*a;o>0&&(o=1/Math.sqrt(o),t[0]=r*o,t[1]=n*o,t[2]=i*o,t[3]=a*o);return t}},{}],407:[function(t,e,r){var n=t("./normalize"),i=t("./scale");e.exports=function(t,e){return e=e||1,t[0]=Math.random(),t[1]=Math.random(),t[2]=Math.random(),t[3]=Math.random(),n(t,t),i(t,t,e),t}},{"./normalize":406,"./scale":408}],408:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t[3]=e[3]*r,t}},{}],409:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t[3]=e[3]+r[3]*n,t}},{}],410:[function(t,e,r){e.exports=function(t,e,r,n,i){return t[0]=e,t[1]=r,t[2]=n,t[3]=i,t}},{}],411:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2],a=e[3]-t[3];return r*r+n*n+i*i+a*a}},{}],412:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],i=t[3];return e*e+r*r+n*n+i*i}},{}],413:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t[3]=e[3]-r[3],t}},{}],414:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3];return t[0]=r[0]*n+r[4]*i+r[8]*a+r[12]*o,t[1]=r[1]*n+r[5]*i+r[9]*a+r[13]*o,t[2]=r[2]*n+r[6]*i+r[10]*a+r[14]*o,t[3]=r[3]*n+r[7]*i+r[11]*a+r[15]*o,t}},{}],415:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*a-l*i,f=c*i+l*n-o*a,h=c*a+o*i-s*n,p=-o*n-s*i-l*a;return t[0]=u*c+p*-o+f*-l-h*-s,t[1]=f*c+p*-s+h*-o-u*-l,t[2]=h*c+p*-l+u*-s-f*-o,t[3]=e[3],t}},{}],416:[function(t,e,r){var n=t("glsl-tokenizer"),i=t("atob-lite");e.exports=function(t){for(var e=Array.isArray(t)?t:n(t),r=0;r0)continue;r=t.slice(0,1).join("")}return A(r),v+=r.length,(p=p.slice(r.length)).length}}function I(){return/[^a-fA-F0-9]/.test(e)?(A(p.join("")),h=999,u):(p.push(e),r=e,u+1)}function O(){return"."===e||/[eE]/.test(e)?(p.push(e),h=5,r=e,u+1):"x"===e&&1===p.length&&"0"===p[0]?(h=11,p.push(e),r=e,u+1):/[^\d]/.test(e)?(A(p.join("")),h=999,u):(p.push(e),r=e,u+1)}function z(){return"f"===e&&(p.push(e),r=e,u+=1),/[eE]/.test(e)?(p.push(e),r=e,u+1):("-"!==e&&"+"!==e||!/[eE]/.test(r))&&/[^\d]/.test(e)?(A(p.join("")),h=999,u):(p.push(e),r=e,u+1)}function D(){if(/[^\d\w_]/.test(e)){var t=p.join("");return h=k[t]?8:T[t]?7:6,A(p.join("")),h=999,u}return p.push(e),r=e,u+1}};var n=t("./lib/literals"),i=t("./lib/operators"),a=t("./lib/builtins"),o=t("./lib/literals-300es"),s=t("./lib/builtins-300es"),l=["block-comment","line-comment","preprocessor","operator","integer","float","ident","builtin","keyword","whitespace","eof","integer"]},{"./lib/builtins":419,"./lib/builtins-300es":418,"./lib/literals":421,"./lib/literals-300es":420,"./lib/operators":422}],418:[function(t,e,r){var n=t("./builtins");n=n.slice().filter((function(t){return!/^(gl\_|texture)/.test(t)})),e.exports=n.concat(["gl_VertexID","gl_InstanceID","gl_Position","gl_PointSize","gl_FragCoord","gl_FrontFacing","gl_FragDepth","gl_PointCoord","gl_MaxVertexAttribs","gl_MaxVertexUniformVectors","gl_MaxVertexOutputVectors","gl_MaxFragmentInputVectors","gl_MaxVertexTextureImageUnits","gl_MaxCombinedTextureImageUnits","gl_MaxTextureImageUnits","gl_MaxFragmentUniformVectors","gl_MaxDrawBuffers","gl_MinProgramTexelOffset","gl_MaxProgramTexelOffset","gl_DepthRangeParameters","gl_DepthRange","trunc","round","roundEven","isnan","isinf","floatBitsToInt","floatBitsToUint","intBitsToFloat","uintBitsToFloat","packSnorm2x16","unpackSnorm2x16","packUnorm2x16","unpackUnorm2x16","packHalf2x16","unpackHalf2x16","outerProduct","transpose","determinant","inverse","texture","textureSize","textureProj","textureLod","textureOffset","texelFetch","texelFetchOffset","textureProjOffset","textureLodOffset","textureProjLod","textureProjLodOffset","textureGrad","textureGradOffset","textureProjGrad","textureProjGradOffset"])},{"./builtins":419}],419:[function(t,e,r){e.exports=["abs","acos","all","any","asin","atan","ceil","clamp","cos","cross","dFdx","dFdy","degrees","distance","dot","equal","exp","exp2","faceforward","floor","fract","gl_BackColor","gl_BackLightModelProduct","gl_BackLightProduct","gl_BackMaterial","gl_BackSecondaryColor","gl_ClipPlane","gl_ClipVertex","gl_Color","gl_DepthRange","gl_DepthRangeParameters","gl_EyePlaneQ","gl_EyePlaneR","gl_EyePlaneS","gl_EyePlaneT","gl_Fog","gl_FogCoord","gl_FogFragCoord","gl_FogParameters","gl_FragColor","gl_FragCoord","gl_FragData","gl_FragDepth","gl_FragDepthEXT","gl_FrontColor","gl_FrontFacing","gl_FrontLightModelProduct","gl_FrontLightProduct","gl_FrontMaterial","gl_FrontSecondaryColor","gl_LightModel","gl_LightModelParameters","gl_LightModelProducts","gl_LightProducts","gl_LightSource","gl_LightSourceParameters","gl_MaterialParameters","gl_MaxClipPlanes","gl_MaxCombinedTextureImageUnits","gl_MaxDrawBuffers","gl_MaxFragmentUniformComponents","gl_MaxLights","gl_MaxTextureCoords","gl_MaxTextureImageUnits","gl_MaxTextureUnits","gl_MaxVaryingFloats","gl_MaxVertexAttribs","gl_MaxVertexTextureImageUnits","gl_MaxVertexUniformComponents","gl_ModelViewMatrix","gl_ModelViewMatrixInverse","gl_ModelViewMatrixInverseTranspose","gl_ModelViewMatrixTranspose","gl_ModelViewProjectionMatrix","gl_ModelViewProjectionMatrixInverse","gl_ModelViewProjectionMatrixInverseTranspose","gl_ModelViewProjectionMatrixTranspose","gl_MultiTexCoord0","gl_MultiTexCoord1","gl_MultiTexCoord2","gl_MultiTexCoord3","gl_MultiTexCoord4","gl_MultiTexCoord5","gl_MultiTexCoord6","gl_MultiTexCoord7","gl_Normal","gl_NormalMatrix","gl_NormalScale","gl_ObjectPlaneQ","gl_ObjectPlaneR","gl_ObjectPlaneS","gl_ObjectPlaneT","gl_Point","gl_PointCoord","gl_PointParameters","gl_PointSize","gl_Position","gl_ProjectionMatrix","gl_ProjectionMatrixInverse","gl_ProjectionMatrixInverseTranspose","gl_ProjectionMatrixTranspose","gl_SecondaryColor","gl_TexCoord","gl_TextureEnvColor","gl_TextureMatrix","gl_TextureMatrixInverse","gl_TextureMatrixInverseTranspose","gl_TextureMatrixTranspose","gl_Vertex","greaterThan","greaterThanEqual","inversesqrt","length","lessThan","lessThanEqual","log","log2","matrixCompMult","max","min","mix","mod","normalize","not","notEqual","pow","radians","reflect","refract","sign","sin","smoothstep","sqrt","step","tan","texture2D","texture2DLod","texture2DProj","texture2DProjLod","textureCube","textureCubeLod","texture2DLodEXT","texture2DProjLodEXT","textureCubeLodEXT","texture2DGradEXT","texture2DProjGradEXT","textureCubeGradEXT"]},{}],420:[function(t,e,r){var n=t("./literals");e.exports=n.slice().concat(["layout","centroid","smooth","case","mat2x2","mat2x3","mat2x4","mat3x2","mat3x3","mat3x4","mat4x2","mat4x3","mat4x4","uvec2","uvec3","uvec4","samplerCubeShadow","sampler2DArray","sampler2DArrayShadow","isampler2D","isampler3D","isamplerCube","isampler2DArray","usampler2D","usampler3D","usamplerCube","usampler2DArray","coherent","restrict","readonly","writeonly","resource","atomic_uint","noperspective","patch","sample","subroutine","common","partition","active","filter","image1D","image2D","image3D","imageCube","iimage1D","iimage2D","iimage3D","iimageCube","uimage1D","uimage2D","uimage3D","uimageCube","image1DArray","image2DArray","iimage1DArray","iimage2DArray","uimage1DArray","uimage2DArray","image1DShadow","image2DShadow","image1DArrayShadow","image2DArrayShadow","imageBuffer","iimageBuffer","uimageBuffer","sampler1DArray","sampler1DArrayShadow","isampler1D","isampler1DArray","usampler1D","usampler1DArray","isampler2DRect","usampler2DRect","samplerBuffer","isamplerBuffer","usamplerBuffer","sampler2DMS","isampler2DMS","usampler2DMS","sampler2DMSArray","isampler2DMSArray","usampler2DMSArray"])},{"./literals":421}],421:[function(t,e,r){e.exports=["precision","highp","mediump","lowp","attribute","const","uniform","varying","break","continue","do","for","while","if","else","in","out","inout","float","int","uint","void","bool","true","false","discard","return","mat2","mat3","mat4","vec2","vec3","vec4","ivec2","ivec3","ivec4","bvec2","bvec3","bvec4","sampler1D","sampler2D","sampler3D","samplerCube","sampler1DShadow","sampler2DShadow","struct","asm","class","union","enum","typedef","template","this","packed","goto","switch","default","inline","noinline","volatile","public","static","extern","external","interface","long","short","double","half","fixed","unsigned","input","output","hvec2","hvec3","hvec4","dvec2","dvec3","dvec4","fvec2","fvec3","fvec4","sampler2DRect","sampler3DRect","sampler2DRectShadow","sizeof","cast","namespace","using"]},{}],422:[function(t,e,r){e.exports=["<<=",">>=","++","--","<<",">>","<=",">=","==","!=","&&","||","+=","-=","*=","/=","%=","&=","^^","^=","|=","(",")","[","]",".","!","~","*","/","%","+","-","<",">","&","^","|","?",":","=",",",";","{","}"]},{}],423:[function(t,e,r){var n=t("./index");e.exports=function(t,e){var r=n(e),i=[];return i=(i=i.concat(r(t))).concat(r(null))}},{"./index":417}],424:[function(t,e,r){e.exports=function(t){"string"==typeof t&&(t=[t]);for(var e=[].slice.call(arguments,1),r=[],n=0;n */ +r.read=function(t,e,r,n,i){var a,o,s=8*i-n-1,l=(1<>1,u=-7,f=r?i-1:0,h=r?-1:1,p=t[e+f];for(f+=h,a=p&(1<<-u)-1,p>>=-u,u+=s;u>0;a=256*a+t[e+f],f+=h,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=n;u>0;o=256*o+t[e+f],f+=h,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),a-=c}return(p?-1:1)*o*Math.pow(2,a-n)},r.write=function(t,e,r,n,i,a){var o,s,l,c=8*a-i-1,u=(1<>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:a-1,d=n?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+f>=1?h/l:h*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(e*l-1)*Math.pow(2,i),o+=f):(s=e*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;t[r+p]=255&s,p+=d,s/=256,i-=8);for(o=o<0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*m}},{}],428:[function(t,e,r){"use strict";e.exports=function(t,e){var r=t.length;if(0===r)throw new Error("Must have at least d+1 points");var i=t[0].length;if(r<=i)throw new Error("Must input at least d+1 points");var o=t.slice(0,i+1),s=n.apply(void 0,o);if(0===s)throw new Error("Input not in general position");for(var l=new Array(i+1),u=0;u<=i;++u)l[u]=u;s<0&&(l[0]=1,l[1]=0);var f=new a(l,new Array(i+1),!1),h=f.adjacent,p=new Array(i+2);for(u=0;u<=i;++u){for(var d=l.slice(),m=0;m<=i;++m)m===u&&(d[m]=-1);var g=d[0];d[0]=d[1],d[1]=g;var v=new a(d,new Array(i+1),!0);h[u]=v,p[u]=v}p[i+1]=f;for(u=0;u<=i;++u){d=h[u].vertices;var y=h[u].adjacent;for(m=0;m<=i;++m){var x=d[m];if(x<0)y[m]=f;else for(var b=0;b<=i;++b)h[b].vertices.indexOf(x)<0&&(y[m]=h[b])}}var _=new c(i,o,p),w=!!e;for(u=i+1;u0;)for(var s=(t=o.pop()).adjacent,l=0;l<=r;++l){var c=s[l];if(c.boundary&&!(c.lastVisited<=-n)){for(var u=c.vertices,f=0;f<=r;++f){var h=u[f];i[f]=h<0?e:a[h]}var p=this.orient();if(p>0)return c;c.lastVisited=-n,0===p&&o.push(c)}}return null},u.walk=function(t,e){var r=this.vertices.length-1,n=this.dimension,i=this.vertices,a=this.tuple,o=e?this.interior.length*Math.random()|0:this.interior.length-1,s=this.interior[o];t:for(;!s.boundary;){for(var l=s.vertices,c=s.adjacent,u=0;u<=n;++u)a[u]=i[l[u]];s.lastVisited=r;for(u=0;u<=n;++u){var f=c[u];if(!(f.lastVisited>=r)){var h=a[u];a[u]=t;var p=this.orient();if(a[u]=h,p<0){s=f;continue t}f.boundary?f.lastVisited=-r:f.lastVisited=r}}return}return s},u.addPeaks=function(t,e){var r=this.vertices.length-1,n=this.dimension,i=this.vertices,l=this.tuple,c=this.interior,u=this.simplices,f=[e];e.lastVisited=r,e.vertices[e.vertices.indexOf(-1)]=r,e.boundary=!1,c.push(e);for(var h=[];f.length>0;){var p=(e=f.pop()).vertices,d=e.adjacent,m=p.indexOf(r);if(!(m<0))for(var g=0;g<=n;++g)if(g!==m){var v=d[g];if(v.boundary&&!(v.lastVisited>=r)){var y=v.vertices;if(v.lastVisited!==-r){for(var x=0,b=0;b<=n;++b)y[b]<0?(x=b,l[b]=t):l[b]=i[y[b]];if(this.orient()>0){y[x]=r,v.boundary=!1,c.push(v),f.push(v),v.lastVisited=r;continue}v.lastVisited=-r}var _=v.adjacent,w=p.slice(),T=d.slice(),k=new a(w,T,!0);u.push(k);var A=_.indexOf(e);if(!(A<0)){_[A]=k,T[m]=v,w[g]=-1,T[g]=e,d[g]=k,k.flip();for(b=0;b<=n;++b){var M=w[b];if(!(M<0||M===r)){for(var S=new Array(n-1),E=0,L=0;L<=n;++L){var C=w[L];C<0||L===b||(S[E++]=C)}h.push(new o(S,k,b))}}}}}}h.sort(s);for(g=0;g+1=0?o[l++]=s[u]:c=1&u;if(c===(1&t)){var f=o[0];o[0]=o[1],o[1]=f}e.push(o)}}return e}},{"robust-orientation":524,"simplicial-complex":534}],429:[function(t,e,r){"function"==typeof Object.create?e.exports=function(t,e){e&&(t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(t,e){if(e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}}},{}],430:[function(t,e,r){"use strict";var n=t("binary-search-bounds");function i(t,e,r,n,i){this.mid=t,this.left=e,this.right=r,this.leftPoints=n,this.rightPoints=i,this.count=(e?e.count:0)+(r?r.count:0)+n.length}e.exports=function(t){if(!t||0===t.length)return new v(null);return new v(g(t))};var a=i.prototype;function o(t,e){t.mid=e.mid,t.left=e.left,t.right=e.right,t.leftPoints=e.leftPoints,t.rightPoints=e.rightPoints,t.count=e.count}function s(t,e){var r=g(e);t.mid=r.mid,t.left=r.left,t.right=r.right,t.leftPoints=r.leftPoints,t.rightPoints=r.rightPoints,t.count=r.count}function l(t,e){var r=t.intervals([]);r.push(e),s(t,r)}function c(t,e){var r=t.intervals([]),n=r.indexOf(e);return n<0?0:(r.splice(n,1),s(t,r),1)}function u(t,e,r){for(var n=0;n=0&&t[n][1]>=e;--n){var i=r(t[n]);if(i)return i}}function h(t,e){for(var r=0;r>1],a=[],o=[],s=[];for(r=0;r3*(e+1)?l(this,t):this.left.insert(t):this.left=g([t]);else if(t[0]>this.mid)this.right?4*(this.right.count+1)>3*(e+1)?l(this,t):this.right.insert(t):this.right=g([t]);else{var r=n.ge(this.leftPoints,t,d),i=n.ge(this.rightPoints,t,m);this.leftPoints.splice(r,0,t),this.rightPoints.splice(i,0,t)}},a.remove=function(t){var e=this.count-this.leftPoints;if(t[1]3*(e-1)?c(this,t):2===(s=this.left.remove(t))?(this.left=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(t[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(e-1)?c(this,t):2===(s=this.right.remove(t))?(this.right=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(1===this.count)return this.leftPoints[0]===t?2:0;if(1===this.leftPoints.length&&this.leftPoints[0]===t){if(this.left&&this.right){for(var r=this,i=this.left;i.right;)r=i,i=i.right;if(r===this)i.right=this.right;else{var a=this.left,s=this.right;r.count-=i.count,r.right=i.left,i.left=a,i.right=s}o(this,i),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?o(this,this.left):o(this,this.right);return 1}for(a=n.ge(this.leftPoints,t,d);athis.mid){var r;if(this.right)if(r=this.right.queryPoint(t,e))return r;return f(this.rightPoints,t,e)}return h(this.leftPoints,e)},a.queryInterval=function(t,e,r){var n;if(tthis.mid&&this.right&&(n=this.right.queryInterval(t,e,r)))return n;return ethis.mid?f(this.rightPoints,t,r):h(this.leftPoints,r)};var y=v.prototype;y.insert=function(t){this.root?this.root.insert(t):this.root=new i(t[0],null,null,[t],[t])},y.remove=function(t){if(this.root){var e=this.root.remove(t);return 2===e&&(this.root=null),0!==e}return!1},y.queryPoint=function(t,e){if(this.root)return this.root.queryPoint(t,e)},y.queryInterval=function(t,e,r){if(t<=e&&this.root)return this.root.queryInterval(t,e,r)},Object.defineProperty(y,"count",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(y,"intervals",{get:function(){return this.root?this.root.intervals([]):[]}})},{"binary-search-bounds":100}],431:[function(t,e,r){"use strict";e.exports=function(t){for(var e=new Array(t),r=0;r + * @license MIT + */ +e.exports=function(t){return null!=t&&(n(t)||function(t){return"function"==typeof t.readFloatLE&&"function"==typeof t.slice&&n(t.slice(0,0))}(t)||!!t._isBuffer)}},{}],434:[function(t,e,r){"use strict";e.exports="undefined"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\//.test(navigator.appVersion))},{}],435:[function(t,e,r){"use strict";e.exports=a,e.exports.isMobile=a,e.exports.default=a;var n=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series[46]0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,i=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series[46]0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino|android|ipad|playbook|silk/i;function a(t){t||(t={});var e=t.ua;if(e||"undefined"==typeof navigator||(e=navigator.userAgent),e&&e.headers&&"string"==typeof e.headers["user-agent"]&&(e=e.headers["user-agent"]),"string"!=typeof e)return!1;var r=t.tablet?i.test(e):n.test(e);return!r&&t.tablet&&t.featureDetect&&navigator&&navigator.maxTouchPoints>1&&-1!==e.indexOf("Macintosh")&&-1!==e.indexOf("Safari")&&(r=!0),r}},{}],436:[function(t,e,r){"use strict";e.exports=function(t){var e=typeof t;return null!==t&&("object"===e||"function"===e)}},{}],437:[function(t,e,r){"use strict";var n=Object.prototype.toString;e.exports=function(t){var e;return"[object Object]"===n.call(t)&&(null===(e=Object.getPrototypeOf(t))||e===Object.getPrototypeOf({}))}},{}],438:[function(t,e,r){"use strict";e.exports=function(t){for(var e,r=t.length,n=0;n13)&&32!==e&&133!==e&&160!==e&&5760!==e&&6158!==e&&(e<8192||e>8205)&&8232!==e&&8233!==e&&8239!==e&&8287!==e&&8288!==e&&12288!==e&&65279!==e)return!1;return!0}},{}],439:[function(t,e,r){"use strict";e.exports=function(t){return"string"==typeof t&&(t=t.trim(),!!(/^[mzlhvcsqta]\s*[-+.0-9][^mlhvzcsqta]+/i.test(t)&&/[\dz]$/i.test(t)&&t.length>4))}},{}],440:[function(t,e,r){e.exports=function(t,e,r){return t*(1-r)+e*r}},{}],441:[function(t,e,r){!function(t,n){"object"==typeof r&&void 0!==e?e.exports=n():(t=t||self).mapboxgl=n()}(this,(function(){"use strict";var t,e,r;function n(n,i){if(t)if(e){var a="var sharedChunk = {}; ("+t+")(sharedChunk); ("+e+")(sharedChunk);",o={};t(o),(r=i(o)).workerUrl=window.URL.createObjectURL(new Blob([a],{type:"text/javascript"}))}else e=i;else t=i}return n(0,(function(t){function e(t,e){return t(e={exports:{}},e.exports),e.exports}var r=n;function n(t,e,r,n){this.cx=3*t,this.bx=3*(r-t)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*e,this.by=3*(n-e)-this.cy,this.ay=1-this.cy-this.by,this.p1x=t,this.p1y=n,this.p2x=r,this.p2y=n}n.prototype.sampleCurveX=function(t){return((this.ax*t+this.bx)*t+this.cx)*t},n.prototype.sampleCurveY=function(t){return((this.ay*t+this.by)*t+this.cy)*t},n.prototype.sampleCurveDerivativeX=function(t){return(3*this.ax*t+2*this.bx)*t+this.cx},n.prototype.solveCurveX=function(t,e){var r,n,i,a,o;for(void 0===e&&(e=1e-6),i=t,o=0;o<8;o++){if(a=this.sampleCurveX(i)-t,Math.abs(a)(n=1))return n;for(;ra?r=i:n=i,i=.5*(n-r)+r}return i},n.prototype.solve=function(t,e){return this.sampleCurveY(this.solveCurveX(t,e))};var i=a;function a(t,e){this.x=t,this.y=e}function o(t,e,n,i){var a=new r(t,e,n,i);return function(t){return a.solve(t)}}a.prototype={clone:function(){return new a(this.x,this.y)},add:function(t){return this.clone()._add(t)},sub:function(t){return this.clone()._sub(t)},multByPoint:function(t){return this.clone()._multByPoint(t)},divByPoint:function(t){return this.clone()._divByPoint(t)},mult:function(t){return this.clone()._mult(t)},div:function(t){return this.clone()._div(t)},rotate:function(t){return this.clone()._rotate(t)},rotateAround:function(t,e){return this.clone()._rotateAround(t,e)},matMult:function(t){return this.clone()._matMult(t)},unit:function(){return this.clone()._unit()},perp:function(){return this.clone()._perp()},round:function(){return this.clone()._round()},mag:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},equals:function(t){return this.x===t.x&&this.y===t.y},dist:function(t){return Math.sqrt(this.distSqr(t))},distSqr:function(t){var e=t.x-this.x,r=t.y-this.y;return e*e+r*r},angle:function(){return Math.atan2(this.y,this.x)},angleTo:function(t){return Math.atan2(this.y-t.y,this.x-t.x)},angleWith:function(t){return this.angleWithSep(t.x,t.y)},angleWithSep:function(t,e){return Math.atan2(this.x*e-this.y*t,this.x*t+this.y*e)},_matMult:function(t){var e=t[0]*this.x+t[1]*this.y,r=t[2]*this.x+t[3]*this.y;return this.x=e,this.y=r,this},_add:function(t){return this.x+=t.x,this.y+=t.y,this},_sub:function(t){return this.x-=t.x,this.y-=t.y,this},_mult:function(t){return this.x*=t,this.y*=t,this},_div:function(t){return this.x/=t,this.y/=t,this},_multByPoint:function(t){return this.x*=t.x,this.y*=t.y,this},_divByPoint:function(t){return this.x/=t.x,this.y/=t.y,this},_unit:function(){return this._div(this.mag()),this},_perp:function(){var t=this.y;return this.y=this.x,this.x=-t,this},_rotate:function(t){var e=Math.cos(t),r=Math.sin(t),n=e*this.x-r*this.y,i=r*this.x+e*this.y;return this.x=n,this.y=i,this},_rotateAround:function(t,e){var r=Math.cos(t),n=Math.sin(t),i=e.x+r*(this.x-e.x)-n*(this.y-e.y),a=e.y+n*(this.x-e.x)+r*(this.y-e.y);return this.x=i,this.y=a,this},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}},a.convert=function(t){return t instanceof a?t:Array.isArray(t)?new a(t[0],t[1]):t};var s=o(.25,.1,.25,1);function l(t,e,r){return Math.min(r,Math.max(e,t))}function c(t,e,r){var n=r-e,i=((t-e)%n+n)%n+e;return i===e?r:i}function u(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,i=e;n>e/4).toString(16):([1e7]+-[1e3]+-4e3+-8e3+-1e11).replace(/[018]/g,t)}()}function d(t){return!!t&&/^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(t)}function m(t,e){t.forEach((function(t){e[t]&&(e[t]=e[t].bind(e))}))}function g(t,e){return-1!==t.indexOf(e,t.length-e.length)}function v(t,e,r){var n={};for(var i in t)n[i]=e.call(r||this,t[i],i,t);return n}function y(t,e,r){var n={};for(var i in t)e.call(r||this,t[i],i,t)&&(n[i]=t[i]);return n}function x(t){return Array.isArray(t)?t.map(x):"object"==typeof t&&t?v(t,x):t}var b={};function _(t){b[t]||("undefined"!=typeof console&&console.warn(t),b[t]=!0)}function w(t,e,r){return(r.y-t.y)*(e.x-t.x)>(e.y-t.y)*(r.x-t.x)}function T(t){for(var e=0,r=0,n=t.length,i=n-1,a=void 0,o=void 0;r@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)(?:\=(?:([^\x00-\x20\(\)<>@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)|(?:\"((?:[^"\\]|\\.)*)\")))?/g,(function(t,r,n,i){var a=n||i;return e[r]=!a||a.toLowerCase(),""})),e["max-age"]){var r=parseInt(e["max-age"],10);isNaN(r)?delete e["max-age"]:e["max-age"]=r}return e}var M=null;function S(t){if(null==M){var e=t.navigator?t.navigator.userAgent:null;M=!!t.safari||!(!e||!(/\b(iPad|iPhone|iPod)\b/.test(e)||e.match("Safari")&&!e.match("Chrome")))}return M}function E(t){try{var e=self[t];return e.setItem("_mapbox_test_",1),e.removeItem("_mapbox_test_"),!0}catch(t){return!1}}var L,C,P,I,O=self.performance&&self.performance.now?self.performance.now.bind(self.performance):Date.now.bind(Date),z=self.requestAnimationFrame||self.mozRequestAnimationFrame||self.webkitRequestAnimationFrame||self.msRequestAnimationFrame,D=self.cancelAnimationFrame||self.mozCancelAnimationFrame||self.webkitCancelAnimationFrame||self.msCancelAnimationFrame,R={now:O,frame:function(t){var e=z(t);return{cancel:function(){return D(e)}}},getImageData:function(t,e){void 0===e&&(e=0);var r=self.document.createElement("canvas"),n=r.getContext("2d");if(!n)throw new Error("failed to create canvas 2d context");return r.width=t.width,r.height=t.height,n.drawImage(t,0,0,t.width,t.height),n.getImageData(-e,-e,t.width+2*e,t.height+2*e)},resolveURL:function(t){return L||(L=self.document.createElement("a")),L.href=t,L.href},hardwareConcurrency:self.navigator.hardwareConcurrency||4,get devicePixelRatio(){return self.devicePixelRatio},get prefersReducedMotion(){return!!self.matchMedia&&(null==C&&(C=self.matchMedia("(prefers-reduced-motion: reduce)")),C.matches)}},F={API_URL:"https://api.mapbox.com",get EVENTS_URL(){return this.API_URL?0===this.API_URL.indexOf("https://api.mapbox.cn")?"https://events.mapbox.cn/events/v2":0===this.API_URL.indexOf("https://api.mapbox.com")?"https://events.mapbox.com/events/v2":null:null},FEEDBACK_URL:"https://apps.mapbox.com/feedback",REQUIRE_ACCESS_TOKEN:!0,ACCESS_TOKEN:null,MAX_PARALLEL_IMAGE_REQUESTS:16},B={supported:!1,testSupport:function(t){if(N||!I)return;j?U(t):P=t}},N=!1,j=!1;function U(t){var e=t.createTexture();t.bindTexture(t.TEXTURE_2D,e);try{if(t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,I),t.isContextLost())return;B.supported=!0}catch(t){}t.deleteTexture(e),N=!0}self.document&&((I=self.document.createElement("img")).onload=function(){P&&U(P),P=null,j=!0},I.onerror=function(){N=!0,P=null},I.src="data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAQAAAAfQ//73v/+BiOh/AAA=");var V="01";var H=function(t,e){this._transformRequestFn=t,this._customAccessToken=e,this._createSkuToken()};function q(t){return 0===t.indexOf("mapbox:")}H.prototype._createSkuToken=function(){var t=function(){for(var t="",e=0;e<10;e++)t+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[Math.floor(62*Math.random())];return{token:["1",V,t].join(""),tokenExpiresAt:Date.now()+432e5}}();this._skuToken=t.token,this._skuTokenExpiresAt=t.tokenExpiresAt},H.prototype._isSkuTokenExpired=function(){return Date.now()>this._skuTokenExpiresAt},H.prototype.transformRequest=function(t,e){return this._transformRequestFn&&this._transformRequestFn(t,e)||{url:t}},H.prototype.normalizeStyleURL=function(t,e){if(!q(t))return t;var r=X(t);return r.path="/styles/v1"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},H.prototype.normalizeGlyphsURL=function(t,e){if(!q(t))return t;var r=X(t);return r.path="/fonts/v1"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},H.prototype.normalizeSourceURL=function(t,e){if(!q(t))return t;var r=X(t);return r.path="/v4/"+r.authority+".json",r.params.push("secure"),this._makeAPIURL(r,this._customAccessToken||e)},H.prototype.normalizeSpriteURL=function(t,e,r,n){var i=X(t);return q(t)?(i.path="/styles/v1"+i.path+"/sprite"+e+r,this._makeAPIURL(i,this._customAccessToken||n)):(i.path+=""+e+r,Z(i))},H.prototype.normalizeTileURL=function(t,e){if(this._isSkuTokenExpired()&&this._createSkuToken(),t&&!q(t))return t;var r=X(t),n=R.devicePixelRatio>=2||512===e?"@2x":"",i=B.supported?".webp":"$1";r.path=r.path.replace(/(\.(png|jpg)\d*)(?=$)/,""+n+i),r.path=r.path.replace(/^.+\/v4\//,"/"),r.path="/v4"+r.path;var a=this._customAccessToken||function(t){for(var e=0,r=t;e=1&&self.localStorage.setItem(e,JSON.stringify(this.eventData))}catch(t){_("Unable to write to LocalStorage")}},K.prototype.processRequests=function(t){},K.prototype.postEvent=function(t,e,r,n){var i=this;if(F.EVENTS_URL){var a=X(F.EVENTS_URL);a.params.push("access_token="+(n||F.ACCESS_TOKEN||""));var o={event:this.type,created:new Date(t).toISOString(),sdkIdentifier:"mapbox-gl-js",sdkVersion:"1.10.1",skuId:V,userId:this.anonId},s=e?u(o,e):o,l={url:Z(a),headers:{"Content-Type":"text/plain"},body:JSON.stringify([s])};this.pendingRequest=bt(l,(function(t){i.pendingRequest=null,r(t),i.saveEventData(),i.processRequests(n)}))}},K.prototype.queueRequest=function(t,e){this.queue.push(t),this.processRequests(e)};var Q,$,tt=function(t){function e(){t.call(this,"map.load"),this.success={},this.skuToken=""}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.postMapLoadEvent=function(t,e,r,n){this.skuToken=r,(F.EVENTS_URL&&n||F.ACCESS_TOKEN&&Array.isArray(t)&&t.some((function(t){return q(t)||Y(t)})))&&this.queueRequest({id:e,timestamp:Date.now()},n)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){var r=this.queue.shift(),n=r.id,i=r.timestamp;n&&this.success[n]||(this.anonId||this.fetchEventData(),d(this.anonId)||(this.anonId=p()),this.postEvent(i,{skuToken:this.skuToken},(function(t){t||n&&(e.success[n]=!0)}),t))}},e}(K),et=new(function(t){function e(e){t.call(this,"appUserTurnstile"),this._customAccessToken=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.postTurnstileEvent=function(t,e){F.EVENTS_URL&&F.ACCESS_TOKEN&&Array.isArray(t)&&t.some((function(t){return q(t)||Y(t)}))&&this.queueRequest(Date.now(),e)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){this.anonId&&this.eventData.lastSuccess&&this.eventData.tokenU||this.fetchEventData();var r=J(F.ACCESS_TOKEN),n=r?r.u:F.ACCESS_TOKEN,i=n!==this.eventData.tokenU;d(this.anonId)||(this.anonId=p(),i=!0);var a=this.queue.shift();if(this.eventData.lastSuccess){var o=new Date(this.eventData.lastSuccess),s=new Date(a),l=(a-this.eventData.lastSuccess)/864e5;i=i||l>=1||l<-1||o.getDate()!==s.getDate()}else i=!0;if(!i)return this.processRequests();this.postEvent(a,{"enabled.telemetry":!1},(function(t){t||(e.eventData.lastSuccess=a,e.eventData.tokenU=n)}),t)}},e}(K)),rt=et.postTurnstileEvent.bind(et),nt=new tt,it=nt.postMapLoadEvent.bind(nt),at=500,ot=50;function st(){self.caches&&!Q&&(Q=self.caches.open("mapbox-tiles"))}function lt(t,e,r){if(st(),Q){var n={status:e.status,statusText:e.statusText,headers:new self.Headers};e.headers.forEach((function(t,e){return n.headers.set(e,t)}));var i=A(e.headers.get("Cache-Control")||"");if(!i["no-store"])i["max-age"]&&n.headers.set("Expires",new Date(r+1e3*i["max-age"]).toUTCString()),new Date(n.headers.get("Expires")).getTime()-r<42e4||function(t,e){if(void 0===$)try{new Response(new ReadableStream),$=!0}catch(t){$=!1}$?e(t.body):t.blob().then(e)}(e,(function(e){var r=new self.Response(e,n);st(),Q&&Q.then((function(e){return e.put(ct(t.url),r)})).catch((function(t){return _(t.message)}))}))}}function ct(t){var e=t.indexOf("?");return e<0?t:t.slice(0,e)}function ut(t,e){if(st(),!Q)return e(null);var r=ct(t.url);Q.then((function(t){t.match(r).then((function(n){var i=function(t){if(!t)return!1;var e=new Date(t.headers.get("Expires")||0),r=A(t.headers.get("Cache-Control")||"");return e>Date.now()&&!r["no-cache"]}(n);t.delete(r),i&&t.put(r,n.clone()),e(null,n,i)})).catch(e)})).catch(e)}var ft,ht=1/0;function pt(){return null==ft&&(ft=self.OffscreenCanvas&&new self.OffscreenCanvas(1,1).getContext("2d")&&"function"==typeof self.createImageBitmap),ft}var dt={Unknown:"Unknown",Style:"Style",Source:"Source",Tile:"Tile",Glyphs:"Glyphs",SpriteImage:"SpriteImage",SpriteJSON:"SpriteJSON",Image:"Image"};"function"==typeof Object.freeze&&Object.freeze(dt);var mt=function(t){function e(e,r,n){401===r&&Y(n)&&(e+=": you may have provided an invalid Mapbox access token. See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes"),t.call(this,e),this.status=r,this.url=n,this.name=this.constructor.name,this.message=e}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.toString=function(){return this.name+": "+this.message+" ("+this.status+"): "+this.url},e}(Error),gt=k()?function(){return self.worker&&self.worker.referrer}:function(){return("blob:"===self.location.protocol?self.parent:self).location.href};function vt(t,e){var r,n=new self.AbortController,i=new self.Request(t.url,{method:t.method||"GET",body:t.body,credentials:t.credentials,headers:t.headers,referrer:gt(),signal:n.signal}),a=!1,o=!1,s=(r=i.url).indexOf("sku=")>0&&Y(r);"json"===t.type&&i.headers.set("Accept","application/json");var l=function(r,n,a){if(!o){if(r&&"SecurityError"!==r.message&&_(r),n&&a)return c(n);var l=Date.now();self.fetch(i).then((function(r){if(r.ok){var n=s?r.clone():null;return c(r,n,l)}return e(new mt(r.statusText,r.status,t.url))})).catch((function(t){20!==t.code&&e(new Error(t.message))}))}},c=function(r,n,s){("arrayBuffer"===t.type?r.arrayBuffer():"json"===t.type?r.json():r.text()).then((function(t){o||(n&&s&<(i,n,s),a=!0,e(null,t,r.headers.get("Cache-Control"),r.headers.get("Expires")))})).catch((function(t){o||e(new Error(t.message))}))};return s?ut(i,l):l(null,null),{cancel:function(){o=!0,a||n.abort()}}}var yt=function(t,e){if(r=t.url,!(/^file:/.test(r)||/^file:/.test(gt())&&!/^\w+:/.test(r))){if(self.fetch&&self.Request&&self.AbortController&&self.Request.prototype.hasOwnProperty("signal"))return vt(t,e);if(k()&&self.worker&&self.worker.actor){return self.worker.actor.send("getResource",t,e,void 0,!0)}}var r;return function(t,e){var r=new self.XMLHttpRequest;for(var n in r.open(t.method||"GET",t.url,!0),"arrayBuffer"===t.type&&(r.responseType="arraybuffer"),t.headers)r.setRequestHeader(n,t.headers[n]);return"json"===t.type&&(r.responseType="text",r.setRequestHeader("Accept","application/json")),r.withCredentials="include"===t.credentials,r.onerror=function(){e(new Error(r.statusText))},r.onload=function(){if((r.status>=200&&r.status<300||0===r.status)&&null!==r.response){var n=r.response;if("json"===t.type)try{n=JSON.parse(r.response)}catch(t){return e(t)}e(null,n,r.getResponseHeader("Cache-Control"),r.getResponseHeader("Expires"))}else e(new mt(r.statusText,r.status,t.url))},r.send(t.body),{cancel:function(){return r.abort()}}}(t,e)},xt=function(t,e){return yt(u(t,{type:"arrayBuffer"}),e)},bt=function(t,e){return yt(u(t,{method:"POST"}),e)};var _t,wt;_t=[],wt=0;var Tt=function(t,e){if(B.supported&&(t.headers||(t.headers={}),t.headers.accept="image/webp,*/*"),wt>=F.MAX_PARALLEL_IMAGE_REQUESTS){var r={requestParameters:t,callback:e,cancelled:!1,cancel:function(){this.cancelled=!0}};return _t.push(r),r}wt++;var n=!1,i=function(){if(!n)for(n=!0,wt--;_t.length&&wt0||this._oneTimeListeners&&this._oneTimeListeners[t]&&this._oneTimeListeners[t].length>0||this._eventedParent&&this._eventedParent.listens(t)},Et.prototype.setEventedParent=function(t,e){return this._eventedParent=t,this._eventedParentData=e,this};var Lt={$version:8,$root:{version:{required:!0,type:"enum",values:[8]},name:{type:"string"},metadata:{type:"*"},center:{type:"array",value:"number"},zoom:{type:"number"},bearing:{type:"number",default:0,period:360,units:"degrees"},pitch:{type:"number",default:0,units:"degrees"},light:{type:"light"},sources:{required:!0,type:"sources"},sprite:{type:"string"},glyphs:{type:"string"},transition:{type:"transition"},layers:{required:!0,type:"array",value:"layer"}},sources:{"*":{type:"source"}},source:["source_vector","source_raster","source_raster_dem","source_geojson","source_video","source_image"],source_vector:{type:{required:!0,type:"enum",values:{vector:{}}},url:{type:"string"},tiles:{type:"array",value:"string"},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129]},scheme:{type:"enum",values:{xyz:{},tms:{}},default:"xyz"},minzoom:{type:"number",default:0},maxzoom:{type:"number",default:22},attribution:{type:"string"},promoteId:{type:"promoteId"},"*":{type:"*"}},source_raster:{type:{required:!0,type:"enum",values:{raster:{}}},url:{type:"string"},tiles:{type:"array",value:"string"},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:"number",default:0},maxzoom:{type:"number",default:22},tileSize:{type:"number",default:512,units:"pixels"},scheme:{type:"enum",values:{xyz:{},tms:{}},default:"xyz"},attribution:{type:"string"},"*":{type:"*"}},source_raster_dem:{type:{required:!0,type:"enum",values:{"raster-dem":{}}},url:{type:"string"},tiles:{type:"array",value:"string"},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:"number",default:0},maxzoom:{type:"number",default:22},tileSize:{type:"number",default:512,units:"pixels"},attribution:{type:"string"},encoding:{type:"enum",values:{terrarium:{},mapbox:{}},default:"mapbox"},"*":{type:"*"}},source_geojson:{type:{required:!0,type:"enum",values:{geojson:{}}},data:{type:"*"},maxzoom:{type:"number",default:18},attribution:{type:"string"},buffer:{type:"number",default:128,maximum:512,minimum:0},tolerance:{type:"number",default:.375},cluster:{type:"boolean",default:!1},clusterRadius:{type:"number",default:50,minimum:0},clusterMaxZoom:{type:"number"},clusterProperties:{type:"*"},lineMetrics:{type:"boolean",default:!1},generateId:{type:"boolean",default:!1},promoteId:{type:"promoteId"}},source_video:{type:{required:!0,type:"enum",values:{video:{}}},urls:{required:!0,type:"array",value:"string"},coordinates:{required:!0,type:"array",length:4,value:{type:"array",length:2,value:"number"}}},source_image:{type:{required:!0,type:"enum",values:{image:{}}},url:{required:!0,type:"string"},coordinates:{required:!0,type:"array",length:4,value:{type:"array",length:2,value:"number"}}},layer:{id:{type:"string",required:!0},type:{type:"enum",values:{fill:{},line:{},symbol:{},circle:{},heatmap:{},"fill-extrusion":{},raster:{},hillshade:{},background:{}},required:!0},metadata:{type:"*"},source:{type:"string"},"source-layer":{type:"string"},minzoom:{type:"number",minimum:0,maximum:24},maxzoom:{type:"number",minimum:0,maximum:24},filter:{type:"filter"},layout:{type:"layout"},paint:{type:"paint"}},layout:["layout_fill","layout_line","layout_circle","layout_heatmap","layout_fill-extrusion","layout_symbol","layout_raster","layout_hillshade","layout_background"],layout_background:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_fill:{"fill-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_circle:{"circle-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_heatmap:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},"layout_fill-extrusion":{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_line:{"line-cap":{type:"enum",values:{butt:{},round:{},square:{}},default:"butt",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"line-join":{type:"enum",values:{bevel:{},round:{},miter:{}},default:"miter",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"line-miter-limit":{type:"number",default:2,requires:[{"line-join":"miter"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-round-limit":{type:"number",default:1.05,requires:[{"line-join":"round"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_symbol:{"symbol-placement":{type:"enum",values:{point:{},line:{},"line-center":{}},default:"point",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"symbol-spacing":{type:"number",default:250,minimum:1,units:"pixels",requires:[{"symbol-placement":"line"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"symbol-avoid-edges":{type:"boolean",default:!1,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"symbol-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"symbol-z-order":{type:"enum",values:{auto:{},"viewport-y":{},source:{}},default:"auto",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-allow-overlap":{type:"boolean",default:!1,requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-ignore-placement":{type:"boolean",default:!1,requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-optional":{type:"boolean",default:!1,requires:["icon-image","text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-rotation-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-size":{type:"number",default:1,minimum:0,units:"factor of the original icon size",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-text-fit":{type:"enum",values:{none:{},width:{},height:{},both:{}},default:"none",requires:["icon-image","text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-text-fit-padding":{type:"array",value:"number",length:4,default:[0,0,0,0],units:"pixels",requires:["icon-image","text-field",{"icon-text-fit":["both","width","height"]}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-image":{type:"resolvedImage",tokens:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-rotate":{type:"number",default:0,period:360,units:"degrees",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-padding":{type:"number",default:2,minimum:0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-keep-upright":{type:"boolean",default:!1,requires:["icon-image",{"icon-rotation-alignment":"map"},{"symbol-placement":["line","line-center"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-offset":{type:"array",value:"number",length:2,default:[0,0],requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-anchor":{type:"enum",values:{center:{},left:{},right:{},top:{},bottom:{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},default:"center",requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-pitch-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-pitch-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-rotation-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-field":{type:"formatted",default:"",tokens:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-font":{type:"array",value:"string",default:["Open Sans Regular","Arial Unicode MS Regular"],requires:["text-field"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-size":{type:"number",default:16,minimum:0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-max-width":{type:"number",default:10,minimum:0,units:"ems",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-line-height":{type:"number",default:1.2,units:"ems",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-letter-spacing":{type:"number",default:0,units:"ems",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-justify":{type:"enum",values:{auto:{},left:{},center:{},right:{}},default:"center",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-radial-offset":{type:"number",units:"ems",default:0,requires:["text-field"],"property-type":"data-driven",expression:{interpolated:!0,parameters:["zoom","feature"]}},"text-variable-anchor":{type:"array",value:"enum",values:{center:{},left:{},right:{},top:{},bottom:{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},requires:["text-field",{"symbol-placement":["point"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-anchor":{type:"enum",values:{center:{},left:{},right:{},top:{},bottom:{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},default:"center",requires:["text-field",{"!":"text-variable-anchor"}],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-max-angle":{type:"number",default:45,units:"degrees",requires:["text-field",{"symbol-placement":["line","line-center"]}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-writing-mode":{type:"array",value:"enum",values:{horizontal:{},vertical:{}},requires:["text-field",{"symbol-placement":["point"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-rotate":{type:"number",default:0,period:360,units:"degrees",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-padding":{type:"number",default:2,minimum:0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-keep-upright":{type:"boolean",default:!0,requires:["text-field",{"text-rotation-alignment":"map"},{"symbol-placement":["line","line-center"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-transform":{type:"enum",values:{none:{},uppercase:{},lowercase:{}},default:"none",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-offset":{type:"array",value:"number",units:"ems",length:2,default:[0,0],requires:["text-field",{"!":"text-radial-offset"}],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-allow-overlap":{type:"boolean",default:!1,requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-ignore-placement":{type:"boolean",default:!1,requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-optional":{type:"boolean",default:!1,requires:["text-field","icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_raster:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_hillshade:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},filter:{type:"array",value:"*"},filter_operator:{type:"enum",values:{"==":{},"!=":{},">":{},">=":{},"<":{},"<=":{},in:{},"!in":{},all:{},any:{},none:{},has:{},"!has":{},within:{}}},geometry_type:{type:"enum",values:{Point:{},LineString:{},Polygon:{}}},function:{expression:{type:"expression"},stops:{type:"array",value:"function_stop"},base:{type:"number",default:1,minimum:0},property:{type:"string",default:"$zoom"},type:{type:"enum",values:{identity:{},exponential:{},interval:{},categorical:{}},default:"exponential"},colorSpace:{type:"enum",values:{rgb:{},lab:{},hcl:{}},default:"rgb"},default:{type:"*",required:!1}},function_stop:{type:"array",minimum:0,maximum:24,value:["number","color"],length:2},expression:{type:"array",value:"*",minimum:1},expression_name:{type:"enum",values:{let:{group:"Variable binding"},var:{group:"Variable binding"},literal:{group:"Types"},array:{group:"Types"},at:{group:"Lookup"},in:{group:"Lookup"},"index-of":{group:"Lookup"},slice:{group:"Lookup"},case:{group:"Decision"},match:{group:"Decision"},coalesce:{group:"Decision"},step:{group:"Ramps, scales, curves"},interpolate:{group:"Ramps, scales, curves"},"interpolate-hcl":{group:"Ramps, scales, curves"},"interpolate-lab":{group:"Ramps, scales, curves"},ln2:{group:"Math"},pi:{group:"Math"},e:{group:"Math"},typeof:{group:"Types"},string:{group:"Types"},number:{group:"Types"},boolean:{group:"Types"},object:{group:"Types"},collator:{group:"Types"},format:{group:"Types"},image:{group:"Types"},"number-format":{group:"Types"},"to-string":{group:"Types"},"to-number":{group:"Types"},"to-boolean":{group:"Types"},"to-rgba":{group:"Color"},"to-color":{group:"Types"},rgb:{group:"Color"},rgba:{group:"Color"},get:{group:"Lookup"},has:{group:"Lookup"},length:{group:"Lookup"},properties:{group:"Feature data"},"feature-state":{group:"Feature data"},"geometry-type":{group:"Feature data"},id:{group:"Feature data"},zoom:{group:"Zoom"},"heatmap-density":{group:"Heatmap"},"line-progress":{group:"Feature data"},accumulated:{group:"Feature data"},"+":{group:"Math"},"*":{group:"Math"},"-":{group:"Math"},"/":{group:"Math"},"%":{group:"Math"},"^":{group:"Math"},sqrt:{group:"Math"},log10:{group:"Math"},ln:{group:"Math"},log2:{group:"Math"},sin:{group:"Math"},cos:{group:"Math"},tan:{group:"Math"},asin:{group:"Math"},acos:{group:"Math"},atan:{group:"Math"},min:{group:"Math"},max:{group:"Math"},round:{group:"Math"},abs:{group:"Math"},ceil:{group:"Math"},floor:{group:"Math"},distance:{group:"Math"},"==":{group:"Decision"},"!=":{group:"Decision"},">":{group:"Decision"},"<":{group:"Decision"},">=":{group:"Decision"},"<=":{group:"Decision"},all:{group:"Decision"},any:{group:"Decision"},"!":{group:"Decision"},within:{group:"Decision"},"is-supported-script":{group:"String"},upcase:{group:"String"},downcase:{group:"String"},concat:{group:"String"},"resolved-locale":{group:"String"}}},light:{anchor:{type:"enum",default:"viewport",values:{map:{},viewport:{}},"property-type":"data-constant",transition:!1,expression:{interpolated:!1,parameters:["zoom"]}},position:{type:"array",default:[1.15,210,30],length:3,value:"number","property-type":"data-constant",transition:!0,expression:{interpolated:!0,parameters:["zoom"]}},color:{type:"color","property-type":"data-constant",default:"#ffffff",expression:{interpolated:!0,parameters:["zoom"]},transition:!0},intensity:{type:"number","property-type":"data-constant",default:.5,minimum:0,maximum:1,expression:{interpolated:!0,parameters:["zoom"]},transition:!0}},paint:["paint_fill","paint_line","paint_circle","paint_heatmap","paint_fill-extrusion","paint_symbol","paint_raster","paint_hillshade","paint_background"],paint_fill:{"fill-antialias":{type:"boolean",default:!0,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"fill-pattern"}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-outline-color":{type:"color",transition:!0,requires:[{"!":"fill-pattern"},{"fill-antialias":!0}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["fill-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"}},"paint_fill-extrusion":{"fill-extrusion-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"fill-extrusion-pattern"}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["fill-extrusion-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"},"fill-extrusion-height":{type:"number",default:0,minimum:0,units:"meters",transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-base":{type:"number",default:0,minimum:0,units:"meters",transition:!0,requires:["fill-extrusion-height"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-vertical-gradient":{type:"boolean",default:!0,transition:!1,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"}},paint_line:{"line-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"line-pattern"}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["line-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"line-width":{type:"number",default:1,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-gap-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-offset":{type:"number",default:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-dasharray":{type:"array",value:"number",minimum:0,transition:!0,units:"line widths",requires:[{"!":"line-pattern"}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"cross-faded"},"line-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"},"line-gradient":{type:"color",transition:!1,requires:[{"!":"line-dasharray"},{"!":"line-pattern"},{source:"geojson",has:{lineMetrics:!0}}],expression:{interpolated:!0,parameters:["line-progress"]},"property-type":"color-ramp"}},paint_circle:{"circle-radius":{type:"number",default:5,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-blur":{type:"number",default:0,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"circle-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["circle-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-pitch-scale":{type:"enum",values:{map:{},viewport:{}},default:"map",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-pitch-alignment":{type:"enum",values:{map:{},viewport:{}},default:"viewport",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-stroke-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-stroke-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-stroke-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"}},paint_heatmap:{"heatmap-radius":{type:"number",default:30,minimum:1,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"heatmap-weight":{type:"number",default:1,minimum:0,transition:!1,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"heatmap-intensity":{type:"number",default:1,minimum:0,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"heatmap-color":{type:"color",default:["interpolate",["linear"],["heatmap-density"],0,"rgba(0, 0, 255, 0)",.1,"royalblue",.3,"cyan",.5,"lime",.7,"yellow",1,"red"],transition:!1,expression:{interpolated:!0,parameters:["heatmap-density"]},"property-type":"color-ramp"},"heatmap-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_symbol:{"icon-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-color":{type:"color",default:"#000000",transition:!0,requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-color":{type:"color",default:"rgba(0, 0, 0, 0)",transition:!0,requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["icon-image","icon-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-color":{type:"color",default:"#000000",transition:!0,overridable:!0,requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-color":{type:"color",default:"rgba(0, 0, 0, 0)",transition:!0,requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["text-field","text-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"}},paint_raster:{"raster-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-hue-rotate":{type:"number",default:0,period:360,transition:!0,units:"degrees",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-brightness-min":{type:"number",default:0,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-brightness-max":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-saturation":{type:"number",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-contrast":{type:"number",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-resampling":{type:"enum",values:{linear:{},nearest:{}},default:"linear",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"raster-fade-duration":{type:"number",default:300,minimum:0,transition:!1,units:"milliseconds",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_hillshade:{"hillshade-illumination-direction":{type:"number",default:335,minimum:0,maximum:359,transition:!1,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-illumination-anchor":{type:"enum",values:{map:{},viewport:{}},default:"viewport",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-exaggeration":{type:"number",default:.5,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-shadow-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-highlight-color":{type:"color",default:"#FFFFFF",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-accent-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_background:{"background-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"background-pattern"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"background-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"cross-faded"},"background-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},transition:{duration:{type:"number",default:300,minimum:0,units:"milliseconds"},delay:{type:"number",default:0,minimum:0,units:"milliseconds"}},"property-type":{"data-driven":{type:"property-type"},"cross-faded":{type:"property-type"},"cross-faded-data-driven":{type:"property-type"},"color-ramp":{type:"property-type"},"data-constant":{type:"property-type"},constant:{type:"property-type"}},promoteId:{"*":{type:"string"}}},Ct=function(t,e,r,n){this.message=(t?t+": ":"")+r,n&&(this.identifier=n),null!=e&&e.__line__&&(this.line=e.__line__)};function Pt(t){var e=t.key,r=t.value;return r?[new Ct(e,r,"constants have been deprecated as of v8")]:[]}function It(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,i=e;n":"value"===t.itemType.kind?"array":"array<"+e+">"}return t.kind}var Zt=[Ft,Bt,Nt,jt,Ut,Gt,Vt,Wt(Ht),Yt];function Jt(t,e){if("error"===e.kind)return null;if("array"===t.kind){if("array"===e.kind&&(0===e.N&&"value"===e.itemType.kind||!Jt(t.itemType,e.itemType))&&("number"!=typeof t.N||t.N===e.N))return null}else{if(t.kind===e.kind)return null;if("value"===t.kind)for(var r=0,n=Zt;r255?255:t}function i(t){return t<0?0:t>1?1:t}function a(t){return"%"===t[t.length-1]?n(parseFloat(t)/100*255):n(parseInt(t))}function o(t){return"%"===t[t.length-1]?i(parseFloat(t)/100):i(parseFloat(t))}function s(t,e,r){return r<0?r+=1:r>1&&(r-=1),6*r<1?t+(e-t)*r*6:2*r<1?e:3*r<2?t+(e-t)*(2/3-r)*6:t}try{e.parseCSSColor=function(t){var e,i=t.replace(/ /g,"").toLowerCase();if(i in r)return r[i].slice();if("#"===i[0])return 4===i.length?(e=parseInt(i.substr(1),16))>=0&&e<=4095?[(3840&e)>>4|(3840&e)>>8,240&e|(240&e)>>4,15&e|(15&e)<<4,1]:null:7===i.length&&(e=parseInt(i.substr(1),16))>=0&&e<=16777215?[(16711680&e)>>16,(65280&e)>>8,255&e,1]:null;var l=i.indexOf("("),c=i.indexOf(")");if(-1!==l&&c+1===i.length){var u=i.substr(0,l),f=i.substr(l+1,c-(l+1)).split(","),h=1;switch(u){case"rgba":if(4!==f.length)return null;h=o(f.pop());case"rgb":return 3!==f.length?null:[a(f[0]),a(f[1]),a(f[2]),h];case"hsla":if(4!==f.length)return null;h=o(f.pop());case"hsl":if(3!==f.length)return null;var p=(parseFloat(f[0])%360+360)%360/360,d=o(f[1]),m=o(f[2]),g=m<=.5?m*(d+1):m+d-m*d,v=2*m-g;return[n(255*s(v,g,p+1/3)),n(255*s(v,g,p)),n(255*s(v,g,p-1/3)),h];default:return null}}return null}}catch(t){}})).parseCSSColor,te=function(t,e,r,n){void 0===n&&(n=1),this.r=t,this.g=e,this.b=r,this.a=n};te.parse=function(t){if(t){if(t instanceof te)return t;if("string"==typeof t){var e=$t(t);if(e)return new te(e[0]/255*e[3],e[1]/255*e[3],e[2]/255*e[3],e[3])}}},te.prototype.toString=function(){var t=this.toArray(),e=t[0],r=t[1],n=t[2],i=t[3];return"rgba("+Math.round(e)+","+Math.round(r)+","+Math.round(n)+","+i+")"},te.prototype.toArray=function(){var t=this.r,e=this.g,r=this.b,n=this.a;return 0===n?[0,0,0,0]:[255*t/n,255*e/n,255*r/n,n]},te.black=new te(0,0,0,1),te.white=new te(1,1,1,1),te.transparent=new te(0,0,0,0),te.red=new te(1,0,0,1);var ee=function(t,e,r){this.sensitivity=t?e?"variant":"case":e?"accent":"base",this.locale=r,this.collator=new Intl.Collator(this.locale?this.locale:[],{sensitivity:this.sensitivity,usage:"search"})};ee.prototype.compare=function(t,e){return this.collator.compare(t,e)},ee.prototype.resolvedLocale=function(){return new Intl.Collator(this.locale?this.locale:[]).resolvedOptions().locale};var re=function(t,e,r,n,i){this.text=t,this.image=e,this.scale=r,this.fontStack=n,this.textColor=i},ne=function(t){this.sections=t};ne.fromString=function(t){return new ne([new re(t,null,null,null,null)])},ne.prototype.isEmpty=function(){return 0===this.sections.length||!this.sections.some((function(t){return 0!==t.text.length||t.image&&0!==t.image.name.length}))},ne.factory=function(t){return t instanceof ne?t:ne.fromString(t)},ne.prototype.toString=function(){return 0===this.sections.length?"":this.sections.map((function(t){return t.text})).join("")},ne.prototype.serialize=function(){for(var t=["format"],e=0,r=this.sections;e=0&&t<=255&&"number"==typeof e&&e>=0&&e<=255&&"number"==typeof r&&r>=0&&r<=255?void 0===n||"number"==typeof n&&n>=0&&n<=1?null:"Invalid rgba value ["+[t,e,r,n].join(", ")+"]: 'a' must be between 0 and 1.":"Invalid rgba value ["+("number"==typeof n?[t,e,r,n]:[t,e,r]).join(", ")+"]: 'r', 'g', and 'b' must be between 0 and 255."}function oe(t){if(null===t)return!0;if("string"==typeof t)return!0;if("boolean"==typeof t)return!0;if("number"==typeof t)return!0;if(t instanceof te)return!0;if(t instanceof ee)return!0;if(t instanceof ne)return!0;if(t instanceof ie)return!0;if(Array.isArray(t)){for(var e=0,r=t;e2){var s=t[1];if("string"!=typeof s||!(s in fe)||"object"===s)return e.error('The item type argument of "array" must be one of string, number, boolean',1);a=fe[s],n++}else a=Ht;if(t.length>3){if(null!==t[2]&&("number"!=typeof t[2]||t[2]<0||t[2]!==Math.floor(t[2])))return e.error('The length argument to "array" must be a positive integer literal',2);o=t[2],n++}r=Wt(a,o)}else r=fe[i];for(var l=[];n1)&&e.push(n)}}return e.concat(this.args.map((function(t){return t.serialize()})))};var pe=function(t){this.type=Gt,this.sections=t};pe.parse=function(t,e){if(t.length<2)return e.error("Expected at least one argument.");var r=t[1];if(!Array.isArray(r)&&"object"==typeof r)return e.error("First argument must be an image or text section.");for(var n=[],i=!1,a=1;a<=t.length-1;++a){var o=t[a];if(i&&"object"==typeof o&&!Array.isArray(o)){i=!1;var s=null;if(o["font-scale"]&&!(s=e.parse(o["font-scale"],1,Bt)))return null;var l=null;if(o["text-font"]&&!(l=e.parse(o["text-font"],1,Wt(Nt))))return null;var c=null;if(o["text-color"]&&!(c=e.parse(o["text-color"],1,Ut)))return null;var u=n[n.length-1];u.scale=s,u.font=l,u.textColor=c}else{var f=e.parse(t[a],1,Ht);if(!f)return null;var h=f.type.kind;if("string"!==h&&"value"!==h&&"null"!==h&&"resolvedImage"!==h)return e.error("Formatted text type must be 'string', 'value', 'image' or 'null'.");i=!0,n.push({content:f,scale:null,font:null,textColor:null})}}return new pe(n)},pe.prototype.evaluate=function(t){return new ne(this.sections.map((function(e){var r=e.content.evaluate(t);return se(r)===Yt?new re("",r,null,null,null):new re(le(r),null,e.scale?e.scale.evaluate(t):null,e.font?e.font.evaluate(t).join(","):null,e.textColor?e.textColor.evaluate(t):null)})))},pe.prototype.eachChild=function(t){for(var e=0,r=this.sections;e-1),r},de.prototype.eachChild=function(t){t(this.input)},de.prototype.outputDefined=function(){return!1},de.prototype.serialize=function(){return["image",this.input.serialize()]};var me={"to-boolean":jt,"to-color":Ut,"to-number":Bt,"to-string":Nt},ge=function(t,e){this.type=t,this.args=e};ge.parse=function(t,e){if(t.length<2)return e.error("Expected at least one argument.");var r=t[0];if(("to-boolean"===r||"to-string"===r)&&2!==t.length)return e.error("Expected one argument.");for(var n=me[r],i=[],a=1;a4?"Invalid rbga value "+JSON.stringify(e)+": expected an array containing either three or four numeric values.":ae(e[0],e[1],e[2],e[3])))return new te(e[0]/255,e[1]/255,e[2]/255,e[3])}throw new ue(r||"Could not parse color from value '"+("string"==typeof e?e:String(JSON.stringify(e)))+"'")}if("number"===this.type.kind){for(var o=null,s=0,l=this.args;s=e[2])&&(!(t[1]<=e[1])&&!(t[3]>=e[3])))}function Te(t,e){var r,n=(180+t[0])/360,i=(r=t[1],(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+r*Math.PI/360)))/360),a=Math.pow(2,e.z);return[Math.round(n*a*8192),Math.round(i*a*8192)]}function ke(t,e,r){return e[1]>t[1]!=r[1]>t[1]&&t[0]<(r[0]-e[0])*(t[1]-e[1])/(r[1]-e[1])+e[0]}function Ae(t,e){for(var r,n,i,a,o,s,l,c=!1,u=0,f=e.length;u0&&f<0||u<0&&f>0}function Ee(t,e,r){for(var n=0,i=r;nr[2]){var i=.5*n,a=t[0]-r[0]>i?-n:r[0]-t[0]>i?n:0;0===a&&(a=t[0]-r[2]>i?-n:r[2]-t[0]>i?n:0),t[0]+=a}_e(e,t)}function ze(t,e,r,n){for(var i=8192*Math.pow(2,n.z),a=[8192*n.x,8192*n.y],o=[],s=0,l=t;s=0)return!1;var r=!0;return t.eachChild((function(t){r&&!Ne(t,e)&&(r=!1)})),r}Re.parse=function(t,e){if(2!==t.length)return e.error("'within' expression requires exactly one argument, but found "+(t.length-1)+" instead.");if(oe(t[1])){var r=t[1];if("FeatureCollection"===r.type)for(var n=0;ne))throw new ue("Input is not a number.");o=s-1}return 0}Ue.prototype.parse=function(t,e,r,n,i){return void 0===i&&(i={}),e?this.concat(e,r,n)._parse(t,i):this._parse(t,i)},Ue.prototype._parse=function(t,e){function r(t,e,r){return"assert"===r?new he(e,[t]):"coerce"===r?new ge(e,[t]):t}if(null!==t&&"string"!=typeof t&&"boolean"!=typeof t&&"number"!=typeof t||(t=["literal",t]),Array.isArray(t)){if(0===t.length)return this.error('Expected an array with at least one element. If you wanted a literal array, use ["literal", []].');var n=t[0];if("string"!=typeof n)return this.error("Expression name must be a string, but found "+typeof n+' instead. If you wanted a literal array, use ["literal", [...]].',0),null;var i=this.registry[n];if(i){var a=i.parse(t,this);if(!a)return null;if(this.expectedType){var o=this.expectedType,s=a.type;if("string"!==o.kind&&"number"!==o.kind&&"boolean"!==o.kind&&"object"!==o.kind&&"array"!==o.kind||"value"!==s.kind)if("color"!==o.kind&&"formatted"!==o.kind&&"resolvedImage"!==o.kind||"value"!==s.kind&&"string"!==s.kind){if(this.checkSubtype(o,s))return null}else a=r(a,o,e.typeAnnotation||"coerce");else a=r(a,o,e.typeAnnotation||"assert")}if(!(a instanceof ce)&&"resolvedImage"!==a.type.kind&&function t(e){if(e instanceof je)return t(e.boundExpression);if(e instanceof xe&&"error"===e.name)return!1;if(e instanceof be)return!1;if(e instanceof Re)return!1;var r=e instanceof ge||e instanceof he,n=!0;if(e.eachChild((function(e){n=r?n&&t(e):n&&e instanceof ce})),!n)return!1;return Fe(e)&&Ne(e,["zoom","heatmap-density","line-progress","accumulated","is-supported-script"])}(a)){var l=new ye;try{a=new ce(a.type,a.evaluate(l))}catch(t){return this.error(t.message),null}}return a}return this.error('Unknown expression "'+n+'". If you wanted a literal array, use ["literal", [...]].',0)}return void 0===t?this.error("'undefined' value invalid. Use null instead."):"object"==typeof t?this.error('Bare objects invalid. Use ["literal", {...}] instead.'):this.error("Expected an array, but found "+typeof t+" instead.")},Ue.prototype.concat=function(t,e,r){var n="number"==typeof t?this.path.concat(t):this.path,i=r?this.scope.concat(r):this.scope;return new Ue(this.registry,n,e||null,i,this.errors)},Ue.prototype.error=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var n=""+this.key+e.map((function(t){return"["+t+"]"})).join("");this.errors.push(new Dt(n,t))},Ue.prototype.checkSubtype=function(t,e){var r=Jt(t,e);return r&&this.error(r),r};var He=function(t,e,r){this.type=t,this.input=e,this.labels=[],this.outputs=[];for(var n=0,i=r;n=o)return e.error('Input/output pairs for "step" expressions must be arranged with input values in strictly ascending order.',l);var u=e.parse(s,c,i);if(!u)return null;i=i||u.type,n.push([o,u])}return new He(i,r,n)},He.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var i=e.length;return n>=e[i-1]?r[i-1].evaluate(t):r[Ve(e,n)].evaluate(t)},He.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e0&&t.push(this.labels[e]),t.push(this.outputs[e].serialize());return t};var Ge=Object.freeze({__proto__:null,number:qe,color:function(t,e,r){return new te(qe(t.r,e.r,r),qe(t.g,e.g,r),qe(t.b,e.b,r),qe(t.a,e.a,r))},array:function(t,e,r){return t.map((function(t,n){return qe(t,e[n],r)}))}}),Ye=6/29,We=3*Ye*Ye,Xe=Math.PI/180,Ze=180/Math.PI;function Je(t){return t>.008856451679035631?Math.pow(t,1/3):t/We+4/29}function Ke(t){return t>Ye?t*t*t:We*(t-4/29)}function Qe(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function $e(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function tr(t){var e=$e(t.r),r=$e(t.g),n=$e(t.b),i=Je((.4124564*e+.3575761*r+.1804375*n)/.95047),a=Je((.2126729*e+.7151522*r+.072175*n)/1);return{l:116*a-16,a:500*(i-a),b:200*(a-Je((.0193339*e+.119192*r+.9503041*n)/1.08883)),alpha:t.a}}function er(t){var e=(t.l+16)/116,r=isNaN(t.a)?e:e+t.a/500,n=isNaN(t.b)?e:e-t.b/200;return e=1*Ke(e),r=.95047*Ke(r),n=1.08883*Ke(n),new te(Qe(3.2404542*r-1.5371385*e-.4985314*n),Qe(-.969266*r+1.8760108*e+.041556*n),Qe(.0556434*r-.2040259*e+1.0572252*n),t.alpha)}function rr(t,e,r){var n=e-t;return t+r*(n>180||n<-180?n-360*Math.round(n/360):n)}var nr={forward:tr,reverse:er,interpolate:function(t,e,r){return{l:qe(t.l,e.l,r),a:qe(t.a,e.a,r),b:qe(t.b,e.b,r),alpha:qe(t.alpha,e.alpha,r)}}},ir={forward:function(t){var e=tr(t),r=e.l,n=e.a,i=e.b,a=Math.atan2(i,n)*Ze;return{h:a<0?a+360:a,c:Math.sqrt(n*n+i*i),l:r,alpha:t.a}},reverse:function(t){var e=t.h*Xe,r=t.c;return er({l:t.l,a:Math.cos(e)*r,b:Math.sin(e)*r,alpha:t.alpha})},interpolate:function(t,e,r){return{h:rr(t.h,e.h,r),c:qe(t.c,e.c,r),l:qe(t.l,e.l,r),alpha:qe(t.alpha,e.alpha,r)}}},ar=Object.freeze({__proto__:null,lab:nr,hcl:ir}),or=function(t,e,r,n,i){this.type=t,this.operator=e,this.interpolation=r,this.input=n,this.labels=[],this.outputs=[];for(var a=0,o=i;a1})))return e.error("Cubic bezier interpolation requires four numeric arguments with values between 0 and 1.",1);n={name:"cubic-bezier",controlPoints:s}}if(t.length-1<4)return e.error("Expected at least 4 arguments, but found only "+(t.length-1)+".");if((t.length-1)%2!=0)return e.error("Expected an even number of arguments.");if(!(i=e.parse(i,2,Bt)))return null;var l=[],c=null;"interpolate-hcl"===r||"interpolate-lab"===r?c=Ut:e.expectedType&&"value"!==e.expectedType.kind&&(c=e.expectedType);for(var u=0;u=f)return e.error('Input/output pairs for "interpolate" expressions must be arranged with input values in strictly ascending order.',p);var m=e.parse(h,d,c);if(!m)return null;c=c||m.type,l.push([f,m])}return"number"===c.kind||"color"===c.kind||"array"===c.kind&&"number"===c.itemType.kind&&"number"==typeof c.N?new or(c,r,n,i,l):e.error("Type "+Xt(c)+" is not interpolatable.")},or.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var i=e.length;if(n>=e[i-1])return r[i-1].evaluate(t);var a=Ve(e,n),o=e[a],s=e[a+1],l=or.interpolationFactor(this.interpolation,n,o,s),c=r[a].evaluate(t),u=r[a+1].evaluate(t);return"interpolate"===this.operator?Ge[this.type.kind.toLowerCase()](c,u,l):"interpolate-hcl"===this.operator?ir.reverse(ir.interpolate(ir.forward(c),ir.forward(u),l)):nr.reverse(nr.interpolate(nr.forward(c),nr.forward(u),l))},or.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e=r.length)throw new ue("Array index out of bounds: "+e+" > "+(r.length-1)+".");if(e!==Math.floor(e))throw new ue("Array index must be an integer, but found "+e+" instead.");return r[e]},ur.prototype.eachChild=function(t){t(this.index),t(this.input)},ur.prototype.outputDefined=function(){return!1},ur.prototype.serialize=function(){return["at",this.index.serialize(),this.input.serialize()]};var fr=function(t,e){this.type=jt,this.needle=t,this.haystack=e};fr.parse=function(t,e){if(3!==t.length)return e.error("Expected 2 arguments, but found "+(t.length-1)+" instead.");var r=e.parse(t[1],1,Ht),n=e.parse(t[2],2,Ht);return r&&n?Kt(r.type,[jt,Nt,Bt,Ft,Ht])?new fr(r,n):e.error("Expected first argument to be of type boolean, string, number or null, but found "+Xt(r.type)+" instead"):null},fr.prototype.evaluate=function(t){var e=this.needle.evaluate(t),r=this.haystack.evaluate(t);if(!r)return!1;if(!Qt(e,["boolean","string","number","null"]))throw new ue("Expected first argument to be of type boolean, string, number or null, but found "+Xt(se(e))+" instead.");if(!Qt(r,["string","array"]))throw new ue("Expected second argument to be of type array or string, but found "+Xt(se(r))+" instead.");return r.indexOf(e)>=0},fr.prototype.eachChild=function(t){t(this.needle),t(this.haystack)},fr.prototype.outputDefined=function(){return!0},fr.prototype.serialize=function(){return["in",this.needle.serialize(),this.haystack.serialize()]};var hr=function(t,e,r){this.type=Bt,this.needle=t,this.haystack=e,this.fromIndex=r};hr.parse=function(t,e){if(t.length<=2||t.length>=5)return e.error("Expected 3 or 4 arguments, but found "+(t.length-1)+" instead.");var r=e.parse(t[1],1,Ht),n=e.parse(t[2],2,Ht);if(!r||!n)return null;if(!Kt(r.type,[jt,Nt,Bt,Ft,Ht]))return e.error("Expected first argument to be of type boolean, string, number or null, but found "+Xt(r.type)+" instead");if(4===t.length){var i=e.parse(t[3],3,Bt);return i?new hr(r,n,i):null}return new hr(r,n)},hr.prototype.evaluate=function(t){var e=this.needle.evaluate(t),r=this.haystack.evaluate(t);if(!Qt(e,["boolean","string","number","null"]))throw new ue("Expected first argument to be of type boolean, string, number or null, but found "+Xt(se(e))+" instead.");if(!Qt(r,["string","array"]))throw new ue("Expected second argument to be of type array or string, but found "+Xt(se(r))+" instead.");if(this.fromIndex){var n=this.fromIndex.evaluate(t);return r.indexOf(e,n)}return r.indexOf(e)},hr.prototype.eachChild=function(t){t(this.needle),t(this.haystack),this.fromIndex&&t(this.fromIndex)},hr.prototype.outputDefined=function(){return!1},hr.prototype.serialize=function(){if(null!=this.fromIndex&&void 0!==this.fromIndex){var t=this.fromIndex.serialize();return["index-of",this.needle.serialize(),this.haystack.serialize(),t]}return["index-of",this.needle.serialize(),this.haystack.serialize()]};var pr=function(t,e,r,n,i,a){this.inputType=t,this.type=e,this.input=r,this.cases=n,this.outputs=i,this.otherwise=a};pr.parse=function(t,e){if(t.length<5)return e.error("Expected at least 4 arguments, but found only "+(t.length-1)+".");if(t.length%2!=1)return e.error("Expected an even number of arguments.");var r,n;e.expectedType&&"value"!==e.expectedType.kind&&(n=e.expectedType);for(var i={},a=[],o=2;oNumber.MAX_SAFE_INTEGER)return c.error("Branch labels must be integers no larger than "+Number.MAX_SAFE_INTEGER+".");if("number"==typeof h&&Math.floor(h)!==h)return c.error("Numeric branch labels must be integer values.");if(r){if(c.checkSubtype(r,se(h)))return null}else r=se(h);if(void 0!==i[String(h)])return c.error("Branch labels must be unique.");i[String(h)]=a.length}var p=e.parse(l,o,n);if(!p)return null;n=n||p.type,a.push(p)}var d=e.parse(t[1],1,Ht);if(!d)return null;var m=e.parse(t[t.length-1],t.length-1,n);return m?"value"!==d.type.kind&&e.concat(1).checkSubtype(r,d.type)?null:new pr(r,n,d,i,a,m):null},pr.prototype.evaluate=function(t){var e=this.input.evaluate(t);return(se(e)===this.inputType&&this.outputs[this.cases[e]]||this.otherwise).evaluate(t)},pr.prototype.eachChild=function(t){t(this.input),this.outputs.forEach(t),t(this.otherwise)},pr.prototype.outputDefined=function(){return this.outputs.every((function(t){return t.outputDefined()}))&&this.otherwise.outputDefined()},pr.prototype.serialize=function(){for(var t=this,e=["match",this.input.serialize()],r=[],n={},i=0,a=Object.keys(this.cases).sort();i=5)return e.error("Expected 3 or 4 arguments, but found "+(t.length-1)+" instead.");var r=e.parse(t[1],1,Ht),n=e.parse(t[2],2,Bt);if(!r||!n)return null;if(!Kt(r.type,[Wt(Ht),Nt,Ht]))return e.error("Expected first argument to be of type array or string, but found "+Xt(r.type)+" instead");if(4===t.length){var i=e.parse(t[3],3,Bt);return i?new mr(r.type,r,n,i):null}return new mr(r.type,r,n)},mr.prototype.evaluate=function(t){var e=this.input.evaluate(t),r=this.beginIndex.evaluate(t);if(!Qt(e,["string","array"]))throw new ue("Expected first argument to be of type array or string, but found "+Xt(se(e))+" instead.");if(this.endIndex){var n=this.endIndex.evaluate(t);return e.slice(r,n)}return e.slice(r)},mr.prototype.eachChild=function(t){t(this.input),t(this.beginIndex),this.endIndex&&t(this.endIndex)},mr.prototype.outputDefined=function(){return!1},mr.prototype.serialize=function(){if(null!=this.endIndex&&void 0!==this.endIndex){var t=this.endIndex.serialize();return["slice",this.input.serialize(),this.beginIndex.serialize(),t]}return["slice",this.input.serialize(),this.beginIndex.serialize()]};var xr=yr("==",(function(t,e,r){return e===r}),vr),br=yr("!=",(function(t,e,r){return e!==r}),(function(t,e,r,n){return!vr(0,e,r,n)})),_r=yr("<",(function(t,e,r){return e",(function(t,e,r){return e>r}),(function(t,e,r,n){return n.compare(e,r)>0})),Tr=yr("<=",(function(t,e,r){return e<=r}),(function(t,e,r,n){return n.compare(e,r)<=0})),kr=yr(">=",(function(t,e,r){return e>=r}),(function(t,e,r,n){return n.compare(e,r)>=0})),Ar=function(t,e,r,n,i){this.type=Nt,this.number=t,this.locale=e,this.currency=r,this.minFractionDigits=n,this.maxFractionDigits=i};Ar.parse=function(t,e){if(3!==t.length)return e.error("Expected two arguments.");var r=e.parse(t[1],1,Bt);if(!r)return null;var n=t[2];if("object"!=typeof n||Array.isArray(n))return e.error("NumberFormat options argument must be an object.");var i=null;if(n.locale&&!(i=e.parse(n.locale,1,Nt)))return null;var a=null;if(n.currency&&!(a=e.parse(n.currency,1,Nt)))return null;var o=null;if(n["min-fraction-digits"]&&!(o=e.parse(n["min-fraction-digits"],1,Bt)))return null;var s=null;return n["max-fraction-digits"]&&!(s=e.parse(n["max-fraction-digits"],1,Bt))?null:new Ar(r,i,a,o,s)},Ar.prototype.evaluate=function(t){return new Intl.NumberFormat(this.locale?this.locale.evaluate(t):[],{style:this.currency?"currency":"decimal",currency:this.currency?this.currency.evaluate(t):void 0,minimumFractionDigits:this.minFractionDigits?this.minFractionDigits.evaluate(t):void 0,maximumFractionDigits:this.maxFractionDigits?this.maxFractionDigits.evaluate(t):void 0}).format(this.number.evaluate(t))},Ar.prototype.eachChild=function(t){t(this.number),this.locale&&t(this.locale),this.currency&&t(this.currency),this.minFractionDigits&&t(this.minFractionDigits),this.maxFractionDigits&&t(this.maxFractionDigits)},Ar.prototype.outputDefined=function(){return!1},Ar.prototype.serialize=function(){var t={};return this.locale&&(t.locale=this.locale.serialize()),this.currency&&(t.currency=this.currency.serialize()),this.minFractionDigits&&(t["min-fraction-digits"]=this.minFractionDigits.serialize()),this.maxFractionDigits&&(t["max-fraction-digits"]=this.maxFractionDigits.serialize()),["number-format",this.number.serialize(),t]};var Mr=function(t){this.type=Bt,this.input=t};Mr.parse=function(t,e){if(2!==t.length)return e.error("Expected 1 argument, but found "+(t.length-1)+" instead.");var r=e.parse(t[1],1);return r?"array"!==r.type.kind&&"string"!==r.type.kind&&"value"!==r.type.kind?e.error("Expected argument of type string or array, but found "+Xt(r.type)+" instead."):new Mr(r):null},Mr.prototype.evaluate=function(t){var e=this.input.evaluate(t);if("string"==typeof e)return e.length;if(Array.isArray(e))return e.length;throw new ue("Expected value to be of type string or array, but found "+Xt(se(e))+" instead.")},Mr.prototype.eachChild=function(t){t(this.input)},Mr.prototype.outputDefined=function(){return!1},Mr.prototype.serialize=function(){var t=["length"];return this.eachChild((function(e){t.push(e.serialize())})),t};var Sr={"==":xr,"!=":br,">":wr,"<":_r,">=":kr,"<=":Tr,array:he,at:ur,boolean:he,case:dr,coalesce:lr,collator:be,format:pe,image:de,in:fr,"index-of":hr,interpolate:or,"interpolate-hcl":or,"interpolate-lab":or,length:Mr,let:cr,literal:ce,match:pr,number:he,"number-format":Ar,object:he,slice:mr,step:He,string:he,"to-boolean":ge,"to-color":ge,"to-number":ge,"to-string":ge,var:je,within:Re};function Er(t,e){var r=e[0],n=e[1],i=e[2],a=e[3];r=r.evaluate(t),n=n.evaluate(t),i=i.evaluate(t);var o=a?a.evaluate(t):1,s=ae(r,n,i,o);if(s)throw new ue(s);return new te(r/255*o,n/255*o,i/255*o,o)}function Lr(t,e){return t in e}function Cr(t,e){var r=e[t];return void 0===r?null:r}function Pr(t){return{type:t}}function Ir(t){return{result:"success",value:t}}function Or(t){return{result:"error",value:t}}function zr(t){return"data-driven"===t["property-type"]||"cross-faded-data-driven"===t["property-type"]}function Dr(t){return!!t.expression&&t.expression.parameters.indexOf("zoom")>-1}function Rr(t){return!!t.expression&&t.expression.interpolated}function Fr(t){return t instanceof Number?"number":t instanceof String?"string":t instanceof Boolean?"boolean":Array.isArray(t)?"array":null===t?"null":typeof t}function Br(t){return"object"==typeof t&&null!==t&&!Array.isArray(t)}function Nr(t){return t}function jr(t,e,r){return void 0!==t?t:void 0!==e?e:void 0!==r?r:void 0}function Ur(t,e,r,n,i){return jr(typeof r===i?n[r]:void 0,t.default,e.default)}function Vr(t,e,r){if("number"!==Fr(r))return jr(t.default,e.default);var n=t.stops.length;if(1===n)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[n-1][0])return t.stops[n-1][1];var i=Ve(t.stops.map((function(t){return t[0]})),r);return t.stops[i][1]}function Hr(t,e,r){var n=void 0!==t.base?t.base:1;if("number"!==Fr(r))return jr(t.default,e.default);var i=t.stops.length;if(1===i)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[i-1][0])return t.stops[i-1][1];var a=Ve(t.stops.map((function(t){return t[0]})),r),o=function(t,e,r,n){var i=n-r,a=t-r;return 0===i?0:1===e?a/i:(Math.pow(e,a)-1)/(Math.pow(e,i)-1)}(r,n,t.stops[a][0],t.stops[a+1][0]),s=t.stops[a][1],l=t.stops[a+1][1],c=Ge[e.type]||Nr;if(t.colorSpace&&"rgb"!==t.colorSpace){var u=ar[t.colorSpace];c=function(t,e){return u.reverse(u.interpolate(u.forward(t),u.forward(e),o))}}return"function"==typeof s.evaluate?{evaluate:function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var r=s.evaluate.apply(void 0,t),n=l.evaluate.apply(void 0,t);if(void 0!==r&&void 0!==n)return c(r,n,o)}}:c(s,l,o)}function qr(t,e,r){return"color"===e.type?r=te.parse(r):"formatted"===e.type?r=ne.fromString(r.toString()):"resolvedImage"===e.type?r=ie.fromString(r.toString()):Fr(r)===e.type||"enum"===e.type&&e.values[r]||(r=void 0),jr(r,t.default,e.default)}xe.register(Sr,{error:[{kind:"error"},[Nt],function(t,e){var r=e[0];throw new ue(r.evaluate(t))}],typeof:[Nt,[Ht],function(t,e){return Xt(se(e[0].evaluate(t)))}],"to-rgba":[Wt(Bt,4),[Ut],function(t,e){return e[0].evaluate(t).toArray()}],rgb:[Ut,[Bt,Bt,Bt],Er],rgba:[Ut,[Bt,Bt,Bt,Bt],Er],has:{type:jt,overloads:[[[Nt],function(t,e){return Lr(e[0].evaluate(t),t.properties())}],[[Nt,Vt],function(t,e){var r=e[0],n=e[1];return Lr(r.evaluate(t),n.evaluate(t))}]]},get:{type:Ht,overloads:[[[Nt],function(t,e){return Cr(e[0].evaluate(t),t.properties())}],[[Nt,Vt],function(t,e){var r=e[0],n=e[1];return Cr(r.evaluate(t),n.evaluate(t))}]]},"feature-state":[Ht,[Nt],function(t,e){return Cr(e[0].evaluate(t),t.featureState||{})}],properties:[Vt,[],function(t){return t.properties()}],"geometry-type":[Nt,[],function(t){return t.geometryType()}],id:[Ht,[],function(t){return t.id()}],zoom:[Bt,[],function(t){return t.globals.zoom}],"heatmap-density":[Bt,[],function(t){return t.globals.heatmapDensity||0}],"line-progress":[Bt,[],function(t){return t.globals.lineProgress||0}],accumulated:[Ht,[],function(t){return void 0===t.globals.accumulated?null:t.globals.accumulated}],"+":[Bt,Pr(Bt),function(t,e){for(var r=0,n=0,i=e;n":[jt,[Nt,Ht],function(t,e){var r=e[0],n=e[1],i=t.properties()[r.value],a=n.value;return typeof i==typeof a&&i>a}],"filter-id->":[jt,[Ht],function(t,e){var r=e[0],n=t.id(),i=r.value;return typeof n==typeof i&&n>i}],"filter-<=":[jt,[Nt,Ht],function(t,e){var r=e[0],n=e[1],i=t.properties()[r.value],a=n.value;return typeof i==typeof a&&i<=a}],"filter-id-<=":[jt,[Ht],function(t,e){var r=e[0],n=t.id(),i=r.value;return typeof n==typeof i&&n<=i}],"filter->=":[jt,[Nt,Ht],function(t,e){var r=e[0],n=e[1],i=t.properties()[r.value],a=n.value;return typeof i==typeof a&&i>=a}],"filter-id->=":[jt,[Ht],function(t,e){var r=e[0],n=t.id(),i=r.value;return typeof n==typeof i&&n>=i}],"filter-has":[jt,[Ht],function(t,e){return e[0].value in t.properties()}],"filter-has-id":[jt,[],function(t){return null!==t.id()&&void 0!==t.id()}],"filter-type-in":[jt,[Wt(Nt)],function(t,e){return e[0].value.indexOf(t.geometryType())>=0}],"filter-id-in":[jt,[Wt(Ht)],function(t,e){return e[0].value.indexOf(t.id())>=0}],"filter-in-small":[jt,[Nt,Wt(Ht)],function(t,e){var r=e[0];return e[1].value.indexOf(t.properties()[r.value])>=0}],"filter-in-large":[jt,[Nt,Wt(Ht)],function(t,e){var r=e[0],n=e[1];return function(t,e,r,n){for(;r<=n;){var i=r+n>>1;if(e[i]===t)return!0;e[i]>t?n=i-1:r=i+1}return!1}(t.properties()[r.value],n.value,0,n.value.length-1)}],all:{type:jt,overloads:[[[jt,jt],function(t,e){var r=e[0],n=e[1];return r.evaluate(t)&&n.evaluate(t)}],[Pr(jt),function(t,e){for(var r=0,n=e;r0&&"string"==typeof t[0]&&t[0]in Sr}function Wr(t,e){var r=new Ue(Sr,[],e?function(t){var e={color:Ut,string:Nt,number:Bt,enum:Nt,boolean:jt,formatted:Gt,resolvedImage:Yt};if("array"===t.type)return Wt(e[t.value]||Ht,t.length);return e[t.type]}(e):void 0),n=r.parse(t,void 0,void 0,void 0,e&&"string"===e.type?{typeAnnotation:"coerce"}:void 0);return n?Ir(new Gr(n,e)):Or(r.errors)}Gr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n,i,a){return this._evaluator.globals=t,this._evaluator.feature=e,this._evaluator.featureState=r,this._evaluator.canonical=n,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=a,this.expression.evaluate(this._evaluator)},Gr.prototype.evaluate=function(t,e,r,n,i,a){this._evaluator.globals=t,this._evaluator.feature=e||null,this._evaluator.featureState=r||null,this._evaluator.canonical=n,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=a||null;try{var o=this.expression.evaluate(this._evaluator);if(null==o||"number"==typeof o&&o!=o)return this._defaultValue;if(this._enumValues&&!(o in this._enumValues))throw new ue("Expected value to be one of "+Object.keys(this._enumValues).map((function(t){return JSON.stringify(t)})).join(", ")+", but found "+JSON.stringify(o)+" instead.");return o}catch(t){return this._warningHistory[t.message]||(this._warningHistory[t.message]=!0,"undefined"!=typeof console&&console.warn(t.message)),this._defaultValue}};var Xr=function(t,e){this.kind=t,this._styleExpression=e,this.isStateDependent="constant"!==t&&!Be(e.expression)};Xr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n,i,a){return this._styleExpression.evaluateWithoutErrorHandling(t,e,r,n,i,a)},Xr.prototype.evaluate=function(t,e,r,n,i,a){return this._styleExpression.evaluate(t,e,r,n,i,a)};var Zr=function(t,e,r,n){this.kind=t,this.zoomStops=r,this._styleExpression=e,this.isStateDependent="camera"!==t&&!Be(e.expression),this.interpolationType=n};function Jr(t,e){if("error"===(t=Wr(t,e)).result)return t;var r=t.value.expression,n=Fe(r);if(!n&&!zr(e))return Or([new Dt("","data expressions not supported")]);var i=Ne(r,["zoom"]);if(!i&&!Dr(e))return Or([new Dt("","zoom expressions not supported")]);var a=function t(e){var r=null;if(e instanceof cr)r=t(e.result);else if(e instanceof lr)for(var n=0,i=e.args;nn.maximum?[new Ct(e,r,r+" is greater than the maximum value "+n.maximum)]:[]}function en(t){var e,r,n,i=t.valueSpec,a=Ot(t.value.type),o={},s="categorical"!==a&&void 0===t.value.property,l=!s,c="array"===Fr(t.value.stops)&&"array"===Fr(t.value.stops[0])&&"object"===Fr(t.value.stops[0][0]),u=Qr({key:t.key,value:t.value,valueSpec:t.styleSpec.function,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{stops:function(t){if("identity"===a)return[new Ct(t.key,t.value,'identity function may not have a "stops" property')];var e=[],r=t.value;e=e.concat($r({key:t.key,value:r,valueSpec:t.valueSpec,style:t.style,styleSpec:t.styleSpec,arrayElementValidator:f})),"array"===Fr(r)&&0===r.length&&e.push(new Ct(t.key,r,"array must have at least one stop"));return e},default:function(t){return kn({key:t.key,value:t.value,valueSpec:i,style:t.style,styleSpec:t.styleSpec})}}});return"identity"===a&&s&&u.push(new Ct(t.key,t.value,'missing required property "property"')),"identity"===a||t.value.stops||u.push(new Ct(t.key,t.value,'missing required property "stops"')),"exponential"===a&&t.valueSpec.expression&&!Rr(t.valueSpec)&&u.push(new Ct(t.key,t.value,"exponential functions not supported")),t.styleSpec.$version>=8&&(l&&!zr(t.valueSpec)?u.push(new Ct(t.key,t.value,"property functions not supported")):s&&!Dr(t.valueSpec)&&u.push(new Ct(t.key,t.value,"zoom functions not supported"))),"categorical"!==a&&!c||void 0!==t.value.property||u.push(new Ct(t.key,t.value,'"property" property is required')),u;function f(t){var e=[],a=t.value,s=t.key;if("array"!==Fr(a))return[new Ct(s,a,"array expected, "+Fr(a)+" found")];if(2!==a.length)return[new Ct(s,a,"array length 2 expected, length "+a.length+" found")];if(c){if("object"!==Fr(a[0]))return[new Ct(s,a,"object expected, "+Fr(a[0])+" found")];if(void 0===a[0].zoom)return[new Ct(s,a,"object stop key must have zoom")];if(void 0===a[0].value)return[new Ct(s,a,"object stop key must have value")];if(n&&n>Ot(a[0].zoom))return[new Ct(s,a[0].zoom,"stop zoom values must appear in ascending order")];Ot(a[0].zoom)!==n&&(n=Ot(a[0].zoom),r=void 0,o={}),e=e.concat(Qr({key:s+"[0]",value:a[0],valueSpec:{zoom:{}},style:t.style,styleSpec:t.styleSpec,objectElementValidators:{zoom:tn,value:h}}))}else e=e.concat(h({key:s+"[0]",value:a[0],valueSpec:{},style:t.style,styleSpec:t.styleSpec},a));return Yr(zt(a[1]))?e.concat([new Ct(s+"[1]",a[1],"expressions are not allowed in function stops.")]):e.concat(kn({key:s+"[1]",value:a[1],valueSpec:i,style:t.style,styleSpec:t.styleSpec}))}function h(t,n){var s=Fr(t.value),l=Ot(t.value),c=null!==t.value?t.value:n;if(e){if(s!==e)return[new Ct(t.key,c,s+" stop domain type must match previous stop domain type "+e)]}else e=s;if("number"!==s&&"string"!==s&&"boolean"!==s)return[new Ct(t.key,c,"stop domain value must be a number, string, or boolean")];if("number"!==s&&"categorical"!==a){var u="number expected, "+s+" found";return zr(i)&&void 0===a&&(u+='\nIf you intended to use a categorical function, specify `"type": "categorical"`.'),[new Ct(t.key,c,u)]}return"categorical"!==a||"number"!==s||isFinite(l)&&Math.floor(l)===l?"categorical"!==a&&"number"===s&&void 0!==r&&l=2&&"$id"!==t[1]&&"$type"!==t[1];case"in":return t.length>=3&&("string"!=typeof t[1]||Array.isArray(t[2]));case"!in":case"!has":case"none":return!1;case"==":case"!=":case">":case">=":case"<":case"<=":return 3!==t.length||Array.isArray(t[1])||Array.isArray(t[2]);case"any":case"all":for(var e=0,r=t.slice(1);ee?1:0}function cn(t){if(!t)return!0;var e,r=t[0];return t.length<=1?"any"!==r:"=="===r?un(t[1],t[2],"=="):"!="===r?pn(un(t[1],t[2],"==")):"<"===r||">"===r||"<="===r||">="===r?un(t[1],t[2],r):"any"===r?(e=t.slice(1),["any"].concat(e.map(cn))):"all"===r?["all"].concat(t.slice(1).map(cn)):"none"===r?["all"].concat(t.slice(1).map(cn).map(pn)):"in"===r?fn(t[1],t.slice(2)):"!in"===r?pn(fn(t[1],t.slice(2))):"has"===r?hn(t[1]):"!has"===r?pn(hn(t[1])):"within"!==r||t}function un(t,e,r){switch(t){case"$type":return["filter-type-"+r,e];case"$id":return["filter-id-"+r,e];default:return["filter-"+r,t,e]}}function fn(t,e){if(0===e.length)return!1;switch(t){case"$type":return["filter-type-in",["literal",e]];case"$id":return["filter-id-in",["literal",e]];default:return e.length>200&&!e.some((function(t){return typeof t!=typeof e[0]}))?["filter-in-large",t,["literal",e.sort(ln)]]:["filter-in-small",t,["literal",e]]}}function hn(t){switch(t){case"$type":return!0;case"$id":return["filter-has-id"];default:return["filter-has",t]}}function pn(t){return["!",t]}function dn(t){return an(zt(t.value))?rn(It({},t,{expressionContext:"filter",valueSpec:{value:"boolean"}})):function t(e){var r=e.value,n=e.key;if("array"!==Fr(r))return[new Ct(n,r,"array expected, "+Fr(r)+" found")];var i,a=e.styleSpec,o=[];if(r.length<1)return[new Ct(n,r,"filter array must have at least 1 element")];switch(o=o.concat(nn({key:n+"[0]",value:r[0],valueSpec:a.filter_operator,style:e.style,styleSpec:e.styleSpec})),Ot(r[0])){case"<":case"<=":case">":case">=":r.length>=2&&"$type"===Ot(r[1])&&o.push(new Ct(n,r,'"$type" cannot be use with operator "'+r[0]+'"'));case"==":case"!=":3!==r.length&&o.push(new Ct(n,r,'filter array for operator "'+r[0]+'" must have 3 elements'));case"in":case"!in":r.length>=2&&"string"!==(i=Fr(r[1]))&&o.push(new Ct(n+"[1]",r[1],"string expected, "+i+" found"));for(var s=2;s=u[p+0]&&n>=u[p+1])?(o[h]=!0,a.push(c[h])):o[h]=!1}}},Dn.prototype._forEachCell=function(t,e,r,n,i,a,o,s){for(var l=this._convertToCellCoord(t),c=this._convertToCellCoord(e),u=this._convertToCellCoord(r),f=this._convertToCellCoord(n),h=l;h<=u;h++)for(var p=c;p<=f;p++){var d=this.d*p+h;if((!s||s(this._convertFromCellCoord(h),this._convertFromCellCoord(p),this._convertFromCellCoord(h+1),this._convertFromCellCoord(p+1)))&&i.call(this,t,e,r,n,d,a,o,s))return}},Dn.prototype._convertFromCellCoord=function(t){return(t-this.padding)/this.scale},Dn.prototype._convertToCellCoord=function(t){return Math.max(0,Math.min(this.d-1,Math.floor(t*this.scale)+this.padding))},Dn.prototype.toArrayBuffer=function(){if(this.arrayBuffer)return this.arrayBuffer;for(var t=this.cells,e=3+this.cells.length+1+1,r=0,n=0;n=0)){var f=t[u];c[u]=Bn[l].shallow.indexOf(u)>=0?f:Hn(f,e)}t instanceof Error&&(c.message=t.message)}if(c.$name)throw new Error("$name property is reserved for worker serialization logic.");return"Object"!==l&&(c.$name=l),c}throw new Error("can't serialize object of type "+typeof t)}function qn(t){if(null==t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||t instanceof Boolean||t instanceof Number||t instanceof String||t instanceof Date||t instanceof RegExp||Un(t)||Vn(t)||ArrayBuffer.isView(t)||t instanceof Rn)return t;if(Array.isArray(t))return t.map(qn);if("object"==typeof t){var e=t.$name||"Object",r=Bn[e].klass;if(!r)throw new Error("can't deserialize unregistered class "+e);if(r.deserialize)return r.deserialize(t);for(var n=Object.create(r.prototype),i=0,a=Object.keys(t);i=0?s:qn(s)}}return n}throw new Error("can't deserialize object of type "+typeof t)}var Gn=function(){this.first=!0};Gn.prototype.update=function(t,e){var r=Math.floor(t);return this.first?(this.first=!1,this.lastIntegerZoom=r,this.lastIntegerZoomTime=0,this.lastZoom=t,this.lastFloorZoom=r,!0):(this.lastFloorZoom>r?(this.lastIntegerZoom=r+1,this.lastIntegerZoomTime=e):this.lastFloorZoom=128&&t<=255},Arabic:function(t){return t>=1536&&t<=1791},"Arabic Supplement":function(t){return t>=1872&&t<=1919},"Arabic Extended-A":function(t){return t>=2208&&t<=2303},"Hangul Jamo":function(t){return t>=4352&&t<=4607},"Unified Canadian Aboriginal Syllabics":function(t){return t>=5120&&t<=5759},Khmer:function(t){return t>=6016&&t<=6143},"Unified Canadian Aboriginal Syllabics Extended":function(t){return t>=6320&&t<=6399},"General Punctuation":function(t){return t>=8192&&t<=8303},"Letterlike Symbols":function(t){return t>=8448&&t<=8527},"Number Forms":function(t){return t>=8528&&t<=8591},"Miscellaneous Technical":function(t){return t>=8960&&t<=9215},"Control Pictures":function(t){return t>=9216&&t<=9279},"Optical Character Recognition":function(t){return t>=9280&&t<=9311},"Enclosed Alphanumerics":function(t){return t>=9312&&t<=9471},"Geometric Shapes":function(t){return t>=9632&&t<=9727},"Miscellaneous Symbols":function(t){return t>=9728&&t<=9983},"Miscellaneous Symbols and Arrows":function(t){return t>=11008&&t<=11263},"CJK Radicals Supplement":function(t){return t>=11904&&t<=12031},"Kangxi Radicals":function(t){return t>=12032&&t<=12255},"Ideographic Description Characters":function(t){return t>=12272&&t<=12287},"CJK Symbols and Punctuation":function(t){return t>=12288&&t<=12351},Hiragana:function(t){return t>=12352&&t<=12447},Katakana:function(t){return t>=12448&&t<=12543},Bopomofo:function(t){return t>=12544&&t<=12591},"Hangul Compatibility Jamo":function(t){return t>=12592&&t<=12687},Kanbun:function(t){return t>=12688&&t<=12703},"Bopomofo Extended":function(t){return t>=12704&&t<=12735},"CJK Strokes":function(t){return t>=12736&&t<=12783},"Katakana Phonetic Extensions":function(t){return t>=12784&&t<=12799},"Enclosed CJK Letters and Months":function(t){return t>=12800&&t<=13055},"CJK Compatibility":function(t){return t>=13056&&t<=13311},"CJK Unified Ideographs Extension A":function(t){return t>=13312&&t<=19903},"Yijing Hexagram Symbols":function(t){return t>=19904&&t<=19967},"CJK Unified Ideographs":function(t){return t>=19968&&t<=40959},"Yi Syllables":function(t){return t>=40960&&t<=42127},"Yi Radicals":function(t){return t>=42128&&t<=42191},"Hangul Jamo Extended-A":function(t){return t>=43360&&t<=43391},"Hangul Syllables":function(t){return t>=44032&&t<=55215},"Hangul Jamo Extended-B":function(t){return t>=55216&&t<=55295},"Private Use Area":function(t){return t>=57344&&t<=63743},"CJK Compatibility Ideographs":function(t){return t>=63744&&t<=64255},"Arabic Presentation Forms-A":function(t){return t>=64336&&t<=65023},"Vertical Forms":function(t){return t>=65040&&t<=65055},"CJK Compatibility Forms":function(t){return t>=65072&&t<=65103},"Small Form Variants":function(t){return t>=65104&&t<=65135},"Arabic Presentation Forms-B":function(t){return t>=65136&&t<=65279},"Halfwidth and Fullwidth Forms":function(t){return t>=65280&&t<=65519}};function Wn(t){for(var e=0,r=t;e=65097&&t<=65103)||(!!Yn["CJK Compatibility Ideographs"](t)||(!!Yn["CJK Compatibility"](t)||(!!Yn["CJK Radicals Supplement"](t)||(!!Yn["CJK Strokes"](t)||(!(!Yn["CJK Symbols and Punctuation"](t)||t>=12296&&t<=12305||t>=12308&&t<=12319||12336===t)||(!!Yn["CJK Unified Ideographs Extension A"](t)||(!!Yn["CJK Unified Ideographs"](t)||(!!Yn["Enclosed CJK Letters and Months"](t)||(!!Yn["Hangul Compatibility Jamo"](t)||(!!Yn["Hangul Jamo Extended-A"](t)||(!!Yn["Hangul Jamo Extended-B"](t)||(!!Yn["Hangul Jamo"](t)||(!!Yn["Hangul Syllables"](t)||(!!Yn.Hiragana(t)||(!!Yn["Ideographic Description Characters"](t)||(!!Yn.Kanbun(t)||(!!Yn["Kangxi Radicals"](t)||(!!Yn["Katakana Phonetic Extensions"](t)||(!(!Yn.Katakana(t)||12540===t)||(!(!Yn["Halfwidth and Fullwidth Forms"](t)||65288===t||65289===t||65293===t||t>=65306&&t<=65310||65339===t||65341===t||65343===t||t>=65371&&t<=65503||65507===t||t>=65512&&t<=65519)||(!(!Yn["Small Form Variants"](t)||t>=65112&&t<=65118||t>=65123&&t<=65126)||(!!Yn["Unified Canadian Aboriginal Syllabics"](t)||(!!Yn["Unified Canadian Aboriginal Syllabics Extended"](t)||(!!Yn["Vertical Forms"](t)||(!!Yn["Yijing Hexagram Symbols"](t)||(!!Yn["Yi Syllables"](t)||!!Yn["Yi Radicals"](t))))))))))))))))))))))))))))))}function Jn(t){return!(Zn(t)||function(t){return!(!Yn["Latin-1 Supplement"](t)||167!==t&&169!==t&&174!==t&&177!==t&&188!==t&&189!==t&&190!==t&&215!==t&&247!==t)||(!(!Yn["General Punctuation"](t)||8214!==t&&8224!==t&&8225!==t&&8240!==t&&8241!==t&&8251!==t&&8252!==t&&8258!==t&&8263!==t&&8264!==t&&8265!==t&&8273!==t)||(!!Yn["Letterlike Symbols"](t)||(!!Yn["Number Forms"](t)||(!(!Yn["Miscellaneous Technical"](t)||!(t>=8960&&t<=8967||t>=8972&&t<=8991||t>=8996&&t<=9e3||9003===t||t>=9085&&t<=9114||t>=9150&&t<=9165||9167===t||t>=9169&&t<=9179||t>=9186&&t<=9215))||(!(!Yn["Control Pictures"](t)||9251===t)||(!!Yn["Optical Character Recognition"](t)||(!!Yn["Enclosed Alphanumerics"](t)||(!!Yn["Geometric Shapes"](t)||(!(!Yn["Miscellaneous Symbols"](t)||t>=9754&&t<=9759)||(!(!Yn["Miscellaneous Symbols and Arrows"](t)||!(t>=11026&&t<=11055||t>=11088&&t<=11097||t>=11192&&t<=11243))||(!!Yn["CJK Symbols and Punctuation"](t)||(!!Yn.Katakana(t)||(!!Yn["Private Use Area"](t)||(!!Yn["CJK Compatibility Forms"](t)||(!!Yn["Small Form Variants"](t)||(!!Yn["Halfwidth and Fullwidth Forms"](t)||(8734===t||8756===t||8757===t||t>=9984&&t<=10087||t>=10102&&t<=10131||65532===t||65533===t)))))))))))))))))}(t))}function Kn(t){return t>=1424&&t<=2303||Yn["Arabic Presentation Forms-A"](t)||Yn["Arabic Presentation Forms-B"](t)}function Qn(t,e){return!(!e&&Kn(t))&&!(t>=2304&&t<=3583||t>=3840&&t<=4255||Yn.Khmer(t))}function $n(t){for(var e=0,r=t;e-1&&(ai=ni),ii&&ii(t)};function li(){ci.fire(new Mt("pluginStateChange",{pluginStatus:ai,pluginURL:oi}))}var ci=new Et,ui=function(){return ai},fi=function(){if(ai!==ti||!oi)throw new Error("rtl-text-plugin cannot be downloaded unless a pluginURL is specified");ai=ei,li(),oi&&xt({url:oi},(function(t){t?si(t):(ai=ri,li())}))},hi={applyArabicShaping:null,processBidirectionalText:null,processStyledBidirectionalText:null,isLoaded:function(){return ai===ri||null!=hi.applyArabicShaping},isLoading:function(){return ai===ei},setState:function(t){ai=t.pluginStatus,oi=t.pluginURL},isParsed:function(){return null!=hi.applyArabicShaping&&null!=hi.processBidirectionalText&&null!=hi.processStyledBidirectionalText},getPluginURL:function(){return oi}},pi=function(t,e){this.zoom=t,e?(this.now=e.now,this.fadeDuration=e.fadeDuration,this.zoomHistory=e.zoomHistory,this.transition=e.transition):(this.now=0,this.fadeDuration=0,this.zoomHistory=new Gn,this.transition={})};pi.prototype.isSupportedScript=function(t){return function(t,e){for(var r=0,n=t;rthis.zoomHistory.lastIntegerZoom?{fromScale:2,toScale:1,t:e+(1-e)*r}:{fromScale:.5,toScale:1,t:1-(1-r)*e}};var di=function(t,e){this.property=t,this.value=e,this.expression=function(t,e){if(Br(t))return new Kr(t,e);if(Yr(t)){var r=Jr(t,e);if("error"===r.result)throw new Error(r.value.map((function(t){return t.key+": "+t.message})).join(", "));return r.value}var n=t;return"string"==typeof t&&"color"===e.type&&(n=te.parse(t)),{kind:"constant",evaluate:function(){return n}}}(void 0===e?t.specification.default:e,t.specification)};di.prototype.isDataDriven=function(){return"source"===this.expression.kind||"composite"===this.expression.kind},di.prototype.possiblyEvaluate=function(t,e,r){return this.property.possiblyEvaluate(this,t,e,r)};var mi=function(t){this.property=t,this.value=new di(t,void 0)};mi.prototype.transitioned=function(t,e){return new vi(this.property,this.value,e,u({},t.transition,this.transition),t.now)},mi.prototype.untransitioned=function(){return new vi(this.property,this.value,null,{},0)};var gi=function(t){this._properties=t,this._values=Object.create(t.defaultTransitionablePropertyValues)};gi.prototype.getValue=function(t){return x(this._values[t].value.value)},gi.prototype.setValue=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new mi(this._values[t].property)),this._values[t].value=new di(this._values[t].property,null===e?void 0:x(e))},gi.prototype.getTransition=function(t){return x(this._values[t].transition)},gi.prototype.setTransition=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new mi(this._values[t].property)),this._values[t].transition=x(e)||void 0},gi.prototype.serialize=function(){for(var t={},e=0,r=Object.keys(this._values);ethis.end)return this.prior=null,i;if(this.value.isDataDriven())return this.prior=null,i;if(n=1)return 1;var e=t*t,r=e*t;return 4*(t<.5?r:3*(t-e)+r-.75)}(o))}return i};var yi=function(t){this._properties=t,this._values=Object.create(t.defaultTransitioningPropertyValues)};yi.prototype.possiblyEvaluate=function(t,e,r){for(var n=new _i(this._properties),i=0,a=Object.keys(this._values);in.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},e.prototype.interpolate=function(t){return t},e}(Ti),Ai=function(t){this.specification=t};Ai.prototype.possiblyEvaluate=function(t,e,r,n){if(void 0!==t.value){if("constant"===t.expression.kind){var i=t.expression.evaluate(e,null,{},r,n);return this._calculate(i,i,i,e)}return this._calculate(t.expression.evaluate(new pi(Math.floor(e.zoom-1),e)),t.expression.evaluate(new pi(Math.floor(e.zoom),e)),t.expression.evaluate(new pi(Math.floor(e.zoom+1),e)),e)}},Ai.prototype._calculate=function(t,e,r,n){return n.zoom>n.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},Ai.prototype.interpolate=function(t){return t};var Mi=function(t){this.specification=t};Mi.prototype.possiblyEvaluate=function(t,e,r,n){return!!t.expression.evaluate(e,null,{},r,n)},Mi.prototype.interpolate=function(){return!1};var Si=function(t){for(var e in this.properties=t,this.defaultPropertyValues={},this.defaultTransitionablePropertyValues={},this.defaultTransitioningPropertyValues={},this.defaultPossiblyEvaluatedValues={},this.overridableProperties=[],t){var r=t[e];r.specification.overridable&&this.overridableProperties.push(e);var n=this.defaultPropertyValues[e]=new di(r,void 0),i=this.defaultTransitionablePropertyValues[e]=new mi(r);this.defaultTransitioningPropertyValues[e]=i.untransitioned(),this.defaultPossiblyEvaluatedValues[e]=n.possiblyEvaluate({})}};Nn("DataDrivenProperty",Ti),Nn("DataConstantProperty",wi),Nn("CrossFadedDataDrivenProperty",ki),Nn("CrossFadedProperty",Ai),Nn("ColorRampProperty",Mi);var Ei=function(t){function e(e,r){if(t.call(this),this.id=e.id,this.type=e.type,this._featureFilter={filter:function(){return!0},needGeometry:!1},"custom"!==e.type&&(e=e,this.metadata=e.metadata,this.minzoom=e.minzoom,this.maxzoom=e.maxzoom,"background"!==e.type&&(this.source=e.source,this.sourceLayer=e["source-layer"],this.filter=e.filter),r.layout&&(this._unevaluatedLayout=new xi(r.layout)),r.paint)){for(var n in this._transitionablePaint=new gi(r.paint),e.paint)this.setPaintProperty(n,e.paint[n],{validate:!1});for(var i in e.layout)this.setLayoutProperty(i,e.layout[i],{validate:!1});this._transitioningPaint=this._transitionablePaint.untransitioned(),this.paint=new _i(r.paint)}}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getCrossfadeParameters=function(){return this._crossfadeParameters},e.prototype.getLayoutProperty=function(t){return"visibility"===t?this.visibility:this._unevaluatedLayout.getValue(t)},e.prototype.setLayoutProperty=function(t,e,r){if(void 0===r&&(r={}),null!=e){var n="layers."+this.id+".layout."+t;if(this._validate(In,n,t,e,r))return}"visibility"!==t?this._unevaluatedLayout.setValue(t,e):this.visibility=e},e.prototype.getPaintProperty=function(t){return g(t,"-transition")?this._transitionablePaint.getTransition(t.slice(0,-"-transition".length)):this._transitionablePaint.getValue(t)},e.prototype.setPaintProperty=function(t,e,r){if(void 0===r&&(r={}),null!=e){var n="layers."+this.id+".paint."+t;if(this._validate(Pn,n,t,e,r))return!1}if(g(t,"-transition"))return this._transitionablePaint.setTransition(t.slice(0,-"-transition".length),e||void 0),!1;var i=this._transitionablePaint._values[t],a="cross-faded-data-driven"===i.property.specification["property-type"],o=i.value.isDataDriven(),s=i.value;this._transitionablePaint.setValue(t,e),this._handleSpecialPaintPropertyUpdate(t);var l=this._transitionablePaint._values[t].value;return l.isDataDriven()||o||a||this._handleOverridablePaintPropertyUpdate(t,s,l)},e.prototype._handleSpecialPaintPropertyUpdate=function(t){},e.prototype._handleOverridablePaintPropertyUpdate=function(t,e,r){return!1},e.prototype.isHidden=function(t){return!!(this.minzoom&&t=this.maxzoom)||"none"===this.visibility)},e.prototype.updateTransitions=function(t){this._transitioningPaint=this._transitionablePaint.transitioned(t,this._transitioningPaint)},e.prototype.hasTransition=function(){return this._transitioningPaint.hasTransition()},e.prototype.recalculate=function(t,e){t.getCrossfadeParameters&&(this._crossfadeParameters=t.getCrossfadeParameters()),this._unevaluatedLayout&&(this.layout=this._unevaluatedLayout.possiblyEvaluate(t,void 0,e)),this.paint=this._transitioningPaint.possiblyEvaluate(t,void 0,e)},e.prototype.serialize=function(){var t={id:this.id,type:this.type,source:this.source,"source-layer":this.sourceLayer,metadata:this.metadata,minzoom:this.minzoom,maxzoom:this.maxzoom,filter:this.filter,layout:this._unevaluatedLayout&&this._unevaluatedLayout.serialize(),paint:this._transitionablePaint&&this._transitionablePaint.serialize()};return this.visibility&&(t.layout=t.layout||{},t.layout.visibility=this.visibility),y(t,(function(t,e){return!(void 0===t||"layout"===e&&!Object.keys(t).length||"paint"===e&&!Object.keys(t).length)}))},e.prototype._validate=function(t,e,r,n,i){return void 0===i&&(i={}),(!i||!1!==i.validate)&&On(this,t.call(Ln,{key:e,layerType:this.type,objectKey:r,value:n,styleSpec:Lt,style:{glyphs:!0,sprite:!0}}))},e.prototype.is3D=function(){return!1},e.prototype.isTileClipped=function(){return!1},e.prototype.hasOffscreenPass=function(){return!1},e.prototype.resize=function(){},e.prototype.isStateDependent=function(){for(var t in this.paint._values){var e=this.paint.get(t);if(e instanceof bi&&zr(e.property.specification)&&(("source"===e.value.kind||"composite"===e.value.kind)&&e.value.isStateDependent))return!0}return!1},e}(Et),Li={Int8:Int8Array,Uint8:Uint8Array,Int16:Int16Array,Uint16:Uint16Array,Int32:Int32Array,Uint32:Uint32Array,Float32:Float32Array},Ci=function(t,e){this._structArray=t,this._pos1=e*this.size,this._pos2=this._pos1/2,this._pos4=this._pos1/4,this._pos8=this._pos1/8},Pi=function(){this.isTransferred=!1,this.capacity=-1,this.resize(0)};function Ii(t,e){void 0===e&&(e=1);var r=0,n=0;return{members:t.map((function(t){var i,a=(i=t.type,Li[i].BYTES_PER_ELEMENT),o=r=Oi(r,Math.max(e,a)),s=t.components||1;return n=Math.max(n,a),r+=a*s,{name:t.name,type:t.type,components:s,offset:o}})),size:Oi(r,Math.max(n,e)),alignment:e}}function Oi(t,e){return Math.ceil(t/e)*e}Pi.serialize=function(t,e){return t._trim(),e&&(t.isTransferred=!0,e.push(t.arrayBuffer)),{length:t.length,arrayBuffer:t.arrayBuffer}},Pi.deserialize=function(t){var e=Object.create(this.prototype);return e.arrayBuffer=t.arrayBuffer,e.length=t.length,e.capacity=t.arrayBuffer.byteLength/e.bytesPerElement,e._refreshViews(),e},Pi.prototype._trim=function(){this.length!==this.capacity&&(this.capacity=this.length,this.arrayBuffer=this.arrayBuffer.slice(0,this.length*this.bytesPerElement),this._refreshViews())},Pi.prototype.clear=function(){this.length=0},Pi.prototype.resize=function(t){this.reserve(t),this.length=t},Pi.prototype.reserve=function(t){if(t>this.capacity){this.capacity=Math.max(t,Math.floor(5*this.capacity),128),this.arrayBuffer=new ArrayBuffer(this.capacity*this.bytesPerElement);var e=this.uint8;this._refreshViews(),e&&this.uint8.set(e)}},Pi.prototype._refreshViews=function(){throw new Error("_refreshViews() must be implemented by each concrete StructArray layout")};var zi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.int16[n+0]=e,this.int16[n+1]=r,t},e}(Pi);zi.prototype.bytesPerElement=4,Nn("StructArrayLayout2i4",zi);var Di=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var i=this.length;return this.resize(i+1),this.emplace(i,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,i){var a=4*t;return this.int16[a+0]=e,this.int16[a+1]=r,this.int16[a+2]=n,this.int16[a+3]=i,t},e}(Pi);Di.prototype.bytesPerElement=8,Nn("StructArrayLayout4i8",Di);var Ri=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,i,a)},e.prototype.emplace=function(t,e,r,n,i,a,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=i,this.int16[s+4]=a,this.int16[s+5]=o,t},e}(Pi);Ri.prototype.bytesPerElement=12,Nn("StructArrayLayout2i4i12",Ri);var Fi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,i,a)},e.prototype.emplace=function(t,e,r,n,i,a,o){var s=4*t,l=8*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.uint8[l+4]=n,this.uint8[l+5]=i,this.uint8[l+6]=a,this.uint8[l+7]=o,t},e}(Pi);Fi.prototype.bytesPerElement=8,Nn("StructArrayLayout2i4ub8",Fi);var Bi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c){var u=this.length;return this.resize(u+1),this.emplace(u,t,e,r,n,i,a,o,s,l,c)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u){var f=9*t,h=18*t;return this.uint16[f+0]=e,this.uint16[f+1]=r,this.uint16[f+2]=n,this.uint16[f+3]=i,this.uint16[f+4]=a,this.uint16[f+5]=o,this.uint16[f+6]=s,this.uint16[f+7]=l,this.uint8[h+16]=c,this.uint8[h+17]=u,t},e}(Pi);Bi.prototype.bytesPerElement=18,Nn("StructArrayLayout8ui2ub18",Bi);var Ni=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c,u,f){var h=this.length;return this.resize(h+1),this.emplace(h,t,e,r,n,i,a,o,s,l,c,u,f)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u,f,h){var p=12*t;return this.int16[p+0]=e,this.int16[p+1]=r,this.int16[p+2]=n,this.int16[p+3]=i,this.uint16[p+4]=a,this.uint16[p+5]=o,this.uint16[p+6]=s,this.uint16[p+7]=l,this.int16[p+8]=c,this.int16[p+9]=u,this.int16[p+10]=f,this.int16[p+11]=h,t},e}(Pi);Ni.prototype.bytesPerElement=24,Nn("StructArrayLayout4i4ui4i24",Ni);var ji=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=3*t;return this.float32[i+0]=e,this.float32[i+1]=r,this.float32[i+2]=n,t},e}(Pi);ji.prototype.bytesPerElement=12,Nn("StructArrayLayout3f12",ji);var Ui=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.uint32[r+0]=e,t},e}(Pi);Ui.prototype.bytesPerElement=4,Nn("StructArrayLayout1ul4",Ui);var Vi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l){var c=this.length;return this.resize(c+1),this.emplace(c,t,e,r,n,i,a,o,s,l)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c){var u=10*t,f=5*t;return this.int16[u+0]=e,this.int16[u+1]=r,this.int16[u+2]=n,this.int16[u+3]=i,this.int16[u+4]=a,this.int16[u+5]=o,this.uint32[f+3]=s,this.uint16[u+8]=l,this.uint16[u+9]=c,t},e}(Pi);Vi.prototype.bytesPerElement=20,Nn("StructArrayLayout6i1ul2ui20",Vi);var Hi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,i,a)},e.prototype.emplace=function(t,e,r,n,i,a,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=i,this.int16[s+4]=a,this.int16[s+5]=o,t},e}(Pi);Hi.prototype.bytesPerElement=12,Nn("StructArrayLayout2i2i2i12",Hi);var qi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n,i)},e.prototype.emplace=function(t,e,r,n,i,a){var o=4*t,s=8*t;return this.float32[o+0]=e,this.float32[o+1]=r,this.float32[o+2]=n,this.int16[s+6]=i,this.int16[s+7]=a,t},e}(Pi);qi.prototype.bytesPerElement=16,Nn("StructArrayLayout2f1f2i16",qi);var Gi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var i=this.length;return this.resize(i+1),this.emplace(i,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,i){var a=12*t,o=3*t;return this.uint8[a+0]=e,this.uint8[a+1]=r,this.float32[o+1]=n,this.float32[o+2]=i,t},e}(Pi);Gi.prototype.bytesPerElement=12,Nn("StructArrayLayout2ub2f12",Gi);var Yi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=3*t;return this.uint16[i+0]=e,this.uint16[i+1]=r,this.uint16[i+2]=n,t},e}(Pi);Yi.prototype.bytesPerElement=6,Nn("StructArrayLayout3ui6",Yi);var Wi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g){var v=this.length;return this.resize(v+1),this.emplace(v,t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g,v){var y=24*t,x=12*t,b=48*t;return this.int16[y+0]=e,this.int16[y+1]=r,this.uint16[y+2]=n,this.uint16[y+3]=i,this.uint32[x+2]=a,this.uint32[x+3]=o,this.uint32[x+4]=s,this.uint16[y+10]=l,this.uint16[y+11]=c,this.uint16[y+12]=u,this.float32[x+7]=f,this.float32[x+8]=h,this.uint8[b+36]=p,this.uint8[b+37]=d,this.uint8[b+38]=m,this.uint32[x+10]=g,this.int16[y+22]=v,t},e}(Pi);Wi.prototype.bytesPerElement=48,Nn("StructArrayLayout2i2ui3ul3ui2f3ub1ul1i48",Wi);var Xi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g,v,y,x,b,_,w,T,k,A,M,S){var E=this.length;return this.resize(E+1),this.emplace(E,t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g,v,y,x,b,_,w,T,k,A,M,S)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g,v,y,x,b,_,w,T,k,A,M,S,E){var L=34*t,C=17*t;return this.int16[L+0]=e,this.int16[L+1]=r,this.int16[L+2]=n,this.int16[L+3]=i,this.int16[L+4]=a,this.int16[L+5]=o,this.int16[L+6]=s,this.int16[L+7]=l,this.uint16[L+8]=c,this.uint16[L+9]=u,this.uint16[L+10]=f,this.uint16[L+11]=h,this.uint16[L+12]=p,this.uint16[L+13]=d,this.uint16[L+14]=m,this.uint16[L+15]=g,this.uint16[L+16]=v,this.uint16[L+17]=y,this.uint16[L+18]=x,this.uint16[L+19]=b,this.uint16[L+20]=_,this.uint16[L+21]=w,this.uint16[L+22]=T,this.uint32[C+12]=k,this.float32[C+13]=A,this.float32[C+14]=M,this.float32[C+15]=S,this.float32[C+16]=E,t},e}(Pi);Xi.prototype.bytesPerElement=68,Nn("StructArrayLayout8i15ui1ul4f68",Xi);var Zi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.float32[r+0]=e,t},e}(Pi);Zi.prototype.bytesPerElement=4,Nn("StructArrayLayout1f4",Zi);var Ji=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=3*t;return this.int16[i+0]=e,this.int16[i+1]=r,this.int16[i+2]=n,t},e}(Pi);Ji.prototype.bytesPerElement=6,Nn("StructArrayLayout3i6",Ji);var Ki=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=2*t,a=4*t;return this.uint32[i+0]=e,this.uint16[a+2]=r,this.uint16[a+3]=n,t},e}(Pi);Ki.prototype.bytesPerElement=8,Nn("StructArrayLayout1ul2ui8",Ki);var Qi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.uint16[n+0]=e,this.uint16[n+1]=r,t},e}(Pi);Qi.prototype.bytesPerElement=4,Nn("StructArrayLayout2ui4",Qi);var $i=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){var r=1*t;return this.uint16[r+0]=e,t},e}(Pi);$i.prototype.bytesPerElement=2,Nn("StructArrayLayout1ui2",$i);var ta=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.float32[n+0]=e,this.float32[n+1]=r,t},e}(Pi);ta.prototype.bytesPerElement=8,Nn("StructArrayLayout2f8",ta);var ea=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var i=this.length;return this.resize(i+1),this.emplace(i,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,i){var a=4*t;return this.float32[a+0]=e,this.float32[a+1]=r,this.float32[a+2]=n,this.float32[a+3]=i,t},e}(Pi);ea.prototype.bytesPerElement=16,Nn("StructArrayLayout4f16",ea);var ra=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorPointX:{configurable:!0},anchorPointY:{configurable:!0},x1:{configurable:!0},y1:{configurable:!0},x2:{configurable:!0},y2:{configurable:!0},featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0},anchorPoint:{configurable:!0}};return r.anchorPointX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorPointY.get=function(){return this._structArray.int16[this._pos2+1]},r.x1.get=function(){return this._structArray.int16[this._pos2+2]},r.y1.get=function(){return this._structArray.int16[this._pos2+3]},r.x2.get=function(){return this._structArray.int16[this._pos2+4]},r.y2.get=function(){return this._structArray.int16[this._pos2+5]},r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+8]},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.anchorPoint.get=function(){return new i(this.anchorPointX,this.anchorPointY)},Object.defineProperties(e.prototype,r),e}(Ci);ra.prototype.size=20;var na=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new ra(this,t)},e}(Vi);Nn("CollisionBoxArray",na);var ia=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},glyphStartIndex:{configurable:!0},numGlyphs:{configurable:!0},vertexStartIndex:{configurable:!0},lineStartIndex:{configurable:!0},lineLength:{configurable:!0},segment:{configurable:!0},lowerSize:{configurable:!0},upperSize:{configurable:!0},lineOffsetX:{configurable:!0},lineOffsetY:{configurable:!0},writingMode:{configurable:!0},placedOrientation:{configurable:!0},hidden:{configurable:!0},crossTileID:{configurable:!0},associatedIconIndex:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.glyphStartIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.numGlyphs.get=function(){return this._structArray.uint16[this._pos2+3]},r.vertexStartIndex.get=function(){return this._structArray.uint32[this._pos4+2]},r.lineStartIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.lineLength.get=function(){return this._structArray.uint32[this._pos4+4]},r.segment.get=function(){return this._structArray.uint16[this._pos2+10]},r.lowerSize.get=function(){return this._structArray.uint16[this._pos2+11]},r.upperSize.get=function(){return this._structArray.uint16[this._pos2+12]},r.lineOffsetX.get=function(){return this._structArray.float32[this._pos4+7]},r.lineOffsetY.get=function(){return this._structArray.float32[this._pos4+8]},r.writingMode.get=function(){return this._structArray.uint8[this._pos1+36]},r.placedOrientation.get=function(){return this._structArray.uint8[this._pos1+37]},r.placedOrientation.set=function(t){this._structArray.uint8[this._pos1+37]=t},r.hidden.get=function(){return this._structArray.uint8[this._pos1+38]},r.hidden.set=function(t){this._structArray.uint8[this._pos1+38]=t},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+10]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+10]=t},r.associatedIconIndex.get=function(){return this._structArray.int16[this._pos2+22]},Object.defineProperties(e.prototype,r),e}(Ci);ia.prototype.size=48;var aa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new ia(this,t)},e}(Wi);Nn("PlacedSymbolArray",aa);var oa=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},rightJustifiedTextSymbolIndex:{configurable:!0},centerJustifiedTextSymbolIndex:{configurable:!0},leftJustifiedTextSymbolIndex:{configurable:!0},verticalPlacedTextSymbolIndex:{configurable:!0},placedIconSymbolIndex:{configurable:!0},verticalPlacedIconSymbolIndex:{configurable:!0},key:{configurable:!0},textBoxStartIndex:{configurable:!0},textBoxEndIndex:{configurable:!0},verticalTextBoxStartIndex:{configurable:!0},verticalTextBoxEndIndex:{configurable:!0},iconBoxStartIndex:{configurable:!0},iconBoxEndIndex:{configurable:!0},verticalIconBoxStartIndex:{configurable:!0},verticalIconBoxEndIndex:{configurable:!0},featureIndex:{configurable:!0},numHorizontalGlyphVertices:{configurable:!0},numVerticalGlyphVertices:{configurable:!0},numIconVertices:{configurable:!0},numVerticalIconVertices:{configurable:!0},useRuntimeCollisionCircles:{configurable:!0},crossTileID:{configurable:!0},textBoxScale:{configurable:!0},textOffset0:{configurable:!0},textOffset1:{configurable:!0},collisionCircleDiameter:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.rightJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+2]},r.centerJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+3]},r.leftJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+4]},r.verticalPlacedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+5]},r.placedIconSymbolIndex.get=function(){return this._structArray.int16[this._pos2+6]},r.verticalPlacedIconSymbolIndex.get=function(){return this._structArray.int16[this._pos2+7]},r.key.get=function(){return this._structArray.uint16[this._pos2+8]},r.textBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.textBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+10]},r.verticalTextBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+11]},r.verticalTextBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+12]},r.iconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+13]},r.iconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+14]},r.verticalIconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+15]},r.verticalIconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+16]},r.featureIndex.get=function(){return this._structArray.uint16[this._pos2+17]},r.numHorizontalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+18]},r.numVerticalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+19]},r.numIconVertices.get=function(){return this._structArray.uint16[this._pos2+20]},r.numVerticalIconVertices.get=function(){return this._structArray.uint16[this._pos2+21]},r.useRuntimeCollisionCircles.get=function(){return this._structArray.uint16[this._pos2+22]},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+12]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+12]=t},r.textBoxScale.get=function(){return this._structArray.float32[this._pos4+13]},r.textOffset0.get=function(){return this._structArray.float32[this._pos4+14]},r.textOffset1.get=function(){return this._structArray.float32[this._pos4+15]},r.collisionCircleDiameter.get=function(){return this._structArray.float32[this._pos4+16]},Object.defineProperties(e.prototype,r),e}(Ci);oa.prototype.size=68;var sa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new oa(this,t)},e}(Xi);Nn("SymbolInstanceArray",sa);var la=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getoffsetX=function(t){return this.float32[1*t+0]},e}(Zi);Nn("GlyphOffsetArray",la);var ca=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.getx=function(t){return this.int16[3*t+0]},e.prototype.gety=function(t){return this.int16[3*t+1]},e.prototype.gettileUnitDistanceFromAnchor=function(t){return this.int16[3*t+2]},e}(Ji);Nn("SymbolLineVertexArray",ca);var ua=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0}};return r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+0]},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+3]},Object.defineProperties(e.prototype,r),e}(Ci);ua.prototype.size=8;var fa=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.get=function(t){return new ua(this,t)},e}(Ki);Nn("FeatureIndexArray",fa);var ha=Ii([{name:"a_pos",components:2,type:"Int16"}],4).members,pa=function(t){void 0===t&&(t=[]),this.segments=t};function da(t,e){return 256*(t=l(Math.floor(t),0,255))+(e=l(Math.floor(e),0,255))}pa.prototype.prepareSegment=function(t,e,r,n){var i=this.segments[this.segments.length-1];return t>pa.MAX_VERTEX_ARRAY_LENGTH&&_("Max vertices per segment is "+pa.MAX_VERTEX_ARRAY_LENGTH+": bucket requested "+t),(!i||i.vertexLength+t>pa.MAX_VERTEX_ARRAY_LENGTH||i.sortKey!==n)&&(i={vertexOffset:e.length,primitiveOffset:r.length,vertexLength:0,primitiveLength:0},void 0!==n&&(i.sortKey=n),this.segments.push(i)),i},pa.prototype.get=function(){return this.segments},pa.prototype.destroy=function(){for(var t=0,e=this.segments;t>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295)<<13|i>>>19))+((5*(i>>>16)&65535)<<16)&4294967295))+((58964+(a>>>16)&65535)<<16);switch(l=0,r){case 3:l^=(255&t.charCodeAt(c+2))<<16;case 2:l^=(255&t.charCodeAt(c+1))<<8;case 1:i^=l=(65535&(l=(l=(65535&(l^=255&t.charCodeAt(c)))*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295}return i^=t.length,i=2246822507*(65535&(i^=i>>>16))+((2246822507*(i>>>16)&65535)<<16)&4294967295,i=3266489909*(65535&(i^=i>>>13))+((3266489909*(i>>>16)&65535)<<16)&4294967295,(i^=i>>>16)>>>0}})),va=e((function(t){t.exports=function(t,e){for(var r,n=t.length,i=e^n,a=0;n>=4;)r=1540483477*(65535&(r=255&t.charCodeAt(a)|(255&t.charCodeAt(++a))<<8|(255&t.charCodeAt(++a))<<16|(255&t.charCodeAt(++a))<<24))+((1540483477*(r>>>16)&65535)<<16),i=1540483477*(65535&i)+((1540483477*(i>>>16)&65535)<<16)^(r=1540483477*(65535&(r^=r>>>24))+((1540483477*(r>>>16)&65535)<<16)),n-=4,++a;switch(n){case 3:i^=(255&t.charCodeAt(a+2))<<16;case 2:i^=(255&t.charCodeAt(a+1))<<8;case 1:i=1540483477*(65535&(i^=255&t.charCodeAt(a)))+((1540483477*(i>>>16)&65535)<<16)}return i=1540483477*(65535&(i^=i>>>13))+((1540483477*(i>>>16)&65535)<<16),(i^=i>>>15)>>>0}})),ya=ga,xa=ga,ba=va;ya.murmur3=xa,ya.murmur2=ba;var _a=function(){this.ids=[],this.positions=[],this.indexed=!1};_a.prototype.add=function(t,e,r,n){this.ids.push(Ta(t)),this.positions.push(e,r,n)},_a.prototype.getPositions=function(t){for(var e=Ta(t),r=0,n=this.ids.length-1;r>1;this.ids[i]>=e?n=i:r=i+1}for(var a=[];this.ids[r]===e;){var o=this.positions[3*r],s=this.positions[3*r+1],l=this.positions[3*r+2];a.push({index:o,start:s,end:l}),r++}return a},_a.serialize=function(t,e){var r=new Float64Array(t.ids),n=new Uint32Array(t.positions);return function t(e,r,n,i){for(;n>1],o=n-1,s=i+1;;){do{o++}while(e[o]a);if(o>=s)break;ka(e,o,s),ka(r,3*o,3*s),ka(r,3*o+1,3*s+1),ka(r,3*o+2,3*s+2)}s-nGa.max||o.yGa.max)&&(_("Geometry exceeds allowed extent, reduce your vector tile buffer size"),o.x=l(o.x,Ga.min,Ga.max),o.y=l(o.y,Ga.min,Ga.max))}return r}function Wa(t,e,r,n,i){t.emplaceBack(2*e+(n+1)/2,2*r+(i+1)/2)}var Xa=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new zi,this.indexArray=new Yi,this.segments=new pa,this.programConfigurations=new Ua(ha,t.layers,t.zoom),this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id}))};function Za(t,e){for(var r=0;r1){if($a(t,e))return!0;for(var n=0;n1?t.distSqr(r):t.distSqr(r.sub(e)._mult(i)._add(e))}function no(t,e){for(var r,n,i,a=!1,o=0;oe.y!=i.y>e.y&&e.x<(i.x-n.x)*(e.y-n.y)/(i.y-n.y)+n.x&&(a=!a);return a}function io(t,e){for(var r=!1,n=0,i=t.length-1;ne.y!=o.y>e.y&&e.x<(o.x-a.x)*(e.y-a.y)/(o.y-a.y)+a.x&&(r=!r)}return r}function ao(t,e,r){var n=r[0],i=r[2];if(t.xi.x&&e.x>i.x||t.yi.y&&e.y>i.y)return!1;var a=w(t,e,r[0]);return a!==w(t,e,r[1])||a!==w(t,e,r[2])||a!==w(t,e,r[3])}function oo(t,e,r){var n=e.paint.get(t).value;return"constant"===n.kind?n.value:r.programConfigurations.get(e.id).getMaxValue(t)}function so(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])}function lo(t,e,r,n,a){if(!e[0]&&!e[1])return t;var o=i.convert(e)._mult(a);"viewport"===r&&o._rotate(-n);for(var s=[],l=0;l=8192||u<0||u>=8192)){var f=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray,t.sortKey),h=f.vertexLength;Wa(this.layoutVertexArray,c,u,-1,-1),Wa(this.layoutVertexArray,c,u,1,-1),Wa(this.layoutVertexArray,c,u,1,1),Wa(this.layoutVertexArray,c,u,-1,1),this.indexArray.emplaceBack(h,h+1,h+2),this.indexArray.emplaceBack(h,h+3,h+2),f.vertexLength+=4,f.primitiveLength+=2}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,{},n)},Nn("CircleBucket",Xa,{omit:["layers"]});var co=new Si({"circle-sort-key":new Ti(Lt.layout_circle["circle-sort-key"])}),uo={paint:new Si({"circle-radius":new Ti(Lt.paint_circle["circle-radius"]),"circle-color":new Ti(Lt.paint_circle["circle-color"]),"circle-blur":new Ti(Lt.paint_circle["circle-blur"]),"circle-opacity":new Ti(Lt.paint_circle["circle-opacity"]),"circle-translate":new wi(Lt.paint_circle["circle-translate"]),"circle-translate-anchor":new wi(Lt.paint_circle["circle-translate-anchor"]),"circle-pitch-scale":new wi(Lt.paint_circle["circle-pitch-scale"]),"circle-pitch-alignment":new wi(Lt.paint_circle["circle-pitch-alignment"]),"circle-stroke-width":new Ti(Lt.paint_circle["circle-stroke-width"]),"circle-stroke-color":new Ti(Lt.paint_circle["circle-stroke-color"]),"circle-stroke-opacity":new Ti(Lt.paint_circle["circle-stroke-opacity"])}),layout:co},fo="undefined"!=typeof Float32Array?Float32Array:Array;function ho(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function po(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],f=e[8],h=e[9],p=e[10],d=e[11],m=e[12],g=e[13],v=e[14],y=e[15],x=r[0],b=r[1],_=r[2],w=r[3];return t[0]=x*n+b*s+_*f+w*m,t[1]=x*i+b*l+_*h+w*g,t[2]=x*a+b*c+_*p+w*v,t[3]=x*o+b*u+_*d+w*y,x=r[4],b=r[5],_=r[6],w=r[7],t[4]=x*n+b*s+_*f+w*m,t[5]=x*i+b*l+_*h+w*g,t[6]=x*a+b*c+_*p+w*v,t[7]=x*o+b*u+_*d+w*y,x=r[8],b=r[9],_=r[10],w=r[11],t[8]=x*n+b*s+_*f+w*m,t[9]=x*i+b*l+_*h+w*g,t[10]=x*a+b*c+_*p+w*v,t[11]=x*o+b*u+_*d+w*y,x=r[12],b=r[13],_=r[14],w=r[15],t[12]=x*n+b*s+_*f+w*m,t[13]=x*i+b*l+_*h+w*g,t[14]=x*a+b*c+_*p+w*v,t[15]=x*o+b*u+_*d+w*y,t}Math.hypot||(Math.hypot=function(){for(var t=arguments,e=0,r=arguments.length;r--;)e+=t[r]*t[r];return Math.sqrt(e)});var mo=po;var go,vo,yo=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t};go=new fo(3),fo!=Float32Array&&(go[0]=0,go[1]=0,go[2]=0),vo=go;function xo(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3];return t[0]=r[0]*n+r[4]*i+r[8]*a+r[12]*o,t[1]=r[1]*n+r[5]*i+r[9]*a+r[13]*o,t[2]=r[2]*n+r[6]*i+r[10]*a+r[14]*o,t[3]=r[3]*n+r[7]*i+r[11]*a+r[15]*o,t}!function(){var t=function(){var t=new fo(4);return fo!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0),t}()}();var bo=function(t){var e=t[0],r=t[1];return e*e+r*r},_o=(function(){var t=function(){var t=new fo(2);return fo!=Float32Array&&(t[0]=0,t[1]=0),t}()}(),function(t){function e(e){t.call(this,e,uo)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.createBucket=function(t){return new Xa(t)},e.prototype.queryRadius=function(t){var e=t;return oo("circle-radius",this,e)+oo("circle-stroke-width",this,e)+so(this.paint.get("circle-translate"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,i,a,o,s){for(var l=lo(t,this.paint.get("circle-translate"),this.paint.get("circle-translate-anchor"),a.angle,o),c=this.paint.get("circle-radius").evaluate(e,r)+this.paint.get("circle-stroke-width").evaluate(e,r),u="map"===this.paint.get("circle-pitch-alignment"),f=u?l:function(t,e){return t.map((function(t){return wo(t,e)}))}(l,s),h=u?c*o:c,p=0,d=n;pt.width||i.height>t.height||r.x>t.width-i.width||r.y>t.height-i.height)throw new RangeError("out of range source coordinates for image copy");if(i.width>e.width||i.height>e.height||n.x>e.width-i.width||n.y>e.height-i.height)throw new RangeError("out of range destination coordinates for image copy");for(var o=t.data,s=e.data,l=0;l80*r){n=a=t[0],i=o=t[1];for(var d=r;da&&(a=s),l>o&&(o=l);c=0!==(c=Math.max(a-n,o-i))?1/c:0}return jo(h,p,r,n,i,c),p}function Bo(t,e,r,n,i){var a,o;if(i===ls(t,e,r,n)>0)for(a=e;a=e;a-=n)o=as(a,t[a],t[a+1],o);return o&&$o(o,o.next)&&(os(o),o=o.next),o}function No(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!$o(n,n.next)&&0!==Qo(n.prev,n,n.next))n=n.next;else{if(os(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function jo(t,e,r,n,i,a,o){if(t){!o&&a&&function(t,e,r,n){var i=t;do{null===i.z&&(i.z=Xo(i.x,i.y,e,r,n)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next}while(i!==t);i.prevZ.nextZ=null,i.prevZ=null,function(t){var e,r,n,i,a,o,s,l,c=1;do{for(r=t,t=null,a=null,o=0;r;){for(o++,n=r,s=0,e=0;e0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(i=r,r=r.nextZ,s--):(i=n,n=n.nextZ,l--),a?a.nextZ=i:t=i,i.prevZ=a,a=i;r=n}a.nextZ=null,c*=2}while(o>1)}(i)}(t,n,i,a);for(var s,l,c=t;t.prev!==t.next;)if(s=t.prev,l=t.next,a?Vo(t,n,i,a):Uo(t))e.push(s.i/r),e.push(t.i/r),e.push(l.i/r),os(t),t=l.next,c=l.next;else if((t=l)===c){o?1===o?jo(t=Ho(No(t),e,r),e,r,n,i,a,2):2===o&&qo(t,e,r,n,i,a):jo(No(t),e,r,n,i,a,1);break}}}function Uo(t){var e=t.prev,r=t,n=t.next;if(Qo(e,r,n)>=0)return!1;for(var i=t.next.next;i!==t.prev;){if(Jo(e.x,e.y,r.x,r.y,n.x,n.y,i.x,i.y)&&Qo(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function Vo(t,e,r,n){var i=t.prev,a=t,o=t.next;if(Qo(i,a,o)>=0)return!1;for(var s=i.xa.x?i.x>o.x?i.x:o.x:a.x>o.x?a.x:o.x,u=i.y>a.y?i.y>o.y?i.y:o.y:a.y>o.y?a.y:o.y,f=Xo(s,l,e,r,n),h=Xo(c,u,e,r,n),p=t.prevZ,d=t.nextZ;p&&p.z>=f&&d&&d.z<=h;){if(p!==t.prev&&p!==t.next&&Jo(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&Qo(p.prev,p,p.next)>=0)return!1;if(p=p.prevZ,d!==t.prev&&d!==t.next&&Jo(i.x,i.y,a.x,a.y,o.x,o.y,d.x,d.y)&&Qo(d.prev,d,d.next)>=0)return!1;d=d.nextZ}for(;p&&p.z>=f;){if(p!==t.prev&&p!==t.next&&Jo(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&Qo(p.prev,p,p.next)>=0)return!1;p=p.prevZ}for(;d&&d.z<=h;){if(d!==t.prev&&d!==t.next&&Jo(i.x,i.y,a.x,a.y,o.x,o.y,d.x,d.y)&&Qo(d.prev,d,d.next)>=0)return!1;d=d.nextZ}return!0}function Ho(t,e,r){var n=t;do{var i=n.prev,a=n.next.next;!$o(i,a)&&ts(i,n,n.next,a)&&ns(i,a)&&ns(a,i)&&(e.push(i.i/r),e.push(n.i/r),e.push(a.i/r),os(n),os(n.next),n=t=a),n=n.next}while(n!==t);return No(n)}function qo(t,e,r,n,i,a){var o=t;do{for(var s=o.next.next;s!==o.prev;){if(o.i!==s.i&&Ko(o,s)){var l=is(o,s);return o=No(o,o.next),l=No(l,l.next),jo(o,e,r,n,i,a),void jo(l,e,r,n,i,a)}s=s.next}o=o.next}while(o!==t)}function Go(t,e){return t.x-e.x}function Yo(t,e){if(e=function(t,e){var r,n=e,i=t.x,a=t.y,o=-1/0;do{if(a<=n.y&&a>=n.next.y&&n.next.y!==n.y){var s=n.x+(a-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=i&&s>o){if(o=s,s===i){if(a===n.y)return n;if(a===n.next.y)return n.next}r=n.x=n.x&&n.x>=u&&i!==n.x&&Jo(ar.x||n.x===r.x&&Wo(r,n)))&&(r=n,h=l)),n=n.next}while(n!==c);return r}(t,e)){var r=is(e,t);No(e,e.next),No(r,r.next)}}function Wo(t,e){return Qo(t.prev,t,e.prev)<0&&Qo(e.next,t,t.next)<0}function Xo(t,e,r,n,i){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*i)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*i)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function Zo(t){var e=t,r=t;do{(e.x=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(a-s)-(i-o)*(n-s)>=0}function Ko(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&ts(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&(ns(t,e)&&ns(e,t)&&function(t,e){var r=t,n=!1,i=(t.x+e.x)/2,a=(t.y+e.y)/2;do{r.y>a!=r.next.y>a&&r.next.y!==r.y&&i<(r.next.x-r.x)*(a-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)&&(Qo(t.prev,t,e.prev)||Qo(t,e.prev,e))||$o(t,e)&&Qo(t.prev,t,t.next)>0&&Qo(e.prev,e,e.next)>0)}function Qo(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function $o(t,e){return t.x===e.x&&t.y===e.y}function ts(t,e,r,n){var i=rs(Qo(t,e,r)),a=rs(Qo(t,e,n)),o=rs(Qo(r,n,t)),s=rs(Qo(r,n,e));return i!==a&&o!==s||(!(0!==i||!es(t,r,e))||(!(0!==a||!es(t,n,e))||(!(0!==o||!es(r,t,n))||!(0!==s||!es(r,e,n)))))}function es(t,e,r){return e.x<=Math.max(t.x,r.x)&&e.x>=Math.min(t.x,r.x)&&e.y<=Math.max(t.y,r.y)&&e.y>=Math.min(t.y,r.y)}function rs(t){return t>0?1:t<0?-1:0}function ns(t,e){return Qo(t.prev,t,t.next)<0?Qo(t,e,t.next)>=0&&Qo(t,t.prev,e)>=0:Qo(t,e,t.prev)<0||Qo(t,t.next,e)<0}function is(t,e){var r=new ss(t.i,t.x,t.y),n=new ss(e.i,e.x,e.y),i=t.next,a=e.prev;return t.next=e,e.prev=t,r.next=i,i.prev=r,n.next=r,r.prev=n,a.next=n,n.prev=a,n}function as(t,e,r,n){var i=new ss(t,e,r);return n?(i.next=n.next,i.prev=n,n.next.prev=i,n.next=i):(i.prev=i,i.next=i),i}function os(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function ss(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function ls(t,e,r,n){for(var i=0,a=e,o=r-n;an;){if(i-n>600){var o=i-n+1,s=r-n+1,l=Math.log(o),c=.5*Math.exp(2*l/3),u=.5*Math.sqrt(l*c*(o-c)/o)*(s-o/2<0?-1:1),f=Math.max(n,Math.floor(r-s*c/o+u)),h=Math.min(i,Math.floor(r+(o-s)*c/o+u));t(e,r,f,h,a)}var p=e[r],d=n,m=i;for(us(e,n,r),a(e[i],p)>0&&us(e,n,i);d0;)m--}0===a(e[n],p)?us(e,n,m):(m++,us(e,m,i)),m<=r&&(n=m+1),r<=m&&(i=m-1)}}(t,e,r||0,n||t.length-1,i||fs)}function us(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function fs(t,e){return te?1:0}function hs(t,e){var r=t.length;if(r<=1)return[t];for(var n,i,a=[],o=0;o1)for(var l=0;l0&&(n+=t[i-1].length,r.holes.push(n))}return r},Do.default=Ro;var gs=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new zi,this.indexArray=new Yi,this.indexArray2=new Qi,this.programConfigurations=new Ua(zo,t.layers,t.zoom),this.segments=new pa,this.segments2=new pa,this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id}))};gs.prototype.populate=function(t,e,r){this.hasPattern=ds("fill",this.layers,e);for(var n=this.layers[0].layout.get("fill-sort-key"),i=[],a=0,o=t;a>3}if(a--,1===n||2===n)o+=t.readSVarint(),s+=t.readSVarint(),1===n&&(e&&l.push(e),e=[]),e.push(new i(o,s));else{if(7!==n)throw new Error("unknown command "+n);e&&e.push(e[0].clone())}}return e&&l.push(e),l},ws.prototype.bbox=function(){var t=this._pbf;t.pos=this._geometry;for(var e=t.readVarint()+t.pos,r=1,n=0,i=0,a=0,o=1/0,s=-1/0,l=1/0,c=-1/0;t.pos>3}if(n--,1===r||2===r)(i+=t.readSVarint())s&&(s=i),(a+=t.readSVarint())c&&(c=a);else if(7!==r)throw new Error("unknown command "+r)}return[o,l,s,c]},ws.prototype.toGeoJSON=function(t,e,r){var n,i,a=this.extent*Math.pow(2,r),o=this.extent*t,s=this.extent*e,l=this.loadGeometry(),c=ws.types[this.type];function u(t){for(var e=0;e>3;e=1===n?t.readString():2===n?t.readFloat():3===n?t.readDouble():4===n?t.readVarint64():5===n?t.readVarint():6===n?t.readSVarint():7===n?t.readBoolean():null}return e}(r))}function Es(t,e,r){if(3===t){var n=new As(r,r.readVarint()+r.pos);n.length&&(e[n.name]=n)}}Ms.prototype.feature=function(t){if(t<0||t>=this._features.length)throw new Error("feature index out of bounds");this._pbf.pos=this._features[t];var e=this._pbf.readVarint()+this._pbf.pos;return new _s(this._pbf,e,this.extent,this._keys,this._values)};var Ls={VectorTile:function(t,e){this.layers=t.readFields(Es,{},e)},VectorTileFeature:_s,VectorTileLayer:As},Cs=Ls.VectorTileFeature.types,Ps=Math.pow(2,13);function Is(t,e,r,n,i,a,o,s){t.emplaceBack(e,r,2*Math.floor(n*Ps)+o,i*Ps*2,a*Ps*2,Math.round(s))}var Os=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new Ri,this.indexArray=new Yi,this.programConfigurations=new Ua(bs,t.layers,t.zoom),this.segments=new pa,this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id}))};function zs(t,e){return t.x===e.x&&(t.x<0||t.x>8192)||t.y===e.y&&(t.y<0||t.y>8192)}function Ds(t){return t.every((function(t){return t.x<0}))||t.every((function(t){return t.x>8192}))||t.every((function(t){return t.y<0}))||t.every((function(t){return t.y>8192}))}Os.prototype.populate=function(t,e,r){this.features=[],this.hasPattern=ds("fill-extrusion",this.layers,e);for(var n=0,i=t;n=1){var y=d[g-1];if(!zs(v,y)){f.vertexLength+4>pa.MAX_VERTEX_ARRAY_LENGTH&&(f=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray));var x=v.sub(y)._perp()._unit(),b=y.dist(v);m+b>32768&&(m=0),Is(this.layoutVertexArray,v.x,v.y,x.x,x.y,0,0,m),Is(this.layoutVertexArray,v.x,v.y,x.x,x.y,0,1,m),m+=b,Is(this.layoutVertexArray,y.x,y.y,x.x,x.y,0,0,m),Is(this.layoutVertexArray,y.x,y.y,x.x,x.y,0,1,m);var _=f.vertexLength;this.indexArray.emplaceBack(_,_+2,_+1),this.indexArray.emplaceBack(_+1,_+2,_+3),f.vertexLength+=4,f.primitiveLength+=2}}}}if(f.vertexLength+l>pa.MAX_VERTEX_ARRAY_LENGTH&&(f=this.segments.prepareSegment(l,this.layoutVertexArray,this.indexArray)),"Polygon"===Cs[t.type]){for(var w=[],T=[],k=f.vertexLength,A=0,M=s;A=2&&t[l-1].equals(t[l-2]);)l--;for(var c=0;c0;if(T&&v>c){var A=u.dist(p);if(A>2*f){var M=u.sub(u.sub(p)._mult(f/A)._round());this.updateDistance(p,M),this.addCurrentVertex(M,m,0,0,h),p=M}}var S=p&&d,E=S?r:s?"butt":n;if(S&&"round"===E&&(_i&&(E="bevel"),"bevel"===E&&(_>2&&(E="flipbevel"),_100)y=g.mult(-1);else{var L=_*m.add(g).mag()/m.sub(g).mag();y._perp()._mult(L*(k?-1:1))}this.addCurrentVertex(u,y,0,0,h),this.addCurrentVertex(u,y.mult(-1),0,0,h)}else if("bevel"===E||"fakeround"===E){var C=-Math.sqrt(_*_-1),P=k?C:0,I=k?0:C;if(p&&this.addCurrentVertex(u,m,P,I,h),"fakeround"===E)for(var O=Math.round(180*w/Math.PI/20),z=1;z2*f){var j=u.add(d.sub(u)._mult(f/N)._round());this.updateDistance(u,j),this.addCurrentVertex(j,g,0,0,h),u=j}}}}},qs.prototype.addCurrentVertex=function(t,e,r,n,i,a){void 0===a&&(a=!1);var o=e.x+e.y*r,s=e.y-e.x*r,l=-e.x+e.y*n,c=-e.y-e.x*n;this.addHalfVertex(t,o,s,a,!1,r,i),this.addHalfVertex(t,l,c,a,!0,-n,i),this.distance>Hs/2&&0===this.totalDistance&&(this.distance=0,this.addCurrentVertex(t,e,r,n,i,a))},qs.prototype.addHalfVertex=function(t,e,r,n,i,a,o){var s=t.x,l=t.y,c=.5*this.scaledDistance;this.layoutVertexArray.emplaceBack((s<<1)+(n?1:0),(l<<1)+(i?1:0),Math.round(63*e)+128,Math.round(63*r)+128,1+(0===a?0:a<0?-1:1)|(63&c)<<2,c>>6);var u=o.vertexLength++;this.e1>=0&&this.e2>=0&&(this.indexArray.emplaceBack(this.e1,this.e2,u),o.primitiveLength++),i?this.e2=u:this.e1=u},qs.prototype.updateScaledDistance=function(){this.scaledDistance=this.totalDistance>0?(this.clipStart+(this.clipEnd-this.clipStart)*this.distance/this.totalDistance)*(Hs-1):this.distance},qs.prototype.updateDistance=function(t,e){this.distance+=t.dist(e),this.updateScaledDistance()},Nn("LineBucket",qs,{omit:["layers","patternFeatures"]});var Gs=new Si({"line-cap":new wi(Lt.layout_line["line-cap"]),"line-join":new Ti(Lt.layout_line["line-join"]),"line-miter-limit":new wi(Lt.layout_line["line-miter-limit"]),"line-round-limit":new wi(Lt.layout_line["line-round-limit"]),"line-sort-key":new Ti(Lt.layout_line["line-sort-key"])}),Ys={paint:new Si({"line-opacity":new Ti(Lt.paint_line["line-opacity"]),"line-color":new Ti(Lt.paint_line["line-color"]),"line-translate":new wi(Lt.paint_line["line-translate"]),"line-translate-anchor":new wi(Lt.paint_line["line-translate-anchor"]),"line-width":new Ti(Lt.paint_line["line-width"]),"line-gap-width":new Ti(Lt.paint_line["line-gap-width"]),"line-offset":new Ti(Lt.paint_line["line-offset"]),"line-blur":new Ti(Lt.paint_line["line-blur"]),"line-dasharray":new Ai(Lt.paint_line["line-dasharray"]),"line-pattern":new ki(Lt.paint_line["line-pattern"]),"line-gradient":new Mi(Lt.paint_line["line-gradient"])}),layout:Gs},Ws=new(function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.possiblyEvaluate=function(e,r){return r=new pi(Math.floor(r.zoom),{now:r.now,fadeDuration:r.fadeDuration,zoomHistory:r.zoomHistory,transition:r.transition}),t.prototype.possiblyEvaluate.call(this,e,r)},e.prototype.evaluate=function(e,r,n,i){return r=u({},r,{zoom:Math.floor(r.zoom)}),t.prototype.evaluate.call(this,e,r,n,i)},e}(Ti))(Ys.paint.properties["line-width"].specification);Ws.useIntegerZoom=!0;var Xs=function(t){function e(e){t.call(this,e,Ys)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype._handleSpecialPaintPropertyUpdate=function(t){"line-gradient"===t&&this._updateGradient()},e.prototype._updateGradient=function(){var t=this._transitionablePaint._values["line-gradient"].value.expression;this.gradient=Co(t,"lineProgress"),this.gradientTexture=null},e.prototype.recalculate=function(e,r){t.prototype.recalculate.call(this,e,r),this.paint._values["line-floorwidth"]=Ws.possiblyEvaluate(this._transitioningPaint._values["line-width"].value,e)},e.prototype.createBucket=function(t){return new qs(t)},e.prototype.queryRadius=function(t){var e=t,r=Zs(oo("line-width",this,e),oo("line-gap-width",this,e)),n=oo("line-offset",this,e);return r/2+Math.abs(n)+so(this.paint.get("line-translate"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,a,o,s){var l=lo(t,this.paint.get("line-translate"),this.paint.get("line-translate-anchor"),o.angle,s),c=s/2*Zs(this.paint.get("line-width").evaluate(e,r),this.paint.get("line-gap-width").evaluate(e,r)),u=this.paint.get("line-offset").evaluate(e,r);return u&&(n=function(t,e){for(var r=[],n=new i(0,0),a=0;a=3)for(var a=0;a0?e+2*t:t}var Js=Ii([{name:"a_pos_offset",components:4,type:"Int16"},{name:"a_data",components:4,type:"Uint16"},{name:"a_pixeloffset",components:4,type:"Int16"}],4),Ks=Ii([{name:"a_projected_pos",components:3,type:"Float32"}],4),Qs=(Ii([{name:"a_fade_opacity",components:1,type:"Uint32"}],4),Ii([{name:"a_placed",components:2,type:"Uint8"},{name:"a_shift",components:2,type:"Float32"}])),$s=(Ii([{type:"Int16",name:"anchorPointX"},{type:"Int16",name:"anchorPointY"},{type:"Int16",name:"x1"},{type:"Int16",name:"y1"},{type:"Int16",name:"x2"},{type:"Int16",name:"y2"},{type:"Uint32",name:"featureIndex"},{type:"Uint16",name:"sourceLayerIndex"},{type:"Uint16",name:"bucketIndex"}]),Ii([{name:"a_pos",components:2,type:"Int16"},{name:"a_anchor_pos",components:2,type:"Int16"},{name:"a_extrude",components:2,type:"Int16"}],4)),tl=Ii([{name:"a_pos",components:2,type:"Float32"},{name:"a_radius",components:1,type:"Float32"},{name:"a_flags",components:2,type:"Int16"}],4);Ii([{name:"triangle",components:3,type:"Uint16"}]),Ii([{type:"Int16",name:"anchorX"},{type:"Int16",name:"anchorY"},{type:"Uint16",name:"glyphStartIndex"},{type:"Uint16",name:"numGlyphs"},{type:"Uint32",name:"vertexStartIndex"},{type:"Uint32",name:"lineStartIndex"},{type:"Uint32",name:"lineLength"},{type:"Uint16",name:"segment"},{type:"Uint16",name:"lowerSize"},{type:"Uint16",name:"upperSize"},{type:"Float32",name:"lineOffsetX"},{type:"Float32",name:"lineOffsetY"},{type:"Uint8",name:"writingMode"},{type:"Uint8",name:"placedOrientation"},{type:"Uint8",name:"hidden"},{type:"Uint32",name:"crossTileID"},{type:"Int16",name:"associatedIconIndex"}]),Ii([{type:"Int16",name:"anchorX"},{type:"Int16",name:"anchorY"},{type:"Int16",name:"rightJustifiedTextSymbolIndex"},{type:"Int16",name:"centerJustifiedTextSymbolIndex"},{type:"Int16",name:"leftJustifiedTextSymbolIndex"},{type:"Int16",name:"verticalPlacedTextSymbolIndex"},{type:"Int16",name:"placedIconSymbolIndex"},{type:"Int16",name:"verticalPlacedIconSymbolIndex"},{type:"Uint16",name:"key"},{type:"Uint16",name:"textBoxStartIndex"},{type:"Uint16",name:"textBoxEndIndex"},{type:"Uint16",name:"verticalTextBoxStartIndex"},{type:"Uint16",name:"verticalTextBoxEndIndex"},{type:"Uint16",name:"iconBoxStartIndex"},{type:"Uint16",name:"iconBoxEndIndex"},{type:"Uint16",name:"verticalIconBoxStartIndex"},{type:"Uint16",name:"verticalIconBoxEndIndex"},{type:"Uint16",name:"featureIndex"},{type:"Uint16",name:"numHorizontalGlyphVertices"},{type:"Uint16",name:"numVerticalGlyphVertices"},{type:"Uint16",name:"numIconVertices"},{type:"Uint16",name:"numVerticalIconVertices"},{type:"Uint16",name:"useRuntimeCollisionCircles"},{type:"Uint32",name:"crossTileID"},{type:"Float32",name:"textBoxScale"},{type:"Float32",components:2,name:"textOffset"},{type:"Float32",name:"collisionCircleDiameter"}]),Ii([{type:"Float32",name:"offsetX"}]),Ii([{type:"Int16",name:"x"},{type:"Int16",name:"y"},{type:"Int16",name:"tileUnitDistanceFromAnchor"}]);function el(t,e,r){return t.sections.forEach((function(t){t.text=function(t,e,r){var n=e.layout.get("text-transform").evaluate(r,{});return"uppercase"===n?t=t.toLocaleUpperCase():"lowercase"===n&&(t=t.toLocaleLowerCase()),hi.applyArabicShaping&&(t=hi.applyArabicShaping(t)),t}(t.text,e,r)})),t}var rl={"!":"\ufe15","#":"\uff03",$:"\uff04","%":"\uff05","&":"\uff06","(":"\ufe35",")":"\ufe36","*":"\uff0a","+":"\uff0b",",":"\ufe10","-":"\ufe32",".":"\u30fb","/":"\uff0f",":":"\ufe13",";":"\ufe14","<":"\ufe3f","=":"\uff1d",">":"\ufe40","?":"\ufe16","@":"\uff20","[":"\ufe47","\\":"\uff3c","]":"\ufe48","^":"\uff3e",_:"\ufe33","`":"\uff40","{":"\ufe37","|":"\u2015","}":"\ufe38","~":"\uff5e","\xa2":"\uffe0","\xa3":"\uffe1","\xa5":"\uffe5","\xa6":"\uffe4","\xac":"\uffe2","\xaf":"\uffe3","\u2013":"\ufe32","\u2014":"\ufe31","\u2018":"\ufe43","\u2019":"\ufe44","\u201c":"\ufe41","\u201d":"\ufe42","\u2026":"\ufe19","\u2027":"\u30fb","\u20a9":"\uffe6","\u3001":"\ufe11","\u3002":"\ufe12","\u3008":"\ufe3f","\u3009":"\ufe40","\u300a":"\ufe3d","\u300b":"\ufe3e","\u300c":"\ufe41","\u300d":"\ufe42","\u300e":"\ufe43","\u300f":"\ufe44","\u3010":"\ufe3b","\u3011":"\ufe3c","\u3014":"\ufe39","\u3015":"\ufe3a","\u3016":"\ufe17","\u3017":"\ufe18","\uff01":"\ufe15","\uff08":"\ufe35","\uff09":"\ufe36","\uff0c":"\ufe10","\uff0d":"\ufe32","\uff0e":"\u30fb","\uff1a":"\ufe13","\uff1b":"\ufe14","\uff1c":"\ufe3f","\uff1e":"\ufe40","\uff1f":"\ufe16","\uff3b":"\ufe47","\uff3d":"\ufe48","\uff3f":"\ufe33","\uff5b":"\ufe37","\uff5c":"\u2015","\uff5d":"\ufe38","\uff5f":"\ufe35","\uff60":"\ufe36","\uff61":"\ufe12","\uff62":"\ufe41","\uff63":"\ufe42"};var nl=function(t,e,r,n,i){var a,o,s=8*i-n-1,l=(1<>1,u=-7,f=r?i-1:0,h=r?-1:1,p=t[e+f];for(f+=h,a=p&(1<<-u)-1,p>>=-u,u+=s;u>0;a=256*a+t[e+f],f+=h,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=n;u>0;o=256*o+t[e+f],f+=h,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),a-=c}return(p?-1:1)*o*Math.pow(2,a-n)},il=function(t,e,r,n,i,a){var o,s,l,c=8*a-i-1,u=(1<>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:a-1,d=n?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+f>=1?h/l:h*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(e*l-1)*Math.pow(2,i),o+=f):(s=e*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;t[r+p]=255&s,p+=d,s/=256,i-=8);for(o=o<0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*m},al=ol;function ol(t){this.buf=ArrayBuffer.isView&&ArrayBuffer.isView(t)?t:new Uint8Array(t||0),this.pos=0,this.type=0,this.length=this.buf.length}ol.Varint=0,ol.Fixed64=1,ol.Bytes=2,ol.Fixed32=5;var sl="undefined"==typeof TextDecoder?null:new TextDecoder("utf8");function ll(t){return t.type===ol.Bytes?t.readVarint()+t.pos:t.pos+1}function cl(t,e,r){return r?4294967296*e+(t>>>0):4294967296*(e>>>0)+(t>>>0)}function ul(t,e,r){var n=e<=16383?1:e<=2097151?2:e<=268435455?3:Math.floor(Math.log(e)/(7*Math.LN2));r.realloc(n);for(var i=r.pos-1;i>=t;i--)r.buf[i+n]=r.buf[i]}function fl(t,e){for(var r=0;r>>8,t[r+2]=e>>>16,t[r+3]=e>>>24}function wl(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16)+(t[e+3]<<24)}ol.prototype={destroy:function(){this.buf=null},readFields:function(t,e,r){for(r=r||this.length;this.pos>3,a=this.pos;this.type=7&n,t(i,e,this),this.pos===a&&this.skip(n)}return e},readMessage:function(t,e){return this.readFields(t,e,this.readVarint()+this.pos)},readFixed32:function(){var t=bl(this.buf,this.pos);return this.pos+=4,t},readSFixed32:function(){var t=wl(this.buf,this.pos);return this.pos+=4,t},readFixed64:function(){var t=bl(this.buf,this.pos)+4294967296*bl(this.buf,this.pos+4);return this.pos+=8,t},readSFixed64:function(){var t=bl(this.buf,this.pos)+4294967296*wl(this.buf,this.pos+4);return this.pos+=8,t},readFloat:function(){var t=nl(this.buf,this.pos,!0,23,4);return this.pos+=4,t},readDouble:function(){var t=nl(this.buf,this.pos,!0,52,8);return this.pos+=8,t},readVarint:function(t){var e,r,n=this.buf;return e=127&(r=n[this.pos++]),r<128?e:(e|=(127&(r=n[this.pos++]))<<7,r<128?e:(e|=(127&(r=n[this.pos++]))<<14,r<128?e:(e|=(127&(r=n[this.pos++]))<<21,r<128?e:function(t,e,r){var n,i,a=r.buf;if(i=a[r.pos++],n=(112&i)>>4,i<128)return cl(t,n,e);if(i=a[r.pos++],n|=(127&i)<<3,i<128)return cl(t,n,e);if(i=a[r.pos++],n|=(127&i)<<10,i<128)return cl(t,n,e);if(i=a[r.pos++],n|=(127&i)<<17,i<128)return cl(t,n,e);if(i=a[r.pos++],n|=(127&i)<<24,i<128)return cl(t,n,e);if(i=a[r.pos++],n|=(1&i)<<31,i<128)return cl(t,n,e);throw new Error("Expected varint not more than 10 bytes")}(e|=(15&(r=n[this.pos]))<<28,t,this))))},readVarint64:function(){return this.readVarint(!0)},readSVarint:function(){var t=this.readVarint();return t%2==1?(t+1)/-2:t/2},readBoolean:function(){return Boolean(this.readVarint())},readString:function(){var t=this.readVarint()+this.pos,e=this.pos;return this.pos=t,t-e>=12&&sl?function(t,e,r){return sl.decode(t.subarray(e,r))}(this.buf,e,t):function(t,e,r){var n="",i=e;for(;i239?4:l>223?3:l>191?2:1;if(i+u>r)break;1===u?l<128&&(c=l):2===u?128==(192&(a=t[i+1]))&&(c=(31&l)<<6|63&a)<=127&&(c=null):3===u?(a=t[i+1],o=t[i+2],128==(192&a)&&128==(192&o)&&((c=(15&l)<<12|(63&a)<<6|63&o)<=2047||c>=55296&&c<=57343)&&(c=null)):4===u&&(a=t[i+1],o=t[i+2],s=t[i+3],128==(192&a)&&128==(192&o)&&128==(192&s)&&((c=(15&l)<<18|(63&a)<<12|(63&o)<<6|63&s)<=65535||c>=1114112)&&(c=null)),null===c?(c=65533,u=1):c>65535&&(c-=65536,n+=String.fromCharCode(c>>>10&1023|55296),c=56320|1023&c),n+=String.fromCharCode(c),i+=u}return n}(this.buf,e,t)},readBytes:function(){var t=this.readVarint()+this.pos,e=this.buf.subarray(this.pos,t);return this.pos=t,e},readPackedVarint:function(t,e){if(this.type!==ol.Bytes)return t.push(this.readVarint(e));var r=ll(this);for(t=t||[];this.pos127;);else if(e===ol.Bytes)this.pos=this.readVarint()+this.pos;else if(e===ol.Fixed32)this.pos+=4;else{if(e!==ol.Fixed64)throw new Error("Unimplemented type: "+e);this.pos+=8}},writeTag:function(t,e){this.writeVarint(t<<3|e)},realloc:function(t){for(var e=this.length||16;e268435455||t<0?function(t,e){var r,n;t>=0?(r=t%4294967296|0,n=t/4294967296|0):(n=~(-t/4294967296),4294967295^(r=~(-t%4294967296))?r=r+1|0:(r=0,n=n+1|0));if(t>=0x10000000000000000||t<-0x10000000000000000)throw new Error("Given varint doesn't fit into 10 bytes");e.realloc(10),function(t,e,r){r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos]=127&t}(r,0,e),function(t,e){var r=(7&t)<<4;if(e.buf[e.pos++]|=r|((t>>>=3)?128:0),!t)return;if(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),!t)return;if(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),!t)return;if(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),!t)return;if(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),!t)return;e.buf[e.pos++]=127&t}(n,e)}(t,this):(this.realloc(4),this.buf[this.pos++]=127&t|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=t>>>7&127))))},writeSVarint:function(t){this.writeVarint(t<0?2*-t-1:2*t)},writeBoolean:function(t){this.writeVarint(Boolean(t))},writeString:function(t){t=String(t),this.realloc(4*t.length),this.pos++;var e=this.pos;this.pos=function(t,e,r){for(var n,i,a=0;a55295&&n<57344){if(!i){n>56319||a+1===e.length?(t[r++]=239,t[r++]=191,t[r++]=189):i=n;continue}if(n<56320){t[r++]=239,t[r++]=191,t[r++]=189,i=n;continue}n=i-55296<<10|n-56320|65536,i=null}else i&&(t[r++]=239,t[r++]=191,t[r++]=189,i=null);n<128?t[r++]=n:(n<2048?t[r++]=n>>6|192:(n<65536?t[r++]=n>>12|224:(t[r++]=n>>18|240,t[r++]=n>>12&63|128),t[r++]=n>>6&63|128),t[r++]=63&n|128)}return r}(this.buf,t,this.pos);var r=this.pos-e;r>=128&&ul(e,r,this),this.pos=e-1,this.writeVarint(r),this.pos+=r},writeFloat:function(t){this.realloc(4),il(this.buf,t,this.pos,!0,23,4),this.pos+=4},writeDouble:function(t){this.realloc(8),il(this.buf,t,this.pos,!0,52,8),this.pos+=8},writeBytes:function(t){var e=t.length;this.writeVarint(e),this.realloc(e);for(var r=0;r=128&&ul(r,n,this),this.pos=r-1,this.writeVarint(n),this.pos+=n},writeMessage:function(t,e,r){this.writeTag(t,ol.Bytes),this.writeRawMessage(e,r)},writePackedVarint:function(t,e){e.length&&this.writeMessage(t,fl,e)},writePackedSVarint:function(t,e){e.length&&this.writeMessage(t,hl,e)},writePackedBoolean:function(t,e){e.length&&this.writeMessage(t,ml,e)},writePackedFloat:function(t,e){e.length&&this.writeMessage(t,pl,e)},writePackedDouble:function(t,e){e.length&&this.writeMessage(t,dl,e)},writePackedFixed32:function(t,e){e.length&&this.writeMessage(t,gl,e)},writePackedSFixed32:function(t,e){e.length&&this.writeMessage(t,vl,e)},writePackedFixed64:function(t,e){e.length&&this.writeMessage(t,yl,e)},writePackedSFixed64:function(t,e){e.length&&this.writeMessage(t,xl,e)},writeBytesField:function(t,e){this.writeTag(t,ol.Bytes),this.writeBytes(e)},writeFixed32Field:function(t,e){this.writeTag(t,ol.Fixed32),this.writeFixed32(e)},writeSFixed32Field:function(t,e){this.writeTag(t,ol.Fixed32),this.writeSFixed32(e)},writeFixed64Field:function(t,e){this.writeTag(t,ol.Fixed64),this.writeFixed64(e)},writeSFixed64Field:function(t,e){this.writeTag(t,ol.Fixed64),this.writeSFixed64(e)},writeVarintField:function(t,e){this.writeTag(t,ol.Varint),this.writeVarint(e)},writeSVarintField:function(t,e){this.writeTag(t,ol.Varint),this.writeSVarint(e)},writeStringField:function(t,e){this.writeTag(t,ol.Bytes),this.writeString(e)},writeFloatField:function(t,e){this.writeTag(t,ol.Fixed32),this.writeFloat(e)},writeDoubleField:function(t,e){this.writeTag(t,ol.Fixed64),this.writeDouble(e)},writeBooleanField:function(t,e){this.writeVarintField(t,Boolean(e))}};function Tl(t,e,r){1===t&&r.readMessage(kl,e)}function kl(t,e,r){if(3===t){var n=r.readMessage(Al,{}),i=n.id,a=n.bitmap,o=n.width,s=n.height,l=n.left,c=n.top,u=n.advance;e.push({id:i,bitmap:new So({width:o+6,height:s+6},a),metrics:{width:o,height:s,left:l,top:c,advance:u}})}}function Al(t,e,r){1===t?e.id=r.readVarint():2===t?e.bitmap=r.readBytes():3===t?e.width=r.readVarint():4===t?e.height=r.readVarint():5===t?e.left=r.readSVarint():6===t?e.top=r.readSVarint():7===t&&(e.advance=r.readVarint())}function Ml(t){for(var e=0,r=0,n=0,i=t;n=0;h--){var p=o[h];if(!(f.w>p.w||f.h>p.h)){if(f.x=p.x,f.y=p.y,l=Math.max(l,f.y+f.h),s=Math.max(s,f.x+f.w),f.w===p.w&&f.h===p.h){var d=o.pop();h0&&N>A&&(A=N)}else{var j=r[S.fontStack],U=j&&j[L];if(U&&U.rect)I=U.rect,P=U.metrics;else{var V=e[S.fontStack],H=V&&V[L];if(!H)continue;P=H.metrics}C=24*(_-S.scale)}D?(t.verticalizable=!0,k.push({glyph:L,imageName:O,x:h,y:p+C,vertical:D,scale:S.scale,fontStack:S.fontStack,sectionIndex:E,metrics:P,rect:I}),h+=z*S.scale+c):(k.push({glyph:L,imageName:O,x:h,y:p+C,vertical:D,scale:S.scale,fontStack:S.fontStack,sectionIndex:E,metrics:P,rect:I}),h+=P.advance*S.scale+c)}if(0!==k.length){var q=h-c;d=Math.max(q,d),Vl(k,0,k.length-1,g,A)}h=0;var G=a*_+A;T.lineOffset=Math.max(A,w),p+=G,m=Math.max(G,m),++v}else p+=a,++v}var Y;var W=p- -17,X=Ul(o),Z=X.horizontalAlign,J=X.verticalAlign;(function(t,e,r,n,i,a,o,s,l){var c=(e-r)*i,u=0;u=a!==o?-s*n- -17:(-n*l+.5)*o;for(var f=0,h=t;f=0&&n>=t&&zl[this.text.charCodeAt(n)];n--)r--;this.text=this.text.substring(t,r),this.sectionIndex=this.sectionIndex.slice(t,r)},Il.prototype.substring=function(t,e){var r=new Il;return r.text=this.text.substring(t,e),r.sectionIndex=this.sectionIndex.slice(t,e),r.sections=this.sections,r},Il.prototype.toString=function(){return this.text},Il.prototype.getMaxScale=function(){var t=this;return this.sectionIndex.reduce((function(e,r){return Math.max(e,t.sections[r].scale)}),0)},Il.prototype.addTextSection=function(t,e){this.text+=t.text,this.sections.push(Pl.forText(t.scale,t.fontStack||e));for(var r=this.sections.length-1,n=0;n=63743?null:++this.imageSectionID:(this.imageSectionID=57344,this.imageSectionID)};var zl={9:!0,10:!0,11:!0,12:!0,13:!0,32:!0},Dl={};function Rl(t,e,r,n,i,a){if(e.imageName){var o=n[e.imageName];return o?o.displaySize[0]*e.scale*24/a+i:0}var s=r[e.fontStack],l=s&&s[t];return l?l.metrics.advance*e.scale+i:0}function Fl(t,e,r,n){var i=Math.pow(t-e,2);return n?t=0,f=0,h=0;h-r/2;){if(--o<0)return!1;s-=t[o].dist(a),a=t[o]}s+=t[o].dist(t[o+1]),o++;for(var l=[],c=0;sn;)c-=l.shift().angleDelta;if(c>i)return!1;o++,s+=f.dist(h)}return!0}function Jl(t){for(var e=0,r=0;rc){var d=(c-l)/p,m=qe(f.x,h.x,d),g=qe(f.y,h.y,d),v=new ql(m,g,h.angleTo(f),u);return v._round(),!o||Zl(t,v,s,o,e)?v:void 0}l+=p}}function tc(t,e,r,n,i,a,o,s,l){var c=Kl(n,a,o),u=Ql(n,i),f=u*o,h=0===t[0].x||t[0].x===l||0===t[0].y||t[0].y===l;return e-f=0&&_=0&&w=0&&p+u<=f){var T=new ql(_,w,x,m);T._round(),i&&!Zl(e,T,o,i,a)||d.push(T)}}h+=y}l||d.length||s||(d=t(e,h/2,n,i,a,o,s,!0,c));return d}(t,h?e/2*s%e:(u/2+2*a)*o*s%e,e,c,r,f,h,!1,l)}function ec(t,e,r,n,a){for(var o=[],s=0;s=n&&h.x>=n||(f.x>=n?f=new i(n,f.y+(h.y-f.y)*((n-f.x)/(h.x-f.x)))._round():h.x>=n&&(h=new i(n,f.y+(h.y-f.y)*((n-f.x)/(h.x-f.x)))._round()),f.y>=a&&h.y>=a||(f.y>=a?f=new i(f.x+(h.x-f.x)*((a-f.y)/(h.y-f.y)),a)._round():h.y>=a&&(h=new i(f.x+(h.x-f.x)*((a-f.y)/(h.y-f.y)),a)._round()),c&&f.equals(c[c.length-1])||(c=[f],o.push(c)),c.push(h)))))}return o}function rc(t,e,r,n){var a=[],o=t.image,s=o.pixelRatio,l=o.paddedRect.w-2,c=o.paddedRect.h-2,u=t.right-t.left,f=t.bottom-t.top,h=o.stretchX||[[0,l]],p=o.stretchY||[[0,c]],d=function(t,e){return t+e[1]-e[0]},m=h.reduce(d,0),g=p.reduce(d,0),v=l-m,y=c-g,x=0,b=m,_=0,w=g,T=0,k=v,A=0,M=y;if(o.content&&n){var S=o.content;x=nc(h,0,S[0]),_=nc(p,0,S[1]),b=nc(h,S[0],S[2]),w=nc(p,S[1],S[3]),T=S[0]-x,A=S[1]-_,k=S[2]-S[0]-b,M=S[3]-S[1]-w}var E=function(n,a,l,c){var h=ac(n.stretch-x,b,u,t.left),p=oc(n.fixed-T,k,n.stretch,m),d=ac(a.stretch-_,w,f,t.top),v=oc(a.fixed-A,M,a.stretch,g),y=ac(l.stretch-x,b,u,t.left),S=oc(l.fixed-T,k,l.stretch,m),E=ac(c.stretch-_,w,f,t.top),L=oc(c.fixed-A,M,c.stretch,g),C=new i(h,d),P=new i(y,d),I=new i(y,E),O=new i(h,E),z=new i(p/s,v/s),D=new i(S/s,L/s),R=e*Math.PI/180;if(R){var F=Math.sin(R),B=Math.cos(R),N=[B,-F,F,B];C._matMult(N),P._matMult(N),O._matMult(N),I._matMult(N)}var j=n.stretch+n.fixed,U=l.stretch+l.fixed,V=a.stretch+a.fixed,H=c.stretch+c.fixed;return{tl:C,tr:P,bl:O,br:I,tex:{x:o.paddedRect.x+1+j,y:o.paddedRect.y+1+V,w:U-j,h:H-V},writingMode:void 0,glyphOffset:[0,0],sectionIndex:0,pixelOffsetTL:z,pixelOffsetBR:D,minFontScaleX:k/s/u,minFontScaleY:M/s/f,isSDF:r}};if(n&&(o.stretchX||o.stretchY))for(var L=ic(h,v,m),C=ic(p,y,g),P=0;P0&&(d=Math.max(10,d),this.circleDiameter=d)}else{var m=o.top*s-l,g=o.bottom*s+l,v=o.left*s-l,y=o.right*s+l,x=o.collisionPadding;if(x&&(v-=x[0]*s,m-=x[1]*s,y+=x[2]*s,g+=x[3]*s),u){var b=new i(v,m),_=new i(y,m),w=new i(v,g),T=new i(y,g),k=u*Math.PI/180;b._rotate(k),_._rotate(k),w._rotate(k),T._rotate(k),v=Math.min(b.x,_.x,w.x,T.x),y=Math.max(b.x,_.x,w.x,T.x),m=Math.min(b.y,_.y,w.y,T.y),g=Math.max(b.y,_.y,w.y,T.y)}t.emplaceBack(e.x,e.y,v,m,y,g,r,n,a)}this.boxEndIndex=t.length},lc=function(t,e){if(void 0===t&&(t=[]),void 0===e&&(e=cc),this.data=t,this.length=this.data.length,this.compare=e,this.length>0)for(var r=(this.length>>1)-1;r>=0;r--)this._down(r)};function cc(t,e){return te?1:0}function uc(t,e,r){void 0===e&&(e=1),void 0===r&&(r=!1);for(var n=1/0,a=1/0,o=-1/0,s=-1/0,l=t[0],c=0;co)&&(o=u.x),(!c||u.y>s)&&(s=u.y)}var f=o-n,h=s-a,p=Math.min(f,h),d=p/2,m=new lc([],fc);if(0===p)return new i(n,a);for(var g=n;gy.d||!y.d)&&(y=b,r&&console.log("found best %d after %d probes",Math.round(1e4*b.d)/1e4,x)),b.max-y.d<=e||(d=b.h/2,m.push(new hc(b.p.x-d,b.p.y-d,d,t)),m.push(new hc(b.p.x+d,b.p.y-d,d,t)),m.push(new hc(b.p.x-d,b.p.y+d,d,t)),m.push(new hc(b.p.x+d,b.p.y+d,d,t)),x+=4)}return r&&(console.log("num probes: "+x),console.log("best distance: "+y.d)),y.p}function fc(t,e){return e.max-t.max}function hc(t,e,r,n){this.p=new i(t,e),this.h=r,this.d=function(t,e){for(var r=!1,n=1/0,i=0;it.y!=u.y>t.y&&t.x<(u.x-c.x)*(t.y-c.y)/(u.y-c.y)+c.x&&(r=!r),n=Math.min(n,ro(t,c,u))}return(r?1:-1)*Math.sqrt(n)}(this.p,n),this.max=this.d+this.h*Math.SQRT2}lc.prototype.push=function(t){this.data.push(t),this.length++,this._up(this.length-1)},lc.prototype.pop=function(){if(0!==this.length){var t=this.data[0],e=this.data.pop();return this.length--,this.length>0&&(this.data[0]=e,this._down(0)),t}},lc.prototype.peek=function(){return this.data[0]},lc.prototype._up=function(t){for(var e=this.data,r=this.compare,n=e[t];t>0;){var i=t-1>>1,a=e[i];if(r(n,a)>=0)break;e[t]=a,t=i}e[t]=n},lc.prototype._down=function(t){for(var e=this.data,r=this.compare,n=this.length>>1,i=e[t];t=0)break;e[t]=o,t=a}e[t]=i};var pc=Number.POSITIVE_INFINITY;function dc(t,e){return e[1]!==pc?function(t,e,r){var n=0,i=0;switch(e=Math.abs(e),r=Math.abs(r),t){case"top-right":case"top-left":case"top":i=r-7;break;case"bottom-right":case"bottom-left":case"bottom":i=7-r}switch(t){case"top-right":case"bottom-right":case"right":n=-e;break;case"top-left":case"bottom-left":case"left":n=e}return[n,i]}(t,e[0],e[1]):function(t,e){var r=0,n=0;e<0&&(e=0);var i=e/Math.sqrt(2);switch(t){case"top-right":case"top-left":n=i-7;break;case"bottom-right":case"bottom-left":n=7-i;break;case"bottom":n=7-e;break;case"top":n=e-7}switch(t){case"top-right":case"bottom-right":r=-i;break;case"top-left":case"bottom-left":r=i;break;case"left":r=e;break;case"right":r=-e}return[r,n]}(t,e[0])}function mc(t){switch(t){case"right":case"top-right":case"bottom-right":return"right";case"left":case"top-left":case"bottom-left":return"left"}return"center"}function gc(t,e,r,n,a,o,s,l,c,u,f,h,p,d,m){var g=function(t,e,r,n,a,o,s,l){for(var c=n.layout.get("text-rotate").evaluate(o,{})*Math.PI/180,u=[],f=0,h=e.positionedLines;f32640&&_(t.layerIds[0]+': Value for "text-size" is >= 255. Reduce your "text-size".'):"composite"===v.kind&&((y=[128*d.compositeTextSizes[0].evaluate(s,{},m),128*d.compositeTextSizes[1].evaluate(s,{},m)])[0]>32640||y[1]>32640)&&_(t.layerIds[0]+': Value for "text-size" is >= 255. Reduce your "text-size".'),t.addSymbols(t.text,g,y,l,o,s,u,e,c.lineStartIndex,c.lineLength,p,m);for(var x=0,b=f;x=0;o--)if(n.dist(a[o])0)&&("constant"!==a.value.kind||a.value.value.length>0),c="constant"!==s.value.kind||!!s.value.value||Object.keys(s.parameters).length>0,u=i.get("symbol-sort-key");if(this.features=[],l||c){for(var f=e.iconDependencies,h=e.glyphDependencies,p=e.availableImages,d=new pi(this.zoom),m=0,g=t;m=0;for(var O=0,z=k.sections;O=0;s--)a[s]={x:e[s].x,y:e[s].y,tileUnitDistanceFromAnchor:i},s>0&&(i+=e[s-1].dist(e[s]));for(var l=0;l0},Mc.prototype.hasIconData=function(){return this.icon.segments.get().length>0},Mc.prototype.hasDebugData=function(){return this.textCollisionBox&&this.iconCollisionBox},Mc.prototype.hasTextCollisionBoxData=function(){return this.hasDebugData()&&this.textCollisionBox.segments.get().length>0},Mc.prototype.hasIconCollisionBoxData=function(){return this.hasDebugData()&&this.iconCollisionBox.segments.get().length>0},Mc.prototype.addIndicesForPlacedSymbol=function(t,e){for(var r=t.placedSymbolArray.get(e),n=r.vertexStartIndex+4*r.numGlyphs,i=r.vertexStartIndex;i1||this.icon.segments.get().length>1)){this.symbolInstanceIndexes=this.getSortedSymbolIndexes(t),this.sortedAngle=t,this.text.indexArray.clear(),this.icon.indexArray.clear(),this.featureSortOrder=[];for(var r=0,n=this.symbolInstanceIndexes;r=0&&n.indexOf(t)===r&&e.addIndicesForPlacedSymbol(e.text,t)})),a.verticalPlacedTextSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.text,a.verticalPlacedTextSymbolIndex),a.placedIconSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.icon,a.placedIconSymbolIndex),a.verticalPlacedIconSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.icon,a.verticalPlacedIconSymbolIndex)}this.text.indexBuffer&&this.text.indexBuffer.updateData(this.text.indexArray),this.icon.indexBuffer&&this.icon.indexBuffer.updateData(this.icon.indexArray)}},Nn("SymbolBucket",Mc,{omit:["layers","collisionBoxArray","features","compareText"]}),Mc.MAX_GLYPHS=65535,Mc.addDynamicAttributes=wc;var Sc=new Si({"symbol-placement":new wi(Lt.layout_symbol["symbol-placement"]),"symbol-spacing":new wi(Lt.layout_symbol["symbol-spacing"]),"symbol-avoid-edges":new wi(Lt.layout_symbol["symbol-avoid-edges"]),"symbol-sort-key":new Ti(Lt.layout_symbol["symbol-sort-key"]),"symbol-z-order":new wi(Lt.layout_symbol["symbol-z-order"]),"icon-allow-overlap":new wi(Lt.layout_symbol["icon-allow-overlap"]),"icon-ignore-placement":new wi(Lt.layout_symbol["icon-ignore-placement"]),"icon-optional":new wi(Lt.layout_symbol["icon-optional"]),"icon-rotation-alignment":new wi(Lt.layout_symbol["icon-rotation-alignment"]),"icon-size":new Ti(Lt.layout_symbol["icon-size"]),"icon-text-fit":new wi(Lt.layout_symbol["icon-text-fit"]),"icon-text-fit-padding":new wi(Lt.layout_symbol["icon-text-fit-padding"]),"icon-image":new Ti(Lt.layout_symbol["icon-image"]),"icon-rotate":new Ti(Lt.layout_symbol["icon-rotate"]),"icon-padding":new wi(Lt.layout_symbol["icon-padding"]),"icon-keep-upright":new wi(Lt.layout_symbol["icon-keep-upright"]),"icon-offset":new Ti(Lt.layout_symbol["icon-offset"]),"icon-anchor":new Ti(Lt.layout_symbol["icon-anchor"]),"icon-pitch-alignment":new wi(Lt.layout_symbol["icon-pitch-alignment"]),"text-pitch-alignment":new wi(Lt.layout_symbol["text-pitch-alignment"]),"text-rotation-alignment":new wi(Lt.layout_symbol["text-rotation-alignment"]),"text-field":new Ti(Lt.layout_symbol["text-field"]),"text-font":new Ti(Lt.layout_symbol["text-font"]),"text-size":new Ti(Lt.layout_symbol["text-size"]),"text-max-width":new Ti(Lt.layout_symbol["text-max-width"]),"text-line-height":new wi(Lt.layout_symbol["text-line-height"]),"text-letter-spacing":new Ti(Lt.layout_symbol["text-letter-spacing"]),"text-justify":new Ti(Lt.layout_symbol["text-justify"]),"text-radial-offset":new Ti(Lt.layout_symbol["text-radial-offset"]),"text-variable-anchor":new wi(Lt.layout_symbol["text-variable-anchor"]),"text-anchor":new Ti(Lt.layout_symbol["text-anchor"]),"text-max-angle":new wi(Lt.layout_symbol["text-max-angle"]),"text-writing-mode":new wi(Lt.layout_symbol["text-writing-mode"]),"text-rotate":new Ti(Lt.layout_symbol["text-rotate"]),"text-padding":new wi(Lt.layout_symbol["text-padding"]),"text-keep-upright":new wi(Lt.layout_symbol["text-keep-upright"]),"text-transform":new Ti(Lt.layout_symbol["text-transform"]),"text-offset":new Ti(Lt.layout_symbol["text-offset"]),"text-allow-overlap":new wi(Lt.layout_symbol["text-allow-overlap"]),"text-ignore-placement":new wi(Lt.layout_symbol["text-ignore-placement"]),"text-optional":new wi(Lt.layout_symbol["text-optional"])}),Ec={paint:new Si({"icon-opacity":new Ti(Lt.paint_symbol["icon-opacity"]),"icon-color":new Ti(Lt.paint_symbol["icon-color"]),"icon-halo-color":new Ti(Lt.paint_symbol["icon-halo-color"]),"icon-halo-width":new Ti(Lt.paint_symbol["icon-halo-width"]),"icon-halo-blur":new Ti(Lt.paint_symbol["icon-halo-blur"]),"icon-translate":new wi(Lt.paint_symbol["icon-translate"]),"icon-translate-anchor":new wi(Lt.paint_symbol["icon-translate-anchor"]),"text-opacity":new Ti(Lt.paint_symbol["text-opacity"]),"text-color":new Ti(Lt.paint_symbol["text-color"],{runtimeType:Ut,getOverride:function(t){return t.textColor},hasOverride:function(t){return!!t.textColor}}),"text-halo-color":new Ti(Lt.paint_symbol["text-halo-color"]),"text-halo-width":new Ti(Lt.paint_symbol["text-halo-width"]),"text-halo-blur":new Ti(Lt.paint_symbol["text-halo-blur"]),"text-translate":new wi(Lt.paint_symbol["text-translate"]),"text-translate-anchor":new wi(Lt.paint_symbol["text-translate-anchor"])}),layout:Sc},Lc=function(t){this.type=t.property.overrides?t.property.overrides.runtimeType:Ft,this.defaultValue=t};Lc.prototype.evaluate=function(t){if(t.formattedSection){var e=this.defaultValue.property.overrides;if(e&&e.hasOverride(t.formattedSection))return e.getOverride(t.formattedSection)}return t.feature&&t.featureState?this.defaultValue.evaluate(t.feature,t.featureState):this.defaultValue.property.specification.default},Lc.prototype.eachChild=function(t){this.defaultValue.isConstant()||t(this.defaultValue.value._styleExpression.expression)},Lc.prototype.outputDefined=function(){return!1},Lc.prototype.serialize=function(){return null},Nn("FormatSectionOverride",Lc,{omit:["defaultValue"]});var Cc=function(t){function e(e){t.call(this,e,Ec)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.recalculate=function(e,r){if(t.prototype.recalculate.call(this,e,r),"auto"===this.layout.get("icon-rotation-alignment")&&("point"!==this.layout.get("symbol-placement")?this.layout._values["icon-rotation-alignment"]="map":this.layout._values["icon-rotation-alignment"]="viewport"),"auto"===this.layout.get("text-rotation-alignment")&&("point"!==this.layout.get("symbol-placement")?this.layout._values["text-rotation-alignment"]="map":this.layout._values["text-rotation-alignment"]="viewport"),"auto"===this.layout.get("text-pitch-alignment")&&(this.layout._values["text-pitch-alignment"]=this.layout.get("text-rotation-alignment")),"auto"===this.layout.get("icon-pitch-alignment")&&(this.layout._values["icon-pitch-alignment"]=this.layout.get("icon-rotation-alignment")),"point"===this.layout.get("symbol-placement")){var n=this.layout.get("text-writing-mode");if(n){for(var i=[],a=0,o=n;a",targetMapId:n,sourceMapId:a.mapId})}}},qc.prototype.receive=function(t){var e=t.data,r=e.id;if(r&&(!e.targetMapId||this.mapId===e.targetMapId))if(""===e.type){delete this.tasks[r];var n=this.cancelCallbacks[r];delete this.cancelCallbacks[r],n&&n()}else k()||e.mustQueue?(this.tasks[r]=e,this.taskQueue.push(r),this.invoker.trigger()):this.processTask(r,e)},qc.prototype.process=function(){if(this.taskQueue.length){var t=this.taskQueue.shift(),e=this.tasks[t];delete this.tasks[t],this.taskQueue.length&&this.invoker.trigger(),e&&this.processTask(t,e)}},qc.prototype.processTask=function(t,e){var r=this;if(""===e.type){var n=this.callbacks[t];delete this.callbacks[t],n&&(e.error?n(qn(e.error)):n(null,qn(e.data)))}else{var i=!1,a=S(this.globalScope)?void 0:[],o=e.hasCallback?function(e,n){i=!0,delete r.cancelCallbacks[t],r.target.postMessage({id:t,type:"",sourceMapId:r.mapId,error:e?Hn(e):null,data:Hn(n,a)},a)}:function(t){i=!0},s=null,l=qn(e.data);if(this.parent[e.type])s=this.parent[e.type](e.sourceMapId,l,o);else if(this.parent.getWorkerSource){var c=e.type.split(".");s=this.parent.getWorkerSource(e.sourceMapId,c[0],l.source)[c[1]](l,o)}else o(new Error("Could not find function "+e.type));!i&&s&&s.cancel&&(this.cancelCallbacks[t]=s.cancel)}},qc.prototype.remove=function(){this.invoker.remove(),this.target.removeEventListener("message",this.receive,!1)};var Yc=function(t,e){t&&(e?this.setSouthWest(t).setNorthEast(e):4===t.length?this.setSouthWest([t[0],t[1]]).setNorthEast([t[2],t[3]]):this.setSouthWest(t[0]).setNorthEast(t[1]))};Yc.prototype.setNorthEast=function(t){return this._ne=t instanceof Wc?new Wc(t.lng,t.lat):Wc.convert(t),this},Yc.prototype.setSouthWest=function(t){return this._sw=t instanceof Wc?new Wc(t.lng,t.lat):Wc.convert(t),this},Yc.prototype.extend=function(t){var e,r,n=this._sw,i=this._ne;if(t instanceof Wc)e=t,r=t;else{if(!(t instanceof Yc)){if(Array.isArray(t)){if(4===t.length||t.every(Array.isArray)){var a=t;return this.extend(Yc.convert(a))}var o=t;return this.extend(Wc.convert(o))}return this}if(e=t._sw,r=t._ne,!e||!r)return this}return n||i?(n.lng=Math.min(e.lng,n.lng),n.lat=Math.min(e.lat,n.lat),i.lng=Math.max(r.lng,i.lng),i.lat=Math.max(r.lat,i.lat)):(this._sw=new Wc(e.lng,e.lat),this._ne=new Wc(r.lng,r.lat)),this},Yc.prototype.getCenter=function(){return new Wc((this._sw.lng+this._ne.lng)/2,(this._sw.lat+this._ne.lat)/2)},Yc.prototype.getSouthWest=function(){return this._sw},Yc.prototype.getNorthEast=function(){return this._ne},Yc.prototype.getNorthWest=function(){return new Wc(this.getWest(),this.getNorth())},Yc.prototype.getSouthEast=function(){return new Wc(this.getEast(),this.getSouth())},Yc.prototype.getWest=function(){return this._sw.lng},Yc.prototype.getSouth=function(){return this._sw.lat},Yc.prototype.getEast=function(){return this._ne.lng},Yc.prototype.getNorth=function(){return this._ne.lat},Yc.prototype.toArray=function(){return[this._sw.toArray(),this._ne.toArray()]},Yc.prototype.toString=function(){return"LngLatBounds("+this._sw.toString()+", "+this._ne.toString()+")"},Yc.prototype.isEmpty=function(){return!(this._sw&&this._ne)},Yc.prototype.contains=function(t){var e=Wc.convert(t),r=e.lng,n=e.lat,i=this._sw.lat<=n&&n<=this._ne.lat,a=this._sw.lng<=r&&r<=this._ne.lng;return this._sw.lng>this._ne.lng&&(a=this._sw.lng>=r&&r>=this._ne.lng),i&&a},Yc.convert=function(t){return!t||t instanceof Yc?t:new Yc(t)};var Wc=function(t,e){if(isNaN(t)||isNaN(e))throw new Error("Invalid LngLat object: ("+t+", "+e+")");if(this.lng=+t,this.lat=+e,this.lat>90||this.lat<-90)throw new Error("Invalid LngLat latitude value: must be between -90 and 90")};Wc.prototype.wrap=function(){return new Wc(c(this.lng,-180,180),this.lat)},Wc.prototype.toArray=function(){return[this.lng,this.lat]},Wc.prototype.toString=function(){return"LngLat("+this.lng+", "+this.lat+")"},Wc.prototype.distanceTo=function(t){var e=Math.PI/180,r=this.lat*e,n=t.lat*e,i=Math.sin(r)*Math.sin(n)+Math.cos(r)*Math.cos(n)*Math.cos((t.lng-this.lng)*e);return 6371008.8*Math.acos(Math.min(i,1))},Wc.prototype.toBounds=function(t){void 0===t&&(t=0);var e=360*t/40075017,r=e/Math.cos(Math.PI/180*this.lat);return new Yc(new Wc(this.lng-r,this.lat-e),new Wc(this.lng+r,this.lat+e))},Wc.convert=function(t){if(t instanceof Wc)return t;if(Array.isArray(t)&&(2===t.length||3===t.length))return new Wc(Number(t[0]),Number(t[1]));if(!Array.isArray(t)&&"object"==typeof t&&null!==t)return new Wc(Number("lng"in t?t.lng:t.lon),Number(t.lat));throw new Error("`LngLatLike` argument must be specified as a LngLat instance, an object {lng: , lat: }, an object {lon: , lat: }, or an array of [, ]")};var Xc=2*Math.PI*6371008.8;function Zc(t){return Xc*Math.cos(t*Math.PI/180)}function Jc(t){return(180+t)/360}function Kc(t){return(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+t*Math.PI/360)))/360}function Qc(t,e){return t/Zc(e)}function $c(t){var e=180-360*t;return 360/Math.PI*Math.atan(Math.exp(e*Math.PI/180))-90}var tu=function(t,e,r){void 0===r&&(r=0),this.x=+t,this.y=+e,this.z=+r};tu.fromLngLat=function(t,e){void 0===e&&(e=0);var r=Wc.convert(t);return new tu(Jc(r.lng),Kc(r.lat),Qc(e,r.lat))},tu.prototype.toLngLat=function(){return new Wc(360*this.x-180,$c(this.y))},tu.prototype.toAltitude=function(){return t=this.z,e=this.y,t*Zc($c(e));var t,e},tu.prototype.meterInMercatorCoordinateUnits=function(){return 1/Xc*(t=$c(this.y),1/Math.cos(t*Math.PI/180));var t};var eu=function(t,e,r){this.z=t,this.x=e,this.y=r,this.key=iu(0,t,t,e,r)};eu.prototype.equals=function(t){return this.z===t.z&&this.x===t.x&&this.y===t.y},eu.prototype.url=function(t,e){var r,n,i,a,o,s=(r=this.x,n=this.y,i=this.z,a=Gc(256*r,256*(n=Math.pow(2,i)-n-1),i),o=Gc(256*(r+1),256*(n+1),i),a[0]+","+a[1]+","+o[0]+","+o[1]),l=function(t,e,r){for(var n,i="",a=t;a>0;a--)i+=(e&(n=1<this.canonical.z?new nu(t,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y):new nu(t,this.wrap,t,this.canonical.x>>e,this.canonical.y>>e)},nu.prototype.calculateScaledKey=function(t,e){var r=this.canonical.z-t;return t>this.canonical.z?iu(this.wrap*+e,t,this.canonical.z,this.canonical.x,this.canonical.y):iu(this.wrap*+e,t,t,this.canonical.x>>r,this.canonical.y>>r)},nu.prototype.isChildOf=function(t){if(t.wrap!==this.wrap)return!1;var e=this.canonical.z-t.canonical.z;return 0===t.overscaledZ||t.overscaledZ>e&&t.canonical.y===this.canonical.y>>e},nu.prototype.children=function(t){if(this.overscaledZ>=t)return[new nu(this.overscaledZ+1,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y)];var e=this.canonical.z+1,r=2*this.canonical.x,n=2*this.canonical.y;return[new nu(e,this.wrap,e,r,n),new nu(e,this.wrap,e,r+1,n),new nu(e,this.wrap,e,r,n+1),new nu(e,this.wrap,e,r+1,n+1)]},nu.prototype.isLessThan=function(t){return this.wrapt.wrap)&&(this.overscaledZt.overscaledZ)&&(this.canonical.xt.canonical.x)&&this.canonical.y=this.dim+1||e<-1||e>=this.dim+1)throw new RangeError("out of range source coordinates for DEM data");return(e+1)*this.stride+(t+1)},au.prototype._unpackMapbox=function(t,e,r){return(256*t*256+256*e+r)/10-1e4},au.prototype._unpackTerrarium=function(t,e,r){return 256*t+e+r/256-32768},au.prototype.getPixels=function(){return new Eo({width:this.stride,height:this.stride},new Uint8Array(this.data.buffer))},au.prototype.backfillBorder=function(t,e,r){if(this.dim!==t.dim)throw new Error("dem dimension mismatch");var n=e*this.dim,i=e*this.dim+this.dim,a=r*this.dim,o=r*this.dim+this.dim;switch(e){case-1:n=i-1;break;case 1:i=n+1}switch(r){case-1:a=o-1;break;case 1:o=a+1}for(var s=-e*this.dim,l=-r*this.dim,c=a;c=0&&u[3]>=0&&s.insert(o,u[0],u[1],u[2],u[3])}},uu.prototype.loadVTLayers=function(){return this.vtLayers||(this.vtLayers=new Ls.VectorTile(new al(this.rawTileData)).layers,this.sourceLayerCoder=new ou(this.vtLayers?Object.keys(this.vtLayers).sort():["_geojsonTileLayer"])),this.vtLayers},uu.prototype.query=function(t,e,r,n){var a=this;this.loadVTLayers();for(var o=t.params||{},s=8192/t.tileSize/t.scale,l=sn(o.filter),c=t.queryGeometry,u=t.queryPadding*s,f=hu(c),h=this.grid.query(f.minX-u,f.minY-u,f.maxX+u,f.maxY+u),p=hu(t.cameraQueryGeometry),d=this.grid3D.query(p.minX-u,p.minY-u,p.maxX+u,p.maxY+u,(function(e,r,n,a){return function(t,e,r,n,a){for(var o=0,s=t;o=l.x&&a>=l.y)return!0}var c=[new i(e,r),new i(e,a),new i(n,a),new i(n,r)];if(t.length>2)for(var u=0,f=c;u=0)return!0;return!1}(a,f)){var h=this.sourceLayerCoder.decode(r),p=this.vtLayers[h].feature(n);if(i.filter(new pi(this.tileID.overscaledZ),p))for(var d=this.getId(p,h),m=0;mn)i=!1;else if(e)if(this.expirationTimeot&&(t.getActor().send("enforceCacheSizeLimit",at),ht=0)},t.clamp=l,t.clearTileCache=function(t){var e=self.caches.delete("mapbox-tiles");t&&e.catch(t).then((function(){return t()}))},t.clipLine=ec,t.clone=function(t){var e=new fo(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e},t.clone$1=x,t.clone$2=function(t){var e=new fo(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e},t.collisionCircleLayout=tl,t.config=F,t.create=function(){var t=new fo(16);return fo!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},t.create$1=function(){var t=new fo(9);return fo!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},t.create$2=function(){var t=new fo(4);return fo!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},t.createCommonjsModule=e,t.createExpression=Wr,t.createLayout=Ii,t.createStyleLayer=function(t){return"custom"===t.type?new Dc(t):new Rc[t.type](t)},t.cross=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2];return t[0]=i*l-a*s,t[1]=a*o-n*l,t[2]=n*s-i*o,t},t.deepEqual=function t(e,r){if(Array.isArray(e)){if(!Array.isArray(r)||e.length!==r.length)return!1;for(var n=0;n0&&(a=1/Math.sqrt(a)),t[0]=e[0]*a,t[1]=e[1]*a,t[2]=e[2]*a,t},t.number=qe,t.offscreenCanvasSupported=pt,t.ortho=function(t,e,r,n,i,a,o){var s=1/(e-r),l=1/(n-i),c=1/(a-o);return t[0]=-2*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*l,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(e+r)*s,t[13]=(i+n)*l,t[14]=(o+a)*c,t[15]=1,t},t.parseGlyphPBF=function(t){return new al(t).readFields(Tl,[])},t.pbf=al,t.performSymbolLayout=function(t,e,r,n,i,a,o){t.createArrays();var s=512*t.overscaling;t.tilePixelRatio=8192/s,t.compareText={},t.iconsNeedLinear=!1;var l=t.layers[0].layout,c=t.layers[0]._unevaluatedLayout._values,u={};if("composite"===t.textSizeData.kind){var f=t.textSizeData,h=f.minZoom,p=f.maxZoom;u.compositeTextSizes=[c["text-size"].possiblyEvaluate(new pi(h),o),c["text-size"].possiblyEvaluate(new pi(p),o)]}if("composite"===t.iconSizeData.kind){var d=t.iconSizeData,m=d.minZoom,g=d.maxZoom;u.compositeIconSizes=[c["icon-size"].possiblyEvaluate(new pi(m),o),c["icon-size"].possiblyEvaluate(new pi(g),o)]}u.layoutTextSize=c["text-size"].possiblyEvaluate(new pi(t.zoom+1),o),u.layoutIconSize=c["icon-size"].possiblyEvaluate(new pi(t.zoom+1),o),u.textMaxSize=c["text-size"].possiblyEvaluate(new pi(18));for(var v=24*l.get("text-line-height"),y="map"===l.get("text-rotation-alignment")&&"point"!==l.get("symbol-placement"),x=l.get("text-keep-upright"),b=l.get("text-size"),w=function(){var a=k[T],s=l.get("text-font").evaluate(a,{},o).join(","),c=b.evaluate(a,{},o),f=u.layoutTextSize.evaluate(a,{},o),h=u.layoutIconSize.evaluate(a,{},o),p={horizontal:{},vertical:void 0},d=a.text,m=[0,0];if(d){var g=d.toString(),w=24*l.get("text-letter-spacing").evaluate(a,{},o),A=function(t){for(var e=0,r=t;e=8192||f.y<0||f.y>=8192||function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m,g,v,y,x,b,w,T,k,A){var M,S,E,L,C,P=t.addToLineVertexArray(e,r),I=0,O=0,z=0,D=0,R=-1,F=-1,B={},N=ya(""),j=0,U=0;void 0===s._unevaluatedLayout.getValue("text-radial-offset")?(M=s.layout.get("text-offset").evaluate(b,{},k).map((function(t){return 24*t})),j=M[0],U=M[1]):(j=24*s.layout.get("text-radial-offset").evaluate(b,{},k),U=pc);if(t.allowVerticalPlacement&&n.vertical){var V=s.layout.get("text-rotate").evaluate(b,{},k)+90,H=n.vertical;L=new sc(l,e,c,u,f,H,h,p,d,V),o&&(C=new sc(l,e,c,u,f,o,g,v,d,V))}if(i){var q=s.layout.get("icon-rotate").evaluate(b,{}),G="none"!==s.layout.get("icon-text-fit"),Y=rc(i,q,T,G),W=o?rc(o,q,T,G):void 0;E=new sc(l,e,c,u,f,i,g,v,!1,q),I=4*Y.length;var X=t.iconSizeData,Z=null;"source"===X.kind?(Z=[128*s.layout.get("icon-size").evaluate(b,{})])[0]>32640&&_(t.layerIds[0]+': Value for "icon-size" is >= 255. Reduce your "icon-size".'):"composite"===X.kind&&((Z=[128*w.compositeIconSizes[0].evaluate(b,{},k),128*w.compositeIconSizes[1].evaluate(b,{},k)])[0]>32640||Z[1]>32640)&&_(t.layerIds[0]+': Value for "icon-size" is >= 255. Reduce your "icon-size".'),t.addSymbols(t.icon,Y,Z,x,y,b,!1,e,P.lineStartIndex,P.lineLength,-1,k),R=t.icon.placedSymbolArray.length-1,W&&(O=4*W.length,t.addSymbols(t.icon,W,Z,x,y,b,Cl.vertical,e,P.lineStartIndex,P.lineLength,-1,k),F=t.icon.placedSymbolArray.length-1)}for(var J in n.horizontal){var K=n.horizontal[J];if(!S){N=ya(K.text);var Q=s.layout.get("text-rotate").evaluate(b,{},k);S=new sc(l,e,c,u,f,K,h,p,d,Q)}var $=1===K.positionedLines.length;if(z+=gc(t,e,K,a,s,d,b,m,P,n.vertical?Cl.horizontal:Cl.horizontalOnly,$?Object.keys(n.horizontal):[J],B,R,w,k),$)break}n.vertical&&(D+=gc(t,e,n.vertical,a,s,d,b,m,P,Cl.vertical,["vertical"],B,F,w,k));var tt=S?S.boxStartIndex:t.collisionBoxArray.length,et=S?S.boxEndIndex:t.collisionBoxArray.length,rt=L?L.boxStartIndex:t.collisionBoxArray.length,nt=L?L.boxEndIndex:t.collisionBoxArray.length,it=E?E.boxStartIndex:t.collisionBoxArray.length,at=E?E.boxEndIndex:t.collisionBoxArray.length,ot=C?C.boxStartIndex:t.collisionBoxArray.length,st=C?C.boxEndIndex:t.collisionBoxArray.length,lt=-1,ct=function(t,e){return t&&t.circleDiameter?Math.max(t.circleDiameter,e):e};lt=ct(S,lt),lt=ct(L,lt),lt=ct(E,lt);var ut=(lt=ct(C,lt))>-1?1:0;ut&&(lt*=A/24);t.glyphOffsetArray.length>=Mc.MAX_GLYPHS&&_("Too many glyphs being rendered in a tile. See https://github.com/mapbox/mapbox-gl-js/issues/2907");void 0!==b.sortKey&&t.addToSortKeyRanges(t.symbolInstances.length,b.sortKey);t.symbolInstances.emplaceBack(e.x,e.y,B.right>=0?B.right:-1,B.center>=0?B.center:-1,B.left>=0?B.left:-1,B.vertical||-1,R,F,N,tt,et,rt,nt,it,at,ot,st,c,z,D,I,O,ut,0,h,j,U,lt)}(t,f,s,r,n,i,h,t.layers[0],t.collisionBoxArray,e.index,e.sourceLayerIndex,t.index,v,w,A,l,x,T,M,d,e,a,c,u,o)};if("line"===S)for(var P=0,I=ec(e.geometry,0,0,8192,8192);P1){var V=$l(U,k,r.vertical||m,n,24,y);V&&C(U,V)}}else if("Polygon"===e.type)for(var H=0,q=hs(e.geometry,0);H=E.maxzoom))if("none"!==E.visibility)o(S,this.zoom,n),(m[E.id]=E.createBucket({index:u.bucketLayerIDs.length,layers:S,zoom:this.zoom,pixelRatio:this.pixelRatio,overscaling:this.overscaling,collisionBoxArray:this.collisionBoxArray,sourceLayerIndex:b,sourceID:this.source})).populate(_,g,this.tileID.canonical),u.bucketLayerIDs.push(S.map((function(t){return t.id})))}}}var L=t.mapObject(g.glyphDependencies,(function(t){return Object.keys(t).map(Number)}));Object.keys(L).length?a.send("getGlyphs",{uid:this.uid,stacks:L},(function(t,e){f||(f=t,h=e,I.call(l))})):h={};var C=Object.keys(g.iconDependencies);C.length?a.send("getImages",{icons:C,source:this.source,tileID:this.tileID,type:"icons"},(function(t,e){f||(f=t,p=e,I.call(l))})):p={};var P=Object.keys(g.patternDependencies);function I(){if(f)return s(f);if(h&&p&&d){var e=new i(h),r=new t.ImageAtlas(p,d);for(var a in m){var l=m[a];l instanceof t.SymbolBucket?(o(l.layers,this.zoom,n),t.performSymbolLayout(l,h,e.positions,p,r.iconPositions,this.showCollisionBoxes,this.tileID.canonical)):l.hasPattern&&(l instanceof t.LineBucket||l instanceof t.FillBucket||l instanceof t.FillExtrusionBucket)&&(o(l.layers,this.zoom,n),l.addFeatures(g,this.tileID.canonical,r.patternPositions))}this.status="done",s(null,{buckets:t.values(m).filter((function(t){return!t.isEmpty()})),featureIndex:u,collisionBoxArray:this.collisionBoxArray,glyphAtlasImage:e.image,imageAtlas:r,glyphMap:this.returnDependencies?h:null,iconMap:this.returnDependencies?p:null,glyphPositions:this.returnDependencies?e.positions:null})}}P.length?a.send("getImages",{icons:P,source:this.source,tileID:this.tileID,type:"patterns"},(function(t,e){f||(f=t,d=e,I.call(l))})):d={},I.call(this)};var l=function(t,e,r,n){this.actor=t,this.layerIndex=e,this.availableImages=r,this.loadVectorData=n||s,this.loading={},this.loaded={}};l.prototype.loadTile=function(e,r){var n=this,i=e.uid;this.loading||(this.loading={});var o=!!(e&&e.request&&e.request.collectResourceTiming)&&new t.RequestPerformance(e.request),s=this.loading[i]=new a(e);s.abort=this.loadVectorData(e,(function(e,a){if(delete n.loading[i],e||!a)return s.status="done",n.loaded[i]=s,r(e);var l=a.rawData,c={};a.expires&&(c.expires=a.expires),a.cacheControl&&(c.cacheControl=a.cacheControl);var u={};if(o){var f=o.finish();f&&(u.resourceTiming=JSON.parse(JSON.stringify(f)))}s.vectorTile=a.vectorTile,s.parse(a.vectorTile,n.layerIndex,n.availableImages,n.actor,(function(e,n){if(e||!n)return r(e);r(null,t.extend({rawTileData:l.slice(0)},n,c,u))})),n.loaded=n.loaded||{},n.loaded[i]=s}))},l.prototype.reloadTile=function(t,e){var r=this,n=this.loaded,i=t.uid,a=this;if(n&&n[i]){var o=n[i];o.showCollisionBoxes=t.showCollisionBoxes;var s=function(t,n){var i=o.reloadCallback;i&&(delete o.reloadCallback,o.parse(o.vectorTile,a.layerIndex,r.availableImages,a.actor,i)),e(t,n)};"parsing"===o.status?o.reloadCallback=s:"done"===o.status&&(o.vectorTile?o.parse(o.vectorTile,this.layerIndex,this.availableImages,this.actor,s):s())}},l.prototype.abortTile=function(t,e){var r=this.loading,n=t.uid;r&&r[n]&&r[n].abort&&(r[n].abort(),delete r[n]),e()},l.prototype.removeTile=function(t,e){var r=this.loaded,n=t.uid;r&&r[n]&&delete r[n],e()};var c=t.window.ImageBitmap,u=function(){this.loaded={}};u.prototype.loadTile=function(e,r){var n=e.uid,i=e.encoding,a=e.rawImageData,o=c&&a instanceof c?this.getImageData(a):a,s=new t.DEMData(n,o,i);this.loaded=this.loaded||{},this.loaded[n]=s,r(null,s)},u.prototype.getImageData=function(e){this.offscreenCanvas&&this.offscreenCanvasContext||(this.offscreenCanvas=new OffscreenCanvas(e.width,e.height),this.offscreenCanvasContext=this.offscreenCanvas.getContext("2d")),this.offscreenCanvas.width=e.width,this.offscreenCanvas.height=e.height,this.offscreenCanvasContext.drawImage(e,0,0,e.width,e.height);var r=this.offscreenCanvasContext.getImageData(-1,-1,e.width+2,e.height+2);return this.offscreenCanvasContext.clearRect(0,0,this.offscreenCanvas.width,this.offscreenCanvas.height),new t.RGBAImage({width:r.width,height:r.height},r.data)},u.prototype.removeTile=function(t){var e=this.loaded,r=t.uid;e&&e[r]&&delete e[r]};var f=function t(e,r){var n,i=e&&e.type;if("FeatureCollection"===i)for(n=0;n=0!=!!e&&t.reverse()}var d=t.vectorTile.VectorTileFeature.prototype.toGeoJSON,m=function(e){this._feature=e,this.extent=t.EXTENT,this.type=e.type,this.properties=e.tags,"id"in e&&!isNaN(e.id)&&(this.id=parseInt(e.id,10))};m.prototype.loadGeometry=function(){if(1===this._feature.type){for(var e=[],r=0,n=this._feature.geometry;r>31}function P(t,e){for(var r=t.loadGeometry(),n=t.type,i=0,a=0,o=r.length,s=0;s>1;!function t(e,r,n,i,a,o){for(;a>i;){if(a-i>600){var s=a-i+1,l=n-i+1,c=Math.log(s),u=.5*Math.exp(2*c/3),f=.5*Math.sqrt(c*u*(s-u)/s)*(l-s/2<0?-1:1),h=Math.max(i,Math.floor(n-l*u/s+f)),p=Math.min(a,Math.floor(n+(s-l)*u/s+f));t(e,r,n,h,p,o)}var d=r[2*n+o],m=i,g=a;for(z(e,r,i,n),r[2*a+o]>d&&z(e,r,i,a);md;)g--}r[2*i+o]===d?z(e,r,i,g):(g++,z(e,r,g,a)),g<=n&&(i=g+1),n<=g&&(a=g-1)}}(t,e,o,n,i,a%2),O(t,e,r,n,o-1,a+1),O(t,e,r,o+1,i,a+1)}}function z(t,e,r,n){D(t,r,n),D(e,2*r,2*n),D(e,2*r+1,2*n+1)}function D(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function R(t,e,r,n){var i=t-r,a=e-n;return i*i+a*a}_.fromVectorTileJs=w,_.fromGeojsonVt=T,_.GeoJSONWrapper=k;var F=function(t){return t[0]},B=function(t){return t[1]},N=function(t,e,r,n,i){void 0===e&&(e=F),void 0===r&&(r=B),void 0===n&&(n=64),void 0===i&&(i=Float64Array),this.nodeSize=n,this.points=t;for(var a=t.length<65536?Uint16Array:Uint32Array,o=this.ids=new a(t.length),s=this.coords=new i(2*t.length),l=0;l=r&&s<=i&&l>=n&&l<=a&&u.push(t[d]);else{var m=Math.floor((p+h)/2);s=e[2*m],l=e[2*m+1],s>=r&&s<=i&&l>=n&&l<=a&&u.push(t[m]);var g=(f+1)%2;(0===f?r<=s:n<=l)&&(c.push(p),c.push(m-1),c.push(g)),(0===f?i>=s:a>=l)&&(c.push(m+1),c.push(h),c.push(g))}}return u}(this.ids,this.coords,t,e,r,n,this.nodeSize)},N.prototype.within=function(t,e,r){return function(t,e,r,n,i,a){for(var o=[0,t.length-1,0],s=[],l=i*i;o.length;){var c=o.pop(),u=o.pop(),f=o.pop();if(u-f<=a)for(var h=f;h<=u;h++)R(e[2*h],e[2*h+1],r,n)<=l&&s.push(t[h]);else{var p=Math.floor((f+u)/2),d=e[2*p],m=e[2*p+1];R(d,m,r,n)<=l&&s.push(t[p]);var g=(c+1)%2;(0===c?r-i<=d:n-i<=m)&&(o.push(f),o.push(p-1),o.push(g)),(0===c?r+i>=d:n+i>=m)&&(o.push(p+1),o.push(u),o.push(g))}}return s}(this.ids,this.coords,t,e,r,this.nodeSize)};var j={minZoom:0,maxZoom:16,radius:40,extent:512,nodeSize:64,log:!1,generateId:!1,reduce:null,map:function(t){return t}},U=function(t){this.options=X(Object.create(j),t),this.trees=new Array(this.options.maxZoom+1)};function V(t,e,r,n,i){return{x:t,y:e,zoom:1/0,id:r,parentId:-1,numPoints:n,properties:i}}function H(t,e){var r=t.geometry.coordinates,n=r[0],i=r[1];return{x:Y(n),y:W(i),zoom:1/0,index:e,parentId:-1}}function q(t){return{type:"Feature",id:t.id,properties:G(t),geometry:{type:"Point",coordinates:[(n=t.x,360*(n-.5)),(e=t.y,r=(180-360*e)*Math.PI/180,360*Math.atan(Math.exp(r))/Math.PI-90)]}};var e,r,n}function G(t){var e=t.numPoints,r=e>=1e4?Math.round(e/1e3)+"k":e>=1e3?Math.round(e/100)/10+"k":e;return X(X({},t.properties),{cluster:!0,cluster_id:t.id,point_count:e,point_count_abbreviated:r})}function Y(t){return t/360+.5}function W(t){var e=Math.sin(t*Math.PI/180),r=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return r<0?0:r>1?1:r}function X(t,e){for(var r in e)t[r]=e[r];return t}function Z(t){return t.x}function J(t){return t.y}function K(t,e,r,n,i,a){var o=i-r,s=a-n;if(0!==o||0!==s){var l=((t-r)*o+(e-n)*s)/(o*o+s*s);l>1?(r=i,n=a):l>0&&(r+=o*l,n+=s*l)}return(o=t-r)*o+(s=e-n)*s}function Q(t,e,r,n){var i={id:void 0===t?null:t,type:e,geometry:r,tags:n,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0};return function(t){var e=t.geometry,r=t.type;if("Point"===r||"MultiPoint"===r||"LineString"===r)$(t,e);else if("Polygon"===r||"MultiLineString"===r)for(var n=0;n0&&(o+=n?(i*c-l*a)/2:Math.sqrt(Math.pow(l-i,2)+Math.pow(c-a,2))),i=l,a=c}var u=e.length-3;e[2]=1,function t(e,r,n,i){for(var a,o=i,s=n-r>>1,l=n-r,c=e[r],u=e[r+1],f=e[n],h=e[n+1],p=r+3;po)a=p,o=d;else if(d===o){var m=Math.abs(p-s);mi&&(a-r>3&&t(e,r,a,i),e[a+2]=o,n-a>3&&t(e,a,n,i))}(e,0,u,r),e[u+2]=1,e.size=Math.abs(o),e.start=0,e.end=e.size}function nt(t,e,r,n){for(var i=0;i1?1:r}function ot(t,e,r,n,i,a,o,s){if(n/=e,a>=(r/=e)&&o=n)return null;for(var l=[],c=0;c=r&&d=n)){var m=[];if("Point"===h||"MultiPoint"===h)st(f,m,r,n,i);else if("LineString"===h)lt(f,m,r,n,i,!1,s.lineMetrics);else if("MultiLineString"===h)ut(f,m,r,n,i,!1);else if("Polygon"===h)ut(f,m,r,n,i,!0);else if("MultiPolygon"===h)for(var g=0;g=r&&o<=n&&(e.push(t[a]),e.push(t[a+1]),e.push(t[a+2]))}}function lt(t,e,r,n,i,a,o){for(var s,l,c=ct(t),u=0===i?ht:pt,f=t.start,h=0;hr&&(l=u(c,p,d,g,v,r),o&&(c.start=f+s*l)):y>n?x=r&&(l=u(c,p,d,g,v,r),b=!0),x>n&&y<=n&&(l=u(c,p,d,g,v,n),b=!0),!a&&b&&(o&&(c.end=f+s*l),e.push(c),c=ct(t)),o&&(f+=s)}var _=t.length-3;p=t[_],d=t[_+1],m=t[_+2],(y=0===i?p:d)>=r&&y<=n&&ft(c,p,d,m),_=c.length-3,a&&_>=3&&(c[_]!==c[0]||c[_+1]!==c[1])&&ft(c,c[0],c[1],c[2]),c.length&&e.push(c)}function ct(t){var e=[];return e.size=t.size,e.start=t.start,e.end=t.end,e}function ut(t,e,r,n,i,a){for(var o=0;oo.maxX&&(o.maxX=u),f>o.maxY&&(o.maxY=f)}return o}function xt(t,e,r,n){var i=e.geometry,a=e.type,o=[];if("Point"===a||"MultiPoint"===a)for(var s=0;s0&&e.size<(i?o:n))r.numPoints+=e.length/3;else{for(var s=[],l=0;lo)&&(r.numSimplified++,s.push(e[l]),s.push(e[l+1])),r.numPoints++;i&&function(t,e){for(var r=0,n=0,i=t.length,a=i-2;n0===e)for(n=0,i=t.length;n24)throw new Error("maxZoom should be in the 0-24 range");if(e.promoteId&&e.generateId)throw new Error("promoteId and generateId cannot be used together.");var n=function(t,e){var r=[];if("FeatureCollection"===t.type)for(var n=0;n=n;c--){var u=+Date.now();s=this._cluster(s,c),this.trees[c]=new N(s,Z,J,a,Float32Array),r&&console.log("z%d: %d clusters in %dms",c,s.length,+Date.now()-u)}return r&&console.timeEnd("total time"),this},U.prototype.getClusters=function(t,e){var r=((t[0]+180)%360+360)%360-180,n=Math.max(-90,Math.min(90,t[1])),i=180===t[2]?180:((t[2]+180)%360+360)%360-180,a=Math.max(-90,Math.min(90,t[3]));if(t[2]-t[0]>=360)r=-180,i=180;else if(r>i){var o=this.getClusters([r,n,180,a],e),s=this.getClusters([-180,n,i,a],e);return o.concat(s)}for(var l=this.trees[this._limitZoom(e)],c=[],u=0,f=l.range(Y(r),W(a),Y(i),W(n));u1?this._map(c,!0):null,g=(l<<5)+(e+1)+this.points.length,v=0,y=f;v>5},U.prototype._getOriginZoom=function(t){return(t-this.points.length)%32},U.prototype._map=function(t,e){if(t.numPoints)return e?X({},t.properties):t.properties;var r=this.points[t.index].properties,n=this.options.map(r);return e&&n===r?X({},n):n},_t.prototype.options={maxZoom:14,indexMaxZoom:5,indexMaxPoints:1e5,tolerance:3,extent:4096,buffer:64,lineMetrics:!1,promoteId:null,generateId:!1,debug:0},_t.prototype.splitTile=function(t,e,r,n,i,a,o){for(var s=[t,e,r,n],l=this.options,c=l.debug;s.length;){n=s.pop(),r=s.pop(),e=s.pop(),t=s.pop();var u=1<1&&console.time("creation"),h=this.tiles[f]=yt(t,e,r,n,l),this.tileCoords.push({z:e,x:r,y:n}),c)){c>1&&(console.log("tile z%d-%d-%d (features: %d, points: %d, simplified: %d)",e,r,n,h.numFeatures,h.numPoints,h.numSimplified),console.timeEnd("creation"));var p="z"+e;this.stats[p]=(this.stats[p]||0)+1,this.total++}if(h.source=t,i){if(e===l.maxZoom||e===i)continue;var d=1<1&&console.time("clipping");var m,g,v,y,x,b,_=.5*l.buffer/l.extent,w=.5-_,T=.5+_,k=1+_;m=g=v=y=null,x=ot(t,u,r-_,r+T,0,h.minX,h.maxX,l),b=ot(t,u,r+w,r+k,0,h.minX,h.maxX,l),t=null,x&&(m=ot(x,u,n-_,n+T,1,h.minY,h.maxY,l),g=ot(x,u,n+w,n+k,1,h.minY,h.maxY,l),x=null),b&&(v=ot(b,u,n-_,n+T,1,h.minY,h.maxY,l),y=ot(b,u,n+w,n+k,1,h.minY,h.maxY,l),b=null),c>1&&console.timeEnd("clipping"),s.push(m||[],e+1,2*r,2*n),s.push(g||[],e+1,2*r,2*n+1),s.push(v||[],e+1,2*r+1,2*n),s.push(y||[],e+1,2*r+1,2*n+1)}}},_t.prototype.getTile=function(t,e,r){var n=this.options,i=n.extent,a=n.debug;if(t<0||t>24)return null;var o=1<1&&console.log("drilling down to z%d-%d-%d",t,e,r);for(var l,c=t,u=e,f=r;!l&&c>0;)c--,u=Math.floor(u/2),f=Math.floor(f/2),l=this.tiles[wt(c,u,f)];return l&&l.source?(a>1&&console.log("found parent tile z%d-%d-%d",c,u,f),a>1&&console.time("drilling down"),this.splitTile(l.source,c,u,f,t,e,r),a>1&&console.timeEnd("drilling down"),this.tiles[s]?gt(this.tiles[s],i):null):null};var kt=function(e){function r(t,r,n,i){e.call(this,t,r,n,Tt),i&&(this.loadGeoJSON=i)}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.loadData=function(t,e){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),this._pendingCallback=e,this._pendingLoadDataParams=t,this._state&&"Idle"!==this._state?this._state="NeedsLoadData":(this._state="Coalescing",this._loadData())},r.prototype._loadData=function(){var e=this;if(this._pendingCallback&&this._pendingLoadDataParams){var r=this._pendingCallback,n=this._pendingLoadDataParams;delete this._pendingCallback,delete this._pendingLoadDataParams;var i=!!(n&&n.request&&n.request.collectResourceTiming)&&new t.RequestPerformance(n.request);this.loadGeoJSON(n,(function(a,o){if(a||!o)return r(a);if("object"!=typeof o)return r(new Error("Input data given to '"+n.source+"' is not a valid GeoJSON object."));f(o,!0);try{e._geoJSONIndex=n.cluster?new U(function(e){var r=e.superclusterOptions,n=e.clusterProperties;if(!n||!r)return r;for(var i={},a={},o={accumulated:null,zoom:0},s={properties:null},l=Object.keys(n),c=0,u=l;c=0?0:e.button},r.remove=function(t){t.parentNode&&t.parentNode.removeChild(t)};var h=function(e){function r(){e.call(this),this.images={},this.updatedImages={},this.callbackDispatchedThisFrame={},this.loaded=!1,this.requestors=[],this.patterns={},this.atlasImage=new t.RGBAImage({width:1,height:1}),this.dirty=!0}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.isLoaded=function(){return this.loaded},r.prototype.setLoaded=function(t){if(this.loaded!==t&&(this.loaded=t,t)){for(var e=0,r=this.requestors;e=0?1.2:1))}function v(t,e,r,n,i,a,o){for(var s=0;s65535)e(new Error("glyphs > 65535 not supported"));else if(a.ranges[s])e(null,{stack:r,id:i,glyph:o});else{var l=a.requests[s];l||(l=a.requests[s]=[],x.loadGlyphRange(r,s,n.url,n.requestManager,(function(t,e){if(e){for(var r in e)n._doesCharSupportLocalGlyph(+r)||(a.glyphs[+r]=e[+r]);a.ranges[s]=!0}for(var i=0,o=l;i1&&(l=t[++s]);var u=Math.abs(c-l.left),f=Math.abs(c-l.right),h=Math.min(u,f),p=void 0,d=i/r*(n+1);if(l.isDash){var m=n-Math.abs(d);p=Math.sqrt(h*h+m*m)}else p=n-Math.sqrt(h*h+d*d);this.data[o+c]=Math.max(0,Math.min(255,p+128))}},T.prototype.addRegularDash=function(t){for(var e=t.length-1;e>=0;--e){var r=t[e],n=t[e+1];r.zeroLength?t.splice(e,1):n&&n.isDash===r.isDash&&(n.left=r.left,t.splice(e,1))}var i=t[0],a=t[t.length-1];i.isDash===a.isDash&&(i.left=a.left-this.width,a.right=i.right+this.width);for(var o=this.width*this.nextRow,s=0,l=t[s],c=0;c1&&(l=t[++s]);var u=Math.abs(c-l.left),f=Math.abs(c-l.right),h=Math.min(u,f),p=l.isDash?h:-h;this.data[o+c]=Math.max(0,Math.min(255,p+128))}},T.prototype.addDash=function(e,r){var n=r?7:0,i=2*n+1;if(this.nextRow+i>this.height)return t.warnOnce("LineAtlas out of space"),null;for(var a=0,o=0;o=n&&e.x=i&&e.y0&&(l[new t.OverscaledTileID(e.overscaledZ,a,r.z,i,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,e.wrap,r.z,r.x,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y-1).key]={backfilled:!1}),r.y+10&&(n.resourceTiming=e._resourceTiming,e._resourceTiming=[]),e.fire(new t.Event("data",n))}}))},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setData=function(e){var r=this;return this._data=e,this.fire(new t.Event("dataloading",{dataType:"source"})),this._updateWorkerData((function(e){if(e)r.fire(new t.ErrorEvent(e));else{var n={dataType:"source",sourceDataType:"content"};r._collectResourceTiming&&r._resourceTiming&&r._resourceTiming.length>0&&(n.resourceTiming=r._resourceTiming,r._resourceTiming=[]),r.fire(new t.Event("data",n))}})),this},r.prototype.getClusterExpansionZoom=function(t,e){return this.actor.send("geojson.getClusterExpansionZoom",{clusterId:t,source:this.id},e),this},r.prototype.getClusterChildren=function(t,e){return this.actor.send("geojson.getClusterChildren",{clusterId:t,source:this.id},e),this},r.prototype.getClusterLeaves=function(t,e,r,n){return this.actor.send("geojson.getClusterLeaves",{source:this.id,clusterId:t,limit:e,offset:r},n),this},r.prototype._updateWorkerData=function(e){var r=this;this._loaded=!1;var n=t.extend({},this.workerOptions),i=this._data;"string"==typeof i?(n.request=this.map._requestManager.transformRequest(t.browser.resolveURL(i),t.ResourceType.Source),n.request.collectResourceTiming=this._collectResourceTiming):n.data=JSON.stringify(i),this.actor.send(this.type+".loadData",n,(function(t,i){r._removed||i&&i.abandoned||(r._loaded=!0,i&&i.resourceTiming&&i.resourceTiming[r.id]&&(r._resourceTiming=i.resourceTiming[r.id].slice(0)),r.actor.send(r.type+".coalesce",{source:n.source},null),e(t))}))},r.prototype.loaded=function(){return this._loaded},r.prototype.loadTile=function(e,r){var n=this,i=e.actor?"reloadTile":"loadTile";e.actor=this.actor;var a={type:this.type,uid:e.uid,tileID:e.tileID,zoom:e.tileID.overscaledZ,maxZoom:this.maxzoom,tileSize:this.tileSize,source:this.id,pixelRatio:t.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes,promoteId:this.promoteId};e.request=this.actor.send(i,a,(function(t,a){return delete e.request,e.unloadVectorData(),e.aborted?r(null):t?r(t):(e.loadVectorData(a,n.map.painter,"reloadTile"===i),r(null))}))},r.prototype.abortTile=function(t){t.request&&(t.request.cancel(),delete t.request),t.aborted=!0},r.prototype.unloadTile=function(t){t.unloadVectorData(),this.actor.send("removeTile",{uid:t.uid,type:this.type,source:this.id})},r.prototype.onRemove=function(){this._removed=!0,this.actor.send("removeSource",{type:this.type,source:this.id})},r.prototype.serialize=function(){return t.extend({},this._options,{type:this.type,data:this._data})},r.prototype.hasTransition=function(){return!1},r}(t.Evented),P=t.createLayout([{name:"a_pos",type:"Int16",components:2},{name:"a_texture_pos",type:"Int16",components:2}]),I=function(e){function r(t,r,n,i){e.call(this),this.id=t,this.dispatcher=n,this.coordinates=r.coordinates,this.type="image",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this.tiles={},this._loaded=!1,this.setEventedParent(i),this.options=r}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(e,r){var n=this;this._loaded=!1,this.fire(new t.Event("dataloading",{dataType:"source"})),this.url=this.options.url,t.getImage(this.map._requestManager.transformRequest(this.url,t.ResourceType.Image),(function(i,a){n._loaded=!0,i?n.fire(new t.ErrorEvent(i)):a&&(n.image=a,e&&(n.coordinates=e),r&&r(),n._finishLoading())}))},r.prototype.loaded=function(){return this._loaded},r.prototype.updateImage=function(t){var e=this;return this.image&&t.url?(this.options.url=t.url,this.load(t.coordinates,(function(){e.texture=null})),this):this},r.prototype._finishLoading=function(){this.map&&(this.setCoordinates(this.coordinates),this.fire(new t.Event("data",{dataType:"source",sourceDataType:"metadata"})))},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setCoordinates=function(e){var r=this;this.coordinates=e;var n=e.map(t.MercatorCoordinate.fromLngLat);this.tileID=function(e){for(var r=1/0,n=1/0,i=-1/0,a=-1/0,o=0,s=e;or.end(0)?this.fire(new t.ErrorEvent(new t.ValidationError("sources."+this.id,null,"Playback for this video can be set only between the "+r.start(0)+" and "+r.end(0)+"-second mark."))):this.video.currentTime=e}},r.prototype.getVideo=function(){return this.video},r.prototype.onAdd=function(t){this.map||(this.map=t,this.load(),this.video&&(this.video.play(),this.setCoordinates(this.coordinates)))},r.prototype.prepare=function(){if(!(0===Object.keys(this.tiles).length||this.video.readyState<2)){var e=this.map.painter.context,r=e.gl;for(var n in this.boundsBuffer||(this.boundsBuffer=e.createVertexBuffer(this._boundsArray,P.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?this.video.paused||(this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE),r.texSubImage2D(r.TEXTURE_2D,0,0,0,r.RGBA,r.UNSIGNED_BYTE,this.video)):(this.texture=new t.Texture(e,this.video,r.RGBA),this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE)),this.tiles){var i=this.tiles[n];"loaded"!==i.state&&(i.state="loaded",i.texture=this.texture)}}},r.prototype.serialize=function(){return{type:"video",urls:this.urls,coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this.video&&!this.video.paused},r}(I),z=function(e){function r(r,n,i,a){e.call(this,r,n,i,a),n.coordinates?Array.isArray(n.coordinates)&&4===n.coordinates.length&&!n.coordinates.some((function(t){return!Array.isArray(t)||2!==t.length||t.some((function(t){return"number"!=typeof t}))}))||this.fire(new t.ErrorEvent(new t.ValidationError("sources."+r,null,'"coordinates" property must be an array of 4 longitude/latitude array pairs'))):this.fire(new t.ErrorEvent(new t.ValidationError("sources."+r,null,'missing required property "coordinates"'))),n.animate&&"boolean"!=typeof n.animate&&this.fire(new t.ErrorEvent(new t.ValidationError("sources."+r,null,'optional "animate" property must be a boolean value'))),n.canvas?"string"==typeof n.canvas||n.canvas instanceof t.window.HTMLCanvasElement||this.fire(new t.ErrorEvent(new t.ValidationError("sources."+r,null,'"canvas" must be either a string representing the ID of the canvas element from which to read, or an HTMLCanvasElement instance'))):this.fire(new t.ErrorEvent(new t.ValidationError("sources."+r,null,'missing required property "canvas"'))),this.options=n,this.animate=void 0===n.animate||n.animate}return e&&(r.__proto__=e),r.prototype=Object.create(e&&e.prototype),r.prototype.constructor=r,r.prototype.load=function(){this._loaded=!0,this.canvas||(this.canvas=this.options.canvas instanceof t.window.HTMLCanvasElement?this.options.canvas:t.window.document.getElementById(this.options.canvas)),this.width=this.canvas.width,this.height=this.canvas.height,this._hasInvalidDimensions()?this.fire(new t.ErrorEvent(new Error("Canvas dimensions cannot be less than or equal to zero."))):(this.play=function(){this._playing=!0,this.map.triggerRepaint()},this.pause=function(){this._playing&&(this.prepare(),this._playing=!1)},this._finishLoading())},r.prototype.getCanvas=function(){return this.canvas},r.prototype.onAdd=function(t){this.map=t,this.load(),this.canvas&&this.animate&&this.play()},r.prototype.onRemove=function(){this.pause()},r.prototype.prepare=function(){var e=!1;if(this.canvas.width!==this.width&&(this.width=this.canvas.width,e=!0),this.canvas.height!==this.height&&(this.height=this.canvas.height,e=!0),!this._hasInvalidDimensions()&&0!==Object.keys(this.tiles).length){var r=this.map.painter.context,n=r.gl;for(var i in this.boundsBuffer||(this.boundsBuffer=r.createVertexBuffer(this._boundsArray,P.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?(e||this._playing)&&this.texture.update(this.canvas,{premultiply:!0}):this.texture=new t.Texture(r,this.canvas,n.RGBA,{premultiply:!0}),this.tiles){var a=this.tiles[i];"loaded"!==a.state&&(a.state="loaded",a.texture=this.texture)}}},r.prototype.serialize=function(){return{type:"canvas",coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this._playing},r.prototype._hasInvalidDimensions=function(){for(var t=0,e=[this.canvas.width,this.canvas.height];tthis.max){var o=this._getAndRemoveByKey(this.order[0]);o&&this.onRemove(o)}return this},N.prototype.has=function(t){return t.wrapped().key in this.data},N.prototype.getAndRemove=function(t){return this.has(t)?this._getAndRemoveByKey(t.wrapped().key):null},N.prototype._getAndRemoveByKey=function(t){var e=this.data[t].shift();return e.timeout&&clearTimeout(e.timeout),0===this.data[t].length&&delete this.data[t],this.order.splice(this.order.indexOf(t),1),e.value},N.prototype.getByKey=function(t){var e=this.data[t];return e?e[0].value:null},N.prototype.get=function(t){return this.has(t)?this.data[t.wrapped().key][0].value:null},N.prototype.remove=function(t,e){if(!this.has(t))return this;var r=t.wrapped().key,n=void 0===e?0:this.data[r].indexOf(e),i=this.data[r][n];return this.data[r].splice(n,1),i.timeout&&clearTimeout(i.timeout),0===this.data[r].length&&delete this.data[r],this.onRemove(i.value),this.order.splice(this.order.indexOf(r),1),this},N.prototype.setMaxSize=function(t){for(this.max=t;this.order.length>this.max;){var e=this._getAndRemoveByKey(this.order[0]);e&&this.onRemove(e)}return this},N.prototype.filter=function(t){var e=[];for(var r in this.data)for(var n=0,i=this.data[r];n1||(Math.abs(r)>1&&(1===Math.abs(r+i)?r+=i:1===Math.abs(r-i)&&(r-=i)),e.dem&&t.dem&&(t.dem.backfillBorder(e.dem,r,n),t.neighboringTiles&&t.neighboringTiles[a]&&(t.neighboringTiles[a].backfilled=!0)))}},r.prototype.getTile=function(t){return this.getTileByID(t.key)},r.prototype.getTileByID=function(t){return this._tiles[t]},r.prototype._retainLoadedChildren=function(t,e,r,n){for(var i in this._tiles){var a=this._tiles[i];if(!(n[i]||!a.hasData()||a.tileID.overscaledZ<=e||a.tileID.overscaledZ>r)){for(var o=a.tileID;a&&a.tileID.overscaledZ>e+1;){var s=a.tileID.scaledTo(a.tileID.overscaledZ-1);(a=this._tiles[s.key])&&a.hasData()&&(o=s)}for(var l=o;l.overscaledZ>e;)if(t[(l=l.scaledTo(l.overscaledZ-1)).key]){n[o.key]=o;break}}}},r.prototype.findLoadedParent=function(t,e){if(t.key in this._loadedParentTiles){var r=this._loadedParentTiles[t.key];return r&&r.tileID.overscaledZ>=e?r:null}for(var n=t.overscaledZ-1;n>=e;n--){var i=t.scaledTo(n),a=this._getLoadedTile(i);if(a)return a}},r.prototype._getLoadedTile=function(t){var e=this._tiles[t.key];return e&&e.hasData()?e:this._cache.getByKey(t.wrapped().key)},r.prototype.updateCacheSize=function(t){var e=(Math.ceil(t.width/this._source.tileSize)+1)*(Math.ceil(t.height/this._source.tileSize)+1),r=Math.floor(5*e),n="number"==typeof this._maxTileCacheSize?Math.min(this._maxTileCacheSize,r):r;this._cache.setMaxSize(n)},r.prototype.handleWrapJump=function(t){var e=(t-(void 0===this._prevLng?t:this._prevLng))/360,r=Math.round(e);if(this._prevLng=t,r){var n={};for(var i in this._tiles){var a=this._tiles[i];a.tileID=a.tileID.unwrapTo(a.tileID.wrap+r),n[a.tileID.key]=a}for(var o in this._tiles=n,this._timers)clearTimeout(this._timers[o]),delete this._timers[o];for(var s in this._tiles){var l=this._tiles[s];this._setTileReloadTimer(s,l)}}},r.prototype.update=function(e){var n=this;if(this.transform=e,this._sourceLoaded&&!this._paused){var i;this.updateCacheSize(e),this.handleWrapJump(this.transform.center.lng),this._coveredTiles={},this.used?this._source.tileID?i=e.getVisibleUnwrappedCoordinates(this._source.tileID).map((function(e){return new t.OverscaledTileID(e.canonical.z,e.wrap,e.canonical.z,e.canonical.x,e.canonical.y)})):(i=e.coveringTiles({tileSize:this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom,reparseOverscaled:this._source.reparseOverscaled}),this._source.hasTile&&(i=i.filter((function(t){return n._source.hasTile(t)})))):i=[];var a=e.coveringZoomLevel(this._source),o=Math.max(a-r.maxOverzooming,this._source.minzoom),s=Math.max(a+r.maxUnderzooming,this._source.minzoom),l=this._updateRetainedTiles(i,a);if(It(this._source.type)){for(var c={},u={},f=0,h=Object.keys(l);fthis._source.maxzoom){var g=d.children(this._source.maxzoom)[0],v=this.getTile(g);if(v&&v.hasData()){n[g.key]=g;continue}}else{var y=d.children(this._source.maxzoom);if(n[y[0].key]&&n[y[1].key]&&n[y[2].key]&&n[y[3].key])continue}for(var x=m.wasRequested(),b=d.overscaledZ-1;b>=a;--b){var _=d.scaledTo(b);if(i[_.key])break;if(i[_.key]=!0,!(m=this.getTile(_))&&x&&(m=this._addTile(_)),m&&(n[_.key]=_,x=m.wasRequested(),m.hasData()))break}}}return n},r.prototype._updateLoadedParentTileCache=function(){for(var t in this._loadedParentTiles={},this._tiles){for(var e=[],r=void 0,n=this._tiles[t].tileID;n.overscaledZ>0;){if(n.key in this._loadedParentTiles){r=this._loadedParentTiles[n.key];break}e.push(n.key);var i=n.scaledTo(n.overscaledZ-1);if(r=this._getLoadedTile(i))break;n=i}for(var a=0,o=e;a0||(e.hasData()&&"reloading"!==e.state?this._cache.add(e.tileID,e,e.getExpiryTimeout()):(e.aborted=!0,this._abortTile(e),this._unloadTile(e))))},r.prototype.clearTiles=function(){for(var t in this._shouldReloadOnResume=!1,this._paused=!1,this._tiles)this._removeTile(t);this._cache.reset()},r.prototype.tilesIn=function(e,r,n){var i=this,a=[],o=this.transform;if(!o)return a;for(var s=n?o.getCameraQueryGeometry(e):e,l=e.map((function(t){return o.pointCoordinate(t)})),c=s.map((function(t){return o.pointCoordinate(t)})),u=this.getIds(),f=1/0,h=1/0,p=-1/0,d=-1/0,m=0,g=c;m=0&&v[1].y+g>=0){var y=l.map((function(t){return s.getTilePoint(t)})),x=c.map((function(t){return s.getTilePoint(t)}));a.push({tile:n,tileID:s,queryGeometry:y,cameraQueryGeometry:x,scale:m})}}},x=0;x=t.browser.now())return!0}return!1},r.prototype.setFeatureState=function(t,e,r){t=t||"_geojsonTileLayer",this._state.updateState(t,e,r)},r.prototype.removeFeatureState=function(t,e,r){t=t||"_geojsonTileLayer",this._state.removeFeatureState(t,e,r)},r.prototype.getFeatureState=function(t,e){return t=t||"_geojsonTileLayer",this._state.getState(t,e)},r.prototype.setDependencies=function(t,e,r){var n=this._tiles[t];n&&n.setDependencies(e,r)},r.prototype.reloadTilesForDependencies=function(t,e){for(var r in this._tiles){this._tiles[r].hasDependency(t,e)&&this._reloadTile(r,"reloading")}this._cache.filter((function(r){return!r.hasDependency(t,e)}))},r}(t.Evented);function Pt(t,e){var r=Math.abs(2*t.wrap)-+(t.wrap<0),n=Math.abs(2*e.wrap)-+(e.wrap<0);return t.overscaledZ-e.overscaledZ||n-r||e.canonical.y-t.canonical.y||e.canonical.x-t.canonical.x}function It(t){return"raster"===t||"image"===t||"video"===t}function Ot(){return new t.window.Worker(Zi.workerUrl)}Ct.maxOverzooming=10,Ct.maxUnderzooming=3;var zt="mapboxgl_preloaded_worker_pool",Dt=function(){this.active={}};Dt.prototype.acquire=function(t){if(!this.workers)for(this.workers=[];this.workers.length0?(i-o)/s:0;return this.points[a].mult(1-l).add(this.points[r].mult(l))};var Kt=function(t,e,r){var n=this.boxCells=[],i=this.circleCells=[];this.xCellCount=Math.ceil(t/r),this.yCellCount=Math.ceil(e/r);for(var a=0;a=-e[0]&&r<=e[0]&&n>=-e[1]&&n<=e[1]}function ne(e,r,n,i,a,o,s,l){var c=i?e.textSizeData:e.iconSizeData,u=t.evaluateSizeForZoom(c,n.transform.zoom),f=[256/n.width*2+1,256/n.height*2+1],h=i?e.text.dynamicLayoutVertexArray:e.icon.dynamicLayoutVertexArray;h.clear();for(var p=e.lineVertexArray,d=i?e.text.placedSymbolArray:e.icon.placedSymbolArray,m=n.transform.width/n.transform.height,g=!1,v=0;vMath.abs(n.x-r.x)*i)return{useVertical:!0};return(e===t.WritingMode.vertical?r.yn.x)?{needsFlipping:!0}:null}function oe(e,r,n,i,a,o,s,l,c,u,f,h,p,d){var m,g=r/24,v=e.lineOffsetX*g,y=e.lineOffsetY*g;if(e.numGlyphs>1){var x=e.glyphStartIndex+e.numGlyphs,b=e.lineStartIndex,_=e.lineStartIndex+e.lineLength,w=ie(g,l,v,y,n,f,h,e,c,o,p);if(!w)return{notEnoughRoom:!0};var T=te(w.first.point,s).point,k=te(w.last.point,s).point;if(i&&!n){var A=ae(e.writingMode,T,k,d);if(A)return A}m=[w.first];for(var M=e.glyphStartIndex+1;M0?C.point:se(h,L,S,1,a),I=ae(e.writingMode,S,P,d);if(I)return I}var O=le(g*l.getoffsetX(e.glyphStartIndex),v,y,n,f,h,e.segment,e.lineStartIndex,e.lineStartIndex+e.lineLength,c,o,p);if(!O)return{notEnoughRoom:!0};m=[O]}for(var z=0,D=m;z0?1:-1,m=0;i&&(d*=-1,m=Math.PI),d<0&&(m+=Math.PI);for(var g=d>0?l+s:l+s+1,v=a,y=a,x=0,b=0,_=Math.abs(p),w=[];x+b<=_;){if((g+=d)=c)return null;if(y=v,w.push(v),void 0===(v=h[g])){var T=new t.Point(u.getx(g),u.gety(g)),k=te(T,f);if(k.signedDistanceFromCamera>0)v=h[g]=k.point;else{var A=g-d;v=se(0===x?o:new t.Point(u.getx(A),u.gety(A)),T,y,_-x+1,f)}}x+=b,b=y.dist(v)}var M=(_-x)/b,S=v.sub(y),E=S.mult(M)._add(y);E._add(S._unit()._perp()._mult(n*d));var L=m+Math.atan2(v.y-y.y,v.x-y.x);return w.push(E),{point:E,angle:L,path:w}}Kt.prototype.keysLength=function(){return this.boxKeys.length+this.circleKeys.length},Kt.prototype.insert=function(t,e,r,n,i){this._forEachCell(e,r,n,i,this._insertBoxCell,this.boxUid++),this.boxKeys.push(t),this.bboxes.push(e),this.bboxes.push(r),this.bboxes.push(n),this.bboxes.push(i)},Kt.prototype.insertCircle=function(t,e,r,n){this._forEachCell(e-n,r-n,e+n,r+n,this._insertCircleCell,this.circleUid++),this.circleKeys.push(t),this.circles.push(e),this.circles.push(r),this.circles.push(n)},Kt.prototype._insertBoxCell=function(t,e,r,n,i,a){this.boxCells[i].push(a)},Kt.prototype._insertCircleCell=function(t,e,r,n,i,a){this.circleCells[i].push(a)},Kt.prototype._query=function(t,e,r,n,i,a){if(r<0||t>this.width||n<0||e>this.height)return!i&&[];var o=[];if(t<=0&&e<=0&&this.width<=r&&this.height<=n){if(i)return!0;for(var s=0;s0:o},Kt.prototype._queryCircle=function(t,e,r,n,i){var a=t-r,o=t+r,s=e-r,l=e+r;if(o<0||a>this.width||l<0||s>this.height)return!n&&[];var c=[],u={hitTest:n,circle:{x:t,y:e,radius:r},seenUids:{box:{},circle:{}}};return this._forEachCell(a,s,o,l,this._queryCellCircle,c,u,i),n?c.length>0:c},Kt.prototype.query=function(t,e,r,n,i){return this._query(t,e,r,n,!1,i)},Kt.prototype.hitTest=function(t,e,r,n,i){return this._query(t,e,r,n,!0,i)},Kt.prototype.hitTestCircle=function(t,e,r,n){return this._queryCircle(t,e,r,!0,n)},Kt.prototype._queryCell=function(t,e,r,n,i,a,o,s){var l=o.seenUids,c=this.boxCells[i];if(null!==c)for(var u=this.bboxes,f=0,h=c;f=u[d+0]&&n>=u[d+1]&&(!s||s(this.boxKeys[p]))){if(o.hitTest)return a.push(!0),!0;a.push({key:this.boxKeys[p],x1:u[d],y1:u[d+1],x2:u[d+2],y2:u[d+3]})}}}var m=this.circleCells[i];if(null!==m)for(var g=this.circles,v=0,y=m;vo*o+s*s},Kt.prototype._circleAndRectCollide=function(t,e,r,n,i,a,o){var s=(a-n)/2,l=Math.abs(t-(n+s));if(l>s+r)return!1;var c=(o-i)/2,u=Math.abs(e-(i+c));if(u>c+r)return!1;if(l<=s||u<=c)return!0;var f=l-s,h=u-c;return f*f+h*h<=r*r};var ce=new Float32Array([-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0]);function ue(t,e){for(var r=0;r=1;P--)C.push(E.path[P]);for(var I=1;I0){for(var R=C[0].clone(),F=C[0].clone(),B=1;B=A.x&&F.x<=M.x&&R.y>=A.y&&F.y<=M.y?[C]:F.xM.x||F.yM.y?[]:t.clipLine([C],A.x,A.y,M.x,M.y)}for(var N=0,j=D;N=this.screenRightBoundary||n<100||e>this.screenBottomBoundary},he.prototype.isInsideGrid=function(t,e,r,n){return r>=0&&t=0&&e0)return this.prevPlacement&&this.prevPlacement.variableOffsets[f.crossTileID]&&this.prevPlacement.placements[f.crossTileID]&&this.prevPlacement.placements[f.crossTileID].text&&(m=this.prevPlacement.variableOffsets[f.crossTileID].anchor),this.variableOffsets[f.crossTileID]={textOffset:g,width:r,height:n,anchor:t,textBoxScale:i,prevAnchor:m},this.markUsedJustification(h,t,f,p),h.allowVerticalPlacement&&(this.markUsedOrientation(h,p,f),this.placedOrientations[f.crossTileID]=p),{shift:v,placedGlyphBoxes:y}},we.prototype.placeLayerBucketPart=function(e,r,n){var i=this,a=e.parameters,o=a.bucket,s=a.layout,l=a.posMatrix,c=a.textLabelPlaneMatrix,u=a.labelToScreenMatrix,f=a.textPixelRatio,h=a.holdingForFade,p=a.collisionBoxArray,d=a.partiallyEvaluatedTextSize,m=a.collisionGroup,g=s.get("text-optional"),v=s.get("icon-optional"),y=s.get("text-allow-overlap"),x=s.get("icon-allow-overlap"),b="map"===s.get("text-rotation-alignment"),_="map"===s.get("text-pitch-alignment"),w="none"!==s.get("icon-text-fit"),T="viewport-y"===s.get("symbol-z-order"),k=y&&(x||!o.hasIconData()||v),A=x&&(y||!o.hasTextData()||g);!o.collisionArrays&&p&&o.deserializeCollisionBoxes(p);var M=function(e,a){if(!r[e.crossTileID])if(h)i.placements[e.crossTileID]=new ge(!1,!1,!1);else{var p,T=!1,M=!1,S=!0,E=null,L={box:null,offscreen:null},C={box:null,offscreen:null},P=null,I=null,O=0,z=0,D=0;a.textFeatureIndex?O=a.textFeatureIndex:e.useRuntimeCollisionCircles&&(O=e.featureIndex),a.verticalTextFeatureIndex&&(z=a.verticalTextFeatureIndex);var R=a.textBox;if(R){var F=function(r){var n=t.WritingMode.horizontal;if(o.allowVerticalPlacement&&!r&&i.prevPlacement){var a=i.prevPlacement.placedOrientations[e.crossTileID];a&&(i.placedOrientations[e.crossTileID]=a,n=a,i.markUsedOrientation(o,n,e))}return n},B=function(r,n){if(o.allowVerticalPlacement&&e.numVerticalGlyphVertices>0&&a.verticalTextBox)for(var i=0,s=o.writingModes;i0&&(N=N.filter((function(t){return t!==j.anchor}))).unshift(j.anchor)}var U=function(t,r,n){for(var a=t.x2-t.x1,s=t.y2-t.y1,c=e.textBoxScale,u=w&&!x?r:null,h={box:[],offscreen:!1},p=y?2*N.length:N.length,d=0;d=N.length,k=i.attemptAnchorPlacement(g,t,a,s,c,b,_,f,l,m,v,e,o,n,u);if(k&&(h=k.placedGlyphBoxes)&&h.box&&h.box.length){T=!0,E=k.shift;break}}return h};B((function(){return U(R,a.iconBox,t.WritingMode.horizontal)}),(function(){var r=a.verticalTextBox,n=L&&L.box&&L.box.length;return o.allowVerticalPlacement&&!n&&e.numVerticalGlyphVertices>0&&r?U(r,a.verticalIconBox,t.WritingMode.vertical):{box:null,offscreen:null}})),L&&(T=L.box,S=L.offscreen);var V=F(L&&L.box);if(!T&&i.prevPlacement){var H=i.prevPlacement.variableOffsets[e.crossTileID];H&&(i.variableOffsets[e.crossTileID]=H,i.markUsedJustification(o,H.anchor,e,V))}}else{var q=function(t,r){var n=i.collisionIndex.placeCollisionBox(t,y,f,l,m.predicate);return n&&n.box&&n.box.length&&(i.markUsedOrientation(o,r,e),i.placedOrientations[e.crossTileID]=r),n};B((function(){return q(R,t.WritingMode.horizontal)}),(function(){var r=a.verticalTextBox;return o.allowVerticalPlacement&&e.numVerticalGlyphVertices>0&&r?q(r,t.WritingMode.vertical):{box:null,offscreen:null}})),F(L&&L.box&&L.box.length)}}if(T=(p=L)&&p.box&&p.box.length>0,S=p&&p.offscreen,e.useRuntimeCollisionCircles){var G=o.text.placedSymbolArray.get(e.centerJustifiedTextSymbolIndex),Y=t.evaluateSizeForFeature(o.textSizeData,d,G),W=s.get("text-padding"),X=e.collisionCircleDiameter;P=i.collisionIndex.placeCollisionCircles(y,G,o.lineVertexArray,o.glyphOffsetArray,Y,l,c,u,n,_,m.predicate,X,W),T=y||P.circles.length>0&&!P.collisionDetected,S=S&&P.offscreen}if(a.iconFeatureIndex&&(D=a.iconFeatureIndex),a.iconBox){var Z=function(t){var e=w&&E?_e(t,E.x,E.y,b,_,i.transform.angle):t;return i.collisionIndex.placeCollisionBox(e,x,f,l,m.predicate)};M=C&&C.box&&C.box.length&&a.verticalIconBox?(I=Z(a.verticalIconBox)).box.length>0:(I=Z(a.iconBox)).box.length>0,S=S&&I.offscreen}var J=g||0===e.numHorizontalGlyphVertices&&0===e.numVerticalGlyphVertices,K=v||0===e.numIconVertices;if(J||K?K?J||(M=M&&T):T=M&&T:M=T=M&&T,T&&p&&p.box&&(C&&C.box&&z?i.collisionIndex.insertCollisionBox(p.box,s.get("text-ignore-placement"),o.bucketInstanceId,z,m.ID):i.collisionIndex.insertCollisionBox(p.box,s.get("text-ignore-placement"),o.bucketInstanceId,O,m.ID)),M&&I&&i.collisionIndex.insertCollisionBox(I.box,s.get("icon-ignore-placement"),o.bucketInstanceId,D,m.ID),P&&(T&&i.collisionIndex.insertCollisionCircles(P.circles,s.get("text-ignore-placement"),o.bucketInstanceId,O,m.ID),n)){var Q=o.bucketInstanceId,$=i.collisionCircleArrays[Q];void 0===$&&($=i.collisionCircleArrays[Q]=new ve);for(var tt=0;tt=0;--E){var L=S[E];M(o.symbolInstances.get(L),o.collisionArrays[L])}else for(var C=e.symbolInstanceStart;C=0&&(e.text.placedSymbolArray.get(c).crossTileID=a>=0&&c!==a?0:n.crossTileID)}},we.prototype.markUsedOrientation=function(e,r,n){for(var i=r===t.WritingMode.horizontal||r===t.WritingMode.horizontalOnly?r:0,a=r===t.WritingMode.vertical?r:0,o=0,s=[n.leftJustifiedTextSymbolIndex,n.centerJustifiedTextSymbolIndex,n.rightJustifiedTextSymbolIndex];o0||l>0,x=a.numIconVertices>0,b=i.placedOrientations[a.crossTileID],_=b===t.WritingMode.vertical,w=b===t.WritingMode.horizontal||b===t.WritingMode.horizontalOnly;if(y){var T=Pe(v.text),k=_?Ie:T;d(e.text,s,k);var A=w?Ie:T;d(e.text,l,A);var M=v.text.isHidden();[a.rightJustifiedTextSymbolIndex,a.centerJustifiedTextSymbolIndex,a.leftJustifiedTextSymbolIndex].forEach((function(t){t>=0&&(e.text.placedSymbolArray.get(t).hidden=M||_?1:0)})),a.verticalPlacedTextSymbolIndex>=0&&(e.text.placedSymbolArray.get(a.verticalPlacedTextSymbolIndex).hidden=M||w?1:0);var S=i.variableOffsets[a.crossTileID];S&&i.markUsedJustification(e,S.anchor,a,b);var E=i.placedOrientations[a.crossTileID];E&&(i.markUsedJustification(e,"left",a,E),i.markUsedOrientation(e,E,a))}if(x){var L=Pe(v.icon),C=!(h&&a.verticalPlacedIconSymbolIndex&&_);if(a.placedIconSymbolIndex>=0){var P=C?L:Ie;d(e.icon,a.numIconVertices,P),e.icon.placedSymbolArray.get(a.placedIconSymbolIndex).hidden=v.icon.isHidden()}if(a.verticalPlacedIconSymbolIndex>=0){var I=C?Ie:L;d(e.icon,a.numVerticalIconVertices,I),e.icon.placedSymbolArray.get(a.verticalPlacedIconSymbolIndex).hidden=v.icon.isHidden()}}if(e.hasIconCollisionBoxData()||e.hasTextCollisionBoxData()){var O=e.collisionArrays[n];if(O){var z=new t.Point(0,0);if(O.textBox||O.verticalTextBox){var D=!0;if(c){var R=i.variableOffsets[m];R?(z=be(R.anchor,R.width,R.height,R.textOffset,R.textBoxScale),u&&z._rotate(f?i.transform.angle:-i.transform.angle)):D=!1}O.textBox&&Te(e.textCollisionBox.collisionVertexArray,v.text.placed,!D||_,z.x,z.y),O.verticalTextBox&&Te(e.textCollisionBox.collisionVertexArray,v.text.placed,!D||w,z.x,z.y)}var F=Boolean(!w&&O.verticalIconBox);O.iconBox&&Te(e.iconCollisionBox.collisionVertexArray,v.icon.placed,F,h?z.x:0,h?z.y:0),O.verticalIconBox&&Te(e.iconCollisionBox.collisionVertexArray,v.icon.placed,!F,h?z.x:0,h?z.y:0)}}},g=0;gt},we.prototype.setStale=function(){this.stale=!0};var ke=Math.pow(2,25),Ae=Math.pow(2,24),Me=Math.pow(2,17),Se=Math.pow(2,16),Ee=Math.pow(2,9),Le=Math.pow(2,8),Ce=Math.pow(2,1);function Pe(t){if(0===t.opacity&&!t.placed)return 0;if(1===t.opacity&&t.placed)return 4294967295;var e=t.placed?1:0,r=Math.floor(127*t.opacity);return r*ke+e*Ae+r*Me+e*Se+r*Ee+e*Le+r*Ce+e}var Ie=0,Oe=function(t){this._sortAcrossTiles="viewport-y"!==t.layout.get("symbol-z-order")&&void 0!==t.layout.get("symbol-sort-key").constantOr(1),this._currentTileIndex=0,this._currentPartIndex=0,this._seenCrossTileIDs={},this._bucketParts=[]};Oe.prototype.continuePlacement=function(t,e,r,n,i){for(var a=this._bucketParts;this._currentTileIndex2};this._currentPlacementIndex>=0;){var s=r[e[this._currentPlacementIndex]],l=this.placement.collisionIndex.transform.zoom;if("symbol"===s.type&&(!s.minzoom||s.minzoom<=l)&&(!s.maxzoom||s.maxzoom>l)){if(this._inProgressLayer||(this._inProgressLayer=new Oe(s)),this._inProgressLayer.continuePlacement(n[s.source],this.placement,this._showCollisionBoxes,s,o))return;delete this._inProgressLayer}this._currentPlacementIndex--}this._done=!0},ze.prototype.commit=function(t){return this.placement.commit(t),this.placement};var De=512/t.EXTENT/2,Re=function(t,e,r){this.tileID=t,this.indexedSymbolInstances={},this.bucketInstanceId=r;for(var n=0;nt.overscaledZ)for(var s in o){var l=o[s];l.tileID.isChildOf(t)&&l.findMatches(e.symbolInstances,t,i)}else{var c=o[t.scaledTo(Number(a)).key];c&&c.findMatches(e.symbolInstances,t,i)}}for(var u=0;u1?"@2x":"",l=t.getJSON(r.transformRequest(r.normalizeSpriteURL(e,s,".json"),t.ResourceType.SpriteJSON),(function(t,e){l=null,o||(o=t,i=e,u())})),c=t.getImage(r.transformRequest(r.normalizeSpriteURL(e,s,".png"),t.ResourceType.SpriteImage),(function(t,e){c=null,o||(o=t,a=e,u())}));function u(){if(o)n(o);else if(i&&a){var e=t.browser.getImageData(a),r={};for(var s in i){var l=i[s],c=l.width,u=l.height,f=l.x,h=l.y,p=l.sdf,d=l.pixelRatio,m=l.stretchX,g=l.stretchY,v=l.content,y=new t.RGBAImage({width:c,height:u});t.RGBAImage.copy(e,y,{x:f,y:h},{x:0,y:0},{width:c,height:u}),r[s]={data:y,pixelRatio:d,sdf:p,stretchX:m,stretchY:g,content:v}}n(null,r)}}return{cancel:function(){l&&(l.cancel(),l=null),c&&(c.cancel(),c=null)}}}(e,this.map._requestManager,(function(e,n){if(r._spriteRequest=null,e)r.fire(new t.ErrorEvent(e));else if(n)for(var i in n)r.imageManager.addImage(i,n[i]);r.imageManager.setLoaded(!0),r._availableImages=r.imageManager.listImages(),r.dispatcher.broadcast("setImages",r._availableImages),r.fire(new t.Event("data",{dataType:"style"}))}))},r.prototype._validateLayer=function(e){var r=this.sourceCaches[e.source];if(r){var n=e.sourceLayer;if(n){var i=r.getSource();("geojson"===i.type||i.vectorLayerIds&&-1===i.vectorLayerIds.indexOf(n))&&this.fire(new t.ErrorEvent(new Error('Source layer "'+n+'" does not exist on source "'+i.id+'" as specified by style layer "'+e.id+'"')))}}},r.prototype.loaded=function(){if(!this._loaded)return!1;if(Object.keys(this._updatedSources).length)return!1;for(var t in this.sourceCaches)if(!this.sourceCaches[t].loaded())return!1;return!!this.imageManager.isLoaded()},r.prototype._serializeLayers=function(t){for(var e=[],r=0,n=t;r0)throw new Error("Unimplemented: "+i.map((function(t){return t.command})).join(", ")+".");return n.forEach((function(t){"setTransition"!==t.command&&r[t.command].apply(r,t.args)})),this.stylesheet=e,!0},r.prototype.addImage=function(e,r){if(this.getImage(e))return this.fire(new t.ErrorEvent(new Error("An image with this name already exists.")));this.imageManager.addImage(e,r),this._availableImages=this.imageManager.listImages(),this._changedImages[e]=!0,this._changed=!0,this.fire(new t.Event("data",{dataType:"style"}))},r.prototype.updateImage=function(t,e){this.imageManager.updateImage(t,e)},r.prototype.getImage=function(t){return this.imageManager.getImage(t)},r.prototype.removeImage=function(e){if(!this.getImage(e))return this.fire(new t.ErrorEvent(new Error("No image with this name exists.")));this.imageManager.removeImage(e),this._availableImages=this.imageManager.listImages(),this._changedImages[e]=!0,this._changed=!0,this.fire(new t.Event("data",{dataType:"style"}))},r.prototype.listImages=function(){return this._checkLoaded(),this.imageManager.listImages()},r.prototype.addSource=function(e,r,n){var i=this;if(void 0===n&&(n={}),this._checkLoaded(),void 0!==this.sourceCaches[e])throw new Error("There is already a source with this ID");if(!r.type)throw new Error("The type property must be defined, but the only the following properties were given: "+Object.keys(r).join(", ")+".");if(!(["vector","raster","geojson","video","image"].indexOf(r.type)>=0)||!this._validate(t.validateStyle.source,"sources."+e,r,null,n)){this.map&&this.map._collectResourceTiming&&(r.collectResourceTiming=!0);var a=this.sourceCaches[e]=new Ct(e,r,this.dispatcher);a.style=this,a.setEventedParent(this,(function(){return{isSourceLoaded:i.loaded(),source:a.serialize(),sourceId:e}})),a.onAdd(this.map),this._changed=!0}},r.prototype.removeSource=function(e){if(this._checkLoaded(),void 0===this.sourceCaches[e])throw new Error("There is no source with this ID");for(var r in this._layers)if(this._layers[r].source===e)return this.fire(new t.ErrorEvent(new Error('Source "'+e+'" cannot be removed while layer "'+r+'" is using it.')));var n=this.sourceCaches[e];delete this.sourceCaches[e],delete this._updatedSources[e],n.fire(new t.Event("data",{sourceDataType:"metadata",dataType:"source",sourceId:e})),n.setEventedParent(null),n.clearTiles(),n.onRemove&&n.onRemove(this.map),this._changed=!0},r.prototype.setGeoJSONSourceData=function(t,e){this._checkLoaded(),this.sourceCaches[t].getSource().setData(e),this._changed=!0},r.prototype.getSource=function(t){return this.sourceCaches[t]&&this.sourceCaches[t].getSource()},r.prototype.addLayer=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var i=e.id;if(this.getLayer(i))this.fire(new t.ErrorEvent(new Error('Layer with id "'+i+'" already exists on this map')));else{var a;if("custom"===e.type){if(je(this,t.validateCustomStyleLayer(e)))return;a=t.createStyleLayer(e)}else{if("object"==typeof e.source&&(this.addSource(i,e.source),e=t.clone$1(e),e=t.extend(e,{source:i})),this._validate(t.validateStyle.layer,"layers."+i,e,{arrayIndex:-1},n))return;a=t.createStyleLayer(e),this._validateLayer(a),a.setEventedParent(this,{layer:{id:i}}),this._serializedLayers[a.id]=a.serialize()}var o=r?this._order.indexOf(r):this._order.length;if(r&&-1===o)this.fire(new t.ErrorEvent(new Error('Layer with id "'+r+'" does not exist on this map.')));else{if(this._order.splice(o,0,i),this._layerOrderChanged=!0,this._layers[i]=a,this._removedLayers[i]&&a.source&&"custom"!==a.type){var s=this._removedLayers[i];delete this._removedLayers[i],s.type!==a.type?this._updatedSources[a.source]="clear":(this._updatedSources[a.source]="reload",this.sourceCaches[a.source].pause())}this._updateLayer(a),a.onAdd&&a.onAdd(this.map)}}},r.prototype.moveLayer=function(e,r){if(this._checkLoaded(),this._changed=!0,this._layers[e]){if(e!==r){var n=this._order.indexOf(e);this._order.splice(n,1);var i=r?this._order.indexOf(r):this._order.length;r&&-1===i?this.fire(new t.ErrorEvent(new Error('Layer with id "'+r+'" does not exist on this map.'))):(this._order.splice(i,0,e),this._layerOrderChanged=!0)}}else this.fire(new t.ErrorEvent(new Error("The layer '"+e+"' does not exist in the map's style and cannot be moved.")))},r.prototype.removeLayer=function(e){this._checkLoaded();var r=this._layers[e];if(r){r.setEventedParent(null);var n=this._order.indexOf(e);this._order.splice(n,1),this._layerOrderChanged=!0,this._changed=!0,this._removedLayers[e]=r,delete this._layers[e],delete this._serializedLayers[e],delete this._updatedLayers[e],delete this._updatedPaintProps[e],r.onRemove&&r.onRemove(this.map)}else this.fire(new t.ErrorEvent(new Error("The layer '"+e+"' does not exist in the map's style and cannot be removed.")))},r.prototype.getLayer=function(t){return this._layers[t]},r.prototype.hasLayer=function(t){return t in this._layers},r.prototype.setLayerZoomRange=function(e,r,n){this._checkLoaded();var i=this.getLayer(e);i?i.minzoom===r&&i.maxzoom===n||(null!=r&&(i.minzoom=r),null!=n&&(i.maxzoom=n),this._updateLayer(i)):this.fire(new t.ErrorEvent(new Error("The layer '"+e+"' does not exist in the map's style and cannot have zoom extent.")))},r.prototype.setFilter=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var i=this.getLayer(e);if(i){if(!t.deepEqual(i.filter,r))return null==r?(i.filter=void 0,void this._updateLayer(i)):void(this._validate(t.validateStyle.filter,"layers."+i.id+".filter",r,null,n)||(i.filter=t.clone$1(r),this._updateLayer(i)))}else this.fire(new t.ErrorEvent(new Error("The layer '"+e+"' does not exist in the map's style and cannot be filtered.")))},r.prototype.getFilter=function(e){return t.clone$1(this.getLayer(e).filter)},r.prototype.setLayoutProperty=function(e,r,n,i){void 0===i&&(i={}),this._checkLoaded();var a=this.getLayer(e);a?t.deepEqual(a.getLayoutProperty(r),n)||(a.setLayoutProperty(r,n,i),this._updateLayer(a)):this.fire(new t.ErrorEvent(new Error("The layer '"+e+"' does not exist in the map's style and cannot be styled.")))},r.prototype.getLayoutProperty=function(e,r){var n=this.getLayer(e);if(n)return n.getLayoutProperty(r);this.fire(new t.ErrorEvent(new Error("The layer '"+e+"' does not exist in the map's style.")))},r.prototype.setPaintProperty=function(e,r,n,i){void 0===i&&(i={}),this._checkLoaded();var a=this.getLayer(e);a?t.deepEqual(a.getPaintProperty(r),n)||(a.setPaintProperty(r,n,i)&&this._updateLayer(a),this._changed=!0,this._updatedPaintProps[e]=!0):this.fire(new t.ErrorEvent(new Error("The layer '"+e+"' does not exist in the map's style and cannot be styled.")))},r.prototype.getPaintProperty=function(t,e){return this.getLayer(t).getPaintProperty(e)},r.prototype.setFeatureState=function(e,r){this._checkLoaded();var n=e.source,i=e.sourceLayer,a=this.sourceCaches[n];if(void 0!==a){var o=a.getSource().type;"geojson"===o&&i?this.fire(new t.ErrorEvent(new Error("GeoJSON sources cannot have a sourceLayer parameter."))):"vector"!==o||i?(void 0===e.id&&this.fire(new t.ErrorEvent(new Error("The feature id parameter must be provided."))),a.setFeatureState(i,e.id,r)):this.fire(new t.ErrorEvent(new Error("The sourceLayer parameter must be provided for vector source types.")))}else this.fire(new t.ErrorEvent(new Error("The source '"+n+"' does not exist in the map's style.")))},r.prototype.removeFeatureState=function(e,r){this._checkLoaded();var n=e.source,i=this.sourceCaches[n];if(void 0!==i){var a=i.getSource().type,o="vector"===a?e.sourceLayer:void 0;"vector"!==a||o?r&&"string"!=typeof e.id&&"number"!=typeof e.id?this.fire(new t.ErrorEvent(new Error("A feature id is requred to remove its specific state property."))):i.removeFeatureState(o,e.id,r):this.fire(new t.ErrorEvent(new Error("The sourceLayer parameter must be provided for vector source types.")))}else this.fire(new t.ErrorEvent(new Error("The source '"+n+"' does not exist in the map's style.")))},r.prototype.getFeatureState=function(e){this._checkLoaded();var r=e.source,n=e.sourceLayer,i=this.sourceCaches[r];if(void 0!==i){if("vector"!==i.getSource().type||n)return void 0===e.id&&this.fire(new t.ErrorEvent(new Error("The feature id parameter must be provided."))),i.getFeatureState(n,e.id);this.fire(new t.ErrorEvent(new Error("The sourceLayer parameter must be provided for vector source types.")))}else this.fire(new t.ErrorEvent(new Error("The source '"+r+"' does not exist in the map's style.")))},r.prototype.getTransition=function(){return t.extend({duration:300,delay:0},this.stylesheet&&this.stylesheet.transition)},r.prototype.serialize=function(){return t.filterObject({version:this.stylesheet.version,name:this.stylesheet.name,metadata:this.stylesheet.metadata,light:this.stylesheet.light,center:this.stylesheet.center,zoom:this.stylesheet.zoom,bearing:this.stylesheet.bearing,pitch:this.stylesheet.pitch,sprite:this.stylesheet.sprite,glyphs:this.stylesheet.glyphs,transition:this.stylesheet.transition,sources:t.mapObject(this.sourceCaches,(function(t){return t.serialize()})),layers:this._serializeLayers(this._order)},(function(t){return void 0!==t}))},r.prototype._updateLayer=function(t){this._updatedLayers[t.id]=!0,t.source&&!this._updatedSources[t.source]&&"raster"!==this.sourceCaches[t.source].getSource().type&&(this._updatedSources[t.source]="reload",this.sourceCaches[t.source].pause()),this._changed=!0},r.prototype._flattenAndSortRenderedFeatures=function(t){for(var e=this,r=function(t){return"fill-extrusion"===e._layers[t].type},n={},i=[],a=this._order.length-1;a>=0;a--){var o=this._order[a];if(r(o)){n[o]=a;for(var s=0,l=t;s=0;d--){var m=this._order[d];if(r(m))for(var g=i.length-1;g>=0;g--){var v=i[g].feature;if(n[v.layer.id] 0.5) {gl_FragColor=vec4(0.0,0.0,1.0,0.5)*alpha;}if (v_notUsed > 0.5) {gl_FragColor*=.1;}}","attribute vec2 a_pos;attribute vec2 a_anchor_pos;attribute vec2 a_extrude;attribute vec2 a_placed;attribute vec2 a_shift;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;varying float v_placed;varying float v_notUsed;void main() {vec4 projectedPoint=u_matrix*vec4(a_anchor_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);gl_Position=u_matrix*vec4(a_pos,0.0,1.0);gl_Position.xy+=(a_extrude+a_shift)*u_extrude_scale*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;}"),tr=yr("varying float v_radius;varying vec2 v_extrude;varying float v_perspective_ratio;varying float v_collision;void main() {float alpha=0.5*min(v_perspective_ratio,1.0);float stroke_radius=0.9*max(v_perspective_ratio,1.0);float distance_to_center=length(v_extrude);float distance_to_edge=abs(distance_to_center-v_radius);float opacity_t=smoothstep(-stroke_radius,0.0,-distance_to_edge);vec4 color=mix(vec4(0.0,0.0,1.0,0.5),vec4(1.0,0.0,0.0,1.0),v_collision);gl_FragColor=color*alpha*opacity_t;}","attribute vec2 a_pos;attribute float a_radius;attribute vec2 a_flags;uniform mat4 u_matrix;uniform mat4 u_inv_matrix;uniform vec2 u_viewport_size;uniform float u_camera_to_center_distance;varying float v_radius;varying vec2 v_extrude;varying float v_perspective_ratio;varying float v_collision;vec3 toTilePosition(vec2 screenPos) {vec4 rayStart=u_inv_matrix*vec4(screenPos,-1.0,1.0);vec4 rayEnd =u_inv_matrix*vec4(screenPos, 1.0,1.0);rayStart.xyz/=rayStart.w;rayEnd.xyz /=rayEnd.w;highp float t=(0.0-rayStart.z)/(rayEnd.z-rayStart.z);return mix(rayStart.xyz,rayEnd.xyz,t);}void main() {vec2 quadCenterPos=a_pos;float radius=a_radius;float collision=a_flags.x;float vertexIdx=a_flags.y;vec2 quadVertexOffset=vec2(mix(-1.0,1.0,float(vertexIdx >=2.0)),mix(-1.0,1.0,float(vertexIdx >=1.0 && vertexIdx <=2.0)));vec2 quadVertexExtent=quadVertexOffset*radius;vec3 tilePos=toTilePosition(quadCenterPos);vec4 clipPos=u_matrix*vec4(tilePos,1.0);highp float camera_to_anchor_distance=clipPos.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);float padding_factor=1.2;v_radius=radius;v_extrude=quadVertexExtent*padding_factor;v_perspective_ratio=collision_perspective_ratio;v_collision=collision;gl_Position=vec4(clipPos.xyz/clipPos.w,1.0)+vec4(quadVertexExtent*padding_factor/u_viewport_size*2.0,0.0,0.0);}"),er=yr("uniform highp vec4 u_color;uniform sampler2D u_overlay;varying vec2 v_uv;void main() {vec4 overlay_color=texture2D(u_overlay,v_uv);gl_FragColor=mix(u_color,overlay_color,overlay_color.a);}","attribute vec2 a_pos;varying vec2 v_uv;uniform mat4 u_matrix;uniform float u_overlay_scale;void main() {v_uv=a_pos/8192.0;gl_Position=u_matrix*vec4(a_pos*u_overlay_scale,0,1);}"),rr=yr("#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float opacity\ngl_FragColor=color*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","attribute vec2 a_pos;uniform mat4 u_matrix;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float opacity\ngl_Position=u_matrix*vec4(a_pos,0,1);}"),nr=yr("varying vec2 v_pos;\n#pragma mapbox: define highp vec4 outline_color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 outline_color\n#pragma mapbox: initialize lowp float opacity\nfloat dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=outline_color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","attribute vec2 a_pos;uniform mat4 u_matrix;uniform vec2 u_world;varying vec2 v_pos;\n#pragma mapbox: define highp vec4 outline_color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 outline_color\n#pragma mapbox: initialize lowp float opacity\ngl_Position=u_matrix*vec4(a_pos,0,1);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}"),ir=yr("uniform vec2 u_texsize;uniform sampler2D u_image;uniform float u_fade;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);float dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=mix(color1,color2,u_fade)*alpha*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","uniform mat4 u_matrix;uniform vec2 u_world;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec3 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;gl_Position=u_matrix*vec4(a_pos,0,1);vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,a_pos);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}"),ar=yr("uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_fade)*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec3 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileZoomRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileZoomRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileZoomRatio,a_pos);}"),or=yr("varying vec4 v_color;void main() {gl_FragColor=v_color;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","uniform mat4 u_matrix;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;uniform float u_vertical_gradient;uniform lowp float u_opacity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec4 v_color;\n#pragma mapbox: define highp float base\n#pragma mapbox: define highp float height\n#pragma mapbox: define highp vec4 color\nvoid main() {\n#pragma mapbox: initialize highp float base\n#pragma mapbox: initialize highp float height\n#pragma mapbox: initialize highp vec4 color\nvec3 normal=a_normal_ed.xyz;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);gl_Position=u_matrix*vec4(a_pos,t > 0.0 ? height : base,1);float colorvalue=color.r*0.2126+color.g*0.7152+color.b*0.0722;v_color=vec4(0.0,0.0,0.0,1.0);vec4 ambientlight=vec4(0.03,0.03,0.03,1.0);color+=ambientlight;float directional=clamp(dot(normal/16384.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((1.0-colorvalue+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_color.r+=clamp(color.r*directional*u_lightcolor.r,mix(0.0,0.3,1.0-u_lightcolor.r),1.0);v_color.g+=clamp(color.g*directional*u_lightcolor.g,mix(0.0,0.3,1.0-u_lightcolor.g),1.0);v_color.b+=clamp(color.b*directional*u_lightcolor.b,mix(0.0,0.3,1.0-u_lightcolor.b),1.0);v_color*=u_opacity;}"),sr=yr("uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\n#pragma mapbox: define lowp float base\n#pragma mapbox: define lowp float height\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float base\n#pragma mapbox: initialize lowp float height\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);vec4 mixedColor=mix(color1,color2,u_fade);gl_FragColor=mixedColor*v_lighting;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_height_factor;uniform vec3 u_scale;uniform float u_vertical_gradient;uniform lowp float u_opacity;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\n#pragma mapbox: define lowp float base\n#pragma mapbox: define lowp float height\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float base\n#pragma mapbox: initialize lowp float height\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec3 normal=a_normal_ed.xyz;float edgedistance=a_normal_ed.w;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);float z=t > 0.0 ? height : base;gl_Position=u_matrix*vec4(a_pos,z,1);vec2 pos=normal.x==1.0 && normal.y==0.0 && normal.z==16384.0\n? a_pos\n: vec2(edgedistance,z*u_height_factor);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,pos);v_lighting=vec4(0.0,0.0,0.0,1.0);float directional=clamp(dot(normal/16383.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((0.5+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_lighting.rgb+=clamp(directional*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_lighting*=u_opacity;}"),lr=yr("#ifdef GL_ES\nprecision highp float;\n#endif\nuniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_dimension;uniform float u_zoom;uniform float u_maxzoom;uniform vec4 u_unpack;float getElevation(vec2 coord,float bias) {vec4 data=texture2D(u_image,coord)*255.0;data.a=-1.0;return dot(data,u_unpack)/4.0;}void main() {vec2 epsilon=1.0/u_dimension;float a=getElevation(v_pos+vec2(-epsilon.x,-epsilon.y),0.0);float b=getElevation(v_pos+vec2(0,-epsilon.y),0.0);float c=getElevation(v_pos+vec2(epsilon.x,-epsilon.y),0.0);float d=getElevation(v_pos+vec2(-epsilon.x,0),0.0);float e=getElevation(v_pos,0.0);float f=getElevation(v_pos+vec2(epsilon.x,0),0.0);float g=getElevation(v_pos+vec2(-epsilon.x,epsilon.y),0.0);float h=getElevation(v_pos+vec2(0,epsilon.y),0.0);float i=getElevation(v_pos+vec2(epsilon.x,epsilon.y),0.0);float exaggeration=u_zoom < 2.0 ? 0.4 : u_zoom < 4.5 ? 0.35 : 0.3;vec2 deriv=vec2((c+f+f+i)-(a+d+d+g),(g+h+h+i)-(a+b+b+c))/ pow(2.0,(u_zoom-u_maxzoom)*exaggeration+19.2562-u_zoom);gl_FragColor=clamp(vec4(deriv.x/2.0+0.5,deriv.y/2.0+0.5,1.0,1.0),0.0,1.0);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","uniform mat4 u_matrix;uniform vec2 u_dimension;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);highp vec2 epsilon=1.0/u_dimension;float scale=(u_dimension.x-2.0)/u_dimension.x;v_pos=(a_texture_pos/8192.0)*scale+epsilon;}"),cr=yr("uniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_latrange;uniform vec2 u_light;uniform vec4 u_shadow;uniform vec4 u_highlight;uniform vec4 u_accent;\n#define PI 3.141592653589793\nvoid main() {vec4 pixel=texture2D(u_image,v_pos);vec2 deriv=((pixel.rg*2.0)-1.0);float scaleFactor=cos(radians((u_latrange[0]-u_latrange[1])*(1.0-v_pos.y)+u_latrange[1]));float slope=atan(1.25*length(deriv)/scaleFactor);float aspect=deriv.x !=0.0 ? atan(deriv.y,-deriv.x) : PI/2.0*(deriv.y > 0.0 ? 1.0 :-1.0);float intensity=u_light.x;float azimuth=u_light.y+PI;float base=1.875-intensity*1.75;float maxValue=0.5*PI;float scaledSlope=intensity !=0.5 ? ((pow(base,slope)-1.0)/(pow(base,maxValue)-1.0))*maxValue : slope;float accent=cos(scaledSlope);vec4 accent_color=(1.0-accent)*u_accent*clamp(intensity*2.0,0.0,1.0);float shade=abs(mod((aspect+azimuth)/PI+0.5,2.0)-1.0);vec4 shade_color=mix(u_shadow,u_highlight,shade)*sin(scaledSlope)*clamp(intensity*2.0,0.0,1.0);gl_FragColor=accent_color*(1.0-shade_color.a)+shade_color;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","uniform mat4 u_matrix;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=a_texture_pos/8192.0;}"),ur=yr("uniform lowp float u_device_pixel_ratio;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);gl_FragColor=color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","\n#define scale 0.015873016\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform vec2 u_units_to_pixels;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_linesofar;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float width\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float width\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}"),fr=yr("uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;varying highp float v_lineprogress;\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);vec4 color=texture2D(u_image,vec2(v_lineprogress,0.5));gl_FragColor=color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","\n#define MAX_LINE_DISTANCE 32767.0\n#define scale 0.015873016\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_lineprogress;\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float width\nvoid main() {\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float width\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_lineprogress=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0/MAX_LINE_DISTANCE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}"),hr=yr("uniform lowp float u_device_pixel_ratio;uniform vec2 u_texsize;uniform float u_fade;uniform mediump vec3 u_scale;uniform sampler2D u_image;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;varying float v_width;\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileZoomRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;vec2 pattern_size_a=vec2(display_size_a.x*fromScale/tileZoomRatio,display_size_a.y);vec2 pattern_size_b=vec2(display_size_b.x*toScale/tileZoomRatio,display_size_b.y);float aspect_a=display_size_a.y/v_width;float aspect_b=display_size_b.y/v_width;float dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float x_a=mod(v_linesofar/pattern_size_a.x*aspect_a,1.0);float x_b=mod(v_linesofar/pattern_size_b.x*aspect_b,1.0);float y=0.5*v_normal.y+0.5;vec2 texel_size=1.0/u_texsize;vec2 pos_a=mix(pattern_tl_a*texel_size-texel_size,pattern_br_a*texel_size+texel_size,vec2(x_a,y));vec2 pos_b=mix(pattern_tl_b*texel_size-texel_size,pattern_br_b*texel_size+texel_size,vec2(x_b,y));vec4 color=mix(texture2D(u_image,pos_a),texture2D(u_image,pos_b),u_fade);gl_FragColor=color*alpha*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","\n#define scale 0.015873016\n#define LINE_DISTANCE_SCALE 2.0\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform vec2 u_units_to_pixels;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;varying float v_width;\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define mediump float width\n#pragma mapbox: define lowp float floorwidth\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize lowp float floorwidth\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_linesofar=a_linesofar;v_width2=vec2(outset,inset);v_width=floorwidth;}"),pr=yr("uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;uniform float u_sdfgamma;uniform float u_mix;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float width\n#pragma mapbox: define lowp float floorwidth\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize lowp float floorwidth\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float sdfdist_a=texture2D(u_image,v_tex_a).a;float sdfdist_b=texture2D(u_image,v_tex_b).a;float sdfdist=mix(sdfdist_a,sdfdist_b,u_mix);alpha*=smoothstep(0.5-u_sdfgamma/floorwidth,0.5+u_sdfgamma/floorwidth,sdfdist);gl_FragColor=color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","\n#define scale 0.015873016\n#define LINE_DISTANCE_SCALE 2.0\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_patternscale_a;uniform float u_tex_y_a;uniform vec2 u_patternscale_b;uniform float u_tex_y_b;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float width\n#pragma mapbox: define lowp float floorwidth\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize lowp float floorwidth\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_tex_a=vec2(a_linesofar*u_patternscale_a.x/floorwidth,normal.y*u_patternscale_a.y+u_tex_y_a);v_tex_b=vec2(a_linesofar*u_patternscale_b.x/floorwidth,normal.y*u_patternscale_b.y+u_tex_y_b);v_width2=vec2(outset,inset);}"),dr=yr("uniform float u_fade_t;uniform float u_opacity;uniform sampler2D u_image0;uniform sampler2D u_image1;varying vec2 v_pos0;varying vec2 v_pos1;uniform float u_brightness_low;uniform float u_brightness_high;uniform float u_saturation_factor;uniform float u_contrast_factor;uniform vec3 u_spin_weights;void main() {vec4 color0=texture2D(u_image0,v_pos0);vec4 color1=texture2D(u_image1,v_pos1);if (color0.a > 0.0) {color0.rgb=color0.rgb/color0.a;}if (color1.a > 0.0) {color1.rgb=color1.rgb/color1.a;}vec4 color=mix(color0,color1,u_fade_t);color.a*=u_opacity;vec3 rgb=color.rgb;rgb=vec3(dot(rgb,u_spin_weights.xyz),dot(rgb,u_spin_weights.zxy),dot(rgb,u_spin_weights.yzx));float average=(color.r+color.g+color.b)/3.0;rgb+=(average-rgb)*u_saturation_factor;rgb=(rgb-0.5)*u_contrast_factor+0.5;vec3 u_high_vec=vec3(u_brightness_low,u_brightness_low,u_brightness_low);vec3 u_low_vec=vec3(u_brightness_high,u_brightness_high,u_brightness_high);gl_FragColor=vec4(mix(u_high_vec,u_low_vec,rgb)*color.a,color.a);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","uniform mat4 u_matrix;uniform vec2 u_tl_parent;uniform float u_scale_parent;uniform float u_buffer_scale;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos0;varying vec2 v_pos1;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos0=(((a_texture_pos/8192.0)-0.5)/u_buffer_scale )+0.5;v_pos1=(v_pos0*u_scale_parent)+u_tl_parent;}"),mr=yr("uniform sampler2D u_texture;varying vec2 v_tex;varying float v_fade_opacity;\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\nlowp float alpha=opacity*v_fade_opacity;gl_FragColor=texture2D(u_texture,v_tex)*alpha;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec4 a_pixeloffset;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform highp float u_camera_to_center_distance;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform float u_fade_change;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform vec2 u_texsize;varying vec2 v_tex;varying float v_fade_opacity;\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;vec2 a_minFontScale=a_pixeloffset.zw/256.0;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*max(a_minFontScale,fontScale)+a_pxoffset/16.0),0.0,1.0);v_tex=a_tex/u_texsize;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;v_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));}"),gr=yr("#define SDF_PX 8.0\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;uniform bool u_is_text;varying vec2 v_data0;varying vec3 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nfloat EDGE_GAMMA=0.105/u_device_pixel_ratio;vec2 tex=v_data0.xy;float gamma_scale=v_data1.x;float size=v_data1.y;float fade_opacity=v_data1[2];float fontScale=u_is_text ? size/24.0 : size;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec4 a_pixeloffset;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;varying vec2 v_data0;varying vec3 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale+a_pxoffset),0.0,1.0);float gamma_scale=gl_Position.w;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0=a_tex/u_texsize;v_data1=vec3(gamma_scale,size,interpolated_fade_opacity);}"),vr=yr("#define SDF_PX 8.0\n#define SDF 1.0\n#define ICON 0.0\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform sampler2D u_texture_icon;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;varying vec4 v_data0;varying vec4 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nfloat fade_opacity=v_data1[2];if (v_data1.w==ICON) {vec2 tex_icon=v_data0.zw;lowp float alpha=opacity*fade_opacity;gl_FragColor=texture2D(u_texture_icon,tex_icon)*alpha;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\nreturn;}vec2 tex=v_data0.xy;float EDGE_GAMMA=0.105/u_device_pixel_ratio;float gamma_scale=v_data1.x;float size=v_data1.y;float fontScale=size/24.0;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}","const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;uniform vec2 u_texsize_icon;varying vec4 v_data0;varying vec4 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);float is_sdf=a_size[0]-2.0*a_size_min;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=size/24.0;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale),0.0,1.0);float gamma_scale=gl_Position.w;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0.xy=a_tex/u_texsize;v_data0.zw=a_tex/u_texsize_icon;v_data1=vec4(gamma_scale,size,interpolated_fade_opacity,is_sdf);}");function yr(t,e){var r=/#pragma mapbox: ([\w]+) ([\w]+) ([\w]+) ([\w]+)/g,n={};return{fragmentSource:t=t.replace(r,(function(t,e,r,i,a){return n[a]=!0,"define"===e?"\n#ifndef HAS_UNIFORM_u_"+a+"\nvarying "+r+" "+i+" "+a+";\n#else\nuniform "+r+" "+i+" u_"+a+";\n#endif\n":"\n#ifdef HAS_UNIFORM_u_"+a+"\n "+r+" "+i+" "+a+" = u_"+a+";\n#endif\n"})),vertexSource:e=e.replace(r,(function(t,e,r,i,a){var o="float"===i?"vec2":"vec4",s=a.match(/color/)?"color":o;return n[a]?"define"===e?"\n#ifndef HAS_UNIFORM_u_"+a+"\nuniform lowp float u_"+a+"_t;\nattribute "+r+" "+o+" a_"+a+";\nvarying "+r+" "+i+" "+a+";\n#else\nuniform "+r+" "+i+" u_"+a+";\n#endif\n":"vec4"===s?"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+a+" = a_"+a+";\n#else\n "+r+" "+i+" "+a+" = u_"+a+";\n#endif\n":"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+a+" = unpack_mix_"+s+"(a_"+a+", u_"+a+"_t);\n#else\n "+r+" "+i+" "+a+" = u_"+a+";\n#endif\n":"define"===e?"\n#ifndef HAS_UNIFORM_u_"+a+"\nuniform lowp float u_"+a+"_t;\nattribute "+r+" "+o+" a_"+a+";\n#else\nuniform "+r+" "+i+" u_"+a+";\n#endif\n":"vec4"===s?"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+r+" "+i+" "+a+" = a_"+a+";\n#else\n "+r+" "+i+" "+a+" = u_"+a+";\n#endif\n":"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+r+" "+i+" "+a+" = unpack_mix_"+s+"(a_"+a+", u_"+a+"_t);\n#else\n "+r+" "+i+" "+a+" = u_"+a+";\n#endif\n"}))}}var xr=Object.freeze({__proto__:null,prelude:Ye,background:We,backgroundPattern:Xe,circle:Ze,clippingMask:Je,heatmap:Ke,heatmapTexture:Qe,collisionBox:$e,collisionCircle:tr,debug:er,fill:rr,fillOutline:nr,fillOutlinePattern:ir,fillPattern:ar,fillExtrusion:or,fillExtrusionPattern:sr,hillshadePrepare:lr,hillshade:cr,line:ur,lineGradient:fr,linePattern:hr,lineSDF:pr,raster:dr,symbolIcon:mr,symbolSDF:gr,symbolTextAndIcon:vr}),br=function(){this.boundProgram=null,this.boundLayoutVertexBuffer=null,this.boundPaintVertexBuffers=[],this.boundIndexBuffer=null,this.boundVertexOffset=null,this.boundDynamicVertexBuffer=null,this.vao=null};br.prototype.bind=function(t,e,r,n,i,a,o,s){this.context=t;for(var l=this.boundPaintVertexBuffers.length!==n.length,c=0;!l&&c>16,s>>16],u_pixel_coord_lower:[65535&o,65535&s]}}_r.prototype.draw=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,m){var g,v=t.gl;if(!this.failedToCreate){for(var y in t.program.set(this.program),t.setDepthMode(r),t.setStencilMode(n),t.setColorMode(i),t.setCullFace(a),this.fixedUniforms)this.fixedUniforms[y].set(o[y]);p&&p.setUniforms(t,this.binderUniforms,f,{zoom:h});for(var x=(g={},g[v.LINES]=2,g[v.TRIANGLES]=3,g[v.LINE_STRIP]=1,g)[e],b=0,_=u.get();b<_.length;b+=1){var w=_[b],T=w.vaos||(w.vaos={});(T[s]||(T[s]=new br)).bind(t,this,l,p?p.getPaintVertexBuffers():[],c,w.vertexOffset,d,m),v.drawElements(e,w.primitiveLength*x,v.UNSIGNED_SHORT,w.primitiveOffset*x*2)}}};var Tr=function(e,r,n,i){var a=r.style.light,o=a.properties.get("position"),s=[o.x,o.y,o.z],l=t.create$1();"viewport"===a.properties.get("anchor")&&t.fromRotation(l,-r.transform.angle),t.transformMat3(s,s,l);var c=a.properties.get("color");return{u_matrix:e,u_lightpos:s,u_lightintensity:a.properties.get("intensity"),u_lightcolor:[c.r,c.g,c.b],u_vertical_gradient:+n,u_opacity:i}},kr=function(e,r,n,i,a,o,s){return t.extend(Tr(e,r,n,i),wr(o,r,s),{u_height_factor:-Math.pow(2,a.overscaledZ)/s.tileSize/8})},Ar=function(t){return{u_matrix:t}},Mr=function(e,r,n,i){return t.extend(Ar(e),wr(n,r,i))},Sr=function(t,e){return{u_matrix:t,u_world:e}},Er=function(e,r,n,i,a){return t.extend(Mr(e,r,n,i),{u_world:a})},Lr=function(e,r,n,i){var a,o,s=e.transform;if("map"===i.paint.get("circle-pitch-alignment")){var l=pe(n,1,s.zoom);a=!0,o=[l,l]}else a=!1,o=s.pixelsToGLUnits;return{u_camera_to_center_distance:s.cameraToCenterDistance,u_scale_with_map:+("map"===i.paint.get("circle-pitch-scale")),u_matrix:e.translatePosMatrix(r.posMatrix,n,i.paint.get("circle-translate"),i.paint.get("circle-translate-anchor")),u_pitch_with_map:+a,u_device_pixel_ratio:t.browser.devicePixelRatio,u_extrude_scale:o}},Cr=function(t,e,r){var n=pe(r,1,e.zoom),i=Math.pow(2,e.zoom-r.tileID.overscaledZ),a=r.tileID.overscaleFactor();return{u_matrix:t,u_camera_to_center_distance:e.cameraToCenterDistance,u_pixels_to_tile_units:n,u_extrude_scale:[e.pixelsToGLUnits[0]/(n*i),e.pixelsToGLUnits[1]/(n*i)],u_overscale_factor:a}},Pr=function(t,e,r){return{u_matrix:t,u_inv_matrix:e,u_camera_to_center_distance:r.cameraToCenterDistance,u_viewport_size:[r.width,r.height]}},Ir=function(t,e,r){return void 0===r&&(r=1),{u_matrix:t,u_color:e,u_overlay:0,u_overlay_scale:r}},Or=function(t){return{u_matrix:t}},zr=function(t,e,r,n){return{u_matrix:t,u_extrude_scale:pe(e,1,r),u_intensity:n}};function Dr(e,r){var n=Math.pow(2,r.canonical.z),i=r.canonical.y;return[new t.MercatorCoordinate(0,i/n).toLngLat().lat,new t.MercatorCoordinate(0,(i+1)/n).toLngLat().lat]}var Rr=function(e,r,n){var i=e.transform;return{u_matrix:Ur(e,r,n),u_ratio:1/pe(r,1,i.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_units_to_pixels:[1/i.pixelsToGLUnits[0],1/i.pixelsToGLUnits[1]]}},Fr=function(e,r,n){return t.extend(Rr(e,r,n),{u_image:0})},Br=function(e,r,n,i){var a=e.transform,o=jr(r,a);return{u_matrix:Ur(e,r,n),u_texsize:r.imageAtlasTexture.size,u_ratio:1/pe(r,1,a.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_image:0,u_scale:[o,i.fromScale,i.toScale],u_fade:i.t,u_units_to_pixels:[1/a.pixelsToGLUnits[0],1/a.pixelsToGLUnits[1]]}},Nr=function(e,r,n,i,a){var o=e.transform,s=e.lineAtlas,l=jr(r,o),c="round"===n.layout.get("line-cap"),u=s.getDash(i.from,c),f=s.getDash(i.to,c),h=u.width*a.fromScale,p=f.width*a.toScale;return t.extend(Rr(e,r,n),{u_patternscale_a:[l/h,-u.height/2],u_patternscale_b:[l/p,-f.height/2],u_sdfgamma:s.width/(256*Math.min(h,p)*t.browser.devicePixelRatio)/2,u_image:0,u_tex_y_a:u.y,u_tex_y_b:f.y,u_mix:a.t})};function jr(t,e){return 1/pe(t,1,e.tileZoom)}function Ur(t,e,r){return t.translatePosMatrix(e.tileID.posMatrix,e,r.paint.get("line-translate"),r.paint.get("line-translate-anchor"))}var Vr=function(t,e,r,n,i){return{u_matrix:t,u_tl_parent:e,u_scale_parent:r,u_buffer_scale:1,u_fade_t:n.mix,u_opacity:n.opacity*i.paint.get("raster-opacity"),u_image0:0,u_image1:1,u_brightness_low:i.paint.get("raster-brightness-min"),u_brightness_high:i.paint.get("raster-brightness-max"),u_saturation_factor:(o=i.paint.get("raster-saturation"),o>0?1-1/(1.001-o):-o),u_contrast_factor:(a=i.paint.get("raster-contrast"),a>0?1/(1-a):1+a),u_spin_weights:Hr(i.paint.get("raster-hue-rotate"))};var a,o};function Hr(t){t*=Math.PI/180;var e=Math.sin(t),r=Math.cos(t);return[(2*r+1)/3,(-Math.sqrt(3)*e-r+1)/3,(Math.sqrt(3)*e-r+1)/3]}var qr,Gr=function(t,e,r,n,i,a,o,s,l,c){var u=i.transform;return{u_is_size_zoom_constant:+("constant"===t||"source"===t),u_is_size_feature_constant:+("constant"===t||"camera"===t),u_size_t:e?e.uSizeT:0,u_size:e?e.uSize:0,u_camera_to_center_distance:u.cameraToCenterDistance,u_pitch:u.pitch/360*2*Math.PI,u_rotate_symbol:+r,u_aspect_ratio:u.width/u.height,u_fade_change:i.options.fadeDuration?i.symbolFadeChange:1,u_matrix:a,u_label_plane_matrix:o,u_coord_matrix:s,u_is_text:+l,u_pitch_with_map:+n,u_texsize:c,u_texture:0}},Yr=function(e,r,n,i,a,o,s,l,c,u,f){var h=a.transform;return t.extend(Gr(e,r,n,i,a,o,s,l,c,u),{u_gamma_scale:i?Math.cos(h._pitch)*h.cameraToCenterDistance:1,u_device_pixel_ratio:t.browser.devicePixelRatio,u_is_halo:+f})},Wr=function(e,r,n,i,a,o,s,l,c,u){return t.extend(Yr(e,r,n,i,a,o,s,l,!0,c,!0),{u_texsize_icon:u,u_texture_icon:1})},Xr=function(t,e,r){return{u_matrix:t,u_opacity:e,u_color:r}},Zr=function(e,r,n,i,a,o){return t.extend(function(t,e,r,n){var i=r.imageManager.getPattern(t.from.toString()),a=r.imageManager.getPattern(t.to.toString()),o=r.imageManager.getPixelSize(),s=o.width,l=o.height,c=Math.pow(2,n.tileID.overscaledZ),u=n.tileSize*Math.pow(2,r.transform.tileZoom)/c,f=u*(n.tileID.canonical.x+n.tileID.wrap*c),h=u*n.tileID.canonical.y;return{u_image:0,u_pattern_tl_a:i.tl,u_pattern_br_a:i.br,u_pattern_tl_b:a.tl,u_pattern_br_b:a.br,u_texsize:[s,l],u_mix:e.t,u_pattern_size_a:i.displaySize,u_pattern_size_b:a.displaySize,u_scale_a:e.fromScale,u_scale_b:e.toScale,u_tile_units_to_pixels:1/pe(n,1,r.transform.tileZoom),u_pixel_coord_upper:[f>>16,h>>16],u_pixel_coord_lower:[65535&f,65535&h]}}(i,o,n,a),{u_matrix:e,u_opacity:r})},Jr={fillExtrusion:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fillExtrusionPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_height_factor:new t.Uniform1f(e,r.u_height_factor),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fill:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},fillPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},fillOutline:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world)}},fillOutlinePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},circle:function(e,r){return{u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_scale_with_map:new t.Uniform1i(e,r.u_scale_with_map),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},collisionBox:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pixels_to_tile_units:new t.Uniform1f(e,r.u_pixels_to_tile_units),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_overscale_factor:new t.Uniform1f(e,r.u_overscale_factor)}},collisionCircle:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_inv_matrix:new t.UniformMatrix4f(e,r.u_inv_matrix),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_viewport_size:new t.Uniform2f(e,r.u_viewport_size)}},debug:function(e,r){return{u_color:new t.UniformColor(e,r.u_color),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_overlay:new t.Uniform1i(e,r.u_overlay),u_overlay_scale:new t.Uniform1f(e,r.u_overlay_scale)}},clippingMask:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmap:function(e,r){return{u_extrude_scale:new t.Uniform1f(e,r.u_extrude_scale),u_intensity:new t.Uniform1f(e,r.u_intensity),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmapTexture:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_color_ramp:new t.Uniform1i(e,r.u_color_ramp),u_opacity:new t.Uniform1f(e,r.u_opacity)}},hillshade:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_latrange:new t.Uniform2f(e,r.u_latrange),u_light:new t.Uniform2f(e,r.u_light),u_shadow:new t.UniformColor(e,r.u_shadow),u_highlight:new t.UniformColor(e,r.u_highlight),u_accent:new t.UniformColor(e,r.u_accent)}},hillshadePrepare:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_dimension:new t.Uniform2f(e,r.u_dimension),u_zoom:new t.Uniform1f(e,r.u_zoom),u_maxzoom:new t.Uniform1f(e,r.u_maxzoom),u_unpack:new t.Uniform4f(e,r.u_unpack)}},line:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels)}},lineGradient:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_image:new t.Uniform1i(e,r.u_image)}},linePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_texsize:new t.Uniform2f(e,r.u_texsize),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_image:new t.Uniform1i(e,r.u_image),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},lineSDF:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_patternscale_a:new t.Uniform2f(e,r.u_patternscale_a),u_patternscale_b:new t.Uniform2f(e,r.u_patternscale_b),u_sdfgamma:new t.Uniform1f(e,r.u_sdfgamma),u_image:new t.Uniform1i(e,r.u_image),u_tex_y_a:new t.Uniform1f(e,r.u_tex_y_a),u_tex_y_b:new t.Uniform1f(e,r.u_tex_y_b),u_mix:new t.Uniform1f(e,r.u_mix)}},raster:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_tl_parent:new t.Uniform2f(e,r.u_tl_parent),u_scale_parent:new t.Uniform1f(e,r.u_scale_parent),u_buffer_scale:new t.Uniform1f(e,r.u_buffer_scale),u_fade_t:new t.Uniform1f(e,r.u_fade_t),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image0:new t.Uniform1i(e,r.u_image0),u_image1:new t.Uniform1i(e,r.u_image1),u_brightness_low:new t.Uniform1f(e,r.u_brightness_low),u_brightness_high:new t.Uniform1f(e,r.u_brightness_high),u_saturation_factor:new t.Uniform1f(e,r.u_saturation_factor),u_contrast_factor:new t.Uniform1f(e,r.u_contrast_factor),u_spin_weights:new t.Uniform3f(e,r.u_spin_weights)}},symbolIcon:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1i(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture)}},symbolSDF:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1i(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture),u_gamma_scale:new t.Uniform1f(e,r.u_gamma_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_is_halo:new t.Uniform1i(e,r.u_is_halo)}},symbolTextAndIcon:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1i(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texsize_icon:new t.Uniform2f(e,r.u_texsize_icon),u_texture:new t.Uniform1i(e,r.u_texture),u_texture_icon:new t.Uniform1i(e,r.u_texture_icon),u_gamma_scale:new t.Uniform1f(e,r.u_gamma_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_is_halo:new t.Uniform1i(e,r.u_is_halo)}},background:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_color:new t.UniformColor(e,r.u_color)}},backgroundPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image:new t.Uniform1i(e,r.u_image),u_pattern_tl_a:new t.Uniform2f(e,r.u_pattern_tl_a),u_pattern_br_a:new t.Uniform2f(e,r.u_pattern_br_a),u_pattern_tl_b:new t.Uniform2f(e,r.u_pattern_tl_b),u_pattern_br_b:new t.Uniform2f(e,r.u_pattern_br_b),u_texsize:new t.Uniform2f(e,r.u_texsize),u_mix:new t.Uniform1f(e,r.u_mix),u_pattern_size_a:new t.Uniform2f(e,r.u_pattern_size_a),u_pattern_size_b:new t.Uniform2f(e,r.u_pattern_size_b),u_scale_a:new t.Uniform1f(e,r.u_scale_a),u_scale_b:new t.Uniform1f(e,r.u_scale_b),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_tile_units_to_pixels:new t.Uniform1f(e,r.u_tile_units_to_pixels)}}};function Kr(e,r,n,i,a,o,s){for(var l=e.context,c=l.gl,u=e.useProgram("collisionBox"),f=[],h=0,p=0,d=0;d0){var _=t.create(),w=y;t.mul(_,v.placementInvProjMatrix,e.transform.glCoordMatrix),t.mul(_,_,v.placementViewportMatrix),f.push({circleArray:b,circleOffset:p,transform:w,invTransform:_}),p=h+=b.length/4}x&&u.draw(l,c.LINES,At.disabled,Mt.disabled,e.colorModeForRenderPass(),Et.disabled,Cr(y,e.transform,g),n.id,x.layoutVertexBuffer,x.indexBuffer,x.segments,null,e.transform.zoom,null,null,x.collisionVertexBuffer)}}if(s&&f.length){var T=e.useProgram("collisionCircle"),k=new t.StructArrayLayout2f1f2i16;k.resize(4*h),k._trim();for(var A=0,M=0,S=f;M=0&&(m[v.associatedIconIndex]={shiftedAnchor:S,angle:E})}else ue(v.numGlyphs,p)}if(f){d.clear();for(var C=e.icon.placedSymbolArray,P=0;P0){var s=t.browser.now(),l=(s-e.timeAdded)/o,c=r?(s-r.timeAdded)/o:-1,u=n.getSource(),f=a.coveringZoomLevel({tileSize:u.tileSize,roundZoom:u.roundZoom}),h=!r||Math.abs(r.tileID.overscaledZ-f)>Math.abs(e.tileID.overscaledZ-f),p=h&&e.refreshedUponExpiration?1:t.clamp(h?l:1-c,0,1);return e.refreshedUponExpiration&&l>=1&&(e.refreshedUponExpiration=!1),r?{opacity:1,mix:1-p}:{opacity:p,mix:0}}return{opacity:1,mix:0}}var un=new t.Color(1,0,0,1),fn=new t.Color(0,1,0,1),hn=new t.Color(0,0,1,1),pn=new t.Color(1,0,1,1),dn=new t.Color(0,1,1,1);function mn(t){var e=t.transform.padding;gn(t,t.transform.height-(e.top||0),3,un),gn(t,e.bottom||0,3,fn),vn(t,e.left||0,3,hn),vn(t,t.transform.width-(e.right||0),3,pn);var r=t.transform.centerPoint;!function(t,e,r,n){yn(t,e-1,r-10,2,20,n),yn(t,e-10,r-1,20,2,n)}(t,r.x,t.transform.height-r.y,dn)}function gn(t,e,r,n){yn(t,0,e+r/2,t.transform.width,r,n)}function vn(t,e,r,n){yn(t,e-r/2,0,r,t.transform.height,n)}function yn(e,r,n,i,a,o){var s=e.context,l=s.gl;l.enable(l.SCISSOR_TEST),l.scissor(r*t.browser.devicePixelRatio,n*t.browser.devicePixelRatio,i*t.browser.devicePixelRatio,a*t.browser.devicePixelRatio),s.clear({color:o}),l.disable(l.SCISSOR_TEST)}function xn(e,r,n){var i=e.context,a=i.gl,o=n.posMatrix,s=e.useProgram("debug"),l=At.disabled,c=Mt.disabled,u=e.colorModeForRenderPass();i.activeTexture.set(a.TEXTURE0),e.emptyTexture.bind(a.LINEAR,a.CLAMP_TO_EDGE),s.draw(i,a.LINE_STRIP,l,c,u,Et.disabled,Ir(o,t.Color.red),"$debug",e.debugBuffer,e.tileBorderIndexBuffer,e.debugSegments);var f=r.getTileByID(n.key).latestRawTileData,h=f&&f.byteLength||0,p=Math.floor(h/1024),d=r.getTile(n).tileSize,m=512/Math.min(d,512)*(n.overscaledZ/e.transform.zoom)*.5,g=n.canonical.toString();n.overscaledZ!==n.canonical.z&&(g+=" => "+n.overscaledZ),function(t,e){t.initDebugOverlayCanvas();var r=t.debugOverlayCanvas,n=t.context.gl,i=t.debugOverlayCanvas.getContext("2d");i.clearRect(0,0,r.width,r.height),i.shadowColor="white",i.shadowBlur=2,i.lineWidth=1.5,i.strokeStyle="white",i.textBaseline="top",i.font="bold 36px Open Sans, sans-serif",i.fillText(e,5,5),i.strokeText(e,5,5),t.debugOverlayTexture.update(r),t.debugOverlayTexture.bind(n.LINEAR,n.CLAMP_TO_EDGE)}(e,g+" "+p+"kb"),s.draw(i,a.TRIANGLES,l,c,St.alphaBlended,Et.disabled,Ir(o,t.Color.transparent,m),"$debug",e.debugBuffer,e.quadTriangleIndexBuffer,e.debugSegments)}var bn={symbol:function(e,r,n,i,a){if("translucent"===e.renderPass){var o=Mt.disabled,s=e.colorModeForRenderPass();n.layout.get("text-variable-anchor")&&function(e,r,n,i,a,o,s){for(var l=r.transform,c="map"===a,u="map"===o,f=0,h=e;f256&&this.clearStencil(),r.setColorMode(St.disabled),r.setDepthMode(At.disabled);var i=this.useProgram("clippingMask");this._tileClippingMaskIDs={};for(var a=0,o=e;a256&&this.clearStencil();var t=this.nextStencilID++,e=this.context.gl;return new Mt({func:e.NOTEQUAL,mask:255},t,255,e.KEEP,e.KEEP,e.REPLACE)},_n.prototype.stencilModeForClipping=function(t){var e=this.context.gl;return new Mt({func:e.EQUAL,mask:255},this._tileClippingMaskIDs[t.key],0,e.KEEP,e.KEEP,e.REPLACE)},_n.prototype.stencilConfigForOverlap=function(t){var e,r=this.context.gl,n=t.sort((function(t,e){return e.overscaledZ-t.overscaledZ})),i=n[n.length-1].overscaledZ,a=n[0].overscaledZ-i+1;if(a>1){this.currentStencilSource=void 0,this.nextStencilID+a>256&&this.clearStencil();for(var o={},s=0;s=0;this.currentLayer--){var w=this.style._layers[i[this.currentLayer]],T=a[w.source],k=u[w.source];this._renderTileClippingMasks(w,k),this.renderLayer(this,T,w,k)}for(this.renderPass="translucent",this.currentLayer=0;this.currentLayer0?e.pop():null},_n.prototype.isPatternMissing=function(t){if(!t)return!1;if(!t.from||!t.to)return!0;var e=this.imageManager.getPattern(t.from.toString()),r=this.imageManager.getPattern(t.to.toString());return!e||!r},_n.prototype.useProgram=function(t,e){this.cache=this.cache||{};var r=""+t+(e?e.cacheKey:"")+(this._showOverdrawInspector?"/overdraw":"");return this.cache[r]||(this.cache[r]=new _r(this.context,xr[t],e,Jr[t],this._showOverdrawInspector)),this.cache[r]},_n.prototype.setCustomLayerDefaults=function(){this.context.unbindVAO(),this.context.cullFace.setDefault(),this.context.activeTexture.setDefault(),this.context.pixelStoreUnpack.setDefault(),this.context.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.context.pixelStoreUnpackFlipY.setDefault()},_n.prototype.setBaseState=function(){var t=this.context.gl;this.context.cullFace.set(!1),this.context.viewport.set([0,0,this.width,this.height]),this.context.blendEquation.set(t.FUNC_ADD)},_n.prototype.initDebugOverlayCanvas=function(){if(null==this.debugOverlayCanvas){this.debugOverlayCanvas=t.window.document.createElement("canvas"),this.debugOverlayCanvas.width=512,this.debugOverlayCanvas.height=512;var e=this.context.gl;this.debugOverlayTexture=new t.Texture(this.context,this.debugOverlayCanvas,e.RGBA)}},_n.prototype.destroy=function(){this.emptyTexture.destroy(),this.debugOverlayTexture&&this.debugOverlayTexture.destroy()};var wn=function(t,e){this.points=t,this.planes=e};wn.fromInvProjectionMatrix=function(e,r,n){var i=Math.pow(2,n),a=[[-1,1,-1,1],[1,1,-1,1],[1,-1,-1,1],[-1,-1,-1,1],[-1,1,1,1],[1,1,1,1],[1,-1,1,1],[-1,-1,1,1]].map((function(r){return t.transformMat4([],r,e)})).map((function(e){return t.scale$1([],e,1/e[3]/r*i)})),o=[[0,1,2],[6,5,4],[0,3,7],[2,1,5],[3,2,6],[0,4,5]].map((function(e){var r=t.sub([],a[e[0]],a[e[1]]),n=t.sub([],a[e[2]],a[e[1]]),i=t.normalize([],t.cross([],r,n)),o=-t.dot(i,a[e[1]]);return i.concat(o)}));return new wn(a,o)};var Tn=function(e,r){this.min=e,this.max=r,this.center=t.scale$2([],t.add([],this.min,this.max),.5)};Tn.prototype.quadrant=function(e){for(var r=[e%2==0,e<2],n=t.clone$2(this.min),i=t.clone$2(this.max),a=0;a=0;if(0===o)return 0;o!==r.length&&(n=!1)}if(n)return 2;for(var l=0;l<3;l++){for(var c=Number.MAX_VALUE,u=-Number.MAX_VALUE,f=0;fthis.max[l]-this.min[l])return 0}return 1};var kn=function(t,e,r,n){if(void 0===t&&(t=0),void 0===e&&(e=0),void 0===r&&(r=0),void 0===n&&(n=0),isNaN(t)||t<0||isNaN(e)||e<0||isNaN(r)||r<0||isNaN(n)||n<0)throw new Error("Invalid value for edge-insets, top, bottom, left and right must all be numbers");this.top=t,this.bottom=e,this.left=r,this.right=n};kn.prototype.interpolate=function(e,r,n){return null!=r.top&&null!=e.top&&(this.top=t.number(e.top,r.top,n)),null!=r.bottom&&null!=e.bottom&&(this.bottom=t.number(e.bottom,r.bottom,n)),null!=r.left&&null!=e.left&&(this.left=t.number(e.left,r.left,n)),null!=r.right&&null!=e.right&&(this.right=t.number(e.right,r.right,n)),this},kn.prototype.getCenter=function(e,r){var n=t.clamp((this.left+e-this.right)/2,0,e),i=t.clamp((this.top+r-this.bottom)/2,0,r);return new t.Point(n,i)},kn.prototype.equals=function(t){return this.top===t.top&&this.bottom===t.bottom&&this.left===t.left&&this.right===t.right},kn.prototype.clone=function(){return new kn(this.top,this.bottom,this.left,this.right)},kn.prototype.toJSON=function(){return{top:this.top,bottom:this.bottom,left:this.left,right:this.right}};var An=function(e,r,n,i,a){this.tileSize=512,this.maxValidLatitude=85.051129,this._renderWorldCopies=void 0===a||a,this._minZoom=e||0,this._maxZoom=r||22,this._minPitch=null==n?0:n,this._maxPitch=null==i?60:i,this.setMaxBounds(),this.width=0,this.height=0,this._center=new t.LngLat(0,0),this.zoom=0,this.angle=0,this._fov=.6435011087932844,this._pitch=0,this._unmodified=!0,this._edgeInsets=new kn,this._posMatrixCache={},this._alignedPosMatrixCache={}},Mn={minZoom:{configurable:!0},maxZoom:{configurable:!0},minPitch:{configurable:!0},maxPitch:{configurable:!0},renderWorldCopies:{configurable:!0},worldSize:{configurable:!0},centerOffset:{configurable:!0},size:{configurable:!0},bearing:{configurable:!0},pitch:{configurable:!0},fov:{configurable:!0},zoom:{configurable:!0},center:{configurable:!0},padding:{configurable:!0},centerPoint:{configurable:!0},unmodified:{configurable:!0},point:{configurable:!0}};An.prototype.clone=function(){var t=new An(this._minZoom,this._maxZoom,this._minPitch,this.maxPitch,this._renderWorldCopies);return t.tileSize=this.tileSize,t.latRange=this.latRange,t.width=this.width,t.height=this.height,t._center=this._center,t.zoom=this.zoom,t.angle=this.angle,t._fov=this._fov,t._pitch=this._pitch,t._unmodified=this._unmodified,t._edgeInsets=this._edgeInsets.clone(),t._calcMatrices(),t},Mn.minZoom.get=function(){return this._minZoom},Mn.minZoom.set=function(t){this._minZoom!==t&&(this._minZoom=t,this.zoom=Math.max(this.zoom,t))},Mn.maxZoom.get=function(){return this._maxZoom},Mn.maxZoom.set=function(t){this._maxZoom!==t&&(this._maxZoom=t,this.zoom=Math.min(this.zoom,t))},Mn.minPitch.get=function(){return this._minPitch},Mn.minPitch.set=function(t){this._minPitch!==t&&(this._minPitch=t,this.pitch=Math.max(this.pitch,t))},Mn.maxPitch.get=function(){return this._maxPitch},Mn.maxPitch.set=function(t){this._maxPitch!==t&&(this._maxPitch=t,this.pitch=Math.min(this.pitch,t))},Mn.renderWorldCopies.get=function(){return this._renderWorldCopies},Mn.renderWorldCopies.set=function(t){void 0===t?t=!0:null===t&&(t=!1),this._renderWorldCopies=t},Mn.worldSize.get=function(){return this.tileSize*this.scale},Mn.centerOffset.get=function(){return this.centerPoint._sub(this.size._div(2))},Mn.size.get=function(){return new t.Point(this.width,this.height)},Mn.bearing.get=function(){return-this.angle/Math.PI*180},Mn.bearing.set=function(e){var r=-t.wrap(e,-180,180)*Math.PI/180;this.angle!==r&&(this._unmodified=!1,this.angle=r,this._calcMatrices(),this.rotationMatrix=t.create$2(),t.rotate(this.rotationMatrix,this.rotationMatrix,this.angle))},Mn.pitch.get=function(){return this._pitch/Math.PI*180},Mn.pitch.set=function(e){var r=t.clamp(e,this.minPitch,this.maxPitch)/180*Math.PI;this._pitch!==r&&(this._unmodified=!1,this._pitch=r,this._calcMatrices())},Mn.fov.get=function(){return this._fov/Math.PI*180},Mn.fov.set=function(t){t=Math.max(.01,Math.min(60,t)),this._fov!==t&&(this._unmodified=!1,this._fov=t/180*Math.PI,this._calcMatrices())},Mn.zoom.get=function(){return this._zoom},Mn.zoom.set=function(t){var e=Math.min(Math.max(t,this.minZoom),this.maxZoom);this._zoom!==e&&(this._unmodified=!1,this._zoom=e,this.scale=this.zoomScale(e),this.tileZoom=Math.floor(e),this.zoomFraction=e-this.tileZoom,this._constrain(),this._calcMatrices())},Mn.center.get=function(){return this._center},Mn.center.set=function(t){t.lat===this._center.lat&&t.lng===this._center.lng||(this._unmodified=!1,this._center=t,this._constrain(),this._calcMatrices())},Mn.padding.get=function(){return this._edgeInsets.toJSON()},Mn.padding.set=function(t){this._edgeInsets.equals(t)||(this._unmodified=!1,this._edgeInsets.interpolate(this._edgeInsets,t,1),this._calcMatrices())},Mn.centerPoint.get=function(){return this._edgeInsets.getCenter(this.width,this.height)},An.prototype.isPaddingEqual=function(t){return this._edgeInsets.equals(t)},An.prototype.interpolatePadding=function(t,e,r){this._unmodified=!1,this._edgeInsets.interpolate(t,e,r),this._constrain(),this._calcMatrices()},An.prototype.coveringZoomLevel=function(t){var e=(t.roundZoom?Math.round:Math.floor)(this.zoom+this.scaleZoom(this.tileSize/t.tileSize));return Math.max(0,e)},An.prototype.getVisibleUnwrappedCoordinates=function(e){var r=[new t.UnwrappedTileID(0,e)];if(this._renderWorldCopies)for(var n=this.pointCoordinate(new t.Point(0,0)),i=this.pointCoordinate(new t.Point(this.width,0)),a=this.pointCoordinate(new t.Point(this.width,this.height)),o=this.pointCoordinate(new t.Point(0,this.height)),s=Math.floor(Math.min(n.x,i.x,a.x,o.x)),l=Math.floor(Math.max(n.x,i.x,a.x,o.x)),c=s-1;c<=l+1;c++)0!==c&&r.push(new t.UnwrappedTileID(c,e));return r},An.prototype.coveringTiles=function(e){var r=this.coveringZoomLevel(e),n=r;if(void 0!==e.minzoom&&re.maxzoom&&(r=e.maxzoom);var i=t.MercatorCoordinate.fromLngLat(this.center),a=Math.pow(2,r),o=[a*i.x,a*i.y,0],s=wn.fromInvProjectionMatrix(this.invProjMatrix,this.worldSize,r),l=e.minzoom||0;this.pitch<=60&&this._edgeInsets.top<.1&&(l=r);var c=function(t){return{aabb:new Tn([t*a,0,0],[(t+1)*a,a,0]),zoom:0,x:0,y:0,wrap:t,fullyVisible:!1}},u=[],f=[],h=r,p=e.reparseOverscaled?n:r;if(this._renderWorldCopies)for(var d=1;d<=3;d++)u.push(c(-d)),u.push(c(d));for(u.push(c(0));u.length>0;){var m=u.pop(),g=m.x,v=m.y,y=m.fullyVisible;if(!y){var x=m.aabb.intersects(s);if(0===x)continue;y=2===x}var b=m.aabb.distanceX(o),_=m.aabb.distanceY(o),w=Math.max(Math.abs(b),Math.abs(_)),T=3+(1<T&&m.zoom>=l)f.push({tileID:new t.OverscaledTileID(m.zoom===h?p:m.zoom,m.wrap,m.zoom,g,v),distanceSq:t.sqrLen([o[0]-.5-g,o[1]-.5-v])});else for(var k=0;k<4;k++){var A=(g<<1)+k%2,M=(v<<1)+(k>>1);u.push({aabb:m.aabb.quadrant(k),zoom:m.zoom+1,x:A,y:M,wrap:m.wrap,fullyVisible:y})}}return f.sort((function(t,e){return t.distanceSq-e.distanceSq})).map((function(t){return t.tileID}))},An.prototype.resize=function(t,e){this.width=t,this.height=e,this.pixelsToGLUnits=[2/t,-2/e],this._constrain(),this._calcMatrices()},Mn.unmodified.get=function(){return this._unmodified},An.prototype.zoomScale=function(t){return Math.pow(2,t)},An.prototype.scaleZoom=function(t){return Math.log(t)/Math.LN2},An.prototype.project=function(e){var r=t.clamp(e.lat,-this.maxValidLatitude,this.maxValidLatitude);return new t.Point(t.mercatorXfromLng(e.lng)*this.worldSize,t.mercatorYfromLat(r)*this.worldSize)},An.prototype.unproject=function(e){return new t.MercatorCoordinate(e.x/this.worldSize,e.y/this.worldSize).toLngLat()},Mn.point.get=function(){return this.project(this.center)},An.prototype.setLocationAtPoint=function(e,r){var n=this.pointCoordinate(r),i=this.pointCoordinate(this.centerPoint),a=this.locationCoordinate(e),o=new t.MercatorCoordinate(a.x-(n.x-i.x),a.y-(n.y-i.y));this.center=this.coordinateLocation(o),this._renderWorldCopies&&(this.center=this.center.wrap())},An.prototype.locationPoint=function(t){return this.coordinatePoint(this.locationCoordinate(t))},An.prototype.pointLocation=function(t){return this.coordinateLocation(this.pointCoordinate(t))},An.prototype.locationCoordinate=function(e){return t.MercatorCoordinate.fromLngLat(e)},An.prototype.coordinateLocation=function(t){return t.toLngLat()},An.prototype.pointCoordinate=function(e){var r=[e.x,e.y,0,1],n=[e.x,e.y,1,1];t.transformMat4(r,r,this.pixelMatrixInverse),t.transformMat4(n,n,this.pixelMatrixInverse);var i=r[3],a=n[3],o=r[0]/i,s=n[0]/a,l=r[1]/i,c=n[1]/a,u=r[2]/i,f=n[2]/a,h=u===f?0:(0-u)/(f-u);return new t.MercatorCoordinate(t.number(o,s,h)/this.worldSize,t.number(l,c,h)/this.worldSize)},An.prototype.coordinatePoint=function(e){var r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix),new t.Point(r[0]/r[3],r[1]/r[3])},An.prototype.getBounds=function(){return(new t.LngLatBounds).extend(this.pointLocation(new t.Point(0,0))).extend(this.pointLocation(new t.Point(this.width,0))).extend(this.pointLocation(new t.Point(this.width,this.height))).extend(this.pointLocation(new t.Point(0,this.height)))},An.prototype.getMaxBounds=function(){return this.latRange&&2===this.latRange.length&&this.lngRange&&2===this.lngRange.length?new t.LngLatBounds([this.lngRange[0],this.latRange[0]],[this.lngRange[1],this.latRange[1]]):null},An.prototype.setMaxBounds=function(t){t?(this.lngRange=[t.getWest(),t.getEast()],this.latRange=[t.getSouth(),t.getNorth()],this._constrain()):(this.lngRange=null,this.latRange=[-this.maxValidLatitude,this.maxValidLatitude])},An.prototype.calculatePosMatrix=function(e,r){void 0===r&&(r=!1);var n=e.key,i=r?this._alignedPosMatrixCache:this._posMatrixCache;if(i[n])return i[n];var a=e.canonical,o=this.worldSize/this.zoomScale(a.z),s=a.x+Math.pow(2,a.z)*e.wrap,l=t.identity(new Float64Array(16));return t.translate(l,l,[s*o,a.y*o,0]),t.scale(l,l,[o/t.EXTENT,o/t.EXTENT,1]),t.multiply(l,r?this.alignedProjMatrix:this.projMatrix,l),i[n]=new Float32Array(l),i[n]},An.prototype.customLayerMatrix=function(){return this.mercatorMatrix.slice()},An.prototype._constrain=function(){if(this.center&&this.width&&this.height&&!this._constraining){this._constraining=!0;var e,r,n,i,a=-90,o=90,s=-180,l=180,c=this.size,u=this._unmodified;if(this.latRange){var f=this.latRange;a=t.mercatorYfromLat(f[1])*this.worldSize,e=(o=t.mercatorYfromLat(f[0])*this.worldSize)-ao&&(i=o-g)}if(this.lngRange){var v=p.x,y=c.x/2;v-yl&&(n=l-y)}void 0===n&&void 0===i||(this.center=this.unproject(new t.Point(void 0!==n?n:p.x,void 0!==i?i:p.y))),this._unmodified=u,this._constraining=!1}},An.prototype._calcMatrices=function(){if(this.height){var e=this._fov/2,r=this.centerOffset;this.cameraToCenterDistance=.5/Math.tan(e)*this.height;var n=Math.PI/2+this._pitch,i=this._fov*(.5+r.y/this.height),a=Math.sin(i)*this.cameraToCenterDistance/Math.sin(t.clamp(Math.PI-n-i,.01,Math.PI-.01)),o=this.point,s=o.x,l=o.y,c=1.01*(Math.cos(Math.PI/2-this._pitch)*a+this.cameraToCenterDistance),u=this.height/50,f=new Float64Array(16);t.perspective(f,this._fov,this.width/this.height,u,c),f[8]=2*-r.x/this.width,f[9]=2*r.y/this.height,t.scale(f,f,[1,-1,1]),t.translate(f,f,[0,0,-this.cameraToCenterDistance]),t.rotateX(f,f,this._pitch),t.rotateZ(f,f,this.angle),t.translate(f,f,[-s,-l,0]),this.mercatorMatrix=t.scale([],f,[this.worldSize,this.worldSize,this.worldSize]),t.scale(f,f,[1,1,t.mercatorZfromAltitude(1,this.center.lat)*this.worldSize,1]),this.projMatrix=f,this.invProjMatrix=t.invert([],this.projMatrix);var h=this.width%2/2,p=this.height%2/2,d=Math.cos(this.angle),m=Math.sin(this.angle),g=s-Math.round(s)+d*h+m*p,v=l-Math.round(l)+d*p+m*h,y=new Float64Array(f);if(t.translate(y,y,[g>.5?g-1:g,v>.5?v-1:v,0]),this.alignedProjMatrix=y,f=t.create(),t.scale(f,f,[this.width/2,-this.height/2,1]),t.translate(f,f,[1,-1,0]),this.labelPlaneMatrix=f,f=t.create(),t.scale(f,f,[1,-1,1]),t.translate(f,f,[-1,-1,0]),t.scale(f,f,[2/this.width,2/this.height,1]),this.glCoordMatrix=f,this.pixelMatrix=t.multiply(new Float64Array(16),this.labelPlaneMatrix,this.projMatrix),!(f=t.invert(new Float64Array(16),this.pixelMatrix)))throw new Error("failed to invert matrix");this.pixelMatrixInverse=f,this._posMatrixCache={},this._alignedPosMatrixCache={}}},An.prototype.maxPitchScaleFactor=function(){if(!this.pixelMatrixInverse)return 1;var e=this.pointCoordinate(new t.Point(0,0)),r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix)[3]/this.cameraToCenterDistance},An.prototype.getCameraPoint=function(){var e=this._pitch,r=Math.tan(e)*(this.cameraToCenterDistance||1);return this.centerPoint.add(new t.Point(0,r))},An.prototype.getCameraQueryGeometry=function(e){var r=this.getCameraPoint();if(1===e.length)return[e[0],r];for(var n=r.x,i=r.y,a=r.x,o=r.y,s=0,l=e;s=3&&!t.some((function(t){return isNaN(t)}))){var e=this._map.dragRotate.isEnabled()&&this._map.touchZoomRotate.isEnabled()?+(t[3]||0):this._map.getBearing();return this._map.jumpTo({center:[+t[2],+t[1]],zoom:+t[0],bearing:e,pitch:+(t[4]||0)}),!0}return!1},Sn.prototype._updateHashUnthrottled=function(){var e=this.getHashString();try{t.window.history.replaceState(t.window.history.state,"",e)}catch(t){}};var En={linearity:.3,easing:t.bezier(0,0,.3,1)},Ln=t.extend({deceleration:2500,maxSpeed:1400},En),Cn=t.extend({deceleration:20,maxSpeed:1400},En),Pn=t.extend({deceleration:1e3,maxSpeed:360},En),In=t.extend({deceleration:1e3,maxSpeed:90},En),On=function(t){this._map=t,this.clear()};function zn(t,e){(!t.duration||t.duration0&&r-e[0].time>160;)e.shift()},On.prototype._onMoveEnd=function(e){if(this._drainInertiaBuffer(),!(this._inertiaBuffer.length<2)){for(var r={zoom:0,bearing:0,pitch:0,pan:new t.Point(0,0),pinchAround:void 0,around:void 0},n=0,i=this._inertiaBuffer;n=this._clickTolerance||this._map.fire(new Rn(t.type,this._map,t))},Nn.prototype.dblclick=function(t){return this._firePreventable(new Rn(t.type,this._map,t))},Nn.prototype.mouseover=function(t){this._map.fire(new Rn(t.type,this._map,t))},Nn.prototype.mouseout=function(t){this._map.fire(new Rn(t.type,this._map,t))},Nn.prototype.touchstart=function(t){return this._firePreventable(new Fn(t.type,this._map,t))},Nn.prototype.touchmove=function(t){this._map.fire(new Fn(t.type,this._map,t))},Nn.prototype.touchend=function(t){this._map.fire(new Fn(t.type,this._map,t))},Nn.prototype.touchcancel=function(t){this._map.fire(new Fn(t.type,this._map,t))},Nn.prototype._firePreventable=function(t){if(this._map.fire(t),t.defaultPrevented)return{}},Nn.prototype.isEnabled=function(){return!0},Nn.prototype.isActive=function(){return!1},Nn.prototype.enable=function(){},Nn.prototype.disable=function(){};var jn=function(t){this._map=t};jn.prototype.reset=function(){this._delayContextMenu=!1,delete this._contextMenuEvent},jn.prototype.mousemove=function(t){this._map.fire(new Rn(t.type,this._map,t))},jn.prototype.mousedown=function(){this._delayContextMenu=!0},jn.prototype.mouseup=function(){this._delayContextMenu=!1,this._contextMenuEvent&&(this._map.fire(new Rn("contextmenu",this._map,this._contextMenuEvent)),delete this._contextMenuEvent)},jn.prototype.contextmenu=function(t){this._delayContextMenu?this._contextMenuEvent=t:this._map.fire(new Rn(t.type,this._map,t)),this._map.listens("contextmenu")&&t.preventDefault()},jn.prototype.isEnabled=function(){return!0},jn.prototype.isActive=function(){return!1},jn.prototype.enable=function(){},jn.prototype.disable=function(){};var Un=function(t,e){this._map=t,this._el=t.getCanvasContainer(),this._container=t.getContainer(),this._clickTolerance=e.clickTolerance||1};function Vn(t,e){for(var r={},n=0;nthis.numTouches)&&(this.aborted=!0),this.aborted||(void 0===this.startTime&&(this.startTime=e.timeStamp),n.length===this.numTouches&&(this.centroid=function(e){for(var r=new t.Point(0,0),n=0,i=e;n30)&&(this.aborted=!0)}}},Hn.prototype.touchend=function(t,e,r){if((!this.centroid||t.timeStamp-this.startTime>500)&&(this.aborted=!0),0===r.length){var n=!this.aborted&&this.centroid;if(this.reset(),n)return n}};var qn=function(t){this.singleTap=new Hn(t),this.numTaps=t.numTaps,this.reset()};qn.prototype.reset=function(){this.lastTime=1/0,delete this.lastTap,this.count=0,this.singleTap.reset()},qn.prototype.touchstart=function(t,e,r){this.singleTap.touchstart(t,e,r)},qn.prototype.touchmove=function(t,e,r){this.singleTap.touchmove(t,e,r)},qn.prototype.touchend=function(t,e,r){var n=this.singleTap.touchend(t,e,r);if(n){var i=t.timeStamp-this.lastTime<500,a=!this.lastTap||this.lastTap.dist(n)<30;if(i&&a||this.reset(),this.count++,this.lastTime=t.timeStamp,this.lastTap=n,this.count===this.numTaps)return this.reset(),n}};var Gn=function(){this._zoomIn=new qn({numTouches:1,numTaps:2}),this._zoomOut=new qn({numTouches:2,numTaps:1}),this.reset()};Gn.prototype.reset=function(){this._active=!1,this._zoomIn.reset(),this._zoomOut.reset()},Gn.prototype.touchstart=function(t,e,r){this._zoomIn.touchstart(t,e,r),this._zoomOut.touchstart(t,e,r)},Gn.prototype.touchmove=function(t,e,r){this._zoomIn.touchmove(t,e,r),this._zoomOut.touchmove(t,e,r)},Gn.prototype.touchend=function(t,e,r){var n=this,i=this._zoomIn.touchend(t,e,r),a=this._zoomOut.touchend(t,e,r);return i?(this._active=!0,t.preventDefault(),setTimeout((function(){return n.reset()}),0),{cameraAnimation:function(e){return e.easeTo({duration:300,zoom:e.getZoom()+1,around:e.unproject(i)},{originalEvent:t})}}):a?(this._active=!0,t.preventDefault(),setTimeout((function(){return n.reset()}),0),{cameraAnimation:function(e){return e.easeTo({duration:300,zoom:e.getZoom()-1,around:e.unproject(a)},{originalEvent:t})}}):void 0},Gn.prototype.touchcancel=function(){this.reset()},Gn.prototype.enable=function(){this._enabled=!0},Gn.prototype.disable=function(){this._enabled=!1,this.reset()},Gn.prototype.isEnabled=function(){return this._enabled},Gn.prototype.isActive=function(){return this._active};var Yn=function(t){this.reset(),this._clickTolerance=t.clickTolerance||1};Yn.prototype.reset=function(){this._active=!1,this._moved=!1,delete this._lastPoint,delete this._eventButton},Yn.prototype._correctButton=function(t,e){return!1},Yn.prototype._move=function(t,e){return{}},Yn.prototype.mousedown=function(t,e){if(!this._lastPoint){var n=r.mouseButton(t);this._correctButton(t,n)&&(this._lastPoint=e,this._eventButton=n)}},Yn.prototype.mousemoveWindow=function(t,e){var r=this._lastPoint;if(r&&(t.preventDefault(),this._moved||!(e.dist(r)0&&(this._active=!0);var i=Vn(n,r),a=new t.Point(0,0),o=new t.Point(0,0),s=0;for(var l in i){var c=i[l],u=this._touches[l];u&&(a._add(c),o._add(c.sub(u)),s++,i[l]=c)}if(this._touches=i,!(sMath.abs(t.x)}var ii=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.reset=function(){t.prototype.reset.call(this),this._valid=void 0,delete this._firstMove,delete this._lastPoints},e.prototype._start=function(t){this._lastPoints=t,ni(t[0].sub(t[1]))&&(this._valid=!1)},e.prototype._move=function(t,e,r){var n=t[0].sub(this._lastPoints[0]),i=t[1].sub(this._lastPoints[1]);if(this._valid=this.gestureBeginsVertically(n,i,r.timeStamp),this._valid){this._lastPoints=t,this._active=!0;return{pitchDelta:-.5*((n.y+i.y)/2)}}},e.prototype.gestureBeginsVertically=function(t,e,r){if(void 0!==this._valid)return this._valid;var n=t.mag()>=2,i=e.mag()>=2;if(n||i){if(!n||!i)return void 0===this._firstMove&&(this._firstMove=r),r-this._firstMove<100&&void 0;var a=t.y>0==e.y>0;return ni(t)&&ni(e)&&a}},e}(Kn),ai={panStep:100,bearingStep:15,pitchStep:10},oi=function(){var t=ai;this._panStep=t.panStep,this._bearingStep=t.bearingStep,this._pitchStep=t.pitchStep};function si(t){return t*(2-t)}oi.prototype.reset=function(){this._active=!1},oi.prototype.keydown=function(t){var e=this;if(!(t.altKey||t.ctrlKey||t.metaKey)){var r=0,n=0,i=0,a=0,o=0;switch(t.keyCode){case 61:case 107:case 171:case 187:r=1;break;case 189:case 109:case 173:r=-1;break;case 37:t.shiftKey?n=-1:(t.preventDefault(),a=-1);break;case 39:t.shiftKey?n=1:(t.preventDefault(),a=1);break;case 38:t.shiftKey?i=1:(t.preventDefault(),o=-1);break;case 40:t.shiftKey?i=-1:(t.preventDefault(),o=1);break;default:return}return{cameraAnimation:function(s){var l=s.getZoom();s.easeTo({duration:300,easeId:"keyboardHandler",easing:si,zoom:r?Math.round(l)+r*(t.shiftKey?2:1):l,bearing:s.getBearing()+n*e._bearingStep,pitch:s.getPitch()+i*e._pitchStep,offset:[-a*e._panStep,-o*e._panStep],center:s.getCenter()},{originalEvent:t})}}}},oi.prototype.enable=function(){this._enabled=!0},oi.prototype.disable=function(){this._enabled=!1,this.reset()},oi.prototype.isEnabled=function(){return this._enabled},oi.prototype.isActive=function(){return this._active};var li=function(e,r){this._map=e,this._el=e.getCanvasContainer(),this._handler=r,this._delta=0,this._defaultZoomRate=.01,this._wheelZoomRate=1/450,t.bindAll(["_onWheel","_onTimeout","_onScrollFrame","_onScrollFinished"],this)};li.prototype.setZoomRate=function(t){this._defaultZoomRate=t},li.prototype.setWheelZoomRate=function(t){this._wheelZoomRate=t},li.prototype.isEnabled=function(){return!!this._enabled},li.prototype.isActive=function(){return!!this._active||void 0!==this._finishTimeout},li.prototype.isZooming=function(){return!!this._zooming},li.prototype.enable=function(t){this.isEnabled()||(this._enabled=!0,this._aroundCenter=t&&"center"===t.around)},li.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},li.prototype.wheel=function(e){if(this.isEnabled()){var r=e.deltaMode===t.window.WheelEvent.DOM_DELTA_LINE?40*e.deltaY:e.deltaY,n=t.browser.now(),i=n-(this._lastWheelEventTime||0);this._lastWheelEventTime=n,0!==r&&r%4.000244140625==0?this._type="wheel":0!==r&&Math.abs(r)<4?this._type="trackpad":i>400?(this._type=null,this._lastValue=r,this._timeout=setTimeout(this._onTimeout,40,e)):this._type||(this._type=Math.abs(i*r)<200?"trackpad":"wheel",this._timeout&&(clearTimeout(this._timeout),this._timeout=null,r+=this._lastValue)),e.shiftKey&&r&&(r/=4),this._type&&(this._lastWheelEvent=e,this._delta-=r,this._active||this._start(e)),e.preventDefault()}},li.prototype._onTimeout=function(t){this._type="wheel",this._delta-=this._lastValue,this._active||this._start(t)},li.prototype._start=function(e){if(this._delta){this._frameId&&(this._frameId=null),this._active=!0,this.isZooming()||(this._zooming=!0),this._finishTimeout&&(clearTimeout(this._finishTimeout),delete this._finishTimeout);var n=r.mousePos(this._el,e);this._around=t.LngLat.convert(this._aroundCenter?this._map.getCenter():this._map.unproject(n)),this._aroundPoint=this._map.transform.locationPoint(this._around),this._frameId||(this._frameId=!0,this._handler._triggerRenderFrame())}},li.prototype.renderFrame=function(){return this._onScrollFrame()},li.prototype._onScrollFrame=function(){var e=this;if(this._frameId&&(this._frameId=null,this.isActive())){var r=this._map.transform;if(0!==this._delta){var n="wheel"===this._type&&Math.abs(this._delta)>4.000244140625?this._wheelZoomRate:this._defaultZoomRate,i=2/(1+Math.exp(-Math.abs(this._delta*n)));this._delta<0&&0!==i&&(i=1/i);var a="number"==typeof this._targetZoom?r.zoomScale(this._targetZoom):r.scale;this._targetZoom=Math.min(r.maxZoom,Math.max(r.minZoom,r.scaleZoom(a*i))),"wheel"===this._type&&(this._startZoom=r.zoom,this._easing=this._smoothOutEasing(200)),this._delta=0}var o,s="number"==typeof this._targetZoom?this._targetZoom:r.zoom,l=this._startZoom,c=this._easing,u=!1;if("wheel"===this._type&&l&&c){var f=Math.min((t.browser.now()-this._lastWheelEventTime)/200,1),h=c(f);o=t.number(l,s,h),f<1?this._frameId||(this._frameId=!0):u=!0}else o=s,u=!0;return this._active=!0,u&&(this._active=!1,this._finishTimeout=setTimeout((function(){e._zooming=!1,e._handler._triggerRenderFrame(),delete e._targetZoom,delete e._finishTimeout}),200)),{noInertia:!0,needsRenderFrame:!u,zoomDelta:o-r.zoom,around:this._aroundPoint,originalEvent:this._lastWheelEvent}}},li.prototype._smoothOutEasing=function(e){var r=t.ease;if(this._prevEase){var n=this._prevEase,i=(t.browser.now()-n.start)/n.duration,a=n.easing(i+.01)-n.easing(i),o=.27/Math.sqrt(a*a+1e-4)*.01,s=Math.sqrt(.0729-o*o);r=t.bezier(o,s,.25,1)}return this._prevEase={start:t.browser.now(),duration:e,easing:r},r},li.prototype.reset=function(){this._active=!1};var ci=function(t,e){this._clickZoom=t,this._tapZoom=e};ci.prototype.enable=function(){this._clickZoom.enable(),this._tapZoom.enable()},ci.prototype.disable=function(){this._clickZoom.disable(),this._tapZoom.disable()},ci.prototype.isEnabled=function(){return this._clickZoom.isEnabled()&&this._tapZoom.isEnabled()},ci.prototype.isActive=function(){return this._clickZoom.isActive()||this._tapZoom.isActive()};var ui=function(){this.reset()};ui.prototype.reset=function(){this._active=!1},ui.prototype.dblclick=function(t,e){return t.preventDefault(),{cameraAnimation:function(r){r.easeTo({duration:300,zoom:r.getZoom()+(t.shiftKey?-1:1),around:r.unproject(e)},{originalEvent:t})}}},ui.prototype.enable=function(){this._enabled=!0},ui.prototype.disable=function(){this._enabled=!1,this.reset()},ui.prototype.isEnabled=function(){return this._enabled},ui.prototype.isActive=function(){return this._active};var fi=function(){this._tap=new qn({numTouches:1,numTaps:1}),this.reset()};fi.prototype.reset=function(){this._active=!1,delete this._swipePoint,delete this._swipeTouch,delete this._tapTime,this._tap.reset()},fi.prototype.touchstart=function(t,e,r){this._swipePoint||(this._tapTime&&t.timeStamp-this._tapTime>500&&this.reset(),this._tapTime?r.length>0&&(this._swipePoint=e[0],this._swipeTouch=r[0].identifier):this._tap.touchstart(t,e,r))},fi.prototype.touchmove=function(t,e,r){if(this._tapTime){if(this._swipePoint){if(r[0].identifier!==this._swipeTouch)return;var n=e[0],i=n.y-this._swipePoint.y;return this._swipePoint=n,t.preventDefault(),this._active=!0,{zoomDelta:i/128}}}else this._tap.touchmove(t,e,r)},fi.prototype.touchend=function(t,e,r){this._tapTime?this._swipePoint&&0===r.length&&this.reset():this._tap.touchend(t,e,r)&&(this._tapTime=t.timeStamp)},fi.prototype.touchcancel=function(){this.reset()},fi.prototype.enable=function(){this._enabled=!0},fi.prototype.disable=function(){this._enabled=!1,this.reset()},fi.prototype.isEnabled=function(){return this._enabled},fi.prototype.isActive=function(){return this._active};var hi=function(t,e,r){this._el=t,this._mousePan=e,this._touchPan=r};hi.prototype.enable=function(t){this._inertiaOptions=t||{},this._mousePan.enable(),this._touchPan.enable(),this._el.classList.add("mapboxgl-touch-drag-pan")},hi.prototype.disable=function(){this._mousePan.disable(),this._touchPan.disable(),this._el.classList.remove("mapboxgl-touch-drag-pan")},hi.prototype.isEnabled=function(){return this._mousePan.isEnabled()&&this._touchPan.isEnabled()},hi.prototype.isActive=function(){return this._mousePan.isActive()||this._touchPan.isActive()};var pi=function(t,e,r){this._pitchWithRotate=t.pitchWithRotate,this._mouseRotate=e,this._mousePitch=r};pi.prototype.enable=function(){this._mouseRotate.enable(),this._pitchWithRotate&&this._mousePitch.enable()},pi.prototype.disable=function(){this._mouseRotate.disable(),this._mousePitch.disable()},pi.prototype.isEnabled=function(){return this._mouseRotate.isEnabled()&&(!this._pitchWithRotate||this._mousePitch.isEnabled())},pi.prototype.isActive=function(){return this._mouseRotate.isActive()||this._mousePitch.isActive()};var di=function(t,e,r,n){this._el=t,this._touchZoom=e,this._touchRotate=r,this._tapDragZoom=n,this._rotationDisabled=!1,this._enabled=!0};di.prototype.enable=function(t){this._touchZoom.enable(t),this._rotationDisabled||this._touchRotate.enable(t),this._tapDragZoom.enable(),this._el.classList.add("mapboxgl-touch-zoom-rotate")},di.prototype.disable=function(){this._touchZoom.disable(),this._touchRotate.disable(),this._tapDragZoom.disable(),this._el.classList.remove("mapboxgl-touch-zoom-rotate")},di.prototype.isEnabled=function(){return this._touchZoom.isEnabled()&&(this._rotationDisabled||this._touchRotate.isEnabled())&&this._tapDragZoom.isEnabled()},di.prototype.isActive=function(){return this._touchZoom.isActive()||this._touchRotate.isActive()||this._tapDragZoom.isActive()},di.prototype.disableRotation=function(){this._rotationDisabled=!0,this._touchRotate.disable()},di.prototype.enableRotation=function(){this._rotationDisabled=!1,this._touchZoom.isEnabled()&&this._touchRotate.enable()};var mi=function(t){return t.zoom||t.drag||t.pitch||t.rotate},gi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e}(t.Event);function vi(t){return t.panDelta&&t.panDelta.mag()||t.zoomDelta||t.bearingDelta||t.pitchDelta}var yi=function(e,n){this._map=e,this._el=this._map.getCanvasContainer(),this._handlers=[],this._handlersById={},this._changes=[],this._inertia=new On(e),this._bearingSnap=n.bearingSnap,this._previousActiveHandlers={},this._eventsInProgress={},this._addDefaultHandlers(n),t.bindAll(["handleEvent","handleWindowEvent"],this);var i=this._el;this._listeners=[[i,"touchstart",{passive:!1}],[i,"touchmove",{passive:!1}],[i,"touchend",void 0],[i,"touchcancel",void 0],[i,"mousedown",void 0],[i,"mousemove",void 0],[i,"mouseup",void 0],[t.window.document,"mousemove",{capture:!0}],[t.window.document,"mouseup",void 0],[i,"mouseover",void 0],[i,"mouseout",void 0],[i,"dblclick",void 0],[i,"click",void 0],[i,"keydown",{capture:!1}],[i,"keyup",void 0],[i,"wheel",{passive:!1}],[i,"contextmenu",void 0],[t.window,"blur",void 0]];for(var a=0,o=this._listeners;aa?Math.min(2,_):Math.max(.5,_),w=Math.pow(g,1-e),T=i.unproject(x.add(b.mult(e*w)).mult(m));i.setLocationAtPoint(i.renderWorldCopies?T.wrap():T,d)}n._fireMoveEvents(r)}),(function(t){n._afterEase(r,t)}),e),this},r.prototype._prepareEase=function(e,r,n){void 0===n&&(n={}),this._moving=!0,r||n.moving||this.fire(new t.Event("movestart",e)),this._zooming&&!n.zooming&&this.fire(new t.Event("zoomstart",e)),this._rotating&&!n.rotating&&this.fire(new t.Event("rotatestart",e)),this._pitching&&!n.pitching&&this.fire(new t.Event("pitchstart",e))},r.prototype._fireMoveEvents=function(e){this.fire(new t.Event("move",e)),this._zooming&&this.fire(new t.Event("zoom",e)),this._rotating&&this.fire(new t.Event("rotate",e)),this._pitching&&this.fire(new t.Event("pitch",e))},r.prototype._afterEase=function(e,r){if(!this._easeId||!r||this._easeId!==r){delete this._easeId;var n=this._zooming,i=this._rotating,a=this._pitching;this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,this._padding=!1,n&&this.fire(new t.Event("zoomend",e)),i&&this.fire(new t.Event("rotateend",e)),a&&this.fire(new t.Event("pitchend",e)),this.fire(new t.Event("moveend",e))}},r.prototype.flyTo=function(e,r){var n=this;if(!e.essential&&t.browser.prefersReducedMotion){var i=t.pick(e,["center","zoom","bearing","pitch","around"]);return this.jumpTo(i,r)}this.stop(),e=t.extend({offset:[0,0],speed:1.2,curve:1.42,easing:t.ease},e);var a=this.transform,o=this.getZoom(),s=this.getBearing(),l=this.getPitch(),c=this.getPadding(),u="zoom"in e?t.clamp(+e.zoom,a.minZoom,a.maxZoom):o,f="bearing"in e?this._normalizeBearing(e.bearing,s):s,h="pitch"in e?+e.pitch:l,p="padding"in e?e.padding:a.padding,d=a.zoomScale(u-o),m=t.Point.convert(e.offset),g=a.centerPoint.add(m),v=a.pointLocation(g),y=t.LngLat.convert(e.center||v);this._normalizeCenter(y);var x=a.project(v),b=a.project(y).sub(x),_=e.curve,w=Math.max(a.width,a.height),T=w/d,k=b.mag();if("minZoom"in e){var A=t.clamp(Math.min(e.minZoom,o,u),a.minZoom,a.maxZoom),M=w/a.zoomScale(A-o);_=Math.sqrt(M/k*2)}var S=_*_;function E(t){var e=(T*T-w*w+(t?-1:1)*S*S*k*k)/(2*(t?T:w)*S*k);return Math.log(Math.sqrt(e*e+1)-e)}function L(t){return(Math.exp(t)-Math.exp(-t))/2}function C(t){return(Math.exp(t)+Math.exp(-t))/2}var P=E(0),I=function(t){return C(P)/C(P+_*t)},O=function(t){return w*((C(P)*(L(e=P+_*t)/C(e))-L(P))/S)/k;var e},z=(E(1)-P)/_;if(Math.abs(k)<1e-6||!isFinite(z)){if(Math.abs(w-T)<1e-6)return this.easeTo(e,r);var D=Te.maxDuration&&(e.duration=0),this._zooming=!0,this._rotating=s!==f,this._pitching=h!==l,this._padding=!a.isPaddingEqual(p),this._prepareEase(r,!1),this._ease((function(e){var i=e*z,d=1/I(i);a.zoom=1===e?u:o+a.scaleZoom(d),n._rotating&&(a.bearing=t.number(s,f,e)),n._pitching&&(a.pitch=t.number(l,h,e)),n._padding&&(a.interpolatePadding(c,p,e),g=a.centerPoint.add(m));var v=1===e?y:a.unproject(x.add(b.mult(O(i))).mult(d));a.setLocationAtPoint(a.renderWorldCopies?v.wrap():v,g),n._fireMoveEvents(r)}),(function(){return n._afterEase(r)}),e),this},r.prototype.isEasing=function(){return!!this._easeFrameId},r.prototype.stop=function(){return this._stop()},r.prototype._stop=function(t,e){if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),delete this._easeFrameId,delete this._onEaseFrame),this._onEaseEnd){var r=this._onEaseEnd;delete this._onEaseEnd,r.call(this,e)}if(!t){var n=this.handlers;n&&n.stop()}return this},r.prototype._ease=function(e,r,n){!1===n.animate||0===n.duration?(e(1),r()):(this._easeStart=t.browser.now(),this._easeOptions=n,this._onEaseFrame=e,this._onEaseEnd=r,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))},r.prototype._renderFrameCallback=function(){var e=Math.min((t.browser.now()-this._easeStart)/this._easeOptions.duration,1);this._onEaseFrame(this._easeOptions.easing(e)),e<1?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()},r.prototype._normalizeBearing=function(e,r){e=t.wrap(e,-180,180);var n=Math.abs(e-r);return Math.abs(e-360-r)180?-360:r<-180?360:0}},r}(t.Evented),bi=function(e){void 0===e&&(e={}),this.options=e,t.bindAll(["_updateEditLink","_updateData","_updateCompact"],this)};bi.prototype.getDefaultPosition=function(){return"bottom-right"},bi.prototype.onAdd=function(t){var e=this.options&&this.options.compact;return this._map=t,this._container=r.create("div","mapboxgl-ctrl mapboxgl-ctrl-attrib"),this._innerContainer=r.create("div","mapboxgl-ctrl-attrib-inner",this._container),e&&this._container.classList.add("mapboxgl-compact"),this._updateAttributions(),this._updateEditLink(),this._map.on("styledata",this._updateData),this._map.on("sourcedata",this._updateData),this._map.on("moveend",this._updateEditLink),void 0===e&&(this._map.on("resize",this._updateCompact),this._updateCompact()),this._container},bi.prototype.onRemove=function(){r.remove(this._container),this._map.off("styledata",this._updateData),this._map.off("sourcedata",this._updateData),this._map.off("moveend",this._updateEditLink),this._map.off("resize",this._updateCompact),this._map=void 0,this._attribHTML=void 0},bi.prototype._updateEditLink=function(){var e=this._editLink;e||(e=this._editLink=this._container.querySelector(".mapbox-improve-map"));var r=[{key:"owner",value:this.styleOwner},{key:"id",value:this.styleId},{key:"access_token",value:this._map._requestManager._customAccessToken||t.config.ACCESS_TOKEN}];if(e){var n=r.reduce((function(t,e,n){return e.value&&(t+=e.key+"="+e.value+(n=0)return!1;return!0}))).join(" | ");o!==this._attribHTML&&(this._attribHTML=o,t.length?(this._innerContainer.innerHTML=o,this._container.classList.remove("mapboxgl-attrib-empty")):this._container.classList.add("mapboxgl-attrib-empty"),this._editLink=null)}},bi.prototype._updateCompact=function(){this._map.getCanvasContainer().offsetWidth<=640?this._container.classList.add("mapboxgl-compact"):this._container.classList.remove("mapboxgl-compact")};var _i=function(){t.bindAll(["_updateLogo"],this),t.bindAll(["_updateCompact"],this)};_i.prototype.onAdd=function(t){this._map=t,this._container=r.create("div","mapboxgl-ctrl");var e=r.create("a","mapboxgl-ctrl-logo");return e.target="_blank",e.rel="noopener nofollow",e.href="https://www.mapbox.com/",e.setAttribute("aria-label",this._map._getUIString("LogoControl.Title")),e.setAttribute("rel","noopener nofollow"),this._container.appendChild(e),this._container.style.display="none",this._map.on("sourcedata",this._updateLogo),this._updateLogo(),this._map.on("resize",this._updateCompact),this._updateCompact(),this._container},_i.prototype.onRemove=function(){r.remove(this._container),this._map.off("sourcedata",this._updateLogo),this._map.off("resize",this._updateCompact)},_i.prototype.getDefaultPosition=function(){return"bottom-left"},_i.prototype._updateLogo=function(t){t&&"metadata"!==t.sourceDataType||(this._container.style.display=this._logoRequired()?"block":"none")},_i.prototype._logoRequired=function(){if(this._map.style){var t=this._map.style.sourceCaches;for(var e in t){if(t[e].getSource().mapbox_logo)return!0}return!1}},_i.prototype._updateCompact=function(){var t=this._container.children;if(t.length){var e=t[0];this._map.getCanvasContainer().offsetWidth<250?e.classList.add("mapboxgl-compact"):e.classList.remove("mapboxgl-compact")}};var wi=function(){this._queue=[],this._id=0,this._cleared=!1,this._currentlyRunning=!1};wi.prototype.add=function(t){var e=++this._id;return this._queue.push({callback:t,id:e,cancelled:!1}),e},wi.prototype.remove=function(t){for(var e=this._currentlyRunning,r=0,n=e?this._queue.concat(e):this._queue;re.maxZoom)throw new Error("maxZoom must be greater than or equal to minZoom");if(null!=e.minPitch&&null!=e.maxPitch&&e.minPitch>e.maxPitch)throw new Error("maxPitch must be greater than or equal to minPitch");if(null!=e.minPitch&&e.minPitch<0)throw new Error("minPitch must be greater than or equal to 0");if(null!=e.maxPitch&&e.maxPitch>60)throw new Error("maxPitch must be less than or equal to 60");var i=new An(e.minZoom,e.maxZoom,e.minPitch,e.maxPitch,e.renderWorldCopies);if(n.call(this,i,e),this._interactive=e.interactive,this._maxTileCacheSize=e.maxTileCacheSize,this._failIfMajorPerformanceCaveat=e.failIfMajorPerformanceCaveat,this._preserveDrawingBuffer=e.preserveDrawingBuffer,this._antialias=e.antialias,this._trackResize=e.trackResize,this._bearingSnap=e.bearingSnap,this._refreshExpiredTiles=e.refreshExpiredTiles,this._fadeDuration=e.fadeDuration,this._crossSourceCollisions=e.crossSourceCollisions,this._crossFadingFactor=1,this._collectResourceTiming=e.collectResourceTiming,this._renderTaskQueue=new wi,this._controls=[],this._mapId=t.uniqueId(),this._locale=t.extend({},Ti,e.locale),this._requestManager=new t.RequestManager(e.transformRequest,e.accessToken),"string"==typeof e.container){if(this._container=t.window.document.getElementById(e.container),!this._container)throw new Error("Container '"+e.container+"' not found.")}else{if(!(e.container instanceof Ai))throw new Error("Invalid type: 'container' must be a String or HTMLElement.");this._container=e.container}if(e.maxBounds&&this.setMaxBounds(e.maxBounds),t.bindAll(["_onWindowOnline","_onWindowResize","_contextLost","_contextRestored"],this),this._setupContainer(),this._setupPainter(),void 0===this.painter)throw new Error("Failed to initialize WebGL.");this.on("move",(function(){return r._update(!1)})),this.on("moveend",(function(){return r._update(!1)})),this.on("zoom",(function(){return r._update(!0)})),void 0!==t.window&&(t.window.addEventListener("online",this._onWindowOnline,!1),t.window.addEventListener("resize",this._onWindowResize,!1)),this.handlers=new yi(this,e);var a="string"==typeof e.hash&&e.hash||void 0;this._hash=e.hash&&new Sn(a).addTo(this),this._hash&&this._hash._onHashChange()||(this.jumpTo({center:e.center,zoom:e.zoom,bearing:e.bearing,pitch:e.pitch}),e.bounds&&(this.resize(),this.fitBounds(e.bounds,t.extend({},e.fitBoundsOptions,{duration:0})))),this.resize(),this._localIdeographFontFamily=e.localIdeographFontFamily,e.style&&this.setStyle(e.style,{localIdeographFontFamily:e.localIdeographFontFamily}),e.attributionControl&&this.addControl(new bi({customAttribution:e.customAttribution})),this.addControl(new _i,e.logoPosition),this.on("style.load",(function(){r.transform.unmodified&&r.jumpTo(r.style.stylesheet)})),this.on("data",(function(e){r._update("style"===e.dataType),r.fire(new t.Event(e.dataType+"data",e))})),this.on("dataloading",(function(e){r.fire(new t.Event(e.dataType+"dataloading",e))}))}n&&(i.__proto__=n),i.prototype=Object.create(n&&n.prototype),i.prototype.constructor=i;var a={showTileBoundaries:{configurable:!0},showPadding:{configurable:!0},showCollisionBoxes:{configurable:!0},showOverdrawInspector:{configurable:!0},repaint:{configurable:!0},vertices:{configurable:!0},version:{configurable:!0}};return i.prototype._getMapId=function(){return this._mapId},i.prototype.addControl=function(e,r){if(void 0===r&&e.getDefaultPosition&&(r=e.getDefaultPosition()),void 0===r&&(r="top-right"),!e||!e.onAdd)return this.fire(new t.ErrorEvent(new Error("Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.")));var n=e.onAdd(this);this._controls.push(e);var i=this._controlPositions[r];return-1!==r.indexOf("bottom")?i.insertBefore(n,i.firstChild):i.appendChild(n),this},i.prototype.removeControl=function(e){if(!e||!e.onRemove)return this.fire(new t.ErrorEvent(new Error("Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.")));var r=this._controls.indexOf(e);return r>-1&&this._controls.splice(r,1),e.onRemove(this),this},i.prototype.resize=function(e){var r=this._containerDimensions(),n=r[0],i=r[1];this._resizeCanvas(n,i),this.transform.resize(n,i),this.painter.resize(n,i);var a=!this._moving;return a&&(this.stop(),this.fire(new t.Event("movestart",e)).fire(new t.Event("move",e))),this.fire(new t.Event("resize",e)),a&&this.fire(new t.Event("moveend",e)),this},i.prototype.getBounds=function(){return this.transform.getBounds()},i.prototype.getMaxBounds=function(){return this.transform.getMaxBounds()},i.prototype.setMaxBounds=function(e){return this.transform.setMaxBounds(t.LngLatBounds.convert(e)),this._update()},i.prototype.setMinZoom=function(t){if((t=null==t?-2:t)>=-2&&t<=this.transform.maxZoom)return this.transform.minZoom=t,this._update(),this.getZoom()=this.transform.minZoom)return this.transform.maxZoom=t,this._update(),this.getZoom()>t&&this.setZoom(t),this;throw new Error("maxZoom must be greater than the current minZoom")},i.prototype.getMaxZoom=function(){return this.transform.maxZoom},i.prototype.setMinPitch=function(t){if((t=null==t?0:t)<0)throw new Error("minPitch must be greater than or equal to 0");if(t>=0&&t<=this.transform.maxPitch)return this.transform.minPitch=t,this._update(),this.getPitch()60)throw new Error("maxPitch must be less than or equal to 60");if(t>=this.transform.minPitch)return this.transform.maxPitch=t,this._update(),this.getPitch()>t&&this.setPitch(t),this;throw new Error("maxPitch must be greater than the current minPitch")},i.prototype.getMaxPitch=function(){return this.transform.maxPitch},i.prototype.getRenderWorldCopies=function(){return this.transform.renderWorldCopies},i.prototype.setRenderWorldCopies=function(t){return this.transform.renderWorldCopies=t,this._update()},i.prototype.project=function(e){return this.transform.locationPoint(t.LngLat.convert(e))},i.prototype.unproject=function(e){return this.transform.pointLocation(t.Point.convert(e))},i.prototype.isMoving=function(){return this._moving||this.handlers.isMoving()},i.prototype.isZooming=function(){return this._zooming||this.handlers.isZooming()},i.prototype.isRotating=function(){return this._rotating||this.handlers.isRotating()},i.prototype._createDelegatedListener=function(t,e,r){var n,i=this;if("mouseenter"===t||"mouseover"===t){var a=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){var o=i.getLayer(e)?i.queryRenderedFeatures(n.point,{layers:[e]}):[];o.length?a||(a=!0,r.call(i,new Rn(t,i,n.originalEvent,{features:o}))):a=!1},mouseout:function(){a=!1}}}}if("mouseleave"===t||"mouseout"===t){var o=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){(i.getLayer(e)?i.queryRenderedFeatures(n.point,{layers:[e]}):[]).length?o=!0:o&&(o=!1,r.call(i,new Rn(t,i,n.originalEvent)))},mouseout:function(e){o&&(o=!1,r.call(i,new Rn(t,i,e.originalEvent)))}}}}return{layer:e,listener:r,delegates:(n={},n[t]=function(t){var n=i.getLayer(e)?i.queryRenderedFeatures(t.point,{layers:[e]}):[];n.length&&(t.features=n,r.call(i,t),delete t.features)},n)}},i.prototype.on=function(t,e,r){if(void 0===r)return n.prototype.on.call(this,t,e);var i=this._createDelegatedListener(t,e,r);for(var a in this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[t]=this._delegatedListeners[t]||[],this._delegatedListeners[t].push(i),i.delegates)this.on(a,i.delegates[a]);return this},i.prototype.once=function(t,e,r){if(void 0===r)return n.prototype.once.call(this,t,e);var i=this._createDelegatedListener(t,e,r);for(var a in i.delegates)this.once(a,i.delegates[a]);return this},i.prototype.off=function(t,e,r){var i=this;if(void 0===r)return n.prototype.off.call(this,t,e);return this._delegatedListeners&&this._delegatedListeners[t]&&function(n){for(var a=n[t],o=0;o180;){var s=n.locationPoint(e);if(s.x>=0&&s.y>=0&&s.x<=n.width&&s.y<=n.height)break;e.lng>n.center.lng?e.lng-=360:e.lng+=360}return e}Ii.prototype.down=function(t,e){this.mouseRotate.mousedown(t,e),this.mousePitch&&this.mousePitch.mousedown(t,e),r.disableDrag()},Ii.prototype.move=function(t,e){var r=this.map,n=this.mouseRotate.mousemoveWindow(t,e);if(n&&n.bearingDelta&&r.setBearing(r.getBearing()+n.bearingDelta),this.mousePitch){var i=this.mousePitch.mousemoveWindow(t,e);i&&i.pitchDelta&&r.setPitch(r.getPitch()+i.pitchDelta)}},Ii.prototype.off=function(){var t=this.element;r.removeEventListener(t,"mousedown",this.mousedown),r.removeEventListener(t,"touchstart",this.touchstart,{passive:!1}),r.removeEventListener(t,"touchmove",this.touchmove),r.removeEventListener(t,"touchend",this.touchend),r.removeEventListener(t,"touchcancel",this.reset),this.offTemp()},Ii.prototype.offTemp=function(){r.enableDrag(),r.removeEventListener(t.window,"mousemove",this.mousemove),r.removeEventListener(t.window,"mouseup",this.mouseup)},Ii.prototype.mousedown=function(e){this.down(t.extend({},e,{ctrlKey:!0,preventDefault:function(){return e.preventDefault()}}),r.mousePos(this.element,e)),r.addEventListener(t.window,"mousemove",this.mousemove),r.addEventListener(t.window,"mouseup",this.mouseup)},Ii.prototype.mousemove=function(t){this.move(t,r.mousePos(this.element,t))},Ii.prototype.mouseup=function(t){this.mouseRotate.mouseupWindow(t),this.mousePitch&&this.mousePitch.mouseupWindow(t),this.offTemp()},Ii.prototype.touchstart=function(t){1!==t.targetTouches.length?this.reset():(this._startPos=this._lastPos=r.touchPos(this.element,t.targetTouches)[0],this.down({type:"mousedown",button:0,ctrlKey:!0,preventDefault:function(){return t.preventDefault()}},this._startPos))},Ii.prototype.touchmove=function(t){1!==t.targetTouches.length?this.reset():(this._lastPos=r.touchPos(this.element,t.targetTouches)[0],this.move({preventDefault:function(){return t.preventDefault()}},this._lastPos))},Ii.prototype.touchend=function(t){0===t.targetTouches.length&&this._startPos&&this._lastPos&&this._startPos.dist(this._lastPos)e.getEast()||r.latitudee.getNorth())},n.prototype._setErrorState=function(){switch(this._watchState){case"WAITING_ACTIVE":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error");break;case"ACTIVE_LOCK":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting");break;case"BACKGROUND":this._watchState="BACKGROUND_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting")}},n.prototype._onSuccess=function(e){if(this._map){if(this._isOutOfMapMaxBounds(e))return this._setErrorState(),this.fire(new t.Event("outofmaxbounds",e)),this._updateMarker(),void this._finish();if(this.options.trackUserLocation)switch(this._lastKnownPosition=e,this._watchState){case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"BACKGROUND":case"BACKGROUND_ERROR":this._watchState="BACKGROUND",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background")}this.options.showUserLocation&&"OFF"!==this._watchState&&this._updateMarker(e),this.options.trackUserLocation&&"ACTIVE_LOCK"!==this._watchState||this._updateCamera(e),this.options.showUserLocation&&this._dotElement.classList.remove("mapboxgl-user-location-dot-stale"),this.fire(new t.Event("geolocate",e)),this._finish()}},n.prototype._updateCamera=function(e){var r=new t.LngLat(e.coords.longitude,e.coords.latitude),n=e.coords.accuracy,i=this._map.getBearing(),a=t.extend({bearing:i},this.options.fitBoundsOptions);this._map.fitBounds(r.toBounds(n),a,{geolocateSource:!0})},n.prototype._updateMarker=function(e){if(e){var r=new t.LngLat(e.coords.longitude,e.coords.latitude);this._accuracyCircleMarker.setLngLat(r).addTo(this._map),this._userLocationDotMarker.setLngLat(r).addTo(this._map),this._accuracy=e.coords.accuracy,this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()}else this._userLocationDotMarker.remove(),this._accuracyCircleMarker.remove()},n.prototype._updateCircleRadius=function(){var t=this._map._container.clientHeight/2,e=this._map.unproject([0,t]),r=this._map.unproject([1,t]),n=e.distanceTo(r),i=Math.ceil(2*this._accuracy/n);this._circleElement.style.width=i+"px",this._circleElement.style.height=i+"px"},n.prototype._onZoom=function(){this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()},n.prototype._onError=function(e){if(this._map){if(this.options.trackUserLocation)if(1===e.code){this._watchState="OFF",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.disabled=!0;var r=this._map._getUIString("GeolocateControl.LocationNotAvailable");this._geolocateButton.title=r,this._geolocateButton.setAttribute("aria-label",r),void 0!==this._geolocationWatchID&&this._clearWatch()}else{if(3===e.code&&ji)return;this._setErrorState()}"OFF"!==this._watchState&&this.options.showUserLocation&&this._dotElement.classList.add("mapboxgl-user-location-dot-stale"),this.fire(new t.Event("error",e)),this._finish()}},n.prototype._finish=function(){this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},n.prototype._setupUI=function(e){var n=this;if(this._container.addEventListener("contextmenu",(function(t){return t.preventDefault()})),this._geolocateButton=r.create("button","mapboxgl-ctrl-geolocate",this._container),r.create("span","mapboxgl-ctrl-icon",this._geolocateButton).setAttribute("aria-hidden",!0),this._geolocateButton.type="button",!1===e){t.warnOnce("Geolocation support is not available so the GeolocateControl will be disabled.");var i=this._map._getUIString("GeolocateControl.LocationNotAvailable");this._geolocateButton.disabled=!0,this._geolocateButton.title=i,this._geolocateButton.setAttribute("aria-label",i)}else{var a=this._map._getUIString("GeolocateControl.FindMyLocation");this._geolocateButton.title=a,this._geolocateButton.setAttribute("aria-label",a)}this.options.trackUserLocation&&(this._geolocateButton.setAttribute("aria-pressed","false"),this._watchState="OFF"),this.options.showUserLocation&&(this._dotElement=r.create("div","mapboxgl-user-location-dot"),this._userLocationDotMarker=new Fi(this._dotElement),this._circleElement=r.create("div","mapboxgl-user-location-accuracy-circle"),this._accuracyCircleMarker=new Fi({element:this._circleElement,pitchAlignment:"map"}),this.options.trackUserLocation&&(this._watchState="OFF"),this._map.on("zoom",this._onZoom)),this._geolocateButton.addEventListener("click",this.trigger.bind(this)),this._setup=!0,this.options.trackUserLocation&&this._map.on("movestart",(function(e){var r=e.originalEvent&&"resize"===e.originalEvent.type;e.geolocateSource||"ACTIVE_LOCK"!==n._watchState||r||(n._watchState="BACKGROUND",n._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background"),n._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),n.fire(new t.Event("trackuserlocationend")))}))},n.prototype.trigger=function(){if(!this._setup)return t.warnOnce("Geolocate control triggered before added to a map"),!1;if(this.options.trackUserLocation){switch(this._watchState){case"OFF":this._watchState="WAITING_ACTIVE",this.fire(new t.Event("trackuserlocationstart"));break;case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":case"BACKGROUND_ERROR":Ni--,ji=!1,this._watchState="OFF",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this.fire(new t.Event("trackuserlocationend"));break;case"BACKGROUND":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new t.Event("trackuserlocationstart"))}switch(this._watchState){case"WAITING_ACTIVE":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"ACTIVE_LOCK":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"ACTIVE_ERROR":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error");break;case"BACKGROUND":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background");break;case"BACKGROUND_ERROR":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background-error")}if("OFF"===this._watchState&&void 0!==this._geolocationWatchID)this._clearWatch();else if(void 0===this._geolocationWatchID){var e;this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed","true"),++Ni>1?(e={maximumAge:6e5,timeout:0},ji=!0):(e=this.options.positionOptions,ji=!1),this._geolocationWatchID=t.window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,e)}}else t.window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4);return!0},n.prototype._clearWatch=function(){t.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed","false"),this.options.showUserLocation&&this._updateMarker(null)},n}(t.Evented),Vi={maxWidth:100,unit:"metric"},Hi=function(e){this.options=t.extend({},Vi,e),t.bindAll(["_onMove","setUnit"],this)};function qi(t,e,r){var n=r&&r.maxWidth||100,i=t._container.clientHeight/2,a=t.unproject([0,i]),o=t.unproject([n,i]),s=a.distanceTo(o);if(r&&"imperial"===r.unit){var l=3.2808*s;if(l>5280)Gi(e,n,l/5280,t._getUIString("ScaleControl.Miles"));else Gi(e,n,l,t._getUIString("ScaleControl.Feet"))}else if(r&&"nautical"===r.unit){Gi(e,n,s/1852,t._getUIString("ScaleControl.NauticalMiles"))}else s>=1e3?Gi(e,n,s/1e3,t._getUIString("ScaleControl.Kilometers")):Gi(e,n,s,t._getUIString("ScaleControl.Meters"))}function Gi(t,e,r,n){var i,a,o,s=(i=r,a=Math.pow(10,(""+Math.floor(i)).length-1),o=(o=i/a)>=10?10:o>=5?5:o>=3?3:o>=2?2:o>=1?1:function(t){var e=Math.pow(10,Math.ceil(-Math.log(t)/Math.LN10));return Math.round(t*e)/e}(o),a*o),l=s/r;t.style.width=e*l+"px",t.innerHTML=s+" "+n}Hi.prototype.getDefaultPosition=function(){return"bottom-left"},Hi.prototype._onMove=function(){qi(this._map,this._container,this.options)},Hi.prototype.onAdd=function(t){return this._map=t,this._container=r.create("div","mapboxgl-ctrl mapboxgl-ctrl-scale",t.getContainer()),this._map.on("move",this._onMove),this._onMove(),this._container},Hi.prototype.onRemove=function(){r.remove(this._container),this._map.off("move",this._onMove),this._map=void 0},Hi.prototype.setUnit=function(t){this.options.unit=t,qi(this._map,this._container,this.options)};var Yi=function(e){this._fullscreen=!1,e&&e.container&&(e.container instanceof t.window.HTMLElement?this._container=e.container:t.warnOnce("Full screen control 'container' must be a DOM element.")),t.bindAll(["_onClickFullscreen","_changeIcon"],this),"onfullscreenchange"in t.window.document?this._fullscreenchange="fullscreenchange":"onmozfullscreenchange"in t.window.document?this._fullscreenchange="mozfullscreenchange":"onwebkitfullscreenchange"in t.window.document?this._fullscreenchange="webkitfullscreenchange":"onmsfullscreenchange"in t.window.document&&(this._fullscreenchange="MSFullscreenChange")};Yi.prototype.onAdd=function(e){return this._map=e,this._container||(this._container=this._map.getContainer()),this._controlContainer=r.create("div","mapboxgl-ctrl mapboxgl-ctrl-group"),this._checkFullscreenSupport()?this._setupUI():(this._controlContainer.style.display="none",t.warnOnce("This device does not support fullscreen mode.")),this._controlContainer},Yi.prototype.onRemove=function(){r.remove(this._controlContainer),this._map=null,t.window.document.removeEventListener(this._fullscreenchange,this._changeIcon)},Yi.prototype._checkFullscreenSupport=function(){return!!(t.window.document.fullscreenEnabled||t.window.document.mozFullScreenEnabled||t.window.document.msFullscreenEnabled||t.window.document.webkitFullscreenEnabled)},Yi.prototype._setupUI=function(){var e=this._fullscreenButton=r.create("button","mapboxgl-ctrl-fullscreen",this._controlContainer);r.create("span","mapboxgl-ctrl-icon",e).setAttribute("aria-hidden",!0),e.type="button",this._updateTitle(),this._fullscreenButton.addEventListener("click",this._onClickFullscreen),t.window.document.addEventListener(this._fullscreenchange,this._changeIcon)},Yi.prototype._updateTitle=function(){var t=this._getTitle();this._fullscreenButton.setAttribute("aria-label",t),this._fullscreenButton.title=t},Yi.prototype._getTitle=function(){return this._map._getUIString(this._isFullscreen()?"FullscreenControl.Exit":"FullscreenControl.Enter")},Yi.prototype._isFullscreen=function(){return this._fullscreen},Yi.prototype._changeIcon=function(){(t.window.document.fullscreenElement||t.window.document.mozFullScreenElement||t.window.document.webkitFullscreenElement||t.window.document.msFullscreenElement)===this._container!==this._fullscreen&&(this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle("mapboxgl-ctrl-shrink"),this._fullscreenButton.classList.toggle("mapboxgl-ctrl-fullscreen"),this._updateTitle())},Yi.prototype._onClickFullscreen=function(){this._isFullscreen()?t.window.document.exitFullscreen?t.window.document.exitFullscreen():t.window.document.mozCancelFullScreen?t.window.document.mozCancelFullScreen():t.window.document.msExitFullscreen?t.window.document.msExitFullscreen():t.window.document.webkitCancelFullScreen&&t.window.document.webkitCancelFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.mozRequestFullScreen?this._container.mozRequestFullScreen():this._container.msRequestFullscreen?this._container.msRequestFullscreen():this._container.webkitRequestFullscreen&&this._container.webkitRequestFullscreen()};var Wi={closeButton:!0,closeOnClick:!0,className:"",maxWidth:"240px"},Xi=function(e){function n(r){e.call(this),this.options=t.extend(Object.create(Wi),r),t.bindAll(["_update","_onClose","remove","_onMouseMove","_onMouseUp","_onDrag"],this)}return e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n,n.prototype.addTo=function(e){return this._map&&this.remove(),this._map=e,this.options.closeOnClick&&this._map.on("click",this._onClose),this.options.closeOnMove&&this._map.on("move",this._onClose),this._map.on("remove",this.remove),this._update(),this._trackPointer?(this._map.on("mousemove",this._onMouseMove),this._map.on("mouseup",this._onMouseUp),this._container&&this._container.classList.add("mapboxgl-popup-track-pointer"),this._map._canvasContainer.classList.add("mapboxgl-track-pointer")):this._map.on("move",this._update),this.fire(new t.Event("open")),this},n.prototype.isOpen=function(){return!!this._map},n.prototype.remove=function(){return this._content&&r.remove(this._content),this._container&&(r.remove(this._container),delete this._container),this._map&&(this._map.off("move",this._update),this._map.off("move",this._onClose),this._map.off("click",this._onClose),this._map.off("remove",this.remove),this._map.off("mousemove",this._onMouseMove),this._map.off("mouseup",this._onMouseUp),this._map.off("drag",this._onDrag),delete this._map),this.fire(new t.Event("close")),this},n.prototype.getLngLat=function(){return this._lngLat},n.prototype.setLngLat=function(e){return this._lngLat=t.LngLat.convert(e),this._pos=null,this._trackPointer=!1,this._update(),this._map&&(this._map.on("move",this._update),this._map.off("mousemove",this._onMouseMove),this._container&&this._container.classList.remove("mapboxgl-popup-track-pointer"),this._map._canvasContainer.classList.remove("mapboxgl-track-pointer")),this},n.prototype.trackPointer=function(){return this._trackPointer=!0,this._pos=null,this._update(),this._map&&(this._map.off("move",this._update),this._map.on("mousemove",this._onMouseMove),this._map.on("drag",this._onDrag),this._container&&this._container.classList.add("mapboxgl-popup-track-pointer"),this._map._canvasContainer.classList.add("mapboxgl-track-pointer")),this},n.prototype.getElement=function(){return this._container},n.prototype.setText=function(e){return this.setDOMContent(t.window.document.createTextNode(e))},n.prototype.setHTML=function(e){var r,n=t.window.document.createDocumentFragment(),i=t.window.document.createElement("body");for(i.innerHTML=e;r=i.firstChild;)n.appendChild(r);return this.setDOMContent(n)},n.prototype.getMaxWidth=function(){return this._container&&this._container.style.maxWidth},n.prototype.setMaxWidth=function(t){return this.options.maxWidth=t,this._update(),this},n.prototype.setDOMContent=function(t){return this._createContent(),this._content.appendChild(t),this._update(),this},n.prototype.addClassName=function(t){this._container&&this._container.classList.add(t)},n.prototype.removeClassName=function(t){this._container&&this._container.classList.remove(t)},n.prototype.toggleClassName=function(t){if(this._container)return this._container.classList.toggle(t)},n.prototype._createContent=function(){this._content&&r.remove(this._content),this._content=r.create("div","mapboxgl-popup-content",this._container),this.options.closeButton&&(this._closeButton=r.create("button","mapboxgl-popup-close-button",this._content),this._closeButton.type="button",this._closeButton.setAttribute("aria-label","Close popup"),this._closeButton.innerHTML="×",this._closeButton.addEventListener("click",this._onClose))},n.prototype._onMouseUp=function(t){this._update(t.point)},n.prototype._onMouseMove=function(t){this._update(t.point)},n.prototype._onDrag=function(t){this._update(t.point)},n.prototype._update=function(e){var n=this,i=this._lngLat||this._trackPointer;if(this._map&&i&&this._content&&(this._container||(this._container=r.create("div","mapboxgl-popup",this._map.getContainer()),this._tip=r.create("div","mapboxgl-popup-tip",this._container),this._container.appendChild(this._content),this.options.className&&this.options.className.split(" ").forEach((function(t){return n._container.classList.add(t)})),this._trackPointer&&this._container.classList.add("mapboxgl-popup-track-pointer")),this.options.maxWidth&&this._container.style.maxWidth!==this.options.maxWidth&&(this._container.style.maxWidth=this.options.maxWidth),this._map.transform.renderWorldCopies&&!this._trackPointer&&(this._lngLat=Oi(this._lngLat,this._pos,this._map.transform)),!this._trackPointer||e)){var a=this._pos=this._trackPointer&&e?e:this._map.project(this._lngLat),o=this.options.anchor,s=function e(r){if(r){if("number"==typeof r){var n=Math.round(Math.sqrt(.5*Math.pow(r,2)));return{center:new t.Point(0,0),top:new t.Point(0,r),"top-left":new t.Point(n,n),"top-right":new t.Point(-n,n),bottom:new t.Point(0,-r),"bottom-left":new t.Point(n,-n),"bottom-right":new t.Point(-n,-n),left:new t.Point(r,0),right:new t.Point(-r,0)}}if(r instanceof t.Point||Array.isArray(r)){var i=t.Point.convert(r);return{center:i,top:i,"top-left":i,"top-right":i,bottom:i,"bottom-left":i,"bottom-right":i,left:i,right:i}}return{center:t.Point.convert(r.center||[0,0]),top:t.Point.convert(r.top||[0,0]),"top-left":t.Point.convert(r["top-left"]||[0,0]),"top-right":t.Point.convert(r["top-right"]||[0,0]),bottom:t.Point.convert(r.bottom||[0,0]),"bottom-left":t.Point.convert(r["bottom-left"]||[0,0]),"bottom-right":t.Point.convert(r["bottom-right"]||[0,0]),left:t.Point.convert(r.left||[0,0]),right:t.Point.convert(r.right||[0,0])}}return e(new t.Point(0,0))}(this.options.offset);if(!o){var l,c=this._container.offsetWidth,u=this._container.offsetHeight;l=a.y+s.bottom.ythis._map.transform.height-u?["bottom"]:[],a.xthis._map.transform.width-c/2&&l.push("right"),o=0===l.length?"bottom":l.join("-")}var f=a.add(s[o]).round();r.setTransform(this._container,zi[o]+" translate("+f.x+"px,"+f.y+"px)"),Di(this._container,o,"popup")}},n.prototype._onClose=function(){this.remove()},n}(t.Evented);var Zi={version:t.version,supported:e,setRTLTextPlugin:t.setRTLTextPlugin,getRTLTextPluginStatus:t.getRTLTextPluginStatus,Map:Ei,NavigationControl:Pi,GeolocateControl:Ui,AttributionControl:bi,ScaleControl:Hi,FullscreenControl:Yi,Popup:Xi,Marker:Fi,Style:qe,LngLat:t.LngLat,LngLatBounds:t.LngLatBounds,Point:t.Point,MercatorCoordinate:t.MercatorCoordinate,Evented:t.Evented,config:t.config,prewarm:function(){Bt().acquire(zt)},clearPrewarmedResources:function(){var t=Rt;t&&(t.isPreloaded()&&1===t.numActive()?(t.release(zt),Rt=null):console.warn("Could not clear WebWorkers since there are active Map instances that still reference it. The pre-warmed WebWorker pool can only be cleared when all map instances have been removed with map.remove()"))},get accessToken(){return t.config.ACCESS_TOKEN},set accessToken(e){t.config.ACCESS_TOKEN=e},get baseApiUrl(){return t.config.API_URL},set baseApiUrl(e){t.config.API_URL=e},get workerCount(){return Dt.workerCount},set workerCount(t){Dt.workerCount=t},get maxParallelImageRequests(){return t.config.MAX_PARALLEL_IMAGE_REQUESTS},set maxParallelImageRequests(e){t.config.MAX_PARALLEL_IMAGE_REQUESTS=e},clearStorage:function(e){t.clearTileCache(e)},workerUrl:""};return Zi})),r}))},{}],442:[function(t,e,r){var n=t("./normalize"),i=t("gl-mat4/create"),a=t("gl-mat4/clone"),o=t("gl-mat4/determinant"),s=t("gl-mat4/invert"),l=t("gl-mat4/transpose"),c={length:t("gl-vec3/length"),normalize:t("gl-vec3/normalize"),dot:t("gl-vec3/dot"),cross:t("gl-vec3/cross")},u=i(),f=i(),h=[0,0,0,0],p=[[0,0,0],[0,0,0],[0,0,0]],d=[0,0,0];function m(t,e,r,n,i){t[0]=e[0]*n+r[0]*i,t[1]=e[1]*n+r[1]*i,t[2]=e[2]*n+r[2]*i}e.exports=function(t,e,r,i,g,v){if(e||(e=[0,0,0]),r||(r=[0,0,0]),i||(i=[0,0,0]),g||(g=[0,0,0,1]),v||(v=[0,0,0,1]),!n(u,t))return!1;if(a(f,u),f[3]=0,f[7]=0,f[11]=0,f[15]=1,Math.abs(o(f)<1e-8))return!1;var y,x,b,_,w,T,k,A=u[3],M=u[7],S=u[11],E=u[12],L=u[13],C=u[14],P=u[15];if(0!==A||0!==M||0!==S){if(h[0]=A,h[1]=M,h[2]=S,h[3]=P,!s(f,f))return!1;l(f,f),y=g,b=f,_=(x=h)[0],w=x[1],T=x[2],k=x[3],y[0]=b[0]*_+b[4]*w+b[8]*T+b[12]*k,y[1]=b[1]*_+b[5]*w+b[9]*T+b[13]*k,y[2]=b[2]*_+b[6]*w+b[10]*T+b[14]*k,y[3]=b[3]*_+b[7]*w+b[11]*T+b[15]*k}else g[0]=g[1]=g[2]=0,g[3]=1;if(e[0]=E,e[1]=L,e[2]=C,function(t,e){t[0][0]=e[0],t[0][1]=e[1],t[0][2]=e[2],t[1][0]=e[4],t[1][1]=e[5],t[1][2]=e[6],t[2][0]=e[8],t[2][1]=e[9],t[2][2]=e[10]}(p,u),r[0]=c.length(p[0]),c.normalize(p[0],p[0]),i[0]=c.dot(p[0],p[1]),m(p[1],p[1],p[0],1,-i[0]),r[1]=c.length(p[1]),c.normalize(p[1],p[1]),i[0]/=r[1],i[1]=c.dot(p[0],p[2]),m(p[2],p[2],p[0],1,-i[1]),i[2]=c.dot(p[1],p[2]),m(p[2],p[2],p[1],1,-i[2]),r[2]=c.length(p[2]),c.normalize(p[2],p[2]),i[1]/=r[2],i[2]/=r[2],c.cross(d,p[1],p[2]),c.dot(p[0],d)<0)for(var I=0;I<3;I++)r[I]*=-1,p[I][0]*=-1,p[I][1]*=-1,p[I][2]*=-1;return v[0]=.5*Math.sqrt(Math.max(1+p[0][0]-p[1][1]-p[2][2],0)),v[1]=.5*Math.sqrt(Math.max(1-p[0][0]+p[1][1]-p[2][2],0)),v[2]=.5*Math.sqrt(Math.max(1-p[0][0]-p[1][1]+p[2][2],0)),v[3]=.5*Math.sqrt(Math.max(1+p[0][0]+p[1][1]+p[2][2],0)),p[2][1]>p[1][2]&&(v[0]=-v[0]),p[0][2]>p[2][0]&&(v[1]=-v[1]),p[1][0]>p[0][1]&&(v[2]=-v[2]),!0}},{"./normalize":443,"gl-mat4/clone":272,"gl-mat4/create":274,"gl-mat4/determinant":275,"gl-mat4/invert":287,"gl-mat4/transpose":300,"gl-vec3/cross":350,"gl-vec3/dot":355,"gl-vec3/length":365,"gl-vec3/normalize":372}],443:[function(t,e,r){e.exports=function(t,e){var r=e[15];if(0===r)return!1;for(var n=1/r,i=0;i<16;i++)t[i]=e[i]*n;return!0}},{}],444:[function(t,e,r){var n=t("gl-vec3/lerp"),i=t("mat4-recompose"),a=t("mat4-decompose"),o=t("gl-mat4/determinant"),s=t("quat-slerp"),l=f(),c=f(),u=f();function f(){return{translate:h(),scale:h(1),skew:h(),perspective:[0,0,0,1],quaternion:[0,0,0,1]}}function h(t){return[t||0,t||0,t||0]}e.exports=function(t,e,r,f){if(0===o(e)||0===o(r))return!1;var h=a(e,l.translate,l.scale,l.skew,l.perspective,l.quaternion),p=a(r,c.translate,c.scale,c.skew,c.perspective,c.quaternion);return!(!h||!p)&&(n(u.translate,l.translate,c.translate,f),n(u.skew,l.skew,c.skew,f),n(u.scale,l.scale,c.scale,f),n(u.perspective,l.perspective,c.perspective,f),s(u.quaternion,l.quaternion,c.quaternion,f),i(t,u.translate,u.scale,u.skew,u.perspective,u.quaternion),!0)}},{"gl-mat4/determinant":275,"gl-vec3/lerp":366,"mat4-decompose":442,"mat4-recompose":445,"quat-slerp":505}],445:[function(t,e,r){var n={identity:t("gl-mat4/identity"),translate:t("gl-mat4/translate"),multiply:t("gl-mat4/multiply"),create:t("gl-mat4/create"),scale:t("gl-mat4/scale"),fromRotationTranslation:t("gl-mat4/fromRotationTranslation")},i=(n.create(),n.create());e.exports=function(t,e,r,a,o,s){return n.identity(t),n.fromRotationTranslation(t,s,e),t[3]=o[0],t[7]=o[1],t[11]=o[2],t[15]=o[3],n.identity(i),0!==a[2]&&(i[9]=a[2],n.multiply(t,t,i)),0!==a[1]&&(i[9]=0,i[8]=a[1],n.multiply(t,t,i)),0!==a[0]&&(i[8]=0,i[4]=a[0],n.multiply(t,t,i)),n.scale(t,t,r),t}},{"gl-mat4/create":274,"gl-mat4/fromRotationTranslation":278,"gl-mat4/identity":285,"gl-mat4/multiply":289,"gl-mat4/scale":297,"gl-mat4/translate":299}],446:[function(t,e,r){"use strict";e.exports=Math.log2||function(t){return Math.log(t)*Math.LOG2E}},{}],447:[function(t,e,r){"use strict";var n=t("binary-search-bounds"),i=t("mat4-interpolate"),a=t("gl-mat4/invert"),o=t("gl-mat4/rotateX"),s=t("gl-mat4/rotateY"),l=t("gl-mat4/rotateZ"),c=t("gl-mat4/lookAt"),u=t("gl-mat4/translate"),f=(t("gl-mat4/scale"),t("gl-vec3/normalize")),h=[0,0,0];function p(t){this._components=t.slice(),this._time=[0],this.prevMatrix=t.slice(),this.nextMatrix=t.slice(),this.computedMatrix=t.slice(),this.computedInverse=t.slice(),this.computedEye=[0,0,0],this.computedUp=[0,0,0],this.computedCenter=[0,0,0],this.computedRadius=[0],this._limits=[-1/0,1/0]}e.exports=function(t){return new p((t=t||{}).matrix||[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])};var d=p.prototype;d.recalcMatrix=function(t){var e=this._time,r=n.le(e,t),o=this.computedMatrix;if(!(r<0)){var s=this._components;if(r===e.length-1)for(var l=16*r,c=0;c<16;++c)o[c]=s[l++];else{var u=e[r+1]-e[r],h=(l=16*r,this.prevMatrix),p=!0;for(c=0;c<16;++c)h[c]=s[l++];var d=this.nextMatrix;for(c=0;c<16;++c)d[c]=s[l++],p=p&&h[c]===d[c];if(u<1e-6||p)for(c=0;c<16;++c)o[c]=h[c];else i(o,h,d,(t-e[r])/u)}var m=this.computedUp;m[0]=o[1],m[1]=o[5],m[2]=o[9],f(m,m);var g=this.computedInverse;a(g,o);var v=this.computedEye,y=g[15];v[0]=g[12]/y,v[1]=g[13]/y,v[2]=g[14]/y;var x=this.computedCenter,b=Math.exp(this.computedRadius[0]);for(c=0;c<3;++c)x[c]=v[c]-o[2+4*c]*b}},d.idle=function(t){if(!(t1&&n(t[o[u-2]],t[o[u-1]],c)<=0;)u-=1,o.pop();for(o.push(l),u=s.length;u>1&&n(t[s[u-2]],t[s[u-1]],c)>=0;)u-=1,s.pop();s.push(l)}r=new Array(s.length+o.length-2);for(var f=0,h=(i=0,o.length);i0;--p)r[f++]=s[p];return r};var n=t("robust-orientation")[3]},{"robust-orientation":524}],449:[function(t,e,r){"use strict";e.exports=function(t,e){e||(e=t,t=window);var r=0,i=0,a=0,o={shift:!1,alt:!1,control:!1,meta:!1},s=!1;function l(t){var e=!1;return"altKey"in t&&(e=e||t.altKey!==o.alt,o.alt=!!t.altKey),"shiftKey"in t&&(e=e||t.shiftKey!==o.shift,o.shift=!!t.shiftKey),"ctrlKey"in t&&(e=e||t.ctrlKey!==o.control,o.control=!!t.ctrlKey),"metaKey"in t&&(e=e||t.metaKey!==o.meta,o.meta=!!t.metaKey),e}function c(t,s){var c=n.x(s),u=n.y(s);"buttons"in s&&(t=0|s.buttons),(t!==r||c!==i||u!==a||l(s))&&(r=0|t,i=c||0,a=u||0,e&&e(r,i,a,o))}function u(t){c(0,t)}function f(){(r||i||a||o.shift||o.alt||o.meta||o.control)&&(i=a=0,r=0,o.shift=o.alt=o.control=o.meta=!1,e&&e(0,0,0,o))}function h(t){l(t)&&e&&e(r,i,a,o)}function p(t){0===n.buttons(t)?c(0,t):c(r,t)}function d(t){c(r|n.buttons(t),t)}function m(t){c(r&~n.buttons(t),t)}function g(){s||(s=!0,t.addEventListener("mousemove",p),t.addEventListener("mousedown",d),t.addEventListener("mouseup",m),t.addEventListener("mouseleave",u),t.addEventListener("mouseenter",u),t.addEventListener("mouseout",u),t.addEventListener("mouseover",u),t.addEventListener("blur",f),t.addEventListener("keyup",h),t.addEventListener("keydown",h),t.addEventListener("keypress",h),t!==window&&(window.addEventListener("blur",f),window.addEventListener("keyup",h),window.addEventListener("keydown",h),window.addEventListener("keypress",h)))}g();var v={element:t};return Object.defineProperties(v,{enabled:{get:function(){return s},set:function(e){e?g():function(){if(!s)return;s=!1,t.removeEventListener("mousemove",p),t.removeEventListener("mousedown",d),t.removeEventListener("mouseup",m),t.removeEventListener("mouseleave",u),t.removeEventListener("mouseenter",u),t.removeEventListener("mouseout",u),t.removeEventListener("mouseover",u),t.removeEventListener("blur",f),t.removeEventListener("keyup",h),t.removeEventListener("keydown",h),t.removeEventListener("keypress",h),t!==window&&(window.removeEventListener("blur",f),window.removeEventListener("keyup",h),window.removeEventListener("keydown",h),window.removeEventListener("keypress",h))}()},enumerable:!0},buttons:{get:function(){return r},enumerable:!0},x:{get:function(){return i},enumerable:!0},y:{get:function(){return a},enumerable:!0},mods:{get:function(){return o},enumerable:!0}}),v};var n=t("mouse-event")},{"mouse-event":451}],450:[function(t,e,r){var n={left:0,top:0};e.exports=function(t,e,r){e=e||t.currentTarget||t.srcElement,Array.isArray(r)||(r=[0,0]);var i=t.clientX||0,a=t.clientY||0,o=(s=e,s===window||s===document||s===document.body?n:s.getBoundingClientRect());var s;return r[0]=i-o.left,r[1]=a-o.top,r}},{}],451:[function(t,e,r){"use strict";function n(t){return t.target||t.srcElement||window}r.buttons=function(t){if("object"==typeof t){if("buttons"in t)return t.buttons;if("which"in t){if(2===(e=t.which))return 4;if(3===e)return 2;if(e>0)return 1<=0)return 1<0&&o(l,r))}catch(t){f.call(new p(r),t)}}}function f(t){var e=this;e.triggered||(e.triggered=!0,e.def&&(e=e.def),e.msg=t,e.state=2,e.chain.length>0&&o(l,e))}function h(t,e,r,n){for(var i=0;i 0");"function"!=typeof t.vertex&&e("Must specify vertex creation function");"function"!=typeof t.cell&&e("Must specify cell creation function");"function"!=typeof t.phase&&e("Must specify phase function");for(var s=t.getters||[],l=new Array(a),c=0;c=0?l[c]=!0:l[c]=!1;return function(t,e,r,a,o,s){var l=[s,o].join(",");return(0,i[l])(t,e,r,n.mallocUint32,n.freeUint32)}(t.vertex,t.cell,t.phase,0,r,l)};var i={"false,0,1":function(t,e,r,n,i){return function(a,o,s,l){var c,u=0|a.shape[0],f=0|a.shape[1],h=a.data,p=0|a.offset,d=0|a.stride[0],m=0|a.stride[1],g=p,v=0|-d,y=0,x=0|-m,b=0,_=-d-m|0,w=0,T=0|d,k=m-d*u|0,A=0,M=0,S=0,E=2*u|0,L=n(E),C=n(E),P=0,I=0,O=-1,z=-1,D=0,R=0|-u,F=0|u,B=0,N=-u-1|0,j=u-1|0,U=0,V=0,H=0;for(A=0;A0){if(M=1,L[P++]=r(h[g],o,s,l),g+=T,u>0)for(A=1,c=h[g],I=L[P]=r(c,o,s,l),D=L[P+O],B=L[P+R],U=L[P+N],I===D&&I===B&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,D,B,U,o,s,l),V=C[P]=S++),P+=1,g+=T,A=2;A0)for(A=1,c=h[g],I=L[P]=r(c,o,s,l),D=L[P+O],B=L[P+R],U=L[P+N],I===D&&I===B&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,D,B,U,o,s,l),V=C[P]=S++,U!==B&&e(C[P+R],V,b,w,B,U,o,s,l)),P+=1,g+=T,A=2;A0){if(A=1,L[P++]=r(h[g],o,s,l),g+=T,f>0)for(M=1,c=h[g],I=L[P]=r(c,o,s,l),B=L[P+R],D=L[P+O],U=L[P+N],I===B&&I===D&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,B,D,U,o,s,l),V=C[P]=S++),P+=1,g+=T,M=2;M0)for(M=1,c=h[g],I=L[P]=r(c,o,s,l),B=L[P+R],D=L[P+O],U=L[P+N],I===B&&I===D&&I===U||(y=h[g+v],b=h[g+x],w=h[g+_],t(A,M,c,y,b,w,I,B,D,U,o,s,l),V=C[P]=S++,U!==B&&e(C[P+R],V,w,y,U,B,o,s,l)),P+=1,g+=T,M=2;M2&&a[1]>2&&n(i.pick(-1,-1).lo(1,1).hi(a[0]-2,a[1]-2),t.pick(-1,-1,0).lo(1,1).hi(a[0]-2,a[1]-2),t.pick(-1,-1,1).lo(1,1).hi(a[0]-2,a[1]-2)),a[1]>2&&(r(i.pick(0,-1).lo(1).hi(a[1]-2),t.pick(0,-1,1).lo(1).hi(a[1]-2)),e(t.pick(0,-1,0).lo(1).hi(a[1]-2))),a[1]>2&&(r(i.pick(a[0]-1,-1).lo(1).hi(a[1]-2),t.pick(a[0]-1,-1,1).lo(1).hi(a[1]-2)),e(t.pick(a[0]-1,-1,0).lo(1).hi(a[1]-2))),a[0]>2&&(r(i.pick(-1,0).lo(1).hi(a[0]-2),t.pick(-1,0,0).lo(1).hi(a[0]-2)),e(t.pick(-1,0,1).lo(1).hi(a[0]-2))),a[0]>2&&(r(i.pick(-1,a[1]-1).lo(1).hi(a[0]-2),t.pick(-1,a[1]-1,0).lo(1).hi(a[0]-2)),e(t.pick(-1,a[1]-1,1).lo(1).hi(a[0]-2))),t.set(0,0,0,0),t.set(0,0,1,0),t.set(a[0]-1,0,0,0),t.set(a[0]-1,0,1,0),t.set(0,a[1]-1,0,0),t.set(0,a[1]-1,1,0),t.set(a[0]-1,a[1]-1,0,0),t.set(a[0]-1,a[1]-1,1,0),t}}e.exports=function(t,e,r){return Array.isArray(r)||(r=n(e.dimension,"string"==typeof r?r:"clamp")),0===e.size?t:0===e.dimension?(t.set(0),t):function(t){var e=t.join();if(a=u[e])return a;for(var r=t.length,n=[f,h],i=1;i<=r;++i)n.push(p(i));var a=d.apply(void 0,n);return u[e]=a,a}(r)(t,e)}},{dup:177}],456:[function(t,e,r){"use strict";function n(t,e){var r=Math.floor(e),n=e-r,i=0<=r&&r0;){x<64?(l=x,x=0):(l=64,x-=64);for(var b=0|t[1];b>0;){b<64?(c=b,b=0):(c=64,b-=64),n=v+x*f+b*h,o=y+x*d+b*m;var _=0,w=0,T=0,k=p,A=f-u*p,M=h-l*f,S=g,E=d-u*g,L=m-l*d;for(T=0;T0;){m<64?(l=m,m=0):(l=64,m-=64);for(var g=0|t[0];g>0;){g<64?(s=g,g=0):(s=64,g-=64),n=p+m*u+g*c,o=d+m*h+g*f;var v=0,y=0,x=u,b=c-l*u,_=h,w=f-l*h;for(y=0;y0;){y<64?(c=y,y=0):(c=64,y-=64);for(var x=0|t[0];x>0;){x<64?(s=x,x=0):(s=64,x-=64);for(var b=0|t[1];b>0;){b<64?(l=b,b=0):(l=64,b-=64),n=g+y*h+x*u+b*f,o=v+y*m+x*p+b*d;var _=0,w=0,T=0,k=h,A=u-c*h,M=f-s*u,S=m,E=p-c*m,L=d-s*p;for(T=0;Tr;){v=0,y=m-o;e:for(g=0;gb)break e;y+=f,v+=h}for(v=m,y=m-o,g=0;g>1,q=H-j,G=H+j,Y=U,W=q,X=H,Z=G,J=V,K=i+1,Q=a-1,$=!0,tt=0,et=0,rt=0,nt=f,it=e(nt),at=e(nt);A=l*Y,M=l*W,N=s;t:for(k=0;k0){g=Y,Y=W,W=g;break t}if(rt<0)break t;N+=p}A=l*Z,M=l*J,N=s;t:for(k=0;k0){g=Z,Z=J,J=g;break t}if(rt<0)break t;N+=p}A=l*Y,M=l*X,N=s;t:for(k=0;k0){g=Y,Y=X,X=g;break t}if(rt<0)break t;N+=p}A=l*W,M=l*X,N=s;t:for(k=0;k0){g=W,W=X,X=g;break t}if(rt<0)break t;N+=p}A=l*Y,M=l*Z,N=s;t:for(k=0;k0){g=Y,Y=Z,Z=g;break t}if(rt<0)break t;N+=p}A=l*X,M=l*Z,N=s;t:for(k=0;k0){g=X,X=Z,Z=g;break t}if(rt<0)break t;N+=p}A=l*W,M=l*J,N=s;t:for(k=0;k0){g=W,W=J,J=g;break t}if(rt<0)break t;N+=p}A=l*W,M=l*X,N=s;t:for(k=0;k0){g=W,W=X,X=g;break t}if(rt<0)break t;N+=p}A=l*Z,M=l*J,N=s;t:for(k=0;k0){g=Z,Z=J,J=g;break t}if(rt<0)break t;N+=p}for(A=l*Y,M=l*W,S=l*X,E=l*Z,L=l*J,C=l*U,P=l*H,I=l*V,B=0,N=s,k=0;k0)){if(rt<0){for(A=l*b,M=l*K,S=l*Q,N=s,k=0;k0)for(;;){_=s+Q*l,B=0;t:for(k=0;k0)){_=s+Q*l,B=0;t:for(k=0;kV){t:for(;;){for(_=s+K*l,B=0,N=s,k=0;k1&&n?s(r,n[0],n[1]):s(r)}(t,e,l);return n(l,c)}},{"typedarray-pool":590}],461:[function(t,e,r){"use strict";var n=t("./lib/compile_sort.js"),i={};e.exports=function(t){var e=t.order,r=t.dtype,a=[e,r].join(":"),o=i[a];return o||(i[a]=o=n(e,r)),o(t),t}},{"./lib/compile_sort.js":460}],462:[function(t,e,r){var n=t("is-buffer"),i="undefined"!=typeof Float64Array;function a(t,e){return t[0]-e[0]}function o(){var t,e=this.stride,r=new Array(e.length);for(t=0;t=0&&(e+=a*(r=0|t),i-=r),new n(this.data,i,a,e)},i.step=function(t){var e=this.shape[0],r=this.stride[0],i=this.offset,a=0,o=Math.ceil;return"number"==typeof t&&((a=0|t)<0?(i+=r*(e-1),e=o(-e/a)):e=o(e/a),r*=a),new n(this.data,e,r,i)},i.transpose=function(t){t=void 0===t?0:0|t;var e=this.shape,r=this.stride;return new n(this.data,e[t],r[t],this.offset)},i.pick=function(t){var r=[],n=[],i=this.offset;return"number"==typeof t&&t>=0?i=i+this.stride[0]*t|0:(r.push(this.shape[0]),n.push(this.stride[0])),(0,e[r.length+1])(this.data,r,n,i)},function(t,e,r,i){return new n(t,e[0],r[0],i)}},2:function(t,e,r){function n(t,e,r,n,i,a){this.data=t,this.shape=[e,r],this.stride=[n,i],this.offset=0|a}var i=n.prototype;return i.dtype=t,i.dimension=2,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]}}),Object.defineProperty(i,"order",{get:function(){return Math.abs(this.stride[0])>Math.abs(this.stride[1])?[1,0]:[0,1]}}),i.set=function(e,r,n){return"generic"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r,n):this.data[this.offset+this.stride[0]*e+this.stride[1]*r]=n},i.get=function(e,r){return"generic"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r):this.data[this.offset+this.stride[0]*e+this.stride[1]*r]},i.index=function(t,e){return this.offset+this.stride[0]*t+this.stride[1]*e},i.hi=function(t,e){return new n(this.data,"number"!=typeof t||t<0?this.shape[0]:0|t,"number"!=typeof e||e<0?this.shape[1]:0|e,this.stride[0],this.stride[1],this.offset)},i.lo=function(t,e){var r=this.offset,i=0,a=this.shape[0],o=this.shape[1],s=this.stride[0],l=this.stride[1];return"number"==typeof t&&t>=0&&(r+=s*(i=0|t),a-=i),"number"==typeof e&&e>=0&&(r+=l*(i=0|e),o-=i),new n(this.data,a,o,s,l,r)},i.step=function(t,e){var r=this.shape[0],i=this.shape[1],a=this.stride[0],o=this.stride[1],s=this.offset,l=0,c=Math.ceil;return"number"==typeof t&&((l=0|t)<0?(s+=a*(r-1),r=c(-r/l)):r=c(r/l),a*=l),"number"==typeof e&&((l=0|e)<0?(s+=o*(i-1),i=c(-i/l)):i=c(i/l),o*=l),new n(this.data,r,i,a,o,s)},i.transpose=function(t,e){t=void 0===t?0:0|t,e=void 0===e?1:0|e;var r=this.shape,i=this.stride;return new n(this.data,r[t],r[e],i[t],i[e],this.offset)},i.pick=function(t,r){var n=[],i=[],a=this.offset;return"number"==typeof t&&t>=0?a=a+this.stride[0]*t|0:(n.push(this.shape[0]),i.push(this.stride[0])),"number"==typeof r&&r>=0?a=a+this.stride[1]*r|0:(n.push(this.shape[1]),i.push(this.stride[1])),(0,e[n.length+1])(this.data,n,i,a)},function(t,e,r,i){return new n(t,e[0],e[1],r[0],r[1],i)}},3:function(t,e,r){function n(t,e,r,n,i,a,o,s){this.data=t,this.shape=[e,r,n],this.stride=[i,a,o],this.offset=0|s}var i=n.prototype;return i.dtype=t,i.dimension=3,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]}}),Object.defineProperty(i,"order",{get:function(){var t=Math.abs(this.stride[0]),e=Math.abs(this.stride[1]),r=Math.abs(this.stride[2]);return t>e?e>r?[2,1,0]:t>r?[1,2,0]:[1,0,2]:t>r?[2,0,1]:r>e?[0,1,2]:[0,2,1]}}),i.set=function(e,r,n,i){return"generic"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n,i):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n]=i},i.get=function(e,r,n){return"generic"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n]},i.index=function(t,e,r){return this.offset+this.stride[0]*t+this.stride[1]*e+this.stride[2]*r},i.hi=function(t,e,r){return new n(this.data,"number"!=typeof t||t<0?this.shape[0]:0|t,"number"!=typeof e||e<0?this.shape[1]:0|e,"number"!=typeof r||r<0?this.shape[2]:0|r,this.stride[0],this.stride[1],this.stride[2],this.offset)},i.lo=function(t,e,r){var i=this.offset,a=0,o=this.shape[0],s=this.shape[1],l=this.shape[2],c=this.stride[0],u=this.stride[1],f=this.stride[2];return"number"==typeof t&&t>=0&&(i+=c*(a=0|t),o-=a),"number"==typeof e&&e>=0&&(i+=u*(a=0|e),s-=a),"number"==typeof r&&r>=0&&(i+=f*(a=0|r),l-=a),new n(this.data,o,s,l,c,u,f,i)},i.step=function(t,e,r){var i=this.shape[0],a=this.shape[1],o=this.shape[2],s=this.stride[0],l=this.stride[1],c=this.stride[2],u=this.offset,f=0,h=Math.ceil;return"number"==typeof t&&((f=0|t)<0?(u+=s*(i-1),i=h(-i/f)):i=h(i/f),s*=f),"number"==typeof e&&((f=0|e)<0?(u+=l*(a-1),a=h(-a/f)):a=h(a/f),l*=f),"number"==typeof r&&((f=0|r)<0?(u+=c*(o-1),o=h(-o/f)):o=h(o/f),c*=f),new n(this.data,i,a,o,s,l,c,u)},i.transpose=function(t,e,r){t=void 0===t?0:0|t,e=void 0===e?1:0|e,r=void 0===r?2:0|r;var i=this.shape,a=this.stride;return new n(this.data,i[t],i[e],i[r],a[t],a[e],a[r],this.offset)},i.pick=function(t,r,n){var i=[],a=[],o=this.offset;return"number"==typeof t&&t>=0?o=o+this.stride[0]*t|0:(i.push(this.shape[0]),a.push(this.stride[0])),"number"==typeof r&&r>=0?o=o+this.stride[1]*r|0:(i.push(this.shape[1]),a.push(this.stride[1])),"number"==typeof n&&n>=0?o=o+this.stride[2]*n|0:(i.push(this.shape[2]),a.push(this.stride[2])),(0,e[i.length+1])(this.data,i,a,o)},function(t,e,r,i){return new n(t,e[0],e[1],e[2],r[0],r[1],r[2],i)}},4:function(t,e,r){function n(t,e,r,n,i,a,o,s,l,c){this.data=t,this.shape=[e,r,n,i],this.stride=[a,o,s,l],this.offset=0|c}var i=n.prototype;return i.dtype=t,i.dimension=4,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]*this.shape[3]}}),Object.defineProperty(i,"order",{get:r}),i.set=function(e,r,n,i,a){return"generic"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i,a):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i]=a},i.get=function(e,r,n,i){return"generic"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i]},i.index=function(t,e,r,n){return this.offset+this.stride[0]*t+this.stride[1]*e+this.stride[2]*r+this.stride[3]*n},i.hi=function(t,e,r,i){return new n(this.data,"number"!=typeof t||t<0?this.shape[0]:0|t,"number"!=typeof e||e<0?this.shape[1]:0|e,"number"!=typeof r||r<0?this.shape[2]:0|r,"number"!=typeof i||i<0?this.shape[3]:0|i,this.stride[0],this.stride[1],this.stride[2],this.stride[3],this.offset)},i.lo=function(t,e,r,i){var a=this.offset,o=0,s=this.shape[0],l=this.shape[1],c=this.shape[2],u=this.shape[3],f=this.stride[0],h=this.stride[1],p=this.stride[2],d=this.stride[3];return"number"==typeof t&&t>=0&&(a+=f*(o=0|t),s-=o),"number"==typeof e&&e>=0&&(a+=h*(o=0|e),l-=o),"number"==typeof r&&r>=0&&(a+=p*(o=0|r),c-=o),"number"==typeof i&&i>=0&&(a+=d*(o=0|i),u-=o),new n(this.data,s,l,c,u,f,h,p,d,a)},i.step=function(t,e,r,i){var a=this.shape[0],o=this.shape[1],s=this.shape[2],l=this.shape[3],c=this.stride[0],u=this.stride[1],f=this.stride[2],h=this.stride[3],p=this.offset,d=0,m=Math.ceil;return"number"==typeof t&&((d=0|t)<0?(p+=c*(a-1),a=m(-a/d)):a=m(a/d),c*=d),"number"==typeof e&&((d=0|e)<0?(p+=u*(o-1),o=m(-o/d)):o=m(o/d),u*=d),"number"==typeof r&&((d=0|r)<0?(p+=f*(s-1),s=m(-s/d)):s=m(s/d),f*=d),"number"==typeof i&&((d=0|i)<0?(p+=h*(l-1),l=m(-l/d)):l=m(l/d),h*=d),new n(this.data,a,o,s,l,c,u,f,h,p)},i.transpose=function(t,e,r,i){t=void 0===t?0:0|t,e=void 0===e?1:0|e,r=void 0===r?2:0|r,i=void 0===i?3:0|i;var a=this.shape,o=this.stride;return new n(this.data,a[t],a[e],a[r],a[i],o[t],o[e],o[r],o[i],this.offset)},i.pick=function(t,r,n,i){var a=[],o=[],s=this.offset;return"number"==typeof t&&t>=0?s=s+this.stride[0]*t|0:(a.push(this.shape[0]),o.push(this.stride[0])),"number"==typeof r&&r>=0?s=s+this.stride[1]*r|0:(a.push(this.shape[1]),o.push(this.stride[1])),"number"==typeof n&&n>=0?s=s+this.stride[2]*n|0:(a.push(this.shape[2]),o.push(this.stride[2])),"number"==typeof i&&i>=0?s=s+this.stride[3]*i|0:(a.push(this.shape[3]),o.push(this.stride[3])),(0,e[a.length+1])(this.data,a,o,s)},function(t,e,r,i){return new n(t,e[0],e[1],e[2],e[3],r[0],r[1],r[2],r[3],i)}},5:function(t,e,r){function n(t,e,r,n,i,a,o,s,l,c,u,f){this.data=t,this.shape=[e,r,n,i,a],this.stride=[o,s,l,c,u],this.offset=0|f}var i=n.prototype;return i.dtype=t,i.dimension=5,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]*this.shape[3]*this.shape[4]}}),Object.defineProperty(i,"order",{get:r}),i.set=function(e,r,n,i,a,o){return"generic"===t?this.data.set(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a,o):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a]=o},i.get=function(e,r,n,i,a){return"generic"===t?this.data.get(this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a):this.data[this.offset+this.stride[0]*e+this.stride[1]*r+this.stride[2]*n+this.stride[3]*i+this.stride[4]*a]},i.index=function(t,e,r,n,i){return this.offset+this.stride[0]*t+this.stride[1]*e+this.stride[2]*r+this.stride[3]*n+this.stride[4]*i},i.hi=function(t,e,r,i,a){return new n(this.data,"number"!=typeof t||t<0?this.shape[0]:0|t,"number"!=typeof e||e<0?this.shape[1]:0|e,"number"!=typeof r||r<0?this.shape[2]:0|r,"number"!=typeof i||i<0?this.shape[3]:0|i,"number"!=typeof a||a<0?this.shape[4]:0|a,this.stride[0],this.stride[1],this.stride[2],this.stride[3],this.stride[4],this.offset)},i.lo=function(t,e,r,i,a){var o=this.offset,s=0,l=this.shape[0],c=this.shape[1],u=this.shape[2],f=this.shape[3],h=this.shape[4],p=this.stride[0],d=this.stride[1],m=this.stride[2],g=this.stride[3],v=this.stride[4];return"number"==typeof t&&t>=0&&(o+=p*(s=0|t),l-=s),"number"==typeof e&&e>=0&&(o+=d*(s=0|e),c-=s),"number"==typeof r&&r>=0&&(o+=m*(s=0|r),u-=s),"number"==typeof i&&i>=0&&(o+=g*(s=0|i),f-=s),"number"==typeof a&&a>=0&&(o+=v*(s=0|a),h-=s),new n(this.data,l,c,u,f,h,p,d,m,g,v,o)},i.step=function(t,e,r,i,a){var o=this.shape[0],s=this.shape[1],l=this.shape[2],c=this.shape[3],u=this.shape[4],f=this.stride[0],h=this.stride[1],p=this.stride[2],d=this.stride[3],m=this.stride[4],g=this.offset,v=0,y=Math.ceil;return"number"==typeof t&&((v=0|t)<0?(g+=f*(o-1),o=y(-o/v)):o=y(o/v),f*=v),"number"==typeof e&&((v=0|e)<0?(g+=h*(s-1),s=y(-s/v)):s=y(s/v),h*=v),"number"==typeof r&&((v=0|r)<0?(g+=p*(l-1),l=y(-l/v)):l=y(l/v),p*=v),"number"==typeof i&&((v=0|i)<0?(g+=d*(c-1),c=y(-c/v)):c=y(c/v),d*=v),"number"==typeof a&&((v=0|a)<0?(g+=m*(u-1),u=y(-u/v)):u=y(u/v),m*=v),new n(this.data,o,s,l,c,u,f,h,p,d,m,g)},i.transpose=function(t,e,r,i,a){t=void 0===t?0:0|t,e=void 0===e?1:0|e,r=void 0===r?2:0|r,i=void 0===i?3:0|i,a=void 0===a?4:0|a;var o=this.shape,s=this.stride;return new n(this.data,o[t],o[e],o[r],o[i],o[a],s[t],s[e],s[r],s[i],s[a],this.offset)},i.pick=function(t,r,n,i,a){var o=[],s=[],l=this.offset;return"number"==typeof t&&t>=0?l=l+this.stride[0]*t|0:(o.push(this.shape[0]),s.push(this.stride[0])),"number"==typeof r&&r>=0?l=l+this.stride[1]*r|0:(o.push(this.shape[1]),s.push(this.stride[1])),"number"==typeof n&&n>=0?l=l+this.stride[2]*n|0:(o.push(this.shape[2]),s.push(this.stride[2])),"number"==typeof i&&i>=0?l=l+this.stride[3]*i|0:(o.push(this.shape[3]),s.push(this.stride[3])),"number"==typeof a&&a>=0?l=l+this.stride[4]*a|0:(o.push(this.shape[4]),s.push(this.stride[4])),(0,e[o.length+1])(this.data,o,s,l)},function(t,e,r,i){return new n(t,e[0],e[1],e[2],e[3],e[4],r[0],r[1],r[2],r[3],r[4],i)}}};function l(t,e){var r=-1===e?"T":String(e),n=s[r];return-1===e?n(t):0===e?n(t,c[t][0]):n(t,c[t],o)}var c={generic:[],buffer:[],array:[],float32:[],float64:[],int8:[],int16:[],int32:[],uint8_clamped:[],uint8:[],uint16:[],uint32:[],bigint64:[],biguint64:[]};e.exports=function(t,e,r,a){if(void 0===t)return(0,c.array[0])([]);"number"==typeof t&&(t=[t]),void 0===e&&(e=[t.length]);var o=e.length;if(void 0===r){r=new Array(o);for(var s=o-1,u=1;s>=0;--s)r[s]=u,u*=e[s]}if(void 0===a){a=0;for(s=0;st==t>0?a===-1>>>0?(r+=1,a=0):a+=1:0===a?(a=-1>>>0,r-=1):a-=1;return n.pack(a,r)}},{"double-bits":174}],464:[function(t,e,r){var n=Math.PI,i=c(120);function a(t,e,r,n){return["C",t,e,r,n,r,n]}function o(t,e,r,n,i,a){return["C",t/3+2/3*r,e/3+2/3*n,i/3+2/3*r,a/3+2/3*n,i,a]}function s(t,e,r,a,o,c,u,f,h,p){if(p)T=p[0],k=p[1],_=p[2],w=p[3];else{var d=l(t,e,-o);t=d.x,e=d.y;var m=(t-(f=(d=l(f,h,-o)).x))/2,g=(e-(h=d.y))/2,v=m*m/(r*r)+g*g/(a*a);v>1&&(r*=v=Math.sqrt(v),a*=v);var y=r*r,x=a*a,b=(c==u?-1:1)*Math.sqrt(Math.abs((y*x-y*g*g-x*m*m)/(y*g*g+x*m*m)));b==1/0&&(b=1);var _=b*r*g/a+(t+f)/2,w=b*-a*m/r+(e+h)/2,T=Math.asin(((e-w)/a).toFixed(9)),k=Math.asin(((h-w)/a).toFixed(9));(T=t<_?n-T:T)<0&&(T=2*n+T),(k=f<_?n-k:k)<0&&(k=2*n+k),u&&T>k&&(T-=2*n),!u&&k>T&&(k-=2*n)}if(Math.abs(k-T)>i){var A=k,M=f,S=h;k=T+i*(u&&k>T?1:-1);var E=s(f=_+r*Math.cos(k),h=w+a*Math.sin(k),r,a,o,0,u,M,S,[k,A,_,w])}var L=Math.tan((k-T)/4),C=4/3*r*L,P=4/3*a*L,I=[2*t-(t+C*Math.sin(T)),2*e-(e-P*Math.cos(T)),f+C*Math.sin(k),h-P*Math.cos(k),f,h];if(p)return I;E&&(I=I.concat(E));for(var O=0;O7&&(r.push(v.splice(0,7)),v.unshift("C"));break;case"S":var x=p,b=d;"C"!=e&&"S"!=e||(x+=x-n,b+=b-i),v=["C",x,b,v[1],v[2],v[3],v[4]];break;case"T":"Q"==e||"T"==e?(f=2*p-f,h=2*d-h):(f=p,h=d),v=o(p,d,f,h,v[1],v[2]);break;case"Q":f=v[1],h=v[2],v=o(p,d,v[1],v[2],v[3],v[4]);break;case"L":v=a(p,d,v[1],v[2]);break;case"H":v=a(p,d,v[1],d);break;case"V":v=a(p,d,p,v[1]);break;case"Z":v=a(p,d,l,u)}e=y,p=v[v.length-2],d=v[v.length-1],v.length>4?(n=v[v.length-4],i=v[v.length-3]):(n=p,i=d),r.push(v)}return r}},{}],465:[function(t,e,r){r.vertexNormals=function(t,e,r){for(var n=e.length,i=new Array(n),a=void 0===r?1e-6:r,o=0;oa){var b=i[c],_=1/Math.sqrt(g*y);for(x=0;x<3;++x){var w=(x+1)%3,T=(x+2)%3;b[x]+=_*(v[w]*m[T]-v[T]*m[w])}}}for(o=0;oa)for(_=1/Math.sqrt(k),x=0;x<3;++x)b[x]*=_;else for(x=0;x<3;++x)b[x]=0}return i},r.faceNormals=function(t,e,r){for(var n=t.length,i=new Array(n),a=void 0===r?1e-6:r,o=0;oa?1/Math.sqrt(p):0;for(c=0;c<3;++c)h[c]*=p;i[o]=h}return i}},{}],466:[function(t,e,r){ +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ +"use strict";var n=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function o(t){if(null==t)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(t)}e.exports=function(){try{if(!Object.assign)return!1;var t=new String("abc");if(t[5]="de","5"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(e).map((function(t){return e[t]})).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach((function(t){n[t]=t})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,s,l=o(t),c=1;c0){var f=Math.sqrt(u+1);t[0]=.5*(o-l)/f,t[1]=.5*(s-n)/f,t[2]=.5*(r-a)/f,t[3]=.5*f}else{var h=Math.max(e,a,c);f=Math.sqrt(2*h-u+1);e>=h?(t[0]=.5*f,t[1]=.5*(i+r)/f,t[2]=.5*(s+n)/f,t[3]=.5*(o-l)/f):a>=h?(t[0]=.5*(r+i)/f,t[1]=.5*f,t[2]=.5*(l+o)/f,t[3]=.5*(s-n)/f):(t[0]=.5*(n+s)/f,t[1]=.5*(o+l)/f,t[2]=.5*f,t[3]=.5*(r-i)/f)}return t}},{}],468:[function(t,e,r){"use strict";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.rotation||[0,0,0,1],n=t.radius||1;e=[].slice.call(e,0,3),u(r=[].slice.call(r,0,4),r);var i=new f(r,e,Math.log(n));i.setDistanceLimits(t.zoomMin,t.zoomMax),("eye"in t||"up"in t)&&i.lookAt(0,t.eye,t.center,t.up);return i};var n=t("filtered-vector"),i=t("gl-mat4/lookAt"),a=t("gl-mat4/fromQuat"),o=t("gl-mat4/invert"),s=t("./lib/quatFromFrame");function l(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function c(t,e,r,n){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2)+Math.pow(n,2))}function u(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=c(r,n,i,a);o>1e-6?(t[0]=r/o,t[1]=n/o,t[2]=i/o,t[3]=a/o):(t[0]=t[1]=t[2]=0,t[3]=1)}function f(t,e,r){this.radius=n([r]),this.center=n(e),this.rotation=n(t),this.computedRadius=this.radius.curve(0),this.computedCenter=this.center.curve(0),this.computedRotation=this.rotation.curve(0),this.computedUp=[.1,0,0],this.computedEye=[.1,0,0],this.computedMatrix=[.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.recalcMatrix(0)}var h=f.prototype;h.lastT=function(){return Math.max(this.radius.lastT(),this.center.lastT(),this.rotation.lastT())},h.recalcMatrix=function(t){this.radius.curve(t),this.center.curve(t),this.rotation.curve(t);var e=this.computedRotation;u(e,e);var r=this.computedMatrix;a(r,e);var n=this.computedCenter,i=this.computedEye,o=this.computedUp,s=Math.exp(this.computedRadius[0]);i[0]=n[0]+s*r[2],i[1]=n[1]+s*r[6],i[2]=n[2]+s*r[10],o[0]=r[1],o[1]=r[5],o[2]=r[9];for(var l=0;l<3;++l){for(var c=0,f=0;f<3;++f)c+=r[l+4*f]*i[f];r[12+l]=-c}},h.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r},h.idle=function(t){this.center.idle(t),this.radius.idle(t),this.rotation.idle(t)},h.flush=function(t){this.center.flush(t),this.radius.flush(t),this.rotation.flush(t)},h.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var i=this.computedMatrix,a=i[1],o=i[5],s=i[9],c=l(a,o,s);a/=c,o/=c,s/=c;var u=i[0],f=i[4],h=i[8],p=u*a+f*o+h*s,d=l(u-=a*p,f-=o*p,h-=s*p);u/=d,f/=d,h/=d;var m=i[2],g=i[6],v=i[10],y=m*a+g*o+v*s,x=m*u+g*f+v*h,b=l(m-=y*a+x*u,g-=y*o+x*f,v-=y*s+x*h);m/=b,g/=b,v/=b;var _=u*e+a*r,w=f*e+o*r,T=h*e+s*r;this.center.move(t,_,w,T);var k=Math.exp(this.computedRadius[0]);k=Math.max(1e-4,k+n),this.radius.set(t,Math.log(k))},h.rotate=function(t,e,r,n){this.recalcMatrix(t),e=e||0,r=r||0;var i=this.computedMatrix,a=i[0],o=i[4],s=i[8],u=i[1],f=i[5],h=i[9],p=i[2],d=i[6],m=i[10],g=e*a+r*u,v=e*o+r*f,y=e*s+r*h,x=-(d*y-m*v),b=-(m*g-p*y),_=-(p*v-d*g),w=Math.sqrt(Math.max(0,1-Math.pow(x,2)-Math.pow(b,2)-Math.pow(_,2))),T=c(x,b,_,w);T>1e-6?(x/=T,b/=T,_/=T,w/=T):(x=b=_=0,w=1);var k=this.computedRotation,A=k[0],M=k[1],S=k[2],E=k[3],L=A*w+E*x+M*_-S*b,C=M*w+E*b+S*x-A*_,P=S*w+E*_+A*b-M*x,I=E*w-A*x-M*b-S*_;if(n){x=p,b=d,_=m;var O=Math.sin(n)/l(x,b,_);x*=O,b*=O,_*=O,I=I*(w=Math.cos(e))-(L=L*w+I*x+C*_-P*b)*x-(C=C*w+I*b+P*x-L*_)*b-(P=P*w+I*_+L*b-C*x)*_}var z=c(L,C,P,I);z>1e-6?(L/=z,C/=z,P/=z,I/=z):(L=C=P=0,I=1),this.rotation.set(t,L,C,P,I)},h.lookAt=function(t,e,r,n){this.recalcMatrix(t),r=r||this.computedCenter,e=e||this.computedEye,n=n||this.computedUp;var a=this.computedMatrix;i(a,e,r,n);var o=this.computedRotation;s(o,a[0],a[1],a[2],a[4],a[5],a[6],a[8],a[9],a[10]),u(o,o),this.rotation.set(t,o[0],o[1],o[2],o[3]);for(var l=0,c=0;c<3;++c)l+=Math.pow(r[c]-e[c],2);this.radius.set(t,.5*Math.log(Math.max(l,1e-6))),this.center.set(t,r[0],r[1],r[2])},h.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},h.setMatrix=function(t,e){var r=this.computedRotation;s(r,e[0],e[1],e[2],e[4],e[5],e[6],e[8],e[9],e[10]),u(r,r),this.rotation.set(t,r[0],r[1],r[2],r[3]);var n=this.computedMatrix;o(n,e);var i=n[15];if(Math.abs(i)>1e-6){var a=n[12]/i,l=n[13]/i,c=n[14]/i;this.recalcMatrix(t);var f=Math.exp(this.computedRadius[0]);this.center.set(t,a-n[2]*f,l-n[6]*f,c-n[10]*f),this.radius.idle(t)}else this.center.idle(t),this.radius.idle(t)},h.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},h.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},h.getDistanceLimits=function(t){var e=this.radius.bounds;return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},h.toJSON=function(){return this.recalcMatrix(this.lastT()),{center:this.computedCenter.slice(),rotation:this.computedRotation.slice(),distance:Math.log(this.computedRadius[0]),zoomMin:this.radius.bounds[0][0],zoomMax:this.radius.bounds[1][0]}},h.fromJSON=function(t){var e=this.lastT(),r=t.center;r&&this.center.set(e,r[0],r[1],r[2]);var n=t.rotation;n&&this.rotation.set(e,n[0],n[1],n[2],n[3]);var i=t.distance;i&&i>0&&this.radius.set(e,Math.log(i)),this.setDistanceLimits(t.zoomMin,t.zoomMax)}},{"./lib/quatFromFrame":467,"filtered-vector":243,"gl-mat4/fromQuat":276,"gl-mat4/invert":287,"gl-mat4/lookAt":288}],469:[function(t,e,r){ +/*! + * pad-left + * + * Copyright (c) 2014-2015, Jon Schlinkert. + * Licensed under the MIT license. + */ +"use strict";var n=t("repeat-string");e.exports=function(t,e,r){return n(r=void 0!==r?r+"":" ",e)+t}},{"repeat-string":517}],470:[function(t,e,r){"use strict";function n(t,e){if("string"!=typeof t)return[t];var r=[t];"string"==typeof e||Array.isArray(e)?e={brackets:e}:e||(e={});var n=e.brackets?Array.isArray(e.brackets)?e.brackets:[e.brackets]:["{}","[]","()"],i=e.escape||"___",a=!!e.flat;n.forEach((function(t){var e=new RegExp(["\\",t[0],"[^\\",t[0],"\\",t[1],"]*\\",t[1]].join("")),n=[];function a(e,a,o){var s=r.push(e.slice(t[0].length,-t[1].length))-1;return n.push(s),i+s+i}r.forEach((function(t,n){for(var i,o=0;t!=i;)if(i=t,t=t.replace(e,a),o++>1e4)throw Error("References have circular dependency. Please, check them.");r[n]=t})),n=n.reverse(),r=r.map((function(e){return n.forEach((function(r){e=e.replace(new RegExp("(\\"+i+r+"\\"+i+")","g"),t[0]+"$1"+t[1])})),e}))}));var o=new RegExp("\\"+i+"([0-9]+)\\"+i);return a?r:function t(e,r,n){for(var i,a=[],s=0;i=o.exec(e);){if(s++>1e4)throw Error("Circular references in parenthesis");a.push(e.slice(0,i.index)),a.push(t(r[i[1]],r)),e=e.slice(i.index+i[0].length)}return a.push(e),a}(r[0],r)}function i(t,e){if(e&&e.flat){var r,n=e&&e.escape||"___",i=t[0];if(!i)return"";for(var a=new RegExp("\\"+n+"([0-9]+)\\"+n),o=0;i!=r;){if(o++>1e4)throw Error("Circular references in "+t);r=i,i=i.replace(a,s)}return i}return t.reduce((function t(e,r){return Array.isArray(r)&&(r=r.reduce(t,"")),e+r}),"");function s(e,r){if(null==t[r])throw Error("Reference "+r+"is undefined");return t[r]}}function a(t,e){return Array.isArray(t)?i(t,e):n(t,e)}a.parse=n,a.stringify=i,e.exports=a},{}],471:[function(t,e,r){"use strict";var n=t("pick-by-alias");e.exports=function(t){var e;arguments.length>1&&(t=arguments);"string"==typeof t?t=t.split(/\s/).map(parseFloat):"number"==typeof t&&(t=[t]);t.length&&"number"==typeof t[0]?e=1===t.length?{width:t[0],height:t[0],x:0,y:0}:2===t.length?{width:t[0],height:t[1],x:0,y:0}:{x:t[0],y:t[1],width:t[2]-t[0]||0,height:t[3]-t[1]||0}:t&&(t=n(t,{left:"x l left Left",top:"y t top Top",width:"w width W Width",height:"h height W Width",bottom:"b bottom Bottom",right:"r right Right"}),e={x:t.left||0,y:t.top||0},null==t.width?t.right?e.width=t.right-e.x:e.width=0:e.width=t.width,null==t.height?t.bottom?e.height=t.bottom-e.y:e.height=0:e.height=t.height);return e}},{"pick-by-alias":475}],472:[function(t,e,r){e.exports=function(t){var e=[];return t.replace(i,(function(t,r,i){var o=r.toLowerCase();for(i=function(t){var e=t.match(a);return e?e.map(Number):[]}(i),"m"==o&&i.length>2&&(e.push([r].concat(i.splice(0,2))),o="l",r="m"==r?"l":"L");;){if(i.length==n[o])return i.unshift(r),e.push(i);if(i.length0){o=a[u][r][0],l=u;break}s=o[1^l];for(var f=0;f<2;++f)for(var h=a[f][r],p=0;p0&&(o=d,s=m,l=f)}return i||o&&c(o,l),s}function f(t,r){var i=a[r][t][0],o=[t];c(i,r);for(var s=i[1^r];;){for(;s!==t;)o.push(s),s=u(o[o.length-2],s,!1);if(a[0][t].length+a[1][t].length===0)break;var l=o[o.length-1],f=t,h=o[1],p=u(l,f,!0);if(n(e[l],e[f],e[h],e[p])<0)break;o.push(t),s=u(l,f)}return o}function h(t,e){return e[1]===e[e.length-1]}for(o=0;o0;){a[0][o].length;var m=f(o,p);h(0,m)?d.push.apply(d,m):(d.length>0&&l.push(d),d=m)}d.length>0&&l.push(d)}return l};var n=t("compare-angle")},{"compare-angle":133}],477:[function(t,e,r){"use strict";e.exports=function(t,e){for(var r=n(t,e.length),i=new Array(e.length),a=new Array(e.length),o=[],s=0;s0;){var c=o.pop();i[c]=!1;var u=r[c];for(s=0;s0}))).length,g=new Array(m),v=new Array(m);for(p=0;p0;){var B=R.pop(),N=E[B];l(N,(function(t,e){return t-e}));var j,U=N.length,V=F[B];if(0===V){var H=d[B];j=[H]}for(p=0;p=0))if(F[q]=1^V,R.push(q),0===V)D(H=d[q])||(H.reverse(),j.push(H))}0===V&&r.push(j)}return r};var n=t("edges-to-adjacency-list"),i=t("planar-dual"),a=t("point-in-big-polygon"),o=t("two-product"),s=t("robust-sum"),l=t("uniq"),c=t("./lib/trim-leaves");function u(t,e){for(var r=new Array(t),n=0;n0&&e[i]===r[0]))return 1;a=t[i-1]}for(var s=1;a;){var l=a.key,c=n(r,l[0],l[1]);if(l[0][0]0))return 0;s=-1,a=a.right}else if(c>0)a=a.left;else{if(!(c<0))return 0;s=1,a=a.right}}return s}}(v.slabs,v.coordinates);return 0===a.length?y:function(t,e){return function(r){return t(r[0],r[1])?0:e(r)}}(l(a),y)};var n=t("robust-orientation")[3],i=t("slab-decomposition"),a=t("interval-tree-1d"),o=t("binary-search-bounds");function s(){return!0}function l(t){for(var e={},r=0;r=-t},pointBetween:function(e,r,n){var i=e[1]-r[1],a=n[0]-r[0],o=e[0]-r[0],s=n[1]-r[1],l=o*a+i*s;return!(l-t)},pointsSameX:function(e,r){return Math.abs(e[0]-r[0])t!=o-i>t&&(a-c)*(i-u)/(o-u)+c-n>t&&(s=!s),a=c,o=u}return s}};return e}},{}],483:[function(t,e,r){var n={toPolygon:function(t,e){function r(e){if(e.length<=0)return t.segments({inverted:!1,regions:[]});function r(e){var r=e.slice(0,e.length-1);return t.segments({inverted:!1,regions:[r]})}for(var n=r(e[0]),i=1;i0}))}function u(t,n){var i=t.seg,a=n.seg,o=i.start,s=i.end,c=a.start,u=a.end;r&&r.checkIntersection(i,a);var f=e.linesIntersect(o,s,c,u);if(!1===f){if(!e.pointsCollinear(o,s,c))return!1;if(e.pointsSame(o,u)||e.pointsSame(s,c))return!1;var h=e.pointsSame(o,c),p=e.pointsSame(s,u);if(h&&p)return n;var d=!h&&e.pointBetween(o,c,u),m=!p&&e.pointBetween(s,c,u);if(h)return m?l(n,s):l(t,u),n;d&&(p||(m?l(n,s):l(t,u)),l(n,o))}else 0===f.alongA&&(-1===f.alongB?l(t,c):0===f.alongB?l(t,f.pt):1===f.alongB&&l(t,u)),0===f.alongB&&(-1===f.alongA?l(n,o):0===f.alongA?l(n,f.pt):1===f.alongA&&l(n,s));return!1}for(var f=[];!a.isEmpty();){var h=a.getHead();if(r&&r.vert(h.pt[0]),h.isStart){r&&r.segmentNew(h.seg,h.primary);var p=c(h),d=p.before?p.before.ev:null,m=p.after?p.after.ev:null;function g(){if(d){var t=u(h,d);if(t)return t}return!!m&&u(h,m)}r&&r.tempStatus(h.seg,!!d&&d.seg,!!m&&m.seg);var v,y=g();if(y){var x;if(t)(x=null===h.seg.myFill.below||h.seg.myFill.above!==h.seg.myFill.below)&&(y.seg.myFill.above=!y.seg.myFill.above);else y.seg.otherFill=h.seg.myFill;r&&r.segmentUpdate(y.seg),h.other.remove(),h.remove()}if(a.getHead()!==h){r&&r.rewind(h.seg);continue}if(t)x=null===h.seg.myFill.below||h.seg.myFill.above!==h.seg.myFill.below,h.seg.myFill.below=m?m.seg.myFill.above:i,h.seg.myFill.above=x?!h.seg.myFill.below:h.seg.myFill.below;else if(null===h.seg.otherFill)v=m?h.primary===m.primary?m.seg.otherFill.above:m.seg.myFill.above:h.primary?o:i,h.seg.otherFill={above:v,below:v};r&&r.status(h.seg,!!d&&d.seg,!!m&&m.seg),h.other.status=p.insert(n.node({ev:h}))}else{var b=h.status;if(null===b)throw new Error("PolyBool: Zero-length segment detected; your epsilon is probably too small or too large");if(s.exists(b.prev)&&s.exists(b.next)&&u(b.prev.ev,b.next.ev),r&&r.statusRemove(b.ev.seg),b.remove(),!h.primary){var _=h.seg.myFill;h.seg.myFill=h.seg.otherFill,h.seg.otherFill=_}f.push(h.seg)}a.getHead().remove()}return r&&r.done(),f}return t?{addRegion:function(t){for(var n,i,a,o=t[t.length-1],l=0;l=c?(k=1,y=c+2*h+d):y=h*(k=-h/c)+d):(k=0,p>=0?(A=0,y=d):-p>=f?(A=1,y=f+2*p+d):y=p*(A=-p/f)+d);else if(A<0)A=0,h>=0?(k=0,y=d):-h>=c?(k=1,y=c+2*h+d):y=h*(k=-h/c)+d;else{var M=1/T;y=(k*=M)*(c*k+u*(A*=M)+2*h)+A*(u*k+f*A+2*p)+d}else k<0?(b=f+p)>(x=u+h)?(_=b-x)>=(w=c-2*u+f)?(k=1,A=0,y=c+2*h+d):y=(k=_/w)*(c*k+u*(A=1-k)+2*h)+A*(u*k+f*A+2*p)+d:(k=0,b<=0?(A=1,y=f+2*p+d):p>=0?(A=0,y=d):y=p*(A=-p/f)+d):A<0?(b=c+h)>(x=u+p)?(_=b-x)>=(w=c-2*u+f)?(A=1,k=0,y=f+2*p+d):y=(k=1-(A=_/w))*(c*k+u*A+2*h)+A*(u*k+f*A+2*p)+d:(A=0,b<=0?(k=1,y=c+2*h+d):h>=0?(k=0,y=d):y=h*(k=-h/c)+d):(_=f+p-u-h)<=0?(k=0,A=1,y=f+2*p+d):_>=(w=c-2*u+f)?(k=1,A=0,y=c+2*h+d):y=(k=_/w)*(c*k+u*(A=1-k)+2*h)+A*(u*k+f*A+2*p)+d;var S=1-k-A;for(l=0;l0&&!this.aborted;){var r=this.ifds_to_read.shift();r.offset&&this.scan_ifd(r.id,r.offset,t)}},a.prototype.read_uint16=function(t){var e=this.input;if(t+2>e.length)throw n("unexpected EOF","EBADDATA");return this.big_endian?256*e[t]+e[t+1]:e[t]+256*e[t+1]},a.prototype.read_uint32=function(t){var e=this.input;if(t+4>e.length)throw n("unexpected EOF","EBADDATA");return this.big_endian?16777216*e[t]+65536*e[t+1]+256*e[t+2]+e[t+3]:e[t]+256*e[t+1]+65536*e[t+2]+16777216*e[t+3]},a.prototype.is_subifd_link=function(t,e){return 0===t&&34665===e||0===t&&34853===e||34665===t&&40965===e},a.prototype.exif_format_length=function(t){switch(t){case 1:case 2:case 6:case 7:return 1;case 3:case 8:return 2;case 4:case 9:case 11:return 4;case 5:case 10:case 12:return 8;default:return 0}},a.prototype.exif_format_read=function(t,e){var r;switch(t){case 1:case 2:return r=this.input[e];case 6:return(r=this.input[e])|33554430*(128&r);case 3:return r=this.read_uint16(e);case 8:return(r=this.read_uint16(e))|131070*(32768&r);case 4:return r=this.read_uint32(e);case 9:return 0|(r=this.read_uint32(e));case 5:case 10:case 11:case 12:case 7:default:return null}},a.prototype.scan_ifd=function(t,e,r){var a=this.read_uint16(e);e+=2;for(var o=0;othis.input.length)throw n("unexpected EOF","EBADDATA");for(var d=[],m=h,g=0;g0&&(this.ifds_to_read.push({id:s,offset:d[0]}),p=!0),!1===r({is_big_endian:this.big_endian,ifd:t,tag:s,format:l,count:c,entry_offset:e+this.start,data_length:f,data_offset:h+this.start,value:d,is_subifd_link:p}))return void(this.aborted=!0);e+=12}0===t&&this.ifds_to_read.push({id:1,offset:this.read_uint32(e)})},e.exports.ExifParser=a,e.exports.get_orientation=function(t){var e=0;try{return new a(t,0,t.length).each((function(t){if(0===t.ifd&&274===t.tag&&Array.isArray(t.value))return e=t.value[0],!1})),e}catch(t){return-1}}},{}],491:[function(t,e,r){"use strict";var n=t("./common").readUInt16BE,i=t("./common").readUInt32BE;function a(t,e){if(t.length<4+e)return null;var r=i(t,e);return t.length>4&15,i=15&t[4],a=t[5]>>4&15,o=n(t,6),l=8,c=0;ce.width||t.width===e.width&&t.height>e.height?t:e})),i=r.reduce((function(t,e){return t.height>e.height||t.height===e.height&&t.width>e.width?t:e})),n.width>i.height||n.width===i.height&&n.height>i.width?n:i),s=1;e.transforms.forEach((function(t){var e={1:6,2:5,3:8,4:7,5:4,6:3,7:2,8:1},r={1:4,2:3,3:2,4:1,5:6,6:5,7:8,8:7};if("imir"===t.type&&(s=0===t.value?r[s]:e[s=e[s=r[s]]]),"irot"===t.type)for(var n=0;n1&&(h.variants=f.variants),f.orientation&&(h.orientation=f.orientation),f.exif_location&&f.exif_location.offset+f.exif_location.length<=t.length){var p=a(t,f.exif_location.offset),d=t.slice(f.exif_location.offset+p+4,f.exif_location.offset+f.exif_location.length),m=s.get_orientation(d);m>0&&(h.orientation=m)}return h}}}}}}},{"../common":489,"../exif_utils":490,"../miaf_utils":491}],493:[function(t,e,r){"use strict";var n=t("../common").str2arr,i=t("../common").sliceEq,a=t("../common").readUInt16LE,o=n("BM");e.exports=function(t){if(!(t.length<26)&&i(t,0,o))return{width:a(t,18),height:a(t,22),type:"bmp",mime:"image/bmp",wUnits:"px",hUnits:"px"}}},{"../common":489}],494:[function(t,e,r){"use strict";var n=t("../common").str2arr,i=t("../common").sliceEq,a=t("../common").readUInt16LE,o=n("GIF87a"),s=n("GIF89a");e.exports=function(t){if(!(t.length<10)&&(i(t,0,o)||i(t,0,s)))return{width:a(t,6),height:a(t,8),type:"gif",mime:"image/gif",wUnits:"px",hUnits:"px"}}},{"../common":489}],495:[function(t,e,r){"use strict";var n=t("../common").readUInt16LE;e.exports=function(t){var e=n(t,0),r=n(t,2),i=n(t,4);if(0===e&&1===r&&i){for(var a=[],o={width:0,height:0},s=0;so.width||c>o.height)&&(o=u)}return{width:o.width,height:o.height,variants:a,type:"ico",mime:"image/x-icon",wUnits:"px",hUnits:"px"}}}},{"../common":489}],496:[function(t,e,r){"use strict";var n=t("../common").readUInt16BE,i=t("../common").str2arr,a=t("../common").sliceEq,o=t("../exif_utils"),s=i("Exif\0\0");e.exports=function(t){if(!(t.length<2)&&255===t[0]&&216===t[1])for(var e=2;;){if(t.length-e<2)return;if(255!==t[e++])return;for(var r,i,l=t[e++];255===l;)l=t[e++];if(208<=l&&l<=217||1===l)r=0;else{if(!(192<=l&&l<=254))return;if(t.length-e<2)return;r=n(t,e)-2,e+=2}if(217===l||218===l)return;if(225===l&&r>=10&&a(t,e,s)&&(i=o.get_orientation(t.slice(e+6,e+r))),r>=5&&192<=l&&l<=207&&196!==l&&200!==l&&204!==l){if(t.length-e0&&(c.orientation=i),c}e+=r}}},{"../common":489,"../exif_utils":490}],497:[function(t,e,r){"use strict";var n=t("../common").str2arr,i=t("../common").sliceEq,a=t("../common").readUInt32BE,o=n("\x89PNG\r\n\x1a\n"),s=n("IHDR");e.exports=function(t){if(!(t.length<24)&&i(t,0,o)&&i(t,12,s))return{width:a(t,16),height:a(t,20),type:"png",mime:"image/png",wUnits:"px",hUnits:"px"}}},{"../common":489}],498:[function(t,e,r){"use strict";var n=t("../common").str2arr,i=t("../common").sliceEq,a=t("../common").readUInt32BE,o=n("8BPS\0\x01");e.exports=function(t){if(!(t.length<22)&&i(t,0,o))return{width:a(t,18),height:a(t,14),type:"psd",mime:"image/vnd.adobe.photoshop",wUnits:"px",hUnits:"px"}}},{"../common":489}],499:[function(t,e,r){"use strict";function n(t){return"number"==typeof t&&isFinite(t)&&t>0}var i=/<[-_.:a-zA-Z0-9][^>]*>/,a=/^<([-_.:a-zA-Z0-9]+:)?svg\s/,o=/[^-]\bwidth="([^%]+?)"|[^-]\bwidth='([^%]+?)'/,s=/\bheight="([^%]+?)"|\bheight='([^%]+?)'/,l=/\bview[bB]ox="(.+?)"|\bview[bB]ox='(.+?)'/,c=/in$|mm$|cm$|pt$|pc$|px$|em$|ex$/;function u(t){return c.test(t)?t.match(c)[0]:"px"}e.exports=function(t){if(function(t){var e,r=0,n=t.length;for(239===t[0]&&187===t[1]&&191===t[2]&&(r=3);r>14&16383),type:"webp",mime:"image/webp",wUnits:"px",hUnits:"px"}}}function h(t,e){return{width:1+(t[e+6]<<16|t[e+5]<<8|t[e+4]),height:1+(t[e+9]<t.length)){for(;e+8=10?r=r||u(t,e+8):"VP8L"===p&&d>=9?r=r||f(t,e+8):"VP8X"===p&&d>=10?r=r||h(t,e+8):"EXIF"===p&&(n=s.get_orientation(t.slice(e+8,e+8+d)),e=1/0),e+=8+d}else e++;if(r)return n>0&&(r.orientation=n),r}}}},{"../common":489,"../exif_utils":490}],502:[function(t,e,r){"use strict";e.exports={avif:t("./parse_sync/avif"),bmp:t("./parse_sync/bmp"),gif:t("./parse_sync/gif"),ico:t("./parse_sync/ico"),jpeg:t("./parse_sync/jpeg"),png:t("./parse_sync/png"),psd:t("./parse_sync/psd"),svg:t("./parse_sync/svg"),tiff:t("./parse_sync/tiff"),webp:t("./parse_sync/webp")}},{"./parse_sync/avif":492,"./parse_sync/bmp":493,"./parse_sync/gif":494,"./parse_sync/ico":495,"./parse_sync/jpeg":496,"./parse_sync/png":497,"./parse_sync/psd":498,"./parse_sync/svg":499,"./parse_sync/tiff":500,"./parse_sync/webp":501}],503:[function(t,e,r){"use strict";var n=t("./lib/parsers_sync");e.exports=function(t){return function(t){for(var e=Object.keys(n),r=0;r1)for(var r=1;r0){var c=t[r-1];if(0===n(s,c)&&a(c)!==l){r-=1;continue}}t[r++]=s}}return t.length=r,t}},{"cell-orientation":118,"compare-cell":135,"compare-oriented-cell":136}],512:[function(t,e,r){"use strict";var n=t("array-bounds"),i=t("color-normalize"),a=t("update-diff"),o=t("pick-by-alias"),s=t("object-assign"),l=t("flatten-vertex-data"),c=t("to-float32"),u=c.float32,f=c.fract32;e.exports=function(t,e){"function"==typeof t?(e||(e={}),e.regl=t):e=t;e.length&&(e.positions=e);if(!(t=e.regl).hasExtension("ANGLE_instanced_arrays"))throw Error("regl-error2d: `ANGLE_instanced_arrays` extension should be enabled");var r,c,p,d,m,g,v=t._gl,y={color:"black",capSize:5,lineWidth:1,opacity:1,viewport:null,range:null,offset:0,count:0,bounds:null,positions:[],errors:[]},x=[];return d=t.buffer({usage:"dynamic",type:"uint8",data:new Uint8Array(0)}),c=t.buffer({usage:"dynamic",type:"float",data:new Uint8Array(0)}),p=t.buffer({usage:"dynamic",type:"float",data:new Uint8Array(0)}),m=t.buffer({usage:"dynamic",type:"float",data:new Uint8Array(0)}),g=t.buffer({usage:"static",type:"float",data:h}),T(e),r=t({vert:"\n\t\tprecision highp float;\n\n\t\tattribute vec2 position, positionFract;\n\t\tattribute vec4 error;\n\t\tattribute vec4 color;\n\n\t\tattribute vec2 direction, lineOffset, capOffset;\n\n\t\tuniform vec4 viewport;\n\t\tuniform float lineWidth, capSize;\n\t\tuniform vec2 scale, scaleFract, translate, translateFract;\n\n\t\tvarying vec4 fragColor;\n\n\t\tvoid main() {\n\t\t\tfragColor = color / 255.;\n\n\t\t\tvec2 pixelOffset = lineWidth * lineOffset + (capSize + lineWidth) * capOffset;\n\n\t\t\tvec2 dxy = -step(.5, direction.xy) * error.xz + step(direction.xy, vec2(-.5)) * error.yw;\n\n\t\t\tvec2 position = position + dxy;\n\n\t\t\tvec2 pos = (position + translate) * scale\n\t\t\t\t+ (positionFract + translateFract) * scale\n\t\t\t\t+ (position + translate) * scaleFract\n\t\t\t\t+ (positionFract + translateFract) * scaleFract;\n\n\t\t\tpos += pixelOffset / viewport.zw;\n\n\t\t\tgl_Position = vec4(pos * 2. - 1., 0, 1);\n\t\t}\n\t\t",frag:"\n\t\tprecision highp float;\n\n\t\tvarying vec4 fragColor;\n\n\t\tuniform float opacity;\n\n\t\tvoid main() {\n\t\t\tgl_FragColor = fragColor;\n\t\t\tgl_FragColor.a *= opacity;\n\t\t}\n\t\t",uniforms:{range:t.prop("range"),lineWidth:t.prop("lineWidth"),capSize:t.prop("capSize"),opacity:t.prop("opacity"),scale:t.prop("scale"),translate:t.prop("translate"),scaleFract:t.prop("scaleFract"),translateFract:t.prop("translateFract"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{color:{buffer:d,offset:function(t,e){return 4*e.offset},divisor:1},position:{buffer:c,offset:function(t,e){return 8*e.offset},divisor:1},positionFract:{buffer:p,offset:function(t,e){return 8*e.offset},divisor:1},error:{buffer:m,offset:function(t,e){return 16*e.offset},divisor:1},direction:{buffer:g,stride:24,offset:0},lineOffset:{buffer:g,stride:24,offset:8},capOffset:{buffer:g,stride:24,offset:16}},primitive:"triangles",blend:{enable:!0,color:[0,0,0,0],equation:{rgb:"add",alpha:"add"},func:{srcRGB:"src alpha",dstRGB:"one minus src alpha",srcAlpha:"one minus dst alpha",dstAlpha:"one"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop("viewport")},viewport:t.prop("viewport"),stencil:!1,instances:t.prop("count"),count:h.length}),s(b,{update:T,draw:_,destroy:k,regl:t,gl:v,canvas:v.canvas,groups:x}),b;function b(t){t?T(t):null===t&&k(),_()}function _(e){if("number"==typeof e)return w(e);e&&!Array.isArray(e)&&(e=[e]),t._refresh(),x.forEach((function(t,r){t&&(e&&(e[r]?t.draw=!0:t.draw=!1),t.draw?w(r):t.draw=!0)}))}function w(t){"number"==typeof t&&(t=x[t]),null!=t&&t&&t.count&&t.color&&t.opacity&&t.positions&&t.positions.length>1&&(t.scaleRatio=[t.scale[0]*t.viewport.width,t.scale[1]*t.viewport.height],r(t),t.after&&t.after(t))}function T(t){if(t){null!=t.length?"number"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var e=0,r=0;if(b.groups=x=t.map((function(t,c){var u=x[c];return t?("function"==typeof t?t={after:t}:"number"==typeof t[0]&&(t={positions:t}),t=o(t,{color:"color colors fill",capSize:"capSize cap capsize cap-size",lineWidth:"lineWidth line-width width line thickness",opacity:"opacity alpha",range:"range dataBox",viewport:"viewport viewBox",errors:"errors error",positions:"positions position data points"}),u||(x[c]=u={id:c,scale:null,translate:null,scaleFract:null,translateFract:null,draw:!0},t=s({},y,t)),a(u,t,[{lineWidth:function(t){return.5*+t},capSize:function(t){return.5*+t},opacity:parseFloat,errors:function(t){return t=l(t),r+=t.length,t},positions:function(t,r){return t=l(t,"float64"),r.count=Math.floor(t.length/2),r.bounds=n(t,2),r.offset=e,e+=r.count,t}},{color:function(t,e){var r=e.count;if(t||(t="transparent"),!Array.isArray(t)||"number"==typeof t[0]){var n=t;t=Array(r);for(var a=0;a 0. && baClipping < length(normalWidth * endBotJoin)) {\n\t\t//handle miter clipping\n\t\tbTopCoord -= normalWidth * endTopJoin;\n\t\tbTopCoord += normalize(endTopJoin * normalWidth) * baClipping;\n\t}\n\n\tif (nextReverse) {\n\t\t//make join rectangular\n\t\tvec2 miterShift = normalWidth * endJoinDirection * miterLimit * .5;\n\t\tfloat normalAdjust = 1. - min(miterLimit / endMiterRatio, 1.);\n\t\tbBotCoord = bCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\n\t\tbTopCoord = bCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\n\t}\n\telse if (!prevReverse && abClipping > 0. && abClipping < length(normalWidth * startBotJoin)) {\n\t\t//handle miter clipping\n\t\taBotCoord -= normalWidth * startBotJoin;\n\t\taBotCoord += normalize(startBotJoin * normalWidth) * abClipping;\n\t}\n\n\tvec2 aTopPosition = (aTopCoord) * adjustedScale + translate;\n\tvec2 aBotPosition = (aBotCoord) * adjustedScale + translate;\n\n\tvec2 bTopPosition = (bTopCoord) * adjustedScale + translate;\n\tvec2 bBotPosition = (bBotCoord) * adjustedScale + translate;\n\n\t//position is normalized 0..1 coord on the screen\n\tvec2 position = (aTopPosition * lineTop + aBotPosition * lineBot) * lineStart + (bTopPosition * lineTop + bBotPosition * lineBot) * lineEnd;\n\n\tstartCoord = aCoord * scaleRatio + translate * viewport.zw + viewport.xy;\n\tendCoord = bCoord * scaleRatio + translate * viewport.zw + viewport.xy;\n\n\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\n\n\tenableStartMiter = step(dot(currTangent, prevTangent), .5);\n\tenableEndMiter = step(dot(currTangent, nextTangent), .5);\n\n\t//bevel miter cutoffs\n\tif (miterMode == 1.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * miterLimit * .5;\n\t\t\tstartCutoff = vec4(aCoord, aCoord);\n\t\t\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\n\t\t\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tstartCutoff += viewport.xyxy;\n\t\t\tstartCutoff += startMiterWidth.xyxy;\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * miterLimit * .5;\n\t\t\tendCutoff = vec4(bCoord, bCoord);\n\t\t\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x) / scaleRatio;\n\t\t\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tendCutoff += viewport.xyxy;\n\t\t\tendCutoff += endMiterWidth.xyxy;\n\t\t}\n\t}\n\n\t//round miter cutoffs\n\telse if (miterMode == 2.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * abs(dot(startJoinDirection, currNormal)) * .5;\n\t\t\tstartCutoff = vec4(aCoord, aCoord);\n\t\t\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\n\t\t\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tstartCutoff += viewport.xyxy;\n\t\t\tstartCutoff += startMiterWidth.xyxy;\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * abs(dot(endJoinDirection, currNormal)) * .5;\n\t\t\tendCutoff = vec4(bCoord, bCoord);\n\t\t\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x) / scaleRatio;\n\t\t\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tendCutoff += viewport.xyxy;\n\t\t\tendCutoff += endMiterWidth.xyxy;\n\t\t}\n\t}\n}\n"]),frag:o(["precision highp float;\n#define GLSLIFY 1\n\nuniform float dashLength, pixelRatio, thickness, opacity, id, miterMode;\nuniform sampler2D dashTexture;\n\nvarying vec4 fragColor;\nvarying vec2 tangent;\nvarying vec4 startCutoff, endCutoff;\nvarying vec2 startCoord, endCoord;\nvarying float enableStartMiter, enableEndMiter;\n\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\n\tvec2 diff = b - a;\n\tvec2 perp = normalize(vec2(-diff.y, diff.x));\n\treturn dot(p - a, perp);\n}\n\nvoid main() {\n\tfloat alpha = 1., distToStart, distToEnd;\n\tfloat cutoff = thickness * .5;\n\n\t//bevel miter\n\tif (miterMode == 1.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\n\t\t\tif (distToStart < -1.) {\n\t\t\t\tdiscard;\n\t\t\t\treturn;\n\t\t\t}\n\t\t\talpha *= min(max(distToStart + 1., 0.), 1.);\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\n\t\t\tif (distToEnd < -1.) {\n\t\t\t\tdiscard;\n\t\t\t\treturn;\n\t\t\t}\n\t\t\talpha *= min(max(distToEnd + 1., 0.), 1.);\n\t\t}\n\t}\n\n\t// round miter\n\telse if (miterMode == 2.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\n\t\t\tif (distToStart < 0.) {\n\t\t\t\tfloat radius = length(gl_FragCoord.xy - startCoord);\n\n\t\t\t\tif(radius > cutoff + .5) {\n\t\t\t\t\tdiscard;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\n\t\t\t}\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\n\t\t\tif (distToEnd < 0.) {\n\t\t\t\tfloat radius = length(gl_FragCoord.xy - endCoord);\n\n\t\t\t\tif(radius > cutoff + .5) {\n\t\t\t\t\tdiscard;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\n\t\t\t}\n\t\t}\n\t}\n\n\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashLength) * .5 + .25;\n\tfloat dash = texture2D(dashTexture, vec2(t, .5)).r;\n\n\tgl_FragColor = fragColor;\n\tgl_FragColor.a *= alpha * opacity * dash;\n}\n"]),attributes:{lineEnd:{buffer:r,divisor:0,stride:8,offset:0},lineTop:{buffer:r,divisor:0,stride:8,offset:4},aColor:{buffer:t.prop("colorBuffer"),stride:4,offset:0,divisor:1},bColor:{buffer:t.prop("colorBuffer"),stride:4,offset:4,divisor:1},prevCoord:{buffer:t.prop("positionBuffer"),stride:8,offset:0,divisor:1},aCoord:{buffer:t.prop("positionBuffer"),stride:8,offset:8,divisor:1},bCoord:{buffer:t.prop("positionBuffer"),stride:8,offset:16,divisor:1},nextCoord:{buffer:t.prop("positionBuffer"),stride:8,offset:24,divisor:1}}},n))}catch(t){e=i}return{fill:t({primitive:"triangle",elements:function(t,e){return e.triangles},offset:0,vert:o(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec2 position, positionFract;\n\nuniform vec4 color;\nuniform vec2 scale, scaleFract, translate, translateFract;\nuniform float pixelRatio, id;\nuniform vec4 viewport;\nuniform float opacity;\n\nvarying vec4 fragColor;\n\nconst float MAX_LINES = 256.;\n\nvoid main() {\n\tfloat depth = (MAX_LINES - 4. - id) / (MAX_LINES);\n\n\tvec2 position = position * scale + translate\n + positionFract * scale + translateFract\n + position * scaleFract\n + positionFract * scaleFract;\n\n\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\n\n\tfragColor = color / 255.;\n\tfragColor.a *= opacity;\n}\n"]),frag:o(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nvoid main() {\n\tgl_FragColor = fragColor;\n}\n"]),uniforms:{scale:t.prop("scale"),color:t.prop("fill"),scaleFract:t.prop("scaleFract"),translateFract:t.prop("translateFract"),translate:t.prop("translate"),opacity:t.prop("opacity"),pixelRatio:t.context("pixelRatio"),id:t.prop("id"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{position:{buffer:t.prop("positionBuffer"),stride:8,offset:8},positionFract:{buffer:t.prop("positionFractBuffer"),stride:8,offset:8}},blend:n.blend,depth:{enable:!1},scissor:n.scissor,stencil:n.stencil,viewport:n.viewport}),rect:i,miter:e}},v.defaults={dashes:null,join:"miter",miterLimit:1,thickness:10,cap:"square",color:"black",opacity:1,overlay:!1,viewport:null,range:null,close:!1,fill:null},v.prototype.render=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];e.length&&(t=this).update.apply(t,e),this.draw()},v.prototype.draw=function(){for(var t=this,e=[],r=arguments.length;r--;)e[r]=arguments[r];return(e.length?e:this.passes).forEach((function(e,r){var n;if(e&&Array.isArray(e))return(n=t).draw.apply(n,e);"number"==typeof e&&(e=t.passes[e]),e&&e.count>1&&e.opacity&&(t.regl._refresh(),e.fill&&e.triangles&&e.triangles.length>2&&t.shaders.fill(e),e.thickness&&(e.scale[0]*e.viewport.width>v.precisionThreshold||e.scale[1]*e.viewport.height>v.precisionThreshold||"rect"===e.join||!e.join&&(e.thickness<=2||e.count>=v.maxPoints)?t.shaders.rect(e):t.shaders.miter(e)))})),this},v.prototype.update=function(t){var e=this;if(t){null!=t.length?"number"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var r=this.regl,o=this.gl;if(t.forEach((function(t,f){var d=e.passes[f];if(void 0!==t)if(null!==t){if("number"==typeof t[0]&&(t={positions:t}),t=s(t,{positions:"positions points data coords",thickness:"thickness lineWidth lineWidths line-width linewidth width stroke-width strokewidth strokeWidth",join:"lineJoin linejoin join type mode",miterLimit:"miterlimit miterLimit",dashes:"dash dashes dasharray dash-array dashArray",color:"color colour stroke colors colours stroke-color strokeColor",fill:"fill fill-color fillColor",opacity:"alpha opacity",overlay:"overlay crease overlap intersect",close:"closed close closed-path closePath",range:"range dataBox",viewport:"viewport viewBox",hole:"holes hole hollow",splitNull:"splitNull"}),d||(e.passes[f]=d={id:f,scale:null,scaleFract:null,translate:null,translateFract:null,count:0,hole:[],depth:0,dashLength:1,dashTexture:r.texture({channels:1,data:new Uint8Array([255]),width:1,height:1,mag:"linear",min:"linear"}),colorBuffer:r.buffer({usage:"dynamic",type:"uint8",data:new Uint8Array}),positionBuffer:r.buffer({usage:"dynamic",type:"float",data:new Uint8Array}),positionFractBuffer:r.buffer({usage:"dynamic",type:"float",data:new Uint8Array})},t=a({},v.defaults,t)),null!=t.thickness&&(d.thickness=parseFloat(t.thickness)),null!=t.opacity&&(d.opacity=parseFloat(t.opacity)),null!=t.miterLimit&&(d.miterLimit=parseFloat(t.miterLimit)),null!=t.overlay&&(d.overlay=!!t.overlay,f=D}));(I=I.slice(0,R)).push(D)}for(var F=function(t){var e=k.slice(2*z,2*I[t]).concat(D?k.slice(2*D):[]),r=(d.hole||[]).map((function(e){return e-D+(I[t]-z)})),n=c(e,r);n=n.map((function(e){return e+z+(e+zt.length)&&(e=t.length);for(var r=0,n=new Array(e);r 1.0 + delta) {\n\t\tdiscard;\n\t}\n\n\talpha -= smoothstep(1.0 - delta, 1.0 + delta, radius);\n\n\tfloat borderRadius = fragBorderRadius;\n\tfloat ratio = smoothstep(borderRadius - delta, borderRadius + delta, radius);\n\tvec4 color = mix(fragColor, fragBorderColor, ratio);\n\tcolor.a *= alpha * opacity;\n\tgl_FragColor = color;\n}\n"]),l.vert=h(["precision highp float;\n#define GLSLIFY 1\n\nattribute float x, y, xFract, yFract;\nattribute float size, borderSize;\nattribute vec4 colorId, borderColorId;\nattribute float isActive;\n\nuniform bool constPointSize;\nuniform float pixelRatio;\nuniform vec2 paletteSize, scale, scaleFract, translate, translateFract;\nuniform sampler2D paletteTexture;\n\nconst float maxSize = 100.;\n\nvarying vec4 fragColor, fragBorderColor;\nvarying float fragBorderRadius, fragWidth;\n\nfloat pointSizeScale = (constPointSize) ? 2. : pixelRatio;\n\nbool isDirect = (paletteSize.x < 1.);\n\nvec4 getColor(vec4 id) {\n return isDirect ? id / 255. : texture2D(paletteTexture,\n vec2(\n (id.x + .5) / paletteSize.x,\n (id.y + .5) / paletteSize.y\n )\n );\n}\n\nvoid main() {\n // ignore inactive points\n if (isActive == 0.) return;\n\n vec2 position = vec2(x, y);\n vec2 positionFract = vec2(xFract, yFract);\n\n vec4 color = getColor(colorId);\n vec4 borderColor = getColor(borderColorId);\n\n float size = size * maxSize / 255.;\n float borderSize = borderSize * maxSize / 255.;\n\n gl_PointSize = (size + borderSize) * pointSizeScale;\n\n vec2 pos = (position + translate) * scale\n + (positionFract + translateFract) * scale\n + (position + translate) * scaleFract\n + (positionFract + translateFract) * scaleFract;\n\n gl_Position = vec4(pos * 2. - 1., 0., 1.);\n\n fragBorderRadius = 1. - 2. * borderSize / (size + borderSize);\n fragColor = color;\n fragBorderColor = borderColor.a == 0. || borderSize == 0. ? vec4(color.rgb, 0.) : borderColor;\n fragWidth = 1. / gl_PointSize;\n}\n"]),g&&(l.frag=l.frag.replace("smoothstep","smoothStep"),s.frag=s.frag.replace("smoothstep","smoothStep")),this.drawCircle=t(l)}b.defaults={color:"black",borderColor:"transparent",borderSize:0,size:12,opacity:1,marker:void 0,viewport:null,range:null,pixelSize:null,count:0,offset:0,bounds:null,positions:[],snap:1e4},b.prototype.render=function(){return arguments.length&&this.update.apply(this,arguments),this.draw(),this},b.prototype.draw=function(){for(var t=this,e=arguments.length,r=new Array(e),n=0;nn)?e.tree=u(t,{bounds:f}):n&&n.length&&(e.tree=n),e.tree){var h={primitive:"points",usage:"static",data:e.tree,type:"uint32"};e.elements?e.elements(h):e.elements=o.elements(h)}var p=v.float32(t);return i({data:p,usage:"dynamic"}),a({data:v.fract32(t,p),usage:"dynamic"}),s({data:new Uint8Array(c),type:"uint8",usage:"stream"}),t}},{marker:function(e,r,n){var i=r.activation;if(i.forEach((function(t){return t&&t.destroy&&t.destroy()})),i.length=0,e&&"number"!=typeof e[0]){for(var a=[],s=0,l=Math.min(e.length,r.count);s=0)return a;if(t instanceof Uint8Array||t instanceof Uint8ClampedArray)e=t;else{e=new Uint8Array(t.length);for(var o=0,s=t.length;o4*n&&(this.tooManyColors=!0),this.updatePalette(r),1===i.length?i[0]:i},b.prototype.updatePalette=function(t){if(!this.tooManyColors){var e=this.maxColors,r=this.paletteTexture,n=Math.ceil(.25*t.length/e);if(n>1)for(var i=.25*(t=t.slice()).length%e;i2?(s[0],s[2],n=s[1],i=s[3]):s.length?(n=s[0],i=s[1]):(s.x,n=s.y,s.x+s.width,i=s.y+s.height),l.length>2?(a=l[0],o=l[2],l[1],l[3]):l.length?(a=l[0],o=l[1]):(a=l.x,l.y,o=l.x+l.width,l.y+l.height),[a,n,o,i]}function p(t){if("number"==typeof t)return[t,t,t,t];if(2===t.length)return[t[0],t[1],t[0],t[1]];var e=l(t);return[e.x,e.y,e.x+e.width,e.y+e.height]}e.exports=u,u.prototype.render=function(){for(var t,e=this,r=[],n=arguments.length;n--;)r[n]=arguments[n];return r.length&&(t=this).update.apply(t,r),this.regl.attributes.preserveDrawingBuffer?this.draw():(this.dirty?null==this.planned&&(this.planned=o((function(){e.draw(),e.dirty=!0,e.planned=null}))):(this.draw(),this.dirty=!0,o((function(){e.dirty=!1}))),this)},u.prototype.update=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];if(e.length){for(var n=0;nk))&&(s.lower||!(T>>=e))<<3,(e|=r=(15<(t>>>=r))<<2)|(r=(3<(t>>>=r))<<1)|t>>>r>>1}function s(){function t(t){t:{for(var e=16;268435456>=e;e*=16)if(t<=e){t=e;break t}t=0}return 0<(e=r[o(t)>>2]).length?e.pop():new ArrayBuffer(t)}function e(t){r[o(t.byteLength)>>2].push(t)}var r=a(8,(function(){return[]}));return{alloc:t,free:e,allocType:function(e,r){var n=null;switch(e){case 5120:n=new Int8Array(t(r),0,r);break;case 5121:n=new Uint8Array(t(r),0,r);break;case 5122:n=new Int16Array(t(2*r),0,r);break;case 5123:n=new Uint16Array(t(2*r),0,r);break;case 5124:n=new Int32Array(t(4*r),0,r);break;case 5125:n=new Uint32Array(t(4*r),0,r);break;case 5126:n=new Float32Array(t(4*r),0,r);break;default:return null}return n.length!==r?n.subarray(0,r):n},freeType:function(t){e(t.buffer)}}}function l(t){return!!t&&"object"==typeof t&&Array.isArray(t.shape)&&Array.isArray(t.stride)&&"number"==typeof t.offset&&t.shape.length===t.stride.length&&(Array.isArray(t.data)||W(t.data))}function c(t,e,r,n,i,a){for(var o=0;o(i=s)&&(i=n.buffer.byteLength,5123===f?i>>=1:5125===f&&(i>>=2)),n.vertCount=i,i=o,0>o&&(i=4,1===(o=n.buffer.dimension)&&(i=0),2===o&&(i=1),3===o&&(i=4)),n.primType=i}function o(t){n.elementsCount--,delete s[t.id],t.buffer.destroy(),t.buffer=null}var s={},c=0,u={uint8:5121,uint16:5123};e.oes_element_index_uint&&(u.uint32=5125),i.prototype.bind=function(){this.buffer.bind()};var f=[];return{create:function(t,e){function s(t){if(t)if("number"==typeof t)c(t),f.primType=4,f.vertCount=0|t,f.type=5121;else{var e=null,r=35044,n=-1,i=-1,o=0,h=0;Array.isArray(t)||W(t)||l(t)?e=t:("data"in t&&(e=t.data),"usage"in t&&(r=Q[t.usage]),"primitive"in t&&(n=rt[t.primitive]),"count"in t&&(i=0|t.count),"type"in t&&(h=u[t.type]),"length"in t?o=0|t.length:(o=i,5123===h||5122===h?o*=2:5125!==h&&5124!==h||(o*=4))),a(f,e,r,n,i,o,h)}else c(),f.primType=4,f.vertCount=0,f.type=5121;return s}var c=r.create(null,34963,!0),f=new i(c._buffer);return n.elementsCount++,s(t),s._reglType="elements",s._elements=f,s.subdata=function(t,e){return c.subdata(t,e),s},s.destroy=function(){o(f)},s},createStream:function(t){var e=f.pop();return e||(e=new i(r.create(null,34963,!0,!1)._buffer)),a(e,t,35040,-1,-1,0,0),e},destroyStream:function(t){f.push(t)},getElements:function(t){return"function"==typeof t&&t._elements instanceof i?t._elements:null},clear:function(){X(s).forEach(o)}}}function m(t){for(var e=G.allocType(5123,t.length),r=0;r>>31<<15,i=(a<<1>>>24)-127,a=a>>13&1023;e[r]=-24>i?n:-14>i?n+(a+1024>>-14-i):15>=i,r.height>>=i,p(r,n[i]),t.mipmask|=1<e;++e)t.images[e]=null;return t}function C(t){for(var e=t.images,r=0;re){for(var r=0;r=--this.refCount&&F(this)}}),o.profile&&(a.getTotalTextureSize=function(){var t=0;return Object.keys(yt).forEach((function(e){t+=yt[e].stats.size})),t}),{create2D:function(e,r){function n(t,e){var r=i.texInfo;P.call(r);var a=L();return"number"==typeof t?M(a,0|t,"number"==typeof e?0|e:0|t):t?(I(r,t),S(a,t)):M(a,1,1),r.genMipmaps&&(a.mipmask=(a.width<<1)-1),i.mipmask=a.mipmask,c(i,a),i.internalformat=a.internalformat,n.width=a.width,n.height=a.height,D(i),E(a,3553),O(r,3553),R(),C(a),o.profile&&(i.stats.size=T(i.internalformat,i.type,a.width,a.height,r.genMipmaps,!1)),n.format=tt[i.internalformat],n.type=et[i.type],n.mag=rt[r.magFilter],n.min=nt[r.minFilter],n.wrapS=it[r.wrapS],n.wrapT=it[r.wrapT],n}var i=new z(3553);return yt[i.id]=i,a.textureCount++,n(e,r),n.subimage=function(t,e,r,a){e|=0,r|=0,a|=0;var o=v();return c(o,i),o.width=0,o.height=0,p(o,t),o.width=o.width||(i.width>>a)-e,o.height=o.height||(i.height>>a)-r,D(i),d(o,3553,e,r,a),R(),k(o),n},n.resize=function(e,r){var a=0|e,s=0|r||a;if(a===i.width&&s===i.height)return n;n.width=i.width=a,n.height=i.height=s,D(i);for(var l=0;i.mipmask>>l;++l){var c=a>>l,u=s>>l;if(!c||!u)break;t.texImage2D(3553,l,i.format,c,u,0,i.format,i.type,null)}return R(),o.profile&&(i.stats.size=T(i.internalformat,i.type,a,s,!1,!1)),n},n._reglType="texture2d",n._texture=i,o.profile&&(n.stats=i.stats),n.destroy=function(){i.decRef()},n},createCube:function(e,r,n,i,s,l){function f(t,e,r,n,i,a){var s,l=h.texInfo;for(P.call(l),s=0;6>s;++s)m[s]=L();if("number"!=typeof t&&t){if("object"==typeof t)if(e)S(m[0],t),S(m[1],e),S(m[2],r),S(m[3],n),S(m[4],i),S(m[5],a);else if(I(l,t),u(h,t),"faces"in t)for(t=t.faces,s=0;6>s;++s)c(m[s],h),S(m[s],t[s]);else for(s=0;6>s;++s)S(m[s],t)}else for(t=0|t||1,s=0;6>s;++s)M(m[s],t,t);for(c(h,m[0]),h.mipmask=l.genMipmaps?(m[0].width<<1)-1:m[0].mipmask,h.internalformat=m[0].internalformat,f.width=m[0].width,f.height=m[0].height,D(h),s=0;6>s;++s)E(m[s],34069+s);for(O(l,34067),R(),o.profile&&(h.stats.size=T(h.internalformat,h.type,f.width,f.height,l.genMipmaps,!0)),f.format=tt[h.internalformat],f.type=et[h.type],f.mag=rt[l.magFilter],f.min=nt[l.minFilter],f.wrapS=it[l.wrapS],f.wrapT=it[l.wrapT],s=0;6>s;++s)C(m[s]);return f}var h=new z(34067);yt[h.id]=h,a.cubeCount++;var m=Array(6);return f(e,r,n,i,s,l),f.subimage=function(t,e,r,n,i){r|=0,n|=0,i|=0;var a=v();return c(a,h),a.width=0,a.height=0,p(a,e),a.width=a.width||(h.width>>i)-r,a.height=a.height||(h.height>>i)-n,D(h),d(a,34069+t,r,n,i),R(),k(a),f},f.resize=function(e){if((e|=0)!==h.width){f.width=h.width=e,f.height=h.height=e,D(h);for(var r=0;6>r;++r)for(var n=0;h.mipmask>>n;++n)t.texImage2D(34069+r,n,h.format,e>>n,e>>n,0,h.format,h.type,null);return R(),o.profile&&(h.stats.size=T(h.internalformat,h.type,f.width,f.height,!1,!0)),f}},f._reglType="textureCube",f._texture=h,o.profile&&(f.stats=h.stats),f.destroy=function(){h.decRef()},f},clear:function(){for(var e=0;er;++r)if(0!=(e.mipmask&1<>r,e.height>>r,0,e.internalformat,e.type,null);else for(var n=0;6>n;++n)t.texImage2D(34069+n,r,e.internalformat,e.width>>r,e.height>>r,0,e.internalformat,e.type,null);O(e.texInfo,e.target)}))},refresh:function(){for(var e=0;ei;++i){for(c=0;ct;++t)r[t].resize(n);return e.width=e.height=n,e},_reglType:"framebufferCube",destroy:function(){r.forEach((function(t){t.destroy()}))}})},clear:function(){X(k).forEach(g)},restore:function(){x.cur=null,x.next=null,x.dirty=!0,X(k).forEach((function(e){e.framebuffer=t.createFramebuffer(),v(e)}))}})}function M(){this.w=this.z=this.y=this.x=this.state=0,this.buffer=null,this.size=0,this.normalized=!1,this.type=5126,this.divisor=this.stride=this.offset=0}function S(t,e,r,n,i,a,o){function s(){this.id=++f,this.attributes=[],this.elements=null,this.ownsElements=!1,this.offset=this.count=0,this.instances=-1,this.primitive=4;var t=e.oes_vertex_array_object;this.vao=t?t.createVertexArrayOES():null,h[this.id]=this,this.buffers=[]}var c=r.maxAttributes,u=Array(c);for(r=0;r=h.byteLength?c.subdata(h):(c.destroy(),r.buffers[s]=null)),r.buffers[s]||(c=r.buffers[s]=i.create(u,34962,!1,!0)),f.buffer=i.getBuffer(c),f.size=0|f.buffer.dimension,f.normalized=!1,f.type=f.buffer.dtype,f.offset=0,f.stride=0,f.divisor=0,f.state=1,t[s]=1;else i.getBuffer(u)?(f.buffer=i.getBuffer(u),f.size=0|f.buffer.dimension,f.normalized=!1,f.type=f.buffer.dtype,f.offset=0,f.stride=0,f.divisor=0,f.state=1):i.getBuffer(u.buffer)?(f.buffer=i.getBuffer(u.buffer),f.size=0|(+u.size||f.buffer.dimension),f.normalized=!!u.normalized||!1,f.type="type"in u?K[u.type]:f.buffer.dtype,f.offset=0|(u.offset||0),f.stride=0|(u.stride||0),f.divisor=0|(u.divisor||0),f.state=1):"x"in u&&(f.x=+u.x||0,f.y=+u.y||0,f.z=+u.z||0,f.w=+u.w||0,f.state=2)}for(c=0;ct&&(t=e.stats.uniformsCount)})),t},r.getMaxAttributesCount=function(){var t=0;return h.forEach((function(e){e.stats.attributesCount>t&&(t=e.stats.attributesCount)})),t}),{clear:function(){var e=t.deleteShader.bind(t);X(c).forEach(e),c={},X(u).forEach(e),u={},h.forEach((function(e){t.deleteProgram(e.program)})),h.length=0,f={},r.shaderCount=0},program:function(e,n,i,a){var o=f[n];o||(o=f[n]={});var p=o[e];if(p&&(p.refCount++,!a))return p;var d=new s(n,e);return r.shaderCount++,l(d,i,a),p||(o[e]=d),h.push(d),j(d,{destroy:function(){if(d.refCount--,0>=d.refCount){t.deleteProgram(d.program);var e=h.indexOf(d);h.splice(e,1),r.shaderCount--}0>=o[d.vertId].refCount&&(t.deleteShader(u[d.vertId]),delete u[d.vertId],delete f[d.fragId][d.vertId]),Object.keys(f[d.fragId]).length||(t.deleteShader(c[d.fragId]),delete c[d.fragId],delete f[d.fragId])}})},restore:function(){c={},u={};for(var t=0;t"+e+"?"+i+".constant["+e+"]:0;"})).join(""),"}}else{","if(",s,"(",i,".buffer)){",u,"=",a,".createStream(",34962,",",i,".buffer);","}else{",u,"=",a,".getBuffer(",i,".buffer);","}",f,'="type" in ',i,"?",o.glTypes,"[",i,".type]:",u,".dtype;",l.normalized,"=!!",i,".normalized;"),n("size"),n("offset"),n("stride"),n("divisor"),r("}}"),r.exit("if(",l.isStream,"){",a,".destroyStream(",u,");","}"),l}))})),o}function A(t,e,n,i,o){function s(t){var e=c[t];e&&(h[t]=e)}var l=function(t,e){if("string"==typeof(r=t.static).frag&&"string"==typeof r.vert){if(0>1)",s],");")}function e(){r(l,".drawArraysInstancedANGLE(",[d,m,g,s],");")}p&&"null"!==p?y?t():(r("if(",p,"){"),t(),r("}else{"),e(),r("}")):e()}function o(){function t(){r(u+".drawElements("+[d,g,v,m+"<<(("+v+"-5121)>>1)"]+");")}function e(){r(u+".drawArrays("+[d,m,g]+");")}p&&"null"!==p?y?t():(r("if(",p,"){"),t(),r("}else{"),e(),r("}")):e()}var s,l,c=t.shared,u=c.gl,f=c.draw,h=n.draw,p=function(){var i=h.elements,a=e;return i?((i.contextDep&&n.contextDynamic||i.propDep)&&(a=r),i=i.append(t,a),h.elementsActive&&a("if("+i+")"+u+".bindBuffer(34963,"+i+".buffer.buffer);")):(i=a.def(),a(i,"=",f,".","elements",";","if(",i,"){",u,".bindBuffer(",34963,",",i,".buffer.buffer);}","else if(",c.vao,".currentVAO){",i,"=",t.shared.elements+".getElements("+c.vao,".currentVAO.elements);",nt?"":"if("+i+")"+u+".bindBuffer(34963,"+i+".buffer.buffer);","}")),i}(),d=i("primitive"),m=i("offset"),g=function(){var i=h.count,a=e;return i?((i.contextDep&&n.contextDynamic||i.propDep)&&(a=r),i=i.append(t,a)):i=a.def(f,".","count"),i}();if("number"==typeof g){if(0===g)return}else r("if(",g,"){"),r.exit("}");tt&&(s=i("instances"),l=t.instancing);var v=p+".type",y=h.elements&&D(h.elements)&&!h.vaoActive;tt&&("number"!=typeof s||0<=s)?"string"==typeof s?(r("if(",s,">0){"),a(),r("}else if(",s,"<0){"),o(),r("}")):a():o()}function G(t,e,r,n,i){return i=(e=b()).proc("body",i),tt&&(e.instancing=i.def(e.shared.extensions,".angle_instanced_arrays")),t(e,i,r,n),e.compile().body}function Y(t,e,r,n){B(t,e),r.useVAO?r.drawVAO?e(t.shared.vao,".setVAO(",r.drawVAO.append(t,e),");"):e(t.shared.vao,".setVAO(",t.shared.vao,".targetVAO);"):(e(t.shared.vao,".setVAO(null);"),U(t,e,r,n.attributes,(function(){return!0}))),H(t,e,r,n.uniforms,(function(){return!0}),!1),q(t,e,e,r)}function W(t,e,r,n){function i(){return!0}t.batchId="a1",B(t,e),U(t,e,r,n.attributes,i),H(t,e,r,n.uniforms,i,!1),q(t,e,e,r)}function X(t,e,r,n){function i(t){return t.contextDep&&o||t.propDep}function a(t){return!i(t)}B(t,e);var o=r.contextDep,s=e.def(),l=e.def();t.shared.props=l,t.batchId=s;var c=t.scope(),u=t.scope();e(c.entry,"for(",s,"=0;",s,"<","a1",";++",s,"){",l,"=","a0","[",s,"];",u,"}",c.exit),r.needsContext&&M(t,u,r.context),r.needsFramebuffer&&S(t,u,r.framebuffer),L(t,u,r.state,i),r.profile&&i(r.profile)&&N(t,u,r,!1,!0),n?(r.useVAO?r.drawVAO?i(r.drawVAO)?u(t.shared.vao,".setVAO(",r.drawVAO.append(t,u),");"):c(t.shared.vao,".setVAO(",r.drawVAO.append(t,c),");"):c(t.shared.vao,".setVAO(",t.shared.vao,".targetVAO);"):(c(t.shared.vao,".setVAO(null);"),U(t,c,r,n.attributes,a),U(t,u,r,n.attributes,i)),H(t,c,r,n.uniforms,a,!1),H(t,u,r,n.uniforms,i,!0),q(t,c,u,r)):(e=t.global.def("{}"),n=r.shader.progVar.append(t,u),l=u.def(n,".id"),c=u.def(e,"[",l,"]"),u(t.shared.gl,".useProgram(",n,".program);","if(!",c,"){",c,"=",e,"[",l,"]=",t.link((function(e){return G(W,t,r,e,2)})),"(",n,");}",c,".call(this,a0[",s,"],",s,");"))}function Z(t,r){function n(e){var n=r.shader[e];n&&i.set(a.shader,"."+e,n.append(t,i))}var i=t.proc("scope",3);t.batchId="a2";var a=t.shared,o=a.current;M(t,i,r.context),r.framebuffer&&r.framebuffer.append(t,i),O(Object.keys(r.state)).forEach((function(e){var n=r.state[e].append(t,i);g(n)?n.forEach((function(r,n){i.set(t.next[e],"["+n+"]",r)})):i.set(a.next,"."+e,n)})),N(t,i,r,!0,!0),["elements","offset","count","instances","primitive"].forEach((function(e){var n=r.draw[e];n&&i.set(a.draw,"."+e,""+n.append(t,i))})),Object.keys(r.uniforms).forEach((function(n){var o=r.uniforms[n].append(t,i);Array.isArray(o)&&(o="["+o.join()+"]"),i.set(a.uniforms,"["+e.id(n)+"]",o)})),Object.keys(r.attributes).forEach((function(e){var n=r.attributes[e].append(t,i),a=t.scopeAttrib(e);Object.keys(new Q).forEach((function(t){i.set(a,"."+t,n[t])}))})),r.scopeVAO&&i.set(a.vao,".targetVAO",r.scopeVAO.append(t,i)),n("vert"),n("frag"),0=--this.refCount&&o(this)},i.profile&&(n.getTotalRenderbufferSize=function(){var t=0;return Object.keys(u).forEach((function(e){t+=u[e].stats.size})),t}),{create:function(e,r){function o(e,r){var n=0,a=0,u=32854;if("object"==typeof e&&e?("shape"in e?(n=0|(a=e.shape)[0],a=0|a[1]):("radius"in e&&(n=a=0|e.radius),"width"in e&&(n=0|e.width),"height"in e&&(a=0|e.height)),"format"in e&&(u=s[e.format])):"number"==typeof e?(n=0|e,a="number"==typeof r?0|r:n):e||(n=a=1),n!==c.width||a!==c.height||u!==c.format)return o.width=c.width=n,o.height=c.height=a,c.format=u,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,u,n,a),i.profile&&(c.stats.size=vt[c.format]*c.width*c.height),o.format=l[c.format],o}var c=new a(t.createRenderbuffer());return u[c.id]=c,n.renderbufferCount++,o(e,r),o.resize=function(e,r){var n=0|e,a=0|r||n;return n===c.width&&a===c.height||(o.width=c.width=n,o.height=c.height=a,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,c.format,n,a),i.profile&&(c.stats.size=vt[c.format]*c.width*c.height)),o},o._reglType="renderbuffer",o._renderbuffer=c,i.profile&&(o.stats=c.stats),o.destroy=function(){c.decRef()},o},clear:function(){X(u).forEach(o)},restore:function(){X(u).forEach((function(e){e.renderbuffer=t.createRenderbuffer(),t.bindRenderbuffer(36161,e.renderbuffer),t.renderbufferStorage(36161,e.format,e.width,e.height)})),t.bindRenderbuffer(36161,null)}}},xt=[];xt[6408]=4,xt[6407]=3;var bt=[];bt[5121]=1,bt[5126]=4,bt[36193]=2;var _t=["x","y","z","w"],wt="blend.func blend.equation stencil.func stencil.opFront stencil.opBack sample.coverage viewport scissor.box polygonOffset.offset".split(" "),Tt={0:0,1:1,zero:0,one:1,"src color":768,"one minus src color":769,"src alpha":770,"one minus src alpha":771,"dst color":774,"one minus dst color":775,"dst alpha":772,"one minus dst alpha":773,"constant color":32769,"one minus constant color":32770,"constant alpha":32771,"one minus constant alpha":32772,"src alpha saturate":776},kt={never:512,less:513,"<":513,equal:514,"=":514,"==":514,"===":514,lequal:515,"<=":515,greater:516,">":516,notequal:517,"!=":517,"!==":517,gequal:518,">=":518,always:519},At={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,"increment wrap":34055,"decrement wrap":34056,invert:5386},Mt={cw:2304,ccw:2305},St=new z(!1,!1,!1,(function(){}));return function(t){function e(){if(0===J.length)w&&w.update(),tt=null;else{tt=H.next(e),f();for(var t=J.length-1;0<=t;--t){var r=J[t];r&&r(P,null,0)}g.flush(),w&&w.update()}}function r(){!tt&&0=J.length&&n()}}}}function u(){var t=X.viewport,e=X.scissor_box;t[0]=t[1]=e[0]=e[1]=0,P.viewportWidth=P.framebufferWidth=P.drawingBufferWidth=t[2]=e[2]=g.drawingBufferWidth,P.viewportHeight=P.framebufferHeight=P.drawingBufferHeight=t[3]=e[3]=g.drawingBufferHeight}function f(){P.tick+=1,P.time=m(),u(),W.procs.poll()}function h(){F.refresh(),u(),W.procs.refresh(),w&&w.update()}function m(){return(q()-T)/1e3}if(!(t=i(t)))return null;var g=t.gl,v=g.getContextAttributes();g.isContextLost();var y=function(t,e){function r(e){var r;e=e.toLowerCase();try{r=n[e]=t.getExtension(e)}catch(t){}return!!r}for(var n={},i=0;ie;++e)et(j({framebuffer:t.framebuffer.faces[e]},t),l);else et(t,l);else l(0,t)},prop:V.define.bind(null,1),context:V.define.bind(null,2),this:V.define.bind(null,3),draw:s({}),buffer:function(t){return O.create(t,34962,!1,!1)},elements:function(t){return z.create(t,!1)},texture:F.create2D,cube:F.createCube,renderbuffer:U.create,framebuffer:G.create,framebufferCube:G.createCube,vao:D.createVAO,attributes:v,frame:c,on:function(t,e){var r;switch(t){case"frame":return c(e);case"lost":r=K;break;case"restore":r=Q;break;case"destroy":r=$}return r.push(e),{cancel:function(){for(var t=0;t + * + * Copyright (c) 2014-2015, Jon Schlinkert. + * Licensed under the MIT License. + */ +"use strict";var n,i="";e.exports=function(t,e){if("string"!=typeof t)throw new TypeError("expected a string");if(1===e)return t;if(2===e)return t+t;var r=t.length*e;if(n!==t||void 0===n)n=t,i="";else if(i.length>=r)return i.substr(0,r);for(;r>i.length&&e>1;)1&e&&(i+=t),e>>=1,t+=t;return i=(i+=t).substr(0,r)}},{}],518:[function(t,e,r){(function(t){(function(){e.exports=t.performance&&t.performance.now?function(){return performance.now()}:Date.now||function(){return+new Date}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],519:[function(t,e,r){"use strict";e.exports=function(t){for(var e=t.length,r=t[t.length-1],n=e,i=e-2;i>=0;--i){var a=r,o=t[i];(l=o-((r=a+o)-a))&&(t[--n]=r,r=l)}var s=0;for(i=n;i0){if(a<=0)return o;n=i+a}else{if(!(i<0))return o;if(a>=0)return o;n=-(i+a)}var s=33306690738754716e-32*n;return o>=s||o<=-s?o:f(t,e,r)},function(t,e,r,n){var i=t[0]-n[0],a=e[0]-n[0],o=r[0]-n[0],s=t[1]-n[1],l=e[1]-n[1],c=r[1]-n[1],u=t[2]-n[2],f=e[2]-n[2],p=r[2]-n[2],d=a*c,m=o*l,g=o*s,v=i*c,y=i*l,x=a*s,b=u*(d-m)+f*(g-v)+p*(y-x),_=7771561172376103e-31*((Math.abs(d)+Math.abs(m))*Math.abs(u)+(Math.abs(g)+Math.abs(v))*Math.abs(f)+(Math.abs(y)+Math.abs(x))*Math.abs(p));return b>_||-b>_?b:h(t,e,r,n)}];function d(t){var e=p[t.length];return e||(e=p[t.length]=u(t.length)),e.apply(void 0,t)}function m(t,e,r,n,i,a,o){return function(e,r,s,l,c){switch(arguments.length){case 0:case 1:return 0;case 2:return n(e,r);case 3:return i(e,r,s);case 4:return a(e,r,s,l);case 5:return o(e,r,s,l,c)}for(var u=new Array(arguments.length),f=0;f0&&o>0||a<0&&o<0)return!1;var s=n(r,t,e),l=n(i,t,e);if(s>0&&l>0||s<0&&l<0)return!1;if(0===a&&0===o&&0===s&&0===l)return function(t,e,r,n){for(var i=0;i<2;++i){var a=t[i],o=e[i],s=Math.min(a,o),l=Math.max(a,o),c=r[i],u=n[i],f=Math.min(c,u);if(Math.max(c,u)=n?(i=f,(l+=1)=n?(i=f,(l+=1) */ +var n=t("buffer"),i=n.Buffer;function a(t,e){for(var r in t)e[r]=t[r]}function o(t,e,r){return i(t,e,r)}i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow?e.exports=n:(a(n,r),r.Buffer=o),o.prototype=Object.create(i.prototype),a(i,o),o.from=function(t,e,r){if("number"==typeof t)throw new TypeError("Argument must not be a number");return i(t,e,r)},o.alloc=function(t,e,r){if("number"!=typeof t)throw new TypeError("Argument must be a number");var n=i(t);return void 0!==e?"string"==typeof r?n.fill(e,r):n.fill(e):n.fill(0),n},o.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return i(t)},o.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return n.SlowBuffer(t)}},{buffer:112}],531:[function(t,e,r){"use strict";e.exports=function(t){return i(n(t))};var n=t("boundary-cells"),i=t("reduce-simplicial-complex")},{"boundary-cells":103,"reduce-simplicial-complex":511}],532:[function(t,e,r){"use strict";e.exports=function(t,e,r,s){r=r||0,void 0===s&&(s=function(t){for(var e=t.length,r=0,n=0;n>1,c=e[2*l+1];if(c===a)return l;a>1,c=e[2*l+1];if(c===a)return l;a>1,c=e[2*l+1];if(c===a)return l;a>1,s=a(t[o],e);s<=0?(0===s&&(i=o),r=o+1):s>0&&(n=o-1)}return i}function u(t,e){for(var r=new Array(t.length),i=0,o=r.length;i=t.length||0!==a(t[g],s)););}return r}function f(t,e){if(e<0)return[];for(var r=[],i=(1<>>u&1&&c.push(i[u]);e.push(c)}return s(e)},r.skeleton=f,r.boundary=function(t){for(var e=[],r=0,n=t.length;r>1:(t>>1)-1}function x(t){for(var e=v(t);;){var r=e,n=2*t+1,i=2*(t+1),a=t;if(n0;){var r=y(t);if(r>=0)if(e0){var t=k[0];return g(0,M-1),M-=1,x(0),t}return-1}function w(t,e){var r=k[t];return c[r]===e?t:(c[r]=-1/0,b(t),_(),c[r]=e,b((M+=1)-1))}function T(t){if(!u[t]){u[t]=!0;var e=s[t],r=l[t];s[r]>=0&&(s[r]=e),l[e]>=0&&(l[e]=r),A[e]>=0&&w(A[e],m(e)),A[r]>=0&&w(A[r],m(r))}}var k=[],A=new Array(a);for(f=0;f>1;f>=0;--f)x(f);for(;;){var S=_();if(S<0||c[S]>r)break;T(S)}var E=[];for(f=0;f=0&&r>=0&&e!==r){var n=A[e],i=A[r];n!==i&&C.push([n,i])}})),i.unique(i.normalize(C)),{positions:E,edges:C}};var n=t("robust-orientation"),i=t("simplicial-complex")},{"robust-orientation":524,"simplicial-complex":536}],539:[function(t,e,r){"use strict";e.exports=function(t,e){var r,a,o,s;if(e[0][0]e[1][0]))return i(e,t);r=e[1],a=e[0]}if(t[0][0]t[1][0]))return-i(t,e);o=t[1],s=t[0]}var l=n(r,a,s),c=n(r,a,o);if(l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;if(l=n(s,o,a),c=n(s,o,r),l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;return a[0]-s[0]};var n=t("robust-orientation");function i(t,e){var r,i,a,o;if(e[0][0]e[1][0])){var s=Math.min(t[0][1],t[1][1]),l=Math.max(t[0][1],t[1][1]),c=Math.min(e[0][1],e[1][1]),u=Math.max(e[0][1],e[1][1]);return lu?s-u:l-u}r=e[1],i=e[0]}t[0][1]0)if(e[0]!==o[1][0])r=t,t=t.right;else{if(l=c(t.right,e))return l;t=t.left}else{if(e[0]!==o[1][0])return t;var l;if(l=c(t.right,e))return l;t=t.left}}return r}function u(t,e,r,n){this.y=t,this.index=e,this.start=r,this.closed=n}function f(t,e,r,n){this.x=t,this.segment=e,this.create=r,this.index=n}s.prototype.castUp=function(t){var e=n.le(this.coordinates,t[0]);if(e<0)return-1;this.slabs[e];var r=c(this.slabs[e],t),i=-1;if(r&&(i=r.value),this.coordinates[e]===t[0]){var s=null;if(r&&(s=r.key),e>0){var u=c(this.slabs[e-1],t);u&&(s?o(u.key,s)>0&&(s=u.key,i=u.value):(i=u.value,s=u.key))}var f=this.horizontal[e];if(f.length>0){var h=n.ge(f,t[1],l);if(h=f.length)return i;p=f[h]}}if(p.start)if(s){var d=a(s[0],s[1],[t[0],p.y]);s[0][0]>s[1][0]&&(d=-d),d>0&&(i=p.index)}else i=p.index;else p.y!==t[1]&&(i=p.index)}}}return i}},{"./lib/order-segments":539,"binary-search-bounds":100,"functional-red-black-tree":247,"robust-orientation":524}],541:[function(t,e,r){"use strict";var n=t("robust-dot-product"),i=t("robust-sum");function a(t,e){var r=i(n(t,e),[e[e.length-1]]);return r[r.length-1]}function o(t,e,r,n){var i=-e/(n-e);i<0?i=0:i>1&&(i=1);for(var a=1-i,o=t.length,s=new Array(o),l=0;l0||i>0&&u<0){var f=o(s,u,l,i);r.push(f),n.push(f.slice())}u<0?n.push(l.slice()):u>0?r.push(l.slice()):(r.push(l.slice()),n.push(l.slice())),i=u}return{positive:r,negative:n}},e.exports.positive=function(t,e){for(var r=[],n=a(t[t.length-1],e),i=t[t.length-1],s=t[0],l=0;l0||n>0&&c<0)&&r.push(o(i,c,s,n)),c>=0&&r.push(s.slice()),n=c}return r},e.exports.negative=function(t,e){for(var r=[],n=a(t[t.length-1],e),i=t[t.length-1],s=t[0],l=0;l0||n>0&&c<0)&&r.push(o(i,c,s,n)),c<=0&&r.push(s.slice()),n=c}return r}},{"robust-dot-product":521,"robust-sum":529}],542:[function(t,e,r){!function(){"use strict";var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function e(t){return i(o(t),arguments)}function n(t,r){return e.apply(null,[t].concat(r||[]))}function i(r,n){var i,a,o,s,l,c,u,f,h,p=1,d=r.length,m="";for(a=0;a=0),s.type){case"b":i=parseInt(i,10).toString(2);break;case"c":i=String.fromCharCode(parseInt(i,10));break;case"d":case"i":i=parseInt(i,10);break;case"j":i=JSON.stringify(i,null,s.width?parseInt(s.width):0);break;case"e":i=s.precision?parseFloat(i).toExponential(s.precision):parseFloat(i).toExponential();break;case"f":i=s.precision?parseFloat(i).toFixed(s.precision):parseFloat(i);break;case"g":i=s.precision?String(Number(i.toPrecision(s.precision))):parseFloat(i);break;case"o":i=(parseInt(i,10)>>>0).toString(8);break;case"s":i=String(i),i=s.precision?i.substring(0,s.precision):i;break;case"t":i=String(!!i),i=s.precision?i.substring(0,s.precision):i;break;case"T":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=s.precision?i.substring(0,s.precision):i;break;case"u":i=parseInt(i,10)>>>0;break;case"v":i=i.valueOf(),i=s.precision?i.substring(0,s.precision):i;break;case"x":i=(parseInt(i,10)>>>0).toString(16);break;case"X":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}t.json.test(s.type)?m+=i:(!t.number.test(s.type)||f&&!s.sign?h="":(h=f?"+":"-",i=i.toString().replace(t.sign,"")),c=s.pad_char?"0"===s.pad_char?"0":s.pad_char.charAt(1):" ",u=s.width-(h+i).length,l=s.width&&u>0?c.repeat(u):"",m+=s.align?h+i+l:"0"===c?h+l+i:l+h+i)}return m}var a=Object.create(null);function o(e){if(a[e])return a[e];for(var r,n=e,i=[],o=0;n;){if(null!==(r=t.text.exec(n)))i.push(r[0]);else if(null!==(r=t.modulo.exec(n)))i.push("%");else{if(null===(r=t.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(r[2]){o|=1;var s=[],l=r[2],c=[];if(null===(c=t.key.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(s.push(c[1]);""!==(l=l.substring(c[0].length));)if(null!==(c=t.key_access.exec(l)))s.push(c[1]);else{if(null===(c=t.index_access.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");s.push(c[1])}r[2]=s}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");i.push({placeholder:r[0],param_no:r[1],keys:r[2],sign:r[3],pad_char:r[4],align:r[5],width:r[6],precision:r[7],type:r[8]})}n=n.substring(r[0].length)}return a[e]=i}void 0!==r&&(r.sprintf=e,r.vsprintf=n),"undefined"!=typeof window&&(window.sprintf=e,window.vsprintf=n)}()},{}],543:[function(t,e,r){e.exports=i;var n=t("events").EventEmitter;function i(){n.call(this)}t("inherits")(i,n),i.Readable=t("readable-stream/lib/_stream_readable.js"),i.Writable=t("readable-stream/lib/_stream_writable.js"),i.Duplex=t("readable-stream/lib/_stream_duplex.js"),i.Transform=t("readable-stream/lib/_stream_transform.js"),i.PassThrough=t("readable-stream/lib/_stream_passthrough.js"),i.finished=t("readable-stream/lib/internal/streams/end-of-stream.js"),i.pipeline=t("readable-stream/lib/internal/streams/pipeline.js"),i.Stream=i,i.prototype.pipe=function(t,e){var r=this;function i(e){t.writable&&!1===t.write(e)&&r.pause&&r.pause()}function a(){r.readable&&r.resume&&r.resume()}r.on("data",i),t.on("drain",a),t._isStdio||e&&!1===e.end||(r.on("end",s),r.on("close",l));var o=!1;function s(){o||(o=!0,t.end())}function l(){o||(o=!0,"function"==typeof t.destroy&&t.destroy())}function c(t){if(u(),0===n.listenerCount(this,"error"))throw t}function u(){r.removeListener("data",i),t.removeListener("drain",a),r.removeListener("end",s),r.removeListener("close",l),r.removeListener("error",c),t.removeListener("error",c),r.removeListener("end",u),r.removeListener("close",u),t.removeListener("close",u)}return r.on("error",c),t.on("error",c),r.on("end",u),r.on("close",u),t.on("close",u),t.emit("pipe",r),t}},{events:237,inherits:429,"readable-stream/lib/_stream_duplex.js":545,"readable-stream/lib/_stream_passthrough.js":546,"readable-stream/lib/_stream_readable.js":547,"readable-stream/lib/_stream_transform.js":548,"readable-stream/lib/_stream_writable.js":549,"readable-stream/lib/internal/streams/end-of-stream.js":553,"readable-stream/lib/internal/streams/pipeline.js":555}],544:[function(t,e,r){"use strict";var n={};function i(t,e,r){r||(r=Error);var i=function(t){var r,n;function i(r,n,i){return t.call(this,function(t,r,n){return"string"==typeof e?e:e(t,r,n)}(r,n,i))||this}return n=t,(r=i).prototype=Object.create(n.prototype),r.prototype.constructor=r,r.__proto__=n,i}(r);i.prototype.name=r.name,i.prototype.code=t,n[t]=i}function a(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map((function(t){return String(t)})),r>2?"one of ".concat(e," ").concat(t.slice(0,r-1).join(", "),", or ")+t[r-1]:2===r?"one of ".concat(e," ").concat(t[0]," or ").concat(t[1]):"of ".concat(e," ").concat(t[0])}return"of ".concat(e," ").concat(String(t))}i("ERR_INVALID_OPT_VALUE",(function(t,e){return'The value "'+e+'" is invalid for option "'+t+'"'}),TypeError),i("ERR_INVALID_ARG_TYPE",(function(t,e,r){var n,i,o,s;if("string"==typeof e&&(i="not ",e.substr(!o||o<0?0:+o,i.length)===i)?(n="must not be",e=e.replace(/^not /,"")):n="must be",function(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}(t," argument"))s="The ".concat(t," ").concat(n," ").concat(a(e,"type"));else{var l=function(t,e,r){return"number"!=typeof r&&(r=0),!(r+e.length>t.length)&&-1!==t.indexOf(e,r)}(t,".")?"property":"argument";s='The "'.concat(t,'" ').concat(l," ").concat(n," ").concat(a(e,"type"))}return s+=". Received type ".concat(typeof r)}),TypeError),i("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),i("ERR_METHOD_NOT_IMPLEMENTED",(function(t){return"The "+t+" method is not implemented"})),i("ERR_STREAM_PREMATURE_CLOSE","Premature close"),i("ERR_STREAM_DESTROYED",(function(t){return"Cannot call "+t+" after a stream was destroyed"})),i("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),i("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),i("ERR_STREAM_WRITE_AFTER_END","write after end"),i("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),i("ERR_UNKNOWN_ENCODING",(function(t){return"Unknown encoding: "+t}),TypeError),i("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),e.exports.codes=n},{}],545:[function(t,e,r){(function(r){(function(){"use strict";var n=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e};e.exports=c;var i=t("./_stream_readable"),a=t("./_stream_writable");t("inherits")(c,i);for(var o=n(a.prototype),s=0;s0)if("string"==typeof e||o.objectMode||Object.getPrototypeOf(e)===s.prototype||(e=function(t){return s.from(t)}(e)),n)o.endEmitted?w(t,new _):S(t,o,e,!0);else if(o.ended)w(t,new x);else{if(o.destroyed)return!1;o.reading=!1,o.decoder&&!r?(e=o.decoder.write(e),o.objectMode||0!==e.length?S(t,o,e,!1):P(t,o)):S(t,o,e,!1)}else n||(o.reading=!1,P(t,o));return!o.ended&&(o.lengthe.highWaterMark&&(e.highWaterMark=function(t){return t>=1073741824?t=1073741824:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}function L(t){var e=t._readableState;c("emitReadable",e.needReadable,e.emittedReadable),e.needReadable=!1,e.emittedReadable||(c("emitReadable",e.flowing),e.emittedReadable=!0,r.nextTick(C,t))}function C(t){var e=t._readableState;c("emitReadable_",e.destroyed,e.length,e.ended),e.destroyed||!e.length&&!e.ended||(t.emit("readable"),e.emittedReadable=!1),e.needReadable=!e.flowing&&!e.ended&&e.length<=e.highWaterMark,R(t)}function P(t,e){e.readingMore||(e.readingMore=!0,r.nextTick(I,t,e))}function I(t,e){for(;!e.reading&&!e.ended&&(e.length0,e.resumeScheduled&&!e.paused?e.flowing=!0:t.listenerCount("data")>0&&t.resume()}function z(t){c("readable nexttick read 0"),t.read(0)}function D(t,e){c("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),R(t),e.flowing&&!e.reading&&t.read(0)}function R(t){var e=t._readableState;for(c("flow",e.flowing);e.flowing&&null!==t.read(););}function F(t,e){return 0===e.length?null:(e.objectMode?r=e.buffer.shift():!t||t>=e.length?(r=e.decoder?e.buffer.join(""):1===e.buffer.length?e.buffer.first():e.buffer.concat(e.length),e.buffer.clear()):r=e.buffer.consume(t,e.decoder),r);var r}function B(t){var e=t._readableState;c("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,r.nextTick(N,e,t))}function N(t,e){if(c("endReadableNT",t.endEmitted,t.length),!t.endEmitted&&0===t.length&&(t.endEmitted=!0,e.readable=!1,e.emit("end"),t.autoDestroy)){var r=e._writableState;(!r||r.autoDestroy&&r.finished)&&e.destroy()}}function j(t,e){for(var r=0,n=t.length;r=e.highWaterMark:e.length>0)||e.ended))return c("read: emitReadable",e.length,e.ended),0===e.length&&e.ended?B(this):L(this),null;if(0===(t=E(t,e))&&e.ended)return 0===e.length&&B(this),null;var n,i=e.needReadable;return c("need readable",i),(0===e.length||e.length-t0?F(t,e):null)?(e.needReadable=e.length<=e.highWaterMark,t=0):(e.length-=t,e.awaitDrain=0),0===e.length&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&B(this)),null!==n&&this.emit("data",n),n},A.prototype._read=function(t){w(this,new b("_read()"))},A.prototype.pipe=function(t,e){var n=this,i=this._readableState;switch(i.pipesCount){case 0:i.pipes=t;break;case 1:i.pipes=[i.pipes,t];break;default:i.pipes.push(t)}i.pipesCount+=1,c("pipe count=%d opts=%j",i.pipesCount,e);var o=(!e||!1!==e.end)&&t!==r.stdout&&t!==r.stderr?l:g;function s(e,r){c("onunpipe"),e===n&&r&&!1===r.hasUnpiped&&(r.hasUnpiped=!0,c("cleanup"),t.removeListener("close",d),t.removeListener("finish",m),t.removeListener("drain",u),t.removeListener("error",p),t.removeListener("unpipe",s),n.removeListener("end",l),n.removeListener("end",g),n.removeListener("data",h),f=!0,!i.awaitDrain||t._writableState&&!t._writableState.needDrain||u())}function l(){c("onend"),t.end()}i.endEmitted?r.nextTick(o):n.once("end",o),t.on("unpipe",s);var u=function(t){return function(){var e=t._readableState;c("pipeOnDrain",e.awaitDrain),e.awaitDrain&&e.awaitDrain--,0===e.awaitDrain&&a(t,"data")&&(e.flowing=!0,R(t))}}(n);t.on("drain",u);var f=!1;function h(e){c("ondata");var r=t.write(e);c("dest.write",r),!1===r&&((1===i.pipesCount&&i.pipes===t||i.pipesCount>1&&-1!==j(i.pipes,t))&&!f&&(c("false write response, pause",i.awaitDrain),i.awaitDrain++),n.pause())}function p(e){c("onerror",e),g(),t.removeListener("error",p),0===a(t,"error")&&w(t,e)}function d(){t.removeListener("finish",m),g()}function m(){c("onfinish"),t.removeListener("close",d),g()}function g(){c("unpipe"),n.unpipe(t)}return n.on("data",h),function(t,e,r){if("function"==typeof t.prependListener)return t.prependListener(e,r);t._events&&t._events[e]?Array.isArray(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]:t.on(e,r)}(t,"error",p),t.once("close",d),t.once("finish",m),t.emit("pipe",n),i.flowing||(c("pipe resume"),n.resume()),t},A.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(0===e.pipesCount)return this;if(1===e.pipesCount)return t&&t!==e.pipes||(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r)),this;if(!t){var n=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var a=0;a0,!1!==i.flowing&&this.resume()):"readable"===t&&(i.endEmitted||i.readableListening||(i.readableListening=i.needReadable=!0,i.flowing=!1,i.emittedReadable=!1,c("on readable",i.length,i.reading),i.length?L(this):i.reading||r.nextTick(z,this))),n},A.prototype.addListener=A.prototype.on,A.prototype.removeListener=function(t,e){var n=o.prototype.removeListener.call(this,t,e);return"readable"===t&&r.nextTick(O,this),n},A.prototype.removeAllListeners=function(t){var e=o.prototype.removeAllListeners.apply(this,arguments);return"readable"!==t&&void 0!==t||r.nextTick(O,this),e},A.prototype.resume=function(){var t=this._readableState;return t.flowing||(c("resume"),t.flowing=!t.readableListening,function(t,e){e.resumeScheduled||(e.resumeScheduled=!0,r.nextTick(D,t,e))}(this,t)),t.paused=!1,this},A.prototype.pause=function(){return c("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(c("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},A.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;for(var i in t.on("end",(function(){if(c("wrapped end"),r.decoder&&!r.ended){var t=r.decoder.end();t&&t.length&&e.push(t)}e.push(null)})),t.on("data",(function(i){(c("wrapped data"),r.decoder&&(i=r.decoder.write(i)),r.objectMode&&null==i)||(r.objectMode||i&&i.length)&&(e.push(i)||(n=!0,t.pause()))})),t)void 0===this[i]&&"function"==typeof t[i]&&(this[i]=function(e){return function(){return t[e].apply(t,arguments)}}(i));for(var a=0;a-1))throw new _(t);return this._writableState.defaultEncoding=t,this},Object.defineProperty(A.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(A.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),A.prototype._write=function(t,e,r){r(new m("_write()"))},A.prototype._writev=null,A.prototype.end=function(t,e,n){var i=this._writableState;return"function"==typeof t?(n=t,t=null,e=null):"function"==typeof e&&(n=e,e=null),null!=t&&this.write(t,e),i.corked&&(i.corked=1,this.uncork()),i.ending||function(t,e,n){e.ending=!0,P(t,e),n&&(e.finished?r.nextTick(n):t.once("finish",n));e.ended=!0,t.writable=!1}(this,i,n),this},Object.defineProperty(A.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(A.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(t){this._writableState&&(this._writableState.destroyed=t)}}),A.prototype.destroy=f.destroy,A.prototype._undestroy=f.undestroy,A.prototype._destroy=function(t,e){e(t)}}).call(this)}).call(this,t("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"../errors":544,"./_stream_duplex":545,"./internal/streams/destroy":552,"./internal/streams/state":556,"./internal/streams/stream":557,_process:504,buffer:112,inherits:429,"util-deprecate":595}],550:[function(t,e,r){(function(r){(function(){"use strict";var n;function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var a=t("./end-of-stream"),o=Symbol("lastResolve"),s=Symbol("lastReject"),l=Symbol("error"),c=Symbol("ended"),u=Symbol("lastPromise"),f=Symbol("handlePromise"),h=Symbol("stream");function p(t,e){return{value:t,done:e}}function d(t){var e=t[o];if(null!==e){var r=t[h].read();null!==r&&(t[u]=null,t[o]=null,t[s]=null,e(p(r,!1)))}}function m(t){r.nextTick(d,t)}var g=Object.getPrototypeOf((function(){})),v=Object.setPrototypeOf((i(n={get stream(){return this[h]},next:function(){var t=this,e=this[l];if(null!==e)return Promise.reject(e);if(this[c])return Promise.resolve(p(void 0,!0));if(this[h].destroyed)return new Promise((function(e,n){r.nextTick((function(){t[l]?n(t[l]):e(p(void 0,!0))}))}));var n,i=this[u];if(i)n=new Promise(function(t,e){return function(r,n){t.then((function(){e[c]?r(p(void 0,!0)):e[f](r,n)}),n)}}(i,this));else{var a=this[h].read();if(null!==a)return Promise.resolve(p(a,!1));n=new Promise(this[f])}return this[u]=n,n}},Symbol.asyncIterator,(function(){return this})),i(n,"return",(function(){var t=this;return new Promise((function(e,r){t[h].destroy(null,(function(t){t?r(t):e(p(void 0,!0))}))}))})),n),g);e.exports=function(t){var e,r=Object.create(v,(i(e={},h,{value:t,writable:!0}),i(e,o,{value:null,writable:!0}),i(e,s,{value:null,writable:!0}),i(e,l,{value:null,writable:!0}),i(e,c,{value:t._readableState.endEmitted,writable:!0}),i(e,f,{value:function(t,e){var n=r[h].read();n?(r[u]=null,r[o]=null,r[s]=null,t(p(n,!1))):(r[o]=t,r[s]=e)},writable:!0}),e));return r[u]=null,a(t,(function(t){if(t&&"ERR_STREAM_PREMATURE_CLOSE"!==t.code){var e=r[s];return null!==e&&(r[u]=null,r[o]=null,r[s]=null,e(t)),void(r[l]=t)}var n=r[o];null!==n&&(r[u]=null,r[o]=null,r[s]=null,n(p(void 0,!0))),r[c]=!0})),t.on("readable",m.bind(null,r)),r}}).call(this)}).call(this,t("_process"))},{"./end-of-stream":553,_process:504}],551:[function(t,e,r){"use strict";function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function a(t,e){for(var r=0;r0?this.tail.next=e:this.head=e,this.tail=e,++this.length}},{key:"unshift",value:function(t){var e={data:t,next:this.head};0===this.length&&(this.tail=e),this.head=e,++this.length}},{key:"shift",value:function(){if(0!==this.length){var t=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,t}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(t){if(0===this.length)return"";for(var e=this.head,r=""+e.data;e=e.next;)r+=t+e.data;return r}},{key:"concat",value:function(t){if(0===this.length)return o.alloc(0);for(var e,r,n,i=o.allocUnsafe(t>>>0),a=this.head,s=0;a;)e=a.data,r=i,n=s,o.prototype.copy.call(e,r,n),s+=a.data.length,a=a.next;return i}},{key:"consume",value:function(t,e){var r;return ti.length?i.length:t;if(a===i.length?n+=i:n+=i.slice(0,t),0==(t-=a)){a===i.length?(++r,e.next?this.head=e.next:this.head=this.tail=null):(this.head=e,e.data=i.slice(a));break}++r}return this.length-=r,n}},{key:"_getBuffer",value:function(t){var e=o.allocUnsafe(t),r=this.head,n=1;for(r.data.copy(e),t-=r.data.length;r=r.next;){var i=r.data,a=t>i.length?i.length:t;if(i.copy(e,e.length-t,0,a),0==(t-=a)){a===i.length?(++n,r.next?this.head=r.next:this.head=this.tail=null):(this.head=r,r.data=i.slice(a));break}++n}return this.length-=n,e}},{key:l,value:function(t,e){return s(this,function(t){for(var e=1;e0,(function(t){n||(n=t),t&&o.forEach(c),a||(o.forEach(c),i(n))}))}));return e.reduce(u)}},{"../../../errors":544,"./end-of-stream":553}],556:[function(t,e,r){"use strict";var n=t("../../../errors").codes.ERR_INVALID_OPT_VALUE;e.exports={getHighWaterMark:function(t,e,r,i){var a=function(t,e,r){return null!=t.highWaterMark?t.highWaterMark:e?t[r]:null}(e,i,r);if(null!=a){if(!isFinite(a)||Math.floor(a)!==a||a<0)throw new n(i?r:"highWaterMark",a);return Math.floor(a)}return t.objectMode?16:16384}}},{"../../../errors":544}],557:[function(t,e,r){e.exports=t("events").EventEmitter},{events:237}],558:[function(t,e,r){(function(r,n){(function(){var r=t("assert"),i=t("debug")("stream-parser");e.exports=function(t){var e=t&&"function"==typeof t._transform,r=t&&"function"==typeof t._write;if(!e&&!r)throw new Error("must pass a Writable or Transform stream in");i("extending Parser into stream"),t._bytes=o,t._skipBytes=s,e&&(t._passthrough=l);e?t._transform=u:t._write=c};function a(t){i("initializing parser stream"),t._parserBytesLeft=0,t._parserBuffers=[],t._parserBuffered=0,t._parserState=-1,t._parserCallback=null,"function"==typeof t.push&&(t._parserOutput=t.push.bind(t)),t._parserInit=!0}function o(t,e){r(!this._parserCallback,'there is already a "callback" set!'),r(isFinite(t)&&t>0,'can only buffer a finite number of bytes > 0, got "'+t+'"'),this._parserInit||a(this),i("buffering %o bytes",t),this._parserBytesLeft=t,this._parserCallback=e,this._parserState=0}function s(t,e){r(!this._parserCallback,'there is already a "callback" set!'),r(t>0,'can only skip > 0 bytes, got "'+t+'"'),this._parserInit||a(this),i("skipping %o bytes",t),this._parserBytesLeft=t,this._parserCallback=e,this._parserState=1}function l(t,e){r(!this._parserCallback,'There is already a "callback" set!'),r(t>0,'can only pass through > 0 bytes, got "'+t+'"'),this._parserInit||a(this),i("passing through %o bytes",t),this._parserBytesLeft=t,this._parserCallback=e,this._parserState=2}function c(t,e,r){this._parserInit||a(this),i("write(%o bytes)",t.length),"function"==typeof e&&(r=e),h(this,t,null,r)}function u(t,e,r){this._parserInit||a(this),i("transform(%o bytes)",t.length),"function"!=typeof e&&(e=this._parserOutput),h(this,t,e,r)}function f(t,e,r,a){if(t._parserBytesLeft-=e.length,i("%o bytes left for stream piece",t._parserBytesLeft),0===t._parserState?(t._parserBuffers.push(e),t._parserBuffered+=e.length):2===t._parserState&&r(e),0!==t._parserBytesLeft)return a;var o=t._parserCallback;if(o&&0===t._parserState&&t._parserBuffers.length>1&&(e=n.concat(t._parserBuffers,t._parserBuffered)),0!==t._parserState&&(e=null),t._parserCallback=null,t._parserBuffered=0,t._parserState=-1,t._parserBuffers.splice(0),o){var s=[];e&&s.push(e),r&&s.push(r);var l=o.length>s.length;l&&s.push(p(a));var c=o.apply(t,s);if(!l||a===c)return a}}var h=p((function t(e,r,n,i){return e._parserBytesLeft<=0?i(new Error("got data but not currently parsing anything")):r.length<=e._parserBytesLeft?function(){return f(e,r,n,i)}:function(){var a=r.slice(0,e._parserBytesLeft);return f(e,a,n,(function(o){return o?i(o):r.length>a.length?function(){return t(e,r.slice(a.length),n,i)}:void 0}))}}));function p(t){return function(){for(var e=t.apply(this,arguments);"function"==typeof e;)e=e();return e}}}).call(this)}).call(this,t("_process"),t("buffer").Buffer)},{_process:504,assert:76,buffer:112,debug:559}],559:[function(t,e,r){(function(n){(function(){function i(){var t;try{t=r.storage.debug}catch(t){}return!t&&void 0!==n&&"env"in n&&(t=n.env.DEBUG),t}(r=e.exports=t("./debug")).log=function(){return"object"==typeof console&&console.log&&Function.prototype.apply.call(console.log,console,arguments)},r.formatArgs=function(t){var e=this.useColors;if(t[0]=(e?"%c":"")+this.namespace+(e?" %c":" ")+t[0]+(e?"%c ":" ")+"+"+r.humanize(this.diff),!e)return;var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var i=0,a=0;t[0].replace(/%[a-zA-Z%]/g,(function(t){"%%"!==t&&(i++,"%c"===t&&(a=i))})),t.splice(a,0,n)},r.save=function(t){try{null==t?r.storage.removeItem("debug"):r.storage.debug=t}catch(t){}},r.load=i,r.useColors=function(){if("undefined"!=typeof window&&window.process&&"renderer"===window.process.type)return!0;return"undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)},r.storage="undefined"!=typeof chrome&&void 0!==chrome.storage?chrome.storage.local:function(){try{return window.localStorage}catch(t){}}(),r.colors=["lightseagreen","forestgreen","goldenrod","dodgerblue","darkorchid","crimson"],r.formatters.j=function(t){try{return JSON.stringify(t)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}},r.enable(i())}).call(this)}).call(this,t("_process"))},{"./debug":560,_process:504}],560:[function(t,e,r){var n;function i(t){function e(){if(e.enabled){var t=e,i=+new Date,a=i-(n||i);t.diff=a,t.prev=n,t.curr=i,n=i;for(var o=new Array(arguments.length),s=0;s0)return function(t){if((t=String(t)).length>100)return;var e=/^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(t);if(!e)return;var r=parseFloat(e[1]);switch((e[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return 315576e5*r;case"days":case"day":case"d":return r*o;case"hours":case"hour":case"hrs":case"hr":case"h":return r*a;case"minutes":case"minute":case"mins":case"min":case"m":return r*i;case"seconds":case"second":case"secs":case"sec":case"s":return r*n;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return r;default:return}}(t);if("number"===l&&!1===isNaN(t))return e.long?s(r=t,o,"day")||s(r,a,"hour")||s(r,i,"minute")||s(r,n,"second")||r+" ms":function(t){if(t>=o)return Math.round(t/o)+"d";if(t>=a)return Math.round(t/a)+"h";if(t>=i)return Math.round(t/i)+"m";if(t>=n)return Math.round(t/n)+"s";return t+"ms"}(t);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(t))}},{}],562:[function(t,e,r){"use strict";var n=t("parenthesis");e.exports=function(t,e,r){if(null==t)throw Error("First argument should be a string");if(null==e)throw Error("Separator should be a string or a RegExp");r?("string"==typeof r||Array.isArray(r))&&(r={ignore:r}):r={},null==r.escape&&(r.escape=!0),null==r.ignore?r.ignore=["[]","()","{}","<>",'""',"''","``","\u201c\u201d","\xab\xbb"]:("string"==typeof r.ignore&&(r.ignore=[r.ignore]),r.ignore=r.ignore.map((function(t){return 1===t.length&&(t+=t),t})));var i=n.parse(t,{flat:!0,brackets:r.ignore}),a=i[0].split(e);if(r.escape){for(var o=[],s=0;s>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function s(t){var e=this.lastTotal-this.lastNeed,r=function(t,e,r){if(128!=(192&e[0]))return t.lastNeed=0,"\ufffd";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"\ufffd";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"\ufffd"}}(this,t);return void 0!==r?r:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function l(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function c(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function u(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function f(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function h(t){return t.toString(this.encoding)}function p(t){return t&&t.length?this.write(t):""}r.StringDecoder=a,a.prototype.write=function(t){if(0===t.length)return"";var e,r;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r=0)return i>0&&(t.lastNeed=i-1),i;if(--n=0)return i>0&&(t.lastNeed=i-2),i;if(--n=0)return i>0&&(2===i?i=0:t.lastNeed=i-3),i;return 0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)},a.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length}},{"safe-buffer":530}],564:[function(t,e,r){"use strict";e.exports=function(t){for(var e=t.length,r=new Array(e),n=new Array(e),i=new Array(e),a=new Array(e),o=new Array(e),s=new Array(e),l=0;l0;){e=c[c.length-1];var p=t[e];if(a[e]=0&&s[e].push(o[m])}a[e]=d}else{if(n[e]===r[e]){var g=[],v=[],y=0;for(d=l.length-1;d>=0;--d){var x=l[d];if(i[x]=!1,g.push(x),v.push(s[x]),y+=s[x].length,o[x]=f.length,x===e){l.length=d;break}}f.push(g);var b=new Array(y);for(d=0;dn|0},vertex:function(t,e,r,n,i,a,o,s,l,c,u,f,h){var p=(o<<0)+(s<<1)+(l<<2)+(c<<3)|0;if(0!==p&&15!==p)switch(p){case 0:u.push([t-.5,e-.5]);break;case 1:u.push([t-.25-.25*(n+r-2*h)/(r-n),e-.25-.25*(i+r-2*h)/(r-i)]);break;case 2:u.push([t-.75-.25*(-n-r+2*h)/(n-r),e-.25-.25*(a+n-2*h)/(n-a)]);break;case 3:u.push([t-.5,e-.5-.5*(i+r+a+n-4*h)/(r-i+n-a)]);break;case 4:u.push([t-.25-.25*(a+i-2*h)/(i-a),e-.75-.25*(-i-r+2*h)/(i-r)]);break;case 5:u.push([t-.5-.5*(n+r+a+i-4*h)/(r-n+i-a),e-.5]);break;case 6:u.push([t-.5-.25*(-n-r+a+i)/(n-r+i-a),e-.5-.25*(-i-r+a+n)/(i-r+n-a)]);break;case 7:u.push([t-.75-.25*(a+i-2*h)/(i-a),e-.75-.25*(a+n-2*h)/(n-a)]);break;case 8:u.push([t-.75-.25*(-a-i+2*h)/(a-i),e-.75-.25*(-a-n+2*h)/(a-n)]);break;case 9:u.push([t-.5-.25*(n+r+-a-i)/(r-n+a-i),e-.5-.25*(i+r+-a-n)/(r-i+a-n)]);break;case 10:u.push([t-.5-.5*(-n-r-a-i+4*h)/(n-r+a-i),e-.5]);break;case 11:u.push([t-.25-.25*(-a-i+2*h)/(a-i),e-.75-.25*(i+r-2*h)/(r-i)]);break;case 12:u.push([t-.5,e-.5-.5*(-i-r-a-n+4*h)/(i-r+a-n)]);break;case 13:u.push([t-.75-.25*(n+r-2*h)/(r-n),e-.25-.25*(-a-n+2*h)/(a-n)]);break;case 14:u.push([t-.25-.25*(-n-r+2*h)/(n-r),e-.25-.25*(-i-r+2*h)/(i-r)]);break;case 15:u.push([t-.5,e-.5])}},cell:function(t,e,r,n,i,a,o,s,l){i?s.push([t,e]):s.push([e,t])}});return function(t,e){var r=[],i=[];return n(t,r,i,e),{positions:r,cells:i}}}};var o={}},{"ndarray-extract-contour":454,"zero-crossings":620}],566:[function(t,e,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=function(t,e){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return function(t,e){var r=[],n=!0,i=!1,a=void 0;try{for(var o,s=t[Symbol.iterator]();!(n=(o=s.next()).done)&&(r.push(o.value),!e||r.length!==e);n=!0);}catch(t){i=!0,a=t}finally{try{!n&&s.return&&s.return()}finally{if(i)throw a}}return r}(t,e);throw new TypeError("Invalid attempt to destructure non-iterable instance")},i=2*Math.PI,a=function(t,e,r,n,i,a,o){var s=t.x,l=t.y;return{x:n*(s*=e)-i*(l*=r)+a,y:i*s+n*l+o}},o=function(t,e){var r=1.5707963267948966===e?.551915024494:-1.5707963267948966===e?-.551915024494:4/3*Math.tan(e/4),n=Math.cos(t),i=Math.sin(t),a=Math.cos(t+e),o=Math.sin(t+e);return[{x:n-i*r,y:i+n*r},{x:a+o*r,y:o-a*r},{x:a,y:o}]},s=function(t,e,r,n){var i=t*r+e*n;return i>1&&(i=1),i<-1&&(i=-1),(t*n-e*r<0?-1:1)*Math.acos(i)};r.default=function(t){var e=t.px,r=t.py,l=t.cx,c=t.cy,u=t.rx,f=t.ry,h=t.xAxisRotation,p=void 0===h?0:h,d=t.largeArcFlag,m=void 0===d?0:d,g=t.sweepFlag,v=void 0===g?0:g,y=[];if(0===u||0===f)return[];var x=Math.sin(p*i/360),b=Math.cos(p*i/360),_=b*(e-l)/2+x*(r-c)/2,w=-x*(e-l)/2+b*(r-c)/2;if(0===_&&0===w)return[];u=Math.abs(u),f=Math.abs(f);var T=Math.pow(_,2)/Math.pow(u,2)+Math.pow(w,2)/Math.pow(f,2);T>1&&(u*=Math.sqrt(T),f*=Math.sqrt(T));var k=function(t,e,r,n,a,o,l,c,u,f,h,p){var d=Math.pow(a,2),m=Math.pow(o,2),g=Math.pow(h,2),v=Math.pow(p,2),y=d*m-d*v-m*g;y<0&&(y=0),y/=d*v+m*g;var x=(y=Math.sqrt(y)*(l===c?-1:1))*a/o*p,b=y*-o/a*h,_=f*x-u*b+(t+r)/2,w=u*x+f*b+(e+n)/2,T=(h-x)/a,k=(p-b)/o,A=(-h-x)/a,M=(-p-b)/o,S=s(1,0,T,k),E=s(T,k,A,M);return 0===c&&E>0&&(E-=i),1===c&&E<0&&(E+=i),[_,w,S,E]}(e,r,l,c,u,f,m,v,x,b,_,w),A=n(k,4),M=A[0],S=A[1],E=A[2],L=A[3],C=Math.abs(L)/(i/4);Math.abs(1-C)<1e-7&&(C=1);var P=Math.max(Math.ceil(C),1);L/=P;for(var I=0;Ie[2]&&(e[2]=l[c+0]),l[c+1]>e[3]&&(e[3]=l[c+1]);return e}},{"abs-svg-path":67,"is-svg-path":439,"normalize-svg-path":568,"parse-svg-path":472}],568:[function(t,e,r){"use strict";e.exports=function(t){for(var e,r=[],o=0,s=0,l=0,c=0,u=null,f=null,h=0,p=0,d=0,m=t.length;d4?(o=g[g.length-4],s=g[g.length-3]):(o=h,s=p),r.push(g)}return r};var n=t("svg-arc-to-cubic-bezier");function i(t,e,r,n){return["C",t,e,r,n,r,n]}function a(t,e,r,n,i,a){return["C",t/3+2/3*r,e/3+2/3*n,i/3+2/3*r,a/3+2/3*n,i,a]}},{"svg-arc-to-cubic-bezier":566}],569:[function(t,e,r){"use strict";var n,i=t("svg-path-bounds"),a=t("parse-svg-path"),o=t("draw-svg-path"),s=t("is-svg-path"),l=t("bitmap-sdf"),c=document.createElement("canvas"),u=c.getContext("2d");e.exports=function(t,e){if(!s(t))throw Error("Argument should be valid svg path string");e||(e={});var r,f;e.shape?(r=e.shape[0],f=e.shape[1]):(r=c.width=e.w||e.width||200,f=c.height=e.h||e.height||200);var h=Math.min(r,f),p=e.stroke||0,d=e.viewbox||e.viewBox||i(t),m=[r/(d[2]-d[0]),f/(d[3]-d[1])],g=Math.min(m[0]||0,m[1]||0)/2;u.fillStyle="black",u.fillRect(0,0,r,f),u.fillStyle="white",p&&("number"!=typeof p&&(p=1),u.strokeStyle=p>0?"white":"black",u.lineWidth=Math.abs(p));if(u.translate(.5*r,.5*f),u.scale(g,g),function(){if(null!=n)return n;var t=document.createElement("canvas").getContext("2d");if(t.canvas.width=t.canvas.height=1,!window.Path2D)return n=!1;var e=new Path2D("M0,0h1v1h-1v-1Z");t.fillStyle="black",t.fill(e);var r=t.getImageData(0,0,1,1);return n=r&&r.data&&255===r.data[3]}()){var v=new Path2D(t);u.fill(v),p&&u.stroke(v)}else{var y=a(t);o(u,y),u.fill(),p&&u.stroke()}return u.setTransform(1,0,0,1,0,0),l(u,{cutoff:null!=e.cutoff?e.cutoff:.5,radius:null!=e.radius?e.radius:.5*h})}},{"bitmap-sdf":102,"draw-svg-path":175,"is-svg-path":439,"parse-svg-path":472,"svg-path-bounds":567}],570:[function(t,e,r){(function(r){(function(){"use strict";e.exports=function t(e,r,i){i=i||{};var o=a[e];o||(o=a[e]={" ":{data:new Float32Array(0),shape:.2}});var s=o[r];if(!s)if(r.length<=1||!/\d/.test(r))s=o[r]=function(t){for(var e=t.cells,r=t.positions,n=new Float32Array(6*e.length),i=0,a=0,o=0;o0&&(f+=.02);var p=new Float32Array(u),d=0,m=-.5*f;for(h=0;h=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},r.setImmediate="function"==typeof e?e:function(t){var e=l++,n=!(arguments.length<2)&&o.call(arguments,1);return s[e]=!0,i((function(){s[e]&&(n?t.apply(null,n):t.call(null),r.clearImmediate(e))})),e},r.clearImmediate="function"==typeof n?n:function(t){delete s[t]}}).call(this)}).call(this,t("timers").setImmediate,t("timers").clearImmediate)},{"process/browser.js":504,timers:571}],572:[function(t,e,r){!function(t){var r=/^\s+/,n=/\s+$/,i=0,a=t.round,o=t.min,s=t.max,l=t.random;function c(e,l){if(l=l||{},(e=e||"")instanceof c)return e;if(!(this instanceof c))return new c(e,l);var u=function(e){var i={r:0,g:0,b:0},a=1,l=null,c=null,u=null,f=!1,h=!1;"string"==typeof e&&(e=function(t){t=t.replace(r,"").replace(n,"").toLowerCase();var e,i=!1;if(S[t])t=S[t],i=!0;else if("transparent"==t)return{r:0,g:0,b:0,a:0,format:"name"};if(e=j.rgb.exec(t))return{r:e[1],g:e[2],b:e[3]};if(e=j.rgba.exec(t))return{r:e[1],g:e[2],b:e[3],a:e[4]};if(e=j.hsl.exec(t))return{h:e[1],s:e[2],l:e[3]};if(e=j.hsla.exec(t))return{h:e[1],s:e[2],l:e[3],a:e[4]};if(e=j.hsv.exec(t))return{h:e[1],s:e[2],v:e[3]};if(e=j.hsva.exec(t))return{h:e[1],s:e[2],v:e[3],a:e[4]};if(e=j.hex8.exec(t))return{r:I(e[1]),g:I(e[2]),b:I(e[3]),a:R(e[4]),format:i?"name":"hex8"};if(e=j.hex6.exec(t))return{r:I(e[1]),g:I(e[2]),b:I(e[3]),format:i?"name":"hex"};if(e=j.hex4.exec(t))return{r:I(e[1]+""+e[1]),g:I(e[2]+""+e[2]),b:I(e[3]+""+e[3]),a:R(e[4]+""+e[4]),format:i?"name":"hex8"};if(e=j.hex3.exec(t))return{r:I(e[1]+""+e[1]),g:I(e[2]+""+e[2]),b:I(e[3]+""+e[3]),format:i?"name":"hex"};return!1}(e));"object"==typeof e&&(U(e.r)&&U(e.g)&&U(e.b)?(p=e.r,d=e.g,m=e.b,i={r:255*C(p,255),g:255*C(d,255),b:255*C(m,255)},f=!0,h="%"===String(e.r).substr(-1)?"prgb":"rgb"):U(e.h)&&U(e.s)&&U(e.v)?(l=z(e.s),c=z(e.v),i=function(e,r,n){e=6*C(e,360),r=C(r,100),n=C(n,100);var i=t.floor(e),a=e-i,o=n*(1-r),s=n*(1-a*r),l=n*(1-(1-a)*r),c=i%6;return{r:255*[n,s,o,o,l,n][c],g:255*[l,n,n,s,o,o][c],b:255*[o,o,l,n,n,s][c]}}(e.h,l,c),f=!0,h="hsv"):U(e.h)&&U(e.s)&&U(e.l)&&(l=z(e.s),u=z(e.l),i=function(t,e,r){var n,i,a;function o(t,e,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?t+6*(e-t)*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}if(t=C(t,360),e=C(e,100),r=C(r,100),0===e)n=i=a=r;else{var s=r<.5?r*(1+e):r+e-r*e,l=2*r-s;n=o(l,s,t+1/3),i=o(l,s,t),a=o(l,s,t-1/3)}return{r:255*n,g:255*i,b:255*a}}(e.h,l,u),f=!0,h="hsl"),e.hasOwnProperty("a")&&(a=e.a));var p,d,m;return a=L(a),{ok:f,format:e.format||h,r:o(255,s(i.r,0)),g:o(255,s(i.g,0)),b:o(255,s(i.b,0)),a:a}}(e);this._originalInput=e,this._r=u.r,this._g=u.g,this._b=u.b,this._a=u.a,this._roundA=a(100*this._a)/100,this._format=l.format||u.format,this._gradientType=l.gradientType,this._r<1&&(this._r=a(this._r)),this._g<1&&(this._g=a(this._g)),this._b<1&&(this._b=a(this._b)),this._ok=u.ok,this._tc_id=i++}function u(t,e,r){t=C(t,255),e=C(e,255),r=C(r,255);var n,i,a=s(t,e,r),l=o(t,e,r),c=(a+l)/2;if(a==l)n=i=0;else{var u=a-l;switch(i=c>.5?u/(2-a-l):u/(a+l),a){case t:n=(e-r)/u+(e>1)+720)%360;--e;)n.h=(n.h+i)%360,a.push(c(n));return a}function M(t,e){e=e||6;for(var r=c(t).toHsv(),n=r.h,i=r.s,a=r.v,o=[],s=1/e;e--;)o.push(c({h:n,s:i,v:a})),a=(a+s)%1;return o}c.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var e,r,n,i=this.toRgb();return e=i.r/255,r=i.g/255,n=i.b/255,.2126*(e<=.03928?e/12.92:t.pow((e+.055)/1.055,2.4))+.7152*(r<=.03928?r/12.92:t.pow((r+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:t.pow((n+.055)/1.055,2.4))},setAlpha:function(t){return this._a=L(t),this._roundA=a(100*this._a)/100,this},toHsv:function(){var t=f(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=f(this._r,this._g,this._b),e=a(360*t.h),r=a(100*t.s),n=a(100*t.v);return 1==this._a?"hsv("+e+", "+r+"%, "+n+"%)":"hsva("+e+", "+r+"%, "+n+"%, "+this._roundA+")"},toHsl:function(){var t=u(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=u(this._r,this._g,this._b),e=a(360*t.h),r=a(100*t.s),n=a(100*t.l);return 1==this._a?"hsl("+e+", "+r+"%, "+n+"%)":"hsla("+e+", "+r+"%, "+n+"%, "+this._roundA+")"},toHex:function(t){return h(this._r,this._g,this._b,t)},toHexString:function(t){return"#"+this.toHex(t)},toHex8:function(t){return function(t,e,r,n,i){var o=[O(a(t).toString(16)),O(a(e).toString(16)),O(a(r).toString(16)),O(D(n))];if(i&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)&&o[3].charAt(0)==o[3].charAt(1))return o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0)+o[3].charAt(0);return o.join("")}(this._r,this._g,this._b,this._a,t)},toHex8String:function(t){return"#"+this.toHex8(t)},toRgb:function(){return{r:a(this._r),g:a(this._g),b:a(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+a(this._r)+", "+a(this._g)+", "+a(this._b)+")":"rgba("+a(this._r)+", "+a(this._g)+", "+a(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:a(100*C(this._r,255))+"%",g:a(100*C(this._g,255))+"%",b:a(100*C(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+a(100*C(this._r,255))+"%, "+a(100*C(this._g,255))+"%, "+a(100*C(this._b,255))+"%)":"rgba("+a(100*C(this._r,255))+"%, "+a(100*C(this._g,255))+"%, "+a(100*C(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(E[h(this._r,this._g,this._b,!0)]||!1)},toFilter:function(t){var e="#"+p(this._r,this._g,this._b,this._a),r=e,n=this._gradientType?"GradientType = 1, ":"";if(t){var i=c(t);r="#"+p(i._r,i._g,i._b,i._a)}return"progid:DXImageTransform.Microsoft.gradient("+n+"startColorstr="+e+",endColorstr="+r+")"},toString:function(t){var e=!!t;t=t||this._format;var r=!1,n=this._a<1&&this._a>=0;return e||!n||"hex"!==t&&"hex6"!==t&&"hex3"!==t&&"hex4"!==t&&"hex8"!==t&&"name"!==t?("rgb"===t&&(r=this.toRgbString()),"prgb"===t&&(r=this.toPercentageRgbString()),"hex"!==t&&"hex6"!==t||(r=this.toHexString()),"hex3"===t&&(r=this.toHexString(!0)),"hex4"===t&&(r=this.toHex8String(!0)),"hex8"===t&&(r=this.toHex8String()),"name"===t&&(r=this.toName()),"hsl"===t&&(r=this.toHslString()),"hsv"===t&&(r=this.toHsvString()),r||this.toHexString()):"name"===t&&0===this._a?this.toName():this.toRgbString()},clone:function(){return c(this.toString())},_applyModification:function(t,e){var r=t.apply(null,[this].concat([].slice.call(e)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(v,arguments)},brighten:function(){return this._applyModification(y,arguments)},darken:function(){return this._applyModification(x,arguments)},desaturate:function(){return this._applyModification(d,arguments)},saturate:function(){return this._applyModification(m,arguments)},greyscale:function(){return this._applyModification(g,arguments)},spin:function(){return this._applyModification(b,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(A,arguments)},complement:function(){return this._applyCombination(_,arguments)},monochromatic:function(){return this._applyCombination(M,arguments)},splitcomplement:function(){return this._applyCombination(k,arguments)},triad:function(){return this._applyCombination(w,arguments)},tetrad:function(){return this._applyCombination(T,arguments)}},c.fromRatio=function(t,e){if("object"==typeof t){var r={};for(var n in t)t.hasOwnProperty(n)&&(r[n]="a"===n?t[n]:z(t[n]));t=r}return c(t,e)},c.equals=function(t,e){return!(!t||!e)&&c(t).toRgbString()==c(e).toRgbString()},c.random=function(){return c.fromRatio({r:l(),g:l(),b:l()})},c.mix=function(t,e,r){r=0===r?0:r||50;var n=c(t).toRgb(),i=c(e).toRgb(),a=r/100;return c({r:(i.r-n.r)*a+n.r,g:(i.g-n.g)*a+n.g,b:(i.b-n.b)*a+n.b,a:(i.a-n.a)*a+n.a})},c.readability=function(e,r){var n=c(e),i=c(r);return(t.max(n.getLuminance(),i.getLuminance())+.05)/(t.min(n.getLuminance(),i.getLuminance())+.05)},c.isReadable=function(t,e,r){var n,i,a=c.readability(t,e);switch(i=!1,(n=function(t){var e,r;e=((t=t||{level:"AA",size:"small"}).level||"AA").toUpperCase(),r=(t.size||"small").toLowerCase(),"AA"!==e&&"AAA"!==e&&(e="AA");"small"!==r&&"large"!==r&&(r="small");return{level:e,size:r}}(r)).level+n.size){case"AAsmall":case"AAAlarge":i=a>=4.5;break;case"AAlarge":i=a>=3;break;case"AAAsmall":i=a>=7}return i},c.mostReadable=function(t,e,r){var n,i,a,o,s=null,l=0;i=(r=r||{}).includeFallbackColors,a=r.level,o=r.size;for(var u=0;ul&&(l=n,s=c(e[u]));return c.isReadable(t,s,{level:a,size:o})||!i?s:(r.includeFallbackColors=!1,c.mostReadable(t,["#fff","#000"],r))};var S=c.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},E=c.hexNames=function(t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[t[r]]=r);return e}(S);function L(t){return t=parseFloat(t),(isNaN(t)||t<0||t>1)&&(t=1),t}function C(e,r){(function(t){return"string"==typeof t&&-1!=t.indexOf(".")&&1===parseFloat(t)})(e)&&(e="100%");var n=function(t){return"string"==typeof t&&-1!=t.indexOf("%")}(e);return e=o(r,s(0,parseFloat(e))),n&&(e=parseInt(e*r,10)/100),t.abs(e-r)<1e-6?1:e%r/parseFloat(r)}function P(t){return o(1,s(0,t))}function I(t){return parseInt(t,16)}function O(t){return 1==t.length?"0"+t:""+t}function z(t){return t<=1&&(t=100*t+"%"),t}function D(e){return t.round(255*parseFloat(e)).toString(16)}function R(t){return I(t)/255}var F,B,N,j=(B="[\\s|\\(]+("+(F="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+F+")[,|\\s]+("+F+")\\s*\\)?",N="[\\s|\\(]+("+F+")[,|\\s]+("+F+")[,|\\s]+("+F+")[,|\\s]+("+F+")\\s*\\)?",{CSS_UNIT:new RegExp(F),rgb:new RegExp("rgb"+B),rgba:new RegExp("rgba"+N),hsl:new RegExp("hsl"+B),hsla:new RegExp("hsla"+N),hsv:new RegExp("hsv"+B),hsva:new RegExp("hsva"+N),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function U(t){return!!j.CSS_UNIT.exec(t)}void 0!==e&&e.exports?e.exports=c:window.tinycolor=c}(Math)},{}],573:[function(t,e,r){"use strict";e.exports=i,e.exports.float32=e.exports.float=i,e.exports.fract32=e.exports.fract=function(t,e){if(t.length){if(t instanceof Float32Array)return new Float32Array(t.length);e instanceof Float32Array||(e=i(t));for(var r=0,n=e.length;ro&&(o=t[0]),t[1]s&&(s=t[1])}function c(t){switch(t.type){case"GeometryCollection":t.geometries.forEach(c);break;case"Point":l(t.coordinates);break;case"MultiPoint":t.coordinates.forEach(l)}}for(e in t.arcs.forEach((function(t){for(var e,r=-1,l=t.length;++ro&&(o=e[0]),e[1]s&&(s=e[1])})),t.objects)c(t.objects[e]);return[i,a,o,s]}function i(t,e){var r=e.id,n=e.bbox,i=null==e.properties?{}:e.properties,o=a(t,e);return null==r&&null==n?{type:"Feature",properties:i,geometry:o}:null==n?{type:"Feature",id:r,properties:i,geometry:o}:{type:"Feature",id:r,bbox:n,properties:i,geometry:o}}function a(t,e){var n=r(t.transform),i=t.arcs;function a(t,e){e.length&&e.pop();for(var r=i[t<0?~t:t],a=0,o=r.length;a1)n=l(t,e,r);else for(i=0,n=new Array(a=t.arcs.length);i1)for(var a,s,c=1,u=l(i[0]);cu&&(s=i[0],i[0]=i[c],i[c]=s,u=a);return i})).filter((function(t){return t.length>0}))}}function u(t,e){for(var r=0,n=t.length;r>>1;t[i]=2))throw new Error("n must be \u22652");var r,i=(l=t.bbox||n(t))[0],a=l[1],o=l[2],s=l[3];e={scale:[o-i?(o-i)/(r-1):1,s-a?(s-a)/(r-1):1],translate:[i,a]}}var l,c,u=f(e),h=t.objects,p={};function d(t){return u(t)}function m(t){var e;switch(t.type){case"GeometryCollection":e={type:"GeometryCollection",geometries:t.geometries.map(m)};break;case"Point":e={type:"Point",coordinates:d(t.coordinates)};break;case"MultiPoint":e={type:"MultiPoint",coordinates:t.coordinates.map(d)};break;default:return t}return null!=t.id&&(e.id=t.id),null!=t.bbox&&(e.bbox=t.bbox),null!=t.properties&&(e.properties=t.properties),e}for(c in h)p[c]=m(h[c]);return{type:"Topology",bbox:l,transform:e,objects:p,arcs:t.arcs.map((function(t){var e,r=0,n=1,i=t.length,a=new Array(i);for(a[0]=u(t[0],0);++rMath.max(r,n)?i[2]=1:r>Math.max(e,n)?i[0]=1:i[1]=1;for(var a=0,o=0,l=0;l<3;++l)a+=t[l]*t[l],o+=i[l]*t[l];for(l=0;l<3;++l)i[l]-=o/a*t[l];return s(i,i),i}function h(t,e,r,i,a,o,s,l){this.center=n(r),this.up=n(i),this.right=n(a),this.radius=n([o]),this.angle=n([s,l]),this.angle.bounds=[[-1/0,-Math.PI/2],[1/0,Math.PI/2]],this.setDistanceLimits(t,e),this.computedCenter=this.center.curve(0),this.computedUp=this.up.curve(0),this.computedRight=this.right.curve(0),this.computedRadius=this.radius.curve(0),this.computedAngle=this.angle.curve(0),this.computedToward=[0,0,0],this.computedEye=[0,0,0],this.computedMatrix=new Array(16);for(var c=0;c<16;++c)this.computedMatrix[c]=.5;this.recalcMatrix(0)}var p=h.prototype;p.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},p.getDistanceLimits=function(t){var e=this.radius.bounds[0];return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},p.recalcMatrix=function(t){this.center.curve(t),this.up.curve(t),this.right.curve(t),this.radius.curve(t),this.angle.curve(t);for(var e=this.computedUp,r=this.computedRight,n=0,i=0,a=0;a<3;++a)i+=e[a]*r[a],n+=e[a]*e[a];var l=Math.sqrt(n),u=0;for(a=0;a<3;++a)r[a]-=e[a]*i/n,u+=r[a]*r[a],e[a]/=l;var f=Math.sqrt(u);for(a=0;a<3;++a)r[a]/=f;var h=this.computedToward;o(h,e,r),s(h,h);var p=Math.exp(this.computedRadius[0]),d=this.computedAngle[0],m=this.computedAngle[1],g=Math.cos(d),v=Math.sin(d),y=Math.cos(m),x=Math.sin(m),b=this.computedCenter,_=g*y,w=v*y,T=x,k=-g*x,A=-v*x,M=y,S=this.computedEye,E=this.computedMatrix;for(a=0;a<3;++a){var L=_*r[a]+w*h[a]+T*e[a];E[4*a+1]=k*r[a]+A*h[a]+M*e[a],E[4*a+2]=L,E[4*a+3]=0}var C=E[1],P=E[5],I=E[9],O=E[2],z=E[6],D=E[10],R=P*D-I*z,F=I*O-C*D,B=C*z-P*O,N=c(R,F,B);R/=N,F/=N,B/=N,E[0]=R,E[4]=F,E[8]=B;for(a=0;a<3;++a)S[a]=b[a]+E[2+4*a]*p;for(a=0;a<3;++a){u=0;for(var j=0;j<3;++j)u+=E[a+4*j]*S[j];E[12+a]=-u}E[15]=1},p.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r};var d=[0,0,0];p.rotate=function(t,e,r,n){if(this.angle.move(t,e,r),n){this.recalcMatrix(t);var i=this.computedMatrix;d[0]=i[2],d[1]=i[6],d[2]=i[10];for(var o=this.computedUp,s=this.computedRight,l=this.computedToward,c=0;c<3;++c)i[4*c]=o[c],i[4*c+1]=s[c],i[4*c+2]=l[c];a(i,i,n,d);for(c=0;c<3;++c)o[c]=i[4*c],s[c]=i[4*c+1];this.up.set(t,o[0],o[1],o[2]),this.right.set(t,s[0],s[1],s[2])}},p.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var i=this.computedMatrix,a=(Math.exp(this.computedRadius[0]),i[1]),o=i[5],s=i[9],l=c(a,o,s);a/=l,o/=l,s/=l;var u=i[0],f=i[4],h=i[8],p=u*a+f*o+h*s,d=c(u-=a*p,f-=o*p,h-=s*p),m=(u/=d)*e+a*r,g=(f/=d)*e+o*r,v=(h/=d)*e+s*r;this.center.move(t,m,g,v);var y=Math.exp(this.computedRadius[0]);y=Math.max(1e-4,y+n),this.radius.set(t,Math.log(y))},p.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},p.setMatrix=function(t,e,r,n){var a=1;"number"==typeof r&&(a=0|r),(a<0||a>3)&&(a=1);var o=(a+2)%3;e||(this.recalcMatrix(t),e=this.computedMatrix);var s=e[a],l=e[a+4],f=e[a+8];if(n){var h=Math.abs(s),p=Math.abs(l),d=Math.abs(f),m=Math.max(h,p,d);h===m?(s=s<0?-1:1,l=f=0):d===m?(f=f<0?-1:1,s=l=0):(l=l<0?-1:1,s=f=0)}else{var g=c(s,l,f);s/=g,l/=g,f/=g}var v,y,x=e[o],b=e[o+4],_=e[o+8],w=x*s+b*l+_*f,T=c(x-=s*w,b-=l*w,_-=f*w),k=l*(_/=T)-f*(b/=T),A=f*(x/=T)-s*_,M=s*b-l*x,S=c(k,A,M);if(k/=S,A/=S,M/=S,this.center.jump(t,q,G,Y),this.radius.idle(t),this.up.jump(t,s,l,f),this.right.jump(t,x,b,_),2===a){var E=e[1],L=e[5],C=e[9],P=E*x+L*b+C*_,I=E*k+L*A+C*M;v=R<0?-Math.PI/2:Math.PI/2,y=Math.atan2(I,P)}else{var O=e[2],z=e[6],D=e[10],R=O*s+z*l+D*f,F=O*x+z*b+D*_,B=O*k+z*A+D*M;v=Math.asin(u(R)),y=Math.atan2(B,F)}this.angle.jump(t,y,v),this.recalcMatrix(t);var N=e[2],j=e[6],U=e[10],V=this.computedMatrix;i(V,e);var H=V[15],q=V[12]/H,G=V[13]/H,Y=V[14]/H,W=Math.exp(this.computedRadius[0]);this.center.jump(t,q-N*W,G-j*W,Y-U*W)},p.lastT=function(){return Math.max(this.center.lastT(),this.up.lastT(),this.right.lastT(),this.radius.lastT(),this.angle.lastT())},p.idle=function(t){this.center.idle(t),this.up.idle(t),this.right.idle(t),this.radius.idle(t),this.angle.idle(t)},p.flush=function(t){this.center.flush(t),this.up.flush(t),this.right.flush(t),this.radius.flush(t),this.angle.flush(t)},p.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},p.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||this.computedCenter;var i=(n=n||this.computedUp)[0],a=n[1],o=n[2],s=c(i,a,o);if(!(s<1e-6)){i/=s,a/=s,o/=s;var l=e[0]-r[0],f=e[1]-r[1],h=e[2]-r[2],p=c(l,f,h);if(!(p<1e-6)){l/=p,f/=p,h/=p;var d=this.computedRight,m=d[0],g=d[1],v=d[2],y=i*m+a*g+o*v,x=c(m-=y*i,g-=y*a,v-=y*o);if(!(x<.01&&(x=c(m=a*h-o*f,g=o*l-i*h,v=i*f-a*l))<1e-6)){m/=x,g/=x,v/=x,this.up.set(t,i,a,o),this.right.set(t,m,g,v),this.center.set(t,r[0],r[1],r[2]),this.radius.set(t,Math.log(p));var b=a*v-o*g,_=o*m-i*v,w=i*g-a*m,T=c(b,_,w),k=i*l+a*f+o*h,A=m*l+g*f+v*h,M=(b/=T)*l+(_/=T)*f+(w/=T)*h,S=Math.asin(u(k)),E=Math.atan2(M,A),L=this.angle._state,C=L[L.length-1],P=L[L.length-2];C%=2*Math.PI;var I=Math.abs(C+2*Math.PI-E),O=Math.abs(C-E),z=Math.abs(C-2*Math.PI-E);I":(e.length>100&&(e=e.slice(0,99)+"\u2026"),e=e.replace(i,(function(t){switch(t){case"\n":return"\\n";case"\r":return"\\r";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";default:throw new Error("Unexpected character")}})))}},{"./safe-to-string":581}],583:[function(t,e,r){"use strict";var n=t("../value/is"),i={object:!0,function:!0,undefined:!0};e.exports=function(t){return!!n(t)&&hasOwnProperty.call(i,typeof t)}},{"../value/is":589}],584:[function(t,e,r){"use strict";var n=t("../lib/resolve-exception"),i=t("./is");e.exports=function(t){return i(t)?t:n(t,"%v is not a plain function",arguments[1])}},{"../lib/resolve-exception":580,"./is":585}],585:[function(t,e,r){"use strict";var n=t("../function/is"),i=/^\s*class[\s{/}]/,a=Function.prototype.toString;e.exports=function(t){return!!n(t)&&!i.test(a.call(t))}},{"../function/is":579}],586:[function(t,e,r){"use strict";var n=t("../object/is");e.exports=function(t){if(!n(t))return!1;try{return!!t.constructor&&t.constructor.prototype===t}catch(t){return!1}}},{"../object/is":583}],587:[function(t,e,r){"use strict";var n=t("../value/is"),i=t("../object/is"),a=Object.prototype.toString;e.exports=function(t){if(!n(t))return null;if(i(t)){var e=t.toString;if("function"!=typeof e)return null;if(e===a)return null}try{return""+t}catch(t){return null}}},{"../object/is":583,"../value/is":589}],588:[function(t,e,r){"use strict";var n=t("../lib/resolve-exception"),i=t("./is");e.exports=function(t){return i(t)?t:n(t,"Cannot use %v",arguments[1])}},{"../lib/resolve-exception":580,"./is":589}],589:[function(t,e,r){"use strict";e.exports=function(t){return null!=t}},{}],590:[function(t,e,r){(function(e){(function(){"use strict";var n=t("bit-twiddle"),i=t("dup"),a=t("buffer").Buffer;e.__TYPEDARRAY_POOL||(e.__TYPEDARRAY_POOL={UINT8:i([32,0]),UINT16:i([32,0]),UINT32:i([32,0]),BIGUINT64:i([32,0]),INT8:i([32,0]),INT16:i([32,0]),INT32:i([32,0]),BIGINT64:i([32,0]),FLOAT:i([32,0]),DOUBLE:i([32,0]),DATA:i([32,0]),UINT8C:i([32,0]),BUFFER:i([32,0])});var o="undefined"!=typeof Uint8ClampedArray,s="undefined"!=typeof BigUint64Array,l="undefined"!=typeof BigInt64Array,c=e.__TYPEDARRAY_POOL;c.UINT8C||(c.UINT8C=i([32,0])),c.BIGUINT64||(c.BIGUINT64=i([32,0])),c.BIGINT64||(c.BIGINT64=i([32,0])),c.BUFFER||(c.BUFFER=i([32,0]));var u=c.DATA,f=c.BUFFER;function h(t){if(t){var e=t.length||t.byteLength,r=n.log2(e);u[r].push(t)}}function p(t){t=n.nextPow2(t);var e=n.log2(t),r=u[e];return r.length>0?r.pop():new ArrayBuffer(t)}function d(t){return new Uint8Array(p(t),0,t)}function m(t){return new Uint16Array(p(2*t),0,t)}function g(t){return new Uint32Array(p(4*t),0,t)}function v(t){return new Int8Array(p(t),0,t)}function y(t){return new Int16Array(p(2*t),0,t)}function x(t){return new Int32Array(p(4*t),0,t)}function b(t){return new Float32Array(p(4*t),0,t)}function _(t){return new Float64Array(p(8*t),0,t)}function w(t){return o?new Uint8ClampedArray(p(t),0,t):d(t)}function T(t){return s?new BigUint64Array(p(8*t),0,t):null}function k(t){return l?new BigInt64Array(p(8*t),0,t):null}function A(t){return new DataView(p(t),0,t)}function M(t){t=n.nextPow2(t);var e=n.log2(t),r=f[e];return r.length>0?r.pop():new a(t)}r.free=function(t){if(a.isBuffer(t))f[n.log2(t.length)].push(t);else{if("[object ArrayBuffer]"!==Object.prototype.toString.call(t)&&(t=t.buffer),!t)return;var e=t.length||t.byteLength,r=0|n.log2(e);u[r].push(t)}},r.freeUint8=r.freeUint16=r.freeUint32=r.freeBigUint64=r.freeInt8=r.freeInt16=r.freeInt32=r.freeBigInt64=r.freeFloat32=r.freeFloat=r.freeFloat64=r.freeDouble=r.freeUint8Clamped=r.freeDataView=function(t){h(t.buffer)},r.freeArrayBuffer=h,r.freeBuffer=function(t){f[n.log2(t.length)].push(t)},r.malloc=function(t,e){if(void 0===e||"arraybuffer"===e)return p(t);switch(e){case"uint8":return d(t);case"uint16":return m(t);case"uint32":return g(t);case"int8":return v(t);case"int16":return y(t);case"int32":return x(t);case"float":case"float32":return b(t);case"double":case"float64":return _(t);case"uint8_clamped":return w(t);case"bigint64":return k(t);case"biguint64":return T(t);case"buffer":return M(t);case"data":case"dataview":return A(t);default:return null}return null},r.mallocArrayBuffer=p,r.mallocUint8=d,r.mallocUint16=m,r.mallocUint32=g,r.mallocInt8=v,r.mallocInt16=y,r.mallocInt32=x,r.mallocFloat32=r.mallocFloat=b,r.mallocFloat64=r.mallocDouble=_,r.mallocUint8Clamped=w,r.mallocBigUint64=T,r.mallocBigInt64=k,r.mallocDataView=A,r.mallocBuffer=M,r.clearCache=function(){for(var t=0;t<32;++t)c.UINT8[t].length=0,c.UINT16[t].length=0,c.UINT32[t].length=0,c.INT8[t].length=0,c.INT16[t].length=0,c.INT32[t].length=0,c.FLOAT[t].length=0,c.DOUBLE[t].length=0,c.BIGUINT64[t].length=0,c.BIGINT64[t].length=0,c.UINT8C[t].length=0,u[t].length=0,f[t].length=0}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"bit-twiddle":101,buffer:112,dup:177}],591:[function(t,e,r){"use strict";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e0&&(a=n.size),n.lineSpacing&&n.lineSpacing>0&&(o=n.lineSpacing),n.styletags&&n.styletags.breaklines&&(s.breaklines=!!n.styletags.breaklines),n.styletags&&n.styletags.bolds&&(s.bolds=!!n.styletags.bolds),n.styletags&&n.styletags.italics&&(s.italics=!!n.styletags.italics),n.styletags&&n.styletags.subscripts&&(s.subscripts=!!n.styletags.subscripts),n.styletags&&n.styletags.superscripts&&(s.superscripts=!!n.styletags.superscripts));return r.font=[n.fontStyle,n.fontVariant,n.fontWeight,a+"px",n.font].filter((function(t){return t})).join(" "),r.textAlign="start",r.textBaseline="alphabetic",r.direction="ltr",h(function(t,e,r,n,a,o){r=r.replace(/\n/g,""),r=!0===o.breaklines?r.replace(/\/g,"\n"):r.replace(/\/g," ");var s="",l=[];for(p=0;p-1?parseInt(t[1+i]):0,l=a>-1?parseInt(r[1+a]):0;s!==l&&(n=n.replace(S(),"?px "),g*=Math.pow(.75,l-s),n=n.replace("?px ",S())),m+=.25*x*(l-s)}if(!0===o.superscripts){var c=t.indexOf("+"),u=r.indexOf("+"),f=c>-1?parseInt(t[1+c]):0,h=u>-1?parseInt(r[1+u]):0;f!==h&&(n=n.replace(S(),"?px "),g*=Math.pow(.75,h-f),n=n.replace("?px ",S())),m-=.25*x*(h-f)}if(!0===o.bolds){var p=t.indexOf("b|")>-1,d=r.indexOf("b|")>-1;!p&&d&&(n=v?n.replace("italic ","italic bold "):"bold "+n),p&&!d&&(n=n.replace("bold ",""))}if(!0===o.italics){var v=t.indexOf("i|")>-1,y=r.indexOf("i|")>-1;!v&&y&&(n="italic "+n),v&&!y&&(n=n.replace("italic ",""))}e.font=n}for(h=0;h",a="",o=i.length,s=a.length,l="+"===e[0]||"-"===e[0],c=0,u=-s;c>-1&&-1!==(c=r.indexOf(i,c))&&-1!==(u=r.indexOf(a,c+o))&&!(u<=c);){for(var f=c;f=u)n[f]=null,r=r.substr(0,f)+" "+r.substr(f+1);else if(null!==n[f]){var h=n[f].indexOf(e[0]);-1===h?n[f]+=e:l&&(n[f]=n[f].substr(0,h+1)+(1+parseInt(n[f][h+1]))+n[f].substr(h+2))}var p=c+o,d=r.substr(p,u-p).indexOf(i);c=-1!==d?d:u+s}return n}function u(t,e){var r=n(t,128);return e?a(r.cells,r.positions,.25):{edges:r.cells,positions:r.positions}}function f(t,e,r,n){var i=u(t,n),a=function(t,e,r){for(var n=e.textAlign||"start",i=e.textBaseline||"alphabetic",a=[1<<30,1<<30],o=[0,0],s=t.length,l=0;l=0?e[a]:i}))},has___:{value:y((function(e){var n=v(e);return n?r in n:t.indexOf(e)>=0}))},set___:{value:y((function(n,i){var a,o=v(n);return o?o[r]=i:(a=t.indexOf(n))>=0?e[a]=i:(a=t.length,e[a]=i,t[a]=n),this}))},delete___:{value:y((function(n){var i,a,o=v(n);return o?r in o&&delete o[r]:!((i=t.indexOf(n))<0)&&(a=t.length-1,t[i]=void 0,e[i]=e[a],t[i]=t[a],t.length=a,e.length=a,!0)}))}})};d.prototype=Object.create(Object.prototype,{get:{value:function(t,e){return this.get___(t,e)},writable:!0,configurable:!0},has:{value:function(t){return this.has___(t)},writable:!0,configurable:!0},set:{value:function(t,e){return this.set___(t,e)},writable:!0,configurable:!0},delete:{value:function(t){return this.delete___(t)},writable:!0,configurable:!0}}),"function"==typeof r?function(){function n(){this instanceof d||x();var e,n=new r,i=void 0,a=!1;return e=t?function(t,e){return n.set(t,e),n.has(t)||(i||(i=new d),i.set(t,e)),this}:function(t,e){if(a)try{n.set(t,e)}catch(r){i||(i=new d),i.set___(t,e)}else n.set(t,e);return this},Object.create(d.prototype,{get___:{value:y((function(t,e){return i?n.has(t)?n.get(t):i.get___(t,e):n.get(t,e)}))},has___:{value:y((function(t){return n.has(t)||!!i&&i.has___(t)}))},set___:{value:y(e)},delete___:{value:y((function(t){var e=!!n.delete(t);return i&&i.delete___(t)||e}))},permitHostObjects___:{value:y((function(t){if(t!==m)throw new Error("bogus call to permitHostObjects___");a=!0}))}})}t&&"undefined"!=typeof Proxy&&(Proxy=void 0),n.prototype=d.prototype,e.exports=n,Object.defineProperty(WeakMap.prototype,"constructor",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():("undefined"!=typeof Proxy&&(Proxy=void 0),e.exports=d)}function m(t){t.permitHostObjects___&&t.permitHostObjects___(m)}function g(t){return!("weakmap:"==t.substr(0,"weakmap:".length)&&"___"===t.substr(t.length-3))}function v(t){if(t!==Object(t))throw new TypeError("Not an object: "+t);var e=t[l];if(e&&e.key===t)return e;if(s(t)){e={key:t};try{return o(t,l,{value:e,writable:!1,enumerable:!1,configurable:!1}),e}catch(t){return}}}function y(t){return t.prototype=null,Object.freeze(t)}function x(){h||"undefined"==typeof console||(h=!0,console.warn("WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future."))}}()},{}],599:[function(t,e,r){var n=t("./hidden-store.js");e.exports=function(){var t={};return function(e){if(("object"!=typeof e||null===e)&&"function"!=typeof e)throw new Error("Weakmap-shim: Key must be object");var r=e.valueOf(t);return r&&r.identity===t?r:n(e,t)}}},{"./hidden-store.js":600}],600:[function(t,e,r){e.exports=function(t,e){var r={identity:e},n=t.valueOf;return Object.defineProperty(t,"valueOf",{value:function(t){return t!==e?n.apply(this,arguments):r},writable:!0}),r}},{}],601:[function(t,e,r){var n=t("./create-store.js");e.exports=function(){var t=n();return{get:function(e,r){var n=t(e);return n.hasOwnProperty("value")?n.value:r},set:function(e,r){return t(e).value=r,this},has:function(e){return"value"in t(e)},delete:function(e){return delete t(e).value}}}},{"./create-store.js":599}],602:[function(t,e,r){var n=t("get-canvas-context");e.exports=function(t){return n("webgl",t)}},{"get-canvas-context":248}],603:[function(t,e,r){var n=t("../main"),i=t("object-assign"),a=n.instance();function o(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}o.prototype=new n.baseCalendar,i(o.prototype,{name:"Chinese",jdEpoch:1721425.5,hasYearZero:!1,minMonth:0,firstMonth:0,minDay:1,regionalOptions:{"":{name:"Chinese",epochs:["BEC","EC"],monthNumbers:function(t,e){if("string"==typeof t){var r=t.match(l);return r?r[0]:""}var n=this._validateYear(t),i=t.month(),a=""+this.toChineseMonth(n,i);return e&&a.length<2&&(a="0"+a),this.isIntercalaryMonth(n,i)&&(a+="i"),a},monthNames:function(t){if("string"==typeof t){var e=t.match(c);return e?e[0]:""}var r=this._validateYear(t),n=t.month(),i=["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(i="\u95f0"+i),i},monthNamesShort:function(t){if("string"==typeof t){var e=t.match(u);return e?e[0]:""}var r=this._validateYear(t),n=t.month(),i=["\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d","\u4e03","\u516b","\u4e5d","\u5341","\u5341\u4e00","\u5341\u4e8c"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(i="\u95f0"+i),i},parseMonth:function(t,e){t=this._validateYear(t);var r,n=parseInt(e);if(isNaN(n))"\u95f0"===e[0]&&(r=!0,e=e.substring(1)),"\u6708"===e[e.length-1]&&(e=e.substring(0,e.length-1)),n=1+["\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d","\u4e03","\u516b","\u4e5d","\u5341","\u5341\u4e00","\u5341\u4e8c"].indexOf(e);else{var i=e[e.length-1];r="i"===i||"I"===i}return this.toMonthIndex(t,n,r)},dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],digits:null,dateFormat:"yyyy/mm/dd",firstDay:1,isRTL:!1}},_validateYear:function(t,e){if(t.year&&(t=t.year()),"number"!=typeof t||t<1888||t>2111)throw e.replace(/\{0\}/,this.local.name);return t},toMonthIndex:function(t,e,r){var i=this.intercalaryMonth(t);if(r&&e!==i||e<1||e>12)throw n.local.invalidMonth.replace(/\{0\}/,this.local.name);return i?!r&&e<=i?e-1:e:e-1},toChineseMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);if(e<0||e>(r?12:11))throw n.local.invalidMonth.replace(/\{0\}/,this.local.name);return r?e>13},isIntercalaryMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);return!!r&&r===e},leapYear:function(t){return 0!==this.intercalaryMonth(t)},weekOfYear:function(t,e,r){var i,o=this._validateYear(t,n.local.invalidyear),s=h[o-h[0]],l=s>>9&4095,c=s>>5&15,u=31&s;(i=a.newDate(l,c,u)).add(4-(i.dayOfWeek()||7),"d");var f=this.toJD(t,e,r)-i.toJD();return 1+Math.floor(f/7)},monthsInYear:function(t){return this.leapYear(t)?13:12},daysInMonth:function(t,e){t.year&&(e=t.month(),t=t.year()),t=this._validateYear(t);var r=f[t-f[0]];if(e>(r>>13?12:11))throw n.local.invalidMonth.replace(/\{0\}/,this.local.name);return r&1<<12-e?30:29},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,s,r,n.local.invalidDate);t=this._validateYear(i.year()),e=i.month(),r=i.day();var o=this.isIntercalaryMonth(t,e),s=this.toChineseMonth(t,e),l=function(t,e,r,n,i){var a,o,s;if("object"==typeof t)o=t,a=e||{};else{var l;if(!("number"==typeof t&&t>=1888&&t<=2111))throw new Error("Lunar year outside range 1888-2111");if(!("number"==typeof e&&e>=1&&e<=12))throw new Error("Lunar month outside range 1 - 12");if(!("number"==typeof r&&r>=1&&r<=30))throw new Error("Lunar day outside range 1 - 30");"object"==typeof n?(l=!1,a=n):(l=!!n,a=i||{}),o={year:t,month:e,day:r,isIntercalary:l}}s=o.day-1;var c,u=f[o.year-f[0]],p=u>>13;c=p&&(o.month>p||o.isIntercalary)?o.month:o.month-1;for(var d=0;d>9&4095,(m>>5&15)-1,(31&m)+s);return a.year=g.getFullYear(),a.month=1+g.getMonth(),a.day=g.getDate(),a}(t,s,r,o);return a.toJD(l.year,l.month,l.day)},fromJD:function(t){var e=a.fromJD(t),r=function(t,e,r,n){var i,a;if("object"==typeof t)i=t,a=e||{};else{if(!("number"==typeof t&&t>=1888&&t<=2111))throw new Error("Solar year outside range 1888-2111");if(!("number"==typeof e&&e>=1&&e<=12))throw new Error("Solar month outside range 1 - 12");if(!("number"==typeof r&&r>=1&&r<=31))throw new Error("Solar day outside range 1 - 31");i={year:t,month:e,day:r},a=n||{}}var o=h[i.year-h[0]],s=i.year<<9|i.month<<5|i.day;a.year=s>=o?i.year:i.year-1,o=h[a.year-h[0]];var l,c=new Date(o>>9&4095,(o>>5&15)-1,31&o),u=new Date(i.year,i.month-1,i.day);l=Math.round((u-c)/864e5);var p,d=f[a.year-f[0]];for(p=0;p<13;p++){var m=d&1<<12-p?30:29;if(l>13;!g||p=2&&n<=6},extraInfo:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return{century:o[Math.floor((i.year()-1)/100)+1]||""}},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return t=i.year()+(i.year()<0?1:0),e=i.month(),(r=i.day())+(e>1?16:0)+(e>2?32*(e-2):0)+400*(t-1)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t+.5)-Math.floor(this.jdEpoch)-1;var e=Math.floor(t/400)+1;t-=400*(e-1),t+=t>15?16:0;var r=Math.floor(t/32)+1,n=t-32*(r-1)+1;return this.newDate(e<=0?e-1:e,r,n)}});var o={20:"Fruitbat",21:"Anchovy"};n.calendars.discworld=a},{"../main":617,"object-assign":466}],606:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}a.prototype=new n.baseCalendar,i(a.prototype,{name:"Ethiopian",jdEpoch:1724220.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Ethiopian",epochs:["BEE","EE"],monthNames:["Meskerem","Tikemet","Hidar","Tahesas","Tir","Yekatit","Megabit","Miazia","Genbot","Sene","Hamle","Nehase","Pagume"],monthNamesShort:["Mes","Tik","Hid","Tah","Tir","Yek","Meg","Mia","Gen","Sen","Ham","Neh","Pag"],dayNames:["Ehud","Segno","Maksegno","Irob","Hamus","Arb","Kidame"],dayNamesShort:["Ehu","Seg","Mak","Iro","Ham","Arb","Kid"],dayNamesMin:["Eh","Se","Ma","Ir","Ha","Ar","Ki"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==3||t%4==-1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[""].invalidYear),13},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(13===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return(t=i.year())<0&&t++,i.day()+30*(i.month()-1)+365*(t-1)+Math.floor(t/4)+this.jdEpoch-1},fromJD:function(t){var e=Math.floor(t)+.5-this.jdEpoch,r=Math.floor((e-Math.floor((e+366)/1461))/365)+1;r<=0&&r--,e=Math.floor(t)+.5-this.newDate(r,1,1).toJD();var n=Math.floor(e/30)+1,i=e-30*(n-1)+1;return this.newDate(r,n,i)}}),n.calendars.ethiopian=a},{"../main":617,"object-assign":466}],607:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}function o(t,e){return t-e*Math.floor(t/e)}a.prototype=new n.baseCalendar,i(a.prototype,{name:"Hebrew",jdEpoch:347995.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29,29],hasYearZero:!1,minMonth:1,firstMonth:7,minDay:1,regionalOptions:{"":{name:"Hebrew",epochs:["BAM","AM"],monthNames:["Nisan","Iyar","Sivan","Tammuz","Av","Elul","Tishrei","Cheshvan","Kislev","Tevet","Shevat","Adar","Adar II"],monthNamesShort:["Nis","Iya","Siv","Tam","Av","Elu","Tis","Che","Kis","Tev","She","Ada","Ad2"],dayNames:["Yom Rishon","Yom Sheni","Yom Shlishi","Yom Revi'i","Yom Chamishi","Yom Shishi","Yom Shabbat"],dayNamesShort:["Ris","She","Shl","Rev","Cha","Shi","Sha"],dayNamesMin:["Ri","She","Shl","Re","Ch","Shi","Sha"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return this._leapYear(e.year())},_leapYear:function(t){return o(7*(t=t<0?t+1:t)+1,19)<7},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),this._leapYear(t.year?t.year():t)?13:12},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),this.toJD(-1===t?1:t+1,7,1)-this.toJD(t,7,1)},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),12===e&&this.leapYear(t)||8===e&&5===o(this.daysInYear(t),10)?30:9===e&&3===o(this.daysInYear(t),10)?29:this.daysPerMonth[e-1]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},extraInfo:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return{yearType:(this.leapYear(i)?"embolismic":"common")+" "+["deficient","regular","complete"][this.daysInYear(i)%10-3]}},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=i.year(),e=i.month(),r=i.day();var a=t<=0?t+1:t,o=this.jdEpoch+this._delay1(a)+this._delay2(a)+r+1;if(e<7){for(var s=7;s<=this.monthsInYear(t);s++)o+=this.daysInMonth(t,s);for(s=1;s=this.toJD(-1===e?1:e+1,7,1);)e++;for(var r=tthis.toJD(e,r,this.daysInMonth(e,r));)r++;var n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.hebrew=a},{"../main":617,"object-assign":466}],608:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}a.prototype=new n.baseCalendar,i(a.prototype,{name:"Islamic",jdEpoch:1948439.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Islamic",epochs:["BH","AH"],monthNames:["Muharram","Safar","Rabi' al-awwal","Rabi' al-thani","Jumada al-awwal","Jumada al-thani","Rajab","Sha'aban","Ramadan","Shawwal","Dhu al-Qi'dah","Dhu al-Hijjah"],monthNamesShort:["Muh","Saf","Rab1","Rab2","Jum1","Jum2","Raj","Sha'","Ram","Shaw","DhuQ","DhuH"],dayNames:["Yawm al-ahad","Yawm al-ithnayn","Yawm ath-thulaathaa'","Yawm al-arbi'aa'","Yawm al-kham\u012bs","Yawm al-jum'a","Yawm as-sabt"],dayNamesShort:["Aha","Ith","Thu","Arb","Kha","Jum","Sab"],dayNamesMin:["Ah","It","Th","Ar","Kh","Ju","Sa"],digits:null,dateFormat:"yyyy/mm/dd",firstDay:6,isRTL:!1}},leapYear:function(t){return(11*this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year()+14)%30<11},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return this.leapYear(t)?355:354},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return t=i.year(),e=i.month(),t=t<=0?t+1:t,(r=i.day())+Math.ceil(29.5*(e-1))+354*(t-1)+Math.floor((3+11*t)/30)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t)+.5;var e=Math.floor((30*(t-this.jdEpoch)+10646)/10631);e=e<=0?e-1:e;var r=Math.min(12,Math.ceil((t-29-this.toJD(e,1,1))/29.5)+1),n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.islamic=a},{"../main":617,"object-assign":466}],609:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}a.prototype=new n.baseCalendar,i(a.prototype,{name:"Julian",jdEpoch:1721423.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Julian",epochs:["BC","AD"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],digits:null,dateFormat:"mm/dd/yyyy",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()<0?e.year()+1:e.year())%4==0},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(4-(n.dayOfWeek()||7),"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return t=i.year(),e=i.month(),r=i.day(),t<0&&t++,e<=2&&(t--,e+=12),Math.floor(365.25*(t+4716))+Math.floor(30.6001*(e+1))+r-1524.5},fromJD:function(t){var e=Math.floor(t+.5)+1524,r=Math.floor((e-122.1)/365.25),n=Math.floor(365.25*r),i=Math.floor((e-n)/30.6001),a=i-Math.floor(i<14?1:13),o=r-Math.floor(a>2?4716:4715),s=e-n-Math.floor(30.6001*i);return o<=0&&o--,this.newDate(o,a,s)}}),n.calendars.julian=a},{"../main":617,"object-assign":466}],610:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}function o(t,e){return t-e*Math.floor(t/e)}function s(t,e){return o(t-1,e)+1}a.prototype=new n.baseCalendar,i(a.prototype,{name:"Mayan",jdEpoch:584282.5,hasYearZero:!0,minMonth:0,firstMonth:0,minDay:0,regionalOptions:{"":{name:"Mayan",epochs:["",""],monthNames:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17"],monthNamesShort:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17"],dayNames:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],dayNamesShort:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],dayNamesMin:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],digits:null,dateFormat:"YYYY.m.d",firstDay:0,isRTL:!1,haabMonths:["Pop","Uo","Zip","Zotz","Tzec","Xul","Yaxkin","Mol","Chen","Yax","Zac","Ceh","Mac","Kankin","Muan","Pax","Kayab","Cumku","Uayeb"],tzolkinMonths:["Imix","Ik","Akbal","Kan","Chicchan","Cimi","Manik","Lamat","Muluc","Oc","Chuen","Eb","Ben","Ix","Men","Cib","Caban","Etznab","Cauac","Ahau"]}},leapYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),!1},formatYear:function(t){t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year();var e=Math.floor(t/400);return t%=400,t+=t<0?400:0,e+"."+Math.floor(t/20)+"."+t%20},forYear:function(t){if((t=t.split(".")).length<3)throw"Invalid Mayan year";for(var e=0,r=0;r19||r>0&&n<0)throw"Invalid Mayan year";e=20*e+n}return e},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),18},weekOfYear:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),0},daysInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),360},daysInMonth:function(t,e){return this._validate(t,e,this.minDay,n.local.invalidMonth),20},daysInWeek:function(){return 5},dayOfWeek:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate).day()},weekDay:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),!0},extraInfo:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate).toJD(),a=this._toHaab(i),o=this._toTzolkin(i);return{haabMonthName:this.local.haabMonths[a[0]-1],haabMonth:a[0],haabDay:a[1],tzolkinDayName:this.local.tzolkinMonths[o[0]-1],tzolkinDay:o[0],tzolkinTrecena:o[1]}},_toHaab:function(t){var e=o((t-=this.jdEpoch)+8+340,365);return[Math.floor(e/20)+1,o(e,20)]},_toTzolkin:function(t){return[s((t-=this.jdEpoch)+20,20),s(t+4,13)]},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return i.day()+20*i.month()+360*i.year()+this.jdEpoch},fromJD:function(t){t=Math.floor(t)+.5-this.jdEpoch;var e=Math.floor(t/360);t%=360,t+=t<0?360:0;var r=Math.floor(t/20),n=t%20;return this.newDate(e,r,n)}}),n.calendars.mayan=a},{"../main":617,"object-assign":466}],611:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}a.prototype=new n.baseCalendar;var o=n.instance("gregorian");i(a.prototype,{name:"Nanakshahi",jdEpoch:2257673.5,daysPerMonth:[31,31,31,31,31,30,30,30,30,30,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Nanakshahi",epochs:["BN","AN"],monthNames:["Chet","Vaisakh","Jeth","Harh","Sawan","Bhadon","Assu","Katak","Maghar","Poh","Magh","Phagun"],monthNamesShort:["Che","Vai","Jet","Har","Saw","Bha","Ass","Kat","Mgr","Poh","Mgh","Pha"],dayNames:["Somvaar","Mangalvar","Budhvaar","Veervaar","Shukarvaar","Sanicharvaar","Etvaar"],dayNamesShort:["Som","Mangal","Budh","Veer","Shukar","Sanichar","Et"],dayNamesMin:["So","Ma","Bu","Ve","Sh","Sa","Et"],digits:null,dateFormat:"dd-mm-yyyy",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[""].invalidYear);return o.leapYear(e.year()+(e.year()<1?1:0)+1469)},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(1-(n.dayOfWeek()||7),"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidMonth);(t=i.year())<0&&t++;for(var a=i.day(),s=1;s=this.toJD(e+1,1,1);)e++;for(var r=t-Math.floor(this.toJD(e,1,1)+.5)+1,n=1;r>this.daysInMonth(e,n);)r-=this.daysInMonth(e,n),n++;return this.newDate(e,n,r)}}),n.calendars.nanakshahi=a},{"../main":617,"object-assign":466}],612:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}a.prototype=new n.baseCalendar,i(a.prototype,{name:"Nepali",jdEpoch:1700709.5,daysPerMonth:[31,31,32,32,31,30,30,29,30,29,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,daysPerYear:365,regionalOptions:{"":{name:"Nepali",epochs:["BBS","ABS"],monthNames:["Baisakh","Jestha","Ashadh","Shrawan","Bhadra","Ashwin","Kartik","Mangsir","Paush","Mangh","Falgun","Chaitra"],monthNamesShort:["Bai","Je","As","Shra","Bha","Ash","Kar","Mang","Pau","Ma","Fal","Chai"],dayNames:["Aaitabaar","Sombaar","Manglbaar","Budhabaar","Bihibaar","Shukrabaar","Shanibaar"],dayNamesShort:["Aaita","Som","Mangl","Budha","Bihi","Shukra","Shani"],dayNamesMin:["Aai","So","Man","Bu","Bi","Shu","Sha"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:1,isRTL:!1}},leapYear:function(t){return this.daysInYear(t)!==this.daysPerYear},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){if(t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),void 0===this.NEPALI_CALENDAR_DATA[t])return this.daysPerYear;for(var e=0,r=this.minMonth;r<=12;r++)e+=this.NEPALI_CALENDAR_DATA[t][r];return e},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),void 0===this.NEPALI_CALENDAR_DATA[t]?this.daysPerMonth[e-1]:this.NEPALI_CALENDAR_DATA[t][e]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=i.year(),e=i.month(),r=i.day();var a=n.instance(),o=0,s=e,l=t;this._createMissingCalendarData(t);var c=t-(s>9||9===s&&r>=this.NEPALI_CALENDAR_DATA[l][0]?56:57);for(9!==e&&(o=r,s--);9!==s;)s<=0&&(s=12,l--),o+=this.NEPALI_CALENDAR_DATA[l][s],s--;return 9===e?(o+=r-this.NEPALI_CALENDAR_DATA[l][0])<0&&(o+=a.daysInYear(c)):o+=this.NEPALI_CALENDAR_DATA[l][9]-this.NEPALI_CALENDAR_DATA[l][0],a.newDate(c,1,1).add(o,"d").toJD()},fromJD:function(t){var e=n.instance().fromJD(t),r=e.year(),i=e.dayOfYear(),a=r+56;this._createMissingCalendarData(a);for(var o=9,s=this.NEPALI_CALENDAR_DATA[a][0],l=this.NEPALI_CALENDAR_DATA[a][o]-s+1;i>l;)++o>12&&(o=1,a++),l+=this.NEPALI_CALENDAR_DATA[a][o];var c=this.NEPALI_CALENDAR_DATA[a][o]-(l-i);return this.newDate(a,o,c)},_createMissingCalendarData:function(t){var e=this.daysPerMonth.slice(0);e.unshift(17);for(var r=t-1;r0?474:473))%2820+474+38)%2816<682},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-(n.dayOfWeek()+1)%7,"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=i.year(),e=i.month(),r=i.day();var a=t-(t>=0?474:473),s=474+o(a,2820);return r+(e<=7?31*(e-1):30*(e-1)+6)+Math.floor((682*s-110)/2816)+365*(s-1)+1029983*Math.floor(a/2820)+this.jdEpoch-1},fromJD:function(t){var e=(t=Math.floor(t)+.5)-this.toJD(475,1,1),r=Math.floor(e/1029983),n=o(e,1029983),i=2820;if(1029982!==n){var a=Math.floor(n/366),s=o(n,366);i=Math.floor((2134*a+2816*s+2815)/1028522)+a+1}var l=i+2820*r+474;l=l<=0?l-1:l;var c=t-this.toJD(l,1,1)+1,u=c<=186?Math.ceil(c/31):Math.ceil((c-6)/30),f=t-this.toJD(l,u,1)+1;return this.newDate(l,u,f)}}),n.calendars.persian=a,n.calendars.jalali=a},{"../main":617,"object-assign":466}],614:[function(t,e,r){var n=t("../main"),i=t("object-assign"),a=n.instance();function o(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}o.prototype=new n.baseCalendar,i(o.prototype,{name:"Taiwan",jdEpoch:2419402.5,yearsOffset:1911,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Taiwan",epochs:["BROC","ROC"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],digits:null,dateFormat:"yyyy/mm/dd",firstDay:1,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return a.leapYear(t)},weekOfYear:function(t,e,r){var i=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(i.year());return a.weekOfYear(t,i.month(),i.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(i.year());return a.toJD(t,i.month(),i.day())},fromJD:function(t){var e=a.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)},_g2tYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)}}),n.calendars.taiwan=o},{"../main":617,"object-assign":466}],615:[function(t,e,r){var n=t("../main"),i=t("object-assign"),a=n.instance();function o(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}o.prototype=new n.baseCalendar,i(o.prototype,{name:"Thai",jdEpoch:1523098.5,yearsOffset:543,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Thai",epochs:["BBE","BE"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return a.leapYear(t)},weekOfYear:function(t,e,r){var i=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(i.year());return a.weekOfYear(t,i.month(),i.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(i.year());return a.toJD(t,i.month(),i.day())},fromJD:function(t){var e=a.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)},_g2tYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)}}),n.calendars.thai=o},{"../main":617,"object-assign":466}],616:[function(t,e,r){var n=t("../main"),i=t("object-assign");function a(t){this.local=this.regionalOptions[t||""]||this.regionalOptions[""]}a.prototype=new n.baseCalendar,i(a.prototype,{name:"UmmAlQura",hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Umm al-Qura",epochs:["BH","AH"],monthNames:["Al-Muharram","Safar","Rabi' al-awwal","Rabi' Al-Thani","Jumada Al-Awwal","Jumada Al-Thani","Rajab","Sha'aban","Ramadan","Shawwal","Dhu al-Qi'dah","Dhu al-Hijjah"],monthNamesShort:["Muh","Saf","Rab1","Rab2","Jum1","Jum2","Raj","Sha'","Ram","Shaw","DhuQ","DhuH"],dayNames:["Yawm al-Ahad","Yawm al-Ithnain","Yawm al-Thal\u0101th\u0101\u2019","Yawm al-Arba\u2018\u0101\u2019","Yawm al-Kham\u012bs","Yawm al-Jum\u2018a","Yawm al-Sabt"],dayNamesMin:["Ah","Ith","Th","Ar","Kh","Ju","Sa"],digits:null,dateFormat:"yyyy/mm/dd",firstDay:6,isRTL:!0}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return 355===this.daysInYear(e.year())},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),"d"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){for(var e=0,r=1;r<=12;r++)e+=this.daysInMonth(t,r);return e},daysInMonth:function(t,e){for(var r=this._validate(t,e,this.minDay,n.local.invalidMonth).toJD()-24e5+.5,i=0,a=0;ar)return o[i]-o[i-1];i++}return 30},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate),a=12*(i.year()-1)+i.month()-15292;return i.day()+o[a-1]-1+24e5-.5},fromJD:function(t){for(var e=t-24e5+.5,r=0,n=0;ne);n++)r++;var i=r+15292,a=Math.floor((i-1)/12),s=a+1,l=i-12*a,c=e-o[r-1]+1;return this.newDate(s,l,c)},isValid:function(t,e,r){var i=n.baseCalendar.prototype.isValid.apply(this,arguments);return i&&(i=(t=null!=t.year?t.year:t)>=1276&&t<=1500),i},_validate:function(t,e,r,i){var a=n.baseCalendar.prototype._validate.apply(this,arguments);if(a.year<1276||a.year>1500)throw i.replace(/\{0\}/,this.local.name);return a}}),n.calendars.ummalqura=a;var o=[20,50,79,109,138,168,197,227,256,286,315,345,374,404,433,463,492,522,551,581,611,641,670,700,729,759,788,818,847,877,906,936,965,995,1024,1054,1083,1113,1142,1172,1201,1231,1260,1290,1320,1350,1379,1409,1438,1468,1497,1527,1556,1586,1615,1645,1674,1704,1733,1763,1792,1822,1851,1881,1910,1940,1969,1999,2028,2058,2087,2117,2146,2176,2205,2235,2264,2294,2323,2353,2383,2413,2442,2472,2501,2531,2560,2590,2619,2649,2678,2708,2737,2767,2796,2826,2855,2885,2914,2944,2973,3003,3032,3062,3091,3121,3150,3180,3209,3239,3268,3298,3327,3357,3386,3416,3446,3476,3505,3535,3564,3594,3623,3653,3682,3712,3741,3771,3800,3830,3859,3889,3918,3948,3977,4007,4036,4066,4095,4125,4155,4185,4214,4244,4273,4303,4332,4362,4391,4421,4450,4480,4509,4539,4568,4598,4627,4657,4686,4716,4745,4775,4804,4834,4863,4893,4922,4952,4981,5011,5040,5070,5099,5129,5158,5188,5218,5248,5277,5307,5336,5366,5395,5425,5454,5484,5513,5543,5572,5602,5631,5661,5690,5720,5749,5779,5808,5838,5867,5897,5926,5956,5985,6015,6044,6074,6103,6133,6162,6192,6221,6251,6281,6311,6340,6370,6399,6429,6458,6488,6517,6547,6576,6606,6635,6665,6694,6724,6753,6783,6812,6842,6871,6901,6930,6960,6989,7019,7048,7078,7107,7137,7166,7196,7225,7255,7284,7314,7344,7374,7403,7433,7462,7492,7521,7551,7580,7610,7639,7669,7698,7728,7757,7787,7816,7846,7875,7905,7934,7964,7993,8023,8053,8083,8112,8142,8171,8201,8230,8260,8289,8319,8348,8378,8407,8437,8466,8496,8525,8555,8584,8614,8643,8673,8702,8732,8761,8791,8821,8850,8880,8909,8938,8968,8997,9027,9056,9086,9115,9145,9175,9205,9234,9264,9293,9322,9352,9381,9410,9440,9470,9499,9529,9559,9589,9618,9648,9677,9706,9736,9765,9794,9824,9853,9883,9913,9943,9972,10002,10032,10061,10090,10120,10149,10178,10208,10237,10267,10297,10326,10356,10386,10415,10445,10474,10504,10533,10562,10592,10621,10651,10680,10710,10740,10770,10799,10829,10858,10888,10917,10947,10976,11005,11035,11064,11094,11124,11153,11183,11213,11242,11272,11301,11331,11360,11389,11419,11448,11478,11507,11537,11567,11596,11626,11655,11685,11715,11744,11774,11803,11832,11862,11891,11921,11950,11980,12010,12039,12069,12099,12128,12158,12187,12216,12246,12275,12304,12334,12364,12393,12423,12453,12483,12512,12542,12571,12600,12630,12659,12688,12718,12747,12777,12807,12837,12866,12896,12926,12955,12984,13014,13043,13072,13102,13131,13161,13191,13220,13250,13280,13310,13339,13368,13398,13427,13456,13486,13515,13545,13574,13604,13634,13664,13693,13723,13752,13782,13811,13840,13870,13899,13929,13958,13988,14018,14047,14077,14107,14136,14166,14195,14224,14254,14283,14313,14342,14372,14401,14431,14461,14490,14520,14550,14579,14609,14638,14667,14697,14726,14756,14785,14815,14844,14874,14904,14933,14963,14993,15021,15051,15081,15110,15140,15169,15199,15228,15258,15287,15317,15347,15377,15406,15436,15465,15494,15524,15553,15582,15612,15641,15671,15701,15731,15760,15790,15820,15849,15878,15908,15937,15966,15996,16025,16055,16085,16114,16144,16174,16204,16233,16262,16292,16321,16350,16380,16409,16439,16468,16498,16528,16558,16587,16617,16646,16676,16705,16734,16764,16793,16823,16852,16882,16912,16941,16971,17001,17030,17060,17089,17118,17148,17177,17207,17236,17266,17295,17325,17355,17384,17414,17444,17473,17502,17532,17561,17591,17620,17650,17679,17709,17738,17768,17798,17827,17857,17886,17916,17945,17975,18004,18034,18063,18093,18122,18152,18181,18211,18241,18270,18300,18330,18359,18388,18418,18447,18476,18506,18535,18565,18595,18625,18654,18684,18714,18743,18772,18802,18831,18860,18890,18919,18949,18979,19008,19038,19068,19098,19127,19156,19186,19215,19244,19274,19303,19333,19362,19392,19422,19452,19481,19511,19540,19570,19599,19628,19658,19687,19717,19746,19776,19806,19836,19865,19895,19924,19954,19983,20012,20042,20071,20101,20130,20160,20190,20219,20249,20279,20308,20338,20367,20396,20426,20455,20485,20514,20544,20573,20603,20633,20662,20692,20721,20751,20780,20810,20839,20869,20898,20928,20957,20987,21016,21046,21076,21105,21135,21164,21194,21223,21253,21282,21312,21341,21371,21400,21430,21459,21489,21519,21548,21578,21607,21637,21666,21696,21725,21754,21784,21813,21843,21873,21902,21932,21962,21991,22021,22050,22080,22109,22138,22168,22197,22227,22256,22286,22316,22346,22375,22405,22434,22464,22493,22522,22552,22581,22611,22640,22670,22700,22730,22759,22789,22818,22848,22877,22906,22936,22965,22994,23024,23054,23083,23113,23143,23173,23202,23232,23261,23290,23320,23349,23379,23408,23438,23467,23497,23527,23556,23586,23616,23645,23674,23704,23733,23763,23792,23822,23851,23881,23910,23940,23970,23999,24029,24058,24088,24117,24147,24176,24206,24235,24265,24294,24324,24353,24383,24413,24442,24472,24501,24531,24560,24590,24619,24648,24678,24707,24737,24767,24796,24826,24856,24885,24915,24944,24974,25003,25032,25062,25091,25121,25150,25180,25210,25240,25269,25299,25328,25358,25387,25416,25446,25475,25505,25534,25564,25594,25624,25653,25683,25712,25742,25771,25800,25830,25859,25888,25918,25948,25977,26007,26037,26067,26096,26126,26155,26184,26214,26243,26272,26302,26332,26361,26391,26421,26451,26480,26510,26539,26568,26598,26627,26656,26686,26715,26745,26775,26805,26834,26864,26893,26923,26952,26982,27011,27041,27070,27099,27129,27159,27188,27218,27248,27277,27307,27336,27366,27395,27425,27454,27484,27513,27542,27572,27602,27631,27661,27691,27720,27750,27779,27809,27838,27868,27897,27926,27956,27985,28015,28045,28074,28104,28134,28163,28193,28222,28252,28281,28310,28340,28369,28399,28428,28458,28488,28517,28547,28577,28607,28636,28665,28695,28724,28754,28783,28813,28843,28872,28901,28931,28960,28990,29019,29049,29078,29108,29137,29167,29196,29226,29255,29285,29315,29345,29375,29404,29434,29463,29492,29522,29551,29580,29610,29640,29669,29699,29729,29759,29788,29818,29847,29876,29906,29935,29964,29994,30023,30053,30082,30112,30141,30171,30200,30230,30259,30289,30318,30348,30378,30408,30437,30467,30496,30526,30555,30585,30614,30644,30673,30703,30732,30762,30791,30821,30850,30880,30909,30939,30968,30998,31027,31057,31086,31116,31145,31175,31204,31234,31263,31293,31322,31352,31381,31411,31441,31471,31500,31530,31559,31589,31618,31648,31676,31706,31736,31766,31795,31825,31854,31884,31913,31943,31972,32002,32031,32061,32090,32120,32150,32180,32209,32239,32268,32298,32327,32357,32386,32416,32445,32475,32504,32534,32563,32593,32622,32652,32681,32711,32740,32770,32799,32829,32858,32888,32917,32947,32976,33006,33035,33065,33094,33124,33153,33183,33213,33243,33272,33302,33331,33361,33390,33420,33450,33479,33509,33539,33568,33598,33627,33657,33686,33716,33745,33775,33804,33834,33863,33893,33922,33952,33981,34011,34040,34069,34099,34128,34158,34187,34217,34247,34277,34306,34336,34365,34395,34424,34454,34483,34512,34542,34571,34601,34631,34660,34690,34719,34749,34778,34808,34837,34867,34896,34926,34955,34985,35015,35044,35074,35103,35133,35162,35192,35222,35251,35280,35310,35340,35370,35399,35429,35458,35488,35517,35547,35576,35605,35635,35665,35694,35723,35753,35782,35811,35841,35871,35901,35930,35960,35989,36019,36048,36078,36107,36136,36166,36195,36225,36254,36284,36314,36343,36373,36403,36433,36462,36492,36521,36551,36580,36610,36639,36669,36698,36728,36757,36786,36816,36845,36875,36904,36934,36963,36993,37022,37052,37081,37111,37141,37170,37200,37229,37259,37288,37318,37347,37377,37406,37436,37465,37495,37524,37554,37584,37613,37643,37672,37701,37731,37760,37790,37819,37849,37878,37908,37938,37967,37997,38027,38056,38085,38115,38144,38174,38203,38233,38262,38292,38322,38351,38381,38410,38440,38469,38499,38528,38558,38587,38617,38646,38676,38705,38735,38764,38794,38823,38853,38882,38912,38941,38971,39001,39030,39059,39089,39118,39148,39178,39208,39237,39267,39297,39326,39355,39385,39414,39444,39473,39503,39532,39562,39592,39621,39650,39680,39709,39739,39768,39798,39827,39857,39886,39916,39946,39975,40005,40035,40064,40094,40123,40153,40182,40212,40241,40271,40300,40330,40359,40389,40418,40448,40477,40507,40536,40566,40595,40625,40655,40685,40714,40744,40773,40803,40832,40862,40892,40921,40951,40980,41009,41039,41068,41098,41127,41157,41186,41216,41245,41275,41304,41334,41364,41393,41422,41452,41481,41511,41540,41570,41599,41629,41658,41688,41718,41748,41777,41807,41836,41865,41894,41924,41953,41983,42012,42042,42072,42102,42131,42161,42190,42220,42249,42279,42308,42337,42367,42397,42426,42456,42485,42515,42545,42574,42604,42633,42662,42692,42721,42751,42780,42810,42839,42869,42899,42929,42958,42988,43017,43046,43076,43105,43135,43164,43194,43223,43253,43283,43312,43342,43371,43401,43430,43460,43489,43519,43548,43578,43607,43637,43666,43696,43726,43755,43785,43814,43844,43873,43903,43932,43962,43991,44021,44050,44080,44109,44139,44169,44198,44228,44258,44287,44317,44346,44375,44405,44434,44464,44493,44523,44553,44582,44612,44641,44671,44700,44730,44759,44788,44818,44847,44877,44906,44936,44966,44996,45025,45055,45084,45114,45143,45172,45202,45231,45261,45290,45320,45350,45380,45409,45439,45468,45498,45527,45556,45586,45615,45644,45674,45704,45733,45763,45793,45823,45852,45882,45911,45940,45970,45999,46028,46058,46088,46117,46147,46177,46206,46236,46265,46295,46324,46354,46383,46413,46442,46472,46501,46531,46560,46590,46620,46649,46679,46708,46738,46767,46797,46826,46856,46885,46915,46944,46974,47003,47033,47063,47092,47122,47151,47181,47210,47240,47269,47298,47328,47357,47387,47417,47446,47476,47506,47535,47565,47594,47624,47653,47682,47712,47741,47771,47800,47830,47860,47890,47919,47949,47978,48008,48037,48066,48096,48125,48155,48184,48214,48244,48273,48303,48333,48362,48392,48421,48450,48480,48509,48538,48568,48598,48627,48657,48687,48717,48746,48776,48805,48834,48864,48893,48922,48952,48982,49011,49041,49071,49100,49130,49160,49189,49218,49248,49277,49306,49336,49365,49395,49425,49455,49484,49514,49543,49573,49602,49632,49661,49690,49720,49749,49779,49809,49838,49868,49898,49927,49957,49986,50016,50045,50075,50104,50133,50163,50192,50222,50252,50281,50311,50340,50370,50400,50429,50459,50488,50518,50547,50576,50606,50635,50665,50694,50724,50754,50784,50813,50843,50872,50902,50931,50960,50990,51019,51049,51078,51108,51138,51167,51197,51227,51256,51286,51315,51345,51374,51403,51433,51462,51492,51522,51552,51582,51611,51641,51670,51699,51729,51758,51787,51816,51846,51876,51906,51936,51965,51995,52025,52054,52083,52113,52142,52171,52200,52230,52260,52290,52319,52349,52379,52408,52438,52467,52497,52526,52555,52585,52614,52644,52673,52703,52733,52762,52792,52822,52851,52881,52910,52939,52969,52998,53028,53057,53087,53116,53146,53176,53205,53235,53264,53294,53324,53353,53383,53412,53441,53471,53500,53530,53559,53589,53619,53648,53678,53708,53737,53767,53796,53825,53855,53884,53913,53943,53973,54003,54032,54062,54092,54121,54151,54180,54209,54239,54268,54297,54327,54357,54387,54416,54446,54476,54505,54535,54564,54593,54623,54652,54681,54711,54741,54770,54800,54830,54859,54889,54919,54948,54977,55007,55036,55066,55095,55125,55154,55184,55213,55243,55273,55302,55332,55361,55391,55420,55450,55479,55508,55538,55567,55597,55627,55657,55686,55716,55745,55775,55804,55834,55863,55892,55922,55951,55981,56011,56040,56070,56100,56129,56159,56188,56218,56247,56276,56306,56335,56365,56394,56424,56454,56483,56513,56543,56572,56601,56631,56660,56690,56719,56749,56778,56808,56837,56867,56897,56926,56956,56985,57015,57044,57074,57103,57133,57162,57192,57221,57251,57280,57310,57340,57369,57399,57429,57458,57487,57517,57546,57576,57605,57634,57664,57694,57723,57753,57783,57813,57842,57871,57901,57930,57959,57989,58018,58048,58077,58107,58137,58167,58196,58226,58255,58285,58314,58343,58373,58402,58432,58461,58491,58521,58551,58580,58610,58639,58669,58698,58727,58757,58786,58816,58845,58875,58905,58934,58964,58994,59023,59053,59082,59111,59141,59170,59200,59229,59259,59288,59318,59348,59377,59407,59436,59466,59495,59525,59554,59584,59613,59643,59672,59702,59731,59761,59791,59820,59850,59879,59909,59939,59968,59997,60027,60056,60086,60115,60145,60174,60204,60234,60264,60293,60323,60352,60381,60411,60440,60469,60499,60528,60558,60588,60618,60648,60677,60707,60736,60765,60795,60824,60853,60883,60912,60942,60972,61002,61031,61061,61090,61120,61149,61179,61208,61237,61267,61296,61326,61356,61385,61415,61445,61474,61504,61533,61563,61592,61621,61651,61680,61710,61739,61769,61799,61828,61858,61888,61917,61947,61976,62006,62035,62064,62094,62123,62153,62182,62212,62242,62271,62301,62331,62360,62390,62419,62448,62478,62507,62537,62566,62596,62625,62655,62685,62715,62744,62774,62803,62832,62862,62891,62921,62950,62980,63009,63039,63069,63099,63128,63157,63187,63216,63246,63275,63305,63334,63363,63393,63423,63453,63482,63512,63541,63571,63600,63630,63659,63689,63718,63747,63777,63807,63836,63866,63895,63925,63955,63984,64014,64043,64073,64102,64131,64161,64190,64220,64249,64279,64309,64339,64368,64398,64427,64457,64486,64515,64545,64574,64603,64633,64663,64692,64722,64752,64782,64811,64841,64870,64899,64929,64958,64987,65017,65047,65076,65106,65136,65166,65195,65225,65254,65283,65313,65342,65371,65401,65431,65460,65490,65520,65549,65579,65608,65638,65667,65697,65726,65755,65785,65815,65844,65874,65903,65933,65963,65992,66022,66051,66081,66110,66140,66169,66199,66228,66258,66287,66317,66346,66376,66405,66435,66465,66494,66524,66553,66583,66612,66641,66671,66700,66730,66760,66789,66819,66849,66878,66908,66937,66967,66996,67025,67055,67084,67114,67143,67173,67203,67233,67262,67292,67321,67351,67380,67409,67439,67468,67497,67527,67557,67587,67617,67646,67676,67705,67735,67764,67793,67823,67852,67882,67911,67941,67971,68e3,68030,68060,68089,68119,68148,68177,68207,68236,68266,68295,68325,68354,68384,68414,68443,68473,68502,68532,68561,68591,68620,68650,68679,68708,68738,68768,68797,68827,68857,68886,68916,68946,68975,69004,69034,69063,69092,69122,69152,69181,69211,69240,69270,69300,69330,69359,69388,69418,69447,69476,69506,69535,69565,69595,69624,69654,69684,69713,69743,69772,69802,69831,69861,69890,69919,69949,69978,70008,70038,70067,70097,70126,70156,70186,70215,70245,70274,70303,70333,70362,70392,70421,70451,70481,70510,70540,70570,70599,70629,70658,70687,70717,70746,70776,70805,70835,70864,70894,70924,70954,70983,71013,71042,71071,71101,71130,71159,71189,71218,71248,71278,71308,71337,71367,71397,71426,71455,71485,71514,71543,71573,71602,71632,71662,71691,71721,71751,71781,71810,71839,71869,71898,71927,71957,71986,72016,72046,72075,72105,72135,72164,72194,72223,72253,72282,72311,72341,72370,72400,72429,72459,72489,72518,72548,72577,72607,72637,72666,72695,72725,72754,72784,72813,72843,72872,72902,72931,72961,72991,73020,73050,73080,73109,73139,73168,73197,73227,73256,73286,73315,73345,73375,73404,73434,73464,73493,73523,73552,73581,73611,73640,73669,73699,73729,73758,73788,73818,73848,73877,73907,73936,73965,73995,74024,74053,74083,74113,74142,74172,74202,74231,74261,74291,74320,74349,74379,74408,74437,74467,74497,74526,74556,74586,74615,74645,74675,74704,74733,74763,74792,74822,74851,74881,74910,74940,74969,74999,75029,75058,75088,75117,75147,75176,75206,75235,75264,75294,75323,75353,75383,75412,75442,75472,75501,75531,75560,75590,75619,75648,75678,75707,75737,75766,75796,75826,75856,75885,75915,75944,75974,76003,76032,76062,76091,76121,76150,76180,76210,76239,76269,76299,76328,76358,76387,76416,76446,76475,76505,76534,76564,76593,76623,76653,76682,76712,76741,76771,76801,76830,76859,76889,76918,76948,76977,77007,77036,77066,77096,77125,77155,77185,77214,77243,77273,77302,77332,77361,77390,77420,77450,77479,77509,77539,77569,77598,77627,77657,77686,77715,77745,77774,77804,77833,77863,77893,77923,77952,77982,78011,78041,78070,78099,78129,78158,78188,78217,78247,78277,78307,78336,78366,78395,78425,78454,78483,78513,78542,78572,78601,78631,78661,78690,78720,78750,78779,78808,78838,78867,78897,78926,78956,78985,79015,79044,79074,79104,79133,79163,79192,79222,79251,79281,79310,79340,79369,79399,79428,79458,79487,79517,79546,79576,79606,79635,79665,79695,79724,79753,79783,79812,79841,79871,79900,79930,79960,79990]},{"../main":617,"object-assign":466}],617:[function(t,e,r){var n=t("object-assign");function i(){this.regionalOptions=[],this.regionalOptions[""]={invalidCalendar:"Calendar {0} not found",invalidDate:"Invalid {0} date",invalidMonth:"Invalid {0} month",invalidYear:"Invalid {0} year",differentCalendars:"Cannot mix {0} and {1} dates"},this.local=this.regionalOptions[""],this.calendars={},this._localCals={}}function a(t,e,r,n){if(this._calendar=t,this._year=e,this._month=r,this._day=n,0===this._calendar._validateLevel&&!this._calendar.isValid(this._year,this._month,this._day))throw(c.local.invalidDate||c.regionalOptions[""].invalidDate).replace(/\{0\}/,this._calendar.local.name)}function o(t,e){return"000000".substring(0,e-(t=""+t).length)+t}function s(){this.shortYearCutoff="+10"}function l(t){this.local=this.regionalOptions[t]||this.regionalOptions[""]}n(i.prototype,{instance:function(t,e){t=(t||"gregorian").toLowerCase(),e=e||"";var r=this._localCals[t+"-"+e];if(!r&&this.calendars[t]&&(r=new this.calendars[t](e),this._localCals[t+"-"+e]=r),!r)throw(this.local.invalidCalendar||this.regionalOptions[""].invalidCalendar).replace(/\{0\}/,t);return r},newDate:function(t,e,r,n,i){return(n=(null!=t&&t.year?t.calendar():"string"==typeof n?this.instance(n,i):n)||this.instance()).newDate(t,e,r)},substituteDigits:function(t){return function(e){return(e+"").replace(/[0-9]/g,(function(e){return t[e]}))}},substituteChineseDigits:function(t,e){return function(r){for(var n="",i=0;r>0;){var a=r%10;n=(0===a?"":t[a]+e[i])+n,i++,r=Math.floor(r/10)}return 0===n.indexOf(t[1]+e[1])&&(n=n.substr(1)),n||t[0]}}}),n(a.prototype,{newDate:function(t,e,r){return this._calendar.newDate(null==t?this:t,e,r)},year:function(t){return 0===arguments.length?this._year:this.set(t,"y")},month:function(t){return 0===arguments.length?this._month:this.set(t,"m")},day:function(t){return 0===arguments.length?this._day:this.set(t,"d")},date:function(t,e,r){if(!this._calendar.isValid(t,e,r))throw(c.local.invalidDate||c.regionalOptions[""].invalidDate).replace(/\{0\}/,this._calendar.local.name);return this._year=t,this._month=e,this._day=r,this},leapYear:function(){return this._calendar.leapYear(this)},epoch:function(){return this._calendar.epoch(this)},formatYear:function(){return this._calendar.formatYear(this)},monthOfYear:function(){return this._calendar.monthOfYear(this)},weekOfYear:function(){return this._calendar.weekOfYear(this)},daysInYear:function(){return this._calendar.daysInYear(this)},dayOfYear:function(){return this._calendar.dayOfYear(this)},daysInMonth:function(){return this._calendar.daysInMonth(this)},dayOfWeek:function(){return this._calendar.dayOfWeek(this)},weekDay:function(){return this._calendar.weekDay(this)},extraInfo:function(){return this._calendar.extraInfo(this)},add:function(t,e){return this._calendar.add(this,t,e)},set:function(t,e){return this._calendar.set(this,t,e)},compareTo:function(t){if(this._calendar.name!==t._calendar.name)throw(c.local.differentCalendars||c.regionalOptions[""].differentCalendars).replace(/\{0\}/,this._calendar.local.name).replace(/\{1\}/,t._calendar.local.name);var e=this._year!==t._year?this._year-t._year:this._month!==t._month?this.monthOfYear()-t.monthOfYear():this._day-t._day;return 0===e?0:e<0?-1:1},calendar:function(){return this._calendar},toJD:function(){return this._calendar.toJD(this)},fromJD:function(t){return this._calendar.fromJD(t)},toJSDate:function(){return this._calendar.toJSDate(this)},fromJSDate:function(t){return this._calendar.fromJSDate(t)},toString:function(){return(this.year()<0?"-":"")+o(Math.abs(this.year()),4)+"-"+o(this.month(),2)+"-"+o(this.day(),2)}}),n(s.prototype,{_validateLevel:0,newDate:function(t,e,r){return null==t?this.today():(t.year&&(this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[""].invalidDate),r=t.day(),e=t.month(),t=t.year()),new a(this,t,e,r))},today:function(){return this.fromJSDate(new Date)},epoch:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear).year()<0?this.local.epochs[0]:this.local.epochs[1]},formatYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear);return(e.year()<0?"-":"")+o(Math.abs(e.year()),4)},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear),12},monthOfYear:function(t,e){var r=this._validate(t,e,this.minDay,c.local.invalidMonth||c.regionalOptions[""].invalidMonth);return(r.month()+this.monthsInYear(r)-this.firstMonth)%this.monthsInYear(r)+this.minMonth},fromMonthOfYear:function(t,e){var r=(e+this.firstMonth-2*this.minMonth)%this.monthsInYear(t)+this.minMonth;return this._validate(t,r,this.minDay,c.local.invalidMonth||c.regionalOptions[""].invalidMonth),r},daysInYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear);return this.leapYear(e)?366:365},dayOfYear:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[""].invalidDate);return n.toJD()-this.newDate(n.year(),this.fromMonthOfYear(n.year(),this.minMonth),this.minDay).toJD()+1},daysInWeek:function(){return 7},dayOfWeek:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[""].invalidDate);return(Math.floor(this.toJD(n))+2)%this.daysInWeek()},extraInfo:function(t,e,r){return this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[""].invalidDate),{}},add:function(t,e,r){return this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[""].invalidDate),this._correctAdd(t,this._add(t,e,r),e,r)},_add:function(t,e,r){if(this._validateLevel++,"d"===r||"w"===r){var n=t.toJD()+e*("w"===r?this.daysInWeek():1),i=t.calendar().fromJD(n);return this._validateLevel--,[i.year(),i.month(),i.day()]}try{var a=t.year()+("y"===r?e:0),o=t.monthOfYear()+("m"===r?e:0);i=t.day();"y"===r?(t.month()!==this.fromMonthOfYear(a,o)&&(o=this.newDate(a,t.month(),this.minDay).monthOfYear()),o=Math.min(o,this.monthsInYear(a)),i=Math.min(i,this.daysInMonth(a,this.fromMonthOfYear(a,o)))):"m"===r&&(!function(t){for(;oe-1+t.minMonth;)a++,o-=e,e=t.monthsInYear(a)}(this),i=Math.min(i,this.daysInMonth(a,this.fromMonthOfYear(a,o))));var s=[a,this.fromMonthOfYear(a,o),i];return this._validateLevel--,s}catch(t){throw this._validateLevel--,t}},_correctAdd:function(t,e,r,n){if(!(this.hasYearZero||"y"!==n&&"m"!==n||0!==e[0]&&t.year()>0==e[0]>0)){var i={y:[1,1,"y"],m:[1,this.monthsInYear(-1),"m"],w:[this.daysInWeek(),this.daysInYear(-1),"d"],d:[1,this.daysInYear(-1),"d"]}[n],a=r<0?-1:1;e=this._add(t,r*i[0]+a*i[1],i[2])}return t.date(e[0],e[1],e[2])},set:function(t,e,r){this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[""].invalidDate);var n="y"===r?e:t.year(),i="m"===r?e:t.month(),a="d"===r?e:t.day();return"y"!==r&&"m"!==r||(a=Math.min(a,this.daysInMonth(n,i))),t.date(n,i,a)},isValid:function(t,e,r){this._validateLevel++;var n=this.hasYearZero||0!==t;if(n){var i=this.newDate(t,e,this.minDay);n=e>=this.minMonth&&e-this.minMonth=this.minDay&&r-this.minDay13.5?13:1),c=i-(l>2.5?4716:4715);return c<=0&&c--,this.newDate(c,l,s)},toJSDate:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[""].invalidDate),i=new Date(n.year(),n.month()-1,n.day());return i.setHours(0),i.setMinutes(0),i.setSeconds(0),i.setMilliseconds(0),i.setHours(i.getHours()>12?i.getHours()+2:0),i},fromJSDate:function(t){return this.newDate(t.getFullYear(),t.getMonth()+1,t.getDate())}});var c=e.exports=new i;c.cdate=a,c.baseCalendar=s,c.calendars.gregorian=l},{"object-assign":466}],618:[function(t,e,r){var n=t("object-assign"),i=t("./main");n(i.regionalOptions[""],{invalidArguments:"Invalid arguments",invalidFormat:"Cannot format a date from another calendar",missingNumberAt:"Missing number at position {0}",unknownNameAt:"Unknown name at position {0}",unexpectedLiteralAt:"Unexpected literal at position {0}",unexpectedText:"Additional text found at end"}),i.local=i.regionalOptions[""],n(i.cdate.prototype,{formatDate:function(t,e){return"string"!=typeof t&&(e=t,t=""),this._calendar.formatDate(t||"",this,e)}}),n(i.baseCalendar.prototype,{UNIX_EPOCH:i.instance().newDate(1970,1,1).toJD(),SECS_PER_DAY:86400,TICKS_EPOCH:i.instance().jdEpoch,TICKS_PER_DAY:864e9,ATOM:"yyyy-mm-dd",COOKIE:"D, dd M yyyy",FULL:"DD, MM d, yyyy",ISO_8601:"yyyy-mm-dd",JULIAN:"J",RFC_822:"D, d M yy",RFC_850:"DD, dd-M-yy",RFC_1036:"D, d M yy",RFC_1123:"D, d M yyyy",RFC_2822:"D, d M yyyy",RSS:"D, d M yy",TICKS:"!",TIMESTAMP:"@",W3C:"yyyy-mm-dd",formatDate:function(t,e,r){if("string"!=typeof t&&(r=e,e=t,t=""),!e)return"";if(e.calendar()!==this)throw i.local.invalidFormat||i.regionalOptions[""].invalidFormat;t=t||this.local.dateFormat;for(var n,a,o,s,l=(r=r||{}).dayNamesShort||this.local.dayNamesShort,c=r.dayNames||this.local.dayNames,u=r.monthNumbers||this.local.monthNumbers,f=r.monthNamesShort||this.local.monthNamesShort,h=r.monthNames||this.local.monthNames,p=(r.calculateWeek||this.local.calculateWeek,function(e,r){for(var n=1;w+n1}),d=function(t,e,r,n){var i=""+e;if(p(t,n))for(;i.length1},x=function(t,r){var n=y(t,r),a=[2,3,n?4:2,n?4:2,10,11,20]["oyYJ@!".indexOf(t)+1],o=new RegExp("^-?\\d{1,"+a+"}"),s=e.substring(A).match(o);if(!s)throw(i.local.missingNumberAt||i.regionalOptions[""].missingNumberAt).replace(/\{0\}/,A);return A+=s[0].length,parseInt(s[0],10)},b=this,_=function(){if("function"==typeof l){y("m");var t=l.call(b,e.substring(A));return A+=t.length,t}return x("m")},w=function(t,r,n,a){for(var o=y(t,a)?n:r,s=0;s-1){p=1,d=m;for(var E=this.daysInMonth(h,p);d>E;E=this.daysInMonth(h,p))p++,d-=E}return f>-1?this.fromJD(f):this.newDate(h,p,d)},determineDate:function(t,e,r,n,i){r&&"object"!=typeof r&&(i=n,n=r,r=null),"string"!=typeof n&&(i=n,n="");var a=this;return e=e?e.newDate():null,t=null==t?e:"string"==typeof t?function(t){try{return a.parseDate(n,t,i)}catch(t){}for(var e=((t=t.toLowerCase()).match(/^c/)&&r?r.newDate():null)||a.today(),o=/([+-]?[0-9]+)\s*(d|w|m|y)?/g,s=o.exec(t);s;)e.add(parseInt(s[1],10),s[2]||"d"),s=o.exec(t);return e}(t):"number"==typeof t?isNaN(t)||t===1/0||t===-1/0?e:a.today().add(t,"d"):a.newDate(t)}})},{"./main":617,"object-assign":466}],619:[function(t,e,r){"use strict";var n,i=function(){return function(t,e,r,n,i,a){var o=t[0],s=r[0],l=[0],c=s;n|=0;var u=0,f=s;for(u=0;u=0!=p>=0&&i.push(l[0]+.5+.5*(h+p)/(h-p)),n+=f,++l[0]}}};e.exports=(n={funcName:{funcName:"zeroCrossings"}.funcName},function(t){var e={};return function(r,n,i){var a=r.dtype,o=r.order,s=[a,o.join()].join(),l=e[s];return l||(e[s]=l=t([a,o])),l(r.shape.slice(0),r.data,r.stride,0|r.offset,n,i)}}(i.bind(void 0,n)))},{}],620:[function(t,e,r){"use strict";e.exports=function(t,e){var r=[];return e=+e||0,n(t.hi(t.shape[0]-1),r,e),r};var n=t("./lib/zc-core")},{"./lib/zc-core":619}],621:[function(t,e,r){"use strict";e.exports=[{path:"",backoff:0},{path:"M-2.4,-3V3L0.6,0Z",backoff:.6},{path:"M-3.7,-2.5V2.5L1.3,0Z",backoff:1.3},{path:"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z",backoff:1.55},{path:"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z",backoff:1.6},{path:"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z",backoff:2},{path:"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z",backoff:0,noRotate:!0},{path:"M2,2V-2H-2V2Z",backoff:0,noRotate:!0}]},{}],622:[function(t,e,r){"use strict";var n=t("./arrow_paths"),i=t("../../plots/font_attributes"),a=t("../../plots/cartesian/constants"),o=t("../../plot_api/plot_template").templatedArray;t("../../constants/axis_placeable_objects");e.exports=o("annotation",{visible:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},text:{valType:"string",editType:"calc+arraydraw"},textangle:{valType:"angle",dflt:0,editType:"calc+arraydraw"},font:i({editType:"calc+arraydraw",colorEditType:"arraydraw"}),width:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},height:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw"},align:{valType:"enumerated",values:["left","center","right"],dflt:"center",editType:"arraydraw"},valign:{valType:"enumerated",values:["top","middle","bottom"],dflt:"middle",editType:"arraydraw"},bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},bordercolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},borderpad:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},borderwidth:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},showarrow:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},arrowcolor:{valType:"color",editType:"arraydraw"},arrowhead:{valType:"integer",min:0,max:n.length,dflt:1,editType:"arraydraw"},startarrowhead:{valType:"integer",min:0,max:n.length,dflt:1,editType:"arraydraw"},arrowside:{valType:"flaglist",flags:["end","start"],extras:["none"],dflt:"end",editType:"arraydraw"},arrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},startarrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},arrowwidth:{valType:"number",min:.1,editType:"calc+arraydraw"},standoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},startstandoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},ax:{valType:"any",editType:"calc+arraydraw"},ay:{valType:"any",editType:"calc+arraydraw"},axref:{valType:"enumerated",dflt:"pixel",values:["pixel",a.idRegex.x.toString()],editType:"calc"},ayref:{valType:"enumerated",dflt:"pixel",values:["pixel",a.idRegex.y.toString()],editType:"calc"},xref:{valType:"enumerated",values:["paper",a.idRegex.x.toString()],editType:"calc"},x:{valType:"any",editType:"calc+arraydraw"},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"auto",editType:"calc+arraydraw"},xshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},yref:{valType:"enumerated",values:["paper",a.idRegex.y.toString()],editType:"calc"},y:{valType:"any",editType:"calc+arraydraw"},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"auto",editType:"calc+arraydraw"},yshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},clicktoshow:{valType:"enumerated",values:[!1,"onoff","onout"],dflt:!1,editType:"arraydraw"},xclick:{valType:"any",editType:"arraydraw"},yclick:{valType:"any",editType:"arraydraw"},hovertext:{valType:"string",editType:"arraydraw"},hoverlabel:{bgcolor:{valType:"color",editType:"arraydraw"},bordercolor:{valType:"color",editType:"arraydraw"},font:i({editType:"arraydraw"}),editType:"arraydraw"},captureevents:{valType:"boolean",editType:"arraydraw"},editType:"calc",_deprecated:{ref:{valType:"string",editType:"calc"}}})},{"../../constants/axis_placeable_objects":745,"../../plot_api/plot_template":816,"../../plots/cartesian/constants":834,"../../plots/font_attributes":856,"./arrow_paths":621}],623:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../plots/cartesian/axes"),a=t("./draw").draw;function o(t){var e=t._fullLayout;n.filterVisible(e.annotations).forEach((function(e){var r=i.getFromId(t,e.xref),n=i.getFromId(t,e.yref),a=i.getRefType(e.xref),o=i.getRefType(e.yref);e._extremes={},"range"===a&&s(e,r),"range"===o&&s(e,n)}))}function s(t,e){var r,n=e._id,a=n.charAt(0),o=t[a],s=t["a"+a],l=t[a+"ref"],c=t["a"+a+"ref"],u=t["_"+a+"padplus"],f=t["_"+a+"padminus"],h={x:1,y:-1}[a]*t[a+"shift"],p=3*t.arrowsize*t.arrowwidth||0,d=p+h,m=p-h,g=3*t.startarrowsize*t.arrowwidth||0,v=g+h,y=g-h;if(c===l){var x=i.findExtremes(e,[e.r2c(o)],{ppadplus:d,ppadminus:m}),b=i.findExtremes(e,[e.r2c(s)],{ppadplus:Math.max(u,v),ppadminus:Math.max(f,y)});r={min:[x.min[0],b.min[0]],max:[x.max[0],b.max[0]]}}else v=s?v+s:v,y=s?y-s:y,r=i.findExtremes(e,[e.r2c(o)],{ppadplus:Math.max(u,d,v),ppadminus:Math.max(f,m,y)});t._extremes[n]=r}e.exports=function(t){var e=t._fullLayout;if(n.filterVisible(e.annotations).length&&t._fullData.length)return n.syncOrAsync([a,o],t)}},{"../../lib":776,"../../plots/cartesian/axes":827,"./draw":628}],624:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("../../plot_api/plot_template").arrayEditor;function o(t,e){var r,n,i,a,o,l,c,u=t._fullLayout.annotations,f=[],h=[],p=[],d=(e||[]).length;for(r=0;r0||r.explicitOff.length>0},onClick:function(t,e){var r,s,l=o(t,e),c=l.on,u=l.off.concat(l.explicitOff),f={},h=t._fullLayout.annotations;if(!c.length&&!u.length)return;for(r=0;r2/3?"right":"center"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[e]}for(var W=!1,X=["x","y"],Z=0;Z1)&&(nt===rt?((pt=it.r2fraction(e["a"+et]))<0||pt>1)&&(W=!0):W=!0),J=it._offset+it.r2p(e[et]),$=.5}else{var dt="domain"===ht;"x"===et?(Q=e[et],J=dt?it._offset+it._length*Q:J=T.l+T.w*Q):(Q=1-e[et],J=dt?it._offset+it._length*Q:J=T.t+T.h*Q),$=e.showarrow?.5:Q}if(e.showarrow){ft.head=J;var mt=e["a"+et];if(tt=ot*q(.5,e.xanchor)-st*q(.5,e.yanchor),nt===rt){var gt=l.getRefType(nt);"domain"===gt?("y"===et&&(mt=1-mt),ft.tail=it._offset+it._length*mt):"paper"===gt?"y"===et?(mt=1-mt,ft.tail=T.t+T.h*mt):ft.tail=T.l+T.w*mt:ft.tail=it._offset+it.r2p(mt),K=tt}else ft.tail=J+mt,K=tt+mt;ft.text=ft.tail+tt;var vt=w["x"===et?"width":"height"];if("paper"===rt&&(ft.head=o.constrain(ft.head,1,vt-1)),"pixel"===nt){var yt=-Math.max(ft.tail-3,ft.text),xt=Math.min(ft.tail+3,ft.text)-vt;yt>0?(ft.tail+=yt,ft.text+=yt):xt>0&&(ft.tail-=xt,ft.text-=xt)}ft.tail+=ut,ft.head+=ut}else K=tt=lt*q($,ct),ft.text=J+tt;ft.text+=ut,tt+=ut,K+=ut,e["_"+et+"padplus"]=lt/2+K,e["_"+et+"padminus"]=lt/2-K,e["_"+et+"size"]=lt,e["_"+et+"shift"]=tt}if(W)R.remove();else{var bt=0,_t=0;if("left"!==e.align&&(bt=(A-b)*("center"===e.align?.5:1)),"top"!==e.valign&&(_t=(D-_)*("middle"===e.valign?.5:1)),f)n.select("svg").attr({x:N+bt-1,y:N+_t}).call(u.setClipUrl,U?L:null,t);else{var wt=N+_t-m.top,Tt=N+bt-m.left;G.call(h.positionText,Tt,wt).call(u.setClipUrl,U?L:null,t)}V.select("rect").call(u.setRect,N,N,A,D),j.call(u.setRect,F/2,F/2,B-F,H-F),R.call(u.setTranslate,Math.round(C.x.text-B/2),Math.round(C.y.text-H/2)),O.attr({transform:"rotate("+P+","+C.x.text+","+C.y.text+")"});var kt,At=function(r,n){I.selectAll(".annotation-arrow-g").remove();var l=C.x.head,f=C.y.head,h=C.x.tail+r,p=C.y.tail+n,m=C.x.text+r,b=C.y.text+n,_=o.rotationXYMatrix(P,m,b),w=o.apply2DTransform(_),A=o.apply2DTransform2(_),L=+j.attr("width"),z=+j.attr("height"),D=m-.5*L,F=D+L,B=b-.5*z,N=B+z,U=[[D,B,D,N],[D,N,F,N],[F,N,F,B],[F,B,D,B]].map(A);if(!U.reduce((function(t,e){return t^!!o.segmentsIntersect(l,f,l+1e6,f+1e6,e[0],e[1],e[2],e[3])}),!1)){U.forEach((function(t){var e=o.segmentsIntersect(h,p,l,f,t[0],t[1],t[2],t[3]);e&&(h=e.x,p=e.y)}));var V=e.arrowwidth,H=e.arrowcolor,q=e.arrowside,G=I.append("g").style({opacity:c.opacity(H)}).classed("annotation-arrow-g",!0),Y=G.append("path").attr("d","M"+h+","+p+"L"+l+","+f).style("stroke-width",V+"px").call(c.stroke,c.rgb(H));if(g(Y,q,e),k.annotationPosition&&Y.node().parentNode&&!a){var W=l,X=f;if(e.standoff){var Z=Math.sqrt(Math.pow(l-h,2)+Math.pow(f-p,2));W+=e.standoff*(h-l)/Z,X+=e.standoff*(p-f)/Z}var J,K,Q=G.append("path").classed("annotation-arrow",!0).classed("anndrag",!0).classed("cursor-move",!0).attr({d:"M3,3H-3V-3H3ZM0,0L"+(h-W)+","+(p-X),transform:s(W,X)}).style("stroke-width",V+6+"px").call(c.stroke,"rgba(0,0,0,0)").call(c.fill,"rgba(0,0,0,0)");d.init({element:Q.node(),gd:t,prepFn:function(){var t=u.getTranslate(R);J=t.x,K=t.y,v&&v.autorange&&M(v._name+".autorange",!0),x&&x.autorange&&M(x._name+".autorange",!0)},moveFn:function(t,r){var n=w(J,K),i=n[0]+t,a=n[1]+r;R.call(u.setTranslate,i,a),S("x",y(v,t,"x",T,e)),S("y",y(x,r,"y",T,e)),e.axref===e.xref&&S("ax",y(v,t,"ax",T,e)),e.ayref===e.yref&&S("ay",y(x,r,"ay",T,e)),G.attr("transform",s(t,r)),O.attr({transform:"rotate("+P+","+i+","+a+")"})},doneFn:function(){i.call("_guiRelayout",t,E());var e=document.querySelector(".js-notes-box-panel");e&&e.redraw(e.selectedObj)}})}}};if(e.showarrow&&At(0,0),z)d.init({element:R.node(),gd:t,prepFn:function(){kt=O.attr("transform")},moveFn:function(t,r){var n="pointer";if(e.showarrow)e.axref===e.xref?S("ax",y(v,t,"ax",T,e)):S("ax",e.ax+t),e.ayref===e.yref?S("ay",y(x,r,"ay",T.w,e)):S("ay",e.ay+r),At(t,r);else{if(a)return;var i,o;if(v)i=y(v,t,"x",T,e);else{var l=e._xsize/T.w,c=e.x+(e._xshift-e.xshift)/T.w-l/2;i=d.align(c+t/T.w,l,0,1,e.xanchor)}if(x)o=y(x,r,"y",T,e);else{var u=e._ysize/T.h,f=e.y-(e._yshift+e.yshift)/T.h-u/2;o=d.align(f-r/T.h,u,0,1,e.yanchor)}S("x",i),S("y",o),v&&x||(n=d.getCursor(v?.5:i,x?.5:o,e.xanchor,e.yanchor))}O.attr({transform:s(t,r)+kt}),p(R,n)},clickFn:function(r,n){e.captureevents&&t.emit("plotly_clickannotation",Y(n))},doneFn:function(){p(R),i.call("_guiRelayout",t,E());var e=document.querySelector(".js-notes-box-panel");e&&e.redraw(e.selectedObj)}})}}}e.exports={draw:function(t){var e=t._fullLayout;e._infolayer.selectAll(".annotation").remove();for(var r=0;r=0,x=e.indexOf("end")>=0,b=d.backoff*g+r.standoff,_=m.backoff*v+r.startstandoff;if("line"===p.nodeName){o={x:+t.attr("x1"),y:+t.attr("y1")},u={x:+t.attr("x2"),y:+t.attr("y2")};var w=o.x-u.x,T=o.y-u.y;if(h=(f=Math.atan2(T,w))+Math.PI,b&&_&&b+_>Math.sqrt(w*w+T*T))return void z();if(b){if(b*b>w*w+T*T)return void z();var k=b*Math.cos(f),A=b*Math.sin(f);u.x+=k,u.y+=A,t.attr({x2:u.x,y2:u.y})}if(_){if(_*_>w*w+T*T)return void z();var M=_*Math.cos(f),S=_*Math.sin(f);o.x-=M,o.y-=S,t.attr({x1:o.x,y1:o.y})}}else if("path"===p.nodeName){var E=p.getTotalLength(),L="";if(E1){c=!0;break}}c?t.fullLayout._infolayer.select(".annotation-"+t.id+'[data-index="'+s+'"]').remove():(l._pdata=i(t.glplot.cameraParams,[e.xaxis.r2l(l.x)*r[0],e.yaxis.r2l(l.y)*r[1],e.zaxis.r2l(l.z)*r[2]]),n(t.graphDiv,l,s,t.id,l._xa,l._ya))}}},{"../../plots/gl3d/project":878,"../annotations/draw":628}],635:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib");e.exports={moduleType:"component",name:"annotations3d",schema:{subplots:{scene:{annotations:t("./attributes")}}},layoutAttributes:t("./attributes"),handleDefaults:t("./defaults"),includeBasePlot:function(t,e){var r=n.subplotsRegistry.gl3d;if(!r)return;for(var a=r.attrRegex,o=Object.keys(t),s=0;s=0))return t;if(3===o)n[o]>1&&(n[o]=1);else if(n[o]>=1)return t}var s=Math.round(255*n[0])+", "+Math.round(255*n[1])+", "+Math.round(255*n[2]);return a?"rgba("+s+", "+n[3]+")":"rgb("+s+")"}o.tinyRGB=function(t){var e=t.toRgb();return"rgb("+Math.round(e.r)+", "+Math.round(e.g)+", "+Math.round(e.b)+")"},o.rgb=function(t){return o.tinyRGB(n(t))},o.opacity=function(t){return t?n(t).getAlpha():0},o.addOpacity=function(t,e){var r=n(t).toRgb();return"rgba("+Math.round(r.r)+", "+Math.round(r.g)+", "+Math.round(r.b)+", "+e+")"},o.combine=function(t,e){var r=n(t).toRgb();if(1===r.a)return n(t).toRgbString();var i=n(e||c).toRgb(),a=1===i.a?i:{r:255*(1-i.a)+i.r*i.a,g:255*(1-i.a)+i.g*i.a,b:255*(1-i.a)+i.b*i.a},o={r:a.r*(1-r.a)+r.r*r.a,g:a.g*(1-r.a)+r.g*r.a,b:a.b*(1-r.a)+r.b*r.a};return n(o).toRgbString()},o.contrast=function(t,e,r){var i=n(t);return 1!==i.getAlpha()&&(i=n(o.combine(t,c))),(i.isDark()?e?i.lighten(e):c:r?i.darken(r):l).toString()},o.stroke=function(t,e){var r=n(e);t.style({stroke:o.tinyRGB(r),"stroke-opacity":r.getAlpha()})},o.fill=function(t,e){var r=n(e);t.style({fill:o.tinyRGB(r),"fill-opacity":r.getAlpha()})},o.clean=function(t){if(t&&"object"==typeof t){var e,r,n,i,s=Object.keys(t);for(e=0;e0?n>=l:n<=l));i++)n>u&&n0?n>=l:n<=l));i++)n>r[0]&&n1){var J=Math.pow(10,Math.floor(Math.log(Z)/Math.LN10));W*=J*c.roundUp(Z/J,[2,5,10]),(Math.abs(C.start)/C.size+1e-6)%1<2e-6&&(Y.tick0=0)}Y.dtick=W}Y.domain=[H+j,H+F-j],Y.setScale(),t.attr("transform",u(Math.round(l.l),Math.round(l.t)));var K,Q=t.select("."+A.cbtitleunshift).attr("transform",u(-Math.round(l.l),-Math.round(l.t))),$=t.select("."+A.cbaxis),tt=0;function et(n,i){var a={propContainer:Y,propName:e._propPrefix+"title",traceIndex:e._traceIndex,_meta:e._meta,placeholder:o._dfltTitle.colorbar,containerGroup:t.select("."+A.cbtitle)},s="h"===n.charAt(0)?n.substr(1):"h"+n;t.selectAll("."+s+",."+s+"-math-group").remove(),m.draw(r,n,f(a,i||{}))}return c.syncOrAsync([a.previousPromises,function(){if(-1!==["top","bottom"].indexOf(M)){var t,r=l.l+(e.x+B)*l.w,n=Y.title.font.size;t="top"===M?(1-(H+F-j))*l.h+l.t+3+.75*n:(1-(H+j))*l.h+l.t-3-.25*n,et(Y._id+"title",{attributes:{x:r,y:t,"text-anchor":"start"}})}},function(){if(-1!==["top","bottom"].indexOf(M)){var a=t.select("."+A.cbtitle),o=a.select("text"),f=[-e.outlinewidth/2,e.outlinewidth/2],h=a.select(".h"+Y._id+"title-math-group").node(),d=15.6;if(o.node()&&(d=parseInt(o.node().style.fontSize,10)*w),h?(tt=p.bBox(h).height)>d&&(f[1]-=(tt-d)/2):o.node()&&!o.classed(A.jsPlaceholder)&&(tt=p.bBox(o.node()).height),tt){if(tt+=5,"top"===M)Y.domain[1]-=tt/l.h,f[1]*=-1;else{Y.domain[0]+=tt/l.h;var m=g.lineCount(o);f[1]+=(1-m)*d}a.attr("transform",u(f[0],f[1])),Y.setScale()}}t.selectAll("."+A.cbfills+",."+A.cblines).attr("transform",u(0,Math.round(l.h*(1-Y.domain[1])))),$.attr("transform",u(0,Math.round(-l.t)));var y=t.select("."+A.cbfills).selectAll("rect."+A.cbfill).attr("style","").data(I);y.enter().append("rect").classed(A.cbfill,!0).style("stroke","none"),y.exit().remove();var x=S.map(Y.c2p).map(Math.round).sort((function(t,e){return t-e}));y.each((function(t,a){var o=[0===a?S[0]:(I[a]+I[a-1])/2,a===I.length-1?S[1]:(I[a]+I[a+1])/2].map(Y.c2p).map(Math.round);o[1]=c.constrain(o[1]+(o[1]>o[0])?1:-1,x[0],x[1]);var s=n.select(this).attr({x:U,width:Math.max(z,2),y:n.min(o),height:Math.max(n.max(o)-n.min(o),2)});if(e._fillgradient)p.gradient(s,r,e._id,"vertical",e._fillgradient,"fill");else{var l=L(t).replace("e-","");s.attr("fill",i(l).toHexString())}}));var b=t.select("."+A.cblines).selectAll("path."+A.cbline).data(v.color&&v.width?O:[]);b.enter().append("path").classed(A.cbline,!0),b.exit().remove(),b.each((function(t){n.select(this).attr("d","M"+U+","+(Math.round(Y.c2p(t))+v.width/2%1)+"h"+z).call(p.lineGroupStyle,v.width,E(t),v.dash)})),$.selectAll("g."+Y._id+"tick,path").remove();var _=U+z+(e.outlinewidth||0)/2-("outside"===e.ticks?1:0),T=s.calcTicks(Y),k=s.getTickSigns(Y)[2];return s.drawTicks(r,Y,{vals:"inside"===Y.ticks?s.clipEnds(Y,T):T,layer:$,path:s.makeTickPath(Y,_,k),transFn:s.makeTransTickFn(Y)}),s.drawLabels(r,Y,{vals:T,layer:$,transFn:s.makeTransTickLabelFn(Y),labelFns:s.makeLabelFns(Y,_)})},function(){if(-1===["top","bottom"].indexOf(M)){var t=Y.title.font.size,e=Y._offset+Y._length/2,i=l.l+(Y.position||0)*l.w+("right"===Y.side?10+t*(Y.showticklabels?1:.5):-10-t*(Y.showticklabels?.5:0));et("h"+Y._id+"title",{avoid:{selection:n.select(r).selectAll("g."+Y._id+"tick"),side:M,offsetLeft:l.l,offsetTop:0,maxShift:o.width},attributes:{x:i,y:e,"text-anchor":"middle"},transform:{rotate:"-90",offset:0}})}},a.previousPromises,function(){var n=z+e.outlinewidth/2;if(-1===Y.ticklabelposition.indexOf("inside")&&(n+=p.bBox($.node()).width),(K=Q.select("text")).node()&&!K.classed(A.jsPlaceholder)){var i,o=Q.select(".h"+Y._id+"title-math-group").node();i=o&&-1!==["top","bottom"].indexOf(M)?p.bBox(o).width:p.bBox(Q.node()).right-U-l.l,n=Math.max(n,i)}var s=2*e.xpad+n+e.borderwidth+e.outlinewidth/2,c=q-G;t.select("."+A.cbbg).attr({x:U-e.xpad-(e.borderwidth+e.outlinewidth)/2,y:G-N,width:Math.max(s,2),height:Math.max(c+2*N,2)}).call(d.fill,e.bgcolor).call(d.stroke,e.bordercolor).style("stroke-width",e.borderwidth),t.selectAll("."+A.cboutline).attr({x:U,y:G+e.ypad+("top"===M?tt:0),width:Math.max(z,2),height:Math.max(c-2*e.ypad-tt,2)}).call(d.stroke,e.outlinecolor).style({fill:"none","stroke-width":e.outlinewidth});var f=({center:.5,right:1}[e.xanchor]||0)*s;t.attr("transform",u(l.l-f,l.t));var h={},m=T[e.yanchor],g=k[e.yanchor];"pixels"===e.lenmode?(h.y=e.y,h.t=c*m,h.b=c*g):(h.t=h.b=0,h.yt=e.y+e.len*m,h.yb=e.y-e.len*g);var v=T[e.xanchor],y=k[e.xanchor];if("pixels"===e.thicknessmode)h.x=e.x,h.l=s*v,h.r=s*y;else{var x=s-z;h.l=x*v,h.r=x*y,h.xl=e.x-e.thickness*v,h.xr=e.x+e.thickness*y}a.autoMargin(r,e._id,h)}],r)}(r,e,t);v&&v.then&&(t._promises||[]).push(v),t._context.edits.colorbarPosition&&function(t,e,r){var n,i,a,s=r._fullLayout._size;l.init({element:t.node(),gd:r,prepFn:function(){n=t.attr("transform"),h(t)},moveFn:function(r,o){t.attr("transform",n+u(r,o)),i=l.align(e._xLeftFrac+r/s.w,e._thickFrac,0,1,e.xanchor),a=l.align(e._yBottomFrac-o/s.h,e._lenFrac,0,1,e.yanchor);var c=l.getCursor(i,a,e.xanchor,e.yanchor);h(t,c)},doneFn:function(){if(h(t),void 0!==i&&void 0!==a){var n={};n[e._propPrefix+"x"]=i,n[e._propPrefix+"y"]=a,void 0!==e._traceIndex?o.call("_guiRestyle",r,n,e._traceIndex):o.call("_guiRelayout",r,n)}}})}(r,e,t)})),e.exit().each((function(e){a.autoMargin(t,e._id)})).remove(),e.order()}}},{"../../constants/alignment":744,"../../lib":776,"../../lib/extend":766,"../../lib/setcursor":797,"../../lib/svg_text_utils":802,"../../plots/cartesian/axes":827,"../../plots/cartesian/axis_defaults":829,"../../plots/cartesian/layout_attributes":842,"../../plots/cartesian/position_defaults":845,"../../plots/plots":890,"../../registry":904,"../color":639,"../colorscale/helpers":650,"../dragelement":658,"../drawing":661,"../titles":737,"./constants":641,"@plotly/d3":58,tinycolor2:572}],644:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t){return n.isPlainObject(t.colorbar)}},{"../../lib":776}],645:[function(t,e,r){"use strict";e.exports={moduleType:"component",name:"colorbar",attributes:t("./attributes"),supplyDefaults:t("./defaults"),draw:t("./draw").draw,hasColorbar:t("./has_colorbar")}},{"./attributes":640,"./defaults":642,"./draw":643,"./has_colorbar":644}],646:[function(t,e,r){"use strict";var n=t("../colorbar/attributes"),i=t("../../lib/regex").counter,a=t("../../lib/sort_object_keys"),o=t("./scales.js").scales;a(o);function s(t){return"`"+t+"`"}e.exports=function(t,e){t=t||"";var r,a=(e=e||{}).cLetter||"c",l=("onlyIfNumerical"in e?e.onlyIfNumerical:Boolean(t),"noScale"in e?e.noScale:"marker.line"===t),c="showScaleDflt"in e?e.showScaleDflt:"z"===a,u="string"==typeof e.colorscaleDflt?o[e.colorscaleDflt]:null,f=e.editTypeOverride||"",h=t?t+".":"";"colorAttr"in e?(r=e.colorAttr,e.colorAttr):s(h+(r={z:"z",c:"color"}[a]));var p=a+"auto",d=a+"min",m=a+"max",g=a+"mid",v=(s(h+p),s(h+d),s(h+m),{});v[d]=v[m]=void 0;var y={};y[p]=!1;var x={};return"color"===r&&(x.color={valType:"color",arrayOk:!0,editType:f||"style"},e.anim&&(x.color.anim=!0)),x[p]={valType:"boolean",dflt:!0,editType:"calc",impliedEdits:v},x[d]={valType:"number",dflt:null,editType:f||"plot",impliedEdits:y},x[m]={valType:"number",dflt:null,editType:f||"plot",impliedEdits:y},x[g]={valType:"number",dflt:null,editType:"calc",impliedEdits:v},x.colorscale={valType:"colorscale",editType:"calc",dflt:u,impliedEdits:{autocolorscale:!1}},x.autocolorscale={valType:"boolean",dflt:!1!==e.autoColorDflt,editType:"calc",impliedEdits:{colorscale:void 0}},x.reversescale={valType:"boolean",dflt:!1,editType:"plot"},l||(x.showscale={valType:"boolean",dflt:c,editType:"calc"},x.colorbar=n),e.noColorAxis||(x.coloraxis={valType:"subplotid",regex:i("coloraxis"),dflt:null,editType:"calc"}),x}},{"../../lib/regex":793,"../../lib/sort_object_keys":799,"../colorbar/attributes":640,"./scales.js":654}],647:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("./helpers").extractOpts;e.exports=function(t,e,r){var o,s=t._fullLayout,l=r.vals,c=r.containerStr,u=c?i.nestedProperty(e,c).get():e,f=a(u),h=!1!==f.auto,p=f.min,d=f.max,m=f.mid,g=function(){return i.aggNums(Math.min,null,l)},v=function(){return i.aggNums(Math.max,null,l)};(void 0===p?p=g():h&&(p=u._colorAx&&n(p)?Math.min(p,g()):g()),void 0===d?d=v():h&&(d=u._colorAx&&n(d)?Math.max(d,v()):v()),h&&void 0!==m&&(d-m>m-p?p=m-(d-m):d-m=0?s.colorscale.sequential:s.colorscale.sequentialminus,f._sync("colorscale",o))}},{"../../lib":776,"./helpers":650,"fast-isnumeric":242}],648:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./helpers").hasColorscale,a=t("./helpers").extractOpts;e.exports=function(t,e){function r(t,e){var r=t["_"+e];void 0!==r&&(t[e]=r)}function o(t,i){var o=i.container?n.nestedProperty(t,i.container).get():t;if(o)if(o.coloraxis)o._colorAx=e[o.coloraxis];else{var s=a(o),l=s.auto;(l||void 0===s.min)&&r(o,i.min),(l||void 0===s.max)&&r(o,i.max),s.autocolorscale&&r(o,"colorscale")}}for(var s=0;s=0;n--,i++){var a=t[n];r[i]=[1-a[0],a[1]]}return r}function d(t,e){e=e||{};for(var r=t.domain,o=t.range,l=o.length,c=new Array(l),u=0;u4/3-s?o:s}},{}],656:[function(t,e,r){"use strict";var n=t("../../lib"),i=[["sw-resize","s-resize","se-resize"],["w-resize","move","e-resize"],["nw-resize","n-resize","ne-resize"]];e.exports=function(t,e,r,a){return t="left"===r?0:"center"===r?1:"right"===r?2:n.constrain(Math.floor(3*t),0,2),e="bottom"===a?0:"middle"===a?1:"top"===a?2:n.constrain(Math.floor(3*e),0,2),i[e][t]}},{"../../lib":776}],657:[function(t,e,r){"use strict";r.selectMode=function(t){return"lasso"===t||"select"===t},r.drawMode=function(t){return"drawclosedpath"===t||"drawopenpath"===t||"drawline"===t||"drawrect"===t||"drawcircle"===t},r.openMode=function(t){return"drawline"===t||"drawopenpath"===t},r.rectMode=function(t){return"select"===t||"drawline"===t||"drawrect"===t||"drawcircle"===t},r.freeMode=function(t){return"lasso"===t||"drawclosedpath"===t||"drawopenpath"===t},r.selectingOrDrawing=function(t){return r.freeMode(t)||r.rectMode(t)}},{}],658:[function(t,e,r){"use strict";var n=t("mouse-event-offset"),i=t("has-hover"),a=t("has-passive-events"),o=t("../../lib").removeElement,s=t("../../plots/cartesian/constants"),l=e.exports={};l.align=t("./align"),l.getCursor=t("./cursor");var c=t("./unhover");function u(){var t=document.createElement("div");t.className="dragcover";var e=t.style;return e.position="fixed",e.left=0,e.right=0,e.top=0,e.bottom=0,e.zIndex=999999999,e.background="none",document.body.appendChild(t),t}function f(t){return n(t.changedTouches?t.changedTouches[0]:t,document.body)}l.unhover=c.wrapped,l.unhoverRaw=c.raw,l.init=function(t){var e,r,n,c,h,p,d,m,g=t.gd,v=1,y=g._context.doubleClickDelay,x=t.element;g._mouseDownTime||(g._mouseDownTime=0),x.style.pointerEvents="all",x.onmousedown=_,a?(x._ontouchstart&&x.removeEventListener("touchstart",x._ontouchstart),x._ontouchstart=_,x.addEventListener("touchstart",_,{passive:!1})):x.ontouchstart=_;var b=t.clampFn||function(t,e,r){return Math.abs(t)y&&(v=Math.max(v-1,1)),g._dragged)t.doneFn&&t.doneFn();else if(t.clickFn&&t.clickFn(v,p),!m){var r;try{r=new MouseEvent("click",e)}catch(t){var n=f(e);(r=document.createEvent("MouseEvents")).initMouseEvent("click",e.bubbles,e.cancelable,e.view,e.detail,e.screenX,e.screenY,n[0],n[1],e.ctrlKey,e.altKey,e.shiftKey,e.metaKey,e.button,e.relatedTarget)}d.dispatchEvent(r)}g._dragging=!1,g._dragged=!1}else g._dragged=!1}},l.coverSlip=u},{"../../lib":776,"../../plots/cartesian/constants":834,"./align":655,"./cursor":656,"./unhover":659,"has-hover":425,"has-passive-events":426,"mouse-event-offset":450}],659:[function(t,e,r){"use strict";var n=t("../../lib/events"),i=t("../../lib/throttle"),a=t("../../lib/dom").getGraphDiv,o=t("../fx/constants"),s=e.exports={};s.wrapped=function(t,e,r){(t=a(t))._fullLayout&&i.clear(t._fullLayout._uid+o.HOVERID),s.raw(t,e,r)},s.raw=function(t,e){var r=t._fullLayout,i=t._hoverdata;e||(e={}),e.target&&!t._dragged&&!1===n.triggerHandler(t,"plotly_beforehover",e)||(r._hoverlayer.selectAll("g").remove(),r._hoverlayer.selectAll("line").remove(),r._hoverlayer.selectAll("circle").remove(),t._hoverdata=void 0,e.target&&i&&t.emit("plotly_unhover",{event:e,points:i}))}},{"../../lib/dom":764,"../../lib/events":765,"../../lib/throttle":803,"../fx/constants":673}],660:[function(t,e,r){"use strict";r.dash={valType:"string",values:["solid","dot","dash","longdash","dashdot","longdashdot"],dflt:"solid",editType:"style"},r.pattern={shape:{valType:"enumerated",values:["","/","\\","x","-","|","+","."],dflt:"",arrayOk:!0,editType:"style"},fillmode:{valType:"enumerated",values:["replace","overlay"],dflt:"replace",editType:"style"},bgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgopacity:{valType:"number",editType:"style",min:0,max:1},size:{valType:"number",min:0,dflt:8,arrayOk:!0,editType:"style"},solidity:{valType:"number",min:0,max:1,dflt:.3,arrayOk:!0,editType:"style"},editType:"style"}},{}],661:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=i.numberFormat,o=t("fast-isnumeric"),s=t("tinycolor2"),l=t("../../registry"),c=t("../color"),u=t("../colorscale"),f=i.strTranslate,h=t("../../lib/svg_text_utils"),p=t("../../constants/xmlns_namespaces"),d=t("../../constants/alignment").LINE_SPACING,m=t("../../constants/interactions").DESELECTDIM,g=t("../../traces/scatter/subtypes"),v=t("../../traces/scatter/make_bubble_size_func"),y=t("../../components/fx/helpers").appendArrayPointValue,x=e.exports={};x.font=function(t,e,r,n){i.isPlainObject(e)&&(n=e.color,r=e.size,e=e.family),e&&t.style("font-family",e),r+1&&t.style("font-size",r+"px"),n&&t.call(c.fill,n)},x.setPosition=function(t,e,r){t.attr("x",e).attr("y",r)},x.setSize=function(t,e,r){t.attr("width",e).attr("height",r)},x.setRect=function(t,e,r,n,i){t.call(x.setPosition,e,r).call(x.setSize,n,i)},x.translatePoint=function(t,e,r,n){var i=r.c2p(t.x),a=n.c2p(t.y);return!!(o(i)&&o(a)&&e.node())&&("text"===e.node().nodeName?e.attr("x",i).attr("y",a):e.attr("transform",f(i,a)),!0)},x.translatePoints=function(t,e,r){t.each((function(t){var i=n.select(this);x.translatePoint(t,i,e,r)}))},x.hideOutsideRangePoint=function(t,e,r,n,i,a){e.attr("display",r.isPtWithinRange(t,i)&&n.isPtWithinRange(t,a)?null:"none")},x.hideOutsideRangePoints=function(t,e){if(e._hasClipOnAxisFalse){var r=e.xaxis,i=e.yaxis;t.each((function(e){var a=e[0].trace,o=a.xcalendar,s=a.ycalendar,c=l.traceIs(a,"bar-like")?".bartext":".point,.textpoint";t.selectAll(c).each((function(t){x.hideOutsideRangePoint(t,n.select(this),r,i,o,s)}))}))}},x.crispRound=function(t,e,r){return e&&o(e)?t._context.staticPlot?e:e<1?1:Math.round(e):r||0},x.singleLineStyle=function(t,e,r,n,i){e.style("fill","none");var a=(((t||[])[0]||{}).trace||{}).line||{},o=r||a.width||0,s=i||a.dash||"";c.stroke(e,n||a.color),x.dashLine(e,s,o)},x.lineGroupStyle=function(t,e,r,i){t.style("fill","none").each((function(t){var a=(((t||[])[0]||{}).trace||{}).line||{},o=e||a.width||0,s=i||a.dash||"";n.select(this).call(c.stroke,r||a.color).call(x.dashLine,s,o)}))},x.dashLine=function(t,e,r){r=+r||0,e=x.dashStyle(e,r),t.style({"stroke-dasharray":e,"stroke-width":r+"px"})},x.dashStyle=function(t,e){e=+e||1;var r=Math.max(e,3);return"solid"===t?t="":"dot"===t?t=r+"px,"+r+"px":"dash"===t?t=3*r+"px,"+3*r+"px":"longdash"===t?t=5*r+"px,"+5*r+"px":"dashdot"===t?t=3*r+"px,"+r+"px,"+r+"px,"+r+"px":"longdashdot"===t&&(t=5*r+"px,"+2*r+"px,"+r+"px,"+2*r+"px"),t},x.singleFillStyle=function(t){var e=(((n.select(t.node()).data()[0]||[])[0]||{}).trace||{}).fillcolor;e&&t.call(c.fill,e)},x.fillGroupStyle=function(t){t.style("stroke-width",0).each((function(t){var e=n.select(this);t[0].trace&&e.call(c.fill,t[0].trace.fillcolor)}))};var b=t("./symbol_defs");x.symbolNames=[],x.symbolFuncs=[],x.symbolNeedLines={},x.symbolNoDot={},x.symbolNoFill={},x.symbolList=[],Object.keys(b).forEach((function(t){var e=b[t],r=e.n;x.symbolList.push(r,String(r),t,r+100,String(r+100),t+"-open"),x.symbolNames[r]=t,x.symbolFuncs[r]=e.f,e.needLine&&(x.symbolNeedLines[r]=!0),e.noDot?x.symbolNoDot[r]=!0:x.symbolList.push(r+200,String(r+200),t+"-dot",r+300,String(r+300),t+"-open-dot"),e.noFill&&(x.symbolNoFill[r]=!0)}));var _=x.symbolNames.length;function w(t,e){var r=t%100;return x.symbolFuncs[r](e)+(t>=200?"M0,0.5L0.5,0L0,-0.5L-0.5,0Z":"")}x.symbolNumber=function(t){if(o(t))t=+t;else if("string"==typeof t){var e=0;t.indexOf("-open")>0&&(e=100,t=t.replace("-open","")),t.indexOf("-dot")>0&&(e+=200,t=t.replace("-dot","")),(t=x.symbolNames.indexOf(t))>=0&&(t+=e)}return t%100>=_||t>=400?0:Math.floor(Math.max(t,0))};var T={x1:1,x2:0,y1:0,y2:0},k={x1:0,x2:0,y1:1,y2:0},A=a("~f"),M={radial:{node:"radialGradient"},radialreversed:{node:"radialGradient",reversed:!0},horizontal:{node:"linearGradient",attrs:T},horizontalreversed:{node:"linearGradient",attrs:T,reversed:!0},vertical:{node:"linearGradient",attrs:k},verticalreversed:{node:"linearGradient",attrs:k,reversed:!0}};x.gradient=function(t,e,r,a,o,l){for(var u=o.length,f=M[a],h=new Array(u),p=0;p"+v(t);d._gradientUrlQueryParts[y]=1},x.pattern=function(t,e,r,a,o,s,l,u,f,h,p,d){var m="legend"===e;u&&("overlay"===f?(h=u,p=c.contrast(h)):(h=void 0,p=u));var g,v,y,x,b,_,w,T,k,A,M,S=r._fullLayout,E="p"+S._uid+"-"+a,L={};switch(o){case"/":g=s*Math.sqrt(2),v=s*Math.sqrt(2),_="path",L={d:y="M-"+g/4+","+v/4+"l"+g/2+",-"+v/2+"M0,"+v+"L"+g+",0M"+g/4*3+","+v/4*5+"l"+g/2+",-"+v/2,opacity:d,stroke:p,"stroke-width":(x=l*s)+"px"};break;case"\\":g=s*Math.sqrt(2),v=s*Math.sqrt(2),_="path",L={d:y="M"+g/4*3+",-"+v/4+"l"+g/2+","+v/2+"M0,0L"+g+","+v+"M-"+g/4+","+v/4*3+"l"+g/2+","+v/2,opacity:d,stroke:p,"stroke-width":(x=l*s)+"px"};break;case"x":g=s*Math.sqrt(2),v=s*Math.sqrt(2),y="M-"+g/4+","+v/4+"l"+g/2+",-"+v/2+"M0,"+v+"L"+g+",0M"+g/4*3+","+v/4*5+"l"+g/2+",-"+v/2+"M"+g/4*3+",-"+v/4+"l"+g/2+","+v/2+"M0,0L"+g+","+v+"M-"+g/4+","+v/4*3+"l"+g/2+","+v/2,x=s-s*Math.sqrt(1-l),_="path",L={d:y,opacity:d,stroke:p,"stroke-width":x+"px"};break;case"|":_="path",_="path",L={d:y="M"+(g=s)/2+",0L"+g/2+","+(v=s),opacity:d,stroke:p,"stroke-width":(x=l*s)+"px"};break;case"-":_="path",_="path",L={d:y="M0,"+(v=s)/2+"L"+(g=s)+","+v/2,opacity:d,stroke:p,"stroke-width":(x=l*s)+"px"};break;case"+":_="path",y="M"+(g=s)/2+",0L"+g/2+","+(v=s)+"M0,"+v/2+"L"+g+","+v/2,x=s-s*Math.sqrt(1-l),_="path",L={d:y,opacity:d,stroke:p,"stroke-width":x+"px"};break;case".":g=s,v=s,l.pattern_filled";S._patternUrlQueryParts[I]=1},x.initGradients=function(t){var e=t._fullLayout;i.ensureSingle(e._defs,"g","gradients").selectAll("linearGradient,radialGradient").remove(),e._gradientUrlQueryParts={}},x.initPatterns=function(t){var e=t._fullLayout;i.ensureSingle(e._defs,"g","patterns").selectAll("pattern").remove(),e._patternUrlQueryParts={}},x.getPatternAttr=function(t,e,r){return t&&i.isArrayOrTypedArray(t)?e=100,e.attr("d",w(u,l))}var f,h,p,d=!1;if(t.so)p=s.outlierwidth,h=s.outliercolor,f=o.outliercolor;else{var m=(s||{}).width;p=(t.mlw+1||m+1||(t.trace?(t.trace.marker.line||{}).width:0)+1)-1||0,h="mlc"in t?t.mlcc=n.lineScale(t.mlc):i.isArrayOrTypedArray(s.color)?c.defaultLine:s.color,i.isArrayOrTypedArray(o.color)&&(f=c.defaultLine,d=!0),f="mc"in t?t.mcc=n.markerScale(t.mc):o.color||"rgba(0,0,0,0)",n.selectedColorFn&&(f=n.selectedColorFn(t))}if(t.om)e.call(c.stroke,f).style({"stroke-width":(p||1)+"px",fill:"none"});else{e.style("stroke-width",(t.isBlank?0:p)+"px");var g=o.gradient,v=t.mgt;v?d=!0:v=g&&g.type,i.isArrayOrTypedArray(v)&&(v=v[0],M[v]||(v=0));var y=o.pattern,b=y&&x.getPatternAttr(y.shape,t.i,"");if(v&&"none"!==v){var _=t.mgc;_?d=!0:_=g.color;var T=r.uid;d&&(T+="-"+t.i),x.gradient(e,a,T,v,[[0,_],[1,f]],"fill")}else if(b){var k=x.getPatternAttr(y.bgcolor,t.i,null),A=x.getPatternAttr(y.fgcolor,t.i,null),S=y.fgopacity,E=x.getPatternAttr(y.size,t.i,8),L=x.getPatternAttr(y.solidity,t.i,.3),C=t.mcc||i.isArrayOrTypedArray(y.shape)||i.isArrayOrTypedArray(y.bgcolor)||i.isArrayOrTypedArray(y.size)||i.isArrayOrTypedArray(y.solidity),P=r.uid;C&&(P+="-"+t.i),x.pattern(e,"point",a,P,b,E,L,t.mcc,y.fillmode,k,A,S)}else c.fill(e,f);p&&c.stroke(e,h)}},x.makePointStyleFns=function(t){var e={},r=t.marker;return e.markerScale=x.tryColorscale(r,""),e.lineScale=x.tryColorscale(r,"line"),l.traceIs(t,"symbols")&&(e.ms2mrc=g.isBubble(t)?v(t):function(){return(r.size||6)/2}),t.selectedpoints&&i.extendFlat(e,x.makeSelectedPointStyleFns(t)),e},x.makeSelectedPointStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},a=t.marker||{},o=r.marker||{},s=n.marker||{},c=a.opacity,u=o.opacity,f=s.opacity,h=void 0!==u,p=void 0!==f;(i.isArrayOrTypedArray(c)||h||p)&&(e.selectedOpacityFn=function(t){var e=void 0===t.mo?a.opacity:t.mo;return t.selected?h?u:e:p?f:m*e});var d=a.color,g=o.color,v=s.color;(g||v)&&(e.selectedColorFn=function(t){var e=t.mcc||d;return t.selected?g||e:v||e});var y=a.size,x=o.size,b=s.size,_=void 0!==x,w=void 0!==b;return l.traceIs(t,"symbols")&&(_||w)&&(e.selectedSizeFn=function(t){var e=t.mrc||y/2;return t.selected?_?x/2:e:w?b/2:e}),e},x.makeSelectedTextStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},i=t.textfont||{},a=r.textfont||{},o=n.textfont||{},s=i.color,l=a.color,u=o.color;return e.selectedTextColorFn=function(t){var e=t.tc||s;return t.selected?l||e:u||(l?e:c.addOpacity(e,m))},e},x.selectedPointStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=x.makeSelectedPointStyleFns(e),i=e.marker||{},a=[];r.selectedOpacityFn&&a.push((function(t,e){t.style("opacity",r.selectedOpacityFn(e))})),r.selectedColorFn&&a.push((function(t,e){c.fill(t,r.selectedColorFn(e))})),r.selectedSizeFn&&a.push((function(t,e){var n=e.mx||i.symbol||0,a=r.selectedSizeFn(e);t.attr("d",w(x.symbolNumber(n),a)),e.mrc2=a})),a.length&&t.each((function(t){for(var e=n.select(this),r=0;r0?r:0}x.textPointStyle=function(t,e,r){if(t.size()){var a;if(e.selectedpoints){var o=x.makeSelectedTextStyleFns(e);a=o.selectedTextColorFn}var s=e.texttemplate,l=r._fullLayout;t.each((function(t){var o=n.select(this),c=s?i.extractOption(t,e,"txt","texttemplate"):i.extractOption(t,e,"tx","text");if(c||0===c){if(s){var u=e._module.formatLabels,f=u?u(t,e,l):{},p={};y(p,e,t.i);var d=e._meta||{};c=i.texttemplateString(c,f,l._d3locale,p,t,d)}var m=t.tp||e.textposition,g=L(t,e),v=a?a(t):t.tc||e.textfont.color;o.call(x.font,t.tf||e.textfont.family,g,v).text(c).call(h.convertToTspans,r).call(E,m,g,t.mrc)}else o.remove()}))}},x.selectedTextStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=x.makeSelectedTextStyleFns(e);t.each((function(t){var i=n.select(this),a=r.selectedTextColorFn(t),o=t.tp||e.textposition,s=L(t,e);c.fill(i,a),E(i,o,s,t.mrc2||t.mrc)}))}};function C(t,e,r,i){var a=t[0]-e[0],o=t[1]-e[1],s=r[0]-e[0],l=r[1]-e[1],c=Math.pow(a*a+o*o,.25),u=Math.pow(s*s+l*l,.25),f=(u*u*a-c*c*s)*i,h=(u*u*o-c*c*l)*i,p=3*u*(c+u),d=3*c*(c+u);return[[n.round(e[0]+(p&&f/p),2),n.round(e[1]+(p&&h/p),2)],[n.round(e[0]-(d&&f/d),2),n.round(e[1]-(d&&h/d),2)]]}x.smoothopen=function(t,e){if(t.length<3)return"M"+t.join("L");var r,n="M"+t[0],i=[];for(r=1;r=1e4&&(x.savedBBoxes={},O=0),r&&(x.savedBBoxes[r]=g),O++,i.extendFlat({},g)},x.setClipUrl=function(t,e,r){t.attr("clip-path",D(e,r))},x.getTranslate=function(t){var e=(t[t.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\btranslate\((-?\d*\.?\d*)[^-\d]*(-?\d*\.?\d*)[^\d].*/,(function(t,e,r){return[e,r].join(" ")})).split(" ");return{x:+e[0]||0,y:+e[1]||0}},x.setTranslate=function(t,e,r){var n=t.attr?"attr":"getAttribute",i=t.attr?"attr":"setAttribute",a=t[n]("transform")||"";return e=e||0,r=r||0,a=a.replace(/(\btranslate\(.*?\);?)/,"").trim(),a=(a+=f(e,r)).trim(),t[i]("transform",a),a},x.getScale=function(t){var e=(t[t.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\bscale\((\d*\.?\d*)[^\d]*(\d*\.?\d*)[^\d].*/,(function(t,e,r){return[e,r].join(" ")})).split(" ");return{x:+e[0]||1,y:+e[1]||1}},x.setScale=function(t,e,r){var n=t.attr?"attr":"getAttribute",i=t.attr?"attr":"setAttribute",a=t[n]("transform")||"";return e=e||1,r=r||1,a=a.replace(/(\bscale\(.*?\);?)/,"").trim(),a=(a+="scale("+e+","+r+")").trim(),t[i]("transform",a),a};var R=/\s*sc.*/;x.setPointGroupScale=function(t,e,r){if(e=e||1,r=r||1,t){var n=1===e&&1===r?"":"scale("+e+","+r+")";t.each((function(){var t=(this.getAttribute("transform")||"").replace(R,"");t=(t+=n).trim(),this.setAttribute("transform",t)}))}};var F=/translate\([^)]*\)\s*$/;x.setTextPointsScale=function(t,e,r){t&&t.each((function(){var t,i=n.select(this),a=i.select("text");if(a.node()){var o=parseFloat(a.attr("x")||0),s=parseFloat(a.attr("y")||0),l=(i.attr("transform")||"").match(F);t=1===e&&1===r?[]:[f(o,s),"scale("+e+","+r+")",f(-o,-s)],l&&t.push(l),i.attr("transform",t.join(""))}}))}},{"../../components/fx/helpers":675,"../../constants/alignment":744,"../../constants/interactions":751,"../../constants/xmlns_namespaces":753,"../../lib":776,"../../lib/svg_text_utils":802,"../../registry":904,"../../traces/scatter/make_bubble_size_func":1208,"../../traces/scatter/subtypes":1216,"../color":639,"../colorscale":651,"./symbol_defs":662,"@plotly/d3":58,"fast-isnumeric":242,tinycolor2:572}],662:[function(t,e,r){"use strict";var n=t("@plotly/d3");e.exports={circle:{n:0,f:function(t){var e=n.round(t,2);return"M"+e+",0A"+e+","+e+" 0 1,1 0,-"+e+"A"+e+","+e+" 0 0,1 "+e+",0Z"}},square:{n:1,f:function(t){var e=n.round(t,2);return"M"+e+","+e+"H-"+e+"V-"+e+"H"+e+"Z"}},diamond:{n:2,f:function(t){var e=n.round(1.3*t,2);return"M"+e+",0L0,"+e+"L-"+e+",0L0,-"+e+"Z"}},cross:{n:3,f:function(t){var e=n.round(.4*t,2),r=n.round(1.2*t,2);return"M"+r+","+e+"H"+e+"V"+r+"H-"+e+"V"+e+"H-"+r+"V-"+e+"H-"+e+"V-"+r+"H"+e+"V-"+e+"H"+r+"Z"}},x:{n:4,f:function(t){var e=n.round(.8*t/Math.sqrt(2),2),r="l"+e+","+e,i="l"+e+",-"+e,a="l-"+e+",-"+e,o="l-"+e+","+e;return"M0,"+e+r+i+a+i+a+o+a+o+r+o+r+"Z"}},"triangle-up":{n:5,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return"M-"+e+","+n.round(t/2,2)+"H"+e+"L0,-"+n.round(t,2)+"Z"}},"triangle-down":{n:6,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return"M-"+e+",-"+n.round(t/2,2)+"H"+e+"L0,"+n.round(t,2)+"Z"}},"triangle-left":{n:7,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return"M"+n.round(t/2,2)+",-"+e+"V"+e+"L-"+n.round(t,2)+",0Z"}},"triangle-right":{n:8,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return"M-"+n.round(t/2,2)+",-"+e+"V"+e+"L"+n.round(t,2)+",0Z"}},"triangle-ne":{n:9,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return"M-"+r+",-"+e+"H"+e+"V"+r+"Z"}},"triangle-se":{n:10,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return"M"+e+",-"+r+"V"+e+"H-"+r+"Z"}},"triangle-sw":{n:11,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return"M"+r+","+e+"H-"+e+"V-"+r+"Z"}},"triangle-nw":{n:12,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return"M-"+e+","+r+"V-"+e+"H"+r+"Z"}},pentagon:{n:13,f:function(t){var e=n.round(.951*t,2),r=n.round(.588*t,2),i=n.round(-t,2),a=n.round(-.309*t,2);return"M"+e+","+a+"L"+r+","+n.round(.809*t,2)+"H-"+r+"L-"+e+","+a+"L0,"+i+"Z"}},hexagon:{n:14,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),i=n.round(t*Math.sqrt(3)/2,2);return"M"+i+",-"+r+"V"+r+"L0,"+e+"L-"+i+","+r+"V-"+r+"L0,-"+e+"Z"}},hexagon2:{n:15,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),i=n.round(t*Math.sqrt(3)/2,2);return"M-"+r+","+i+"H"+r+"L"+e+",0L"+r+",-"+i+"H-"+r+"L-"+e+",0Z"}},octagon:{n:16,f:function(t){var e=n.round(.924*t,2),r=n.round(.383*t,2);return"M-"+r+",-"+e+"H"+r+"L"+e+",-"+r+"V"+r+"L"+r+","+e+"H-"+r+"L-"+e+","+r+"V-"+r+"Z"}},star:{n:17,f:function(t){var e=1.4*t,r=n.round(.225*e,2),i=n.round(.951*e,2),a=n.round(.363*e,2),o=n.round(.588*e,2),s=n.round(-e,2),l=n.round(-.309*e,2),c=n.round(.118*e,2),u=n.round(.809*e,2);return"M"+r+","+l+"H"+i+"L"+a+","+c+"L"+o+","+u+"L0,"+n.round(.382*e,2)+"L-"+o+","+u+"L-"+a+","+c+"L-"+i+","+l+"H-"+r+"L0,"+s+"Z"}},hexagram:{n:18,f:function(t){var e=n.round(.66*t,2),r=n.round(.38*t,2),i=n.round(.76*t,2);return"M-"+i+",0l-"+r+",-"+e+"h"+i+"l"+r+",-"+e+"l"+r+","+e+"h"+i+"l-"+r+","+e+"l"+r+","+e+"h-"+i+"l-"+r+","+e+"l-"+r+",-"+e+"h-"+i+"Z"}},"star-triangle-up":{n:19,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),i=n.round(1.6*t,2),a=n.round(4*t,2),o="A "+a+","+a+" 0 0 1 ";return"M-"+e+","+r+o+e+","+r+o+"0,-"+i+o+"-"+e+","+r+"Z"}},"star-triangle-down":{n:20,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),i=n.round(1.6*t,2),a=n.round(4*t,2),o="A "+a+","+a+" 0 0 1 ";return"M"+e+",-"+r+o+"-"+e+",-"+r+o+"0,"+i+o+e+",-"+r+"Z"}},"star-square":{n:21,f:function(t){var e=n.round(1.1*t,2),r=n.round(2*t,2),i="A "+r+","+r+" 0 0 1 ";return"M-"+e+",-"+e+i+"-"+e+","+e+i+e+","+e+i+e+",-"+e+i+"-"+e+",-"+e+"Z"}},"star-diamond":{n:22,f:function(t){var e=n.round(1.4*t,2),r=n.round(1.9*t,2),i="A "+r+","+r+" 0 0 1 ";return"M-"+e+",0"+i+"0,"+e+i+e+",0"+i+"0,-"+e+i+"-"+e+",0Z"}},"diamond-tall":{n:23,f:function(t){var e=n.round(.7*t,2),r=n.round(1.4*t,2);return"M0,"+r+"L"+e+",0L0,-"+r+"L-"+e+",0Z"}},"diamond-wide":{n:24,f:function(t){var e=n.round(1.4*t,2),r=n.round(.7*t,2);return"M0,"+r+"L"+e+",0L0,-"+r+"L-"+e+",0Z"}},hourglass:{n:25,f:function(t){var e=n.round(t,2);return"M"+e+","+e+"H-"+e+"L"+e+",-"+e+"H-"+e+"Z"},noDot:!0},bowtie:{n:26,f:function(t){var e=n.round(t,2);return"M"+e+","+e+"V-"+e+"L-"+e+","+e+"V-"+e+"Z"},noDot:!0},"circle-cross":{n:27,f:function(t){var e=n.round(t,2);return"M0,"+e+"V-"+e+"M"+e+",0H-"+e+"M"+e+",0A"+e+","+e+" 0 1,1 0,-"+e+"A"+e+","+e+" 0 0,1 "+e+",0Z"},needLine:!0,noDot:!0},"circle-x":{n:28,f:function(t){var e=n.round(t,2),r=n.round(t/Math.sqrt(2),2);return"M"+r+","+r+"L-"+r+",-"+r+"M"+r+",-"+r+"L-"+r+","+r+"M"+e+",0A"+e+","+e+" 0 1,1 0,-"+e+"A"+e+","+e+" 0 0,1 "+e+",0Z"},needLine:!0,noDot:!0},"square-cross":{n:29,f:function(t){var e=n.round(t,2);return"M0,"+e+"V-"+e+"M"+e+",0H-"+e+"M"+e+","+e+"H-"+e+"V-"+e+"H"+e+"Z"},needLine:!0,noDot:!0},"square-x":{n:30,f:function(t){var e=n.round(t,2);return"M"+e+","+e+"L-"+e+",-"+e+"M"+e+",-"+e+"L-"+e+","+e+"M"+e+","+e+"H-"+e+"V-"+e+"H"+e+"Z"},needLine:!0,noDot:!0},"diamond-cross":{n:31,f:function(t){var e=n.round(1.3*t,2);return"M"+e+",0L0,"+e+"L-"+e+",0L0,-"+e+"ZM0,-"+e+"V"+e+"M-"+e+",0H"+e},needLine:!0,noDot:!0},"diamond-x":{n:32,f:function(t){var e=n.round(1.3*t,2),r=n.round(.65*t,2);return"M"+e+",0L0,"+e+"L-"+e+",0L0,-"+e+"ZM-"+r+",-"+r+"L"+r+","+r+"M-"+r+","+r+"L"+r+",-"+r},needLine:!0,noDot:!0},"cross-thin":{n:33,f:function(t){var e=n.round(1.4*t,2);return"M0,"+e+"V-"+e+"M"+e+",0H-"+e},needLine:!0,noDot:!0,noFill:!0},"x-thin":{n:34,f:function(t){var e=n.round(t,2);return"M"+e+","+e+"L-"+e+",-"+e+"M"+e+",-"+e+"L-"+e+","+e},needLine:!0,noDot:!0,noFill:!0},asterisk:{n:35,f:function(t){var e=n.round(1.2*t,2),r=n.round(.85*t,2);return"M0,"+e+"V-"+e+"M"+e+",0H-"+e+"M"+r+","+r+"L-"+r+",-"+r+"M"+r+",-"+r+"L-"+r+","+r},needLine:!0,noDot:!0,noFill:!0},hash:{n:36,f:function(t){var e=n.round(t/2,2),r=n.round(t,2);return"M"+e+","+r+"V-"+r+"m-"+r+",0V"+r+"M"+r+","+e+"H-"+r+"m0,-"+r+"H"+r},needLine:!0,noFill:!0},"y-up":{n:37,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return"M-"+e+","+i+"L0,0M"+e+","+i+"L0,0M0,-"+r+"L0,0"},needLine:!0,noDot:!0,noFill:!0},"y-down":{n:38,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return"M-"+e+",-"+i+"L0,0M"+e+",-"+i+"L0,0M0,"+r+"L0,0"},needLine:!0,noDot:!0,noFill:!0},"y-left":{n:39,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return"M"+i+","+e+"L0,0M"+i+",-"+e+"L0,0M-"+r+",0L0,0"},needLine:!0,noDot:!0,noFill:!0},"y-right":{n:40,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return"M-"+i+","+e+"L0,0M-"+i+",-"+e+"L0,0M"+r+",0L0,0"},needLine:!0,noDot:!0,noFill:!0},"line-ew":{n:41,f:function(t){var e=n.round(1.4*t,2);return"M"+e+",0H-"+e},needLine:!0,noDot:!0,noFill:!0},"line-ns":{n:42,f:function(t){var e=n.round(1.4*t,2);return"M0,"+e+"V-"+e},needLine:!0,noDot:!0,noFill:!0},"line-ne":{n:43,f:function(t){var e=n.round(t,2);return"M"+e+",-"+e+"L-"+e+","+e},needLine:!0,noDot:!0,noFill:!0},"line-nw":{n:44,f:function(t){var e=n.round(t,2);return"M"+e+","+e+"L-"+e+",-"+e},needLine:!0,noDot:!0,noFill:!0},"arrow-up":{n:45,f:function(t){var e=n.round(t,2);return"M0,0L-"+e+","+n.round(2*t,2)+"H"+e+"Z"},noDot:!0},"arrow-down":{n:46,f:function(t){var e=n.round(t,2);return"M0,0L-"+e+",-"+n.round(2*t,2)+"H"+e+"Z"},noDot:!0},"arrow-left":{n:47,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return"M0,0L"+e+",-"+r+"V"+r+"Z"},noDot:!0},"arrow-right":{n:48,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return"M0,0L-"+e+",-"+r+"V"+r+"Z"},noDot:!0},"arrow-bar-up":{n:49,f:function(t){var e=n.round(t,2);return"M-"+e+",0H"+e+"M0,0L-"+e+","+n.round(2*t,2)+"H"+e+"Z"},needLine:!0,noDot:!0},"arrow-bar-down":{n:50,f:function(t){var e=n.round(t,2);return"M-"+e+",0H"+e+"M0,0L-"+e+",-"+n.round(2*t,2)+"H"+e+"Z"},needLine:!0,noDot:!0},"arrow-bar-left":{n:51,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return"M0,-"+r+"V"+r+"M0,0L"+e+",-"+r+"V"+r+"Z"},needLine:!0,noDot:!0},"arrow-bar-right":{n:52,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return"M0,-"+r+"V"+r+"M0,0L-"+e+",-"+r+"V"+r+"Z"},needLine:!0,noDot:!0}}},{"@plotly/d3":58}],663:[function(t,e,r){"use strict";e.exports={visible:{valType:"boolean",editType:"calc"},type:{valType:"enumerated",values:["percent","constant","sqrt","data"],editType:"calc"},symmetric:{valType:"boolean",editType:"calc"},array:{valType:"data_array",editType:"calc"},arrayminus:{valType:"data_array",editType:"calc"},value:{valType:"number",min:0,dflt:10,editType:"calc"},valueminus:{valType:"number",min:0,dflt:10,editType:"calc"},traceref:{valType:"integer",min:0,dflt:0,editType:"style"},tracerefminus:{valType:"integer",min:0,dflt:0,editType:"style"},copy_ystyle:{valType:"boolean",editType:"plot"},copy_zstyle:{valType:"boolean",editType:"style"},color:{valType:"color",editType:"style"},thickness:{valType:"number",min:0,dflt:2,editType:"style"},width:{valType:"number",min:0,editType:"plot"},editType:"calc",_deprecated:{opacity:{valType:"number",editType:"style"}}}},{}],664:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../registry"),a=t("../../plots/cartesian/axes"),o=t("../../lib"),s=t("./compute_error");function l(t,e,r,i){var l=e["error_"+i]||{},c=[];if(l.visible&&-1!==["linear","log"].indexOf(r.type)){for(var u=s(l),f=0;f0;e.each((function(e){var f,h=e[0].trace,p=h.error_x||{},d=h.error_y||{};h.ids&&(f=function(t){return t.id});var m=o.hasMarkers(h)&&h.marker.maxdisplayed>0;d.visible||p.visible||(e=[]);var g=n.select(this).selectAll("g.errorbar").data(e,f);if(g.exit().remove(),e.length){p.visible||g.selectAll("path.xerror").remove(),d.visible||g.selectAll("path.yerror").remove(),g.style("opacity",1);var v=g.enter().append("g").classed("errorbar",!0);u&&v.style("opacity",0).transition().duration(s.duration).style("opacity",1),a.setClipUrl(g,r.layerClipId,t),g.each((function(t){var e=n.select(this),r=function(t,e,r){var n={x:e.c2p(t.x),y:r.c2p(t.y)};void 0!==t.yh&&(n.yh=r.c2p(t.yh),n.ys=r.c2p(t.ys),i(n.ys)||(n.noYS=!0,n.ys=r.c2p(t.ys,!0)));void 0!==t.xh&&(n.xh=e.c2p(t.xh),n.xs=e.c2p(t.xs),i(n.xs)||(n.noXS=!0,n.xs=e.c2p(t.xs,!0)));return n}(t,l,c);if(!m||t.vis){var a,o=e.select("path.yerror");if(d.visible&&i(r.x)&&i(r.yh)&&i(r.ys)){var f=d.width;a="M"+(r.x-f)+","+r.yh+"h"+2*f+"m-"+f+",0V"+r.ys,r.noYS||(a+="m-"+f+",0h"+2*f),!o.size()?o=e.append("path").style("vector-effect","non-scaling-stroke").classed("yerror",!0):u&&(o=o.transition().duration(s.duration).ease(s.easing)),o.attr("d",a)}else o.remove();var h=e.select("path.xerror");if(p.visible&&i(r.y)&&i(r.xh)&&i(r.xs)){var g=(p.copy_ystyle?d:p).width;a="M"+r.xh+","+(r.y-g)+"v"+2*g+"m0,-"+g+"H"+r.xs,r.noXS||(a+="m0,-"+g+"v"+2*g),!h.size()?h=e.append("path").style("vector-effect","non-scaling-stroke").classed("xerror",!0):u&&(h=h.transition().duration(s.duration).ease(s.easing)),h.attr("d",a)}else h.remove()}}))}}))}},{"../../traces/scatter/subtypes":1216,"../drawing":661,"@plotly/d3":58,"fast-isnumeric":242}],669:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../color");e.exports=function(t){t.each((function(t){var e=t[0].trace,r=e.error_y||{},a=e.error_x||{},o=n.select(this);o.selectAll("path.yerror").style("stroke-width",r.thickness+"px").call(i.stroke,r.color),a.copy_ystyle&&(a=r),o.selectAll("path.xerror").style("stroke-width",a.thickness+"px").call(i.stroke,a.color)}))}},{"../color":639,"@plotly/d3":58}],670:[function(t,e,r){"use strict";var n=t("../../plots/font_attributes"),i=t("./layout_attributes").hoverlabel,a=t("../../lib/extend").extendFlat;e.exports={hoverlabel:{bgcolor:a({},i.bgcolor,{arrayOk:!0}),bordercolor:a({},i.bordercolor,{arrayOk:!0}),font:n({arrayOk:!0,editType:"none"}),align:a({},i.align,{arrayOk:!0}),namelength:a({},i.namelength,{arrayOk:!0}),editType:"none"}}},{"../../lib/extend":766,"../../plots/font_attributes":856,"./layout_attributes":680}],671:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry");function a(t,e,r,i){i=i||n.identity,Array.isArray(t)&&(e[0][r]=i(t))}e.exports=function(t){var e=t.calcdata,r=t._fullLayout;function o(t){return function(e){return n.coerceHoverinfo({hoverinfo:e},{_module:t._module},r)}}for(var s=0;s=0&&r.indexb[0]._length||at<0||at>_[0]._length)return d.unhoverRaw(t,e)}if(e.pointerX=it+b[0]._offset,e.pointerY=at+_[0]._offset,B="xval"in e?v.flat(s,e.xval):v.p2c(b,it),V="yval"in e?v.flat(s,e.yval):v.p2c(_,at),!i(B[0])||!i(V[0]))return o.warn("Fx.hover failed",e,t),d.unhoverRaw(t,e)}var ct=1/0;function ut(t,r){for(q=0;q$&&(tt.splice(0,$),ct=tt[0].distance),m&&0!==O&&0===tt.length){Q.distance=O,Q.index=!1;var f=Y._module.hoverPoints(Q,J,K,"closest",{hoverLayer:l._hoverlayer});if(f&&(f=f.filter((function(t){return t.spikeDistance<=O}))),f&&f.length){var h,d=f.filter((function(t){return t.xa.showspikes&&"hovered data"!==t.xa.spikesnap}));if(d.length){var g=d[0];i(g.x0)&&i(g.y0)&&(h=ht(g),(!rt.vLinePoint||rt.vLinePoint.spikeDistance>h.spikeDistance)&&(rt.vLinePoint=h))}var y=f.filter((function(t){return t.ya.showspikes&&"hovered data"!==t.ya.spikesnap}));if(y.length){var x=y[0];i(x.x0)&&i(x.y0)&&(h=ht(x),(!rt.hLinePoint||rt.hLinePoint.spikeDistance>h.spikeDistance)&&(rt.hLinePoint=h))}}}}}function ft(t,e,r){for(var n,i=null,a=1/0,o=0;o0&&Math.abs(t.distance)Tt-1;Mt--)Ct(tt[Mt]);tt=St,gt()}var Pt=t._hoverdata,It=[],Ot=j(t),zt=U(t);for(H=0;H1||tt.length>1)||"closest"===S&&nt&&tt.length>1,Wt=p.combine(l.plot_bgcolor||p.background,l.paper_bgcolor),Xt=I(tt,{gd:t,hovermode:S,rotateLabels:Yt,bgColor:Wt,container:l._hoverlayer,outerContainer:l._paper.node(),commonLabelOpts:l.hoverlabel,hoverdistance:l.hoverdistance});v.isUnifiedHover(S)||(!function(t,e,r){var n,i,a,o,s,l,c,u=0,f=1,h=t.size(),p=new Array(h),d=0;function m(t){var e=t[0],r=t[t.length-1];if(i=e.pmin-e.pos-e.dp+e.size,a=r.pos+r.dp+r.size-e.pmax,i>.01){for(s=t.length-1;s>=0;s--)t[s].dp+=i;n=!1}if(!(a<.01)){if(i<-.01){for(s=t.length-1;s>=0;s--)t[s].dp-=a;n=!1}if(n){var c=0;for(o=0;oe.pmax&&c++;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos>e.pmax-1&&(l.del=!0,c--);for(o=0;o=0;s--)t[s].dp-=a;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos+l.dp+l.size>e.pmax&&(l.del=!0,c--)}}}t.each((function(t){var n=t[e],i="x"===n._id.charAt(0),a=n.range;0===d&&a&&a[0]>a[1]!==i&&(f=-1),p[d++]=[{datum:t,traceIndex:t.trace.index,dp:0,pos:t.pos,posref:t.posref,size:t.by*(i?T:1)/2,pmin:0,pmax:i?r.width:r.height}]})),p.sort((function(t,e){return t[0].posref-e[0].posref||f*(e[0].traceIndex-t[0].traceIndex)}));for(;!n&&u<=h;){for(u++,n=!0,o=0;o.01&&y.pmin===x.pmin&&y.pmax===x.pmax){for(s=v.length-1;s>=0;s--)v[s].dp+=i;for(g.push.apply(g,v),p.splice(o+1,1),c=0,s=g.length-1;s>=0;s--)c+=g[s].dp;for(a=c/g.length,s=g.length-1;s>=0;s--)g[s].dp-=a;n=!1}else o++}p.forEach(m)}for(o=p.length-1;o>=0;o--){var b=p[o];for(s=b.length-1;s>=0;s--){var _=b[s],w=_.datum;w.offset=_.dp,w.del=_.del}}}(Xt,Yt?"xa":"ya",l),z(Xt,Yt,l._invScaleX,l._invScaleY));if(e.target&&e.target.tagName){var Zt=g.getComponentMethod("annotations","hasClickToShow")(t,It);f(n.select(e.target),Zt?"pointer":"")}if(!e.target||a||!function(t,e,r){if(!r||r.length!==t._hoverdata.length)return!0;for(var n=r.length-1;n>=0;n--){var i=r[n],a=t._hoverdata[n];if(i.curveNumber!==a.curveNumber||String(i.pointNumber)!==String(a.pointNumber)||String(i.pointNumbers)!==String(a.pointNumbers))return!0}return!1}(t,0,Pt))return;Pt&&t.emit("plotly_unhover",{event:e,points:Pt});t.emit("plotly_hover",{event:e,points:t._hoverdata,xaxes:b,yaxes:_,xvals:B,yvals:V})}(t,e,r,a)}))},r.loneHover=function(t,e){var r=!0;Array.isArray(t)||(r=!1,t=[t]);var i=e.gd,a=j(i),o=U(i),s=I(t.map((function(t){var r=t._x0||t.x0||t.x||0,n=t._x1||t.x1||t.x||0,s=t._y0||t.y0||t.y||0,l=t._y1||t.y1||t.y||0,c=t.eventData;if(c){var u=Math.min(r,n),f=Math.max(r,n),h=Math.min(s,l),d=Math.max(s,l),m=t.trace;if(g.traceIs(m,"gl3d")){var v=i._fullLayout[m.scene]._scene.container,y=v.offsetLeft,x=v.offsetTop;u+=y,f+=y,h+=x,d+=x}c.bbox={x0:u+o,x1:f+o,y0:h+a,y1:d+a},e.inOut_bbox&&e.inOut_bbox.push(c.bbox)}else c=!1;return{color:t.color||p.defaultLine,x0:t.x0||t.x||0,x1:t.x1||t.x||0,y0:t.y0||t.y||0,y1:t.y1||t.y||0,xLabel:t.xLabel,yLabel:t.yLabel,zLabel:t.zLabel,text:t.text,name:t.name,idealAlign:t.idealAlign,borderColor:t.borderColor,fontFamily:t.fontFamily,fontSize:t.fontSize,fontColor:t.fontColor,nameLength:t.nameLength,textAlign:t.textAlign,trace:t.trace||{index:0,hoverinfo:""},xa:{_offset:0},ya:{_offset:0},index:0,hovertemplate:t.hovertemplate||!1,hovertemplateLabels:t.hovertemplateLabels||!1,eventData:c}})),{gd:i,hovermode:"closest",rotateLabels:!1,bgColor:e.bgColor||p.background,container:n.select(e.container),outerContainer:e.outerContainer||e.container}),l=0,c=0;return s.sort((function(t,e){return t.y0-e.y0})).each((function(t,r){var n=t.y0-t.by/2;t.offset=n-5([\s\S]*)<\/extra>/;function I(t,e){var r=e.gd,i=r._fullLayout,a=e.hovermode,c=e.rotateLabels,f=e.bgColor,d=e.container,m=e.outerContainer,w=e.commonLabelOpts||{},T=e.fontFamily||y.HOVERFONT,k=e.fontSize||y.HOVERFONTSIZE,A=t[0],E=A.xa,L=A.ya,P=a.charAt(0),I=A[P+"Label"],z=V(r,m),D=z.top,R=z.width,F=z.height,B=void 0!==I&&A.distance<=e.hoverdistance&&("x"===a||"y"===a);if(B){var N,j,U=!0;for(N=0;Ni.width-b?(g=i.width-b,e.attr("d","M"+(b-M)+",0L"+b+","+x+M+"v"+x+(2*S+y.height)+"H-"+b+"V"+x+M+"H"+(b-2*M)+"Z")):e.attr("d","M0,0L"+M+","+x+M+"H"+(S+y.width/2)+"v"+x+(2*S+y.height)+"H-"+(S+y.width/2)+"V"+x+M+"H-"+M+"Z")}else{var _,C,P;"right"===L.side?(_="start",C=1,P="",g=E._offset+E._length):(_="end",C=-1,P="-",g=E._offset),v=L._offset+(A.y0+A.y1)/2,l.attr("text-anchor",_),e.attr("d","M0,0L"+P+M+","+M+"V"+(S+y.height/2)+"h"+P+(2*S+y.width)+"V-"+(S+y.height/2)+"H"+P+M+"V-"+M+"Z");var O,z=y.height/2,R=D-y.top-z,F="clip"+i._uid+"commonlabel"+L._id;if(g=0?it:at+lt=0?at:gt+lt=0?rt:nt+ct=0?nt:vt+ct=0,"top"!==t.idealAlign&&G||!Y?G?(z+=j/2,t.anchor="start"):t.anchor="middle":(z-=j/2,t.anchor="end");else if(t.pos=z,G=P+N/2+W<=R,Y=P-N/2-W>=0,"left"!==t.idealAlign&&G||!Y)if(G)P+=N/2,t.anchor="start";else{t.anchor="middle";var X=W/2,Z=P+X-R,J=P-X;Z>0&&(P-=Z),J<0&&(P+=-J)}else P-=N/2,t.anchor="end";w.attr("text-anchor",t.anchor),E&&A.attr("text-anchor",t.anchor),e.attr("transform",s(P,z)+(c?l(_):""))})),yt}function O(t,e,r,n,i,a){var s="",l="";void 0!==t.nameOverride&&(t.name=t.nameOverride),t.name&&(t.trace._meta&&(t.name=o.templateString(t.name,t.trace._meta)),s=B(t.name,t.nameLength));var c=r.charAt(0),u="x"===c?"y":"x";void 0!==t.zLabel?(void 0!==t.xLabel&&(l+="x: "+t.xLabel+"
"),void 0!==t.yLabel&&(l+="y: "+t.yLabel+"
"),"choropleth"!==t.trace.type&&"choroplethmapbox"!==t.trace.type&&(l+=(l?"z: ":"")+t.zLabel)):e&&t[c+"Label"]===i?l=t[u+"Label"]||"":void 0===t.xLabel?void 0!==t.yLabel&&"scattercarpet"!==t.trace.type&&(l=t.yLabel):l=void 0===t.yLabel?t.xLabel:"("+t.xLabel+", "+t.yLabel+")",!t.text&&0!==t.text||Array.isArray(t.text)||(l+=(l?"
":"")+t.text),void 0!==t.extraText&&(l+=(l?"
":"")+t.extraText),a&&""===l&&!t.hovertemplate&&(""===s&&a.remove(),l=s);var f=t.hovertemplate||!1;if(f){var h=t.hovertemplateLabels||t;t[c+"Label"]!==i&&(h[c+"other"]=h[c+"Val"],h[c+"otherLabel"]=h[c+"Label"]),l=(l=o.hovertemplateString(f,h,n._d3locale,t.eventData[0]||{},t.trace._meta)).replace(P,(function(e,r){return s=B(r,t.nameLength),""}))}return[l,s]}function z(t,e,r,i){var a=function(t){return t*r},o=function(t){return t*i};t.each((function(t){var r=n.select(this);if(t.del)return r.remove();var i=r.select("text.nums"),s=t.anchor,l="end"===s?-1:1,c={start:1,end:-1,middle:0}[s],f=c*(M+S),p=f+c*(t.txwidth+S),d=0,m=t.offset,g="middle"===s;g&&(f-=t.tx2width/2,p+=t.txwidth/2+S),e&&(m*=-A,d=t.offset*k),r.select("path").attr("d",g?"M-"+a(t.bx/2+t.tx2width/2)+","+o(m-t.by/2)+"h"+a(t.bx)+"v"+o(t.by)+"h-"+a(t.bx)+"Z":"M0,0L"+a(l*M+d)+","+o(M+m)+"v"+o(t.by/2-M)+"h"+a(l*t.bx)+"v-"+o(t.by)+"H"+a(l*M+d)+"V"+o(m-M)+"Z");var v=d+f,y=m+t.ty0-t.by/2+S,x=t.textAlign||"auto";"auto"!==x&&("left"===x&&"start"!==s?(i.attr("text-anchor","start"),v=g?-t.bx/2-t.tx2width/2+S:-t.bx-S):"right"===x&&"end"!==s&&(i.attr("text-anchor","end"),v=g?t.bx/2-t.tx2width/2-S:t.bx+S)),i.call(u.positionText,a(v),o(y)),t.tx2width&&(r.select("text.name").call(u.positionText,a(p+c*S+d),o(m+t.ty0-t.by/2+S)),r.select("rect").call(h.setRect,a(p+(c-1)*t.tx2width/2+d),o(m-t.by/2-1),a(t.tx2width),o(t.by+2)))}))}function D(t,e){var r=t.index,n=t.trace||{},a=t.cd[0],s=t.cd[r]||{};function l(t){return t||i(t)&&0===t}var c=Array.isArray(r)?function(t,e){var i=o.castOption(a,r,t);return l(i)?i:o.extractOption({},n,"",e)}:function(t,e){return o.extractOption(s,n,t,e)};function u(e,r,n){var i=c(r,n);l(i)&&(t[e]=i)}if(u("hoverinfo","hi","hoverinfo"),u("bgcolor","hbg","hoverlabel.bgcolor"),u("borderColor","hbc","hoverlabel.bordercolor"),u("fontFamily","htf","hoverlabel.font.family"),u("fontSize","hts","hoverlabel.font.size"),u("fontColor","htc","hoverlabel.font.color"),u("nameLength","hnl","hoverlabel.namelength"),u("textAlign","hta","hoverlabel.align"),t.posref="y"===e||"closest"===e&&"h"===n.orientation?t.xa._offset+(t.x0+t.x1)/2:t.ya._offset+(t.y0+t.y1)/2,t.x0=o.constrain(t.x0,0,t.xa._length),t.x1=o.constrain(t.x1,0,t.xa._length),t.y0=o.constrain(t.y0,0,t.ya._length),t.y1=o.constrain(t.y1,0,t.ya._length),void 0!==t.xLabelVal&&(t.xLabel="xLabel"in t?t.xLabel:m.hoverLabelText(t.xa,t.xLabelVal,n.xhoverformat),t.xVal=t.xa.c2d(t.xLabelVal)),void 0!==t.yLabelVal&&(t.yLabel="yLabel"in t?t.yLabel:m.hoverLabelText(t.ya,t.yLabelVal,n.yhoverformat),t.yVal=t.ya.c2d(t.yLabelVal)),void 0!==t.zLabelVal&&void 0===t.zLabel&&(t.zLabel=String(t.zLabelVal)),!(isNaN(t.xerr)||"log"===t.xa.type&&t.xerr<=0)){var f=m.tickText(t.xa,t.xa.c2l(t.xerr),"hover").text;void 0!==t.xerrneg?t.xLabel+=" +"+f+" / -"+m.tickText(t.xa,t.xa.c2l(t.xerrneg),"hover").text:t.xLabel+=" \xb1 "+f,"x"===e&&(t.distance+=1)}if(!(isNaN(t.yerr)||"log"===t.ya.type&&t.yerr<=0)){var h=m.tickText(t.ya,t.ya.c2l(t.yerr),"hover").text;void 0!==t.yerrneg?t.yLabel+=" +"+h+" / -"+m.tickText(t.ya,t.ya.c2l(t.yerrneg),"hover").text:t.yLabel+=" \xb1 "+h,"y"===e&&(t.distance+=1)}var p=t.hoverinfo||t.trace.hoverinfo;return p&&"all"!==p&&(-1===(p=Array.isArray(p)?p:p.split("+")).indexOf("x")&&(t.xLabel=void 0),-1===p.indexOf("y")&&(t.yLabel=void 0),-1===p.indexOf("z")&&(t.zLabel=void 0),-1===p.indexOf("text")&&(t.text=void 0),-1===p.indexOf("name")&&(t.name=void 0)),t}function R(t,e,r){var n,i,o=r.container,s=r.fullLayout,l=s._size,c=r.event,u=!!e.hLinePoint,f=!!e.vLinePoint;if(o.selectAll(".spikeline").remove(),f||u){var d=p.combine(s.plot_bgcolor,s.paper_bgcolor);if(u){var g,v,y=e.hLinePoint;n=y&&y.xa,"cursor"===(i=y&&y.ya).spikesnap?(g=c.pointerX,v=c.pointerY):(g=n._offset+y.x,v=i._offset+y.y);var x,b,_=a.readability(y.color,d)<1.5?p.contrast(d):y.color,w=i.spikemode,T=i.spikethickness,k=i.spikecolor||_,A=m.getPxPosition(t,i);if(-1!==w.indexOf("toaxis")||-1!==w.indexOf("across")){if(-1!==w.indexOf("toaxis")&&(x=A,b=g),-1!==w.indexOf("across")){var M=i._counterDomainMin,S=i._counterDomainMax;"free"===i.anchor&&(M=Math.min(M,i.position),S=Math.max(S,i.position)),x=l.l+M*l.w,b=l.l+S*l.w}o.insert("line",":first-child").attr({x1:x,x2:b,y1:v,y2:v,"stroke-width":T,stroke:k,"stroke-dasharray":h.dashStyle(i.spikedash,T)}).classed("spikeline",!0).classed("crisp",!0),o.insert("line",":first-child").attr({x1:x,x2:b,y1:v,y2:v,"stroke-width":T+2,stroke:d}).classed("spikeline",!0).classed("crisp",!0)}-1!==w.indexOf("marker")&&o.insert("circle",":first-child").attr({cx:A+("right"!==i.side?T:-T),cy:v,r:T,fill:k}).classed("spikeline",!0)}if(f){var E,L,C=e.vLinePoint;n=C&&C.xa,i=C&&C.ya,"cursor"===n.spikesnap?(E=c.pointerX,L=c.pointerY):(E=n._offset+C.x,L=i._offset+C.y);var P,I,O=a.readability(C.color,d)<1.5?p.contrast(d):C.color,z=n.spikemode,D=n.spikethickness,R=n.spikecolor||O,F=m.getPxPosition(t,n);if(-1!==z.indexOf("toaxis")||-1!==z.indexOf("across")){if(-1!==z.indexOf("toaxis")&&(P=F,I=L),-1!==z.indexOf("across")){var B=n._counterDomainMin,N=n._counterDomainMax;"free"===n.anchor&&(B=Math.min(B,n.position),N=Math.max(N,n.position)),P=l.t+(1-N)*l.h,I=l.t+(1-B)*l.h}o.insert("line",":first-child").attr({x1:E,x2:E,y1:P,y2:I,"stroke-width":D,stroke:R,"stroke-dasharray":h.dashStyle(n.spikedash,D)}).classed("spikeline",!0).classed("crisp",!0),o.insert("line",":first-child").attr({x1:E,x2:E,y1:P,y2:I,"stroke-width":D+2,stroke:d}).classed("spikeline",!0).classed("crisp",!0)}-1!==z.indexOf("marker")&&o.insert("circle",":first-child").attr({cx:E,cy:F-("top"!==n.side?D:-D),r:D,fill:R}).classed("spikeline",!0)}}}function F(t,e){return!e||(e.vLinePoint!==t._spikepoints.vLinePoint||e.hLinePoint!==t._spikepoints.hLinePoint)}function B(t,e){return u.plainText(t||"",{len:e,allowedTags:["br","sub","sup","b","i","em"]})}function N(t,e,r){var n=e[t+"a"],i=e[t+"Val"],a=e.cd[0];if("category"===n.type)i=n._categoriesMap[i];else if("date"===n.type){var o=e.trace[t+"periodalignment"];if(o){var s=e.cd[e.index],l=s[t+"Start"];void 0===l&&(l=s[t]);var c=s[t+"End"];void 0===c&&(c=s[t]);var u=c-l;"end"===o?i+=u:"middle"===o&&(i+=u/2)}i=n.d2c(i)}return a&&a.t&&a.t.posLetter===n._id&&("group"!==r.boxmode&&"group"!==r.violinmode||(i+=a.t.dPos)),i}function j(t){return t.offsetTop+t.clientTop}function U(t){return t.offsetLeft+t.clientLeft}function V(t,e){var r=t._fullLayout,n=e.getBoundingClientRect(),i=n.x,a=n.y,s=i+n.width,l=a+n.height,c=o.apply3DTransform(r._invTransform)(i,a),u=o.apply3DTransform(r._invTransform)(s,l),f=c[0],h=c[1],p=u[0],d=u[1];return{x:f,y:h,width:p-f,height:d-h,top:Math.min(h,d),left:Math.min(f,p),right:Math.max(f,p),bottom:Math.max(h,d)}}},{"../../lib":776,"../../lib/events":765,"../../lib/override_cursor":787,"../../lib/svg_text_utils":802,"../../plots/cartesian/axes":827,"../../registry":904,"../color":639,"../dragelement":658,"../drawing":661,"../legend/defaults":691,"../legend/draw":692,"./constants":673,"./helpers":675,"@plotly/d3":58,"fast-isnumeric":242,tinycolor2:572}],677:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../color"),a=t("./helpers").isUnifiedHover;e.exports=function(t,e,r,o){function s(t){o.font[t]||(o.font[t]=e.legend?e.legend.font[t]:e.font[t])}o=o||{},e&&a(e.hovermode)&&(o.font||(o.font={}),s("size"),s("family"),s("color"),e.legend?(o.bgcolor||(o.bgcolor=i.combine(e.legend.bgcolor,e.paper_bgcolor)),o.bordercolor||(o.bordercolor=e.legend.bordercolor)):o.bgcolor||(o.bgcolor=e.paper_bgcolor)),r("hoverlabel.bgcolor",o.bgcolor),r("hoverlabel.bordercolor",o.bordercolor),r("hoverlabel.namelength",o.namelength),n.coerceFont(r,"hoverlabel.font",o.font),r("hoverlabel.align",o.align)}},{"../../lib":776,"../color":639,"./helpers":675}],678:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return void 0!==e[r]?e[r]:n.coerce(t,e,i,r,a)}return r("clickmode"),r("hovermode")}},{"../../lib":776,"./layout_attributes":680}],679:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../dragelement"),o=t("./helpers"),s=t("./layout_attributes"),l=t("./hover");e.exports={moduleType:"component",name:"fx",constants:t("./constants"),schema:{layout:s},attributes:t("./attributes"),layoutAttributes:s,supplyLayoutGlobalDefaults:t("./layout_global_defaults"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),getDistanceFunction:o.getDistanceFunction,getClosest:o.getClosest,inbox:o.inbox,quadrature:o.quadrature,appendArrayPointValue:o.appendArrayPointValue,castHoverOption:function(t,e,r){return i.castOption(t,e,"hoverlabel."+r)},castHoverinfo:function(t,e,r){return i.castOption(t,r,"hoverinfo",(function(r){return i.coerceHoverinfo({hoverinfo:r},{_module:t._module},e)}))},hover:l.hover,unhover:a.unhover,loneHover:l.loneHover,loneUnhover:function(t){var e=i.isD3Selection(t)?t:n.select(t);e.selectAll("g.hovertext").remove(),e.selectAll(".spikeline").remove()},click:t("./click")}},{"../../lib":776,"../dragelement":658,"./attributes":670,"./calc":671,"./click":672,"./constants":673,"./defaults":674,"./helpers":675,"./hover":676,"./layout_attributes":680,"./layout_defaults":681,"./layout_global_defaults":682,"@plotly/d3":58}],680:[function(t,e,r){"use strict";var n=t("./constants"),i=t("../../plots/font_attributes")({editType:"none"});i.family.dflt=n.HOVERFONT,i.size.dflt=n.HOVERFONTSIZE,e.exports={clickmode:{valType:"flaglist",flags:["event","select"],dflt:"event",editType:"plot",extras:["none"]},dragmode:{valType:"enumerated",values:["zoom","pan","select","lasso","drawclosedpath","drawopenpath","drawline","drawrect","drawcircle","orbit","turntable",!1],dflt:"zoom",editType:"modebar"},hovermode:{valType:"enumerated",values:["x","y","closest",!1,"x unified","y unified"],dflt:"closest",editType:"modebar"},hoverdistance:{valType:"integer",min:-1,dflt:20,editType:"none"},spikedistance:{valType:"integer",min:-1,dflt:-1,editType:"none"},hoverlabel:{bgcolor:{valType:"color",editType:"none"},bordercolor:{valType:"color",editType:"none"},font:i,align:{valType:"enumerated",values:["left","right","auto"],dflt:"auto",editType:"none"},namelength:{valType:"integer",min:-1,dflt:15,editType:"none"},editType:"none"},selectdirection:{valType:"enumerated",values:["h","v","d","any"],dflt:"any",editType:"none"}}},{"../../plots/font_attributes":856,"./constants":673}],681:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes"),a=t("./hovermode_defaults"),o=t("./hoverlabel_defaults");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}a(t,e)&&(r("hoverdistance"),r("spikedistance")),"select"===r("dragmode")&&r("selectdirection");var s=e._has("mapbox"),l=e._has("geo"),c=e._basePlotModules.length;"zoom"===e.dragmode&&((s||l)&&1===c||s&&l&&2===c)&&(e.dragmode="pan"),o(t,e,r)}},{"../../lib":776,"./hoverlabel_defaults":677,"./hovermode_defaults":678,"./layout_attributes":680}],682:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./hoverlabel_defaults"),a=t("./layout_attributes");e.exports=function(t,e){i(t,e,(function(r,i){return n.coerce(t,e,a,r,i)}))}},{"../../lib":776,"./hoverlabel_defaults":677,"./layout_attributes":680}],683:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../lib/regex").counter,a=t("../../plots/domain").attributes,o=t("../../plots/cartesian/constants").idRegex,s=t("../../plot_api/plot_template"),l={rows:{valType:"integer",min:1,editType:"plot"},roworder:{valType:"enumerated",values:["top to bottom","bottom to top"],dflt:"top to bottom",editType:"plot"},columns:{valType:"integer",min:1,editType:"plot"},subplots:{valType:"info_array",freeLength:!0,dimensions:2,items:{valType:"enumerated",values:[i("xy").toString(),""],editType:"plot"},editType:"plot"},xaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[o.x.toString(),""],editType:"plot"},editType:"plot"},yaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[o.y.toString(),""],editType:"plot"},editType:"plot"},pattern:{valType:"enumerated",values:["independent","coupled"],dflt:"coupled",editType:"plot"},xgap:{valType:"number",min:0,max:1,editType:"plot"},ygap:{valType:"number",min:0,max:1,editType:"plot"},domain:a({name:"grid",editType:"plot",noGridCell:!0},{}),xside:{valType:"enumerated",values:["bottom","bottom plot","top plot","top"],dflt:"bottom plot",editType:"plot"},yside:{valType:"enumerated",values:["left","left plot","right plot","right"],dflt:"left plot",editType:"plot"},editType:"plot"};function c(t,e,r){var n=e[r+"axes"],i=Object.keys((t._splomAxes||{})[r]||{});return Array.isArray(n)?n:i.length?i:void 0}function u(t,e,r,n,i,a){var o=e(t+"gap",r),s=e("domain."+t);e(t+"side",n);for(var l=new Array(i),c=s[0],u=(s[1]-c)/(i-o),f=u*(1-o),h=0;h1){if(!h&&!p&&!d)"independent"===k("pattern")&&(h=!0);g._hasSubplotGrid=h;var x,b,_="top to bottom"===k("roworder"),w=h?.2:.1,T=h?.3:.1;m&&e._splomGridDflt&&(x=e._splomGridDflt.xside,b=e._splomGridDflt.yside),g._domains={x:u("x",k,w,x,y),y:u("y",k,T,b,v,_)}}else delete e.grid}function k(t,e){return n.coerce(r,g,l,t,e)}},contentDefaults:function(t,e){var r=e.grid;if(r&&r._domains){var n,i,a,o,s,l,u,h=t.grid||{},p=e._subplots,d=r._hasSubplotGrid,m=r.rows,g=r.columns,v="independent"===r.pattern,y=r._axisMap={};if(d){var x=h.subplots||[];l=r.subplots=new Array(m);var b=1;for(n=0;n1);if(!1!==m||c.uirevision){var g=a.newContainer(e,"legend");if(T("uirevision",e.uirevision),!1!==m){T("bgcolor",e.paper_bgcolor),T("bordercolor"),T("borderwidth");var v,y,x,b=i.coerceFont(T,"font",e.font),_="h"===T("orientation");if(_?(v=0,n.getComponentMethod("rangeslider","isVisible")(t.xaxis)?(y=1.1,x="bottom"):(y=-.1,x="top")):(v=1.02,y=1,x="auto"),T("traceorder",h),l.isGrouped(e.legend)&&T("tracegroupgap"),T("itemsizing"),T("itemwidth"),T("itemclick"),T("itemdoubleclick"),T("groupclick"),T("x",v),T("xanchor"),T("y",y),T("yanchor",x),T("valign"),i.noneOrAll(c,g,["x","y"]),T("title.text")){T("title.side",_?"left":"top");var w=i.extendFlat({},b,{size:i.bigFont(b.size)});i.coerceFont(T,"title.font",w)}}}function T(t,e){return i.coerce(c,g,o,t,e)}}},{"../../lib":776,"../../plot_api/plot_template":816,"../../plots/layout_attributes":881,"../../registry":904,"./attributes":689,"./helpers":695}],692:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../../plots/plots"),o=t("../../registry"),s=t("../../lib/events"),l=t("../dragelement"),c=t("../drawing"),u=t("../color"),f=t("../../lib/svg_text_utils"),h=t("./handle_click"),p=t("./constants"),d=t("../../constants/alignment"),m=d.LINE_SPACING,g=d.FROM_TL,v=d.FROM_BR,y=t("./get_legend_data"),x=t("./style"),b=t("./helpers");function _(t,e,r,n,i){var a=r.data()[0][0].trace,l={event:i,node:r.node(),curveNumber:a.index,expandedIndex:a._expandedIndex,data:t.data,layout:t.layout,frames:t._transitionData._frames,config:t._context,fullData:t._fullData,fullLayout:t._fullLayout};if(a._group&&(l.group=a._group),o.traceIs(a,"pie-like")&&(l.label=r.datum()[0].label),!1!==s.triggerHandler(t,"plotly_legendclick",l))if(1===n)e._clickTimeout=setTimeout((function(){t._fullLayout&&h(r,t,n)}),t._context.doubleClickDelay);else if(2===n){e._clickTimeout&&clearTimeout(e._clickTimeout),t._legendMouseDownTime=0,!1!==s.triggerHandler(t,"plotly_legenddoubleclick",l)&&h(r,t,n)}}function w(t,e,r){var n,a,s=t.data()[0][0],l=s.trace,u=o.traceIs(l,"pie-like"),h=!r._inHover&&e._context.edits.legendText&&!u,d=r._maxNameLength;s.groupTitle?(n=s.groupTitle.text,a=s.groupTitle.font):(a=r.font,r.entries?n=s.text:(n=u?s.label:l.name,l._meta&&(n=i.templateString(n,l._meta))));var m=i.ensureSingle(t,"text","legendtext");m.attr("text-anchor","start").call(c.font,a).text(h?T(n,d):n);var g=r.itemwidth+2*p.itemGap;f.positionText(m,g,0),h?m.call(f.makeEditable,{gd:e,text:n}).call(A,t,e,r).on("edit",(function(n){this.text(T(n,d)).call(A,t,e,r);var a=s.trace._fullInput||{},c={};if(o.hasTransform(a,"groupby")){var u=o.getTransformIndices(a,"groupby"),f=u[u.length-1],h=i.keyedContainer(a,"transforms["+f+"].styles","target","value.name");h.set(s.trace._group,n),c=h.constructUpdate()}else c.name=n;return o.call("_guiRestyle",e,c,l.index)})):A(m,t,e,r)}function T(t,e){var r=Math.max(4,e);if(t&&t.trim().length>=r/2)return t;for(var n=r-(t=t||"").length;n>0;n--)t+=" ";return t}function k(t,e){var r,a=e._context.doubleClickDelay,o=1,s=i.ensureSingle(t,"rect","legendtoggle",(function(t){e._context.staticPlot||t.style("cursor","pointer").attr("pointer-events","all"),t.call(u.fill,"rgba(0,0,0,0)")}));e._context.staticPlot||(s.on("mousedown",(function(){(r=(new Date).getTime())-e._legendMouseDownTimea&&(o=Math.max(o-1,1)),_(e,r,t,o,n.event)}})))}function A(t,e,r,n,i){n._inHover&&t.attr("data-notex",!0),f.convertToTspans(t,r,(function(){!function(t,e,r,n){var i=t.data()[0][0];if(!r._inHover&&i&&!i.trace.showlegend)return void t.remove();var a=t.select("g[class*=math-group]"),o=a.node();r||(r=e._fullLayout.legend);var s,l=r.borderwidth;s=1===n?r.title.font:i.groupTitle?i.groupTitle.font:r.font;var u,h,d=s.size*m;if(o){var g=c.bBox(o);u=g.height,h=g.width,1===n?c.setTranslate(a,l,l+.75*u):c.setTranslate(a,0,.25*u)}else{var v=t.select(1===n?".legendtitletext":".legendtext"),y=f.lineCount(v),x=v.node();if(u=d*y,h=x?c.bBox(x).width:0,1===n)"left"===r.title.side&&(h+=2*p.itemGap),f.positionText(v,l+p.titlePad,l+d);else{var b=2*p.itemGap+r.itemwidth;i.groupTitle&&(b=p.itemGap,h-=r.itemwidth),f.positionText(v,b,-d*((y-1)/2-.3))}}1===n?(r._titleWidth=h,r._titleHeight=u):(i.lineHeight=d,i.height=Math.max(u,16)+3,i.width=h)}(e,r,n,i)}))}function M(t){return i.isRightAnchor(t)?"right":i.isCenterAnchor(t)?"center":"left"}function S(t){return i.isBottomAnchor(t)?"bottom":i.isMiddleAnchor(t)?"middle":"top"}e.exports=function(t,e){return e||(e=t._fullLayout.legend||{}),function(t,e){var r,s,f=t._fullLayout,h="legend"+f._uid,d=e._inHover;d?(r=e.layer,h+="-hover"):r=f._infolayer;if(!r)return;t._legendMouseDownTime||(t._legendMouseDownTime=0);if(d){if(!e.entries)return;s=y(e.entries,e)}else{if(!t.calcdata)return;s=f.showlegend&&y(t.calcdata,e)}var m=f.hiddenlabels||[];if(!(d||f.showlegend&&s.length))return r.selectAll(".legend").remove(),f._topdefs.select("#"+h).remove(),a.autoMargin(t,"legend");var T=i.ensureSingle(r,"g","legend",(function(t){d||t.attr("pointer-events","all")})),E=i.ensureSingleById(f._topdefs,"clipPath",h,(function(t){t.append("rect")})),L=i.ensureSingle(T,"rect","bg",(function(t){t.attr("shape-rendering","crispEdges")}));L.call(u.stroke,e.bordercolor).call(u.fill,e.bgcolor).style("stroke-width",e.borderwidth+"px");var C=i.ensureSingle(T,"g","scrollbox"),P=e.title;if(e._titleWidth=0,e._titleHeight=0,P.text){var I=i.ensureSingle(C,"text","legendtitletext");I.attr("text-anchor","start").call(c.font,P.font).text(P.text),A(I,C,t,e,1)}else C.selectAll(".legendtitletext").remove();var O=i.ensureSingle(T,"rect","scrollbar",(function(t){t.attr(p.scrollBarEnterAttrs).call(u.fill,p.scrollBarColor)})),z=C.selectAll("g.groups").data(s);z.enter().append("g").attr("class","groups"),z.exit().remove();var D=z.selectAll("g.traces").data(i.identity);D.enter().append("g").attr("class","traces"),D.exit().remove(),D.style("opacity",(function(t){var e=t[0].trace;return o.traceIs(e,"pie-like")?-1!==m.indexOf(t[0].label)?.5:1:"legendonly"===e.visible?.5:1})).each((function(){n.select(this).call(w,t,e)})).call(x,t,e).each((function(){d||n.select(this).call(k,t)})),i.syncOrAsync([a.previousPromises,function(){return function(t,e,r,i){var a=t._fullLayout;i||(i=a.legend);var o=a._size,s=b.isVertical(i),l=b.isGrouped(i),u=i.borderwidth,f=2*u,h=p.itemGap,d=i.itemwidth+2*h,m=2*(u+h),g=S(i),v=i.y<0||0===i.y&&"top"===g,y=i.y>1||1===i.y&&"bottom"===g,x=i.tracegroupgap;i._maxHeight=Math.max(v||y?a.height/2:o.h,30);var _=0;i._width=0,i._height=0;var w=function(t){var e=0,r=0,n=t.title.side;n&&(-1!==n.indexOf("left")&&(e=t._titleWidth),-1!==n.indexOf("top")&&(r=t._titleHeight));return[e,r]}(i);if(s)r.each((function(t){var e=t[0].height;c.setTranslate(this,u+w[0],u+w[1]+i._height+e/2+h),i._height+=e,i._width=Math.max(i._width,t[0].width)})),_=d+i._width,i._width+=h+d+f,i._height+=m,l&&(e.each((function(t,e){c.setTranslate(this,0,e*i.tracegroupgap)})),i._height+=(i._lgroupsLength-1)*i.tracegroupgap);else{var T=M(i),k=i.x<0||0===i.x&&"right"===T,A=i.x>1||1===i.x&&"left"===T,E=y||v,L=a.width/2;i._maxWidth=Math.max(k?E&&"left"===T?o.l+o.w:L:A?E&&"right"===T?o.r+o.w:L:o.w,2*d);var C=0,P=0;r.each((function(t){var e=t[0].width+d;C=Math.max(C,e),P+=e})),_=null;var I=0;if(l){var O=0,z=0,D=0;e.each((function(){var t=0,e=0;n.select(this).selectAll("g.traces").each((function(r){var n=r[0].height;c.setTranslate(this,w[0],w[1]+u+h+n/2+e),e+=n,t=Math.max(t,d+r[0].width)})),O=Math.max(O,e);var r=t+h;r+u+z>i._maxWidth&&(I=Math.max(I,z),z=0,D+=O+x,O=e),c.setTranslate(this,z,D),z+=r})),i._width=Math.max(I,z)+u,i._height=D+O+m}else{var R=r.size(),F=P+f+(R-1)*h=i._maxWidth&&(I=Math.max(I,U),N=0,j+=B,i._height+=B,B=0),c.setTranslate(this,w[0]+u+N,w[1]+u+j+e/2+h),U=N+r+h,N+=n,B=Math.max(B,e)})),F?(i._width=N+f,i._height=B+m):(i._width=Math.max(I,U)+f,i._height+=B+m)}}i._width=Math.ceil(Math.max(i._width+w[0],i._titleWidth+2*(u+p.titlePad))),i._height=Math.ceil(Math.max(i._height+w[1],i._titleHeight+2*(u+p.itemGap))),i._effHeight=Math.min(i._height,i._maxHeight);var V=t._context.edits,H=V.legendText||V.legendPosition;r.each((function(t){var e=n.select(this).select(".legendtoggle"),r=t[0].height,i=H?d:_||d+t[0].width;s||(i+=h/2),c.setRect(e,0,-r/2,i,r)}))}(t,z,D,e)},function(){if(d||!function(t){var e=t._fullLayout.legend,r=M(e),n=S(e);return a.autoMargin(t,"legend",{x:e.x,y:e.y,l:e._width*g[r],r:e._width*v[r],b:e._effHeight*v[n],t:e._effHeight*g[n]})}(t)){var s,u,m,y,x=f._size,b=e.borderwidth,w=x.l+x.w*e.x-g[M(e)]*e._width,k=x.t+x.h*(1-e.y)-g[S(e)]*e._effHeight;if(!d&&f.margin.autoexpand){var A=w,P=k;w=i.constrain(w,0,f.width-e._width),k=i.constrain(k,0,f.height-e._effHeight),w!==A&&i.log("Constrain legend.x to make legend fit inside graph"),k!==P&&i.log("Constrain legend.y to make legend fit inside graph")}if(d||c.setTranslate(T,w,k),O.on(".drag",null),T.on("wheel",null),d||e._height<=e._maxHeight||t._context.staticPlot){var I=e._effHeight;d&&(I=e._height),L.attr({width:e._width-b,height:I-b,x:b/2,y:b/2}),c.setTranslate(C,0,0),E.select("rect").attr({width:e._width-2*b,height:I-2*b,x:b,y:b}),c.setClipUrl(C,h,t),c.setRect(O,0,0,0,0),delete e._scrollY}else{var z,D,R,F=Math.max(p.scrollBarMinHeight,e._effHeight*e._effHeight/e._height),B=e._effHeight-F-2*p.scrollBarMargin,N=e._height-e._effHeight,j=B/N,U=Math.min(e._scrollY||0,N);L.attr({width:e._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:e._effHeight-b,x:b/2,y:b/2}),E.select("rect").attr({width:e._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:e._effHeight-2*b,x:b,y:b+U}),c.setClipUrl(C,h,t),q(U,F,j),T.on("wheel",(function(){q(U=i.constrain(e._scrollY+n.event.deltaY/B*N,0,N),F,j),0!==U&&U!==N&&n.event.preventDefault()}));var V=n.behavior.drag().on("dragstart",(function(){var t=n.event.sourceEvent;z="touchstart"===t.type?t.changedTouches[0].clientY:t.clientY,R=U})).on("drag",(function(){var t=n.event.sourceEvent;2===t.buttons||t.ctrlKey||(D="touchmove"===t.type?t.changedTouches[0].clientY:t.clientY,q(U=function(t,e,r){var n=(r-e)/j+t;return i.constrain(n,0,N)}(R,z,D),F,j))}));O.call(V);var H=n.behavior.drag().on("dragstart",(function(){var t=n.event.sourceEvent;"touchstart"===t.type&&(z=t.changedTouches[0].clientY,R=U)})).on("drag",(function(){var t=n.event.sourceEvent;"touchmove"===t.type&&(D=t.changedTouches[0].clientY,q(U=function(t,e,r){var n=(e-r)/j+t;return i.constrain(n,0,N)}(R,z,D),F,j))}));C.call(H)}if(t._context.edits.legendPosition)T.classed("cursor-move",!0),l.init({element:T.node(),gd:t,prepFn:function(){var t=c.getTranslate(T);m=t.x,y=t.y},moveFn:function(t,r){var n=m+t,i=y+r;c.setTranslate(T,n,i),s=l.align(n,0,x.l,x.l+x.w,e.xanchor),u=l.align(i,0,x.t+x.h,x.t,e.yanchor)},doneFn:function(){void 0!==s&&void 0!==u&&o.call("_guiRelayout",t,{"legend.x":s,"legend.y":u})},clickFn:function(e,n){var i=r.selectAll("g.traces").filter((function(){var t=this.getBoundingClientRect();return n.clientX>=t.left&&n.clientX<=t.right&&n.clientY>=t.top&&n.clientY<=t.bottom}));i.size()>0&&_(t,T,i,e,n)}})}function q(r,n,i){e._scrollY=t._fullLayout.legend._scrollY=r,c.setTranslate(C,0,-r),c.setRect(O,e._width,p.scrollBarMargin+r*i,p.scrollBarWidth,n),E.select("rect").attr("y",b+r)}}],t)}(t,e)}},{"../../constants/alignment":744,"../../lib":776,"../../lib/events":765,"../../lib/svg_text_utils":802,"../../plots/plots":890,"../../registry":904,"../color":639,"../dragelement":658,"../drawing":661,"./constants":690,"./get_legend_data":693,"./handle_click":694,"./helpers":695,"./style":697,"@plotly/d3":58}],693:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("./helpers");e.exports=function(t,e){var r,a,o=e._inHover,s=i.isGrouped(e),l=i.isReversed(e),c={},u=[],f=!1,h={},p=0,d=0;function m(t,r){if(""!==t&&i.isGrouped(e))-1===u.indexOf(t)?(u.push(t),f=!0,c[t]=[r]):c[t].push(r);else{var n="~~i"+p;u.push(n),c[n]=[r],p++}}for(r=0;rA&&(k=A)}w[r][0]._groupMinRank=k,w[r][0]._preGroupSort=r}var M=function(t,e){return t.trace.legendrank-e.trace.legendrank||t._preSort-e._preSort};for(w.forEach((function(t,e){t[0]._preGroupSort=e})),w.sort((function(t,e){return t[0]._groupMinRank-e[0]._groupMinRank||t[0]._preGroupSort-e[0]._preGroupSort})),r=0;rr?r:t}e.exports=function(t,e,r){var v=e._fullLayout;r||(r=v.legend);var y="constant"===r.itemsizing,x=r.itemwidth,b=(x+2*p.itemGap)/2,_=o(b,0),w=function(t,e,r,n){var i;if(t+1)i=t;else{if(!(e&&e.width>0))return 0;i=e.width}return y?n:Math.min(i,r)};function T(t,a,o){var u=t[0].trace,f=u.marker||{},h=f.line||{},p=o?u.visible&&u.type===o:i.traceIs(u,"bar"),d=n.select(a).select("g.legendpoints").selectAll("path.legend"+o).data(p?[t]:[]);d.enter().append("path").classed("legend"+o,!0).attr("d","M6,6H-6V-6H6Z").attr("transform",_),d.exit().remove(),d.each((function(t){var i=n.select(this),a=t[0],o=w(a.mlw,f.line,5,2);i.style("stroke-width",o+"px");var p=a.mcc;if(!r._inHover&&"mc"in a){var d=c(f),m=d.mid;void 0===m&&(m=(d.max+d.min)/2),p=s.tryColorscale(f,"")(m)}var v=p||a.mc||f.color,y=f.pattern,x=y&&s.getPatternAttr(y.shape,0,"");if(x){var b=s.getPatternAttr(y.bgcolor,0,null),_=s.getPatternAttr(y.fgcolor,0,null),T=y.fgopacity,k=g(y.size,8,10),A=g(y.solidity,.5,1),M="legend-"+u.uid;i.call(s.pattern,"legend",e,M,x,k,A,p,y.fillmode,b,_,T)}else i.call(l.fill,v);o&&l.stroke(i,a.mlc||h.color)}))}function k(t,e,r){var o=t[0],s=o.trace,l=r?s.visible&&s.type===r:i.traceIs(s,r),c=n.select(e).select("g.legendpoints").selectAll("path.legend"+r).data(l?[t]:[]);if(c.enter().append("path").classed("legend"+r,!0).attr("d","M6,6H-6V-6H6Z").attr("transform",_),c.exit().remove(),c.size()){var u=(s.marker||{}).line,p=w(h(u.width,o.pts),u,5,2),d=a.minExtend(s,{marker:{line:{width:p}}});d.marker.line.color=u.color;var m=a.minExtend(o,{trace:d});f(c,m,d)}}t.each((function(t){var e=n.select(this),i=a.ensureSingle(e,"g","layers");i.style("opacity",t[0].trace.opacity);var s=r.valign,l=t[0].lineHeight,c=t[0].height;if("middle"!==s&&l&&c){var u={top:1,bottom:-1}[s]*(.5*(l-c+3));i.attr("transform",o(0,u))}else i.attr("transform",null);i.selectAll("g.legendfill").data([t]).enter().append("g").classed("legendfill",!0),i.selectAll("g.legendlines").data([t]).enter().append("g").classed("legendlines",!0);var f=i.selectAll("g.legendsymbols").data([t]);f.enter().append("g").classed("legendsymbols",!0),f.selectAll("g.legendpoints").data([t]).enter().append("g").classed("legendpoints",!0)})).each((function(t){var r,i=t[0].trace,o=[];if(i.visible)switch(i.type){case"histogram2d":case"heatmap":o=[["M-15,-2V4H15V-2Z"]],r=!0;break;case"choropleth":case"choroplethmapbox":o=[["M-6,-6V6H6V-6Z"]],r=!0;break;case"densitymapbox":o=[["M-6,0 a6,6 0 1,0 12,0 a 6,6 0 1,0 -12,0"]],r="radial";break;case"cone":o=[["M-6,2 A2,2 0 0,0 -6,6 V6L6,4Z"],["M-6,-6 A2,2 0 0,0 -6,-2 L6,-4Z"],["M-6,-2 A2,2 0 0,0 -6,2 L6,0Z"]],r=!1;break;case"streamtube":o=[["M-6,2 A2,2 0 0,0 -6,6 H6 A2,2 0 0,1 6,2 Z"],["M-6,-6 A2,2 0 0,0 -6,-2 H6 A2,2 0 0,1 6,-6 Z"],["M-6,-2 A2,2 0 0,0 -6,2 H6 A2,2 0 0,1 6,-2 Z"]],r=!1;break;case"surface":o=[["M-6,-6 A2,3 0 0,0 -6,0 H6 A2,3 0 0,1 6,-6 Z"],["M-6,1 A2,3 0 0,1 -6,6 H6 A2,3 0 0,0 6,0 Z"]],r=!0;break;case"mesh3d":o=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],r=!1;break;case"volume":o=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],r=!0;break;case"isosurface":o=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6 A12,24 0 0,0 6,-6 L0,6Z"]],r=!1}var u=n.select(this).select("g.legendpoints").selectAll("path.legend3dandfriends").data(o);u.enter().append("path").classed("legend3dandfriends",!0).attr("transform",_).style("stroke-miterlimit",1),u.exit().remove(),u.each((function(t,o){var u,f=n.select(this),h=c(i),p=h.colorscale,m=h.reversescale;if(p){if(!r){var g=p.length;u=0===o?p[m?g-1:0][1]:1===o?p[m?0:g-1][1]:p[Math.floor((g-1)/2)][1]}}else{var v=i.vertexcolor||i.facecolor||i.color;u=a.isArrayOrTypedArray(v)?v[o]||v[0]:v}f.attr("d",t[0]),u?f.call(l.fill,u):f.call((function(t){if(t.size()){var n="legendfill-"+i.uid;s.gradient(t,e,n,d(m,"radial"===r),p,"fill")}}))}))})).each((function(t){var e=t[0].trace,r="waterfall"===e.type;if(t[0]._distinct&&r){var i=t[0].trace[t[0].dir].marker;return t[0].mc=i.color,t[0].mlw=i.line.width,t[0].mlc=i.line.color,T(t,this,"waterfall")}var a=[];e.visible&&r&&(a=t[0].hasTotals?[["increasing","M-6,-6V6H0Z"],["totals","M6,6H0L-6,-6H-0Z"],["decreasing","M6,6V-6H0Z"]]:[["increasing","M-6,-6V6H6Z"],["decreasing","M6,6V-6H-6Z"]]);var o=n.select(this).select("g.legendpoints").selectAll("path.legendwaterfall").data(a);o.enter().append("path").classed("legendwaterfall",!0).attr("transform",_).style("stroke-miterlimit",1),o.exit().remove(),o.each((function(t){var r=n.select(this),i=e[t[0]].marker,a=w(void 0,i.line,5,2);r.attr("d",t[1]).style("stroke-width",a+"px").call(l.fill,i.color),a&&r.call(l.stroke,i.line.color)}))})).each((function(t){T(t,this,"funnel")})).each((function(t){T(t,this)})).each((function(t){var r=t[0].trace,o=n.select(this).select("g.legendpoints").selectAll("path.legendbox").data(r.visible&&i.traceIs(r,"box-violin")?[t]:[]);o.enter().append("path").classed("legendbox",!0).attr("d","M6,6H-6V-6H6Z").attr("transform",_),o.exit().remove(),o.each((function(){var t=n.select(this);if("all"!==r.boxpoints&&"all"!==r.points||0!==l.opacity(r.fillcolor)||0!==l.opacity((r.line||{}).color)){var i=w(void 0,r.line,5,2);t.style("stroke-width",i+"px").call(l.fill,r.fillcolor),i&&l.stroke(t,r.line.color)}else{var c=a.minExtend(r,{marker:{size:y?12:a.constrain(r.marker.size,2,16),sizeref:1,sizemin:1,sizemode:"diameter"}});o.call(s.pointStyle,c,e)}}))})).each((function(t){k(t,this,"funnelarea")})).each((function(t){k(t,this,"pie")})).each((function(t){var r,i,o=m(t),l=o.showFill,f=o.showLine,h=o.showGradientLine,p=o.showGradientFill,g=o.anyFill,v=o.anyLine,y=t[0],b=y.trace,_=c(b),T=_.colorscale,k=_.reversescale,A=u.hasMarkers(b)||!g?"M5,0":v?"M5,-2":"M5,-3",M=n.select(this),S=M.select(".legendfill").selectAll("path").data(l||p?[t]:[]);if(S.enter().append("path").classed("js-fill",!0),S.exit().remove(),S.attr("d",A+"h"+x+"v6h-"+x+"z").call(l?s.fillGroupStyle:function(t){if(t.size()){var r="legendfill-"+b.uid;s.gradient(t,e,r,d(k),T,"fill")}}),f||h){var E=w(void 0,b.line,10,5);i=a.minExtend(b,{line:{width:E}}),r=[a.minExtend(y,{trace:i})]}var L=M.select(".legendlines").selectAll("path").data(f||h?[r]:[]);L.enter().append("path").classed("js-line",!0),L.exit().remove(),L.attr("d",A+(h?"l"+x+",0.0001":"h"+x)).call(f?s.lineGroupStyle:function(t){if(t.size()){var r="legendline-"+b.uid;s.lineGroupStyle(t),s.gradient(t,e,r,d(k),T,"stroke")}})})).each((function(t){var r,i,o=m(t),l=o.anyFill,c=o.anyLine,f=o.showLine,h=o.showMarker,p=t[0],d=p.trace,g=!h&&!c&&!l&&u.hasText(d);function v(t,e,r,n){var i=a.nestedProperty(d,t).get(),o=a.isArrayOrTypedArray(i)&&e?e(i):i;if(y&&o&&void 0!==n&&(o=n),r){if(or[1])return r[1]}return o}function x(t){return p._distinct&&p.index&&t[p.index]?t[p.index]:t[0]}if(h||g||f){var b={},w={};if(h){b.mc=v("marker.color",x),b.mx=v("marker.symbol",x),b.mo=v("marker.opacity",a.mean,[.2,1]),b.mlc=v("marker.line.color",x),b.mlw=v("marker.line.width",a.mean,[0,5],2),w.marker={sizeref:1,sizemin:1,sizemode:"diameter"};var T=v("marker.size",a.mean,[2,16],12);b.ms=T,w.marker.size=T}f&&(w.line={width:v("line.width",x,[0,10],5)}),g&&(b.tx="Aa",b.tp=v("textposition",x),b.ts=10,b.tc=v("textfont.color",x),b.tf=v("textfont.family",x)),r=[a.minExtend(p,b)],(i=a.minExtend(d,w)).selectedpoints=null,i.texttemplate=null}var k=n.select(this).select("g.legendpoints"),A=k.selectAll("path.scatterpts").data(h?r:[]);A.enter().insert("path",":first-child").classed("scatterpts",!0).attr("transform",_),A.exit().remove(),A.call(s.pointStyle,i,e),h&&(r[0].mrc=3);var M=k.selectAll("g.pointtext").data(g?r:[]);M.enter().append("g").classed("pointtext",!0).append("text").attr("transform",_),M.exit().remove(),M.selectAll("text").call(s.textPointStyle,i,e)})).each((function(t){var e=t[0].trace,r=n.select(this).select("g.legendpoints").selectAll("path.legendcandle").data(e.visible&&"candlestick"===e.type?[t,t]:[]);r.enter().append("path").classed("legendcandle",!0).attr("d",(function(t,e){return e?"M-15,0H-8M-8,6V-6H8Z":"M15,0H8M8,-6V6H-8Z"})).attr("transform",_).style("stroke-miterlimit",1),r.exit().remove(),r.each((function(t,r){var i=n.select(this),a=e[r?"increasing":"decreasing"],o=w(void 0,a.line,5,2);i.style("stroke-width",o+"px").call(l.fill,a.fillcolor),o&&l.stroke(i,a.line.color)}))})).each((function(t){var e=t[0].trace,r=n.select(this).select("g.legendpoints").selectAll("path.legendohlc").data(e.visible&&"ohlc"===e.type?[t,t]:[]);r.enter().append("path").classed("legendohlc",!0).attr("d",(function(t,e){return e?"M-15,0H0M-8,-6V0":"M15,0H0M8,6V0"})).attr("transform",_).style("stroke-miterlimit",1),r.exit().remove(),r.each((function(t,r){var i=n.select(this),a=e[r?"increasing":"decreasing"],o=w(void 0,a.line,5,2);i.style("fill","none").call(s.dashLine,a.line.dash,o),o&&l.stroke(i,a.line.color)}))}))}},{"../../lib":776,"../../registry":904,"../../traces/pie/helpers":1170,"../../traces/pie/style_one":1176,"../../traces/scatter/subtypes":1216,"../color":639,"../colorscale/helpers":650,"../drawing":661,"./constants":690,"@plotly/d3":58}],698:[function(t,e,r){"use strict";t("./constants");e.exports={editType:"modebar",orientation:{valType:"enumerated",values:["v","h"],dflt:"h",editType:"modebar"},bgcolor:{valType:"color",editType:"modebar"},color:{valType:"color",editType:"modebar"},activecolor:{valType:"color",editType:"modebar"},uirevision:{valType:"any",editType:"none"},add:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"},remove:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"}}},{"./constants":700}],699:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../plots/plots"),a=t("../../plots/cartesian/axis_ids"),o=t("../../fonts/ploticon"),s=t("../shapes/draw").eraseActiveShape,l=t("../../lib"),c=l._,u=e.exports={};function f(t,e){var r,i,o=e.currentTarget,s=o.getAttribute("data-attr"),l=o.getAttribute("data-val")||!0,c=t._fullLayout,u={},f=a.list(t,null,!0),h=c._cartesianSpikesEnabled;if("zoom"===s){var p,d="in"===l?.5:2,m=(1+d)/2,g=(1-d)/2;for(i=0;i1?(P=["toggleHover"],I=["resetViews"]):v?(C=["zoomInGeo","zoomOutGeo"],P=["hoverClosestGeo"],I=["resetGeo"]):g?(P=["hoverClosest3d"],I=["resetCameraDefault3d","resetCameraLastSave3d"]):w?(C=["zoomInMapbox","zoomOutMapbox"],P=["toggleHover"],I=["resetViewMapbox"]):b?P=["hoverClosestGl2d"]:y?P=["hoverClosestPie"]:k?(P=["hoverClosestCartesian","hoverCompareCartesian"],I=["resetViewSankey"]):P=["toggleHover"];m&&(P=["toggleSpikelines","hoverClosestCartesian","hoverCompareCartesian"]);(function(t){for(var e=0;e0)){var m=function(t,e,r){for(var n=r.filter((function(r){return e[r].anchor===t._id})),i=0,a=0;a=n.max)e=F[r+1];else if(t=n.pmax)e=F[r+1];else if(t0?h+c:c;return{ppad:c,ppadplus:u?d:m,ppadminus:u?m:d}}return{ppad:c}}function u(t,e,r,n,i){var s="category"===t.type||"multicategory"===t.type?t.r2c:t.d2c;if(void 0!==e)return[s(e),s(r)];if(n){var l,c,u,f,h=1/0,p=-1/0,d=n.match(a.segmentRE);for("date"===t.type&&(s=o.decodeDate(s)),l=0;lp&&(p=f)));return p>=h?[h,p]:void 0}}e.exports=function(t){var e=t._fullLayout,r=n.filterVisible(e.shapes);if(r.length&&t._fullData.length)for(var o=0;oy?(k=f,E="y0",A=y,L="y1"):(k=y,E="y1",A=f,L="y0");Z(n),Q(s,r),function(t,e,r){var n=e.xref,i=e.yref,o=a.getFromId(r,n),s=a.getFromId(r,i),l="";"paper"===n||o.autorange||(l+=n);"paper"===i||s.autorange||(l+=i);u.setClipUrl(t,l?"clip"+r._fullLayout._uid+l:null,r)}(e,r,t),X.moveFn="move"===O?J:K,X.altKey=n.altKey},doneFn:function(){if(v(t))return;p(e),$(s),b(e,t,r),n.call("_guiRelayout",t,l.getUpdateObj())},clickFn:function(){if(v(t))return;$(s)}};function Z(r){if(v(t))O=null;else if(R)O="path"===r.target.tagName?"move":"start-point"===r.target.attributes["data-line-point"].value?"resize-over-start-point":"resize-over-end-point";else{var n=X.element.getBoundingClientRect(),i=n.right-n.left,a=n.bottom-n.top,o=r.clientX-n.left,s=r.clientY-n.top,l=!F&&i>10&&a>10&&!r.shiftKey?h.getCursor(o/i,1-s/a):"move";p(e,l),O=l.split("-")[0]}}function J(n,i){if("path"===r.type){var a=function(t){return t},o=a,l=a;z?B("xanchor",r.xanchor=G(x+n)):(o=function(t){return G(H(t)+n)},N&&"date"===N.type&&(o=m.encodeDate(o))),D?B("yanchor",r.yanchor=Y(T+i)):(l=function(t){return Y(q(t)+i)},U&&"date"===U.type&&(l=m.encodeDate(l))),B("path",r.path=w(I,o,l))}else z?B("xanchor",r.xanchor=G(x+n)):(B("x0",r.x0=G(c+n)),B("x1",r.x1=G(g+n))),D?B("yanchor",r.yanchor=Y(T+i)):(B("y0",r.y0=Y(f+i)),B("y1",r.y1=Y(y+i)));e.attr("d",_(t,r)),Q(s,r)}function K(n,i){if(F){var a=function(t){return t},o=a,l=a;z?B("xanchor",r.xanchor=G(x+n)):(o=function(t){return G(H(t)+n)},N&&"date"===N.type&&(o=m.encodeDate(o))),D?B("yanchor",r.yanchor=Y(T+i)):(l=function(t){return Y(q(t)+i)},U&&"date"===U.type&&(l=m.encodeDate(l))),B("path",r.path=w(I,o,l))}else if(R){if("resize-over-start-point"===O){var u=c+n,h=D?f-i:f+i;B("x0",r.x0=z?u:G(u)),B("y0",r.y0=D?h:Y(h))}else if("resize-over-end-point"===O){var p=g+n,d=D?y-i:y+i;B("x1",r.x1=z?p:G(p)),B("y1",r.y1=D?d:Y(d))}}else{var v=function(t){return-1!==O.indexOf(t)},b=v("n"),j=v("s"),V=v("w"),W=v("e"),X=b?k+i:k,Z=j?A+i:A,J=V?M+n:M,K=W?S+n:S;D&&(b&&(X=k-i),j&&(Z=A-i)),(!D&&Z-X>10||D&&X-Z>10)&&(B(E,r[E]=D?X:Y(X)),B(L,r[L]=D?Z:Y(Z))),K-J>10&&(B(C,r[C]=z?J:G(J)),B(P,r[P]=z?K:G(K)))}e.attr("d",_(t,r)),Q(s,r)}function Q(t,e){(z||D)&&function(){var r="path"!==e.type,n=t.selectAll(".visual-cue").data([0]);n.enter().append("path").attr({fill:"#fff","fill-rule":"evenodd",stroke:"#000","stroke-width":1}).classed("visual-cue",!0);var a=H(z?e.xanchor:i.midRange(r?[e.x0,e.x1]:m.extractPathCoords(e.path,d.paramIsX))),o=q(D?e.yanchor:i.midRange(r?[e.y0,e.y1]:m.extractPathCoords(e.path,d.paramIsY)));if(a=m.roundPositionForSharpStrokeRendering(a,1),o=m.roundPositionForSharpStrokeRendering(o,1),z&&D){var s="M"+(a-1-1)+","+(o-1-1)+"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z";n.attr("d",s)}else if(z){var l="M"+(a-1-1)+","+(o-9-1)+"v18 h2 v-18 Z";n.attr("d",l)}else{var c="M"+(a-9-1)+","+(o-1-1)+"h18 v2 h-18 Z";n.attr("d",c)}}()}function $(t){t.selectAll(".visual-cue").remove()}h.init(X),W.node().onmousemove=Z}(t,z,l,e,r,O):!0===l.editable&&z.style("pointer-events",P||c.opacity(S)*M<=.5?"stroke":"all");z.node().addEventListener("click",(function(){return function(t,e){if(!y(t))return;var r=+e.node().getAttribute("data-index");if(r>=0){if(r===t._fullLayout._activeShapeIndex)return void T(t);t._fullLayout._activeShapeIndex=r,t._fullLayout._deactivateShape=T,g(t)}}(t,z)}))}}function b(t,e,r){var n=(r.xref+r.yref).replace(/paper/g,"").replace(/[xyz][1-9]* *domain/g,"");u.setClipUrl(t,n?"clip"+e._fullLayout._uid+n:null,e)}function _(t,e){var r,n,o,s,l,c,u,f,h=e.type,p=a.getRefType(e.xref),g=a.getRefType(e.yref),v=a.getFromId(t,e.xref),y=a.getFromId(t,e.yref),x=t._fullLayout._size;if(v?"domain"===p?n=function(t){return v._offset+v._length*t}:(r=m.shapePositionToRange(v),n=function(t){return v._offset+v.r2p(r(t,!0))}):n=function(t){return x.l+x.w*t},y?"domain"===g?s=function(t){return y._offset+y._length*(1-t)}:(o=m.shapePositionToRange(y),s=function(t){return y._offset+y.r2p(o(t,!0))}):s=function(t){return x.t+x.h*(1-t)},"path"===h)return v&&"date"===v.type&&(n=m.decodeDate(n)),y&&"date"===y.type&&(s=m.decodeDate(s)),function(t,e,r){var n=t.path,a=t.xsizemode,o=t.ysizemode,s=t.xanchor,l=t.yanchor;return n.replace(d.segmentRE,(function(t){var n=0,c=t.charAt(0),u=d.paramIsX[c],f=d.paramIsY[c],h=d.numParams[c],p=t.substr(1).replace(d.paramRE,(function(t){return u[n]?t="pixel"===a?e(s)+Number(t):e(t):f[n]&&(t="pixel"===o?r(l)-Number(t):r(t)),++n>h&&(t="X"),t}));return n>h&&(p=p.replace(/[\s,]*X.*/,""),i.log("Ignoring extra params in segment "+t)),c+p}))}(e,n,s);if("pixel"===e.xsizemode){var b=n(e.xanchor);l=b+e.x0,c=b+e.x1}else l=n(e.x0),c=n(e.x1);if("pixel"===e.ysizemode){var _=s(e.yanchor);u=_-e.y0,f=_-e.y1}else u=s(e.y0),f=s(e.y1);if("line"===h)return"M"+l+","+u+"L"+c+","+f;if("rect"===h)return"M"+l+","+u+"H"+c+"V"+f+"H"+l+"Z";var w=(l+c)/2,T=(u+f)/2,k=Math.abs(w-l),A=Math.abs(T-u),M="A"+k+","+A,S=w+k+","+T;return"M"+S+M+" 0 1,1 "+(w+","+(T-A))+M+" 0 0,1 "+S+"Z"}function w(t,e,r){return t.replace(d.segmentRE,(function(t){var n=0,i=t.charAt(0),a=d.paramIsX[i],o=d.paramIsY[i],s=d.numParams[i];return i+t.substr(1).replace(d.paramRE,(function(t){return n>=s||(a[n]?t=e(t):o[n]&&(t=r(t)),n++),t}))}))}function T(t){y(t)&&(t._fullLayout._activeShapeIndex>=0&&(l(t),delete t._fullLayout._activeShapeIndex,g(t)))}e.exports={draw:g,drawOne:x,eraseActiveShape:function(t){if(!y(t))return;l(t);var e=t._fullLayout._activeShapeIndex,r=(t.layout||{}).shapes||[];if(e=0&&f(v),r.attr("d",m(e)),A&&!h)&&(k=function(t,e){for(var r=0;r1&&(2!==t.length||"Z"!==t[1][0])&&(0===T&&(t[0][0]="M"),e[w]=t,y(),x())}}()}}function I(t,r){!function(t,r){if(e.length)for(var n=0;n0&&l0&&(s=s.transition().duration(e.transition.duration).ease(e.transition.easing)),s.attr("transform",l(o-.5*f.gripWidth,e._dims.currentValueTotalHeight))}}function E(t,e){var r=t._dims;return r.inputAreaStart+f.stepInset+(r.inputAreaLength-2*f.stepInset)*Math.min(1,Math.max(0,e))}function L(t,e){var r=t._dims;return Math.min(1,Math.max(0,(e-f.stepInset-r.inputAreaStart)/(r.inputAreaLength-2*f.stepInset-2*r.inputAreaStart)))}function C(t,e,r){var n=r._dims,i=s.ensureSingle(t,"rect",f.railTouchRectClass,(function(n){n.call(A,e,t,r).style("pointer-events","all")}));i.attr({width:n.inputAreaLength,height:Math.max(n.inputAreaWidth,f.tickOffset+r.ticklen+n.labelHeight)}).call(a.fill,r.bgcolor).attr("opacity",0),o.setTranslate(i,0,n.currentValueTotalHeight)}function P(t,e){var r=e._dims,n=r.inputAreaLength-2*f.railInset,i=s.ensureSingle(t,"rect",f.railRectClass);i.attr({width:n,height:f.railWidth,rx:f.railRadius,ry:f.railRadius,"shape-rendering":"crispEdges"}).call(a.stroke,e.bordercolor).call(a.fill,e.bgcolor).style("stroke-width",e.borderwidth+"px"),o.setTranslate(i,f.railInset,.5*(r.inputAreaWidth-f.railWidth)+r.currentValueTotalHeight)}e.exports=function(t){var e=t._fullLayout,r=function(t,e){for(var r=t[f.name],n=[],i=0;i0?[0]:[]);function s(e){e._commandObserver&&(e._commandObserver.remove(),delete e._commandObserver),i.autoMargin(t,g(e))}if(a.enter().append("g").classed(f.containerClassName,!0).style("cursor","ew-resize"),a.exit().each((function(){n.select(this).selectAll("g."+f.groupClassName).each(s)})).remove(),0!==r.length){var l=a.selectAll("g."+f.groupClassName).data(r,v);l.enter().append("g").classed(f.groupClassName,!0),l.exit().each(s).remove();for(var c=0;c0||h<0){var v={left:[-d,0],right:[d,0],top:[0,-d],bottom:[0,d]}[b.side];e.attr("transform",l(v[0],v[1]))}}}return D.call(R),O&&(E?D.on(".opacity",null):(A=0,M=!0,D.text(y).on("mouseover.opacity",(function(){n.select(this).transition().duration(h.SHOW_PLACEHOLDER).style("opacity",1)})).on("mouseout.opacity",(function(){n.select(this).transition().duration(h.HIDE_PLACEHOLDER).style("opacity",0)}))),D.call(f.makeEditable,{gd:t}).on("edit",(function(e){void 0!==x?o.call("_guiRestyle",t,v,e,x):o.call("_guiRelayout",t,v,e)})).on("cancel",(function(){this.text(this.attr("data-unformatted")).call(R)})).on("input",(function(t){this.text(t||" ").call(f.positionText,_.x,_.y)}))),D.classed("js-placeholder",M),T}}},{"../../constants/alignment":744,"../../constants/interactions":751,"../../lib":776,"../../lib/svg_text_utils":802,"../../plots/plots":890,"../../registry":904,"../color":639,"../drawing":661,"@plotly/d3":58,"fast-isnumeric":242}],738:[function(t,e,r){"use strict";var n=t("../../plots/font_attributes"),i=t("../color/attributes"),a=t("../../lib/extend").extendFlat,o=t("../../plot_api/edit_types").overrideAll,s=t("../../plots/pad_attributes"),l=t("../../plot_api/plot_template").templatedArray,c=l("button",{visible:{valType:"boolean"},method:{valType:"enumerated",values:["restyle","relayout","animate","update","skip"],dflt:"restyle"},args:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},args2:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},label:{valType:"string",dflt:""},execute:{valType:"boolean",dflt:!0}});e.exports=o(l("updatemenu",{_arrayAttrRegexps:[/^updatemenus\[(0|[1-9][0-9]+)\]\.buttons/],visible:{valType:"boolean"},type:{valType:"enumerated",values:["dropdown","buttons"],dflt:"dropdown"},direction:{valType:"enumerated",values:["left","right","up","down"],dflt:"down"},active:{valType:"integer",min:-1,dflt:0},showactive:{valType:"boolean",dflt:!0},buttons:c,x:{valType:"number",min:-2,max:3,dflt:-.05},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"right"},y:{valType:"number",min:-2,max:3,dflt:1},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"top"},pad:a(s({editType:"arraydraw"}),{}),font:n({}),bgcolor:{valType:"color"},bordercolor:{valType:"color",dflt:i.borderLine},borderwidth:{valType:"number",min:0,dflt:1,editType:"arraydraw"}}),"arraydraw","from-root")},{"../../lib/extend":766,"../../plot_api/edit_types":809,"../../plot_api/plot_template":816,"../../plots/font_attributes":856,"../../plots/pad_attributes":889,"../color/attributes":638}],739:[function(t,e,r){"use strict";e.exports={name:"updatemenus",containerClassName:"updatemenu-container",headerGroupClassName:"updatemenu-header-group",headerClassName:"updatemenu-header",headerArrowClassName:"updatemenu-header-arrow",dropdownButtonGroupClassName:"updatemenu-dropdown-button-group",dropdownButtonClassName:"updatemenu-dropdown-button",buttonClassName:"updatemenu-button",itemRectClassName:"updatemenu-item-rect",itemTextClassName:"updatemenu-item-text",menuIndexAttrName:"updatemenu-active-index",autoMarginIdRoot:"updatemenu-",blankHeaderOpts:{label:" "},minWidth:30,minHeight:30,textPadX:24,arrowPadX:16,rx:2,ry:2,textOffsetX:12,textOffsetY:3,arrowOffsetX:4,gapButtonHeader:5,gapButton:2,activeColor:"#F4FAFF",hoverColor:"#F4FAFF",arrowSymbol:{left:"\u25c4",right:"\u25ba",up:"\u25b2",down:"\u25bc"}}},{}],740:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../plots/array_container_defaults"),a=t("./attributes"),o=t("./constants").name,s=a.buttons;function l(t,e,r){function o(r,i){return n.coerce(t,e,a,r,i)}o("visible",i(t,e,{name:"buttons",handleItemDefaults:c}).length>0)&&(o("active"),o("direction"),o("type"),o("showactive"),o("x"),o("y"),n.noneOrAll(t,e,["x","y"]),o("xanchor"),o("yanchor"),o("pad.t"),o("pad.r"),o("pad.b"),o("pad.l"),n.coerceFont(o,"font",r.font),o("bgcolor",r.paper_bgcolor),o("bordercolor"),o("borderwidth"))}function c(t,e){function r(r,i){return n.coerce(t,e,s,r,i)}r("visible","skip"===t.method||Array.isArray(t.args))&&(r("method"),r("args"),r("args2"),r("label"),r("execute"))}e.exports=function(t,e){i(t,e,{name:o,handleItemDefaults:l})}},{"../../lib":776,"../../plots/array_container_defaults":822,"./attributes":738,"./constants":739}],741:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../plots/plots"),a=t("../color"),o=t("../drawing"),s=t("../../lib"),l=t("../../lib/svg_text_utils"),c=t("../../plot_api/plot_template").arrayEditor,u=t("../../constants/alignment").LINE_SPACING,f=t("./constants"),h=t("./scrollbox");function p(t){return t._index}function d(t,e){return+t.attr(f.menuIndexAttrName)===e._index}function m(t,e,r,n,i,a,o,s){e.active=o,c(t.layout,f.name,e).applyUpdate("active",o),"buttons"===e.type?v(t,n,null,null,e):"dropdown"===e.type&&(i.attr(f.menuIndexAttrName,"-1"),g(t,n,i,a,e),s||v(t,n,i,a,e))}function g(t,e,r,n,i){var a=s.ensureSingle(e,"g",f.headerClassName,(function(t){t.style("pointer-events","all")})),l=i._dims,c=i.active,u=i.buttons[c]||f.blankHeaderOpts,h={y:i.pad.t,yPad:0,x:i.pad.l,xPad:0,index:0},p={width:l.headerWidth,height:l.headerHeight};a.call(y,i,u,t).call(M,i,h,p),s.ensureSingle(e,"text",f.headerArrowClassName,(function(t){t.attr("text-anchor","end").call(o.font,i.font).text(f.arrowSymbol[i.direction])})).attr({x:l.headerWidth-f.arrowOffsetX+i.pad.l,y:l.headerHeight/2+f.textOffsetY+i.pad.t}),a.on("click",(function(){r.call(S,String(d(r,i)?-1:i._index)),v(t,e,r,n,i)})),a.on("mouseover",(function(){a.call(w)})),a.on("mouseout",(function(){a.call(T,i)})),o.setTranslate(e,l.lx,l.ly)}function v(t,e,r,a,o){r||(r=e).attr("pointer-events","all");var l=function(t){return-1==+t.attr(f.menuIndexAttrName)}(r)&&"buttons"!==o.type?[]:o.buttons,c="dropdown"===o.type?f.dropdownButtonClassName:f.buttonClassName,u=r.selectAll("g."+c).data(s.filterVisible(l)),h=u.enter().append("g").classed(c,!0),p=u.exit();"dropdown"===o.type?(h.attr("opacity","0").transition().attr("opacity","1"),p.transition().attr("opacity","0").remove()):p.remove();var d=0,g=0,v=o._dims,x=-1!==["up","down"].indexOf(o.direction);"dropdown"===o.type&&(x?g=v.headerHeight+f.gapButtonHeader:d=v.headerWidth+f.gapButtonHeader),"dropdown"===o.type&&"up"===o.direction&&(g=-f.gapButtonHeader+f.gapButton-v.openHeight),"dropdown"===o.type&&"left"===o.direction&&(d=-f.gapButtonHeader+f.gapButton-v.openWidth);var b={x:v.lx+d+o.pad.l,y:v.ly+g+o.pad.t,yPad:f.gapButton,xPad:f.gapButton,index:0},k={l:b.x+o.borderwidth,t:b.y+o.borderwidth};u.each((function(s,l){var c=n.select(this);c.call(y,o,s,t).call(M,o,b),c.on("click",(function(){n.event.defaultPrevented||(s.execute&&(s.args2&&o.active===l?(m(t,o,0,e,r,a,-1),i.executeAPICommand(t,s.method,s.args2)):(m(t,o,0,e,r,a,l),i.executeAPICommand(t,s.method,s.args))),t.emit("plotly_buttonclicked",{menu:o,button:s,active:o.active}))})),c.on("mouseover",(function(){c.call(w)})),c.on("mouseout",(function(){c.call(T,o),u.call(_,o)}))})),u.call(_,o),x?(k.w=Math.max(v.openWidth,v.headerWidth),k.h=b.y-k.t):(k.w=b.x-k.l,k.h=Math.max(v.openHeight,v.headerHeight)),k.direction=o.direction,a&&(u.size()?function(t,e,r,n,i,a){var o,s,l,c=i.direction,u="up"===c||"down"===c,h=i._dims,p=i.active;if(u)for(s=0,l=0;l0?[0]:[]);if(o.enter().append("g").classed(f.containerClassName,!0).style("cursor","pointer"),o.exit().each((function(){n.select(this).selectAll("g."+f.headerGroupClassName).each(a)})).remove(),0!==r.length){var l=o.selectAll("g."+f.headerGroupClassName).data(r,p);l.enter().append("g").classed(f.headerGroupClassName,!0);for(var c=s.ensureSingle(o,"g",f.dropdownButtonGroupClassName,(function(t){t.style("pointer-events","all")})),u=0;uw,A=s.barLength+2*s.barPad,M=s.barWidth+2*s.barPad,S=d,E=g+v;E+M>c&&(E=c-M);var L=this.container.selectAll("rect.scrollbar-horizontal").data(k?[0]:[]);L.exit().on(".drag",null).remove(),L.enter().append("rect").classed("scrollbar-horizontal",!0).call(i.fill,s.barColor),k?(this.hbar=L.attr({rx:s.barRadius,ry:s.barRadius,x:S,y:E,width:A,height:M}),this._hbarXMin=S+A/2,this._hbarTranslateMax=w-A):(delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax);var C=v>T,P=s.barWidth+2*s.barPad,I=s.barLength+2*s.barPad,O=d+m,z=g;O+P>l&&(O=l-P);var D=this.container.selectAll("rect.scrollbar-vertical").data(C?[0]:[]);D.exit().on(".drag",null).remove(),D.enter().append("rect").classed("scrollbar-vertical",!0).call(i.fill,s.barColor),C?(this.vbar=D.attr({rx:s.barRadius,ry:s.barRadius,x:O,y:z,width:P,height:I}),this._vbarYMin=z+I/2,this._vbarTranslateMax=T-I):(delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax);var R=this.id,F=u-.5,B=C?f+P+.5:f+.5,N=h-.5,j=k?p+M+.5:p+.5,U=o._topdefs.selectAll("#"+R).data(k||C?[0]:[]);if(U.exit().remove(),U.enter().append("clipPath").attr("id",R).append("rect"),k||C?(this._clipRect=U.select("rect").attr({x:Math.floor(F),y:Math.floor(N),width:Math.ceil(B)-Math.floor(F),height:Math.ceil(j)-Math.floor(N)}),this.container.call(a.setClipUrl,R,this.gd),this.bg.attr({x:d,y:g,width:m,height:v})):(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(a.setClipUrl,null),delete this._clipRect),k||C){var V=n.behavior.drag().on("dragstart",(function(){n.event.sourceEvent.preventDefault()})).on("drag",this._onBoxDrag.bind(this));this.container.on("wheel",null).on("wheel",this._onBoxWheel.bind(this)).on(".drag",null).call(V);var H=n.behavior.drag().on("dragstart",(function(){n.event.sourceEvent.preventDefault(),n.event.sourceEvent.stopPropagation()})).on("drag",this._onBarDrag.bind(this));k&&this.hbar.on(".drag",null).call(H),C&&this.vbar.on(".drag",null).call(H)}this.setTranslate(e,r)},s.prototype.disable=function(){(this.hbar||this.vbar)&&(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(a.setClipUrl,null),delete this._clipRect),this.hbar&&(this.hbar.on(".drag",null),this.hbar.remove(),delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax),this.vbar&&(this.vbar.on(".drag",null),this.vbar.remove(),delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax)},s.prototype._onBoxDrag=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t-=n.event.dx),this.vbar&&(e-=n.event.dy),this.setTranslate(t,e)},s.prototype._onBoxWheel=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t+=n.event.deltaY),this.vbar&&(e+=n.event.deltaY),this.setTranslate(t,e)},s.prototype._onBarDrag=function(){var t=this.translateX,e=this.translateY;if(this.hbar){var r=t+this._hbarXMin,i=r+this._hbarTranslateMax;t=(o.constrain(n.event.x,r,i)-r)/(i-r)*(this.position.w-this._box.w)}if(this.vbar){var a=e+this._vbarYMin,s=a+this._vbarTranslateMax;e=(o.constrain(n.event.y,a,s)-a)/(s-a)*(this.position.h-this._box.h)}this.setTranslate(t,e)},s.prototype.setTranslate=function(t,e){var r=this.position.w-this._box.w,n=this.position.h-this._box.h;if(t=o.constrain(t||0,0,r),e=o.constrain(e||0,0,n),this.translateX=t,this.translateY=e,this.container.call(a.setTranslate,this._box.l-this.position.l-t,this._box.t-this.position.t-e),this._clipRect&&this._clipRect.attr({x:Math.floor(this.position.l+t-.5),y:Math.floor(this.position.t+e-.5)}),this.hbar){var i=t/r;this.hbar.call(a.setTranslate,t+i*this._hbarTranslateMax,e)}if(this.vbar){var s=e/n;this.vbar.call(a.setTranslate,t,e+s*this._vbarTranslateMax)}}},{"../../lib":776,"../color":639,"../drawing":661,"@plotly/d3":58}],744:[function(t,e,r){"use strict";e.exports={FROM_BL:{left:0,center:.5,right:1,bottom:0,middle:.5,top:1},FROM_TL:{left:0,center:.5,right:1,bottom:1,middle:.5,top:0},FROM_BR:{left:1,center:.5,right:0,bottom:0,middle:.5,top:1},LINE_SPACING:1.3,CAP_SHIFT:.7,MID_SHIFT:.35,OPPOSITE_SIDE:{left:"right",right:"left",top:"bottom",bottom:"top"}}},{}],745:[function(t,e,r){"use strict";e.exports={axisRefDescription:function(t,e,r){return["If set to a",t,"axis id (e.g. *"+t+"* or","*"+t+"2*), the `"+t+"` position refers to a",t,"coordinate. If set to *paper*, the `"+t+"`","position refers to the distance from the",e,"of the plotting","area in normalized coordinates where *0* (*1*) corresponds to the",e,"("+r+"). If set to a",t,"axis ID followed by","*domain* (separated by a space), the position behaves like for","*paper*, but refers to the distance in fractions of the domain","length from the",e,"of the domain of that axis: e.g.,","*"+t+"2 domain* refers to the domain of the second",t," axis and a",t,"position of 0.5 refers to the","point between the",e,"and the",r,"of the domain of the","second",t,"axis."].join(" ")}}},{}],746:[function(t,e,r){"use strict";e.exports={INCREASING:{COLOR:"#3D9970",SYMBOL:"\u25b2"},DECREASING:{COLOR:"#FF4136",SYMBOL:"\u25bc"}}},{}],747:[function(t,e,r){"use strict";e.exports={FORMAT_LINK:"https://github.com/d3/d3-format/tree/v1.4.5#d3-format",DATE_FORMAT_LINK:"https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format"}},{}],748:[function(t,e,r){"use strict";e.exports={COMPARISON_OPS:["=","!=","<",">=",">","<="],COMPARISON_OPS2:["=","<",">=",">","<="],INTERVAL_OPS:["[]","()","[)","(]","][",")(","](",")["],SET_OPS:["{}","}{"],CONSTRAINT_REDUCTION:{"=":"=","<":"<","<=":"<",">":">",">=":">","[]":"[]","()":"[]","[)":"[]","(]":"[]","][":"][",")(":"][","](":"][",")[":"]["}}},{}],749:[function(t,e,r){"use strict";e.exports={solid:[[],0],dot:[[.5,1],200],dash:[[.5,1],50],longdash:[[.5,1],10],dashdot:[[.5,.625,.875,1],50],longdashdot:[[.5,.7,.8,1],10]}},{}],750:[function(t,e,r){"use strict";e.exports={circle:"\u25cf","circle-open":"\u25cb",square:"\u25a0","square-open":"\u25a1",diamond:"\u25c6","diamond-open":"\u25c7",cross:"+",x:"\u274c"}},{}],751:[function(t,e,r){"use strict";e.exports={SHOW_PLACEHOLDER:100,HIDE_PLACEHOLDER:1e3,DESELECTDIM:.2}},{}],752:[function(t,e,r){"use strict";e.exports={BADNUM:void 0,FP_SAFE:1e-4*Number.MAX_VALUE,ONEMAXYEAR:316224e5,ONEAVGYEAR:315576e5,ONEMINYEAR:31536e6,ONEMAXQUARTER:79488e5,ONEAVGQUARTER:78894e5,ONEMINQUARTER:76896e5,ONEMAXMONTH:26784e5,ONEAVGMONTH:26298e5,ONEMINMONTH:24192e5,ONEWEEK:6048e5,ONEDAY:864e5,ONEHOUR:36e5,ONEMIN:6e4,ONESEC:1e3,EPOCHJD:2440587.5,ALMOST_EQUAL:.999999,LOG_CLIP:10,MINUS_SIGN:"\u2212"}},{}],753:[function(t,e,r){"use strict";r.xmlns="http://www.w3.org/2000/xmlns/",r.svg="http://www.w3.org/2000/svg",r.xlink="http://www.w3.org/1999/xlink",r.svgAttrs={xmlns:r.svg,"xmlns:xlink":r.xlink}},{}],754:[function(t,e,r){"use strict";r.version=t("./version").version,t("native-promise-only"),t("../build/plotcss");for(var n=t("./registry"),i=r.register=n.register,a=t("./plot_api"),o=Object.keys(a),s=0;splotly-logomark"}}},{}],756:[function(t,e,r){"use strict";r.isLeftAnchor=function(t){return"left"===t.xanchor||"auto"===t.xanchor&&t.x<=1/3},r.isCenterAnchor=function(t){return"center"===t.xanchor||"auto"===t.xanchor&&t.x>1/3&&t.x<2/3},r.isRightAnchor=function(t){return"right"===t.xanchor||"auto"===t.xanchor&&t.x>=2/3},r.isTopAnchor=function(t){return"top"===t.yanchor||"auto"===t.yanchor&&t.y>=2/3},r.isMiddleAnchor=function(t){return"middle"===t.yanchor||"auto"===t.yanchor&&t.y>1/3&&t.y<2/3},r.isBottomAnchor=function(t){return"bottom"===t.yanchor||"auto"===t.yanchor&&t.y<=1/3}},{}],757:[function(t,e,r){"use strict";var n=t("./mod"),i=n.mod,a=n.modHalf,o=Math.PI,s=2*o;function l(t){return Math.abs(t[1]-t[0])>s-1e-14}function c(t,e){return a(e-t,s)}function u(t,e){if(l(e))return!0;var r,n;e[0](n=i(n,s))&&(n+=s);var a=i(t,s),o=a+s;return a>=r&&a<=n||o>=r&&o<=n}function f(t,e,r,n,i,a,c){i=i||0,a=a||0;var u,f,h,p,d,m=l([r,n]);function g(t,e){return[t*Math.cos(e)+i,a-t*Math.sin(e)]}m?(u=0,f=o,h=s):r=i&&t<=a);var i,a},pathArc:function(t,e,r,n,i){return f(null,t,e,r,n,i,0)},pathSector:function(t,e,r,n,i){return f(null,t,e,r,n,i,1)},pathAnnulus:function(t,e,r,n,i,a){return f(t,e,r,n,i,a,1)}}},{"./mod":783}],758:[function(t,e,r){"use strict";var n=Array.isArray,i="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer:{isView:function(){return!1}},a="undefined"==typeof DataView?function(){}:DataView;function o(t){return i.isView(t)&&!(t instanceof a)}function s(t){return n(t)||o(t)}function l(t,e,r){if(s(t)){if(s(t[0])){for(var n=r,i=0;ii.max?e.set(r):e.set(+t)}},integer:{coerceFunction:function(t,e,r,i){t%1||!n(t)||void 0!==i.min&&ti.max?e.set(r):e.set(+t)}},string:{coerceFunction:function(t,e,r,n){if("string"!=typeof t){var i="number"==typeof t;!0!==n.strict&&i?e.set(String(t)):e.set(r)}else n.noBlank&&!t?e.set(r):e.set(t)}},color:{coerceFunction:function(t,e,r){i(t).isValid()?e.set(t):e.set(r)}},colorlist:{coerceFunction:function(t,e,r){Array.isArray(t)&&t.length&&t.every((function(t){return i(t).isValid()}))?e.set(t):e.set(r)}},colorscale:{coerceFunction:function(t,e,r){e.set(o.get(t,r))}},angle:{coerceFunction:function(t,e,r){"auto"===t?e.set("auto"):n(t)?e.set(f(+t,360)):e.set(r)}},subplotid:{coerceFunction:function(t,e,r,n){var i=n.regex||u(r);"string"==typeof t&&i.test(t)?e.set(t):e.set(r)},validateFunction:function(t,e){var r=e.dflt;return t===r||"string"==typeof t&&!!u(r).test(t)}},flaglist:{coerceFunction:function(t,e,r,n){if("string"==typeof t)if(-1===(n.extras||[]).indexOf(t)){for(var i=t.split("+"),a=0;a=n&&t<=i?t:u}if("string"!=typeof t&&"number"!=typeof t)return u;t=String(t);var c=_(e),v=t.charAt(0);!c||"G"!==v&&"g"!==v||(t=t.substr(1),e="");var w=c&&"chinese"===e.substr(0,7),T=t.match(w?x:y);if(!T)return u;var k=T[1],A=T[3]||"1",M=Number(T[5]||1),S=Number(T[7]||0),E=Number(T[9]||0),L=Number(T[11]||0);if(c){if(2===k.length)return u;var C;k=Number(k);try{var P=g.getComponentMethod("calendars","getCal")(e);if(w){var I="i"===A.charAt(A.length-1);A=parseInt(A,10),C=P.newDate(k,P.toMonthIndex(k,A,I),M)}else C=P.newDate(k,Number(A),M)}catch(t){return u}return C?(C.toJD()-m)*f+S*h+E*p+L*d:u}k=2===k.length?(Number(k)+2e3-b)%100+b:Number(k),A-=1;var O=new Date(Date.UTC(2e3,A,M,S,E));return O.setUTCFullYear(k),O.getUTCMonth()!==A||O.getUTCDate()!==M?u:O.getTime()+L*d},n=r.MIN_MS=r.dateTime2ms("-9999"),i=r.MAX_MS=r.dateTime2ms("9999-12-31 23:59:59.9999"),r.isDateTime=function(t,e){return r.dateTime2ms(t,e)!==u};var T=90*f,k=3*h,A=5*p;function M(t,e,r,n,i){if((e||r||n||i)&&(t+=" "+w(e,2)+":"+w(r,2),(n||i)&&(t+=":"+w(n,2),i))){for(var a=4;i%10==0;)a-=1,i/=10;t+="."+w(i,a)}return t}r.ms2DateTime=function(t,e,r){if("number"!=typeof t||!(t>=n&&t<=i))return u;e||(e=0);var a,o,s,c,y,x,b=Math.floor(10*l(t+.05,1)),w=Math.round(t-b/10);if(_(r)){var S=Math.floor(w/f)+m,E=Math.floor(l(t,f));try{a=g.getComponentMethod("calendars","getCal")(r).fromJD(S).formatDate("yyyy-mm-dd")}catch(t){a=v("G%Y-%m-%d")(new Date(w))}if("-"===a.charAt(0))for(;a.length<11;)a="-0"+a.substr(1);else for(;a.length<10;)a="0"+a;o=e=n+f&&t<=i-f))return u;var e=Math.floor(10*l(t+.05,1)),r=new Date(Math.round(t-e/10));return M(a("%Y-%m-%d")(r),r.getHours(),r.getMinutes(),r.getSeconds(),10*r.getUTCMilliseconds()+e)},r.cleanDate=function(t,e,n){if(t===u)return e;if(r.isJSDate(t)||"number"==typeof t&&isFinite(t)){if(_(n))return s.error("JS Dates and milliseconds are incompatible with world calendars",t),e;if(!(t=r.ms2DateTimeLocal(+t))&&void 0!==e)return e}else if(!r.isDateTime(t,n))return s.error("unrecognized date",t),e;return t};var S=/%\d?f/g,E=/%h/g,L={1:"1",2:"1",3:"2",4:"2"};function C(t,e,r,n){t=t.replace(S,(function(t){var r=Math.min(+t.charAt(1)||6,6);return(e/1e3%1+2).toFixed(r).substr(2).replace(/0+$/,"")||"0"}));var i=new Date(Math.floor(e+.05));if(t=t.replace(E,(function(){return L[r("%q")(i)]})),_(n))try{t=g.getComponentMethod("calendars","worldCalFmt")(t,e,n)}catch(t){return"Invalid"}return r(t)(i)}var P=[59,59.9,59.99,59.999,59.9999];r.formatDate=function(t,e,r,n,i,a){if(i=_(i)&&i,!e)if("y"===r)e=a.year;else if("m"===r)e=a.month;else{if("d"!==r)return function(t,e){var r=l(t+.05,f),n=w(Math.floor(r/h),2)+":"+w(l(Math.floor(r/p),60),2);if("M"!==e){o(e)||(e=0);var i=(100+Math.min(l(t/d,60),P[e])).toFixed(e).substr(1);e>0&&(i=i.replace(/0+$/,"").replace(/[\.]$/,"")),n+=":"+i}return n}(t,r)+"\n"+C(a.dayMonthYear,t,n,i);e=a.dayMonth+"\n"+a.year}return C(e,t,n,i)};var I=3*f;r.incrementMonth=function(t,e,r){r=_(r)&&r;var n=l(t,f);if(t=Math.round(t-n),r)try{var i=Math.round(t/f)+m,a=g.getComponentMethod("calendars","getCal")(r),o=a.fromJD(i);return e%12?a.add(o,e,"m"):a.add(o,e/12,"y"),(o.toJD()-m)*f+n}catch(e){s.error("invalid ms "+t+" in calendar "+r)}var c=new Date(t+I);return c.setUTCMonth(c.getUTCMonth()+e)+n-I},r.findExactDates=function(t,e){for(var r,n,i=0,a=0,s=0,l=0,c=_(e)&&g.getComponentMethod("calendars","getCal")(e),u=0;u0&&t[e+1][0]<0)return e;return null}switch(e="RUS"===s||"FJI"===s?function(t){var e;if(null===c(t))e=t;else for(e=new Array(t.length),i=0;ie?r[n++]=[t[i][0]+360,t[i][1]]:i===e?(r[n++]=t[i],r[n++]=[t[i][0],-90]):r[n++]=t[i];var a=h.tester(r);a.pts.pop(),l.push(a)}:function(t){l.push(h.tester(t))},a.type){case"MultiPolygon":for(r=0;ri&&(i=c,e=l)}else e=r;return o.default(e).geometry.coordinates}(u),n.fIn=t,n.fOut=u,s.push(u)}else c.log(["Location",n.loc,"does not have a valid GeoJSON geometry.","Traces with locationmode *geojson-id* only support","*Polygon* and *MultiPolygon* geometries."].join(" "))}delete i[r]}switch(r.type){case"FeatureCollection":var h=r.features;for(n=0;n100?(clearInterval(a),n("Unexpected error while fetching from "+t)):void i++}),50)}))}for(var o=0;o0&&(r.push(i),i=[])}return i.length>0&&r.push(i),r},r.makeLine=function(t){return 1===t.length?{type:"LineString",coordinates:t[0]}:{type:"MultiLineString",coordinates:t}},r.makePolygon=function(t){if(1===t.length)return{type:"Polygon",coordinates:t};for(var e=new Array(t.length),r=0;r1||m<0||m>1?null:{x:t+l*m,y:e+f*m}}function l(t,e,r,n,i){var a=n*t+i*e;if(a<0)return n*n+i*i;if(a>r){var o=n-t,s=i-e;return o*o+s*s}var l=n*e-i*t;return l*l/r}r.segmentsIntersect=s,r.segmentDistance=function(t,e,r,n,i,a,o,c){if(s(t,e,r,n,i,a,o,c))return 0;var u=r-t,f=n-e,h=o-i,p=c-a,d=u*u+f*f,m=h*h+p*p,g=Math.min(l(u,f,d,i-t,a-e),l(u,f,d,o-t,c-e),l(h,p,m,t-i,e-a),l(h,p,m,r-i,n-a));return Math.sqrt(g)},r.getTextLocation=function(t,e,r,s){if(t===i&&s===a||(n={},i=t,a=s),n[r])return n[r];var l=t.getPointAtLength(o(r-s/2,e)),c=t.getPointAtLength(o(r+s/2,e)),u=Math.atan((c.y-l.y)/(c.x-l.x)),f=t.getPointAtLength(o(r,e)),h={x:(4*f.x+l.x+c.x)/6,y:(4*f.y+l.y+c.y)/6,theta:u};return n[r]=h,h},r.clearLocationCache=function(){i=null},r.getVisibleSegment=function(t,e,r){var n,i,a=e.left,o=e.right,s=e.top,l=e.bottom,c=0,u=t.getTotalLength(),f=u;function h(e){var r=t.getPointAtLength(e);0===e?n=r:e===u&&(i=r);var c=r.xo?r.x-o:0,f=r.yl?r.y-l:0;return Math.sqrt(c*c+f*f)}for(var p=h(c);p;){if((c+=p+r)>f)return;p=h(c)}for(p=h(f);p;){if(c>(f-=p+r))return;p=h(f)}return{min:c,max:f,len:f-c,total:u,isClosed:0===c&&f===u&&Math.abs(n.x-i.x)<.1&&Math.abs(n.y-i.y)<.1}},r.findPointOnPath=function(t,e,r,n){for(var i,a,o,s=(n=n||{}).pathLength||t.getTotalLength(),l=n.tolerance||.001,c=n.iterationLimit||30,u=t.getPointAtLength(0)[r]>t.getPointAtLength(s)[r]?-1:1,f=0,h=0,p=s;f0?p=i:h=i,f++}return a}},{"./mod":783}],772:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("tinycolor2"),a=t("color-normalize"),o=t("../components/colorscale"),s=t("../components/color/attributes").defaultLine,l=t("./array").isArrayOrTypedArray,c=a(s);function u(t,e){var r=t;return r[3]*=e,r}function f(t){if(n(t))return c;var e=a(t);return e.length?e:c}function h(t){return n(t)?t:1}e.exports={formatColor:function(t,e,r){var n,i,s,p,d,m=t.color,g=l(m),v=l(e),y=o.extractOpts(t),x=[];if(n=void 0!==y.colorscale?o.makeColorScaleFuncFromTrace(t):f,i=g?function(t,e){return void 0===t[e]?c:a(n(t[e]))}:f,s=v?function(t,e){return void 0===t[e]?1:h(t[e])}:h,g||v)for(var b=0;b1?(r*t+r*e)/r:t+e,i=String(n).length;if(i>16){var a=String(e).length;if(i>=String(t).length+a){var o=parseFloat(n).toPrecision(12);-1===o.indexOf("e+")&&(n=+o)}}return n}},{}],776:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("d3-time-format").utcFormat,a=t("d3-format").format,o=t("fast-isnumeric"),s=t("../constants/numerical"),l=s.FP_SAFE,c=-l,u=s.BADNUM,f=e.exports={};f.adjustFormat=function(t){return!t||/^\d[.]\df/.test(t)||/[.]\d%/.test(t)?t:"0.f"===t?"~f":/^\d%/.test(t)?"~%":/^\ds/.test(t)?"~s":!/^[~,.0$]/.test(t)&&/[&fps]/.test(t)?"~"+t:t};var h={};f.warnBadFormat=function(t){var e=String(t);h[e]||(h[e]=1,f.warn('encountered bad format: "'+e+'"'))},f.noFormat=function(t){return String(t)},f.numberFormat=function(t){var e;try{e=a(f.adjustFormat(t))}catch(e){return f.warnBadFormat(t),f.noFormat}return e},f.nestedProperty=t("./nested_property"),f.keyedContainer=t("./keyed_container"),f.relativeAttr=t("./relative_attr"),f.isPlainObject=t("./is_plain_object"),f.toLogRange=t("./to_log_range"),f.relinkPrivateKeys=t("./relink_private");var p=t("./array");f.isTypedArray=p.isTypedArray,f.isArrayOrTypedArray=p.isArrayOrTypedArray,f.isArray1D=p.isArray1D,f.ensureArray=p.ensureArray,f.concat=p.concat,f.maxRowLength=p.maxRowLength,f.minRowLength=p.minRowLength;var d=t("./mod");f.mod=d.mod,f.modHalf=d.modHalf;var m=t("./coerce");f.valObjectMeta=m.valObjectMeta,f.coerce=m.coerce,f.coerce2=m.coerce2,f.coerceFont=m.coerceFont,f.coercePattern=m.coercePattern,f.coerceHoverinfo=m.coerceHoverinfo,f.coerceSelectionMarkerOpacity=m.coerceSelectionMarkerOpacity,f.validate=m.validate;var g=t("./dates");f.dateTime2ms=g.dateTime2ms,f.isDateTime=g.isDateTime,f.ms2DateTime=g.ms2DateTime,f.ms2DateTimeLocal=g.ms2DateTimeLocal,f.cleanDate=g.cleanDate,f.isJSDate=g.isJSDate,f.formatDate=g.formatDate,f.incrementMonth=g.incrementMonth,f.dateTick0=g.dateTick0,f.dfltRange=g.dfltRange,f.findExactDates=g.findExactDates,f.MIN_MS=g.MIN_MS,f.MAX_MS=g.MAX_MS;var v=t("./search");f.findBin=v.findBin,f.sorterAsc=v.sorterAsc,f.sorterDes=v.sorterDes,f.distinctVals=v.distinctVals,f.roundUp=v.roundUp,f.sort=v.sort,f.findIndexOfMin=v.findIndexOfMin,f.sortObjectKeys=t("./sort_object_keys");var y=t("./stats");f.aggNums=y.aggNums,f.len=y.len,f.mean=y.mean,f.median=y.median,f.midRange=y.midRange,f.variance=y.variance,f.stdev=y.stdev,f.interp=y.interp;var x=t("./matrix");f.init2dArray=x.init2dArray,f.transposeRagged=x.transposeRagged,f.dot=x.dot,f.translationMatrix=x.translationMatrix,f.rotationMatrix=x.rotationMatrix,f.rotationXYMatrix=x.rotationXYMatrix,f.apply3DTransform=x.apply3DTransform,f.apply2DTransform=x.apply2DTransform,f.apply2DTransform2=x.apply2DTransform2,f.convertCssMatrix=x.convertCssMatrix,f.inverseTransformMatrix=x.inverseTransformMatrix;var b=t("./angles");f.deg2rad=b.deg2rad,f.rad2deg=b.rad2deg,f.angleDelta=b.angleDelta,f.angleDist=b.angleDist,f.isFullCircle=b.isFullCircle,f.isAngleInsideSector=b.isAngleInsideSector,f.isPtInsideSector=b.isPtInsideSector,f.pathArc=b.pathArc,f.pathSector=b.pathSector,f.pathAnnulus=b.pathAnnulus;var _=t("./anchor_utils");f.isLeftAnchor=_.isLeftAnchor,f.isCenterAnchor=_.isCenterAnchor,f.isRightAnchor=_.isRightAnchor,f.isTopAnchor=_.isTopAnchor,f.isMiddleAnchor=_.isMiddleAnchor,f.isBottomAnchor=_.isBottomAnchor;var w=t("./geometry2d");f.segmentsIntersect=w.segmentsIntersect,f.segmentDistance=w.segmentDistance,f.getTextLocation=w.getTextLocation,f.clearLocationCache=w.clearLocationCache,f.getVisibleSegment=w.getVisibleSegment,f.findPointOnPath=w.findPointOnPath;var T=t("./extend");f.extendFlat=T.extendFlat,f.extendDeep=T.extendDeep,f.extendDeepAll=T.extendDeepAll,f.extendDeepNoArrays=T.extendDeepNoArrays;var k=t("./loggers");f.log=k.log,f.warn=k.warn,f.error=k.error;var A=t("./regex");f.counterRegex=A.counter;var M=t("./throttle");f.throttle=M.throttle,f.throttleDone=M.done,f.clearThrottle=M.clear;var S=t("./dom");function E(t){var e={};for(var r in t)for(var n=t[r],i=0;il||t=e)&&(o(t)&&t>=0&&t%1==0)},f.noop=t("./noop"),f.identity=t("./identity"),f.repeat=function(t,e){for(var r=new Array(e),n=0;nr?Math.max(r,Math.min(e,t)):Math.max(e,Math.min(r,t))},f.bBoxIntersect=function(t,e,r){return r=r||0,t.left<=e.right+r&&e.left<=t.right+r&&t.top<=e.bottom+r&&e.top<=t.bottom+r},f.simpleMap=function(t,e,r,n,i){for(var a=t.length,o=new Array(a),s=0;s=Math.pow(2,r)?i>10?(f.warn("randstr failed uniqueness"),l):t(e,r,n,(i||0)+1):l},f.OptionControl=function(t,e){t||(t={}),e||(e="opt");var r={optionList:[],_newoption:function(n){n[e]=t,r[n.name]=n,r.optionList.push(n)}};return r["_"+e]=t,r},f.smooth=function(t,e){if((e=Math.round(e)||0)<2)return t;var r,n,i,a,o=t.length,s=2*o,l=2*e-1,c=new Array(l),u=new Array(o);for(r=0;r=s&&(i-=s*Math.floor(i/s)),i<0?i=-1-i:i>=o&&(i=s-1-i),a+=t[i]*c[n];u[r]=a}return u},f.syncOrAsync=function(t,e,r){var n;function i(){return f.syncOrAsync(t,e,r)}for(;t.length;)if((n=(0,t.splice(0,1)[0])(e))&&n.then)return n.then(i);return r&&r(e)},f.stripTrailingSlash=function(t){return"/"===t.substr(-1)?t.substr(0,t.length-1):t},f.noneOrAll=function(t,e,r){if(t){var n,i=!1,a=!0;for(n=0;n0?e:0}))},f.fillArray=function(t,e,r,n){if(n=n||f.identity,f.isArrayOrTypedArray(t))for(var i=0;i1?i+o[1]:"";if(a&&(o.length>1||s.length>4||r))for(;n.test(s);)s=s.replace(n,"$1"+a+"$2");return s+l},f.TEMPLATE_STRING_REGEX=/%{([^\s%{}:]*)([:|\|][^}]*)?}/g;var z=/^\w*$/;f.templateString=function(t,e){var r={};return t.replace(f.TEMPLATE_STRING_REGEX,(function(t,n){var i;return z.test(n)?i=e[n]:(r[n]=r[n]||f.nestedProperty(e,n).get,i=r[n]()),f.isValidTextValue(i)?i:""}))};var D={max:10,count:0,name:"hovertemplate"};f.hovertemplateString=function(){return B.apply(D,arguments)};var R={max:10,count:0,name:"texttemplate"};f.texttemplateString=function(){return B.apply(R,arguments)};var F=/^[:|\|]/;function B(t,e,r){var n=this,a=arguments;e||(e={});var o={};return t.replace(f.TEMPLATE_STRING_REGEX,(function(t,s,l){var c,u,h,p="_xother"===s||"_yother"===s,d="_xother_"===s||"_yother_"===s,m="xother_"===s||"yother_"===s,g="xother"===s||"yother"===s||p||m||d,v=s;if((p||d)&&(v=v.substring(1)),(m||d)&&(v=v.substring(0,v.length-1)),g){if(void 0===(c=e[v]))return""}else for(h=3;h=48&&o<=57,c=s>=48&&s<=57;if(l&&(n=10*n+o-48),c&&(i=10*i+s-48),!l||!c){if(n!==i)return n-i;if(o!==s)return o-s}}return i-n};var N=2e9;f.seedPseudoRandom=function(){N=2e9},f.pseudoRandom=function(){var t=N;return N=(69069*N+1)%4294967296,Math.abs(N-t)<429496729?f.pseudoRandom():N/4294967296},f.fillText=function(t,e,r){var n=Array.isArray(r)?function(t){r.push(t)}:function(t){r.text=t},i=f.extractOption(t,e,"htx","hovertext");if(f.isValidTextValue(i))return n(i);var a=f.extractOption(t,e,"tx","text");return f.isValidTextValue(a)?n(a):void 0},f.isValidTextValue=function(t){return t||0===t},f.formatPercent=function(t,e){e=e||0;for(var r=(Math.round(100*t*Math.pow(10,e))*Math.pow(.1,e)).toFixed(e)+"%",n=0;n1&&(c=1):c=0,f.strTranslate(i-c*(r+o),a-c*(n+s))+f.strScale(c)+(l?"rotate("+l+(e?"":" "+r+" "+n)+")":"")},f.ensureUniformFontSize=function(t,e){var r=f.extendFlat({},e);return r.size=Math.max(e.size,t._fullLayout.uniformtext.minsize||0),r},f.join2=function(t,e,r){var n=t.length;return n>1?t.slice(0,-1).join(e)+r+t[n-1]:t.join(e)},f.bigFont=function(t){return Math.round(1.2*t)};var j=f.getFirefoxVersion(),U=null!==j&&j<86;f.getPositionFromD3Event=function(){return U?[n.event.layerX,n.event.layerY]:[n.event.offsetX,n.event.offsetY]}},{"../constants/numerical":752,"./anchor_utils":756,"./angles":757,"./array":758,"./clean_number":759,"./clear_responsive":761,"./coerce":762,"./dates":763,"./dom":764,"./extend":766,"./filter_unique":767,"./filter_visible":768,"./geometry2d":771,"./identity":774,"./increment":775,"./is_plain_object":777,"./keyed_container":778,"./localize":779,"./loggers":780,"./make_trace_groups":781,"./matrix":782,"./mod":783,"./nested_property":784,"./noop":785,"./notifier":786,"./preserve_drawing_buffer":790,"./push_unique":791,"./regex":793,"./relative_attr":794,"./relink_private":795,"./search":796,"./sort_object_keys":799,"./stats":800,"./throttle":803,"./to_log_range":804,"@plotly/d3":58,"d3-format":160,"d3-time-format":168,"fast-isnumeric":242}],777:[function(t,e,r){"use strict";e.exports=function(t){return window&&window.process&&window.process.versions?"[object Object]"===Object.prototype.toString.call(t):"[object Object]"===Object.prototype.toString.call(t)&&Object.getPrototypeOf(t).hasOwnProperty("hasOwnProperty")}},{}],778:[function(t,e,r){"use strict";var n=t("./nested_property"),i=/^\w*$/;e.exports=function(t,e,r,a){var o,s,l;r=r||"name",a=a||"value";var c={};e&&e.length?(l=n(t,e),s=l.get()):s=t,e=e||"";var u={};if(s)for(o=0;o2)return c[e]=2|c[e],h.set(t,null);if(f){for(o=e;o1){var e=["LOG:"];for(t=0;t1){var r=[];for(t=0;t"),"long")}},a.warn=function(){var t;if(n.logging>0){var e=["WARN:"];for(t=0;t0){var r=[];for(t=0;t"),"stick")}},a.error=function(){var t;if(n.logging>0){var e=["ERROR:"];for(t=0;t0){var r=[];for(t=0;t"),"stick")}}},{"../plot_api/plot_config":814,"./notifier":786}],781:[function(t,e,r){"use strict";var n=t("@plotly/d3");e.exports=function(t,e,r){var i=t.selectAll("g."+r.replace(/\s/g,".")).data(e,(function(t){return t[0].trace.uid}));i.exit().remove(),i.enter().append("g").attr("class",r),i.order();var a=t.classed("rangeplot")?"nodeRangePlot3":"node3";return i.each((function(t){t[0][a]=n.select(this)})),i}},{"@plotly/d3":58}],782:[function(t,e,r){"use strict";var n=t("gl-mat4");r.init2dArray=function(t,e){for(var r=new Array(t),n=0;ne/2?t-Math.round(t/e)*e:t}}},{}],784:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("./array").isArrayOrTypedArray;function a(t,e){return function(){var r,n,o,s,l,c=t;for(s=0;s/g),l=0;la||c===i||cs)&&(!e||!l(t))}:function(t,e){var l=t[0],c=t[1];if(l===i||la||c===i||cs)return!1;var u,f,h,p,d,m=r.length,g=r[0][0],v=r[0][1],y=0;for(u=1;uMath.max(f,g)||c>Math.max(h,v)))if(cu||Math.abs(n(o,h))>i)return!0;return!1},a.filter=function(t,e){var r=[t[0]],n=0,i=0;function o(o){t.push(o);var s=r.length,l=n;r.splice(i+1);for(var c=l+1;c1&&o(t.pop());return{addPt:o,raw:t,filtered:r}}},{"../constants/numerical":752,"./matrix":782}],789:[function(t,e,r){(function(r){(function(){"use strict";var n=t("./show_no_webgl_msg"),i=t("regl");e.exports=function(t,e){var a=t._fullLayout,o=!0;return a._glcanvas.each((function(n){if(!n.regl&&(!n.pick||a._has("parcoords"))){try{n.regl=i({canvas:this,attributes:{antialias:!n.pick,preserveDrawingBuffer:!0},pixelRatio:t._context.plotGlPixelRatio||r.devicePixelRatio,extensions:e||[]})}catch(t){o=!1}n.regl||(o=!1),o&&this.addEventListener("webglcontextlost",(function(e){t&&t.emit&&t.emit("plotly_webglcontextlost",{event:e,layer:n.key})}),!1)}})),o||n({container:a._glcontainer.node()}),o}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./show_no_webgl_msg":798,regl:516}],790:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("is-mobile");e.exports=function(t){var e;if("string"!=typeof(e=t&&t.hasOwnProperty("userAgent")?t.userAgent:function(){var t;"undefined"!=typeof navigator&&(t=navigator.userAgent);t&&t.headers&&"string"==typeof t.headers["user-agent"]&&(t=t.headers["user-agent"]);return t}()))return!0;var r=i({ua:{headers:{"user-agent":e}},tablet:!0,featureDetect:!1});if(!r)for(var a=e.split(" "),o=1;o-1;s--){var l=a[s];if("Version/"===l.substr(0,8)){var c=l.substr(8).split(".")[0];if(n(c)&&(c=+c),c>=13)return!0}}}return r}},{"fast-isnumeric":242,"is-mobile":435}],791:[function(t,e,r){"use strict";e.exports=function(t,e){if(e instanceof RegExp){for(var r=e.toString(),n=0;ni.queueLength&&(t.undoQueue.queue.shift(),t.undoQueue.index--))},startSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!0,t.undoQueue.beginSequence=!0},stopSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!1,t.undoQueue.beginSequence=!1},undo:function(t){var e,r;if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index<=0)){for(t.undoQueue.index--,e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r=t.undoQueue.queue.length)){for(e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;re}function u(t,e){return t>=e}r.findBin=function(t,e,r){if(n(e.start))return r?Math.ceil((t-e.start)/e.size-1e-9)-1:Math.floor((t-e.start)/e.size+1e-9);var a,o,f=0,h=e.length,p=0,d=h>1?(e[h-1]-e[0])/(h-1):1;for(o=d>=0?r?s:l:r?u:c,t+=1e-9*d*(r?-1:1)*(d>=0?1:-1);f90&&i.log("Long binary search..."),f-1},r.sorterAsc=function(t,e){return t-e},r.sorterDes=function(t,e){return e-t},r.distinctVals=function(t){var e,n=t.slice();for(n.sort(r.sorterAsc),e=n.length-1;e>-1&&n[e]===o;e--);for(var i,a=n[e]-n[0]||1,s=a/(e||1)/1e4,l=[],c=0;c<=e;c++){var u=n[c],f=u-i;void 0===i?(l.push(u),i=u):f>s&&(a=Math.min(a,f),l.push(u),i=u)}return{vals:l,minDiff:a}},r.roundUp=function(t,e,r){for(var n,i=0,a=e.length-1,o=0,s=r?0:1,l=r?1:0,c=r?Math.ceil:Math.floor;i0&&(n=1),r&&n)return t.sort(e)}return n?t:t.reverse()},r.findIndexOfMin=function(t,e){e=e||a;for(var r,n=1/0,i=0;ia.length)&&(o=a.length),n(e)||(e=!1),i(a[0])){for(l=new Array(o),s=0;st.length-1)return t[t.length-1];var r=e%1;return r*t[Math.ceil(e)]+(1-r)*t[Math.floor(e)]}},{"./array":758,"fast-isnumeric":242}],801:[function(t,e,r){"use strict";var n=t("color-normalize");e.exports=function(t){return t?n(t):[0,0,0,1]}},{"color-normalize":126}],802:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../lib"),a=i.strTranslate,o=t("../constants/xmlns_namespaces"),s=t("../constants/alignment").LINE_SPACING;function l(t,e){return t.node().getBoundingClientRect()[e]}var c=/([^$]*)([$]+[^$]*[$]+)([^$]*)/;r.convertToTspans=function(t,e,m){var M=t.text(),S=!t.attr("data-notex")&&"undefined"!=typeof MathJax&&M.match(c),C=n.select(t.node().parentNode);if(!C.empty()){var P=t.attr("class")?t.attr("class").split(" ")[0]:"text";return P+="-math",C.selectAll("svg."+P).remove(),C.selectAll("g."+P+"-group").remove(),t.style("display",null).attr({"data-unformatted":M,"data-math":"N"}),S?(e&&e._promises||[]).push(new Promise((function(e){t.style("display","none");var r=parseInt(t.node().style.fontSize,10),o={fontSize:r};!function(t,e,r){var a,o,s,l;MathJax.Hub.Queue((function(){return o=i.extendDeepAll({},MathJax.Hub.config),s=MathJax.Hub.processSectionDelay,void 0!==MathJax.Hub.processSectionDelay&&(MathJax.Hub.processSectionDelay=0),MathJax.Hub.Config({messageStyle:"none",tex2jax:{inlineMath:[["$","$"],["\\(","\\)"]]},displayAlign:"left"})}),(function(){if("SVG"!==(a=MathJax.Hub.config.menuSettings.renderer))return MathJax.Hub.setRenderer("SVG")}),(function(){var r="math-output-"+i.randstr({},64);return l=n.select("body").append("div").attr({id:r}).style({visibility:"hidden",position:"absolute"}).style({"font-size":e.fontSize+"px"}).text(t.replace(u,"\\lt ").replace(f,"\\gt ")),MathJax.Hub.Typeset(l.node())}),(function(){var e=n.select("body").select("#MathJax_SVG_glyphs");if(l.select(".MathJax_SVG").empty()||!l.select("svg").node())i.log("There was an error in the tex syntax.",t),r();else{var o=l.select("svg").node().getBoundingClientRect();r(l.select(".MathJax_SVG"),e,o)}if(l.remove(),"SVG"!==a)return MathJax.Hub.setRenderer(a)}),(function(){return void 0!==s&&(MathJax.Hub.processSectionDelay=s),MathJax.Hub.Config(o)}))}(S[2],o,(function(n,i,o){C.selectAll("svg."+P).remove(),C.selectAll("g."+P+"-group").remove();var s=n&&n.select("svg");if(!s||!s.node())return I(),void e();var c=C.append("g").classed(P+"-group",!0).attr({"pointer-events":"none","data-unformatted":M,"data-math":"Y"});c.node().appendChild(s.node()),i&&i.node()&&s.node().insertBefore(i.node().cloneNode(!0),s.node().firstChild),s.attr({class:P,height:o.height,preserveAspectRatio:"xMinYMin meet"}).style({overflow:"visible","pointer-events":"none"});var u=t.node().style.fill||"black",f=s.select("g");f.attr({fill:u,stroke:u});var h=l(f,"width"),p=l(f,"height"),d=+t.attr("x")-h*{start:0,middle:.5,end:1}[t.attr("text-anchor")||"start"],g=-(r||l(t,"height"))/4;"y"===P[0]?(c.attr({transform:"rotate("+[-90,+t.attr("x"),+t.attr("y")]+")"+a(-h/2,g-p/2)}),s.attr({x:+t.attr("x"),y:+t.attr("y")})):"l"===P[0]?s.attr({x:t.attr("x"),y:g-p/2}):"a"===P[0]&&0!==P.indexOf("atitle")?s.attr({x:0,y:g}):s.attr({x:d,y:+t.attr("y")+g-p/2}),m&&m.call(t,c),e(c)}))}))):I(),t}function I(){C.empty()||(P=t.attr("class")+"-math",C.select("svg."+P).remove()),t.text("").style("white-space","pre"),function(t,e){e=e.replace(g," ");var r,a=!1,l=[],c=-1;function u(){c++;var e=document.createElementNS(o.svg,"tspan");n.select(e).attr({class:"line",dy:c*s+"em"}),t.appendChild(e),r=e;var i=l;if(l=[{node:e}],i.length>1)for(var a=1;a doesnt match end tag <"+t+">. Pretending it did match.",e),r=l[l.length-1].node}else i.log("Ignoring unexpected end tag .",e)}x.test(e)?u():(r=t,l=[{node:t}]);for(var S=e.split(v),C=0;C|>|>)/g;var h={sup:"font-size:70%",sub:"font-size:70%",b:"font-weight:bold",i:"font-style:italic",a:"cursor:pointer",span:"",em:"font-style:italic;font-weight:bold"},p={sub:"0.3em",sup:"-0.6em"},d={sub:"-0.21em",sup:"0.42em"},m=["http:","https:","mailto:","",void 0,":"],g=r.NEWLINES=/(\r\n?|\n)/g,v=/(<[^<>]*>)/,y=/<(\/?)([^ >]*)(\s+(.*))?>/i,x=//i;r.BR_TAG_ALL=//gi;var b=/(^|[\s"'])style\s*=\s*("([^"]*);?"|'([^']*);?')/i,_=/(^|[\s"'])href\s*=\s*("([^"]*)"|'([^']*)')/i,w=/(^|[\s"'])target\s*=\s*("([^"\s]*)"|'([^'\s]*)')/i,T=/(^|[\s"'])popup\s*=\s*("([\w=,]*)"|'([\w=,]*)')/i;function k(t,e){if(!t)return null;var r=t.match(e),n=r&&(r[3]||r[4]);return n&&E(n)}var A=/(^|;)\s*color:/;r.plainText=function(t,e){for(var r=void 0!==(e=e||{}).len&&-1!==e.len?e.len:1/0,n=void 0!==e.allowedTags?e.allowedTags:["br"],i="...".length,a=t.split(v),o=[],s="",l=0,c=0;ci?o.push(u.substr(0,d-i)+"..."):o.push(u.substr(0,d));break}s=""}}return o.join("")};var M={mu:"\u03bc",amp:"&",lt:"<",gt:">",nbsp:"\xa0",times:"\xd7",plusmn:"\xb1",deg:"\xb0"},S=/&(#\d+|#x[\da-fA-F]+|[a-z]+);/g;function E(t){return t.replace(S,(function(t,e){return("#"===e.charAt(0)?function(t){if(t>1114111)return;var e=String.fromCodePoint;if(e)return e(t);var r=String.fromCharCode;return t<=65535?r(t):r(55232+(t>>10),t%1024+56320)}("x"===e.charAt(1)?parseInt(e.substr(2),16):parseInt(e.substr(1),10)):M[e])||t}))}function L(t){var e=encodeURI(decodeURI(t)),r=document.createElement("a"),n=document.createElement("a");r.href=t,n.href=e;var i=r.protocol,a=n.protocol;return-1!==m.indexOf(i)&&-1!==m.indexOf(a)?e:""}function C(t,e,r){var n,a,o,s=r.horizontalAlign,l=r.verticalAlign||"top",c=t.node().getBoundingClientRect(),u=e.node().getBoundingClientRect();return a="bottom"===l?function(){return c.bottom-n.height}:"middle"===l?function(){return c.top+(c.height-n.height)/2}:function(){return c.top},o="right"===s?function(){return c.right-n.width}:"center"===s?function(){return c.left+(c.width-n.width)/2}:function(){return c.left},function(){n=this.node().getBoundingClientRect();var t=o()-u.left,e=a()-u.top,s=r.gd||{};if(r.gd){s._fullLayout._calcInverseTransform(s);var l=i.apply3DTransform(s._fullLayout._invTransform)(t,e);t=l[0],e=l[1]}return this.style({top:e+"px",left:t+"px","z-index":1e3}),this}}r.convertEntities=E,r.sanitizeHTML=function(t){t=t.replace(g," ");for(var e=document.createElement("p"),r=e,i=[],a=t.split(v),o=0;oa.ts+e?l():a.timer=setTimeout((function(){l(),a.timer=null}),e)},r.done=function(t){var e=n[t];return e&&e.timer?new Promise((function(t){var r=e.onDone;e.onDone=function(){r&&r(),t(),e.onDone=null}})):Promise.resolve()},r.clear=function(t){if(t)i(n[t]),delete n[t];else for(var e in n)r.clear(e)}},{}],804:[function(t,e,r){"use strict";var n=t("fast-isnumeric");e.exports=function(t,e){if(t>0)return Math.log(t)/Math.LN10;var r=Math.log(Math.min(e[0],e[1]))/Math.LN10;return n(r)||(r=Math.log(Math.max(e[0],e[1]))/Math.LN10-6),r}},{"fast-isnumeric":242}],805:[function(t,e,r){"use strict";var n=e.exports={},i=t("../plots/geo/constants").locationmodeToLayer,a=t("topojson-client").feature;n.getTopojsonName=function(t){return[t.scope.replace(/ /g,"-"),"_",t.resolution.toString(),"m"].join("")},n.getTopojsonPath=function(t,e){return t+e+".json"},n.getTopojsonFeatures=function(t,e){var r=i[t.locationmode],n=e.objects[r];return a(e,n).features}},{"../plots/geo/constants":858,"topojson-client":575}],806:[function(t,e,r){"use strict";e.exports={moduleType:"locale",name:"en-US",dictionary:{"Click to enter Colorscale title":"Click to enter Colorscale title"},format:{date:"%m/%d/%Y"}}},{}],807:[function(t,e,r){"use strict";e.exports={moduleType:"locale",name:"en",dictionary:{"Click to enter Colorscale title":"Click to enter Colourscale title"},format:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],periods:["AM","PM"],dateTime:"%a %b %e %X %Y",date:"%d/%m/%Y",time:"%H:%M:%S",decimal:".",thousands:",",grouping:[3],currency:["$",""],year:"%Y",month:"%b %Y",dayMonth:"%b %-d",dayMonthYear:"%b %-d, %Y"}}},{}],808:[function(t,e,r){"use strict";var n=t("../registry");e.exports=function(t){for(var e,r,i=n.layoutArrayContainers,a=n.layoutArrayRegexes,o=t.split("[")[0],s=0;s0&&o.log("Clearing previous rejected promises from queue."),t._promises=[]},r.cleanLayout=function(t){var e,n;t||(t={}),t.xaxis1&&(t.xaxis||(t.xaxis=t.xaxis1),delete t.xaxis1),t.yaxis1&&(t.yaxis||(t.yaxis=t.yaxis1),delete t.yaxis1),t.scene1&&(t.scene||(t.scene=t.scene1),delete t.scene1);var a=(s.subplotsRegistry.cartesian||{}).attrRegex,l=(s.subplotsRegistry.polar||{}).attrRegex,f=(s.subplotsRegistry.ternary||{}).attrRegex,h=(s.subplotsRegistry.gl3d||{}).attrRegex,m=Object.keys(t);for(e=0;e3?(O.x=1.02,O.xanchor="left"):O.x<-2&&(O.x=-.02,O.xanchor="right"),O.y>3?(O.y=1.02,O.yanchor="bottom"):O.y<-2&&(O.y=-.02,O.yanchor="top")),d(t),"rotate"===t.dragmode&&(t.dragmode="orbit"),c.clean(t),t.template&&t.template.layout&&r.cleanLayout(t.template.layout),t},r.cleanData=function(t){for(var e=0;e0)return t.substr(0,e)}r.hasParent=function(t,e){for(var r=b(e);r;){if(r in t)return!0;r=b(r)}return!1};var _=["x","y","z"];r.clearAxisTypes=function(t,e,r){for(var n=0;n1&&a.warn("Full array edits are incompatible with other edits",f);var y=r[""][""];if(c(y))e.set(null);else{if(!Array.isArray(y))return a.warn("Unrecognized full array edit value",f,y),!0;e.set(y)}return!m&&(h(g,v),p(t),!0)}var x,b,_,w,T,k,A,M,S=Object.keys(r).map(Number).sort(o),E=e.get(),L=E||[],C=u(v,f).get(),P=[],I=-1,O=L.length;for(x=0;xL.length-(A?0:1))a.warn("index out of range",f,_);else if(void 0!==k)T.length>1&&a.warn("Insertion & removal are incompatible with edits to the same index.",f,_),c(k)?P.push(_):A?("add"===k&&(k={}),L.splice(_,0,k),C&&C.splice(_,0,{})):a.warn("Unrecognized full object edit value",f,_,k),-1===I&&(I=_);else for(b=0;b=0;x--)L.splice(P[x],1),C&&C.splice(P[x],1);if(L.length?E||e.set(L):e.set(null),m)return!1;if(h(g,v),d!==i){var z;if(-1===I)z=S;else{for(O=Math.max(L.length,O),z=[],x=0;x=I);x++)z.push(_);for(x=I;x=t.data.length||i<-t.data.length)throw new Error(r+" must be valid indices for gd.data.");if(e.indexOf(i,n+1)>-1||i>=0&&e.indexOf(-t.data.length+i)>-1||i<0&&e.indexOf(t.data.length+i)>-1)throw new Error("each index in "+r+" must be unique.")}}function I(t,e,r){if(!Array.isArray(t.data))throw new Error("gd.data must be an array.");if(void 0===e)throw new Error("currentIndices is a required argument.");if(Array.isArray(e)||(e=[e]),P(t,e,"currentIndices"),void 0===r||Array.isArray(r)||(r=[r]),void 0!==r&&P(t,r,"newIndices"),void 0!==r&&e.length!==r.length)throw new Error("current and new indices must be of equal length.")}function O(t,e,r,n,a){!function(t,e,r,n){var i=o.isPlainObject(n);if(!Array.isArray(t.data))throw new Error("gd.data must be an array");if(!o.isPlainObject(e))throw new Error("update must be a key:value object");if(void 0===r)throw new Error("indices must be an integer or array of integers");for(var a in P(t,r,"indices"),e){if(!Array.isArray(e[a])||e[a].length!==r.length)throw new Error("attribute "+a+" must be an array of length equal to indices array length");if(i&&(!(a in n)||!Array.isArray(n[a])||n[a].length!==e[a].length))throw new Error("when maxPoints is set as a key:value object it must contain a 1:1 corrispondence with the keys and number of traces in the update object")}}(t,e,r,n);for(var l=function(t,e,r,n){var a,l,c,u,f,h=o.isPlainObject(n),p=[];for(var d in Array.isArray(r)||(r=[r]),r=C(r,t.data.length-1),e)for(var m=0;m-1?l(r,r.replace("titlefont","title.font")):r.indexOf("titleposition")>-1?l(r,r.replace("titleposition","title.position")):r.indexOf("titleside")>-1?l(r,r.replace("titleside","title.side")):r.indexOf("titleoffset")>-1&&l(r,r.replace("titleoffset","title.offset")):l(r,r.replace("title","title.text"));function l(e,r){t[r]=t[e],delete t[e]}}function U(t,e,r){t=o.getGraphDiv(t),_.clearPromiseQueue(t);var n={};if("string"==typeof e)n[e]=r;else{if(!o.isPlainObject(e))return o.warn("Relayout fail.",e,r),Promise.reject();n=o.extendFlat({},e)}Object.keys(n).length&&(t.changed=!0);var i=W(t,n),a=i.flags;a.calc&&(t.calcdata=void 0);var s=[h.previousPromises];a.layoutReplot?s.push(w.layoutReplot):Object.keys(n).length&&(V(t,a,i)||h.supplyDefaults(t),a.legend&&s.push(w.doLegend),a.layoutstyle&&s.push(w.layoutStyles),a.axrange&&H(s,i.rangesAltered),a.ticks&&s.push(w.doTicksRelayout),a.modebar&&s.push(w.doModeBar),a.camera&&s.push(w.doCamera),a.colorbars&&s.push(w.doColorBars),s.push(M)),s.push(h.rehover,h.redrag),c.add(t,U,[t,i.undoit],U,[t,i.redoit]);var l=o.syncOrAsync(s,t);return l&&l.then||(l=Promise.resolve(t)),l.then((function(){return t.emit("plotly_relayout",i.eventData),t}))}function V(t,e,r){var n=t._fullLayout;if(!e.axrange)return!1;for(var i in e)if("axrange"!==i&&e[i])return!1;for(var a in r.rangesAltered){var o=p.id2name(a),s=t.layout[o],l=n[o];if(l.autorange=s.autorange,s.range&&(l.range=s.range.slice()),l.cleanRange(),l._matchGroup)for(var c in l._matchGroup)if(c!==a){var u=n[p.id2name(c)];u.autorange=l.autorange,u.range=l.range.slice(),u._input.range=l.range.slice()}}return!0}function H(t,e){var r=e?function(t){var r=[],n=!0;for(var i in e){var a=p.getFromId(t,i);if(r.push(i),-1!==(a.ticklabelposition||"").indexOf("inside")&&a._anchorAxis&&r.push(a._anchorAxis._id),a._matchGroup)for(var o in a._matchGroup)e[o]||r.push(o);a.automargin&&(n=!1)}return p.draw(t,r,{skipTitle:n})}:function(t){return p.draw(t,"redraw")};t.push(y,w.doAutoRangeAndConstraints,r,w.drawData,w.finalDraw)}var q=/^[xyz]axis[0-9]*\.range(\[[0|1]\])?$/,G=/^[xyz]axis[0-9]*\.autorange$/,Y=/^[xyz]axis[0-9]*\.domain(\[[0|1]\])?$/;function W(t,e){var r,n,i,a=t.layout,l=t._fullLayout,c=l._guiEditing,h=F(l._preGUI,c),d=Object.keys(e),m=p.list(t),g=o.extendDeepAll({},e),v={};for(j(e),d=Object.keys(e),n=0;n0&&"string"!=typeof O.parts[D];)D--;var B=O.parts[D],N=O.parts[D-1]+"."+B,U=O.parts.slice(0,D).join("."),V=s(t.layout,U).get(),H=s(l,U).get(),W=O.get();if(void 0!==z){M[I]=z,S[I]="reverse"===B?z:R(W);var Z=f.getLayoutValObject(l,O.parts);if(Z&&Z.impliedEdits&&null!==z)for(var J in Z.impliedEdits)E(o.relativeAttr(I,J),Z.impliedEdits[J]);if(-1!==["width","height"].indexOf(I))if(z){E("autosize",null);var K="height"===I?"width":"height";E(K,l[K])}else l[I]=t._initialAutoSize[I];else if("autosize"===I)E("width",z?null:l.width),E("height",z?null:l.height);else if(N.match(q))P(N),s(l,U+"._inputRange").set(null);else if(N.match(G)){P(N),s(l,U+"._inputRange").set(null);var Q=s(l,U).get();Q._inputDomain&&(Q._input.domain=Q._inputDomain.slice())}else N.match(Y)&&s(l,U+"._inputDomain").set(null);if("type"===B){L=V;var $="linear"===H.type&&"log"===z,tt="log"===H.type&&"linear"===z;if($||tt){if(L&&L.range)if(H.autorange)$&&(L.range=L.range[1]>L.range[0]?[1,2]:[2,1]);else{var et=L.range[0],rt=L.range[1];$?(et<=0&&rt<=0&&E(U+".autorange",!0),et<=0?et=rt/1e6:rt<=0&&(rt=et/1e6),E(U+".range[0]",Math.log(et)/Math.LN10),E(U+".range[1]",Math.log(rt)/Math.LN10)):(E(U+".range[0]",Math.pow(10,et)),E(U+".range[1]",Math.pow(10,rt)))}else E(U+".autorange",!0);Array.isArray(l._subplots.polar)&&l._subplots.polar.length&&l[O.parts[0]]&&"radialaxis"===O.parts[1]&&delete l[O.parts[0]]._subplot.viewInitial["radialaxis.range"],u.getComponentMethod("annotations","convertCoords")(t,H,z,E),u.getComponentMethod("images","convertCoords")(t,H,z,E)}else E(U+".autorange",!0),E(U+".range",null);s(l,U+"._inputRange").set(null)}else if(B.match(k)){var nt=s(l,I).get(),it=(z||{}).type;it&&"-"!==it||(it="linear"),u.getComponentMethod("annotations","convertCoords")(t,nt,it,E),u.getComponentMethod("images","convertCoords")(t,nt,it,E)}var at=b.containerArrayMatch(I);if(at){r=at.array,n=at.index;var ot=at.property,st=Z||{editType:"calc"};""!==n&&""===ot&&(b.isAddVal(z)?S[I]=null:b.isRemoveVal(z)?S[I]=(s(a,r).get()||[])[n]:o.warn("unrecognized full object value",e)),T.update(A,st),v[r]||(v[r]={});var lt=v[r][n];lt||(lt=v[r][n]={}),lt[ot]=z,delete e[I]}else"reverse"===B?(V.range?V.range.reverse():(E(U+".autorange",!0),V.range=[1,0]),H.autorange?A.calc=!0:A.plot=!0):(l._has("scatter-like")&&l._has("regl")&&"dragmode"===I&&("lasso"===z||"select"===z)&&"lasso"!==W&&"select"!==W||l._has("gl2d")?A.plot=!0:Z?T.update(A,Z):A.calc=!0,O.set(z))}}for(r in v){b.applyContainerArrayChanges(t,h(a,r),v[r],A,h)||(A.plot=!0)}for(var ct in C){var ut=(L=p.getFromId(t,ct))&&L._constraintGroup;if(ut)for(var ft in A.calc=!0,ut)C[ft]||(p.getFromId(t,ft)._constraintShrinkable=!0)}return(X(t)||e.height||e.width)&&(A.plot=!0),(A.plot||A.calc)&&(A.layoutReplot=!0),{flags:A,rangesAltered:C,undoit:S,redoit:M,eventData:g}}function X(t){var e=t._fullLayout,r=e.width,n=e.height;return t.layout.autosize&&h.plotAutoSize(t,t.layout,e),e.width!==r||e.height!==n}function Z(t,e,n,i){t=o.getGraphDiv(t),_.clearPromiseQueue(t),o.isPlainObject(e)||(e={}),o.isPlainObject(n)||(n={}),Object.keys(e).length&&(t.changed=!0),Object.keys(n).length&&(t.changed=!0);var a=_.coerceTraceIndices(t,i),s=N(t,o.extendFlat({},e),a),l=s.flags,u=W(t,o.extendFlat({},n)),f=u.flags;(l.calc||f.calc)&&(t.calcdata=void 0),l.clearAxisTypes&&_.clearAxisTypes(t,a,n);var p=[];f.layoutReplot?p.push(w.layoutReplot):l.fullReplot?p.push(r._doPlot):(p.push(h.previousPromises),V(t,f,u)||h.supplyDefaults(t),l.style&&p.push(w.doTraceStyle),(l.colorbars||f.colorbars)&&p.push(w.doColorBars),f.legend&&p.push(w.doLegend),f.layoutstyle&&p.push(w.layoutStyles),f.axrange&&H(p,u.rangesAltered),f.ticks&&p.push(w.doTicksRelayout),f.modebar&&p.push(w.doModeBar),f.camera&&p.push(w.doCamera),p.push(M)),p.push(h.rehover,h.redrag),c.add(t,Z,[t,s.undoit,u.undoit,s.traces],Z,[t,s.redoit,u.redoit,s.traces]);var d=o.syncOrAsync(p,t);return d&&d.then||(d=Promise.resolve(t)),d.then((function(){return t.emit("plotly_update",{data:s.eventData,layout:u.eventData}),t}))}function J(t){return function(e){e._fullLayout._guiEditing=!0;var r=t.apply(null,arguments);return e._fullLayout._guiEditing=!1,r}}var K=[{pattern:/^hiddenlabels/,attr:"legend.uirevision"},{pattern:/^((x|y)axis\d*)\.((auto)?range|title\.text)/},{pattern:/axis\d*\.showspikes$/,attr:"modebar.uirevision"},{pattern:/(hover|drag)mode$/,attr:"modebar.uirevision"},{pattern:/^(scene\d*)\.camera/},{pattern:/^(geo\d*)\.(projection|center|fitbounds)/},{pattern:/^(ternary\d*\.[abc]axis)\.(min|title\.text)$/},{pattern:/^(polar\d*\.radialaxis)\.((auto)?range|angle|title\.text)/},{pattern:/^(polar\d*\.angularaxis)\.rotation/},{pattern:/^(mapbox\d*)\.(center|zoom|bearing|pitch)/},{pattern:/^legend\.(x|y)$/,attr:"editrevision"},{pattern:/^(shapes|annotations)/,attr:"editrevision"},{pattern:/^title\.text$/,attr:"editrevision"}],Q=[{pattern:/^selectedpoints$/,attr:"selectionrevision"},{pattern:/(^|value\.)visible$/,attr:"legend.uirevision"},{pattern:/^dimensions\[\d+\]\.constraintrange/},{pattern:/^node\.(x|y|groups)/},{pattern:/^level$/},{pattern:/(^|value\.)name$/},{pattern:/colorbar\.title\.text$/},{pattern:/colorbar\.(x|y)$/,attr:"editrevision"}];function $(t,e){for(var r=0;r1;)if(n.pop(),void 0!==(r=s(e,n.join(".")+".uirevision").get()))return r;return e.uirevision}function et(t,e){for(var r=0;r=i.length?i[0]:i[t]:i}function l(t){return Array.isArray(a)?t>=a.length?a[0]:a[t]:a}function c(t,e){var r=0;return function(){if(t&&++r===e)return t()}}return void 0===n._frameWaitingCnt&&(n._frameWaitingCnt=0),new Promise((function(a,u){function f(){n._currentFrame&&n._currentFrame.onComplete&&n._currentFrame.onComplete();var e=n._currentFrame=n._frameQueue.shift();if(e){var r=e.name?e.name.toString():null;t._fullLayout._currentFrame=r,n._lastFrameAt=Date.now(),n._timeToNext=e.frameOpts.duration,h.transition(t,e.frame.data,e.frame.layout,_.coerceTraceIndices(t,e.frame.traces),e.frameOpts,e.transitionOpts).then((function(){e.onComplete&&e.onComplete()})),t.emit("plotly_animatingframe",{name:r,frame:e.frame,animation:{frame:e.frameOpts,transition:e.transitionOpts}})}else t.emit("plotly_animated"),window.cancelAnimationFrame(n._animationRaf),n._animationRaf=null}function p(){t.emit("plotly_animating"),n._lastFrameAt=-1/0,n._timeToNext=0,n._runningTransitions=0,n._currentFrame=null;var e=function(){n._animationRaf=window.requestAnimationFrame(e),Date.now()-n._lastFrameAt>n._timeToNext&&f()};e()}var d,m,g=0;function v(t){return Array.isArray(i)?g>=i.length?t.transitionOpts=i[g]:t.transitionOpts=i[0]:t.transitionOpts=i,g++,t}var y=[],x=null==e,b=Array.isArray(e);if(!x&&!b&&o.isPlainObject(e))y.push({type:"object",data:v(o.extendFlat({},e))});else if(x||-1!==["string","number"].indexOf(typeof e))for(d=0;d0&&kk)&&A.push(m);y=A}}y.length>0?function(e){if(0!==e.length){for(var i=0;i=0;n--)if(o.isPlainObject(e[n])){var m=e[n].name,g=(u[m]||d[m]||{}).name,v=e[n].name,y=u[g]||d[g];g&&v&&"number"==typeof v&&y&&A<5&&(A++,o.warn('addFrames: overwriting frame "'+(u[g]||d[g]).name+'" with a frame whose name of type "number" also equates to "'+g+'". This is valid but may potentially lead to unexpected behavior since all plotly.js frame names are stored internally as strings.'),5===A&&o.warn("addFrames: This API call has yielded too many of these warnings. For the rest of this call, further warnings about numeric frame names will be suppressed.")),d[m]={name:m},p.push({frame:h.supplyFrameDefaults(e[n]),index:r&&void 0!==r[n]&&null!==r[n]?r[n]:f+n})}p.sort((function(t,e){return t.index>e.index?-1:t.index=0;n--){if("number"==typeof(i=p[n].frame).name&&o.warn("Warning: addFrames accepts frames with numeric names, but the numbers areimplicitly cast to strings"),!i.name)for(;u[i.name="frame "+t._transitionData._counter++];);if(u[i.name]){for(a=0;a=0;r--)n=e[r],a.push({type:"delete",index:n}),s.unshift({type:"insert",index:n,value:i[n]});var l=h.modifyFrames,u=h.modifyFrames,f=[t,s],p=[t,a];return c&&c.add(t,l,f,u,p),h.modifyFrames(t,a)},r.addTraces=function t(e,n,i){e=o.getGraphDiv(e);var a,s,l=[],u=r.deleteTraces,f=t,h=[e,l],p=[e,n];for(function(t,e,r){var n,i;if(!Array.isArray(t.data))throw new Error("gd.data must be an array.");if(void 0===e)throw new Error("traces must be defined.");for(Array.isArray(e)||(e=[e]),n=0;n=0&&r=0&&r=a.length)return!1;if(2===t.dimensions){if(r++,e.length===r)return t;var o=e[r];if(!y(o))return!1;t=a[i][o]}else t=a[i]}else t=a}}return t}function y(t){return t===Math.round(t)&&t>=0}function x(){var t,e,r={};for(t in f(r,o),n.subplotsRegistry){if((e=n.subplotsRegistry[t]).layoutAttributes)if(Array.isArray(e.attr))for(var i=0;i=l.length)return!1;i=(r=(n.transformsRegistry[l[c].type]||{}).attributes)&&r[e[2]],s=3}else{var u=t._module;if(u||(u=(n.modules[t.type||a.type.dflt]||{})._module),!u)return!1;if(!(i=(r=u.attributes)&&r[o])){var f=u.basePlotModule;f&&f.attributes&&(i=f.attributes[o])}i||(i=a[o])}return v(i,e,s)},r.getLayoutValObject=function(t,e){return v(function(t,e){var r,i,a,s,l=t._basePlotModules;if(l){var c;for(r=0;r=i&&(r._input||{})._templateitemname;o&&(a=i);var s,l=e+"["+a+"]";function c(){s={},o&&(s[l]={},s[l].templateitemname=o)}function u(t,e){o?n.nestedProperty(s[l],t).set(e):s[l+"."+t]=e}function f(){var t=s;return c(),t}return c(),{modifyBase:function(t,e){s[t]=e},modifyItem:u,getUpdateObj:f,applyUpdate:function(e,r){e&&u(e,r);var i=f();for(var a in i)n.nestedProperty(t,a).set(i[a])}}}},{"../lib":776,"../plots/attributes":823}],817:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../registry"),a=t("../plots/plots"),o=t("../lib"),s=t("../lib/clear_gl_canvases"),l=t("../components/color"),c=t("../components/drawing"),u=t("../components/titles"),f=t("../components/modebar"),h=t("../plots/cartesian/axes"),p=t("../constants/alignment"),d=t("../plots/cartesian/constraints"),m=d.enforce,g=d.clean,v=t("../plots/cartesian/autorange").doAutoRange;function y(t,e,r){for(var n=0;n=t[1]||i[1]<=t[0])&&(a[0]e[0]))return!0}return!1}function x(t){var e,i,s,u,d,m,g=t._fullLayout,v=g._size,x=v.p,_=h.list(t,"",!0);if(g._paperdiv.style({width:t._context.responsive&&g.autosize&&!t._context._hasZeroWidth&&!t.layout.width?"100%":g.width+"px",height:t._context.responsive&&g.autosize&&!t._context._hasZeroHeight&&!t.layout.height?"100%":g.height+"px"}).selectAll(".main-svg").call(c.setSize,g.width,g.height),t._context.setBackground(t,g.paper_bgcolor),r.drawMainTitle(t),f.manage(t),!g._has("cartesian"))return a.previousPromises(t);function T(t,e,r){var n=t._lw/2;return"x"===t._id.charAt(0)?e?"top"===r?e._offset-x-n:e._offset+e._length+x+n:v.t+v.h*(1-(t.position||0))+n%1:e?"right"===r?e._offset+e._length+x+n:e._offset-x-n:v.l+v.w*(t.position||0)+n%1}for(e=0;e<_.length;e++){var k=(u=_[e])._anchorAxis;u._linepositions={},u._lw=c.crispRound(t,u.linewidth,1),u._mainLinePosition=T(u,k,u.side),u._mainMirrorPosition=u.mirror&&k?T(u,k,p.OPPOSITE_SIDE[u.side]):null}var A=[],M=[],S=[],E=1===l.opacity(g.paper_bgcolor)&&1===l.opacity(g.plot_bgcolor)&&g.paper_bgcolor===g.plot_bgcolor;for(i in g._plots)if((s=g._plots[i]).mainplot)s.bg&&s.bg.remove(),s.bg=void 0;else{var L=s.xaxis.domain,C=s.yaxis.domain,P=s.plotgroup;if(y(L,C,S)){var I=P.node(),O=s.bg=o.ensureSingle(P,"rect","bg");I.insertBefore(O.node(),I.childNodes[0]),M.push(i)}else P.select("rect.bg").remove(),S.push([L,C]),E||(A.push(i),M.push(i))}var z,D,R,F,B,N,j,U,V,H,q,G,Y,W=g._bgLayer.selectAll(".bg").data(A);for(W.enter().append("rect").classed("bg",!0),W.exit().remove(),W.each((function(t){g._plots[t].bg=n.select(this)})),e=0;eT?u.push({code:"unused",traceType:y,templateCount:w,dataCount:T}):T>w&&u.push({code:"reused",traceType:y,templateCount:w,dataCount:T})}}else u.push({code:"data"});if(function t(e,r){for(var n in e)if("_"!==n.charAt(0)){var a=e[n],o=m(e,n,r);i(a)?(Array.isArray(e)&&!1===a._template&&a.templateitemname&&u.push({code:"missing",path:o,templateitemname:a.templateitemname}),t(a,o)):Array.isArray(a)&&g(a)&&t(a,o)}}({data:p,layout:h},""),u.length)return u.map(v)}},{"../lib":776,"../plots/attributes":823,"../plots/plots":890,"./plot_config":814,"./plot_schema":815,"./plot_template":816}],819:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("./plot_api"),a=t("../plots/plots"),o=t("../lib"),s=t("../snapshot/helpers"),l=t("../snapshot/tosvg"),c=t("../snapshot/svgtoimg"),u=t("../version").version,f={format:{valType:"enumerated",values:["png","jpeg","webp","svg","full-json"],dflt:"png"},width:{valType:"number",min:1},height:{valType:"number",min:1},scale:{valType:"number",min:0,dflt:1},setBackground:{valType:"any",dflt:!1},imageDataOnly:{valType:"boolean",dflt:!1}};e.exports=function(t,e){var r,h,p,d;function m(t){return!(t in e)||o.validate(e[t],f[t])}if(e=e||{},o.isPlainObject(t)?(r=t.data||[],h=t.layout||{},p=t.config||{},d={}):(t=o.getGraphDiv(t),r=o.extendDeep([],t.data),h=o.extendDeep({},t.layout),p=t._context,d=t._fullLayout||{}),!m("width")&&null!==e.width||!m("height")&&null!==e.height)throw new Error("Height and width should be pixel values.");if(!m("format"))throw new Error("Export format is not "+o.join2(f.format.values,", "," or ")+".");var g={};function v(t,r){return o.coerce(e,g,f,t,r)}var y=v("format"),x=v("width"),b=v("height"),_=v("scale"),w=v("setBackground"),T=v("imageDataOnly"),k=document.createElement("div");k.style.position="absolute",k.style.left="-5000px",document.body.appendChild(k);var A=o.extendFlat({},h);x?A.width=x:null===e.width&&n(d.width)&&(A.width=d.width),b?A.height=b:null===e.height&&n(d.height)&&(A.height=d.height);var M=o.extendFlat({},p,{_exportedPlot:!0,staticPlot:!0,setBackground:w}),S=s.getRedrawFunc(k);function E(){return new Promise((function(t){setTimeout(t,s.getDelay(k._fullLayout))}))}function L(){return new Promise((function(t,e){var r=l(k,y,_),n=k._fullLayout.width,f=k._fullLayout.height;function h(){i.purge(k),document.body.removeChild(k)}if("full-json"===y){var p=a.graphJson(k,!1,"keepdata","object",!0,!0);return p.version=u,p=JSON.stringify(p),h(),t(T?p:s.encodeJSON(p))}if(h(),"svg"===y)return t(T?r:s.encodeSVG(r));var d=document.createElement("canvas");d.id=o.randstr(),c({format:y,width:n,height:f,scale:_,canvas:d,svg:r,promise:!0}).then(t).catch(e)}))}return new Promise((function(t,e){i.newPlot(k,r,A,M).then(S).then(E).then(L).then((function(e){t(function(t){return T?t.replace(s.IMAGE_URL_PREFIX,""):t}(e))})).catch((function(t){e(t)}))}))}},{"../lib":776,"../plots/plots":890,"../snapshot/helpers":908,"../snapshot/svgtoimg":910,"../snapshot/tosvg":912,"../version":1377,"./plot_api":813,"fast-isnumeric":242}],820:[function(t,e,r){"use strict";var n=t("../lib"),i=t("../plots/plots"),a=t("./plot_schema"),o=t("./plot_config").dfltConfig,s=n.isPlainObject,l=Array.isArray,c=n.isArrayOrTypedArray;function u(t,e,r,i,a,o){o=o||[];for(var f=Object.keys(t),h=0;hx.length&&i.push(d("unused",a,v.concat(x.length)));var A,M,S,E,L,C=x.length,P=Array.isArray(k);if(P&&(C=Math.min(C,k.length)),2===b.dimensions)for(M=0;Mx[M].length&&i.push(d("unused",a,v.concat(M,x[M].length)));var I=x[M].length;for(A=0;A<(P?Math.min(I,k[M].length):I);A++)S=P?k[M][A]:k,E=y[M][A],L=x[M][A],n.validate(E,S)?L!==E&&L!==+E&&i.push(d("dynamic",a,v.concat(M,A),E,L)):i.push(d("value",a,v.concat(M,A),E))}else i.push(d("array",a,v.concat(M),y[M]));else for(M=0;M1&&p.push(d("object","layout"))),i.supplyDefaults(m);for(var g=m._fullData,v=r.length,y=0;y0&&Math.round(f)===f))return{vals:i};c=f}for(var h=e.calendar,p="start"===l,d="end"===l,m=t[r+"period0"],g=a(m,h)||0,v=[],y=[],x=[],b=i.length,_=0;_A;)k=o(k,-c,h);for(;k<=A;)k=o(k,c,h);T=o(k,-c,h)}else{for(k=g+(w=Math.round((A-g)/u))*u;k>A;)k-=u;for(;k<=A;)k+=u;T=k-u}v[_]=p?T:d?k:(T+k)/2,y[_]=T,x[_]=k}return{vals:v,starts:y,ends:x}}},{"../../constants/numerical":752,"../../lib":776,"fast-isnumeric":242}],825:[function(t,e,r){"use strict";e.exports={xaxis:{valType:"subplotid",dflt:"x",editType:"calc+clearAxisTypes"},yaxis:{valType:"subplotid",dflt:"y",editType:"calc+clearAxisTypes"}}},{}],826:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("fast-isnumeric"),a=t("../../lib"),o=t("../../constants/numerical").FP_SAFE,s=t("../../registry"),l=t("../../components/drawing"),c=t("./axis_ids"),u=c.getFromId,f=c.isLinked;function h(t,e){var r,n,i=[],o=t._fullLayout,s=d(o,e,0),l=d(o,e,1),c=m(t,e),u=c.min,f=c.max;if(0===u.length||0===f.length)return a.simpleMap(e.range,e.r2l);var h=u[0].val,g=f[0].val;for(r=1;r0&&((T=E-s(x)-l(b))>L?k/T>C&&(_=x,w=b,C=k/T):k/E>C&&(_={val:x.val,nopad:1},w={val:b.val,nopad:1},C=k/E));if(h===g){var P=h-1,I=h+1;if(M)if(0===h)i=[0,1];else{var O=(h>0?f:u).reduce((function(t,e){return Math.max(t,l(e))}),0),z=h/(1-Math.min(.5,O/E));i=h>0?[0,z]:[z,0]}else i=S?[Math.max(0,P),Math.max(1,I)]:[P,I]}else M?(_.val>=0&&(_={val:0,nopad:1}),w.val<=0&&(w={val:0,nopad:1})):S&&(_.val-C*s(_)<0&&(_={val:0,nopad:1}),w.val<=0&&(w={val:1,nopad:1})),C=(w.val-_.val-p(e,x.val,b.val))/(E-s(_)-l(w)),i=[_.val-C*s(_),w.val+C*l(w)];return v&&i.reverse(),a.simpleMap(i,e.l2r||Number)}function p(t,e,r){var n=0;if(t.rangebreaks)for(var i=t.locateBreaks(e,r),a=0;a0?r.ppadplus:r.ppadminus)||r.ppad||0),S=A((t._m>0?r.ppadminus:r.ppadplus)||r.ppad||0),E=A(r.vpadplus||r.vpad),L=A(r.vpadminus||r.vpad);if(!T){if(h=1/0,p=-1/0,w)for(n=0;n0&&(h=a),a>p&&a-o&&(h=a),a>p&&a=I;n--)P(n);return{min:d,max:m,opts:r}},concatExtremes:m};function m(t,e,r){var n,i,a,o=e._id,s=t._fullData,l=t._fullLayout,c=[],f=[];function h(t,e){for(n=0;n=r&&(c.extrapad||!o)){s=!1;break}i(e,c.val)&&c.pad<=r&&(o||!c.extrapad)&&(t.splice(l,1),l--)}if(s){var u=a&&0===e;t.push({val:e,pad:u?0:r,extrapad:!u&&o})}}function x(t){return i(t)&&Math.abs(t)=e}},{"../../components/drawing":661,"../../constants/numerical":752,"../../lib":776,"../../registry":904,"./axis_ids":831,"@plotly/d3":58,"fast-isnumeric":242}],827:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("fast-isnumeric"),a=t("../../plots/plots"),o=t("../../registry"),s=t("../../lib"),l=s.strTranslate,c=t("../../lib/svg_text_utils"),u=t("../../components/titles"),f=t("../../components/color"),h=t("../../components/drawing"),p=t("./layout_attributes"),d=t("./clean_ticks"),m=t("../../constants/numerical"),g=m.ONEMAXYEAR,v=m.ONEAVGYEAR,y=m.ONEMINYEAR,x=m.ONEMAXQUARTER,b=m.ONEAVGQUARTER,_=m.ONEMINQUARTER,w=m.ONEMAXMONTH,T=m.ONEAVGMONTH,k=m.ONEMINMONTH,A=m.ONEWEEK,M=m.ONEDAY,S=M/2,E=m.ONEHOUR,L=m.ONEMIN,C=m.ONESEC,P=m.MINUS_SIGN,I=m.BADNUM,O={K:"zeroline"},z={K:"gridline",L:"path"},D={K:"tick",L:"path"},R={K:"tick",L:"text"},F=t("../../constants/alignment"),B=F.MID_SHIFT,N=F.CAP_SHIFT,j=F.LINE_SPACING,U=F.OPPOSITE_SIDE,V=e.exports={};V.setConvert=t("./set_convert");var H=t("./axis_autotype"),q=t("./axis_ids"),G=q.idSort,Y=q.isLinked;V.id2name=q.id2name,V.name2id=q.name2id,V.cleanId=q.cleanId,V.list=q.list,V.listIds=q.listIds,V.getFromId=q.getFromId,V.getFromTrace=q.getFromTrace;var W=t("./autorange");V.getAutoRange=W.getAutoRange,V.findExtremes=W.findExtremes;function X(t){var e=1e-4*(t[1]-t[0]);return[t[0]-e,t[1]+e]}V.coerceRef=function(t,e,r,n,i,a){var o=n.charAt(n.length-1),l=r._fullLayout._subplots[o+"axis"],c=n+"ref",u={};return i||(i=l[0]||("string"==typeof a?a:a[0])),a||(a=i),l=l.concat(l.map((function(t){return t+" domain"}))),u[c]={valType:"enumerated",values:l.concat(a?"string"==typeof a?[a]:a:[]),dflt:i},s.coerce(t,e,u,c)},V.getRefType=function(t){return void 0===t?t:"paper"===t?"paper":"pixel"===t?"pixel":/( domain)$/.test(t)?"domain":"range"},V.coercePosition=function(t,e,r,n,i,a){var o,l;if("range"!==V.getRefType(n))o=s.ensureNumber,l=r(i,a);else{var c=V.getFromId(e,n);l=r(i,a=c.fraction2r(a)),o=c.cleanPos}t[i]=o(l)},V.cleanPosition=function(t,e,r){return("paper"===r||"pixel"===r?s.ensureNumber:V.getFromId(e,r).cleanPos)(t)},V.redrawComponents=function(t,e){e=e||V.listIds(t);var r=t._fullLayout;function n(n,i,a,s){for(var l=o.getComponentMethod(n,i),c={},u=0;u2e-6||((r-t._forceTick0)/t._minDtick%1+1.000001)%1>2e-6)&&(t._minDtick=0)):t._minDtick=0},V.saveRangeInitial=function(t,e){for(var r=V.list(t,"",!0),n=!1,i=0;i.3*h||u(n)||u(a))){var p=r.dtick/2;t+=t+p.8){var o=Number(r.substr(1));a.exactYears>.8&&o%12==0?t=V.tickIncrement(t,"M6","reverse")+1.5*M:a.exactMonths>.8?t=V.tickIncrement(t,"M1","reverse")+15.5*M:t-=S;var l=V.tickIncrement(t,r);if(l<=n)return l}return t}(y,t,v,c,a)),g=y,0;g<=u;)g=V.tickIncrement(g,v,!1,a);return{start:e.c2r(y,0,a),end:e.c2r(g,0,a),size:v,_dataSpan:u-c}},V.prepTicks=function(t,e){var r=s.simpleMap(t.range,t.r2l,void 0,void 0,e);if(t._dtickInit=t.dtick,t._tick0Init=t.tick0,"auto"===t.tickmode||!t.dtick){var n,a=t.nticks;a||("category"===t.type||"multicategory"===t.type?(n=t.tickfont?s.bigFont(t.tickfont.size||12):15,a=t._length/n):(n="y"===t._id.charAt(0)?40:80,a=s.constrain(t._length/n,4,9)+1),"radialaxis"===t._name&&(a*=2)),"array"===t.tickmode&&(a*=100),t._roughDTick=Math.abs(r[1]-r[0])/a,V.autoTicks(t,t._roughDTick),t._minDtick>0&&t.dtick<2*t._minDtick&&(t.dtick=t._minDtick,t.tick0=t.l2r(t._forceTick0))}"period"===t.ticklabelmode&&function(t){var e;function r(){return!(i(t.dtick)||"M"!==t.dtick.charAt(0))}var n=r(),a=V.getTickFormat(t);if(a){var o=t._dtickInit!==t.dtick;/%[fLQsSMX]/.test(a)||(/%[HI]/.test(a)?(e=E,o&&!n&&t.dticka&&f=o:p<=o;p=V.tickIncrement(p,t.dtick,l,t.calendar)){if(t.rangebreaks&&!l){if(p=u)break}if(L.length>m||p===C)break;C=p;var P=!1;f&&p!==(0|p)&&(P=!0),L.push({minor:P,value:p})}if(h&&function(t,e,r){for(var n=0;n0?(a=n-1,o=n):(a=n,o=n);var s,l=t[a].value,c=t[o].value,u=Math.abs(c-l),f=r||u,h=0;f>=y?h=u>=y&&u<=g?u:v:r===b&&f>=_?h=u>=_&&u<=x?u:b:f>=k?h=u>=k&&u<=w?u:T:r===A&&f>=A?h=A:f>=M?h=M:r===S&&f>=S?h=S:r===E&&f>=E&&(h=E),h>=u&&(h=u,s=!0);var p=i+h;if(e.rangebreaks&&h>0){for(var d=0,m=0;m<84;m++){var L=(m+.5)/84;e.maskBreaks(i*(1-L)+L*p)!==I&&d++}(h*=d/84)||(t[n].drop=!0),s&&u>A&&(h=u)}(h>0||0===n)&&(t[n].periodX=i+h/2)}}(L,t,t._definedDelta),t.rangebreaks){var O="y"===t._id.charAt(0),z=1;"auto"===t.tickmode&&(z=t.tickfont?t.tickfont.size:12);var D=NaN;for(d=L.length-1;d>-1;d--)if(L[d].drop)L.splice(d,1);else{L[d].value=Mt(L[d].value,t);var R=t.c2p(L[d].value);(O?D>R-z:Du||Bu&&(F.periodX=u),B10||"01-01"!==n.substr(5)?t._tickround="d":t._tickround=+e.substr(1)%12==0?"y":"m";else if(e>=M&&a<=10||e>=15*M)t._tickround="d";else if(e>=L&&a<=16||e>=E)t._tickround="M";else if(e>=C&&a<=19||e>=L)t._tickround="S";else{var o=t.l2r(r+e).replace(/^-/,"").length;t._tickround=Math.max(a,o)-20,t._tickround<0&&(t._tickround=4)}}else if(i(e)||"L"===e.charAt(0)){var s=t.range.map(t.r2d||Number);i(e)||(e=Number(e.substr(1))),t._tickround=2-Math.floor(Math.log(e)/Math.LN10+.01);var l=Math.max(Math.abs(s[0]),Math.abs(s[1])),c=Math.floor(Math.log(l)/Math.LN10+.01),u=void 0===t.minexponent?3:t.minexponent;Math.abs(c)>u&&(ut(t.exponentformat)&&!ft(c)?t._tickexponent=3*Math.round((c-1)/3):t._tickexponent=c)}else t._tickround=null}function lt(t,e,r){var n=t.tickfont||{};return{x:e,dx:0,dy:0,text:r||"",fontSize:n.size,font:n.family,fontColor:n.color}}V.autoTicks=function(t,e){var r;function n(t){return Math.pow(t,Math.floor(Math.log(e)/Math.LN10))}if("date"===t.type){t.tick0=s.dateTick0(t.calendar,0);var a=2*e;if(a>v)e/=v,r=n(10),t.dtick="M"+12*ot(e,r,$);else if(a>T)e/=T,t.dtick="M"+ot(e,1,tt);else if(a>M){t.dtick=ot(e,M,t._hasDayOfWeekBreaks?[1,2,7,14]:rt);var o=V.getTickFormat(t),l="period"===t.ticklabelmode;l&&(t._rawTick0=t.tick0),/%[uVW]/.test(o)?t.tick0=s.dateTick0(t.calendar,2):t.tick0=s.dateTick0(t.calendar,1),l&&(t._dowTick0=t.tick0)}else a>E?t.dtick=ot(e,E,tt):a>L?t.dtick=ot(e,L,et):a>C?t.dtick=ot(e,C,et):(r=n(10),t.dtick=ot(e,r,$))}else if("log"===t.type){t.tick0=0;var c=s.simpleMap(t.range,t.r2l);if(e>.7)t.dtick=Math.ceil(e);else if(Math.abs(c[1]-c[0])<1){var u=1.5*Math.abs((c[1]-c[0])/e);e=Math.abs(Math.pow(10,c[1])-Math.pow(10,c[0]))/u,r=n(10),t.dtick="L"+ot(e,r,$)}else t.dtick=e>.3?"D2":"D1"}else"category"===t.type||"multicategory"===t.type?(t.tick0=0,t.dtick=Math.ceil(Math.max(e,1))):At(t)?(t.tick0=0,r=1,t.dtick=ot(e,r,at)):(t.tick0=0,r=n(10),t.dtick=ot(e,r,$));if(0===t.dtick&&(t.dtick=1),!i(t.dtick)&&"string"!=typeof t.dtick){var f=t.dtick;throw t.dtick=1,"ax.dtick error: "+String(f)}},V.tickIncrement=function(t,e,r,a){var o=r?-1:1;if(i(e))return s.increment(t,o*e);var l=e.charAt(0),c=o*Number(e.substr(1));if("M"===l)return s.incrementMonth(t,c,a);if("L"===l)return Math.log(Math.pow(10,t)+c)/Math.LN10;if("D"===l){var u="D2"===e?it:nt,f=t+.01*o,h=s.roundUp(s.mod(f,1),u,r);return Math.floor(f)+Math.log(n.round(Math.pow(10,h),1))/Math.LN10}throw"unrecognized dtick "+String(e)},V.tickFirst=function(t,e){var r=t.r2l||Number,a=s.simpleMap(t.range,r,void 0,void 0,e),o=a[1] ")}else t._prevDateHead=l,c+="
"+l;e.text=c}(t,o,r,c):"log"===u?function(t,e,r,n,a){var o=t.dtick,l=e.x,c=t.tickformat,u="string"==typeof o&&o.charAt(0);"never"===a&&(a="");n&&"L"!==u&&(o="L3",u="L");if(c||"L"===u)e.text=ht(Math.pow(10,l),t,a,n);else if(i(o)||"D"===u&&s.mod(l+.01,1)<.1){var f=Math.round(l),h=Math.abs(f),p=t.exponentformat;"power"===p||ut(p)&&ft(f)?(e.text=0===f?1:1===f?"10":"10"+(f>1?"":P)+h+"",e.fontSize*=1.25):("e"===p||"E"===p)&&h>2?e.text="1"+p+(f>0?"+":P)+h:(e.text=ht(Math.pow(10,l),t,"","fakehover"),"D1"===o&&"y"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if("D"!==u)throw"unrecognized dtick "+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if("D1"===t.dtick){var d=String(e.text).charAt(0);"0"!==d&&"1"!==d||("y"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,c,m):"category"===u?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r="");e.text=String(r)}(t,o):"multicategory"===u?function(t,e,r){var n=Math.round(e.x),i=t._categories[n]||[],a=void 0===i[1]?"":String(i[1]),o=void 0===i[0]?"":String(i[0]);r?e.text=o+" - "+a:(e.text=a,e.text2=o)}(t,o,r):At(t)?function(t,e,r,n,i){if("radians"!==t.thetaunit||r)e.text=ht(e.x,t,i,n);else{var a=e.x/180;if(0===a)e.text="0";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){for(var r=1;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,i=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/i),Math.round(r/i)]}(a);if(o[1]>=100)e.text=ht(s.deg2rad(e.x),t,i,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text="\u03c0":e.text=o[0]+"\u03c0":e.text=["",o[0],"","\u2044","",o[1],"","\u03c0"].join(""),l&&(e.text=P+e.text)}}}}(t,o,r,c,m):function(t,e,r,n,i){"never"===i?i="":"all"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(i="hide");e.text=ht(e.x,t,i,n)}(t,o,0,c,m),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),"boundaries"===t.tickson||t.showdividers){var g=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[g(o.x-.5),g(o.x+t.dtick-.5)]}return o},V.hoverLabelText=function(t,e,r){r&&(t=s.extendFlat({},t,{hoverformat:r}));var n=Array.isArray(e)?e[0]:e,i=Array.isArray(e)?e[1]:void 0;if(void 0!==i&&i!==n)return V.hoverLabelText(t,n,r)+" - "+V.hoverLabelText(t,i,r);var a="log"===t.type&&n<=0,o=V.tickText(t,t.c2l(a?-n:n),"hover").text;return a?0===n?"0":P+o:o};var ct=["f","p","n","\u03bc","m","","k","M","G","T"];function ut(t){return"SI"===t||"B"===t}function ft(t){return t>14||t<-15}function ht(t,e,r,n){var a=t<0,o=e._tickround,l=r||e.exponentformat||"B",c=e._tickexponent,u=V.getTickFormat(e),f=e.separatethousands;if(n){var h={exponentformat:l,minexponent:e.minexponent,dtick:"none"===e.showexponent?e.dtick:i(t)&&Math.abs(t)||1,range:"none"===e.showexponent?e.range.map(e.r2d):[0,t||1]};st(h),o=(Number(h._tickround)||0)+4,c=h._tickexponent,e.hoverformat&&(u=e.hoverformat)}if(u)return e._numFormat(u)(t).replace(/-/g,P);var p,d=Math.pow(10,-o)/2;if("none"===l&&(c=0),(t=Math.abs(t))"+p+"":"B"===l&&9===c?t+="B":ut(l)&&(t+=ct[c/3+5]));return a?P+t:t}function pt(t,e){for(var r=[],n={},i=0;i1&&r=i.min&&t=0,a=u(t,e[1])<=0;return(r||i)&&(n||a)}if(t.tickformatstops&&t.tickformatstops.length>0)switch(t.type){case"date":case"linear":for(e=0;e=o(i)))){r=n;break}break;case"log":for(e=0;e0?r.bottom-f:0,h)))),e.automargin){n={x:0,y:0,r:0,l:0,t:0,b:0};var p=[0,1];if("x"===d){if("b"===l?n[l]=e._depth:(n[l]=e._depth=Math.max(r.width>0?f-r.top:0,h),p.reverse()),r.width>0){var g=r.right-(e._offset+e._length);g>0&&(n.xr=1,n.r=g);var v=e._offset-r.left;v>0&&(n.xl=0,n.l=v)}}else if("l"===l?n[l]=e._depth=Math.max(r.height>0?f-r.left:0,h):(n[l]=e._depth=Math.max(r.height>0?r.right-f:0,h),p.reverse()),r.height>0){var y=r.bottom-(e._offset+e._length);y>0&&(n.yb=0,n.b=y);var x=e._offset-r.top;x>0&&(n.yt=1,n.t=x)}n[m]="free"===e.anchor?e.position:e._anchorAxis.domain[p[0]],e.title.text!==c._dfltTitle[d]&&(n[l]+=gt(e)+(e.title.standoff||0)),e.mirror&&"free"!==e.anchor&&((i={x:0,y:0,r:0,l:0,t:0,b:0})[u]=e.linewidth,e.mirror&&!0!==e.mirror&&(i[u]+=h),!0===e.mirror||"ticks"===e.mirror?i[m]=e._anchorAxis.domain[p[1]]:"all"!==e.mirror&&"allticks"!==e.mirror||(i[m]=[e._counterDomainMin,e._counterDomainMax][p[1]]))}K&&(s=o.getComponentMethod("rangeslider","autoMarginOpts")(t,e)),a.autoMargin(t,xt(e),n),a.autoMargin(t,bt(e),i),a.autoMargin(t,_t(e),s)})),r.skipTitle||K&&"bottom"===e.side||Z.push((function(){return function(t,e){var r,n=t._fullLayout,i=e._id,a=i.charAt(0),o=e.title.font.size;if(e.title.hasOwnProperty("standoff"))r=e._depth+e.title.standoff+gt(e);else{var s=St(e);if("multicategory"===e.type)r=e._depth;else{var l=1.5*o;s&&(l=.5*o,"outside"===e.ticks&&(l+=e.ticklen)),r=10+l+(e.linewidth?e.linewidth-1:0)}s||(r+="x"===a?"top"===e.side?o*(e.showticklabels?1:0):o*(e.showticklabels?1.5:.5):"right"===e.side?o*(e.showticklabels?1:.5):o*(e.showticklabels?.5:0))}var c,f,p,d,m=V.getPxPosition(t,e);"x"===a?(f=e._offset+e._length/2,p="top"===e.side?m-r:m+r):(p=e._offset+e._length/2,f="right"===e.side?m+r:m-r,c={rotate:"-90",offset:0});if("multicategory"!==e.type){var g=e._selections[e._id+"tick"];if(d={selection:g,side:e.side},g&&g.node()&&g.node().parentNode){var v=h.getTranslate(g.node().parentNode);d.offsetLeft=v.x,d.offsetTop=v.y}e.title.hasOwnProperty("standoff")&&(d.pad=0)}return u.draw(t,i+"title",{propContainer:e,propName:e._name+".title.text",placeholder:n._dfltTitle[a],avoid:d,transform:c,attributes:{x:f,y:p,"text-anchor":"middle"}})}(t,e)})),s.syncOrAsync(Z)}}function Q(t){var r=p+(t||"tick");return w[r]||(w[r]=function(t,e){var r,n,i,a;t._selections[e].size()?(r=1/0,n=-1/0,i=1/0,a=-1/0,t._selections[e].each((function(){var t=yt(this),e=h.bBox(t.node().parentNode);r=Math.min(r,e.top),n=Math.max(n,e.bottom),i=Math.min(i,e.left),a=Math.max(a,e.right)}))):(r=0,n=0,i=0,a=0);return{top:r,bottom:n,left:i,right:a,height:n-r,width:a-i}}(e,r)),w[r]}},V.getTickSigns=function(t){var e=t._id.charAt(0),r={x:"top",y:"right"}[e],n=t.side===r?1:-1,i=[-1,1,n,-n];return"inside"!==t.ticks==("x"===e)&&(i=i.map((function(t){return-t}))),t.side&&i.push({l:-1,t:-1,r:1,b:1}[t.side.charAt(0)]),i},V.makeTransTickFn=function(t){return"x"===t._id.charAt(0)?function(e){return l(t._offset+t.l2p(e.x),0)}:function(e){return l(0,t._offset+t.l2p(e.x))}},V.makeTransTickLabelFn=function(t){var e=function(t){var e=t.ticklabelposition||"",r=function(t){return-1!==e.indexOf(t)},n=r("top"),i=r("left"),a=r("right"),o=r("bottom"),s=r("inside"),l=o||i||n||a;if(!l&&!s)return[0,0];var c=t.side,u=l?(t.tickwidth||0)/2:0,f=3,h=t.tickfont?t.tickfont.size:12;(o||n)&&(u+=h*N,f+=(t.linewidth||0)/2);(i||a)&&(u+=(t.linewidth||0)/2,f+=3);s&&"top"===c&&(f-=h*(1-N));(i||n)&&(u=-u);"bottom"!==c&&"right"!==c||(f=-f);return[l?u:0,s?f:0]}(t),r=e[0],n=e[1];return"x"===t._id.charAt(0)?function(e){return l(r+t._offset+t.l2p(dt(e)),n)}:function(e){return l(n,r+t._offset+t.l2p(dt(e)))}},V.makeTickPath=function(t,e,r,n){n=void 0!==n?n:t.ticklen;var i=t._id.charAt(0),a=(t.linewidth||1)/2;return"x"===i?"M0,"+(e+a*r)+"v"+n*r:"M"+(e+a*r)+",0h"+n*r},V.makeLabelFns=function(t,e,r){var n=t.ticklabelposition||"",a=function(t){return-1!==n.indexOf(t)},o=a("top"),l=a("left"),c=a("right"),u=a("bottom")||l||o||c,f=a("inside"),h="inside"===n&&"inside"===t.ticks||!f&&"outside"===t.ticks&&"boundaries"!==t.tickson,p=0,d=0,m=h?t.ticklen:0;if(f?m*=-1:u&&(m=0),h&&(p+=m,r)){var g=s.deg2rad(r);p=m*Math.cos(g)+1,d=m*Math.sin(g)}t.showticklabels&&(h||t.showline)&&(p+=.2*t.tickfont.size);var v,y,x,b,_,w={labelStandoff:p+=(t.linewidth||1)/2*(f?-1:1),labelShift:d},T=0,k=t.side,A=t._id.charAt(0),M=t.tickangle;if("x"===A)b=(_=!f&&"bottom"===k||f&&"top"===k)?1:-1,f&&(b*=-1),v=d*b,y=e+p*b,x=_?1:-.2,90===Math.abs(M)&&(f?x+=B:x=-90===M&&"bottom"===k?N:90===M&&"top"===k?B:.5,T=B/2*(M/90)),w.xFn=function(t){return t.dx+v+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*x},w.anchorFn=function(t,e){if(u){if(l)return"end";if(c)return"start"}return i(e)&&0!==e&&180!==e?e*b<0!==f?"end":"start":"middle"},w.heightFn=function(e,r,n){return r<-60||r>60?-.5*n:"top"===t.side!==f?-n:0};else if("y"===A){if(b=(_=!f&&"left"===k||f&&"right"===k)?1:-1,f&&(b*=-1),v=p,y=d*b,x=0,f||90!==Math.abs(M)||(x=-90===M&&"left"===k||90===M&&"right"===k?N:.5),f){var S=i(M)?+M:0;if(0!==S){var E=s.deg2rad(S);T=Math.abs(Math.sin(E))*N*b,x=0}}w.xFn=function(t){return t.dx+e-(v+t.fontSize*x)*b+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*B},w.anchorFn=function(t,e){return i(e)&&90===Math.abs(e)?"middle":_?"end":"start"},w.heightFn=function(e,r,n){return"right"===t.side&&(r*=-1),r<-30?-n:r<30?-.5*n:0}}return w},V.drawTicks=function(t,e,r){r=r||{};var n=e._id+"tick",i=r.vals;"period"===e.ticklabelmode&&(i=i.slice()).shift();var a=r.layer.selectAll("path."+n).data(e.ticks?i:[],mt);a.exit().remove(),a.enter().append("path").classed(n,1).classed("ticks",1).classed("crisp",!1!==r.crisp).call(f.stroke,e.tickcolor).style("stroke-width",h.crispRound(t,e.tickwidth,1)+"px").attr("d",r.path).style("display",null),Et(e,[D]),a.attr("transform",r.transFn)},V.drawGrid=function(t,e,r){r=r||{};var n=e._id+"grid",i=r.vals,a=r.counterAxis;if(!1===e.showgrid)i=[];else if(a&&V.shouldShowZeroLine(t,e,a))for(var o="array"===e.tickmode,s=0;sp||a.leftp||a.top+(e.tickangle?0:t.fontSize/4)e["_visibleLabelMin_"+r._id]?l.style("display","none"):"tick"!==t.K||i||l.style("display",null)}))}))}))}))},x(v,g+1?g:m);var b=null;e._selections&&(e._selections[f]=v);var _=[function(){return y.length&&Promise.all(y)}];e.automargin&&a._redrawFromAutoMarginCount&&90===g?(b=90,_.push((function(){x(v,g)}))):_.push((function(){if(x(v,m),p.length&&"x"===u&&!i(m)&&("log"!==e.type||"D"!==String(e.dtick).charAt(0))){b=0;var t,n=0,a=[];if(v.each((function(t){n=Math.max(n,t.fontSize);var r=e.l2p(t.x),i=yt(this),o=h.bBox(i.node());a.push({top:0,bottom:10,height:10,left:r-o.width/2,right:r+o.width/2+2,width:o.width+2})})),"boundaries"!==e.tickson&&!e.showdividers||r.secondary){var o=p.length,l=Math.abs((p[o-1].x-p[0].x)*e._m)/(o-1),c=e.ticklabelposition||"",f=function(t){return-1!==c.indexOf(t)},d=f("top"),g=f("left"),y=f("right"),_=f("bottom")||g||d||y?(e.tickwidth||0)+6:0,w=l<2.5*n||"multicategory"===e.type;for(t=0;t1)for(n=1;n2*o}(i,e))return"date";var g="strict"!==r.autotypenumbers;return function(t,e){for(var r=t.length,n=f(r),i=0,o=0,s={},u=0;u2*i}(i,g)?"category":function(t,e){for(var r=t.length,n=0;n=2){var l,c,u="";if(2===o.length)for(l=0;l<2;l++)if(c=y(o[l])){u=d;break}var f=i("pattern",u);if(f===d)for(l=0;l<2;l++)(c=y(o[l]))&&(e.bounds[l]=o[l]=c-1);if(f)for(l=0;l<2;l++)switch(c=o[l],f){case d:if(!n(c))return void(e.enabled=!1);if((c=+c)!==Math.floor(c)||c<0||c>=7)return void(e.enabled=!1);e.bounds[l]=o[l]=c;break;case m:if(!n(c))return void(e.enabled=!1);if((c=+c)<0||c>24)return void(e.enabled=!1);e.bounds[l]=o[l]=c}if(!1===r.autorange){var h=r.range;if(h[0]h[1])return void(e.enabled=!1)}else if(o[0]>h[0]&&o[1]n?1:-1:+(t.substr(1)||1)-+(e.substr(1)||1)},r.ref2id=function(t){return!!/^[xyz]/.test(t)&&t.split(" ")[0]},r.isLinked=function(t,e){return a(e,t._axisMatchGroups)||a(e,t._axisConstraintGroups)}},{"../../registry":904,"./constants":834}],832:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){if("category"===e.type){var i,a=t.categoryarray,o=Array.isArray(a)&&a.length>0;o&&(i="array");var s,l=r("categoryorder",i);"array"===l&&(s=r("categoryarray")),o||"array"!==l||(l=e.categoryorder="trace"),"trace"===l?e._initialCategories=[]:"array"===l?e._initialCategories=s.slice():(s=function(t,e){var r,n,i,a=e.dataAttr||t._id.charAt(0),o={};if(e.axData)r=e.axData;else for(r=[],n=0;nn?i.substr(n):a.substr(r))+o:i+a+t*e:o}function g(t,e){for(var r=e._size,n=r.h/r.w,i={},a=Object.keys(t),o=0;oc*x)||T)for(r=0;rO&&FP&&(P=F);h/=(P-C)/(2*I),C=l.l2r(C),P=l.l2r(P),l.range=l._input.range=S=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function N(t,e,r,n,i){return t.append("path").attr("class","zoombox").style({fill:e>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("transform",c(r,n)).attr("d",i+"Z")}function j(t,e,r){return t.append("path").attr("class","zoombox-corners").style({fill:f.background,stroke:f.defaultLine,"stroke-width":1,opacity:0}).attr("transform",c(e,r)).attr("d","M0,0Z")}function U(t,e,r,n,i,a){t.attr("d",n+"M"+r.l+","+r.t+"v"+r.h+"h"+r.w+"v-"+r.h+"h-"+r.w+"Z"),V(t,e,i,a)}function V(t,e,r,n){r||(t.transition().style("fill",n>.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),e.transition().style("opacity",1).duration(200))}function H(t){n.select(t).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}function q(t){I&&t.data&&t._context.showTips&&(i.notifier(i._(t,"Double-click to zoom back out"),"long"),I=!1)}function G(t){var e=Math.floor(Math.min(t.b-t.t,t.r-t.l,P)/2);return"M"+(t.l-3.5)+","+(t.t-.5+e)+"h3v"+-e+"h"+e+"v-3h-"+(e+3)+"ZM"+(t.r+3.5)+","+(t.t-.5+e)+"h-3v"+-e+"h"+-e+"v-3h"+(e+3)+"ZM"+(t.r+3.5)+","+(t.b+.5-e)+"h-3v"+e+"h"+-e+"v3h"+(e+3)+"ZM"+(t.l-3.5)+","+(t.b+.5-e)+"h3v"+e+"h"+e+"v3h-"+(e+3)+"Z"}function Y(t,e,r,n,a){for(var o,s,l,c,u=!1,f={},h={},p=(a||{}).xaHash,d=(a||{}).yaHash,m=0;m=0)i._fullLayout._deactivateShape(i);else{var o=i._fullLayout.clickmode;if(H(i),2!==t||vt||qt(),gt)o.indexOf("select")>-1&&S(r,i,J,K,e.id,Pt),o.indexOf("event")>-1&&p.click(i,r,e.id);else if(1===t&&vt){var s=m?O:I,c="s"===m||"w"===v?0:1,f=s._name+".range["+c+"]",h=function(t,e){var r,n=t.range[e],i=Math.abs(n-t.range[1-e]);return"date"===t.type?n:"log"===t.type?(r=Math.ceil(Math.max(0,-Math.log(i)/Math.LN10))+3,a("."+r+"g")(Math.pow(10,n))):(r=Math.floor(Math.log(Math.abs(n))/Math.LN10)-Math.floor(Math.log(i)/Math.LN10)+4,a("."+String(r)+"g")(n))}(s,c),d="left",g="middle";if(s.fixedrange)return;m?(g="n"===m?"top":"bottom","right"===s.side&&(d="right")):"e"===v&&(d="right"),i._context.showAxisRangeEntryBoxes&&n.select(bt).call(u.makeEditable,{gd:i,immediate:!0,background:i._fullLayout.paper_bgcolor,text:String(h),fill:s.tickfont?s.tickfont.color:"#444",horizontalAlign:d,verticalAlign:g}).on("edit",(function(t){var e=s.d2r(t);void 0!==e&&l.call("_guiRelayout",i,f,e)}))}}}function zt(e,r){if(t._transitioningWithDuration)return!1;var n=Math.max(0,Math.min(tt,pt*e+_t)),i=Math.max(0,Math.min(et,dt*r+wt)),a=Math.abs(n-_t),o=Math.abs(i-wt);function s(){St="",Tt.r=Tt.l,Tt.t=Tt.b,Lt.attr("d","M0,0Z")}if(Tt.l=Math.min(_t,n),Tt.r=Math.max(_t,n),Tt.t=Math.min(wt,i),Tt.b=Math.max(wt,i),rt.isSubplotConstrained)a>P||o>P?(St="xy",a/tt>o/et?(o=a*et/tt,wt>i?Tt.t=wt-o:Tt.b=wt+o):(a=o*tt/et,_t>n?Tt.l=_t-a:Tt.r=_t+a),Lt.attr("d",G(Tt))):s();else if(nt.isSubplotConstrained)if(a>P||o>P){St="xy";var l=Math.min(Tt.l/tt,(et-Tt.b)/et),c=Math.max(Tt.r/tt,(et-Tt.t)/et);Tt.l=l*tt,Tt.r=c*tt,Tt.b=(1-l)*et,Tt.t=(1-c)*et,Lt.attr("d",G(Tt))}else s();else!at||o0){var u;if(nt.isSubplotConstrained||!it&&1===at.length){for(u=0;um[1]-1/4096&&(e.domain=s),i.noneOrAll(t.domain,e.domain,s)}return r("layer"),e}},{"../../lib":776,"fast-isnumeric":242}],846:[function(t,e,r){"use strict";var n=t("../../constants/alignment").FROM_BL;e.exports=function(t,e,r){void 0===r&&(r=n[t.constraintoward||"center"]);var i=[t.r2l(t.range[0]),t.r2l(t.range[1])],a=i[0]+(i[1]-i[0])*r;t.range=t._input.range=[t.l2r(a+(i[0]-a)*e),t.l2r(a+(i[1]-a)*e)],t.setScale()}},{"../../constants/alignment":744}],847:[function(t,e,r){"use strict";var n=t("polybooljs"),i=t("../../registry"),a=t("../../components/drawing").dashStyle,o=t("../../components/color"),s=t("../../components/fx"),l=t("../../components/fx/helpers").makeEventData,c=t("../../components/dragelement/helpers"),u=c.freeMode,f=c.rectMode,h=c.drawMode,p=c.openMode,d=c.selectMode,m=t("../../components/shapes/draw_newshape/display_outlines"),g=t("../../components/shapes/draw_newshape/helpers").handleEllipse,v=t("../../components/shapes/draw_newshape/newshapes"),y=t("../../lib"),x=t("../../lib/polygon"),b=t("../../lib/throttle"),_=t("./axis_ids").getFromId,w=t("../../lib/clear_gl_canvases"),T=t("../../plot_api/subroutines").redrawReglTraces,k=t("./constants"),A=k.MINSELECT,M=x.filter,S=x.tester,E=t("./handle_outline").clearSelect,L=t("./helpers"),C=L.p2r,P=L.axValue,I=L.getTransform;function O(t,e,r,n,i,a,o){var s,l,c,u,f,h,d,g,v,y=e._hoverdata,x=e._fullLayout.clickmode.indexOf("event")>-1,b=[];if(function(t){return t&&Array.isArray(t)&&!0!==t[0].hoverOnBox}(y)){F(t,e,a);var _=function(t,e){var r,n,i=t[0],a=-1,o=[];for(n=0;n0?function(t,e){var r,n,i,a=[];for(i=0;i0&&a.push(r);if(1===a.length&&a[0]===e.searchInfo&&(n=e.searchInfo.cd[0].trace).selectedpoints.length===e.pointNumbers.length){for(i=0;i1)return!1;if((i+=r.selectedpoints.length)>1)return!1}return 1===i}(s)&&(h=j(_))){for(o&&o.remove(),v=0;v=0&&n._fullLayout._deactivateShape(n),h(e)){var a=n._fullLayout._zoomlayer.selectAll(".select-outline-"+r.id);if(a&&n._fullLayout._drawing){var o=v(a,t);o&&i.call("_guiRelayout",n,{shapes:o}),n._fullLayout._drawing=!1}}r.selection={},r.selection.selectionDefs=t.selectionDefs=[],r.selection.mergedPolygons=t.mergedPolygons=[]}function N(t,e,r,n){var i,a,o,s=[],l=e.map((function(t){return t._id})),c=r.map((function(t){return t._id}));for(o=0;o0?n[0]:r;return!!e.selectedpoints&&e.selectedpoints.indexOf(i)>-1}function U(t,e,r){var n,a,o,s;for(n=0;n=0)L._fullLayout._deactivateShape(L);else if(!_){var r=z.clickmode;b.done(mt).then((function(){if(b.clear(mt),2===t){for(ft.remove(),$=0;$-1&&O(e,L,i.xaxes,i.yaxes,i.subplot,i,ft),"event"===r&&L.emit("plotly_selected",void 0);s.click(L,e)})).catch(y.error)}},i.doneFn=function(){dt.remove(),b.done(mt).then((function(){b.clear(mt),i.gd.emit("plotly_selected",et),Q&&i.selectionDefs&&(Q.subtract=ut,i.selectionDefs.push(Q),i.mergedPolygons.length=0,[].push.apply(i.mergedPolygons,K)),i.doneFnCompleted&&i.doneFnCompleted(gt)})).catch(y.error),_&&B(i)}},clearSelect:E,clearSelectionsCache:B,selectOnClick:O}},{"../../components/color":639,"../../components/dragelement/helpers":657,"../../components/drawing":661,"../../components/fx":679,"../../components/fx/helpers":675,"../../components/shapes/draw_newshape/display_outlines":727,"../../components/shapes/draw_newshape/helpers":728,"../../components/shapes/draw_newshape/newshapes":729,"../../lib":776,"../../lib/clear_gl_canvases":760,"../../lib/polygon":788,"../../lib/throttle":803,"../../plot_api/subroutines":817,"../../registry":904,"./axis_ids":831,"./constants":834,"./handle_outline":838,"./helpers":839,polybooljs:480}],848:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("d3-time-format").utcFormat,a=t("../../lib"),o=a.numberFormat,s=t("fast-isnumeric"),l=a.cleanNumber,c=a.ms2DateTime,u=a.dateTime2ms,f=a.ensureNumber,h=a.isArrayOrTypedArray,p=t("../../constants/numerical"),d=p.FP_SAFE,m=p.BADNUM,g=p.LOG_CLIP,v=p.ONEWEEK,y=p.ONEDAY,x=p.ONEHOUR,b=p.ONEMIN,_=p.ONESEC,w=t("./axis_ids"),T=t("./constants"),k=T.HOUR_PATTERN,A=T.WEEKDAY_PATTERN;function M(t){return Math.pow(10,t)}function S(t){return null!=t}e.exports=function(t,e){e=e||{};var r=t._id||"x",p=r.charAt(0);function E(e,r){if(e>0)return Math.log(e)/Math.LN10;if(e<=0&&r&&t.range&&2===t.range.length){var n=t.range[0],i=t.range[1];return.5*(n+i-2*g*Math.abs(n-i))}return m}function L(e,r,n,i){if((i||{}).msUTC&&s(e))return+e;var o=u(e,n||t.calendar);if(o===m){if(!s(e))return m;e=+e;var l=Math.floor(10*a.mod(e+.05,1)),c=Math.round(e-l/10);o=u(new Date(c))+l/10}return o}function C(e,r,n){return c(e,r,n||t.calendar)}function P(e){return t._categories[Math.round(e)]}function I(e){if(S(e)){if(void 0===t._categoriesMap&&(t._categoriesMap={}),void 0!==t._categoriesMap[e])return t._categoriesMap[e];t._categories.push("number"==typeof e?String(e):e);var r=t._categories.length-1;return t._categoriesMap[e]=r,r}return m}function O(e){if(t._categoriesMap)return t._categoriesMap[e]}function z(t){var e=O(t);return void 0!==e?e:s(t)?+t:void 0}function D(t){return s(t)?+t:O(t)}function R(t,e,r){return n.round(r+e*t,2)}function F(t,e,r){return(t-r)/e}var B=function(e){return s(e)?R(e,t._m,t._b):m},N=function(e){return F(e,t._m,t._b)};if(t.rangebreaks){var j="y"===p;B=function(e){if(!s(e))return m;var r=t._rangebreaks.length;if(!r)return R(e,t._m,t._b);var n=j;t.range[0]>t.range[1]&&(n=!n);for(var i=n?-1:1,a=i*e,o=0,l=0;lu)){o=a<(c+u)/2?l:l+1;break}o=l+1}var f=t._B[o]||0;return isFinite(f)?R(e,t._m2,f):0},N=function(e){var r=t._rangebreaks.length;if(!r)return F(e,t._m,t._b);for(var n=0,i=0;it._rangebreaks[i].pmax&&(n=i+1);return F(e,t._m2,t._B[n])}}t.c2l="log"===t.type?E:f,t.l2c="log"===t.type?M:f,t.l2p=B,t.p2l=N,t.c2p="log"===t.type?function(t,e){return B(E(t,e))}:B,t.p2c="log"===t.type?function(t){return M(N(t))}:N,-1!==["linear","-"].indexOf(t.type)?(t.d2r=t.r2d=t.d2c=t.r2c=t.d2l=t.r2l=l,t.c2d=t.c2r=t.l2d=t.l2r=f,t.d2p=t.r2p=function(e){return t.l2p(l(e))},t.p2d=t.p2r=N,t.cleanPos=f):"log"===t.type?(t.d2r=t.d2l=function(t,e){return E(l(t),e)},t.r2d=t.r2c=function(t){return M(l(t))},t.d2c=t.r2l=l,t.c2d=t.l2r=f,t.c2r=E,t.l2d=M,t.d2p=function(e,r){return t.l2p(t.d2r(e,r))},t.p2d=function(t){return M(N(t))},t.r2p=function(e){return t.l2p(l(e))},t.p2r=N,t.cleanPos=f):"date"===t.type?(t.d2r=t.r2d=a.identity,t.d2c=t.r2c=t.d2l=t.r2l=L,t.c2d=t.c2r=t.l2d=t.l2r=C,t.d2p=t.r2p=function(e,r,n){return t.l2p(L(e,0,n))},t.p2d=t.p2r=function(t,e,r){return C(N(t),e,r)},t.cleanPos=function(e){return a.cleanDate(e,m,t.calendar)}):"category"===t.type?(t.d2c=t.d2l=I,t.r2d=t.c2d=t.l2d=P,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=D(e);return void 0!==r?r:t.fraction2r(.5)},t.l2r=t.c2r=f,t.r2l=D,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return P(N(t))},t.r2p=t.d2p,t.p2r=N,t.cleanPos=function(t){return"string"==typeof t&&""!==t?t:f(t)}):"multicategory"===t.type&&(t.r2d=t.c2d=t.l2d=P,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=z(e);return void 0!==r?r:t.fraction2r(.5)},t.r2c_just_indices=O,t.l2r=t.c2r=f,t.r2l=z,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return P(N(t))},t.r2p=t.d2p,t.p2r=N,t.cleanPos=function(t){return Array.isArray(t)||"string"==typeof t&&""!==t?t:f(t)},t.setupMultiCategory=function(n){var i,o,s=t._traceIndices,l=t._matchGroup;if(l&&0===t._categories.length)for(var c in l)if(c!==r){var u=e[w.id2name(c)];s=s.concat(u._traceIndices)}var f=[[0,{}],[0,{}]],d=[];for(i=0;id&&(o[n]=d),o[0]===o[1]){var c=Math.max(1,Math.abs(1e-6*o[0]));o[0]-=c,o[1]+=c}}else a.nestedProperty(t,e).set(i)},t.setScale=function(r){var n=e._size;if(t.overlaying){var i=w.getFromId({_fullLayout:e},t.overlaying);t.domain=i.domain}var a=r&&t._r?"_r":"range",o=t.calendar;t.cleanRange(a);var s,l,c=t.r2l(t[a][0],o),u=t.r2l(t[a][1],o),f="y"===p;if((f?(t._offset=n.t+(1-t.domain[1])*n.h,t._length=n.h*(t.domain[1]-t.domain[0]),t._m=t._length/(c-u),t._b=-t._m*u):(t._offset=n.l+t.domain[0]*n.w,t._length=n.w*(t.domain[1]-t.domain[0]),t._m=t._length/(u-c),t._b=-t._m*c),t._rangebreaks=[],t._lBreaks=0,t._m2=0,t._B=[],t.rangebreaks)&&(t._rangebreaks=t.locateBreaks(Math.min(c,u),Math.max(c,u)),t._rangebreaks.length)){for(s=0;su&&(h=!h),h&&t._rangebreaks.reverse();var d=h?-1:1;for(t._m2=d*t._length/(Math.abs(u-c)-t._lBreaks),t._B.push(-t._m2*(f?u:c)),s=0;si&&(i+=7,oi&&(i+=24,o=n&&o=n&&e=s.min&&(ts.max&&(s.max=n),i=!1)}i&&c.push({min:t,max:n})}};for(n=0;nr.duration?(!function(){for(var r={},n=0;n rect").call(o.setTranslate,0,0).call(o.setScale,1,1),t.plot.call(o.setTranslate,e._offset,r._offset).call(o.setScale,1,1);var n=t.plot.selectAll(".scatterlayer .trace");n.selectAll(".point").call(o.setPointGroupScale,1,1),n.selectAll(".textpoint").call(o.setTextPointsScale,1,1),n.call(o.hideOutsideRangePoints,t)}function g(e,r){var n=e.plotinfo,i=n.xaxis,l=n.yaxis,c=i._length,u=l._length,f=!!e.xr1,h=!!e.yr1,p=[];if(f){var d=a.simpleMap(e.xr0,i.r2l),m=a.simpleMap(e.xr1,i.r2l),g=d[1]-d[0],v=m[1]-m[0];p[0]=(d[0]*(1-r)+r*m[0]-d[0])/(d[1]-d[0])*c,p[2]=c*(1-r+r*v/g),i.range[0]=i.l2r(d[0]*(1-r)+r*m[0]),i.range[1]=i.l2r(d[1]*(1-r)+r*m[1])}else p[0]=0,p[2]=c;if(h){var y=a.simpleMap(e.yr0,l.r2l),x=a.simpleMap(e.yr1,l.r2l),b=y[1]-y[0],_=x[1]-x[0];p[1]=(y[1]*(1-r)+r*x[1]-y[1])/(y[0]-y[1])*u,p[3]=u*(1-r+r*_/b),l.range[0]=i.l2r(y[0]*(1-r)+r*x[0]),l.range[1]=l.l2r(y[1]*(1-r)+r*x[1])}else p[1]=0,p[3]=u;s.drawOne(t,i,{skipTitle:!0}),s.drawOne(t,l,{skipTitle:!0}),s.redrawComponents(t,[i._id,l._id]);var w=f?c/p[2]:1,T=h?u/p[3]:1,k=f?p[0]:0,A=h?p[1]:0,M=f?p[0]/p[2]*c:0,S=h?p[1]/p[3]*u:0,E=i._offset-M,L=l._offset-S;n.clipRect.call(o.setTranslate,k,A).call(o.setScale,1/w,1/T),n.plot.call(o.setTranslate,E,L).call(o.setScale,w,T),o.setPointGroupScale(n.zoomScalePts,1/w,1/T),o.setTextPointsScale(n.zoomScaleTxt,1/w,1/T)}s.redrawComponents(t)}},{"../../components/drawing":661,"../../lib":776,"../../registry":904,"./axes":827,"@plotly/d3":58}],853:[function(t,e,r){"use strict";var n=t("../../registry").traceIs,i=t("./axis_autotype");function a(t){return{v:"x",h:"y"}[t.orientation||"v"]}function o(t,e){var r=a(t),i=n(t,"box-violin"),o=n(t._fullInput||{},"candlestick");return i&&!o&&e===r&&void 0===t[r]&&void 0===t[r+"0"]}e.exports=function(t,e,r,s){r("autotypenumbers",s.autotypenumbersDflt),"-"===r("type",(s.splomStash||{}).type)&&(!function(t,e){if("-"!==t.type)return;var r,s=t._id,l=s.charAt(0);-1!==s.indexOf("scene")&&(s=l);var c=function(t,e,r){for(var n=0;n0&&(i["_"+r+"axes"]||{})[e])return i;if((i[r+"axis"]||r)===e){if(o(i,r))return i;if((i[r]||[]).length||i[r+"0"])return i}}}(e,s,l);if(!c)return;if("histogram"===c.type&&l==={v:"y",h:"x"}[c.orientation||"v"])return void(t.type="linear");var u=l+"calendar",f=c[u],h={noMultiCategory:!n(c,"cartesian")||n(c,"noMultiCategory")};"box"===c.type&&c._hasPreCompStats&&l==={h:"x",v:"y"}[c.orientation||"v"]&&(h.noMultiCategory=!0);if(h.autotypenumbers=t.autotypenumbers,o(c,l)){var p=a(c),d=[];for(r=0;r0?".":"")+a;i.isPlainObject(o)?l(o,e,s,n+1):e(s,a,o)}}))}r.manageCommandObserver=function(t,e,n,o){var s={},l=!0;e&&e._commandObserver&&(s=e._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=r.hasSimpleAPICommandBindings(t,n,s.lookupTable);if(e&&e._commandObserver){if(c)return s;if(e._commandObserver.remove)return e._commandObserver.remove(),e._commandObserver=null,s}if(c){a(t,c,s.cache),s.check=function(){if(l){var e=a(t,c,s.cache);return e.changed&&o&&void 0!==s.lookupTable[e.value]&&(s.disable(),Promise.resolve(o({value:e.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[e.value]})).then(s.enable,s.enable)),e.changed}};for(var u=["plotly_relayout","plotly_redraw","plotly_restyle","plotly_update","plotly_animatingframe","plotly_afterplot"],f=0;f0&&i<0&&(i+=360);var s=(i-n)/4;return{type:"Polygon",coordinates:[[[n,a],[n,o],[n+s,o],[n+2*s,o],[n+3*s,o],[i,o],[i,a],[i-s,a],[i-2*s,a],[i-3*s,a],[n,a]]]}}e.exports=function(t){return new M(t)},S.plot=function(t,e,r){var n=this,i=e[this.id],a=[],o=!1;for(var s in w.layerNameToAdjective)if("frame"!==s&&i["show"+s]){o=!0;break}for(var l=0;l0&&a._module.calcGeoJSON(i,e)}if(!this.updateProjection(t,e)){this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r),this.scope=r.scope,this.updateBaseLayers(e,r),this.updateDims(e,r),this.updateFx(e,r),d.generalUpdatePerTraceModule(this.graphDiv,this,t,r);var o=this.layers.frontplot.select(".scatterlayer");this.dataPoints.point=o.selectAll(".point"),this.dataPoints.text=o.selectAll("text"),this.dataPaths.line=o.selectAll(".js-line");var s=this.layers.backplot.select(".choroplethlayer");this.dataPaths.choropleth=s.selectAll("path"),this.render()}},S.updateProjection=function(t,e){var r=this.graphDiv,n=e[this.id],l=e._size,u=n.domain,f=n.projection,h=n.lonaxis,p=n.lataxis,d=h._ax,m=p._ax,v=this.projection=function(t){var e=t.projection,r=e.type,n=w.projNames[r];n="geo"+c.titleCase(n);for(var l=(i[n]||s[n])(),u=t._isSatellite?180*Math.acos(1/e.distance)/Math.PI:t._isClipped?w.lonaxisSpan[r]/2:null,f=["center","rotate","parallels","clipExtent"],h=function(t){return t?l:[]},p=0;pu*Math.PI/180}return!1},l.getPath=function(){return a().projection(l)},l.getBounds=function(t){return l.getPath().bounds(t)},l.precision(w.precision),t._isSatellite&&l.tilt(e.tilt).distance(e.distance);u&&l.clipAngle(u-w.clipPad);return l}(n),y=[[l.l+l.w*u.x[0],l.t+l.h*(1-u.y[1])],[l.l+l.w*u.x[1],l.t+l.h*(1-u.y[0])]],x=n.center||{},b=f.rotation||{},_=h.range||[],T=p.range||[];if(n.fitbounds){d._length=y[1][0]-y[0][0],m._length=y[1][1]-y[0][1],d.range=g(r,d),m.range=g(r,m);var k=(d.range[0]+d.range[1])/2,A=(m.range[0]+m.range[1])/2;if(n._isScoped)x={lon:k,lat:A};else if(n._isClipped){x={lon:k,lat:A},b={lon:k,lat:A,roll:b.roll};var M=f.type,S=w.lonaxisSpan[M]/2||180,L=w.lataxisSpan[M]/2||90;_=[k-S,k+S],T=[A-L,A+L]}else x={lon:k,lat:A},b={lon:k,lat:b.lat,roll:b.roll}}v.center([x.lon-b.lon,x.lat-b.lat]).rotate([-b.lon,-b.lat,b.roll]).parallels(f.parallels);var C=E(_,T);v.fitExtent(y,C);var P=this.bounds=v.getBounds(C),I=this.fitScale=v.scale(),O=v.translate();if(n.fitbounds){var z=v.getBounds(E(d.range,m.range)),D=Math.min((P[1][0]-P[0][0])/(z[1][0]-z[0][0]),(P[1][1]-P[0][1])/(z[1][1]-z[0][1]));isFinite(D)?v.scale(D*I):c.warn("Something went wrong during"+this.id+"fitbounds computations.")}else v.scale(f.scale*I);var R=this.midPt=[(P[0][0]+P[1][0])/2,(P[0][1]+P[1][1])/2];if(v.translate([O[0]+(R[0]-O[0]),O[1]+(R[1]-O[1])]).clipExtent(P),n._isAlbersUsa){var F=v([x.lon,x.lat]),B=v.translate();v.translate([B[0]-(F[0]-B[0]),B[1]-(F[1]-B[1])])}},S.updateBaseLayers=function(t,e){var r=this,i=r.topojson,a=r.layers,o=r.basePaths;function s(t){return"lonaxis"===t||"lataxis"===t}function l(t){return Boolean(w.lineLayers[t])}function c(t){return Boolean(w.fillLayers[t])}var u=(this.hasChoropleth?w.layersForChoropleth:w.layers).filter((function(t){return l(t)||c(t)?e["show"+t]:!s(t)||e[t].showgrid})),p=r.framework.selectAll(".layer").data(u,String);p.exit().each((function(t){delete a[t],delete o[t],n.select(this).remove()})),p.enter().append("g").attr("class",(function(t){return"layer "+t})).each((function(t){var e=a[t]=n.select(this);"bg"===t?r.bgRect=e.append("rect").style("pointer-events","all"):s(t)?o[t]=e.append("path").style("fill","none"):"backplot"===t?e.append("g").classed("choroplethlayer",!0):"frontplot"===t?e.append("g").classed("scatterlayer",!0):l(t)?o[t]=e.append("path").style("fill","none").style("stroke-miterlimit",2):c(t)&&(o[t]=e.append("path").style("stroke","none"))})),p.order(),p.each((function(r){var n=o[r],a=w.layerNameToAdjective[r];"frame"===r?n.datum(w.sphereSVG):l(r)||c(r)?n.datum(A(i,i.objects[r])):s(r)&&n.datum(function(t,e,r){var n,i,a,o=e[t],s=w.scopeDefaults[e.scope];"lonaxis"===t?(n=s.lonaxisRange,i=s.lataxisRange,a=function(t,e){return[t,e]}):"lataxis"===t&&(n=s.lataxisRange,i=s.lonaxisRange,a=function(t,e){return[e,t]});var l={type:"linear",range:[n[0],n[1]-1e-6],tick0:o.tick0,dtick:o.dtick};m.setConvert(l,r);var c=m.calcTicks(l);e.isScoped||"lonaxis"!==t||c.pop();for(var u=c.length,f=new Array(u),h=0;h-1&&b(n.event,i,[r.xaxis],[r.yaxis],r.id,f),s.indexOf("event")>-1&&p.click(i,n.event))}))}function h(t){return r.projection.invert([t[0]+r.xaxis._offset,t[1]+r.yaxis._offset])}},S.makeFramework=function(){var t=this,e=t.graphDiv,r=e._fullLayout,i="clip"+r._uid+t.id;t.clipDef=r._clips.append("clipPath").attr("id",i),t.clipRect=t.clipDef.append("rect"),t.framework=n.select(t.container).append("g").attr("class","geo "+t.id).call(h.setClipUrl,i,e),t.project=function(e){var r=t.projection(e);return r?[r[0]-t.xaxis._offset,r[1]-t.yaxis._offset]:[null,null]},t.xaxis={_id:"x",c2p:function(e){return t.project(e)[0]}},t.yaxis={_id:"y",c2p:function(e){return t.project(e)[1]}},t.mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},m.setConvert(t.mockAxis,r)},S.saveViewInitial=function(t){var e,r=t.center||{},n=t.projection,i=n.rotation||{};this.viewInitial={fitbounds:t.fitbounds,"projection.scale":n.scale},e=t._isScoped?{"center.lon":r.lon,"center.lat":r.lat}:t._isClipped?{"projection.rotation.lon":i.lon,"projection.rotation.lat":i.lat}:{"center.lon":r.lon,"center.lat":r.lat,"projection.rotation.lon":i.lon},c.extendFlat(this.viewInitial,e)},S.render=function(){var t,e=this.projection,r=e.getPath();function n(t){var r=e(t.lonlat);return r?u(r[0],r[1]):null}function i(t){return e.isLonLatOverEdges(t.lonlat)?"none":null}for(t in this.basePaths)this.basePaths[t].attr("d",r);for(t in this.dataPaths)this.dataPaths[t].attr("d",(function(t){return r(t.geojson)}));for(t in this.dataPoints)this.dataPoints[t].attr("display",i).attr("transform",n)}},{"../../components/color":639,"../../components/dragelement":658,"../../components/drawing":661,"../../components/fx":679,"../../lib":776,"../../lib/geo_location_utils":769,"../../lib/topojson_utils":805,"../../registry":904,"../cartesian/autorange":826,"../cartesian/axes":827,"../cartesian/select":847,"../plots":890,"./constants":858,"./zoom":863,"@plotly/d3":58,"d3-geo":162,"d3-geo-projection":161,"topojson-client":575}],860:[function(t,e,r){"use strict";var n=t("../../plots/get_data").getSubplotCalcData,i=t("../../lib").counterRegex,a=t("./geo"),o="geo",s=i(o),l={};l.geo={valType:"subplotid",dflt:o,editType:"calc"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:t("./layout_attributes"),supplyLayoutDefaults:t("./layout_defaults"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots.geo,s=0;s0&&P<0&&(P+=360);var I,O,z,D=(C+P)/2;if(!p){var R=d?f.projRotate:[D,0,0];I=r("projection.rotation.lon",R[0]),r("projection.rotation.lat",R[1]),r("projection.rotation.roll",R[2]),r("showcoastlines",!d&&x)&&(r("coastlinecolor"),r("coastlinewidth")),r("showocean",!!x&&void 0)&&r("oceancolor")}(p?(O=-96.6,z=38.7):(O=d?D:I,z=(L[0]+L[1])/2),r("center.lon",O),r("center.lat",z),m&&(r("projection.tilt"),r("projection.distance")),g)&&r("projection.parallels",f.projParallels||[0,60]);r("projection.scale"),r("showland",!!x&&void 0)&&r("landcolor"),r("showlakes",!!x&&void 0)&&r("lakecolor"),r("showrivers",!!x&&void 0)&&(r("rivercolor"),r("riverwidth")),r("showcountries",d&&"usa"!==u&&x)&&(r("countrycolor"),r("countrywidth")),("usa"===u||"north america"===u&&50===c)&&(r("showsubunits",x),r("subunitcolor"),r("subunitwidth")),d||r("showframe",x)&&(r("framecolor"),r("framewidth")),r("bgcolor"),r("fitbounds")&&(delete e.projection.scale,d?(delete e.center.lon,delete e.center.lat):v?(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon,delete e.projection.rotation.lat,delete e.lonaxis.range,delete e.lataxis.range):(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon))}e.exports=function(t,e,r){i(t,e,r,{type:"geo",attributes:s,handleDefaults:c,fullData:r,partition:"y"})}},{"../../lib":776,"../get_data":864,"../subplot_defaults":898,"./constants":858,"./layout_attributes":861}],863:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../../registry"),o=Math.PI/180,s=180/Math.PI,l={cursor:"pointer"},c={cursor:"auto"};function u(t,e){return n.behavior.zoom().translate(e.translate()).scale(e.scale())}function f(t,e,r){var n=t.id,o=t.graphDiv,s=o.layout,l=s[n],c=o._fullLayout,u=c[n],f={},h={};function p(t,e){f[n+"."+t]=i.nestedProperty(l,t).get(),a.call("_storeDirectGUIEdit",s,c._preGUI,f);var r=i.nestedProperty(u,t);r.get()!==e&&(r.set(e),i.nestedProperty(l,t).set(e),h[n+"."+t]=e)}r(p),p("projection.scale",e.scale()/t.fitScale),p("fitbounds",!1),o.emit("plotly_relayout",h)}function h(t,e){var r=u(0,e);function i(r){var n=e.invert(t.midPt);r("center.lon",n[0]),r("center.lat",n[1])}return r.on("zoomstart",(function(){n.select(this).style(l)})).on("zoom",(function(){e.scale(n.event.scale).translate(n.event.translate),t.render();var r=e.invert(t.midPt);t.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":e.scale()/t.fitScale,"geo.center.lon":r[0],"geo.center.lat":r[1]})})).on("zoomend",(function(){n.select(this).style(c),f(t,e,i)})),r}function p(t,e){var r,i,a,o,s,h,p,d,m,g=u(0,e);function v(t){return e.invert(t)}function y(r){var n=e.rotate(),i=e.invert(t.midPt);r("projection.rotation.lon",-n[0]),r("center.lon",i[0]),r("center.lat",i[1])}return g.on("zoomstart",(function(){n.select(this).style(l),r=n.mouse(this),i=e.rotate(),a=e.translate(),o=i,s=v(r)})).on("zoom",(function(){if(h=n.mouse(this),function(t){var r=v(t);if(!r)return!0;var n=e(r);return Math.abs(n[0]-t[0])>2||Math.abs(n[1]-t[1])>2}(r))return g.scale(e.scale()),void g.translate(e.translate());e.scale(n.event.scale),e.translate([a[0],n.event.translate[1]]),s?v(h)&&(d=v(h),p=[o[0]+(d[0]-s[0]),i[1],i[2]],e.rotate(p),o=p):s=v(r=h),m=!0,t.render();var l=e.rotate(),c=e.invert(t.midPt);t.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":e.scale()/t.fitScale,"geo.center.lon":c[0],"geo.center.lat":c[1],"geo.projection.rotation.lon":-l[0]})})).on("zoomend",(function(){n.select(this).style(c),m&&f(t,e,y)})),g}function d(t,e){var r,i={r:e.rotate(),k:e.scale()},a=u(0,e),o=function(t){var e=0,r=arguments.length,i=[];for(;++ed?(a=(f>0?90:-90)-p,i=0):(a=Math.asin(f/d)*s-p,i=Math.sqrt(d*d-f*f));var m=180-a-2*p,g=(Math.atan2(h,u)-Math.atan2(c,i))*s,v=(Math.atan2(h,u)-Math.atan2(c,-i))*s;return b(r[0],r[1],a,g)<=b(r[0],r[1],m,v)?[a,g,r[2]]:[m,v,r[2]]}function b(t,e,r,n){var i=_(r-t),a=_(n-e);return Math.sqrt(i*i+a*a)}function _(t){return(t%360+540)%360-180}function w(t,e,r){var n=r*o,i=t.slice(),a=0===e?1:0,s=2===e?1:2,l=Math.cos(n),c=Math.sin(n);return i[a]=t[a]*l-t[s]*c,i[s]=t[s]*l+t[a]*c,i}function T(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*s,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*s,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*s]}function k(t,e){for(var r=0,n=0,i=t.length;nMath.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(a)*_*(s>=0?1:-1),c.boxEnd[1]l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(_))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/_*(a>=0?1:-1),c.boxEnd[0]l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(_)))}}else c.boxEnabled?(a=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],a||s?(a&&(g(0,c.boxStart[0],c.boxEnd[0]),t.xaxis.autorange=!1),s&&(g(1,c.boxStart[1],c.boxEnd[1]),t.yaxis.autorange=!1),t.relayoutCallback()):t.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case"pan":c.boxEnabled=!1,c.boxInited=!1,e?(c.panning||(c.dragStart[0]=n,c.dragStart[1]=i),Math.abs(c.dragStart[0]-n).999&&(m="turntable"):m="turntable")}else m="turntable";r("dragmode",m),r("hovermode",n.getDfltFromLayout("hovermode"))}e.exports=function(t,e,r){var i=e._basePlotModules.length>1;o(t,e,r,{type:"gl3d",attributes:l,handleDefaults:u,fullLayout:e,font:e.font,fullData:r,getDfltFromLayout:function(e){if(!i)return n.validate(t[e],l[e])?t[e]:void 0},autotypenumbersDflt:e.autotypenumbers,paper_bgcolor:e.paper_bgcolor,calendar:e.calendar})}},{"../../../components/color":639,"../../../lib":776,"../../../registry":904,"../../get_data":864,"../../subplot_defaults":898,"./axis_defaults":872,"./layout_attributes":875}],875:[function(t,e,r){"use strict";var n=t("./axis_attributes"),i=t("../../domain").attributes,a=t("../../../lib/extend").extendFlat,o=t("../../../lib").counterRegex;function s(t,e,r){return{x:{valType:"number",dflt:t,editType:"camera"},y:{valType:"number",dflt:e,editType:"camera"},z:{valType:"number",dflt:r,editType:"camera"},editType:"camera"}}e.exports={_arrayAttrRegexps:[o("scene",".annotations",!0)],bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"plot"},camera:{up:a(s(0,0,1),{}),center:a(s(0,0,0),{}),eye:a(s(1.25,1.25,1.25),{}),projection:{type:{valType:"enumerated",values:["perspective","orthographic"],dflt:"perspective",editType:"calc"},editType:"calc"},editType:"camera"},domain:i({name:"scene",editType:"plot"}),aspectmode:{valType:"enumerated",values:["auto","cube","data","manual"],dflt:"auto",editType:"plot",impliedEdits:{"aspectratio.x":void 0,"aspectratio.y":void 0,"aspectratio.z":void 0}},aspectratio:{x:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},y:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},z:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},editType:"plot",impliedEdits:{aspectmode:"manual"}},xaxis:n,yaxis:n,zaxis:n,dragmode:{valType:"enumerated",values:["orbit","turntable","zoom","pan",!1],editType:"plot"},hovermode:{valType:"enumerated",values:["closest",!1],dflt:"closest",editType:"modebar"},uirevision:{valType:"any",editType:"none"},editType:"plot",_deprecated:{cameraposition:{valType:"info_array",editType:"camera"}}}},{"../../../lib":776,"../../../lib/extend":766,"../../domain":855,"./axis_attributes":871}],876:[function(t,e,r){"use strict";var n=t("../../../lib/str2rgbarray"),i=["xaxis","yaxis","zaxis"];function a(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}a.prototype.merge=function(t){for(var e=0;e<3;++e){var r=t[i[e]];r.visible?(this.enabled[e]=r.showspikes,this.colors[e]=n(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness):(this.enabled[e]=!1,this.drawSides[e]=!1)}},e.exports=function(t){var e=new a;return e.merge(t),e}},{"../../../lib/str2rgbarray":801}],877:[function(t,e,r){"use strict";e.exports=function(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,s=t.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[a[c]];if(u._length=(r[c].hi-r[c].lo)*r[c].pixelsPerDataUnit/t.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=r[c].lo/t.dataScale[c],u.range[1]=r[c].hi/t.dataScale[c],u._m=1/(t.dataScale[c]*r[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var f=u.tickmode;if("auto"===u.tickmode){u.tickmode="linear";var h=u.nticks||i.constrain(u._length/40,4,9);n.autoTicks(u,Math.abs(u.range[1]-u.range[0])/h)}for(var p=n.calcTicks(u,{msUTC:!0}),d=0;d/g," "));l[c]=p,u.tickmode=f}}e.ticks=l;for(c=0;c<3;++c){o[c]=.5*(t.glplot.bounds[0][c]+t.glplot.bounds[1][c]);for(d=0;d<2;++d)e.bounds[d][c]=t.glplot.bounds[d][c]}t.contourLevels=function(t){for(var e=new Array(3),r=0;r<3;++r){for(var n=t[r],i=new Array(n.length),a=0;ar.deltaY?1.1:1/1.1,a=t.glplot.getAspectratio();t.glplot.setAspectratio({x:n*a.x,y:n*a.y,z:n*a.z})}i(t)}}),!!c&&{passive:!1}),t.glplot.canvas.addEventListener("mousemove",(function(){if(!1!==t.fullSceneLayout.dragmode&&0!==t.camera.mouseListener.buttons){var e=n();t.graphDiv.emit("plotly_relayouting",e)}})),t.staticMode||t.glplot.canvas.addEventListener("webglcontextlost",(function(r){e&&e.emit&&e.emit("plotly_webglcontextlost",{event:r,layer:t.id})}),!1)),t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=function(){t.render()},!0},w.render=function(){var t,e=this,r=e.graphDiv,n=e.svgContainer,i=e.container.getBoundingClientRect();r._fullLayout._calcInverseTransform(r);var a=r._fullLayout._invScaleX,o=r._fullLayout._invScaleY,s=i.width*a,l=i.height*o;n.setAttributeNS(null,"viewBox","0 0 "+s+" "+l),n.setAttributeNS(null,"width",s),n.setAttributeNS(null,"height",l),b(e),e.glplot.axes.update(e.axesOptions);for(var c,u=Object.keys(e.traces),h=null,m=e.glplot.selection,g=0;g")):"isosurface"===t.type||"volume"===t.type?(k.valueLabel=p.hoverLabelText(e._mockAxis,e._mockAxis.d2l(m.traceCoordinate[3]),t.valuehoverformat),E.push("value: "+k.valueLabel),m.textLabel&&E.push(m.textLabel),_=E.join("
")):_=m.textLabel;var L={x:m.traceCoordinate[0],y:m.traceCoordinate[1],z:m.traceCoordinate[2],data:w._input,fullData:w,curveNumber:w.index,pointNumber:T};d.appendArrayPointValue(L,w,T),t._module.eventData&&(L=w._module.eventData(L,m,w,{},T));var C={points:[L]};if(e.fullSceneLayout.hovermode){var P=[];d.loneHover({trace:w,x:(.5+.5*x[0]/x[3])*s,y:(.5-.5*x[1]/x[3])*l,xLabel:k.xLabel,yLabel:k.yLabel,zLabel:k.zLabel,text:_,name:h.name,color:d.castHoverOption(w,T,"bgcolor")||h.color,borderColor:d.castHoverOption(w,T,"bordercolor"),fontFamily:d.castHoverOption(w,T,"font.family"),fontSize:d.castHoverOption(w,T,"font.size"),fontColor:d.castHoverOption(w,T,"font.color"),nameLength:d.castHoverOption(w,T,"namelength"),textAlign:d.castHoverOption(w,T,"align"),hovertemplate:f.castOption(w,T,"hovertemplate"),hovertemplateLabels:f.extendFlat({},L,k),eventData:[L]},{container:n,gd:r,inOut_bbox:P}),L.bbox=P[0]}m.buttons&&m.distance<5?r.emit("plotly_click",C):r.emit("plotly_hover",C),c=C}else d.loneUnhover(n),r.emit("plotly_unhover",c);e.drawAnnotations(e)},w.recoverContext=function(){var t=this;t.glplot.dispose();var e=function(){t.glplot.gl.isContextLost()?requestAnimationFrame(e):t.initializeGLPlot()?t.plot.apply(t,t.plotArgs):f.error("Catastrophic and unrecoverable WebGL error. Context lost.")};requestAnimationFrame(e)};var k=["xaxis","yaxis","zaxis"];function A(t,e,r){for(var n=t.fullSceneLayout,i=0;i<3;i++){var a=k[i],o=a.charAt(0),s=n[a],l=e[o],c=e[o+"calendar"],u=e["_"+o+"length"];if(f.isArrayOrTypedArray(l))for(var h,p=0;p<(u||l.length);p++)if(f.isArrayOrTypedArray(l[p]))for(var d=0;dg[1][a])g[0][a]=-1,g[1][a]=1;else{var L=g[1][a]-g[0][a];g[0][a]-=L/32,g[1][a]+=L/32}if("reversed"===s.autorange){var C=g[0][a];g[0][a]=g[1][a],g[1][a]=C}}else{var P=s.range;g[0][a]=s.r2l(P[0]),g[1][a]=s.r2l(P[1])}g[0][a]===g[1][a]&&(g[0][a]-=1,g[1][a]+=1),v[a]=g[1][a]-g[0][a],this.glplot.setBounds(a,{min:g[0][a]*h[a],max:g[1][a]*h[a]})}var I=c.aspectmode;if("cube"===I)d=[1,1,1];else if("manual"===I){var O=c.aspectratio;d=[O.x,O.y,O.z]}else{if("auto"!==I&&"data"!==I)throw new Error("scene.js aspectRatio was not one of the enumerated types");var z=[1,1,1];for(a=0;a<3;++a){var D=y[l=(s=c[k[a]]).type];z[a]=Math.pow(D.acc,1/D.count)/h[a]}d="data"===I||Math.max.apply(null,z)/Math.min.apply(null,z)<=4?z:[1,1,1]}c.aspectratio.x=u.aspectratio.x=d[0],c.aspectratio.y=u.aspectratio.y=d[1],c.aspectratio.z=u.aspectratio.z=d[2],this.glplot.setAspectratio(c.aspectratio),this.viewInitial.aspectratio||(this.viewInitial.aspectratio={x:c.aspectratio.x,y:c.aspectratio.y,z:c.aspectratio.z}),this.viewInitial.aspectmode||(this.viewInitial.aspectmode=c.aspectmode);var R=c.domain||null,F=e._size||null;if(R&&F){var B=this.container.style;B.position="absolute",B.left=F.l+R.x[0]*F.w+"px",B.top=F.t+(1-R.y[1])*F.h+"px",B.width=F.w*(R.x[1]-R.x[0])+"px",B.height=F.h*(R.y[1]-R.y[0])+"px"}this.glplot.redraw()}},w.destroy=function(){this.glplot&&(this.camera.mouseListener.enabled=!1,this.container.removeEventListener("wheel",this.camera.wheelListener),this.camera=null,this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null)},w.getCamera=function(){var t;return this.camera.view.recalcMatrix(this.camera.view.lastT()),{up:{x:(t=this.camera).up[0],y:t.up[1],z:t.up[2]},center:{x:t.center[0],y:t.center[1],z:t.center[2]},eye:{x:t.eye[0],y:t.eye[1],z:t.eye[2]},projection:{type:!0===t._ortho?"orthographic":"perspective"}}},w.setViewport=function(t){var e,r=t.camera;this.camera.lookAt.apply(this,[[(e=r).eye.x,e.eye.y,e.eye.z],[e.center.x,e.center.y,e.center.z],[e.up.x,e.up.y,e.up.z]]),this.glplot.setAspectratio(t.aspectratio),"orthographic"===r.projection.type!==this.camera._ortho&&(this.glplot.redraw(),this.glplot.clearRGBA(),this.glplot.dispose(),this.initializeGLPlot())},w.isCameraChanged=function(t){var e=this.getCamera(),r=f.nestedProperty(t,this.id+".camera").get();function n(t,e,r,n){var i=["up","center","eye"],a=["x","y","z"];return e[i[r]]&&t[i[r]][a[n]]===e[i[r]][a[n]]}var i=!1;if(void 0===r)i=!0;else{for(var a=0;a<3;a++)for(var o=0;o<3;o++)if(!n(e,r,a,o)){i=!0;break}(!r.projection||e.projection&&e.projection.type!==r.projection.type)&&(i=!0)}return i},w.isAspectChanged=function(t){var e=this.glplot.getAspectratio(),r=f.nestedProperty(t,this.id+".aspectratio").get();return void 0===r||r.x!==e.x||r.y!==e.y||r.z!==e.z},w.saveLayout=function(t){var e,r,n,i,a,o,s=this.fullLayout,l=this.isCameraChanged(t),c=this.isAspectChanged(t),h=l||c;if(h){var p={};if(l&&(e=this.getCamera(),n=(r=f.nestedProperty(t,this.id+".camera")).get(),p[this.id+".camera"]=n),c&&(i=this.glplot.getAspectratio(),o=(a=f.nestedProperty(t,this.id+".aspectratio")).get(),p[this.id+".aspectratio"]=o),u.call("_storeDirectGUIEdit",t,s._preGUI,p),l)r.set(e),f.nestedProperty(s,this.id+".camera").set(e);if(c)a.set(i),f.nestedProperty(s,this.id+".aspectratio").set(i),this.glplot.redraw()}return h},w.updateFx=function(t,e){var r=this.camera;if(r)if("orbit"===t)r.mode="orbit",r.keyBindingMode="rotate";else if("turntable"===t){r.up=[0,0,1],r.mode="turntable",r.keyBindingMode="rotate";var n=this.graphDiv,i=n._fullLayout,a=this.fullSceneLayout.camera,o=a.up.x,s=a.up.y,l=a.up.z;if(l/Math.sqrt(o*o+s*s+l*l)<.999){var c=this.id+".camera.up",h={x:0,y:0,z:1},p={};p[c]=h;var d=n.layout;u.call("_storeDirectGUIEdit",d,i._preGUI,p),a.up=h,f.nestedProperty(d,c).set(h)}}else r.keyBindingMode=t;this.fullSceneLayout.hovermode=e},w.toImage=function(t){t||(t="png"),this.staticMode&&this.container.appendChild(n),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,i=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var a=new Uint8Array(r*i*4);e.readPixels(0,0,r,i,e.RGBA,e.UNSIGNED_BYTE,a),function(t,e,r){for(var n=0,i=r-1;n0)for(var s=255/o,l=0;l<3;++l)t[a+l]=Math.min(s*t[a+l],255)}}(a,r,i);var o=document.createElement("canvas");o.width=r,o.height=i;var s,l=o.getContext("2d"),c=l.createImageData(r,i);switch(c.data.set(a),l.putImageData(c,0,0),t){case"jpeg":s=o.toDataURL("image/jpeg");break;case"webp":s=o.toDataURL("image/webp");break;default:s=o.toDataURL("image/png")}return this.staticMode&&this.container.removeChild(n),s},w.setConvert=function(){for(var t=0;t<3;t++){var e=this.fullSceneLayout[k[t]];p.setConvert(e,this.fullLayout),e.setScale=f.noop}},w.make4thDimension=function(){var t=this.graphDiv._fullLayout;this._mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},p.setConvert(this._mockAxis,t)},e.exports=_},{"../../components/fx":679,"../../lib":776,"../../lib/show_no_webgl_msg":798,"../../lib/str2rgbarray":801,"../../plots/cartesian/axes":827,"../../registry":904,"./layout/convert":873,"./layout/spikes":876,"./layout/tick_marks":877,"./project":878,"gl-plot3d":312,"has-passive-events":426,"webgl-context":602}],880:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){n=n||t.length;for(var i=new Array(n),a=0;aOpenStreetMap contributors',a=['\xa9 Carto',i].join(" "),o=['Map tiles by Stamen Design','under CC BY 3.0',"|",'Data by OpenStreetMap contributors','under ODbL'].join(" "),s={"open-street-map":{id:"osm",version:8,sources:{"plotly-osm-tiles":{type:"raster",attribution:i,tiles:["https://a.tile.openstreetmap.org/{z}/{x}/{y}.png","https://b.tile.openstreetmap.org/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-osm-tiles",type:"raster",source:"plotly-osm-tiles",minzoom:0,maxzoom:22}]},"white-bg":{id:"white-bg",version:8,sources:{},layers:[{id:"white-bg",type:"background",paint:{"background-color":"#FFFFFF"},minzoom:0,maxzoom:22}]},"carto-positron":{id:"carto-positron",version:8,sources:{"plotly-carto-positron":{type:"raster",attribution:a,tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-positron",type:"raster",source:"plotly-carto-positron",minzoom:0,maxzoom:22}]},"carto-darkmatter":{id:"carto-darkmatter",version:8,sources:{"plotly-carto-darkmatter":{type:"raster",attribution:a,tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-darkmatter",type:"raster",source:"plotly-carto-darkmatter",minzoom:0,maxzoom:22}]},"stamen-terrain":{id:"stamen-terrain",version:8,sources:{"plotly-stamen-terrain":{type:"raster",attribution:o,tiles:["https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-terrain",type:"raster",source:"plotly-stamen-terrain",minzoom:0,maxzoom:22}]},"stamen-toner":{id:"stamen-toner",version:8,sources:{"plotly-stamen-toner":{type:"raster",attribution:o,tiles:["https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-toner",type:"raster",source:"plotly-stamen-toner",minzoom:0,maxzoom:22}]},"stamen-watercolor":{id:"stamen-watercolor",version:8,sources:{"plotly-stamen-watercolor":{type:"raster",attribution:['Map tiles by Stamen Design','under CC BY 3.0',"|",'Data by OpenStreetMap contributors','under CC BY SA'].join(" "),tiles:["https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-watercolor",type:"raster",source:"plotly-stamen-watercolor",minzoom:0,maxzoom:22}]}},l=n(s);e.exports={requiredVersion:"1.10.1",styleUrlPrefix:"mapbox://styles/mapbox/",styleUrlSuffix:"v9",styleValuesMapbox:["basic","streets","outdoors","light","dark","satellite","satellite-streets"],styleValueDflt:"basic",stylesNonMapbox:s,styleValuesNonMapbox:l,traceLayerPrefix:"plotly-trace-layer-",layoutLayerPrefix:"plotly-layout-layer-",wrongVersionErrorMsg:["Your custom plotly.js bundle is not using the correct mapbox-gl version","Please install mapbox-gl@1.10.1."].join("\n"),noAccessTokenErrorMsg:["Missing Mapbox access token.","Mapbox trace type require a Mapbox access token to be registered.","For example:"," Plotly.newPlot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });","More info here: https://www.mapbox.com/help/define-access-token/"].join("\n"),missingStyleErrorMsg:["No valid mapbox style found, please set `mapbox.style` to one of:",l.join(", "),"or register a Mapbox access token to use a Mapbox-served style."].join("\n"),multipleTokensErrorMsg:["Set multiple mapbox access token across different mapbox subplot,","using first token found as mapbox-gl does not allow multipleaccess tokens on the same page."].join("\n"),mapOnErrorMsg:"Mapbox error.",mapboxLogo:{path0:"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z",path1:"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z",path2:"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z",polygon:"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34"},styleRules:{map:"overflow:hidden;position:relative;","missing-css":"display:none;",canary:"background-color:salmon;","ctrl-bottom-left":"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;","ctrl-bottom-right":"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;",ctrl:"clear: both; pointer-events: auto; transform: translate(0, 0);","ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner":"display: none;","ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner":"display: block; margin-top:2px","ctrl-attrib.mapboxgl-compact:hover":"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;","ctrl-attrib.mapboxgl-compact::after":'content: ""; cursor: pointer; position: absolute; background-image: url(\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E %3Cpath fill="%23333333" fill-rule="evenodd" d="M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0"/%3E %3C/svg%3E\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',"ctrl-attrib.mapboxgl-compact":"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;","ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; right: 0","ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; left: 0","ctrl-bottom-left .mapboxgl-ctrl":"margin: 0 0 10px 10px; float: left;","ctrl-bottom-right .mapboxgl-ctrl":"margin: 0 10px 10px 0; float: right;","ctrl-attrib":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a:hover":"color: inherit; text-decoration: underline;","ctrl-attrib .mapbox-improve-map":"font-weight: bold; margin-left: 2px;","attrib-empty":"display: none;","ctrl-logo":'display:block; width: 21px; height: 21px; background-image: url(\'data:image/svg+xml;charset=utf-8,%3C?xml version="1.0" encoding="utf-8"?%3E %3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 21" style="enable-background:new 0 0 21 21;" xml:space="preserve"%3E%3Cg transform="translate(0,0.01)"%3E%3Cpath d="m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z" style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3Cpath d="M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpath d="M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpolygon points="11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 " style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3C/g%3E%3C/svg%3E\')'}}},{"../../lib/sort_object_keys":799}],883:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){var r=t.split(" "),i=r[0],a=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,c=["",""],u=[0,0];switch(i){case"top":c[0]="top",u[1]=-l;break;case"bottom":c[0]="bottom",u[1]=l}switch(a){case"left":c[1]="right",u[0]=-s;break;case"right":c[1]="left",u[0]=s}return{anchor:c[0]&&c[1]?c.join("-"):c[0]?c[0]:c[1]?c[1]:"center",offset:u}}},{"../../lib":776}],884:[function(t,e,r){"use strict";var n=t("mapbox-gl/dist/mapbox-gl-unminified"),i=t("../../lib"),a=i.strTranslate,o=i.strScale,s=t("../../plots/get_data").getSubplotCalcData,l=t("../../constants/xmlns_namespaces"),c=t("@plotly/d3"),u=t("../../components/drawing"),f=t("../../lib/svg_text_utils"),h=t("./mapbox"),p=r.constants=t("./constants");function d(t){return"string"==typeof t&&(-1!==p.styleValuesMapbox.indexOf(t)||0===t.indexOf("mapbox://"))}r.name="mapbox",r.attr="subplot",r.idRoot="mapbox",r.idRegex=r.attrRegex=i.counterRegex("mapbox"),r.attributes={subplot:{valType:"subplotid",dflt:"mapbox",editType:"calc"}},r.layoutAttributes=t("./layout_attributes"),r.supplyLayoutDefaults=t("./layout_defaults"),r.plot=function(t){var e=t._fullLayout,r=t.calcdata,a=e._subplots.mapbox;if(n.version!==p.requiredVersion)throw new Error(p.wrongVersionErrorMsg);var o=function(t,e){var r=t._fullLayout;if(""===t._context.mapboxAccessToken)return"";for(var n=[],a=[],o=!1,s=!1,l=0;l1&&i.warn(p.multipleTokensErrorMsg),n[0]):(a.length&&i.log(["Listed mapbox access token(s)",a.join(","),"but did not use a Mapbox map style, ignoring token(s)."].join(" ")),"")}(t,a);n.accessToken=o;for(var l=0;l_/2){var w=v.split("|").join("
");x.text(w).attr("data-unformatted",w).call(f.convertToTspans,t),b=u.bBox(x.node())}x.attr("transform",a(-3,8-b.height)),y.insert("rect",".static-attribution").attr({x:-b.width-6,y:-b.height-3,width:b.width+6,height:b.height+3,fill:"rgba(255, 255, 255, 0.75)"});var T=1;b.width+6>_&&(T=_/(b.width+6));var k=[n.l+n.w*h.x[1],n.t+n.h*(1-h.y[0])];y.attr("transform",a(k[0],k[1])+o(T))}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n0){for(var r=0;r0}function u(t){var e={},r={};switch(t.type){case"circle":n.extendFlat(r,{"circle-radius":t.circle.radius,"circle-color":t.color,"circle-opacity":t.opacity});break;case"line":n.extendFlat(r,{"line-width":t.line.width,"line-color":t.color,"line-opacity":t.opacity,"line-dasharray":t.line.dash});break;case"fill":n.extendFlat(r,{"fill-color":t.color,"fill-outline-color":t.fill.outlinecolor,"fill-opacity":t.opacity});break;case"symbol":var i=t.symbol,o=a(i.textposition,i.iconsize);n.extendFlat(e,{"icon-image":i.icon+"-15","icon-size":i.iconsize/10,"text-field":i.text,"text-size":i.textfont.size,"text-anchor":o.anchor,"text-offset":o.offset,"symbol-placement":i.placement}),n.extendFlat(r,{"icon-color":t.color,"text-color":i.textfont.color,"text-opacity":t.opacity});break;case"raster":n.extendFlat(r,{"raster-fade-duration":0,"raster-opacity":t.opacity})}return{layout:e,paint:r}}l.update=function(t){this.visible?this.needsNewImage(t)?this.updateImage(t):this.needsNewSource(t)?(this.removeLayer(),this.updateSource(t),this.updateLayer(t)):this.needsNewLayer(t)?this.updateLayer(t):this.updateStyle(t):(this.updateSource(t),this.updateLayer(t)),this.visible=c(t)},l.needsNewImage=function(t){return this.subplot.map.getSource(this.idSource)&&"image"===this.sourceType&&"image"===t.sourcetype&&(this.source!==t.source||JSON.stringify(this.coordinates)!==JSON.stringify(t.coordinates))},l.needsNewSource=function(t){return this.sourceType!==t.sourcetype||JSON.stringify(this.source)!==JSON.stringify(t.source)||this.layerType!==t.type},l.needsNewLayer=function(t){return this.layerType!==t.type||this.below!==this.subplot.belowLookup["layout-"+this.index]},l.lookupBelow=function(){return this.subplot.belowLookup["layout-"+this.index]},l.updateImage=function(t){this.subplot.map.getSource(this.idSource).updateImage({url:t.source,coordinates:t.coordinates});var e=this.findFollowingMapboxLayerId(this.lookupBelow());null!==e&&this.subplot.map.moveLayer(this.idLayer,e)},l.updateSource=function(t){var e=this.subplot.map;if(e.getSource(this.idSource)&&e.removeSource(this.idSource),this.sourceType=t.sourcetype,this.source=t.source,c(t)){var r=function(t){var e,r=t.sourcetype,n=t.source,a={type:r};"geojson"===r?e="data":"vector"===r?e="string"==typeof n?"url":"tiles":"raster"===r?(e="tiles",a.tileSize=256):"image"===r&&(e="url",a.coordinates=t.coordinates);a[e]=n,t.sourceattribution&&(a.attribution=i(t.sourceattribution));return a}(t);e.addSource(this.idSource,r)}},l.findFollowingMapboxLayerId=function(t){if("traces"===t)for(var e=this.subplot.getMapLayers(),r=0;r1)for(r=0;r-1&&v(e.originalEvent,n,[r.xaxis],[r.yaxis],r.id,t),i.indexOf("event")>-1&&c.click(n,e.originalEvent)}}},_.updateFx=function(t){var e=this,r=e.map,n=e.gd;if(!e.isStatic){var a,o=t.dragmode;a=f(o)?function(t,r){(t.range={})[e.id]=[c([r.xmin,r.ymin]),c([r.xmax,r.ymax])]}:function(t,r,n){(t.lassoPoints={})[e.id]=n.filtered.map(c)};var s=e.dragOptions;e.dragOptions=i.extendDeep(s||{},{dragmode:t.dragmode,element:e.div,gd:n,plotinfo:{id:e.id,domain:t[e.id].domain,xaxis:e.xaxis,yaxis:e.yaxis,fillRangeItems:a},xaxes:[e.xaxis],yaxes:[e.yaxis],subplot:e.id}),r.off("click",e.onClickInPanHandler),p(o)||h(o)?(r.dragPan.disable(),r.on("zoomstart",e.clearSelect),e.dragOptions.prepFn=function(t,r,n){d(t,r,n,e.dragOptions,o)},l.init(e.dragOptions)):(r.dragPan.enable(),r.off("zoomstart",e.clearSelect),e.div.onmousedown=null,e.onClickInPanHandler=e.onClickInPanFn(e.dragOptions),r.on("click",e.onClickInPanHandler))}function c(t){var r=e.map.unproject(t);return[r.lng,r.lat]}},_.updateFramework=function(t){var e=t[this.id].domain,r=t._size,n=this.div.style;n.width=r.w*(e.x[1]-e.x[0])+"px",n.height=r.h*(e.y[1]-e.y[0])+"px",n.left=r.l+e.x[0]*r.w+"px",n.top=r.t+(1-e.y[1])*r.h+"px",this.xaxis._offset=r.l+e.x[0]*r.w,this.xaxis._length=r.w*(e.x[1]-e.x[0]),this.yaxis._offset=r.t+(1-e.y[1])*r.h,this.yaxis._length=r.h*(e.y[1]-e.y[0])},_.updateLayers=function(t){var e,r=t[this.id].layers,n=this.layerList;if(r.length!==n.length){for(e=0;e=e.width-20?(a["text-anchor"]="start",a.x=5):(a["text-anchor"]="end",a.x=e._paper.attr("width")-7),r.attr(a);var o=r.select(".js-link-to-tool"),s=r.select(".js-link-spacer"),l=r.select(".js-sourcelinks");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text("");var r=e.append("a").attr({"xlink:xlink:href":"#",class:"link--impt link--embedview","font-weight":"bold"}).text(t._context.linkText+" "+String.fromCharCode(187));if(t._context.sendData)r.on("click",(function(){b.sendDataToCloud(t)}));else{var n=window.location.pathname.split("/"),i=window.location.search;r.attr({"xlink:xlink:show":"new","xlink:xlink:href":"/"+n[2].split(".")[0]+"/"+n[1]+i})}}(t,o),s.text(o.text()&&l.text()?" - ":"")}},b.sendDataToCloud=function(t){var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL;if(e){t.emit("plotly_beforeexport");var r=n.select(t).append("div").attr("id","hiddenform").style("display","none"),i=r.append("form").attr({action:e+"/external",method:"post",target:"_blank"});return i.append("input").attr({type:"text",name:"data"}).node().value=b.graphJson(t,!1,"keepdata"),i.node().submit(),r.remove(),t.emit("plotly_afterexport"),!1}};var T=["days","shortDays","months","shortMonths","periods","dateTime","date","time","decimal","thousands","grouping","currency"],k=["year","month","dayMonth","dayMonthYear"];function A(t,e){var r=t._context.locale;r||(r="en-US");var n=!1,i={};function a(t){for(var r=!0,a=0;a1&&z.length>1){for(s.getComponentMethod("grid","sizeDefaults")(c,l),o=0;o15&&z.length>15&&0===l.shapes.length&&0===l.images.length,b.linkSubplots(h,l,f,n),b.cleanPlot(h,l,f,n);var N=!(!n._has||!n._has("gl2d")),j=!(!l._has||!l._has("gl2d")),U=!(!n._has||!n._has("cartesian"))||N,V=!(!l._has||!l._has("cartesian"))||j;U&&!V?n._bgLayer.remove():V&&!U&&(l._shouldCreateBgLayer=!0),n._zoomlayer&&!t._dragging&&d({_fullLayout:n}),function(t,e){var r,n=[];e.meta&&(r=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var i=0;i0){var f=1-2*s;n=Math.round(f*n),i=Math.round(f*i)}}var h=b.layoutAttributes.width.min,p=b.layoutAttributes.height.min;n1,m=!e.height&&Math.abs(r.height-i)>1;(m||d)&&(d&&(r.width=n),m&&(r.height=i)),t._initialAutoSize||(t._initialAutoSize={width:n,height:i}),b.sanitizeMargins(r)},b.supplyLayoutModuleDefaults=function(t,e,r,n){var i,a,o,l=s.componentsRegistry,c=e._basePlotModules,f=s.subplotsRegistry.cartesian;for(i in l)(o=l[i]).includeBasePlot&&o.includeBasePlot(t,e);for(var h in c.length||c.push(f),e._has("cartesian")&&(s.getComponentMethod("grid","contentDefaults")(t,e),f.finalizeSubplots(t,e)),e._subplots)e._subplots[h].sort(u.subplotSort);for(a=0;a1&&(r.l/=m,r.r/=m)}if(f){var g=(r.t+r.b)/f;g>1&&(r.t/=g,r.b/=g)}var v=void 0!==r.xl?r.xl:r.x,y=void 0!==r.xr?r.xr:r.x,x=void 0!==r.yt?r.yt:r.y,_=void 0!==r.yb?r.yb:r.y;h[e]={l:{val:v,size:r.l+d},r:{val:y,size:r.r+d},b:{val:_,size:r.b+d},t:{val:x,size:r.t+d}},p[e]=1}else delete h[e],delete p[e];if(!n._replotting)return b.doAutoMargin(t)}},b.doAutoMargin=function(t){var e=t._fullLayout,r=e.width,n=e.height;e._size||(e._size={}),C(e);var i=e._size,a=e.margin,l=u.extendFlat({},i),c=a.l,f=a.r,h=a.t,d=a.b,m=e._pushmargin,g=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var v in m)g[v]||delete m[v];for(var y in m.base={l:{val:0,size:c},r:{val:1,size:f},t:{val:1,size:h},b:{val:0,size:d}},m){var x=m[y].l||{},_=m[y].b||{},w=x.val,T=x.size,k=_.val,A=_.size;for(var M in m){if(o(T)&&m[M].r){var S=m[M].r.val,E=m[M].r.size;if(S>w){var L=(T*S+(E-r)*w)/(S-w),P=(E*(1-w)+(T-r)*(1-S))/(S-w);L+P>c+f&&(c=L,f=P)}}if(o(A)&&m[M].t){var I=m[M].t.val,O=m[M].t.size;if(I>k){var z=(A*I+(O-n)*k)/(I-k),D=(O*(1-k)+(A-n)*(1-I))/(I-k);z+D>d+h&&(d=z,h=D)}}}}}var R=u.constrain(r-a.l-a.r,2,64),F=u.constrain(n-a.t-a.b,2,64),B=Math.max(0,r-R),N=Math.max(0,n-F);if(B){var j=(c+f)/B;j>1&&(c/=j,f/=j)}if(N){var U=(d+h)/N;U>1&&(d/=U,h/=U)}if(i.l=Math.round(c),i.r=Math.round(f),i.t=Math.round(h),i.b=Math.round(d),i.p=Math.round(a.pad),i.w=Math.round(r)-i.l-i.r,i.h=Math.round(n)-i.t-i.b,!e._replotting&&b.didMarginChange(l,i)){"_redrawFromAutoMarginCount"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var V=3*(1+Object.keys(g).length);if(e._redrawFromAutoMarginCount0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push((function(){n=!0})),r.redraw&&t._transitionData._interruptCallbacks.push((function(){return s.call("redraw",t)})),t._transitionData._interruptCallbacks.push((function(){t.emit("plotly_transitioninterrupted",[])}));var a=0,o=0;function l(){return a++,function(){o++,n||o!==a||function(e){if(!t._transitionData)return;(function(t){if(t)for(;t.length;)t.shift()})(t._transitionData._interruptCallbacks),Promise.resolve().then((function(){if(r.redraw)return s.call("redraw",t)})).then((function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit("plotly_transitioned",[])})).then(e)}(i)}}r.runFn(l),setTimeout(l())}))}],a=u.syncOrAsync(i,t);return a&&a.then||(a=Promise.resolve()),a.then((function(){return t}))}b.didMarginChange=function(t,e){for(var r=0;r1)return!0}return!1},b.graphJson=function(t,e,r,n,i,a){(i&&e&&!t._fullData||i&&!e&&!t._fullLayout)&&b.supplyDefaults(t);var o=i?t._fullData:t.data,s=i?t._fullLayout:t.layout,l=(t._transitionData||{})._frames;function c(t,e){if("function"==typeof t)return e?"_function_":null;if(u.isPlainObject(t)){var n,i={};return Object.keys(t).sort().forEach((function(a){if(-1===["_","["].indexOf(a.charAt(0)))if("function"!=typeof t[a]){if("keepdata"===r){if("src"===a.substr(a.length-3))return}else if("keepstream"===r){if("string"==typeof(n=t[a+"src"])&&n.indexOf(":")>0&&!u.isPlainObject(t.stream))return}else if("keepall"!==r&&"string"==typeof(n=t[a+"src"])&&n.indexOf(":")>0)return;i[a]=c(t[a],e)}else e&&(i[a]="_function")})),i}return Array.isArray(t)?t.map((function(t){return c(t,e)})):u.isTypedArray(t)?u.simpleMap(t,u.identity):u.isJSDate(t)?u.ms2DateTimeLocal(+t):t}var f={data:(o||[]).map((function(t){var r=c(t);return e&&delete r.fit,r}))};if(!e&&(f.layout=c(s),i)){var h=s._size;f.layout.computed={margin:{b:h.b,l:h.l,r:h.r,t:h.t}}}return l&&(f.frames=c(l)),a&&(f.config=c(t._context,!0)),"object"===n?f:JSON.stringify(f)},b.modifyFrames=function(t,e){var r,n,i,a=t._transitionData._frames,o=t._transitionData._frameHash;for(r=0;r=0;a--)if(s[a].enabled){r._indexToPoints=s[a]._indexToPoints;break}n&&n.calc&&(o=n.calc(t,r))}Array.isArray(o)&&o[0]||(o=[{x:h,y:h}]),o[0].t||(o[0].t={}),o[0].trace=r,d[e]=o}}for(z(o,c,f),i=0;i1e-10?t:0}function h(t,e,r){e=e||0,r=r||0;for(var n=t.length,i=new Array(n),a=0;a0?r:1/0})),i=n.mod(r+1,e.length);return[e[r],e[i]]},findIntersectionXY:c,findXYatLength:function(t,e,r,n){var i=-e*r,a=e*e+1,o=2*(e*i-r),s=i*i+r*r-t*t,l=Math.sqrt(o*o-4*a*s),c=(-o+l)/(2*a),u=(-o-l)/(2*a);return[[c,e*c+i+n],[u,e*u+i+n]]},clampTiny:f,pathPolygon:function(t,e,r,n,i,a){return"M"+h(u(t,e,r,n),i,a).join("L")},pathPolygonAnnulus:function(t,e,r,n,i,a,o){var s,l;t=90||s>90&&l>=450?1:u<=0&&h<=0?0:Math.max(u,h);e=s<=180&&l>=180||s>180&&l>=540?-1:c>=0&&f>=0?0:Math.min(c,f);r=s<=270&&l>=270||s>270&&l>=630?-1:u>=0&&h>=0?0:Math.min(u,h);n=l>=360?1:c<=0&&f<=0?0:Math.max(c,f);return[e,r,n,i]}(p),b=x[2]-x[0],_=x[3]-x[1],w=h/f,T=Math.abs(_/b);w>T?(d=f,y=(h-(m=f*T))/n.h/2,g=[o[0],o[1]],v=[s[0]+y,s[1]-y]):(m=h,y=(f-(d=h/T))/n.w/2,g=[o[0]+y,o[1]-y],v=[s[0],s[1]]),this.xLength2=d,this.yLength2=m,this.xDomain2=g,this.yDomain2=v;var k=this.xOffset2=n.l+n.w*g[0],A=this.yOffset2=n.t+n.h*(1-v[1]),M=this.radius=d/b,S=this.innerRadius=e.hole*M,E=this.cx=k-M*x[0],L=this.cy=A+M*x[3],I=this.cxx=E-k,O=this.cyy=L-A;this.radialAxis=this.mockAxis(t,e,i,{_id:"x",side:{counterclockwise:"top",clockwise:"bottom"}[i.side],_realSide:i.side,domain:[S/n.w,M/n.w]}),this.angularAxis=this.mockAxis(t,e,a,{side:"right",domain:[0,Math.PI],autorange:!1}),this.doAutoRange(t,e),this.updateAngularAxis(t,e),this.updateRadialAxis(t,e),this.updateRadialAxisTitle(t,e),this.xaxis=this.mockCartesianAxis(t,e,{_id:"x",domain:g}),this.yaxis=this.mockCartesianAxis(t,e,{_id:"y",domain:v});var z=this.pathSubplot();this.clipPaths.forTraces.select("path").attr("d",z).attr("transform",l(I,O)),r.frontplot.attr("transform",l(k,A)).call(u.setClipUrl,this._hasClipOnAxisFalse?null:this.clipIds.forTraces,this.gd),r.bg.attr("d",z).attr("transform",l(E,L)).call(c.fill,e.bgcolor)},z.mockAxis=function(t,e,r,n){var i=o.extendFlat({},r,n);return d(i,e,t),i},z.mockCartesianAxis=function(t,e,r){var n=this,i=r._id,a=o.extendFlat({type:"linear"},r);p(a,t);var s={x:[0,2],y:[1,3]};return a.setRange=function(){var t=n.sectorBBox,r=s[i],o=n.radialAxis._rl,l=(o[1]-o[0])/(1-e.hole);a.range=[t[r[0]]*l,t[r[1]]*l]},a.isPtWithinRange="x"===i?function(t){return n.isPtInside(t)}:function(){return!0},a.setRange(),a.setScale(),a},z.doAutoRange=function(t,e){var r=this.gd,n=this.radialAxis,i=e.radialaxis;n.setScale(),m(r,n);var a=n.range;i.range=a.slice(),i._input.range=a.slice(),n._rl=[n.r2l(a[0],null,"gregorian"),n.r2l(a[1],null,"gregorian")]},z.updateRadialAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.radialaxis,m=C(e.sector[0],360),g=r.radialAxis,v=u90&&m<=270&&(g.tickangle=180);var y=function(t){return l(g.l2p(t.x)+u,0)},x=D(d);if(r.radialTickLayout!==x&&(i["radial-axis"].selectAll(".xtick").remove(),r.radialTickLayout=x),v){g.setScale();var b=h.calcTicks(g),_=h.clipEnds(g,b),w=h.getTickSigns(g)[2];h.drawTicks(n,g,{vals:b,layer:i["radial-axis"],path:h.makeTickPath(g,0,w),transFn:y,crisp:!1}),h.drawGrid(n,g,{vals:_,layer:i["radial-grid"],path:function(t){return r.pathArc(g.r2p(t.x)+u)},transFn:o.noop,crisp:!1}),h.drawLabels(n,g,{vals:b,layer:i["radial-axis"],transFn:y,labelFns:h.makeLabelFns(g,0)})}var T=r.radialAxisAngle=r.vangles?I(R(P(d.angle),r.vangles)):d.angle,k=l(f,p),A=k+s(-T);F(i["radial-axis"],v&&(d.showticklabels||d.ticks),{transform:A}),F(i["radial-grid"],v&&d.showgrid,{transform:k}),F(i["radial-line"].select("line"),v&&d.showline,{x1:u,y1:0,x2:a,y2:0,transform:A}).attr("stroke-width",d.linewidth).call(c.stroke,d.linecolor)},z.updateRadialAxisTitle=function(t,e,r){var n=this.gd,i=this.radius,a=this.cx,o=this.cy,s=e.radialaxis,l=this.id+"title",c=void 0!==r?r:this.radialAxisAngle,f=P(c),h=Math.cos(f),p=Math.sin(f),d=0;if(s.title){var m=u.bBox(this.layers["radial-axis"].node()).height,g=s.title.font.size;d="counterclockwise"===s.side?-m-.4*g:m+.8*g}this.layers["radial-axis-title"]=x.draw(n,l,{propContainer:s,propName:this.id+".radialaxis.title",placeholder:L(n,"Click to enter radial axis title"),attributes:{x:a+i/2*h+d*p,y:o-i/2*p+d*h,"text-anchor":"middle"},transform:{rotate:-c}})},z.updateAngularAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.angularaxis,m=r.angularAxis;r.fillViewInitialKey("angularaxis.rotation",d.rotation),m.setGeometry(),m.setScale();var g=function(t){return m.t2g(t.x)};"linear"===m.type&&"radians"===m.thetaunit&&(m.tick0=I(m.tick0),m.dtick=I(m.dtick));var v=function(t){return l(f+a*Math.cos(t),p-a*Math.sin(t))},y=h.makeLabelFns(m,0).labelStandoff,x={xFn:function(t){var e=g(t);return Math.cos(e)*y},yFn:function(t){var e=g(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(y+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*M)},anchorFn:function(t){var e=g(t),r=Math.cos(e);return Math.abs(r)<.1?"middle":r>0?"start":"end"},heightFn:function(t,e,r){var n=g(t);return-.5*(1+Math.sin(n))*r}},b=D(d);r.angularTickLayout!==b&&(i["angular-axis"].selectAll("."+m._id+"tick").remove(),r.angularTickLayout=b);var _,w=h.calcTicks(m);if("linear"===e.gridshape?(_=w.map(g),o.angleDelta(_[0],_[1])<0&&(_=_.slice().reverse())):_=null,r.vangles=_,"category"===m.type&&(w=w.filter((function(t){return o.isAngleInsideSector(g(t),r.sectorInRad)}))),m.visible){var T="inside"===m.ticks?-1:1,k=(m.linewidth||1)/2;h.drawTicks(n,m,{vals:w,layer:i["angular-axis"],path:"M"+T*k+",0h"+T*m.ticklen,transFn:function(t){var e=g(t);return v(e)+s(-I(e))},crisp:!1}),h.drawGrid(n,m,{vals:w,layer:i["angular-grid"],path:function(t){var e=g(t),r=Math.cos(e),n=Math.sin(e);return"M"+[f+u*r,p-u*n]+"L"+[f+a*r,p-a*n]},transFn:o.noop,crisp:!1}),h.drawLabels(n,m,{vals:w,layer:i["angular-axis"],repositionOnUpdate:!0,transFn:function(t){return v(g(t))},labelFns:x})}F(i["angular-line"].select("path"),d.showline,{d:r.pathSubplot(),transform:l(f,p)}).attr("stroke-width",d.linewidth).call(c.stroke,d.linecolor)},z.updateFx=function(t,e){this.gd._context.staticPlot||(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1),this.updateMainDrag(t))},z.updateMainDrag=function(t){var e,r,s=this,c=s.gd,u=s.layers,f=t._zoomlayer,h=S.MINZOOM,p=S.OFFEDGE,d=s.radius,m=s.innerRadius,x=s.cx,T=s.cy,k=s.cxx,A=s.cyy,M=s.sectorInRad,L=s.vangles,C=s.radialAxis,P=E.clampTiny,I=E.findXYatLength,O=E.findEnclosingVertexAngles,z=S.cornerHalfWidth,D=S.cornerLen/2,R=g.makeDragger(u,"path","maindrag","crosshair");n.select(R).attr("d",s.pathSubplot()).attr("transform",l(x,T));var F,B,N,j,U,V,H,q,G,Y={element:R,gd:c,subplot:s.id,plotinfo:{id:s.id,xaxis:s.xaxis,yaxis:s.yaxis},xaxes:[s.xaxis],yaxes:[s.yaxis]};function W(t,e){return Math.sqrt(t*t+e*e)}function X(t,e){return W(t-k,e-A)}function Z(t,e){return Math.atan2(A-e,t-k)}function J(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function K(t,e){if(0===t)return s.pathSector(2*z);var r=D/t,n=e-r,i=e+r,a=Math.max(0,Math.min(t,d)),o=a-z,l=a+z;return"M"+J(o,n)+"A"+[o,o]+" 0,0,0 "+J(o,i)+"L"+J(l,i)+"A"+[l,l]+" 0,0,1 "+J(l,n)+"Z"}function Q(t,e,r){if(0===t)return s.pathSector(2*z);var n,i,a=J(t,e),o=J(t,r),l=P((a[0]+o[0])/2),c=P((a[1]+o[1])/2);if(l&&c){var u=c/l,f=-1/u,h=I(z,u,l,c);n=I(D,f,h[0][0],h[0][1]),i=I(D,f,h[1][0],h[1][1])}else{var p,d;c?(p=D,d=z):(p=z,d=D),n=[[l-p,c-d],[l+p,c-d]],i=[[l-p,c+d],[l+p,c+d]]}return"M"+n.join("L")+"L"+i.reverse().join("L")+"Z"}function $(t,e){return e=Math.max(Math.min(e,d),m),th?(t-1&&1===t&&_(e,c,[s.xaxis],[s.yaxis],s.id,Y),r.indexOf("event")>-1&&y.click(c,e,s.id)}Y.prepFn=function(t,n,a){var l=c._fullLayout.dragmode,u=R.getBoundingClientRect();c._fullLayout._calcInverseTransform(c);var h=c._fullLayout._invTransform;e=c._fullLayout._invScaleX,r=c._fullLayout._invScaleY;var p=o.apply3DTransform(h)(n-u.left,a-u.top);if(F=p[0],B=p[1],L){var m=E.findPolygonOffset(d,M[0],M[1],L);F+=k+m[0],B+=A+m[1]}switch(l){case"zoom":Y.moveFn=L?nt:et,Y.clickFn=ot,Y.doneFn=it,function(){N=null,j=null,U=s.pathSubplot(),V=!1;var t=c._fullLayout[s.id];H=i(t.bgcolor).getLuminance(),(q=g.makeZoombox(f,H,x,T,U)).attr("fill-rule","evenodd"),G=g.makeCorners(f,x,T),w(c)}();break;case"select":case"lasso":b(t,n,a,Y,l)}},R.onmousemove=function(t){y.hover(c,t,s.id),c._fullLayout._lasthover=R,c._fullLayout._hoversubplot=s.id},R.onmouseout=function(t){c._dragging||v.unhover(c,t)},v.init(Y)},z.updateRadialDrag=function(t,e,r){var i=this,c=i.gd,u=i.layers,f=i.radius,h=i.innerRadius,p=i.cx,d=i.cy,m=i.radialAxis,y=S.radialDragBoxSize,x=y/2;if(m.visible){var b,_,T,M=P(i.radialAxisAngle),E=m._rl,L=E[0],C=E[1],O=E[r],z=.75*(E[1]-E[0])/(1-e.hole)/f;r?(b=p+(f+x)*Math.cos(M),_=d-(f+x)*Math.sin(M),T="radialdrag"):(b=p+(h-x)*Math.cos(M),_=d-(h-x)*Math.sin(M),T="radialdrag-inner");var D,B,N,j=g.makeRectDragger(u,T,"crosshair",-x,-x,y,y),U={element:j,gd:c};F(n.select(j),m.visible&&h0==(r?N>L:Nn?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(r){var n=t.c2l(r)-e;return(s(n)?n:0)+o},t.g2c=function(r){return t.l2c(r+e-o)},t.g2p=function(t){return t*a},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case"angularaxis":!function(t,e){var r=t.type;if("linear"===r){var i=t.d2c,s=t.c2d;t.d2c=function(t,e){return function(t,e){return"degrees"===e?a(t):t}(i(t),e)},t.c2d=function(t,e){return s(function(t,e){return"degrees"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,i){var a,o,s=e[i],l=e._length,c=function(r){return t.d2c(r,e.thetaunit)};if(s){if(n.isTypedArray(s)&&"linear"===r){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(a=new Array(l),o=0;o0){for(var n=[],i=0;i=u&&(p.min=0,m.min=0,g.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function d(t,e,r,n){var i=f[e._name];function o(r,n){return a.coerce(t,e,i,r,n)}o("uirevision",n.uirevision),e.type="linear";var h=o("color"),p=h!==i.color.dflt?h:r.font.color,d=e._name.charAt(0).toUpperCase(),m="Component "+d,g=o("title.text",m);e._hovertitle=g===m?g:d,a.coerceFont(o,"title.font",{family:r.font.family,size:a.bigFont(r.font.size),color:p}),o("min"),c(t,e,o,"linear"),s(t,e,o,"linear",{}),l(t,e,o,{outerTicks:!0}),o("showticklabels")&&(a.coerceFont(o,"tickfont",{family:r.font.family,size:r.font.size,color:p}),o("tickangle"),o("tickformat")),u(t,e,o,{dfltColor:h,bgColor:r.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:i}),o("hoverformat"),o("layer")}e.exports=function(t,e,r){o(t,e,r,{type:"ternary",attributes:f,handleDefaults:p,font:e.font,paper_bgcolor:e.paper_bgcolor})}},{"../../components/color":639,"../../lib":776,"../../plot_api/plot_template":816,"../cartesian/line_grid_defaults":844,"../cartesian/tick_label_defaults":849,"../cartesian/tick_mark_defaults":850,"../cartesian/tick_value_defaults":851,"../subplot_defaults":898,"./layout_attributes":901}],903:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("tinycolor2"),a=t("../../registry"),o=t("../../lib"),s=o.strTranslate,l=o._,c=t("../../components/color"),u=t("../../components/drawing"),f=t("../cartesian/set_convert"),h=t("../../lib/extend").extendFlat,p=t("../plots"),d=t("../cartesian/axes"),m=t("../../components/dragelement"),g=t("../../components/fx"),v=t("../../components/dragelement/helpers"),y=v.freeMode,x=v.rectMode,b=t("../../components/titles"),_=t("../cartesian/select").prepSelect,w=t("../cartesian/select").selectOnClick,T=t("../cartesian/select").clearSelect,k=t("../cartesian/select").clearSelectionsCache,A=t("../cartesian/constants");function M(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=M;var S=M.prototype;S.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},S.plot=function(t,e){var r=e[this.id],n=e._size;this._hasClipOnAxisFalse=!1;for(var i=0;iE*b?i=(a=b)*E:a=(i=x)/E,o=v*i/x,l=y*a/b,r=e.l+e.w*m-i/2,n=e.t+e.h*(1-g)-a/2,p.x0=r,p.y0=n,p.w=i,p.h=a,p.sum=_,p.xaxis={type:"linear",range:[w+2*k-_,_-w-2*T],domain:[m-o/2,m+o/2],_id:"x"},f(p.xaxis,p.graphDiv._fullLayout),p.xaxis.setScale(),p.xaxis.isPtWithinRange=function(t){return t.a>=p.aaxis.range[0]&&t.a<=p.aaxis.range[1]&&t.b>=p.baxis.range[1]&&t.b<=p.baxis.range[0]&&t.c>=p.caxis.range[1]&&t.c<=p.caxis.range[0]},p.yaxis={type:"linear",range:[w,_-T-k],domain:[g-l/2,g+l/2],_id:"y"},f(p.yaxis,p.graphDiv._fullLayout),p.yaxis.setScale(),p.yaxis.isPtWithinRange=function(){return!0};var A=p.yaxis.domain[0],M=p.aaxis=h({},t.aaxis,{range:[w,_-T-k],side:"left",tickangle:(+t.aaxis.tickangle||0)-30,domain:[A,A+l*E],anchor:"free",position:0,_id:"y",_length:i});f(M,p.graphDiv._fullLayout),M.setScale();var S=p.baxis=h({},t.baxis,{range:[_-w-k,T],side:"bottom",domain:p.xaxis.domain,anchor:"free",position:0,_id:"x",_length:i});f(S,p.graphDiv._fullLayout),S.setScale();var L=p.caxis=h({},t.caxis,{range:[_-w-T,k],side:"right",tickangle:(+t.caxis.tickangle||0)+30,domain:[A,A+l*E],anchor:"free",position:0,_id:"y",_length:i});f(L,p.graphDiv._fullLayout),L.setScale();var C="M"+r+","+(n+a)+"h"+i+"l-"+i/2+",-"+a+"Z";p.clipDef.select("path").attr("d",C),p.layers.plotbg.select("path").attr("d",C);var P="M0,"+a+"h"+i+"l-"+i/2+",-"+a+"Z";p.clipDefRelative.select("path").attr("d",P);var I=s(r,n);p.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",I),p.clipDefRelative.select("path").attr("transform",null);var O=s(r-S._offset,n+a);p.layers.baxis.attr("transform",O),p.layers.bgrid.attr("transform",O);var z=s(r+i/2,n)+"rotate(30)"+s(0,-M._offset);p.layers.aaxis.attr("transform",z),p.layers.agrid.attr("transform",z);var D=s(r+i/2,n)+"rotate(-30)"+s(0,-L._offset);p.layers.caxis.attr("transform",D),p.layers.cgrid.attr("transform",D),p.drawAxes(!0),p.layers.aline.select("path").attr("d",M.showline?"M"+r+","+(n+a)+"l"+i/2+",-"+a:"M0,0").call(c.stroke,M.linecolor||"#000").style("stroke-width",(M.linewidth||0)+"px"),p.layers.bline.select("path").attr("d",S.showline?"M"+r+","+(n+a)+"h"+i:"M0,0").call(c.stroke,S.linecolor||"#000").style("stroke-width",(S.linewidth||0)+"px"),p.layers.cline.select("path").attr("d",L.showline?"M"+(r+i/2)+","+n+"l"+i/2+","+a:"M0,0").call(c.stroke,L.linecolor||"#000").style("stroke-width",(L.linewidth||0)+"px"),p.graphDiv._context.staticPlot||p.initInteractions(),u.setClipUrl(p.layers.frontplot,p._hasClipOnAxisFalse?null:p.clipId,p.graphDiv)},S.drawAxes=function(t){var e=this.graphDiv,r=this.id.substr(7)+"title",n=this.layers,i=this.aaxis,a=this.baxis,o=this.caxis;if(this.drawAx(i),this.drawAx(a),this.drawAx(o),t){var s=Math.max(i.showticklabels?i.tickfont.size/2:0,(o.showticklabels?.75*o.tickfont.size:0)+("outside"===o.ticks?.87*o.ticklen:0)),c=(a.showticklabels?a.tickfont.size:0)+("outside"===a.ticks?a.ticklen:0)+3;n["a-title"]=b.draw(e,"a"+r,{propContainer:i,propName:this.id+".aaxis.title",placeholder:l(e,"Click to enter Component A title"),attributes:{x:this.x0+this.w/2,y:this.y0-i.title.font.size/3-s,"text-anchor":"middle"}}),n["b-title"]=b.draw(e,"b"+r,{propContainer:a,propName:this.id+".baxis.title",placeholder:l(e,"Click to enter Component B title"),attributes:{x:this.x0-c,y:this.y0+this.h+.83*a.title.font.size+c,"text-anchor":"middle"}}),n["c-title"]=b.draw(e,"c"+r,{propContainer:o,propName:this.id+".caxis.title",placeholder:l(e,"Click to enter Component C title"),attributes:{x:this.x0+this.w+c,y:this.y0+this.h+.83*o.title.font.size+c,"text-anchor":"middle"}})}},S.drawAx=function(t){var e,r=this.graphDiv,n=t._name,i=n.charAt(0),a=t._id,s=this.layers[n],l=i+"tickLayout",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);this[l]!==c&&(s.selectAll("."+a+"tick").remove(),this[l]=c),t.setScale();var u=d.calcTicks(t),f=d.clipEnds(t,u),h=d.makeTransTickFn(t),p=d.getTickSigns(t)[2],m=o.deg2rad(30),g=p*(t.linewidth||1)/2,v=p*t.ticklen,y=this.w,x=this.h,b="b"===i?"M0,"+g+"l"+Math.sin(m)*v+","+Math.cos(m)*v:"M"+g+",0l"+Math.cos(m)*v+","+-Math.sin(m)*v,_={a:"M0,0l"+x+",-"+y/2,b:"M0,0l-"+y/2+",-"+x,c:"M0,0l-"+x+","+y/2}[i];d.drawTicks(r,t,{vals:"inside"===t.ticks?f:u,layer:s,path:b,transFn:h,crisp:!1}),d.drawGrid(r,t,{vals:f,layer:this.layers[i+"grid"],path:_,transFn:h,crisp:!1}),d.drawLabels(r,t,{vals:u,layer:s,transFn:h,labelFns:d.makeLabelFns(t,0,30)})};var L=A.MINZOOM/2+.87,C="m-0.87,.5h"+L+"v3h-"+(L+5.2)+"l"+(L/2+2.6)+",-"+(.87*L+4.5)+"l2.6,1.5l-"+L/2+","+.87*L+"Z",P="m0.87,.5h-"+L+"v3h"+(L+5.2)+"l-"+(L/2+2.6)+",-"+(.87*L+4.5)+"l-2.6,1.5l"+L/2+","+.87*L+"Z",I="m0,1l"+L/2+","+.87*L+"l2.6,-1.5l-"+(L/2+2.6)+",-"+(.87*L+4.5)+"l-"+(L/2+2.6)+","+(.87*L+4.5)+"l2.6,1.5l"+L/2+",-"+.87*L+"Z",O=!0;function z(t){n.select(t).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}S.clearSelect=function(){k(this.dragOptions),T(this.dragOptions.gd)},S.initInteractions=function(){var t,e,r,n,f,h,p,d,v,b,T,k,M=this,S=M.layers.plotbg.select("path").node(),L=M.graphDiv,D=L._fullLayout._zoomlayer;function R(t){var e={};return e[M.id+".aaxis.min"]=t.a,e[M.id+".baxis.min"]=t.b,e[M.id+".caxis.min"]=t.c,e}function F(t,e){var r=L._fullLayout.clickmode;z(L),2===t&&(L.emit("plotly_doubleclick",null),a.call("_guiRelayout",L,R({a:0,b:0,c:0}))),r.indexOf("select")>-1&&1===t&&w(e,L,[M.xaxis],[M.yaxis],M.id,M.dragOptions),r.indexOf("event")>-1&&g.click(L,e,M.id)}function B(t,e){return 1-e/M.h}function N(t,e){return 1-(t+(M.h-e)/Math.sqrt(3))/M.w}function j(t,e){return(t-(M.h-e)/Math.sqrt(3))/M.w}function U(i,a){var o=r+i*t,s=n+a*e,l=Math.max(0,Math.min(1,B(0,n),B(0,s))),c=Math.max(0,Math.min(1,N(r,n),N(o,s))),u=Math.max(0,Math.min(1,j(r,n),j(o,s))),m=(l/2+u)*M.w,g=(1-l/2-c)*M.w,y=(m+g)/2,x=g-m,_=(1-l)*M.h,w=_-x/E;x.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),k.transition().style("opacity",1).duration(200),b=!0),L.emit("plotly_relayouting",R(p))}function V(){z(L),p!==f&&(a.call("_guiRelayout",L,R(p)),O&&L.data&&L._context.showTips&&(o.notifier(l(L,"Double-click to zoom back out"),"long"),O=!1))}function H(t,e){var r=t/M.xaxis._m,n=e/M.yaxis._m,i=[(p={a:f.a-n,b:f.b+(r+n)/2,c:f.c-(r-n)/2}).a,p.b,p.c].sort(o.sorterAsc),a=i.indexOf(p.a),l=i.indexOf(p.b),c=i.indexOf(p.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),p={a:i[a],b:i[l],c:i[c]},e=(f.a-p.a)*M.yaxis._m,t=(f.c-p.c-f.b+p.b)*M.xaxis._m);var h=s(M.x0+t,M.y0+e);M.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",h);var d=s(-t,-e);M.clipDefRelative.select("path").attr("transform",d),M.aaxis.range=[p.a,M.sum-p.b-p.c],M.baxis.range=[M.sum-p.a-p.c,p.b],M.caxis.range=[M.sum-p.a-p.b,p.c],M.drawAxes(!1),M._hasClipOnAxisFalse&&M.plotContainer.select(".scatterlayer").selectAll(".trace").call(u.hideOutsideRangePoints,M),L.emit("plotly_relayouting",R(p))}function q(){a.call("_guiRelayout",L,R(p))}this.dragOptions={element:S,gd:L,plotinfo:{id:M.id,domain:L._fullLayout[M.id].domain,xaxis:M.xaxis,yaxis:M.yaxis},subplot:M.id,prepFn:function(a,l,u){M.dragOptions.xaxes=[M.xaxis],M.dragOptions.yaxes=[M.yaxis],t=L._fullLayout._invScaleX,e=L._fullLayout._invScaleY;var m=M.dragOptions.dragmode=L._fullLayout.dragmode;y(m)?M.dragOptions.minDrag=1:M.dragOptions.minDrag=void 0,"zoom"===m?(M.dragOptions.moveFn=U,M.dragOptions.clickFn=F,M.dragOptions.doneFn=V,function(t,e,a){var l=S.getBoundingClientRect();r=e-l.left,n=a-l.top,L._fullLayout._calcInverseTransform(L);var u=L._fullLayout._invTransform,m=o.apply3DTransform(u)(r,n);r=m[0],n=m[1],f={a:M.aaxis.range[0],b:M.baxis.range[1],c:M.caxis.range[1]},p=f,h=M.aaxis.range[1]-f.a,d=i(M.graphDiv._fullLayout[M.id].bgcolor).getLuminance(),v="M0,"+M.h+"L"+M.w/2+", 0L"+M.w+","+M.h+"Z",b=!1,T=D.append("path").attr("class","zoombox").attr("transform",s(M.x0,M.y0)).style({fill:d>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("d",v),k=D.append("path").attr("class","zoombox-corners").attr("transform",s(M.x0,M.y0)).style({fill:c.background,stroke:c.defaultLine,"stroke-width":1,opacity:0}).attr("d","M0,0Z"),M.clearSelect(L)}(0,l,u)):"pan"===m?(M.dragOptions.moveFn=H,M.dragOptions.clickFn=F,M.dragOptions.doneFn=q,f={a:M.aaxis.range[0],b:M.baxis.range[1],c:M.caxis.range[1]},p=f,M.clearSelect(L)):(x(m)||y(m))&&_(a,l,u,M.dragOptions,m)}},S.onmousemove=function(t){g.hover(L,t,M.id),L._fullLayout._lasthover=S,L._fullLayout._hoversubplot=M.id},S.onmouseout=function(t){L._dragging||m.unhover(L,t)},m.init(this.dragOptions)}},{"../../components/color":639,"../../components/dragelement":658,"../../components/dragelement/helpers":657,"../../components/drawing":661,"../../components/fx":679,"../../components/titles":737,"../../lib":776,"../../lib/extend":766,"../../registry":904,"../cartesian/axes":827,"../cartesian/constants":834,"../cartesian/select":847,"../cartesian/set_convert":848,"../plots":890,"@plotly/d3":58,tinycolor2:572}],904:[function(t,e,r){"use strict";var n=t("./lib/loggers"),i=t("./lib/noop"),a=t("./lib/push_unique"),o=t("./lib/is_plain_object"),s=t("./lib/dom").addStyleRule,l=t("./lib/extend"),c=t("./plots/attributes"),u=t("./plots/layout_attributes"),f=l.extendFlat,h=l.extendDeepAll;function p(t){var e=t.name,i=t.categories,a=t.meta;if(r.modules[e])n.log("Type "+e+" already registered");else{r.subplotsRegistry[t.basePlotModule.name]||function(t){var e=t.name;if(r.subplotsRegistry[e])return void n.log("Plot type "+e+" already registered.");for(var i in v(t),r.subplotsRegistry[e]=t,r.componentsRegistry)b(i,t.name)}(t.basePlotModule);for(var o={},l=0;l-1&&(f[p[r]].title={text:""});for(r=0;r")?"":e.html(t).text()}));return e.remove(),r}(T),T=(T=T.replace(/&(?!\w+;|\#[0-9]+;| \#x[0-9A-F]+;)/g,"&")).replace(c,"'"),i.isIE()&&(T=(T=(T=T.replace(/"/gi,"'")).replace(/(\('#)([^']*)('\))/gi,'("#$2")')).replace(/(\\')/gi,'"')),T}},{"../components/color":639,"../components/drawing":661,"../constants/xmlns_namespaces":753,"../lib":776,"@plotly/d3":58}],913:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;rf+c||!n(u))}for(var p=0;pa))return e}return void 0!==r?r:t.dflt},r.coerceColor=function(t,e,r){return i(e).isValid()?e:void 0!==r?r:t.dflt},r.coerceEnumerated=function(t,e,r){return t.coerceNumber&&(e=+e),-1!==t.values.indexOf(e)?e:void 0!==r?r:t.dflt},r.getValue=function(t,e){var r;return Array.isArray(t)?e0?e+=r:u<0&&(e-=r)}return e}function z(t){var e=u,r=t.b,i=O(t);return n.inbox(r-e,i-e,_+(i-e)/(i-r)-1)}var D=t[f+"a"],R=t[h+"a"];m=Math.abs(D.r2c(D.range[1])-D.r2c(D.range[0]));var F=n.getDistanceFunction(i,p,d,(function(t){return(p(t)+d(t))/2}));if(n.getClosest(g,F,t),!1!==t.index&&g[t.index].p!==c){k||(L=function(t){return Math.min(A(t),t.p-y.bargroupwidth/2)},C=function(t){return Math.max(M(t),t.p+y.bargroupwidth/2)});var B=g[t.index],N=v.base?B.b+B.s:B.s;t[h+"0"]=t[h+"1"]=R.c2p(B[h],!0),t[h+"LabelVal"]=N;var j=y.extents[y.extents.round(B.p)];t[f+"0"]=D.c2p(x?L(B):j[0],!0),t[f+"1"]=D.c2p(x?C(B):j[1],!0);var U=void 0!==B.orig_p;return t[f+"LabelVal"]=U?B.orig_p:B.p,t.labelLabel=l(D,t[f+"LabelVal"],v[f+"hoverformat"]),t.valueLabel=l(R,t[h+"LabelVal"],v[h+"hoverformat"]),t.baseLabel=l(R,B.b,v[h+"hoverformat"]),t.spikeDistance=(function(t){var e=u,r=t.b,i=O(t);return n.inbox(r-e,i-e,w+(i-e)/(i-r)-1)}(B)+function(t){return P(A(t),M(t),w)}(B))/2,t[f+"Spike"]=D.c2p(B.p,!0),o(B,v,t),t.hovertemplate=v.hovertemplate,t}}function f(t,e){var r=e.mcc||t.marker.color,n=e.mlcc||t.marker.line.color,i=s(t,e);return a.opacity(r)?r:a.opacity(n)&&i?n:void 0}e.exports={hoverPoints:function(t,e,r,n,a){var o=u(t,e,r,n,a);if(o){var s=o.cd,l=s[0].trace,c=s[o.index];return o.color=f(l,c),i.getComponentMethod("errorbars","hoverInfo")(c,l,o),[o]}},hoverOnBars:u,getTraceColor:f}},{"../../components/color":639,"../../components/fx":679,"../../constants/numerical":752,"../../lib":776,"../../plots/cartesian/axes":827,"../../registry":904,"./helpers":920}],922:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc").crossTraceCalc,colorbar:t("../scatter/marker_colorbar"),arraysToCalcdata:t("./arrays_to_calcdata"),plot:t("./plot").plot,style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover").hoverPoints,eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"bar",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","bar","oriented","errorBarsOK","showLegend","zoomScale"],animatable:!0,meta:{}}},{"../../plots/cartesian":841,"../scatter/marker_colorbar":1209,"./arrays_to_calcdata":913,"./attributes":914,"./calc":915,"./cross_trace_calc":917,"./defaults":918,"./event_data":919,"./hover":921,"./layout_attributes":923,"./layout_defaults":924,"./plot":925,"./select":926,"./style":928}],923:[function(t,e,r){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","group","overlay","relative"],dflt:"group",editType:"calc"},barnorm:{valType:"enumerated",values:["","fraction","percent"],dflt:"",editType:"calc"},bargap:{valType:"number",min:0,max:1,editType:"calc"},bargroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],924:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../plots/cartesian/axes"),a=t("../../lib"),o=t("./layout_attributes");e.exports=function(t,e,r){function s(r,n){return a.coerce(t,e,o,r,n)}for(var l=!1,c=!1,u=!1,f={},h=s("barmode"),p=0;p0}function S(t){return"auto"===t?0:t}function E(t,e){var r=Math.PI/180*e,n=Math.abs(Math.sin(r)),i=Math.abs(Math.cos(r));return{x:t.width*i+t.height*n,y:t.width*n+t.height*i}}function L(t,e,r,n,i,a){var o=!!a.isHorizontal,s=!!a.constrained,l=a.angle||0,c=a.anchor||"end",u="end"===c,f="start"===c,h=((a.leftToRight||0)+1)/2,p=1-h,d=i.width,m=i.height,g=Math.abs(e-t),v=Math.abs(n-r),y=g>2*_&&v>2*_?_:0;g-=2*y,v-=2*y;var x=S(l);"auto"!==l||d<=g&&m<=v||!(d>g||m>v)||(d>v||m>g)&&d.01?q:function(t,e,r){return r&&t===e?t:Math.abs(t-e)>=2?q(t):t>e?Math.ceil(t):Math.floor(t)};B=G(B,N,D),N=G(N,B,D),j=G(j,U,!D),U=G(U,j,!D)}var Y=A(a.ensureSingle(I,"path"),P,g,v);if(Y.style("vector-effect","non-scaling-stroke").attr("d",isNaN((N-B)*(U-j))||V&&t._context.staticPlot?"M0,0Z":"M"+B+","+j+"V"+U+"H"+N+"V"+j+"Z").call(l.setClipUrl,e.layerClipId,t),!P.uniformtext.mode&&R){var W=l.makePointStyleFns(f);l.singlePointStyle(c,Y,f,W,t)}!function(t,e,r,n,i,s,c,f,p,g,v){var w,T=e.xaxis,M=e.yaxis,C=t._fullLayout;function P(e,r,n){return a.ensureSingle(e,"text").text(r).attr({class:"bartext bartext-"+w,"text-anchor":"middle","data-notex":1}).call(l.font,n).call(o.convertToTspans,t)}var I=n[0].trace,O="h"===I.orientation,z=function(t,e,r,n,i){var o,s=e[0].trace;o=s.texttemplate?function(t,e,r,n,i){var o=e[0].trace,s=a.castOption(o,r,"texttemplate");if(!s)return"";var l,c,f,h,p="waterfall"===o.type,d="funnel"===o.type;"h"===o.orientation?(l="y",c=i,f="x",h=n):(l="x",c=n,f="y",h=i);function m(t){return u(h,h.c2l(t),!0).text}var g=e[r],v={};v.label=g.p,v.labelLabel=v[l+"Label"]=(y=g.p,u(c,c.c2l(y),!0).text);var y;var x=a.castOption(o,g.i,"text");(0===x||x)&&(v.text=x);v.value=g.s,v.valueLabel=v[f+"Label"]=m(g.s);var _={};b(_,o,g.i),p&&(v.delta=+g.rawS||g.s,v.deltaLabel=m(v.delta),v.final=g.v,v.finalLabel=m(v.final),v.initial=v.final-v.delta,v.initialLabel=m(v.initial));d&&(v.value=g.s,v.valueLabel=m(v.value),v.percentInitial=g.begR,v.percentInitialLabel=a.formatPercent(g.begR),v.percentPrevious=g.difR,v.percentPreviousLabel=a.formatPercent(g.difR),v.percentTotal=g.sumR,v.percenTotalLabel=a.formatPercent(g.sumR));var w=a.castOption(o,g.i,"customdata");w&&(v.customdata=w);return a.texttemplateString(s,v,t._d3locale,_,v,o._meta||{})}(t,e,r,n,i):s.textinfo?function(t,e,r,n){var i=t[0].trace,o="h"===i.orientation,s="waterfall"===i.type,l="funnel"===i.type;function c(t){return u(o?r:n,+t,!0).text}var f,h=i.textinfo,p=t[e],d=h.split("+"),m=[],g=function(t){return-1!==d.indexOf(t)};g("label")&&m.push((v=t[e].p,u(o?n:r,v,!0).text));var v;g("text")&&(0===(f=a.castOption(i,p.i,"text"))||f)&&m.push(f);if(s){var y=+p.rawS||p.s,x=p.v,b=x-y;g("initial")&&m.push(c(b)),g("delta")&&m.push(c(y)),g("final")&&m.push(c(x))}if(l){g("value")&&m.push(c(p.s));var _=0;g("percent initial")&&_++,g("percent previous")&&_++,g("percent total")&&_++;var w=_>1;g("percent initial")&&(f=a.formatPercent(p.begR),w&&(f+=" of initial"),m.push(f)),g("percent previous")&&(f=a.formatPercent(p.difR),w&&(f+=" of previous"),m.push(f)),g("percent total")&&(f=a.formatPercent(p.sumR),w&&(f+=" of total"),m.push(f))}return m.join("
")}(e,r,n,i):m.getValue(s.text,r);return m.coerceString(y,o)}(C,n,i,T,M);w=function(t,e){var r=m.getValue(t.textposition,e);return m.coerceEnumerated(x,r)}(I,i);var D="stack"===g.mode||"relative"===g.mode,R=n[i],F=!D||R._outmost;if(!z||"none"===w||(R.isBlank||s===c||f===p)&&("auto"===w||"inside"===w))return void r.select("text").remove();var B=C.font,N=d.getBarColor(n[i],I),j=d.getInsideTextFont(I,i,B,N),U=d.getOutsideTextFont(I,i,B),V=r.datum();O?"log"===T.type&&V.s0<=0&&(s=T.range[0]=G*(Z/Y):Z>=Y*(X/G);G>0&&Y>0&&(J||K||Q)?w="inside":(w="outside",H.remove(),H=null)}else w="inside";if(!H){W=a.ensureUniformFontSize(t,"outside"===w?U:j);var $=(H=P(r,z,W)).attr("transform");if(H.attr("transform",""),q=l.bBox(H.node()),G=q.width,Y=q.height,H.attr("transform",$),G<=0||Y<=0)return void H.remove()}var tt,et,rt=I.textangle;"outside"===w?(et="both"===I.constraintext||"outside"===I.constraintext,tt=function(t,e,r,n,i,a){var o,s=!!a.isHorizontal,l=!!a.constrained,c=a.angle||0,u=i.width,f=i.height,h=Math.abs(e-t),p=Math.abs(n-r);o=s?p>2*_?_:0:h>2*_?_:0;var d=1;l&&(d=s?Math.min(1,p/f):Math.min(1,h/u));var m=S(c),g=E(i,m),v=(s?g.x:g.y)/2,y=(i.left+i.right)/2,x=(i.top+i.bottom)/2,b=(t+e)/2,w=(r+n)/2,T=0,A=0,M=s?k(e,t):k(r,n);s?(b=e-M*o,T=M*v):(w=n+M*o,A=-M*v);return{textX:y,textY:x,targetX:b,targetY:w,anchorX:T,anchorY:A,scale:d,rotate:m}}(s,c,f,p,q,{isHorizontal:O,constrained:et,angle:rt})):(et="both"===I.constraintext||"inside"===I.constraintext,tt=L(s,c,f,p,q,{isHorizontal:O,constrained:et,angle:rt,anchor:I.insidetextanchor}));tt.fontSize=W.size,h(I.type,tt,C),R.transform=tt,A(H,C,g,v).attr("transform",a.getTextTransform(tt))}(t,e,I,r,p,B,N,j,U,g,v),e.layerClipId&&l.hideOutsideRangePoint(c,I.select("text"),w,C,f.xcalendar,f.ycalendar)}));var j=!1===f.cliponaxis;l.setClipUrl(c,j?null:e.layerClipId,t)}));c.getComponentMethod("errorbars","plot")(t,I,e,g)},toMoveInsideBar:L}},{"../../components/color":639,"../../components/drawing":661,"../../components/fx/helpers":675,"../../lib":776,"../../lib/svg_text_utils":802,"../../plots/cartesian/axes":827,"../../registry":904,"./attributes":914,"./constants":916,"./helpers":920,"./style":928,"./uniform_text":930,"@plotly/d3":58,"fast-isnumeric":242}],926:[function(t,e,r){"use strict";function n(t,e,r,n,i){var a=e.c2p(n?t.s0:t.p0,!0),o=e.c2p(n?t.s1:t.p1,!0),s=r.c2p(n?t.p0:t.s0,!0),l=r.c2p(n?t.p1:t.s1,!0);return i?[(a+o)/2,(s+l)/2]:n?[o,(s+l)/2]:[(a+o)/2,l]}e.exports=function(t,e){var r,i=t.cd,a=t.xaxis,o=t.yaxis,s=i[0].trace,l="funnel"===s.type,c="h"===s.orientation,u=[];if(!1===e)for(r=0;r1||0===i.bargap&&0===i.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr("shape-rendering","crispEdges")})),e.selectAll("g.points").each((function(e){d(n.select(this),e[0].trace,t)})),s.getComponentMethod("errorbars","style")(e)},styleTextPoints:m,styleOnSelect:function(t,e,r){var i=e[0].trace;i.selectedpoints?function(t,e,r){a.selectedPointStyle(t.selectAll("path"),e),function(t,e,r){t.each((function(t){var i,s=n.select(this);if(t.selected){i=o.ensureUniformFontSize(r,g(s,t,e,r));var l=e.selected.textfont&&e.selected.textfont.color;l&&(i.color=l),a.font(s,i)}else a.selectedTextStyle(s,e)}))}(t.selectAll("text"),e,r)}(r,i,t):(d(r,i,t),s.getComponentMethod("errorbars","style")(r))},getInsideTextFont:y,getOutsideTextFont:x,getBarColor:_,resizeText:l}},{"../../components/color":639,"../../components/drawing":661,"../../lib":776,"../../registry":904,"./attributes":914,"./helpers":920,"./uniform_text":930,"@plotly/d3":58}],929:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults"),o=t("../../lib").coercePattern;e.exports=function(t,e,r,s,l){var c=r("marker.color",s),u=i(t,"marker");u&&a(t,e,l,r,{prefix:"marker.",cLetter:"c"}),r("marker.line.color",n.defaultLine),i(t,"marker.line")&&a(t,e,l,r,{prefix:"marker.line.",cLetter:"c"}),r("marker.line.width"),r("marker.opacity"),o(r,"marker.pattern",c,u),r("selected.marker.color"),r("unselected.marker.color")}},{"../../components/color":639,"../../components/colorscale/defaults":649,"../../components/colorscale/helpers":650,"../../lib":776}],930:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib");function a(t){return"_"+t+"Text_minsize"}e.exports={recordMinTextSize:function(t,e,r){if(r.uniformtext.mode){var n=a(t),i=r.uniformtext.minsize,o=e.scale*e.fontSize;e.hide=oh.range[1]&&(x+=Math.PI);if(n.getClosest(c,(function(t){return m(y,x,[t.rp0,t.rp1],[t.thetag0,t.thetag1],d)?g+Math.min(1,Math.abs(t.thetag1-t.thetag0)/v)-1+(t.rp1-y)/(t.rp1-t.rp0)-1:1/0}),t),!1!==t.index){var b=c[t.index];t.x0=t.x1=b.ct[0],t.y0=t.y1=b.ct[1];var _=i.extendFlat({},b,{r:b.s,theta:b.p});return o(b,u,t),s(_,u,f,t),t.hovertemplate=u.hovertemplate,t.color=a(u,b),t.xLabelVal=t.yLabelVal=void 0,b.s<0&&(t.idealAlign="left"),[t]}}},{"../../components/fx":679,"../../lib":776,"../../plots/polar/helpers":892,"../bar/hover":921,"../scatterpolar/hover":1269}],935:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"barpolar",basePlotModule:t("../../plots/polar"),categories:["polar","bar","showLegend"],attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("../scatterpolar/format_labels"),style:t("../bar/style").style,styleOnSelect:t("../bar/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../bar/select"),meta:{}}},{"../../plots/polar":893,"../bar/select":926,"../bar/style":928,"../scatter/marker_colorbar":1209,"../scatterpolar/format_labels":1268,"./attributes":931,"./calc":932,"./defaults":933,"./hover":934,"./layout_attributes":936,"./layout_defaults":937,"./plot":938}],936:[function(t,e,r){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","overlay"],dflt:"stack",editType:"calc"},bargap:{valType:"number",dflt:.1,min:0,max:1,editType:"calc"}}},{}],937:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a,o={};function s(r,o){return n.coerce(t[a]||{},e[a],i,r,o)}for(var l=0;l0?(c=o,u=l):(c=l,u=o);var f=[s.findEnclosingVertexAngles(c,t.vangles)[0],(c+u)/2,s.findEnclosingVertexAngles(u,t.vangles)[1]];return s.pathPolygonAnnulus(n,i,c,u,f,e,r)};return function(t,n,i,o){return a.pathAnnulus(t,n,i,o,e,r)}}(e),p=e.layers.frontplot.select("g.barlayer");a.makeTraceGroups(p,r,"trace bars").each((function(){var r=n.select(this),s=a.ensureSingle(r,"g","points").selectAll("g.point").data(a.identity);s.enter().append("g").style("vector-effect","non-scaling-stroke").style("stroke-miterlimit",2).classed("point",!0),s.exit().remove(),s.each((function(t){var e,r=n.select(this),o=t.rp0=u.c2p(t.s0),s=t.rp1=u.c2p(t.s1),p=t.thetag0=f.c2g(t.p0),d=t.thetag1=f.c2g(t.p1);if(i(o)&&i(s)&&i(p)&&i(d)&&o!==s&&p!==d){var m=u.c2g(t.s1),g=(p+d)/2;t.ct=[l.c2p(m*Math.cos(g)),c.c2p(m*Math.sin(g))],e=h(o,s,p,d)}else e="M0,0Z";a.ensureSingle(r,"path").attr("d",e)})),o.setClipUrl(r,e._hasClipOnAxisFalse?e.clipIds.forTraces:null,t)}))}},{"../../components/drawing":661,"../../lib":776,"../../plots/polar/helpers":892,"@plotly/d3":58,"fast-isnumeric":242}],939:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../bar/attributes"),a=t("../../components/color/attributes"),o=t("../../plots/cartesian/axis_format_attributes").axisHoverFormat,s=t("../../plots/template_attributes").hovertemplateAttrs,l=t("../../lib/extend").extendFlat,c=n.marker,u=c.line;e.exports={y:{valType:"data_array",editType:"calc+clearAxisTypes"},x:{valType:"data_array",editType:"calc+clearAxisTypes"},x0:{valType:"any",editType:"calc+clearAxisTypes"},y0:{valType:"any",editType:"calc+clearAxisTypes"},dx:{valType:"number",editType:"calc"},dy:{valType:"number",editType:"calc"},xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,xhoverformat:o("x"),yhoverformat:o("y"),name:{valType:"string",editType:"calc+clearAxisTypes"},q1:{valType:"data_array",editType:"calc+clearAxisTypes"},median:{valType:"data_array",editType:"calc+clearAxisTypes"},q3:{valType:"data_array",editType:"calc+clearAxisTypes"},lowerfence:{valType:"data_array",editType:"calc"},upperfence:{valType:"data_array",editType:"calc"},notched:{valType:"boolean",editType:"calc"},notchwidth:{valType:"number",min:0,max:.5,dflt:.25,editType:"calc"},notchspan:{valType:"data_array",editType:"calc"},boxpoints:{valType:"enumerated",values:["all","outliers","suspectedoutliers",!1],editType:"calc"},jitter:{valType:"number",min:0,max:1,editType:"calc"},pointpos:{valType:"number",min:-2,max:2,editType:"calc"},boxmean:{valType:"enumerated",values:[!0,"sd",!1],editType:"calc"},mean:{valType:"data_array",editType:"calc"},sd:{valType:"data_array",editType:"calc"},orientation:{valType:"enumerated",values:["v","h"],editType:"calc+clearAxisTypes"},quartilemethod:{valType:"enumerated",values:["linear","exclusive","inclusive"],dflt:"linear",editType:"calc"},width:{valType:"number",min:0,dflt:0,editType:"calc"},marker:{outliercolor:{valType:"color",dflt:"rgba(0, 0, 0, 0)",editType:"style"},symbol:l({},c.symbol,{arrayOk:!1,editType:"plot"}),opacity:l({},c.opacity,{arrayOk:!1,dflt:1,editType:"style"}),size:l({},c.size,{arrayOk:!1,editType:"calc"}),color:l({},c.color,{arrayOk:!1,editType:"style"}),line:{color:l({},u.color,{arrayOk:!1,dflt:a.defaultLine,editType:"style"}),width:l({},u.width,{arrayOk:!1,dflt:0,editType:"style"}),outliercolor:{valType:"color",editType:"style"},outlierwidth:{valType:"number",min:0,dflt:1,editType:"style"},editType:"style"},editType:"plot"},line:{color:{valType:"color",editType:"style"},width:{valType:"number",min:0,dflt:2,editType:"style"},editType:"plot"},fillcolor:n.fillcolor,whiskerwidth:{valType:"number",min:0,max:1,dflt:.5,editType:"calc"},offsetgroup:i.offsetgroup,alignmentgroup:i.alignmentgroup,selected:{marker:n.selected.marker,editType:"style"},unselected:{marker:n.unselected.marker,editType:"style"},text:l({},n.text,{}),hovertext:l({},n.hovertext,{}),hovertemplate:s({}),hoveron:{valType:"flaglist",flags:["boxes","points"],dflt:"boxes+points",editType:"style"}}},{"../../components/color/attributes":638,"../../lib/extend":766,"../../plots/cartesian/axis_format_attributes":830,"../../plots/template_attributes":899,"../bar/attributes":914,"../scatter/attributes":1191}],940:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../plots/cartesian/axes"),a=t("../../plots/cartesian/align_period"),o=t("../../lib"),s=t("../../constants/numerical").BADNUM,l=o._;e.exports=function(t,e){var r,c,y,x,b,_,w,T=t._fullLayout,k=i.getFromId(t,e.xaxis||"x"),A=i.getFromId(t,e.yaxis||"y"),M=[],S="violin"===e.type?"_numViolins":"_numBoxes";"h"===e.orientation?(y=k,x="x",b=A,_="y",w=!!e.yperiodalignment):(y=A,x="y",b=k,_="x",w=!!e.xperiodalignment);var E,L,C,P,I,O,z=function(t,e,r,i){var s,l=e+"0"in t,c="d"+e in t;if(e in t||l&&c){var u=r.makeCalcdata(t,e);return[a(t,r,e,u).vals,u]}s=l?t[e+"0"]:"name"in t&&("category"===r.type||n(t.name)&&-1!==["linear","log"].indexOf(r.type)||o.isDateTime(t.name)&&"date"===r.type)?t.name:i;for(var f="multicategory"===r.type?r.r2c_just_indices(s):r.d2c(s,0,t[e+"calendar"]),h=t._length,p=new Array(h),d=0;dE.uf};if(e._hasPreCompStats){var U=e[x],V=function(t){return y.d2c((e[t]||[])[r])},H=1/0,q=-1/0;for(r=0;r=E.q1&&E.q3>=E.med){var Y=V("lowerfence");E.lf=Y!==s&&Y<=E.q1?Y:p(E,C,P);var W=V("upperfence");E.uf=W!==s&&W>=E.q3?W:d(E,C,P);var X=V("mean");E.mean=X!==s?X:P?o.mean(C,P):(E.q1+E.q3)/2;var Z=V("sd");E.sd=X!==s&&Z>=0?Z:P?o.stdev(C,P,E.mean):E.q3-E.q1,E.lo=m(E),E.uo=g(E);var J=V("notchspan");J=J!==s&&J>0?J:v(E,P),E.ln=E.med-J,E.un=E.med+J;var K=E.lf,Q=E.uf;e.boxpoints&&C.length&&(K=Math.min(K,C[0]),Q=Math.max(Q,C[P-1])),e.notched&&(K=Math.min(K,E.ln),Q=Math.max(Q,E.un)),E.min=K,E.max=Q}else{var $;o.warn(["Invalid input - make sure that q1 <= median <= q3","q1 = "+E.q1,"median = "+E.med,"q3 = "+E.q3].join("\n")),$=E.med!==s?E.med:E.q1!==s?E.q3!==s?(E.q1+E.q3)/2:E.q1:E.q3!==s?E.q3:0,E.med=$,E.q1=E.q3=$,E.lf=E.uf=$,E.mean=E.sd=$,E.ln=E.un=$,E.min=E.max=$}H=Math.min(H,E.min),q=Math.max(q,E.max),E.pts2=L.filter(j),M.push(E)}}e._extremes[y._id]=i.findExtremes(y,[H,q],{padded:!0})}else{var tt=y.makeCalcdata(e,x),et=function(t,e){for(var r=t.length,n=new Array(r+1),i=0;i=0&&it0){var ut,ft;if((E={}).pos=E[_]=B[r],L=E.pts=nt[r].sort(f),P=(C=E[x]=L.map(h)).length,E.min=C[0],E.max=C[P-1],E.mean=o.mean(C,P),E.sd=o.stdev(C,P,E.mean),E.med=o.interp(C,.5),P%2&&(lt||ct))lt?(ut=C.slice(0,P/2),ft=C.slice(P/2+1)):ct&&(ut=C.slice(0,P/2+1),ft=C.slice(P/2)),E.q1=o.interp(ut,.5),E.q3=o.interp(ft,.5);else E.q1=o.interp(C,.25),E.q3=o.interp(C,.75);E.lf=p(E,C,P),E.uf=d(E,C,P),E.lo=m(E),E.uo=g(E);var ht=v(E,P);E.ln=E.med-ht,E.un=E.med+ht,at=Math.min(at,E.ln),ot=Math.max(ot,E.un),E.pts2=L.filter(j),M.push(E)}e._extremes[y._id]=i.findExtremes(y,e.notched?tt.concat([at,ot]):tt,{padded:!0})}return function(t,e){if(o.isArrayOrTypedArray(e.selectedpoints))for(var r=0;r0?(M[0].t={num:T[S],dPos:N,posLetter:_,valLetter:x,labels:{med:l(t,"median:"),min:l(t,"min:"),q1:l(t,"q1:"),q3:l(t,"q3:"),max:l(t,"max:"),mean:"sd"===e.boxmean?l(t,"mean \xb1 \u03c3:"):l(t,"mean:"),lf:l(t,"lower fence:"),uf:l(t,"upper fence:")}},T[S]++,M):[{t:{empty:!0}}]};var c={text:"tx",hovertext:"htx"};function u(t,e,r){for(var n in c)o.isArrayOrTypedArray(e[n])&&(Array.isArray(r)?o.isArrayOrTypedArray(e[n][r[0]])&&(t[c[n]]=e[n][r[0]][r[1]]):t[c[n]]=e[n][r])}function f(t,e){return t.v-e.v}function h(t){return t.v}function p(t,e,r){return 0===r?t.q1:Math.min(t.q1,e[Math.min(o.findBin(2.5*t.q1-1.5*t.q3,e,!0)+1,r-1)])}function d(t,e,r){return 0===r?t.q3:Math.max(t.q3,e[Math.max(o.findBin(2.5*t.q3-1.5*t.q1,e),0)])}function m(t){return 4*t.q1-3*t.q3}function g(t){return 4*t.q3-3*t.q1}function v(t,e){return 0===e?0:1.57*(t.q3-t.q1)/Math.sqrt(e)}},{"../../constants/numerical":752,"../../lib":776,"../../plots/cartesian/align_period":824,"../../plots/cartesian/axes":827,"fast-isnumeric":242}],941:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib"),a=t("../../plots/cartesian/constraints").getAxisGroup,o=["v","h"];function s(t,e,r,o){var s,l,c,u=e.calcdata,f=e._fullLayout,h=o._id,p=h.charAt(0),d=[],m=0;for(s=0;s1,b=1-f[t+"gap"],_=1-f[t+"groupgap"];for(s=0;s0){var q=E.pointpos,G=E.jitter,Y=E.marker.size/2,W=0;q+G>=0&&((W=V*(q+G))>M?(H=!0,j=Y,B=W):W>R&&(j=Y,B=M)),W<=M&&(B=M);var X=0;q-G<=0&&((X=-V*(q-G))>S?(H=!0,U=Y,N=X):X>F&&(U=Y,N=S)),X<=S&&(N=S)}else B=M,N=S;var Z=new Array(c.length);for(l=0;l0?(g="v",v=x>0?Math.min(_,b):Math.min(b)):x>0?(g="h",v=Math.min(_)):v=0;if(v){e._length=v;var S=r("orientation",g);e._hasPreCompStats?"v"===S&&0===x?(r("x0",0),r("dx",1)):"h"===S&&0===y&&(r("y0",0),r("dy",1)):"v"===S&&0===x?r("x0"):"h"===S&&0===y&&r("y0"),i.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y"],a)}else e.visible=!1}function f(t,e,r,i){var a=i.prefix,o=n.coerce2(t,e,c,"marker.outliercolor"),s=r("marker.line.outliercolor"),l="outliers";e._hasPreCompStats?l="all":(o||s)&&(l="suspectedoutliers");var u=r(a+"points",l);u?(r("jitter","all"===u?.3:0),r("pointpos","all"===u?-1.5:0),r("marker.symbol"),r("marker.opacity"),r("marker.size"),r("marker.color",e.line.color),r("marker.line.color"),r("marker.line.width"),"suspectedoutliers"===u&&(r("marker.line.outliercolor",e.marker.color),r("marker.line.outlierwidth")),r("selected.marker.color"),r("unselected.marker.color"),r("selected.marker.size"),r("unselected.marker.size"),r("text"),r("hovertext")):delete e.marker;var f=r("hoveron");"all"!==f&&-1===f.indexOf("points")||r("hovertemplate"),n.coerceSelectionMarkerOpacity(e,r)}e.exports={supplyDefaults:function(t,e,r,i){function s(r,i){return n.coerce(t,e,c,r,i)}if(u(t,e,s,i),!1!==e.visible){o(t,e,i,s),s("xhoverformat"),s("yhoverformat");var l=e._hasPreCompStats;l&&(s("lowerfence"),s("upperfence")),s("line.color",(t.marker||{}).color||r),s("line.width"),s("fillcolor",a.addOpacity(e.line.color,.5));var h=!1;if(l){var p=s("mean"),d=s("sd");p&&p.length&&(h=!0,d&&d.length&&(h="sd"))}s("boxmean",h),s("whiskerwidth"),s("width"),s("quartilemethod");var m=!1;if(l){var g=s("notchspan");g&&g.length&&(m=!0)}else n.validate(t.notchwidth,c.notchwidth)&&(m=!0);s("notched",m)&&s("notchwidth"),f(t,e,s,{prefix:"box"})}},crossTraceDefaults:function(t,e){var r,i;function a(t){return n.coerce(i._input,i,c,t)}for(var o=0;ot.lo&&(x.so=!0)}return a}));h.enter().append("path").classed("point",!0),h.exit().remove(),h.call(a.translatePoints,o,s)}function l(t,e,r,a){var o,s,l=e.val,c=e.pos,u=!!c.rangebreaks,f=a.bPos,h=a.bPosPxOffset||0,p=r.boxmean||(r.meanline||{}).visible;Array.isArray(a.bdPos)?(o=a.bdPos[0],s=a.bdPos[1]):(o=a.bdPos,s=a.bdPos);var d=t.selectAll("path.mean").data("box"===r.type&&r.boxmean||"violin"===r.type&&r.box.visible&&r.meanline.visible?i.identity:[]);d.enter().append("path").attr("class","mean").style({fill:"none","vector-effect":"non-scaling-stroke"}),d.exit().remove(),d.each((function(t){var e=c.c2l(t.pos+f,!0),i=c.l2p(e-o)+h,a=c.l2p(e+s)+h,d=u?(i+a)/2:c.l2p(e)+h,m=l.c2p(t.mean,!0),g=l.c2p(t.mean-t.sd,!0),v=l.c2p(t.mean+t.sd,!0);"h"===r.orientation?n.select(this).attr("d","M"+m+","+i+"V"+a+("sd"===p?"m0,0L"+g+","+d+"L"+m+","+i+"L"+v+","+d+"Z":"")):n.select(this).attr("d","M"+i+","+m+"H"+a+("sd"===p?"m0,0L"+d+","+g+"L"+i+","+m+"L"+d+","+v+"Z":""))}))}e.exports={plot:function(t,e,r,a){var c=e.xaxis,u=e.yaxis;i.makeTraceGroups(a,r,"trace boxes").each((function(t){var e,r,i=n.select(this),a=t[0],f=a.t,h=a.trace;(f.wdPos=f.bdPos*h.whiskerwidth,!0!==h.visible||f.empty)?i.remove():("h"===h.orientation?(e=u,r=c):(e=c,r=u),o(i,{pos:e,val:r},h,f),s(i,{x:c,y:u},h,f),l(i,{pos:e,val:r},h,f))}))},plotBoxAndWhiskers:o,plotPoints:s,plotBoxMean:l}},{"../../components/drawing":661,"../../lib":776,"@plotly/d3":58}],949:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n,i=t.cd,a=t.xaxis,o=t.yaxis,s=[];if(!1===e)for(r=0;r=10)return null;for(var i=1/0,a=-1/0,o=e.length,s=0;s0?Math.floor:Math.ceil,I=L>0?Math.ceil:Math.floor,O=L>0?Math.min:Math.max,z=L>0?Math.max:Math.min,D=P(S+C),R=I(E-C),F=[[f=M(S)]];for(a=D;a*L=0;i--)a[u-i]=t[f][i],o[u-i]=e[f][i];for(s.push({x:a,y:o,bicubic:l}),i=f,a=[],o=[];i>=0;i--)a[f-i]=t[i][0],o[f-i]=e[i][0];return s.push({x:a,y:o,bicubic:c}),s}},{}],963:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib/extend").extendFlat;e.exports=function(t,e,r){var a,o,s,l,c,u,f,h,p,d,m,g,v,y,x=t["_"+e],b=t[e+"axis"],_=b._gridlines=[],w=b._minorgridlines=[],T=b._boundarylines=[],k=t["_"+r],A=t[r+"axis"];"array"===b.tickmode&&(b.tickvals=x.slice());var M=t._xctrl,S=t._yctrl,E=M[0].length,L=M.length,C=t._a.length,P=t._b.length;n.prepTicks(b),"array"===b.tickmode&&delete b.tickvals;var I=b.smoothing?3:1;function O(n){var i,a,o,s,l,c,u,f,p,d,m,g,v=[],y=[],x={};if("b"===e)for(a=t.b2j(n),o=Math.floor(Math.max(0,Math.min(P-2,a))),s=a-o,x.length=P,x.crossLength=C,x.xy=function(e){return t.evalxy([],e,a)},x.dxy=function(e,r){return t.dxydi([],e,o,r,s)},i=0;i0&&(p=t.dxydi([],i-1,o,0,s),v.push(l[0]+p[0]/3),y.push(l[1]+p[1]/3),d=t.dxydi([],i-1,o,1,s),v.push(f[0]-d[0]/3),y.push(f[1]-d[1]/3)),v.push(f[0]),y.push(f[1]),l=f;else for(i=t.a2i(n),c=Math.floor(Math.max(0,Math.min(C-2,i))),u=i-c,x.length=C,x.crossLength=P,x.xy=function(e){return t.evalxy([],i,e)},x.dxy=function(e,r){return t.dxydj([],c,e,u,r)},a=0;a0&&(m=t.dxydj([],c,a-1,u,0),v.push(l[0]+m[0]/3),y.push(l[1]+m[1]/3),g=t.dxydj([],c,a-1,u,1),v.push(f[0]-g[0]/3),y.push(f[1]-g[1]/3)),v.push(f[0]),y.push(f[1]),l=f;return x.axisLetter=e,x.axis=b,x.crossAxis=A,x.value=n,x.constvar=r,x.index=h,x.x=v,x.y=y,x.smoothing=A.smoothing,x}function z(n){var i,a,o,s,l,c=[],u=[],f={};if(f.length=x.length,f.crossLength=k.length,"b"===e)for(o=Math.max(0,Math.min(P-2,n)),l=Math.min(1,Math.max(0,n-o)),f.xy=function(e){return t.evalxy([],e,n)},f.dxy=function(e,r){return t.dxydi([],e,o,r,l)},i=0;ix.length-1||_.push(i(z(o),{color:b.gridcolor,width:b.gridwidth}));for(h=u;hx.length-1||m<0||m>x.length-1))for(g=x[s],v=x[m],a=0;ax[x.length-1]||w.push(i(O(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(z(0),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(z(x.length-1),{color:b.endlinecolor,width:b.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((x[x.length-1]-b.tick0)/b.dtick*(1+l)),Math.ceil((x[0]-b.tick0)/b.dtick/(1+l))].sort((function(t,e){return t-e})))[0],f=c[1],h=u;h<=f;h++)p=b.tick0+b.dtick*h,_.push(i(O(p),{color:b.gridcolor,width:b.gridwidth}));for(h=u-1;hx[x.length-1]||w.push(i(O(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(O(x[0]),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(O(x[x.length-1]),{color:b.endlinecolor,width:b.endlinewidth}))}}},{"../../lib/extend":766,"../../plots/cartesian/axes":827}],964:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib/extend").extendFlat;e.exports=function(t,e){var r,a,o,s=e._labels=[],l=e._gridlines;for(r=0;re.length&&(t=t.slice(0,e.length)):t=[],i=0;i90&&(p-=180,l=-l),{angle:p,flip:l,p:t.c2p(n,e,r),offsetMultplier:c}}},{}],978:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../components/drawing"),a=t("./map_1d_array"),o=t("./makepath"),s=t("./orient_text"),l=t("../../lib/svg_text_utils"),c=t("../../lib"),u=c.strRotate,f=c.strTranslate,h=t("../../constants/alignment");function p(t,e,r,i,s,l){var c="const-"+s+"-lines",u=r.selectAll("."+c).data(l);u.enter().append("path").classed(c,!0).style("vector-effect","non-scaling-stroke"),u.each((function(r){var i=r,s=i.x,l=i.y,c=a([],s,t.c2p),u=a([],l,e.c2p),f="M"+o(c,u,i.smoothing);n.select(this).attr("d",f).style("stroke-width",i.width).style("stroke",i.color).style("fill","none")})),u.exit().remove()}function d(t,e,r,a,o,c,h,p){var d=c.selectAll("text."+p).data(h);d.enter().append("text").classed(p,!0);var m=0,g={};return d.each((function(o,c){var h;if("auto"===o.axis.tickangle)h=s(a,e,r,o.xy,o.dxy);else{var p=(o.axis.tickangle+180)*Math.PI/180;h=s(a,e,r,o.xy,[Math.cos(p),Math.sin(p)])}c||(g={angle:h.angle,flip:h.flip});var d=(o.endAnchor?-1:1)*h.flip,v=n.select(this).attr({"text-anchor":d>0?"start":"end","data-notex":1}).call(i.font,o.font).text(o.text).call(l.convertToTspans,t),y=i.bBox(this);v.attr("transform",f(h.p[0],h.p[1])+u(h.angle)+f(o.axis.labelpadding*d,.3*y.height)),m=Math.max(m,y.width+o.axis.labelpadding)})),d.exit().remove(),g.maxExtent=m,g}e.exports=function(t,e,r,i){var l=e.xaxis,u=e.yaxis,f=t._fullLayout._clips;c.makeTraceGroups(i,r,"trace").each((function(e){var r=n.select(this),i=e[0],h=i.trace,m=h.aaxis,g=h.baxis,y=c.ensureSingle(r,"g","minorlayer"),x=c.ensureSingle(r,"g","majorlayer"),b=c.ensureSingle(r,"g","boundarylayer"),_=c.ensureSingle(r,"g","labellayer");r.style("opacity",h.opacity),p(l,u,x,m,"a",m._gridlines),p(l,u,x,g,"b",g._gridlines),p(l,u,y,m,"a",m._minorgridlines),p(l,u,y,g,"b",g._minorgridlines),p(l,u,b,m,"a-boundary",m._boundarylines),p(l,u,b,g,"b-boundary",g._boundarylines);var w=d(t,l,u,h,i,_,m._labels,"a-label"),T=d(t,l,u,h,i,_,g._labels,"b-label");!function(t,e,r,n,i,a,o,l){var u,f,h,p,d=c.aggNums(Math.min,null,r.a),m=c.aggNums(Math.max,null,r.a),g=c.aggNums(Math.min,null,r.b),y=c.aggNums(Math.max,null,r.b);u=.5*(d+m),f=g,h=r.ab2xy(u,f,!0),p=r.dxyda_rough(u,f),void 0===o.angle&&c.extendFlat(o,s(r,i,a,h,r.dxydb_rough(u,f)));v(t,e,r,n,h,p,r.aaxis,i,a,o,"a-title"),u=d,f=.5*(g+y),h=r.ab2xy(u,f,!0),p=r.dxydb_rough(u,f),void 0===l.angle&&c.extendFlat(l,s(r,i,a,h,r.dxyda_rough(u,f)));v(t,e,r,n,h,p,r.baxis,i,a,l,"b-title")}(t,_,h,i,l,u,w,T),function(t,e,r,n,i){var s,l,u,f,h=r.select("#"+t._clipPathId);h.size()||(h=r.append("clipPath").classed("carpetclip",!0));var p=c.ensureSingle(h,"path","carpetboundary"),d=e.clipsegments,m=[];for(f=0;f90&&y<270,b=n.select(this);b.text(h.title.text).call(l.convertToTspans,t),x&&(_=(-l.lineCount(b)+g)*m*a-_),b.attr("transform",f(e.p[0],e.p[1])+u(e.angle)+f(0,_)).attr("text-anchor","middle").call(i.font,h.title.font)})),b.exit().remove()}},{"../../components/drawing":661,"../../constants/alignment":744,"../../lib":776,"../../lib/svg_text_utils":802,"./makepath":975,"./map_1d_array":976,"./orient_text":977,"@plotly/d3":58}],979:[function(t,e,r){"use strict";var n=t("./constants"),i=t("../../lib/search").findBin,a=t("./compute_control_points"),o=t("./create_spline_evaluator"),s=t("./create_i_derivative_evaluator"),l=t("./create_j_derivative_evaluator");e.exports=function(t){var e=t._a,r=t._b,c=e.length,u=r.length,f=t.aaxis,h=t.baxis,p=e[0],d=e[c-1],m=r[0],g=r[u-1],v=e[e.length-1]-e[0],y=r[r.length-1]-r[0],x=v*n.RELATIVE_CULL_TOLERANCE,b=y*n.RELATIVE_CULL_TOLERANCE;p-=x,d+=x,m-=b,g+=b,t.isVisible=function(t,e){return t>p&&tm&&ed||eg},t.setScale=function(){var e=t._x,r=t._y,n=a(t._xctrl,t._yctrl,e,r,f.smoothing,h.smoothing);t._xctrl=n[0],t._yctrl=n[1],t.evalxy=o([t._xctrl,t._yctrl],c,u,f.smoothing,h.smoothing),t.dxydi=s([t._xctrl,t._yctrl],f.smoothing,h.smoothing),t.dxydj=l([t._xctrl,t._yctrl],f.smoothing,h.smoothing)},t.i2a=function(t){var r=Math.max(0,Math.floor(t[0]),c-2),n=t[0]-r;return(1-n)*e[r]+n*e[r+1]},t.j2b=function(t){var e=Math.max(0,Math.floor(t[1]),c-2),n=t[1]-e;return(1-n)*r[e]+n*r[e+1]},t.ij2ab=function(e){return[t.i2a(e[0]),t.j2b(e[1])]},t.a2i=function(t){var r=Math.max(0,Math.min(i(t,e),c-2)),n=e[r],a=e[r+1];return Math.max(0,Math.min(c-1,r+(t-n)/(a-n)))},t.b2j=function(t){var e=Math.max(0,Math.min(i(t,r),u-2)),n=r[e],a=r[e+1];return Math.max(0,Math.min(u-1,e+(t-n)/(a-n)))},t.ab2ij=function(e){return[t.a2i(e[0]),t.b2j(e[1])]},t.i2c=function(e,r){return t.evalxy([],e,r)},t.ab2xy=function(n,i,a){if(!a&&(ne[c-1]|ir[u-1]))return[!1,!1];var o=t.a2i(n),s=t.b2j(i),l=t.evalxy([],o,s);if(a){var f,h,p,d,m=0,g=0,v=[];ne[c-1]?(f=c-2,h=1,m=(n-e[c-1])/(e[c-1]-e[c-2])):h=o-(f=Math.max(0,Math.min(c-2,Math.floor(o)))),ir[u-1]?(p=u-2,d=1,g=(i-r[u-1])/(r[u-1]-r[u-2])):d=s-(p=Math.max(0,Math.min(u-2,Math.floor(s)))),m&&(t.dxydi(v,f,p,h,d),l[0]+=v[0]*m,l[1]+=v[1]*m),g&&(t.dxydj(v,f,p,h,d),l[0]+=v[0]*g,l[1]+=v[1]*g)}return l},t.c2p=function(t,e,r){return[e.c2p(t[0]),r.c2p(t[1])]},t.p2x=function(t,e,r){return[e.p2c(t[0]),r.p2c(t[1])]},t.dadi=function(t){var r=Math.max(0,Math.min(e.length-2,t));return e[r+1]-e[r]},t.dbdj=function(t){var e=Math.max(0,Math.min(r.length-2,t));return r[e+1]-r[e]},t.dxyda=function(e,r,n,i){var a=t.dxydi(null,e,r,n,i),o=t.dadi(e,n);return[a[0]/o,a[1]/o]},t.dxydb=function(e,r,n,i){var a=t.dxydj(null,e,r,n,i),o=t.dbdj(r,i);return[a[0]/o,a[1]/o]},t.dxyda_rough=function(e,r,n){var i=v*(n||.1),a=t.ab2xy(e+i,r,!0),o=t.ab2xy(e-i,r,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dxydb_rough=function(e,r,n){var i=y*(n||.1),a=t.ab2xy(e,r+i,!0),o=t.ab2xy(e,r-i,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dpdx=function(t){return t._m},t.dpdy=function(t){return t._m}}},{"../../lib/search":796,"./compute_control_points":967,"./constants":968,"./create_i_derivative_evaluator":969,"./create_j_derivative_evaluator":970,"./create_spline_evaluator":971}],980:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e,r){var i,a,o,s=[],l=[],c=t[0].length,u=t.length;function f(e,r){var n,i=0,a=0;return e>0&&void 0!==(n=t[r][e-1])&&(a++,i+=n),e0&&void 0!==(n=t[r-1][e])&&(a++,i+=n),r0&&a0&&i1e-5);return n.log("Smoother converged to",k,"after",A,"iterations"),t}},{"../../lib":776}],981:[function(t,e,r){"use strict";var n=t("../../lib").isArray1D;e.exports=function(t,e,r){var i=r("x"),a=i&&i.length,o=r("y"),s=o&&o.length;if(!a&&!s)return!1;if(e._cheater=!i,a&&!n(i)||s&&!n(o))e._length=null;else{var l=a?i.length:1/0;s&&(l=Math.min(l,o.length)),e.a&&e.a.length&&(l=Math.min(l,e.a.length)),e.b&&e.b.length&&(l=Math.min(l,e.b.length)),e._length=l}return!0}},{"../../lib":776}],982:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").hovertemplateAttrs,i=t("../scattergeo/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../plots/attributes"),s=t("../../components/color/attributes").defaultLine,l=t("../../lib/extend").extendFlat,c=i.marker.line;e.exports=l({locations:{valType:"data_array",editType:"calc"},locationmode:i.locationmode,z:{valType:"data_array",editType:"calc"},geojson:l({},i.geojson,{}),featureidkey:i.featureidkey,text:l({},i.text,{}),hovertext:l({},i.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:"calc"},opacity:{valType:"number",arrayOk:!0,min:0,max:1,dflt:1,editType:"style"},editType:"calc"},selected:{marker:{opacity:i.selected.marker.opacity,editType:"plot"},editType:"plot"},unselected:{marker:{opacity:i.unselected.marker.opacity,editType:"plot"},editType:"plot"},hoverinfo:l({},o.hoverinfo,{editType:"calc",flags:["location","z","text","name"]}),hovertemplate:n(),showlegend:l({},o.showlegend,{dflt:!1})},a("",{cLetter:"z",editTypeOverride:"calc"}))},{"../../components/color/attributes":638,"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plots/attributes":823,"../../plots/template_attributes":899,"../scattergeo/attributes":1233}],983:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../constants/numerical").BADNUM,a=t("../../components/colorscale/calc"),o=t("../scatter/arrays_to_calcdata"),s=t("../scatter/calc_selection");function l(t){return t&&"string"==typeof t}e.exports=function(t,e){var r,c=e._length,u=new Array(c);r=e.geojson?function(t){return l(t)||n(t)}:l;for(var f=0;f")}(t,f,o),[t]}},{"../../lib":776,"../../plots/cartesian/axes":827,"./attributes":982}],987:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),calc:t("./calc"),calcGeoJSON:t("./plot").calcGeoJSON,plot:t("./plot").plot,style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"choropleth",basePlotModule:t("../../plots/geo"),categories:["geo","noOpacity","showLegend"],meta:{}}},{"../../plots/geo":860,"../heatmap/colorbar":1061,"./attributes":982,"./calc":983,"./defaults":984,"./event_data":985,"./hover":986,"./plot":988,"./select":989,"./style":990}],988:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../../lib/geo_location_utils"),o=t("../../lib/topojson_utils").getTopojsonFeatures,s=t("../../plots/cartesian/autorange").findExtremes,l=t("./style").style;e.exports={calcGeoJSON:function(t,e){for(var r=t[0].trace,n=e[r.geo],i=n._subplot,l=r.locationmode,c=r._length,u="geojson-id"===l?a.extractTraceFeature(t):o(r,i.topojson),f=[],h=[],p=0;p=0;n--){var i=r[n].id;if("string"==typeof i&&0===i.indexOf("water"))for(var a=n+1;a=0;r--)t.removeLayer(e[r][1])},s.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new o(t,r.uid),a=i.sourceId,s=n(e),l=i.below=t.belowLookup["trace-"+r.uid];return t.map.addSource(a,{type:"geojson",data:s.geojson}),i._addLayers(s,l),e[0].trace._glTrace=i,i}},{"../../plots/mapbox/constants":882,"./convert":992}],996:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/cartesian/axis_format_attributes").axisHoverFormat,a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../mesh3d/attributes"),s=t("../../plots/attributes"),l=t("../../lib/extend").extendFlat,c={x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},u:{valType:"data_array",editType:"calc"},v:{valType:"data_array",editType:"calc"},w:{valType:"data_array",editType:"calc"},sizemode:{valType:"enumerated",values:["scaled","absolute"],editType:"calc",dflt:"scaled"},sizeref:{valType:"number",editType:"calc",min:0},anchor:{valType:"enumerated",editType:"calc",values:["tip","tail","cm","center"],dflt:"cm"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:a({editType:"calc"},{keys:["norm"]}),uhoverformat:i("u",1),vhoverformat:i("v",1),whoverformat:i("w",1),xhoverformat:i("x"),yhoverformat:i("y"),zhoverformat:i("z"),showlegend:l({},s.showlegend,{dflt:!1})};l(c,n("",{colorAttr:"u/v/w norm",showScaleDflt:!0,editTypeOverride:"calc"}));["opacity","lightposition","lighting"].forEach((function(t){c[t]=o[t]})),c.hoverinfo=l({},s.hoverinfo,{editType:"calc",flags:["x","y","z","u","v","w","norm","text","name"],dflt:"x+y+z+norm+text+name"}),c.transforms=void 0,e.exports=c},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plots/attributes":823,"../../plots/cartesian/axis_format_attributes":830,"../../plots/template_attributes":899,"../mesh3d/attributes":1132}],997:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){for(var r=e.u,i=e.v,a=e.w,o=Math.min(e.x.length,e.y.length,e.z.length,r.length,i.length,a.length),s=-1/0,l=1/0,c=0;co.level||o.starts.length&&a===o.level)}break;case"constraint":if(n.prefixBoundary=!1,n.edgepaths.length)return;var s=n.x.length,l=n.y.length,c=-1/0,u=1/0;for(r=0;r":p>c&&(n.prefixBoundary=!0);break;case"<":(pc||n.starts.length&&h===u)&&(n.prefixBoundary=!0);break;case"][":f=Math.min(p[0],p[1]),h=Math.max(p[0],p[1]),fc&&(n.prefixBoundary=!0)}}}},{}],1004:[function(t,e,r){"use strict";var n=t("../../components/colorscale"),i=t("./make_color_map"),a=t("./end_plus");e.exports={min:"zmin",max:"zmax",calc:function(t,e,r){var o=e.contours,s=e.line,l=o.size||1,c=o.coloring,u=i(e,{isColorbar:!0});if("heatmap"===c){var f=n.extractOpts(e);r._fillgradient=f.reversescale?n.flipScale(f.colorscale):f.colorscale,r._zrange=[f.min,f.max]}else"fill"===c&&(r._fillcolor=u);r._line={color:"lines"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},r._levels={start:o.start,end:a(o),size:l}}}},{"../../components/colorscale":651,"./end_plus":1012,"./make_color_map":1017}],1005:[function(t,e,r){"use strict";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},{}],1006:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("./label_defaults"),a=t("../../components/color"),o=a.addOpacity,s=a.opacity,l=t("../../constants/filter_ops"),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(t,e,r,a,l,f){var h,p,d,m=e.contours,g=r("contours.operation");(m._operation=c[g],function(t,e){var r;-1===u.indexOf(e.operation)?(t("contours.value",[0,1]),Array.isArray(e.value)?e.value.length>2?e.value=e.value.slice(2):0===e.length?e.value=[0,1]:e.length<2?(r=parseFloat(e.value[0]),e.value=[r,r+1]):e.value=[parseFloat(e.value[0]),parseFloat(e.value[1])]:n(e.value)&&(r=parseFloat(e.value),e.value=[r,r+1])):(t("contours.value",0),n(e.value)||(Array.isArray(e.value)?e.value=parseFloat(e.value[0]):e.value=0))}(r,m),"="===g?h=m.showlines=!0:(h=r("contours.showlines"),d=r("fillcolor",o((t.line||{}).color||l,.5))),h)&&(p=r("line.color",d&&s(d)?o(e.fillcolor,1):l),r("line.width",2),r("line.dash"));r("line.smoothing"),i(r,a,p,f)}},{"../../components/color":639,"../../constants/filter_ops":748,"./label_defaults":1016,"fast-isnumeric":242}],1007:[function(t,e,r){"use strict";var n=t("../../constants/filter_ops"),i=t("fast-isnumeric");function a(t,e){var r,a=Array.isArray(e);function o(t){return i(t)?+t:null}return-1!==n.COMPARISON_OPS2.indexOf(t)?r=o(a?e[0]:e):-1!==n.INTERVAL_OPS.indexOf(t)?r=a?[o(e[0]),o(e[1])]:[o(e),o(e)]:-1!==n.SET_OPS.indexOf(t)&&(r=a?e.map(o):[o(e)]),r}function o(t){return function(e){e=a(t,e);var r=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]);return{start:r,end:n,size:n-r}}}function s(t){return function(e){return{start:e=a(t,e),end:1/0,size:1/0}}}e.exports={"[]":o("[]"),"][":o("]["),">":s(">"),"<":s("<"),"=":s("=")}},{"../../constants/filter_ops":748,"fast-isnumeric":242}],1008:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i=n("contours.start"),a=n("contours.end"),o=!1===i||!1===a,s=r("contours.size");!(o?e.autocontour=!0:r("autocontour",!1))&&s||r("ncontours")}},{}],1009:[function(t,e,r){"use strict";var n=t("../../lib");function i(t){return n.extendFlat({},t,{edgepaths:n.extendDeep([],t.edgepaths),paths:n.extendDeep([],t.paths),starts:n.extendDeep([],t.starts)})}e.exports=function(t,e){var r,a,o,s=function(t){return t.reverse()},l=function(t){return t};switch(e){case"=":case"<":return t;case">":for(1!==t.length&&n.warn("Contour data invalid for the specified inequality operation."),a=t[0],r=0;r1e3){n.warn("Too many contours, clipping at 1000",t);break}return l}},{"../../lib":776,"./constraint_mapping":1007,"./end_plus":1012}],1012:[function(t,e,r){"use strict";e.exports=function(t){return t.end+t.size/1e6}},{}],1013:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./constants");function a(t,e,r,n){return Math.abs(t[0]-e[0])20&&e?208===t||1114===t?n=0===r[0]?1:-1:a=0===r[1]?1:-1:-1!==i.BOTTOMSTART.indexOf(t)?a=1:-1!==i.LEFTSTART.indexOf(t)?n=1:-1!==i.TOPSTART.indexOf(t)?a=-1:n=-1;return[n,a]}(f,r,e),p=[s(t,e,[-h[0],-h[1]])],d=t.z.length,m=t.z[0].length,g=e.slice(),v=h.slice();for(c=0;c<1e4;c++){if(f>20?(f=i.CHOOSESADDLE[f][(h[0]||h[1])<0?0:1],t.crossings[u]=i.SADDLEREMAINDER[f]):delete t.crossings[u],!(h=i.NEWDELTA[f])){n.log("Found bad marching index:",f,e,t.level);break}p.push(s(t,e,h)),e[0]+=h[0],e[1]+=h[1],u=e.join(","),a(p[p.length-1],p[p.length-2],o,l)&&p.pop();var y=h[0]&&(e[0]<0||e[0]>m-2)||h[1]&&(e[1]<0||e[1]>d-2);if(e[0]===g[0]&&e[1]===g[1]&&h[0]===v[0]&&h[1]===v[1]||r&&y)break;f=t.crossings[u]}1e4===c&&n.log("Infinite loop in contour?");var x,b,_,w,T,k,A,M,S,E,L,C,P,I,O,z=a(p[0],p[p.length-1],o,l),D=0,R=.2*t.smoothing,F=[],B=0;for(c=1;c=B;c--)if((x=F[c])=B&&x+F[b]M&&S--,t.edgepaths[S]=L.concat(p,E));break}V||(t.edgepaths[M]=p.concat(E))}for(M=0;Mt?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);return 5===r||10===r?t>(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4?5===r?713:1114:5===r?104:208:15===r?0:r}e.exports=function(t){var e,r,a,o,s,l,c,u,f,h=t[0].z,p=h.length,d=h[0].length,m=2===p||2===d;for(r=0;r=0&&(n=y,s=l):Math.abs(r[1]-n[1])<.01?Math.abs(r[1]-y[1])<.01&&(y[0]-r[0])*(n[0]-y[0])>=0&&(n=y,s=l):i.log("endpt to newendpt is not vert. or horz.",r,n,y)}if(r=n,s>=0)break;f+="L"+n}if(s===t.edgepaths.length){i.log("unclosed perimeter path");break}h=s,(d=-1===p.indexOf(h))&&(h=p[0],f+="Z")}for(h=0;hn.center?n.right-s:s-n.left)/(u+Math.abs(Math.sin(c)*o)),p=(l>n.middle?n.bottom-l:l-n.top)/(Math.abs(f)+Math.cos(c)*o);if(h<1||p<1)return 1/0;var d=v.EDGECOST*(1/(h-1)+1/(p-1));d+=v.ANGLECOST*c*c;for(var m=s-u,g=l-f,y=s+u,x=l+f,b=0;b2*v.MAXCOST)break;p&&(s/=2),l=(o=c-s/2)+1.5*s}if(h<=v.MAXCOST)return u},r.addLabelData=function(t,e,r,n){var i=e.fontSize,a=e.width+i/3,o=Math.max(0,e.height-i/3),s=t.x,l=t.y,c=t.theta,u=Math.sin(c),f=Math.cos(c),h=function(t,e){return[s+t*f-e*u,l+t*u+e*f]},p=[h(-a/2,-o/2),h(-a/2,o/2),h(a/2,o/2),h(a/2,-o/2)];r.push({text:e.text,x:s,y:l,dy:e.dy,theta:c,level:e.level,width:a,height:o}),n.push(p)},r.drawLabels=function(t,e,r,a,o){var l=t.selectAll("text").data(e,(function(t){return t.text+","+t.x+","+t.y+","+t.theta}));if(l.exit().remove(),l.enter().append("text").attr({"data-notex":1,"text-anchor":"middle"}).each((function(t){var e=t.x+Math.sin(t.theta)*t.dy,i=t.y-Math.cos(t.theta)*t.dy;n.select(this).text(t.text).attr({x:e,y:i,transform:"rotate("+180*t.theta/Math.PI+" "+e+" "+i+")"}).call(s.convertToTspans,r)})),o){for(var c="",u=0;ur.end&&(r.start=r.end=(r.start+r.end)/2),t._input.contours||(t._input.contours={}),i.extendFlat(t._input.contours,{start:r.start,end:r.end,size:r.size}),t._input.autocontour=!0}else if("constraint"!==r.type){var c,u=r.start,f=r.end,h=t._input.contours;if(u>f&&(r.start=h.start=f,f=r.end=h.end=u,u=r.start),!(r.size>0))c=u===f?1:a(u,f,t.ncontours).dtick,h.size=r.size=c}}},{"../../lib":776,"../../plots/cartesian/axes":827}],1021:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../components/drawing"),a=t("../heatmap/style"),o=t("./make_color_map");e.exports=function(t){var e=n.select(t).selectAll("g.contour");e.style("opacity",(function(t){return t[0].trace.opacity})),e.each((function(t){var e=n.select(this),r=t[0].trace,a=r.contours,s=r.line,l=a.size||1,c=a.start,u="constraint"===a.type,f=!u&&"lines"===a.coloring,h=!u&&"fill"===a.coloring,p=f||h?o(r):null;e.selectAll("g.contourlevel").each((function(t){n.select(this).selectAll("path").call(i.lineGroupStyle,s.width,f?p(t.level):s.color,s.dash)}));var d=a.labelfont;if(e.selectAll("g.contourlabels text").each((function(t){i.font(n.select(this),{family:d.family,size:d.size,color:d.color||(f?p(t.level):s.color)})})),u)e.selectAll("g.contourfill path").style("fill",r.fillcolor);else if(h){var m;e.selectAll("g.contourfill path").style("fill",(function(t){return void 0===m&&(m=t.level),p(t.level+.5*l)})),void 0===m&&(m=c),e.selectAll("g.contourbg path").style("fill",p(m-.5*l))}})),a(t)}},{"../../components/drawing":661,"../heatmap/style":1070,"./make_color_map":1017,"@plotly/d3":58}],1022:[function(t,e,r){"use strict";var n=t("../../components/colorscale/defaults"),i=t("./label_defaults");e.exports=function(t,e,r,a,o){var s,l=r("contours.coloring"),c="";"fill"===l&&(s=r("contours.showlines")),!1!==s&&("lines"!==l&&(c=r("line.color","#000")),r("line.width",.5),r("line.dash")),"none"!==l&&(!0!==t.showlegend&&(e.showlegend=!1),e._dfltShowLegend=!1,n(t,e,a,r,{prefix:"",cLetter:"z"})),r("line.smoothing"),i(r,a,c,o)}},{"../../components/colorscale/defaults":649,"./label_defaults":1016}],1023:[function(t,e,r){"use strict";var n=t("../heatmap/attributes"),i=t("../contour/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../lib/extend").extendFlat,s=i.contours;e.exports=o({carpet:{valType:"string",editType:"calc"},z:n.z,a:n.x,a0:n.x0,da:n.dx,b:n.y,b0:n.y0,db:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,atype:n.xtype,btype:n.ytype,fillcolor:i.fillcolor,autocontour:i.autocontour,ncontours:i.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:"enumerated",values:["fill","lines","none"],dflt:"fill",editType:"calc"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:"calc",impliedEdits:{autocontour:!1}},line:{color:i.line.color,width:i.line.width,dash:i.line.dash,smoothing:i.line.smoothing,editType:"plot"},transforms:void 0},a("",{cLetter:"z",autoColorDflt:!1}))},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../contour/attributes":1001,"../heatmap/attributes":1058}],1024:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc"),i=t("../../lib"),a=t("../heatmap/convert_column_xyz"),o=t("../heatmap/clean_2d_array"),s=t("../heatmap/interp2d"),l=t("../heatmap/find_empties"),c=t("../heatmap/make_bound_array"),u=t("./defaults"),f=t("../carpet/lookup_carpetid"),h=t("../contour/set_contours");e.exports=function(t,e){var r=e._carpetTrace=f(t,e);if(r&&r.visible&&"legendonly"!==r.visible){if(!e.a||!e.b){var p=t.data[r.index],d=t.data[e.index];d.a||(d.a=p.a),d.b||(d.b=p.b),u(d,e,e._defaultColor,t._fullLayout)}var m=function(t,e){var r,u,f,h,p,d,m,g=e._carpetTrace,v=g.aaxis,y=g.baxis;v._minDtick=0,y._minDtick=0,i.isArray1D(e.z)&&a(e,v,y,"a","b",["z"]);r=e._a=e._a||e.a,h=e._b=e._b||e.b,r=r?v.makeCalcdata(e,"_a"):[],h=h?y.makeCalcdata(e,"_b"):[],u=e.a0||0,f=e.da||1,p=e.b0||0,d=e.db||1,m=e._z=o(e._z||e.z,e.transpose),e._emptypoints=l(m),s(m,e._emptypoints);var x=i.maxRowLength(m),b="scaled"===e.xtype?"":r,_=c(e,b,u,f,x,v),w="scaled"===e.ytype?"":h,T=c(e,w,p,d,m.length,y),k={a:_,b:T,z:m};"levels"===e.contours.type&&"none"!==e.contours.coloring&&n(t,e,{vals:m,containerStr:"",cLetter:"z"});return[k]}(t,e);return h(e,e._z),m}}},{"../../components/colorscale/calc":647,"../../lib":776,"../carpet/lookup_carpetid":974,"../contour/set_contours":1020,"../heatmap/clean_2d_array":1060,"../heatmap/convert_column_xyz":1062,"../heatmap/find_empties":1064,"../heatmap/interp2d":1067,"../heatmap/make_bound_array":1068,"./defaults":1025}],1025:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../heatmap/xyz_defaults"),a=t("./attributes"),o=t("../contour/constraint_defaults"),s=t("../contour/contours_defaults"),l=t("../contour/style_defaults");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,a,r,i)}if(u("carpet"),t.a&&t.b){if(!i(t,e,u,c,"a","b"))return void(e.visible=!1);u("text"),"constraint"===u("contours.type")?o(t,e,u,c,r,{hasHover:!1}):(s(t,e,u,(function(r){return n.coerce2(t,e,a,r)})),l(t,e,u,c,{hasHover:!1}))}else e._defaultColor=r,e._length=null}},{"../../lib":776,"../contour/constraint_defaults":1006,"../contour/contours_defaults":1008,"../contour/style_defaults":1022,"../heatmap/xyz_defaults":1072,"./attributes":1023}],1026:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../contour/colorbar"),calc:t("./calc"),plot:t("./plot"),style:t("../contour/style"),moduleType:"trace",name:"contourcarpet",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","carpet","contour","symbols","showLegend","hasLines","carpetDependent","noHover","noSortingByValue"],meta:{}}},{"../../plots/cartesian":841,"../contour/colorbar":1004,"../contour/style":1021,"./attributes":1023,"./calc":1024,"./defaults":1025,"./plot":1027}],1027:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../carpet/map_1d_array"),a=t("../carpet/makepath"),o=t("../../components/drawing"),s=t("../../lib"),l=t("../contour/make_crossings"),c=t("../contour/find_all_paths"),u=t("../contour/plot"),f=t("../contour/constants"),h=t("../contour/convert_to_constraints"),p=t("../contour/empty_pathinfo"),d=t("../contour/close_boundaries"),m=t("../carpet/lookup_carpetid"),g=t("../carpet/axis_aligned_line");function v(t,e,r){var n=t.getPointAtLength(e),i=t.getPointAtLength(r),a=i.x-n.x,o=i.y-n.y,s=Math.sqrt(a*a+o*o);return[a/s,o/s]}function y(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]);return[t[0]/e,t[1]/e]}function x(t,e){var r=Math.abs(t[0]*e[0]+t[1]*e[1]);return Math.sqrt(1-r*r)/r}e.exports=function(t,e,r,b){var _=e.xaxis,w=e.yaxis;s.makeTraceGroups(b,r,"contour").each((function(r){var b=n.select(this),T=r[0],k=T.trace,A=k._carpetTrace=m(t,k),M=t.calcdata[A.index][0];if(A.visible&&"legendonly"!==A.visible){var S=T.a,E=T.b,L=k.contours,C=p(L,e,T),P="constraint"===L.type,I=L._operation,O=P?"="===I?"lines":"fill":L.coloring,z=[[S[0],E[E.length-1]],[S[S.length-1],E[E.length-1]],[S[S.length-1],E[0]],[S[0],E[0]]];l(C);var D=1e-8*(S[S.length-1]-S[0]),R=1e-8*(E[E.length-1]-E[0]);c(C,D,R);var F,B,N,j,U=C;"constraint"===L.type&&(U=h(C,I)),function(t,e){var r,n,i,a,o,s,l,c,u;for(r=0;r=0;j--)F=M.clipsegments[j],B=i([],F.x,_.c2p),N=i([],F.y,w.c2p),B.reverse(),N.reverse(),V.push(a(B,N,F.bicubic));var H="M"+V.join("L")+"Z";!function(t,e,r,n,o,l){var c,u,f,h,p=s.ensureSingle(t,"g","contourbg").selectAll("path").data("fill"!==l||o?[]:[0]);p.enter().append("path"),p.exit().remove();var d=[];for(h=0;h=0&&(h=L,d=m):Math.abs(f[1]-h[1])=0&&(h=L,d=m):s.log("endpt to newendpt is not vert. or horz.",f,h,L)}if(d>=0)break;y+=S(f,h),f=h}if(d===e.edgepaths.length){s.log("unclosed perimeter path");break}u=d,(b=-1===x.indexOf(u))&&(u=x[0],y+=S(f,h)+"Z",f=null)}for(u=0;ug&&(n.max=g);n.len=n.max-n.min}(this,r,t,n,c,e.height),!(n.len<(e.width+e.height)*f.LABELMIN)))for(var i=Math.min(Math.ceil(n.len/I),f.LABELMAX),a=0;a0?+p[u]:0),f.push({type:"Feature",geometry:{type:"Point",coordinates:v},properties:y})}}var b=o.extractOpts(e),_=b.reversescale?o.flipScale(b.colorscale):b.colorscale,w=_[0][1],T=["interpolate",["linear"],["heatmap-density"],0,a.opacity(w)<1?w:a.addOpacity(w,0)];for(u=1;u<_.length;u++)T.push(_[u][0],_[u][1]);var k=["interpolate",["linear"],["get","z"],b.min,0,b.max,1];return i.extendFlat(c.heatmap.paint,{"heatmap-weight":d?k:1/(b.max-b.min),"heatmap-color":T,"heatmap-radius":m?{type:"identity",property:"r"}:e.radius,"heatmap-opacity":e.opacity}),c.geojson={type:"FeatureCollection",features:f},c.heatmap.layout.visibility="visible",c}},{"../../components/color":639,"../../components/colorscale":651,"../../constants/numerical":752,"../../lib":776,"../../lib/geojson_utils":770,"fast-isnumeric":242}],1031:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/colorscale/defaults"),a=t("./attributes");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s("lon")||[],c=s("lat")||[],u=Math.min(l.length,c.length);u?(e._length=u,s("z"),s("radius"),s("below"),s("text"),s("hovertext"),s("hovertemplate"),i(t,e,o,s,{prefix:"",cLetter:"z"})):e.visible=!1}},{"../../components/colorscale/defaults":649,"../../lib":776,"./attributes":1028}],1032:[function(t,e,r){"use strict";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.z=e.z,t}},{}],1033:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../scattermapbox/hover").hoverPoints,a=t("../scattermapbox/hover").getExtraText;e.exports=function(t,e,r){var o=i(t,e,r);if(o){var s=o[0],l=s.cd,c=l[0].trace,u=l[s.index];if(delete s.color,"z"in u){var f=s.subplot.mockAxis;s.z=u.z,s.zLabel=n.tickText(f,f.c2l(u.z),"hover").text}return s.extraText=a(c,u,l[0].t.labels),[s]}}},{"../../plots/cartesian/axes":827,"../scattermapbox/hover":1261}],1034:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),formatLabels:t("../scattermapbox/format_labels"),calc:t("./calc"),plot:t("./plot"),hoverPoints:t("./hover"),eventData:t("./event_data"),getBelow:function(t,e){for(var r=e.getMapLayers(),n=0;n=0;r--)t.removeLayer(e[r][1])},o.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new a(t,r.uid),o=i.sourceId,s=n(e),l=i.below=t.belowLookup["trace-"+r.uid];return t.map.addSource(o,{type:"geojson",data:s.geojson}),i._addLayers(s,l),i}},{"../../plots/mapbox/constants":882,"./convert":1030}],1036:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;r"),l.color=function(t,e){var r=t.marker,i=e.mc||r.color,a=e.mlc||r.line.color,o=e.mlw||r.line.width;if(n(i))return i;if(n(a)&&o)return a}(u,h),[l]}}},{"../../components/color":639,"../../lib":776,"../bar/hover":921}],1044:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style").style,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("../bar/select"),moduleType:"trace",name:"funnel",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../bar/select":926,"./attributes":1037,"./calc":1038,"./cross_trace_calc":1040,"./defaults":1041,"./event_data":1042,"./hover":1043,"./layout_attributes":1045,"./layout_defaults":1046,"./plot":1047,"./style":1048}],1045:[function(t,e,r){"use strict";e.exports={funnelmode:{valType:"enumerated",values:["stack","group","overlay"],dflt:"stack",editType:"calc"},funnelgap:{valType:"number",min:0,max:1,editType:"calc"},funnelgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],1046:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s path").each((function(t){if(!t.isBlank){var e=s.marker;n.select(this).call(a.fill,t.mc||e.color).call(a.stroke,t.mlc||e.line.color).call(i.dashLine,e.line.dash,t.mlw||e.line.width).style("opacity",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(".regions").each((function(){n.select(this).selectAll("path").style("stroke-width",0).call(a.fill,s.connector.fillcolor)})),r.selectAll(".lines").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll("path"),t.width,t.color,t.dash)}))}))}}},{"../../components/color":639,"../../components/drawing":661,"../../constants/interactions":751,"../bar/style":928,"../bar/uniform_text":930,"@plotly/d3":58}],1049:[function(t,e,r){"use strict";var n=t("../pie/attributes"),i=t("../../plots/attributes"),a=t("../../plots/domain").attributes,o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../plots/template_attributes").texttemplateAttrs,l=t("../../lib/extend").extendFlat;e.exports={labels:n.labels,label0:n.label0,dlabel:n.dlabel,values:n.values,marker:{colors:n.marker.colors,line:{color:l({},n.marker.line.color,{dflt:null}),width:l({},n.marker.line.width,{dflt:1}),editType:"calc"},editType:"calc"},text:n.text,hovertext:n.hovertext,scalegroup:l({},n.scalegroup,{}),textinfo:l({},n.textinfo,{flags:["label","text","value","percent"]}),texttemplate:s({editType:"plot"},{keys:["label","color","value","text","percent"]}),hoverinfo:l({},i.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:o({},{keys:["label","color","value","text","percent"]}),textposition:l({},n.textposition,{values:["inside","none"],dflt:"inside"}),textfont:n.textfont,insidetextfont:n.insidetextfont,title:{text:n.title.text,font:n.title.font,position:l({},n.title.position,{values:["top left","top center","top right"],dflt:"top center"}),editType:"plot"},domain:a({name:"funnelarea",trace:!0,editType:"calc"}),aspectratio:{valType:"number",min:0,dflt:1,editType:"plot"},baseratio:{valType:"number",min:0,max:1,dflt:.333,editType:"plot"}}},{"../../lib/extend":766,"../../plots/attributes":823,"../../plots/domain":855,"../../plots/template_attributes":899,"../pie/attributes":1165}],1050:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="funnelarea",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":890}],1051:[function(t,e,r){"use strict";var n=t("../pie/calc");e.exports={calc:function(t,e){return n.calc(t,e)},crossTraceCalc:function(t){n.crossTraceCalc(t,{type:"funnelarea"})}}},{"../pie/calc":1167}],1052:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../plots/domain").defaults,o=t("../bar/defaults").handleText,s=t("../pie/defaults").handleLabelsAndValues;e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,i,r,a)}var u=c("labels"),f=c("values"),h=s(u,f),p=h.len;if(e._hasLabels=h.hasLabels,e._hasValues=h.hasValues,!e._hasLabels&&e._hasValues&&(c("label0"),c("dlabel")),p){e._length=p,c("marker.line.width")&&c("marker.line.color",l.paper_bgcolor),c("marker.colors"),c("scalegroup");var d,m=c("text"),g=c("texttemplate");if(g||(d=c("textinfo",Array.isArray(m)?"text+percent":"percent")),c("hovertext"),c("hovertemplate"),g||d&&"none"!==d){var v=c("textposition");o(t,e,l,c,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}a(e,l,c),c("title.text")&&(c("title.position"),n.coerceFont(c,"title.font",l.font)),c("aspectratio"),c("baseratio")}else e.visible=!1}},{"../../lib":776,"../../plots/domain":855,"../bar/defaults":918,"../pie/defaults":1168,"./attributes":1049}],1053:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"funnelarea",basePlotModule:t("./base_plot"),categories:["pie-like","funnelarea","showLegend"],attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),style:t("./style"),styleOne:t("../pie/style_one"),meta:{}}},{"../pie/style_one":1176,"./attributes":1049,"./base_plot":1050,"./calc":1051,"./defaults":1052,"./layout_attributes":1054,"./layout_defaults":1055,"./plot":1056,"./style":1057}],1054:[function(t,e,r){"use strict";var n=t("../pie/layout_attributes").hiddenlabels;e.exports={hiddenlabels:n,funnelareacolorway:{valType:"colorlist",editType:"calc"},extendfunnelareacolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{"../pie/layout_attributes":1172}],1055:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("hiddenlabels"),r("funnelareacolorway",e.colorway),r("extendfunnelareacolors")}},{"../../lib":776,"./layout_attributes":1054}],1056:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../components/drawing"),a=t("../../lib"),o=a.strScale,s=a.strTranslate,l=t("../../lib/svg_text_utils"),c=t("../bar/plot").toMoveInsideBar,u=t("../bar/uniform_text"),f=u.recordMinTextSize,h=u.clearMinTextSize,p=t("../pie/helpers"),d=t("../pie/plot"),m=d.attachFxHandlers,g=d.determineInsideTextFont,v=d.layoutAreas,y=d.prerenderTitles,x=d.positionTitleOutside,b=d.formatSliceLabel;function _(t,e){return"l"+(e[0]-t[0])+","+(e[1]-t[1])}e.exports=function(t,e){var r=t._fullLayout;h("funnelarea",r),y(e,t),v(e,r._size),a.makeTraceGroups(r._funnelarealayer,e,"trace").each((function(e){var u=n.select(this),h=e[0],d=h.trace;!function(t){if(!t.length)return;var e=t[0],r=e.trace,n=r.aspectratio,i=r.baseratio;i>.999&&(i=.999);var a,o=Math.pow(i,2),s=e.vTotal,l=s,c=s*o/(1-o)/s;function u(){var t,e={x:t=Math.sqrt(c),y:-t};return[e.x,e.y]}var f,h,p=[];for(p.push(u()),f=t.length-1;f>-1;f--)if(!(h=t[f]).hidden){var d=h.v/l;c+=d,p.push(u())}var m=1/0,g=-1/0;for(f=0;f-1;f--)if(!(h=t[f]).hidden){var A=p[k+=1][0],M=p[k][1];h.TL=[-A,M],h.TR=[A,M],h.BL=w,h.BR=T,h.pxmid=(S=h.TR,E=h.BR,[.5*(S[0]+E[0]),.5*(S[1]+E[1])]),w=h.TL,T=h.TR}var S,E}(e),u.each((function(){var u=n.select(this).selectAll("g.slice").data(e);u.enter().append("g").classed("slice",!0),u.exit().remove(),u.each((function(o,s){if(o.hidden)n.select(this).selectAll("path,g").remove();else{o.pointNumber=o.i,o.curveNumber=d.index;var u=h.cx,v=h.cy,y=n.select(this),x=y.selectAll("path.surface").data([o]);x.enter().append("path").classed("surface",!0).style({"pointer-events":"all"}),y.call(m,t,e);var w="M"+(u+o.TR[0])+","+(v+o.TR[1])+_(o.TR,o.BR)+_(o.BR,o.BL)+_(o.BL,o.TL)+"Z";x.attr("d",w),b(t,o,h);var T=p.castOption(d.textposition,o.pts),k=y.selectAll("g.slicetext").data(o.text&&"none"!==T?[0]:[]);k.enter().append("g").classed("slicetext",!0),k.exit().remove(),k.each((function(){var h=a.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),p=a.ensureUniformFontSize(t,g(d,o,r.font));h.text(o.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(i.font,p).call(l.convertToTspans,t);var m,y,x,b=i.bBox(h.node()),_=Math.min(o.BL[1],o.BR[1])+v,w=Math.max(o.TL[1],o.TR[1])+v;y=Math.max(o.TL[0],o.BL[0])+u,x=Math.min(o.TR[0],o.BR[0])+u,(m=c(y,x,_,w,b,{isHorizontal:!0,constrained:!0,angle:0,anchor:"middle"})).fontSize=p.size,f(d.type,m,r),e[s].transform=m,h.attr("transform",a.getTextTransform(m))}))}}));var v=n.select(this).selectAll("g.titletext").data(d.title.text?[0]:[]);v.enter().append("g").classed("titletext",!0),v.exit().remove(),v.each((function(){var e=a.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),c=d.title.text;d._meta&&(c=a.templateString(c,d._meta)),e.text(c).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(i.font,d.title.font).call(l.convertToTspans,t);var u=x(h,r._size);e.attr("transform",s(u.x,u.y)+o(Math.min(1,u.scale))+s(u.tx,u.ty))}))}))}))}},{"../../components/drawing":661,"../../lib":776,"../../lib/svg_text_utils":802,"../bar/plot":925,"../bar/uniform_text":930,"../pie/helpers":1170,"../pie/plot":1174,"@plotly/d3":58}],1057:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../pie/style_one"),a=t("../bar/uniform_text").resizeText;e.exports=function(t){var e=t._fullLayout._funnelarealayer.selectAll(".trace");a(t,e,"funnelarea"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll("path.surface").each((function(t){n.select(this).call(i,t,e)}))}))}},{"../bar/uniform_text":930,"../pie/style_one":1176,"@plotly/d3":58}],1058:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../plots/attributes"),a=t("../../plots/cartesian/axis_format_attributes").axisHoverFormat,o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../components/colorscale/attributes"),l=t("../../lib/extend").extendFlat;e.exports=l({z:{valType:"data_array",editType:"calc"},x:l({},n.x,{impliedEdits:{xtype:"array"}}),x0:l({},n.x0,{impliedEdits:{xtype:"scaled"}}),dx:l({},n.dx,{impliedEdits:{xtype:"scaled"}}),y:l({},n.y,{impliedEdits:{ytype:"array"}}),y0:l({},n.y0,{impliedEdits:{ytype:"scaled"}}),dy:l({},n.dy,{impliedEdits:{ytype:"scaled"}}),xperiod:l({},n.xperiod,{impliedEdits:{xtype:"scaled"}}),yperiod:l({},n.yperiod,{impliedEdits:{ytype:"scaled"}}),xperiod0:l({},n.xperiod0,{impliedEdits:{xtype:"scaled"}}),yperiod0:l({},n.yperiod0,{impliedEdits:{ytype:"scaled"}}),xperiodalignment:l({},n.xperiodalignment,{impliedEdits:{xtype:"scaled"}}),yperiodalignment:l({},n.yperiodalignment,{impliedEdits:{ytype:"scaled"}}),text:{valType:"data_array",editType:"calc"},hovertext:{valType:"data_array",editType:"calc"},transpose:{valType:"boolean",dflt:!1,editType:"calc"},xtype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},ytype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},zsmooth:{valType:"enumerated",values:["fast","best",!1],dflt:!1,editType:"calc"},hoverongaps:{valType:"boolean",dflt:!0,editType:"none"},connectgaps:{valType:"boolean",editType:"calc"},xgap:{valType:"number",dflt:0,min:0,editType:"plot"},ygap:{valType:"number",dflt:0,min:0,editType:"plot"},xhoverformat:a("x"),yhoverformat:a("y"),zhoverformat:a("z",1),hovertemplate:o(),showlegend:l({},i.showlegend,{dflt:!1})},{transforms:void 0},s("",{cLetter:"z",autoColorDflt:!1}))},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plots/attributes":823,"../../plots/cartesian/axis_format_attributes":830,"../../plots/template_attributes":899,"../scatter/attributes":1191}],1059:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../plots/cartesian/align_period"),s=t("../histogram2d/calc"),l=t("../../components/colorscale/calc"),c=t("./convert_column_xyz"),u=t("./clean_2d_array"),f=t("./interp2d"),h=t("./find_empties"),p=t("./make_bound_array"),d=t("../../constants/numerical").BADNUM;function m(t){for(var e=[],r=t.length,n=0;nD){O("x scale is not linear");break}}if(x.length&&"fast"===P){var R=(x[x.length-1]-x[0])/(x.length-1),F=Math.abs(R/100);for(k=0;kF){O("y scale is not linear");break}}}var B=i.maxRowLength(T),N="scaled"===e.xtype?"":r,j=p(e,N,g,v,B,M),U="scaled"===e.ytype?"":x,V=p(e,U,b,_,T.length,S);C||(e._extremes[M._id]=a.findExtremes(M,j),e._extremes[S._id]=a.findExtremes(S,V));var H={x:j,y:V,z:T,text:e._text||e.text,hovertext:e._hovertext||e.hovertext};if(e.xperiodalignment&&y&&(H.orig_x=y),e.yperiodalignment&&w&&(H.orig_y=w),N&&N.length===j.length-1&&(H.xCenter=N),U&&U.length===V.length-1&&(H.yCenter=U),L&&(H.xRanges=A.xRanges,H.yRanges=A.yRanges,H.pts=A.pts),E||l(t,e,{vals:T,cLetter:"z"}),E&&e.contours&&"heatmap"===e.contours.coloring){var q={type:"contour"===e.type?"heatmap":"histogram2d",xcalendar:e.xcalendar,ycalendar:e.ycalendar};H.xfill=p(q,N,g,v,B,M),H.yfill=p(q,U,b,_,T.length,S)}return[H]}},{"../../components/colorscale/calc":647,"../../constants/numerical":752,"../../lib":776,"../../plots/cartesian/align_period":824,"../../plots/cartesian/axes":827,"../../registry":904,"../histogram2d/calc":1091,"./clean_2d_array":1060,"./convert_column_xyz":1062,"./find_empties":1064,"./interp2d":1067,"./make_bound_array":1068}],1060:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../constants/numerical").BADNUM;e.exports=function(t,e,r,o){var s,l,c,u,f,h;function p(t){if(n(t))return+t}if(e&&e.transpose){for(s=0,f=0;f=0;o--)(s=((f[[(r=(a=h[o])[0])-1,i=a[1]]]||m)[2]+(f[[r+1,i]]||m)[2]+(f[[r,i-1]]||m)[2]+(f[[r,i+1]]||m)[2])/20)&&(l[a]=[r,i,s],h.splice(o,1),c=!0);if(!c)throw"findEmpties iterated with no new neighbors";for(a in l)f[a]=l[a],u.push(l[a])}return u.sort((function(t,e){return e[2]-t[2]}))}},{"../../lib":776}],1065:[function(t,e,r){"use strict";var n=t("../../components/fx"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../components/colorscale").extractOpts;e.exports=function(t,e,r,s,l){l||(l={});var c,u,f,h,p=l.isContour,d=t.cd[0],m=d.trace,g=t.xa,v=t.ya,y=d.x,x=d.y,b=d.z,_=d.xCenter,w=d.yCenter,T=d.zmask,k=m.zhoverformat,A=y,M=x;if(!1!==t.index){try{f=Math.round(t.index[1]),h=Math.round(t.index[0])}catch(e){return void i.error("Error hovering on heatmap, pointNumber must be [row,col], found:",t.index)}if(f<0||f>=b[0].length||h<0||h>b.length)return}else{if(n.inbox(e-y[0],e-y[y.length-1],0)>0||n.inbox(r-x[0],r-x[x.length-1],0)>0)return;if(p){var S;for(A=[2*y[0]-y[1]],S=1;Sm&&(v=Math.max(v,Math.abs(t[a][o]-d)/(g-m))))}return v}e.exports=function(t,e){var r,i=1;for(o(t,e),r=0;r.01;r++)i=o(t,e,a(i));return i>.01&&n.log("interp2d didn't converge quickly",i),t}},{"../../lib":776}],1068:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib").isArrayOrTypedArray;e.exports=function(t,e,r,a,o,s){var l,c,u,f=[],h=n.traceIs(t,"contour"),p=n.traceIs(t,"histogram"),d=n.traceIs(t,"gl2d");if(i(e)&&e.length>1&&!p&&"category"!==s.type){var m=e.length;if(!(m<=o))return h?e.slice(0,o):e.slice(0,o+1);if(h||d)f=e.slice(0,o);else if(1===o)f=[e[0]-.5,e[0]+.5];else{for(f=[1.5*e[0]-.5*e[1]],u=1;u0;)h=p.c2p(T[y]),y--;for(h0;)v=d.c2p(k[y]),y--;if(v0&&(a=!0);for(var l=0;la){var o=a-r[t];return r[t]=a,o}}return 0},max:function(t,e,r,i){var a=i[e];if(n(a)){if(a=Number(a),!n(r[t]))return r[t]=a,a;if(r[t]c?t>o?t>1.1*i?i:t>1.1*a?a:o:t>s?s:t>l?l:c:Math.pow(10,Math.floor(Math.log(t)/Math.LN10))}function p(t,e,r,n,a,s){if(n&&t>o){var l=d(e,a,s),c=d(r,a,s),u=t===i?0:1;return l[u]!==c[u]}return Math.floor(r/t)-Math.floor(e/t)>.1}function d(t,e,r){var n=e.c2d(t,i,r).split("-");return""===n[0]&&(n.unshift(),n[0]="-"+n[0]),n}e.exports=function(t,e,r,n,a){var s,l,c=-1.1*e,h=-.1*e,p=t-h,d=r[0],m=r[1],g=Math.min(f(d+h,d+p,n,a),f(m+h,m+p,n,a)),v=Math.min(f(d+c,d+h,n,a),f(m+c,m+h,n,a));if(g>v&&vo){var y=s===i?1:6,x=s===i?"M12":"M1";return function(e,r){var o=n.c2d(e,i,a),s=o.indexOf("-",y);s>0&&(o=o.substr(0,s));var c=n.d2c(o,0,a);if(cr.r2l(B)&&(j=o.tickIncrement(j,b.size,!0,p)),z.start=r.l2r(j),F||i.nestedProperty(e,v+".start").set(z.start)}var U=b.end,V=r.r2l(O.end),H=void 0!==V;if((b.endFound||H)&&V!==r.r2l(U)){var q=H?V:i.aggNums(Math.max,null,d);z.end=r.l2r(q),H||i.nestedProperty(e,v+".start").set(z.end)}var G="autobin"+s;return!1===e._input[G]&&(e._input[v]=i.extendFlat({},e[v]||{}),delete e._input[G],delete e[G]),[z,d]}e.exports={calc:function(t,e){var r,a,p,d,m=[],g=[],v=o.getFromId(t,"h"===e.orientation?e.yaxis:e.xaxis),y="h"===e.orientation?"y":"x",x={x:"y",y:"x"}[y],b=e[y+"calendar"],_=e.cumulative,w=h(t,e,v,y),T=w[0],k=w[1],A="string"==typeof T.size,M=[],S=A?M:T,E=[],L=[],C=[],P=0,I=e.histnorm,O=e.histfunc,z=-1!==I.indexOf("density");_.enabled&&z&&(I=I.replace(/ ?density$/,""),z=!1);var D,R="max"===O||"min"===O?null:0,F=l.count,B=c[I],N=!1,j=function(t){return v.r2c(t,0,b)};for(i.isArrayOrTypedArray(e[x])&&"count"!==O&&(D=e[x],N="avg"===O,F=l[O]),r=j(T.start),p=j(T.end)+(r-o.tickIncrement(r,T.size,!1,b))/1e6;r=0&&d=0;n--)s(n);else if("increasing"===e){for(n=1;n=0;n--)t[n]+=t[n+1];"exclude"===r&&(t.push(0),t.shift())}}(g,_.direction,_.currentbin);var J=Math.min(m.length,g.length),K=[],Q=0,$=J-1;for(r=0;r=Q;r--)if(g[r]){$=r;break}for(r=Q;r<=$;r++)if(n(m[r])&&n(g[r])){var tt={p:m[r],s:g[r],b:0};_.enabled||(tt.pts=C[r],G?tt.ph0=tt.ph1=C[r].length?k[C[r][0]]:m[r]:(e._computePh=!0,tt.ph0=H(M[r]),tt.ph1=H(M[r+1],!0))),K.push(tt)}return 1===K.length&&(K[0].width1=o.tickIncrement(K[0].p,T.size,!1,b)-K[0].p),s(K,e),i.isArrayOrTypedArray(e.selectedpoints)&&i.tagSelected(K,e,X),K},calcAllAutoBins:h}},{"../../lib":776,"../../plots/cartesian/axes":827,"../../registry":904,"../bar/arrays_to_calcdata":913,"./average":1078,"./bin_functions":1080,"./bin_label_vals":1081,"./norm_functions":1089,"fast-isnumeric":242}],1083:[function(t,e,r){"use strict";e.exports={eventDataKeys:["binNumber"]}},{}],1084:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../plots/cartesian/axis_ids"),a=t("../../registry").traceIs,o=t("../bar/defaults").handleGroupingDefaults,s=n.nestedProperty,l=t("../../plots/cartesian/constraints").getAxisGroup,c=[{aStr:{x:"xbins.start",y:"ybins.start"},name:"start"},{aStr:{x:"xbins.end",y:"ybins.end"},name:"end"},{aStr:{x:"xbins.size",y:"ybins.size"},name:"size"},{aStr:{x:"nbinsx",y:"nbinsy"},name:"nbins"}],u=["x","y"];e.exports=function(t,e){var r,f,h,p,d,m,g,v=e._histogramBinOpts={},y=[],x={},b=[];function _(t,e){return n.coerce(r._input,r,r._module.attributes,t,e)}function w(t){return"v"===t.orientation?"x":"y"}function T(t,r,a){var o=t.uid+"__"+a;r||(r=o);var s=function(t,r){return i.getFromTrace({_fullLayout:e},t,r).type}(t,a),l=t[a+"calendar"]||"",c=v[r],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(t),c.dirs.push(a)):(r=o,s!==c.axType&&n.warn(["Attempted to group the bins of trace",t.index,"set on a","type:"+s,"axis","with bins on","type:"+c.axType,"axis."].join(" ")),l!==c.calendar&&n.warn(["Attempted to group the bins of trace",t.index,"set with a",l,"calendar","with bins",c.calendar?"on a "+c.calendar+" calendar":"w/o a set calendar"].join(" ")))),u&&(v[r]={traces:[t],dirs:[a],axType:s,calendar:t[a+"calendar"]||""}),t["_"+a+"bingroup"]=r}for(d=0;dS&&T.splice(S,T.length-S),M.length>S&&M.splice(S,M.length-S);var E=[],L=[],C=[],P="string"==typeof w.size,I="string"==typeof A.size,O=[],z=[],D=P?O:w,R=I?z:A,F=0,B=[],N=[],j=e.histnorm,U=e.histfunc,V=-1!==j.indexOf("density"),H="max"===U||"min"===U?null:0,q=a.count,G=o[j],Y=!1,W=[],X=[],Z="z"in e?e.z:"marker"in e&&Array.isArray(e.marker.color)?e.marker.color:"";Z&&"count"!==U&&(Y="avg"===U,q=a[U]);var J=w.size,K=x(w.start),Q=x(w.end)+(K-i.tickIncrement(K,J,!1,v))/1e6;for(r=K;r=0&&p=0&&d-1,flipY:E.tiling.flip.indexOf("y")>-1,orientation:E.tiling.orientation,pad:{inner:E.tiling.pad},maxDepth:E._maxDepth}).descendants(),O=1/0,z=-1/0;I.forEach((function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(O=Math.min(O,e),z=Math.max(z,e))})),p=p.data(I,u.getPtId),E._maxVisibleLayers=isFinite(z)?z-O+1:0,p.enter().append("g").classed("slice",!0),T(p,!1,{},[m,g],x),p.order();var D=null;if(w&&M){var R=u.getPtId(M);p.each((function(t){null===D&&u.getPtId(t)===R&&(D={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})}))}var F=function(){return D||{x0:0,x1:m,y0:0,y1:g}},B=p;return w&&(B=B.transition().each("end",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),B.each((function(s){s._x0=v(s.x0),s._x1=v(s.x1),s._y0=y(s.y0),s._y1=y(s.y1),s._hoverX=v(s.x1-E.tiling.pad),s._hoverY=y(P?s.y1-E.tiling.pad/2:s.y0+E.tiling.pad/2);var p=n.select(this),d=i.ensureSingle(p,"path","surface",(function(t){t.style("pointer-events","all")}));w?d.transition().attrTween("d",(function(t){var e=k(t,!1,F(),[m,g],{orientation:E.tiling.orientation,flipX:E.tiling.flip.indexOf("x")>-1,flipY:E.tiling.flip.indexOf("y")>-1});return function(t){return x(e(t))}})):d.attr("d",x),p.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),d.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text="":s._text=h(s,r,E,e,S)||"";var T=i.ensureSingle(p,"g","slicetext"),M=i.ensureSingle(T,"text","",(function(t){t.attr("data-notex",1)})),I=i.ensureUniformFontSize(t,u.determineTextFont(E,s,S.font));M.text(s._text||" ").classed("slicetext",!0).attr("text-anchor",C?"end":L?"start":"middle").call(a.font,I).call(o.convertToTspans,t),s.textBB=a.bBox(M.node()),s.transform=b(s,{fontSize:I.size}),s.transform.fontSize=I.size,w?M.transition().attrTween("transform",(function(t){var e=A(t,!1,F(),[m,g]);return function(t){return _(e(t))}})):M.attr("transform",_(s))})),D}},{"../../components/drawing":661,"../../lib":776,"../../lib/svg_text_utils":802,"../sunburst/fx":1308,"../sunburst/helpers":1309,"../sunburst/plot":1313,"../treemap/constants":1332,"./partition":1107,"./style":1109,"@plotly/d3":58}],1104:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"icicle",basePlotModule:t("./base_plot"),categories:[],animatable:!0,attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),style:t("./style").style,colorbar:t("../scatter/marker_colorbar"),meta:{}}},{"../scatter/marker_colorbar":1209,"./attributes":1099,"./base_plot":1100,"./calc":1101,"./defaults":1102,"./layout_attributes":1105,"./layout_defaults":1106,"./plot":1108,"./style":1109}],1105:[function(t,e,r){"use strict";e.exports={iciclecolorway:{valType:"colorlist",editType:"calc"},extendiciclecolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{}],1106:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("iciclecolorway",e.colorway),r("extendiciclecolors")}},{"../../lib":776,"./layout_attributes":1105}],1107:[function(t,e,r){"use strict";var n=t("d3-hierarchy"),i=t("../treemap/flip_tree");e.exports=function(t,e,r){var a=r.flipX,o=r.flipY,s="h"===r.orientation,l=r.maxDepth,c=e[0],u=e[1];l&&(c=(t.height+1)*e[0]/Math.min(t.height+1,l),u=(t.height+1)*e[1]/Math.min(t.height+1,l));var f=n.partition().padding(r.pad.inner).size(s?[e[1],c]:[e[0],u])(t);return(s||a||o)&&i(f,e,{swapXY:s,flipX:a,flipY:o}),f}},{"../treemap/flip_tree":1337,"d3-hierarchy":163}],1108:[function(t,e,r){"use strict";var n=t("../treemap/draw"),i=t("./draw_descendants");e.exports=function(t,e,r,a){return n(t,e,r,a,{type:"icicle",drawDescendants:i})}},{"../treemap/draw":1334,"./draw_descendants":1103}],1109:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../components/color"),a=t("../../lib"),o=t("../bar/uniform_text").resizeText;function s(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=a.castOption(r,s,"marker.line.color")||i.defaultLine,c=a.castOption(r,s,"marker.line.width")||0;t.style("stroke-width",c).call(i.fill,n.color).call(i.stroke,l).style("opacity",o?r.leaf.opacity:null)}e.exports={style:function(t){var e=t._fullLayout._iciclelayer.selectAll(".trace");o(t,e,"icicle"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style("opacity",r.opacity),e.selectAll("path.surface").each((function(t){n.select(this).call(s,t,r)}))}))},styleOne:s}},{"../../components/color":639,"../../lib":776,"../bar/uniform_text":930,"@plotly/d3":58}],1110:[function(t,e,r){"use strict";for(var n=t("../../plots/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../../lib/extend").extendFlat,o=t("./constants").colormodel,s=["rgb","rgba","rgba256","hsl","hsla"],l=[],c=[],u=0;u0||n.inbox(r-o.y0,r-(o.y0+o.h*s.dy),0)>0)){var u,f=Math.floor((e-o.x0)/s.dx),h=Math.floor(Math.abs(r-o.y0)/s.dy);if(s._hasZ?u=o.z[h][f]:s._hasSource&&(u=s._canvas.el.getContext("2d").getImageData(f,h,1,1).data),u){var p,d=o.hi||s.hoverinfo;if(d){var m=d.split("+");-1!==m.indexOf("all")&&(m=["color"]),-1!==m.indexOf("color")&&(p=!0)}var g,v=a.colormodel[s.colormodel],y=v.colormodel||s.colormodel,x=y.length,b=s._scaler(u),_=v.suffix,w=[];(s.hovertemplate||p)&&(w.push("["+[b[0]+_[0],b[1]+_[1],b[2]+_[2]].join(", ")),4===x&&w.push(", "+b[3]+_[3]),w.push("]"),w=w.join(""),t.extraText=y.toUpperCase()+": "+w),Array.isArray(s.hovertext)&&Array.isArray(s.hovertext[h])?g=s.hovertext[h][f]:Array.isArray(s.text)&&Array.isArray(s.text[h])&&(g=s.text[h][f]);var T=c.c2p(o.y0+(h+.5)*s.dy),k=o.x0+(f+.5)*s.dx,A=o.y0+(h+.5)*s.dy,M="["+u.slice(0,s.colormodel.length).join(", ")+"]";return[i.extendFlat(t,{index:[h,f],x0:l.c2p(o.x0+f*s.dx),x1:l.c2p(o.x0+(f+1)*s.dx),y0:T,y1:T,color:b,xVal:k,xLabelVal:k,yVal:A,yLabelVal:A,zLabelVal:M,text:g,hovertemplateLabels:{zLabel:M,colorLabel:w,"color[0]Label":b[0]+_[0],"color[1]Label":b[1]+_[1],"color[2]Label":b[2]+_[2],"color[3]Label":b[3]+_[3]}})]}}}},{"../../components/fx":679,"../../lib":776,"./constants":1112}],1117:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),style:t("./style"),hoverPoints:t("./hover"),eventData:t("./event_data"),moduleType:"trace",name:"image",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","2dMap","noSortingByValue"],animatable:!1,meta:{}}},{"../../plots/cartesian":841,"./attributes":1110,"./calc":1111,"./defaults":1113,"./event_data":1114,"./hover":1116,"./plot":1118,"./style":1119}],1118:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=i.strTranslate,o=t("../../constants/xmlns_namespaces"),s=t("./constants"),l=i.isIOS()||i.isSafari()||i.isIE();e.exports=function(t,e,r,c){var u=e.xaxis,f=e.yaxis,h=!(l||t._context._exportedPlot);i.makeTraceGroups(c,r,"im").each((function(e){var r=n.select(this),l=e[0],c=l.trace,p=("fast"===c.zsmooth||!1===c.zsmooth&&h)&&!c._hasZ&&c._hasSource&&"linear"===u.type&&"linear"===f.type;c._realImage=p;var d,m,g,v,y,x,b=l.z,_=l.x0,w=l.y0,T=l.w,k=l.h,A=c.dx,M=c.dy;for(x=0;void 0===d&&x0;)m=u.c2p(_+x*A),x--;for(x=0;void 0===v&&x0;)y=f.c2p(w+x*M),x--;if(mI[0];if(O||z){var D=d+S/2,R=v+E/2;C+="transform:"+a(D+"px",R+"px")+"scale("+(O?-1:1)+","+(z?-1:1)+")"+a(-D+"px",-R+"px")+";"}}L.attr("style",C);var F=new Promise((function(t){if(c._hasZ)t();else if(c._hasSource)if(c._canvas&&c._canvas.el.width===T&&c._canvas.el.height===k&&c._canvas.source===c.source)t();else{var e=document.createElement("canvas");e.width=T,e.height=k;var r=e.getContext("2d");c._image=c._image||new Image;var n=c._image;n.onload=function(){r.drawImage(n,0,0),c._canvas={el:e,source:c.source},t()},n.setAttribute("src",c.source)}})).then((function(){var t;if(c._hasZ)t=B((function(t,e){return b[e][t]})).toDataURL("image/png");else if(c._hasSource)if(p)t=c.source;else{var e=c._canvas.el.getContext("2d").getImageData(0,0,T,k).data;t=B((function(t,r){var n=4*(r*T+t);return[e[n],e[n+1],e[n+2],e[n+3]]})).toDataURL("image/png")}L.attr({"xlink:href":t,height:E,width:S,x:d,y:v})}));t._promises.push(F)}function B(t){var e=document.createElement("canvas");e.width=S,e.height=E;var r,n=e.getContext("2d"),a=function(t){return i.constrain(Math.round(u.c2p(_+t*A)-d),0,S)},o=function(t){return i.constrain(Math.round(f.c2p(w+t*M)-v),0,E)},h=s.colormodel[c.colormodel],p=h.colormodel||c.colormodel,m=h.fmt;for(x=0;x0}function T(t){t.each((function(t){y.stroke(n.select(this),t.line.color)})).each((function(t){y.fill(n.select(this),t.color)})).style("stroke-width",(function(t){return t.line.width}))}function k(t,e,r){var n=t._fullLayout,i=o.extendFlat({type:"linear",ticks:"outside",range:r,showline:!0},e),a={type:"linear",_id:"x"+e._id},s={letter:"x",font:n.font,noHover:!0,noTickson:!0};function l(t,e){return o.coerce(i,a,v,t,e)}return m(i,a,l,s,n),g(i,a,l,s),a}function A(t,e,r){return[Math.min(e/t.width,r/t.height),t,e+"x"+r]}function M(t,e,r,i){var a=document.createElementNS("http://www.w3.org/2000/svg","text"),o=n.select(a);return o.text(t).attr("x",0).attr("y",0).attr("text-anchor",r).attr("data-unformatted",t).call(p.convertToTspans,i).call(f.font,e),f.bBox(o.node())}function S(t,e,r,n,i,a){var s="_cache"+e;t[s]&&t[s].key===i||(t[s]={key:i,value:r});var l=o.aggNums(a,null,[t[s].value,n],2);return t[s].value=l,l}e.exports=function(t,e,r,m){var g,v=t._fullLayout;w(r)&&m&&(g=m()),o.makeTraceGroups(v._indicatorlayer,e,"trace").each((function(e){var m,E,L,C,P,I=e[0].trace,O=n.select(this),z=I._hasGauge,D=I._isAngular,R=I._isBullet,F=I.domain,B={w:v._size.w*(F.x[1]-F.x[0]),h:v._size.h*(F.y[1]-F.y[0]),l:v._size.l+v._size.w*F.x[0],r:v._size.r+v._size.w*(1-F.x[1]),t:v._size.t+v._size.h*(1-F.y[1]),b:v._size.b+v._size.h*F.y[0]},N=B.l+B.w/2,j=B.t+B.h/2,U=Math.min(B.w/2,B.h),V=h.innerRadius*U,H=I.align||"center";if(E=j,z){if(D&&(m=N,E=j+U/2,L=function(t){return function(t,e){var r=Math.sqrt(t.width/2*(t.width/2)+t.height*t.height);return[e/r,t,e]}(t,.9*V)}),R){var q=h.bulletPadding,G=1-h.bulletNumberDomainSize+q;m=B.l+(G+(1-G)*b[H])*B.w,L=function(t){return A(t,(h.bulletNumberDomainSize-q)*B.w,B.h)}}}else m=B.l+b[H]*B.w,L=function(t){return A(t,B.w,B.h)};!function(t,e,r,i){var c,u,h,m=r[0].trace,g=i.numbersX,v=i.numbersY,T=m.align||"center",A=x[T],E=i.transitionOpts,L=i.onComplete,C=o.ensureSingle(e,"g","numbers"),P=[];m._hasNumber&&P.push("number");m._hasDelta&&(P.push("delta"),"left"===m.delta.position&&P.reverse());var I=C.selectAll("text").data(P);function O(e,r,n,i){if(!e.match("s")||n>=0==i>=0||r(n).slice(-1).match(_)||r(i).slice(-1).match(_))return r;var a=e.slice().replace("s","f").replace(/\d+/,(function(t){return parseInt(t)-1})),o=k(t,{tickformat:a});return function(t){return Math.abs(t)<1?d.tickText(o,t).text:r(t)}}I.enter().append("text"),I.attr("text-anchor",(function(){return A})).attr("class",(function(t){return t})).attr("x",null).attr("y",null).attr("dx",null).attr("dy",null),I.exit().remove();var z,D=m.mode+m.align;m._hasDelta&&(z=function(){var e=k(t,{tickformat:m.delta.valueformat},m._range);e.setScale(),d.prepTicks(e);var i=function(t){return d.tickText(e,t).text},o=function(t){return m.delta.relative?t.relativeDelta:t.delta},s=function(t,e){return 0===t||"number"!=typeof t||isNaN(t)?"-":(t>0?m.delta.increasing.symbol:m.delta.decreasing.symbol)+e(t)},l=function(t){return t.delta>=0?m.delta.increasing.color:m.delta.decreasing.color};void 0===m._deltaLastValue&&(m._deltaLastValue=o(r[0]));var c=C.select("text.delta");function h(){c.text(s(o(r[0]),i)).call(y.fill,l(r[0])).call(p.convertToTspans,t)}return c.call(f.font,m.delta.font).call(y.fill,l({delta:m._deltaLastValue})),w(E)?c.transition().duration(E.duration).ease(E.easing).tween("text",(function(){var t=n.select(this),e=o(r[0]),c=m._deltaLastValue,u=O(m.delta.valueformat,i,c,e),f=a(c,e);return m._deltaLastValue=e,function(e){t.text(s(f(e),u)),t.call(y.fill,l({delta:f(e)}))}})).each("end",(function(){h(),L&&L()})).each("interrupt",(function(){h(),L&&L()})):h(),u=M(s(o(r[0]),i),m.delta.font,A,t),c}(),D+=m.delta.position+m.delta.font.size+m.delta.font.family+m.delta.valueformat,D+=m.delta.increasing.symbol+m.delta.decreasing.symbol,h=u);m._hasNumber&&(!function(){var e=k(t,{tickformat:m.number.valueformat},m._range);e.setScale(),d.prepTicks(e);var i=function(t){return d.tickText(e,t).text},o=m.number.suffix,s=m.number.prefix,l=C.select("text.number");function u(){var e="number"==typeof r[0].y?s+i(r[0].y)+o:"-";l.text(e).call(f.font,m.number.font).call(p.convertToTspans,t)}w(E)?l.transition().duration(E.duration).ease(E.easing).each("end",(function(){u(),L&&L()})).each("interrupt",(function(){u(),L&&L()})).attrTween("text",(function(){var t=n.select(this),e=a(r[0].lastY,r[0].y);m._lastValue=r[0].y;var l=O(m.number.valueformat,i,r[0].lastY,r[0].y);return function(r){t.text(s+l(e(r))+o)}})):u(),c=M(s+i(r[0].y)+o,m.number.font,A,t)}(),D+=m.number.font.size+m.number.font.family+m.number.valueformat+m.number.suffix+m.number.prefix,h=c);if(m._hasDelta&&m._hasNumber){var R,F,B=[(c.left+c.right)/2,(c.top+c.bottom)/2],N=[(u.left+u.right)/2,(u.top+u.bottom)/2],j=.75*m.delta.font.size;"left"===m.delta.position&&(R=S(m,"deltaPos",0,-1*(c.width*b[m.align]+u.width*(1-b[m.align])+j),D,Math.min),F=B[1]-N[1],h={width:c.width+u.width+j,height:Math.max(c.height,u.height),left:u.left+R,right:c.right,top:Math.min(c.top,u.top+F),bottom:Math.max(c.bottom,u.bottom+F)}),"right"===m.delta.position&&(R=S(m,"deltaPos",0,c.width*(1-b[m.align])+u.width*b[m.align]+j,D,Math.max),F=B[1]-N[1],h={width:c.width+u.width+j,height:Math.max(c.height,u.height),left:c.left,right:u.right+R,top:Math.min(c.top,u.top+F),bottom:Math.max(c.bottom,u.bottom+F)}),"bottom"===m.delta.position&&(R=null,F=u.height,h={width:Math.max(c.width,u.width),height:c.height+u.height,left:Math.min(c.left,u.left),right:Math.max(c.right,u.right),top:c.bottom-c.height,bottom:c.bottom+u.height}),"top"===m.delta.position&&(R=null,F=c.top,h={width:Math.max(c.width,u.width),height:c.height+u.height,left:Math.min(c.left,u.left),right:Math.max(c.right,u.right),top:c.bottom-c.height-u.height,bottom:c.bottom}),z.attr({dx:R,dy:F})}(m._hasNumber||m._hasDelta)&&C.attr("transform",(function(){var t=i.numbersScaler(h);D+=t[2];var e,r=S(m,"numbersScale",1,t[0],D,Math.min);m._scaleNumbers||(r=1),e=m._isAngular?v-r*h.bottom:v-r*(h.top+h.bottom)/2,m._numbersTop=r*h.top+e;var n=h[T];"center"===T&&(n=(h.left+h.right)/2);var a=g-r*n;return a=S(m,"numbersTranslate",0,a,D,Math.max),l(a,e)+s(r)}))}(t,O,e,{numbersX:m,numbersY:E,numbersScaler:L,transitionOpts:r,onComplete:g}),z&&(C={range:I.gauge.axis.range,color:I.gauge.bgcolor,line:{color:I.gauge.bordercolor,width:0},thickness:1},P={range:I.gauge.axis.range,color:"rgba(0, 0, 0, 0)",line:{color:I.gauge.bordercolor,width:I.gauge.borderwidth},thickness:1});var Y=O.selectAll("g.angular").data(D?e:[]);Y.exit().remove();var W=O.selectAll("g.angularaxis").data(D?e:[]);W.exit().remove(),D&&function(t,e,r,a){var o,s,f,h,p=r[0].trace,m=a.size,g=a.radius,v=a.innerRadius,y=a.gaugeBg,x=a.gaugeOutline,b=[m.l+m.w/2,m.t+m.h/2+g/2],_=a.gauge,A=a.layer,M=a.transitionOpts,S=a.onComplete,E=Math.PI/2;function L(t){var e=p.gauge.axis.range[0],r=(t-e)/(p.gauge.axis.range[1]-e)*Math.PI-E;return r<-E?-E:r>E?E:r}function C(t){return n.svg.arc().innerRadius((v+g)/2-t/2*(g-v)).outerRadius((v+g)/2+t/2*(g-v)).startAngle(-E)}function P(t){t.attr("d",(function(t){return C(t.thickness).startAngle(L(t.range[0])).endAngle(L(t.range[1]))()}))}_.enter().append("g").classed("angular",!0),_.attr("transform",l(b[0],b[1])),A.enter().append("g").classed("angularaxis",!0).classed("crisp",!0),A.selectAll("g.xangularaxistick,path,text").remove(),(o=k(t,p.gauge.axis)).type="linear",o.range=p.gauge.axis.range,o._id="xangularaxis",o.ticklabeloverflow="allow",o.setScale();var I=function(t){return(o.range[0]-t.x)/(o.range[1]-o.range[0])*Math.PI+Math.PI},O={},z=d.makeLabelFns(o,0).labelStandoff;O.xFn=function(t){var e=I(t);return Math.cos(e)*z},O.yFn=function(t){var e=I(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(z+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*u)},O.anchorFn=function(t){var e=I(t),r=Math.cos(e);return Math.abs(r)<.1?"middle":r>0?"start":"end"},O.heightFn=function(t,e,r){var n=I(t);return-.5*(1+Math.sin(n))*r};var D=function(t){return l(b[0]+g*Math.cos(t),b[1]-g*Math.sin(t))};f=function(t){return D(I(t))};if(s=d.calcTicks(o),h=d.getTickSigns(o)[2],o.visible){h="inside"===o.ticks?-1:1;var R=(o.linewidth||1)/2;d.drawTicks(t,o,{vals:s,layer:A,path:"M"+h*R+",0h"+h*o.ticklen,transFn:function(t){var e=I(t);return D(e)+"rotate("+-c(e)+")"}}),d.drawLabels(t,o,{vals:s,layer:A,transFn:f,labelFns:O})}var F=[y].concat(p.gauge.steps),B=_.selectAll("g.bg-arc").data(F);B.enter().append("g").classed("bg-arc",!0).append("path"),B.select("path").call(P).call(T),B.exit().remove();var N=C(p.gauge.bar.thickness),j=_.selectAll("g.value-arc").data([p.gauge.bar]);j.enter().append("g").classed("value-arc",!0).append("path");var U=j.select("path");w(M)?(U.transition().duration(M.duration).ease(M.easing).each("end",(function(){S&&S()})).each("interrupt",(function(){S&&S()})).attrTween("d",(V=N,H=L(r[0].lastY),q=L(r[0].y),function(){var t=i(H,q);return function(e){return V.endAngle(t(e))()}})),p._lastValue=r[0].y):U.attr("d","number"==typeof r[0].y?N.endAngle(L(r[0].y)):"M0,0Z");var V,H,q;U.call(T),j.exit().remove(),F=[];var G=p.gauge.threshold.value;(G||0===G)&&F.push({range:[G,G],color:p.gauge.threshold.color,line:{color:p.gauge.threshold.line.color,width:p.gauge.threshold.line.width},thickness:p.gauge.threshold.thickness});var Y=_.selectAll("g.threshold-arc").data(F);Y.enter().append("g").classed("threshold-arc",!0).append("path"),Y.select("path").call(P).call(T),Y.exit().remove();var W=_.selectAll("g.gauge-outline").data([x]);W.enter().append("g").classed("gauge-outline",!0).append("path"),W.select("path").call(P).call(T),W.exit().remove()}(t,0,e,{radius:U,innerRadius:V,gauge:Y,layer:W,size:B,gaugeBg:C,gaugeOutline:P,transitionOpts:r,onComplete:g});var X=O.selectAll("g.bullet").data(R?e:[]);X.exit().remove();var Z=O.selectAll("g.bulletaxis").data(R?e:[]);Z.exit().remove(),R&&function(t,e,r,n){var i,a,o,s,c,u=r[0].trace,f=n.gauge,p=n.layer,m=n.gaugeBg,g=n.gaugeOutline,v=n.size,x=u.domain,b=n.transitionOpts,_=n.onComplete;f.enter().append("g").classed("bullet",!0),f.attr("transform",l(v.l,v.t)),p.enter().append("g").classed("bulletaxis",!0).classed("crisp",!0),p.selectAll("g.xbulletaxistick,path,text").remove();var A=v.h,M=u.gauge.bar.thickness*A,S=x.x[0],E=x.x[0]+(x.x[1]-x.x[0])*(u._hasNumber||u._hasDelta?1-h.bulletNumberDomainSize:1);(i=k(t,u.gauge.axis))._id="xbulletaxis",i.domain=[S,E],i.setScale(),a=d.calcTicks(i),o=d.makeTransTickFn(i),s=d.getTickSigns(i)[2],c=v.t+v.h,i.visible&&(d.drawTicks(t,i,{vals:"inside"===i.ticks?d.clipEnds(i,a):a,layer:p,path:d.makeTickPath(i,c,s),transFn:o}),d.drawLabels(t,i,{vals:a,layer:p,transFn:o,labelFns:d.makeLabelFns(i,c)}));function L(t){t.attr("width",(function(t){return Math.max(0,i.c2p(t.range[1])-i.c2p(t.range[0]))})).attr("x",(function(t){return i.c2p(t.range[0])})).attr("y",(function(t){return.5*(1-t.thickness)*A})).attr("height",(function(t){return t.thickness*A}))}var C=[m].concat(u.gauge.steps),P=f.selectAll("g.bg-bullet").data(C);P.enter().append("g").classed("bg-bullet",!0).append("rect"),P.select("rect").call(L).call(T),P.exit().remove();var I=f.selectAll("g.value-bullet").data([u.gauge.bar]);I.enter().append("g").classed("value-bullet",!0).append("rect"),I.select("rect").attr("height",M).attr("y",(A-M)/2).call(T),w(b)?I.select("rect").transition().duration(b.duration).ease(b.easing).each("end",(function(){_&&_()})).each("interrupt",(function(){_&&_()})).attr("width",Math.max(0,i.c2p(Math.min(u.gauge.axis.range[1],r[0].y)))):I.select("rect").attr("width","number"==typeof r[0].y?Math.max(0,i.c2p(Math.min(u.gauge.axis.range[1],r[0].y))):0);I.exit().remove();var O=r.filter((function(){return u.gauge.threshold.value||0===u.gauge.threshold.value})),z=f.selectAll("g.threshold-bullet").data(O);z.enter().append("g").classed("threshold-bullet",!0).append("line"),z.select("line").attr("x1",i.c2p(u.gauge.threshold.value)).attr("x2",i.c2p(u.gauge.threshold.value)).attr("y1",(1-u.gauge.threshold.thickness)/2*A).attr("y2",(1-(1-u.gauge.threshold.thickness)/2)*A).call(y.stroke,u.gauge.threshold.line.color).style("stroke-width",u.gauge.threshold.line.width),z.exit().remove();var D=f.selectAll("g.gauge-outline").data([g]);D.enter().append("g").classed("gauge-outline",!0).append("rect"),D.select("rect").call(L).call(T),D.exit().remove()}(t,0,e,{gauge:X,layer:Z,size:B,gaugeBg:C,gaugeOutline:P,transitionOpts:r,onComplete:g});var J=O.selectAll("text.title").data(e);J.exit().remove(),J.enter().append("text").classed("title",!0),J.attr("text-anchor",(function(){return R?x.right:x[I.title.align]})).text(I.title.text).call(f.font,I.title.font).call(p.convertToTspans,t),J.attr("transform",(function(){var t,e=B.l+B.w*b[I.title.align],r=h.titlePadding,n=f.bBox(J.node());if(z){if(D)if(I.gauge.axis.visible)t=f.bBox(W.node()).top-r-n.bottom;else t=B.t+B.h/2-U/2-n.bottom-r;R&&(t=E-(n.top+n.bottom)/2,e=B.l-h.bulletPadding*B.w)}else t=I._numbersTop-r-n.bottom;return l(e,t)}))}))}},{"../../components/color":639,"../../components/drawing":661,"../../constants/alignment":744,"../../lib":776,"../../lib/svg_text_utils":802,"../../plots/cartesian/axes":827,"../../plots/cartesian/axis_defaults":829,"../../plots/cartesian/layout_attributes":842,"../../plots/cartesian/position_defaults":845,"./constants":1123,"@plotly/d3":58,"d3-interpolate":164}],1127:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/cartesian/axis_format_attributes").axisHoverFormat,a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../mesh3d/attributes"),s=t("../../plots/attributes"),l=t("../../lib/extend").extendFlat,c=t("../../plot_api/edit_types").overrideAll;var u=e.exports=c(l({x:{valType:"data_array"},y:{valType:"data_array"},z:{valType:"data_array"},value:{valType:"data_array"},isomin:{valType:"number"},isomax:{valType:"number"},surface:{show:{valType:"boolean",dflt:!0},count:{valType:"integer",dflt:2,min:1},fill:{valType:"number",min:0,max:1,dflt:1},pattern:{valType:"flaglist",flags:["A","B","C","D","E"],extras:["all","odd","even"],dflt:"all"}},spaceframe:{show:{valType:"boolean",dflt:!1},fill:{valType:"number",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}}},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:a(),xhoverformat:i("x"),yhoverformat:i("y"),zhoverformat:i("z"),valuehoverformat:i("value",1),showlegend:l({},s.showlegend,{dflt:!1})},n("",{colorAttr:"`value`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:o.opacity,lightposition:o.lightposition,lighting:o.lighting,flatshading:o.flatshading,contour:o.contour,hoverinfo:l({},s.hoverinfo)}),"calc","nested");u.flatshading.dflt=!0,u.lighting.facenormalsepsilon.dflt=0,u.x.editType=u.y.editType=u.z.editType=u.value.editType="calc+clearAxisTypes",u.transforms=void 0},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plot_api/edit_types":809,"../../plots/attributes":823,"../../plots/cartesian/axis_format_attributes":830,"../../plots/template_attributes":899,"../mesh3d/attributes":1132}],1128:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc"),i=t("../streamtube/calc").processGrid,a=t("../streamtube/calc").filter;e.exports=function(t,e){e._len=Math.min(e.x.length,e.y.length,e.z.length,e.value.length),e._x=a(e.x,e._len),e._y=a(e.y,e._len),e._z=a(e.z,e._len),e._value=a(e.value,e._len);var r=i(e);e._gridFill=r.fill,e._Xs=r.Xs,e._Ys=r.Ys,e._Zs=r.Zs,e._len=r.len;for(var o=1/0,s=-1/0,l=0;l0;r--){var n=Math.min(e[r],e[r-1]),i=Math.max(e[r],e[r-1]);if(i>n&&n-1}function R(t,e){return null===t?e:t}function F(e,r,n){C();var i,a,o,l=[r],c=[n];if(s>=1)l=[r],c=[n];else if(s>0){var u=function(t,e){var r=t[0],n=t[1],i=t[2],a=function(t,e,r){for(var n=[],i=0;i-1?n[p]:L(d,m,v);h[p]=x>-1?x:I(d,m,v,R(e,y))}i=h[0],a=h[1],o=h[2],t._meshI.push(i),t._meshJ.push(a),t._meshK.push(o),++g}}function B(t,e,r,n){var i=t[3];in&&(i=n);for(var a=(t[3]-i)/(t[3]-e[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-a)*t[s]+a*e[s];return o}function N(t,e,r){return t>=e&&t<=r}function j(t){var e=.001*(E-S);return t>=S-e&&t<=E+e}function U(e){for(var r=[],n=0;n<4;n++){var i=e[n];r.push([t._x[i],t._y[i],t._z[i],t._value[i]])}return r}function V(t,e,r,n,i,a){a||(a=1),r=[-1,-1,-1];var o=!1,s=[N(e[0][3],n,i),N(e[1][3],n,i),N(e[2][3],n,i)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(t,e,r){return j(e[0][3])&&j(e[1][3])&&j(e[2][3])?(F(t,e,r),!0):a<3&&V(t,e,r,S,E,++a)};if(s[0]&&s[1]&&s[2])return l(t,e,r)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach((function(a){if(s[a[0]]&&s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(h,u,n,i),d=B(h,f,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,o=l(t,[u,f,d],[r[a[0]],r[a[1]],-1])||o,c=!0}})),c||[[0,1,2],[1,2,0],[2,0,1]].forEach((function(a){if(s[a[0]]&&!s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(f,u,n,i),d=B(h,u,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,c=!0}})),o}function H(t,e,r,n){var i=!1,a=U(e),o=[N(a[0][3],r,n),N(a[1][3],r,n),N(a[2][3],r,n),N(a[3][3],r,n)];if(!(o[0]||o[1]||o[2]||o[3]))return i;if(o[0]&&o[1]&&o[2]&&o[3])return m&&(i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(3,0,1),n(2,3,0),n(1,2,3)}(t,a,e)||i),i;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]];if(m)i=F(t,[c,u,f],[e[l[0]],e[l[1]],e[l[2]]])||i;else{var p=B(h,c,r,n),d=B(h,u,r,n),g=B(h,f,r,n);i=F(null,[p,d,g],[-1,-1,-1])||i}s=!0}})),s?i:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(f,c,r,n),d=B(f,u,r,n),g=B(h,u,r,n),v=B(h,c,r,n);m?(i=F(t,[c,v,p],[e[l[0]],-1,-1])||i,i=F(t,[u,d,g],[e[l[1]],-1,-1])||i):i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(2,3,0)}(null,[p,d,g,v],[-1,-1,-1,-1])||i,s=!0}})),s||[[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach((function(l){if(o[l[0]]&&!o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(u,c,r,n),d=B(f,c,r,n),g=B(h,c,r,n);m?(i=F(t,[c,p,d],[e[l[0]],-1,-1])||i,i=F(t,[c,d,g],[e[l[0]],-1,-1])||i,i=F(t,[c,g,p],[e[l[0]],-1,-1])||i):i=F(null,[p,d,g],[-1,-1,-1])||i,s=!0}})),i)}function q(t,e,r,n,i,a,o,s,l,c,u){var f=!1;return d&&(D(t,"A")&&(f=H(null,[e,r,n,a],c,u)||f),D(t,"B")&&(f=H(null,[r,n,i,l],c,u)||f),D(t,"C")&&(f=H(null,[r,a,o,l],c,u)||f),D(t,"D")&&(f=H(null,[n,a,s,l],c,u)||f),D(t,"E")&&(f=H(null,[r,n,a,l],c,u)||f)),m&&(f=H(t,[r,n,a,l],c,u)||f),f}function G(t,e,r,n,i,a,o,s){return[!0===s[0]||V(t,U([e,r,n]),[e,r,n],a,o),!0===s[1]||V(t,U([n,i,e]),[n,i,e],a,o)]}function Y(t,e,r,n,i,a,o,s,l){return s?G(t,e,r,i,n,a,o,l):G(t,r,i,n,e,a,o,l)}function W(t,e,r,n,i,a,o){var s,l,c,u,f=!1,h=function(){f=V(t,[s,l,c],[-1,-1,-1],i,a)||f,f=V(t,[c,u,s],[-1,-1,-1],i,a)||f},p=o[0],d=o[1],m=o[2];return p&&(s=O(U([k(e,r-0,n-0)])[0],U([k(e-1,r-0,n-0)])[0],p),l=O(U([k(e,r-0,n-1)])[0],U([k(e-1,r-0,n-1)])[0],p),c=O(U([k(e,r-1,n-1)])[0],U([k(e-1,r-1,n-1)])[0],p),u=O(U([k(e,r-1,n-0)])[0],U([k(e-1,r-1,n-0)])[0],p),h()),d&&(s=O(U([k(e-0,r,n-0)])[0],U([k(e-0,r-1,n-0)])[0],d),l=O(U([k(e-0,r,n-1)])[0],U([k(e-0,r-1,n-1)])[0],d),c=O(U([k(e-1,r,n-1)])[0],U([k(e-1,r-1,n-1)])[0],d),u=O(U([k(e-1,r,n-0)])[0],U([k(e-1,r-1,n-0)])[0],d),h()),m&&(s=O(U([k(e-0,r-0,n)])[0],U([k(e-0,r-0,n-1)])[0],m),l=O(U([k(e-0,r-1,n)])[0],U([k(e-0,r-1,n-1)])[0],m),c=O(U([k(e-1,r-1,n)])[0],U([k(e-1,r-1,n-1)])[0],m),u=O(U([k(e-1,r-0,n)])[0],U([k(e-1,r-0,n-1)])[0],m),h()),f}function X(t,e,r,n,i,a,o,s,l,c,u,f){var h=t;return f?(d&&"even"===t&&(h=null),q(h,e,r,n,i,a,o,s,l,c,u)):(d&&"odd"===t&&(h=null),q(h,l,s,o,a,i,n,r,e,c,u))}function Z(t,e,r,n,i){for(var a=[],o=0,s=0;sMath.abs(d-M)?[A,d]:[d,M];$(e,T[0],T[1])}}var L=[[Math.min(S,M),Math.max(S,M)],[Math.min(A,E),Math.max(A,E)]];["x","y","z"].forEach((function(e){for(var r=[],n=0;n0&&(u.push(p.id),"x"===e?f.push([p.distRatio,0,0]):"y"===e?f.push([0,p.distRatio,0]):f.push([0,0,p.distRatio]))}else c=nt(1,"x"===e?b-1:"y"===e?_-1:w-1);u.length>0&&(r[i]="x"===e?tt(null,u,a,o,f,r[i]):"y"===e?et(null,u,a,o,f,r[i]):rt(null,u,a,o,f,r[i]),i++),c.length>0&&(r[i]="x"===e?Z(null,c,a,o,r[i]):"y"===e?J(null,c,a,o,r[i]):K(null,c,a,o,r[i]),i++)}var d=t.caps[e];d.show&&d.fill&&(z(d.fill),r[i]="x"===e?Z(null,[0,b-1],a,o,r[i]):"y"===e?J(null,[0,_-1],a,o,r[i]):K(null,[0,w-1],a,o,r[i]),i++)}})),0===g&&P(),t._meshX=n,t._meshY=i,t._meshZ=a,t._meshIntensity=o,t._Xs=v,t._Ys=y,t._Zs=x}(),t}e.exports={findNearestOnAxis:l,generateIsoMeshes:h,createIsosurfaceTrace:function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new c(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}}},{"../../components/colorscale":651,"../../lib/gl_format_color":772,"../../lib/str2rgbarray":801,"../../plots/gl3d/zip3":880,"gl-mesh3d":303}],1130:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./attributes"),o=t("../../components/colorscale/defaults");function s(t,e,r,n,a){var s=a("isomin"),l=a("isomax");null!=l&&null!=s&&s>l&&(e.isomin=null,e.isomax=null);var c=a("x"),u=a("y"),f=a("z"),h=a("value");c&&c.length&&u&&u.length&&f&&f.length&&h&&h.length?(i.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y","z"],n),a("valuehoverformat"),["x","y","z"].forEach((function(t){a(t+"hoverformat");var e="caps."+t;a(e+".show")&&a(e+".fill");var r="slices."+t;a(r+".show")&&(a(r+".fill"),a(r+".locations"))})),a("spaceframe.show")&&a("spaceframe.fill"),a("surface.show")&&(a("surface.count"),a("surface.fill"),a("surface.pattern")),a("contour.show")&&(a("contour.color"),a("contour.width")),["text","hovertext","hovertemplate","lighting.ambient","lighting.diffuse","lighting.specular","lighting.roughness","lighting.fresnel","lighting.vertexnormalsepsilon","lighting.facenormalsepsilon","lightposition.x","lightposition.y","lightposition.z","flatshading","opacity"].forEach((function(t){a(t)})),o(t,e,n,a,{prefix:"",cLetter:"c"}),e._length=null):e.visible=!1}e.exports={supplyDefaults:function(t,e,r,i){s(t,e,r,i,(function(r,i){return n.coerce(t,e,a,r,i)}))},supplyIsoDefaults:s}},{"../../components/colorscale/defaults":649,"../../lib":776,"../../registry":904,"./attributes":1127}],1131:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults").supplyDefaults,calc:t("./calc"),colorbar:{min:"cmin",max:"cmax"},plot:t("./convert").createIsosurfaceTrace,moduleType:"trace",name:"isosurface",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","showLegend"],meta:{}}},{"../../plots/gl3d":869,"./attributes":1127,"./calc":1128,"./convert":1129,"./defaults":1130}],1132:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/cartesian/axis_format_attributes").axisHoverFormat,a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../surface/attributes"),s=t("../../plots/attributes"),l=t("../../lib/extend").extendFlat;e.exports=l({x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},i:{valType:"data_array",editType:"calc"},j:{valType:"data_array",editType:"calc"},k:{valType:"data_array",editType:"calc"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:a({editType:"calc"}),xhoverformat:i("x"),yhoverformat:i("y"),zhoverformat:i("z"),delaunayaxis:{valType:"enumerated",values:["x","y","z"],dflt:"z",editType:"calc"},alphahull:{valType:"number",dflt:-1,editType:"calc"},intensity:{valType:"data_array",editType:"calc"},intensitymode:{valType:"enumerated",values:["vertex","cell"],dflt:"vertex",editType:"calc"},color:{valType:"color",editType:"calc"},vertexcolor:{valType:"data_array",editType:"calc"},facecolor:{valType:"data_array",editType:"calc"},transforms:void 0},n("",{colorAttr:"`intensity`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:o.opacity,flatshading:{valType:"boolean",dflt:!1,editType:"calc"},contour:{show:l({},o.contours.x.show,{}),color:o.contours.x.color,width:o.contours.x.width,editType:"calc"},lightposition:{x:l({},o.lightposition.x,{dflt:1e5}),y:l({},o.lightposition.y,{dflt:1e5}),z:l({},o.lightposition.z,{dflt:0}),editType:"calc"},lighting:l({vertexnormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-12,editType:"calc"},facenormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-6,editType:"calc"},editType:"calc"},o.lighting),hoverinfo:l({},s.hoverinfo,{editType:"calc"}),showlegend:l({},s.showlegend,{dflt:!1})})},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plots/attributes":823,"../../plots/cartesian/axis_format_attributes":830,"../../plots/template_attributes":899,"../surface/attributes":1315}],1133:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){e.intensity&&n(t,e,{vals:e.intensity,containerStr:"",cLetter:"c"})}},{"../../components/colorscale/calc":647}],1134:[function(t,e,r){"use strict";var n=t("gl-mesh3d"),i=t("delaunay-triangulate"),a=t("alpha-shape"),o=t("convex-hull"),s=t("../../lib/gl_format_color").parseColorScale,l=t("../../lib/str2rgbarray"),c=t("../../components/colorscale").extractOpts,u=t("../../plots/gl3d/zip3");function f(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name="",this.color="#fff",this.data=null,this.showContour=!1}var h=f.prototype;function p(t){for(var e=[],r=t.length,n=0;n=e-.5)return!1;return!0}h.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index;t.data._cellCenter?t.traceCoordinate=t.data.dataCoordinate:t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]];var r=this.data.hovertext||this.data.text;return Array.isArray(r)&&void 0!==r[e]?t.textLabel=r[e]:r&&(t.textLabel=r),!0}},h.update=function(t){var e=this.scene,r=e.fullSceneLayout;this.data=t;var n,f=t.x.length,h=u(d(r.xaxis,t.x,e.dataScale[0],t.xcalendar),d(r.yaxis,t.y,e.dataScale[1],t.ycalendar),d(r.zaxis,t.z,e.dataScale[2],t.zcalendar));if(t.i&&t.j&&t.k){if(t.i.length!==t.j.length||t.j.length!==t.k.length||!g(t.i,f)||!g(t.j,f)||!g(t.k,f))return;n=u(m(t.i),m(t.j),m(t.k))}else n=0===t.alphahull?o(h):t.alphahull>0?a(t.alphahull,h):function(t,e){for(var r=["x","y","z"].indexOf(t),n=[],a=e.length,o=0;ov):g=A>w,v=A;var M=c(w,T,k,A);M.pos=_,M.yc=(w+A)/2,M.i=b,M.dir=g?"increasing":"decreasing",M.x=M.pos,M.y=[k,T],y&&(M.orig_p=r[b]),d&&(M.tx=e.text[b]),m&&(M.htx=e.hovertext[b]),x.push(M)}else x.push({pos:_,empty:!0})}return e._extremes[l._id]=a.findExtremes(l,n.concat(h,f),{padded:!0}),x.length&&(x[0].t={labels:{open:i(t,"open:")+" ",high:i(t,"high:")+" ",low:i(t,"low:")+" ",close:i(t,"close:")+" "}}),x}e.exports={calc:function(t,e){var r=a.getFromId(t,e.xaxis),i=a.getFromId(t,e.yaxis),s=function(t,e,r){var i=r._minDiff;if(!i){var a,s=t._fullData,l=[];for(i=1/0,a=0;a"+c.labels[x]+n.hoverLabelText(s,b,l.yhoverformat):((y=i.extendFlat({},h)).y0=y.y1=_,y.yLabelVal=b,y.yLabel=c.labels[x]+n.hoverLabelText(s,b,l.yhoverformat),y.name="",f.push(y),g[b]=y)}return f}function h(t,e,r,i){var a=t.cd,o=t.ya,l=a[0].trace,f=a[0].t,h=u(t,e,r,i);if(!h)return[];var p=a[h.index],d=h.index=p.i,m=p.dir;function g(t){return f.labels[t]+n.hoverLabelText(o,l[t][d],l.yhoverformat)}var v=p.hi||l.hoverinfo,y=v.split("+"),x="all"===v,b=x||-1!==y.indexOf("y"),_=x||-1!==y.indexOf("text"),w=b?[g("open"),g("high"),g("low"),g("close")+" "+c[m]]:[];return _&&s(p,l,w),h.extraText=w.join("
"),h.y0=h.y1=o.c2p(p.yc,!0),[h]}e.exports={hoverPoints:function(t,e,r,n){return t.cd[0].trace.hoverlabel.split?f(t,e,r,n):h(t,e,r,n)},hoverSplit:f,hoverOnPoints:h}},{"../../components/color":639,"../../components/fx":679,"../../constants/delta.js":746,"../../lib":776,"../../plots/cartesian/axes":827}],1141:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"ohlc",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","showLegend"],meta:{},attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc").calc,plot:t("./plot"),style:t("./style"),hoverPoints:t("./hover").hoverPoints,selectPoints:t("./select")}},{"../../plots/cartesian":841,"./attributes":1137,"./calc":1138,"./defaults":1139,"./hover":1140,"./plot":1143,"./select":1144,"./style":1145}],1142:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib");e.exports=function(t,e,r,a){var o=r("x"),s=r("open"),l=r("high"),c=r("low"),u=r("close");if(r("hoverlabel.split"),n.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x"],a),s&&l&&c&&u){var f=Math.min(s.length,l.length,c.length,u.length);return o&&(f=Math.min(f,i.minRowLength(o))),e._length=f,f}}},{"../../lib":776,"../../registry":904}],1143:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib");e.exports=function(t,e,r,a){var o=e.yaxis,s=e.xaxis,l=!!s.rangebreaks;i.makeTraceGroups(a,r,"trace ohlc").each((function(t){var e=n.select(this),r=t[0],a=r.t;if(!0!==r.trace.visible||a.empty)e.remove();else{var c=a.tickLen,u=e.selectAll("path").data(i.identity);u.enter().append("path"),u.exit().remove(),u.attr("d",(function(t){if(t.empty)return"M0,0Z";var e=s.c2p(t.pos-c,!0),r=s.c2p(t.pos+c,!0),n=l?(e+r)/2:s.c2p(t.pos,!0);return"M"+e+","+o.c2p(t.o,!0)+"H"+n+"M"+n+","+o.c2p(t.h,!0)+"V"+o.c2p(t.l,!0)+"M"+r+","+o.c2p(t.c,!0)+"H"+n}))}}))}},{"../../lib":776,"@plotly/d3":58}],1144:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n=t.cd,i=t.xaxis,a=t.yaxis,o=[],s=n[0].t.bPos||0;if(!1===e)for(r=0;r=t.length)return!1;if(void 0!==e[t[r]])return!1;e[t[r]]=!0}return!0}(t.map((function(t){return t.displayindex}))))for(e=0;e0;c&&(o="array");var u=r("categoryorder",o);"array"===u?(r("categoryarray"),r("ticktext")):(delete t.categoryarray,delete t.ticktext),c||"array"!==u||(e.categoryorder="trace")}}e.exports=function(t,e,r,f){function h(r,i){return n.coerce(t,e,l,r,i)}var p=s(t,e,{name:"dimensions",handleItemDefaults:u}),d=function(t,e,r,o,s){s("line.shape"),s("line.hovertemplate");var l=s("line.color",o.colorway[0]);if(i(t,"line")&&n.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(t,e,o,s,{prefix:"line.",cLetter:"c"}),l.length;e.line.color=r}return 1/0}(t,e,r,f,h);o(e,f,h),Array.isArray(p)&&p.length||(e.visible=!1),c(e,p,"values",d),h("hoveron"),h("hovertemplate"),h("arrangement"),h("bundlecolors"),h("sortpaths"),h("counts");var m={family:f.font.family,size:Math.round(f.font.size),color:f.font.color};n.coerceFont(h,"labelfont",m);var g={family:f.font.family,size:Math.round(f.font.size/1.2),color:f.font.color};n.coerceFont(h,"tickfont",g)}},{"../../components/colorscale/defaults":649,"../../components/colorscale/helpers":650,"../../lib":776,"../../plots/array_container_defaults":822,"../../plots/domain":855,"../parcoords/merge_length":1162,"./attributes":1146}],1150:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcats",basePlotModule:t("./base_plot"),categories:["noOpacity"],meta:{}}},{"./attributes":1146,"./base_plot":1147,"./calc":1148,"./defaults":1149,"./plot":1152}],1151:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("d3-interpolate").interpolateNumber,a=t("../../plot_api/plot_api"),o=t("../../components/fx"),s=t("../../lib"),l=s.strTranslate,c=t("../../components/drawing"),u=t("tinycolor2"),f=t("../../lib/svg_text_utils");function h(t,e,r,i){var a=t.map(F.bind(0,e,r)),o=i.selectAll("g.parcatslayer").data([null]);o.enter().append("g").attr("class","parcatslayer").style("pointer-events","all");var u=o.selectAll("g.trace.parcats").data(a,p),h=u.enter().append("g").attr("class","trace parcats");u.attr("transform",(function(t){return l(t.x,t.y)})),h.append("g").attr("class","paths");var y=u.select("g.paths").selectAll("path.path").data((function(t){return t.paths}),p);y.attr("fill",(function(t){return t.model.color}));var x=y.enter().append("path").attr("class","path").attr("stroke-opacity",0).attr("fill",(function(t){return t.model.color})).attr("fill-opacity",0);_(x),y.attr("d",(function(t){return t.svgD})),x.empty()||y.sort(m),y.exit().remove(),y.on("mouseover",g).on("mouseout",v).on("click",b),h.append("g").attr("class","dimensions");var w=u.select("g.dimensions").selectAll("g.dimension").data((function(t){return t.dimensions}),p);w.enter().append("g").attr("class","dimension"),w.attr("transform",(function(t){return l(t.x,0)})),w.exit().remove();var A=w.selectAll("g.category").data((function(t){return t.categories}),p),M=A.enter().append("g").attr("class","category");A.attr("transform",(function(t){return l(0,t.y)})),M.append("rect").attr("class","catrect").attr("pointer-events","none"),A.select("rect.catrect").attr("fill","none").attr("width",(function(t){return t.width})).attr("height",(function(t){return t.height})),T(M);var S=A.selectAll("rect.bandrect").data((function(t){return t.bands}),p);S.each((function(){s.raiseToTop(this)})),S.attr("fill",(function(t){return t.color}));var E=S.enter().append("rect").attr("class","bandrect").attr("stroke-opacity",0).attr("fill",(function(t){return t.color})).attr("fill-opacity",0);S.attr("fill",(function(t){return t.color})).attr("width",(function(t){return t.width})).attr("height",(function(t){return t.height})).attr("y",(function(t){return t.y})).attr("cursor",(function(t){return"fixed"===t.parcatsViewModel.arrangement?"default":"perpendicular"===t.parcatsViewModel.arrangement?"ns-resize":"move"})),k(E),S.exit().remove(),M.append("text").attr("class","catlabel").attr("pointer-events","none");var z=e._fullLayout.paper_bgcolor;A.select("text.catlabel").attr("text-anchor",(function(t){return d(t)?"start":"end"})).attr("alignment-baseline","middle").style("text-shadow",f.makeTextShadow(z)).style("fill","rgb(0, 0, 0)").attr("x",(function(t){return d(t)?t.width+5:-5})).attr("y",(function(t){return t.height/2})).text((function(t){return t.model.categoryLabel})).each((function(t){c.font(n.select(this),t.parcatsViewModel.categorylabelfont),f.convertToTspans(n.select(this),e)})),M.append("text").attr("class","dimlabel"),A.select("text.dimlabel").attr("text-anchor","middle").attr("alignment-baseline","baseline").attr("cursor",(function(t){return"fixed"===t.parcatsViewModel.arrangement?"default":"ew-resize"})).attr("x",(function(t){return t.width/2})).attr("y",-5).text((function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null})).each((function(t){c.font(n.select(this),t.parcatsViewModel.labelfont)})),A.selectAll("rect.bandrect").on("mouseover",L).on("mouseout",C),A.exit().remove(),w.call(n.behavior.drag().origin((function(t){return{x:t.x,y:0}})).on("dragstart",P).on("drag",I).on("dragend",O)),u.each((function(t){t.traceSelection=n.select(this),t.pathSelection=n.select(this).selectAll("g.paths").selectAll("path.path"),t.dimensionSelection=n.select(this).selectAll("g.dimensions").selectAll("g.dimension")})),u.exit().remove()}function p(t){return t.key}function d(t){var e=t.parcatsViewModel.dimensions.length,r=t.parcatsViewModel.dimensions[e-1].model.dimensionInd;return t.model.dimensionInd===r}function m(t,e){return t.model.rawColor>e.model.rawColor?1:t.model.rawColor"),L=n.mouse(f)[0];o.loneHover({trace:h,x:b-d.left+m.left,y:_-d.top+m.top,text:E,color:t.model.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:10,fontColor:T,idealAlign:L1&&h.displayInd===f.dimensions.length-1?(i=c.left,a="left"):(i=c.left+c.width,a="right");var m=u.model.count,g=u.model.categoryLabel,v=m/u.parcatsViewModel.model.count,y={countLabel:m,categoryLabel:g,probabilityLabel:v.toFixed(3)},x=[];-1!==u.parcatsViewModel.hoverinfoItems.indexOf("count")&&x.push(["Count:",y.countLabel].join(" ")),-1!==u.parcatsViewModel.hoverinfoItems.indexOf("probability")&&x.push(["P("+y.categoryLabel+"):",y.probabilityLabel].join(" "));var b=x.join("
");return{trace:p,x:o*(i-e.left),y:s*(d-e.top),text:b,color:"lightgray",borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:12,fontColor:"black",idealAlign:a,hovertemplate:p.hovertemplate,hovertemplateLabels:y,eventData:[{data:p._input,fullData:p,count:m,category:g,probability:v}]}}function L(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf("skip")){if(n.mouse(this)[1]<-1)return;var e,r=t.parcatsViewModel.graphDiv,i=r._fullLayout,a=i._paperdiv.node().getBoundingClientRect(),l=t.parcatsViewModel.hoveron;if("color"===l?(!function(t){var e=n.select(t).datum(),r=A(e);w(r),r.each((function(){s.raiseToTop(this)})),n.select(t.parentNode).selectAll("rect.bandrect").filter((function(t){return t.color===e.color})).each((function(){s.raiseToTop(this),n.select(this).attr("stroke","black").attr("stroke-width",1.5)}))}(this),S(this,"plotly_hover",n.event)):(!function(t){n.select(t.parentNode).selectAll("rect.bandrect").each((function(t){var e=A(t);w(e),e.each((function(){s.raiseToTop(this)}))})),n.select(t.parentNode).select("rect.catrect").attr("stroke","black").attr("stroke-width",2.5)}(this),M(this,"plotly_hover",n.event)),-1===t.parcatsViewModel.hoverinfoItems.indexOf("none"))"category"===l?e=E(r,a,this):"color"===l?e=function(t,e,r){t._fullLayout._calcInverseTransform(t);var i,a,o=t._fullLayout._invScaleX,s=t._fullLayout._invScaleY,l=r.getBoundingClientRect(),c=n.select(r).datum(),f=c.categoryViewModel,h=f.parcatsViewModel,p=h.model.dimensions[f.model.dimensionInd],d=h.trace,m=l.y+l.height/2;h.dimensions.length>1&&p.displayInd===h.dimensions.length-1?(i=l.left,a="left"):(i=l.left+l.width,a="right");var g=f.model.categoryLabel,v=c.parcatsViewModel.model.count,y=0;c.categoryViewModel.bands.forEach((function(t){t.color===c.color&&(y+=t.count)}));var x=f.model.count,b=0;h.pathSelection.each((function(t){t.model.color===c.color&&(b+=t.model.count)}));var _=y/v,w=y/b,T=y/x,k={countLabel:v,categoryLabel:g,probabilityLabel:_.toFixed(3)},A=[];-1!==f.parcatsViewModel.hoverinfoItems.indexOf("count")&&A.push(["Count:",k.countLabel].join(" ")),-1!==f.parcatsViewModel.hoverinfoItems.indexOf("probability")&&(A.push("P(color \u2229 "+g+"): "+k.probabilityLabel),A.push("P("+g+" | color): "+w.toFixed(3)),A.push("P(color | "+g+"): "+T.toFixed(3)));var M=A.join("
"),S=u.mostReadable(c.color,["black","white"]);return{trace:d,x:o*(i-e.left),y:s*(m-e.top),text:M,color:c.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontColor:S,fontSize:10,idealAlign:a,hovertemplate:d.hovertemplate,hovertemplateLabels:k,eventData:[{data:d._input,fullData:d,category:g,count:v,probability:_,categorycount:x,colorcount:b,bandcolorcount:y}]}}(r,a,this):"dimension"===l&&(e=function(t,e,r){var i=[];return n.select(r.parentNode.parentNode).selectAll("g.category").select("rect.catrect").each((function(){i.push(E(t,e,this))})),i}(r,a,this)),e&&o.loneHover(e,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:r})}}function C(t){var e=t.parcatsViewModel;if(!e.dragDimension&&(_(e.pathSelection),T(e.dimensionSelection.selectAll("g.category")),k(e.dimensionSelection.selectAll("g.category").selectAll("rect.bandrect")),o.loneUnhover(e.graphDiv._fullLayout._hoverlayer.node()),e.pathSelection.sort(m),-1===e.hoverinfoItems.indexOf("skip"))){"color"===t.parcatsViewModel.hoveron?S(this,"plotly_unhover",n.event):M(this,"plotly_unhover",n.event)}}function P(t){"fixed"!==t.parcatsViewModel.arrangement&&(t.dragDimensionDisplayInd=t.model.displayInd,t.initialDragDimensionDisplayInds=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),t.dragHasMoved=!1,t.dragCategoryDisplayInd=null,n.select(this).selectAll("g.category").select("rect.catrect").each((function(e){var r=n.mouse(this)[0],i=n.mouse(this)[1];-2<=r&&r<=e.width+2&&-2<=i&&i<=e.height+2&&(t.dragCategoryDisplayInd=e.model.displayInd,t.initialDragCategoryDisplayInds=t.model.categories.map((function(t){return t.displayInd})),e.model.dragY=e.y,s.raiseToTop(this.parentNode),n.select(this.parentNode).selectAll("rect.bandrect").each((function(e){e.yf.y+f.height/2&&(o.model.displayInd=f.model.displayInd,f.model.displayInd=l),t.dragCategoryDisplayInd=o.model.displayInd}if(null===t.dragCategoryDisplayInd||"freeform"===t.parcatsViewModel.arrangement){a.model.dragX=n.event.x;var h=t.parcatsViewModel.dimensions[r],p=t.parcatsViewModel.dimensions[i];void 0!==h&&a.model.dragXp.x&&(a.model.displayInd=p.model.displayInd,p.model.displayInd=t.dragDimensionDisplayInd),t.dragDimensionDisplayInd=a.model.displayInd}j(t.parcatsViewModel),N(t.parcatsViewModel),R(t.parcatsViewModel),D(t.parcatsViewModel)}}function O(t){if("fixed"!==t.parcatsViewModel.arrangement&&null!==t.dragDimensionDisplayInd){n.select(this).selectAll("text").attr("font-weight","normal");var e={},r=z(t.parcatsViewModel),i=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),o=t.initialDragDimensionDisplayInds.some((function(t,e){return t!==i[e]}));o&&i.forEach((function(r,n){var i=t.parcatsViewModel.model.dimensions[n].containerInd;e["dimensions["+i+"].displayindex"]=r}));var s=!1;if(null!==t.dragCategoryDisplayInd){var l=t.model.categories.map((function(t){return t.displayInd}));if(s=t.initialDragCategoryDisplayInds.some((function(t,e){return t!==l[e]}))){var c=t.model.categories.slice().sort((function(t,e){return t.displayInd-e.displayInd})),u=c.map((function(t){return t.categoryValue})),f=c.map((function(t){return t.categoryLabel}));e["dimensions["+t.model.containerInd+"].categoryarray"]=[u],e["dimensions["+t.model.containerInd+"].ticktext"]=[f],e["dimensions["+t.model.containerInd+"].categoryorder"]="array"}}if(-1===t.parcatsViewModel.hoverinfoItems.indexOf("skip")&&!t.dragHasMoved&&t.potentialClickBand&&("color"===t.parcatsViewModel.hoveron?S(t.potentialClickBand,"plotly_click",n.event.sourceEvent):M(t.potentialClickBand,"plotly_click",n.event.sourceEvent)),t.model.dragX=null,null!==t.dragCategoryDisplayInd)t.parcatsViewModel.dimensions[t.dragDimensionDisplayInd].categories[t.dragCategoryDisplayInd].model.dragY=null,t.dragCategoryDisplayInd=null;t.dragDimensionDisplayInd=null,t.parcatsViewModel.dragDimension=null,t.dragHasMoved=null,t.potentialClickBand=null,j(t.parcatsViewModel),N(t.parcatsViewModel),n.transition().duration(300).ease("cubic-in-out").each((function(){R(t.parcatsViewModel,!0),D(t.parcatsViewModel,!0)})).each("end",(function(){(o||s)&&a.restyle(t.parcatsViewModel.graphDiv,e,[r])}))}}function z(t){for(var e,r=t.graphDiv._fullData,n=0;n=0;s--)u+="C"+c[s]+","+(e[s+1]+n)+" "+l[s]+","+(e[s]+n)+" "+(t[s]+r[s])+","+(e[s]+n),u+="l-"+r[s]+",0 ";return u+="Z"}function N(t){var e=t.dimensions,r=t.model,n=e.map((function(t){return t.categories.map((function(t){return t.y}))})),i=t.model.dimensions.map((function(t){return t.categories.map((function(t){return t.displayInd}))})),a=t.model.dimensions.map((function(t){return t.displayInd})),o=t.dimensions.map((function(t){return t.model.dimensionInd})),s=e.map((function(t){return t.x})),l=e.map((function(t){return t.width})),c=[];for(var u in r.paths)r.paths.hasOwnProperty(u)&&c.push(r.paths[u]);function f(t){var e=t.categoryInds.map((function(t,e){return i[e][t]}));return o.map((function(t){return e[t]}))}c.sort((function(e,r){var n=f(e),i=f(r);return"backward"===t.sortpaths&&(n.reverse(),i.reverse()),n.push(e.valueInds[0]),i.push(r.valueInds[0]),t.bundlecolors&&(n.unshift(e.rawColor),i.unshift(r.rawColor)),ni?1:0}));for(var h=new Array(c.length),p=e[0].model.count,d=e[0].categories.map((function(t){return t.height})).reduce((function(t,e){return t+e})),m=0;m0?d*(v.count/p):0;for(var y,x=new Array(n.length),b=0;b1?(t.width-80-16)/(n-1):0)*i;var a,o,s,l,c,u=[],f=t.model.maxCats,h=e.categories.length,p=e.count,d=t.height-8*(f-1),m=8*(f-h)/2,g=e.categories.map((function(t){return{displayInd:t.displayInd,categoryInd:t.categoryInd}}));for(g.sort((function(t,e){return t.displayInd-e.displayInd})),c=0;c0?o.count/p*d:0,s={key:o.valueInds[0],model:o,width:16,height:a,y:null!==o.dragY?o.dragY:m,bands:[],parcatsViewModel:t},m=m+a+8,u.push(s);return{key:e.dimensionInd,x:null!==e.dragX?e.dragX:r,y:0,width:16,model:e,categories:u,parcatsViewModel:t,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(t,e,r,n){h(r,t,n,e)}},{"../../components/drawing":661,"../../components/fx":679,"../../lib":776,"../../lib/svg_text_utils":802,"../../plot_api/plot_api":813,"@plotly/d3":58,"d3-interpolate":164,tinycolor2:572}],1152:[function(t,e,r){"use strict";var n=t("./parcats");e.exports=function(t,e,r,i){var a=t._fullLayout,o=a._paper,s=a._size;n(t,o,e,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},r,i)}},{"./parcats":1151}],1153:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/cartesian/layout_attributes"),a=t("../../plots/font_attributes"),o=t("../../plots/domain").attributes,s=t("../../lib/extend").extendFlat,l=t("../../plot_api/plot_template").templatedArray;e.exports={domain:o({name:"parcoords",trace:!0,editType:"plot"}),labelangle:{valType:"angle",dflt:0,editType:"plot"},labelside:{valType:"enumerated",values:["top","bottom"],dflt:"top",editType:"plot"},labelfont:a({editType:"plot"}),tickfont:a({editType:"plot"}),rangefont:a({editType:"plot"}),dimensions:l("dimension",{label:{valType:"string",editType:"plot"},tickvals:s({},i.tickvals,{editType:"plot"}),ticktext:s({},i.ticktext,{editType:"plot"}),tickformat:s({},i.tickformat,{editType:"plot"}),visible:{valType:"boolean",dflt:!0,editType:"plot"},range:{valType:"info_array",items:[{valType:"number",editType:"plot"},{valType:"number",editType:"plot"}],editType:"plot"},constraintrange:{valType:"info_array",freeLength:!0,dimensions:"1-2",items:[{valType:"any",editType:"plot"},{valType:"any",editType:"plot"}],editType:"plot"},multiselect:{valType:"boolean",dflt:!0,editType:"plot"},values:{valType:"data_array",editType:"calc"},editType:"calc"}),line:s({editType:"calc"},n("line",{colorscaleDflt:"Viridis",autoColorDflt:!1,editTypeOverride:"calc"}))}},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plot_api/plot_template":816,"../../plots/cartesian/layout_attributes":842,"../../plots/domain":855,"../../plots/font_attributes":856}],1154:[function(t,e,r){"use strict";var n=t("./constants"),i=t("@plotly/d3"),a=t("../../lib/gup").keyFun,o=t("../../lib/gup").repeat,s=t("../../lib").sorterAsc,l=t("../../lib").strTranslate,c=n.bar.snapRatio;function u(t,e){return t*(1-c)+e*c}var f=n.bar.snapClose;function h(t,e){return t*(1-f)+e*f}function p(t,e,r,n){if(function(t,e){for(var r=0;r=e[r][0]&&t<=e[r][1])return!0;return!1}(r,n))return r;var i=t?-1:1,a=0,o=e.length-1;if(i<0){var s=a;a=o,o=s}for(var l=e[a],c=l,f=a;i*fe){h=r;break}}if(a=u,isNaN(a)&&(a=isNaN(f)||isNaN(h)?isNaN(f)?h:f:e-c[f][1]t[1]+r||e=.9*t[1]+.1*t[0]?"n":e<=.9*t[0]+.1*t[1]?"s":"ns"}(d,e);m&&(o.interval=l[a],o.intervalPix=d,o.region=m)}}if(t.ordinal&&!o.region){var g=t.unitTickvals,y=t.unitToPaddedPx.invert(e);for(r=0;r=x[0]&&y<=x[1]){o.clickableOrdinalRange=x;break}}}return o}function w(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.brush.svgBrush;a.wasDragged=!0,a._dragging=!0,a.grabbingBar?a.newExtent=[r-a.grabPoint,r+a.barLength-a.grabPoint].map(e.unitToPaddedPx.invert):a.newExtent=[a.startExtent,e.unitToPaddedPx.invert(r)].sort(s),e.brush.filterSpecified=!0,a.extent=a.stayingIntervals.concat([a.newExtent]),a.brushCallback(e),b(t.parentNode)}function T(t,e){var r=_(e,e.height-i.mouse(t)[1]-2*n.verticalPadding),a="crosshair";r.clickableOrdinalRange?a="pointer":r.region&&(a=r.region+"-resize"),i.select(document.body).style("cursor",a)}function k(t){t.on("mousemove",(function(t){i.event.preventDefault(),t.parent.inBrushDrag||T(this,t)})).on("mouseleave",(function(t){t.parent.inBrushDrag||y()})).call(i.behavior.drag().on("dragstart",(function(t){!function(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.unitToPaddedPx.invert(r),o=e.brush,s=_(e,r),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar="ns"===s.region,c.grabbingBar){var u=l.map(e.unitToPaddedPx);c.grabPoint=r-u[0]-n.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=e.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter((function(t){return t[0]!==l[0]&&t[1]!==l[1]}))),c.startExtent=s.region?l["s"===s.region?1:0]:a,e.parent.inBrushDrag=!0,c.brushStartCallback()}(this,t)})).on("drag",(function(t){w(this,t)})).on("dragend",(function(t){!function(t,e){var r=e.brush,n=r.filter,a=r.svgBrush;a._dragging||(T(t,e),w(t,e),e.brush.svgBrush.wasDragged=!1),a._dragging=!1,i.event.sourceEvent.stopPropagation();var o=a.grabbingBar;if(a.grabbingBar=!1,a.grabLocation=void 0,e.parent.inBrushDrag=!1,y(),!a.wasDragged)return a.wasDragged=void 0,a.clickableOrdinalRange?r.filterSpecified&&e.multiselect?a.extent.push(a.clickableOrdinalRange):(a.extent=[a.clickableOrdinalRange],r.filterSpecified=!0):o?(a.extent=a.stayingIntervals,0===a.extent.length&&M(r)):M(r),a.brushCallback(e),b(t.parentNode),void a.brushEndCallback(r.filterSpecified?n.getConsolidated():[]);var s=function(){n.set(n.getConsolidated())};if(e.ordinal){var l=e.unitTickvals;l[l.length-1]a.newExtent[0];a.extent=a.stayingIntervals.concat(c?[a.newExtent]:[]),a.extent.length||M(r),a.brushCallback(e),c?b(t.parentNode,s):(s(),b(t.parentNode))}else s();a.brushEndCallback(r.filterSpecified?n.getConsolidated():[])}(this,t)})))}function A(t,e){return t[0]-e[0]}function M(t){t.filterSpecified=!1,t.svgBrush.extent=[[-1/0,1/0]]}function S(t){for(var e,r=t.slice(),n=[],i=r.shift();i;){for(e=i.slice();(i=r.shift())&&i[0]<=e[1];)e[1]=Math.max(e[1],i[1]);n.push(e)}return 1===n.length&&n[0][0]>n[0][1]&&(n=[]),n}e.exports={makeBrush:function(t,e,r,n,i,a){var o,l=function(){var t,e,r=[];return{set:function(n){1===(r=n.map((function(t){return t.slice().sort(s)})).sort(A)).length&&r[0][0]===-1/0&&r[0][1]===1/0&&(r=[[0,-1]]),t=S(r),e=r.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0])},get:function(){return r.slice()},getConsolidated:function(){return t},getBounds:function(){return e}}}();return l.set(r),{filter:l,filterSpecified:e,svgBrush:{extent:[],brushStartCallback:n,brushCallback:(o=i,function(t){var e=t.brush,r=function(t){return t.svgBrush.extent.map((function(t){return t.slice()}))}(e).slice();e.filter.set(r),o()}),brushEndCallback:a}}},ensureAxisBrush:function(t,e){var r=t.selectAll("."+n.cn.axisBrush).data(o,a);r.enter().append("g").classed(n.cn.axisBrush,!0),function(t,e){var r=t.selectAll(".background").data(o);r.enter().append("rect").classed("background",!0).call(d).call(m).style("pointer-events","auto").attr("transform",l(0,n.verticalPadding)),r.call(k).attr("height",(function(t){return t.height-n.verticalPadding}));var i=t.selectAll(".highlight-shadow").data(o);i.enter().append("line").classed("highlight-shadow",!0).attr("x",-n.bar.width/2).attr("stroke-width",n.bar.width+n.bar.strokeWidth).attr("stroke",e).attr("opacity",n.bar.strokeOpacity).attr("stroke-linecap","butt"),i.attr("y1",(function(t){return t.height})).call(x);var a=t.selectAll(".highlight").data(o);a.enter().append("line").classed("highlight",!0).attr("x",-n.bar.width/2).attr("stroke-width",n.bar.width-n.bar.strokeWidth).attr("stroke",n.bar.fillColor).attr("opacity",n.bar.fillOpacity).attr("stroke-linecap","butt"),a.attr("y1",(function(t){return t.height})).call(x)}(r,e)},cleanRanges:function(t,e){if(Array.isArray(t[0])?(t=t.map((function(t){return t.sort(s)})),t=e.multiselect?S(t.sort(A)):[t[0]]):t=[t.sort(s)],e.tickvals){var r=e.tickvals.slice().sort(s);if(!(t=t.map((function(t){var e=[p(0,r,t[0],[]),p(1,r,t[1],[])];if(e[1]>e[0])return e})).filter((function(t){return t}))).length)return}return t.length>1?t:t[0]}}},{"../../lib":776,"../../lib/gup":773,"./constants":1157,"@plotly/d3":58}],1155:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../plots/get_data").getModuleCalcData,a=t("./plot"),o=t("../../constants/xmlns_namespaces");r.name="parcoords",r.plot=function(t){var e=i(t.calcdata,"parcoords")[0];e.length&&a(t,e)},r.clean=function(t,e,r,n){var i=n._has&&n._has("parcoords"),a=e._has&&e._has("parcoords");i&&!a&&(n._paperdiv.selectAll(".parcoords").remove(),n._glimages.selectAll("*").remove())},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(".svg-container");r.filter((function(t,e){return e===r.size()-1})).selectAll(".gl-canvas-context, .gl-canvas-focus").each((function(){var t=this.toDataURL("image/png");e.append("svg:image").attr({xmlns:o.svg,"xlink:href":t,preserveAspectRatio:"none",x:0,y:0,width:this.style.width,height:this.style.height})})),window.setTimeout((function(){n.selectAll("#filterBarPattern").attr("id","filterBarPattern")}),60)}},{"../../constants/xmlns_namespaces":753,"../../plots/get_data":864,"./plot":1164,"@plotly/d3":58}],1156:[function(t,e,r){"use strict";var n=t("../../lib").isArrayOrTypedArray,i=t("../../components/colorscale"),a=t("../../lib/gup").wrap;e.exports=function(t,e){var r,o;return i.hasColorscale(e,"line")&&n(e.line.color)?(r=e.line.color,o=i.extractOpts(e.line).colorscale,i.calc(t,e,{vals:r,containerStr:"line",cLetter:"c"})):(r=function(t){for(var e=new Array(t),r=0;rf&&(n.log("parcoords traces support up to "+f+" dimensions at the moment"),d.splice(f));var m=s(t,e,{name:"dimensions",layout:l,handleItemDefaults:p}),g=function(t,e,r,o,s){var l=s("line.color",r);if(i(t,"line")&&n.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(t,e,o,s,{prefix:"line.",cLetter:"c"}),l.length;e.line.color=r}return 1/0}(t,e,r,l,u);o(e,l,u),Array.isArray(m)&&m.length||(e.visible=!1),h(e,m,"values",g);var v={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};n.coerceFont(u,"labelfont",v),n.coerceFont(u,"tickfont",v),n.coerceFont(u,"rangefont",v),u("labelangle"),u("labelside")}},{"../../components/colorscale/defaults":649,"../../components/colorscale/helpers":650,"../../lib":776,"../../plots/array_container_defaults":822,"../../plots/cartesian/axes":827,"../../plots/domain":855,"./attributes":1153,"./axisbrush":1154,"./constants":1157,"./merge_length":1162}],1159:[function(t,e,r){"use strict";var n=t("../../lib").isTypedArray;r.convertTypedArray=function(t){return n(t)?Array.prototype.slice.call(t):t},r.isOrdinal=function(t){return!!t.tickvals},r.isVisible=function(t){return t.visible||!("visible"in t)}},{"../../lib":776}],1160:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcoords",basePlotModule:t("./base_plot"),categories:["gl","regl","noOpacity","noHover"],meta:{}}},{"./attributes":1153,"./base_plot":1155,"./calc":1156,"./defaults":1158,"./plot":1164}],1161:[function(t,e,r){"use strict";var n=t("glslify"),i=n(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\n p17_20, p21_24, p25_28, p29_32,\n p33_36, p37_40, p41_44, p45_48,\n p49_52, p53_56, p57_60, colors;\n\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\n loA, hiA, loB, hiB, loC, hiC, loD, hiD;\n\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\nuniform float maskHeight;\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\nuniform vec4 contextColor;\nuniform sampler2D maskTexture, palette;\n\nbool isPick = (drwLayer > 1.5);\nbool isContext = (drwLayer < 0.5);\n\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\n\nfloat val(mat4 p, mat4 v) {\n return dot(matrixCompMult(p, v) * UNITS, UNITS);\n}\n\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\n float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\n float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\n return y1 * (1.0 - ratio) + y2 * ratio;\n}\n\nint iMod(int a, int b) {\n return a - b * (a / b);\n}\n\nbool fOutside(float p, float lo, float hi) {\n return (lo < hi) && (lo > p || p > hi);\n}\n\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\n return (\n fOutside(p[0], lo[0], hi[0]) ||\n fOutside(p[1], lo[1], hi[1]) ||\n fOutside(p[2], lo[2], hi[2]) ||\n fOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\n return (\n vOutside(p[0], lo[0], hi[0]) ||\n vOutside(p[1], lo[1], hi[1]) ||\n vOutside(p[2], lo[2], hi[2]) ||\n vOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\n return mOutside(A, loA, hiA) ||\n mOutside(B, loB, hiB) ||\n mOutside(C, loC, hiC) ||\n mOutside(D, loD, hiD);\n}\n\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\n mat4 pnts[4];\n pnts[0] = A;\n pnts[1] = B;\n pnts[2] = C;\n pnts[3] = D;\n\n for(int i = 0; i < 4; ++i) {\n for(int j = 0; j < 4; ++j) {\n for(int k = 0; k < 4; ++k) {\n if(0 == iMod(\n int(255.0 * texture2D(maskTexture,\n vec2(\n (float(i * 2 + j / 2) + 0.5) / 8.0,\n (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\n ))[3]\n ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\n 2\n )) return true;\n }\n }\n }\n return false;\n}\n\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\n float x = 0.5 * sign(v) + 0.5;\n float y = axisY(x, A, B, C, D);\n float z = 1.0 - abs(v);\n\n z += isContext ? 0.0 : 2.0 * float(\n outsideBoundingBox(A, B, C, D) ||\n outsideRasterMask(A, B, C, D)\n );\n\n return vec4(\n 2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\n z,\n 1.0\n );\n}\n\nvoid main() {\n mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\n mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\n mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\n mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\n\n float v = colors[3];\n\n gl_Position = position(isContext, v, A, B, C, D);\n\n fragColor =\n isContext ? vec4(contextColor) :\n isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\n}\n"]),a=n(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nvoid main() {\n gl_FragColor = fragColor;\n}\n"]),o=t("./constants").maxDimensionCount,s=t("../../lib"),l=new Uint8Array(4),c=new Uint8Array(4),u={shape:[256,1],format:"rgba",type:"uint8",mag:"nearest",min:"nearest"};function f(t,e,r,n,i){var a=t._gl;a.enable(a.SCISSOR_TEST),a.scissor(e,r,n,i),t.clear({color:[0,0,0,0],depth:1})}function h(t,e,r,n,i,a){var o=a.key;r.drawCompleted||(!function(t){t.read({x:0,y:0,width:1,height:1,data:l})}(t),r.drawCompleted=!0),function s(l){var c=Math.min(n,i-l*n);0===l&&(window.cancelAnimationFrame(r.currentRafs[o]),delete r.currentRafs[o],f(t,a.scissorX,a.scissorY,a.scissorWidth,a.viewBoxSize[1])),r.clearOnly||(a.count=2*c,a.offset=2*l*n,e(a),l*n+c>>8*e)%256/255}function m(t,e,r){for(var n=new Array(8*e),i=0,a=0;au&&(u=t[i].dim1.canvasX,o=i);0===s&&f(T,0,0,r.canvasWidth,r.canvasHeight);var p=function(t){var e,r,n,i=[[],[]];for(n=0;n<64;n++){var a=!t&&no._length&&(S=S.slice(0,o._length));var L,C=o.tickvals;function P(t,e){return{val:t,text:L[e]}}function I(t,e){return t.val-e.val}if(Array.isArray(C)&&C.length){L=o.ticktext,Array.isArray(L)&&L.length?L.length>C.length?L=L.slice(0,C.length):C.length>L.length&&(C=C.slice(0,L.length)):L=C.map(a(o.tickformat));for(var O=1;O=r||l>=i)return;var c=t.lineLayer.readPixel(s,i-1-l),u=0!==c[3],f=u?c[2]+256*(c[1]+256*c[0]):null,h={x:s,y:l,clientX:e.clientX,clientY:e.clientY,dataIndex:t.model.key,curveNumber:f};f!==B&&(u?a.hover(h):a.unhover&&a.unhover(h),B=f)}})),F.style("opacity",(function(t){return t.pick?0:1})),h.style("background","rgba(255, 255, 255, 0)");var N=h.selectAll("."+y.cn.parcoords).data(R,d);N.exit().remove(),N.enter().append("g").classed(y.cn.parcoords,!0).style("shape-rendering","crispEdges").style("pointer-events","none"),N.attr("transform",(function(t){return c(t.model.translateX,t.model.translateY)}));var j=N.selectAll("."+y.cn.parcoordsControlView).data(m,d);j.enter().append("g").classed(y.cn.parcoordsControlView,!0),j.attr("transform",(function(t){return c(t.model.pad.l,t.model.pad.t)}));var U=j.selectAll("."+y.cn.yAxis).data((function(t){return t.dimensions}),d);U.enter().append("g").classed(y.cn.yAxis,!0),j.each((function(t){O(U,t,_)})),F.each((function(t){if(t.viewModel){!t.lineLayer||a?t.lineLayer=b(this,t):t.lineLayer.update(t),(t.key||0===t.key)&&(t.viewModel[t.key]=t.lineLayer);var e=!t.context||a;t.lineLayer.render(t.viewModel.panels,e)}})),U.attr("transform",(function(t){return c(t.xScale(t.xIndex),0)})),U.call(n.behavior.drag().origin((function(t){return t})).on("drag",(function(t){var e=t.parent;S.linePickActive(!1),t.x=Math.max(-y.overdrag,Math.min(t.model.width+y.overdrag,n.event.x)),t.canvasX=t.x*t.model.canvasPixelRatio,U.sort((function(t,e){return t.x-e.x})).each((function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio})),O(U,e,_),U.filter((function(e){return 0!==Math.abs(t.xIndex-e.xIndex)})).attr("transform",(function(t){return c(t.xScale(t.xIndex),0)})),n.select(this).attr("transform",c(t.x,0)),U.each((function(r,n,i){i===t.parent.key&&(e.dimensions[n]=r)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!E(e)),e.focusLayer.render&&e.focusLayer.render(e.panels)})).on("dragend",(function(t){var e=t.parent;t.x=t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio,O(U,e,_),n.select(this).attr("transform",(function(t){return c(t.x,0)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!E(e)),e.focusLayer&&e.focusLayer.render(e.panels),e.pickLayer&&e.pickLayer.render(e.panels,!0),S.linePickActive(!0),a&&a.axesMoved&&a.axesMoved(e.key,e.dimensions.map((function(t){return t.crossfilterDimensionIndex})))}))),U.exit().remove();var V=U.selectAll("."+y.cn.axisOverlays).data(m,d);V.enter().append("g").classed(y.cn.axisOverlays,!0),V.selectAll("."+y.cn.axis).remove();var H=V.selectAll("."+y.cn.axis).data(m,d);H.enter().append("g").classed(y.cn.axis,!0),H.each((function(t){var e=t.model.height/t.model.tickDistance,r=t.domainScale,i=r.domain();n.select(this).call(n.svg.axis().orient("left").tickSize(4).outerTickSize(2).ticks(e,t.tickFormat).tickValues(t.ordinal?i:null).tickFormat((function(e){return v.isOrdinal(t)?e:z(t.model.dimensions[t.visibleIndex],e)})).scale(r)),f.font(H.selectAll("text"),t.model.tickFont)})),H.selectAll(".domain, .tick>line").attr("fill","none").attr("stroke","black").attr("stroke-opacity",.25).attr("stroke-width","1px"),H.selectAll("text").style("text-shadow",u.makeTextShadow(T)).style("cursor","default");var q=V.selectAll("."+y.cn.axisHeading).data(m,d);q.enter().append("g").classed(y.cn.axisHeading,!0);var G=q.selectAll("."+y.cn.axisTitle).data(m,d);G.enter().append("text").classed(y.cn.axisTitle,!0).attr("text-anchor","middle").style("cursor","ew-resize").style("pointer-events","auto"),G.text((function(t){return t.label})).each((function(e){var r=n.select(this);f.font(r,e.model.labelFont),u.convertToTspans(r,t)})).attr("transform",(function(t){var e=I(t.model.labelAngle,t.model.labelSide),r=y.axisTitleOffset;return(e.dir>0?"":c(0,2*r+t.model.height))+l(e.degrees)+c(-r*e.dx,-r*e.dy)})).attr("text-anchor",(function(t){var e=I(t.model.labelAngle,t.model.labelSide);return 2*Math.abs(e.dx)>Math.abs(e.dy)?e.dir*e.dx<0?"start":"end":"middle"}));var Y=V.selectAll("."+y.cn.axisExtent).data(m,d);Y.enter().append("g").classed(y.cn.axisExtent,!0);var W=Y.selectAll("."+y.cn.axisExtentTop).data(m,d);W.enter().append("g").classed(y.cn.axisExtentTop,!0),W.attr("transform",c(0,-y.axisExtentOffset));var X=W.selectAll("."+y.cn.axisExtentTopText).data(m,d);X.enter().append("text").classed(y.cn.axisExtentTopText,!0).call(P),X.text((function(t){return D(t,!0)})).each((function(t){f.font(n.select(this),t.model.rangeFont)}));var Z=Y.selectAll("."+y.cn.axisExtentBottom).data(m,d);Z.enter().append("g").classed(y.cn.axisExtentBottom,!0),Z.attr("transform",(function(t){return c(0,t.model.height+y.axisExtentOffset)}));var J=Z.selectAll("."+y.cn.axisExtentBottomText).data(m,d);J.enter().append("text").classed(y.cn.axisExtentBottomText,!0).attr("dy","0.75em").call(P),J.text((function(t){return D(t,!1)})).each((function(t){f.font(n.select(this),t.model.rangeFont)})),x.ensureAxisBrush(V,T)}},{"../../components/colorscale":651,"../../components/drawing":661,"../../lib":776,"../../lib/gup":773,"../../lib/svg_text_utils":802,"../../plots/cartesian/axes":827,"./axisbrush":1154,"./constants":1157,"./helpers":1159,"./lines":1161,"@plotly/d3":58,"color-rgba":128}],1164:[function(t,e,r){"use strict";var n=t("./parcoords"),i=t("../../lib/prepare_regl"),a=t("./helpers").isVisible;function o(t,e,r){var n=e.indexOf(r),i=t.indexOf(n);return-1===i&&(i+=e.length),i}e.exports=function(t,e){var r=t._fullLayout;if(i(t)){var s={},l={},c={},u={},f=r._size;e.forEach((function(e,r){var n=e[0].trace;c[r]=n.index;var i=u[r]=n._fullInput.index;s[r]=t.data[i].dimensions,l[r]=t.data[i].dimensions.slice()}));n(t,e,{width:f.w,height:f.h,margin:{t:f.t,r:f.r,b:f.b,l:f.l}},{filterChanged:function(e,n,i){var a=l[e][n],o=i.map((function(t){return t.slice()})),s="dimensions["+n+"].constraintrange",f=r._tracePreGUI[t._fullData[c[e]]._fullInput.uid];if(void 0===f[s]){var h=a.constraintrange;f[s]=h||null}var p=t._fullData[c[e]].dimensions[n];o.length?(1===o.length&&(o=o[0]),a.constraintrange=o,p.constraintrange=o.slice(),o=[o]):(delete a.constraintrange,delete p.constraintrange,o=null);var d={};d[s]=o,t.emit("plotly_restyle",[d,[u[e]]])},hover:function(e){t.emit("plotly_hover",e)},unhover:function(e){t.emit("plotly_unhover",e)},axesMoved:function(e,r){var n=function(t,e){return function(r,n){return o(t,e,r)-o(t,e,n)}}(r,l[e].filter(a));s[e].sort(n),l[e].filter((function(t){return!a(t)})).sort((function(t){return l[e].indexOf(t)})).forEach((function(t){s[e].splice(s[e].indexOf(t),1),s[e].splice(l[e].indexOf(t),0,t)})),t.emit("plotly_restyle",[{dimensions:[s[e]]},[u[e]]])}})}}},{"../../lib/prepare_regl":789,"./helpers":1159,"./parcoords":1163}],1165:[function(t,e,r){"use strict";var n=t("../../plots/attributes"),i=t("../../plots/domain").attributes,a=t("../../plots/font_attributes"),o=t("../../components/color/attributes"),s=t("../../plots/template_attributes").hovertemplateAttrs,l=t("../../plots/template_attributes").texttemplateAttrs,c=t("../../lib/extend").extendFlat,u=a({editType:"plot",arrayOk:!0,colorEditType:"plot"});e.exports={labels:{valType:"data_array",editType:"calc"},label0:{valType:"number",dflt:0,editType:"calc"},dlabel:{valType:"number",dflt:1,editType:"calc"},values:{valType:"data_array",editType:"calc"},marker:{colors:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:o.defaultLine,arrayOk:!0,editType:"style"},width:{valType:"number",min:0,dflt:0,arrayOk:!0,editType:"style"},editType:"calc"},editType:"calc"},text:{valType:"data_array",editType:"plot"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"style"},scalegroup:{valType:"string",dflt:"",editType:"calc"},textinfo:{valType:"flaglist",flags:["label","text","value","percent"],extras:["none"],editType:"calc"},hoverinfo:c({},n.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:s({},{keys:["label","color","value","percent","text"]}),texttemplate:l({editType:"plot"},{keys:["label","color","value","percent","text"]}),textposition:{valType:"enumerated",values:["inside","outside","auto","none"],dflt:"auto",arrayOk:!0,editType:"plot"},textfont:c({},u,{}),insidetextorientation:{valType:"enumerated",values:["horizontal","radial","tangential","auto"],dflt:"auto",editType:"plot"},insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),automargin:{valType:"boolean",dflt:!1,editType:"plot"},title:{text:{valType:"string",dflt:"",editType:"plot"},font:c({},u,{}),position:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"plot"},editType:"plot"},domain:i({name:"pie",trace:!0,editType:"calc"}),hole:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},sort:{valType:"boolean",dflt:!0,editType:"calc"},direction:{valType:"enumerated",values:["clockwise","counterclockwise"],dflt:"counterclockwise",editType:"calc"},rotation:{valType:"number",min:-360,max:360,dflt:0,editType:"calc"},pull:{valType:"number",min:0,max:1,dflt:0,arrayOk:!0,editType:"calc"},_deprecated:{title:{valType:"string",dflt:"",editType:"calc"},titlefont:c({},u,{}),titleposition:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"calc"}}}},{"../../components/color/attributes":638,"../../lib/extend":766,"../../plots/attributes":823,"../../plots/domain":855,"../../plots/font_attributes":856,"../../plots/template_attributes":899}],1166:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="pie",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":890}],1167:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("tinycolor2"),a=t("../../components/color"),o={};function s(t){return function(e,r){return!!e&&(!!(e=i(e)).isValid()&&(e=a.addOpacity(e,e.getAlpha()),t[r]||(t[r]=e),e))}}function l(t,e){var r,n=JSON.stringify(t),a=e[n];if(!a){for(a=t.slice(),r=0;r0){s=!0;break}}s||(o=0)}return{hasLabels:r,hasValues:a,len:o}}e.exports={handleLabelsAndValues:l,supplyDefaults:function(t,e,r,n){function c(r,n){return i.coerce(t,e,a,r,n)}var u=l(c("labels"),c("values")),f=u.len;if(e._hasLabels=u.hasLabels,e._hasValues=u.hasValues,!e._hasLabels&&e._hasValues&&(c("label0"),c("dlabel")),f){e._length=f,c("marker.line.width")&&c("marker.line.color"),c("marker.colors"),c("scalegroup");var h,p=c("text"),d=c("texttemplate");if(d||(h=c("textinfo",Array.isArray(p)?"text+percent":"percent")),c("hovertext"),c("hovertemplate"),d||h&&"none"!==h){var m=c("textposition");s(t,e,n,c,m,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),(Array.isArray(m)||"auto"===m||"outside"===m)&&c("automargin"),("inside"===m||"auto"===m||Array.isArray(m))&&c("insidetextorientation")}o(e,n,c);var g=c("hole");if(c("title.text")){var v=c("title.position",g?"middle center":"top center");g||"middle center"!==v||(e.title.position="top center"),i.coerceFont(c,"title.font",n.font)}c("sort"),c("direction"),c("rotation"),c("pull")}else e.visible=!1}}},{"../../lib":776,"../../plots/domain":855,"../bar/defaults":918,"./attributes":1165,"fast-isnumeric":242}],1169:[function(t,e,r){"use strict";var n=t("../../components/fx/helpers").appendArrayMultiPointValues;e.exports=function(t,e){var r={curveNumber:e.index,pointNumbers:t.pts,data:e._input,fullData:e,label:t.label,color:t.color,value:t.v,percent:t.percent,text:t.text,bbox:t.bbox,v:t.v};return 1===t.pts.length&&(r.pointNumber=r.i=t.pts[0]),n(r,e,t.pts),"funnelarea"===e.type&&(delete r.v,delete r.i),r}},{"../../components/fx/helpers":675}],1170:[function(t,e,r){"use strict";var n=t("../../lib");function i(t){return-1!==t.indexOf("e")?t.replace(/[.]?0+e/,"e"):-1!==t.indexOf(".")?t.replace(/[.]?0+$/,""):t}r.formatPiePercent=function(t,e){var r=i((100*t).toPrecision(3));return n.numSeparate(r,e)+"%"},r.formatPieValue=function(t,e){var r=i(t.toPrecision(10));return n.numSeparate(r,e)},r.getFirstFilled=function(t,e){if(Array.isArray(t))for(var r=0;r"),name:f.hovertemplate||-1!==h.indexOf("name")?f.name:void 0,idealAlign:t.pxmid[0]<0?"left":"right",color:g.castOption(_.bgcolor,t.pts)||t.color,borderColor:g.castOption(_.bordercolor,t.pts),fontFamily:g.castOption(w.family,t.pts),fontSize:g.castOption(w.size,t.pts),fontColor:g.castOption(w.color,t.pts),nameLength:g.castOption(_.namelength,t.pts),textAlign:g.castOption(_.align,t.pts),hovertemplate:g.castOption(f.hovertemplate,t.pts),hovertemplateLabels:t,eventData:[v(t,f)]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:e,inOut_bbox:T}),t.bbox=T[0],c._hasHoverLabel=!0}c._hasHoverEvent=!0,e.emit("plotly_hover",{points:[v(t,f)],event:n.event})}})),t.on("mouseout",(function(t){var r=e._fullLayout,i=e._fullData[c.index],o=n.select(this).datum();c._hasHoverEvent&&(t.originalEvent=n.event,e.emit("plotly_unhover",{points:[v(o,i)],event:n.event}),c._hasHoverEvent=!1),c._hasHoverLabel&&(a.loneUnhover(r._hoverlayer.node()),c._hasHoverLabel=!1)})),t.on("click",(function(t){var r=e._fullLayout,i=e._fullData[c.index];e._dragging||!1===r.hovermode||(e._hoverdata=[v(t,i)],a.click(e,n.event))}))}function b(t,e,r){var n=g.castOption(t.insidetextfont.color,e.pts);!n&&t._input.textfont&&(n=g.castOption(t._input.textfont.color,e.pts));var i=g.castOption(t.insidetextfont.family,e.pts)||g.castOption(t.textfont.family,e.pts)||r.family,a=g.castOption(t.insidetextfont.size,e.pts)||g.castOption(t.textfont.size,e.pts)||r.size;return{color:n||o.contrast(e.color),family:i,size:a}}function _(t,e){for(var r,n,i=0;ie&&e>n||r=-4;g-=2)v(Math.PI*g,"tan");for(g=4;g>=-4;g-=2)v(Math.PI*(g+1),"tan")}if(f||p){for(g=4;g>=-4;g-=2)v(Math.PI*(g+1.5),"rad");for(g=4;g>=-4;g-=2)v(Math.PI*(g+.5),"rad")}}if(s||d||f){var y=Math.sqrt(t.width*t.width+t.height*t.height);if((a={scale:i*n*2/y,rCenter:1-i,rotate:0}).textPosAngle=(e.startangle+e.stopangle)/2,a.scale>=1)return a;m.push(a)}(d||p)&&((a=T(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,m.push(a)),(d||h)&&((a=k(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,m.push(a));for(var x=0,b=0,_=0;_=1)break}return m[x]}function T(t,e,r,n,i){e=Math.max(0,e-2*m);var a=t.width/t.height,o=S(a,n,e,r);return{scale:2*o/t.height,rCenter:A(a,o/e),rotate:M(i)}}function k(t,e,r,n,i){e=Math.max(0,e-2*m);var a=t.height/t.width,o=S(a,n,e,r);return{scale:2*o/t.width,rCenter:A(a,o/e),rotate:M(i+Math.PI/2)}}function A(t,e){return Math.cos(e)-t*e}function M(t){return(180/Math.PI*t+720)%180-90}function S(t,e,r,n){var i=t+1/(2*Math.tan(e));return r*Math.min(1/(Math.sqrt(i*i+.5)+i),n/(Math.sqrt(t*t+n/2)+t))}function E(t,e){return t.v!==e.vTotal||e.trace.hole?Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2):1}function L(t,e){var r=e.pxmid[0],n=e.pxmid[1],i=t.width/2,a=t.height/2;return r<0&&(i*=-1),n<0&&(a*=-1),{scale:1,rCenter:1,rotate:0,x:i+Math.abs(a)*(i>0?1:-1)/2,y:a/(1+r*r/(n*n)),outside:!0}}function C(t,e){var r,n,i,a=t.trace,o={x:t.cx,y:t.cy},s={tx:0,ty:0};s.ty+=a.title.font.size,i=I(a),-1!==a.title.position.indexOf("top")?(o.y-=(1+i)*t.r,s.ty-=t.titleBox.height):-1!==a.title.position.indexOf("bottom")&&(o.y+=(1+i)*t.r);var l,c,u=(l=t.r,c=t.trace.aspectratio,l/(void 0===c?1:c)),f=e.w*(a.domain.x[1]-a.domain.x[0])/2;return-1!==a.title.position.indexOf("left")?(f+=u,o.x-=(1+i)*u,s.tx+=t.titleBox.width/2):-1!==a.title.position.indexOf("center")?f*=2:-1!==a.title.position.indexOf("right")&&(f+=u,o.x+=(1+i)*u,s.tx-=t.titleBox.width/2),r=f/t.titleBox.width,n=P(t,e)/t.titleBox.height,{x:o.x,y:o.y,scale:Math.min(r,n),tx:s.tx,ty:s.ty}}function P(t,e){var r=t.trace,n=e.h*(r.domain.y[1]-r.domain.y[0]);return Math.min(t.titleBox.height,n/2)}function I(t){var e,r=t.pull;if(!r)return 0;if(Array.isArray(r))for(r=0,e=0;er&&(r=t.pull[e]);return r}function O(t,e){for(var r=[],n=0;n1?(c=r.r,u=c/i.aspectratio):(u=r.r,c=u*i.aspectratio),c*=(1+i.baseratio)/2,l=c*u}o=Math.min(o,l/r.vTotal)}for(n=0;n")}if(a){var x=l.castOption(i,e.i,"texttemplate");if(x){var b=function(t){return{label:t.label,value:t.v,valueLabel:g.formatPieValue(t.v,n.separators),percent:t.v/r.vTotal,percentLabel:g.formatPiePercent(t.v/r.vTotal,n.separators),color:t.color,text:t.text,customdata:l.castOption(i,t.i,"customdata")}}(e),_=g.getFirstFilled(i.text,e.pts);(y(_)||""===_)&&(b.text=_),e.text=l.texttemplateString(x,b,t._fullLayout._d3locale,b,i._meta||{})}else e.text=""}}function R(t,e){var r=t.rotate*Math.PI/180,n=Math.cos(r),i=Math.sin(r),a=(e.left+e.right)/2,o=(e.top+e.bottom)/2;t.textX=a*n-o*i,t.textY=a*i+o*n,t.noCenter=!0}e.exports={plot:function(t,e){var r=t._fullLayout,a=r._size;d("pie",r),_(e,t),O(e,a);var h=l.makeTraceGroups(r._pielayer,e,"trace").each((function(e){var h=n.select(this),d=e[0],m=d.trace;!function(t){var e,r,n,i=t[0],a=i.r,o=i.trace,s=g.getRotationAngle(o.rotation),l=2*Math.PI/i.vTotal,c="px0",u="px1";if("counterclockwise"===o.direction){for(e=0;ei.vTotal/2?1:0,r.halfangle=Math.PI*Math.min(r.v/i.vTotal,.5),r.ring=1-o.hole,r.rInscribed=E(r,i))}(e),h.attr("stroke-linejoin","round"),h.each((function(){var v=n.select(this).selectAll("g.slice").data(e);v.enter().append("g").classed("slice",!0),v.exit().remove();var y=[[[],[]],[[],[]]],_=!1;v.each((function(i,a){if(i.hidden)n.select(this).selectAll("path,g").remove();else{i.pointNumber=i.i,i.curveNumber=m.index,y[i.pxmid[1]<0?0:1][i.pxmid[0]<0?0:1].push(i);var o=d.cx,c=d.cy,u=n.select(this),h=u.selectAll("path.surface").data([i]);if(h.enter().append("path").classed("surface",!0).style({"pointer-events":"all"}),u.call(x,t,e),m.pull){var v=+g.castOption(m.pull,i.pts)||0;v>0&&(o+=v*i.pxmid[0],c+=v*i.pxmid[1])}i.cxFinal=o,i.cyFinal=c;var T=m.hole;if(i.v===d.vTotal){var k="M"+(o+i.px0[0])+","+(c+i.px0[1])+C(i.px0,i.pxmid,!0,1)+C(i.pxmid,i.px0,!0,1)+"Z";T?h.attr("d","M"+(o+T*i.px0[0])+","+(c+T*i.px0[1])+C(i.px0,i.pxmid,!1,T)+C(i.pxmid,i.px0,!1,T)+"Z"+k):h.attr("d",k)}else{var A=C(i.px0,i.px1,!0,1);if(T){var M=1-T;h.attr("d","M"+(o+T*i.px1[0])+","+(c+T*i.px1[1])+C(i.px1,i.px0,!1,T)+"l"+M*i.px0[0]+","+M*i.px0[1]+A+"Z")}else h.attr("d","M"+o+","+c+"l"+i.px0[0]+","+i.px0[1]+A+"Z")}D(t,i,d);var S=g.castOption(m.textposition,i.pts),E=u.selectAll("g.slicetext").data(i.text&&"none"!==S?[0]:[]);E.enter().append("g").classed("slicetext",!0),E.exit().remove(),E.each((function(){var u=l.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),h=l.ensureUniformFontSize(t,"outside"===S?function(t,e,r){var n=g.castOption(t.outsidetextfont.color,e.pts)||g.castOption(t.textfont.color,e.pts)||r.color,i=g.castOption(t.outsidetextfont.family,e.pts)||g.castOption(t.textfont.family,e.pts)||r.family,a=g.castOption(t.outsidetextfont.size,e.pts)||g.castOption(t.textfont.size,e.pts)||r.size;return{color:n,family:i,size:a}}(m,i,r.font):b(m,i,r.font));u.text(i.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(s.font,h).call(f.convertToTspans,t);var v,y=s.bBox(u.node());if("outside"===S)v=L(y,i);else if(v=w(y,i,d),"auto"===S&&v.scale<1){var x=l.ensureUniformFontSize(t,m.outsidetextfont);u.call(s.font,x),v=L(y=s.bBox(u.node()),i)}var T=v.textPosAngle,k=void 0===T?i.pxmid:z(d.r,T);if(v.targetX=o+k[0]*v.rCenter+(v.x||0),v.targetY=c+k[1]*v.rCenter+(v.y||0),R(v,y),v.outside){var A=v.targetY;i.yLabelMin=A-y.height/2,i.yLabelMid=A,i.yLabelMax=A+y.height/2,i.labelExtraX=0,i.labelExtraY=0,_=!0}v.fontSize=h.size,p(m.type,v,r),e[a].transform=v,u.attr("transform",l.getTextTransform(v))}))}function C(t,e,r,n){var a=n*(e[0]-t[0]),o=n*(e[1]-t[1]);return"a"+n*d.r+","+n*d.r+" 0 "+i.largeArc+(r?" 1 ":" 0 ")+a+","+o}}));var T=n.select(this).selectAll("g.titletext").data(m.title.text?[0]:[]);if(T.enter().append("g").classed("titletext",!0),T.exit().remove(),T.each((function(){var e,r=l.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),i=m.title.text;m._meta&&(i=l.templateString(i,m._meta)),r.text(i).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(s.font,m.title.font).call(f.convertToTspans,t),e="middle center"===m.title.position?function(t){var e=Math.sqrt(t.titleBox.width*t.titleBox.width+t.titleBox.height*t.titleBox.height);return{x:t.cx,y:t.cy,scale:t.trace.hole*t.r*2/e,tx:0,ty:-t.titleBox.height/2+t.trace.title.font.size}}(d):C(d,a),r.attr("transform",u(e.x,e.y)+c(Math.min(1,e.scale))+u(e.tx,e.ty))})),_&&function(t,e){var r,n,i,a,o,s,l,c,u,f,h,p,d;function m(t,e){return t.pxmid[1]-e.pxmid[1]}function v(t,e){return e.pxmid[1]-t.pxmid[1]}function y(t,r){r||(r={});var i,c,u,h,p=r.labelExtraY+(n?r.yLabelMax:r.yLabelMin),d=n?t.yLabelMin:t.yLabelMax,m=n?t.yLabelMax:t.yLabelMin,v=t.cyFinal+o(t.px0[1],t.px1[1]),y=p-d;if(y*l>0&&(t.labelExtraY=y),Array.isArray(e.pull))for(c=0;c=(g.castOption(e.pull,u.pts)||0)||((t.pxmid[1]-u.pxmid[1])*l>0?(y=u.cyFinal+o(u.px0[1],u.px1[1])-d-t.labelExtraY)*l>0&&(t.labelExtraY+=y):(m+t.labelExtraY-v)*l>0&&(i=3*s*Math.abs(c-f.indexOf(t)),(h=u.cxFinal+a(u.px0[0],u.px1[0])+i-(t.cxFinal+t.pxmid[0])-t.labelExtraX)*s>0&&(t.labelExtraX+=h)))}for(n=0;n<2;n++)for(i=n?m:v,o=n?Math.max:Math.min,l=n?1:-1,r=0;r<2;r++){for(a=r?Math.max:Math.min,s=r?1:-1,(c=t[n][r]).sort(i),u=t[1-n][r],f=u.concat(c),p=[],h=0;hMath.abs(f)?s+="l"+f*t.pxmid[0]/t.pxmid[1]+","+f+"H"+(a+t.labelExtraX+c):s+="l"+t.labelExtraX+","+u+"v"+(f-u)+"h"+c}else s+="V"+(t.yLabelMid+t.labelExtraY)+"h"+c;l.ensureSingle(r,"path","textline").call(o.stroke,e.outsidetextfont.color).attr({"stroke-width":Math.min(2,e.outsidetextfont.size/8),d:s,fill:"none"})}else r.select("path.textline").remove()}))}(v,m),_&&m.automargin){var k=s.bBox(h.node()),A=m.domain,M=a.w*(A.x[1]-A.x[0]),S=a.h*(A.y[1]-A.y[0]),E=(.5*M-d.r)/a.w,P=(.5*S-d.r)/a.h;i.autoMargin(t,"pie."+m.uid+".automargin",{xl:A.x[0]-E,xr:A.x[1]+E,yb:A.y[0]-P,yt:A.y[1]+P,l:Math.max(d.cx-d.r-k.left,0),r:Math.max(k.right-(d.cx+d.r),0),b:Math.max(k.bottom-(d.cy+d.r),0),t:Math.max(d.cy-d.r-k.top,0),pad:5})}}))}));setTimeout((function(){h.selectAll("tspan").each((function(){var t=n.select(this);t.attr("dy")&&t.attr("dy",t.attr("dy"))}))}),0)},formatSliceLabel:D,transformInsideText:w,determineInsideTextFont:b,positionTitleOutside:C,prerenderTitles:_,layoutAreas:O,attachFxHandlers:x,computeTransform:R}},{"../../components/color":639,"../../components/drawing":661,"../../components/fx":679,"../../lib":776,"../../lib/svg_text_utils":802,"../../plots/plots":890,"../bar/constants":916,"../bar/uniform_text":930,"./event_data":1169,"./helpers":1170,"@plotly/d3":58}],1175:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("./style_one"),a=t("../bar/uniform_text").resizeText;e.exports=function(t){var e=t._fullLayout._pielayer.selectAll(".trace");a(t,e,"pie"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll("path.surface").each((function(t){n.select(this).call(i,t,e)}))}))}},{"../bar/uniform_text":930,"./style_one":1176,"@plotly/d3":58}],1176:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("./helpers").castOption;e.exports=function(t,e,r){var a=r.marker.line,o=i(a.color,e.pts)||n.defaultLine,s=i(a.width,e.pts)||0;t.style("stroke-width",s).call(n.fill,e.color).call(n.stroke,o)}},{"../../components/color":639,"./helpers":1170}],1177:[function(t,e,r){"use strict";var n=t("../scatter/attributes");e.exports={x:n.x,y:n.y,xy:{valType:"data_array",editType:"calc"},indices:{valType:"data_array",editType:"calc"},xbounds:{valType:"data_array",editType:"calc"},ybounds:{valType:"data_array",editType:"calc"},text:n.text,marker:{color:{valType:"color",arrayOk:!1,editType:"calc"},opacity:{valType:"number",min:0,max:1,dflt:1,arrayOk:!1,editType:"calc"},blend:{valType:"boolean",dflt:null,editType:"calc"},sizemin:{valType:"number",min:.1,max:2,dflt:.5,editType:"calc"},sizemax:{valType:"number",min:.1,dflt:20,editType:"calc"},border:{color:{valType:"color",arrayOk:!1,editType:"calc"},arearatio:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},editType:"calc"},editType:"calc"},transforms:void 0}},{"../scatter/attributes":1191}],1178:[function(t,e,r){"use strict";var n=t("gl-pointcloud2d"),i=t("../../lib/str2rgbarray"),a=t("../../plots/cartesian/autorange").findExtremes,o=t("../scatter/get_trace_color");function s(t,e){this.scene=t,this.uid=e,this.type="pointcloud",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color="rgb(0, 0, 0)",this.name="",this.hoverinfo="all",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=n(t.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*e],this.pickXYData[2*e+1]]:[this.pickXData[e],this.pickYData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:this.color,name:this.name,pointIndex:e,hoverinfo:this.hoverinfo}},l.update=function(t){this.index=t.index,this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(t),this.color=o(t,{})},l.updateFast=function(t){var e,r,n,o,s,l,c=this.xData=this.pickXData=t.x,u=this.yData=this.pickYData=t.y,f=this.pickXYData=t.xy,h=t.xbounds&&t.ybounds,p=t.indices,d=this.bounds;if(f){if(n=f,e=f.length>>>1,h)d[0]=t.xbounds[0],d[2]=t.xbounds[1],d[1]=t.ybounds[0],d[3]=t.ybounds[1];else for(l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);if(p)r=p;else for(r=new Int32Array(e),l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);this.idToIndex=r,this.pointcloudOptions.idToIndex=r,this.pointcloudOptions.positions=n;var m=i(t.marker.color),g=i(t.marker.border.color),v=t.opacity*t.marker.opacity;m[3]*=v,this.pointcloudOptions.color=m;var y=t.marker.blend;if(null===y){y=c.length<100||u.length<100}this.pointcloudOptions.blend=y,g[3]*=v,this.pointcloudOptions.borderColor=g;var x=t.marker.sizemin,b=Math.max(t.marker.sizemax,t.marker.sizemin);this.pointcloudOptions.sizeMin=x,this.pointcloudOptions.sizeMax=b,this.pointcloudOptions.areaRatio=t.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var _=this.scene.xaxis,w=this.scene.yaxis,T=b/2||.5;t._extremes[_._id]=a(_,[d[0],d[2]],{ppad:T}),t._extremes[w._id]=a(w,[d[1],d[3]],{ppad:T})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(t,e){var r=new s(t,e.uid);return r.update(e),r}},{"../../lib/str2rgbarray":801,"../../plots/cartesian/autorange":826,"../scatter/get_trace_color":1201,"gl-pointcloud2d":314}],1179:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes");e.exports=function(t,e,r){function a(r,a){return n.coerce(t,e,i,r,a)}a("x"),a("y"),a("xbounds"),a("ybounds"),t.xy&&t.xy instanceof Float32Array&&(e.xy=t.xy),t.indices&&t.indices instanceof Int32Array&&(e.indices=t.indices),a("text"),a("marker.color",r),a("marker.opacity"),a("marker.blend"),a("marker.sizemin"),a("marker.sizemax"),a("marker.border.color",r),a("marker.border.arearatio"),e._length=null}},{"../../lib":776,"./attributes":1177}],1180:[function(t,e,r){"use strict";["*pointcloud* trace is deprecated!","Please consider switching to the *scattergl* trace type."].join(" ");e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("../scatter3d/calc"),plot:t("./convert"),moduleType:"trace",name:"pointcloud",basePlotModule:t("../../plots/gl2d"),categories:["gl","gl2d","showLegend"],meta:{}}},{"../../plots/gl2d":867,"../scatter3d/calc":1220,"./attributes":1177,"./convert":1178,"./defaults":1179}],1181:[function(t,e,r){"use strict";var n=t("../../plots/font_attributes"),i=t("../../plots/attributes"),a=t("../../components/color/attributes"),o=t("../../components/fx/attributes"),s=t("../../plots/domain").attributes,l=t("../../plots/template_attributes").hovertemplateAttrs,c=t("../../components/colorscale/attributes"),u=t("../../plot_api/plot_template").templatedArray,f=t("../../plots/cartesian/axis_format_attributes").descriptionOnlyNumbers,h=t("../../lib/extend").extendFlat,p=t("../../plot_api/edit_types").overrideAll;(e.exports=p({hoverinfo:h({},i.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:"sankey",trace:!0}),orientation:{valType:"enumerated",values:["v","h"],dflt:"h"},valueformat:{valType:"string",dflt:".3s",description:f("value")},valuesuffix:{valType:"string",dflt:""},arrangement:{valType:"enumerated",values:["snap","perpendicular","freeform","fixed"],dflt:"snap"},textfont:n({}),customdata:void 0,node:{label:{valType:"data_array",dflt:[]},groups:{valType:"info_array",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:"number",editType:"calc"}},x:{valType:"data_array",dflt:[]},y:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:.5,arrayOk:!0}},pad:{valType:"number",arrayOk:!1,min:0,dflt:20},thickness:{valType:"number",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]})},link:{label:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:0,arrayOk:!0}},source:{valType:"data_array",dflt:[]},target:{valType:"data_array",dflt:[]},value:{valType:"data_array",dflt:[]},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]}),colorscales:u("concentrationscales",{editType:"calc",label:{valType:"string",editType:"calc",dflt:""},cmax:{valType:"number",editType:"calc",dflt:1},cmin:{valType:"number",editType:"calc",dflt:0},colorscale:h(c().colorscale,{dflt:[[0,"white"],[1,"black"]]})})}},"calc","nested")).transforms=void 0},{"../../components/color/attributes":638,"../../components/colorscale/attributes":646,"../../components/fx/attributes":670,"../../lib/extend":766,"../../plot_api/edit_types":809,"../../plot_api/plot_template":816,"../../plots/attributes":823,"../../plots/cartesian/axis_format_attributes":830,"../../plots/domain":855,"../../plots/font_attributes":856,"../../plots/template_attributes":899}],1182:[function(t,e,r){"use strict";var n=t("../../plot_api/edit_types").overrideAll,i=t("../../plots/get_data").getModuleCalcData,a=t("./plot"),o=t("../../components/fx/layout_attributes"),s=t("../../lib/setcursor"),l=t("../../components/dragelement"),c=t("../../plots/cartesian/select").prepSelect,u=t("../../lib"),f=t("../../registry");function h(t,e){var r=t._fullData[e],n=t._fullLayout,i=n.dragmode,a="pan"===n.dragmode?"move":"crosshair",o=r._bgRect;if("pan"!==i&&"zoom"!==i){s(o,a);var h={_id:"x",c2p:u.identity,_offset:r._sankey.translateX,_length:r._sankey.width},p={_id:"y",c2p:u.identity,_offset:r._sankey.translateY,_length:r._sankey.height},d={gd:t,element:o.node(),plotinfo:{id:e,xaxis:h,yaxis:p,fillRangeItems:u.noop},subplot:e,xaxes:[h],yaxes:[p],doneFnCompleted:function(r){var n,i=t._fullData[e],a=i.node.groups.slice(),o=[];function s(t){for(var e=i._sankey.graph.nodes,r=0;ry&&(y=a.source[e]),a.target[e]>y&&(y=a.target[e]);var x,b=y+1;t.node._count=b;var _=t.node.groups,w={};for(e=0;e<_.length;e++){var T=_[e];for(x=0;x0&&s(E,b)&&s(L,b)&&(!w.hasOwnProperty(E)||!w.hasOwnProperty(L)||w[E]!==w[L])){w.hasOwnProperty(L)&&(L=w[L]),w.hasOwnProperty(E)&&(E=w[E]),L=+L,h[E=+E]=h[L]=!0;var C="";a.label&&a.label[e]&&(C=a.label[e]);var P=null;C&&p.hasOwnProperty(C)&&(P=p[C]),c.push({pointNumber:e,label:C,color:u?a.color[e]:a.color,customdata:f?a.customdata[e]:a.customdata,concentrationscale:P,source:E,target:L,value:+S}),M.source.push(E),M.target.push(L)}}var I=b+_.length,O=o(r.color),z=o(r.customdata),D=[];for(e=0;eb-1,childrenNodes:[],pointNumber:e,label:R,color:O?r.color[e]:r.color,customdata:z?r.customdata[e]:r.customdata})}var F=!1;return function(t,e,r){for(var a=i.init2dArray(t,0),o=0;o1}))}(I,M.source,M.target)&&(F=!0),{circular:F,links:c,nodes:D,groups:_,groupLookup:w}}e.exports=function(t,e){var r=c(e);return a({circular:r.circular,_nodes:r.nodes,_links:r.links,_groups:r.groups,_groupLookup:r.groupLookup})}},{"../../components/colorscale":651,"../../lib":776,"../../lib/gup":773,"strongly-connected-components":564}],1184:[function(t,e,r){"use strict";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:"linear",cn:{sankey:"sankey",sankeyLinks:"sankey-links",sankeyLink:"sankey-link",sankeyNodeSet:"sankey-node-set",sankeyNode:"sankey-node",nodeRect:"node-rect",nodeLabel:"node-label"}}},{}],1185:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../components/color"),o=t("tinycolor2"),s=t("../../plots/domain").defaults,l=t("../../components/fx/hoverlabel_defaults"),c=t("../../plot_api/plot_template"),u=t("../../plots/array_container_defaults");function f(t,e){function r(r,a){return n.coerce(t,e,i.link.colorscales,r,a)}r("label"),r("cmin"),r("cmax"),r("colorscale")}e.exports=function(t,e,r,h){function p(r,a){return n.coerce(t,e,i,r,a)}var d=n.extendDeep(h.hoverlabel,t.hoverlabel),m=t.node,g=c.newContainer(e,"node");function v(t,e){return n.coerce(m,g,i.node,t,e)}v("label"),v("groups"),v("x"),v("y"),v("pad"),v("thickness"),v("line.color"),v("line.width"),v("hoverinfo",t.hoverinfo),l(m,g,v,d),v("hovertemplate");var y=h.colorway;v("color",g.label.map((function(t,e){return a.addOpacity(function(t){return y[t%y.length]}(e),.8)}))),v("customdata");var x=t.link||{},b=c.newContainer(e,"link");function _(t,e){return n.coerce(x,b,i.link,t,e)}_("label"),_("source"),_("target"),_("value"),_("line.color"),_("line.width"),_("hoverinfo",t.hoverinfo),l(x,b,_,d),_("hovertemplate");var w,T=o(h.paper_bgcolor).getLuminance()<.333?"rgba(255, 255, 255, 0.6)":"rgba(0, 0, 0, 0.2)";_("color",n.repeat(T,b.value.length)),_("customdata"),u(x,b,{name:"colorscales",handleItemDefaults:f}),s(e,h,p),p("orientation"),p("valueformat"),p("valuesuffix"),g.x.length&&g.y.length&&(w="freeform"),p("arrangement",w),n.coerceFont(p,"textfont",n.extendFlat({},h.font)),e._length=null}},{"../../components/color":639,"../../components/fx/hoverlabel_defaults":677,"../../lib":776,"../../plot_api/plot_template":816,"../../plots/array_container_defaults":822,"../../plots/domain":855,"./attributes":1181,tinycolor2:572}],1186:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),moduleType:"trace",name:"sankey",basePlotModule:t("./base_plot"),selectPoints:t("./select.js"),categories:["noOpacity"],meta:{}}},{"./attributes":1181,"./base_plot":1182,"./calc":1183,"./defaults":1185,"./plot":1187,"./select.js":1189}],1187:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=i.numberFormat,o=t("./render"),s=t("../../components/fx"),l=t("../../components/color"),c=t("./constants").cn,u=i._;function f(t){return""!==t}function h(t,e){return t.filter((function(t){return t.key===e.traceId}))}function p(t,e){n.select(t).select("path").style("fill-opacity",e),n.select(t).select("rect").style("fill-opacity",e)}function d(t){n.select(t).select("text.name").style("fill","black")}function m(t){return function(e){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(t){return function(e){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function v(t,e,r){e&&r&&h(r,e).selectAll("."+c.sankeyLink).filter(m(e)).call(x.bind(0,e,r,!1))}function y(t,e,r){e&&r&&h(r,e).selectAll("."+c.sankeyLink).filter(m(e)).call(b.bind(0,e,r,!1))}function x(t,e,r,n){var i=n.datum().link.label;n.style("fill-opacity",(function(t){if(!t.link.concentrationscale)return.4})),i&&h(e,t).selectAll("."+c.sankeyLink).filter((function(t){return t.link.label===i})).style("fill-opacity",(function(t){if(!t.link.concentrationscale)return.4})),r&&h(e,t).selectAll("."+c.sankeyNode).filter(g(t)).call(v)}function b(t,e,r,n){var i=n.datum().link.label;n.style("fill-opacity",(function(t){return t.tinyColorAlpha})),i&&h(e,t).selectAll("."+c.sankeyLink).filter((function(t){return t.link.label===i})).style("fill-opacity",(function(t){return t.tinyColorAlpha})),r&&h(e,t).selectAll(c.sankeyNode).filter(g(t)).call(y)}function _(t,e){var r=t.hoverlabel||{},n=i.nestedProperty(r,e).get();return!Array.isArray(n)&&n}e.exports=function(t,e){for(var r=t._fullLayout,i=r._paper,h=r._size,m=0;m"),color:_(o,"bgcolor")||l.addOpacity(m.color,1),borderColor:_(o,"bordercolor"),fontFamily:_(o,"font.family"),fontSize:_(o,"font.size"),fontColor:_(o,"font.color"),nameLength:_(o,"namelength"),textAlign:_(o,"align"),idealAlign:n.event.x"),color:_(o,"bgcolor")||i.tinyColorHue,borderColor:_(o,"bordercolor"),fontFamily:_(o,"font.family"),fontSize:_(o,"font.size"),fontColor:_(o,"font.color"),nameLength:_(o,"namelength"),textAlign:_(o,"align"),idealAlign:"left",hovertemplate:o.hovertemplate,hovertemplateLabels:y,eventData:[i.node]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t});p(w,.85),d(w)}}},unhover:function(e,i,a){!1!==t._fullLayout.hovermode&&(n.select(e).call(y,i,a),"skip"!==i.node.trace.node.hoverinfo&&(i.node.fullData=i.node.trace,t.emit("plotly_unhover",{event:n.event,points:[i.node]})),s.loneUnhover(r._hoverlayer.node()))},select:function(e,r,i){var a=r.node;a.originalEvent=n.event,t._hoverdata=[a],n.select(e).call(y,r,i),s.click(t,{target:!0})}}})}},{"../../components/color":639,"../../components/fx":679,"../../lib":776,"./constants":1184,"./render":1188,"@plotly/d3":58}],1188:[function(t,e,r){"use strict";var n=t("d3-force"),i=t("d3-interpolate").interpolateNumber,a=t("@plotly/d3"),o=t("@plotly/d3-sankey"),s=t("@plotly/d3-sankey-circular"),l=t("./constants"),c=t("tinycolor2"),u=t("../../components/color"),f=t("../../components/drawing"),h=t("../../lib"),p=h.strTranslate,d=h.strRotate,m=t("../../lib/gup"),g=m.keyFun,v=m.repeat,y=m.unwrap,x=t("../../lib/svg_text_utils"),b=t("../../registry"),_=t("../../constants/alignment"),w=_.CAP_SHIFT,T=_.LINE_SPACING;function k(t,e,r){var n,i=y(e),a=i.trace,u=a.domain,f="h"===a.orientation,p=a.node.pad,d=a.node.thickness,m=t.width*(u.x[1]-u.x[0]),g=t.height*(u.y[1]-u.y[0]),v=i._nodes,x=i._links,b=i.circular;(n=b?s.sankeyCircular().circularLinkGap(0):o.sankey()).iterations(l.sankeyIterations).size(f?[m,g]:[g,m]).nodeWidth(d).nodePadding(p).nodeId((function(t){return t.pointNumber})).nodes(v).links(x);var _,w,T,k=n();for(var A in n.nodePadding()=i||(r=i-e.y0)>1e-6&&(e.y0+=r,e.y1+=r),i=e.y1+p}))}(function(t){var e,r,n=t.map((function(t,e){return{x0:t.x0,index:e}})).sort((function(t,e){return t.x0-e.x0})),i=[],a=-1,o=-1/0;for(_=0;_o+d&&(a+=1,e=s.x0),o=s.x0,i[a]||(i[a]=[]),i[a].push(s),r=e-s.x0,s.x0+=r,s.x1+=r}return i}(v=k.nodes));n.update(k)}return{circular:b,key:r,trace:a,guid:h.randstr(),horizontal:f,width:m,height:g,nodePad:a.node.pad,nodeLineColor:a.node.line.color,nodeLineWidth:a.node.line.width,linkLineColor:a.link.line.color,linkLineWidth:a.link.line.width,valueFormat:a.valueformat,valueSuffix:a.valuesuffix,textFont:a.textfont,translateX:u.x[0]*t.width+t.margin.l,translateY:t.height-u.y[1]*t.height+t.margin.t,dragParallel:f?g:m,dragPerpendicular:f?m:g,arrangement:a.arrangement,sankey:n,graph:k,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}function A(t,e,r){var n=c(e.color),i=e.source.label+"|"+e.target.label+"__"+r;return e.trace=t.trace,e.curveNumber=t.trace.index,{circular:t.circular,key:i,traceId:t.key,pointNumber:e.pointNumber,link:e,tinyColorHue:u.tinyRGB(n),tinyColorAlpha:n.getAlpha(),linkPath:M,linkLineColor:t.linkLineColor,linkLineWidth:t.linkLineWidth,valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,parent:t,interactionState:t.interactionState,flow:e.flow}}function M(){return function(t){if(t.link.circular)return e=t.link,r=e.width/2,n=e.circularPathData,"top"===e.circularLinkType?"M "+n.targetX+" "+(n.targetY+r)+" L"+n.rightInnerExtent+" "+(n.targetY+r)+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightSmallArcRadius+r)+" 0 0 1 "+(n.rightFullExtent-r)+" "+(n.targetY-n.rightSmallArcRadius)+"L"+(n.rightFullExtent-r)+" "+n.verticalRightInnerExtent+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightLargeArcRadius+r)+" 0 0 1 "+n.rightInnerExtent+" "+(n.verticalFullExtent-r)+"L"+n.leftInnerExtent+" "+(n.verticalFullExtent-r)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftLargeArcRadius+r)+" 0 0 1 "+(n.leftFullExtent+r)+" "+n.verticalLeftInnerExtent+"L"+(n.leftFullExtent+r)+" "+(n.sourceY-n.leftSmallArcRadius)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftSmallArcRadius+r)+" 0 0 1 "+n.leftInnerExtent+" "+(n.sourceY+r)+"L"+n.sourceX+" "+(n.sourceY+r)+"L"+n.sourceX+" "+(n.sourceY-r)+"L"+n.leftInnerExtent+" "+(n.sourceY-r)+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftSmallArcRadius-r)+" 0 0 0 "+(n.leftFullExtent-r)+" "+(n.sourceY-n.leftSmallArcRadius)+"L"+(n.leftFullExtent-r)+" "+n.verticalLeftInnerExtent+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftLargeArcRadius-r)+" 0 0 0 "+n.leftInnerExtent+" "+(n.verticalFullExtent+r)+"L"+n.rightInnerExtent+" "+(n.verticalFullExtent+r)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightLargeArcRadius-r)+" 0 0 0 "+(n.rightFullExtent+r)+" "+n.verticalRightInnerExtent+"L"+(n.rightFullExtent+r)+" "+(n.targetY-n.rightSmallArcRadius)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightSmallArcRadius-r)+" 0 0 0 "+n.rightInnerExtent+" "+(n.targetY-r)+"L"+n.targetX+" "+(n.targetY-r)+"Z":"M "+n.targetX+" "+(n.targetY-r)+" L"+n.rightInnerExtent+" "+(n.targetY-r)+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightSmallArcRadius+r)+" 0 0 0 "+(n.rightFullExtent-r)+" "+(n.targetY+n.rightSmallArcRadius)+"L"+(n.rightFullExtent-r)+" "+n.verticalRightInnerExtent+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightLargeArcRadius+r)+" 0 0 0 "+n.rightInnerExtent+" "+(n.verticalFullExtent+r)+"L"+n.leftInnerExtent+" "+(n.verticalFullExtent+r)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftLargeArcRadius+r)+" 0 0 0 "+(n.leftFullExtent+r)+" "+n.verticalLeftInnerExtent+"L"+(n.leftFullExtent+r)+" "+(n.sourceY+n.leftSmallArcRadius)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftSmallArcRadius+r)+" 0 0 0 "+n.leftInnerExtent+" "+(n.sourceY-r)+"L"+n.sourceX+" "+(n.sourceY-r)+"L"+n.sourceX+" "+(n.sourceY+r)+"L"+n.leftInnerExtent+" "+(n.sourceY+r)+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftSmallArcRadius-r)+" 0 0 1 "+(n.leftFullExtent-r)+" "+(n.sourceY+n.leftSmallArcRadius)+"L"+(n.leftFullExtent-r)+" "+n.verticalLeftInnerExtent+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftLargeArcRadius-r)+" 0 0 1 "+n.leftInnerExtent+" "+(n.verticalFullExtent-r)+"L"+n.rightInnerExtent+" "+(n.verticalFullExtent-r)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightLargeArcRadius-r)+" 0 0 1 "+(n.rightFullExtent+r)+" "+n.verticalRightInnerExtent+"L"+(n.rightFullExtent+r)+" "+(n.targetY+n.rightSmallArcRadius)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightSmallArcRadius-r)+" 0 0 1 "+n.rightInnerExtent+" "+(n.targetY+r)+"L"+n.targetX+" "+(n.targetY+r)+"Z";var e,r,n,a=t.link.source.x1,o=t.link.target.x0,s=i(a,o),l=s(.5),c=s(.5),u=t.link.y0-t.link.width/2,f=t.link.y0+t.link.width/2,h=t.link.y1-t.link.width/2,p=t.link.y1+t.link.width/2;return"M"+a+","+u+"C"+l+","+u+" "+c+","+h+" "+o+","+h+"L"+o+","+p+"C"+c+","+p+" "+l+","+f+" "+a+","+f+"Z"}}function S(t,e){var r=c(e.color),n=l.nodePadAcross,i=t.nodePad/2;e.dx=e.x1-e.x0,e.dy=e.y1-e.y0;var a=e.dx,o=Math.max(.5,e.dy),s="node_"+e.pointNumber;return e.group&&(s=h.randstr()),e.trace=t.trace,e.curveNumber=t.trace.index,{index:e.pointNumber,key:s,partOfGroup:e.partOfGroup||!1,group:e.group,traceId:t.key,trace:t.trace,node:e,nodePad:t.nodePad,nodeLineColor:t.nodeLineColor,nodeLineWidth:t.nodeLineWidth,textFont:t.textFont,size:t.horizontal?t.height:t.width,visibleWidth:Math.ceil(a),visibleHeight:o,zoneX:-n,zoneY:-i,zoneWidth:a+2*n,zoneHeight:o+2*i,labelY:t.horizontal?e.dy/2+1:e.dx/2+1,left:1===e.originalLayer,sizeAcross:t.width,forceLayouts:t.forceLayouts,horizontal:t.horizontal,darkBackground:r.getBrightness()<=128,tinyColorHue:u.tinyRGB(r),tinyColorAlpha:r.getAlpha(),valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,graph:t.graph,arrangement:t.arrangement,uniqueNodeLabelPathId:[t.guid,t.key,s].join("_"),interactionState:t.interactionState,figure:t}}function E(t){t.attr("transform",(function(t){return p(t.node.x0.toFixed(3),t.node.y0.toFixed(3))}))}function L(t){t.call(E)}function C(t,e){t.call(L),e.attr("d",M())}function P(t){t.attr("width",(function(t){return t.node.x1-t.node.x0})).attr("height",(function(t){return t.visibleHeight}))}function I(t){return t.link.width>1||t.linkLineWidth>0}function O(t){return p(t.translateX,t.translateY)+(t.horizontal?"matrix(1 0 0 1 0 0)":"matrix(0 1 1 0 0 0)")}function z(t,e,r){t.on(".basic",null).on("mouseover.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.hover(this,t,e),t.interactionState.hovered=[this,t])})).on("mousemove.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.follow(this,t),t.interactionState.hovered=[this,t])})).on("mouseout.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.unhover(this,t,e),t.interactionState.hovered=!1)})).on("click.basic",(function(t){t.interactionState.hovered&&(r.unhover(this,t,e),t.interactionState.hovered=!1),t.interactionState.dragInProgress||t.partOfGroup||r.select(this,t,e)}))}function D(t,e,r,i){var o=a.behavior.drag().origin((function(t){return{x:t.node.x0+t.visibleWidth/2,y:t.node.y0+t.visibleHeight/2}})).on("dragstart",(function(a){if("fixed"!==a.arrangement&&(h.ensureSingle(i._fullLayout._infolayer,"g","dragcover",(function(t){i._fullLayout._dragCover=t})),h.raiseToTop(this),a.interactionState.dragInProgress=a.node,F(a.node),a.interactionState.hovered&&(r.nodeEvents.unhover.apply(0,a.interactionState.hovered),a.interactionState.hovered=!1),"snap"===a.arrangement)){var o=a.traceId+"|"+a.key;a.forceLayouts[o]?a.forceLayouts[o].alpha(1):function(t,e,r,i){!function(t){for(var e=0;e0&&n.forceLayouts[e].alpha(0)}}(0,e,a,r)).stop()}(0,o,a),function(t,e,r,n,i){window.requestAnimationFrame((function a(){var o;for(o=0;o0)window.requestAnimationFrame(a);else{var s=r.node.originalX;r.node.x0=s-r.visibleWidth/2,r.node.x1=s+r.visibleWidth/2,R(r,i)}}))}(t,e,a,o,i)}})).on("drag",(function(r){if("fixed"!==r.arrangement){var n=a.event.x,i=a.event.y;"snap"===r.arrangement?(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2,r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2):("freeform"===r.arrangement&&(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2),i=Math.max(0,Math.min(r.size-r.visibleHeight/2,i)),r.node.y0=i-r.visibleHeight/2,r.node.y1=i+r.visibleHeight/2),F(r.node),"snap"!==r.arrangement&&(r.sankey.update(r.graph),C(t.filter(B(r)),e))}})).on("dragend",(function(t){if("fixed"!==t.arrangement){t.interactionState.dragInProgress=!1;for(var e=0;el&&C[v].gap;)v--;for(x=C[v].s,m=C.length-1;m>v;m--)C[m].s=x;for(;lM[u]&&u=0;i--){var a=t[i];if("scatter"===a.type&&a.xaxis===r.xaxis&&a.yaxis===r.yaxis){a.opacity=void 0;break}}}}}},{}],1198:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./attributes"),o=t("./constants"),s=t("./subtypes"),l=t("./xy_defaults"),c=t("./period_defaults"),u=t("./stack_defaults"),f=t("./marker_defaults"),h=t("./line_defaults"),p=t("./line_shape_defaults"),d=t("./text_defaults"),m=t("./fillcolor_defaults");e.exports=function(t,e,r,g){function v(r,i){return n.coerce(t,e,a,r,i)}var y=l(t,e,g,v);if(y||(e.visible=!1),e.visible){c(t,e,g,v),v("xhoverformat"),v("yhoverformat");var x=u(t,e,g,v),b=!x&&y=Math.min(e,r)&&d<=Math.max(e,r)?0:1/0}var n=Math.max(3,t.mrc||0),i=1-1/n,a=Math.abs(h.c2p(t.x)-d);return a=Math.min(e,r)&&m<=Math.max(e,r)?0:1/0}var n=Math.max(3,t.mrc||0),i=1-1/n,a=Math.abs(p.c2p(t.y)-m);return aW!=(N=z[I][1])>=W&&(R=z[I-1][0],F=z[I][0],N-B&&(D=R+(F-R)*(W-B)/(N-B),H=Math.min(H,D),q=Math.max(q,D)));H=Math.max(H,0),q=Math.min(q,h._length);var X=s.defaultLine;return s.opacity(f.fillcolor)?X=f.fillcolor:s.opacity((f.line||{}).color)&&(X=f.line.color),n.extendFlat(t,{distance:t.maxHoverDistance,x0:H,x1:q,y0:W,y1:W,color:X,hovertemplate:!1}),delete t.index,f.text&&!Array.isArray(f.text)?t.text=String(f.text):t.text=f.name,[t]}}}},{"../../components/color":639,"../../components/fx":679,"../../lib":776,"../../registry":904,"./get_trace_color":1201}],1203:[function(t,e,r){"use strict";var n=t("./subtypes");e.exports={hasLines:n.hasLines,hasMarkers:n.hasMarkers,hasText:n.hasText,isBubble:n.isBubble,attributes:t("./attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("./cross_trace_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./cross_trace_calc"),arraysToCalcdata:t("./arrays_to_calcdata"),plot:t("./plot"),colorbar:t("./marker_colorbar"),formatLabels:t("./format_labels"),style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("./select"),animatable:!0,moduleType:"trace",name:"scatter",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","symbols","errorBarsOK","showLegend","scatter-like","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"./arrays_to_calcdata":1190,"./attributes":1191,"./calc":1192,"./cross_trace_calc":1196,"./cross_trace_defaults":1197,"./defaults":1198,"./format_labels":1200,"./hover":1202,"./marker_colorbar":1209,"./plot":1212,"./select":1213,"./style":1215,"./subtypes":1216}],1204:[function(t,e,r){"use strict";var n=t("../../lib").isArrayOrTypedArray,i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults");e.exports=function(t,e,r,o,s,l){var c=(t.marker||{}).color;(s("line.color",r),i(t,"line"))?a(t,e,o,s,{prefix:"line.",cLetter:"c"}):s("line.color",!n(c)&&c||r);s("line.width"),(l||{}).noDash||s("line.dash")}},{"../../components/colorscale/defaults":649,"../../components/colorscale/helpers":650,"../../lib":776}],1205:[function(t,e,r){"use strict";var n=t("../../constants/numerical"),i=n.BADNUM,a=n.LOG_CLIP,o=a+.5,s=a-.5,l=t("../../lib"),c=l.segmentsIntersect,u=l.constrain,f=t("./constants");e.exports=function(t,e){var r,n,a,h,p,d,m,g,v,y,x,b,_,w,T,k,A,M,S=e.xaxis,E=e.yaxis,L="log"===S.type,C="log"===E.type,P=S._length,I=E._length,O=e.connectGaps,z=e.baseTolerance,D=e.shape,R="linear"===D,F=e.fill&&"none"!==e.fill,B=[],N=f.minTolerance,j=t.length,U=new Array(j),V=0;function H(r){var n=t[r];if(!n)return!1;var a=e.linearized?S.l2p(n.x):S.c2p(n.x),l=e.linearized?E.l2p(n.y):E.c2p(n.y);if(a===i){if(L&&(a=S.c2p(n.x,!0)),a===i)return!1;C&&l===i&&(a*=Math.abs(S._m*I*(S._m>0?o:s)/(E._m*P*(E._m>0?o:s)))),a*=1e3}if(l===i){if(C&&(l=E.c2p(n.y,!0)),l===i)return!1;l*=1e3}return[a,l]}function q(t,e,r,n){var i=r-t,a=n-e,o=.5-t,s=.5-e,l=i*i+a*a,c=i*o+a*s;if(c>0&&crt||t[1]it)return[u(t[0],et,rt),u(t[1],nt,it)]}function st(t,e){return t[0]===e[0]&&(t[0]===et||t[0]===rt)||(t[1]===e[1]&&(t[1]===nt||t[1]===it)||void 0)}function lt(t,e,r){return function(n,i){var a=ot(n),o=ot(i),s=[];if(a&&o&&st(a,o))return s;a&&s.push(a),o&&s.push(o);var c=2*l.constrain((n[t]+i[t])/2,e,r)-((a||n)[t]+(o||i)[t]);c&&((a&&o?c>0==a[t]>o[t]?a:o:a||o)[t]+=c);return s}}function ct(t){var e=t[0],r=t[1],n=e===U[V-1][0],i=r===U[V-1][1];if(!n||!i)if(V>1){var a=e===U[V-2][0],o=r===U[V-2][1];n&&(e===et||e===rt)&&a?o?V--:U[V-1]=t:i&&(r===nt||r===it)&&o?a?V--:U[V-1]=t:U[V++]=t}else U[V++]=t}function ut(t){U[V-1][0]!==t[0]&&U[V-1][1]!==t[1]&&ct([Z,J]),ct(t),K=null,Z=J=0}function ft(t){if(A=t[0]/P,M=t[1]/I,W=t[0]rt?rt:0,X=t[1]it?it:0,W||X){if(V)if(K){var e=$(K,t);e.length>1&&(ut(e[0]),U[V++]=e[1])}else Q=$(U[V-1],t)[0],U[V++]=Q;else U[V++]=[W||t[0],X||t[1]];var r=U[V-1];W&&X&&(r[0]!==W||r[1]!==X)?(K&&(Z!==W&&J!==X?ct(Z&&J?(n=K,a=(i=t)[0]-n[0],o=(i[1]-n[1])/a,(n[1]*i[0]-i[1]*n[0])/a>0?[o>0?et:rt,it]:[o>0?rt:et,nt]):[Z||W,J||X]):Z&&J&&ct([Z,J])),ct([W,X])):Z-W&&J-X&&ct([W||Z,X||J]),K=t,Z=W,J=X}else K&&ut($(K,t)[0]),U[V++]=t;var n,i,a,o}for("linear"===D||"spline"===D?$=function(t,e){for(var r=[],n=0,i=0;i<4;i++){var a=at[i],o=c(t[0],t[1],e[0],e[1],a[0],a[1],a[2],a[3]);o&&(!n||Math.abs(o.x-r[0][0])>1||Math.abs(o.y-r[0][1])>1)&&(o=[o.x,o.y],n&&Y(o,t)G(d,ht))break;a=d,(_=v[0]*g[0]+v[1]*g[1])>x?(x=_,h=d,m=!1):_=t.length||!d)break;ft(d),n=d}}else ft(h)}K&&ct([Z||K[0],J||K[1]]),B.push(U.slice(0,V))}return B}},{"../../constants/numerical":752,"../../lib":776,"./constants":1195}],1206:[function(t,e,r){"use strict";e.exports=function(t,e,r){"spline"===r("line.shape")&&r("line.smoothing")}},{}],1207:[function(t,e,r){"use strict";var n={tonextx:1,tonexty:1,tonext:1};e.exports=function(t,e,r){var i,a,o,s,l,c={},u=!1,f=-1,h=0,p=-1;for(a=0;a=0?l=p:(l=p=h,h++),l0?Math.max(r,a):0}}},{"fast-isnumeric":242}],1209:[function(t,e,r){"use strict";e.exports={container:"marker",min:"cmin",max:"cmax"}},{}],1210:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults"),o=t("./subtypes");e.exports=function(t,e,r,s,l,c){var u=o.isBubble(t),f=(t.line||{}).color;(c=c||{},f&&(r=f),l("marker.symbol"),l("marker.opacity",u?.7:1),l("marker.size"),l("marker.color",r),i(t,"marker")&&a(t,e,s,l,{prefix:"marker.",cLetter:"c"}),c.noSelect||(l("selected.marker.color"),l("unselected.marker.color"),l("selected.marker.size"),l("unselected.marker.size")),c.noLine||(l("marker.line.color",f&&!Array.isArray(f)&&e.marker.color!==f?f:u?n.background:n.defaultLine),i(t,"marker.line")&&a(t,e,s,l,{prefix:"marker.line.",cLetter:"c"}),l("marker.line.width",u?1:0)),u&&(l("marker.sizeref"),l("marker.sizemin"),l("marker.sizemode")),c.gradient)&&("none"!==l("marker.gradient.type")&&l("marker.gradient.color"))}},{"../../components/color":639,"../../components/colorscale/defaults":649,"../../components/colorscale/helpers":650,"./subtypes":1216}],1211:[function(t,e,r){"use strict";var n=t("../../lib").dateTick0,i=t("../../constants/numerical").ONEWEEK;function a(t,e){return n(e,t%i==0?1:0)}e.exports=function(t,e,r,n,i){if(i||(i={x:!0,y:!0}),i.x){var o=n("xperiod");o&&(n("xperiod0",a(o,e.xcalendar)),n("xperiodalignment"))}if(i.y){var s=n("yperiod");s&&(n("yperiod0",a(s,e.ycalendar)),n("yperiodalignment"))}}},{"../../constants/numerical":752,"../../lib":776}],1212:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../registry"),a=t("../../lib"),o=a.ensureSingle,s=a.identity,l=t("../../components/drawing"),c=t("./subtypes"),u=t("./line_points"),f=t("./link_traces"),h=t("../../lib/polygon").tester;function p(t,e,r,f,p,d,m){var g;!function(t,e,r,i,o){var s=r.xaxis,l=r.yaxis,u=n.extent(a.simpleMap(s.range,s.r2c)),f=n.extent(a.simpleMap(l.range,l.r2c)),h=i[0].trace;if(!c.hasMarkers(h))return;var p=h.marker.maxdisplayed;if(0===p)return;var d=i.filter((function(t){return t.x>=u[0]&&t.x<=u[1]&&t.y>=f[0]&&t.y<=f[1]})),m=Math.ceil(d.length/p),g=0;o.forEach((function(t,r){var n=t[0].trace;c.hasMarkers(n)&&n.marker.maxdisplayed>0&&r0;function y(t){return v?t.transition():t}var x=r.xaxis,b=r.yaxis,_=f[0].trace,w=_.line,T=n.select(d),k=o(T,"g","errorbars"),A=o(T,"g","lines"),M=o(T,"g","points"),S=o(T,"g","text");if(i.getComponentMethod("errorbars","plot")(t,k,r,m),!0===_.visible){var E,L;y(T).style("opacity",_.opacity);var C=_.fill.charAt(_.fill.length-1);"x"!==C&&"y"!==C&&(C=""),f[0][r.isRangePlot?"nodeRangePlot3":"node3"]=T;var P,I,O="",z=[],D=_._prevtrace;D&&(O=D._prevRevpath||"",L=D._nextFill,z=D._polygons);var R,F,B,N,j,U,V,H="",q="",G=[],Y=a.noop;if(E=_._ownFill,c.hasLines(_)||"none"!==_.fill){for(L&&L.datum(f),-1!==["hv","vh","hvh","vhv"].indexOf(w.shape)?(R=l.steps(w.shape),F=l.steps(w.shape.split("").reverse().join(""))):R=F="spline"===w.shape?function(t){var e=t[t.length-1];return t.length>1&&t[0][0]===e[0]&&t[0][1]===e[1]?l.smoothclosed(t.slice(1),w.smoothing):l.smoothopen(t,w.smoothing)}:function(t){return"M"+t.join("L")},B=function(t){return F(t.reverse())},G=u(f,{xaxis:x,yaxis:b,connectGaps:_.connectgaps,baseTolerance:Math.max(w.width||1,3)/4,shape:w.shape,simplify:w.simplify,fill:_.fill}),V=_._polygons=new Array(G.length),g=0;g1){var r=n.select(this);if(r.datum(f),t)y(r.style("opacity",0).attr("d",P).call(l.lineGroupStyle)).style("opacity",1);else{var i=y(r);i.attr("d",P),l.singleLineStyle(f,i)}}}}}var W=A.selectAll(".js-line").data(G);y(W.exit()).style("opacity",0).remove(),W.each(Y(!1)),W.enter().append("path").classed("js-line",!0).style("vector-effect","non-scaling-stroke").call(l.lineGroupStyle).each(Y(!0)),l.setClipUrl(W,r.layerClipId,t),G.length?(E?(E.datum(f),N&&U&&(C?("y"===C?N[1]=U[1]=b.c2p(0,!0):"x"===C&&(N[0]=U[0]=x.c2p(0,!0)),y(E).attr("d","M"+U+"L"+N+"L"+H.substr(1)).call(l.singleFillStyle)):y(E).attr("d",H+"Z").call(l.singleFillStyle))):L&&("tonext"===_.fill.substr(0,6)&&H&&O?("tonext"===_.fill?y(L).attr("d",H+"Z"+O+"Z").call(l.singleFillStyle):y(L).attr("d",H+"L"+O.substr(1)+"Z").call(l.singleFillStyle),_._polygons=_._polygons.concat(z)):(Z(L),_._polygons=null)),_._prevRevpath=q,_._prevPolygons=V):(E?Z(E):L&&Z(L),_._polygons=_._prevRevpath=_._prevPolygons=null),M.datum(f),S.datum(f),function(e,i,a){var o,u=a[0].trace,f=c.hasMarkers(u),h=c.hasText(u),p=tt(u),d=et,m=et;if(f||h){var g=s,_=u.stackgroup,w=_&&"infer zero"===t._fullLayout._scatterStackOpts[x._id+b._id][_].stackgaps;u.marker.maxdisplayed||u._needsCull?g=w?K:J:_&&!w&&(g=Q),f&&(d=g),h&&(m=g)}var T,k=(o=e.selectAll("path.point").data(d,p)).enter().append("path").classed("point",!0);v&&k.call(l.pointStyle,u,t).call(l.translatePoints,x,b).style("opacity",0).transition().style("opacity",1),o.order(),f&&(T=l.makePointStyleFns(u)),o.each((function(e){var i=n.select(this),a=y(i);l.translatePoint(e,a,x,b)?(l.singlePointStyle(e,a,u,T,t),r.layerClipId&&l.hideOutsideRangePoint(e,a,x,b,u.xcalendar,u.ycalendar),u.customdata&&i.classed("plotly-customdata",null!==e.data&&void 0!==e.data)):a.remove()})),v?o.exit().transition().style("opacity",0).remove():o.exit().remove(),(o=i.selectAll("g").data(m,p)).enter().append("g").classed("textpoint",!0).append("text"),o.order(),o.each((function(t){var e=n.select(this),i=y(e.select("text"));l.translatePoint(t,i,x,b)?r.layerClipId&&l.hideOutsideRangePoint(t,e,x,b,u.xcalendar,u.ycalendar):e.remove()})),o.selectAll("text").call(l.textPointStyle,u,t).each((function(t){var e=x.c2p(t.x),r=b.c2p(t.y);n.select(this).selectAll("tspan.line").each((function(){y(n.select(this)).attr({x:e,y:r})}))})),o.exit().remove()}(M,S,f);var X=!1===_.cliponaxis?null:r.layerClipId;l.setClipUrl(M,X,t),l.setClipUrl(S,X,t)}function Z(t){y(t).attr("d","M0,0Z")}function J(t){return t.filter((function(t){return!t.gap&&t.vis}))}function K(t){return t.filter((function(t){return t.vis}))}function Q(t){return t.filter((function(t){return!t.gap}))}function $(t){return t.id}function tt(t){if(t.ids)return $}function et(){return!1}}e.exports=function(t,e,r,i,a,c){var u,h,d=!a,m=!!a&&a.duration>0,g=f(t,e,r);((u=i.selectAll("g.trace").data(g,(function(t){return t[0].trace.uid}))).enter().append("g").attr("class",(function(t){return"trace scatter trace"+t[0].trace.uid})).style("stroke-miterlimit",2),u.order(),function(t,e,r){e.each((function(e){var i=o(n.select(this),"g","fills");l.setClipUrl(i,r.layerClipId,t);var a=e[0].trace,c=[];a._ownfill&&c.push("_ownFill"),a._nexttrace&&c.push("_nextFill");var u=i.selectAll("g").data(c,s);u.enter().append("g"),u.exit().each((function(t){a[t]=null})).remove(),u.order().each((function(t){a[t]=o(n.select(this),"path","js-fill")}))}))}(t,u,e),m)?(c&&(h=c()),n.transition().duration(a.duration).ease(a.easing).each("end",(function(){h&&h()})).each("interrupt",(function(){h&&h()})).each((function(){i.selectAll("g.trace").each((function(r,n){p(t,n,e,r,g,this,a)}))}))):u.each((function(r,n){p(t,n,e,r,g,this,a)}));d&&u.exit().remove(),i.selectAll("path:not([d])").remove()}},{"../../components/drawing":661,"../../lib":776,"../../lib/polygon":788,"../../registry":904,"./line_points":1205,"./link_traces":1207,"./subtypes":1216,"@plotly/d3":58}],1213:[function(t,e,r){"use strict";var n=t("./subtypes");e.exports=function(t,e){var r,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[],f=s[0].trace;if(!n.hasMarkers(f)&&!n.hasText(f))return[];if(!1===e)for(r=0;r0){var h=i.c2l(u);i._lowerLogErrorBound||(i._lowerLogErrorBound=h),i._lowerErrorBound=Math.min(i._lowerLogErrorBound,h)}}else o[s]=[-l[0]*r,l[1]*r]}return o}e.exports=function(t,e,r){var n=[i(t.x,t.error_x,e[0],r.xaxis),i(t.y,t.error_y,e[1],r.yaxis),i(t.z,t.error_z,e[2],r.zaxis)],a=function(t){for(var e=0;e-1?-1:t.indexOf("right")>-1?1:0}function b(t){return null==t?0:t.indexOf("top")>-1?-1:t.indexOf("bottom")>-1?1:0}function _(t,e){return e(4*t)}function w(t){return p[t]}function T(t,e,r,n,i){var a=null;if(l.isArrayOrTypedArray(t)){a=[];for(var o=0;o=0){var m=function(t,e,r){var n,i=(r+1)%3,a=(r+2)%3,o=[],l=[];for(n=0;n=0&&f("surfacecolor",h||p);for(var d=["x","y","z"],m=0;m<3;++m){var g="projection."+d[m];f(g+".show")&&(f(g+".opacity"),f(g+".scale"))}var v=n.getComponentMethod("errorbars","supplyDefaults");v(t,e,h||p||r,{axis:"z"}),v(t,e,h||p||r,{axis:"y",inherit:"z"}),v(t,e,h||p||r,{axis:"x",inherit:"z"})}else e.visible=!1}},{"../../lib":776,"../../registry":904,"../scatter/line_defaults":1204,"../scatter/marker_defaults":1210,"../scatter/subtypes":1216,"../scatter/text_defaults":1217,"./attributes":1219}],1224:[function(t,e,r){"use strict";e.exports={plot:t("./convert"),attributes:t("./attributes"),markerSymbols:t("../../constants/gl3d_markers"),supplyDefaults:t("./defaults"),colorbar:[{container:"marker",min:"cmin",max:"cmax"},{container:"line",min:"cmin",max:"cmax"}],calc:t("./calc"),moduleType:"trace",name:"scatter3d",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","symbols","showLegend","scatter-like"],meta:{}}},{"../../constants/gl3d_markers":750,"../../plots/gl3d":869,"./attributes":1219,"./calc":1220,"./convert":1222,"./defaults":1223}],1225:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../plots/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../plots/template_attributes").texttemplateAttrs,s=t("../../components/colorscale/attributes"),l=t("../../lib/extend").extendFlat,c=n.marker,u=n.line,f=c.line;e.exports={carpet:{valType:"string",editType:"calc"},a:{valType:"data_array",editType:"calc"},b:{valType:"data_array",editType:"calc"},mode:l({},n.mode,{dflt:"markers"}),text:l({},n.text,{}),texttemplate:o({editType:"plot"},{keys:["a","b","text"]}),hovertext:l({},n.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,shape:l({},u.shape,{values:["linear","spline"]}),smoothing:u.smoothing,editType:"calc"},connectgaps:n.connectgaps,fill:l({},n.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:n.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:f.width,editType:"calc"},s("marker.line")),gradient:c.gradient,editType:"calc"},s("marker")),textfont:n.textfont,textposition:n.textposition,selected:n.selected,unselected:n.unselected,hoverinfo:l({},i.hoverinfo,{flags:["a","b","text","name"]}),hoveron:n.hoveron,hovertemplate:a()}},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plots/attributes":823,"../../plots/template_attributes":899,"../scatter/attributes":1191}],1226:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../scatter/colorscale_calc"),a=t("../scatter/arrays_to_calcdata"),o=t("../scatter/calc_selection"),s=t("../scatter/calc").calcMarkerSize,l=t("../carpet/lookup_carpetid");e.exports=function(t,e){var r=e._carpetTrace=l(t,e);if(r&&r.visible&&"legendonly"!==r.visible){var c;e.xaxis=r.xaxis,e.yaxis=r.yaxis;var u,f,h=e._length,p=new Array(h),d=!1;for(c=0;c")}return o}function y(t,e){var r;r=t.labelprefix&&t.labelprefix.length>0?t.labelprefix.replace(/ = $/,""):t._hovertitle,g.push(r+": "+e.toFixed(3)+t.labelsuffix)}}},{"../../lib":776,"../scatter/hover":1202}],1231:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../scatter/select"),eventData:t("./event_data"),moduleType:"trace",name:"scattercarpet",basePlotModule:t("../../plots/cartesian"),categories:["svg","carpet","symbols","showLegend","carpetDependent","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../scatter/marker_colorbar":1209,"../scatter/select":1213,"../scatter/style":1215,"./attributes":1225,"./calc":1226,"./defaults":1227,"./event_data":1228,"./format_labels":1229,"./hover":1230,"./plot":1232}],1232:[function(t,e,r){"use strict";var n=t("../scatter/plot"),i=t("../../plots/cartesian/axes"),a=t("../../components/drawing");e.exports=function(t,e,r,o){var s,l,c,u=r[0][0].carpet,f={xaxis:i.getFromId(t,u.xaxis||"x"),yaxis:i.getFromId(t,u.yaxis||"y"),plot:e.plot};for(n(t,f,r,o),s=0;s")}(c,m,t,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{"../../components/fx":679,"../../constants/numerical":752,"../../lib":776,"../scatter/get_trace_color":1201,"./attributes":1233}],1239:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),calcGeoJSON:t("./plot").calcGeoJSON,plot:t("./plot").plot,style:t("./style"),styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"scattergeo",basePlotModule:t("../../plots/geo"),categories:["geo","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/geo":860,"../scatter/marker_colorbar":1209,"../scatter/style":1215,"./attributes":1233,"./calc":1234,"./defaults":1235,"./event_data":1236,"./format_labels":1237,"./hover":1238,"./plot":1240,"./select":1241,"./style":1242}],1240:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../../lib/topojson_utils").getTopojsonFeatures,o=t("../../lib/geojson_utils"),s=t("../../lib/geo_location_utils"),l=t("../../plots/cartesian/autorange").findExtremes,c=t("../../constants/numerical").BADNUM,u=t("../scatter/calc").calcMarkerSize,f=t("../scatter/subtypes"),h=t("./style");e.exports={calcGeoJSON:function(t,e){var r,n,i=t[0].trace,o=e[i.geo],f=o._subplot,h=i._length;if(Array.isArray(i.locations)){var p=i.locationmode,d="geojson-id"===p?s.extractTraceFeature(t):a(i,f.topojson);for(r=0;r=g,w=2*b,T={},k=l.makeCalcdata(e,"x"),A=y.makeCalcdata(e,"y"),M=s(e,l,"x",k),S=s(e,y,"y",A),E=M.vals,L=S.vals;e._x=E,e._y=L,e.xperiodalignment&&(e._origX=k,e._xStarts=M.starts,e._xEnds=M.ends),e.yperiodalignment&&(e._origY=A,e._yStarts=S.starts,e._yEnds=S.ends);var C=new Array(w),P=new Array(b);for(r=0;r1&&i.extendFlat(s.line,p.linePositions(t,r,n));if(s.errorX||s.errorY){var l=p.errorBarPositions(t,r,n,a,o);s.errorX&&i.extendFlat(s.errorX,l.x),s.errorY&&i.extendFlat(s.errorY,l.y)}s.text&&(i.extendFlat(s.text,{positions:n},p.textPosition(t,r,s.text,s.marker)),i.extendFlat(s.textSel,{positions:n},p.textPosition(t,r,s.text,s.markerSel)),i.extendFlat(s.textUnsel,{positions:n},p.textPosition(t,r,s.text,s.markerUnsel)));return s}(t,0,e,C,E,L),z=d(t,x);return f(o,e),_?O.marker&&(I=O.marker.sizeAvg||Math.max(O.marker.size,3)):I=c(e,b),u(t,e,l,y,E,L,I),O.errorX&&v(e,l,O.errorX),O.errorY&&v(e,y,O.errorY),O.fill&&!z.fill2d&&(z.fill2d=!0),O.marker&&!z.scatter2d&&(z.scatter2d=!0),O.line&&!z.line2d&&(z.line2d=!0),!O.errorX&&!O.errorY||z.error2d||(z.error2d=!0),O.text&&!z.glText&&(z.glText=!0),O.marker&&(O.marker.snap=b),z.lineOptions.push(O.line),z.errorXOptions.push(O.errorX),z.errorYOptions.push(O.errorY),z.fillOptions.push(O.fill),z.markerOptions.push(O.marker),z.markerSelectedOptions.push(O.markerSel),z.markerUnselectedOptions.push(O.markerUnsel),z.textOptions.push(O.text),z.textSelectedOptions.push(O.textSel),z.textUnselectedOptions.push(O.textUnsel),z.selectBatch.push([]),z.unselectBatch.push([]),T._scene=z,T.index=z.count,T.x=E,T.y=L,T.positions=C,z.count++,[{x:!1,y:!1,t:T,trace:e}]}},{"../../constants/numerical":752,"../../lib":776,"../../plots/cartesian/align_period":824,"../../plots/cartesian/autorange":826,"../../plots/cartesian/axis_ids":831,"../scatter/calc":1192,"../scatter/colorscale_calc":1194,"./constants":1245,"./convert":1246,"./scene_update":1254,"@plotly/point-cluster":59}],1245:[function(t,e,r){"use strict";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},{}],1246:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("svg-path-sdf"),a=t("color-normalize"),o=t("../../registry"),s=t("../../lib"),l=t("../../components/drawing"),c=t("../../plots/cartesian/axis_ids"),u=t("../../lib/gl_format_color").formatColor,f=t("../scatter/subtypes"),h=t("../scatter/make_bubble_size_func"),p=t("./helpers"),d=t("./constants"),m=t("../../constants/interactions").DESELECTDIM,g={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},v=t("../../components/fx/helpers").appendArrayPointValue;function y(t,e){var r,i=t._fullLayout,a=e._length,o=e.textfont,l=e.textposition,c=Array.isArray(l)?l:[l],u=o.color,f=o.size,h=o.family,p={},d=t._context.plotGlPixelRatio,m=e.texttemplate;if(m){p.text=[];var g=i._d3locale,y=Array.isArray(m),x=y?Math.min(m.length,a):a,b=y?function(t){return m[t]}:function(){return m};for(r=0;rd.TOO_MANY_POINTS||f.hasMarkers(e)?"rect":"round";if(c&&e.connectgaps){var h=n[0],p=n[1];for(i=0;i1?l[i]:l[0]:l,d=Array.isArray(c)?c.length>1?c[i]:c[0]:c,m=g[p],v=g[d],y=u?u/.8+1:0,x=-v*y-.5*v;o.offset[i]=[m*y/h,x/h]}}return o}}},{"../../components/drawing":661,"../../components/fx/helpers":675,"../../constants/interactions":751,"../../lib":776,"../../lib/gl_format_color":772,"../../plots/cartesian/axis_ids":831,"../../registry":904,"../scatter/make_bubble_size_func":1208,"../scatter/subtypes":1216,"./constants":1245,"./helpers":1250,"color-normalize":126,"fast-isnumeric":242,"svg-path-sdf":569}],1247:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./helpers"),o=t("./attributes"),s=t("../scatter/constants"),l=t("../scatter/subtypes"),c=t("../scatter/xy_defaults"),u=t("../scatter/period_defaults"),f=t("../scatter/marker_defaults"),h=t("../scatter/line_defaults"),p=t("../scatter/fillcolor_defaults"),d=t("../scatter/text_defaults");e.exports=function(t,e,r,m){function g(r,i){return n.coerce(t,e,o,r,i)}var v=!!t.marker&&a.isOpenSymbol(t.marker.symbol),y=l.isBubble(t),x=c(t,e,m,g);if(x){u(t,e,m,g),g("xhoverformat"),g("yhoverformat");var b=x100},r.isDotSymbol=function(t){return"string"==typeof t?n.DOT_RE.test(t):t>200}},{"./constants":1245}],1251:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("../scatter/get_trace_color");function o(t,e,r,o){var s=t.xa,l=t.ya,c=t.distance,u=t.dxy,f=t.index,h={pointNumber:f,x:e[f],y:r[f]};h.tx=Array.isArray(o.text)?o.text[f]:o.text,h.htx=Array.isArray(o.hovertext)?o.hovertext[f]:o.hovertext,h.data=Array.isArray(o.customdata)?o.customdata[f]:o.customdata,h.tp=Array.isArray(o.textposition)?o.textposition[f]:o.textposition;var p=o.textfont;p&&(h.ts=i.isArrayOrTypedArray(p.size)?p.size[f]:p.size,h.tc=Array.isArray(p.color)?p.color[f]:p.color,h.tf=Array.isArray(p.family)?p.family[f]:p.family);var d=o.marker;d&&(h.ms=i.isArrayOrTypedArray(d.size)?d.size[f]:d.size,h.mo=i.isArrayOrTypedArray(d.opacity)?d.opacity[f]:d.opacity,h.mx=i.isArrayOrTypedArray(d.symbol)?d.symbol[f]:d.symbol,h.mc=i.isArrayOrTypedArray(d.color)?d.color[f]:d.color);var m=d&&d.line;m&&(h.mlc=Array.isArray(m.color)?m.color[f]:m.color,h.mlw=i.isArrayOrTypedArray(m.width)?m.width[f]:m.width);var g=d&&d.gradient;g&&"none"!==g.type&&(h.mgt=Array.isArray(g.type)?g.type[f]:g.type,h.mgc=Array.isArray(g.color)?g.color[f]:g.color);var v=s.c2p(h.x,!0),y=l.c2p(h.y,!0),x=h.mrc||1,b=o.hoverlabel;b&&(h.hbg=Array.isArray(b.bgcolor)?b.bgcolor[f]:b.bgcolor,h.hbc=Array.isArray(b.bordercolor)?b.bordercolor[f]:b.bordercolor,h.hts=i.isArrayOrTypedArray(b.font.size)?b.font.size[f]:b.font.size,h.htc=Array.isArray(b.font.color)?b.font.color[f]:b.font.color,h.htf=Array.isArray(b.font.family)?b.font.family[f]:b.font.family,h.hnl=i.isArrayOrTypedArray(b.namelength)?b.namelength[f]:b.namelength);var _=o.hoverinfo;_&&(h.hi=Array.isArray(_)?_[f]:_);var w=o.hovertemplate;w&&(h.ht=Array.isArray(w)?w[f]:w);var T={};T[t.index]=h;var k=o._origX,A=o._origY,M=i.extendFlat({},t,{color:a(o,h),x0:v-x,x1:v+x,xLabelVal:k?k[f]:h.x,y0:y-x,y1:y+x,yLabelVal:A?A[f]:h.y,cd:T,distance:c,spikeDistance:u,hovertemplate:h.ht});return h.htx?M.text=h.htx:h.tx?M.text=h.tx:o.text&&(M.text=o.text),i.fillText(h,o,M),n.getComponentMethod("errorbars","hoverInfo")(h,o,M),M}e.exports={hoverPoints:function(t,e,r,n){var i,a,s,l,c,u,f,h,p,d,m=t.cd,g=m[0].t,v=m[0].trace,y=t.xa,x=t.ya,b=g.x,_=g.y,w=y.c2p(e),T=x.c2p(r),k=t.distance;if(g.tree){var A=y.p2c(w-k),M=y.p2c(w+k),S=x.p2c(T-k),E=x.p2c(T+k);i="x"===n?g.tree.range(Math.min(A,M),Math.min(x._rl[0],x._rl[1]),Math.max(A,M),Math.max(x._rl[0],x._rl[1])):g.tree.range(Math.min(A,M),Math.min(S,E),Math.max(A,M),Math.max(S,E))}else i=g.ids;var L=k;if("x"===n){var C=!!v.xperiodalignment,P=!!v.yperiodalignment;for(u=0;u=Math.min(I,O)&&w<=Math.max(I,O)?0:1/0}if(f=Math.min(z,D)&&T<=Math.max(z,D)?0:1/0}d=Math.sqrt(f*f+h*h),s=i[u]}}}else for(u=i.length-1;u>-1;u--)l=b[a=i[u]],c=_[a],f=y.c2p(l)-w,h=x.c2p(c)-T,(p=Math.sqrt(f*f+h*h))v.glText.length){var w=b-v.glText.length;for(d=0;dr&&(isNaN(e[n])||isNaN(e[n+1]));)n-=2;t.positions=e.slice(r,n+2)}return t})),v.line2d.update(v.lineOptions)),v.error2d){var k=(v.errorXOptions||[]).concat(v.errorYOptions||[]);v.error2d.update(k)}v.scatter2d&&v.scatter2d.update(v.markerOptions),v.fillOrder=s.repeat(null,b),v.fill2d&&(v.fillOptions=v.fillOptions.map((function(t,e){var n=r[e];if(t&&n&&n[0]&&n[0].trace){var i,a,o=n[0],s=o.trace,l=o.t,c=v.lineOptions[e],u=[];s._ownfill&&u.push(e),s._nexttrace&&u.push(e+1),u.length&&(v.fillOrder[e]=u);var f,h,p=[],d=c&&c.positions||l.positions;if("tozeroy"===s.fill){for(f=0;ff&&isNaN(d[h+1]);)h-=2;0!==d[f+1]&&(p=[d[f],0]),p=p.concat(d.slice(f,h+2)),0!==d[h+1]&&(p=p.concat([d[h],0]))}else if("tozerox"===s.fill){for(f=0;ff&&isNaN(d[h]);)h-=2;0!==d[f]&&(p=[0,d[f+1]]),p=p.concat(d.slice(f,h+2)),0!==d[h]&&(p=p.concat([0,d[h+1]]))}else if("toself"===s.fill||"tonext"===s.fill){for(p=[],i=0,t.splitNull=!0,a=0;a-1;for(d=0;d")}function u(t){return t+"\xb0"}}e.exports={hoverPoints:function(t,e,r){var o=t.cd,c=o[0].trace,u=t.xa,f=t.ya,h=t.subplot,p=360*(e>=0?Math.floor((e+180)/360):Math.ceil((e-180)/360)),d=e-p;if(n.getClosest(o,(function(t){var e=t.lonlat;if(e[0]===s)return 1/0;var n=i.modHalf(e[0],360),a=e[1],o=h.project([n,a]),l=o.x-u.c2p([d,a]),c=o.y-f.c2p([n,r]),p=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-p,1-3/p)}),t),!1!==t.index){var m=o[t.index],g=m.lonlat,v=[i.modHalf(g[0],360)+p,g[1]],y=u.c2p(v),x=f.c2p(v),b=m.mrc||1;t.x0=y-b,t.x1=y+b,t.y0=x-b,t.y1=x+b;var _={};_[c.subplot]={_subplot:h};var w=c._module.formatLabels(m,c,_);return t.lonLabel=w.lonLabel,t.latLabel=w.latLabel,t.color=a(c,m),t.extraText=l(c,m,o[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}},getExtraText:l}},{"../../components/fx":679,"../../constants/numerical":752,"../../lib":776,"../scatter/get_trace_color":1201}],1262:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("../scattergeo/calc"),plot:t("./plot"),hoverPoints:t("./hover").hoverPoints,eventData:t("./event_data"),selectPoints:t("./select"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.update(e)},moduleType:"trace",name:"scattermapbox",basePlotModule:t("../../plots/mapbox"),categories:["mapbox","gl","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/mapbox":884,"../scatter/marker_colorbar":1209,"../scattergeo/calc":1234,"./attributes":1256,"./defaults":1258,"./event_data":1259,"./format_labels":1260,"./hover":1261,"./plot":1263,"./select":1264}],1263:[function(t,e,r){"use strict";var n=t("./convert"),i=t("../../plots/mapbox/constants").traceLayerPrefix,a=["fill","line","circle","symbol"];function o(t,e){this.type="scattermapbox",this.subplot=t,this.uid=e,this.sourceIds={fill:"source-"+e+"-fill",line:"source-"+e+"-line",circle:"source-"+e+"-circle",symbol:"source-"+e+"-symbol"},this.layerIds={fill:i+e+"-fill",line:i+e+"-line",circle:i+e+"-circle",symbol:i+e+"-symbol"},this.below=null}var s=o.prototype;s.addSource=function(t,e){this.subplot.map.addSource(this.sourceIds[t],{type:"geojson",data:e.geojson})},s.setSourceData=function(t,e){this.subplot.map.getSource(this.sourceIds[t]).setData(e.geojson)},s.addLayer=function(t,e,r){this.subplot.addLayer({type:t,id:this.layerIds[t],source:this.sourceIds[t],layout:e.layout,paint:e.paint},r)},s.update=function(t){var e,r,i,o=this.subplot,s=o.map,l=n(o.gd,t),c=o.belowLookup["trace-"+this.uid];if(c!==this.below){for(e=a.length-1;e>=0;e--)r=a[e],s.removeLayer(this.layerIds[r]);for(e=0;e=0;e--){var r=a[e];t.removeLayer(this.layerIds[r]),t.removeSource(this.sourceIds[r])}},e.exports=function(t,e){for(var r=e[0].trace,i=new o(t,r.uid),s=n(t.gd,e),l=i.below=t.belowLookup["trace-"+r.uid],c=0;c")}}e.exports={hoverPoints:function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},{"../scatter/hover":1202}],1270:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"scatterpolar",basePlotModule:t("../../plots/polar"),categories:["polar","symbols","showLegend","scatter-like"],attributes:t("./attributes"),supplyDefaults:t("./defaults").supplyDefaults,colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover").hoverPoints,selectPoints:t("../scatter/select"),meta:{}}},{"../../plots/polar":893,"../scatter/marker_colorbar":1209,"../scatter/select":1213,"../scatter/style":1215,"./attributes":1265,"./calc":1266,"./defaults":1267,"./format_labels":1268,"./hover":1269,"./plot":1271}],1271:[function(t,e,r){"use strict";var n=t("../scatter/plot"),i=t("../../constants/numerical").BADNUM;e.exports=function(t,e,r){for(var a=e.layers.frontplot.select("g.scatterlayer"),o={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},s=e.radialAxis,l=e.angularAxis,c=0;c=c&&(y.marker.cluster=d.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=_),y.line&&_.length>1&&l.extendFlat(y.line,s.linePositions(t,p,_)),y.text&&(l.extendFlat(y.text,{positions:_},s.textPosition(t,p,y.text,y.marker)),l.extendFlat(y.textSel,{positions:_},s.textPosition(t,p,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:_},s.textPosition(t,p,y.text,y.markerUnsel))),y.fill&&!h.fill2d&&(h.fill2d=!0),y.marker&&!h.scatter2d&&(h.scatter2d=!0),y.line&&!h.line2d&&(h.line2d=!0),y.text&&!h.glText&&(h.glText=!0),h.lineOptions.push(y.line),h.fillOptions.push(y.fill),h.markerOptions.push(y.marker),h.markerSelectedOptions.push(y.markerSel),h.markerUnselectedOptions.push(y.markerUnsel),h.textOptions.push(y.text),h.textSelectedOptions.push(y.textSel),h.textUnselectedOptions.push(y.textUnsel),h.selectBatch.push([]),h.unselectBatch.push([]),d.x=w,d.y=T,d.rawx=w,d.rawy=T,d.r=g,d.theta=v,d.positions=_,d._scene=h,d.index=h.count,h.count++}})),a(t,e,r)}}},{"../../lib":776,"../scattergl/constants":1245,"../scattergl/convert":1246,"../scattergl/plot":1253,"../scattergl/scene_update":1254,"@plotly/point-cluster":59,"fast-isnumeric":242}],1279:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").hovertemplateAttrs,i=t("../../plots/template_attributes").texttemplateAttrs,a=t("../scatter/attributes"),o=t("../../plots/attributes"),s=t("../../components/colorscale/attributes"),l=t("../../components/drawing/attributes").dash,c=t("../../lib/extend").extendFlat,u=a.marker,f=a.line,h=u.line;e.exports={a:{valType:"data_array",editType:"calc"},b:{valType:"data_array",editType:"calc"},c:{valType:"data_array",editType:"calc"},sum:{valType:"number",dflt:0,min:0,editType:"calc"},mode:c({},a.mode,{dflt:"markers"}),text:c({},a.text,{}),texttemplate:i({editType:"plot"},{keys:["a","b","c","text"]}),hovertext:c({},a.hovertext,{}),line:{color:f.color,width:f.width,dash:l,shape:c({},f.shape,{values:["linear","spline"]}),smoothing:f.smoothing,editType:"calc"},connectgaps:a.connectgaps,cliponaxis:a.cliponaxis,fill:c({},a.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:a.fillcolor,marker:c({symbol:u.symbol,opacity:u.opacity,maxdisplayed:u.maxdisplayed,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,line:c({width:h.width,editType:"calc"},s("marker.line")),gradient:u.gradient,editType:"calc"},s("marker")),textfont:a.textfont,textposition:a.textposition,selected:a.selected,unselected:a.unselected,hoverinfo:c({},o.hoverinfo,{flags:["a","b","c","text","name"]}),hoveron:a.hoveron,hovertemplate:n()}},{"../../components/colorscale/attributes":646,"../../components/drawing/attributes":660,"../../lib/extend":766,"../../plots/attributes":823,"../../plots/template_attributes":899,"../scatter/attributes":1191}],1280:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../scatter/colorscale_calc"),a=t("../scatter/arrays_to_calcdata"),o=t("../scatter/calc_selection"),s=t("../scatter/calc").calcMarkerSize,l=["a","b","c"],c={a:["b","c"],b:["a","c"],c:["a","b"]};e.exports=function(t,e){var r,u,f,h,p,d,m=t._fullLayout[e.subplot].sum,g=e.sum||m,v={a:e.a,b:e.b,c:e.c};for(r=0;r"),o.hovertemplate=h.hovertemplate,a}function x(t,e){v.push(t._hovertitle+": "+e)}}},{"../scatter/hover":1202}],1285:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../scatter/select"),eventData:t("./event_data"),moduleType:"trace",name:"scatterternary",basePlotModule:t("../../plots/ternary"),categories:["ternary","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/ternary":900,"../scatter/marker_colorbar":1209,"../scatter/select":1213,"../scatter/style":1215,"./attributes":1279,"./calc":1280,"./defaults":1281,"./event_data":1282,"./format_labels":1283,"./hover":1284,"./plot":1286}],1286:[function(t,e,r){"use strict";var n=t("../scatter/plot");e.exports=function(t,e,r){var i=e.plotContainer;i.select(".scatterlayer").selectAll("*").remove();var a={xaxis:e.xaxis,yaxis:e.yaxis,plot:i,layerClipId:e._hasClipOnAxisFalse?e.clipIdRelative:null},o=e.layers.frontplot.select("g.scatterlayer");n(t,a,r,o)}},{"../scatter/plot":1212}],1287:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../components/colorscale/attributes"),a=t("../../plots/cartesian/axis_format_attributes").axisHoverFormat,o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../scattergl/attributes"),l=t("../../plots/cartesian/constants").idRegex,c=t("../../plot_api/plot_template").templatedArray,u=t("../../lib/extend").extendFlat,f=n.marker,h=f.line,p=u(i("marker.line",{editTypeOverride:"calc"}),{width:u({},h.width,{editType:"calc"}),editType:"calc"}),d=u(i("marker"),{symbol:f.symbol,size:u({},f.size,{editType:"markerSize"}),sizeref:f.sizeref,sizemin:f.sizemin,sizemode:f.sizemode,opacity:f.opacity,colorbar:f.colorbar,line:p,editType:"calc"});function m(t){return{valType:"info_array",freeLength:!0,editType:"calc",items:{valType:"subplotid",regex:l[t],editType:"plot"}}}d.color.editType=d.cmin.editType=d.cmax.editType="style",e.exports={dimensions:c("dimension",{visible:{valType:"boolean",dflt:!0,editType:"calc"},label:{valType:"string",editType:"calc"},values:{valType:"data_array",editType:"calc+clearAxisTypes"},axis:{type:{valType:"enumerated",values:["linear","log","date","category"],editType:"calc+clearAxisTypes"},matches:{valType:"boolean",dflt:!1,editType:"calc"},editType:"calc+clearAxisTypes"},editType:"calc+clearAxisTypes"}),text:u({},s.text,{}),hovertext:u({},s.hovertext,{}),hovertemplate:o(),xhoverformat:a("x"),yhoverformat:a("y"),marker:d,xaxes:m("x"),yaxes:m("y"),diagonal:{visible:{valType:"boolean",dflt:!0,editType:"calc"},editType:"calc"},showupperhalf:{valType:"boolean",dflt:!0,editType:"calc"},showlowerhalf:{valType:"boolean",dflt:!0,editType:"calc"},selected:{marker:s.selected.marker,editType:"calc"},unselected:{marker:s.unselected.marker,editType:"calc"},opacity:s.opacity}},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plot_api/plot_template":816,"../../plots/cartesian/axis_format_attributes":830,"../../plots/cartesian/constants":834,"../../plots/template_attributes":899,"../scatter/attributes":1191,"../scattergl/attributes":1243}],1288:[function(t,e,r){"use strict";var n=t("regl-line2d"),i=t("../../registry"),a=t("../../lib/prepare_regl"),o=t("../../plots/get_data").getModuleCalcData,s=t("../../plots/cartesian"),l=t("../../plots/cartesian/axis_ids").getFromId,c=t("../../plots/cartesian/axes").shouldShowZeroLine;function u(t,e,r){for(var n=r.matrixOptions.data.length,i=e._visibleDims,a=r.viewOpts.ranges=new Array(n),o=0;oh?b.sizeAvg||Math.max(b.size,3):a(e,x),p=0;pa&&l||i-1,P=!0;if(o(x)||!!p.selectedpoints||C){var I=p._length;if(p.selectedpoints){m.selectBatch=p.selectedpoints;var O=p.selectedpoints,z={};for(l=0;l1&&(u=m[y-1],h=g[y-1],d=v[y-1]),e=0;eu?"-":"+")+"x")).replace("y",(f>h?"-":"+")+"y")).replace("z",(p>d?"-":"+")+"z");var L=function(){y=0,M=[],S=[],E=[]};(!y||y2?t.slice(1,e-1):2===e?[(t[0]+t[1])/2]:t}function p(t){var e=t.length;return 1===e?[.5,.5]:[t[1]-t[0],t[e-1]-t[e-2]]}function d(t,e){var r=t.fullSceneLayout,i=t.dataScale,u=e._len,f={};function d(t,e){var n=r[e],o=i[c[e]];return a.simpleMap(t,(function(t){return n.d2l(t)*o}))}if(f.vectors=l(d(e._u,"xaxis"),d(e._v,"yaxis"),d(e._w,"zaxis"),u),!u)return{positions:[],cells:[]};var m=d(e._Xs,"xaxis"),g=d(e._Ys,"yaxis"),v=d(e._Zs,"zaxis");if(f.meshgrid=[m,g,v],f.gridFill=e._gridFill,e._slen)f.startingPositions=l(d(e._startsX,"xaxis"),d(e._startsY,"yaxis"),d(e._startsZ,"zaxis"));else{for(var y=g[0],x=h(m),b=h(v),_=new Array(x.length*b.length),w=0,T=0;T=0};v?(r=Math.min(g.length,x.length),l=function(t){return A(g[t])&&M(t)},f=function(t){return String(g[t])}):(r=Math.min(y.length,x.length),l=function(t){return A(y[t])&&M(t)},f=function(t){return String(y[t])}),_&&(r=Math.min(r,b.length));for(var S=0;S1){for(var P=a.randstr(),I=0;I"),name:A||z("name")?y.name:void 0,color:k("hoverlabel.bgcolor")||x.color,borderColor:k("hoverlabel.bordercolor"),fontFamily:k("hoverlabel.font.family"),fontSize:k("hoverlabel.font.size"),fontColor:k("hoverlabel.font.color"),nameLength:k("hoverlabel.namelength"),textAlign:k("hoverlabel.align"),hovertemplate:A,hovertemplateLabels:P,eventData:l};g&&(F.x0=E-i.rInscribed*i.rpx1,F.x1=E+i.rInscribed*i.rpx1,F.idealAlign=i.pxmid[0]<0?"left":"right"),v&&(F.x=E,F.idealAlign=E<0?"left":"right");var B=[];o.loneHover(F,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:r,inOut_bbox:B}),l[0].bbox=B[0],d._hasHoverLabel=!0}if(v){var N=t.select("path.surface");h.styleOne(N,i,y,{hovered:!0})}d._hasHoverEvent=!0,r.emit("plotly_hover",{points:l||[f(i,y,h.eventDataKeys)],event:n.event})}})),t.on("mouseout",(function(e){var i=r._fullLayout,a=r._fullData[d.index],s=n.select(this).datum();if(d._hasHoverEvent&&(e.originalEvent=n.event,r.emit("plotly_unhover",{points:[f(s,a,h.eventDataKeys)],event:n.event}),d._hasHoverEvent=!1),d._hasHoverLabel&&(o.loneUnhover(i._hoverlayer.node()),d._hasHoverLabel=!1),v){var l=t.select("path.surface");h.styleOne(l,s,a,{hovered:!1})}})),t.on("click",(function(t){var e=r._fullLayout,a=r._fullData[d.index],s=g&&(c.isHierarchyRoot(t)||c.isLeaf(t)),u=c.getPtId(t),p=c.isEntry(t)?c.findEntryWithChild(m,u):c.findEntryWithLevel(m,u),v=c.getPtId(p),y={points:[f(t,a,h.eventDataKeys)],event:n.event};s||(y.nextLevel=v);var x=l.triggerHandler(r,"plotly_"+d.type+"click",y);if(!1!==x&&e.hovermode&&(r._hoverdata=[f(t,a,h.eventDataKeys)],o.click(r,n.event)),!s&&!1!==x&&!r._dragging&&!r._transitioning){i.call("_storeDirectGUIEdit",a,e._tracePreGUI[a.uid],{level:a.level});var b={data:[{level:v}],traces:[d.index]},_={frame:{redraw:!1,duration:h.transitionTime},transition:{duration:h.transitionTime,easing:h.transitionEasing},mode:"immediate",fromcurrent:!0};o.loneUnhover(e._hoverlayer.node()),i.call("animate",r,b,_)}}))}},{"../../components/fx":679,"../../components/fx/helpers":675,"../../lib":776,"../../lib/events":765,"../../registry":904,"../pie/helpers":1170,"./helpers":1309,"@plotly/d3":58}],1309:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/color"),a=t("../../lib/setcursor"),o=t("../pie/helpers");function s(t){return t.data.data.pid}r.findEntryWithLevel=function(t,e){var n;return e&&t.eachAfter((function(t){if(r.getPtId(t)===e)return n=t.copy()})),n||t},r.findEntryWithChild=function(t,e){var n;return t.eachAfter((function(t){for(var i=t.children||[],a=0;a0)},r.getMaxDepth=function(t){return t.maxdepth>=0?t.maxdepth:1/0},r.isHeader=function(t,e){return!(r.isLeaf(t)||t.depth===e._maxDepth-1)},r.getParent=function(t,e){return r.findEntryWithLevel(t,s(e))},r.listPath=function(t,e){var n=t.parent;if(!n)return[];var i=e?[n.data[e]]:[n];return r.listPath(n,e).concat(i)},r.getPath=function(t){return r.listPath(t,"label").join("/")+"/"},r.formatValue=o.formatPieValue,r.formatPercent=function(t,e){var r=n.formatPercent(t,0);return"0%"===r&&(r=o.formatPiePercent(t,e)),r}},{"../../components/color":639,"../../lib":776,"../../lib/setcursor":797,"../pie/helpers":1170}],1310:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"sunburst",basePlotModule:t("./base_plot"),categories:[],animatable:!0,attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot").plot,style:t("./style").style,colorbar:t("../scatter/marker_colorbar"),meta:{}}},{"../scatter/marker_colorbar":1209,"./attributes":1303,"./base_plot":1304,"./calc":1305,"./defaults":1307,"./layout_attributes":1311,"./layout_defaults":1312,"./plot":1313,"./style":1314}],1311:[function(t,e,r){"use strict";e.exports={sunburstcolorway:{valType:"colorlist",editType:"calc"},extendsunburstcolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{}],1312:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("sunburstcolorway",e.colorway),r("extendsunburstcolors")}},{"../../lib":776,"./layout_attributes":1311}],1313:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("d3-hierarchy"),a=t("d3-interpolate").interpolate,o=t("../../components/drawing"),s=t("../../lib"),l=t("../../lib/svg_text_utils"),c=t("../bar/uniform_text"),u=c.recordMinTextSize,f=c.clearMinTextSize,h=t("../pie/plot"),p=t("../pie/helpers").getRotationAngle,d=h.computeTransform,m=h.transformInsideText,g=t("./style").styleOne,v=t("../bar/style").resizeText,y=t("./fx"),x=t("./constants"),b=t("./helpers");function _(t,e,c,f){var h=t._fullLayout,v=!h.uniformtext.mode&&b.hasTransition(f),_=n.select(c).selectAll("g.slice"),T=e[0],k=T.trace,A=T.hierarchy,M=b.findEntryWithLevel(A,k.level),S=b.getMaxDepth(k),E=h._size,L=k.domain,C=E.w*(L.x[1]-L.x[0]),P=E.h*(L.y[1]-L.y[0]),I=.5*Math.min(C,P),O=T.cx=E.l+E.w*(L.x[1]+L.x[0])/2,z=T.cy=E.t+E.h*(1-L.y[0])-P/2;if(!M)return _.remove();var D=null,R={};v&&_.each((function(t){R[b.getPtId(t)]={rpx0:t.rpx0,rpx1:t.rpx1,x0:t.x0,x1:t.x1,transform:t.transform},!D&&b.isEntry(t)&&(D=t)}));var F=function(t){return i.partition().size([2*Math.PI,t.height+1])(t)}(M).descendants(),B=M.height+1,N=0,j=S;T.hasMultipleRoots&&b.isHierarchyRoot(M)&&(F=F.slice(1),B-=1,N=1,j+=1),F=F.filter((function(t){return t.y1<=j}));var U=p(k.rotation);U&&F.forEach((function(t){t.x0+=U,t.x1+=U}));var V=Math.min(B,S),H=function(t){return(t-N)/V*I},q=function(t,e){return[t*Math.cos(e),-t*Math.sin(e)]},G=function(t){return s.pathAnnulus(t.rpx0,t.rpx1,t.x0,t.x1,O,z)},Y=function(t){return O+w(t)[0]*(t.transform.rCenter||0)+(t.transform.x||0)},W=function(t){return z+w(t)[1]*(t.transform.rCenter||0)+(t.transform.y||0)};(_=_.data(F,b.getPtId)).enter().append("g").classed("slice",!0),v?_.exit().transition().each((function(){var t=n.select(this);t.select("path.surface").transition().attrTween("d",(function(t){var e=function(t){var e,r=b.getPtId(t),n=R[r],i=R[b.getPtId(M)];if(i){var o=(t.x1>i.x1?2*Math.PI:0)+U;e=t.rpx1X?2*Math.PI:0)+U;e={x0:i,x1:i}}else e={rpx0:I,rpx1:I},s.extendFlat(e,K(t));else e={rpx0:0,rpx1:0};else e={x0:U,x1:U};return a(e,n)}(t);return function(t){return G(e(t))}})):f.attr("d",G),c.call(y,M,t,e,{eventDataKeys:x.eventDataKeys,transitionTime:x.CLICK_TRANSITION_TIME,transitionEasing:x.CLICK_TRANSITION_EASING}).call(b.setSliceCursor,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:t._transitioning}),f.call(g,i,k);var p=s.ensureSingle(c,"g","slicetext"),_=s.ensureSingle(p,"text","",(function(t){t.attr("data-notex",1)})),w=s.ensureUniformFontSize(t,b.determineTextFont(k,i,h.font));_.text(r.formatSliceLabel(i,M,k,e,h)).classed("slicetext",!0).attr("text-anchor","middle").call(o.font,w).call(l.convertToTspans,t);var A=o.bBox(_.node());i.transform=m(A,i,T),i.transform.targetX=Y(i),i.transform.targetY=W(i);var S=function(t,e){var r=t.transform;return d(r,e),r.fontSize=w.size,u(k.type,r,h),s.getTextTransform(r)};v?_.transition().attrTween("transform",(function(t){var e=function(t){var e,r=R[b.getPtId(t)],n=t.transform;if(r)e=r;else if(e={rpx1:t.rpx1,transform:{textPosAngle:n.textPosAngle,scale:0,rotate:n.rotate,rCenter:n.rCenter,x:n.x,y:n.y}},D)if(t.parent)if(X){var i=t.x1>X?2*Math.PI:0;e.x0=e.x1=i}else s.extendFlat(e,K(t));else e.x0=e.x1=U;else e.x0=e.x1=U;var o=a(e.transform.textPosAngle,t.transform.textPosAngle),l=a(e.rpx1,t.rpx1),c=a(e.x0,t.x0),f=a(e.x1,t.x1),p=a(e.transform.scale,n.scale),d=a(e.transform.rotate,n.rotate),m=0===n.rCenter?3:0===e.transform.rCenter?1/3:1,g=a(e.transform.rCenter,n.rCenter);return function(t){var e=l(t),r=c(t),i=f(t),a=function(t){return g(Math.pow(t,m))}(t),s={pxmid:q(e,(r+i)/2),rpx1:e,transform:{textPosAngle:o(t),rCenter:a,x:n.x,y:n.y}};return u(k.type,n,h),{transform:{targetX:Y(s),targetY:W(s),scale:p(t),rotate:d(t),rCenter:a}}}}(t);return function(t){return S(e(t),A)}})):_.attr("transform",S(i,A))}))}function w(t){return e=t.rpx1,r=t.transform.textPosAngle,[e*Math.sin(r),-e*Math.cos(r)];var e,r}r.plot=function(t,e,r,i){var a,o,s=t._fullLayout,l=s._sunburstlayer,c=!r,u=!s.uniformtext.mode&&b.hasTransition(r);(f("sunburst",s),(a=l.selectAll("g.trace.sunburst").data(e,(function(t){return t[0].trace.uid}))).enter().append("g").classed("trace",!0).classed("sunburst",!0).attr("stroke-linejoin","round"),a.order(),u)?(i&&(o=i()),n.transition().duration(r.duration).ease(r.easing).each("end",(function(){o&&o()})).each("interrupt",(function(){o&&o()})).each((function(){l.selectAll("g.trace").each((function(e){_(t,e,this,r)}))}))):(a.each((function(e){_(t,e,this,r)})),s.uniformtext.mode&&v(t,s._sunburstlayer.selectAll(".trace"),"sunburst"));c&&a.exit().remove()},r.formatSliceLabel=function(t,e,r,n,i){var a=r.texttemplate,o=r.textinfo;if(!(a||o&&"none"!==o))return"";var l=i.separators,c=n[0],u=t.data.data,f=c.hierarchy,h=b.isHierarchyRoot(t),p=b.getParent(f,t),d=b.getValue(t);if(!a){var m,g=o.split("+"),v=function(t){return-1!==g.indexOf(t)},y=[];if(v("label")&&u.label&&y.push(u.label),u.hasOwnProperty("v")&&v("value")&&y.push(b.formatValue(u.v,l)),!h){v("current path")&&y.push(b.getPath(t.data));var x=0;v("percent parent")&&x++,v("percent entry")&&x++,v("percent root")&&x++;var _=x>1;if(x){var w,T=function(t){m=b.formatPercent(w,l),_&&(m+=" of "+t),y.push(m)};v("percent parent")&&!h&&(w=d/b.getValue(p),T("parent")),v("percent entry")&&(w=d/b.getValue(e),T("entry")),v("percent root")&&(w=d/b.getValue(f),T("root"))}}return v("text")&&(m=s.castOption(r,u.i,"text"),s.isValidTextValue(m)&&y.push(m)),y.join("
")}var k=s.castOption(r,u.i,"texttemplate");if(!k)return"";var A={};u.label&&(A.label=u.label),u.hasOwnProperty("v")&&(A.value=u.v,A.valueLabel=b.formatValue(u.v,l)),A.currentPath=b.getPath(t.data),h||(A.percentParent=d/b.getValue(p),A.percentParentLabel=b.formatPercent(A.percentParent,l),A.parent=b.getPtLabel(p)),A.percentEntry=d/b.getValue(e),A.percentEntryLabel=b.formatPercent(A.percentEntry,l),A.entry=b.getPtLabel(e),A.percentRoot=d/b.getValue(f),A.percentRootLabel=b.formatPercent(A.percentRoot,l),A.root=b.getPtLabel(f),u.hasOwnProperty("color")&&(A.color=u.color);var M=s.castOption(r,u.i,"text");return(s.isValidTextValue(M)||""===M)&&(A.text=M),A.customdata=s.castOption(r,u.i,"customdata"),s.texttemplateString(k,A,i._d3locale,A,r._meta||{})}},{"../../components/drawing":661,"../../lib":776,"../../lib/svg_text_utils":802,"../bar/style":928,"../bar/uniform_text":930,"../pie/helpers":1170,"../pie/plot":1174,"./constants":1306,"./fx":1308,"./helpers":1309,"./style":1314,"@plotly/d3":58,"d3-hierarchy":163,"d3-interpolate":164}],1314:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../components/color"),a=t("../../lib"),o=t("../bar/uniform_text").resizeText;function s(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=a.castOption(r,s,"marker.line.color")||i.defaultLine,c=a.castOption(r,s,"marker.line.width")||0;t.style("stroke-width",c).call(i.fill,n.color).call(i.stroke,l).style("opacity",o?r.leaf.opacity:null)}e.exports={style:function(t){var e=t._fullLayout._sunburstlayer.selectAll(".trace");o(t,e,"sunburst"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style("opacity",r.opacity),e.selectAll("path.surface").each((function(t){n.select(this).call(s,t,r)}))}))},styleOne:s}},{"../../components/color":639,"../../lib":776,"../bar/uniform_text":930,"@plotly/d3":58}],1315:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/attributes"),a=t("../../plots/cartesian/axis_format_attributes").axisHoverFormat,o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../plots/attributes"),l=t("../../lib/extend").extendFlat,c=t("../../plot_api/edit_types").overrideAll;function u(t){return{show:{valType:"boolean",dflt:!1},start:{valType:"number",dflt:null,editType:"plot"},end:{valType:"number",dflt:null,editType:"plot"},size:{valType:"number",dflt:null,min:0,editType:"plot"},project:{x:{valType:"boolean",dflt:!1},y:{valType:"boolean",dflt:!1},z:{valType:"boolean",dflt:!1}},color:{valType:"color",dflt:n.defaultLine},usecolormap:{valType:"boolean",dflt:!1},width:{valType:"number",min:1,max:16,dflt:2},highlight:{valType:"boolean",dflt:!0},highlightcolor:{valType:"color",dflt:n.defaultLine},highlightwidth:{valType:"number",min:1,max:16,dflt:2}}}var f=e.exports=c(l({z:{valType:"data_array"},x:{valType:"data_array"},y:{valType:"data_array"},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:o(),xhoverformat:a("x"),yhoverformat:a("y"),zhoverformat:a("z"),connectgaps:{valType:"boolean",dflt:!1,editType:"calc"},surfacecolor:{valType:"data_array"}},i("",{colorAttr:"z or surfacecolor",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:"calc"}),{contours:{x:u(),y:u(),z:u()},hidesurface:{valType:"boolean",dflt:!1},lightposition:{x:{valType:"number",min:-1e5,max:1e5,dflt:10},y:{valType:"number",min:-1e5,max:1e5,dflt:1e4},z:{valType:"number",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:"number",min:0,max:1,dflt:.8},diffuse:{valType:"number",min:0,max:1,dflt:.8},specular:{valType:"number",min:0,max:2,dflt:.05},roughness:{valType:"number",min:0,max:1,dflt:.5},fresnel:{valType:"number",min:0,max:5,dflt:.2}},opacity:{valType:"number",min:0,max:1,dflt:1},opacityscale:{valType:"any",editType:"calc"},_deprecated:{zauto:l({},i.zauto,{}),zmin:l({},i.zmin,{}),zmax:l({},i.zmax,{})},hoverinfo:l({},s.hoverinfo),showlegend:l({},s.showlegend,{dflt:!1})}),"calc","nested");f.x.editType=f.y.editType=f.z.editType="calc+clearAxisTypes",f.transforms=void 0},{"../../components/color":639,"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plot_api/edit_types":809,"../../plots/attributes":823,"../../plots/cartesian/axis_format_attributes":830,"../../plots/template_attributes":899}],1316:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){e.surfacecolor?n(t,e,{vals:e.surfacecolor,containerStr:"",cLetter:"c"}):n(t,e,{vals:e.z,containerStr:"",cLetter:"c"})}},{"../../components/colorscale/calc":647}],1317:[function(t,e,r){"use strict";var n=t("gl-surface3d"),i=t("ndarray"),a=t("ndarray-linear-interpolate").d2,o=t("../heatmap/interp2d"),s=t("../heatmap/find_empties"),l=t("../../lib").isArrayOrTypedArray,c=t("../../lib/gl_format_color").parseColorScale,u=t("../../lib/str2rgbarray"),f=t("../../components/colorscale").extractOpts;function h(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var p=h.prototype;p.getXat=function(t,e,r,n){var i=l(this.data.x)?l(this.data.x[0])?this.data.x[e][t]:this.data.x[t]:t;return void 0===r?i:n.d2l(i,0,r)},p.getYat=function(t,e,r,n){var i=l(this.data.y)?l(this.data.y[0])?this.data.y[e][t]:this.data.y[e]:e;return void 0===r?i:n.d2l(i,0,r)},p.getZat=function(t,e,r,n){var i=this.data.z[e][t];return null===i&&this.data.connectgaps&&this.data._interpolatedZ&&(i=this.data._interpolatedZ[e][t]),void 0===r?i:n.d2l(i,0,r)},p.handlePick=function(t){if(t.object===this.surface){var e=(t.data.index[0]-1)/this.dataScaleX-1,r=(t.data.index[1]-1)/this.dataScaleY-1,n=Math.max(Math.min(Math.round(e),this.data.z[0].length-1),0),i=Math.max(Math.min(Math.round(r),this.data._ylength-1),0);t.index=[n,i],t.traceCoordinate=[this.getXat(n,i),this.getYat(n,i),this.getZat(n,i)],t.dataCoordinate=[this.getXat(n,i,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(n,i,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(n,i,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var a=0;a<3;a++){var o=t.dataCoordinate[a];null!=o&&(t.dataCoordinate[a]*=this.scene.dataScale[a])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[i]&&void 0!==s[i][n]?t.textLabel=s[i][n]:t.textLabel=s||"",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}};var d=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function m(t,e){if(t0){r=d[n];break}return r}function y(t,e){if(!(t<1||e<1)){for(var r=g(t),n=g(e),i=1,a=0;a_;)r--,r/=v(r),++r1?n:1},p.refineCoords=function(t){for(var e=this.dataScaleX,r=this.dataScaleY,n=t[0].shape[0],a=t[0].shape[1],o=0|Math.floor(t[0].shape[0]*e+1),s=0|Math.floor(t[0].shape[1]*r+1),l=1+n+1,c=1+a+1,u=i(new Float32Array(l*c),[l,c]),f=[1/e,0,0,0,1/r,0,0,0,1],h=0;h0&&null!==this.contourStart[t]&&null!==this.contourEnd[t]&&this.contourEnd[t]>this.contourStart[t]))for(i[t]=!0,e=this.contourStart[t];ea&&(this.minValues[e]=a),this.maxValues[e]",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:"cubic-out",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:"cubic-out",uplift:5,wrapSpacer:" ",wrapSplitCharacter:" ",cn:{table:"table",tableControlView:"table-control-view",scrollBackground:"scroll-background",yColumn:"y-column",columnBlock:"column-block",scrollAreaClip:"scroll-area-clip",scrollAreaClipRect:"scroll-area-clip-rect",columnBoundary:"column-boundary",columnBoundaryClippath:"column-boundary-clippath",columnBoundaryRect:"column-boundary-rect",columnCells:"column-cells",columnCell:"column-cell",cellRect:"cell-rect",cellText:"cell-text",cellTextHolder:"cell-text-holder",scrollbarKit:"scrollbar-kit",scrollbar:"scrollbar",scrollbarSlider:"scrollbar-slider",scrollbarGlyph:"scrollbar-glyph",scrollbarCaptureZone:"scrollbar-capture-zone"}}},{}],1324:[function(t,e,r){"use strict";var n=t("./constants"),i=t("../../lib/extend").extendFlat,a=t("fast-isnumeric");function o(t){if(Array.isArray(t)){for(var e=0,r=0;r=e||c===t.length-1)&&(n[i]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},i+=a,s=c+1,a=0);return n}e.exports=function(t,e){var r=l(e.cells.values),p=function(t){return t.slice(e.header.values.length,t.length)},d=l(e.header.values);d.length&&!d[0].length&&(d[0]=[""],d=l(d));var m=d.concat(p(r).map((function(){return c((d[0]||[""]).length)}))),g=e.domain,v=Math.floor(t._fullLayout._size.w*(g.x[1]-g.x[0])),y=Math.floor(t._fullLayout._size.h*(g.y[1]-g.y[0])),x=e.header.values.length?m[0].map((function(){return e.header.height})):[n.emptyHeaderHeight],b=r.length?r[0].map((function(){return e.cells.height})):[],_=x.reduce(s,0),w=h(b,y-_+n.uplift),T=f(h(x,_),[]),k=f(w,T),A={},M=e._fullInput.columnorder.concat(p(r.map((function(t,e){return e})))),S=m.map((function(t,r){var n=Array.isArray(e.columnwidth)?e.columnwidth[Math.min(r,e.columnwidth.length-1)]:e.columnwidth;return a(n)?Number(n):1})),E=S.reduce(s,0);S=S.map((function(t){return t/E*v}));var L=Math.max(o(e.header.line.width),o(e.cells.line.width)),C={key:e.uid+t._context.staticPlot,translateX:g.x[0]*t._fullLayout._size.w,translateY:t._fullLayout._size.h*(1-g.y[1]),size:t._fullLayout._size,width:v,maxLineWidth:L,height:y,columnOrder:M,groupHeight:y,rowBlocks:k,headerRowBlocks:T,scrollY:0,cells:i({},e.cells,{values:r}),headerCells:i({},e.header,{values:m}),gdColumns:m.map((function(t){return t[0]})),gdColumnsOriginalOrder:m.map((function(t){return t[0]})),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:m.map((function(t,e){var r=A[t];return A[t]=(r||0)+1,{key:t+"__"+A[t],label:t,specIndex:e,xIndex:M[e],xScale:u,x:void 0,calcdata:void 0,columnWidth:S[e]}}))};return C.columns.forEach((function(t){t.calcdata=C,t.x=u(t)})),C}},{"../../lib/extend":766,"./constants":1323,"fast-isnumeric":242}],1325:[function(t,e,r){"use strict";var n=t("../../lib/extend").extendFlat;r.splitToPanels=function(t){var e=[0,0],r=n({},t,{key:"header",type:"header",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!0,values:t.calcdata.headerCells.values[t.specIndex],rowBlocks:t.calcdata.headerRowBlocks,calcdata:n({},t.calcdata,{cells:t.calcdata.headerCells})});return[n({},t,{key:"cells1",type:"cells",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),n({},t,{key:"cells2",type:"cells",page:1,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),r]},r.splitToCells=function(t){var e=function(t){var e=t.rowBlocks[t.page],r=e?e.rows[0].rowIndex:0,n=e?r+e.rows.length:0;return[r,n]}(t);return(t.values||[]).slice(e[0],e[1]).map((function(r,n){return{keyWithinBlock:n+("string"==typeof r&&r.match(/[<$&> ]/)?"_keybuster_"+Math.random():""),key:e[0]+n,column:t,calcdata:t.calcdata,page:t.page,rowBlocks:t.rowBlocks,value:r}}))}},{"../../lib/extend":766}],1326:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../plots/domain").defaults;e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}a(e,o,s),s("columnwidth"),s("header.values"),s("header.format"),s("header.align"),s("header.prefix"),s("header.suffix"),s("header.height"),s("header.line.width"),s("header.line.color"),s("header.fill.color"),n.coerceFont(s,"header.font",n.extendFlat({},o.font)),function(t,e){for(var r=t.columnorder||[],n=t.header.values.length,i=r.slice(0,n),a=i.slice().sort((function(t,e){return t-e})),o=i.map((function(t){return a.indexOf(t)})),s=o.length;s/i),l=!o||s;t.mayHaveMarkup=o&&i.match(/[<&>]/);var c,u="string"==typeof(c=i)&&c.match(n.latexCheck);t.latex=u;var f,h,p=u?"":T(t.calcdata.cells.prefix,e,r)||"",d=u?"":T(t.calcdata.cells.suffix,e,r)||"",m=u?null:T(t.calcdata.cells.format,e,r)||null,g=p+(m?a(m)(t.value):t.value)+d;if(t.wrappingNeeded=!t.wrapped&&!l&&!u&&(f=w(g)),t.cellHeightMayIncrease=s||u||t.mayHaveMarkup||(void 0===f?w(g):f),t.needsConvertToTspans=t.mayHaveMarkup||t.wrappingNeeded||t.latex,t.wrappingNeeded){var v=(" "===n.wrapSplitCharacter?g.replace(/i&&n.push(a),i+=l}return n}(i,l,s);1===c.length&&(c[0]===i.length-1?c.unshift(c[0]-1):c.push(c[0]+1)),c[0]%2&&c.reverse(),e.each((function(t,e){t.page=c[e],t.scrollY=l})),e.attr("transform",(function(t){var e=D(t.rowBlocks,t.page)-t.scrollY;return u(0,e)})),t&&(C(t,r,e,c,n.prevPages,n,0),C(t,r,e,c,n.prevPages,n,1),x(r,t))}}function L(t,e,r,a){return function(o){var s=o.calcdata?o.calcdata:o,l=e.filter((function(t){return s.key===t.key})),c=r||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===a?s.scrollY+c*i.event.dy:a;var f=l.selectAll("."+n.cn.yColumn).selectAll("."+n.cn.columnBlock).filter(A);return E(t,f,l),s.scrollY===u}}function C(t,e,r,n,i,a,o){n[o]!==i[o]&&(clearTimeout(a.currentRepaint[o]),a.currentRepaint[o]=setTimeout((function(){var a=r.filter((function(t,e){return e===o&&n[e]!==i[e]}));b(t,e,a,r),i[o]=n[o]})))}function P(t,e,r,a){return function(){var o=i.select(e.parentNode);o.each((function(t){var e=t.fragments;o.selectAll("tspan.line").each((function(t,r){e[r].width=this.getComputedTextLength()}));var r,i,a=e[e.length-1].width,s=e.slice(0,-1),l=[],c=0,u=t.column.columnWidth-2*n.cellPad;for(t.value="";s.length;)c+(i=(r=s.shift()).width+a)>u&&(t.value+=l.join(n.wrapSpacer)+n.lineBreaker,l=[],c=0),l.push(r.text),c+=i;c&&(t.value+=l.join(n.wrapSpacer)),t.wrapped=!0})),o.selectAll("tspan.line").remove(),_(o.select("."+n.cn.cellText),r,t,a),i.select(e.parentNode.parentNode).call(z)}}function I(t,e,r,a,o){return function(){if(!o.settledY){var s=i.select(e.parentNode),l=B(o),c=o.key-l.firstRowIndex,f=l.rows[c].rowHeight,h=o.cellHeightMayIncrease?e.parentNode.getBoundingClientRect().height+2*n.cellPad:f,p=Math.max(h,f);p-l.rows[c].rowHeight&&(l.rows[c].rowHeight=p,t.selectAll("."+n.cn.columnCell).call(z),E(null,t.filter(A),0),x(r,a,!0)),s.attr("transform",(function(){var t=this.parentNode.getBoundingClientRect(),e=i.select(this.parentNode).select("."+n.cn.cellRect).node().getBoundingClientRect(),r=this.transform.baseVal.consolidate(),a=e.top-t.top+(r?r.matrix.f:n.cellPad);return u(O(o,i.select(this.parentNode).select("."+n.cn.cellTextHolder).node().getBoundingClientRect().width),a)})),o.settledY=!0}}}function O(t,e){switch(t.align){case"left":return n.cellPad;case"right":return t.column.columnWidth-(e||0)-n.cellPad;case"center":return(t.column.columnWidth-(e||0))/2;default:return n.cellPad}}function z(t){t.attr("transform",(function(t){var e=t.rowBlocks[0].auxiliaryBlocks.reduce((function(t,e){return t+R(e,1/0)}),0),r=R(B(t),t.key);return u(0,r+e)})).selectAll("."+n.cn.cellRect).attr("height",(function(t){return(e=B(t),r=t.key,e.rows[r-e.firstRowIndex]).rowHeight;var e,r}))}function D(t,e){for(var r=0,n=e-1;n>=0;n--)r+=F(t[n]);return r}function R(t,e){for(var r=0,n=0;n","<","|","/","\\"],dflt:">",editType:"plot"},thickness:{valType:"number",min:12,editType:"plot"},textfont:u({},s.textfont,{}),editType:"calc"},text:s.text,textinfo:l.textinfo,texttemplate:i({editType:"plot"},{keys:c.eventDataKeys.concat(["label","value"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:n({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:u({},s.outsidetextfont,{}),textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right"],dflt:"top left",editType:"plot"},sort:s.sort,root:l.root,domain:o({name:"treemap",trace:!0,editType:"calc"})}},{"../../components/colorscale/attributes":646,"../../lib/extend":766,"../../plots/domain":855,"../../plots/template_attributes":899,"../pie/attributes":1165,"../sunburst/attributes":1303,"./constants":1332}],1330:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="treemap",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":890}],1331:[function(t,e,r){"use strict";var n=t("../sunburst/calc");r.calc=function(t,e){return n.calc(t,e)},r.crossTraceCalc=function(t){return n._runCrossTraceCalc("treemap",t)}},{"../sunburst/calc":1305}],1332:[function(t,e,r){"use strict";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:"poly",eventDataKeys:["currentPath","root","entry","percentRoot","percentEntry","percentParent"],gapWithPathbar:1}},{}],1333:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../components/color"),o=t("../../plots/domain").defaults,s=t("../bar/defaults").handleText,l=t("../bar/constants").TEXTPAD,c=t("../../components/colorscale"),u=c.hasColorscale,f=c.handleDefaults;e.exports=function(t,e,r,c){function h(r,a){return n.coerce(t,e,i,r,a)}var p=h("labels"),d=h("parents");if(p&&p.length&&d&&d.length){var m=h("values");m&&m.length?h("branchvalues"):h("count"),h("level"),h("maxdepth"),"squarify"===h("tiling.packing")&&h("tiling.squarifyratio"),h("tiling.flip"),h("tiling.pad");var g=h("text");h("texttemplate"),e.texttemplate||h("textinfo",Array.isArray(g)?"text+label":"label"),h("hovertext"),h("hovertemplate");var v=h("pathbar.visible");s(t,e,c,h,"auto",{hasPathbar:v,moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),h("textposition");var y=-1!==e.textposition.indexOf("bottom");h("marker.line.width")&&h("marker.line.color",c.paper_bgcolor);var x=h("marker.colors");(e._hasColorscale=u(t,"marker","colors")||(t.marker||{}).coloraxis)?f(t,e,c,h,{prefix:"marker.",cLetter:"c"}):h("marker.depthfade",!(x||[]).length);var b=2*e.textfont.size;h("marker.pad.t",y?b/4:b),h("marker.pad.l",b/4),h("marker.pad.r",b/4),h("marker.pad.b",y?b:b/4),e._hovered={marker:{line:{width:2,color:a.contrast(c.paper_bgcolor)}}},v&&(h("pathbar.thickness",e.pathbar.textfont.size+2*l),h("pathbar.side"),h("pathbar.edgeshape")),h("sort"),h("root.color"),o(e,c,h),e._length=null}else e.visible=!1}},{"../../components/color":639,"../../components/colorscale":651,"../../lib":776,"../../plots/domain":855,"../bar/constants":916,"../bar/defaults":918,"./attributes":1329}],1334:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../sunburst/helpers"),a=t("../bar/uniform_text").clearMinTextSize,o=t("../bar/style").resizeText,s=t("./plot_one");e.exports=function(t,e,r,l,c){var u,f,h=c.type,p=c.drawDescendants,d=t._fullLayout,m=d["_"+h+"layer"],g=!r;(a(h,d),(u=m.selectAll("g.trace."+h).data(e,(function(t){return t[0].trace.uid}))).enter().append("g").classed("trace",!0).classed(h,!0),u.order(),!d.uniformtext.mode&&i.hasTransition(r))?(l&&(f=l()),n.transition().duration(r.duration).ease(r.easing).each("end",(function(){f&&f()})).each("interrupt",(function(){f&&f()})).each((function(){m.selectAll("g.trace").each((function(e){s(t,e,this,r,p)}))}))):(u.each((function(e){s(t,e,this,r,p)})),d.uniformtext.mode&&o(t,m.selectAll(".trace"),h));g&&u.exit().remove()}},{"../bar/style":928,"../bar/uniform_text":930,"../sunburst/helpers":1309,"./plot_one":1343,"@plotly/d3":58}],1335:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../lib/svg_text_utils"),s=t("./partition"),l=t("./style").styleOne,c=t("./constants"),u=t("../sunburst/helpers"),f=t("../sunburst/fx");e.exports=function(t,e,r,h,p){var d=p.barDifY,m=p.width,g=p.height,v=p.viewX,y=p.viewY,x=p.pathSlice,b=p.toMoveInsideSlice,_=p.strTransform,w=p.hasTransition,T=p.handleSlicesExit,k=p.makeUpdateSliceInterpolator,A=p.makeUpdateTextInterpolator,M={},S=t._fullLayout,E=e[0],L=E.trace,C=E.hierarchy,P=m/L._entryDepth,I=u.listPath(r.data,"id"),O=s(C.copy(),[m,g],{packing:"dice",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(O=O.filter((function(t){var e=I.indexOf(t.data.id);return-1!==e&&(t.x0=P*e,t.x1=P*(e+1),t.y0=d,t.y1=d+g,t.onPathbar=!0,!0)}))).reverse(),(h=h.data(O,u.getPtId)).enter().append("g").classed("pathbar",!0),T(h,!0,M,[m,g],x),h.order();var z=h;w&&(z=z.transition().each("end",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})}))),z.each((function(s){s._x0=v(s.x0),s._x1=v(s.x1),s._y0=y(s.y0),s._y1=y(s.y1),s._hoverX=v(s.x1-Math.min(m,g)/2),s._hoverY=y(s.y1-g/2);var h=n.select(this),p=i.ensureSingle(h,"path","surface",(function(t){t.style("pointer-events","all")}));w?p.transition().attrTween("d",(function(t){var e=k(t,!0,M,[m,g]);return function(t){return x(e(t))}})):p.attr("d",x),h.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:t._transitioning}),p.call(l,s,L,{hovered:!1}),s._text=(u.getPtLabel(s)||"").split("
").join(" ")||"";var d=i.ensureSingle(h,"g","slicetext"),T=i.ensureSingle(d,"text","",(function(t){t.attr("data-notex",1)})),E=i.ensureUniformFontSize(t,u.determineTextFont(L,s,S.font,{onPathbar:!0}));T.text(s._text||" ").classed("slicetext",!0).attr("text-anchor","start").call(a.font,E).call(o.convertToTspans,t),s.textBB=a.bBox(T.node()),s.transform=b(s,{fontSize:E.size,onPathbar:!0}),s.transform.fontSize=E.size,w?T.transition().attrTween("transform",(function(t){var e=A(t,!0,M,[m,g]);return function(t){return _(e(t))}})):T.attr("transform",_(s))}))}},{"../../components/drawing":661,"../../lib":776,"../../lib/svg_text_utils":802,"../sunburst/fx":1308,"../sunburst/helpers":1309,"./constants":1332,"./partition":1341,"./style":1344,"@plotly/d3":58}],1336:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../lib/svg_text_utils"),s=t("./partition"),l=t("./style").styleOne,c=t("./constants"),u=t("../sunburst/helpers"),f=t("../sunburst/fx"),h=t("../sunburst/plot").formatSliceLabel;e.exports=function(t,e,r,p,d){var m=d.width,g=d.height,v=d.viewX,y=d.viewY,x=d.pathSlice,b=d.toMoveInsideSlice,_=d.strTransform,w=d.hasTransition,T=d.handleSlicesExit,k=d.makeUpdateSliceInterpolator,A=d.makeUpdateTextInterpolator,M=d.prevEntry,S=t._fullLayout,E=e[0].trace,L=-1!==E.textposition.indexOf("left"),C=-1!==E.textposition.indexOf("right"),P=-1!==E.textposition.indexOf("bottom"),I=!P&&!E.marker.pad.t||P&&!E.marker.pad.b,O=s(r,[m,g],{packing:E.tiling.packing,squarifyratio:E.tiling.squarifyratio,flipX:E.tiling.flip.indexOf("x")>-1,flipY:E.tiling.flip.indexOf("y")>-1,pad:{inner:E.tiling.pad,top:E.marker.pad.t,left:E.marker.pad.l,right:E.marker.pad.r,bottom:E.marker.pad.b}}).descendants(),z=1/0,D=-1/0;O.forEach((function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(z=Math.min(z,e),D=Math.max(D,e))})),p=p.data(O,u.getPtId),E._maxVisibleLayers=isFinite(D)?D-z+1:0,p.enter().append("g").classed("slice",!0),T(p,!1,{},[m,g],x),p.order();var R=null;if(w&&M){var F=u.getPtId(M);p.each((function(t){null===R&&u.getPtId(t)===F&&(R={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})}))}var B=function(){return R||{x0:0,x1:m,y0:0,y1:g}},N=p;return w&&(N=N.transition().each("end",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),N.each((function(s){var p=u.isHeader(s,E);s._x0=v(s.x0),s._x1=v(s.x1),s._y0=y(s.y0),s._y1=y(s.y1),s._hoverX=v(s.x1-E.marker.pad.r),s._hoverY=y(P?s.y1-E.marker.pad.b/2:s.y0+E.marker.pad.t/2);var d=n.select(this),T=i.ensureSingle(d,"path","surface",(function(t){t.style("pointer-events","all")}));w?T.transition().attrTween("d",(function(t){var e=k(t,!1,B(),[m,g]);return function(t){return x(e(t))}})):T.attr("d",x),d.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),T.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text="":s._text=p?I?"":u.getPtLabel(s)||"":h(s,r,E,e,S)||"";var M=i.ensureSingle(d,"g","slicetext"),O=i.ensureSingle(M,"text","",(function(t){t.attr("data-notex",1)})),z=i.ensureUniformFontSize(t,u.determineTextFont(E,s,S.font));O.text(s._text||" ").classed("slicetext",!0).attr("text-anchor",C?"end":L||p?"start":"middle").call(a.font,z).call(o.convertToTspans,t),s.textBB=a.bBox(O.node()),s.transform=b(s,{fontSize:z.size,isHeader:p}),s.transform.fontSize=z.size,w?O.transition().attrTween("transform",(function(t){var e=A(t,!1,B(),[m,g]);return function(t){return _(e(t))}})):O.attr("transform",_(s))})),R}},{"../../components/drawing":661,"../../lib":776,"../../lib/svg_text_utils":802,"../sunburst/fx":1308,"../sunburst/helpers":1309,"../sunburst/plot":1313,"./constants":1332,"./partition":1341,"./style":1344,"@plotly/d3":58}],1337:[function(t,e,r){"use strict";e.exports=function t(e,r,n){var i;n.swapXY&&(i=e.x0,e.x0=e.y0,e.y0=i,i=e.x1,e.x1=e.y1,e.y1=i),n.flipX&&(i=e.x0,e.x0=r[0]-e.x1,e.x1=r[0]-i),n.flipY&&(i=e.y0,e.y0=r[1]-e.y1,e.y1=r[1]-i);var a=e.children;if(a)for(var o=0;o-1?C+O:-(I+O):0,D={x0:P,x1:P,y0:z,y1:z+I},R=function(t,e,r){var n=v.tiling.pad,i=function(t){return t-n<=e.x0},a=function(t){return t+n>=e.x1},o=function(t){return t-n<=e.y0},s=function(t){return t+n>=e.y1};return t.x0===e.x0&&t.x1===e.x1&&t.y0===e.y0&&t.y1===e.y1?{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1}:{x0:i(t.x0-n)?0:a(t.x0-n)?r[0]:t.x0,x1:i(t.x1+n)?0:a(t.x1+n)?r[0]:t.x1,y0:o(t.y0-n)?0:s(t.y0-n)?r[1]:t.y0,y1:o(t.y1+n)?0:s(t.y1+n)?r[1]:t.y1}},F=null,B={},N={},j=null,U=function(t,e){return e?B[h(t)]:N[h(t)]},V=function(t,e,r,n){if(e)return B[h(x)]||D;var i=N[v.level]||r;return function(t){return t.data.depth-b.data.depth=(n-=(y?g:g.r)-s)){var x=(r+n)/2;r=x,n=x}var b;f?i<(b=a-(y?g:g.b))&&b"===tt?(l.x-=a,c.x-=a,u.x-=a,f.x-=a):"/"===tt?(u.x-=a,f.x-=a,o.x-=a/2,s.x-=a/2):"\\"===tt?(l.x-=a,c.x-=a,o.x-=a/2,s.x-=a/2):"<"===tt&&(o.x-=a,s.x-=a),$(l),$(f),$(o),$(c),$(u),$(s),"M"+K(l.x,l.y)+"L"+K(c.x,c.y)+"L"+K(s.x,s.y)+"L"+K(u.x,u.y)+"L"+K(f.x,f.y)+"L"+K(o.x,o.y)+"Z"},toMoveInsideSlice:et,makeUpdateSliceInterpolator:nt,makeUpdateTextInterpolator:it,handleSlicesExit:at,hasTransition:A,strTransform:ot}):w.remove()}},{"../../lib":776,"../bar/constants":916,"../bar/plot":925,"../bar/uniform_text":930,"../sunburst/helpers":1309,"./constants":1332,"./draw_ancestors":1335,"@plotly/d3":58,"d3-interpolate":164}],1344:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../components/color"),a=t("../../lib"),o=t("../sunburst/helpers"),s=t("../bar/uniform_text").resizeText;function l(t,e,r,n){var s,l,c=(n||{}).hovered,u=e.data.data,f=u.i,h=u.color,p=o.isHierarchyRoot(e),d=1;if(c)s=r._hovered.marker.line.color,l=r._hovered.marker.line.width;else if(p&&h===r.root.color)d=100,s="rgba(0,0,0,0)",l=0;else if(s=a.castOption(r,f,"marker.line.color")||i.defaultLine,l=a.castOption(r,f,"marker.line.width")||0,!r._hasColorscale&&!e.onPathbar){var m=r.marker.depthfade;if(m){var g,v=i.combine(i.addOpacity(r._backgroundColor,.75),h);if(!0===m){var y=o.getMaxDepth(r);g=isFinite(y)?o.isLeaf(e)?0:r._maxVisibleLayers-(e.data.depth-r._entryDepth):e.data.height+1}else g=e.data.depth-r._entryDepth,r._atRootLevel||g++;if(g>0)for(var x=0;x0){var x,b,_,w,T,k=t.xa,A=t.ya;"h"===p.orientation?(T=e,x="y",_=A,b="x",w=k):(T=r,x="x",_=k,b="y",w=A);var M=h[t.index];if(T>=M.span[0]&&T<=M.span[1]){var S=n.extendFlat({},t),E=w.c2p(T,!0),L=o.getKdeValue(M,p,T),C=o.getPositionOnKdePath(M,p,E),P=_._offset,I=_._length;S[x+"0"]=C[0],S[x+"1"]=C[1],S[b+"0"]=S[b+"1"]=E,S[b+"Label"]=b+": "+i.hoverLabelText(w,T,p[b+"hoverformat"])+", "+h[0].t.labels.kde+" "+L.toFixed(3),S.spikeDistance=y[0].spikeDistance;var O=x+"Spike";S[O]=y[0][O],y[0].spikeDistance=void 0,y[0][O]=void 0,S.hovertemplate=!1,v.push(S),(u={stroke:t.color})[x+"1"]=n.constrain(P+C[0],P,P+I),u[x+"2"]=n.constrain(P+C[1],P,P+I),u[b+"1"]=u[b+"2"]=w._offset+E}}m&&(v=v.concat(y))}-1!==d.indexOf("points")&&(c=a.hoverOnPoints(t,e,r));var z=f.selectAll(".violinline-"+p.uid).data(u?[0]:[]);return z.enter().append("line").classed("violinline-"+p.uid,!0).attr("stroke-width",1.5),z.exit().remove(),z.attr(u),"closest"===s?c?[c]:v:c?(v.push(c),v):v}},{"../../lib":776,"../../plots/cartesian/axes":827,"../box/hover":944,"./helpers":1349}],1351:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("../box/defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style"),styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../box/select"),moduleType:"trace",name:"violin",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","symbols","oriented","box-violin","showLegend","violinLayout","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../box/defaults":942,"../box/select":949,"../scatter/style":1215,"./attributes":1345,"./calc":1346,"./cross_trace_calc":1347,"./defaults":1348,"./hover":1350,"./layout_attributes":1352,"./layout_defaults":1353,"./plot":1354,"./style":1355}],1352:[function(t,e,r){"use strict";var n=t("../box/layout_attributes"),i=t("../../lib").extendFlat;e.exports={violinmode:i({},n.boxmode,{}),violingap:i({},n.boxgap,{}),violingroupgap:i({},n.boxgroupgap,{})}},{"../../lib":776,"../box/layout_attributes":946}],1353:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes"),a=t("../box/layout_defaults");e.exports=function(t,e,r){a._supply(t,e,r,(function(r,a){return n.coerce(t,e,i,r,a)}),"violin")}},{"../../lib":776,"../box/layout_defaults":947,"./layout_attributes":1352}],1354:[function(t,e,r){"use strict";var n=t("@plotly/d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../box/plot"),s=t("../scatter/line_points"),l=t("./helpers");e.exports=function(t,e,r,c){var u=t._fullLayout,f=e.xaxis,h=e.yaxis;function p(t){var e=s(t,{xaxis:f,yaxis:h,connectGaps:!0,baseTolerance:.75,shape:"spline",simplify:!0,linearized:!0});return a.smoothopen(e[0],1)}i.makeTraceGroups(c,r,"trace violins").each((function(t){var r=n.select(this),a=t[0],s=a.t,c=a.trace;if(!0!==c.visible||s.empty)r.remove();else{var d=s.bPos,m=s.bdPos,g=e[s.valLetter+"axis"],v=e[s.posLetter+"axis"],y="both"===c.side,x=y||"positive"===c.side,b=y||"negative"===c.side,_=r.selectAll("path.violin").data(i.identity);_.enter().append("path").style("vector-effect","non-scaling-stroke").attr("class","violin"),_.exit().remove(),_.each((function(t){var e,r,i,a,o,l,f,h,_=n.select(this),w=t.density,T=w.length,k=v.c2l(t.pos+d,!0),A=v.l2p(k);if(c.width)e=s.maxKDE/m;else{var M=u._violinScaleGroupStats[c.scalegroup];e="count"===c.scalemode?M.maxKDE/m*(M.maxCount/t.pts.length):M.maxKDE/m}if(x){for(f=new Array(T),o=0;o")),u.color=function(t,e){var r=t[e.dir].marker,n=r.color,a=r.line.color,o=r.line.width;if(i(n))return n;if(i(a)&&o)return a}(h,g),[u]}function k(t){return n(m,t,h[d+"hoverformat"])}}},{"../../components/color":639,"../../constants/delta.js":746,"../../plots/cartesian/axes":827,"../bar/hover":921}],1367:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style").style,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("../bar/select"),moduleType:"trace",name:"waterfall",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../bar/select":926,"./attributes":1360,"./calc":1361,"./cross_trace_calc":1363,"./defaults":1364,"./event_data":1365,"./hover":1366,"./layout_attributes":1368,"./layout_defaults":1369,"./plot":1370,"./style":1371}],1368:[function(t,e,r){"use strict";e.exports={waterfallmode:{valType:"enumerated",values:["group","overlay"],dflt:"group",editType:"calc"},waterfallgap:{valType:"number",min:0,max:1,editType:"calc"},waterfallgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],1369:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s0&&(g+=h?"M"+f[0]+","+d[1]+"V"+d[0]:"M"+f[1]+","+d[0]+"H"+f[0]),"between"!==p&&(r.isSum||s path").each((function(t){if(!t.isBlank){var e=s[t.dir].marker;n.select(this).call(a.fill,e.color).call(a.stroke,e.line.color).call(i.dashLine,e.line.dash,e.line.width).style("opacity",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(".lines").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll("path"),t.width,t.color,t.dash)}))}))}}},{"../../components/color":639,"../../components/drawing":661,"../../constants/interactions":751,"../bar/style":928,"../bar/uniform_text":930,"@plotly/d3":58}],1372:[function(t,e,r){"use strict";var n=t("../plots/cartesian/axes"),i=t("../lib"),a=t("../plot_api/plot_schema"),o=t("./helpers").pointsAccessorFunction,s=t("../constants/numerical").BADNUM;r.moduleType="transform",r.name="aggregate";var l=r.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc"},groups:{valType:"string",strict:!0,noBlank:!0,arrayOk:!0,dflt:"x",editType:"calc"},aggregations:{_isLinkedToArray:"aggregation",target:{valType:"string",editType:"calc"},func:{valType:"enumerated",values:["count","sum","avg","median","mode","rms","stddev","min","max","first","last","change","range"],dflt:"first",editType:"calc"},funcmode:{valType:"enumerated",values:["sample","population"],dflt:"sample",editType:"calc"},enabled:{valType:"boolean",dflt:!0,editType:"calc"},editType:"calc"},editType:"calc"},c=l.aggregations;function u(t,e,r,a){if(a.enabled){for(var o=a.target,l=i.nestedProperty(e,o),c=l.get(),u=function(t,e){var r=t.func,n=e.d2c,a=e.c2d;switch(r){case"count":return f;case"first":return h;case"last":return p;case"sum":return function(t,e){for(var r=0,i=0;ii&&(i=u,o=c)}}return i?a(o):s};case"rms":return function(t,e){for(var r=0,i=0,o=0;o":return function(t){return h(t)>s};case">=":return function(t){return h(t)>=s};case"[]":return function(t){var e=h(t);return e>=s[0]&&e<=s[1]};case"()":return function(t){var e=h(t);return e>s[0]&&e=s[0]&&es[0]&&e<=s[1]};case"][":return function(t){var e=h(t);return e<=s[0]||e>=s[1]};case")(":return function(t){var e=h(t);return es[1]};case"](":return function(t){var e=h(t);return e<=s[0]||e>s[1]};case")[":return function(t){var e=h(t);return e=s[1]};case"{}":return function(t){return-1!==s.indexOf(h(t))};case"}{":return function(t){return-1===s.indexOf(h(t))}}}(r,a.getDataToCoordFunc(t,e,s,i),h),x={},b={},_=0;d?(g=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set(new Array(f))},v=function(t,e){var r=x[t.astr][e];t.get()[e]=r}):(g=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set([])},v=function(t,e){var r=x[t.astr][e];t.get().push(r)}),k(g);for(var w=o(e.transforms,r),T=0;T1?"%{group} (%{trace})":"%{group}");var l=t.styles,c=o.styles=[];if(l)for(a=0;a>0}function ToUint32(v){return v>>>0}var LN2=Math.LN2,abs=Math.abs,floor=Math.floor,log=Math.log,max=Math.max,min=Math.min,pow=Math.pow,round=Math.round;(function(){var orig=Object.defineProperty;var dom_only=!function(){try{return Object.defineProperty({},"x",{})}catch(_){return false}}();if(!orig||dom_only){Object.defineProperty=function(o,prop,desc){if(orig)try{return orig(o,prop,desc)}catch(_){}if(o!==Object(o))throw TypeError("Object.defineProperty called on non-object");if(Object.prototype.__defineGetter__&&"get"in desc)Object.prototype.__defineGetter__.call(o,prop,desc.get);if(Object.prototype.__defineSetter__&&"set"in desc)Object.prototype.__defineSetter__.call(o,prop,desc.set);if("value"in desc)o[prop]=desc.value;return o}}})();function makeArrayAccessors(obj){if(obj.length>MAX_ARRAY_LENGTH)throw RangeError("Array too large for polyfill");function makeArrayAccessor(index){Object.defineProperty(obj,index,{get:function(){return obj._getter(index)},set:function(v){obj._setter(index,v)},enumerable:true,configurable:false})}var i;for(i=0;i>s}function as_unsigned(value,bits){var s=32-bits;return value<>>s}function packI8(n){return[n&255]}function unpackI8(bytes){return as_signed(bytes[0],8)}function packU8(n){return[n&255]}function unpackU8(bytes){return as_unsigned(bytes[0],8)}function packU8Clamped(n){n=round(Number(n));return[n<0?0:n>255?255:n&255]}function packI16(n){return[n>>8&255,n&255]}function unpackI16(bytes){return as_signed(bytes[0]<<8|bytes[1],16)}function packU16(n){return[n>>8&255,n&255]}function unpackU16(bytes){return as_unsigned(bytes[0]<<8|bytes[1],16)}function packI32(n){return[n>>24&255,n>>16&255,n>>8&255,n&255]}function unpackI32(bytes){return as_signed(bytes[0]<<24|bytes[1]<<16|bytes[2]<<8|bytes[3],32)}function packU32(n){return[n>>24&255,n>>16&255,n>>8&255,n&255]}function unpackU32(bytes){return as_unsigned(bytes[0]<<24|bytes[1]<<16|bytes[2]<<8|bytes[3],32)}function packIEEE754(v,ebits,fbits){var bias=(1<.5)return w+1;return w%2?w+1:w}if(v!==v){e=(1<=pow(2,1-bias)){e=min(floor(log(v)/LN2),1023);f=roundToEven(v/pow(2,e)*pow(2,fbits));if(f/pow(2,fbits)>=2){e=e+1;f=1}if(e>bias){e=(1<>1}}bits.reverse();str=bits.join("");bias=(1<0){return s*pow(2,e-bias)*(1+f/pow(2,fbits))}else if(f!==0){return s*pow(2,-(bias-1))*(f/pow(2,fbits))}else{return s<0?-0:0}}function unpackF64(b){return unpackIEEE754(b,11,52)}function packF64(v){return packIEEE754(v,11,52)}function unpackF32(b){return unpackIEEE754(b,8,23)}function packF32(v){return packIEEE754(v,8,23)}(function(){function ArrayBuffer(length){length=ToInt32(length);if(length<0)throw RangeError("ArrayBuffer size is not a small enough positive integer.");Object.defineProperty(this,"byteLength",{value:length});Object.defineProperty(this,"_bytes",{value:Array(length)});for(var i=0;i=1&&Type(arguments[0])==="object"&&arguments[0]instanceof $TypedArray$){return function(typedArray){if(this.constructor!==typedArray.constructor)throw TypeError();var byteLength=typedArray.length*this.BYTES_PER_ELEMENT;Object.defineProperty(this,"buffer",{value:new ArrayBuffer(byteLength)});Object.defineProperty(this,"byteLength",{value:byteLength});Object.defineProperty(this,"byteOffset",{value:0});Object.defineProperty(this,"length",{value:typedArray.length});for(var i=0;i=1&&Type(arguments[0])==="object"&&!(arguments[0]instanceof $TypedArray$)&&!(arguments[0]instanceof ArrayBuffer||Class(arguments[0])==="ArrayBuffer")){return function(array){var byteLength=array.length*this.BYTES_PER_ELEMENT;Object.defineProperty(this,"buffer",{value:new ArrayBuffer(byteLength)});Object.defineProperty(this,"byteLength",{value:byteLength});Object.defineProperty(this,"byteOffset",{value:0});Object.defineProperty(this,"length",{value:array.length});for(var i=0;i=1&&Type(arguments[0])==="object"&&(arguments[0]instanceof ArrayBuffer||Class(arguments[0])==="ArrayBuffer")){return function(buffer,byteOffset,length){byteOffset=ToUint32(byteOffset);if(byteOffset>buffer.byteLength)throw RangeError("byteOffset out of range");if(byteOffset%this.BYTES_PER_ELEMENT)throw RangeError("buffer length minus the byteOffset is not a multiple of the element size.");if(length===undefined){var byteLength=buffer.byteLength-byteOffset;if(byteLength%this.BYTES_PER_ELEMENT)throw RangeError("length of buffer minus byteOffset not a multiple of the element size");length=byteLength/this.BYTES_PER_ELEMENT}else{length=ToUint32(length);byteLength=length*this.BYTES_PER_ELEMENT}if(byteOffset+byteLength>buffer.byteLength)throw RangeError("byteOffset and length reference an area beyond the end of the buffer");Object.defineProperty(this,"buffer",{value:buffer});Object.defineProperty(this,"byteLength",{value:byteLength});Object.defineProperty(this,"byteOffset",{value:byteOffset});Object.defineProperty(this,"length",{value:length})}.apply(this,arguments)}throw TypeError()}Object.defineProperty($TypedArray$,"from",{value:function(iterable){return new this(iterable)}});Object.defineProperty($TypedArray$,"of",{value:function(){return new this(arguments)}});var $TypedArrayPrototype$={};$TypedArray$.prototype=$TypedArrayPrototype$;Object.defineProperty($TypedArray$.prototype,"_getter",{value:function(index){if(arguments.length<1)throw SyntaxError("Not enough arguments");index=ToUint32(index);if(index>=this.length)return undefined;var bytes=[],i,o;for(i=0,o=this.byteOffset+index*this.BYTES_PER_ELEMENT;i=this.length)return;var bytes=this._pack(value),i,o;for(i=0,o=this.byteOffset+index*this.BYTES_PER_ELEMENT;i0){o._setter(to,o._getter(from));from=from+direction;to=to+direction;count=count-1}return o}});Object.defineProperty($TypedArray$.prototype,"every",{value:function(callbackfn){if(this===undefined||this===null)throw TypeError();var t=Object(this);var len=ToUint32(t.length);if(!IsCallable(callbackfn))throw TypeError();var thisArg=arguments[1];for(var i=0;i1?arguments[1]:undefined;var k=0;while(k1?arguments[1]:undefined;var k=0;while(k0){n=Number(arguments[1]);if(n!==n){n=0}else if(n!==0&&n!==1/0&&n!==-(1/0)){n=(n>0||-1)*floor(abs(n))}}if(n>=len)return-1;var k=n>=0?n:max(len-abs(n),0);for(;k1){n=Number(arguments[1]);if(n!==n){n=0}else if(n!==0&&n!==1/0&&n!==-(1/0)){n=(n>0||-1)*floor(abs(n))}}var k=n>=0?min(n,len-1):len-abs(n);for(;k>=0;k--){if(t._getter(k)===searchElement)return k}return-1}});Object.defineProperty($TypedArray$.prototype,"map",{value:function(callbackfn){if(this===undefined||this===null)throw TypeError();var t=Object(this);var len=ToUint32(t.length);if(!IsCallable(callbackfn))throw TypeError();var res=[];res.length=len;var thisp=arguments[1];for(var i=0;i=2){accumulator=arguments[1]}else{accumulator=t._getter(k++)}while(k=2){accumulator=arguments[1]}else{accumulator=t._getter(k--)}while(k>=0){accumulator=callbackfn.call(undefined,accumulator,t._getter(k),k,t);k--}return accumulator}});Object.defineProperty($TypedArray$.prototype,"reverse",{value:function(){if(this===undefined||this===null)throw TypeError();var t=Object(this);var len=ToUint32(t.length);var half=floor(len/2);for(var i=0,j=len-1;ithis.length){throw RangeError("Offset plus length of array is out of range")}byteOffset=this.byteOffset+offset*this.BYTES_PER_ELEMENT;byteLength=array.length*this.BYTES_PER_ELEMENT;if(array.buffer===this.buffer){tmp=[];for(i=0,s=array.byteOffset;ithis.length){throw RangeError("Offset plus length of array is out of range")}for(i=0;imax?max:v}start=ToInt32(start);end=ToInt32(end);if(arguments.length<1){start=0}if(arguments.length<2){end=this.length}if(start<0){start=this.length+start}if(end<0){end=this.length+end}start=clamp(start,0,this.length);end=clamp(end,0,this.length);var len=end-start;if(len<0){len=0}return new this.constructor(this.buffer,this.byteOffset+start*this.BYTES_PER_ELEMENT,len)}});function makeTypedArray(elementSize,pack,unpack){var TypedArray=function(){Object.defineProperty(this,"constructor",{value:TypedArray});$TypedArray$.apply(this,arguments);makeArrayAccessors(this)};if("__proto__"in TypedArray){TypedArray.__proto__=$TypedArray$}else{TypedArray.from=$TypedArray$.from;TypedArray.of=$TypedArray$.of}TypedArray.BYTES_PER_ELEMENT=elementSize;var TypedArrayPrototype=function(){};TypedArrayPrototype.prototype=$TypedArrayPrototype$;TypedArray.prototype=new TypedArrayPrototype;Object.defineProperty(TypedArray.prototype,"BYTES_PER_ELEMENT",{value:elementSize});Object.defineProperty(TypedArray.prototype,"_pack",{value:pack});Object.defineProperty(TypedArray.prototype,"_unpack",{value:unpack});return TypedArray}var Int8Array=makeTypedArray(1,packI8,unpackI8);var Uint8Array=makeTypedArray(1,packU8,unpackU8);var Uint8ClampedArray=makeTypedArray(1,packU8Clamped,unpackU8);var Int16Array=makeTypedArray(2,packI16,unpackI16);var Uint16Array=makeTypedArray(2,packU16,unpackU16);var Int32Array=makeTypedArray(4,packI32,unpackI32);var Uint32Array=makeTypedArray(4,packU32,unpackU32);var Float32Array=makeTypedArray(4,packF32,unpackF32);var Float64Array=makeTypedArray(8,packF64,unpackF64);global.Int8Array=global.Int8Array||Int8Array;global.Uint8Array=global.Uint8Array||Uint8Array;global.Uint8ClampedArray=global.Uint8ClampedArray||Uint8ClampedArray;global.Int16Array=global.Int16Array||Int16Array;global.Uint16Array=global.Uint16Array||Uint16Array;global.Int32Array=global.Int32Array||Int32Array;global.Uint32Array=global.Uint32Array||Uint32Array;global.Float32Array=global.Float32Array||Float32Array;global.Float64Array=global.Float64Array||Float64Array})();(function(){function r(array,index){return IsCallable(array.get)?array.get(index):array[index]}var IS_BIG_ENDIAN=function(){var u16array=new Uint16Array([4660]),u8array=new Uint8Array(u16array.buffer);return r(u8array,0)===18}();function DataView(buffer,byteOffset,byteLength){if(!(buffer instanceof ArrayBuffer||Class(buffer)==="ArrayBuffer"))throw TypeError();byteOffset=ToUint32(byteOffset);if(byteOffset>buffer.byteLength)throw RangeError("byteOffset out of range");if(byteLength===undefined)byteLength=buffer.byteLength-byteOffset;else byteLength=ToUint32(byteLength);if(byteOffset+byteLength>buffer.byteLength)throw RangeError("byteOffset and length reference an area beyond the end of the buffer");Object.defineProperty(this,"buffer",{value:buffer});Object.defineProperty(this,"byteLength",{value:byteLength});Object.defineProperty(this,"byteOffset",{value:byteOffset})}function makeGetter(arrayType){return function GetViewValue(byteOffset,littleEndian){byteOffset=ToUint32(byteOffset);if(byteOffset+arrayType.BYTES_PER_ELEMENT>this.byteLength)throw RangeError("Array index out of range");byteOffset+=this.byteOffset;var uint8Array=new Uint8Array(this.buffer,byteOffset,arrayType.BYTES_PER_ELEMENT),bytes=[];for(var i=0;ithis.byteLength)throw RangeError("Array index out of range");var typeArray=new arrayType([value]),byteArray=new Uint8Array(typeArray.buffer),bytes=[],i,byteView;for(i=0;i - - - - - - -Authors • USgas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Authors and Citation • USgas - - - - + + - -
-
-
- -
+
- @@ -138,22 +89,20 @@

Authors

-
- +
- - + + diff --git a/docs/index.html b/docs/index.html index 16bbc0d..2a8315e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -19,6 +19,8 @@ + +
-
- - - + + diff --git a/docs/reference/us_total-1.png b/docs/reference/us_total-1.png index 89476e7..e4b9f76 100644 Binary files a/docs/reference/us_total-1.png and b/docs/reference/us_total-1.png differ diff --git a/docs/reference/us_total-2.png b/docs/reference/us_total-2.png index 46f4d70..4534a11 100644 Binary files a/docs/reference/us_total-2.png and b/docs/reference/us_total-2.png differ diff --git a/docs/reference/us_total.html b/docs/reference/us_total.html index 0b3787b..a8863af 100644 --- a/docs/reference/us_total.html +++ b/docs/reference/us_total.html @@ -1,68 +1,13 @@ - - - - - - - -US Annual Total Natural Gas Consumption — us_total • USgas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -US Annual Total Natural Gas Consumption — us_total • USgas - + + - - - -
-
- -
- -
+
@@ -134,177 +64,185 @@

US Annual Total Natural Gas Consumption

Units: Million Cubic Feet

-
us_total
- - -

Format

+
+
us_total
+
-

A data.frame with 3 variables.

-
year

An integer, the year of the observation

-
state

A character, the US state indicator

-
y

A numeric, the yearly total natural gas consumption in a million cubic feet by state or US aggregate

- -
+
+

Format

+

A data.frame with 3 variables.

year
+

An integer, the year of the observation

-

Source

+
state
+

A character, the US state indicator

-

US Energy Information Administration (EIA) website.

-

Details

+
y
+

A numeric, the yearly total natural gas consumption in a million cubic feet by state or US aggregate

+ +
+
+

Source

+

US Energy Information Administration (EIA) website.

+
+
+

Details

The dataset contains a summary of the total annual demand for natural gas in the US by state and total aggregate level. The data is available for the state level between 1997 and 2019, and for the US level between 1949 and 2019.

+
-

Examples

-
data("us_total") - -# Subsetting the total consumption in the US -us_agg <- us_total[which(us_total$state == "U.S."),] - -us_agg <- us_agg[order(us_agg$year), ] - -head(us_agg) -
#> year state y -#> 1034 1949 U.S. 4971152 -#> 1035 1950 U.S. 5766542 -#> 1036 1951 U.S. 6810162 -#> 1037 1952 U.S. 7294320 -#> 1038 1953 U.S. 7639270 -#> 1039 1954 U.S. 8048504
-at_x <- seq(from = 1950, - to = 2020, - by = 10) - -at_y <- pretty(us_agg$y)[c(3, 5, 7)] - -plot(us_agg$year, us_agg$y, - col = "#1f77b4", - type = "l", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = at_y, col = "grey80"), - main = "US Total Natural Gas Consumption", - xlab = "Source: https://www.eia.gov/", - ylab = "Million Cubic Feet") -
- - -mtext(side =1, text = format(at_x, nsmall=0), at = at_x, - col = "grey20", line = 1, cex = 0.8) -
-mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) -
-### Plotting the annual consumption in New England states -# Subsetting the New England states -ne <- c("Connecticut", "Maine", "Massachusetts", - "New Hampshire", "Rhode Island", "Vermont") -ne_gas <- us_total[which(us_total$state %in% ne),] - -# Reshape to wide -ne_wide <- reshape(ne_gas, v.names = "y", idvar = "year", - timevar = "state", direction = "wide") - -names(ne_wide) <- c("year",ne) -# Reorder the data -ne_wide <- ne_wide[order(ne_wide$year), ] - -# Set the plot y and x axis ticks -at_x <- seq(from = 2000, - to = 2020, - by = 5) - -at_y <- pretty(ne_gas$y)[c(2, 4, 6)] - -# plot the first series -plot(ne_wide$year, ne_wide$Connecticut, - type = "l", - col = "#073b4c", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = c(at_y), col = "grey80"), - main = "New England Annual Natural Gas Consumption by State", - cex.main = 1, font.main = 1, col.main = "black", - xlab = "Source: https://www.eia.gov/", - font.axis = 1, cex.lab= 0.7, - ylab = "Million Cubic Feet", - ylim = c(min(ne_gas$y, na.rm = TRUE), max(ne_gas$y, na.rm = TRUE)), - xlim = c(min(ne_gas$year), max(ne_gas$year) + 3)) -
-# Add the 5 other series -lines(ne_wide$year, ne_wide$Maine, col = "#1f77b4") -
lines(ne_wide$year, ne_wide$Massachusetts, col = "#118ab2") -
lines(ne_wide$year, ne_wide$`New Hampshire`, col = "#06d6a0") -
lines(ne_wide$year, ne_wide$`Rhode Island`, col = "#ffd166") -
lines(ne_wide$year, ne_wide$Vermont, col = "#ef476f") -
-# Add the y and x axis ticks -mtext(side =1, text = format(at_x, nsmall=0), at = at_x, - col = "grey20", line = 1, cex = 0.8) -
-mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) -
- -text(max(ne_wide$year) + 2, - tail(ne_wide$Connecticut,1), - "Connecticut", - col = "#073b4c", - cex = 0.7) -
-text(max(ne_wide$year) + 2, - tail(ne_wide$Maine,1) * 0.95, - "Maine", - col = "#1f77b4", - cex = 0.7) -
-text(max(ne_wide$year) + 2, - tail(ne_wide$Massachusetts,1), - "Massachusetts", - col = "#118ab2", - cex = 0.7) -
-text(max(ne_wide$year) + 2, - tail(ne_wide$`New Hampshire`,1) * 1.1, - "New Hampshire", - col = "#06d6a0", - cex = 0.7) -
-text(max(ne_wide$year) + 2, - tail(ne_wide$`Rhode Island`,1) * 1.05, - "Rhode Island", - col = "#ffd166", - cex = 0.7) -
-text(max(ne_wide$year) + 2, - tail(ne_wide$Vermont,1), - "Vermont", - col = "#ef476f", - cex = 0.7) -
+
+

Examples

+
data("us_total")
+
+# Subsetting the total consumption in the US
+us_agg <- us_total[which(us_total$state == "U.S."),]
+
+us_agg <- us_agg[order(us_agg$year), ]
+
+head(us_agg)
+#>      year state       y
+#> 1034 1949  U.S. 4971152
+#> 1035 1950  U.S. 5766542
+#> 1036 1951  U.S. 6810162
+#> 1037 1952  U.S. 7294320
+#> 1038 1953  U.S. 7639270
+#> 1039 1954  U.S. 8048504
+
+at_x <- seq(from = 1950,
+            to = 2020,
+            by = 10)
+
+at_y <- pretty(us_agg$y)[c(3, 5, 7)]
+
+plot(us_agg$year, us_agg$y,
+     col = "#1f77b4",
+     type = "l",
+     frame.plot = FALSE,
+     axes = FALSE,
+     panel.first = abline(h = at_y, col = "grey80"),
+     main = "US Total Natural Gas Consumption",
+     xlab = "Source: https://www.eia.gov/",
+     ylab = "Million Cubic Feet")
+
+
+
+mtext(side =1, text = format(at_x,  nsmall=0), at = at_x,
+      col = "grey20", line = 1, cex = 0.8)
+
+mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y,
+      col = "grey20", line = 1, cex = 0.8)
+
+
+### Plotting the annual consumption in New England states
+# Subsetting the New England states
+ne <- c("Connecticut", "Maine", "Massachusetts",
+        "New Hampshire", "Rhode Island", "Vermont")
+ne_gas <-  us_total[which(us_total$state %in% ne),]
+
+# Reshape to wide
+ne_wide <- reshape(ne_gas, v.names = "y", idvar = "year",
+                   timevar = "state", direction = "wide")
+
+names(ne_wide) <- c("year",ne)
+# Reorder the data
+ne_wide <- ne_wide[order(ne_wide$year), ]
+
+# Set the plot y and x axis ticks
+at_x <- seq(from = 2000,
+            to = 2020,
+            by = 5)
+
+at_y <- pretty(ne_gas$y)[c(2, 4, 6)]
+
+# plot the first series
+plot(ne_wide$year, ne_wide$Connecticut,
+     type = "l",
+     col = "#073b4c",
+     frame.plot = FALSE,
+     axes = FALSE,
+     panel.first = abline(h = c(at_y), col = "grey80"),
+     main = "New England Annual Natural Gas Consumption by State",
+     cex.main = 1, font.main = 1, col.main = "black",
+     xlab = "Source: https://www.eia.gov/",
+     font.axis = 1, cex.lab= 0.7,
+     ylab = "Million Cubic Feet",
+     ylim = c(min(ne_gas$y, na.rm = TRUE), max(ne_gas$y, na.rm = TRUE)),
+     xlim = c(min(ne_gas$year), max(ne_gas$year) + 3))
+
+# Add the 5 other series
+lines(ne_wide$year, ne_wide$Maine, col = "#1f77b4")
+lines(ne_wide$year, ne_wide$Massachusetts, col = "#118ab2")
+lines(ne_wide$year, ne_wide$`New Hampshire`, col = "#06d6a0")
+lines(ne_wide$year, ne_wide$`Rhode Island`, col = "#ffd166")
+lines(ne_wide$year, ne_wide$Vermont, col = "#ef476f")
+
+# Add the y and x axis ticks
+mtext(side =1, text = format(at_x, nsmall=0), at = at_x,
+      col = "grey20", line = 1, cex = 0.8)
+
+mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y,
+      col = "grey20", line = 1, cex = 0.8)
+
+
+text(max(ne_wide$year) + 2,
+     tail(ne_wide$Connecticut,1),
+     "Connecticut",
+     col = "#073b4c",
+     cex = 0.7)
+
+text(max(ne_wide$year) + 2,
+     tail(ne_wide$Maine,1) * 0.95,
+     "Maine",
+     col = "#1f77b4",
+     cex = 0.7)
+
+text(max(ne_wide$year) + 2,
+     tail(ne_wide$Massachusetts,1),
+     "Massachusetts",
+     col = "#118ab2",
+     cex = 0.7)
+
+text(max(ne_wide$year) + 2,
+     tail(ne_wide$`New Hampshire`,1) * 1.1,
+     "New Hampshire",
+     col = "#06d6a0",
+     cex = 0.7)
+
+text(max(ne_wide$year) + 2,
+     tail(ne_wide$`Rhode Island`,1) * 1.05,
+     "Rhode Island",
+     col = "#ffd166",
+     cex = 0.7)
+
+text(max(ne_wide$year) + 2,
+     tail(ne_wide$Vermont,1),
+     "Vermont",
+     col = "#ef476f",
+     cex = 0.7)
+
+
+
+
-
- +
- - + + diff --git a/docs/reference/usgas.html b/docs/reference/usgas.html new file mode 100644 index 0000000..674a1b5 --- /dev/null +++ b/docs/reference/usgas.html @@ -0,0 +1,198 @@ + +US Monthly Consumption of Natural Gas by End Use — usgas • USgas + + +
+
+ + + +
+
+ + +
+

The US monthly consumption of natural gas by end-use and state between 1973 (US aggregate, state level since 1989) and 2022.

+

Units: Million Cubic Feet

+
+ +
+
usgas
+
+ +
+

Format

+

A data.frame with 6 variables.

date
+

A Date, the month and year of the observation (the day set by default to 1st of the month)

+ +
process
+

The process type description

+ +
state
+

The US state name

+ +
state_abb
+

the US state abbreviation

+ +
y
+

A numeric, the monthly natural gas residential consumption in a million cubic feet

+ + +
+
+

Source

+

US Energy Information Administration (EIA) website.

+
+
+

Details

+

The dataset contains monthly summary of the consumption of natural gas +by end-use in the US by state and total aggregate level. The data is available +for the state level between January 1989 and December 2022, and for the US level +between January 1973 and Dec 2022. It includes the following end-use categories:

+

- Commercial Consumption +- Delivered to Consumers +- Electric Power Consumption +- Industrial Consumption +- Lease and Plant Fuel Consumption +- Pipeline Fuel Consumption +- Residential Consumption +- Vehicle Fuel Consumption

+
+ +
+

Examples

+

+library(plotly)
+#> Loading required package: ggplot2
+#> 
+#> Attaching package: ‘plotly’
+#> The following object is masked from ‘package:ggplot2’:
+#> 
+#>     last_plot
+#> The following object is masked from ‘package:stats’:
+#> 
+#>     filter
+#> The following object is masked from ‘package:graphics’:
+#> 
+#>     layout
+
+data("usgas")
+
+head(usgas)
+#>         date                 process state state_abb      y
+#> 1 1973-01-01  Commercial Consumption  U.S.      U.S. 392315
+#> 2 1973-01-01 Residential Consumption  U.S.      U.S. 843900
+#> 3 1973-02-01  Commercial Consumption  U.S.      U.S. 394281
+#> 4 1973-02-01 Residential Consumption  U.S.      U.S. 747331
+#> 5 1973-03-01  Commercial Consumption  U.S.      U.S. 310799
+#> 6 1973-03-01 Residential Consumption  U.S.      U.S. 648504
+
+# Plot the US consumption
+
+us_df <- usgas[which(usgas$state == "U.S."), ]
+
+plot_ly(data = us_df,
+        x = ~ date,
+        y = ~ y,
+        color = ~ process,
+        type = "scatter",
+        mode = "line") |>
+  layout(title = "US Monthly Consumption by End Use",
+         yaxis = list(title = "MMCF"),
+         xaxis = list(title = "Source: EIA Website"),
+         legend = list(x = 0, y = 1.05),
+         margin = list(l = 50, r = 50, b = 70, t = 60))
+
+ + +# Plot the California consumption + +ca_df <- usgas[which(usgas$state == "California"), ] + +plot_ly(data = ca_df, + x = ~ date, + y = ~ y, + color = ~ process, + type = "scatter", + mode = "line") |> + layout(title = "California Monthly Consumption by End Use", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA Website"), + legend = list(x = 0, y = 1.05), + margin = list(l = 50, r = 50, b = 70, t = 60)) +
+ +
+
+
+ +
+ + +
+ +
+

Site built with pkgdown 2.0.7.

+
+ +
+ + + + + + + + diff --git a/docs/sitemap.xml b/docs/sitemap.xml new file mode 100644 index 0000000..d05aa7c --- /dev/null +++ b/docs/sitemap.xml @@ -0,0 +1,48 @@ + + + + /404.html + + + /LICENSE-text.html + + + /LICENSE.html + + + /articles/index.html + + + /articles/introduction.html + + + /authors.html + + + /index.html + + + /news/index.html + + + /reference/hello.html + + + /reference/index.html + + + /reference/us_monthly.html + + + /reference/us_res_gas.html + + + /reference/us_residential.html + + + /reference/us_total.html + + + /reference/usgas.html + + diff --git a/man/figures/README-unnamed-chunk-4-1.png b/man/figures/README-unnamed-chunk-4-1.png deleted file mode 100644 index 9862a5a..0000000 Binary files a/man/figures/README-unnamed-chunk-4-1.png and /dev/null differ diff --git a/man/figures/new_england.svg b/man/figures/new_england.svg new file mode 100644 index 0000000..d1e7267 --- /dev/null +++ b/man/figures/new_england.svg @@ -0,0 +1 @@ +2005201020152020010k20k30k40k50k60kConnecticutMaineMassachusettsNew HampshireRhode IslandVermontTotal Natrual Gas Delivered to Consumers in New England StatesSource: EIA APIMMCF \ No newline at end of file diff --git a/man/figures/us_res.svg b/man/figures/us_res.svg new file mode 100644 index 0000000..daec1fb --- /dev/null +++ b/man/figures/us_res.svg @@ -0,0 +1 @@ +198019902000201020200.2M0.4M0.6M0.8M1MUS Monthly Natural Gas Consumption by Residential ConsumersSource: EIA APIMMCF \ No newline at end of file diff --git a/man/usgas.Rd b/man/usgas.Rd new file mode 100644 index 0000000..a156d3b --- /dev/null +++ b/man/usgas.Rd @@ -0,0 +1,90 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/usgas.R +\docType{data} +\name{usgas} +\alias{usgas} +\title{US Monthly Consumption of Natural Gas by End Use} +\format{ +A data.frame with 6 variables. +\describe{ + \item{date}{A Date, the month and year of the observation (the day set by default to 1st of the month)} + \item{process}{The process type description} + \item{state}{The US state name} + \item{state_abb}{the US state abbreviation} + \item{y}{A numeric, the monthly natural gas residential consumption in a million cubic feet} + } +} +\source{ +US Energy Information Administration (EIA) \href{https://www.eia.gov/}{website}. +} +\usage{ +usgas +} +\description{ +The US monthly consumption of natural gas by end-use and state between 1973 (US aggregate, state level since 1989) and 2022. + +Units: Million Cubic Feet +} +\details{ +The dataset contains monthly summary of the consumption of natural gas +by end-use in the US by state and total aggregate level. The data is available +for the state level between January 1989 and December 2022, and for the US level +between January 1973 and Dec 2022. It includes the following end-use categories: + +- Commercial Consumption +- Delivered to Consumers +- Electric Power Consumption +- Industrial Consumption +- Lease and Plant Fuel Consumption +- Pipeline Fuel Consumption +- Residential Consumption +- Vehicle Fuel Consumption +} +\examples{ + +library(plotly) + +data("usgas") + +head(usgas) + +# Plot the US consumption + +us_df <- usgas[which(usgas$state == "U.S."), ] + +plot_ly(data = us_df, + x = ~ date, + y = ~ y, + color = ~ process, + type = "scatter", + mode = "line") |> + layout(title = "US Monthly Consumption by End Use", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA Website"), + legend = list(x = 0, y = 1.05), + margin = list(l = 50, r = 50, b = 70, t = 60)) + + +# Plot the California consumption + +ca_df <- usgas[which(usgas$state == "California"), ] + +plot_ly(data = ca_df, + x = ~ date, + y = ~ y, + color = ~ process, + type = "scatter", + mode = "line") |> + layout(title = "California Monthly Consumption by End Use", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA Website"), + legend = list(x = 0, y = 1.05), + margin = list(l = 50, r = 50, b = 70, t = 60)) + +} +\keyword{datasets} +\keyword{gas} +\keyword{natural} +\keyword{state} +\keyword{timeseries} +\keyword{us} diff --git a/vignettes/introduction.Rmd b/vignettes/introduction.Rmd index 18d56e4..5d39837 100644 --- a/vignettes/introduction.Rmd +++ b/vignettes/introduction.Rmd @@ -16,294 +16,106 @@ knitr::opts_chunk$set( ) ``` -```{r setup} -library(USgas) -``` -The **USgas** package provides an overview of demand for natural gas in the US in a time-series format. That includes the following datasets: + +The **USgas** package provides an overview of demand for natural gas in the US in a time-series format. That includes the following dataset: +* `usgas` - The monthly consumption of natural gas in the US/state level by end-use since 1973 for US level and 1989 for state level. It includes the following end-use categories: + - Commercial Consumption + - Delivered to Consumers + - Electric Power Consumption + - Industrial Consumption + - Lease and Plant Fuel Consumption + - Pipeline Fuel Consumption + - Residential Consumption + - Vehicle Fuel Consumption + +The package also includes the following datasets, from previous release: * `us_total` - The US annual natural gas consumption by state-level between 1997 and 2019, and aggregate level between 1949 and 2019 * `us_monthly` - The monthly demand for natural gas in the US between 2001 and 2020 * `us_residential` - The US monthly natural gas residential consumption by state and aggregate level between 1989 and 2020 -Data source: The US Energy Information Administration [API](https://www.eia.gov/) +The `us_total`, `us_monthly`, and `us_residential` can be derived out of the `usgas` dataset. Therefore, those datasets in the process of deprication and will be removed in the next release to CRAN. -### us_total +Data source: The US Energy Information Administration [API](https://www.eia.gov/) -The `us_total` provides an annual overview on the US total demand for natural gas by state and aggregated level. The dataset includes the following fields: +## The usgas dataset -* `year` - An integer, the year of the observation -* `state` - A character, the US state (or aggregate level) indicator -* `y` - A numeric, the corresponding yearly total natural gas consumption in a million cubic feet by state/US +The `usgas` dataset provides a 313 time series focusing on the consumption of natural gas by end use in the US (aggregated and state level). It includes the following fields: +- `date` - A Date, the month and year of the observation (the day set by default to 1st of the month)} +- `process` - The process type description +- `state` - The US state name +- `state_abb` - The US state abbreviation +- `y` - A numeric, the monthly natural gas residential consumption in a million cubic feet ```{r} -data("us_total") +library(USgas) + +data("usgas") + +str(usgas) -head(us_total) +head(usgas) ``` The dataset includes the state level and the US aggregate level (labeled under `U.S.`): ```{r} -unique(us_total$state) +unique(usgas$state) ``` -In the example below, we will subset the US aggregate level view: +In the example below, we will subset and plot the consumption by end-use in the US: ```{r } -us_agg <- us_total[which(us_total$state == "U.S."),] - -us_agg <- us_agg[order(us_agg$year), ] +us_agg <- usgas[which(usgas$state == "U.S."),] head(us_agg) ``` -We can plot it with the `plot` function. We will add some customiztion to the plot: - +Let's now use **plotly** to plot those series: ```{r} -at_x <- seq(from = 1950, - to = 2020, - by = 10) - -at_y <- pretty(us_agg$y)[c(3, 5, 7)] - -plot(us_agg$year, us_agg$y, - col = "#1f77b4", - type = "l", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = at_y, col = "grey80"), - main = "US Total Natural Gas Consumption", - xlab = "Source: https://www.eia.gov/", - ylab = "Million Cubic Feet") - -mtext(side =1, text = format(at_x, nsmall=0), at = at_x, - col = "grey20", line = 1, cex = 0.8) - -mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) +library(plotly) + +plot_ly(data = us_agg, + x = ~ date, + y = ~ y, + color = ~ process, + type = "scatter", + mode = "line") |> + layout(title = "US Monthly Consumption of Natural Gas by End Use", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA Website"), + legend = list(x = 0, + y = 0.95)) ``` -Similarly, we can subset a couple of states and visualize them. For example, let's visualize the annual consumption in New England states. We will start by subsetting the corresponding states in New England, transform the `data.frame` to wide format, and reorder by date: +Similarly, we can subset a couple of states and visualize them. For example, let’s visualize the residential consumption in the New England states. We will start by subsetting the corresponding states in New England, transform the data.frame to wide format, and reorder by date: ```{r} ne <- c("Connecticut", "Maine", "Massachusetts", "New Hampshire", "Rhode Island", "Vermont") -ne_gas <- us_total[which(us_total$state %in% ne),] - -ne_wide <- reshape(ne_gas, v.names = "y", idvar = "year", - timevar = "state", direction = "wide") -ne_wide <- ne_wide[order(ne_wide$year), ] - -names(ne_wide) <- c("year",ne) -``` - -Set the y and x axis ticks: - -```{r} -at_x <- seq(from = 2000, to = 2020, by = 5) - -at_y <- pretty(ne_gas$y)[c(2, 4, 6)] -``` - -Use the `plot` to plot the states natural gas consumption: - -```{r} -# plot the first series -plot(ne_wide$year, ne_wide$Connecticut, - type = "l", - col = "#073b4c", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = c(at_y), col = "grey80"), - main = "New England Annual Natural Gas Consumption by State", - cex.main = 1.2, font.main = 1, col.main = "black", - xlab = "Source: https://www.eia.gov/", - font.axis = 1, cex.lab= 1, - ylab = "Million Cubic Feet", - ylim = c(min(ne_gas$y, na.rm = TRUE), max(ne_gas$y, na.rm = TRUE)), - xlim = c(min(ne_gas$year), max(ne_gas$year) + 3)) - -# Add the 5 other series -lines(ne_wide$year, ne_wide$Maine, col = "#1f77b4") -lines(ne_wide$year, ne_wide$Massachusetts, col = "#118ab2") -lines(ne_wide$year, ne_wide$`New Hampshire`, col = "#06d6a0") -lines(ne_wide$year, ne_wide$`Rhode Island`, col = "#ffd166") -lines(ne_wide$year, ne_wide$Vermont, col = "#ef476f") - -# Add the y and x axis ticks - -mtext(side =1, text = format(at_x, nsmall=0), at = at_x, - col = "grey20", line = 1, cex = 0.8) - -mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) - -# Add text -text(max(ne_wide$year) + 2, - tail(ne_wide$Connecticut,1), - "Connecticut", - col = "#073b4c", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Maine,1) * 0.95, - "Maine", - col = "#1f77b4", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Massachusetts,1), - "Massachusetts", - col = "#118ab2", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$`New Hampshire`,1) * 1.1, - "New Hampshire", - col = "#06d6a0", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$`Rhode Island`,1) * 1.05, - "Rhode Island", - col = "#ffd166", - cex = 0.7) - -text(max(ne_wide$year) + 2, - tail(ne_wide$Vermont,1), - "Vermont", - col = "#ef476f", - cex = 0.7) -``` - -### us_monthly - -The `us_monthly` dataset provides a monthly time series, representing the demand for natural gas in the US between 2001 and 2020: - -```{r} -data("us_monthly") - -head(us_monthly) -``` - -We will use the `plot` function to visualize the series: - -```{r} -at_x <- seq.Date(from = as.Date("2000-01-01"), - to = as.Date("2020-01-01"), - by = "5 years") - -at_y <- pretty(us_monthly$y)[c(2, 4, 6)] - -plot(us_monthly$date, us_monthly$y, - col = "#1f77b4", - type = "l", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = at_y, col = "grey80"), - main = "US Total Natural Gas Consumption", - xlab = "Source: https://www.eia.gov/", - ylab = "Million Cubic Feet") - - - -mtext(side =1, text = format(at_x, format = "%Y"), at = at_x, - col = "grey20", line = 1, cex = 0.8) - -mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) -``` - +ne_gas <- usgas[which(usgas$state %in% ne),] -### us_residential +head(ne_gas) -The `us_residentail` dataset provides a monthly overview on the residential consumption of natural gas in the US by state and aggregate levels: - -```{r} -data("us_residential") - -head(us_residential) ``` -The dataset contains information about the residential consumption on all US states: -```{r} -unique(us_residential$state) -``` - -Similarly, we can plot the monthly consumption on natural gas in the West Cost states: +Next, let's use the `process` column to extract the residential consumption and plot it: ```{r} -wc_gas <- us_residential[which(us_residential$state %in% - c("Alaska", "California", - "Oregon", "Washington")),] - -# Reshape to wide -wc_wide <- reshape(wc_gas, v.names = "y", idvar = "date", - timevar = "state", direction = "wide") - -names(wc_wide) <- c("date","Alaska", "California", - "Oregon", "Washington") -# Reorder the data -wc_wide <- wc_wide[order(wc_wide$date), ] - -# Set the plot y and x axis ticks -at_x <- seq.Date(from = as.Date("1990-01-01"), - to = as.Date("2020-01-01"), - length.out = 4) - -at_y <- pretty(wc_gas$y)[c(2, 4, 6)] - -# plot the first series -plot(wc_wide$date, wc_wide$Alaska, - type = "l", - frame.plot = FALSE, - axes = FALSE, - panel.first = abline(h = c(at_y), col = "grey80"), - main = "West Cost Natural Gas Residential Consumption", - cex.main = 1.2, font.main = 1, col.main = "black", - xlab = "Source: https://www.eia.gov/", - font.axis = 1, cex.lab= 1, - ylab = "Million Cubic Feet", - ylim = c(min(wc_gas$y, na.rm = TRUE), max(wc_gas$y, na.rm = TRUE))) - -# Add the 3 other series -lines(wc_wide$date, wc_wide$California, col = "#1f77b4") -lines(wc_wide$date, wc_wide$Oregon, col = "#457b9d") -lines(wc_wide$date, wc_wide$Washington, col = "#ef476f") - -# Add the y and x axis ticks -mtext(side =1, text = format(at_x, format = "%Y %b"), at = at_x, - col = "grey20", line = 1, cex = 0.8) - -mtext(side =2, text = format(at_y, scientific = FALSE), at = at_y, - col = "grey20", line = 1, cex = 0.8) - -text(tail(wc_wide$date, 10)[1], - max(wc_gas$y, na.rm = TRUE), - "California", - col = "#1f77b4", - cex = 0.6) - -text(tail(wc_wide$date, 10)[1], - max(wc_gas$y, na.rm = TRUE) - 5000, - "Washington", - col = "#ef476f", - cex = 0.6) - -text(tail(wc_wide$date, 10)[1], - max(wc_gas$y, na.rm = TRUE) - 10000, - "Oregon", - col = "#457b9d", - cex = 0.6) - -text(tail(wc_wide$date, 10)[1], - max(wc_gas$y, na.rm = TRUE) - 15000, - "Alaska", - col = "black", - cex = 0.6) +ne_gas[which(ne_gas$process == "Residential Consumption"),] |> + plot_ly(x = ~ date, + y = ~ y, + color = ~ state, + type = "scatter", + mode = "line") |> + layout(title = "Monthly Residential Consumption of Natural Gas in New England", + yaxis = list(title = "MMCF"), + xaxis = list(title = "Source: EIA Website"), + legend = list(x = 0, + y = 1)) ```